<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[211224] trunk</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/211224">211224</a></dd>
<dt>Author</dt> <dd>jfbastien@apple.com</dd>
<dt>Date</dt> <dd>2017-01-26 11:52:35 -0800 (Thu, 26 Jan 2017)</dd>
</dl>

<h3>Log Message</h3>
<pre>OSR entry: delay outer-loop compilation when at inner-loop
https://bugs.webkit.org/show_bug.cgi?id=167149

Reviewed by Filip Pizlo.

JSTests:

Try to be mean to OSR entry by using nested loops, and having
non-int32 types or truly varying types.

Mandelbrot currently never tiers up to FTL because it exits too
many times before this. That shouldn't happen because it's just
numbers and int32s. I'll file a bug to fix this.

* microbenchmarks/mandelbrot.js: Added.
(mandelbrot):
(printable):
* microbenchmarks/nonude.js: Added.
(Array.prototype.remove):
(const.u):
(const.load):
(const.scan):
(const.main):

Source/JavaScriptCore:

As of https://bugs.webkit.org/show_bug.cgi?id=155217 OSR
compilation can be kicked off for an entry into an outer-loop,
while executing an inner-loop. This is desirable because often the
codegen from an inner-entry isn't as good as the codegen from an
outer-entry, but execution from an inner-loop is often pretty hot
and likely to kick off compilation. This approach provided nice
speedups on Kraken because we'd select to enter to the outer-loop
very reliably, which reduces variability (the inner-loop was
selected roughly 1/5 times from my unscientific measurements).

When compilation starts we take a snapshot of the JSValues at the
current execution state using OSR's recovery mechanism. These
values are passed to the compiler and are used as way to perform
type profiling, and could be used to observe cell types as well as
to perform predictions such as through constant propagation.

It's therefore desired to enter from the outer-loop when we can,
but we need to be executing from that location to capture the
right JSValues, otherwise we're confusing the compiler and giving
it inaccurate JSValues which can lead it to predict the wrong
things, leading to suboptimal code or recompilation due to
misprediction, or in super-corner-cases a crash.

These effects are pretty hard to measure: Fil points out that
marsalis-osr-entry really needs mustHandleValues (the JSValues
from the point of execution) because right now it just happens to
correctly guess int32. I tried removing mustHandleValues entirely
and saw no slowdowns, but our benchmarks probably aren't
sufficient to reliably find issues, sometimes because we happen to
have sufficient mitigations.

DFG tier-up was added here:
https://bugs.webkit.org/show_bug.cgi?id=112838

* JavaScriptCore.xcodeproj/project.pbxproj:
* dfg/DFGJITCode.h:
* dfg/DFGJITCompiler.cpp:
(JSC::DFG::JITCompiler::JITCompiler):
* dfg/DFGOSREntry.cpp:
(JSC::DFG::prepareOSREntry):
* dfg/DFGOSREntry.h:
(JSC::DFG::prepareOSREntry):
* dfg/DFGOperations.cpp:
* dfg/DFGOperations.h:
* dfg/DFGSpeculativeJIT64.cpp:
(JSC::DFG::SpeculativeJIT::compile):
* dfg/DFGTierUpEntryTrigger.h: Copied from Source/JavaScriptCore/ftl/FTLOSREntry.h.
* dfg/DFGToFTLForOSREntryDeferredCompilationCallback.cpp:
(JSC::DFG::ToFTLForOSREntryDeferredCompilationCallback::ToFTLForOSREntryDeferredCompilationCallback):
(JSC::DFG::Ref&lt;ToFTLForOSREntryDeferredCompilationCallback&gt;ToFTLForOSREntryDeferredCompilationCallback::create):
(JSC::DFG::ToFTLForOSREntryDeferredCompilationCallback::compilationDidBecomeReadyAsynchronously):
(JSC::DFG::ToFTLForOSREntryDeferredCompilationCallback::compilationDidComplete):
* dfg/DFGToFTLForOSREntryDeferredCompilationCallback.h:
* ftl/FTLOSREntry.cpp:
(JSC::FTL::prepareOSREntry):
* ftl/FTLOSREntry.h:
* jit/JITOperations.cpp:</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkJSTestsChangeLog">trunk/JSTests/ChangeLog</a></li>
<li><a href="#trunkSourceJavaScriptCoreChangeLog">trunk/Source/JavaScriptCore/ChangeLog</a></li>
<li><a href="#trunkSourceJavaScriptCoreJavaScriptCorexcodeprojprojectpbxproj">trunk/Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj</a></li>
<li><a href="#trunkSourceJavaScriptCoredfgDFGJITCodeh">trunk/Source/JavaScriptCore/dfg/DFGJITCode.h</a></li>
<li><a href="#trunkSourceJavaScriptCoredfgDFGJITCompilercpp">trunk/Source/JavaScriptCore/dfg/DFGJITCompiler.cpp</a></li>
<li><a href="#trunkSourceJavaScriptCoredfgDFGOSREntrycpp">trunk/Source/JavaScriptCore/dfg/DFGOSREntry.cpp</a></li>
<li><a href="#trunkSourceJavaScriptCoredfgDFGOSREntryh">trunk/Source/JavaScriptCore/dfg/DFGOSREntry.h</a></li>
<li><a href="#trunkSourceJavaScriptCoredfgDFGOperationscpp">trunk/Source/JavaScriptCore/dfg/DFGOperations.cpp</a></li>
<li><a href="#trunkSourceJavaScriptCoredfgDFGOperationsh">trunk/Source/JavaScriptCore/dfg/DFGOperations.h</a></li>
<li><a href="#trunkSourceJavaScriptCoredfgDFGSpeculativeJIT64cpp">trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT64.cpp</a></li>
<li><a href="#trunkSourceJavaScriptCoredfgDFGToFTLForOSREntryDeferredCompilationCallbackcpp">trunk/Source/JavaScriptCore/dfg/DFGToFTLForOSREntryDeferredCompilationCallback.cpp</a></li>
<li><a href="#trunkSourceJavaScriptCoredfgDFGToFTLForOSREntryDeferredCompilationCallbackh">trunk/Source/JavaScriptCore/dfg/DFGToFTLForOSREntryDeferredCompilationCallback.h</a></li>
<li><a href="#trunkSourceJavaScriptCoreftlFTLOSREntrycpp">trunk/Source/JavaScriptCore/ftl/FTLOSREntry.cpp</a></li>
<li><a href="#trunkSourceJavaScriptCoreftlFTLOSREntryh">trunk/Source/JavaScriptCore/ftl/FTLOSREntry.h</a></li>
<li><a href="#trunkSourceJavaScriptCorejitJITOperationscpp">trunk/Source/JavaScriptCore/jit/JITOperations.cpp</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkJSTestsmicrobenchmarksmandelbrotjs">trunk/JSTests/microbenchmarks/mandelbrot.js</a></li>
<li><a href="#trunkJSTestsmicrobenchmarksnonudejs">trunk/JSTests/microbenchmarks/nonude.js</a></li>
<li><a href="#trunkSourceJavaScriptCoredfgDFGTierUpEntryTriggerh">trunk/Source/JavaScriptCore/dfg/DFGTierUpEntryTrigger.h</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkJSTestsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/ChangeLog (211223 => 211224)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/ChangeLog        2017-01-26 19:50:14 UTC (rev 211223)
+++ trunk/JSTests/ChangeLog        2017-01-26 19:52:35 UTC (rev 211224)
</span><span class="lines">@@ -1,3 +1,27 @@
</span><ins>+2017-01-26  JF Bastien  &lt;jfbastien@apple.com&gt;
+
+        OSR entry: delay outer-loop compilation when at inner-loop
+        https://bugs.webkit.org/show_bug.cgi?id=167149
+
+        Reviewed by Filip Pizlo.
+
+        Try to be mean to OSR entry by using nested loops, and having
+        non-int32 types or truly varying types.
+
+        Mandelbrot currently never tiers up to FTL because it exits too
+        many times before this. That shouldn't happen because it's just
+        numbers and int32s. I'll file a bug to fix this.
+
+        * microbenchmarks/mandelbrot.js: Added.
+        (mandelbrot):
+        (printable):
+        * microbenchmarks/nonude.js: Added.
+        (Array.prototype.remove):
+        (const.u):
+        (const.load):
+        (const.scan):
+        (const.main):
+
</ins><span class="cx"> 2017-01-25  Saam Barati  &lt;sbarati@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         WebAssembly JS API: coerce return values from imports
</span></span></pre></div>
<a id="trunkJSTestsmicrobenchmarksmandelbrotjs"></a>
<div class="addfile"><h4>Added: trunk/JSTests/microbenchmarks/mandelbrot.js (0 => 211224)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/microbenchmarks/mandelbrot.js                                (rev 0)
+++ trunk/JSTests/microbenchmarks/mandelbrot.js        2017-01-26 19:52:35 UTC (rev 211224)
</span><span class="lines">@@ -0,0 +1,62 @@
</span><ins>+const max_s = 255;
+const hysterisis = 3;
+
+function mandelbrot(x, y, w, h, scene_i, scene_z, X, Y, iterations) {
+    const max_z = 2.0;
+    
+    for (let i = X; i; --i)
+        for (let j = Y; j; --j) {
+            let real = x + (i - 1) / (1.0 * (X - 1) * w);
+            let imag = y + (j - 1) / (1.0 * (Y - 1) * h);
+            let z_real = 0.0;
+            let z_imag = 0.0;
+            
+            let it = iterations;
+            while (--it &amp;&amp; Math.sqrt(z_real**2 + z_imag**2) &lt; max_z) {
+                const next_real = z_real**2 - z_imag**2 + real;
+                const next_imag = 2 * (z_real * z_imag) + imag;
+                z_real = next_real;
+                z_imag = next_imag;
+            }
+            
+            const idx = (j - 1) * X + (i - 1);
+            const new_i = max_s * it / (1.0 * iterations);
+            scene_i[idx] = ((scene_i[idx] + new_i * hysterisis) / (hysterisis + 1)) | 0;
+            const new_z = max_s * Math.min(max_z, Math.sqrt(z_real**2 + z_imag**2)) / max_z;
+            scene_z[idx] = ((scene_z[idx] + new_z * hysterisis) / (hysterisis + 1)) | 0;
+        }
+}
+
+const shades = ['█', '▉', '▊', '▋', '▌', '▍', '▎', '▏', '▓', '▒', '░'];
+const shade = i =&gt; shades[Math.round((i * (shades.length - 1)) / max_s)];
+
+function printable(scene_i, scene_z, X, Y) {
+    let s = &quot;&quot;;
+    for (let i = 0; i &lt; X; ++i) {
+        for (let j = 0; j &lt; Y; ++j) {
+            const idx = j * X + i;
+            s += shade((scene_i[idx] + scene_z[idx]) / 2);
+            if (j == Y - 1)
+                s += '\n';
+        }
+    }
+    return s;
+}
+
+const width = 80, height = 80;
+let scene_i = Array.of(width * height).fill(0);
+let scene_z = Array.of(width * height).fill(0);
+
+for (let i = 1; i &lt; 64; ++i) {
+    mandelbrot(-0.5, -0.5, 0.5, 0.5, scene_i, scene_z, width, height, i);
+}
+
+const result = printable(scene_i, scene_z, width, height);
+
+let seen = false;
+for (let i = 0; i &lt; result.length; ++i)
+    if (result[i] === shades[0])
+        seen = true;
+
+if (!seen)
+    throw new Error(`Unexpected mandelbrot:\n${result}`);
</ins></span></pre></div>
<a id="trunkJSTestsmicrobenchmarksnonudejs"></a>
<div class="addfile"><h4>Added: trunk/JSTests/microbenchmarks/nonude.js (0 => 211224)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/microbenchmarks/nonude.js                                (rev 0)
+++ trunk/JSTests/microbenchmarks/nonude.js        2017-01-26 19:52:35 UTC (rev 211224)
</span><span class="lines">@@ -0,0 +1,136 @@
</span><ins>+const makeFaster = 8;
+
+Array.prototype.remove = function(m) {
+    var w = this.slice(m + 1);
+    this.length = m;
+    return this.push.apply(this, w);
+};
+
+var m = {};
+var w = null;
+var g = [];
+var z = null;
+var islewd = !!0;
+
+const u = function(m) {
+    if (m)
+        islewd = !0;
+};
+
+const load = function(g) {
+    m.width = g.width / makeFaster;
+    m.height = g.height / makeFaster;
+    w = g.data.splice(0, g.data.length - g.data.length / makeFaster);
+    islewd = !!0;
+};
+
+const scan = function() {
+    var k = w, d = [], n = [], f = [], l, r = -1, x = -1, D = k.length;
+    l = m.width;
+    for (var y = 0, p = 1; y &lt; D; y += 4, p++) {
+        var A = p &gt; l ? p % l - 1 : p, v = p &gt; l ? Math.ceil(p / l) - 1 : 1,
+            a = k[y], b = k[y + 1], c = k[y + 2],
+            q = 95 &lt; a &amp;&amp; 40 &lt; b &amp;&amp; 100 &gt; b &amp;&amp; 20 &lt; c &amp;&amp;
+                15 &lt; Math.max(a, b, c) - Math.min(a, b, c) &amp;&amp;
+                15 &lt; Math.abs(a - b) &amp;&amp; a &gt; b &amp;&amp; a &gt; c,
+            e;
+        e = a + b + c;
+        e = [ a / e, b / e, c / e ];
+        e = 1.185 &lt; e[0] / e[1] &amp;&amp; .107 &lt; a * c / Math.pow(a + b + c, 2) &amp;&amp;
+            .112 &lt; a * b / Math.pow(a + b + c, 2);
+        var h;
+        h = Math.max(a, b, c);
+        var t = h - Math.min(a, b, c);
+        h = h == a ? (b - c) / t : h == b ? 2 + (b - a) / t : 4 + (a - b) / t;
+        h *= 60;
+        0 &gt; h &amp;&amp; (h += 360);
+        b = [ h, 1 - Math.min(a, b, c) / (a + b + c) * 3, 1 / 3 * (a + b + c) ];
+        a = b[0];
+        b = b[1];
+        if (q || e || 0 &lt; a &amp;&amp; 35 &gt; a &amp;&amp; .23 &lt; b &amp;&amp; .68 &gt; b) {
+            d.push({id : p, skin : !0, region : 0, x : A, y : v, checked : !1});
+            e = -1;
+            A = [ p - 2, p - l - 2, p - l - 1, p - l ];
+            a = !1;
+            for (v = 0; 4 &gt; v; v++)
+                if (q = A[v], d[q] &amp;&amp; d[q].skin) {
+                    if (d[q].region != e &amp;&amp; -1 != e &amp;&amp; r != e &amp;&amp;
+                        x != d[q].region) {
+                        a = d[q].region;
+                        r = e;
+                        x = a;
+                        b = f.length;
+                        for (h = c = -1; b--;)
+                            for (var t = f[b], C = t.length; C--;)
+                                t[C] == e &amp;&amp; (c = b), t[C] == a &amp;&amp; (h = b);
+                        if (-1 == c || -1 == h || c != h)
+                            -1 == c &amp;&amp; -1 == h
+                                ? f.push([ e, a ])
+                                : -1 != c &amp;&amp; -1 == h
+                                      ? f[c].push(a)
+                                      : -1 == c &amp;&amp; -1 != h
+                                            ? f[h].push(e)
+                                            : -1 != c &amp;&amp; -1 != h &amp;&amp; c != h &amp;&amp;
+                                                  (f[c] = f[c].concat(f[h]),
+                                                   f.remove(h));
+                    }
+                    e = d[q].region;
+                    a = !0;
+                }
+            a
+                ? -1 &lt; e &amp;&amp; (n[e] || (n[e] = []), d[p - 1].region = e,
+                             n[e].push(d[p - 1]))
+                : (d[p - 1].region = n.length, n.push([ d[p - 1] ]));
+        } else
+            d.push({id : p, skin : !1, region : 0, x : A, y : v, checked : !1});
+    }
+    d = f.length;
+    for (k = []; d--;)
+        for (l = f[d], r = l.length, k[d] || (k[d] = []); r--;)
+            x = l[r], k[d] = k[d].concat(n[x]), n[x] = [];
+    for (f = n.length; f--;)
+        0 &lt; n[f].length &amp;&amp; k.push(n[f]);
+    n = k.length;
+    for (f = 0; f &lt; n; f++)
+        30 &lt; k[f].length &amp;&amp; g.push(k[f]);
+    n = g.length;
+    f = m.width * m.height;
+    k = 0;
+    if (3 &gt; n)
+        u(!1);
+    else {
+        for (d = !1; !d;)
+            for (d = !0, l = 0; l &lt; n - 1; l++)
+                g[l].length &lt; g[l + 1].length &amp;&amp;
+                    (d = !1, r = g[l], g[l] = g[l + 1], g[l + 1] = r);
+        for (; n--;)
+            k += g[n].length;
+        15 &gt; k / f * 100
+            ? u(!1)
+            : 35 &gt; g[0].length / k * 100 &amp;&amp; 30 &gt; g[1].length / k * 100 &amp;&amp;
+                      30 &gt; g[2].length / k * 100
+                  ? u(!1)
+                  : 45 &gt; g[0].length / k * 100 ? u(!1)
+                                               : 60 &lt; g.length ? u(!1) : u(!0);
+    }
+};
+
+const data = [0,1,5,9,12,20,34,53,71,84,94,110,137,174,209,234,251,16,54,107,162,202,227,253,42,109,183,242,23,53,102,180,17,97,149,186,236,65,175,22,93,138,189,21,144,15,109,166,219,50,182,75,195,13,69,154,34,201,93,190,253,78,214,139,58,182,2,79,210,145,90,244,82,159,27,219,187,117,236,61,176,109,93,57,205,42,148,73,67,61,244,98,200,112,108,129,94,229,75,230,221,6,9,177,30,171,150,204,244,194,63,193,156,214,29,21,171,40,240,36,133,169,96,224,148,187,45,124,92,232,139,158,23,140,154,60,212,207,68,217,25,220,112,82,185,100,213,194,93,39,120,47,205,236,154,81,134,60,1,86,35,207,229,143,113,253,244,161,152,43,30,223,9,196,161,20,12,252,96,53,255,79,61,82,243,241,180,222,182,228,193,242,187,196,123,179,200,53,20,1,145,196,6,182,185,150,251,26,126,113,166,129,188,187,49,99,214,191,214,171,35,140,68,76,74,239,88,236,237,36,22,138,213,133,205,65,56,128,159,89,226,158,172,208,189,110,44,53,109,123,49,200,172,4,118,127,0,109,101,7,193,216,43,100,91,61,72,130,179,176,148,167,7,118,15
 1,87,21,71,249,174,211,92,229,32,30,37,99,191,9,57,115,212,64,128,135,151,252,183,101,157,100,64,187,203,203,16,160,61,182,15,107,214,60,146,242,131,64,230,55,68,118,42,69,59,141,87,75,9,121,203,56,205,119,38,219,146,50,163,255,135,109,138,115,216,232,53,50,176,244,103,52,55,49,1,173,72,228,148,113,128,153,117,246,81,249,47,177,229,101,115,211,19,245,145,43,250,5,52,99,112,66,230,150,153,254,125,159,51,140,75,203,180,60,220,232,82,206,20,15,217,171,183,18,158,17,35,211,127,158,85,61,175,92,174,124,63,145,117,62,71,180,100,13,108,112,72,78,204,177,143,234,172,80,130,132,217,162,112,187,143,141,72,143,137,146,251,212,221,168,239,208,205,100,156,233,151,113,10,70,140,78,120,110,179,133,181,214,136,189,200,39,33,133,193,84,69,52,219,95,29,39,34,175,236,109,156,46,87,151,95,184,61,95,217,236,59,75,5,181,158,166,133,50,251,43,154,189,63,118,40,193,195,40,104,33,152,122,18,219,252,57,85,92,130,203,242,194,107,111,16,236,67,189,229,190,189,53,226,38,202,84,142,160,195,249,33,63,139,
 40,218,43,235,136,189,204,29,178,39,59,48,144,131,130,210,93,240,121,7,141,226,245,11,146,165,201,78,1,139,229,94,43,9,128,121,127,57,171,6,106,220,109,60,69,57,183,182,188,115,248,150,90,6,118,233,199,20,70,198,163,173,184,171,110,240,72,204,215,90,197,119,101,82,46,33,64,79,248,73,203,5,214,105,251,184,189,15,130,184,98,161,16,74,68,47,33,3,209,196,31,196,42,218,8,140,25,111,110,28,186,175,61,47,224,191,233,59,152,3,116,179,144,58,56,242,32,233,170,180,46,3,223,84,43,171,134,67,177,230,6,32,78,193,151,147,43,13,142,140,154,83,140,104,77,179,196,37,26,37,140,68,36,7,199,53,71,75,199,0,138,137,120,208,192,24,93,16,18,214,29,94,62,188,9,92,235,223,49,129,75,94,52,173,61,87,201,209,0,216,109,58,114,169,78,110,209,43,57,214,29,125,120,47,19,71,101,12,116,79,250,234,25,32,213,154,236,177,43,184,169,31,235,143,138,207,251,240,0,123,36,90,210,30,56,112,234,76,48,186,160,112,203,149,18,207,74,127,188,35,112,104,73,167,183,227,62,138,174,248,186,197,107,51,136,129,198,188,231,94,226
 ,85,229,191,158,1,197,134,35,199,128,14,50,38,144,213,123,115,39,66,62,240,133,30,155,229,64,32,148,250,129,19,169,119,168,248,202,205,136,4,194,9,98,13,234,219,236,34,55,199,216,15,49,61,52,238,84,180,162,91,75,111,90,214,84,129,109,55,228,130,89,187,146,48,227,189,197,23,183,74,71,135,169,168,223,117,252,218,19,130,19,164,238,172,11,186,95,211,8,237,149,98,214,1,57,138,173,139,138,52,116,110,76,64,146,119,174,133,100,135,2,217,230,187,227,96,235,110,28,255,180,199,92,76,91,71,195,176,94,134,175,138,250,10,246,50,43,200,71,195,32,96,227,8,154,196,212,30,238,84,235,248,4,112,96,189,53,74,157,89,78,86,122,169,139,211,198,54,196,8,183,210,210,116,32,96,11,70,118,35,161,175,115,26,177,87,93,252,224,57,122,28,107,82,71,138,194,122,224,194,164,249,118,114,210,95,249,114,128,254,80,67,78,234,201,19,102,131,179,86,59,161,23,54,57,183,191,144,98,110,249,18,70,204,63,59,9,113,195,58,158,164,129,232,52,198,109,170,119,138,152,91,148,72,251,112,250,234,250,116,26,179,103,108,137,26,215
 ,105,243,223,41,37,51,167,182,72,202,125,35,122,201,178,95,9,154,237,68,48,227,177,131,2,61,215,88,98,198,178,199,192,198,11,73,242,238,5,60,163,245,177,184,190,206,39,178,216,35,0,149,158,110,77,39,219,170,19,27,246,180,88,40,153,179,188,183,121,37,69,56,136,22,59,180,49,179,74,183,144,227,121,50,248,129,103,184,52,203,144,90,169,50,122,150,22,48,59,73,91,174,150,245,2,237,226,45,35,163,229,10,17,45,212,57,205,133,227,194,196,193,169,67,77,248,14,73,110,42,60,216,204,233,25,33,153,97,22,184,174,18,71,139,253,210,58,240,44,69,140,84,207,178,45,123,200,87,133,90,49,18,171,240,120,240,39,238,41,46,196,130,3,243,48,25,133,40,194,6,167,176,210,251,103,19,114,236,191,25,254,10,117,188,87,157,156,226,147,11,159,162,88,156,180,189,146,64,78,63,197,183,36,132,156,220,184,217,66,121,95,137,139,11,211,30,176,97,64,51,187,108,162,129,228,67,220,82,66,7,138,50,24,185,149,15,76,254,86,135,152,176,70,175,129,158,62,251,150,87,141,223,115,250,91,11,116,45,31,172,175,231,58,114,35,11,166,10
 ,235,156,97,6,78,146,154,161,187,134,172,157,97,128,23,112,190,65,95,64,93,164,119,147,177,243,129,2,195,155,120,175,125,111,136,90,207,144,84,208,169,202,202,181,18,20,5,217,122,63,203,48,126,114,227,76,152,34,246,119,3,244,153,242,88,200,207,75,238,176,149,69,49,91,183,116,167,207,17,39,16,90,143,77,78,168,15,130,91,172,200,204,198,14,29,223,94,124,58,28,241,229,244,156,104,199,246,197,114,10,70,36,77,143,201,165,191,61,23,90,240,78,183,21,114,69,234,233,16,165,118,112,196,99,168,221,51,254,144,174,93,165,176,14,107,200,17,224,237,188,116,184,172,107,220,29,205,142,28,36,107,62,153,98,89,236,125,34,246,82,102,164,242,193,253,128,78,57,167,13,192,16,37,156,123,237,71,33,6,203,77,66,145,210,19,203,4,234,146,56,111,174,142,194,54,96,60,139,226,168,96,79,155,129,2,126,241,254,165,178,249,46,197,92,110,67,218,170,183,83,254,86,195,238,167,195,85,9,212,0,123,136,103,115,50,239,32,126,31,162,1,213,139,130,99,156,97,209,190,118,15,89,111,5,196,66,0,203,61,152,177,216,17,216,213,17
 2,161,49,32,98,56,97,183,84,17,67,91,207,23,81,209,88,40,5,231,65,84,123,132,8,73,66,155,141,76,212,89,122,176,118,91,88,44,15,169,37,138,124,205,36,161,148,184,31,60,218,187,202,199,30,110,76,30,212,161,81,80,136,239,206,61,147,196,149,82,213,152,195,167,111,100,17,189,201,211,5,60,167,194,145,33,63,228,189,194,23,110,252,95,117,225,95,155,22,161,233,70,120,145,104,150,44,25,124,69,201,34,66,124,138,181,24,32,41,145,201,235,58,106,209,109,97,252,29,215,32,28,120,4,186,67,246,162,49,41,21,142,45,243,168,144,61,160,157,252,240,100,75,109,29,159,15,200,96,242,140,184,3,222,163,57,203,31,187,190,60,87,201,171,32,117,84,104,125,54,16,4,14,146,236,159,99,100,136,252,34,206,241,128,212,208,59,180,144,59,252,54,87,79,30,110,252,77,158,168,123,243,198,48,57,211,148,158,63,237,82,237,96,72,71,135,13,28,226,208,183,245,137,137,41,27,99,36,218,95,77,27,34,245,9,197,112,204,206,67,21,221,187,55,73,228,239,195,88,112,126,175,125,134,113,147,99,120,158,42,45,200,249,31,41,166,171,56,80,13
 6,243,231,0,15,127,162,210,206,55,117,170,106,158,54,78,143,250,231,55,245,56,119,152,45,136,222,218,64,178,91,133,199,19,237,110,150,48,141,185,118,238,9,151,19,162,200,71,224,211,72,160,198,133,71,6,39,139,72,167,97,90,183,68,35,160,76,251,12,177,43,86,26,21,68,199,53,167,207,209,133,136,26,105,102,82,251,255,190,111,201,174,212,72,14,140,220,243,58,131,4,152,120,32,85,220,168,111,112,39,66,126,11,249,151,240,20,153,78,41,192,89,210,86,149,255,197,54,117,215,15,136,135,90,234,54,233,222,243,151,18,129,79,34,1,195,199,184,107,127,185,185,219,206,89,36,44,96,33,170,48,63,121,170,107,42,245,251,199,151,143,34,164,125,68,50,112,100,41,223,31,148,247,193,102,48,134,225,30,12,52,112,161,68,234,34,101,148,145,235,109,231,202,131,108,6,197,75,51,25,56,195,27,78,120,44,242,69,156,252,119,140,135,169,120,108,27,8,217,255,222,194,91,116,192,73,249,42,59,170,13,122,234,212,207,140,144,123,200,240,51,12,26,40,156,171,144,38,127,85,97,46,20,230,158,210,5,148,242,101,94,110,107,239,88,19
 7,184,251,106,65,115,50,173,80,211,127,101,222,81,81,118,146,69,251,193,236,31,85,31,182,38,30,165,156,239,56,175,241,227,55,162,160,142,126,193,242,28,255,244,232,52,159,51,89,14,92,63,21,184,164,0,11,244,53,121,200,227,39,113,235,67,160,195,226,222,53,233,2,157,100,107,29,71,186,95,205,75,185,66,149,236,48,177,45,208,99,27,146,202,167,241,249,187,233,189,89,184,55,155,29,162,118,66,10,133,11,135,47,183,109,76,134,107,177,73,104,202,91,59,27,42,20,227,86,219,129,144,147,139,68,33,234,168,20,196,251,221,77,154,200,156,89,218,145,130,230,51,73,229,148,108,159,178,196,205,40,88,31,72,212,107,26,54,138,43,144,163,53,232,243,144,26,102,68,70,99,168,162,182,28,29,208,153,89,161,153,57,37,130,119,70,166,100,60,113,48,205,60,109,234,102,175,105,97,44,248,81,26,78,45,130,50,21,134,179,195,97,98,137,252,201,81,200,91,123,116,186,12,199,249,181,216,164,43,122,35,1,4,151,226,11,210,43,201,148,96,171,13,11,245,139,203,146,234,128,78,97,58,246,140,123,159,235,181,11,34,251,185,248,55,251
 ,225,13,119,80,170,230,0,206,191,188,233,221,182,105,137,8,200,225,51,15,218,8,15,229,157,248,200,157,136,204,14,92,119,181,250,108,143,111,21,77,54,147,26,94,215,115,20,9,155,74,247,68,123,149,238,68,172,233,95,3,229,79,39,149,199,37,72,95,145,128,199,217,224,86,3,228,131,14,115,12,137,245,41,191,209,77,29,227,239,250,208,224,172,206,16,218,85,141,18,203,196,138,85,28,32,221,61,60,212,96,159,248,166,41,230,52,86,0,25,141,175,134,11,202,163,157,94,81,138,37,64,137,41,161,171,214,221,115,74,145,79,163,85,115,253,76,107,84,122,139,117,4,1,185,21,177,220,245,38,174,235,200,79,88,253,30,193,168,222,102,180,3,98,28,131,80,132,104,164,234,44,58,167,105,104,215,183,59,88,47,160,170,243,89,205,239,79,49,169,137,51,226,135,71,158,176,167,69,108,213,149,164,57,81,44,212,88,49,230,57,0,80,188,28,156,34,37,98,160,41,55,37,213,52,244,30,138,72,72,250,188,200,92,130,172,240,8,255,111,183,32,83,252,171,135,191,180,93,198,198,109,100,105,67,159,87,242,109,42,43,196,123,247,154,215,47,115,89
 ,105,177,64,87,228,39,73,125,44,154,70,32,169,213,94,221,185,131,172,161,152,248,81,140,128,215,160,183,12,111,95,127,72,220,217,85,134,181,108,41,150,90,52,160,252,97,21,134,162,118,246,80,28,210,1,114,107,202,108,35,116,213,126,181,199,81,14,220,92,7,241,39,207,188,64,199,187,105,167,161,105,15,1,214,116,166,22,8,175,49,9,214,130,230,195,66,41,41,222,230,77,222,152,136,80,73,112,233,19,201,235,78,89,87,97,183,178,43,67,48,78,21,148,13,110,139,181,161,114,18,26,145,129,30,27,70,131,119,176,82,86,161,221,123,80,17,226,13,77,223,131,60,127,96,233,225,119,199,239,101,181,187,104,184,255,222,162,155,149,38,135,139,142,160,63,59,114,41,76,214,166,42,188,129,160,57,253,50,115,98,74,177,107,150,183,174,8,21,8,151,183,86,155,49,217,110,174,96,206,199,207,75,221,227,120,146,202,78,135,5,131,83,156,135,235,254,232,206,9,241,62,11,182,210,209,116,170,111,11,63,176,234,72,110,24,5,101,29,29,66,22,41,188,205,28,28,71,191,137,184,37,30,240,241,179,155,11,89,81,243,52,57,145,200,161,5,25,
 96,118,87,11,106,129,239,117,222,169,103,153,211,78,39,129,55,159,17,200,242,136,14,211,188,183,252,160,15,123,254,2,1,152,75,217,10,160,195,55,192,38,33,156,13,57,90,141,135,22,189,89,241,42,129,60,193,85,79,6,78,73,25,242,54,21,34,129,218,5,95,57,33,40,43,112,133,69,94,131,66,43,106,252,216,204,94,64,217,27,124,48,198,205,171,91,35,204,190,0,206,122,151,171,135,21,65,59,151,193,87,80,24,113,223,243,84,247,122,253,40,16,145,79,155,214,48,223,17,148,189,4,195,27,190,244,38,164,184,124,116,144,29,229,250,189,253,112,226,3,136,163,24,142,174,65,118,252,126,203,168,232,233,169,233,251,230,61,22,160,21,225,105,125,62,231,203,57,32,218,168,156,227,186,228,116,157,235,69,31,130,86,95,18,240,40,182,122,38,84,245,165,59,195,29,250,121,117,199,4,91,76,177,137,23,1,226,137,224,235,242,117,161,226,76,180,45,23,116,121,63,18,176,158,37,93,253,66,119,204,115,135,192,136,147,109,22,219,180,47,41,95,196,45,240,126,110,146,56,64,123,181,164,14,55,208,66,10,18,236,150,145,35,159,3,90,57,60,2
 32,132,189,147,29,142,79,179,124,222,82,84,16,18,108,133,251,104,223,116,167,209,76,187,119,158,52,4,137,82,155,73,4,85,249,69,29,42,241,231,233,195,226,248,201,204,159,6,228,111,73,0,89,86,49,89,39,105,69,253,237,144,24,219,127,70,76,3,212,27,14,117,143,181,29,225,229,192,2,191,195,226,223,80,241,77,170,210,201,53,163,155,202,109,98,109,88,239,48,124,93,223,63,151,255,215,112,97,120,221,108,106,79,182,9,7,184,56,189,151,229,78,45,88,136,183,236,217,26,247,145,202,233,190,201,80,207,138,153,250,120,170,79,190,178,118,91,82,50,60,229,6,145,150,173,240,233,112,35,187,1,219,124,107,6,253,122,18,107,170,25,133,102,195,151,224,39,104,16,39,244,197,239,167,187,134,142,30,36,43,153,48,134,192,121,202,204,112,15,150,160,72,95,145,108,157,89,94,71,205,232,237,109,188,101,81,211,175,187,20,132,51,122,31,56,30,99,117,31,133,237,157,181,1,248,47,250,99,42,174,40,109,147,90,118,64,187,137,248,127,84,111,168,191,120,231,141,236,209,63,99,188,255,103,0,31,5,56,156,150,246,99,165,164,108,58
 ,100,247,120,80,143,37,250,177,164,140,55,62,106,86,56,162,166,129,109,158,42,211,42,2,204,58,92,78,20,233,98,215,156,44,178,114,31,43,167,113,76,229,11,245,49,12,26,147,68,5,232,211,66,204,252,65,123,139,213,222,117,162,164,236,203,9,254,60,41,166,7,126,231,55,227,102,86,89,129,206,193,223,120,160,22,72,201,207,29,65,222,248,25,4,244,20,2,47,226,99,171,223,147,59,102,227,250,89,140,96,243,151,165,48,209,208,220,166,131,18,48,168,115,74,131,176,103,240,1,204,168,199,39,151,195,126,15,34,30,117,226,179,233,163,249,82,114,187,119,67,110,228,110,217,9,18,63,217,187,67,243,53,66,221,41,24,134,232,99,160,116,96,14,114,166,221,80,12,202,38,37,94,102,246,228,89,16,3,101,228,114,92,170,195,0,142,112,116,66,173,247,160,197,216,43,229,32,198,65,168,187,166,99,174,161,240,61,57,196,17,150,161,242,240,91,184,205,150,7,33,89,130,239,149,146,31,255,98,176,86,147,49,156,103,206,133,239,142,134,181,28,205,120,90,18,134,130,218,236,161,142,34,1,99,252,86,60,220,177,49,81,85,75,12,194,31,151,
 101,212,4,116,33,126,61,213,15,23,66,195,137,57,102,2,166,55,242,207,46,139,134,192,35,86,115,1,43,94,212,127,44,168,233,40,201,244,52,177,24,75,219,93,84,54,11,11,254,106,66,57,16,181,60,214,170,162,95,160,183,112,53,68,34,38,168,29,139,223,102,150,87,219,99,33,34,54,24,190,126,181,51,57,70,246,183,65,98,186,52,194,251,116,102,188,50,115,86,7,234,43,123,96,233,200,150,218,55,226,234,153,17,134,121,77,163,119,15,226,56,230,105,117,82,148,81,225,150,193,176,67,143,94,128,155,24,156,169,97,118,83,144,87,73,213,183,66,58,63,21,142,110,193,77,52,181,77,174,37,17,50,218,193,110,183,220,75,69,145,144,172,7,172,201,99,220,36,237,149,83,226,10,38,220,85,234,197,197,158,22,70,172,212,178,99,199,194,209,238,119,51,3,32,161,13,195,190,197,170,112,66,85,173,237,152,155,184,0,162,72,10,124,176,173,71,138,11,100,120,99,81,96,136,150,107,63,135,109,86,64,229,118,199,87,55,121,61,81,7,202,218,59,191,38,88,132,230,107,165,81,229,86,254,211,18,45,236,39,201,41,17,14,189,252,251,26,145,56,179,
 241,89,71,106,219,42,59,190,85,91,16,124,35,32,239,21,211,246,253,143,209,62,9,212,40,50,202,120,125,59,0,73,192,105,231,56,218,35,180,195,241,187,252,28,196,73,62,156,152,145,33,213,113,157,200,221,22,89,50,110,139,79,246,229,61,180,198,37,34,159,93,16,70,134,245,199,119,39,196,128,200,171,140,169,231,5,225,166,182,87,84,239,118,25,40,9,170,255,161,95,42,177,147,230,99,202,17,91,198,73,163,151,61,45,14,198,47,242,13,101,78,3,191,232,216,83,132,173,252,111,233,83,201,132,136,97,117,196,80,93,2,128,155,4,95,40,18,125,92,102,77,240,110,251,161,43,122,219,222,155,56,127,70,37,67,253,217,114,10,30,154,208,47,250,18,33,251,207,218,243,150,145,151,207,120,32,182,203,181,190,175,50,118,37,171,166,52,204,190,225,217,169,204,141,95,45,161,5,87,21,18,28,94,9,208,16,129,165,93,17,78,56,74,165,217,128,0,96,11,223,242,180,44,116,106,6,176,6,42,123,24,187,252,185,90,152,216,157,167,253,30,6,138,75,107,231,212,22,38,110,241,112,202,35,192,192,216,118,61,144,137,16,189,190,80,192,197,72,67,
 248,11,8,203,111,25,201,89,178,253,166,3,204,14,238,190,40,220,159,226,211,108,68,155,234,127,92,89,86,83,101,132,103,195,195,50,222,141,188,207,237,126,59,58,10,134,45,141,131,57,245,215,206,193,213,76,24,148,1,127,107,76,17,120,224,39,147,47,133,44,104,10,171,5,41,79,121,107,23,252,202,122,217,111,60,88,78,79,58,35,116,113,183,119,63,117,11,168,36,180,131,58,53,99,206,219,161,45,15,3,3,226,61,248,149,222,34,215,11,56,170,52,142,230,213,134,21,49,173,83,127,129,137,224,221,118,10,211,168,52,106,176,147,57,11,0,139,104,82,137,78,2,94,1,149,180,19,226,226,211,186,200,11,63,251,31,38,240,254,175,113,20,65,111,207,210,247,190,104,156,124,77,47,18,235,218,33,221,178,230,3,144,246,85,26,245,207,34,72,165,7,235,80,234,115,217,41,100,108,45,224,27,70,247,237,24,246,172,61,64,132,190,21,228,13,229,212,17,142,37,208,159,119,235,156,217,187,64,3,8,97,101,27,182,24,19,223,35,79,10,101,167,254,91,189,102,172,93,135,62,206,10,203,204,48,222,228,77,190,155,152,49,83,147,159,127,90,16,87,6
 8,160,74,10,58,20,202,16,229,72,89,142,126,75,90,191,9,175,172,187,208,48,224,66,133,200,136,119,118,250,31,214,215,143,110,123,113,58,34,141,126,91,85,52,210,166,114,48,139,232,81,38,51,150,190,95,252,106,202,55,137,129,31,219,92,210,130,28,238,228,39,66,62,228,129,233,131,126,96,124,209,67,210,155,154,122,186,50,129,204,184,115,252,222,250,92,160,1,66,80,155,169,89,205,40,115,179,28,7,147,65,21,121,33,231,44,36,237,5,31,79,140,111,155,82,110,165,201,212,183,63,83,83,19,28,212,140,245,197,180,44,138,229,98,93,11,8,128,228,133,106,128,210,114,31,47,37,129,199,52,39,21,169,119,61,186,156,217,244,188,153,23,45,19,228,149,70,122,159,83,59,46,179,45,215,49,166,149,65,141,214,82,192,184,67,5,189,111,26,104,243,3,200,90,73,92,111,241,76,7,232,54,182,43,174,132,163,140,169,249,92,1,65,240,10,136,194,198,161,246,135,233,71,49,195,66,185,11,61,173,200,138,52,193,226,168,234,159,136,194,86,141,125,114,80,177,153,188,230,17,56,36,142,126,147,168,0,171,249,4,244,128,137,217,134,93,111,2
 46,208,79,209,126,90,117,243,195,107,57,244,110,43,3,229,72,94,76,206,253,215,76,157,112,62,189,234,218,147,38,236,111,222,131,6,161,72,91,144,217,164,243,185,221,252,122,8,18,153,96,61,26,193,210,39,86,142,133,96,236,136,45,64,166,124,4,194,70,185,137,186,175,185,240,104,87,218,122,52,96,190,87,181,247,226,171,38,229,71,195,93,199,250,109,168,143,53,138,124,96,17,37,249,176,211,47,211,110,62,220,7,62,84,116,168,161,254,220,5,94,244,143,129,64,86,115,250,51,62,131,181,14,177,42,208,156,124,155,50,35,199,99,243,141,180,228,176,148,64,85,135,86,30,210,110,88,18,126,180,178,100,234,196,134,44,193,238,66,17,176,92,141,185,124,102,88,58,175,98,145,34,235,220,212,119,91,139,219,119,193,132,150,206,156,92,92,28,231,245,148,240,168,222,226,235,25,165,205,131,18,122,102,237,13,221,5,84,151,57,196,226,82,19,168,233,92,165,163,69,116,70,76,91,188,119,185,126,5,82,128,55,27,157,243,241,242,38,48,145,107,167,53,247,129,39,172,236,139,125,154,13,211,47,80,169,18,226,223,210,239,142,144,50
 ,173,34,222,94,214,135,250,79,145,105,195,113,110,103,116,18,90,139,156,89,223,204,188,137,13,243,19,13,42,59,77,230,49,71,254,143,240,208,55,222,164,150,155,60,5,33,146,130,13,181,92,66,63,161,37,200,224,81,23,85,226,14,38,65,118,18,99,58,184,223,157,79,233,23,30,222,175,129,205,148,235,220,176,12,122,190,195,101,126,66,105,198,99,1,220,86,15,249,166,60,113,93,221,185,136,175,207,73,46,122,42,8,128,235,72,180,200,18,13,246,80,221,188,184,5,7,74,92,114,6,10,172,24,132,97,43,215,107,125,140,2,114,69,207,33,138,196,62,78,110,150,114,9,4,16,245,103,22,21,60,200,43,25,45,17,92,205,250,60,81,4,207,139,108,110,18,209,233,123,175,105,243,61,228,22,11,2,127,239,216,206,229,51,74,124,187,5,175,23,255,108,98,4,229,232,98,68,131,245,253,255,91,145,186,224,100,198,242,240,149,171,112,183,83,25,153,29,94,77,197,222,77,221,72,251,173,55,68,129,38,36,125,60,39,143,206,21,176,40,184,140,248,249,192,81,219,3,66,221,27,35,152,144,55,166,25,21,23,231,93,29,249,166,160,216,57,234,216,73,150,90,
 92,164,177,102,108,130,109,208,90,72,157,137,43,242,141,32,165,196,122,147,232,250,244,160,92,78,247,193,228,149,250,211,62,60,183,33,155,241,66,23,139,186,160,155,145,229,93,201,124,230,208,47,7,157,173,9,189,118,66,104,173,89,55,65,173,57,240,63,64,41,214,252,210,55,254,220,62,123,150,190,183,40,105,98,94,78,203,252,229,70,42,79,174,107,82,172,211,20,222,170,109,23,22,210,215,13,18,13,146,153,14,0,67,34,211,88,225,251,33,4,92,219,151,126,243,125,174,205,83,3,24,123,85,197,23,247,2,14,241,72,192,174,49,107,59,215,10,94,36,227,12,246,149,27,78,225,100,57,238,213,19,224,100,74,151,90,186,96,80,241,16,87,106,220,133,25,228,98,38,194,120,209,174,1,205,105,167,76,38,180,29,11,146,217,37,253,183,189,177,228,165,109,40,114,103,231,199,173,241,249,255,99,204,131,145,0,162,214,19,214,144,31,86,175,14,180,137,217,251,71,62,76,48,175,80,218,35,240,92,33,249,129,54,9,5,191,129,48,222,16,73,46,104,184,103,137,105,50,47,201,252,243,194,177,89,250,167,190,199,181,129,208,73,71,247,109,88,
 200,163,203,214,40,177,99,89,103,222,78,132,47,247,15,119,91,235,205,254,152,240,209,39,0,234,177,120,50,146,171,65,244,24,240,161,214,151,228,183,105,211,173,158,255,22,222,172,128,37,195,217,109,168,181,33,188,141,15,50,199,173,138,178,151,155,60,4,236,196,185,21,147,131,196,69,13,172,68,156,22,203,23,70,173,208,14,1,84,168,19,163,248,183,64,119,150,148,60,221,102,65,48,15,85,141,101,132,183,105,200,1,246,187,225,212,23,148,251,104,69,96,186,185,117,28,104,246,20,239,142,130,198,91,106,189,145,103,219,54,224,163,229,185,47,20,113,15,5,141,93,116,247,89,118,31,31,208,40,181,189,199,80,168,155,53,83,247,243,139,215,198,157,48,46,34,87,45,227,249,74,53,148,19,75,212,175,178,21,5,212,50,214,173,115,130,88,107,71,93,101,3,142,184,133,26,196,5,17,44,14,86,144,23,101,183,72,146,237,223,5,32,126,87,36,33,107,16,216,40,154,203,24,21,87,118,201,236,166,174,217,159,57,186,200,84,20,220,112,141,86,129,166,69,236,214,75,193,18,200,22,23,204,185,210,50,59,216,30,44,95,44,135,158,165,2,5
 7,68,252,222,222,74,247,249,122,245,77,56,74,194,186,35,125,34,6,25,90,126,236,120,38,137,221,251,6,189,202,178,189,101,27,123,56,85,112,103,87,54,210,87,120,145,194,103,20,199,102,98,60,110,132,213,234,78,128,139,173,214,213,208,44,217,15,59,32,110,198,78,25,133,232,200,197,184,28,64,114,155,160,194,73,241,31,203,212,254,169,19,107,99,242,233,30,9,220,146,167,248,102,21,254,172,194,164,31,86,84,31,56,113,206,194,78,111,38,251,236,43,64,39,204,0,237,61,93,206,142,94,77,137,177,226,228,30,156,142,33,199,87,111,131,192,108,194,114,161,205,149,48,244,188,37,111,145,244,88,165,123,130,77,49,190,134,48,71,130,88,215,147,206,29,15,229,51,219,211,126,248,99,82,69,167,243,107,123,166,145,144,9,183,247,164,96,180,70,75,197,206,57,14,31,168,254,188,147,114,238,91,225,35,224,144,234,240,204,222,153,253,38,231,57,242,72,52,137,169,177,135,146,170,215,129,193,238,62,209,176,150,242,146,57,42,157,229,187,247,154,72,20,70,120,168,156,225,134,106,100,52,157,204,107,229,146,29,22,10,75,52,23
 8,205,145,195,199,203,60,148,156,69,163,27,32,153,194,251,204,162,32,221,122,103,84,242,179,58,37,24,118,189,74,99,0,155,142,216,91,236,32,117,21,65,106,83,116,21,147,30,25,11,194,201,153,188,39,131,174,190,179,132,126,56,193,247,92,249,46,186,112,79,244,169,112,183,44,124,189,37,160,2,104,18,207,241,52,151,168,145,27,126,183,153,136,104,104,32,185,83,200,9,92,5,199,46,78,236,129,50,96,172,39,159,76,133,230,93,138,206,44,181,157,208,210,74,147,88,160,142,116,11,2,236,226,10,252,51,21,228,46,154,250,10,136,172,42,109,254,249,60,189,96,142,134,129,63,162,70,219,250,50,196,4,73,13,159,158,36,177,219,188,146,79,214,159,123,103,203,185,99,237,192,125,20,53,94,226,101,109,23,248,87,229,73,171,93,11,207,120,117,194,94,82,48,42,29,87,132,134,194,143,151,53,65,64,167,50,89,80,16,0,213,138,236,198,137,53,27,244,228,217,96,75,36,164,210,241,116,183,122,170,59,143,203,255,148,233,137,67,150,199,221,30,8,161,43,216,196,227,220,55,253,33,195,183,255,126,151,190,110,10,66,212,140,240,121,7
 1,80,115,112,31,189,224,182,106,201,201,64,90,232,162,5,127,47,86,84,215,113,214,222,152,101,165,52,95,194,16,148,141,75,148,99,213,114,254,138,215,86,40,175,97,157,99,49,109,37,39,16,76,122,35,211,211,91,123,163,220,231,2,233,176,251,46,178,119,35,135,173,169,168,30,130,130,184,205,81,11,146,16,242,252,67,127,4,153,9,118,20,219,170,139,138,79,77,159,133,104,237,117,99,91,191,203,155,169,168,168,167,115,255,136,72,22,175,74,141,150,71,41,96,97,209,64,123,68,81,246,118,238,148,170,25,106,78,13,35,116,67,60,86,27,156,144,70,252,182,178,108,194,119,68,187,142,248,169,6,166,214,148,181,200,247,167,145,213,44,142,36,174,130,141,6,97,64,1,65,26,16,172,218,187,92,250,70,236,107,204,76,191,204,183,90,251,104,2,239,198,15,233,229,88,31,253,251,26,200,72,228,105,165,250,238,59,213,67,179,241,11,122,139,234,240,105,177,35,152,217,84,218,88,41,116,163,2,217,102,85,124,226,68,28,68,73,230,45,136,132,95,138,186,11,88,27,60,133,217,234,73,25,126,160,247,21,248,218,238,67,168,173,246,218,12
 9,229,99,167,191,170,87,24,145,207,179,229,184,144,150,201,8,36,18,41,224,25,206,241,237,237,240,45,228,188,224,15,102,108,2,210,135,235,10,58,189,88,118,251,205,14,141,70,44,210,203,117,217,106,11,10,77,33,6,104,78,62,189,236,126,199,3,250,164,221,193,245,16,177,152,36,108,86,46,178,57,28,68,79,242,38,25,62,54,83,213,7,189,28,94,239,64,37,135,81,1,208,147,39,181,123,137,206,57,148,90,38,124,236,175,218,93,200,115,89,144,93,122,180,12,109,156,129,71,21,223,161,191,183,61,232,112,135,17,135,196,0,36,187,213,157,62,5,62,218,117,206,18,128,211,116,117,25,187,222,203,2,111,173,209,131,230,217,3,222,17,209,186,38,200,38,101,55,195,236,69,20,226,60,103,252,229,70,201,135,6,4,234,91,129,235,8,139,109,229,144,101,228,0,91,94,142,32,47,198,114,31,27,112,165,62,78,90,211,203,42,213,104,16,62,194,210,14,39,25,199,244,221,143,237,34,183,255,174,39,28,181,41,120,204,208,42,65,11,221,206,179,171,40,31,137,86,33,86,201,0,175,1,145,13,144,43,86,89,146,226,253,6,87,205,195,16,181,241,97,167,
 197,251,129,76,254,7,47,40,90,142,160,220,127,48,101,68,167,236,21,179,243,37,113,211,38,81,120,15,104,14,189,150,132,16,10,4,181,245,181,99,248,18,191,186,174,105,248,155,103,6,8,167,2,15,30,206,67,180,54,251,68,217,195,51,229,17,55,197,192,196,128,46,94,15,70,247,151,93,52,31,52,64,201,213,88,82,62,238,186,247,142,6,239,40,3,70,200,173,186,226,43,89,39,207,255,231,148,213,246,27,27,215,123,90,168,108,113,47,241,122,203,201,124,89,213,173,255,103,214,175,220,70,232,166,65,144,151,107,34,6,173,104,117,23,53,32,54,192,217,22,135,153,39,67,28,8,89,18,241,200,161,111,189,32,33,83,224,177,150,61,86,24,113,42,155,191,56,116,18,54,93,208,99,231,176,65,79,109,97,9,100,207,208,101,157,127,120,136,58,90,89,237,90,65,238,205,171,233,152,252,98,39,120,240,208,233,42,194,122,91,171,99,1,250,68,88,199,233,209,55,71,229,177,19,178,250,229,212,214,135,233,235,118,203,124,234,228,217,89,75,186,213,48,195,1,188,123,198,108,217,0,121,122,26,64,114,13,219,73,1,77,12,16,74,95,126,35,63,30,67,25
 ,101,49,178,122,107,208,92,192,10,143,143,225,231,236,227,233,170,190,111,159,190,41,232,243,77,153,251,247,160,56,218,111,204,247,80,110,122,149,57,184,141,169,170,106,22,175,255,42,9,71,13,39,77,90,98,135,163,63,20,196,174,151,65,229,217,8,22,4,63,217,254,209,239,127,246,180,186,195,180,234,199,233,21,112,252,83,45,218,232,80,109,249,196,220,222,177,178,69,83,73,126,180,104,192,209,142,49,75,23,10,100,49,79,58,37,205,94,229,48,24,202,177,57,132,50,93,19,75,140,28,205,104,219,20,254,232,156,143,208,93,58,80,98,41,121,75,223,220,18,161,64,211,120,44,208,125,126,187,109,236,236,104,135,157,252,195,223,60,186,240,50,73,62,3,139,20,239,250,177,247,146,95,225,43,228,124,143,39,147,4,121,26,114,210,109,125,252,113,92,229,202,93,217,45,155,8,251,65,80,247,166,18,95,162,116,105,18,9,102,223,36,3,134,37,165,77,19,28,176,200,218,65,204,223,53,121,240,32,185,72,163,215,6,106,52,31,103,144,105,198,141,5,199,77,141,5,33,114,215,173,6,46,94,200,122,47,125,114,214,89,101,47,160,52,66,121,
 37,220,20,248,140,139,36,52,108,95,208,13,188,3,24,21,87,161,61,233,96,199,148,23,0,98,92,19,28,113,115,207,241,126,150,223,35,130,216,101,177,192,199,207,157,252,22,153,70,20,174,66,88,9,184,205,98,6,236,189,100,154,10,237,28,99,188,71,253,113,2,156,83,210,166,245,137,239,209,106,142,202,106,190,229,108,107,65,53,61,59,90,31,185,86,113,103,212,191,170,38,43,227,134,145,176,245,17,250,33,5,148,23,160,203,72,171,82,245,57,67,132,45,21,22,47,30,58,60,56,44,209,236,161,130,60,21,124,29,194,154,192,229,164,9,113,252,114,222,227,253,85,250,3,109,255,78,237,181,23,37,240,97,156,30,59,172,223,187,178,241,216,181,36,10,127,195,39,236,63,41,91,3,53,239,206,41,187,9,215,56,128,73,51,35,185,29,7,246,136,162,90,194,9,191,172,235,29,26,22,76,200,126,83,230,152,80,48,6,74,186,208,121,99,92,88,8,201,103,254,140,239,40,95,151,176,213,161,103,61,99,45,159,46,20,230,241,29,122,135,145,189,56,19,14,208,93,18,251,124,13,91,31,50,209,154,41,167,172,114,45,127,2,79,14,64,101,8,25,2,127,44,200,226
 ,203,118,104,242,163,146,66,85,87,128,85,123,119,51,242,246,90,239,49,130,237,166,85,56,8,136,252,11,26,169,112,87,191,193,174,175,193,210,190,118,73,212,71,167,86,225,82,212,79,93,181,175,84,151,54,89,216,118,247,60,115,234,135,172,239,17,169,91,94,151,241,144,166,254,210,81,160,84,109,58,59,189,134,12,50,154,228,141,3,111,91,211,25,72,74,44,114,204,51,85,90,221,30,160,170,3,254,248,20,156,26,156,213,202,9,54,80,111,83,109,164,9,73,226,211,201,113,196,59,124,158,146,211,32,133,239,255,82,2,204,177,31,78,111,254,102,103,35,254,58,151,103,90,70,169,250,108,30,67,252,23,253,244,171,203,223,69,168,137,247,126,158,98,124,118,185,198,243,206,41,3,124,219,143,17,144,134,169,195,18,209,197,111,143,80,248,195,15,84,118,34,150,161,226,252,169,180,11,20,214,94,138,95,70,175,154,168,153,108,0,220,232,55,129,37,198,216,117,145,31,219,1,171,225,92,133,252,2,42,173,78,248,29,15,249,48,33,232,254,114,147,141,129,238,150,137,82,182,3,184,13,210,128,103,21,0,192,245,99,47,246,126,50,204,77,1
 21,180,211,9,100,167,148,37,133,251,0,3,198,241,236,195,15,30,88,146,49,16,39,236,166,101,72,122,247,146,41,178,239,112,59,105,135,191,185,56,169,244,151,220,15,223,232,216,98,111,67,66,128,203,39,6,154,8,204,136,86,92,91,176,248,195,129,96,223,149,251,19,88,53,157,2,152,239,151,49,55,57,98,155,247,214,127,136,197,44,33,200,125,83,18,127,157,188,110,38,141,64,206,112,188,183,124,237,225,152,252,242,53,229,208,208,219,246,46,112,98,144,22,25,3,208,43,33,104,217,133,81,153,155,124,217,183,85,254,222,222,207,212,99,156,152,243,123,67,48,185,75,236,145,152,162,168,83,199,176,128,215,219,251,77,84,184,32,237,132,20,202,252,252,169,55,141,44,250,11,16,116,9,94,66,4,88,190,202,17,58,168,234,197,20,199,25,172,84,111,56,224,224,179,70,214,166,165,88,59,123,71,244,86,30,150,179,63,234,58,160,223,156,94,135,175,50,0,201,92,252,53,21,170,165,247,176,121,140,100,105,234,50,91,230,140,26,217,45,244,142,109,133,70,97,142,24,69,71,132,140,163,73,90,210,181,96,211,27,7,121,195,115,213,191,20
 1,126,100,50,105,151,73,33,32,219,76,48,101,176,87,118,35,54,48,146,83,211,115,105,243,89,82,145,149,136,39,198,152,36,172,71,105,206,125,223,167,64,112,161,122,5,63,227,254,157,55,212,252,112,208,79,140,151,65,244,143,97,139,179,87,66,195,147,120,183,124,251,200,167,203,95,242,149,198,82,31,160,15,100,173,48,45,161,72,170,58,182,181,195,66,164,248,40,119,142,209,155,74,148,30,173,4,242,121,210,55,223,29,50,196,133,31,232,143,23,106,37,2,127,247,143,190,7,213,67,11,193,51,109,87,172,142,8,106,145,20,2,65,238,52,188,114,86,209,26,155,77,186,131,205,78,224,203,41,48,152,76,115,235,254,213,96,208,240,156,138,201,30,122,11,255,59,77,148,198,138,110,175,156,79,254,45,110,181,250,185,58,167,169,81,197,25,86,135,222,194,128,172,251,52,211,120,221,176,165,225,67,9,199,114,170,138,212,45,92,96,76,242,2,168,242,18,196,171,30,61,14,83,85,31,64,159,89,37,89,150,74,100,145,196,82,77,231,243,124,156,237,127,148,132,218,68,15,120,170,22,80,113,215,162,104,113,97,232,150,145,9,39,96,111,207
 ,14,205,164,104,187,42,23,11,50,95,99,101,229,65,12,243,213,72,224,25,107,163,74,148,159,118,155,200,197,240,214,113,0,163,17,228,75,90,46,108,195,196,197,177,231,98,73,178,250,28,40,218,236,150,135,92,36,77,232,32,218,55,68,99,117,210,50,112,26,250,218,5,150,179,93,41,124,251,210,137,208,60,231,236,128,76,61,178,222,20,13,31,92,48,86,197,196,238,205,116,130,118,226,110,2,72,199,202,155,32,61,112,183,157,54,97,136,154,5,0,20,114,180,82,119,62,190,138,92,246,215,212,241,227,240,174,226,100,163,205,188,104,54,174,255,187,249,220,77,123,106,78,223,142,107,146,116,92,176,220,157,163,206,245,201,7,184,62,65,95,177,69,89,196,149,21,34,207,243,96,138,186,13,242,209,4,195,10,155,30,47,107,187,210,45,239,64,29,187,216,81,58,70,118,212,208,185,8,154,186,221,77,44,160,194,30,119,180,117,119,113,216,21,52,86,48,149,51,6,194,115,136,85,157,130,28,76,74,15,174,191,203,46,64,79,52,249,48,45,32,198,58,137,140,35,128,58,255,239,20,181,199,120,249,221,254,87,42,68,199,59,146,89,161,70,39,46,5
 7,244,237,1,229,17,137,90,153,196,203,109,77,200,8,168,147,243,137,148,124,139,213,105,125,57,40,19,254,158,154,101,65,184,67,86,127,255,13,203,162,61,232,38,242,131,223,216,162,50,129,19,136,124,121,172,131,181,0,69,42,66,247,188,138,20,78,187,26,160,89,147,87,230,92,11,161,58,127,139,88,225,165,91,197,86,203,60,199,48,242,211,130,115,150,233,151,88,75,11,214,191,23,4,227,178,131,0,182,191,234,47,214,36,169,50,211,81,61,207,31,219,221,226,81,224,90,11,11,147,207,112,185,252,39,241,132,210,200,221,198,86,63,138,70,230,77,230,192,67,45,98,1,139,170,196,177,196,22,243,115,223,62,175,185,156,94,93,107,253,43,217,114,244,245,195,200,229,125,50,168,81,23,238,21,119,85,41,212,41,163,235,192,245,245,224,107,121,141,124,171,129,160,213,54,143,94,172,113,125,1,251,166,55,26,199,251,119,60,52,244,237,244,150,238,239,131,29,133,187,143,232,127,138,24,18,227,200,219,123,243,137,147,85,195,91,73,215,27,98,158,198,70,125,200,188,1,143,37,211,166,30,164,196,60,19,140,30,87,173,11,105,21,35
 ,236,199,71,7,172,91,41,188,222,50,154,187,188,80,250,82,15,250,36,87,254,254,56,158,177,160,124,4,77,255,116,232,46,113,161,87,70,201,226,137,177,211,198,173,107,198,45,162,97,199,147,209,255,6,95,14,9,109,79,101,243,63,81,111,125,82,72,223,189,167,24,151,146,73,100,214,217,60,35,185,33,152,142,132,115,90,151,90,13,230,47,89,53,85,32,7,62,247,68,132,121,172,195,149,245,164,160,169,27,195,116,64,236,209,213,71,244,179,118,231,166,38,193,58,30,137,93,158,82,255,137,43,209,36,79,46,40,7,208,93,155,5,71,27,12,12,86,226,22,43,19,5,217,81,190,193,62,30,177,21,114,60,171,27,147,46,124,217,61,158,78,215,77,193,156,31,185,131,139,31,60,219,163,212,21,47,104,212,195,141,6,75,84,210,169,132,182,251,38,99,178,142,174,255,14,229,2,114,162,83,83,150,125,215,97,46,102,161,207,54,195,1,229,46,111,209,153,108,173,118,169,176,157,49,213,209,176,156,99,37,178,195,170,37,74,33,202,7,198,173,123,237,210,150,72,114,223,51,150,164,154,159,36,112,239,159,92,90,194,235,178,36,98,218,9,174,155,245,1
 94,115,42,134,63,232,205,167,76,7,5,214,7,44,155,148,23,139,35,247,88,109,99,178,236,57,236,186,153,205,63,92,239,163,53,39,239,253,52,90,136,206,187,219,205,50,195,146,64,206,7,168,12,10,228,175,100,111,141,155,214,76,148,118,134,134,9,85,101,237,90,243,48,78,176,57,159,9,201,134,78,246,36,247,37,16,0,227,247,14,121,191,99,214,96,197,233,46,229,170,225,206,156,194,184,48,39,19,208,190,208,27,255,190,229,75,231,242,69,53,108,140,124,9,209,16,50,177,226,117,103,12,62,6,78,14,170,0,216,0,227,114,9,200,125,74,200,8,188,56,218,205,54,20,186,4,187,175,140,192,192,185,252,81,86,44,80,174,118,74,92,136,191,252,242,86,164,27,65,127,21,76,111,87,251,214,81,9,58,227,17,110,226,99,174,165,186,138,198,17,153,189,80,82,185,164,213,140,93,234,67,118,63,164,164,124,186,166,161,193,39,76,83,17,163,186,36,202,49,92,188,109,22,153,119,244,44,177,163,154,90,30,243,66,152,234,48,3,212,178,208,230,128,197,87,98,43,30,9,140,213,114,115,77,200,154,131,197,84,74,249,90,132,2,74,244,17,109,249,154,1
 52,34,185,172,22,209,67,150,185,53,45,210,17,228,239,95,193,189,140,112,57,184,139,185,15,96,104,251,135,4,209,155,41,252,235,7,245,202,252,157,45,92,153,95,40,183,239,221,239,163,182,13,251,158,70,191,111,57,47,247,29,211,225,162,107,115,42,3,105,113,128,201,99,139,62,147,33,208,253,208,131,178,209,104,103,105,86,69,218,111,69,42,229,148,74,168,95,38,124,202,238,178,145,174,151,6,86,247,191,77,231,105,226,165,188,185,94,46,202,172,61,198,45,182,47,187,201,87,194,147,48,75,175,74,188,149,247,164,1,102,228,203,207,244,143,78,22,132,45,86,237,111,55,72,192,237,123,252,28,201,118,238,116,232,124,221,123,184,249,230,229,104,59,217,39,112,168,72,83,29,39,212,218,72,138,142,62,59,81,13,189,121,223,196,163,10,209,98,182,141,52,117,158,250,171,203,61,70,223,23,232,215,225,50,36,155,212,60,60,182,195,105,11,194,114,34,214,77,82,112,201,161,53,240,135,141,174,79,123,201,142,155,201,74,12,18,68,76,254,196,37,197,102,114,115,18,231,158,135,241,140,187,109,29,2,173,227,132,219,144,245,11
 8,59,111,113,37,59,247,114,192,154,248,115,171,110,245,249,36,4,209,13,191,110,217,43,103,16,239,28,105,11,45,13,106,99,88,187,163,100,21,219,99,96,29,54,194,69,140,53,200,99,33,127,17,162,190,140,176,113,110,69,27,28,179,250,82,252,11,81,44,222,141,228,221,76,220,182,5,90,17,39,74,233,159,243,96,2,201,153,50,112,198,21,136,172,111,174,128,198,162,199,217,151,7,175,47,84,184,10,5,167,90,149,18,207,77,201,110,172,173,132,194,111,230,176,18,145,77,43,121,192,150,32,197,188,30,18,104,24,224,0,14,7,164,34,38,223,191,53,96,172,224,61,218,111,197,248,27,227,46,205,27,42,160,116,161,163,216,87,250,92,29,131,175,155,129,201,123,41,148,44,102,165,117,115,187,101,195,158,150,74,151,216,174,36,44,147,206,85,77,123,71,28,49,238,228,198,180,137,163,246,230,27,3,75,17,251,3,148,140,149,85,183,40,98,131,85,46,8,134,223,0,59,41,216,142,151,25,188,154,13,227,87,241,28,149,119,85,45,201,128,234,193,199,104,17,252,44,93,39,146,115,168,183,131,83,102,216,180,190,39,10,191,111,117,91,250,224,136
 ,164,115,161,117,44,169,25,119,178,221,5,247,154,139,203,88,66,29,14,249,88,250,118,147,97,74,0,218,2,149,116,54,167,35,24,27,10,151,119,39,211,218,186,90,217,108,71,78,224,105,110,180,144,189,152,154,1,6,234,79,187,156,118,168,188,22,225,236,189,33,169,40,108,202,184,38,146,174,145,49,46,145,156,246,106,219,184,80,46,129,9,71,184,76,228,14,138,189,78,96,136,158,36,100,86,63,1,118,60,80,109,105,60,24,111,148,246,33,31,55,155,86,40,105,117,173,224,225,30,254,218,103,161,179,232,96,180,83,121,133,160,219,39,74,49,85,123,151,20,5,173,99,217,167,26,9,222,46,82,28,161,156,170,104,193,26,223,196,224,234,66,233,241,67,31,161,52,1,229,154,210,124,47,24,212,26,34,88,251,40,239,233,243,240,124,110,146,28,232,204,162,100,82,193,107,58,89,186,4,251,181,66,110,73,194,13,225,168,136,254,229,107,255,245,20,200,5,201,36,120,64,137,230,26,126,90,244,254,108,151,103,174,215,180,138,185,110,131,85,251,42,45,101,248,169,225,32,202,95,77,240,48,21,125,182,242,54,112,122,56,250,150,145,245,129,22
 2,241,41,42,233,24,48,127,223,88,94,232,191,148,45,167,98,96,223,31,191,226,18,189,164,246,107,27,169,29,217,197,30,165,150,139,12,3,202,16,128,26,146,229,86,30,85,243,150,93,133,179,69,102,44,25,237,193,193,252,94,139,231,55,114,125,72,240,137,240,46,244,34,104,164,153,225,178,85,253,201,175,128,69,135,192,79,108,241,107,159,215,99,197,254,9,201,144,23,108,63,16,115,110,119,214,18,115,70,52,154,67,145,13,18,235,183,209,145,145,199,223,49,140,167,127,88,153,171,131,44,22,177,217,5,217,78,79,155,128,107,214,33,225,181,130,69,252,173,65,96,210,57,9,10,180,187,77,24,0,104,88,160,173,206,41,42,57,165,115,84,14,235,99,40,227,147,104,138,246,88,252,92,26,43,57,72,119,78,23,54,167,1,205,210,84,77,250,149,69,8,178,62,50,53,254,209,236,248,147,62,3,197,138,114,162,71,95,69,212,153,23,43,48,129,203,64,212,9,184,141,46,12,206,70,110,113,122,103,249,128,8,62,246,121,58,134,129,31,195,36,79,68,27,111,235,6,197,179,85,193,121,129,231,195,231,233,134,201,189,72,177,5,83,240,7,237,167,116,8
 1,255,71,31,193,211,51,2,198,12,229,238,239,37,165,153,214,178,193,188,240,104,36,23,39,86,175,222,30,15,215,197,249,48,209,116,175,31,10,114,2,242,163,194,81,169,53,251,172,71,122,228,182,194,180,120,121,71,167,48,129,65,133,38,20,235,166,157,25,8,2,91,120,128,232,189,136,182,8,196,206,87,221,17,30,26,193,46,109,113,67,251,187,218,223,226,197,155,167,34,33,134,199,233,80,243,104,171,84,143,76,71,42,215,114,248,245,19,25,210,51,91,97,55,14,172,205,207,93,103,1,185,165,87,115,30,236,140,96,253,244,151,190,237,230,225,6,197,66,198,104,77,179,85,21,19,90,194,255,182,150,202,106,5,251,32,222,206,112,31,216,170,189,215,100,98,249,89,195,101,65,95,253,52,67,182,247,217,200,88,99,195,88,187,135,10,47,61,3,1,169,201,169,147,91,165,219,84,223,4,125,137,243,176,0,164,63,107,233,42,106,121,52,207,184,80,183,136,178,249,85,229,200,235,224,228,146,210,196,228,201,70,20,18,24,237,112,146,66,162,108,192,224,7,63,104,152,94,68,189,228,35,144,16,247,183,199,94,83,98,141,249,65,95,214,18,228,
 155,123,39,240,10,30,218,129,112,73,70,165,45,84,177,78,195,29,72,253,42,36,106,93,41,164,244,170,255,89,21,160,18,122,16,16,147,128,135,239,232,123,96,30,102,53,141,114,100,151,237,87,188,162,156,81,137,85,240,125,7,238,237,55,108,44,144,67,18,33,73,147,255,68,56,101,139,79,229,240,227,144,49,190,148,67,206,116,79,14,21,23,224,45,27,75,42,31,21,27,1,115,81,207,110,223,175,141,206,87,218,74,24,185,189,158,35,81,121,70,33,69,223,243,82,187,248,174,100,46,92,232,83,7,193,225,125,225,101,93,186,192,176,5,150,175,210,69,248,240,142,0,80,165,71,114,60,110,79,203,106,127,217,67,212,92,252,25,224,3,220,189,87,61,11,120,116,30,142,206,59,179,204,141,108,133,110,13,71,8,116,223,166,32,137,143,241,22,216,187,125,63,1,27,214,208,86,92,166,149,61,98,142,104,221,237,110,111,218,37,177,85,127,223,26,162,78,220,63,109,77,51,20,126,55,157,119,112,160,59,178,171,141,37,218,44,209,141,101,67,241,146,149,239,162,205,91,232,251,61,168,197,200,239,11,171,147,20,27,174,237,73,53,122,79,120,253,17
 ,26,126,106,224,212,4,147,98,101,175,85,53,191,33,24,215,171,227,162,107,43,91,70,133,54,174,6,62,215,213,128,33,202,109,61,216,167,211,77,171,115,219,2,194,31,131,129,111,37,233,148,62,97,90,237,91,205,216,240,141,130,81,205,9,216,11,81,62,142,63,136,219,6,217,19,182,35,233,128,32,126,125,135,255,185,93,35,144,70,172,186,29,145,235,181,60,128,37,162,156,249,178,235,100,119,218,22,200,169,222,122,19,3,241,45,154,85,248,193,106,160,137,228,133,113,69,227,120,34,253,96,124,141,249,23,235,26,10,246,94,196,17,116,250,69,175,10,93,137,128,124,169,158,212,194,4,149,196,246,125,196,53,141,62,64,78,105,7,128,43,97,20,172,187,185,133,246,105,150,215,192,69,88,163,42,29,98,116,175,206,77,119,186,65,1,172,183,236,41,18,68,183,226,131,82,142,116,50,3,53,15,166,171,48,2,213,88,151,46,172,128,254,57,228,129,157,218,12,180,73,109,10,57,17,180,179,7,31,164,209,244,38,174,59,16,204,242,173,0,3,120,69,233,65,213,98,242,83,198,185,38,145,191,241,43,183,254,15,95,18,124,153,98,150,149,189,226,1
 18,63,16,115,24,101,23,85,131,81,129,250,1,39,249,206,148,153,121,243,112,189,60,85,150,171,194,22,169,108,83,248,147,230,89,89,164,62,73,51,3,218,140,171,254,238,143,252,46,68,128,218,2,19,226,0,88,127,105,187,66,214,204,32,195,197,50,212,247,180,238,40,223,54,211,231,148,240,194,111,83,33,29,40,143,59,119,146,169,193,46,162,95,66,12,130,163,244,95,37,207,251,252,200,13,48,63,112,58,237,69,112,119,223,63,91,51,26,112,248,184,29,74,161,31,37,20,64,60,185,126,153,119,183,239,101,172,94,185,80,103,243,249,102,104,154,178,244,243,166,211,228,213,54,117,39,21,45,179,176,165,27,44,42,1,109,240,239,7,73,48,123,9,84,162,192,105,210,209,70,22,152,137,65,76,15,174,197,34,94,139,63,246,57,134,123,147,160,194,251,211,158,76,38,52,56,6,126,110,224,182,89,13,142,111,218,245,11,226,6,125,16,211,68,155,241,123,86,83,74,127,65,253,70,134,170,21,233,90,54,116,42,44,234,176,49,9,190,224,113,253,244,255,116,153,224,48,244,210,92,1,222,62,108,181,114,247,95,60,104,143,143,125,163,109,219,250,82
 ,165,51,80,181,78,21,122,212,179,246,172,232,233,120,171,198,19,140,179,44,156,130,112,123,88,1,45,205,183,242,16,248,59,151,250,254,198,237,200,26,118,147,24,130,231,220,168,158,98,23,163,158,86,30,199,193,238,82,146,54,70,70,140,5,189,64,205,35,3,202,120,217,77,151,143,162,160,236,211,179,32,110,54,175,154,104,88,214,75,164,27,164,151,61,239,137,21,98,2,190,23,78,151,194,152,34,138,1,252,26,71,236,210,181,227,2,254,93,49,112,38,94,200,134,156,20,197,98,219,91,186,78,210,138,170,199,236,135,95,147,241,195,92,221,100,108,186,107,8,33,171,32,90,16,222,214,196,196,110,70,205,66,247,98,205,237,218,120,59,222,117,50,56,107,61,234,124,143,86,6,98,244,243,190,234,63,213,32,212,170,249,47,151,65,240,96,213,34,147,225,219,246,23,167,183,72,224,119,148,152,7,137,253,204,72,33,176,154,226,170,72,180,29,99,249,134,169,8,255,216,110,134,105,9,86,15,67,132,90,195,111,79,101,14,22,75,224,35,191,110,237,176,123,97,80,185,226,222,60,44,68,230,169,143,56,246,0,220,176,59,132,115,49,141,38,15
 ,33,138,208,11,15,234,232,71,39,153,85,92,116,195,201,188,227,179,29,13,131,70,182,9,233,20,81,85,245,81,146,151,73,87,0,115,137,20,130,253,127,95,254,188,254,43,103,35,248,114,154,238,253,254,98,203,247,94,208,113,35,26,113,141,171,71,55,119,20,110,136,156,192,217,157,196,125,215,27,38,130,17,163,166,233,76,246,140,254,237,27,86,1,28,112,183,241,127,141,92,158,28,246,66,129,160,233,49,243,102,213,4,97,236,225,0,168,127,203,21,212,117,82,247,156,50,231,111,111,86,14,128,35,208,236,166,40,234,107,161,3,28,213,15,106,253,59,47,251,71,132,249,91,160,142,177,210,143,90,130,171,68,26,138,77,50,164,228,216,119,79,88,17,125,70,151,107,212,217,17,109,218,137,174,50,212,59,227,89,1,159,56,145,15,68,228,228,248,100,125,102,85,245,32,203,38,140,36,232,13,19,239,52,224,218,96,208,192,157,209,215,248,228,153,210,237,204,220,128,169,190,218,109,39,34,92,69,247,39,243,140,107,86,105,29,64,177,220,6,39,32,226,166,6,157,24,178,110,136,135,171,31,21,47,103,61,11,60,85,34,52,44,234,153,96,242,
 164,112,196,157,21,0,46,37,84,251,100,116,248,79,142,181,92,71,214,196,134,29,67,93,81,31,89,206,161,155,173,177,27,162,79,251,248,123,191,157,115,164,31,43,1,220,132,249,2,42,90,123,60,167,142,158,246,130,141,171,207,132,175,202,136,82,5,192,18,245,77,52,180,51,101,87,243,40,175,215,185,246,110,48,25,204,252,135,129,107,99,114,13,116,169,245,68,112,213,232,23,216,172,190,93,224,170,245,171,165,226,64,244,239,100,185,227,232,61,33,238,206,44,206,154,149,66,229,220,15,247,5,38,28,96,6,52,224,28,146,108,84,56,82,92,83,236,238,7,91,201,68,241,22,219,222,247,13,159,93,46,186,54,14,14,148,197,225,153,87,58,187,188,110,16,166,239,239,123,181,120,109,180,82,178,85,182,220,196,242,76,58,205,245,9,183,89,164,240,153,29,79,252,32,148,168,79,31,80,122,123,16,184,60,86,178,186,232,71,104,220,229,181,129,217,26,111,53,25,114,82,134,80,181,206,164,175,173,109,79,227,81,33,114,100,182,124,1,22,179,137,84,183,128,78,91,246,68,151,203,213,127,156,77,238,253,13,104,88,233,79,60,159,171,9,80,0
 ,156,112,42,173,132,243,11,143,27,109,105,205,65,31,2,181,218,227,173,65,166,60,195,84,111,251,4,13,49,16,84,36,56,131,107,243,218,83,102,68,0,221,58,211,166,50,205,198,121,157,235,92,2,212,125,87,240,229,33,111,31,95,42,239,236,71,70,209,190,132,95,98,254,162,126,126,149,23,137,172,235,123,180,8,113,206,68,202,213,21,140,251,142,105,240,75,7,88,175,4,196,206,94,68,128,251,204,193,82,110,229,110,49,49,219,212,231,82,202,253,20,202,196,130,30,200,36,236,253,218,110,229,39,25,104,77,194,89,25,92,42,247,255,211,188,217,187,54,254,184,145,181,216,177,161,42,199,1,120,99,236,33,57,160,181,154,25,118,115,56,184,239,166,4,184,36,158,60,96,186,20,107,102,142,106,177,108,196,216,7,53,67,153,150,122,206,125,16,121,7,128,246,54,15,13,14,202,104,120,136,139,135,233,205,110,16,106,74,35,134,56,128,117,66,134,161,215,225,199,136,248,215,25,87,206,108,80,148,136,10,66,140,109,3,93,16,20,216,74,25,127,84,94,147,24,181,129,135,72,81,75,172,175,13,246,229,166,231,23,250,109,86,65,121,162,13,1
 27,202,133,176,37,181,186,105,38,35,125,30,94,77,19,189,162,68,86,100,101,189,192,1,59,101,68,176,71,43,91,184,216,105,243,168,200,119,39,236,216,135,106,101,8,95,91,16,23,246,16,236,42,214,169,90,130,174,51,191,22,141,80,153,142,4,132,106,22,103,100,46,94,198,39,135,221,13,93,133,152,22,5,164,141,176,80,223,183,23,78,139,38,89,138,146,77,165,242,182,203,51,116,221,165,245,109,243,216,104,100,242,20,141,166,203,146,127,21,121,6,209,227,125,135,218,8,124,94,244,85,124,137,241,96,35,82,221,41,91,143,145,87,50,55,221,213,25,81,124,173,112,69,234,95,151,51,217,11,134,225,84,35,144,83,181,133,146,150,192,46,118,77,84,119,59,128,237,143,213,156,130,236,72,240,151,216,207,199,170,86,112,24,34,16,18,211,137,117,89,117,72,147,95,76,70,82,204,196,184,67,195,196,203,121,144,88,208,184,29,156,11,220,163,3,73,212,88,113,186,118,139,123,155,248,228,251,231,151,217,131,70,167,58,217,220,62,88,210,84,162,43,88,219,29,16,19,249,233,204,128,103,24,34,220,76,71,141,135,50,224,139,16,248,48,104
 ,83,176,185,116,249,203,65,196,84,31,245,56,95,149,11,110,116,128,20,175,15,30,19,121,129,74,124,40,196,26,150,74,65,174,208,146,40,61,16,225,206,83,6,102,79,233,155,32,20,206,14,211,70,22,94,85,8,114,251,163,49,200,166,87,235,128,37,254,15,192,52,165,37,233,51,149,202,50,118,179,231,105,101,90,171,200,250,132,111,70,157,233,74,241,254,6,90,42,227,144,210,116,13,245,10,46,90,35,233,2,82,159,189,89,15,67,163,211,239,2,120,217,58,239,196,183,222,246,167,90,9,195,179,199,191,206,156,51,18,94,143,91,131,232,192,154,66,102,254,176,47,20,11,162,156,92,139,22,15,1,62,217,201,147,74,161,28,70,190,39,124,180,193,7,54,35,28,107,1,207,11,148,74,219,229,169,62,95,208,229,153,245,14,80,37,41,80,98,1,54,121,247,51,224,244,251,194,71,65,139,26,185,214,185,63,150,250,207,127,163,169,52,99,236,149,21,165,123,93,19,21,245,2,84,18,162,57,13,61,99,185,65,130,44,135,252,123,223,199,56,218,30,92,150,54,71,12,110,38,155,81,179,228,68,90,32,228,37,59,182,35,64,245,155,8,168,88,232,173,108,128,231,1
 19,193,69,64,31,62,182,37,231,255,183,145,17,24,155,196,112,241,95,69,49,194,199,179,103,7,47,47,133,121,253,118,198,41,174,63,22,122,208,161,107,84,226,222,210,68,244,93,216,109,5,115,119,62,195,5,104,53,0,18,198,182,208,61,98,12,91,206,6,234,41,98,70,234,219,87,140,55,136,255,64,107,107,126,75,90,95,243,79,235,198,153,172,184,117,228,43,158,234,150,221,118,136,130,57,151,96,89,183,120,13,4,195,239,71,185,38,119,213,87,118,105,131,221,133,122,41,128,76,126,248,37,238,183,188,243,155,31,5,122,3,30,46,66,114,219,53,20,202,147,13,151,48,8,221,86,156,21,137,52,37,31,235,119,132,191,159,215,230,168,10,166,112,191,172,117,175,168,212,109,167,163,182,51,255,190,142,10,38,99,7,198,119,170,216,247,206,185,203,195,146,92,241,209,68,227,29,183,182,57,219,237,98,245,14,241,182,29,124,226,145,189,15,5,205,67,136,17,30,126,11,237,250,15,253,154,65,221,194,122,145,141,216,76,165,197,124,147,130,195,107,23,12,216,56,31,250,96,54,97,29,153,103,109,150,246,110,187,15,1,122,20,98,94,163,237,2
 37,222,23,143,41,43,202,32,121,131,2,240,213,79,44,119,223,190,214,152,134,154,181,110,173,235,128,245,166,49,109,22,189,85,239,144,109,218,142,59,201,93,87,8,0,209,86,166,44,148,240,232,133,156,73,175,35,251,1,127,91,213,93,57,36,129,82,217,124,148,238,174,81,231,142,220,7,216,147,131,230,209,195,134,84,124,38,63,50,232,185,221,77,25,52,212,182,215,175,138,141,201,250,170,246,8,0,250,230,140,16,97,102,93,128,139,29,187,203,192,114,128,89,149,122,228,24,245,3,186,18,146,133,34,65,52,137,186,152,226,11,52,50,128,21,184,24,249,175,86,191,220,205,186,237,4,109,68,52,141,10,171,35,194,1,76,67,196,42,20,143,138,213,24,25,2,247,129,237,173,227,117,25,19,134,179,210,145,187,202,91,106,136,192,155,222,216,13,235,195,143,75,13,180,26,184,150,226,177,61,79,18,245,97,39,66,203,150,60,141,137,3,189,70,89,77,185,104,37,84,144,189,126,253,195,255,127,69,147,1,7,132,9,159,204,114,9,255,74,226,37,32,133,83,125,126,219,202,225,32,229,50,123,52,59,170,178,0,235,63,120,223,232,23,108,5,94,82,7
 9,183,149,229,168,69,90,31,71,150,37,183,40,110,156,41,207,124,123,142,206,7,220,81,188,33,34,238,213,247,13,117,203,219,153,77,86,122,209,251,100,104,92,202,0,146,201,161,217,170,210,222,164,169,154,29,108,2,14,140,148,247,147,238,65,175,249,245,185,72,131,201,75,214,0,100,8,214,100,119,83,56,222,2,122,230,119,99,213,143,27,120,39,47,111,192,34,216,43,161,211,187,162,12,117,143,207,114,215,116,49,182,215,147,7,195,220,210,19,119,105,241,75,188,111,26,16,42,173,127,176,32,208,176,140,106,145,214,48,199,191,35,216,70,94,152,87,169,113,71,45,27,143,87,132,148,23,3,174,219,137,234,70,174,238,45,78,29,169,31,102,116,253,51,7,254,239,243,27,120,24,158,21,241,123,138,160,10,13,154,45,98,136,28,175,233,105,87,243,143,121,152,120,19,82,29,154,10,152,137,109,153,3,72,225,223,106,3,124,255,51,89,201,161,188,135,31,63,87,12,132,239,224,192,35,56,186,16,83,220,101,117,124,168,253,81,102,105,53,110,14,137,102,4,168,49,124,148,129,107,244,238,15,34,156,226,148,229,125,145,78,177,82,170,13
 3,243,215,10,58,42,8,35,27,244,131,176,33,222,162,47,119,222,52,218,164,46,88,160,255,228,21,4,70,25,155,244,192,105,42,141,125,69,90,189,161,70,109,99,161,23,242,121,114,56,113,84,6,48,196,8,225,49,106,51,171,113,78,99,90,247,110,92,114,179,205,151,47,233,94,21,143,209,220,91,132,191,84,10,25,255,166,56,217,91,50,12,202,99,246,164,20,145,38,126,188,162,84,90,3,35,132,8,48,228,168,55,0,158,164,79,61,217,62,82,124,93,180,76,169,85,108,121,182,219,255,40,45,192,149,196,67,169,150,19,70,23,170,17,178,48,96,167,125,244,213,202,40,246,5,51,170,164,155,42,111,235,59,169,135,12,176,94,236,6,160,10,120,219,119,52,157,69,29,160,221,12,81,161,155,194,79,193,195,220,143,25,26,226,65,169,65,45,135,77,112,198,178,41,198,29,84,28,176,221,209,147,76,209,241,188,94,254,13,91,42,234,201,160,150,139,40,78,20,145,22,142,239,166,224,176,218,239,200,164,123,136,45,136,82,4,232,77,65,113,137,170,248,210,24,235,201,184,96,144,105,69,195,158,210,176,154,196,112,37,26,26,176,133,255,120,54,142,84,10
 7,189,26,106,187,214,8,246,226,79,93,62,148,225,229,219,84,95,234,131,100,100,186,236,134,153,175,151,252,151,151,143,13,105,220,40,6,112,159,9,126,153,148,234,75,194,99,40,240,83,172,227,91,104,211,181,255,166,122,74,24,228,37,19,255,29,215,149,159,238,60,138,117,120,158,169,121,131,174,81,16,84,220,53,162,23,183,163,81,234,201,0,65,241,118,244,243,156,100,75,143,143,48,212,248,136,131,200,189,243,16,92,217,104,237,155,9,117,198,231,10,189,157,150,58,91,63,130,226,175,249,127,123,53,78,244,175,176,100,41,171,236,17,1,67,156,6,123,243,74,4,161,156,229,99,64,53,7,192,203,184,142,15,73,191,22,166,246,132,135,198,240,63,99,88,125,203,162,240,3,58,145,119,129,130,87,218,216,27,206,253,61,10,43,169,160,158,245,209,65,180,203,183,25,131,196,121,209,152,144,204,114,237,214,114,127,184,50,214,159,63,50,176,44,226,148,174,253,119,221,191,207,24,36,20,28,59,44,114,196,193,34,90,96,85,180,209,133,105,23,3,125,149,40,13,10,117,73,67,48,77,28,114,227,216,228,142,113,166,185,11,156,140,12
 6,192,230,57,159,75,23,136,75,94,12,5,108,254,157,25,194,13,15,106,134,175,78,182,225,106,189,30,225,56,1,255,33,45,75,151,184,137,209,136,255,141,95,191,59,221,30,126,62,163,45,241,137,110,121,108,211,189,248,255,244,109,184,133,18,125,67,251,185,226,140,230,156,82,243,206,65,6,214,122,175,161,75,136,104,52,69,17,19,22,119,232,1,27,95,117,231,162,11,243,87,152,112,8,76,239,126,188,186,107,93,100,176,118,118,206,124,144,6,184,125,253,132,130,200,215,225,164,242,255,78,130,7,108,240,119,233,178,173,20,99,249,194,157,247,141,6,52,201,148,99,14,127,124,157,240,198,37,125,215,128,243,57,191,211,19,85,175,3,42,145,222,159,240,123,17,21,221,138,42,245,106,23,206,0,116,158,103,180,157,186,130,107,91,101,123,96,173,1,160,252,239,159,255,169,123,142,226,69,72,74,2,95,154,93,53,110,6,203,190,62,107,69,2,37,66,157,164,187,20,159,83,141,200,141,244,50,70,133,3,95,0,138,116,80,213,221,72,245,39,2,32,210,156,99,121,222,39,67,169,95,64,62,138,131,21,33,255,121,57,62,150,150,215,196,96,131,
 14,125,136,30,82,195,165,122,117,56,108,196,214,55,177,103,248,151,123,122,14,159,21,126,210,69,60,115,160,212,116,226,220,30,32,241,80,250,163,145,190,15,142,149,112,140,64,48,129,30,99,179,12,11,135,87,242,172,58,252,237,77,242,62,160,254,215,64,153,97,235,169,37,141,125,93,191,60,103,141,134,210,204,172,202,126,221,196,236,185,26,102,211,150,59,8,197,3,198,8,41,62,228,183,7,34,132,28,80,129,189,36,124,152,185,2,207,105,163,242,191,123,210,77,220,197,16,230,249,17,77,14,131,4,24,193,70,44,47,123,160,32,40,216,124,236,175,150,69,24,50,22,32,41,200,42,125,234,164,125,158,104,231,163,219,220,98,49,81,212,112,64,77,202,222,117,54,110,57,66,220,223,61,10,157,98,173,198,233,182,154,153,167,46,252,43,15,244,248,80,154,87,173,27,147,138,73,110,20,94,23,57,229,254,235,187,198,167,143,248,3,247,126,232,148,175,102,183,188,201,86,211,114,156,166,193,45,99,225,92,29,227,77,153,212,223,212,221,172,206,201,84,105,2,241,101,153,68,131,85,99,169,97,151,235,158,230,178,110,157,170,130,253,
 86,35,255,21,158,211,15,216,185,226,168,75,246,199,2,42,129,25,193,235,53,103,85,219,199,240,181,108,164,54,16,36,207,84,82,239,100,113,162,106,167,9,105,97,8,18,72,212,189,32,128,167,46,255,15,152,45,102,141,156,63,124,200,79,191,34,113,106,174,20,40,93,32,5,235,10,26,103,41,14,73,33,183,136,206,130,110,231,222,36,176,173,248,143,23,155,195,55,146,5,136,42,56,43,24,253,242,216,107,250,167,22,183,93,191,110,183,239,230,20,137,154,28,72,76,244,241,200,18,23,145,143,218,90,54,161,79,32,211,178,119,138,48,145,8,18,5,214,11,157,64,134,57,240,249,223,226,203,122,157,104,246,2,67,29,237,42,157,111,234,80,41,115,198,210,91,251,179,219,177,195,209,180,237,75,249,234,62,171,32,243,158,25,91,176,90,42,4,101,197,47,95,88,235,53,24,62,151,214,97,84,13,177,5,212,172,241,144,48,73,66,46,157,219,83,164,185,77,62,131,191,10,116,82,1,129,67,55,69,82,61,52,236,200,158,23,90,87,29,87,155,15,179,245,154,152,18,68,125,80,139,116,171,90,174,204,124,31,255,152,228,208,81,40,176,246,96,169,49,129,1
 35,50,252,112,114,130,142,232,48,245,127,226,32,178,25,172,180,169,251,63,146,166,76,22,66,116,69,141,63,142,122,127,201,174,52,120,130,232,189,3,113,37,129,156,230,76,215,179,202,237,74,38,227,248,199,140,62,40,184,111,218,124,120,1,50,45,63,253,21,142,253,228,245,113,149,249,175,229,169,67,211,195,229,47,167,197,241,211,97,132,214,28,67,116,33,129,185,33,51,83,118,187,120,86,36,111,16,222,242,216,87,5,4,195,211,94,208,120,206,142,177,63,67,50,67,186,41,124,1,138,130,38,246,219,249,169,222,25,19,249,178,110,194,57,202,106,89,98,146,130,195,214,208,167,148,47,16,19,199,251,209,161,36,62,209,186,2,69,209,204,136,234,128,116,51,149,166,81,63,92,155,218,32,143,205,225,116,61,56,54,91,147,37,181,146,234,207,154,246,121,56,126,217,187,247,236,152,8,13,87,230,123,126,248,4,119,36,131,5,31,114,230,169,51,122,184,71,66,11,121,73,95,193,29,126,233,219,7,124,25,237,178,125,229,123,4,9,159,67,90,41,238,103,22,240,213,74,63,155,38,236,182,246,197,88,154,55,48,122,179,137,19,107,55,65,15
 9,100,33,195,100,182,120,129,100,44,238,41,113,219,164,88,166,179,234,215,237,221,247,31,83,53,162,78,245,217,13,8,135,90,109,233,82,156,202,229,2,238,26,92,252,35,66,41,4,181,8,161,202,138,79,250,30,87,96,197,209,73,157,162,8,113,251,115,244,62,31,29,229,235,137,58,100,119,96,191,154,223,254,93,14,149,34,154,120,252,127,177,201,216,184,221,76,8,212,240,236,239,54,81,31,5,113,138,61,33,33,237,184,101,183,9,245,34,42,139,92,175,114,186,6,68,78,239,57,94,80,250,17,240,217,91,180,30,135,51,234,167,126,10,219,163,39,252,145,229,104,143,140,240,105,140,160,171,106,16,39,126,238,253,112,2,163,216,151,202,186,156,129,75,163,125,199,254,79,38,196,137,116,165,163,102,77,74,233,114,51,197,38,235,128,177,247,219,212,80,172,14,55,51,122,0,216,142,159,112,244,27,78,113,66,99,232,91,27,35,155,39,227,19,249,23,129,49,119,69,64,174,25,93,90,174,224,22,187,239,124,228,97,58,218,144,31,115,238,166,229,62,233,250,101,130,42,58,231,69,109,142,185,236,140,106,147,35,84,202,172,216,104,69,88,54,1
 04,100,156,181,189,103,23,75,27,10,17,73,43,48,34,207,132,113,23,14,79,159,245,14,42,35,168,66,16,228,124,215,155,201,96,84,211,160,246,154,116,101,149,228,216,134,249,219,191,220,149,194,213,78,228,125,160,238,64,71,58,98,109,254,207,95,165,190,80,45,132,90,209,94,101,228,198,65,74,167,121,153,95,119,156,166,247,182,103,195,113,33,228,119,52,87,170,176,218,215,56,201,120,220,19,119,231,12,107,59,118,147,154,88,125,140,177,251,115,19,15,212,80,29,67,182,230,111,224,8,126,172,23,28,4,133,46,55,245,7,153,47,243,87,242,194,202,141,12,178,133,58,34,50,102,140,10,164,145,217,175,189,166,101,116,130,117,181,51,247,139,129,63,139,42,199,231,145,178,9,156,29,215,212,163,204,47,252,207,217,56,90,40,19,71,135,243,68,119,170,158,16,193,65,204,161,255,217,247,74,182,112,73,91,79,174,187,46,251,7,214,32,123,173,46,39,219,190,199,135,142,198,208,13,192,69,101,152,45,242,224,115,167,237,87,157,13,196,8,170,125,111,150,45,20,77,132,226,48,246,83,243,241,107,229,203,95,112,228,87,0,195,6,97,
 16,182,242,95,98,76,197,67,56,125,231,188,248,85,54,74,116,98,98,215,33,38,82,43,144,76,228,141,48,88,7,217,12,244,20,145,95,82,191,172,70,228,96,88,182,204,56,206,31,111,70,20,102,38,9,34,106,225,57,23,247,27,220,39,234,0,43,66,42,111,106,91,78,213,215,224,77,160,98,114,121,85,190,38,173,34,213,110,127,7,160,90,246,176,233,9,183,238,70,163,252,147,96,5,149,238,116,156,216,251,32,117,225,180,22,76,137,109,196,9,179,113,207,110,175,119,227,197,53,123,99,162,108,103,42,3,232,13,175,37,45,213,157,63,175,105,173,19,79,220,44,53,236,24,49,193,181,28,231,96,227,30,204,83,62,103,92,133,0,185,43,137,222,240,13,244,124,237,214,201,244,136,150,102,198,218,16,248,131,101,30,64,36,230,3,242,37,87,95,41,167,168,221,151,90,235,241,191,238,128,8,183,109,28,153,115,167,129,209,101,176,153,165,172,26,31,161,204,130,253,157,205,120,133,179,142,20,10,249,211,131,183,169,171,184,86,249,241,238,210,51,77,196,190,211,3,245,158,43,129,145,46,176,244,8,106,150,172,91,212,205,88,99,63,68,189,141,203
 ,110,252,31,73,14,216,7,56,16,71,229,40,59,110,160,211,145,252,191,31,189,107,152,65,226,180,156,246,170,162,132,96,169,201,183,165,29,9,102,159,6,201,196,54,77,137,70,163,67,3,176,218,146,254,49,29,163,14,112,239,12,205,224,165,197,237,87,4,190,12,199,218,191,111,35,124,222,3,45,148,143,224,141,28,226,242,28,199,80,53,136,25,152,81,126,158,48,207,155,53,48,208,92,37,163,192,38,79,237,138,50,231,191,137,19,217,238,91,231,189,53,88,189,161,35,221,216,184,217,54,149,124,120,2,228,169,13,196,113,131,235,187,36,113,226,181,102,117,87,214,146,28,51,66,40,236,228,43,126,243,56,101,207,36,174,203,103,203,219,255,69,114,235,151,47,87,196,237,92,85,161,92,138,137,193,193,202,208,186,188,141,224,40,13,36,13,152,20,58,16,47,242,10,41,157,143,219,177,72,90,44,18,182,71,214,73,23,20,236,88,52,248,238,28,85,25,200,175,179,226,143,83,184,230,209,101,22,103,218,34,27,1,103,86,160,222,182,122,28,216,11,98,4,5,12,120,179,181,137,62,93,173,201,125,201,34,155,254,41,250,43,247,192,30,114,250,22
 0,50,50,5,33,228,183,91,188,9,176,188,53,238,130,231,183,64,96,58,226,204,6,250,212,72,96,80,190,98,201,201,130,107,100,251,30,0,179,95,233,116,116,197,37,160,175,191,73,130,185,183,124,43,21,68,239,35,109,110,108,200,217,54,225,175,26,155,24,1,89,128,57,52,234,58,95,211,70,20,50,43,96,231,46,229,148,179,147,48,73,147,142,68,225,55,90,103,150,236,207,124,120,17,61,111,118,88,1,175,72,90,128,224,118,205,206,35,45,208,96,90,68,72,103,123,50,144,142,112,211,198,39,227,0,129,240,40,47,218,85,190,51,182,212,250,163,206,40,54,56,159,66,202,145,55,11,228,181,56,125,46,146,140,133,0,92,152,189,240,41,90,10,22,49,253,225,183,212,138,112,47,162,161,111,47,236,161,255,157,237,166,47,28,31,12,165,1,245,49,185,15,23,191,71,86,26,110,206,196,143,3,51,138,69,67,161,215,174,88,192,173,195,173,13,89,59,139,167,187,193,174,79,100,87,154,80,35,43,158,40,84,115,74,139,94,155,100,43,154,195,117,59,167,220,138,201,74,134,77,83,178,74,215,197,197,208,235,199,166,250,152,252,96,178,220,197,80,224,1
 68,141,73,91,85,205,195,11,130,129,212,65,38,42,252,143,162,204,168,67,44,129,46,236,119,32,168,6,122,240,254,248,66,159,22,222,200,111,33,191,43,96,95,136,208,229,143,176,50,146,77,190,215,154,111,11,4,66,122,126,244,129,199,198,234,89,56,118,193,9,185,224,66,64,89,60,180,149,169,233,27,255,251,233,157,32,148,79,20,87,245,42,51,120,243,139,76,216,48,246,255,117,21,143,109,89,5,98,196,82,104,38,43,12,229,218,46,181,214,157,64,169,95,25,145,173,240,46,48,7,236,54,114,230,124,201,90,127,181,115,222,57,23,3,23,194,206,194,11,85,97,25,185,109,188,250,180,42,44,243,63,80,116,26,231,218,57,111,42,120,255,145,229,19,105,59,235,143,35,141,166,166,145,118,144,191,35,51,75,41,163,24,207,116,219,234,203,168,54,243,93,100,141,44,117,16,51,178,168,42,55,234,230,96,40,16,188,68,9,94,126,84,234,118,23,237,138,146,96,104,85,133,156,170,150,146,185,183,115,214,248,5,214,16,37,184,9,132,207,246,19,102,131,151,88,140,197,102,107,171,181,156,206,161,44,52,210,133,173,85,157,202,79,54,173,248,10
 ,70,166,46,201,29,40,220,65,132,155,82,13,39,161,252,78,1,20,54,120,35,156,83,198,136,200,100,209,25,183,2,244,48,218,185,104,221,203,28,94,40,42,141,147,252,212,237,254,167,251,252,166,35,133,185,20,177,83,149,242,50,55,34,136,204,5,64,234,199,64,56,15,188,195,129,214,71,4,18,72,132,21,137,139,63,205,68,57,204,31,207,89,83,236,54,40,229,150,68,59,85,33,77,187,136,122,41,178,149,145,83,48,36,210,42,111,132,244,31,211,122,78,144,77,76,122,16,216,122,150,29,251,182,135,213,219,35,251,138,198,200,203,243,128,20,9,37,169,3,221,76,247,123,65,140,152,156,126,57,242,115,72,219,234,201,185,52,119,52,249,178,67,218,132,23,216,186,14,253,130,22,38,249,128,205,39,199,228,237,13,29,188,164,98,138,86,129,21,235,35,50,67,101,152,135,192,181,28,51,69,253,198,59,148,111,207,94,152,50,210,217,178,74,79,44,111,129,86,244,168,191,103,225,44,54,244,105,7,227,208,164,13,111,208,228,35,174,96,194,91,173,104,185,242,236,57,98,73,71,122,7,209,111,232,18,116,185,66,100,214,36,73,61,80,219,9,240,102,
 111,81,84,204,88,99,231,42,25,158,178,30,20,75,34,26,195,206,91,193,0,210,169,25,57,68,213,48,205,25,100,84,77,91,191,89,225,88,168,29,27,202,25,187,201,212,100,178,232,18,73,107,233,143,157,50,151,90,168,253,246,78,24,177,58,143,15,4,71,46,199,180,76,102,210,83,4,153,61,249,184,132,54,15,127,169,92,44,67,124,153,184,147,219,201,208,223,162,164,96,56,139,84,2,72,232,242,195,153,112,148,9,111,56,223,94,236,207,89,111,223,254,222,182,169,205,230,40,8,167,186,185,222,73,244,222,89,190,105,90,250,214,199,168,246,223,38,43,182,156,232,246,31,118,57,41,178,98,27,45,173,83,251,170,222,137,161,144,180,50,184,103,180,195,49,96,154,60,115,36,58,188,39,8,59,44,7,11,209,87,30,120,67,107,250,75,202,160,253,100,17,172,125,34,143,243,183,3,0,57,135,135,217,180,173,203,132,253,195,36,119,84,23,137,53,213,5,218,162,164,98,135,203,242,60,231,237,83,40,194,155,239,223,185,138,23,4,60,145,173,141,123,71,15,143,154,23,83,197,86,120,85,112,3,117,146,224,15,76,8,3,210,47,61,217,30,226,177,128,121,
 180,86,114,91,145,98,224,40,30,161,176,123,180,132,126,17,178,12,185,202,112,15,255,6,143,203,54,253,148,245,206,180,126,86,31,238,225,248,108,207,23,147,234,47,152,114,217,22,174,250,1,178,206,76,129,224,247,117,137,198,66,46,5,22,227,233,92,221,202,95,23,20,213,126,225,121,202,191,92,47,185,211,26,154,106,153,122,7,153,169,92,243,240,182,63,86,153,24,119,106,91,129,174,154,245,118,115,126,112,223,220,217,41,17,17,70,55,45,25,93,48,66,184,149,182,208,228,127,218,194,48,2,183,249,252,242,89,150,157,21,127,4,147,25,223,169,238,140,205,228,3,3,23,243,128,252,171,224,38,148,186,1,117,97,178,224,52,32,217,238,202,126,106,15,13,31,242,99,184,20,231,153,25,237,128,17,213,238,131,235,72,158,202,120,181,163,216,36,70,69,80,205,84,254,95,251,246,131,77,153,208,208,34,44,203,151,23,129,15,95,74,232,145,88,156,193,179,224,157,63,60,231,71,73,189,207,235,49,136,96,179,115,48,179,25,216,157,132,38,28,155,197,4,109,140,166,144,140,232,203,226,22,55,194,190,134,135,191,118,13,107,237,213,1
 41,200,5,43,193,76,31,49,17,125,57,168,223,62,72,5,0,255,38,15,98,101,38,212,92,104,160,35,12,31,24,205,208,133,71,79,62,153,73,119,125,65,20,41,253,122,73,47,84,246,142,156,22,148,45,183,105,110,3,20,69,124,229,25,206,84,166,191,102,101,192,220,173,114,128,213,173,249,238,253,16,201,245,157,16,54,85,152,142,82,177,82,1,186,29,43,65,204,61,224,17,195,228,70,167,18,192,70,95,103,68,197,139,130,5,187,110,224,2,252,175,147,183,199,252,21,196,234,199,72,176,35,64,80,63,149,201,153,204,223,146,37,105,35,214,59,235,154,38,194,183,149,23,158,1,228,204,191,111,191,80,106,159,67,214,83,162,173,2,127,183,93,162,120,37,202,20,115,241,247,172,147,154,185,8,160,176,127,186,215,25,18,194,140,202,6,245,249,221,30,39,29,255,232,82,14,86,168,33,57,176,175,33,6,204,246,160,197,180,141,9,189,200,121,169,167,136,183,164,59,19,246,188,151,108,173,123,112,250,154,249,121,215,114,158,156,181,54,116,205,39,43,144,69,223,205,91,170,5,181,194,49,93,107,32,44,196,26,193,214,150,219,102,248,145,135,220
 ,122,230,106,81,110,71,80,35,28,239,223,47,59,144,170,182,167,18,207,36,119,48,7,174,108,97,154,7,185,32,102,89,193,228,218,243,32,196,36,77,213,43,50,26,130,133,73,67,134,176,41,116,228,37,103,221,251,145,66,24,155,24,145,221,207,163,93,28,75,224,166,111,95,253,124,179,124,41,185,64,133,18,146,90,211,224,248,118,174,75,75,82,183,54,36,234,207,122,9,165,221,183,0,154,170,56,114,187,77,55,207,163,72,131,216,251,34,243,175,47,93,147,183,166,4,128,37,141,242,176,215,241,255,55,111,125,2,217,66,135,223,237,197,138,224,4,227,60,212,115,115,189,241,237,93,68,99,74,48,169,2,4,253,206,100,33,211,39,159,15,222,229,49,154,208,139,115,73,182,196,103,153,132,74,18,125,155,137,4,118,235,253,25,200,148,229,186,195,6,255,155,52,174,123,0,46,104,143,145,211,15,194,84,190,188,98,145,160,228,68,12,129,30,40,230,118,232,51,104,43,139,165,73,14,24,221,119,56,212,50,169,188,202,212,241,66,82,111,26,114,240,114,229,170,105,119,37,142,192,5,17,193,18,27,202,223,169,168,126,112,111,66,227,247,148,2
 20,176,204,105,221,241,195,52,163,191,213,170,195,102,117,29,134,81,207,148,119,94,165,225,70,17,126,234,205,177,253,90,17,172,99,86,68,48,136,26,119,129,224,184,47,57,176,224,252,132,104,180,58,249,15,166,203,248,203,14,192,164,70,84,159,254,196,119,47,24,143,57,187,113,83,188,38,179,14,36,252,252,189,232,211,66,231,245,158,227,186,123,59,50,40,84,247,90,106,188,238,169,69,37,29,21,215,49,234,196,7,44,50,58,194,174,205,81,196,57,91,223,222,20,207,226,15,218,85,39,11,76,40,175,234,59,152,250,2,20,216,224,230,238,43,120,227,98,156,161,130,43,87,176,111,255,79,120,21,73,6,81,80,208,174,48,212,38,191,226,127,239,254,47,76,188,207,157,64,32,20,221,248,244,223,140,131,59,130,102,166,198,61,74,70,65,231,195,250,240,134,209,137,9,99,113,246,129,33,165,240,89,202,251,12,40,205,90,171,71,146,173,188,41,175,217,8,244,12,93,64,163,242,114,142,79,1,16,37,117,154,251,169,255,215,70,31,240,229,176,183,77,180,64,50,174,240,46,184,132,194,168,38,235,113,224,94,87,105,240,51,21,94,85,30,38,1
 25,156,153,255,231,241,28,197,112,91,124,43,65,214,214,252,140,15,146,51,102,0,154,36,50,123,129,5,221,25,190,168,108,53,39,169,65,32,121,87,214,113,28,195,34,230,202,213,239,239,46,50,106,224,114,117,197,130,175,47,89,141,135,52,56,229,40,187,143,226,104,169,31,173,115,128,132,172,22,31,55,107,218,185,115,179,58,124,225,78,31,210,24,8,89,189,134,140,140,221,99,73,169,135,74,43,151,79,42,239,220,115,8,99,109,113,135,100,69,113,184,70,43,186,76,207,87,60,54,27,120,79,187,214,152,244,100,62,158,101,199,94,202,98,27,44,197,6,96,231,193,133,59,31,182,76,156,254,144,94,21,61,51,123,9,2,103,121,127,77,238,224,31,167,215,60,174,124,55,60,210,143,252,42,42,87,43,4,236,43,3,171,155,195,5,213,109,116,181,70,75,178,210,111,202,57,62,159,118,225,201,91,208,229,161,165,46,90,85,69,188,66,251,171,97,252,116,13,177,118,175,195,215,71,99,118,250,189,99,64,191,238,219,96,21,128,50,164,165,87,101,221,0,227,81,98,64,151,111,139,99,49,243,103,228,39,227,64,18,132,6,14,92,187,87,160,219,126,229,
 103,127,215,219,198,50,142,37,155,250,105,176,254,166,152,168,53,167,8,0,141,204,99,89,146,190,45,176,164,38,44,241,250,228,40,177,44,43,39,34,153,250,209,137,127,39,15,110,103,196,84,150,247,249,107,77,124,206,251,7,165,107,80,213,220,119,72,93,187,63,79,141,252,131,80,36,219,216,232,119,104,30,186,15,176,49,64,79,189,245,101,26,35,120,64,44,115,20,135,9,31,28,128,131,48,76,187,208,79,64,71,126,5,230,150,138,109,250,148,124,226,236,195,86,193,52,114,32,227,130,204,56,33,231,218,224,250,76,81,232,15,73,189,228,231,144,40,26,212,74,74,242,229,37,96,186,113,179,2,165,249,139,248,249,15,34,184,78,57,111,81,83,50,237,116,68,171,253,109,191,235,64,136,201,203,153,14,222,211,43,241,205,146,101,252,59,159,41,146,18,255,166,147,224,159,55,123,156,97,121,202,97,207,206,87,170,159,113,56,114,93,55,30,185,248,86,229,208,168,3,120,246,229,235,220,156,105,157,210,170,124,73,222,133,175,192,72,58,95,254,31,101,218,241,246,141,131,81,131,35,39,15,25,195,52,150,238,204,32,141,104,252,164,13
 6,253,46,27,210,232,135,89,243,203,64,125,135,67,21,128,0,35,179,57,223,227,83,120,137,61,211,86,249,214,190,204,198,23,55,50,24,219,249,99,228,17,78,192,39,155,133,119,223,23,141,100,102,232,252,161,225,194,192,116,102,34,74,45,219,199,102,61,66,159,51,71,197,78,124,141,151,49,205,86,191,231,64,194,93,224,196,252,225,84,252,247,19,102,174,136,247,41,222,232,89,90,135,138,242,70,0,59,241,203,160,39,28,27,173,86,182,238,92,107,129,104,135,162,138,16,160,59,248,213,97,87,181,39,146,157,108,216,235,197,166,141,231,82,238,12,107,194,165,143,213,99,35,241,255,54,22,179,64,132,203,179,94,100,133,189,100,19,120,86,26,209,180,241,34,210,163,21,72,104,235,106,67,28,115,22,23,224,159,215,106,28,127,252,200,164,111,54,132,108,48,101,238,209,5,159,131,121,162,46,101,171,138,186,173,129,146,50,8,108,171,29,30,89,145,30,183,141,93,195,109,144,109,187,134,153,127,141,218,0,214,157,47,199,106,50,181,61,100,178,201,170,216,188,137,106,192,60,90,78,145,154,20,37,205,63,19,111,92,242,69,24,102
 ,148,234,99,87,185,190,57,165,67,10,117,88,36,255,71,197,25,151,200,233,235,50,247,40,104,208,79,26,219,32,54,178,40,68,253,9,123,41,171,78,232,239,188,141,138,141,89,94,209,19,252,242,29,88,3,245,204,246,237,63,26,146,114,146,74,188,95,146,49,59,91,151,151,0,57,245,221,153,244,95,211,95,12,102,254,179,122,210,164,87,113,129,1,132,226,102,27,195,171,173,150,19,185,218,54,167,60,96,207,103,227,21,23,202,142,55,112,249,89,90,184,19,10,207,68,180,147,163,53,146,81,53,226,71,172,192,76,18,234,0,62,77,109,129,129,86,170,147,108,215,36,83,123,53,130,177,27,125,231,251,101,12,148,226,185,178,62,89,209,43,64,6,140,140,66,183,69,94,9,27,175,189,22,193,132,244,72,111,141,192,192,109,188,33,45,108,76,36,60,103,60,84,103,226,120,55,236,140,225,118,146,252,120,194,19,143,4,160,77,88,205,155,137,146,44,133,101,168,239,185,61,121,186,80,252,102,39,133,84,170,68,52,18,55,124,79,13,236,168,125,96,88,48,94,3,185,57,121,11,62,157,207,114,23,122,255,42,37,194,105,215,182,125,156,75,159,10,5,93,
 126,171,3,156,14,99,101,3,32,217,110,218,25,244,219,239,71,165,107,147,144,22,81,42,19,85,25,177,245,76,137,238,212,114,107,109,235,47,156,115,224,123,226,227,181,74,156,3,151,167,183,15,34,84,177,206,104,92,83,156,88,65,156,65,129,14,74,110,13,46,125,9,242,66,58,212,159,59,138,38,71,5,185,180,60,13,229,142,12,2,78,139,70,18,43,53,62,238,25,232,219,225,228,100,141,3,242,14,139,32,100,217,45,38,251,124,14,94,17,219,133,29,198,3,201,254,243,14,181,194,14,94,129,212,28,50,27,162,191,119,116,165,165,41,112,130,143,73,228,236,108,248,174,77,159,106,115,63,148,8,74,159,15,5,134,25,31,4,114,27,74,130,73,153,94,83,22,192,3,250,21,89,116,211,195,123,86,145,40,63,82,75,94,252,10,0,235,150,252,33,222,119,71,175,165,5,51,79,163,46,150,41,65,91,190,15,248,146,212,109,200,198,6,226,53,53,73,74,44,112,43,31,3,24,47,105,252,50,204,37,65,250,122,255,110,207,19,111,31,145,125,188,219,92,42,114,56,190,79,181,196,174,113,171,154,229,34,235,123,56,63,220,175,131,38,212,255,14,38,164,188,144,178,
 105,177,121,25,3,36,70,250,74,185,66,237,73,46,164,221,222,85,69,253,116,172,235,52,15,138,30,90,20,232,96,86,136,75,180,69,176,30,31,53,252,160,20,189,202,58,19,218,45,255,220,251,63,114,25,132,248,157,5,173,112,153,238,199,77,176,76,31,151,152,113,172,94,122,174,140,79,1,5,137,178,95,75,94,113,168,190,235,72,221,201,188,126,0,146,22,77,76,21,65,201,38,128,155,37,3,187,174,63,208,207,47,67,197,221,25,201,50,34,227,48,209,116,242,218,194,148,160,3,211,144,60,227,153,154,193,245,37,103,74,119,69,55,37,186,202,20,167,255,149,170,177,74,12,117,103,20,15,98,161,84,17,188,89,43,186,2,129,41,71,248,251,178,34,136,178,156,110,135,231,147,112,91,153,186,94,127,46,204,137,194,209,253,77,188,208,110,101,62,198,10,120,1,68,1,21,123,240,64,190,176,52,159,238,119,112,127,149,168,75,113,92,143,47,87,224,109,1,24,152,236,94,254,99,137,25,32,44,241,11,171,218,42,75,35,255,185,1,207,65,96,166,112,219,125,13,59,182,17,253,105,43,238,7,100,99,179,154,66,117,158,131,144,242,128,179,82,87,106,12
 8,104,49,72,99,2,108,57,247,97,163,139,218,190,146,107,124,185,18,105,12,253,160,199,164,112,230,90,231,115,132,243,39,84,46,238,30,35,108,57,47,198,102,100,6,213,94,194,214,114,27,107,202,195,100,118,206,207,10,155,114,29,100,117,48,230,171,152,101,149,197,238,234,159,189,79,215,140,13,93,211,208,7,25,209,90,143,120,170,102,177,94,101,250,230,193,195,73,68,122,221,2,168,240,134,154,207,161,121,246,216,132,62,216,200,169,16,232,16,199,169,235,16,234,161,152,194,31,153,15,211,165,108,29,42,28,16,156,206,59,228,243,64,152,8,86,109,107,186,49,84,236,232,43,38,139,49,57,240,138,89,76,124,91,157,113,56,149,137,122,159,75,134,228,49,236,78,248,203,253,214,87,212,215,44,193,90,206,78,204,89,11,14,226,244,87,125,135,149,173,62,183,59,147,198,206,1,11,181,30,132,94,138,120,156,157,153,216,169,77,79,249,146,255,184,44,246,152,154,179,145,30,175,100,107,209,128,173,174,226,56,10,36,233,99,84,172,194,85,107,159,216,240,242,245,69,164,144,187,21,211,237,59,200,110,31,127,35,181,25,54,125
 ,47,200,229,135,44,30,164,187,17,145,130,142,25,178,213,64,163,15,65,24,6,37,86,193,77,236,138,74,216,195,250,180,50,34,232,92,173,107,147,105,205,32,147,133,236,1,86,9,197,250,4,203,192,143,112,89,32,129,166,178,251,233,251,148,219,250,38,199,206,14,68,108,37,17,91,122,182,118,174,10,12,220,206,208,1,64,13,178,207,93,228,164,121,248,138,255,143,166,121,69,76,118,152,62,109,224,218,56,209,235,16,233,114,86,33,172,139,122,222,102,96,233,142,210,138,115,47,89,80,121,165,2,217,220,142,88,73,25,55,89,124,215,156,82,159,145,171,229,249,247,222,2,234,249,18,40,57,198,35,10,11,254,130,120,48,125,136,180,39,47,183,3,185,203,91,119,10,127,85,37,53,93,11,215,135,33,217,127,24,210,221,166,158,44,7,244,38,33,45,131,36,92,73,133,163,157,71,177,37,47,156,176,228,17,101,207,62,54,47,17,99,69,56,11,61,195,6,122,176,133,49,205,184,57,48,129,92,128,85,12,131,102,98,252,51,26,147,29,85,88,47,17,63,0,201,198,193,25,58,188,221,187,32,207,226,46,55,10,98,77,40,65,248,2,164,60,126,198,163,118,52,2
 43,200,74,3,197,175,146,101,254,1,211,31,46,56,151,127,241,16,246,190,71,53,201,151,89,48,177,136,57,83,34,162,249,113,46,93,152,50,204,106,121,54,133,38,133,97,176,164,65,22,69,188,9,146,165,3,32,100,69,228,0,113,65,219,155,86,248,108,16,93,185,85,104,139,83,255,200,225,62,225,71,218,126,124,81,233,174,50,54,31,60,104,215,149,21,54,60,71,148,0,45,178,25,111,46,235,165,25,21,158,71,91,224,169,229,73,185,222,157,120,186,120,115,130,15,157,80,182,80,187,241,87,6,3,239,77,136,46,2,212,149,31,160,21,85,34,20,30,123,126,36,119,181,12,183,100,202,19,54,99,45,78,0,14,208,54,205,64,241,124,68,22,116,173,78,150,246,12,200,83,85,223,13,151,22,27,201,68,154,180,54,242,230,43,189,245,123,160,71,136,206,156,172,165,195,217,124,192,9,27,74,29,236,117,90,156,190,191,197,238,5,59,200,123,60,170,54,126,190,59,14,139,250,105,127,235,112,241,112,148,103,90,248,198,234,68,71,14,124,128,17,144,102,39,236,22,255,137,145,73,45,239,85,97,53,144,239,196,62,142,124,137,141,125,112,236,119,65,239,9,24
 ,209,62,84,122,59,201,31,32,10,7,157,86,66,190,124,230,90,178,45,44,185,234,29,194,63,255,238,132,11,60,47,91,139,224,185,130,226,237,101,15,60,133,76,222,201,39,52,179,65,186,145,112,239,237,84,83,32,133,133,138,180,155,97,113,3,101,24,124,174,195,148,242,171,176,186,147,161,99,14,159,107,135,247,195,90,67,180,194,219,42,54,19,110,203,29,217,243,248,49,114,25,101,171,82,54,169,178,208,106,2,58,92,60,160,85,129,114,74,102,229,209,3,135,227,22,61,162,148,154,40,64,196,6,72,89,153,192,252,195,92,22,41,53,179,46,93,238,62,222,218,31,71,235,193,130,97,232,150,48,49,95,11,51,82,25,193,37,78,228,15,102,129,254,53,241,227,74,128,157,70,56,77,131,248,89,127,96,21,93,111,79,78,174,47,170,216,137,163,242,139,179,166,36,0,114,241,33,217,123,158,232,224,213,253,67,139,133,104,197,33,167,212,2,26,214,189,93,174,187,251,177,153,167,153,205,131,165,167,81,129,65,167,136,218,157,207,51,240,171,255,48,122,246,153,208,153,232,7,56,177,48,194,191,123,29,66,138,20,154,76,81,125,60,157,42,63,13,
 221,104,219,195,67,20,67,22,205,70,78,165,17,93,1,11,50,94,53,139,179,222,121,30,44,70,243,254,68,220,243,172,203,50,53,132,251,94,103,221,100,201,5,141,57,33,89,8,2,244,30,6,23,42,231,204,108,161,50,145,140,173,11,56,236,16,128,118,108,110,83,240,237,30,137,84,112,253,125,147,202,132,106,158,82,142,238,39,175,248,250,116,228,240,17,19,131,54,165,16,225,255,133,62,12,29,250,255,67,104,174,240,200,174,207,6,189,131,59,20,47,233,236,199,183,196,135,127,101,123,247,221,62,237,193,8,233,9,30,59,18,105,136,115,111,119,248,17,178,172,4,224,185,230,3,140,63,7,104,64,180,13,10,238,10,248,130,33,195,30,190,128,159,141,33,172,229,0,172,195,17,61,67,128,196,195,143,243,21,11,140,11,126,91,39,218,79,137,127,74,210,120,31,157,211,186,246,224,1,41,63,161,238,145,15,161,255,199,108,151,166,49,188,165,92,141,128,225,154,68,187,145,213,185,66,44,112,42,100,237,3,81,33,42,127,3,243,31,24,139,255,235,18,124,35,69,56,29,122,226,133,38,216,155,128,129,241,174,201,249,215,94,146,237,12,77,173,129
 ,25,115,135,24,187,26,215,64,235,43,71,166,228,197,133,128,37,15,64,241,46,15,160,194,255,68,49,173,100,186,115,238,76,222,90,129,70,248,175,189,128,38,159,101,18,225,197,38,43,97,203,84,219,78,42,99,242,144,26,152,103,76,137,137,96,254,39,128,159,198,4,89,17,243,127,123,203,53,12,36,206,174,238,180,26,29,169,99,44,118,41,84,181,193,222,142,242,147,40,56,30,127,213,211,197,161,237,68,185,18,203,88,89,105,253,44,222,69,164,37,112,179,225,227,111,129,82,210,215,49,204,125,104,50,178,160,88,59,17,238,48,249,65,38,104,146,184,50,64,15,110,34,58,75,142,72,44,45,29,37,203,178,227,239,58,89,217,189,41,113,217,24,184,97,8,177,198,21,97,12,21,207,99,117,149,128,116,45,208,203,194,179,215,150,10,34,226,169,112,82,27,18,100,69,216,57,59,216,42,37,242,178,251,126,133,133,190,175,93,1,70,31,53,150,235,124,214,33,32,39,193,77,86,40,244,88,137,53,195,70,177,44,110,116,36,24,209,138,6,217,173,223,63,25,45,195,230,167,84,25,231,26,202,108,232,80,47,64,218,68,105,244,210,240,41,134,249,170,76
 ,32,88,237,152,141,167,211,139,176,71,63,101,246,83,147,55,6,122,51,139,238,234,238,71,213,52,161,80,243,172,168,78,8,227,37,28,237,171,218,171,216,187,81,204,10,66,189,137,247,197,159,197,4,133,136,32,135,192,103,219,76,219,117,10,52,6,82,95,184,165,69,239,148,147,40,147,239,5,33,239,12,170,228,71,67,155,29,116,24,72,167,150,133,10,143,29,113,222,242,2,63,76,84,153,178,98,221,170,150,59,212,155,195,57,6,166,82,157,206,252,244,63,54,227,82,207,15,254,199,154,15,66,71,106,168,192,54,118,164,146,247,82,125,11,28,247,91,112,55,14,108,108,17,137,115,252,244,241,227,118,43,201,156,139,23,147,102,248,191,27,90,206,101,183,38,55,153,167,195,7,11,10,221,37,149,224,43,59,31,194,123,97,219,225,34,80,168,240,48,129,78,204,220,94,32,24,145,63,89,0,176,45,82,142,197,184,27,243,98,84,14,255,246,106,4,197,59,212,76,138,250,146,72,172,181,108,160,218,255,84,89,112,10,44,206,203,241,95,48,138,174,24,184,133,20,132,12,38,81,188,235,78,196,152,164,115,66,234,33,168,188,161,28,78,236,16,151,181
 ,8,144,132,249,3,122,36,8,3,251,118,236,34,121,93,31,242,22,54,36,147,251,237,229,252,218,211,200,76,3,93,1,166,135,98,178,97,138,5,46,255,181,11,221,115,206,137,63,46,193,10,186,25,239,70,48,111,171,166,216,93,57,209,219,44,148,244,203,200,17,214,97,249,149,56,171,35,65,199,228,42,144,6,41,53,129,165,36,249,38,174,170,127,40,9,132,77,8,60,152,216,246,11,179,240,128,138,171,223,78,35,214,179,98,241,25,204,79,52,111,184,25,80,61,23,178,31,64,142,117,100,137,151,151,243,61,247,176,35,103,160,70,91,34,92,89,140,179,170,236,96,147,173,42,120,7,189,204,38,240,197,47,82,78,103,13,254,189,40,241,81,114,9,144,73,13,78,35,89,246,149,89,87,99,17,169,160,206,252,213,41,213,140,124,84,149,150,39,244,94,231,80,116,231,228,54,146,72,46,31,209,101,92,77,156,191,166,210,82,175,30,201,223,213,90,34,165,121,161,50,13,158,184,105,228,28,149,49,101,175,154,70,152,220,49,237,220,254,42,101,243,92,13,79,200,53,180,196,255,40,103,60,129,111,6,137,134,220,70,12,12,167,79,225,161,143,142,21,186,134,
 197,10,147,225,185,135,99,127,153,164,93,52,149,186,117,139,6,156,227,44,46,88,122,173,74,205,213,77,8,99,78,9,88,21,142,238,28,181,92,163,128,219,174,21,30,7,222,44,242,234,85,71,32,115,248,139,39,54,25,212,23,7,36,74,204,8,14,78,81,134,78,73,35,87,55,93,144,63,41,79,8,174,62,217,141,184,190,199,157,40,70,144,71,111,110,54,199,92,173,1,223,217,221,56,65,144,138,144,142,211,187,11,122,102,236,99,86,102,65,216,238,136,221,200,19,206,72,49,180,175,236,158,69,109,203,12,183,22,174,74,140,93,123,152,190,163,194,181,131,56,21,254,114,186,128,227,199,110,174,154,162,143,109,122,115,242,172,91,62,19,121,171,247,190,54,153,20,215,108,161,66,224,22,132,112,120,99,79,195,147,200,77,223,253,197,147,121,189,93,217,56,157,150,239,6,210,186,66,30,123,147,7,135,127,209,70,84,229,158,184,10,99,41,78,232,204,166,227,114,171,101,38,239,170,239,254,83,224,154,79,162,219,83,234,204,244,161,98,131,49,41,51,239,35,148,204,240,16,80,3,204,37,35,252,40,20,3,19,170,219,92,103,146,248,129,30,65,232,5
 4,202,224,227,149,51,238,21,97,24,132,114,210,241,25,170,185,74,230,235,174,171,121,200,247,226,94,126,198,101,110,232,249,241,136,13,58,17,209,93,183,55,187,77,158,175,134,3,182,62,93,106,135,98,96,24,38,158,199,61,107,136,3,209,225,164,33,166,196,226,11,239,134,242,219,223,12,231,129,98,64,224,46,219,7,113,91,216,38,174,70,67,252,113,238,218,198,201,96,230,159,104,141,236,64,238,70,215,46,181,234,170,185,3,210,120,100,165,112,250,58,245,150,218,110,212,168,113,113,203,34,137,205,198,30,161,104,202,161,101,29,77,132,219,60,78,108,182,54,123,175,252,147,225,210,213,212,69,179,27,96,124,45,55,132,28,198,117,194,236,65,33,246,71,16,97,149,248,15,30,249,76,118,11,141,238,204,248,254,81,99,154,79,48,61,64,17,37,218,38,22,169,175,214,121,121,17,152,233,91,19,51,63,42,247,232,148,228,37,95,125,67,25,187,177,244,109,204,21,171,56,61,227,113,115,154,138,12,241,162,168,132,3,158,127,44,196,170,177,155,28,28,107,179,124,21,227,141,203,201,78,163,98,132,132,168,61,118,143,196,134,167,1
 82,134,201,169,236,173,155,181,232,15,203,35,89,252,76,61,15,209,243,150,8,226,79,194,7,35,2,27,175,20,188,193,33,131,197,207,170,38,121,81,146,187,193,157,111,127,127,61,24,6,219,236,104,58,202,194,33,143,182,2,198,150,60,156,124,79,170,139,191,171,163,68,162,192,202,211,15,132,80,64,240,189,207,76,188,217,29,174,65,148,89,249,105,123,52,62,11,141,238,127,3,59,64,239,163,124,159,186,15,225,44,119,147,75,97,145,190,144,245,252,24,168,2,215,86,110,62,102,13,31,155,216,43,199,88,221,220,12,165,171,209,7,56,90,253,1,235,2,167,130,28,241,193,153,214,133,129,4,60,3,1,133,62,62,60,238,220,147,218,55,199,160,132,139,58,29,45,24,125,232,115,184,46,52,186,169,167,84,16,225,183,60,210,168,178,65,146,119,167,181,139,213,51,152,108,158,163,153,123,85,221,118,125,25,105,250,33,31,250,125,72,135,198,27,46,129,207,217,199,114,59,107,59,219,165,157,35,238,97,170,129,123,160,8,175,190,71,81,254,219,37,11,212,224,5,127,63,20,37,117,229,217,219,246,124,19,52,117,11,101,137,154,247,99,244,160,1
 27,240,179,38,155,83,42,44,144,165,192,124,238,192,120,47,184,60,195,150,73,140,85,173,32,40,250,15,207,187,220,137,200,190,200,247,11,101,90,119,74,124,210,242,219,30,227,214,57,217,12,199,189,245,7,19,71,218,198,50,155,193,126,57,217,91,204,1,31,85,233,202,225,196,255,54,45,134,129,161,47,128,68,112,193,189,212,98,80,104,53,173,253,126,7,123,10,107,118,203,188,12,50,89,164,106,85,245,132,77,108,123,61,154,241,165,25,243,66,253,171,110,95,115,117,183,71,134,92,38,251,238,221,203,168,171,232,66,27,72,119,7,12,164,74,87,186,165,214,54,73,200,74,97,50,26,121,248,20,161,120,73,166,222,65,115,100,108,221,8,97,183,26,182,71,153,130,74,61,208,248,38,73,46,3,202,201,160,243,186,96,22,48,38,88,180,44,153,33,222,211,111,80,190,254,198,42,216,240,151,142,141,105,117,148,5,253,110,184,96,64,226,244,30,47,41,143,46,175,179,174,188,182,53,36,171,177,58,131,184,42,243,55,200,75,254,166,251,172,106,206,235,184,218,221,213,22,253,222,112,4,78,76,67,22,150,205,146,140,74,238,71,123,195,186,2
 50,148,201,5,102,90,113,203,212,67,113,117,215,225,166,22,90,128,52,146,24,153,60,83,69,230,160,65,248,47,86,5,68,4,101,200,46,15,139,102,121,103,249,237,89,139,118,5,70,43,203,45,8,120,18,219,11,148,102,161,218,124,37,118,94,146,189,239,220,215,93,189,156,126,134,226,97,10,78,230,242,184,234,247,197,115,86,71,216,156,58,34,75,36,72,172,84,201,215,105,100,101,62,69,124,158,61,122,190,165,92,177,155,235,53,80,94,242,222,227,155,40,83,38,222,134,104,160,42,160,218,200,121,199,24,93,118,68,232,69,184,54,191,30,226,83,47,4,63,233,122,157,54,208,28,153,129,33,39,252,60,138,94,8,241,95,115,137,241,122,4,98,169,237,133,112,58,12,14,183,199,141,171,251,52,191,203,252,132,95,55,221,35,90,223,224,200,21,250,168,143,120,52,191,56,72,5,81,99,173,174,15,44,148,191,61,66,90,87,63,28,106,28,47,61,252,144,203,201,101,251,1,76,136,89,209,42,243,105,66,114,114,248,220,196,241,91,156,81,42,213,189,241,20,4,184,143,211,151,48,244,233,80,52,30,226,67,197,216,148,152,182,117,38,79,47,56,206,146,2
 23,82,180,26,195,54,233,22,56,33,139,157,144,136,49,204,77,155,147,118,132,25,55,142,60,193,152,112,81,64,115,131,123,154,83,195,188,58,5,199,132,72,48,227,8,157,156,240,99,18,121,84,186,165,70,248,157,220,93,236,0,97,41,3,115,204,193,162,96,167,104,184,149,130,29,220,79,130,59,16,221,23,0,99,1,124,176,77,75,9,172,237,34,7,34,178,99,80,35,109,194,78,175,51,215,66,216,173,133,166,112,213,156,167,90,38,255,228,225,77,66,143,73,127,25,12,24,36,167,213,75,206,170,152,228,16,0,21,229,48,51,34,32,252,0,222,38,162,209,63,159,114,187,169,68,36,240,193,109,188,143,102,190,215,84,195,127,16,111,25,76,9,116,82,4,104,35,74,67,89,252,59,193,206,41,27,63,165,86,140,194,57,237,87,125,83,20,211,61,145,93,246,161,122,71,8,180,122,133,30,221,195,224,62,158,19,105,243,216,26,184,30,203,199,23,122,182,141,71,60,126,104,196,88,133,248,45,139,116,80,146,37,91,28,226,69,247,95,36,201,195,54,213,158,99,151,107,123,13,66,135,184,201,227,103,21,122,91,80,209,198,108,139,132,221,68,75,67,108,222,144,2
 18,131,105,51,160,158,195,127,174,111,107,40,169,235,11,70,69,16,142,17,208,153,149,204,161,214,197,50,47,80,21,168,65,238,108,247,242,93,57,234,76,122,237,21,68,169,159,248,66,5,136,52,49,8,159,83,169,43,249,213,19,228,166,208,62,67,14,57,173,255,191,25,108,79,244,29,201,49,141,138,136,254,72,162,115,173,35,188,201,232,241,225,13,145,105,1,207,196,251,163,200,133,0,133,8,224,223,170,196,10,172,207,221,67,208,27,204,118,249,176,105,141,206,68,68,190,113,115,185,7,129,134,104,63,95,239,255,65,103,230,136,162,127,26,5,247,32,85,35,3,57,157,98,239,111,140,48,163,250,56,80,197,34,97,34,3,49,38,39,159,178,92,31,135,7,114,34,173,234,33,26,22,130,228,92,163,42,183,98,130,90,68,101,77,180,170,24,242,88,114,166,31,59,113,247,60,114,47,243,147,182,47,49,159,12,94,163,44,181,129,247,52,147,120,92,15,185,249,74,197,253,122,221,37,172,84,206,191,80,209,231,18,102,127,64,182,148,198,194,219,230,27,219,62,91,96,98,191,128,120,70,249,138,177,230,210,88,243,199,44,12,38,83,11,248,98,118,224,
 25,133,94,88,13,18,206,81,153,180,252,104,5,55,176,162,127,36,220,2,35,184,185,254,12,172,9,235,135,3,240,137,58,147,90,109,124,107,120,115,27,113,46,180,158,213,21,24,235,108,205,174,243,18,219,54,142,197,195,145,61,75,245,225,12,55,54,93,177,248,235,5,171,119,19,88,57,88,21,209,7,199,183,254,102,165,4,161,61,71,244,255,233,223,229,42,114,151,221,30,47,110,249,168,32,142,38,218,23,223,218,219,111,93,237,69,247,12,81,63,86,67,249,90,175,60,18,173,217,255,248,165,246,217,249,14,7,108,21,196,23,68,2,34,232,52,84,232,39,238,111,237,68,174,165,120,70,220,14,171,107,195,169,62,144,82,4,6,114,200,137,126,116,126,10,194,201,141,38,67,70,18,93,124,227,25,73,64,184,22,211,80,83,107,208,27,147,165,149,52,53,115,80,57,6,155,26,85,232,134,55,213,81,109,26,115,55,35,57,247,181,97,123,159,165,209,190,84,212,22,178,120,161,21,118,223,163,4,73,100,5,196,172,15,61,35,177,237,201,148,166,132,93,224,147,200,75,41,200,139,35,237,134,68,187,87,247,34,35,169,56,74,236,59,62,203,161,48,62,151,24,1
 86,218,199,153,11,233,9,93,237,51,200,179,174,75,203,240,96,23,222,97,252,145,199,54,220,241,170,219,110,154,204,193,154,203,96,42,135,236,57,186,105,43,120,177,140,130,69,80,122,76,33,150,208,213,203,196,233,9,43,162,5,194,23,146,232,118,39,114,240,121,39,21,167,102,156,127,164,118,148,143,252,187,193,234,190,60,128,110,123,66,223,41,17,213,87,231,204,151,245,253,69,225,162,114,208,150,116,222,235,119,170,214,42,30,188,106,1,89,147,92,199,57,232,26,152,172,99,50,48,115,177,79,133,26,147,38,208,131,172,80,226,122,70,92,193,211,51,95,193,146,242,69,7,148,82,98,136,224,105,216,126,115,177,89,2,22,92,204,91,191,31,146,192,206,10,83,171,10,98,69,183,88,30,209,17,126,190,227,93,221,219,108,216,182,148,199,57,206,30,22,11,191,46,97,28,182,245,116,86,12,240,165,71,243,245,10,109,79,139,124,238,18,77,136,198,82,175,107,90,163,94,145,26,1,156,151,21,2,88,100,132,36,14,243,178,187,11,4,221,32,95,175,195,26,163,164,90,73,229,154,56,245,53,200,75,49,83,238,253,113,93,28,188,233,37,102,2
 47,62,117,225,120,118,63,27,231,150,35,248,126,211,255,194,191,179,240,8,72,66,118,203,148,192,239,66,32,192,6,55,196,104,117,119,93,182,41,230,56,80,20,98,243,148,103,73,2,18,71,237,97,37,92,37,111,8,11,155,197,109,167,129,229,130,105,25,246,88,18,3,38,177,0,202,89,182,179,36,229,32,19,200,206,217,42,133,16,3,113,209,178,213,114,217,243,209,186,123,131,89,47,142,237,80,132,23,154,220,125,142,128,17,79,219,75,200,34,127,8,28,12,245,149,176,25,193,126,131,105,207,76,138,148,120,137,193,191,223,157,154,61,249,188,198,107,156,55,90,135,204,104,79,177,42,49,234,165,203,141,5,108,88,211,154,129,234,109,100,61,210,72,79,207,63,167,42,207,62,134,212,46,0,95,127,228,159,25,79,190,197,165,141,176,160,78,219,6,237,9,228,20,212,237,103,223,84,185,48,18,3,110,61,126,251,44,61,93,214,34,227,35,36,170,16,190,58,56,130,177,109,154,244,41,9,53,232,255,145,77,129,124,216,8,255,157,245,108,240,121,114,186,221,191,64,151,60,220,60,43,76,18,148,188,181,144,41,245,115,112,143,42,162,163,100,62,1
 81,172,104,233,107,115,160,99,64,18,235,47,57,62,46,10,158,60,180,213,162,137,161,233,95,87,149,67,126,240,120,118,158,22,78,102,253,67,253,51,224,186,132,7,146,70,227,192,23,13,205,145,25,201,37,125,148,249,127,198,115,39,23,11,127,111,39,99,166,238,5,118,210,246,131,77,161,181,147,255,176,56,133,84,59,247,203,242,138,248,121,187,235,205,24,215,11,162,134,242,15,205,233,160,111,57,157,91,115,113,209,5,18,161,141,196,73,36,179,68,187,108,248,191,138,77,38,141,180,90,59,2,157,193,43,217,231,178,128,53,23,156,15,142,170,185,107,154,144,116,69,198,127,145,160,208,163,113,45,44,226,122,10,89,238,61,126,166,139,132,225,222,75,226,211,52,203,162,248,27,11,188,6,171,61,183,193,80,100,190,6,179,217,215,15,75,162,205,148,195,88,93,228,176,157,248,136,141,57,39,36,181,181,219,182,72,0,144,148,138,21,155,226,129,88,236,169,57,125,245,154,58,62,220,185,236,72,98,251,234,222,38,173,223,48,101,179,77,124,159,43,223,156,42,234,235,5,83,163,201,211,100,125,2,121,171,231,11,206,64,104,222,21
 4,84,155,75,56,19,133,67,222,20,9,163,49,156,235,35,45,137,153,6,126,110,244,79,23,70,209,72,125,236,170,98,196,94,142,157,249,211,8,185,108,186,69,155,74,212,196,130,80,98,105,187,155,239,57,118,156,47,79,144,78,201,151,218,163,101,227,221,170,123,217,205,28,165,201,20,212,126,199,91,147,18,69,140,50,88,62,112,216,119,21,223,136,201,102,82,126,241,137,98,30,224,215,37,147,36,172,202,235,132,248,137,85,202,2,121,227,126,2,221,3,197,41,60,71,104,159,131,33,28,84,92,129,61,142,100,222,72,124,9,137,28,252,104,185,174,134,226,251,155,217,212,87,204,50,83,24,51,76,78,209,119,84,191,80,50,178,63,22,215,21,158,56,3,135,96,68,37,47,14,84,224,171,223,187,110,143,136,107,154,89,200,134,45,30,250,230,61,146,58,242,181,183,74,229,144,190,186,188,197,100,100,0,93,168,222,120,15,214,123,33,47,249,223,232,144,243,215,21,231,67,193,53,163,83,215,53,219,121,60,153,213,23,62,229,81,68,110,33,201,65,204,71,127,62,172,3,250,87,68,225,64,65,174,25,92,234,214,154,88,83,238,149,136,25,20,23,203,11
 4,13,7,163,237,153,112,151,193,96,239,7,243,186,132,33,220,247,241,96,64,21,33,175,35,206,114,149,200,248,44,172,5,244,107,56,205,38,62,81,15,128,17,16,184,108,253,134,119,18,107,129,145,158,16,214,195,46,14,153,144,59,187,104,106,160,88,124,13,125,43,14,107,90,90,30,71,55,89,48,96,127,13,66,37,4,35,116,35,244,21,132,26,167,139,147,134,250,73,192,181,202,190,48,93,151,164,151,188,77,170,96,19,82,14,171,41,211,163,181,178,161,102,64,12,248,5,89,92,162,77,247,181,164,80,157,211,89,206,206,160,114,154,196,201,142,149,230,66,11,173,237,54,28,21,92,55,76,24,107,3,100,7,110,70,48,145,104,209,146,36,152,179,89,143,151,109,124,173,208,164,38,54,50,222,7,3,226,0,122,147,187,63,152,214,105,216,12,153,112,120,107,75,80,249,12,134,75,2,229,217,168,176,78,107,255,43,40,233,87,76,124,45,30,141,16,195,190,65,185,130,26,89,143,184,175,84,62,31,14,161,29,55,156,215,176,167,88,10,203,32,75,230,191,63,255,169,43,217,140,194,17,92,53,81,165,208,134,141,22,116,115,201,134,26,108,212,204,3,193,12
 9,253,136,217,147,79,239,223,83,27,43,131,54,162,214,111,243,191,194,110,187,41,112,65,121,17,230,51,125,246,148,8,164,57,75,81,118,112,200,218,114,49,116,242,199,213,17,204,172,162,192,58,237,172,216,210,125,144,168,183,41,229,99,244,230,73,47,29,80,43,137,79,207,111,123,165,211,121,70,87,70,118,142,98,51,191,11,66,36,197,186,230,237,22,170,173,166,99,174,68,224,150,149,35,135,47,32,146,44,138,22,32,70,93,68,139,73,16,132,91,26,213,102,134,59,152,107,4,23,117,201,175,153,207,133,40,86,170,173,55,124,64,171,217,93,178,158,180,14,159,251,72,139,238,37,74,91,167,24,230,233,217,174,43,120,79,172,222,84,213,96,194,30,84,172,59,38,242,111,146,230,95,201,218,113,67,210,144,244,230,195,104,190,52,242,21,5,115,92,154,144,9,4,97,177,203,250,20,237,230,23,94,145,47,108,154,73,91,182,228,203,46,123,36,157,53,253,148,132,108,32,107,166,50,4,65,150,238,6,249,152,27,187,18,227,132,9,252,160,228,104,23,122,154,168,7,242,163,143,142,151,139,229,171,135,131,168,221,124,42,75,103,182,189,151,
 104,115,149,98,63,151,205,54,245,70,229,67,176,86,22,38,182,182,38,246,52,31,108,94,216,118,51,202,157,8,227,59,144,91,242,246,190,131,64,177,82,7,51,55,136,89,15,220,98,193,208,131,8,14,210,243,116,231,193,92,145,243,143,166,106,219,91,58,210,30,222,28,199,157,100,181,146,70,122,102,200,177,117,48,84,118,209,254,201,90,160,114,169,20,248,236,51,240,225,204,95,151,132,171,140,88,32,119,185,176,104,60,245,233,164,133,13,86,14,86,178,74,28,247,249,5,202,199,111,5,149,239,45,117,73,37,21,143,69,113,117,237,19,205,113,101,94,19,167,229,217,105,33,155,147,101,64,215,133,5,110,51,225,27,238,100,215,170,83,129,62,119,162,179,128,7,179,170,10,245,167,51,182,17,206,5,104,247,169,81,80,147,227,153,186,123,163,159,220,179,180,233,129,157,236,53,220,6,71,150,172,127,213,36,210,63,238,128,146,71,91,249,225,226,94,0,74,206,62,55,224,73,6,91,90,45,63,117,194,174,61,186,67,40,81,30,152,75,133,90,0,23,190,223,155,117,127,238,133,31,82,109,204,176,37,97,209,236,58,246,3,166,197,132,124,196,13
 8,131,124,223,188,121,242,2,240,237,201,195,22,117,201,17,58,165,77,76,80,64,164,142,81,223,87,23,206,121,45,65,16,227,215,19,60,20,224,154,100,237,58,104,52,201,181,171,91,165,74,117,187,56,109,132,4,239,20,238,11,19,195,166,0,184,200,201,76,247,72,39,99,166,181,250,28,126,245,88,100,91,225,169,26,112,29,52,4,45,6,144,26,249,201,9,160,155,48,108,26,140,122,227,249,167,98,37,203,71,5,39,111,53,88,79,16,242,100,219,74,50,43,186,177,203,5,211,231,15,35,41,249,174,111,142,251,117,111,189,156,22,18,123,88,75,249,239,3,95,41,200,179,238,93,168,187,154,135,143,214,95,59,228,152,0,120,58,36,100,77,24,203,201,77,71,21,76,238,166,254,25,61,144,178,169,19,177,191,44,147,18,41,61,26,145,183,171,207,75,48,37,211,231,181,236,58,21,8,230,221,216,190,37,184,120,198,159,155,142,85,8,134,216,34,229,50,131,223,85,51,14,79,47,70,76,109,63,51,125,215,128,92,17,205,215,62,87,172,153,96,110,152,230,90,148,125,15,70,242,216,144,14,254,187,224,52,35,104,218,78,149,37,24,114,146,6,84,20,158,205,103,
 117,142,19,108,3,250,147,175,199,222,188,103,174,238,73,254,238,109,99,34,247,136,2,157,164,150,70,213,250,136,208,247,145,199,131,243,209,61,230,155,250,6,74,181,224,195,106,111,197,6,130,173,110,125,230,86,36,151,27,48,154,102,112,93,204,56,66,198,95,88,247,231,215,7,90,60,251,23,249,231,79,15,239,4,251,135,228,40,116,28,220,137,162,54,153,209,51,51,40,102,195,103,13,122,93,124,163,193,194,2,154,11,63,66,204,21,203,159,6,170,140,135,134,244,237,9,31,142,20,30,156,192,48,153,106,186,154,138,217,27,22,1,132,151,137,94,30,220,57,178,252,78,220,230,9,109,68,86,199,96,214,82,213,64,68,21,44,24,172,43,120,57,71,205,113,127,22,57,19,2,173,1,66,139,22,230,248,233,119,125,80,87,44,6,125,3,24,229,143,234,109,146,230,199,249,31,198,255,35,194,234,85,138,116,248,6,148,148,100,99,36,253,215,98,220,156,212,33,51,227,135,93,142,196,162,234,55,121,36,225,118,253,44,132,187,247,41,74,50,7,219,231,40,142,191,171,137,228,161,243,249,114,117,110,92,229,182,216,38,91,143,221,109,247,46,242,205
 ,50,19,149,90,11,242,231,247,47,224,59,47,133,146,233,131,9,18,248,83,119,172,26,168,125,114,1,119,103,163,159,188,240,176,101,139,62,115,190,196,34,239,169,52,199,164,89,150,188,232,22,154,123,172,15,200,60,30,163,235,37,108,49,165,127,176,161,231,61,107,48,14,116,239,246,68,30,196,10,13,70,128,196,57,100,202,130,196,131,84,53,233,141,5,109,94,225,143,255,135,29,207,121,105,92,234,147,30,165,204,65,72,37,139,128,189,153,90,116,246,111,243,197,170,114,182,239,201,189,191,126,124,102,35,40,85,125,73,237,68,96,137,13,107,38,164,107,255,174,138,30,188,233,0,250,201,54,211,240,133,213,227,24,208,226,60,151,99,195,20,64,119,46,205,155,93,113,17,52,217,141,180,148,76,248,154,56,116,88,157,120,172,27,79,210,129,74,75,204,107,110,67,128,102,42,139,227,212,121,160,129,56,56,156,182,65,182,246,219,102,162,30,87,117,189,72,101,117,170,195,128,164,179,186,160,111,163,55,175,107,201,173,184,47,207,219,48,95,149,81,213,255,50,29,129,41,211,77,80,38,84,56,62,152,250,74,147,42,13,2,93,191,1
 17,2,230,250,55,250,227,74,70,67,181,124,101,38,188,20,88,154,255,112,25,55,238,84,13,180,153,55,146,39,16,40,10,149,195,243,121,148,229,247,126,229,125,42,88,90,105,117,228,94,65,59,4,115,228,178,30,183,218,27,9,129,239,154,180,59,45,209,11,101,199,97,119,42,244,70,215,12,107,119,30,252,80,220,14,239,198,182,85,200,10,23,186,230,186,68,222,199,60,14,245,95,17,67,227,143,254,219,104,94,149,119,43,48,13,168,129,87,252,128,186,157,54,36,234,131,210,219,192,34,55,99,106,78,201,224,185,144,77,99,211,64,189,143,232,30,98,141,230,196,45,53,51,161,35,69,109,21,105,12,176,172,41,213,181,73,37,249,221,40,107,242,145,124,207,49,152,236,167,207,225,94,251,153,228,221,103,54,248,244,205,250,17,32,122,167,23,4,217,59,208,18,221,141,5,42,122,70,198,16,55,248,246,234,28,34,132,255,144,30,223,161,162,228,49,79,195,230,17,158,58,1,36,225,81,136,100,164,231,48,18,133,182,90,85,41,104,43,128,210,239,210,238,242,108,31,52,202,228,106,152,169,120,45,62,110,188,33,171,98,165,74,90,133,54,242,109,
 229,239,57,225,79,115,209,38,39,187,162,252,90,10,230,33,162,136,121,45,238,197,112,153,200,195,204,205,124,136,91,181,82,245,132,77,152,162,197,191,144,92,8,210,0,167,13,134,32,29,138,82,233,231,18,196,163,196,191,231,156,68,59,131,6,66,233,36,227,185,71,35,120,192,169,68,78,77,14,24,241,184,87,65,192,171,67,83,50,121,3,84,25,230,90,151,203,60,170,173,5,148,181,212,190,37,25,240,57,227,140,213,27,199,219,155,156,31,23,236,98,195,191,12,108,232,0,223,22,34,163,240,122,101,29,75,56,205,66,244,205,184,106,183,128,124,201,231,10,41,16,115,135,168,88,172,113,236,137,53,232,166,164,172,142,89,152,40,9,50,192,153,145,195,39,169,218,108,89,106,126,210,66,105,240,92,83,226,20,124,251,33,127,80,35,14,241,145,77,168,227,39,80,241,93,84,81,131,209,14,152,109,200,149,150,112,49,142,207,125,80,141,184,179,234,246,88,247,52,41,99,45,193,146,75,129,29,154,80,191,118,159,107,201,114,122,48,206,250,42,29,115,44,226,191,219,169,18,132,101,247,129,156,109,221,201,59,37,125,55,134,158,152,29,15
 6,153,134,192,185,8,227,8,151,135,23,210,179,16,29,227,42,206,193,39,9,122,160,214,14,113,171,167,137,118,227,158,141,120,129,31,225,192,54,150,204,93,29,58,252,37,99,6,70,181,211,152,248,101,212,41,35,124,229,100,62,240,176,74,19,153,43,233,132,48,208,86,165,164,245,228,162,158,60,145,171,132,22,19,40,54,196,127,133,210,89,99,241,138,236,75,115,91,173,165,189,14,201,251,108,53,200,150,60,208,207,29,35,23,21,30,216,240,44,83,219,224,13,29,153,114,27,173,156,39,139,237,53,158,102,215,187,133,45,32,8,103,162,70,129,196,202,169,179,156,9,8,131,30,139,113,233,39,124,255,34,89,138,235,56,60,245,196,171,136,70,100,38,50,117,131,13,138,140,99,163,168,151,24,183,138,179,13,109,159,230,110,21,38,115,160,233,132,95,229,215,95,4,249,131,224,14,172,184,179,244,135,225,200,151,57,200,86,127,66,12,150,202,7,171,242,43,51,128,197,225,249,131,159,30,74,145,211,6,96,109,0,76,121,237,191,172,12,252,132,185,151,92,68,9,101,59,49,14,42,128,147,172,41,51,194,32,195,210,99,230,111,98,21,44,10,194
 ,195,113,60,39,164,194,70,16,149,81,46,43,71,118,55,139,71,138,171,35,240,54,94,186,195,171,56,80,233,251,58,130,12,141,150,24,252,203,205,94,125,148,65,43,12,224,69,216,151,167,83,208,64,111,4,146,248,96,122,50,40,130,231,13,182,120,115,93,127,109,98,54,89,108,115,248,118,19,130,126,188,216,78,114,252,24,158,189,121,106,101,163,175,182,134,174,3,165,250,33,209,106,214,241,39,161,77,26,151,210,164,37,100,84,169,51,227,255,212,149,255,176,133,4,164,14,239,160,146,185,32,120,10,16,155,137,234,237,224,170,220,245,18,216,209,149,74,198,68,231,220,74,145,66,241,18,114,96,13,71,134,181,95,89,166,100,160,169,180,109,178,231,62,120,201,92,191,208,232,138,72,78,95,195,205,93,75,184,250,223,214,180,128,83,148,156,165,201,90,36,170,146,140,113,67,141,19,69,109,48,212,110,236,244,151,71,2,84,152,106,152,172,76,166,203,216,5,249,213,222,166,192,74,74,122,184,219,231,116,18,211,103,223,92,11,232,39,178,27,136,240,87,81,19,32,84,76,163,156,191,221,78,141,161,148,162,198,221,114,140,209,76,
 243,120,34,241,194,212,54,213,85,163,126,169,27,27,129,184,150,100,222,10,12,166,246,145,84,14,132,90,212,123,195,80,207,101,169,1,181,178,86,48,61,105,195,188,41,43,192,75,98,126,10,9,238,133,177,99,124,231,63,58,74,4,177,120,23,232,37,241,117,32,0,129,132,124,10,250,216,155,235,138,248,221,254,158,44,111,218,74,117,248,128,206,42,71,246,84,167,143,12,62,246,201,26,226,39,200,159,253,61,76,126,119,180,73,149,200,92,164,114,188,248,238,84,61,95,35,188,39,64,159,23,243,216,222,98,121,24,47,249,184,127,193,145,60,138,193,18,176,46,177,169,153,126,212,255,37,17,137,66,48,93,245,251,150,47,96,228,25,233,130,144,204,121,248,121,185,81,221,102,78,47,54,20,51,118,27,62,91,55,209,38,163,94,190,205,75,217,128,170,248,140,224,8,185,135,110,163,137,126,240,155,30,149,252,123,141,215,123,1,156,226,247,141,75,108,93,71,198,141,156,19,156,252,248,88,189,184,239,13,20,78,80,127,242,36,77,231,100,216,14,108,147,228,158,120,76,101,143,125,106,90,39,174,154,137,41,214,114,209,162,144,113,196,
 70,18,254,219,53,167,253,59,68,104,243,223,67,124,18,217,210,223,48,83,215,85,182,97,108,126,163,87,60,149,99,2,252,127,181,70,118,66,194,93,5,241,53,28,23,57,129,210,137,20,99,231,189,221,232,139,91,164,89,172,110,239,29,246,200,93,240,246,88,170,35,108,3,196,120,208,251,118,235,26,221,209,59,16,135,106,16,147,17,136,38,226,245,158,240,189,90,109,244,82,151,244,197,155,32,25,44,194,224,134,66,162,99,254,204,162,227,10,169,195,36,146,61,5,94,132,221,234,39,249,4,44,51,0,235,10,119,70,163,188,26,23,23,52,247,110,87,167,234,92,93,183,32,205,172,102,141,122,158,251,220,102,248,219,118,210,170,6,249,89,168,234,229,160,16,228,125,160,209,75,16,12,125,228,253,219,80,49,124,18,15,208,201,184,176,213,136,52,46,66,215,29,154,118,239,217,99,26,242,55,51,30,174,82,157,17,192,93,52,190,240,105,215,164,193,241,126,54,4,186,160,74,38,223,236,21,192,46,38,28,23,186,199,53,65,232,190,19,26,99,235,126,151,192,215,76,126,111,188,95,186,50,113,185,139,90,254,21,136,243,166,177,45,179,6,127,244
 ,214,239,119,205,189,189,141,206,95,119,64,202,219,10,209,95,3,144,8,102,109,150,144,105,175,3,211,209,29,199,212,79,115,69,158,103,20,245,85,122,197,130,208,232,246,23,244,240,101,120,38,172,34,63,99,115,246,128,177,188,186,82,185,94,62,111,235,110,19,117,110,5,31,53,18,59,180,172,63,93,84,107,35,233,241,21,61,1,64,100,142,42,40,85,232,177,4,30,158,60,57,30,178,50,136,50,144,128,51,100,92,143,156,15,46,87,56,188,112,81,29,51,248,107,178,9,25,122,55,191,198,63,180,214,67,123,4,85,212,222,5,20,241,37,164,229,212,193,109,47,142,203,76,115,228,202,72,212,21,197,103,92,241,143,174,217,200,143,48,206,57,46,150,127,107,163,81,109,21,226,250,120,233,49,36,33,92,47,55,212,23,104,105,74,178,63,137,156,130,33,26,193,34,80,174,22,147,247,103,159,177,204,204,186,130,5,14,86,45,44,24,41,1,95,11,190,40,171,96,69,223,89,243,236,123,39,124,131,253,222,232,224,54,146,15,217,84,248,10,232,87,135,71,132,176,31,136,207,243,253,160,67,11,219,9,9,9,243,53,40,144,76,187,129,123,164,216,45,255,255,
 165,217,111,165,108,62,1,32,42,26,172,189,126,212,61,64,79,137,199,139,99,11,142,23,75,71,7,176,35,14,44,157,122,182,33,20,52,211,47,16,229,150,164,239,230,78,8,150,18,182,226,201,105,133,42,157,7,217,70,35,127,172,246,14,94,112,82,83,14,97,31,172,102,55,107,93,218,103,220,2,201,59,251,157,27,39,105,246,62,226,200,176,219,71,217,142,205,26,205,154,168,247,114,47,214,239,60,169,121,252,63,176,234,146,84,205,212,133,196,52,84,60,193,23,125,187,224,76,122,224,79,22,173,148,175,244,199,243,231,110,87,216,150,179,94,47,192,100,85,79,153,91,180,177,84,47,223,218,167,21,107,246,55,32,233,53,207,82,77,81,222,28,1,193,84,77,51,101,190,97,214,184,11,107,6,192,131,232,43,129,49,194,250,207,13,38,15,141,146,207,237,57,23,131,43,139,198,36,153,82,7,179,59,254,245,13,178,203,121,156,208,84,244,247,7,150,70,132,218,209,150,56,15,237,197,74,199,108,152,9,138,147,249,143,19,174,165,25,21,68,110,61,100,148,104,58,69,193,37,33,139,252,189,3,133,99,82,182,90,141,151,185,212,13,205,164,8,115,124
 ,252,187,40,58,3,38,192,137,113,81,58,80,212,41,32,49,109,75,251,244,232,108,155,109,86,142,85,33,129,81,145,216,158,208,158,255,11,244,114,41,43,24,19,86,215,214,2,243,22,227,22,65,116,167,221,26,183,102,32,14,179,76,134,169,187,176,139,207,174,185,214,164,22,53,222,134,176,103,200,125,122,58,1,170,206,62,205,85,219,24,249,194,65,192,149,34,150,22,151,2,193,205,67,5,15,105,54,136,179,16,146,74,39,14,127,70,195,48,75,91,235,32,10,17,6,166,185,79,139,122,161,119,10,128,14,169,133,191,61,43,218,156,104,8,242,93,137,22,130,162,11,144,209,140,175,223,196,141,79,7,135,67,216,89,78,251,102,189,174,57,156,24,100,205,145,188,97,15,64,166,225,222,14,92,61,58,80,44,75,22,242,65,10,247,5,195,21,36,226,141,131,52,71,230,98,109,132,127,219,247,217,126,116,241,168,5,87,54,154,38,227,196,144,185,85,32,7,182,192,240,78,111,202,249,125,133,169,103,37,31,126,216,44,84,101,6,102,228,84,176,81,205,144,21,102,87,87,209,222,23,100,180,191,181,142,159,252,227,227,130,42,55,100,190,101,209,114,6,43
 ,226,95,244,106,165,12,168,139,53,105,0,172,1,93,10,62,68,111,84,11,69,88,215,61,76,140,74,255,103,99,161,134,36,137,7,117,225,38,163,146,82,65,60,252,89,43,157,213,85,190,147,1,49,146,37,26,59,125,124,75,227,118,179,200,75,118,3,198,165,207,245,89,62,98,201,44,123,72,173,234,179,9,159,215,242,56,155,239,233,13,99,101,46,150,154,142,70,221,114,174,148,179,6,121,171,165,52,157,104,178,87,121,33,43,182,207,58,139,23,239,232,32,118,136,173,10,179,50,177,87,35,3,146,5,69,28,50,146,187,48,117,76,234,106,10,1,169,200,156,254,213,138,155,13,210,85,192,161,142,97,91,222,138,206,108,17,97,79,206,43,222,166,144,157,212,58,83,20,68,249,95,179,248,232,191,223,139,76,158,101,99,56,181,127,150,143,229,133,116,91,131,49,123,14,160,90,35,201,5,28,110,64,23,106,32,49,142,12,175,146,46,57,95,252,183,248,80,183,35,149,86,85,79,223,54,201,247,40,119,172,70,28,61,139,105,219,127,214,11,1,226,225,182,64,158,90,136,201,121,211,173,164,178,12,33,117,152,37,56,98,194,155,162,112,75,132,30,112,34,124
 ,99,250,121,224,190,209,46,228,113,159,153,187,156,209,198,20,124,125,241,158,32,69,233,141,235,99,223,168,44,199,239,117,226,239,79,150,59,111,106,218,10,24,38,80,247,244,155,45,76,165,70,102,156,123,201,187,81,203,207,99,88,212,103,11,224,224,112,95,74,76,52,100,80,48,98,236,183,161,246,167,240,146,178,86,18,214,66,70,181,22,220,144,242,152,134,18,234,113,16,216,45,240,253,206,75,69,0,162,199,154,14,73,201,92,179,65,140,175,243,137,182,118,184,206,191,218,37,248,56,170,120,93,156,96,60,11,176,171,238,232,90,128,109,17,46,62,80,84,83,207,188,99,213,113,195,75,105,150,90,64,224,69,162,78,222,111,148,10,169,70,193,192,122,148,198,151,172,210,188,157,132,220,126,231,236,168,223,103,86,182,200,245,114,116,156,77,10,103,142,100,41,248,42,95,76,242,111,58,48,139,137,93,175,216,136,175,216,149,46,243,229,109,92,71,112,45,54,15,160,233,105,217,163,88,101,177,167,51,159,97,102,121,111,150,10,131,35,158,207,181,90,76,171,202,153,198,208,142,120,195,83,172,174,113,72,47,26,7,115,157,2
 3,96,118,66,8,104,23,36,38,136,241,12,198,160,233,170,104,224,13,55,68,254,107,143,100,135,81,44,194,69,13,106,146,252,233,217,72,18,213,24,247,222,141,45,31,218,109,180,190,20,177,26,11,122,82,0,18,8,146,248,118,67,48,20,142,125,30,128,140,232,32,178,5,218,101,106,215,91,156,28,252,214,139,42,242,205,191,222,80,126,134,63,138,222,114,58,21,134,200,14,129,153,98,98,155,190,118,27,0,29,233,136,210,114,24,90,97,134,218,145,69,224,106,117,200,188,107,99,12,210,9,174,170,75,192,226,109,196,89,132,66,173,85,55,21,85,89,234,214,81,221,74,154,221,203,167,55,35,59,36,214,71,106,221,222,137,84,228,175,198,117,195,68,238,107,159,44,64,27,157,102,200,103,247,148,238,247,123,206,59,117,143,40,253,101,163,93,188,197,220,188,252,134,17,100,30,23,79,160,88,89,105,175,243,168,74,155,32,228,176,215,95,152,112,117,234,156,149,9,73,176,218,171,75,184,80,144,194,16,37,72,186,213,41,95,253,251,33,11,12,224,231,141,75,122,4,201,68,5,249,15,105,117,226,171,166,52,90,155,42,249,92,161,190,126,84,17
 3,133,33,46,14,160,221,209,90,216,253,141,34,38,154,82,203,15,198,165,163,100,181,181,253,184,140,207,161,201,30,52,167,23,242,93,216,136,125,78,93,77,99,233,212,233,176,40,161,151,204,166,149,21,60,9,4,120,98,165,164,41,200,137,228,161,12,124,76,80,61,203,80,63,223,168,205,176,208,120,44,3,40,105,60,245,93,154,32,119,100,62,75,167,222,165,248,112,146,156,6,241,83,26,149,89,232,148,79,2,125,89,180,12,24,239,29,203,185,61,28,113,206,170,150,158,250,173,63,183,109,103,145,48,62,112,11,208,19,205,130,235,254,70,40,148,110,177,159,159,36,197,228,135,9,75,56,236,29,57,7,110,171,244,148,91,236,243,22,87,244,28,100,146,147,79,40,18,62,189,225,19,106,32,52,131,130,7,106,94,178,104,193,252,126,29,162,49,175,84,213,241,77,170,14,38,181,204,53,110,41,84,174,46,23,180,171,135,207,84,229,31,99,38,205,111,229,156,14,58,28,225,205,82,30,65,250,111,245,156,139,255,111,114,142,26,166,65,50,245,216,198,0,169,135,204,93,37,96,118,21,148,34,116,200,86,173,171,207,229,131,66,15,16,204,209,79,110
 ,180,59,77,248,138,66,158,240,74,166,97,103,41,254,114,218,19,226,244,12,4,91,34,58,211,98,162,187,138,177,208,183,28,75,230,116,68,18,55,3,147,218,243,179,115,86,182,152,60,16,219,5,62,240,80,218,215,225,207,214,104,32,18,152,160,2,255,111,109,119,80,250,8,10,255,66,176,6,20,30,41,12,134,20,113,251,183,34,91,146,56,78,13,4,66,61,77,80,90,113,174,235,72,231,213,128,89,75,91,191,243,195,47,181,33,82,156,128,84,247,104,220,87,225,50,48,252,66,101,51,156,185,108,238,209,27,251,32,210,153,117,198,127,46,176,26,222,14,91,3,202,38,54,147,254,55,26,29,19,194,71,19,207,214,69,205,176,191,94,126,154,142,111,132,163,121,165,106,130,254,8,99,141,24,182,81,192,16,220,111,143,75,250,168,101,42,47,126,32,203,45,174,39,75,7,195,113,224,71,216,31,183,175,246,94,247,143,237,202,99,7,6,75,248,51,206,113,186,17,242,28,24,51,234,92,157,179,113,42,85,70,128,90,127,105,105,93,236,222,143,58,20,108,253,163,202,36,152,73,125,197,110,20,118,146,194,42,9,125,97,127,126,132,170,148,69,179,138,69,6,133
 ,92,24,167,124,152,171,83,206,77,179,165,203,121,41,114,182,61,61,247,190,100,90,32,18,8,127,179,69,158,33,49,230,28,183,101,17,119,41,152,94,79,73,133,112,107,49,33,208,199,19,71,92,90,43,118,206,129,64,250,36,151,237,63,124,91,146,224,116,186,12,25,32,153,47,111,110,255,25,111,183,90,217,17,52,57,104,25,117,157,115,195,66,12,148,92,18,144,196,95,231,166,126,172,181,11,179,163,95,124,240,188,237,132,187,168,36,180,84,196,20,10,164,155,118,83,166,176,51,73,162,195,148,242,224,140,210,103,44,146,242,240,125,96,23,233,227,136,106,153,142,33,103,199,116,181,123,104,140,98,80,238,144,48,219,62,89,233,77,97,143,118,93,125,248,130,205,108,118,124,128,217,220,233,251,120,87,120,94,75,111,142,66,64,128,186,149,61,30,201,31,100,128,69,164,71,226,180,193,154,56,89,61,134,149,98,177,214,104,88,32,9,55,147,75,97,164,96,45,41,81,168,186,202,35,190,62,1,134,111,231,221,238,250,217,122,150,82,32,190,76,78,198,30,64,234,69,193,184,116,47,83,242,67,141,202,34,209,51,255,132,249,136,3,108,239
 ,45,104,255,24,92,219,163,64,95,167,227,70,169,168,207,137,196,85,204,0,236,203,113,157,101,18,248,173,216,245,152,67,21,176,56,54,56,179,124,180,13,5,166,78,183,36,3,156,158,206,213,44,253,155,254,174,143,240,43,234,144,9,98,201,50,161,204,113,157,121,85,14,170,187,87,89,183,186,119,193,90,125,140,144,187,48,1,195,88,255,47,74,2,219,29,52,193,186,63,50,138,81,171,117,131,220,15,170,152,160,80,103,237,246,208,149,167,164,48,133,116,233,225,115,153,93,181,142,147,132,122,80,15,249,131,34,137,0,123,88,170,4,164,209,155,204,78,42,158,205,210,162,30,200,254,126,85,138,104,67,207,178,36,199,76,61,117,76,245,83,247,174,149,0,20,244,221,18,255,35,50,62,239,153,186,119,47,139,194,97,20,9,225,220,172,178,197,25,212,181,213,51,30,25,32,227,49,30,62,181,52,74,109,95,81,240,192,165,204,174,194,74,163,79,253,148,121,246,240,22,223,95,254,15,254,18,74,9,156,217,141,147,212,13,109,243,242,22,155,56,88,139,76,83,29,111,1,128,195,85,21,113,163,127,190,162,112,164,234,3,24,111,76,222,179,79,7
 9,215,12,70,219,83,162,24,118,54,253,133,27,201,228,59,65,176,152,13,118,22,49,186,177,184,79,220,148,102,154,103,209,26,101,34,249,139,205,5,207,209,173,89,183,186,62,164,147,186,190,111,128,3,78,30,226,182,244,136,17,76,242,165,186,255,111,42,124,5,244,134,61,131,175,102,251,177,132,203,42,42,152,185,121,238,202,126,52,183,148,44,114,63,240,223,172,250,201,214,191,185,35,252,11,10,101,82,26,13,215,192,100,103,178,83,16,200,226,123,60,104,203,156,124,226,122,137,74,54,12,189,198,206,15,222,119,224,55,102,249,26,108,175,179,210,112,153,46,235,240,22,151,65,106,124,103,223,137,67,14,52,52,166,148,64,59,151,239,177,113,118,65,168,114,22,110,255,174,187,163,158,149,6,105,99,56,167,191,3,220,93,124,239,149,239,47,155,39,93,133,109,121,87,53,200,164,231,4,56,212,188,131,152,126,130,96,68,252,137,43,76,115,195,246,121,9,190,250,214,44,191,225,73,103,74,244,21,82,221,227,27,15,99,191,16,131,142,135,132,50,63,140,81,150,10,56,151,162,170,167,10,169,21,254,179,92,245,111,112,146,143,
 173,116,73,246,26,167,18,95,149,93,40,226,179,194,33,142,19,201,167,233,2,103,221,173,43,138,129,129,14,174,219,241,21,251,123,188,231,53,106,81,14,132,49,120,131,59,142,76,106,27,220,157,97,200,23,252,160,142,94,222,130,152,229,103,169,113,167,49,225,228,150,33,5,220,43,85,170,22,111,124,228,211,157,216,212,179,229,122,123,44,251,193,209,167,197,4,86,84,29,43,170,130,198,83,12,123,61,10,121,163,141,203,176,96,213,234,27,33,145,216,103,91,135,85,248,140,246,138,191,254,175,149,150,71,145,85,78,73,206,147,117,2,60,113,208,156,87,237,176,116,174,209,116,252,145,123,150,253,60,220,82,125,13,121,76,203,194,71,33,96,117,102,208,101,143,201,212,140,78,7,225,2,247,75,189,210,115,205,20,221,20,170,110,131,58,188,154,123,177,64,149,188,206,247,169,241,160,57,90,100,32,82,95,80,26,109,7,232,132,22,53,252,52,216,139,211,65,44,47,195,194,62,117,70,250,140,71,167,225,204,234,33,239,28,172,156,137,59,32,123,73,23,143,40,161,118,179,92,228,158,99,133,143,124,185,149,65,198,75,187,170,54,20
 3,213,40,197,243,213,12,146,58,224,162,1,101,238,73,13,218,158,110,167,182,28,9,21,237,22,68,179,29,132,213,250,228,62,175,252,96,89,118,211,33,186,52,106,143,8,166,99,142,140,71,188,70,47,126,90,10,226,191,20,34,194,125,60,107,212,224,49,115,45,10,9,156,200,235,128,139,18,229,149,44,72,210,254,13,209,223,198,126,92,60,22,72,106,173,10,108,147,117,217,217,251,82,48,130,9,182,250,64,163,205,109,33,111,241,119,49,41,41,49,86,1,48,72,27,96,86,70,15,255,171,76,149,208,233,224,31,112,61,123,171,13,135,125,212,59,1,98,250,114,25,224,52,136,209,201,249,218,251,253,220,166,141,13,71,10,144,21,46,164,2,172,39,69,152,252,214,101,173,191,20,158,248,16,4,156,180,70,249,161,204,170,139,254,166,238,70,132,235,68,249,112,39,155,156,64,23,19,92,46,6,253,102,18,212,46,85,163,166,213,64,26,137,181,40,244,221,199,118,64,253,53,73,45,178,7,53,172,93,36,119,149,29,223,34,47,116,81,114,247,201,68,150,108,144,254,193,170,205,206,152,25,214,216,210,239,123,193,90,114,236,162,1,250,97,74,195,223,180
 ,121,248,126,63,131,199,190,102,154,116,23,226,31,93,202,162,160,244,196,49,25,66,109,238,139,241,166,39,5,142,228,133,228,171,24,38,160,164,202,225,133,104,182,209,1,213,115,75,9,52,252,198,117,239,42,114,5,95,187,162,38,118,54,230,79,231,90,53,100,96,76,155,92,114,248,165,28,26,230,137,192,97,174,125,230,56,179,10,158,202,139,129,183,192,80,61,112,148,102,35,2,118,202,201,214,28,194,177,160,177,115,162,90,229,10,48,220,128,44,220,108,169,221,23,3,54,169,53,109,51,213,93,80,217,199,226,141,106,187,204,141,98,203,245,23,164,246,24,177,230,104,145,11,160,182,54,108,127,225,231,135,181,128,41,210,87,252,206,104,35,184,9,27,88,28,203,24,2,39,109,138,49,59,113,202,89,90,231,68,231,64,142,183,212,39,135,146,180,35,241,155,46,208,193,92,20,242,141,78,36,69,176,239,40,222,249,239,168,136,84,245,69,171,35,175,22,209,47,40,122,18,250,135,64,168,45,231,229,255,145,51,238,188,210,229,243,215,190,91,154,131,7,226,17,182,188,151,70,25,7,234,34,25,248,231,161,83,3,251,24,125,4,168,196,243
 ,45,226,176,46,243,65,25,241,177,240,78,127,216,75,205,247,221,132,73,51,152,140,30,80,241,98,124,105,49,12,200,206,181,238,23,31,14,110,55,63,241,73,57,254,129,83,53,211,225,198,112,251,231,201,211,109,5,204,189,49,32,215,33,1,62,77,75,19,81,78,201,207,120,85,152,168,141,11,168,16,68,8,115,22,246,11,215,49,244,219,209,150,248,117,235,30,49,188,126,134,87,105,194,131,134,85,32,238,251,37,152,255,218,92,47,75,220,198,146,166,127,61,83,38,165,201,203,3,19,240,159,141,135,123,131,120,55,78,136,90,145,204,79,202,207,33,220,239,15,254,71,249,206,20,5,20,141,138,171,220,93,93,184,200,139,132,24,96,48,177,65,5,72,246,145,19,57,48,75,121,159,82,72,175,7,248,71,56,108,244,11,115,187,209,150,33,183,26,147,83,105,218,63,132,252,29,8,15,176,224,248,191,230,192,210,29,149,30,174,193,11,253,42,153,47,127,42,28,145,64,101,209,46,226,80,18,140,207,12,103,182,56,65,188,111,74,235,65,185,4,130,121,239,81,243,68,199,244,128,74,250,105,244,151,252,223,32,216,232,215,46,161,50,164,170,149,22,234
 ,170,202,128,247,171,203,202,109,17,78,158,219,174,20,148,19,39,6,71,216,9,238,211,80,73,140,120,215,101,150,12,216,44,55,201,89,84,62,231,37,21,132,34,13,24,155,152,74,112,76,244,186,2,10,247,141,135,253,141,73,247,183,184,115,59,190,9,209,47,228,15,103,0,190,58,232,78,182,212,5,157,243,178,194,167,158,84,75,156,135,213,200,93,235,52,30,20,239,121,94,120,252,164,168,241,139,66,36,135,180,107,120,48,81,191,26,197,14,135,13,136,84,8,219,6,192,147,124,97,226,169,162,53,141,54,112,113,166,137,154,72,255,36,80,128,17,217,48,22,131,229,234,239,207,247,69,76,211,135,241,181,134,243,73,216,19,101,219,145,165,137,84,66,82,35,20,227,173,188,67,172,126,244,46,157,56,248,97,158,61,46,223,101,157,160,198,115,17,175,56,132,106,105,234,208,38,125,154,63,242,236,4,62,161,149,72,74,236,194,159,167,231,103,66,14,115,116,218,20,156,245,146,211,126,161,183,222,217,116,182,18,121,145,81,214,22,99,8,21,238,36,1,190,241,156,88,11,181,182,90,121,177,132,68,127,60,55,107,151,131,9,158,174,42,27,226
 ,30,214,51,184,130,56,97,188,206,7,158,142,68,216,119,73,133,222,234,126,83,17,117,213,249,223,238,138,209,160,106,2,108,172,44,191,70,177,180,123,106,226,106,82,128,68,228,226,80,186,102,215,166,188,214,241,204,174,165,173,32,245,204,17,0,82,120,123,8,33,59,215,80,186,116,218,111,54,71,62,28,250,116,111,72,197,226,224,247,201,181,52,72,94,130,8,154,152,57,121,111,154,236,54,229,52,205,185,196,180,165,75,56,122,157,67,247,255,162,203,134,220,135,231,24,95,73,124,73,209,130,141,134,100,165,176,106,35,183,78,171,154,199,38,44,154,77,228,213,155,234,119,160,55,252,68,135,234,22,205,199,110,243,213,179,157,237,188,58,223,51,162,109,9,74,89,42,22,182,84,182,10,4,169,217,196,128,248,3,176,200,181,240,41,37,75,148,220,125,103,247,113,165,117,190,8,103,247,244,121,121,188,130,123,51,225,180,107,59,68,228,223,230,34,45,19,104,26,35,21,100,238,244,219,93,172,54,221,124,51,159,163,40,179,135,14,74,59,222,205,254,50,75,113,42,231,239,50,71,56,31,247,84,76,180,191,54,26,205,61,227,160,13
 9,142,114,8,255,26,12,199,167,185,240,49,194,139,253,40,54,194,4,32,39,188,183,134,183,132,3,61,131,5,113,169,172,175,149,115,154,181,167,58,151,136,118,60,16,46,172,71,36,111,214,7,67,188,128,69,253,150,252,198,5,141,213,37,152,213,147,242,56,180,1,190,60,242,176,51,94,145,254,183,149,195,57,133,139,244,33,237,179,245,16,169,98,216,187,109,10,230,45,109,80,194,38,141,243,109,189,72,51,25,146,119,207,255,38,106,26,250,3,214,51,158,143,25,166,231,235,249,168,129,226,180,115,229,159,47,185,87,186,248,252,54,245,171,187,18,122,125,0,100,186,139,246,135,179,19,122,103,114,65,30,28,107,147,45,213,71,153,205,35,191,151,240,47,186,145,81,253,89,217,42,234,212,168,26,172,218,254,63,132,249,149,44,113,206,237,226,32,246,199,59,235,229,67,70,89,233,105,75,56,39,53,9,119,179,95,96,253,169,131,77,61,62,167,179,146,9,126,98,73,218,102,219,24,162,214,119,148,249,111,247,227,90,147,17,140,127,113,147,176,123,90,141,198,46,239,91,226,201,81,250,235,175,139,104,165,77,151,86,80,89,122,213,12
 ,246,227,144,208,118,63,224,205,58,17,54,207,225,119,252,74,65,201,5,33,34,100,243,126,93,198,194,100,1,109,190,248,204,170,161,53,135,171,17,34,197,156,115,244,44,116,94,171,116,209,103,28,146,212,158,230,136,114,253,37,42,76,155,171,222,136,127,98,179,185,62,254,91,180,171,38,255,222,248,238,236,226,228,10,77,229,61,3,126,27,69,170,157,139,13,128,1,182,48,39,81,133,19,29,58,250,86,80,175,199,48,113,48,201,207,176,214,37,192,115,73,40,111,208,123,59,208,6,240,84,50,55,235,215,68,204,241,109,208,250,134,185,235,146,59,175,63,51,114,211,53,14,149,32,5,170,211,245,117,122,116,192,255,224,168,136,4,219,53,182,212,23,176,233,82,144,115,167,93,18,112,119,177,138,35,221,209,38,70,239,128,102,210,215,55,229,143,148,1,15,158,61,49,92,52,133,103,108,30,255,185,15,25,85,240,62,139,165,157,15,21,141,144,124,26,168,176,47,215,34,224,228,114,71,214,183,90,6,93,213,159,35,33,160,142,161,2,87,23,117,248,22,170,140,141,107,39,21,36,122,131,136,19,179,209,135,220,10,239,2,204,233,162,136,25,
 204,190,182,67,38,10,95,167,222,195,204,104,91,166,32,231,106,28,144,177,224,76,47,129,241,96,247,112,203,152,147,180,124,168,150,65,188,239,131,5,185,132,15,124,222,42,59,197,179,226,228,20,1,252,145,212,66,227,188,225,149,69,214,147,200,4,233,149,161,195,251,211,49,201,196,128,105,153,186,193,148,26,43,91,158,126,184,9,25,182,215,93,94,227,147,165,59,74,113,102,83,71,114,241,217,144,70,157,206,209,185,201,122,80,32,78,172,23,29,120,124,163,242,90,144,113,251,206,153,144,130,193,125,98,137,10,40,13,109,88,143,173,109,31,144,208,68,21,54,255,225,208,243,180,160,29,124,8,102,224,61,130,158,155,178,199,64,14,176,242,242,93,168,185,111,163,11,45,82,206,17,95,114,46,250,37,132,254,249,127,48,78,172,146,167,43,53,173,158,146,169,233,206,137,227,11,70,232,13,5,162,220,246,159,15,8,205,250,126,175,193,25,49,167,25,218,161,39,126,178,183,4,140,84,55,156,58,73,152,174,149,187,179,39,255,245,87,74,158,177,22,97,140,92,25,197,98,119,84,208,6,83,175,230,161,35,38,151,63,127,251,66,26,84
 ,7,48,75,78,89,254,227,35,181,89,19,223,223,221,127,42,0,33,111,116,14,5,46,204,164,200,243,122,191,179,84,196,2,72,170,76,49,157,134,76,128,128,205,10,114,131,53,109,150,117,164,34,252,43,174,24,33,181,41,137,202,15,85,86,47,211,245,85,68,230,169,168,81,178,184,77,120,212,220,148,82,185,236,67,47,223,153,214,250,254,75,178,236,1,127,69,110,38,102,102,123,173,253,18,181,20,81,85,120,205,222,247,250,31,134,2,9,205,48,239,18,140,54,251,136,236,113,99,8,96,124,183,159,159,139,27,93,162,116,140,12,72,60,202,237,199,251,196,191,47,98,115,233,241,235,178,195,116,136,135,231,3,188,170,206,110,185,128,213,52,23,172,12,3,118,173,96,105,247,169,231,87,131,248,212,145,46,66,118,3,36,160,233,96,138,176,131,65,27,133,162,228,177,56,235,85,94,125,174,123,100,36,55,148,221,31,57,200,136,184,62,89,142,91,139,33,172,138,200,2,60,208,22,96,119,165,51,168,199,11,69,187,111,112,149,111,0,19,21,193,20,104,177,179,56,229,174,10,195,188,145,173,177,217,58,114,80,50,73,255,239,64,232,153,103,114,20
 6,224,245,211,157,6,26,133,49,96,228,116,158,22,118,27,101,72,223,109,216,22,52,197,59,151,202,131,20,180,241,15,83,178,61,45,31,243,76,28,50,88,174,42,158,130,157,43,38,123,131,30,70,48,125,144,187,217,19,77,218,234,191,139,35,164,88,194,221,59,241,116,192,219,71,90,137,27,86,76,15,250,196,29,168,61,17,246,134,70,112,172,206,5,2,214,132,42,55,195,237,184,214,171,117,166,179,194,146,93,164,220,149,245,58,143,150,35,181,186,222,171,153,142,24,23,87,68,74,73,144,215,134,45,110,86,149,165,151,174,235,79,20,14,52,180,193,52,53,124,188,19,37,66,23,19,98,199,163,212,150,139,57,48,80,100,8,245,58,72,4,144,23,124,42,205,159,55,151,40,122,90,66,165,123,158,18,113,144,204,211,233,26,108,218,125,221,81,179,104,67,176,47,68,191,20,212,187,225,70,162,126,117,142,205,3,15,213,224,215,208,100,235,36,126,38,3,189,53,24,51,235,0,1,12,201,35,118,12,1,186,141,118,217,58,176,219,221,18,189,133,92,143,80,102,43,200,232,177,156,51,84,177,247,25,180,105,72,161,7,219,244,25,188,117,124,134,82,109,2
 12,81,154,82,159,187,243,96,103,70,200,170,162,143,133,76,19,93,131,86,251,51,87,177,91,130,249,157,42,123,40,19,148,225,253,202,76,39,139,216,37,33,193,246,11,164,216,173,88,226,133,114,18,103,248,154,145,53,109,41,223,73,223,112,238,182,219,204,65,252,196,164,115,246,192,232,9,63,9,207,196,95,131,92,228,210,77,166,108,27,46,29,42,46,66,170,216,156,63,173,170,5,116,29,193,84,100,181,3,82,115,3,78,163,180,197,208,138,123,232,166,187,42,235,93,192,166,1,187,151,246,127,250,182,158,161,23,159,43,10,187,231,158,226,239,254,155,38,185,127,18,37,59,5,33,86,129,116,202,1,65,55,91,19,107,85,96,30,23,76,243,199,168,114,190,128,178,117,39,58,30,54,63,144,185,70,21,58,94,31,224,69,200,200,234,192,149,208,227,197,220,113,5,87,199,253,94,106,88,12,171,103,242,2,106,174,172,97,163,169,149,88,201,231,64,243,127,61,211,185,164,181,248,106,69,122,236,50,235,134,17,178,186,81,94,154,101,200,98,221,135,236,109,224,12,200,239,226,11,181,198,103,166,251,164,94,131,169,126,214,234,17,9,66,75,83,
 189,222,200,197,38,187,22,118,175,172,166,249,7,238,235,82,16,214,211,154,169,208,129,64,12,237,213,219,246,130,199,117,222,135,86,127,214,223,129,10,89,222,11,20,174,122,105,36,119,100,106,144,110,189,166,190,216,109,149,245,212,234,69,114,13,222,11,207,76,35,202,34,61,178,7,24,66,212,65,106,74,14,68,42,197,144,227,248,201,63,40,154,222,46,232,213,79,230,188,160,209,24,99,179,172,23,220,119,152,7,170,118,174,131,231,137,154,248,101,229,210,68,69,105,217,100,50,112,76,86,212,0,16,45,6,36,91,23,145,68,81,37,231,159,242,238,86,137,152,94,152,167,75,78,94,52,49,13,47,15,12,83,227,218,141,214,96,125,132,225,76,219,237,48,222,44,130,67,1,196,239,34,99,222,116,123,39,187,59,240,109,121,152,192,122,2,37,176,38,10,215,195,159,180,149,197,127,249,115,139,147,166,75,133,145,108,168,31,1,124,31,129,26,121,154,77,96,161,184,232,124,245,172,29,169,130,173,60,129,137,37,46,3,248,160,164,57,120,51,76,59,65,131,98,222,228,45,79,1,35,126,34,61,240,232,231,80,67,92,153,134,143,28,107,230,77,6
 9,117,8,164,215,211,174,60,76,199,245,254,139,175,252,91,231,233,22,178,190,91,64,54,45,65,158,255,111,57,146,137,220,117,163,34,52,7,216,167,161,5,101,195,7,248,138,222,21,133,1,26,154,124,251,28,154,230,232,93,177,156,17,77,36,118,186,157,72,91,102,255,121,101,1,70,251,43,19,22,36,150,83,233,70,181,250,86,242,167,48,49,103,81,122,36,14,77,21,82,203,72,253,125,144,102,44,18,181,179,75,24,128,156,89,37,156,165,138,40,71,9,160,30,43,71,250,84,11,123,164,9,5,129,250,156,206,57,25,90,169,56,69,161,32,213,58,187,132,69,103,1,112,18,243,169,214,5,120,111,217,250,45,47,189,14,73,60,73,25,203,233,240,87,99,218,66,134,230,31,73,61,223,187,105,63,136,8,153,141,160,24,142,59,195,26,86,145,178,78,72,149,195,222,48,99,233,91,96,58,14,110,127,14,199,168,244,73,57,201,167,182,245,186,217,92,204,72,80,96,224,136,53,113,47,146,172,72,63,93,102,50,136,9,215,78,57,113,160,224,192,173,46,142,240,180,204,37,237,144,24,81,35,216,54,17,39,109,125,150,224,1,92,155,76,33,246,128,230,42,224,107,219,
 202,160,244,116,216,132,47,218,41,41,113,177,36,39,8,238,15,49,94,63,162,91,111,36,6,238,152,123,56,54,237,27,229,142,241,204,211,218,186,197,223,41,165,153,97,5,215,119,188,79,57,167,4,202,23,188,193,77,170,7,127,173,186,188,221,189,162,58,83,208,73,242,26,3,96,125,245,229,97,97,158,227,32,204,177,134,245,120,35,147,218,144,182,55,107,159,3,132,209,227,132,158,114,60,3,66,58,100,65,61,235,102,192,220,36,138,20,229,239,6,49,97,235,10,131,16,178,252,161,249,93,120,16,76,253,192,197,62,198,195,38,87,160,36,109,27,97,140,156,239,220,55,206,220,73,169,77,17,43,69,37,220,155,183,152,3,143,199,129,99,112,83,173,128,219,154,39,47,64,6,233,99,73,18,108,66,131,128,125,196,118,247,72,180,161,54,132,154,188,1,249,112,92,33,77,231,99,144,43,201,76,153,152,218,89,209,214,28,113,221,105,60,163,97,34,166,246,140,213,70,122,248,179,152,177,125,10,146,138,96,99,117,69,112,198,250,184,30,139,8,73,145,234,179,34,126,202,118,109,119,27,204,30,67,214,114,38,211,113,8,204,49,97,97,133,139,16,152,
 18,30,223,136,151,181,106,110,226,244,180,173,63,61,225,61,75,186,212,195,18,120,22,56,174,69,124,145,226,203,110,210,200,90,213,137,203,2,16,148,165,57,147,196,153,218,201,151,200,54,154,133,149,144,194,139,240,124,77,135,107,11,234,246,27,134,124,32,26,57,249,106,190,117,49,91,138,247,79,41,243,254,225,222,217,4,62,28,70,175,198,191,29,226,242,186,93,66,241,147,203,221,208,229,168,132,44,77,61,168,252,45,178,85,146,88,178,66,31,14,106,170,222,232,69,36,213,65,34,234,16,160,25,159,216,0,150,186,114,11,57,10,65,198,209,94,105,89,4,38,153,201,119,223,151,96,118,151,71,90,189,50,56,234,106,114,132,199,193,118,234,186,128,237,10,79,16,169,255,90,52,190,27,122,42,234,178,35,0,255,24,226,125,241,49,104,202,41,77,185,102,1,23,113,225,69,125,239,135,79,63,197,103,243,34,75,241,12,43,43,45,205,57,205,246,237,235,6,48,224,69,171,90,193,221,128,20,229,245,42,53,136,30,57,129,144,2,155,29,123,237,29,196,66,16,228,55,154,124,243,120,72,116,50,111,10,135,91,222,73,227,174,74,237,250,94,2
 22,162,185,51,202,2,228,16,184,251,9,223,201,70,8,218,113,212,136,117,30,74,247,34,48,108,247,177,19,161,228,100,213,97,234,2,234,208,3,115,121,18,209,60,140,163,170,252,158,72,255,25,83,131,17,172,60,34,40,45,221,82,79,245,150,102,245,129,84,105,147,135,195,23,125,195,97,208,96,194,28,130,74,83,188,77,201,68,99,196,177,218,145,183,68,69,6,30,51,159,220,36,100,149,98,243,65,157,44,152,9,1,163,144,81,115,135,170,62,77,16,89,235,157,116,97,185,80,20,161,228,120,100,4,205,205,163,80,182,147,209,206,114,186,167,76,185,16,0,184,95,110,224,222,51,161,27,226,47,117,97,90,40,3,228,251,138,147,241,108,79,105,128,11,34,216,143,99,255,214,213,18,82,4,179,147,204,252,158,154,41,159,183,162,169,103,177,58,116,99,191,94,46,142,79,40,58,228,219,181,61,162,148,162,11,157,0,142,131,98,227,225,71,245,37,254,25,151,173,108,67,101,193,13,179,67,135,176,31,137,159,170,203,69,141,5,77,189,82,20,117,241,247,136,4,205,93,5,239,237,149,40,6,24,96,126,163,41,150,20,11,76,189,89,213,246,16,165,87,250,
 112,226,192,211,170,46,57,73,133,214,141,2,106,30,217,42,54,115,223,18,77,147,249,87,62,219,173,249,6,57,21,115,38,84,41,35,229,90,133,175,139,98,20,198,115,58,142,68,210,199,190,111,169,209,237,93,152,70,101,142,152,119,206,114,99,78,41,221,250,165,119,6,214,18,156,211,214,190,113,27,36,112,81,144,50,69,234,165,143,183,135,221,22,116,90,183,248,246,108,206,218,141,27,30,30,146,209,237,160,52,128,126,203,136,101,62,206,10,56,73,167,83,228,53,121,155,58,153,4,76,218,153,197,89,172,158,118,54,13,32,113,68,12,84,50,242,251,217,198,197,233,132,3,71,253,57,176,131,118,162,239,31,233,214,152,17,130,113,229,218,64,202,3,119,227,160,21,32,253,135,243,12,216,172,22,189,202,240,159,118,4,191,145,16,21,55,142,133,160,15,169,151,172,50,57,82,174,120,170,250,74,205,103,46,99,35,45,199,5,188,128,14,122,150,139,247,186,91,230,95,168,162,33,26,54,209,127,114,85,5,64,240,105,255,182,196,6,238,171,162,136,49,221,14,61,74,0,151,164,165,131,58,63,235,4,33,35,205,63,245,179,44,226,43,165,105,185
 ,220,146,14,144,236,169,239,25,134,87,8,215,10,132,213,70,15,119,1,48,77,90,231,175,21,3,80,4,210,146,47,163,90,248,43,14,8,197,32,9,32,192,69,102,191,25,118,194,124,18,246,26,73,106,44,12,105,39,232,9,154,122,231,166,182,162,165,116,167,127,36,178,142,254,134,93,186,249,175,249,47,238,55,91,63,250,54,42,193,201,9,22,36,142,24,67,56,163,105,84,225,239,39,244,65,146,228,61,75,20,131,78,78,26,33,139,108,129,242,50,64,39,90,254,105,47,114,217,134,82,60,3,227,163,199,140,227,32,88,147,82,1,192,177,115,220,147,6,4,190,247,245,10,176,129,63,11,211,71,143,111,28,113,33,236,128,44,31,184,136,208,131,247,201,87,241,37,168,176,36,184,197,180,12,153,132,48,34,30,238,42,65,228,255,34,208,245,118,159,69,220,171,150,191,148,208,5,44,192,6,35,90,27,250,82,89,145,93,135,246,136,215,196,221,164,128,45,173,11,43,185,166,228,37,237,163,224,83,100,205,10,102,220,97,195,161,15,27,220,155,172,83,186,183,65,176,146,132,248,90,83,15,204,17,11,49,3,183,166,78,196,118,169,247,91,62,195,131,221,44,248
 ,188,189,236,75,128,56,146,191,183,177,162,71,125,104,149,220,149,133,31,28,39,194,135,62,222,37,67,175,181,108,178,191,50,120,104,116,230,21,234,188,6,248,221,44,57,46,46,184,195,180,216,208,236,126,84,212,119,56,243,37,159,238,169,187,227,177,224,82,203,146,138,116,100,0,205,237,42,73,131,106,250,232,170,208,175,64,181,123,202,182,147,80,48,78,51,247,64,116,50,132,135,28,109,150,213,125,77,109,184,196,101,142,213,21,233,91,62,190,9,50,54,56,199,140,50,212,126,255,127,180,179,230,111,86,26,20,199,7,164,51,180,149,58,86,175,20,4,46,55,49,10,51,166,252,22,242,251,171,93,99,67,167,101,140,88,70,51,217,142,215,102,72,117,84,217,107,40,14,198,3,135,222,42,134,72,223,110,73,238,33,182,239,198,10,225,13,173,89,244,126,62,86,233,140,115,186,226,253,143,113,201,83,12,243,98,172,145,32,37,11,244,222,148,30,112,211,196,237,251,84,205,94,67,65,134,215,128,9,209,250,206,219,253,50,158,21,139,216,206,248,126,131,218,187,137,248,174,38,113,43,212,25,151,198,213,198,135,101,130,231,115,107
 ,208,243,87,149,175,119,114,232,102,44,218,252,8,131,50,13,26,232,69,69,85,95,57,30,58,36,114,200,115,113,149,198,63,61,48,156,201,199,157,215,189,24,55,255,196,189,12,237,49,192,124,33,121,115,252,17,93,80,148,17,177,208,22,214,7,240,20,207,176,172,132,196,91,212,204,124,208,142,238,140,210,224,216,118,32,102,15,168,218,178,236,101,202,30,163,131,183,223,55,58,203,68,34,59,101,203,254,136,228,171,14,148,59,83,193,236,102,78,24,78,137,12,211,150,238,18,54,65,173,210,252,105,16,210,247,255,120,145,231,14,34,111,138,118,84,93,220,141,51,218,253,94,237,144,39,111,219,25,39,63,146,223,120,60,106,181,221,185,29,92,186,56,98,91,253,63,104,28,44,185,61,24,73,193,184,35,246,199,247,156,194,6,30,254,20,86,34,159,95,96,145,255,184,189,225,134,235,70,114,139,12,247,97,192,98,90,63,1,19,44,225,146,139,147,23,180,201,158,122,251,122,43,181,2,213,166,35,53,67,114,130,214,181,100,92,4,114,103,82,69,115,108,163,141,97,78,184,61,47,169,68,196,60,47,124,50,21,142,7,101,104,164,104,247,21,163,
 142,142,20,108,67,127,137,177,14,56,41,126,61,42,88,60,229,27,15,175,251,187,219,190,35,211,33,37,113,163,122,73,56,254,202,168,13,42,36,211,130,21,201,47,129,66,127,89,126,222,232,20,198,194,188,173,51,112,103,60,153,6,192,15,123,21,122,71,161,131,57,204,198,158,204,123,23,245,168,226,40,5,255,44,200,87,148,206,144,28,23,108,212,80,95,155,171,117,108,240,64,214,161,103,111,9,132,140,37,155,61,233,51,77,119,160,67,181,50,195,24,24,177,60,88,244,249,175,57,188,119,130,186,29,219,166,68,215,238,69,187,82,58,71,98,93,6,189,101,33,93,38,246,78,37,164,217,48,218,160,232,233,172,34,59,102,227,180,158,249,18,91,214,67,113,73,0,70,204,5,206,112,150,21,247,87,37,179,155,5,150,62,125,80,74,221,241,44,49,120,147,46,99,204,179,55,58,153,129,224,64,76,249,19,74,50,158,237,130,37,98,150,232,138,113,30,87,8,95,132,45,51,233,206,81,234,181,148,76,178,20,55,98,100,96,70,18,37,166,161,219,39,235,134,198,2,104,66,162,50,146,185,170,20,224,14,49,53,47,223,49,33,244,218,83,200,78,184,55,192,13,2
 39,99,165,96,110,182,104,64,121,232,171,192,38,144,204,119,87,118,215,237,134,26,93,177,168,233,23,122,174,167,5,6,179,35,94,180,89,149,113,202,196,72,193,134,95,142,182,214,208,46,132,53,198,228,92,1,199,90,138,38,85,79,203,134,224,177,178,252,184,62,47,48,119,72,251,246,155,47,192,162,0,243,45,92,241,133,236,30,228,205,229,117,95,201,183,61,46,7,58,105,130,54,95,250,126,81,220,52,79,104,50,114,233,170,90,3,103,22,21,0,151,84,72,187,206,110,254,5,65,237,66,215,127,34,50,62,25,135,3,89,177,81,69,246,87,39,77,241,211,125,12,246,213,64,220,19,61,45,154,243,128,17,84,34,166,147,245,1,197,5,227,197,179,128,194,175,47,139,158,49,0,105,102,137,80,194,124,171,71,43,82,12,85,210,89,205,112,57,178,223,177,197,238,0,193,55,184,93,201,236,200,115,227,184,219,155,71,63,108,166,245,10,42,77,17,109,224,204,9,91,223,133,81,66,113,75,2,80,195,184,33,82,178,214,70,116,86,43,43,138,64,177,255,95,193,18,40,134,231,137,254,42,63,188,207,157,212,147,79,148,113,35,223,27,111,133,117,109,167,175,2
 20,246,75,184,232,140,221,248,252,57,211,114,190,9,237,29,73,236,225,221,149,112,7,142,215,64,61,242,190,70,158,4,184,222,26,142,209,3,44,171,179,172,247,56,226,197,240,203,197,231,51,69,211,19,100,216,123,180,189,161,167,147,38,212,41,117,59,171,212,131,101,69,194,3,135,159,77,73,217,13,222,19,20,246,10,254,95,229,21,189,177,243,185,100,181,189,202,3,9,91,96,139,177,62,24,85,146,249,228,149,131,223,244,241,182,184,219,214,144,100,13,215,174,160,8,74,42,103,122,100,225,183,115,220,143,46,195,3,98,95,224,8,195,253,111,142,201,242,156,49,37,73,198,208,221,44,56,139,49,72,8,191,185,84,249,134,155,71,79,170,107,253,4,221,124,175,255,36,138,126,228,195,58,44,23,35,146,189,168,189,4,189,52,41,223,199,206,38,76,144,160,82,213,247,74,189,3,111,16,86,157,2,178,51,217,184,167,105,48,205,182,148,160,225,27,166,62,35,110,83,117,156,10,24,98,161,224,60,192,113,253,150,206,12,43,68,162,195,160,209,108,180,82,72,182,209,50,228,116,152,98,9,254,16,155,44,211,89,105,171,110,68,227,152,109,15
 3,151,159,228,155,160,106,200,71,82,32,99,160,219,99,152,173,11,251,247,36,192,92,229,180,208,190,58,156,54,188,230,120,171,235,33,228,207,211,201,143,120,242,122,182,77,82,136,173,115,179,248,74,206,196,12,77,175,174,183,180,138,58,162,192,88,144,41,171,139,193,45,196,34,131,232,8,233,210,139,130,75,29,81,5,44,97,157,241,45,48,78,213,90,25,79,121,111,130,201,19,167,38,255,216,28,144,111,134,27,228,132,183,99,237,76,17,39,93,4,189,83,224,15,53,223,138,4,164,255,229,212,76,56,59,55,21,84,154,207,213,53,89,152,241,197,202,111,25,195,252,93,120,10,89,244,215,89,66,152,129,67,75,58,153,233,21,176,250,138,27,227,109,240,125,32,199,109,112,66,107,99,56,118,94,33,74,124,232,7,155,8,118,126,126,109,150,34,238,121,11,109,193,16,22,120,76,140,155,173,113,106,212,77,207,238,95,0,42,130,98,205,210,110,215,133,242,70,19,51,84,114,249,111,152,201,240,76,23,158,223,102,163,20,84,160,105,179,205,196,97,248,197,157,244,64,192,40,167,38,123,45,236,249,29,88,95,188,90,187,201,62,245,105,119,12
 4,35,252,193,179,135,47,198,242,83,212,120,196,178,241,60,131,168,39,137,127,22,185,158,48,192,27,163,138,193,121,193,134,249,13,23,44,243,5,188,95,3,197,178,153,102,175,23,196,57,37,140,104,243,108,108,137,36,97,56,127,166,162,196,33,142,2,110,58,212,38,195,26,47,225,171,41,245,238,250,189,162,100,205,169,62,69,6,201,195,136,154,253,7,46,105,0,191,47,128,99,171,239,94,167,199,52,20,223,45,120,100,94,251,73,7,214,199,104,169,225,17,249,9,111,102,214,250,27,164,233,115,13,58,135,74,93,240,76,93,187,183,28,179,82,71,157,174,250,11,221,118,184,244,27,128,156,53,133,112,191,136,11,187,175,79,48,66,65,65,92,70,183,56,178,248,100,203,172,38,229,245,125,104,153,219,51,4,85,248,106,41,122,113,157,237,173,228,234,193,244,130,217,253,213,113,204,225,147,175,146,167,52,49,247,175,124,248,159,149,207,119,248,47,149,21,193,138,154,43,115,116,109,190,87,206,37,249,115,119,191,251,230,41,101,227,70,176,23,131,169,27,142,47,32,54,72,54,166,53,107,228,175,74,76,61,106,100,107,80,24,196,191,1
 68,222,3,154,153,99,158,252,163,96,21,236,58,15,181,239,87,204,136,133,189,162,105,158,210,217,241,123,81,105,219,131,252,227,22,221,29,4,199,104,165,131,22,7,80,114,175,219,137,144,152,254,111,99,198,54,162,100,103,146,222,108,133,33,31,184,202,198,150,190,214,206,129,65,158,197,64,59,250,130,25,196,86,140,21,2,127,115,37,47,122,48,143,221,190,44,92,124,140,157,50,229,63,78,121,37,168,233,170,234,63,3,125,207,229,65,198,45,128,48,177,182,245,58,47,172,18,214,160,147,1,3,38,22,98,153,170,75,14,134,106,171,101,33,236,148,58,35,38,247,240,221,93,56,200,88,134,12,31,211,32,46,129,198,78,83,7,5,97,187,251,71,68,56,154,184,84,38,103,23,219,217,138,10,154,240,83,194,206,111,91,16,231,227,95,255,55,161,100,195,178,116,131,133,143,68,161,134,22,20,49,228,174,242,16,222,2,240,76,145,174,95,138,168,34,136,49,186,235,75,84,128,217,118,159,21,187,233,244,77,57,38,19,70,0,9,17,85,18,111,224,113,11,247,113,215,24,80,82,155,218,188,23,143,53,193,202,77,127,88,4,149,92,187,105,92,14,170,8,5
 0,163,10,176,200,98,198,214,223,114,202,202,68,170,174,63,134,43,252,199,221,157,215,194,125,203,154,250,177,232,76,39,6,241,74,1,155,237,65,147,85,108,10,149,103,157,68,146,112,178,129,172,144,7,183,172,81,86,3,189,198,120,36,52,246,62,134,93,134,214,140,246,249,201,255,160,211,122,94,43,204,159,219,209,109,244,151,70,180,171,153,155,69,42,86,150,89,192,208,184,125,23,108,91,48,240,109,184,35,251,94,38,179,249,145,11,102,214,219,53,179,26,147,128,40,112,139,35,163,165,80,26,24,204,9,203,71,200,70,146,57,156,22,237,198,236,235,26,198,147,216,81,100,214,94,27,6,53,168,57,249,15,223,231,167,207,235,1,174,98,80,138,247,129,53,17,148,0,148,34,117,141,81,162,49,157,136,77,46,213,128,249,134,98,100,1,185,205,135,61,125,138,211,129,177,118,11,180,175,155,101,174,95,114,42,5,107,134,70,44,39,72,58,161,209,121,117,197,65,193,39,213,178,209,42,249,114,93,17,198,33,225,216,140,25,248,17,226,144,9,95,158,202,126,1,136,58,162,25,148,253,182,132,105,208,163,252,71,89,138,179,251,105,11,24
 2,135,85,226,233,25,137,131,224,161,158,18,83,7,218,125,99,94,149,201,218,162,248,120,192,141,64,241,28,57,174,17,238,201,145,18,217,22,15,194,11,69,170,120,235,97,20,7,190,91,204,212,207,145,46,97,248,175,191,27,199,243,192,183,126,194,58,137,163,190,112,95,52,242,126,149,131,76,104,147,210,12,241,32,125,161,3,11,15,101,240,63,169,190,58,81,222,151,210,205,197,131,200,209,62,162,18,209,72,253,142,177,168,28,202,235,96,192,111,69,69,241,85,41,231,43,0,163,8,16,117,195,97,145,233,139,171,66,211,248,14,178,139,87,189,132,245,158,201,108,138,24,58,82,246,241,209,166,78,150,160,163,127,31,50,183,89,210,24,114,60,76,172,147,0,160,223,230,254,235,194,233,153,202,94,226,87,0,222,178,70,130,103,81,42,140,82,194,113,72,30,93,251,94,245,155,175,37,76,159,115,142,102,225,164,26,104,40,164,163,139,99,47,94,240,177,138,200,206,39,56,199,41,11,186,127,24,80,241,45,146,77,0,183,143,64,210,69,93,169,0,85,144,169,163,94,208,122,58,13,62,208,97,203,99,8,124,229,52,156,168,240,93,129,46,172,15
 8,145,81,146,220,107,224,251,248,242,161,61,36,80,211,73,218,204,113,177,1,213,232,66,87,59,252,37,43,140,56,25,104,213,229,126,142,169,241,66,11,240,55,176,62,68,11,188,179,160,246,246,132,176,85,220,221,140,253,106,106,4,3,56,157,33,67,57,252,38,235,98,49,90,40,142,154,203,106,43,0,217,103,191,217,115,86,212,8,34,232,253,158,241,52,31,55,136,29,147,187,246,80,169,14,82,182,235,100,142,180,69,189,57,7,195,80,60,51,41,250,231,9,236,136,44,9,102,198,11,137,22,253,45,232,84,155,94,153,116,15,122,247,98,190,140,204,5,198,181,138,201,87,27,58,100,156,119,79,72,134,48,87,234,134,44,196,191,39,162,216,56,209,183,208,121,28,100,10,194,173,231,40,246,14,133,228,74,229,79,113,125,146,47,127,211,117,201,213,151,154,222,196,241,211,55,150,211,63,151,154,166,222,59,210,51,250,119,45,251,102,199,78,70,209,140,222,165,50,169,228,75,50,63,63,18,112,191,151,8,190,151,134,222,181,110,102,190,56,82,239,226,38,42,138,160,172,249,250,88,66,75,159,157,219,85,179,224,9,77,189,129,123,231,247,101,
 165,92,53,194,99,100,208,106,50,133,75,58,238,41,52,175,181,127,99,25,57,228,149,172,146,218,78,168,167,52,37,95,123,16,59,145,85,43,197,138,234,60,29,152,61,165,84,143,104,32,44,248,208,147,37,169,70,14,47,195,73,192,242,119,122,197,185,204,143,223,207,32,43,48,193,65,71,246,228,87,180,37,246,192,126,170,86,228,251,28,154,120,129,243,170,178,154,192,20,45,188,29,86,250,243,20,156,252,232,204,248,254,164,8,124,195,204,64,114,69,62,8,174,50,39,61,80,34,54,49,162,73,224,192,9,125,173,220,74,152,142,12,23,198,82,87,169,84,180,123,97,170,130,249,81,68,210,86,87,142,138,99,57,105,97,69,153,35,173,113,211,178,19,208,0,201,234,145,160,156,236,220,14,170,172,120,47,115,7,187,41,208,140,245,66,127,74,77,195,156,23,201,94,131,101,155,21,174,175,174,164,42,72,196,128,110,20,134,114,98,28,144,94,215,63,242,244,233,245,2,91,52,219,74,213,111,123,130,62,125,63,198,78,7,117,97,146,160,92,229,7,21,41,66,208,69,246,51,87,87,58,84,246,22,116,187,68,45,164,32,254,85,104,170,155,10,207,4,173,48
 ,127,34,87,163,97,101,243,133,236,30,243,231,113,68,15,157,207,2,29,118,184,193,87,109,131,58,142,228,243,20,80,157,28,101,44,237,5,113,239,245,226,233,177,20,154,214,140,241,177,42,176,22,123,0,129,86,161,181,45,72,160,236,137,187,142,109,129,176,240,55,56,204,153,153,132,40,167,194,125,178,204,86,87,245,22,249,225,25,203,158,221,105,45,20,134,186,36,8,61,238,238,58,97,20,158,2,21,22,120,55,214,31,129,75,245,208,102,76,223,205,70,54,242,163,189,88,211,10,106,53,61,63,17,120,75,9,214,36,117,112,230,54,37,174,86,210,172,3,201,66,193,133,118,32,84,186,53,118,197,238,91,45,97,140,246,194,140,194,216,120,99,53,223,155,196,135,109,102,213,211,172,88,124,57,193,138,59,150,219,125,13,20,31,173,140,8,136,40,254,130,11,184,169,39,120,58,9,100,186,102,74,13,27,181,6,116,116,46,120,239,223,104,125,197,176,177,155,21,182,5,126,166,122,59,132,72,162,67,117,160,175,79,209,119,5,17,159,124,189,117,215,87,145,34,45,133,137,16,189,201,43,236,87,121,102,125,66,226,224,46,210,4,196,165,238,222
 ,53,13,18,159,81,3,126,76,235,149,208,152,33,128,168,237,42,221,204,99,122,246,53,43,31,135,135,52,3,214,97,35,2,166,37,40,61,207,33,5,237,109,139,62,11,241,184,26,45,238,166,12,59,251,250,229,95,5,197,121,192,114,230,136,118,227,97,253,222,27,101,180,252,236,151,238,178,227,38,151,199,149,135,26,47,92,86,197,251,232,116,183,54,2,235,224,159,128,78,94,192,160,245,34,126,52,38,197,133,232,180,253,198,203,86,75,24,46,248,216,120,52,68,49,125,127,5,65,141,113,78,115,6,242,71,121,108,65,79,200,25,38,206,3,66,81,56,230,101,36,140,28,166,6,44,42,215,152,90,247,85,156,132,227,83,152,129,245,97,140,154,123,4,174,115,72,43,14,50,95,206,170,209,196,167,235,121,213,230,24,142,200,117,64,23,139,218,62,201,132,16,128,113,185,180,54,59,13,66,17,220,227,113,188,69,200,151,19,198,68,106,62,53,104,93,60,112,211,75,209,80,210,172,245,247,198,173,138,198,19,33,142,141,11,114,132,155,146,54,253,29,86,69,158,86,252,173,15,8,39,69,159,70,103,195,128,79,151,25,248,45,246,3,216,82,251,146,231,117,2
 25,16,1,155,178,122,248,119,191,251,164,217,129,219,240,41,191,93,63,239,63,23,134,225,154,14,84,243,176,54,212,130,234,3,222,6,45,209,0,128,80,154,238,5,25,155,164,148,106,230,124,136,161,173,222,41,135,163,16,97,70,137,244,167,174,172,31,208,32,242,48,206,31,194,60,204,97,25,236,253,118,181,73,218,208,194,10,169,111,81,117,178,57,101,26,191,177,134,52,140,164,142,92,195,237,202,190,127,71,110,219,214,184,243,53,214,181,104,182,47,254,93,36,17,212,173,180,96,124,10,59,97,226,48,115,244,32,246,210,29,237,135,164,2,215,156,214,79,177,30,157,118,11,93,184,242,100,15,99,11,112,38,66,171,192,205,133,65,68,188,64,18,84,115,130,44,115,57,158,89,30,154,164,163,87,175,48,138,34,206,124,5,148,134,144,141,251,119,184,36,35,71,185,110,81,253,226,63,168,107,15,141,199,225,238,240,86,252,220,12,34,108,245,227,52,81,144,79,239,255,213,37,132,36,79,230,149,1,151,197,21,190,218,107,245,156,56,254,87,237,147,236,182,55,193,245,94,27,191,250,132,164,76,255,240,202,122,144,96,27,151,35,180,117
 ,148,211,253,158,79,240,179,145,180,28,92,49,29,200,218,13,224,187,130,245,88,178,233,48,156,121,8,108,177,49,221,108,208,6,220,82,43,96,163,247,185,31,166,18,110,148,143,60,124,36,239,51,230,149,206,208,129,59,211,156,178,165,211,21,47,146,67,86,159,24,196,211,199,149,96,84,104,33,232,5,9,83,253,230,247,67,198,214,97,103,55,255,214,130,72,234,45,46,108,154,6,194,223,71,173,188,72,77,24,139,195,169,202,211,147,80,255,37,15,90,20,81,18,227,19,105,109,232,79,143,19,192,109,77,248,231,93,9,191,179,137,232,53,145,172,95,254,16,210,1,225,157,20,157,106,42,29,169,117,229,90,226,232,127,212,149,91,236,74,162,243,253,195,3,142,208,147,69,210,243,18,186,82,144,251,196,43,179,115,17,49,246,32,114,159,4,35,202,56,217,152,153,106,144,217,203,236,195,169,237,197,31,173,253,144,37,83,160,54,7,210,80,195,38,244,147,1,128,130,193,77,0,90,215,119,250,153,17,129,131,68,17,44,181,58,164,113,82,123,226,26,36,145,90,77,126,61,122,66,96,255,102,12,99,41,109,205,125,3,150,205,131,31,224,155,121,97
 ,179,209,28,60,221,135,25,120,114,72,191,3,202,140,43,65,37,114,164,140,219,246,9,249,25,10,174,200,84,14,228,154,156,240,250,64,193,181,153,209,34,22,30,136,162,63,92,9,213,176,198,190,238,140,246,244,10,184,27,44,150,244,66,156,113,192,191,225,218,232,15,173,108,63,139,34,223,44,158,170,21,185,194,154,133,189,237,206,167,193,187,0,251,253,138,23,132,247,90,12,99,247,35,58,52,160,253,190,28,170,161,246,188,219,131,174,173,156,87,195,51,129,103,65,145,216,254,121,11,144,232,52,191,87,56,35,77,109,100,131,54,139,237,74,215,73,67,109,255,118,214,244,220,180,174,54,191,227,10,205,23,39,72,124,154,239,87,6,54,19,76,111,180,144,13,185,236,0,212,112,204,0,85,2,3,70,172,175,100,173,122,197,247,117,204,62,177,224,232,162,227,0,165,8,171,223,93,76,20,119,109,249,2,104,173,122,128,189,93,93,44,190,144,232,120,182,92,147,235,42,154,58,10,35,201,66,28,158,222,154,156,45,77,58,39,51,83,97,105,197,151,52,160,25,171,26,247,217,33,157,111,23,216,31,128,144,107,139,80,142,121,55,239,54,181,2
 35,201,172,49,228,111,240,13,10,155,155,223,254,141,122,20,216,81,215,246,52,62,213,15,103,19,100,167,214,130,158,126,0,233,119,102,90,85,136,172,238,15,107,253,194,161,71,177,171,240,108,89,140,177,43,157,237,18,213,233,109,99,23,120,74,239,171,154,227,86,10,64,38,184,82,77,255,100,114,129,84,134,165,245,184,75,201,115,191,146,245,74,152,157,16,192,34,220,221,135,8,183,70,210,31,160,131,30,120,178,155,78,140,193,202,235,142,18,51,71,28,244,129,187,122,228,227,83,148,163,79,22,225,155,181,252,171,121,221,68,202,29,177,158,78,124,202,206,241,7,29,231,189,136,167,40,99,83,164,169,13,145,66,107,87,150,166,23,203,109,66,199,132,24,0,231,41,188,135,198,228,130,210,227,133,116,168,226,191,96,99,222,224,152,228,212,24,113,204,43,104,12,152,121,163,52,125,185,175,76,223,147,72,35,195,80,135,170,217,229,149,246,108,170,68,185,240,158,83,225,194,83,92,100,16,2,239,85,215,228,137,108,14,86,154,235,165,92,81,252,230,49,36,21,45,48,241,5,101,238,157,89,221,17,39,71,99,168,202,29,54,115,5
 1,101,254,240,35,135,209,58,29,60,248,22,17,121,106,169,250,241,204,81,23,232,125,210,182,242,144,238,199,19,40,161,199,37,10,106,221,176,108,191,118,175,164,100,38,255,94,186,21,200,165,135,106,79,69,107,175,154,226,36,135,29,12,88,245,250,65,157,100,225,9,205,200,77,11,104,3,14,97,240,183,48,136,239,74,111,58,112,43,176,225,177,50,40,142,231,214,141,190,227,98,205,117,200,66,111,100,113,235,50,50,144,48,227,151,206,246,178,14,69,83,22,227,163,181,199,182,58,69,92,247,150,67,119,135,214,121,166,137,92,99,247,100,125,44,19,37,149,43,231,214,157,250,142,81,173,23,248,59,241,80,67,50,53,183,59,142,132,215,118,247,160,104,119,220,214,110,86,82,39,234,66,153,229,15,140,55,56,11,108,241,140,65,133,95,219,34,17,158,243,26,32,244,54,215,0,117,58,46,127,101,146,29,59,74,31,178,192,232,48,170,76,65,166,134,251,188,131,220,77,54,21,255,215,217,171,133,72,1,43,98,186,24,98,57,91,195,158,139,232,216,83,184,225,102,205,135,23,175,186,36,55,27,164,249,89,84,82,76,211,242,53,202,57,98,20,9
 ,86,222,244,247,48,187,142,187,137,192,249,116,168,168,40,107,251,90,129,87,98,146,53,19,9,39,111,190,219,117,50,90,126,140,44,60,199,59,253,216,82,185,51,39,232,0,103,150,61,141,2,46,126,150,184,202,7,164,213,121,57,252,194,9,1,232,201,195,18,177,64,128,174,246,217,205,186,232,51,85,217,151,217,7,151,61,116,91,140,63,3,98,111,119,137,186,155,153,160,59,122,182,165,179,162,188,23,208,193,107,139,149,48,78,44,107,174,157,153,83,14,106,104,152,7,6,202,88,8,237,213,163,68,156,201,92,197,120,34,96,222,202,175,198,254,222,152,26,54,155,127,170,159,24,122,138,101,253,51,126,219,106,115,235,123,17,202,4,82,136,209,202,166,200,87,0,15,22,186,131,64,144,206,32,72,42,231,108,149,29,175,175,244,152,252,153,157,241,149,161,175,191,87,187,55,93,101,149,0,222,90,154,185,29,237,94,112,207,249,113,238,174,213,216,222,191,139,250,218,183,69,45,62,115,234,113,221,179,139,156,188,245,221,217,14,148,150,32,192,118,111,81,157,208,24,89,60,196,31,20,103,2,186,247,224,100,27,89,160,5,91,239,148,11
 4,204,8,249,224,73,96,241,236,46,179,250,38,81,52,132,124,242,175,119,180,146,31,84,232,3,64,219,126,103,236,138,96,156,145,229,57,139,8,134,97,62,254,117,90,121,252,199,100,204,125,46,66,228,223,89,130,242,176,14,118,107,103,91,24,204,255,35,39,28,80,149,75,196,231,219,234,156,62,254,44,38,228,143,212,50,40,126,113,77,10,167,255,116,199,150,182,173,32,216,10,191,78,173,132,0,73,110,160,31,241,11,140,99,137,107,42,55,4,88,159,188,0,43,62,236,238,188,94,57,108,176,182,72,50,153,179,65,63,40,71,137,117,121,191,184,12,97,164,178,84,173,78,137,246,13,24,216,234,92,27,193,69,3,127,251,213,108,111,222,36,11,253,83,205,10,40,106,115,157,125,50,228,227,245,120,224,59,160,221,235,42,215,130,138,27,32,11,13,40,203,123,115,104,31,97,169,218,138,89,190,192,192,251,135,125,178,127,72,141,200,178,204,179,96,73,183,200,191,122,95,30,173,47,235,8,30,111,234,181,23,164,53,93,165,76,36,142,53,23,48,223,192,213,187,41,48,67,23,17,125,189,223,56,150,32,63,219,92,133,184,214,166,143,244,35,231,1
 72,11,250,119,121,116,126,49,83,112,172,166,75,253,207,93,229,219,17,32,111,202,166,192,183,212,199,94,14,147,13,146,180,202,21,111,232,231,13,169,182,159,74,78,85,75,0,228,162,41,115,112,26,189,21,207,120,253,42,151,201,170,113,171,39,237,55,112,87,189,159,84,114,98,11,188,110,109,98,155,112,68,109,200,239,94,147,225,42,171,26,100,233,8,150,210,248,29,153,31,210,37,159,228,196,157,254,96,253,36,220,65,34,211,153,95,232,78,50,20,77,40,192,224,30,206,247,2,59,52,254,161,42,42,72,248,79,19,231,88,236,142,55,152,91,115,46,67,215,181,185,64,240,109,150,50,26,22,180,127,113,87,131,153,81,252,48,62,243,134,168,88,154,31,140,142,86,201,138,159,211,72,100,1,246,18,240,57,18,233,214,179,0,242,161,74,1,201,101,67,62,132,240,180,13,124,254,76,122,231,178,181,238,109,131,201,11,33,61,169,173,134,224,90,118,169,15,205,22,168,196,2,247,133,151,54,66,83,183,125,46,56,73,118,143,32,77,254,188,191,163,45,200,233,71,69,16,129,133,85,142,57,18,240,47,99,74,41,57,53,231,188,76,81,180,244,9,72,1
 13,202,155,218,251,218,120,186,65,203,11,231,203,92,126,31,114,59,59,3,237,240,89,195,176,252,35,103,9,101,219,94,198,12,27,237,235,205,152,12,191,15,74,49,100,113,13,134,108,97,222,78,79,65,181,218,105,206,82,156,107,119,210,52,165,180,202,52,2,189,203,172,37,8,179,119,86,3,29,208,29,1,249,217,230,82,185,64,112,42,150,88,12,17,97,245,114,216,139,249,39,85,58,56,143,224,141,123,112,146,98,210,125,152,132,7,100,216,181,174,250,14,63,223,123,86,112,185,42,191,85,116,148,244,57,80,218,234,0,174,170,146,142,68,6,240,54,241,222,119,107,218,76,138,34,159,30,141,79,121,200,213,226,3,176,45,128,26,6,205,252,171,137,86,32,207,208,208,243,110,213,236,186,122,248,110,190,187,3,159,68,201,87,60,110,78,59,157,10,154,231,156,45,3,79,0,58,118,122,97,227,129,190,102,157,176,5,22,24,79,36,191,199,178,255,23,144,88,92,109,28,93,33,98,102,192,252,45,147,217,60,203,26,195,215,197,28,164,252,89,187,5,86,169,102,21,162,32,83,200,158,0,62,243,144,191,180,29,86,106,129,73,214,143,166,42,93,56,156,2
 14,204,76,220,122,79,19,82,25,238,6,30,92,205,223,102,178,69,6,10,213,179,251,29,242,83,20,146,189,19,209,185,174,220,230,141,75,101,211,93,35,184,34,229,10,199,152,72,49,116,119,180,158,43,97,49,44,196,148,60,124,71,119,208,193,240,247,252,48,38,82,20,172,174,245,217,103,144,138,180,96,11,60,66,71,50,31,66,94,238,18,214,254,171,246,61,81,143,213,86,20,224,118,59,98,91,254,183,218,89,19,239,128,23,186,195,191,95,43,18,71,114,86,245,134,199,199,85,150,202,48,179,210,65,184,135,224,245,145,240,51,25,97,141,20,33,135,99,101,130,153,191,32,238,80,247,227,37,77,160,246,40,115,101,78,130,74,81,191,154,119,149,16,128,83,56,101,191,139,89,216,81,72,205,66,201,6,214,44,137,197,181,131,187,74,234,147,175,172,18,89,81,11,171,81,7,204,210,126,192,102,198,9,132,74,2,180,85,138,209,25,105,139,78,229,192,27,210,127,158,195,48,93,22,50,48,189,7,17,55,51,156,40,66,227,156,244,227,208,253,56,90,213,45,169,86,102,132,66,158,131,70,212,126,237,64,184,100,7,65,11,1,234,153,152,157,166,202,204,21
 2,19,100,237,167,255,181,196,133,128,5,8,73,114,8,182,252,84,200,19,255,212,156,95,103,124,86,48,64,225,67,18,156,61,212,23,90,131,186,132,27,8,164,149,160,132,212,223,57,250,249,127,220,48,141,71,220,55,43,70,185,252,145,164,193,84,203,160,94,159,130,159,22,247,114,152,245,136,122,64,221,75,255,136,171,132,165,140,149,16,86,230,238,33,104,89,71,244,51,177,156,32,98,232,145,204,136,92,157,230,18,6,131,237,203,33,1,46,206,74,111,232,51,134,138,64,106,164,76,24,205,177,179,183,234,4,198,118,3,82,196,203,249,71,138,43,176,156,132,197,173,59,145,138,112,146,214,100,49,182,0,134,87,41,9,92,255,233,98,98,249,214,0,199,29,4,249,121,144,56,194,248,201,105,85,182,223,9,165,89,19,98,147,231,1,63,158,63,231,67,87,5,179,92,21,255,12,52,195,229,222,106,100,179,172,32,197,143,147,134,102,85,72,130,226,168,186,158,249,181,228,247,237,169,140,59,190,50,130,106,195,7,117,26,6,207,81,21,63,155,238,107,158,129,207,9,145,49,131,128,156,113,50,54,252,75,18,227,38,134,214,242,177,200,9,16,98,27,2
 6,37,5,167,50,187,1,223,28,23,228,195,12,225,125,89,254,206,153,49,212,198,233,221,126,246,134,109,248,20,185,91,237,91,142,146,28,99,123,239,79,86,4,175,188,35,104,69,16,50,87,202,219,59,239,223,225,190,210,57,58,93,179,245,235,162,108,183,157,131,128,132,231,33,157,132,219,234,26,203,141,241,87,42,181,200,211,100,116,50,231,13,28,206,196,198,179,133,41,37,211,174,60,60,164,24,237,205,22,156,26,190,223,38,141,182,254,92,169,199,218,144,204,51,40,157,71,122,60,103,206,59,64,84,131,255,86,143,73,212,164,245,145,147,223,175,188,97,59,254,69,184,85,181,243,243,69,223,172,2,61,197,219,35,235,77,162,200,237,102,73,222,228,50,246,50,33,137,61,27,191,117,229,244,174,141,39,42,6,195,81,170,0,16,189,182,166,237,248,85,205,174,221,106,165,93,52,152,13,34,157,140,221,75,93,86,173,42,74,74,22,208,19,98,85,127,153,37,210,75,236,233,72,232,253,22,243,76,83,200,12,68,41,228,120,146,32,237,54,35,180,38,65,15,190,125,246,77,132,228,152,79,203,131,31,42,7,211,25,175,99,104,15,49,223,209,164,3
 2,191,166,19,180,7,237,133,187,134,161,69,139,117,139,240,23,90,204,135,20,5,157,56,107,189,135,164,161,120,220,60,151,25,111,11,2,68,189,102,63,1,224,26,105,152,90,96,71,218,36,18,82,15,139,52,154,220,70,212,57,37,138,222,49,114,235,165,165,8,62,211,32,81,85,109,23,72,54,42,122,60,35,215,117,81,23,171,195,135,50,220,5,202,111,179,9,196,161,69,190,86,28,225,138,23,97,71,102,5,104,58,251,102,11,35,204,86,238,178,169,150,40,120,21,73,155,99,210,207,117,85,48,141,47,134,237,216,204,104,225,166,229,120,246,225,15,24,9,46,79,193,180,190,18,249,108,213,238,151,166,135,166,10,79,3,69,243,212,109,37,9,88,124,251,24,174,170,80,93,0,3,59,49,217,179,86,204,67,127,31,121,182,107,85,77,26,158,235,224,248,86,229,45,173,228,125,118,8,142,141,156,182,167,193,202,7,87,168,245,62,222,150,99,61,76,190,14,242,238,243,66,165,48,75,5,145,205,114,235,154,165,243,240,160,234,243,231,225,108,116,245,213,56,2,114,187,247,111,166,222,97,123,234,223,42,2,151,165,177,82,0,45,85,189,216,27,243,149,186,15
 4,83,166,154,51,211,41,41,98,143,23,195,67,32,137,135,180,2,162,118,226,92,47,157,222,153,118,249,146,141,146,249,54,50,249,7,136,234,179,143,165,200,252,154,210,254,242,91,230,40,141,137,62,69,81,195,211,255,188,44,168,235,109,167,45,215,0,175,7,255,150,32,86,8,73,138,241,208,178,35,6,171,214,102,67,177,128,165,55,206,84,45,178,165,32,18,53,14,161,232,145,9,14,228,175,243,101,5,153,102,228,222,90,148,221,95,44,155,37,72,214,138,126,83,165,153,37,93,245,172,35,219,202,194,204,17,152,74,226,195,70,232,7,48,125,62,125,175,202,28,138,145,40,11,218,40,214,87,74,182,19,71,39,54,228,95,91,153,103,181,160,116,187,185,227,60,139,217,91,7,152,22,210,155,112,211,133,156,151,158,10,141,248,101,218,73,216,197,226,143,124,73,221,37,12,11,80,81,27,81,74,243,75,254,72,171,148,218,194,200,122,21,0,14,179,11,240,155,180,209,25,45,222,40,181,125,59,207,87,47,170,147,252,18,76,105,149,172,22,231,159,155,123,93,75,100,82,117,27,1,128,14,191,127,151,115,187,39,232,41,62,194,18,223,196,227,84,221
 ,125,128,146,89,1,66,157,117,40,177,70,183,114,74,49,220,21,20,5,133,94,234,124,25,25,118,128,85,220,99,226,245,140,82,57,111,185,16,136,0,135,191,249,188,97,149,254,5,216,129,177,108,103,110,107,51,116,255,95,235,179,187,182,199,131,133,201,235,68,10,147,176,23,114,89,154,114,142,164,222,99,133,23,49,97,191,203,198,98,188,126,210,219,237,230,119,184,72,186,222,155,204,157,19,119,145,145,36,185,55,57,235,154,188,185,29,114,173,255,97,110,221,43,119,60,33,191,116,82,229,204,249,128,245,18,192,12,133,60,150,28,63,52,182,231,175,237,84,99,149,147,155,1,255,206,24,27,141,242,159,237,20,210,75,127,61,205,56,67,227,127,200,92,49,251,86,186,65,188,209,106,74,177,201,147,84,216,189,87,168,79,175,119,200,190,44,91,221,134,116,199,124,61,52,135,167,210,87,164,175,139,35,121,202,87,46,125,163,89,221,15,158,122,3,245,59,70,16,28,136,168,242,234,184,194,37,179,41,16,215,197,210,99,254,158,136,155,220,66,103,0,133,223,52,101,56,221,216,71,165,183,59,230,140,129,13,77,88,174,89,252,106,184
 ,217,163,85,162,222,71,180,24,186,138,156,66,221,100,182,160,178,12,153,29,83,90,212,46,202,92,119,111,11,78,46,10,250,160,102,13,142,54,207,148,162,208,215,103,73,202,229,125,26,221,94,164,120,43,121,208,255,137,156,204,249,143,106,25,108,226,69,146,114,111,224,48,100,109,200,117,223,138,104,181,33,52,106,168,23,196,88,41,215,28,163,124,108,133,35,89,102,243,112,111,57,212,176,35,93,36,79,54,178,150,215,10,45,159,116,32,226,164,115,249,236,162,147,119,197,72,39,233,184,215,235,254,133,154,144,157,212,62,2,56,130,227,128,31,138,69,243,165,222,204,72,116,37,120,138,150,250,236,50,61,133,241,47,150,32,233,230,84,123,114,8,89,133,8,146,230,82,68,169,226,80,10,253,63,205,249,169,225,242,218,100,80,123,133,86,211,197,134,93,54,218,86,26,137,76,85,253,77,123,94,98,76,67,178,12,246,125,87,75,226,62,26,241,73,226,231,19,111,70,53,233,180,114,150,4,37,53,81,120,84,146,192,81,234,204,222,46,3,56,208,221,29,254,3,6,93,27,7,53,194,160,197,24,241,75,28,101,210,137,214,69,201,238,152,66,1
 53,10,119,211,36,10,46,175,248,140,39,100,177,208,132,109,171,72,97,205,7,169,214,210,137,6,116,130,187,238,81,246,20,119,75,8,125,69,214,147,77,197,33,179,142,186,127,208,77,251,29,251,189,180,187,152,140,231,72,215,130,124,8,208,11,124,215,198,206,1,246,243,227,104,250,231,74,196,166,215,74,21,233,253,251,202,208,60,149,130,173,251,159,8,30,93,165,10,122,235,122,17,42,108,134,212,197,227,42,120,8,226,44,15,144,136,58,12,193,235,149,49,46,212,56,250,14,132,211,253,164,220,173,99,2,85,26,48,49,211,176,141,102,93,124,78,43,45,184,79,152,8,99,156,103,36,164,45,64,67,190,218,164,1,243,191,227,253,72,243,69,39,213,95,157,147,215,93,126,223,190,115,85,96,222,63,125,239,144,158,75,26,24,238,129,63,183,233,245,142,53,92,8,35,113,211,165,41,102,110,197,84,121,0,142,231,2,240,188,98,17,112,33,150,139,208,139,1,47,30,192,159,184,1,138,51,166,175,127,135,38,96,178,31,222,157,231,40,83,247,194,98,237,63,213,215,202,33,233,196,90,175,255,71,93,156,235,125,128,72,210,185,164,43,47,110,242
 ,119,232,120,98,147,146,225,177,255,157,214,159,239,221,83,99,68,251,174,136,49,17,136,60,86,86,191,220,156,103,67,186,225,222,146,158,218,43,134,61,102,201,90,63,1,102,233,75,153,186,77,87,200,183,180,121,82,236,164,162,187,80,12,57,69,123,100,206,158,214,216,138,184,243,85,41,64,248,215,227,134,148,106,249,208,143,101,158,158,4,135,98,194,246,202,24,187,0,183,107,198,18,28,15,92,194,123,254,123,18,110,128,250,105,14,98,1,163,125,169,186,58,74,81,75,15,100,218,103,127,142,16,78,194,81,166,12,72,89,246,215,120,225,117,76,80,185,172,39,78,252,216,212,215,163,81,106,14,99,103,121,120,187,58,77,165,236,230,43,156,117,224,46,155,212,148,19,161,73,23,120,174,250,240,30,30,49,150,226,167,125,119,27,246,143,199,79,202,5,66,236,198,214,151,31,111,16,220,251,56,189,163,35,57,157,11,34,225,55,42,235,160,109,182,5,40,173,7,143,243,165,206,138,23,105,112,56,185,51,203,238,235,147,82,129,145,105,242,243,138,121,144,195,244,189,135,52,232,219,90,69,82,183,211,215,193,190,130,180,182,114,5
 8,43,246,64,29,67,159,123,153,126,151,233,229,175,58,76,129,42,110,26,122,245,200,248,86,167,217,235,146,94,168,49,207,151,237,84,141,216,3,60,123,131,88,74,139,241,40,255,132,13,65,181,241,236,143,175,21,148,182,50,207,229,95,234,46,37,41,141,45,165,232,73,196,161,121,158,106,24,178,13,89,236,102,232,160,115,14,51,248,226,136,226,1,232,252,22,119,131,161,136,90,157,97,67,59,178,99,218,14,131,173,54,21,191,32,213,28,251,91,35,43,199,162,226,55,22,235,193,243,131,216,47,132,255,23,235,148,212,208,159,45,66,206,113,182,202,58,127,197,147,123,234,27,14,82,244,15,245,129,144,155,110,78,192,17,165,187,211,39,84,146,199,114,179,181,61,45,70,212,23,61,210,190,81,17,42,20,108,40,27,66,231,109,133,165,25,84,198,26,199,27,70,13,122,64,249,82,116,30,178,254,224,40,166,91,252,29,3,165,93,244,185,192,104,253,225,198,42,37,57,116,119,176,145,120,121,50,138,228,106,186,173,4,174,56,180,194,147,11,155,103,65,82,237,107,8,58,14,71,94,245,115,169,144,218,88,217,220,210,1,233,45,103,112,237,14
 8,79,43,221,55,21,161,54,218,78,192,15,169,104,62,162,218,251,84,141,39,172,88,0,75,95,139,86,238,249,2,191,214,222,35,33,115,189,50,38,88,217,206,127,194,4,235,112,31,20,202,156,108,14,1,59,184,169,228,172,80,17,36,196,37,46,241,191,169,148,29,136,172,41,176,232,47,2,25,151,46,190,116,126,172,121,84,41,1,209,207,50,50,48,4,22,31,251,111,136,220,252,168,225,245,75,12,12,60,215,186,167,33,219,197,222,152,133,124,36,154,68,60,59,12,211,200,240,41,72,0,237,81,181,218,34,112,105,81,164,243,22,10,246,19,97,137,65,200,171,10,101,108,167,177,183,180,51,131,87,179,12,103,115,25,166,139,12,13,254,46,127,208,71,211,200,178,176,10,66,215,190,175,70,233,94,210,132,94,217,135,204,202,47,30,208,182,160,216,240,97,156,86,244,252,192,112,212,170,39,7,12,47,61,165,40,160,116,205,188,36,195,96,144,105,47,31,254,1,212,199,51,188,98,163,131,250,216,73,75,25,192,46,81,40,22,63,181,115,158,151,71,79,201,175,57,116,145,45,237,154,208,236,200,167,238,220,13,36,188,161,201,59,119,232,1,45,254,221,10
 1,89,164,138,215,150,9,179,218,8,161,63,154,25,168,220,205,8,139,132,148,219,249,199,207,191,91,50,235,58,49,127,186,10,100,52,170,152,73,54,239,178,172,53,114,230,149,224,117,46,122,102,139,2,62,85,165,237,221,62,100,212,109,134,28,100,118,115,204,13,21,158,37,223,141,73,149,24,39,216,159,23,72,176,253,73,109,172,171,162,169,77,36,223,20,73,99,20,235,130,212,241,61,189,14,180,112,181,210,14,6,48,230,134,253,47,119,149,1,58,159,80,6,141,170,186,118,86,41,243,65,66,17,139,225,206,228,172,215,91,99,64,169,198,40,34,200,89,201,167,148,18,181,217,171,0,29,42,21,229,223,91,142,82,216,177,254,84,202,128,210,40,116,176,39,246,162,163,59,101,181,147,195,156,138,132,120,33,162,131,125,17,150,175,217,155,197,197,99,225,113,249,91,192,94,50,51,146,65,58,18,44,0,105,92,39,222,128,33,202,96,233,185,17,151,149,216,13,215,225,88,147,66,19,93,230,117,203,64,83,3,209,47,212,227,243,208,193,244,27,242,249,216,236,63,21,75,118,20,80,102,98,45,189,75,92,89,209,139,179,24,172,76,85,73,29,8,209,1
 02,215,101,251,201,56,109,254,14,217,113,24,115,229,160,20,203,137,159,199,134,15,172,167,251,166,13,86,76,209,98,254,27,167,144,236,129,122,230,226,75,190,243,191,154,228,103,64,116,74,4,75,1,241,30,104,69,46,98,30,189,64,149,201,231,26,35,253,17,39,209,92,127,4,166,205,255,144,167,65,20,119,167,134,93,119,6,220,247,12,122,153,65,139,199,183,7,27,233,228,70,155,58,58,201,32,186,244,98,53,177,119,85,211,178,116,197,88,22,202,5,142,207,178,209,163,142,65,128,73,63,39,127,79,159,7,49,250,183,67,31,87,210,140,117,44,39,102,240,41,15,70,245,98,85,22,200,171,177,159,31,204,180,245,45,160,9,64,185,255,154,20,180,51,159,162,47,174,212,139,68,151,212,238,75,166,218,96,210,224,42,163,49,91,146,192,161,160,16,218,106,173,204,219,140,97,128,77,118,198,85,234,203,137,204,254,249,53,38,76,9,39,27,35,122,98,28,184,137,7,0,97,94,183,66,242,140,182,69,97,102,238,226,196,58,218,4,40,14,24,121,210,224,0,178,177,9,65,35,254,79,81,213,37,11,186,115,209,212,91,145,161,217,123,70,141,23,177,112,8
 2,3,58,39,41,68,77,203,211,58,49,89,136,163,240,159,133,106,77,33,149,113,41,159,21,182,133,171,46,55,104,220,148,81,131,50,168,60,2,172,230,255,206,177,194,148,232,56,24,57,189,203,8,105,179,202,248,77,234,243,100,21,173,163,151,5,64,63,66,45,211,170,102,139,48,85,109,243,218,254,206,177,156,49,108,21,14,8,69,66,192,120,46,71,62,227,99,198,95,86,123,10,5,117,113,224,33,54,183,196,133,4,134,181,58,208,205,7,18,224,93,184,95,246,17,56,73,214,31,89,111,115,216,10,193,231,106,108,207,19,229,83,53,254,14,221,68,37,170,203,168,219,244,175,249,238,223,78,187,31,99,171,13,123,98,162,19,25,114,209,10,155,255,202,243,242,125,239,237,134,203,169,113,90,141,16,52,194,179,196,164,2,16,213,66,147,80,198,155,251,78,248,87,151,41,120,33,40,125,177,245,104,240,124,221,129,12,106,152,134,51,240,68,83,83,253,36,186,93,251,93,161,105,192,39,15,162,255,238,93,202,8,108,43,210,179,12,56,30,107,78,229,176,229,7,226,139,57,197,135,70,54,95,45,251,14,197,80,0,104,231,51,83,22,176,154,48,209,206,73,
 97,72,173,57,99,119,107,127,107,127,220,1,66,135,148,178,248,62,72,134,67,7,192,175,173,49,70,232,213,73,113,124,211,233,187,196,113,95,43,174,7,247,152,178,76,176,127,40,27,18,153,246,26,92,199,245,150,201,242,145,88,189,183,85,23,231,207,248,67,88,79,182,192,160,72,214,202,129,160,110,183,217,208,220,240,50,133,73,99,54,99,42,242,218,244,144,221,74,205,17,24,51,105,128,207,98,86,79,7,217,241,99,6,173,120,152,189,21,75,95,231,48,149,49,36,129,157,37,234,131,151,15,166,218,89,63,233,207,126,77,181,73,238,88,203,195,247,127,94,44,36,115,20,220,41,239,247,47,193,141,204,167,120,24,40,244,156,14,186,89,147,135,244,234,204,4,21,156,97,102,0,240,54,44,161,90,43,200,172,121,157,144,4,29,33,193,60,239,116,158,21,222,42,149,237,87,210,254,141,207,179,4,120,97,177,3,16,103,38,39,176,124,123,161,54,63,28,45,162,124,132,99,188,86,91,177,194,53,78,57,128,21,212,111,98,186,179,176,32,37,87,20,22,191,219,20,94,152,247,151,59,250,165,122,117,122,167,239,142,186,48,79,183,175,249,40,252,89,
 48,226,152,116,169,219,223,75,73,99,222,194,91,222,102,18,8,88,195,197,19,62,110,254,101,69,120,164,73,251,102,149,228,80,6,99,114,147,223,243,138,24,107,130,28,36,134,217,52,166,88,146,210,122,135,247,35,30,189,29,230,203,148,223,93,131,166,148,250,12,197,100,18,171,130,204,52,197,159,58,225,249,28,73,55,50,9,208,31,119,141,102,239,154,237,234,113,181,95,88,9,113,40,71,240,108,136,15,183,226,8,89,183,235,35,59,0,139,201,32,148,78,89,62,125,127,107,177,2,120,214,67,57,218,173,27,217,184,156,83,37,18,102,230,14,214,164,144,38,60,159,84,35,93,147,77,155,227,145,41,20,154,58,144,6,234,53,112,71,38,207,42,234,233,210,219,104,78,230,247,242,254,100,204,238,148,155,159,50,77,52,249,138,58,216,174,159,242,72,113,166,242,16,46,78,215,214,29,138,154,50,208,63,237,69,181,239,133,253,152,174,210,55,252,59,109,71,87,205,57,255,133,115,214,214,130,26,102,52,27,44,163,39,196,215,26,159,75,175,69,156,197,30,95,82,94,99,213,206,81,18,77,87,121,10,103,163,41,180,5,68,242,194,3,146,150,211,11
 3,139,42,215,192,179,157,203,111,49,71,47,89,63,127,54,225,141,137,196,56,148,26,180,220,107,0,83,65,224,127,124,13,40,126,92,197,89,157,204,242,84,211,80,30,83,243,193,73,83,52,123,88,100,249,173,175,239,203,228,174,167,104,122,38,248,4,51,3,26,193,178,97,152,168,3,195,199,252,51,172,136,90,237,5,69,59,234,220,47,221,217,255,20,222,60,93,195,218,80,28,176,48,184,169,235,98,66,40,127,29,221,73,219,148,47,173,126,245,159,139,129,164,58,188,208,38,37,62,101,206,161,173,29,231,30,227,247,155,14,126,76,235,26,160,129,173,180,212,88,119,26,63,42,100,181,175,175,121,204,38,147,102,80,99,85,116,113,243,48,4,115,156,181,140,116,142,32,18,145,244,252,109,242,188,0,42,8,59,99,66,216,47,239,166,3,107,248,218,185,51,149,113,135,203,214,250,23,75,67,110,215,81,168,241,216,32,51,117,101,129,54,95,50,51,32,81,232,23,224,153,28,236,85,240,35,185,174,239,253,173,234,126,233,213,142,123,98,156,72,176,241,69,77,146,108,214,57,239,84,201,225,137,113,133,96,205,1,160,102,73,238,143,234,55,85,180
 ,88,184,151,114,150,83,7,4,255,82,69,150,152,152,92,155,232,137,225,80,114,224,49,130,225,254,231,153,190,199,153,154,158,94,253,57,204,84,7,36,33,4,178,145,107,152,51,92,167,208,34,113,57,84,204,116,180,200,118,199,183,133,228,107,178,87,38,85,161,29,146,143,203,48,221,192,240,16,40,0,81,113,50,216,131,0,52,132,143,147,247,117,225,102,78,243,152,134,128,112,226,10,177,32,179,162,252,152,15,250,74,78,121,76,85,172,8,194,60,247,87,229,130,244,247,162,110,170,18,42,218,140,195,167,228,189,66,21,137,140,27,230,95,138,33,96,12,166,222,225,39,214,135,199,157,108,103,140,47,240,115,127,182,63,210,221,9,21,188,228,189,154,204,132,163,170,8,213,250,53,203,222,214,59,195,118,106,193,114,201,135,90,54,66,103,37,28,190,32,177,109,220,34,92,15,101,76,151,98,248,192,98,160,58,29,168,179,12,144,221,94,30,57,221,124,191,51,0,145,53,159,20,213,69,36,60,189,196,185,133,205,225,210,27,137,60,45,238,218,116,251,1,7,55,165,220,162,161,144,214,199,195,161,36,196,129,162,181,85,184,160,220,132,35
 ,0,132,72,213,226,75,113,103,31,247,155,47,179,171,187,173,81,169,213,172,197,123,192,152,185,130,196,27,21,35,7,169,212,129,60,255,52,188,85,202,29,207,157,65,140,16,205,121,193,137,82,42,153,122,134,168,196,95,4,46,142,139,255,14,169,5,144,30,251,85,4,166,173,143,117,189,42,242,195,152,241,243,123,244,171,217,221,142,66,184,99,48,194,245,97,14,37,15,143,77,3,56,98,191,228,150,89,152,166,160,116,200,109,83,97,67,87,27,15,255,163,119,92,76,215,89,200,53,73,250,66,11,34,124,9,252,230,142,157,18,196,181,181,30,114,54,215,97,84,201,227,75,190,76,111,151,14,126,221,242,21,199,215,112,62,16,6,28,232,239,60,141,247,51,206,183,45,92,193,220,43,87,7,54,117,109,249,27,16,88,97,20,221,37,156,38,238,7,127,138,222,212,118,179,229,147,204,15,250,189,193,8,35,180,214,253,182,132,130,148,98,86,137,208,148,77,157,121,58,55,92,68,221,158,0,214,128,169,134,41,55,212,165,162,221,86,44,133,200,128,238,220,217,126,140,17,137,169,150,132,133,237,92,159,192,107,98,216,31,115,96,220,16,19,221,154,2
 16,8,180,170,61,87,159,84,153,176,226,223,12,3,255,104,190,142,63,215,216,82,105,53,27,205,123,33,100,110,94,219,72,155,76,246,206,199,80,94,249,1,125,28,3,149,126,142,21,47,231,167,20,157,53,66,106,219,238,92,200,189,189,0,249,57,87,119,215,33,134,213,83,8,135,70,250,230,70,40,160,74,109,254,244,2,59,203,92,69,91,130,7,48,96,33,166,154,159,202,247,222,250,98,229,13,105,86,58,52,87,213,191,164,182,159,83,187,216,225,212,74,81,112,150,252,182,189,1,20,26,166,228,24,78,136,21,90,8,194,81,167,32,121,180,12,35,121,22,128,67,218,156,66,104,81,210,86,11,127,99,134,82,171,216,200,108,204,176,221,43,154,31,58,23,175,154,13,84,158,61,175,224,138,19,196,184,78,161,100,102,160,91,20,76,140,31,98,138,234,18,56,133,117,131,107,244,166,4,96,152,63,238,237,204,148,79,113,53,229,127,37,111,197,129,47,232,120,237,242,104,73,189,231,198,216,180,202,131,107,193,149,190,161,125,73,35,129,179,105,190,209,88,17,211,199,81,44,153,173,145,188,115,73,146,95,158,252,225,217,31,141,222,47,47,108,10,14
 8,65,33,33,163,233,119,131,219,4,118,21,137,229,161,244,129,178,43,213,219,31,101,217,155,145,226,228,26,210,218,212,187,224,69,93,173,134,200,230,125,14,181,133,107,214,123,163,159,125,176,100,51,91,105,216,248,203,215,70,179,206,181,122,190,124,25,134,57,182,53,72,138,81,153,67,57,54,158,245,173,28,41,5,219,6,38,49,107,135,229,57,190,64,21,100,157,197,123,201,149,213,34,167,0,20,111,71,186,232,228,88,7,5,164,190,14,241,134,225,215,159,9,170,216,226,175,58,73,21,190,13,150,81,96,228,0,50,168,132,25,64,172,230,98,2,129,26,103,132,89,59,206,101,197,80,4,128,48,68,165,178,161,172,150,27,133,124,46,216,91,134,199,61,126,24,233,54,235,164,103,83,103,193,167,206,253,48,94,82,245,157,233,29,114,86,249,241,189,110,49,37,216,220,80,150,234,165,119,171,18,106,176,253,43,231,86,126,103,83,102,53,134,121,241,163,82,29,71,110,108,168,136,196,126,48,133,225,188,153,61,142,204,179,141,245,156,132,14,155,97,204,119,77,177,118,94,81,33,95,244,217,120,191,11,78,50,100,159,35,106,151,248,33,2
 52,76,225,90,26,212,61,207,53,2,152,59,242,29,25,240,123,61,225,194,7,32,151,1,97,160,55,213,59,236,163,76,177,90,217,128,237,100,114,209,174,47,187,230,171,30,104,17,202,137,17,231,222,145,10,248,48,175,214,21,118,7,199,11,220,161,216,200,34,232,61,136,121,142,98,217,19,37,208,203,185,121,105,175,29,228,144,190,123,30,30,234,142,78,1,42,183,71,147,196,133,103,194,101,140,225,194,120,223,80,56,162,245,78,112,106,220,69,50,128,158,32,238,47,150,165,134,189,184,182,117,169,108,76,1,229,102,37,13,152,192,35,52,161,243,71,221,222,189,203,209,7,17,43,183,141,218,210,206,123,98,18,17,66,83,75,53,171,130,231,200,250,127,165,107,167,125,167,19,1,80,12,53,49,248,37,234,142,120,79,41,129,8,198,244,186,114,52,85,139,209,117,90,187,11,243,1,29,49,166,163,64,126,63,47,103,113,177,115,184,176,49,83,62,78,4,122,246,96,76,183,139,22,126,165,77,110,210,45,144,2,105,17,154,218,56,19,42,216,232,2,19,57,49,57,237,138,175,189,3,142,216,139,221,4,232,193,156,95,14,219,230,247,153,154,152,205,213,
 81,66,237,238,122,138,193,203,236,188,245,25,248,200,200,242,18,36,107,236,245,177,166,52,112,208,214,28,181,21,122,206,93,27,131,41,90,2,190,10,147,181,157,85,45,97,134,25,221,168,176,89,229,238,35,27,12,148,218,16,52,81,199,215,217,142,211,209,74,204,73,124,238,97,18,227,38,186,185,85,247,74,180,160,162,227,134,253,56,168,57,85,85,235,205,19,252,50,99,60,76,144,14,66,102,152,78,242,227,129,15,134,75,248,230,247,57,192,204,38,29,120,2,146,177,191,218,90,198,32,136,205,116,24,5,161,227,82,27,249,49,136,182,125,186,185,101,136,168,252,0,60,20,140,91,82,115,84,173,141,148,52,169,152,65,87,93,225,138,95,47,57,255,109,164,199,224,177,234,253,134,223,152,12,130,238,27,223,86,18,221,225,252,123,220,183,107,173,183,53,194,223,159,62,255,188,169,57,146,84,202,66,129,44,179,59,77,203,218,235,124,113,231,106,64,144,68,73,241,102,147,98,32,152,119,77,96,23,228,97,232,229,35,49,56,155,186,10,123,89,204,9,17,113,73,180,150,38,103,98,175,57,42,55,73,89,253,230,15,103,32,179,124,239,30,6,2
 4,77,50,205,213,207,23,59,139,52,158,69,214,135,255,240,7,10,18,8,188,173,218,57,203,77,73,171,39,183,149,174,69,105,43,113,246,100,44,71,36,136,189,203,62,47,14,95,91,164,117,69,83,152,42,114,156,164,110,240,163,208,125,54,148,7,124,207,30,161,91,23,178,69,26,78,113,160,113,13,242,135,104,7,232,50,111,178,147,64,11,5,242,150,255,126,64,19,198,183,139,240,5,10,79,171,11,147,152,127,48,120,146,35,155,167,82,228,187,25,205,254,206,185,6,209,212,241,199,237,52,187,22,126,40,188,154,166,182,231,82,163,113,21,161,108,198,61,11,155,189,32,201,21,246,50,37,210,10,88,5,148,119,14,90,131,67,116,49,65,112,6,195,184,13,230,200,234,101,135,84,211,152,128,136,72,45,141,225,25,175,138,215,160,149,221,38,201,204,0,216,174,168,44,205,83,78,46,22,47,207,64,116,215,60,70,217,148,250,51,169,132,194,99,31,30,167,71,227,3,249,30,73,246,193,240,179,188,145,201,175,154,180,224,171,185,116,34,168,36,65,121,2,1,114,27,206,149,56,175,10,128,251,163,184,75,62,82,251,136,227,63,98,211,213,201,219,3,251
 ,110,160,237,178,229,99,136,173,210,159,241,111,57,150,5,80,239,30,249,43,6,64,123,100,67,86,124,17,55,247,63,217,83,233,15,75,101,4,183,192,142,150,64,93,5,155,52,249,48,68,147,183,216,180,87,152,114,151,247,124,144,107,23,251,1,202,136,192,1,189,137,59,238,101,96,148,101,233,182,224,187,202,176,188,109,123,173,231,180,167,146,101,172,80,187,210,240,235,236,239,204,171,249,196,93,230,90,225,11,108,189,76,232,62,165,121,200,2,173,109,137,251,124,163,64,180,189,201,103,138,75,152,123,195,6,247,87,135,254,253,28,66,175,116,71,210,13,42,85,146,195,221,38,39,26,9,249,216,210,205,198,206,40,100,191,31,97,146,244,192,223,229,124,196,24,113,90,238,145,176,51,233,94,57,91,188,161,40,226,12,50,172,122,109,80,239,80,251,159,246,50,140,15,53,233,202,207,121,5,84,102,176,215,238,20,18,172,39,22,113,80,41,50,143,62,118,217,133,174,88,194,9,157,88,103,76,203,121,3,22,138,232,77,19,149,90,91,179,48,246,163,172,94,156,138,251,232,64,93,79,247,181,68,151,93,116,235,149,122,45,112,225,20,22,1
 7,24,120,182,174,10,72,179,218,82,212,238,37,96,32,64,183,70,156,81,162,253,199,247,207,115,41,179,186,157,94,110,162,228,129,206,188,194,230,15,34,78,143,247,143,84,115,38,7,230,242,29,213,164,46,14,37,222,212,64,35,239,45,220,206,107,65,100,53,26,152,72,42,251,225,83,48,87,188,56,164,22,130,27,238,203,29,250,61,189,141,168,113,224,200,183,244,10,152,72,79,140,176,88,159,174,227,151,37,245,204,228,187,239,53,254,173,106,128,98,238,240,14,178,164,146,78,81,213,88,192,34,25,84,198,60,236,249,204,128,54,133,18,156,162,106,179,136,43,131,191,130,168,157,104,119,99,242,1,214,67,233,60,157,220,175,117,60,189,54,74,177,214,246,119,108,37,24,30,226,121,49,252,120,156,20,156,11,32,121,223,208,198,110,192,157,87,96,20,28,44,36,251,206,235,121,21,4,250,147,243,213,238,2,119,59,241,163,67,219,97,9,148,153,24,136,90,159,37,183,54,148,199,184,50,48,113,112,232,232,48,64,209,213,22,132,35,231,167,26,10,151,71,156,134,126,55,246,212,237,38,96,36,109,203,38,41,97,201,255,230,246,209,110,225
 ,56,153,39,172,168,44,137,55,99,53,59,158,162,35,19,121,33,116,204,29,86,197,202,47,55,154,19,98,201,117,45,26,36,102,112,219,59,140,149,159,123,159,57,155,248,150,198,77,54,246,185,172,14,100,82,124,130,81,209,253,122,84,143,78,65,114,29,237,255,21,89,32,206,220,9,37,0,48,230,171,38,97,76,134,48,144,23,102,211,189,150,20,220,208,0,72,234,190,132,106,117,163,190,174,244,70,100,156,89,79,148,192,215,170,200,14,251,93,245,70,0,43,136,152,33,73,35,155,19,162,9,65,201,15,149,2,152,185,94,11,246,66,209,103,125,23,218,141,140,74,73,9,158,92,48,168,192,89,96,45,80,245,241,125,38,85,87,163,46,67,27,222,36,214,14,45,220,141,197,23,107,178,213,246,50,241,56,117,153,174,37,154,68,96,65,149,16,152,239,165,184,34,34,124,206,167,253,201,113,175,81,202,75,80,51,80,100,43,38,42,11,55,37,81,84,187,99,9,158,201,186,147,201,105,160,211,27,135,73,63,174,3,209,181,192,5,14,252,115,112,24,44,226,57,118,13,120,112,109,240,211,162,80,54,87,12,181,176,84,211,10,67,59,203,86,193,14,72,74,58,16,192,99
 ,8,123,158,215,218,216,3,36,172,64,81,67,165,122,243,199,109,182,163,201,191,112,57,141,84,192,13,117,53,104,251,201,166,9,247,11,254,103,74,36,205,36,10,144,240,116,104,0,19,0,28,100,140,53,74,125,53,55,222,67,232,5,233,70,188,59,240,221,131,70,58,101,223,147,51,161,50,7,76,218,76,213,113,45,141,85,101,206,249,156,97,75,96,56,79,207,157,80,90,199,219,28,249,235,127,99,67,230,232,51,200,62,194,233,147,133,174,211,122,146,230,53,202,195,169,89,188,103,122,165,209,30,33,241,137,185,192,128,158,101,222,147,129,33,153,39,68,188,49,210,176,168,68,90,192,178,19,171,25,212,161,40,208,157,196,148,112,196,21,242,45,208,147,17,78,128,105,116,224,72,52,217,9,37,79,251,191,137,110,89,192,185,254,81,49,140,206,174,215,56,116,138,204,84,185,145,55,193,202,35,63,222,145,160,194,105,216,155,220,245,211,38,102,250,186,66,143,17,241,139,20,2,91,179,108,224,230,223,198,148,136,48,14,207,231,136,172,3,244,15,173,255,251,227,55,16,29,100,125,50,73,66,122,125,92,6,26,205,84,187,50,41,195,64,126,1
 37,96,52,72,48,232,126,111,191,114,224,99,120,107,164,185,225,83,162,51,86,85,212,86,91,184,62,94,44,230,5,41,23,8,20,253,193,0,69,241,108,197,27,255,33,124,222,85,171,5,45,44,14,139,188,215,50,1,223,243,239,213,73,201,201,217,245,157,189,99,47,100,85,174,228,232,196,212,81,14,214,191,223,205,219,247,27,150,200,178,175,147,80,59,235,254,128,211,197,106,254,169,58,91,44,123,4,111,86,136,70,12,56,29,54,145,175,162,224,184,132,194,189,78,12,145,138,198,118,89,65,66,126,255,170,1,29,139,185,229,23,75,252,27,219,98,180,241,153,67,210,37,254,97,200,162,201,231,83,228,58,193,247,151,87,211,88,188,98,116,70,221,62,235,139,3,68,102,205,160,20,244,150,225,210,244,95,233,200,45,78,180,53,46,180,235,193,101,123,94,113,192,136,95,244,10,41,135,62,5,34,87,216,106,19,17,50,173,251,218,25,230,25,111,52,119,131,242,178,204,238,214,199,11,8,166,255,59,170,193,159,148,93,66,49,168,212,0,224,127,119,135,57,90,27,33,110,113,241,99,83,159,142,197,254,127,142,111,125,18,127,24,183,212,170,223,214,
 250,227,197,249,106,178,167,154,238,113,76,7,160,55,201,252,30,223,151,71,211,67,24,35,138,223,211,161,193,70,197,243,50,45,160,238,197,139,84,226,12,146,5,246,252,222,20,34,187,206,157,176,116,180,124,243,167,178,185,72,231,98,182,105,110,155,61,247,181,224,98,28,18,33,218,247,254,245,1,135,145,167,166,50,117,165,72,38,17,250,144,121,44,252,164,227,37,40,210,246,189,69,209,197,218,255,229,159,45,35,143,234,241,241,15,197,147,32,3,11,229,232,147,72,116,209,14,168,14,229,167,103,56,56,59,255,191,61,187,50,2,204,78,14,227,240,18,114,247,182,36,234,15,218,14,252,62,20,220,155,68,67,63,47,231,5,85,48,112,12,140,68,215,80,35,184,114,151,22,179,115,144,227,158,12,160,239,60,24,179,123,81,61,135,115,73,22,193,187,44,157,73,200,158,36,136,144,98,3,76,72,65,131,85,33,7,209,230,186,25,191,24,31,149,71,246,28,40,66,165,182,127,93,144,12,96,173,113,209,190,65,216,148,122,12,143,212,208,51,240,244,166,58,190,108,120,173,174,204,240,251,168,108,137,32,187,87,166,60,109,101,206,164,217,161
 ,215,177,133,199,159,70,116,62,71,145,31,154,229,140,231,255,47,113,122,107,250,141,92,192,214,237,21,143,0,86,148,58,10,148,129,191,229,80,246,191,147,51,62,177,69,21,147,171,16,8,144,187,229,6,150,204,110,29,82,75,189,223,38,246,93,251,36,69,91,69,141,105,56,226,171,35,155,27,106,86,81,131,145,42,118,239,210,228,199,136,187,184,177,243,196,71,153,160,62,42,20,190,206,184,122,124,244,147,209,133,24,250,6,179,19,90,151,158,236,38,60,183,118,28,235,214,62,166,119,216,150,60,93,10,253,239,131,6,17,227,98,95,21,181,214,112,93,70,100,71,228,68,85,43,55,223,216,55,169,99,30,138,88,68,236,102,165,18,179,72,252,51,151,238,138,184,8,157,89,80,134,65,118,142,66,69,29,108,181,50,255,244,126,65,245,6,233,238,131,245,207,209,78,132,205,168,237,123,171,42,247,56,168,217,203,209,214,50,174,87,198,63,207,219,185,163,243,72,55,80,86,78,177,4,179,196,198,106,38,219,141,206,250,60,235,128,2,189,165,246,172,205,123,2,110,142,202,136,171,129,52,164,1,25,153,240,95,145,29,46,135,17,67,130,191,91
 ,200,230,123,182,62,193,120,195,66,202,158,178,45,69,198,15,165,117,149,56,89,238,9,19,26,85,156,67,177,68,132,254,127,177,11,113,178,223,50,234,102,218,89,148,251,217,85,202,228,70,235,188,8,228,110,89,148,32,153,122,206,37,167,188,71,240,201,201,150,64,158,23,79,17,54,5,120,131,210,124,119,184,245,209,159,90,35,248,73,219,67,1,186,250,125,199,222,27,107,48,32,15,123,254,33,6,226,89,69,7,173,175,62,72,176,252,12,13,23,47,133,100,180,179,109,184,206,200,240,0,30,135,178,237,68,90,192,220,48,228,197,113,149,55,208,19,109,155,156,24,70,15,81,50,183,198,19,109,211,243,234,56,40,122,164,85,178,21,148,222,189,206,87,206,74,65,53,14,88,214,244,235,1,19,189,229,236,110,164,43,110,82,66,90,211,221,109,116,230,12,21,176,6,253,233,145,103,231,214,86,203,162,235,42,195,227,215,196,166,37,212,63,129,117,89,40,242,82,199,119,113,213,156,88,126,34,17,205,135,195,152,203,58,131,66,15,74,25,9,24,213,118,27,103,2,92,115,156,223,8,110,226,51,50,140,128,190,56,238,147,1,163,225,40,35,107,183,1
 52,158,13,10,114,100,193,211,56,181,43,156,138,157,72,74,207,115,37,114,136,85,65,43,53,16,59,30,40,242,106,94,208,14,31,178,43,47,5,12,248,2,50,246,237,206,18,46,70,105,214,28,187,86,3,33,33,1,137,173,181,62,245,219,186,196,83,20,242,87,126,229,151,225,204,74,47,116,42,166,240,124,120,74,231,16,40,88,85,13,50,125,76,149,3,116,85,30,12,209,212,117,221,50,202,56,230,87,252,81,145,44,213,179,208,198,47,1,87,79,158,238,89,203,226,230,251,152,246,76,77,220,208,92,109,246,131,232,71,220,5,12,70,173,162,248,69,217,14,97,247,228,79,251,252,118,220,36,49,191,240,82,11,109,28,124,174,32,1,109,143,249,38,182,162,131,94,187,195,155,234,98,162,82,204,34,176,179,139,139,192,163,129,183,40,131,179,196,148,239,8,170,161,209,218,212,232,164,169,32,39,165,77,18,52,107,117,78,38,76,0,41,53,107,130,3,19,216,171,95,76,229,144,46,78,143,37,60,120,51,39,170,89,153,88,68,33,253,237,135,238,243,69,218,197,90,197,212,233,240,229,21,218,55,180,168,195,102,75,202,154,109,161,195,24,65,174,224,240,159,
 248,238,231,245,172,174,76,114,205,243,176,67,43,106,29,90,241,169,137,64,105,179,174,134,119,11,188,67,123,54,109,142,68,184,56,16,174,80,21,199,231,161,165,210,251,207,118,199,66,210,108,124,101,181,78,162,147,127,115,217,171,141,116,87,57,174,131,47,41,48,205,112,84,213,51,225,110,203,235,195,212,5,67,119,58,114,111,41,45,220,34,171,234,20,185,181,32,140,252,28,37,197,242,112,117,136,132,158,54,197,104,235,253,132,13,190,64,131,22,97,201,4,179,133,17,226,162,82,167,83,77,164,144,23,238,160,162,117,53,30,255,118,185,177,225,60,152,31,77,153,186,22,93,248,93,185,242,7,124,45,61,66,22,13,84,98,145,86,103,233,50,85,45,66,64,67,35,127,215,165,108,246,223,183,0,115,134,96,201,227,101,228,53,192,24,191,176,71,98,155,10,185,25,188,76,18,51,230,15,229,132,54,214,24,243,131,204,65,71,7,231,21,222,187,72,151,183,127,36,132,98,42,220,188,90,192,43,254,157,153,47,176,118,143,68,155,229,107,109,242,110,236,251,141,140,37,94,112,229,217,131,79,99,240,219,215,2,225,53,88,189,119,106,167,
 78,16,26,197,117,179,48,83,72,164,216,53,154,151,161,172,222,58,159,226,199,31,23,90,168,35,255,242,8,88,84,107,148,254,255,197,68,24,53,58,242,158,210,222,74,18,131,255,184,188,69,192,28,224,172,212,205,178,33,238,6,40,227,227,62,127,99,74,217,49,186,158,93,0,60,151,219,50,84,224,162,95,70,60,86,245,92,38,86,47,25,106,32,219,104,68,23,76,170,142,16,225,197,95,91,53,56,245,212,13,223,95,29,77,142,116,226,208,61,210,55,139,218,39,29,181,106,96,233,122,7,130,114,105,218,6,175,16,154,223,59,234,211,97,98,36,140,0,223,97,157,25,136,201,140,151,118,121,125,116,152,201,85,28,170,10,144,154,180,28,160,165,171,46,211,239,157,191,200,210,99,91,219,147,135,185,38,78,195,123,119,210,143,171,20,77,92,178,104,242,226,181,134,159,128,233,133,116,50,176,119,57,103,146,232,11,156,17,192,111,217,50,226,207,61,186,43,95,252,185,163,85,52,230,134,211,110,20,155,146,78,202,116,112,97,0,170,245,152,49,204,220,209,125,143,4,54,25,68,148,188,35,205,0,37,195,41,252,59,47,138,68,153,234,73,117,179,1
 02,185,6,121,154,51,233,97,16,176,17,244,90,232,118,226,160,42,82,134,113,216,250,32,174,178,63,12,99,250,163,130,112,157,90,95,185,248,65,96,76,24,174,66,250,18,104,177,62,219,82,148,132,27,213,154,196,66,34,92,54,158,215,82,139,82,27,37,83,51,12,140,210,72,87,239,60,61,232,168,87,117,88,80,224,17,255,223,164,144,251,22,255,147,204,231,39,182,186,82,61,183,249,8,243,41,107,53,206,254,103,68,8,200,253,60,111,180,29,108,38,12,167,20,10,1,135,107,164,50,105,139,98,51,191,167,221,92,89,91,249,128,193,29,198,73,253,228,214,202,14,47,56,218,221,127,204,112,16,27,58,64,244,250,46,7,150,165,208,157,209,175,154,124,235,71,55,252,179,101,216,52,247,239,250,121,234,251,95,246,44,241,224,128,192,65,202,231,126,211,159,44,71,43,50,235,219,154,84,49,181,90,171,71,52,29,193,238,133,17,32,234,217,79,239,28,167,165,42,162,52,234,8,192,136,47,15,77,128,107,133,38,73,65,129,252,162,107,89,180,212,74,154,136,4,50,153,1,178,182,25,136,54,234,32,255,47,101,34,20,106,125,137,249,159,236,193,166,1
 6,158,100,46,80,173,104,149,63,201,115,224,33,219,172,156,221,11,255,14,131,45,155,202,74,122,162,74,254,209,54,59,182,167,112,28,64,118,23,127,42,255,138,170,196,61,223,37,46,7,116,54,94,106,115,217,197,123,45,161,246,221,131,193,50,75,175,162,253,105,93,51,222,200,98,158,110,20,219,51,40,146,214,52,213,36,99,202,166,13,126,49,27,122,169,9,166,35,130,230,141,77,220,196,32,193,40,164,17,139,215,138,203,131,72,68,212,205,165,39,87,173,96,90,35,208,196,23,161,91,77,9,181,14,67,81,23,6,8,12,24,246,160,8,122,78,183,5,91,183,236,181,31,238,18,129,180,200,101,123,224,225,255,217,114,113,0,144,50,49,225,41,140,162,71,101,241,63,44,133,34,171,144,65,178,225,205,62,141,129,191,99,165,190,210,244,93,115,95,136,185,58,178,218,3,3,112,177,190,95,187,213,83,181,47,105,151,251,81,223,90,160,57,206,60,106,67,167,118,228,9,139,197,228,243,221,255,215,215,99,202,25,191,158,218,215,49,94,59,52,249,178,58,120,143,41,137,92,173,215,192,101,108,120,242,50,105,43,101,66,31,63,97,255,84,236,35,120
 ,84,116,105,2,255,1,103,225,49,196,24,160,224,9,137,116,153,220,233,188,126,141,210,39,91,115,8,223,152,48,183,244,190,155,157,53,38,7,117,50,173,99,168,61,225,39,227,63,71,206,50,201,180,250,113,150,193,217,237,195,81,45,200,42,135,255,47,22,58,60,111,107,213,7,170,230,54,31,228,65,88,1,177,124,21,241,82,51,154,246,108,143,177,203,45,210,74,64,232,185,210,207,102,32,33,168,217,193,169,128,160,41,73,51,244,6,35,254,204,8,209,182,58,105,181,44,21,220,139,148,36,91,127,224,5,242,62,247,86,252,241,150,124,8,20,234,243,141,10,76,27,130,228,16,38,97,136,87,150,178,131,20,28,90,142,96,160,171,61,137,160,84,16,78,29,179,143,230,173,103,236,83,174,70,170,252,45,133,135,43,150,8,11,25,142,109,55,175,192,190,249,169,86,110,243,74,154,220,110,29,21,9,241,22,82,226,164,31,61,61,202,6,100,239,190,223,53,176,116,115,252,47,42,143,76,145,38,15,51,129,163,93,111,64,154,39,52,58,118,161,72,141,112,236,153,129,208,213,43,135,71,7,132,248,49,65,43,138,178,155,234,57,79,249,233,6,254,25,23,42,8
 9,48,10,190,40,25,51,232,107,210,46,22,10,24,37,110,148,206,45,22,219,197,42,65,248,6,244,228,194,151,0,57,202,135,205,225,58,145,245,11,2,198,246,210,167,123,17,35,196,229,13,182,110,169,68,2,175,176,48,126,217,194,209,199,18,230,80,17,183,28,140,1,126,6,229,251,5,163,222,168,55,57,31,62,55,151,232,136,14,240,75,177,120,190,252,169,162,173,119,253,103,106,107,190,64,200,132,148,118,56,155,247,133,74,76,81,100,144,216,209,100,240,29,142,68,242,104,159,155,139,238,78,144,144,181,102,68,166,1,195,7,221,198,8,50,69,214,45,199,224,71,126,6,187,13,241,98,145,53,209,116,51,219,187,231,109,137,146,98,187,208,46,48,163,8,34,43,91,81,68,38,157,27,4,158,57,49,35,14,66,112,202,111,9,26,133,196,111,164,1,78,239,71,131,174,238,236,186,143,27,36,180,144,150,88,236,246,221,52,6,226,81,30,73,31,163,77,107,101,192,183,76,253,97,58,151,55,68,253,169,174,83,96,37,72,102,131,102,17,195,12,205,91,250,235,243,206,130,0,217,235,59,115,249,180,114,29,118,47,182,148,250,94,115,87,133,255,163,52,146,
 31,144,240,235,197,105,64,94,81,246,232,123,158,177,58,244,77,10,223,80,28,128,200,244,15,186,197,251,161,191,76,201,85,217,243,177,136,81,19,205,21,8,94,188,38,238,243,75,11,175,70,171,104,159,118,194,84,182,119,48,100,74,1,201,122,143,177,63,100,91,41,13,169,56,174,68,145,9,104,143,228,91,233,36,61,144,184,20,77,92,7,201,125,37,111,12,143,98,47,58,51,212,195,130,161,188,79,96,231,176,186,184,232,30,159,46,206,221,64,228,227,73,245,149,113,142,218,138,120,59,67,154,147,218,43,101,30,204,188,129,196,62,19,227,58,9,29,233,4,94,201,19,101,226,229,97,156,2,39,95,15,175,3,171,75,151,154,196,47,237,228,255,200,10,254,79,248,106,96,32,237,164,45,9,8,52,32,190,106,86,134,101,141,50,112,226,241,39,49,58,126,7,194,159,108,173,248,152,199,243,86,28,31,117,7,130,43,254,234,49,123,9,166,251,234,172,194,164,91,69,89,203,194,186,253,248,60,55,67,204,141,126,159,66,144,45,109,239,230,216,29,170,89,94,43,156,65,40,68,21,162,21,6,65,28,185,252,245,21,228,121,83,189,112,189,8,65,53,131,160,19
 ,110,66,210,57,231,47,122,209,115,42,79,125,48,116,225,0,215,24,70,148,4,154,182,46,81,83,126,219,121,100,14,112,76,83,20,46,182,77,120,232,199,23,95,17,213,108,244,243,99,226,225,65,218,249,191,50,181,251,62,186,95,29,25,25,10,9,101,205,179,209,232,183,74,220,72,249,228,80,232,174,23,8,24,182,111,185,52,54,111,194,48,189,242,183,122,224,96,216,63,4,104,179,191,138,246,60,22,207,57,143,35,130,57,128,128,176,41,103,162,177,172,110,207,61,147,238,235,171,45,106,33,131,58,67,134,149,148,175,66,173,5,200,207,245,72,156,101,109,155,115,61,183,145,46,239,76,229,96,69,199,25,2,29,152,164,175,199,220,44,1,238,198,0,41,36,248,54,239,247,124,73,203,58,168,202,201,111,4,87,182,47,100,79,197,143,209,18,229,202,43,183,113,54,249,24,176,185,175,203,16,210,138,224,65,35,8,234,247,63,149,100,197,130,115,18,10,100,210,174,219,32,49,147,0,28,110,17,48,10,28,188,180,180,31,176,180,83,72,39,111,118,245,34,147,238,72,177,172,137,112,233,210,114,91,195,198,39,119,238,109,189,41,176,253,226,126,25
 4,123,45,140,227,181,177,153,141,153,171,41,207,40,157,179,68,65,85,107,168,55,28,21,158,69,32,253,252,189,188,74,85,241,229,139,222,244,72,175,208,47,180,234,151,38,97,189,195,85,131,72,134,150,177,73,20,205,19,57,113,37,86,17,94,252,92,242,169,11,232,177,37,182,31,98,23,70,188,173,227,160,3,98,14,113,151,117,95,1,184,0,178,15,128,40,167,169,197,127,129,164,181,219,174,27,121,231,66,224,172,223,208,254,225,137,98,189,154,164,12,197,171,221,251,113,240,66,106,195,139,32,86,12,50,87,177,228,169,57,240,211,232,203,21,172,130,151,249,36,191,237,85,229,14,219,21,30,12,134,179,210,46,15,50,109,179,28,40,103,13,80,226,37,145,236,124,71,206,192,190,213,254,124,95,19,25,46,208,230,122,110,83,63,39,35,151,9,129,232,121,108,103,168,24,247,219,164,138,62,212,105,106,131,92,139,120,151,168,216,209,179,140,59,218,225,126,241,246,104,88,169,180,82,158,96,188,110,179,138,7,76,4,5,250,232,243,237,146,41,162,100,20,57,12,197,193,196,219,242,43,24,208,229,85,78,107,200,6,9,43,151,178,212,165,
 58,192,239,236,108,51,176,98,33,166,175,152,50,154,146,175,87,30,107,130,78,208,91,92,47,45,44,141,134,250,168,10,20,9,24,108,102,65,77,5,110,149,84,1,227,245,190,102,145,185,6,54,233,115,48,60,112,89,107,156,229,190,187,124,98,189,167,195,167,175,186,111,71,228,72,87,99,237,18,141,23,140,174,11,119,158,234,107,164,82,190,9,208,78,111,45,226,110,207,240,190,54,114,186,150,114,26,144,162,220,26,65,46,70,110,131,52,235,247,181,213,1,60,208,217,230,44,63,176,205,149,227,124,216,241,215,40,241,236,73,11,150,140,181,29,52,167,8,106,56,135,191,13,45,181,214,194,244,74,201,77,13,181,37,105,68,148,51,172,80,198,159,27,33,84,106,109,136,85,206,153,163,125,137,102,237,103,137,141,81,12,135,96,16,4,9,164,175,120,130,101,183,77,64,145,74,130,168,31,184,28,181,144,201,126,45,184,154,39,254,119,97,235,239,34,99,35,239,241,112,96,109,14,142,159,53,121,252,143,109,102,99,98,67,22,146,119,233,2,161,93,62,248,92,210,88,133,82,84,233,133,55,15,162,154,101,179,58,196,49,221,122,174,33,117,97,16
 0,236,98,20,181,249,41,237,85,72,115,27,213,131,202,196,157,20,72,230,244,49,184,26,138,236,72,211,131,249,10,84,213,146,173,173,125,13,172,43,157,255,167,100,67,106,84,34,17,8,211,137,112,95,170,8,162,139,68,208,99,160,65,162,20,54,203,251,160,149,91,234,178,223,25,20,43,234,217,74,78,248,144,1,188,10,246,118,248,10,118,97,144,42,139,65,183,168,8,11,126,170,231,14,85,70,72,113,87,108,13,251,199,79,139,48,17,233,60,227,153,109,54,15,55,241,138,254,13,65,97,152,191,202,199,207,47,92,83,21,43,34,140,35,104,225,179,126,112,6,94,83,190,211,126,25,253,26,219,165,162,23,113,192,34,27,197,252,55,248,153,34,144,165,232,201,152,173,72,108,240,161,43,6,204,205,54,79,95,48,167,32,182,223,131,73,74,106,28,86,68,244,75,72,99,104,186,172,198,244,134,17,78,13,190,108,69,53,138,8,131,178,250,57,209,246,18,20,154,170,6,145,101,151,198,244,38,209,182,84,250,51,232,176,154,224,218,26,84,219,21,167,132,248,121,78,123,48,249,222,43,241,71,87,128,216,219,53,210,93,8,63,149,183,250,230,122,22,13,2
 50,192,219,247,114,207,45,225,40,1,221,137,27,118,113,131,176,93,40,158,178,190,98,74,119,66,216,31,180,144,34,237,96,243,212,14,136,191,247,20,80,156,174,127,50,132,254,70,165,202,88,8,189,118,234,88,75,200,42,2,201,81,132,244,61,24,161,178,56,140,235,18,32,178,142,48,186,51,92,36,238,22,103,82,206,205,95,26,155,113,57,163,236,234,181,93,111,252,9,72,171,74,4,148,240,97,13,124,240,135,238,49,33,8,41,31,155,231,30,163,66,147,244,74,115,155,8,180,95,12,42,224,55,134,140,15,72,48,67,222,62,144,57,88,58,251,0,56,38,140,194,54,201,12,74,199,51,181,147,70,36,48,209,71,249,18,157,129,22,79,218,58,4,90,14,209,4,197,246,137,186,156,3,140,40,52,123,138,249,221,29,237,108,212,163,33,200,166,179,116,109,148,39,134,188,140,169,28,223,175,86,199,217,49,221,228,188,182,11,236,4,44,120,16,65,47,244,102,47,231,206,222,232,238,92,180,193,56,178,62,237,85,43,57,208,166,229,224,98,251,164,33,242,107,31,30,186,65,16,178,135,32,35,51,53,187,16,166,221,232,23,109,81,168,52,83,7,47,187,140,37,185,
 238,140,56,24,176,22,92,233,206,83,22,126,196,88,52,69,248,133,187,129,116,162,101,154,86,165,153,114,191,74,143,201,108,160,143,121,171,234,87,160,58,117,152,87,87,11,168,240,68,11,18,94,224,223,216,21,9,192,163,60,224,254,219,239,9,182,85,33,163,67,46,80,132,251,88,209,243,255,232,88,53,164,215,63,217,111,27,19,237,188,61,220,230,25,242,6,29,131,168,192,115,90,64,81,216,135,28,141,206,235,87,184,11,13,245,86,96,187,55,0,171,137,91,70,209,129,135,13,152,121,174,236,178,158,247,220,150,63,251,223,130,64,135,128,2,37,11,130,224,33,125,90,195,67,107,93,143,3,238,131,81,136,44,88,150,63,233,66,128,129,104,11,119,148,81,228,165,177,214,240,84,127,47,235,17,20,115,85,184,33,2,208,246,204,255,87,233,188,146,18,47,38,24,215,88,100,57,216,178,32,144,77,66,165,122,55,116,191,4,249,198,246,216,23,33,216,142,40,201,0,110,62,147,79,38,59,28,137,162,132,62,87,201,213,234,117,117,81,116,77,93,129,0,44,82,102,24,236,188,145,145,251,198,46,21,107,255,82,252,75,23,152,170,3,118,61,149,175,11
 9,194,81,87,103,225,195,19,19,167,194,241,3,241,165,69,152,82,129,99,45,141,0,87,48,26,203,70,153,129,147,17,73,159,229,216,204,57,178,29,141,81,189,65,245,100,149,55,77,109,120,240,109,137,182,154,194,183,234,74,235,77,52,196,33,195,252,231,213,209,36,161,125,244,64,232,182,255,221,127,172,13,227,78,177,123,13,4,159,34,231,41,85,42,92,238,216,121,199,113,179,163,69,93,86,113,25,79,46,7,12,156,171,182,155,12,113,134,28,239,70,114,227,65,184,19,60,149,227,187,132,249,117,251,72,45,128,24,112,12,85,122,246,117,214,180,179,127,218,190,48,4,83,88,48,117,179,201,47,134,118,57,40,39,249,246,248,29,239,74,188,242,35,17,34,33,119,239,184,68,205,54,179,73,226,137,66,167,42,233,54,174,118,54,121,227,145,184,105,116,236,9,224,16,139,11,99,144,206,141,27,21,83,180,100,101,113,125,232,122,164,253,54,109,61,133,37,166,127,169,172,7,175,68,204,235,43,216,244,235,231,37,182,153,87,119,174,169,178,255,205,40,197,54,77,40,227,79,50,238,205,1,215,6,253,38,194,169,209,4,198,34,45,216,52,150,101
 ,195,117,55,249,164,161,28,84,161,23,227,243,17,153,81,234,19,103,241,221,240,142,87,160,29,39,140,54,155,238,195,129,104,93,247,136,181,149,190,235,23,219,83,77,102,50,145,225,156,129,118,217,42,142,84,193,217,160,8,51,72,49,234,23,188,222,163,137,28,66,63,173,77,45,179,48,196,6,89,100,150,147,119,184,103,161,62,101,44,2,249,227,190,147,248,116,193,26,236,193,205,194,205,142,160,44,19,114,153,61,10,160,77,132,7,50,22,150,213,9,57,189,207,99,169,191,79,150,198,133,89,175,22,228,111,255,12,215,163,39,102,188,170,243,238,0,162,250,25,86,107,238,135,171,143,228,175,235,228,197,247,40,41,13,199,130,88,135,237,26,69,131,54,138,162,41,35,218,244,53,133,77,118,240,25,115,144,87,59,90,133,121,180,177,243,137,134,41,48,86,67,119,213,102,241,228,175,58,110,85,245,209,99,162,89,128,183,174,27,212,83,225,135,134,42,245,112,207,218,64,157,237,180,206,119,10,114,61,170,69,150,182,239,246,9,41,217,21,3,202,104,146,45,54,166,63,10,88,137,140,72,242,195,175,165,250,41,242,252,207,146,196,168
 ,36,210,181,89,93,118,173,82,249,144,33,182,82,204,195,0,255,242,210,45,218,83,19,4,37,107,211,227,60,215,167,234,87,155,187,25,38,217,121,250,219,219,207,132,30,47,176,41,6,133,98,86,231,166,28,230,254,199,191,40,250,30,157,113,20,112,189,243,33,69,141,238,77,66,209,157,220,163,247,175,99,152,28,36,25,75,239,109,47,180,220,37,201,161,43,126,5,234,54,38,186,224,233,130,25,93,118,206,122,192,145,249,44,52,109,42,139,200,10,97,131,219,99,103,177,102,219,123,138,225,37,101,87,98,59,76,166,204,6,201,85,93,110,119,134,24,66,13,92,176,93,68,10,66,141,22,68,56,115,153,246,107,82,55,75,66,0,64,17,67,182,255,44,158,111,106,151,57,204,157,156,4,245,56,213,255,198,215,97,111,202,200,195,21,82,213,197,246,177,75,106,81,161,57,141,41,169,30,53,219,204,57,129,46,174,177,255,128,206,125,238,58,143,25,171,75,247,204,135,206,59,70,77,229,129,181,76,140,85,128,172,220,254,150,157,128,245,12,81,3,14,23,65,163,200,83,3,41,195,144,5,136,65,157,94,100,133,191,211,159,13,133,107,204,206,197,74,123
 ,103,211,249,22,103,69,191,244,114,247,222,197,113,16,65,248,130,34,111,156,243,141,149,51,245,157,60,181,200,204,229,183,173,144,19,2,55,99,128,248,126,84,87,49,125,33,200,178,135,37,254,63,15,110,45,32,20,71,94,7,3,64,192,198,78,231,56,76,68,216,165,7,99,8,134,53,8,138,108,114,117,102,199,82,75,241,116,7,194,160,186,96,181,33,105,188,210,251,137,145,224,176,165,49,148,111,52,33,216,97,234,117,178,65,63,126,17,82,63,222,149,173,220,239,199,143,64,217,53,158,163,254,55,79,205,32,242,56,1,107,188,157,243,25,212,76,25,117,50,178,204,173,145,249,173,174,61,217,10,26,211,170,17,177,84,250,100,123,46,223,235,141,60,89,226,22,220,47,3,241,62,106,198,76,205,85,106,184,240,25,183,210,222,7,135,107,121,177,128,246,231,159,7,217,168,16,253,175,70,111,3,20,170,84,199,110,95,35,51,79,177,63,89,211,153,185,184,95,5,33,240,110,54,25,129,74,153,111,103,89,143,135,99,78,176,148,54,188,144,132,2,216,106,13,185,187,59,240,214,125,157,252,149,169,183,127,208,199,2,36,215,164,98,2,130,59,164,76
 ,117,218,97,235,106,121,212,123,85,182,153,184,149,194,138,6,34,45,192,212,134,111,226,180,23,183,247,227,9,38,237,239,105,203,122,172,35,26,230,248,35,33,60,177,148,131,55,122,147,203,72,142,87,47,160,12,37,236,151,150,92,173,73,194,105,49,158,158,138,30,108,217,142,197,84,142,33,224,1,81,157,195,143,1,209,30,254,72,220,69,26,28,224,78,233,189,103,183,200,143,230,56,181,53,176,90,4,217,98,0,112,176,48,178,252,221,38,135,236,93,249,5,152,20,70,157,92,30,141,52,234,18,79,30,12,211,83,3,184,10,135,81,16,65,216,167,230,226,32,50,241,22,113,221,89,235,7,113,167,239,208,107,180,91,241,58,62,244,28,169,79,79,86,99,0,15,236,16,11,158,235,234,181,116,182,251,120,36,250,56,40,157,171,56,17,123,149,199,88,77,18,92,107,15,140,115,174,137,9,128,243,242,33,231,103,148,45,171,65,62,177,26,23,125,170,2,224,251,244,182,1,54,77,234,124,103,81,106,99,7,207,191,109,216,78,114,74,61,91,158,217,230,63,213,184,15,85,86,162,235,19,11,173,159,160,58,50,114,142,77,55,157,65,129,171,121,209,190,225,6
 3,20,201,231,186,30,196,154,140,189,180,66,122,61,238,53,113,148,59,141,74,183,246,2,85,6,134,68,51,184,114,89,123,154,202,188,92,156,95,119,236,132,180,87,38,242,85,156,146,129,215,222,104,95,32,83,195,50,97,194,43,8,175,113,164,73,200,133,210,7,26,6,250,248,193,142,153,204,122,109,54,5,77,100,144,104,202,222,28,238,15,132,145,249,247,58,111,51,183,125,27,58,250,130,20,153,51,102,30,9,202,43,98,22,201,245,243,97,38,209,205,37,91,75,44,125,77,116,100,123,0,117,33,6,247,158,181,133,37,173,158,58,120,192,128,86,183,115,43,72,199,106,183,250,254,244,3,51,146,15,30,241,161,33,22,166,111,86,60,3,96,166,105,190,87,29,53,59,13,234,255,37,96,57,248,115,99,28,243,133,153,150,112,21,105,127,113,26,99,224,182,94,118,85,124,169,50,126,118,79,181,140,103,151,132,251,159,49,206,213,87,142,80,104,109,216,170,221,125,223,121,143,116,201,160,235,226,254,27,165,74,105,248,238,123,152,117,200,12,136,216,233,236,32,46,239,172,57,186,115,6,211,100,158,138,255,195,23,1,159,0,154,43,126,184,26,1,3
 3,206,113,131,5,219,219,69,233,190,30,82,224,143,103,206,143,148,97,121,25,218,124,12,233,3,15,159,164,25,118,203,142,99,248,184,121,101,113,5,79,32,188,157,141,34,42,81,39,170,35,96,153,181,112,58,54,197,52,195,188,101,231,28,59,183,54,133,167,94,206,104,164,237,94,29,60,51,10,148,102,215,96,10,82,177,118,70,15,156,22,76,102,135,123,157,121,220,227,50,155,24,46,234,16,75,122,214,134,200,26,23,115,205,177,100,212,223,85,126,8,50,78,148,102,87,105,58,137,106,70,252,165,61,51,116,192,115,228,251,138,51,119,60,15,134,85,67,137,69,26,168,250,11,41,195,76,78,185,145,49,240,92,238,244,96,195,183,119,229,141,149,242,77,45,191,80,5,131,201,54,109,95,124,204,186,44,86,145,18,170,206,41,83,200,146,152,129,99,135,51,227,230,240,189,30,114,111,255,189,105,253,156,129,202,29,141,87,42,144,18,245,5,74,199,117,236,30,62,113,1,129,34,186,45,139,238,118,131,148,96,42,199,99,40,140,56,128,120,106,151,0,42,75,65,102,210,43,34,209,91,137,61,110,233,12,186,247,114,140,139,228,226,88,245,188,194,
 128,222,122,216,172,76,174,82,5,85,88,42,72,175,67,96,211,203,162,117,8,73,241,25,227,150,177,92,227,102,89,214,76,162,209,56,176,59,204,183,110,10,7,114,100,189,155,232,245,34,225,111,19,12,101,57,25,76,56,119,89,14,84,225,245,130,158,115,169,36,190,143,100,164,82,217,179,188,214,25,226,254,216,189,180,62,98,48,101,203,238,27,82,6,44,182,84,238,137,85,254,15,95,187,252,95,22,110,18,236,110,221,125,206,248,244,12,247,88,243,68,8,7,19,34,211,7,244,41,145,204,254,133,8,114,115,193,248,145,41,199,248,196,127,247,248,184,44,187,191,234,27,95,134,94,89,96,148,95,140,218,95,107,37,253,136,99,38,111,188,91,93,205,2,71,220,196,116,40,239,67,247,15,198,109,43,22,183,5,8,68,202,149,45,206,235,222,81,112,229,82,118,244,86,207,220,140,109,223,58,234,82,202,183,210,248,160,146,208,201,34,15,15,143,216,4,167,144,70,135,127,251,41,63,2,150,139,169,196,220,141,76,163,130,82,117,182,82,234,108,186,205,235,31,156,152,51,197,111,196,161,64,105,198,159,218,40,82,127,30,90,133,81,11,254,77,98,15
 7,243,142,156,52,204,239,108,119,246,48,96,145,166,128,42,17,245,69,33,54,121,246,169,230,48,195,209,11,16,211,60,212,114,55,56,71,38,166,144,183,147,172,176,35,22,178,201,204,229,37,125,209,105,238,126,202,196,224,144,202,61,213,129,129,127,108,45,28,22,243,47,244,199,240,249,254,237,64,2,126,14,244,0,139,62,24,21,209,108,3,15,115,16,126,191,92,252,187,170,32,17,115,27,150,147,125,12,254,176,250,189,101,35,86,187,249,140,30,214,89,153,107,222,194,16,110,164,135,254,145,143,167,244,128,112,39,77,250,51,22,174,153,230,148,140,55,203,117,247,62,193,174,10,160,91,194,85,235,117,28,96,92,212,227,117,183,204,21,46,21,122,169,211,24,32,166,176,40,235,233,156,153,216,0,128,134,49,39,54,45,159,103,104,24,161,145,142,93,7,52,173,178,92,90,66,171,243,158,131,37,202,118,104,234,130,242,190,171,200,205,158,252,127,184,254,93,174,24,112,131,139,216,15,85,152,108,230,11,172,167,58,48,191,187,44,172,113,181,51,11,51,137,193,181,218,229,190,236,189,98,189,76,135,30,191,251,45,149,114,68,182
 ,96,127,144,245,168,24,175,180,131,114,24,227,240,16,27,133,86,210,216,179,43,50,124,149,166,47,102,249,99,48,27,42,248,208,250,93,152,18,37,244,128,250,80,241,214,172,171,110,151,79,57,243,173,12,64,70,107,14,28,88,7,159,55,34,189,63,254,25,243,206,55,42,240,191,120,201,180,247,181,75,60,153,122,211,120,149,129,93,123,247,213,248,166,183,246,86,233,179,129,213,25,52,51,55,205,147,200,189,106,89,146,192,113,157,40,106,139,107,4,155,150,50,126,81,10,83,249,202,125,67,215,251,79,95,14,145,212,78,227,219,54,104,221,144,250,130,96,36,169,176,141,133,49,130,55,137,32,155,58,187,52,52,190,159,156,129,83,111,2,63,162,218,143,5,83,203,81,229,86,59,35,22,2,131,149,44,84,120,14,247,163,30,155,244,132,121,18,184,238,117,1,202,107,28,237,27,166,213,200,227,54,166,37,95,117,1,175,220,244,206,128,135,173,244,146,13,82,77,5,253,230,140,84,148,250,37,163,97,174,153,14,252,184,133,19,40,187,140,181,32,189,60,24,88,39,246,115,177,114,64,219,198,187,3,222,69,18,191,34,53,210,57,135,220,147,206
 ,205,88,103,57,193,247,10,228,35,78,148,184,87,181,42,12,140,68,3,214,141,223,36,94,236,55,152,149,21,197,169,107,105,32,133,154,212,142,132,70,25,201,93,61,121,67,232,91,247,182,154,91,82,173,130,15,205,113,184,155,115,134,121,161,37,121,48,224,144,239,231,2,92,216,190,5,33,22,6,134,167,23,101,116,188,197,66,218,87,84,126,137,68,158,93,253,154,25,131,139,117,93,100,57,105,231,30,159,225,38,73,124,97,218,94,133,176,1,250,210,6,40,149,131,156,210,120,196,111,207,69,164,103,139,40,196,168,176,82,202,250,147,151,44,79,119,46,230,110,104,242,205,192,228,111,50,93,248,254,30,17,62,93,210,24,85,51,146,179,189,186,51,50,232,100,157,170,232,229,13,36,236,123,194,115,26,191,241,91,192,22,162,132,8,247,45,195,181,163,3,133,73,198,205,127,146,232,5,87,157,222,178,236,218,45,195,6,15,160,196,31,106,183,98,184,82,215,227,4,174,250,220,153,55,27,108,169,200,43,191,232,150,229,238,219,205,182,146,249,251,155,106,194,255,150,227,73,40,207,114,233,69,250,25,198,18,155,197,100,227,101,47,173,
 79,73,237,9,220,61,70,223,169,144,129,47,138,53,244,92,132,205,108,129,122,119,2,89,124,93,39,201,167,161,65,220,138,114,157,159,222,147,53,41,158,39,165,109,253,172,35,172,175,123,45,37,170,37,117,152,142,146,22,11,109,12,91,22,16,123,206,28,18,48,125,108,89,163,47,223,222,8,81,171,206,157,178,7,133,28,68,69,185,35,128,130,176,214,35,123,205,235,153,35,163,254,83,232,137,113,94,184,188,168,204,11,194,17,229,51,60,212,60,241,66,188,51,232,227,186,61,255,151,68,12,51,129,175,4,138,223,76,39,227,17,225,238,207,201,120,172,242,216,253,118,102,128,254,253,37,139,0,96,31,81,52,103,18,180,143,69,87,28,233,213,16,213,159,253,56,86,79,174,197,58,223,56,91,119,9,116,156,255,0,34,41,89,175,163,34,90,126,98,105,109,251,238,47,152,195,177,66,54,130,135,248,120,43,122,58,63,45,22,83,56,5,128,51,195,140,88,228,254,98,42,138,69,150,180,143,13,135,227,234,77,40,249,217,103,4,143,100,18,129,24,129,200,148,248,202,247,126,45,127,213,238,88,132,39,208,122,212,121,84,134,127,169,235,16,152,156,
 59,100,35,243,133,55,192,87,252,196,115,121,26,67,190,190,110,156,206,106,198,154,206,153,227,238,223,151,225,194,203,35,177,155,167,91,55,193,43,118,167,38,198,2,239,48,230,11,168,158,163,121,250,194,56,164,61,11,62,156,137,62,42,27,24,108,3,93,89,188,89,134,8,84,39,43,167,229,174,105,52,9,233,102,148,109,19,120,177,27,215,86,240,24,146,179,35,243,38,230,109,230,228,173,210,252,148,221,139,110,106,68,224,153,239,162,98,13,153,65,180,88,231,163,76,95,185,121,178,227,128,254,130,35,247,211,93,166,143,7,120,87,62,63,169,214,176,240,73,215,13,175,31,161,1,76,120,131,160,236,238,237,31,99,215,243,84,10,124,194,156,176,3,136,12,147,98,74,71,130,238,69,153,115,247,238,128,175,243,218,163,102,237,205,147,146,212,4,201,118,33,123,109,99,174,244,185,146,17,183,244,155,198,51,144,12,133,93,182,55,81,144,198,99,163,248,177,249,163,185,234,54,74,243,188,15,191,224,40,134,170,153,194,193,218,129,86,8,160,33,104,206,99,165,199,88,41,176,152,140,58,97,127,233,80,244,116,118,123,188,213,153
 ,122,182,125,211,173,32,253,235,190,14,202,138,163,95,236,45,163,149,92,218,196,116,43,23,203,189,206,64,165,59,178,48,33,148,101,171,94,120,83,187,119,146,7,83,125,231,57,134,29,99,101,250,235,86,122,160,190,86,70,185,125,184,127,220,27,237,2,108,75,255,7,82,57,211,223,250,58,246,105,123,124,28,97,49,150,121,71,39,173,75,29,79,154,187,245,59,68,186,55,198,251,126,208,101,102,233,190,11,165,140,236,207,227,107,116,143,229,120,32,233,134,134,138,90,170,224,160,216,216,115,148,22,9,226,41,46,35,41,173,176,201,56,2,255,92,216,138,49,95,40,28,106,97,80,233,63,148,2,20,246,168,41,117,254,5,69,200,71,232,196,15,177,59,125,239,32,147,172,92,33,185,173,142,88,122,208,218,73,223,100,117,28,104,119,151,247,80,56,249,187,93,196,232,135,131,232,221,58,182,50,35,66,53,201,175,188,193,152,87,69,73,169,182,42,92,72,152,52,88,129,192,166,135,34,142,39,128,212,48,179,112,69,27,69,63,177,239,66,117,179,90,155,154,76,153,75,148,239,128,247,105,196,206,133,46,216,56,71,12,249,202,66,97,77,178,2
 0,82,18,216,80,167,64,232,159,195,119,80,220,58,202,41,37,126,139,235,35,176,148,44,98,3,55,129,99,49,0,82,226,63,59,224,120,200,192,38,132,150,49,178,149,66,52,81,152,220,188,191,187,72,204,151,128,79,14,150,50,157,111,145,211,250,10,218,135,130,160,180,0,27,76,228,91,127,208,174,190,145,159,172,249,246,46,191,41,86,136,249,253,33,70,181,6,254,68,240,49,125,127,54,104,211,96,75,170,119,173,163,186,19,44,24,206,37,169,133,241,237,152,163,23,103,150,92,161,128,67,217,208,143,15,208,129,116,224,202,130,231,224,91,240,198,28,10,197,30,94,27,168,39,124,135,250,181,218,174,204,80,21,51,164,138,147,189,132,74,164,54,125,54,112,255,138,238,200,213,33,214,138,0,45,1,158,215,188,41,230,17,75,126,105,1,207,10,121,134,71,104,170,117,250,154,146,241,116,85,192,252,3,58,202,58,140,21,182,51,88,114,180,9,223,70,68,86,10,76,127,100,149,167,221,75,249,244,128,252,30,32,161,159,162,44,158,110,88,4,29,188,98,80,32,97,150,54,9,106,207,31,18,115,57,28,211,107,185,196,14,204,22,201,131,2,124,64,
 0,184,206,127,164,13,150,105,246,209,10,3,182,153,230,141,184,151,110,121,178,234,60,64,96,196,69,83,134,191,46,237,36,252,176,80,232,99,84,119,167,177,113,245,82,88,202,31,212,53,54,230,119,29,127,236,241,246,164,54,98,128,152,210,118,151,244,86,209,75,238,175,17,25,55,228,169,186,195,233,210,28,195,87,238,113,116,198,209,43,237,211,17,116,0,151,35,131,1,231,80,134,146,252,27,120,225,91,109,105,190,122,90,253,203,53,178,127,85,2,97,166,241,145,205,246,98,103,85,64,132,178,126,49,54,155,91,201,244,122,251,1,144,244,212,71,174,225,226,128,74,19,150,94,154,170,254,219,219,228,105,242,136,72,75,191,59,70,217,242,51,168,222,32,162,187,89,106,166,119,177,54,18,145,254,152,43,21,125,59,250,228,184,150,209,251,240,118,135,232,187,229,30,188,55,113,208,181,105,5,159,9,245,17,54,25,134,16,207,225,98,213,59,102,20,186,90,220,43,70,212,72,75,98,117,4,157,189,120,20,124,178,134,51,147,28,149,188,26,252,45,74,186,120,31,216,35,82,106,187,79,15,10,37,155,116,246,105,132,87,204,90,131,13,1
 37,142,63,188,30,65,144,243,64,93,58,16,151,139,134,128,63,227,18,149,160,7,63,24,184,182,99,182,209,142,56,29,83,133,2,68,214,126,0,11,105,12,6,236,75,233,88,72,246,155,145,56,39,214,42,144,184,241,147,17,28,51,31,57,40,237,246,228,108,160,180,62,105,144,64,59,171,4,152,72,219,167,138,216,49,241,178,225,26,87,152,7,252,18,159,142,48,129,75,50,234,100,188,207,44,169,65,234,199,252,226,220,57,151,23,233,51,194,102,104,17,161,94,126,5,225,32,190,37,9,136,238,245,216,254,249,48,165,188,244,90,93,157,246,44,229,0,187,111,71,120,168,125,52,0,0,31,156,140,184,48,36,172,164,135,92,83,230,82,46,195,189,68,85,135,17,220,111,139,30,146,83,230,106,165,105,32,220,127,116,96,213,230,11,194,114,73,150,82,79,31,173,19,172,94,181,16,239,11,54,120,128,196,141,115,213,144,213,176,74,208,26,63,119,33,29,30,241,18,167,212,226,226,17,221,29,143,246,33,73,44,34,216,202,55,203,173,197,192,118,146,72,158,48,206,77,89,254,48,8,8,136,1,154,209,217,27,3,222,2,99,137,161,23,185,9,85,187,118,148,108,6,1
 47,45,39,215,145,112,103,245,90,2,84,102,50,176,65,73,83,75,17,128,250,84,172,110,122,255,222,174,31,194,200,2,182,50,83,184,207,80,215,116,45,57,123,61,24,28,57,183,126,64,175,44,25,101,27,132,239,37,243,130,9,124,236,20,209,187,125,136,28,122,247,153,74,180,222,28,22,236,39,139,21,183,105,59,0,13,189,152,177,25,99,194,159,59,16,112,237,238,21,209,200,169,181,219,240,222,234,184,182,61,123,213,229,9,29,153,159,218,34,81,131,183,31,145,139,61,10,16,242,16,50,25,92,34,166,248,243,96,135,193,211,156,65,77,191,59,134,85,7,113,9,109,168,218,166,85,214,174,79,175,28,51,145,159,252,149,58,200,50,227,186,244,1,67,217,191,26,56,1,89,122,175,21,29,206,113,161,247,210,218,104,240,79,54,75,51,167,146,255,9,238,103,141,219,194,192,44,6,131,132,121,50,8,167,121,230,47,165,179,137,234,91,118,230,54,39,186,135,221,109,52,207,0,136,90,172,201,44,174,9,181,102,134,240,46,52,216,30,146,129,243,135,22,133,221,206,14,138,71,231,123,55,191,119,204,139,3,159,37,201,118,252,0,144,250,212,75,66,92,
 138,116,84,50,239,207,86,59,10,147,21,48,120,139,117,230,32,183,153,101,156,67,140,35,247,231,249,253,136,192,199,171,132,71,148,72,126,56,219,244,7,176,10,111,138,80,172,215,229,248,99,31,87,31,10,148,233,174,157,4,210,99,191,18,158,168,171,14,23,114,235,110,189,197,16,108,149,157,135,47,13,132,77,32,104,49,224,147,172,95,53,156,234,46,140,49,215,209,18,4,113,252,249,76,156,29,248,228,210,59,231,7,69,28,14,16,21,219,103,71,211,38,162,44,167,230,231,129,245,204,194,200,241,159,239,129,255,115,211,114,138,168,46,129,18,117,136,192,126,227,69,220,57,254,65,13,131,231,98,228,144,3,203,61,62,227,230,62,78,94,169,21,175,129,177,14,89,17,217,134,36,198,55,226,112,164,92,10,202,24,75,93,119,181,164,250,211,239,183,34,209,210,230,234,45,59,59,78,215,212,81,101,1,235,149,220,149,80,174,102,228,181,243,171,87,39,185,129,136,198,157,160,155,231,66,37,135,148,24,62,160,15,74,69,47,222,155,34,236,132,186,123,157,248,228,161,193,143,169,216,168,56,183,207,147,140,62,238,153,151,89,80,211,
 12,240,66,133,225,108,22,174,127,159,169,161,92,248,117,156,12,129,139,204,221,69,195,145,79,158,240,140,73,231,6,231,58,205,75,103,149,184,80,234,21,24,79,81,118,85,242,136,7,202,49,236,118,59,59,213,216,195,178,26,90,153,37,206,70,222,38,179,217,126,84,101,25,78,105,81,85,239,216,95,209,98,208,73,162,246,126,1,4,204,174,164,89,92,117,64,121,235,244,60,129,169,253,168,203,226,241,241,192,133,167,3,151,133,204,73,1,223,255,231,136,30,120,123,64,59,111,183,62,243,221,227,182,84,118,218,216,33,226,169,137,175,212,215,88,170,85,71,94,94,237,52,72,58,67,130,135,178,87,58,0,155,201,167,211,90,43,189,225,68,43,51,233,15,108,248,138,238,76,42,131,26,119,41,165,137,221,165,92,197,186,247,19,11,27,152,225,252,253,48,171,5,245,55,22,129,199,147,55,162,241,36,181,123,4,189,164,75,44,62,130,152,47,149,92,71,53,189,205,120,14,167,140,251,44,184,236,234,120,27,136,205,212,13,2,125,166,64,69,146,249,169,178,246,201,177,189,226,250,85,109,168,29,183,156,84,31,26,97,167,26,103,2,125,103,220,
 234,75,171,138,231,251,7,190,63,171,201,25,139,26,106,86,139,206,95,233,68,87,182,100,247,119,13,250,71,38,63,97,216,32,28,187,148,59,39,37,66,152,234,69,116,181,55,110,7,63,197,128,4,152,220,85,72,220,64,121,235,54,248,84,237,195,182,62,101,58,59,173,49,196,147,61,55,252,38,118,245,2,91,247,143,201,149,227,42,56,207,100,74,181,180,97,216,148,13,192,55,194,40,168,99,201,197,232,172,61,202,62,7,44,134,110,42,132,23,74,182,233,62,78,132,253,183,222,232,16,107,179,12,212,116,107,177,94,210,97,187,158,93,92,89,205,34,227,244,137,198,165,130,194,242,102,220,75,236,60,52,101,205,137,87,229,99,66,65,43,56,216,77,110,106,184,25,136,38,133,61,58,32,126,172,183,204,40,173,251,46,44,159,116,251,139,110,83,47,181,228,152,110,23,78,105,181,248,24,241,149,82,45,140,224,230,190,228,147,241,82,85,227,177,239,72,158,186,171,223,90,36,51,76,74,129,100,141,100,154,112,240,129,44,32,18,10,255,121,143,207,153,250,13,214,127,72,33,174,7,60,112,231,93,181,58,174,241,197,138,74,18,184,22,8,81,236,1
 93,120,227,67,210,0,209,134,154,232,204,144,186,192,243,181,215,27,106,252,56,36,201,145,232,162,59,197,21,101,254,68,55,132,67,193,254,38,136,211,92,214,174,214,88,183,82,61,69,208,49,178,80,100,147,51,142,145,245,2,67,153,108,29,114,129,49,10,227,187,130,92,209,15,210,253,74,103,168,228,166,48,26,252,178,197,61,243,17,6,206,82,229,212,184,243,17,246,132,10,143,124,3,96,211,74,159,94,186,235,182,179,17,249,219,254,166,228,218,224,117,86,33,44,130,105,201,50,23,213,253,65,237,102,87,130,179,11,103,72,223,158,158,22,188,128,30,208,134,45,1,190,18,100,90,139,113,91,70,173,148,229,23,237,183,80,174,156,145,208,148,117,140,6,238,193,234,214,237,205,175,118,61,177,185,92,225,85,22,157,70,82,93,67,148,60,120,235,28,147,4,226,195,104,155,18,135,35,15,87,78,50,211,102,123,198,18,88,17,115,9,86,144,52,217,20,57,46,159,49,78,200,155,211,122,230,89,140,86,217,236,129,253,203,202,140,82,48,187,107,43,131,125,106,4,240,73,41,124,36,167,204,102,86,72,229,66,184,49,230,92,191,145,29,229,11
 1,75,33,186,140,122,7,73,148,110,38,253,52,194,91,242,5,245,240,3,11,1,137,205,213,242,25,153,143,78,99,236,105,168,132,0,88,185,235,166,99,143,32,166,74,39,136,6,68,192,182,106,108,255,217,29,206,236,76,163,230,73,163,15,188,154,180,172,227,208,55,208,6,4,28,165,174,40,50,204,21,111,35,21,26,153,59,146,89,46,6,95,16,43,152,187,97,157,156,93,152,73,96,101,212,183,130,78,150,72,235,160,25,225,130,34,139,204,248,144,36,200,240,167,240,85,143,169,228,175,110,170,156,95,156,196,238,188,173,58,115,73,110,189,147,216,151,56,207,64,143,194,151,12,46,170,120,38,250,142,28,165,248,174,202,135,188,143,232,106,45,99,192,210,184,236,19,187,72,53,224,116,246,233,162,2,80,62,192,153,240,27,215,228,202,105,192,227,125,201,0,159,159,19,186,144,27,254,161,102,150,133,254,175,255,65,174,1,28,90,190,64,12,177,230,82,114,198,237,200,65,224,30,139,106,14,236,163,51,68,16,207,216,254,177,77,111,177,100,140,98,128,168,99,128,138,51,36,3,68,174,61,152,244,157,240,230,58,255,88,34,209,84,156,66,164,
 173,176,6,17,14,126,202,82,136,207,63,74,139,46,108,104,26,153,206,54,222,127,119,157,134,201,58,107,192,132,45,186,176,200,214,207,45,132,5,10,214,125,83,137,111,5,196,36,62,117,143,148,38,227,178,173,144,67,148,56,221,185,94,31,69,185,125,190,249,158,164,181,228,216,220,173,248,202,221,112,111,216,28,113,115,107,117,144,98,140,161,70,123,137,131,10,234,10,48,38,191,140,232,32,172,236,19,58,219,17,144,239,138,164,65,35,24,57,165,205,115,245,248,28,197,84,103,5,43,102,167,186,136,69,160,120,197,185,166,179,212,68,187,183,25,10,102,32,135,49,238,137,161,134,178,46,60,219,15,180,93,167,135,25,34,72,41,213,49,248,230,199,253,109,234,6,223,46,190,184,29,7,249,143,228,144,82,96,158,188,16,55,110,137,239,12,150,24,225,124,14,67,16,104,179,33,133,147,5,196,111,153,178,197,153,181,234,129,61,118,106,72,252,8,131,114,122,158,26,239,245,33,78,161,228,102,97,244,21,194,185,198,29,218,0,220,68,62,26,168,157,59,28,103,201,105,73,187,128,209,240,161,162,9,38,146,89,102,247,251,44,225,116,
 97,164,249,41,187,227,172,96,114,98,171,12,145,103,71,19,167,169,54,144,60,208,17,103,50,56,69,245,218,156,25,15,206,25,192,22,13,214,211,121,162,13,87,243,228,96,235,49,9,11,8,106,4,214,200,141,120,190,196,72,163,64,80,23,221,31,20,229,36,186,45,184,35,235,140,72,7,161,155,57,184,113,78,9,104,31,255,150,121,39,246,100,140,93,122,129,170,114,25,60,122,34,81,158,209,8,139,173,139,138,70,151,61,81,33,146,149,110,44,153,76,59,155,142,147,42,215,168,76,97,218,93,32,251,26,196,66,216,2,164,100,52,158,24,152,147,238,22,49,2,231,83,70,17,167,125,124,250,32,130,50,38,248,3,157,231,192,23,158,1,110,85,80,212,232,71,216,220,87,81,44,124,160,210,51,31,86,35,209,16,156,176,195,45,99,8,15,181,55,151,225,183,44,137,250,18,239,132,251,165,10,211,216,245,18,17,115,119,41,85,160,200,175,10,75,73,84,12,23,49,67,91,36,155,90,109,135,138,0,204,229,118,246,227,109,135,67,168,236,50,16,29,100,119,122,194,66,7,197,220,183,75,156,134,122,194,33,241,158,63,28,82,16,108,100,193,145,50,40,77,126,23,18
 9,159,201,84,228,100,29,105,103,223,9,134,93,206,217,91,16,229,219,53,132,183,26,81,65,217,100,200,173,6,36,92,249,163,30,208,184,83,24,213,8,80,168,214,152,129,186,79,2,23,243,94,150,45,82,15,212,149,91,82,204,60,163,128,81,160,159,136,25,79,94,219,85,72,223,161,234,0,66,93,65,18,185,132,249,119,4,196,148,113,186,105,80,254,238,101,210,149,199,204,117,116,231,93,175,198,153,231,43,153,68,241,34,230,103,251,24,184,205,13,240,105,124,20,255,253,114,64,251,194,148,228,173,111,199,161,207,24,14,125,25,21,103,189,64,104,128,124,185,133,190,106,19,162,11,140,93,159,129,39,246,87,239,161,9,222,204,244,240,20,69,8,16,50,86,51,230,123,227,248,125,100,81,167,109,174,52,226,52,115,36,175,234,119,17,8,7,186,244,88,202,120,170,97,241,37,69,91,53,95,51,255,22,87,48,220,54,198,76,178,60,150,14,109,92,228,184,226,205,96,46,60,82,147,213,246,67,157,145,193,7,227,255,87,105,115,227,168,8,33,207,60,117,235,177,52,112,198,51,188,110,128,117,97,176,190,71,3,108,150,67,46,58,45,85,202,152,201,14
 4,82,196,247,64,148,21,28,44,136,56,142,42,253,60,77,140,66,200,131,70,147,255,96,78,167,185,95,209,64,65,244,142,184,173,123,240,139,179,19,168,140,8,20,88,194,109,133,28,131,46,102,125,236,57,201,129,94,141,168,125,111,46,39,243,30,193,37,128,159,22,100,97,78,239,55,229,141,31,147,193,248,56,20,42,130,159,115,43,72,63,72,37,139,84,193,240,130,107,35,230,206,251,51,162,192,165,215,184,212,185,20,202,162,135,143,37,139,186,135,75,131,195,220,179,117,202,48,217,172,94,231,9,227,58,62,90,172,135,44,135,75,206,157,90,75,136,237,249,55,47,146,148,182,228,46,42,178,11,224,28,246,161,228,192,154,152,88,200,3,105,103,182,10,69,111,243,149,95,106,189,231,197,169,66,71,97,54,219,214,50,216,132,210,203,90,138,196,68,113,160,204,162,89,72,145,164,79,68,210,159,6,254,160,20,186,194,156,83,11,233,92,173,201,75,59,16,56,33,118,36,237,107,112,251,243,66,146,120,46,152,254,216,223,45,243,78,249,167,89,194,198,217,43,216,229,86,77,205,40,252,99,136,187,235,58,37,93,6,167,103,216,37,217,24,19
 4,9,23,227,62,51,117,54,14,192,101,161,118,208,37,13,192,59,80,252,74,125,167,68,247,206,9,146,179,101,92,227,126,248,46,200,37,236,44,201,138,78,111,60,182,181,205,234,187,87,124,6,250,1,249,158,54,136,98,225,176,2,117,80,218,50,69,225,58,103,212,101,90,253,138,101,84,17,58,149,34,254,201,55,79,157,56,143,198,110,146,17,104,174,167,230,243,93,186,207,31,85,171,202,199,254,199,191,119,247,5,178,174,32,174,69,30,197,236,13,60,53,93,141,83,59,125,177,38,17,53,18,244,52,101,88,71,55,244,215,247,210,168,53,48,55,0,199,7,46,71,72,32,204,233,181,83,249,150,50,255,188,129,218,55,102,152,177,185,163,72,55,16,171,102,196,63,8,71,191,87,243,100,215,9,98,196,207,105,46,96,218,113,147,243,234,214,179,240,234,41,242,141,45,254,227,73,204,68,162,234,0,83,53,42,201,13,108,202,165,166,233,56,71,153,225,246,232,38,14,14,156,202,57,203,3,3,43,205,167,151,170,27,83,48,9,147,54,27,58,69,228,99,234,86,123,33,242,35,101,29,83,99,181,41,214,57,240,12,1,170,9,81,212,134,159,83,88,67,65,191,249,210,
 124,100,179,106,239,104,63,166,77,87,194,116,31,147,62,217,34,37,216,50,14,65,97,47,243,199,209,74,187,178,83,127,57,136,182,45,213,2,138,197,150,165,251,4,106,62,206,222,190,207,148,200,114,177,122,214,127,213,158,118,246,92,232,87,194,121,151,48,96,129,216,106,167,138,215,117,121,204,180,3,63,217,208,83,1,181,49,98,112,35,250,118,193,103,7,247,165,42,99,108,3,40,10,45,247,200,34,146,129,197,245,101,250,86,236,154,182,148,141,140,200,30,207,7,221,213,41,237,131,240,156,236,142,20,56,52,247,47,151,51,230,195,124,52,170,140,130,253,36,105,132,225,76,38,123,206,195,70,12,218,231,208,116,196,37,124,6,59,174,248,149,147,29,86,59,161,196,16,137,23,97,39,68,125,54,124,199,47,116,0,6,231,127,61,15,70,34,155,42,108,185,80,56,43,59,64,141,27,146,231,91,159,180,65,19,68,206,231,15,129,17,25,236,33,255,78,15,212,149,84,68,93,97,132,151,236,8,71,194,192,4,38,1,62,220,115,112,140,178,226,215,146,12,97,205,51,237,175,163,0,150,163,24,140,117,44,98,80,208,164,246,57,3,78,242,189,112,25,52,
 11,191,132,157,77,241,198,1,68,44,177,181,254,77,183,81,40,149,231,92,246,90,66,69,201,119,139,85,193,240,76,236,166,214,41,249,170,128,104,210,79,162,189,222,70,164,246,160,239,234,124,43,128,169,7,5,130,12,192,253,222,44,124,10,234,250,250,249,157,113,160,199,32,129,118,137,36,15,221,24,39,12,163,228,20,244,113,148,156,183,156,202,164,238,72,127,239,82,118,97,23,240,252,217,177,209,30,215,14,205,214,190,125,131,225,109,169,41,172,57,200,125,191,82,178,168,1,40,11,104,52,87,14,250,118,27,109,253,42,253,147,40,254,201,189,248,107,229,163,132,206,194,100,212,214,149,105,175,78,72,92,229,238,254,148,32,208,168,73,84,128,159,51,253,6,38,156,107,132,147,73,24,35,165,108,41,158,61,117,37,14,33,179,68,141,205,234,14,250,124,97,244,233,88,55,184,58,215,137,246,15,24,236,16,33,72,142,179,232,3,70,12,198,49,56,62,50,120,122,86,85,188,64,119,229,141,224,17,90,247,161,122,65,115,101,83,177,156,60,159,147,196,165,1,123,162,155,220,230,36,25,137,215,237,14,220,60,245,57,112,90,119,188,17
 4,36,71,29,240,239,41,42,236,53,66,138,26,170,123,117,204,166,20,105,155,246,199,235,65,21,71,87,184,205,51,215,126,214,228,243,220,230,223,77,173,152,160,51,49,10,221,12,142,46,244,145,212,32,172,165,236,55,147,145,96,202,193,190,172,101,222,89,181,220,5,30,165,216,117,197,147,226,233,245,12,195,237,114,246,239,246,223,223,7,126,15,83,161,239,20,200,25,56,241,241,229,187,186,14,27,162,59,208,223,12,241,93,208,221,242,163,7,234,228,199,253,251,22,108,212,33,169,74,94,119,191,183,27,43,37,63,71,24,179,201,33,228,111,40,182,243,239,216,156,184,224,8,100,79,178,59,240,205,209,179,90,146,52,26,38,27,85,253,24,121,242,171,230,37,212,185,68,228,78,82,34,112,109,215,57,179,32,145,168,58,49,190,74,2,172,84,244,168,158,77,61,214,188,211,210,110,180,139,92,72,178,190,144,246,76,23,135,0,30,228,132,167,139,141,50,247,67,241,97,163,3,44,186,144,128,192,40,128,158,179,144,23,180,148,182,248,178,6,111,126,101,26,160,132,47,177,59,150,182,143,65,7,156,57,216,118,220,240,117,171,52,24,152,1
 81,24,250,238,245,219,222,53,50,183,37,56,158,244,15,90,49,180,74,48,193,69,198,241,206,203,212,26,89,49,18,21,60,80,183,66,80,66,122,238,142,63,75,224,234,97,248,66,104,67,25,114,24,246,170,234,59,96,192,42,130,193,161,24,57,86,144,79,39,135,42,43,64,189,162,3,158,55,94,193,53,188,46,155,158,101,137,55,65,220,41,182,234,184,112,222,50,91,64,168,240,247,165,38,234,218,10,38,228,150,119,186,142,99,176,111,74,89,62,11,47,83,45,84,38,76,10,124,219,164,212,159,188,138,138,73,123,59,230,123,128,230,233,114,189,186,191,76,105,254,134,90,195,5,122,50,4,96,105,230,117,4,230,46,237,164,36,251,33,241,16,147,70,253,42,24,91,108,29,252,25,203,121,71,2,149,164,71,162,168,14,156,254,46,21,180,215,164,153,183,136,126,84,143,195,191,154,108,217,41,67,183,40,171,63,222,222,111,141,162,30,129,225,206,197,105,42,68,184,105,112,39,160,195,146,23,170,104,183,54,31,113,212,72,28,189,113,106,51,138,91,198,245,227,137,133,58,123,153,93,162,249,250,61,6,202,213,190,127,20,250,114,161,98,77,20,182,11
 ,74,187,108,174,109,223,155,110,42,230,192,30,192,120,195,100,41,59,63,209,247,103,87,98,28,18,146,156,116,234,18,70,250,204,71,205,233,209,189,127,59,11,229,127,55,138,67,255,55,176,76,152,155,144,115,161,66,184,117,76,3,205,185,243,139,93,127,95,202,252,174,87,248,168,67,246,79,248,27,148,247,97,13,191,58,15,46,33,89,129,48,91,20,169,50,241,39,70,54,70,246,42,71,67,233,123,98,74,69,100,179,115,163,26,246,42,137,121,154,218,212,65,253,106,37,34,143,34,73,31,145,240,176,161,49,194,7,203,76,119,206,8,9,14,222,205,57,73,221,70,58,212,37,126,242,158,168,109,105,20,36,92,22,242,137,167,236,77,115,21,69,169,104,58,13,237,59,234,71,52,14,22,155,43,142,213,236,250,249,162,75,93,222,46,67,147,43,170,60,225,216,246,7,21,203,81,185,62,109,42,232,64,225,58,46,82,151,98,165,24,252,91,113,177,43,137,31,13,104,175,224,8,71,168,125,127,236,52,124,133,86,232,146,60,51,179,208,44,124,89,131,191,129,202,240,65,112,145,73,29,214,149,87,113,240,244,175,58,92,38,215,27,91,148,229,59,200,224,205,
 175,7,88,229,171,167,56,243,175,187,165,196,90,57,116,115,116,196,133,5,81,32,26,151,10,37,213,37,249,25,181,1,205,164,237,197,86,103,133,250,146,125,72,60,237,48,154,128,5,27,152,95,59,112,204,225,158,2,163,139,93,53,92,38,113,242,214,23,24,130,34,14,176,119,157,102,108,2,222,231,190,139,129,33,14,102,225,201,56,103,251,75,146,180,10,215,223,81,40,40,248,213,229,203,123,214,77,83,160,230,196,202,72,238,123,19,150,9,172,222,21,118,250,63,81,200,137,90,175,131,170,117,145,171,123,71,83,113,140,91,157,96,185,153,103,179,59,50,206,164,90,140,223,252,229,174,152,105,224,53,171,208,225,105,202,0,65,203,17,28,156,164,117,211,163,62,246,254,27,117,71,81,31,235,117,156,127,51,235,156,166,194,85,161,129,210,45,52,57,196,8,243,82,115,240,202,61,6,138,162,178,140,252,136,186,1,97,88,205,36,105,95,219,212,111,84,194,134,102,5,121,245,132,144,37,122,17,203,194,35,140,144,192,12,153,139,209,206,101,249,190,182,85,91,79,131,18,11,228,112,114,17,38,38,232,206,186,101,201,122,117,45,114,157,
 168,224,49,143,186,92,3,35,29,128,251,15,123,134,73,49,94,71,11,92,101,119,43,44,24,174,83,165,24,241,171,255,175,70,116,76,187,40,86,195,56,224,153,99,12,244,242,153,99,103,41,168,145,232,122,177,104,49,24,229,247,221,224,243,49,74,13,21,13,15,191,85,88,133,10,32,103,129,12,217,220,29,22,45,10,159,219,87,165,47,198,174,34,156,132,90,31,92,11,120,138,13,6,166,158,146,231,189,33,46,250,22,47,164,85,27,162,45,144,119,78,216,177,116,31,69,9,185,235,107,56,122,114,145,175,206,247,250,20,57,197,219,172,99,223,25,18,117,82,102,30,188,54,35,242,48,125,111,22,247,248,232,62,2,100,74,98,31,131,160,46,102,219,67,177,205,116,26,170,249,226,132,217,68,131,102,95,116,104,87,61,81,20,88,134,238,111,41,246,99,248,110,255,233,88,183,20,193,168,215,31,218,10,45,133,52,218,39,70,78,171,203,184,47,227,56,211,123,89,252,35,169,37,196,133,59,228,105,32,83,204,64,6,176,161,163,19,239,195,154,18,182,27,127,231,164,179,237,14,35,231,24,247,0,21,161,217,112,251,23,2,222,71,157,250,4,23,98,235,49,194
 ,155,235,236,76,103,33,22,119,12,79,11,57,145,57,223,187,65,188,126,127,224,201,50,3,21,198,225,180,158,11,188,43,33,103,108,75,73,226,133,60,48,109,52,174,236,233,184,239,157,72,151,123,171,180,58,186,158,136,62,138,29,156,104,110,7,182,96,45,32,177,243,136,192,80,19,114,87,0,38,103,0,221,44,150,46,12,67,168,94,24,183,181,228,122,50,174,126,65,126,70,191,1,209,133,19,136,99,128,97,212,174,101,55,187,52,143,8,167,118,209,185,207,10,154,194,235,250,37,91,200,95,177,240,122,233,156,57,185,232,15,134,246,214,221,245,164,153,174,33,127,110,183,239,35,27,170,92,226,167,202,116,14,227,72,72,211,25,226,143,12,239,232,183,159,136,201,164,13,78,166,158,4,185,158,195,211,65,126,65,112,151,4,72,130,138,18,177,164,166,253,142,40,74,57,5,135,92,215,3,12,82,65,103,64,12,224,67,146,188,241,121,212,229,209,18,91,166,93,52,215,192,43,163,103,202,134,136,143,183,146,166,85,80,93,205,140,31,220,187,17,224,128,235,122,180,181,74,135,80,13,253,159,253,39,113,205,175,29,149,190,174,75,219,2,81,22
 6,28,136,50,53,224,168,246,55,208,55,24,202,27,16,37,179,148,171,112,66,0,29,65,62,56,227,188,110,229,200,73,109,138,250,171,137,38,45,211,105,181,83,245,164,171,213,207,15,79,204,70,1,46,73,253,68,118,179,93,189,145,85,11,29,67,246,246,220,48,82,81,5,252,11,161,194,198,89,216,22,198,169,21,183,196,203,171,113,80,76,161,21,214,251,169,241,192,140,255,203,223,118,198,251,176,16,178,18,180,3,213,142,51,214,15,208,64,104,4,40,38,236,56,195,116,50,116,52,8,104,115,74,14,240,169,71,116,53,29,7,134,254,30,94,86,89,97,107,243,218,100,34,83,69,220,85,65,111,245,209,179,222,115,158,169,179,202,144,47,200,240,226,127,44,77,45,227,191,230,163,41,122,164,68,130,160,90,254,220,93,47,15,88,179,34,76,32,189,11,48,89,29,6,7,82,110,238,36,79,173,140,124,248,107,138,193,43,20,56,27,208,186,88,43,243,202,62,168,178,114,177,170,113,130,47,230,223,156,236,145,28,105,98,30,124,225,64,114,31,23,116,187,26,219,129,134,207,27,66,209,11,33,53,20,213,226,255,220,212,36,235,51,22,114,36,98,20,200,98,23
 9,135,148,194,242,72,74,224,32,170,186,164,18,24,216,5,99,9,61,166,175,179,216,25,17,31,83,66,25,243,55,220,184,203,137,172,229,176,162,178,38,198,48,199,43,81,155,165,110,162,96,134,52,227,169,51,231,62,177,161,28,29,211,252,246,164,163,15,131,103,168,96,41,42,185,238,189,215,249,128,192,126,0,91,246,136,187,96,154,60,176,147,7,44,170,82,92,39,175,237,242,144,163,72,230,87,157,130,90,162,123,36,39,226,33,142,68,122,105,53,236,247,115,104,195,130,141,31,209,90,103,43,58,71,211,142,188,230,41,69,149,117,204,210,50,14,171,250,195,182,156,57,220,172,97,88,253,145,190,204,107,228,70,177,68,45,249,100,239,186,71,253,184,59,55,42,13,114,5,149,142,208,221,94,225,206,255,226,168,183,203,182,177,60,207,32,123,196,86,173,4,115,126,26,157,104,82,98,197,118,136,117,67,40,48,244,171,44,42,93,18,189,68,169,125,234,197,157,62,50,75,30,83,140,2,126,178,231,55,55,54,231,89,34,62,137,96,120,219,7,140,73,110,212,35,155,193,203,70,5,169,45,64,195,72,40,146,202,137,53,225,1,173,161,173,135,51,14
 0,79,80,197,186,211,125,14,23,106,185,170,209,100,228,36,192,244,100,63,69,200,214,105,163,137,47,178,63,123,94,175,177,236,248,180,177,49,138,45,27,40,28,73,182,178,45,235,179,164,243,1,83,137,112,72,77,138,96,122,149,140,180,56,202,120,38,59,177,250,114,198,97,218,44,72,89,84,51,253,93,182,55,190,161,188,222,148,10,43,21,36,212,171,152,16,155,184,73,26,251,210,235,219,133,83,58,88,98,50,141,55,244,151,205,229,149,94,46,18,31,201,124,101,59,111,9,95,49,104,204,20,137,185,7,113,29,230,108,58,238,246,68,31,220,58,132,73,145,73,244,159,12,247,9,95,109,96,64,15,218,7,101,12,3,75,210,236,75,91,255,17,204,46,233,202,49,93,4,210,143,86,110,126,77,67,97,86,239,195,43,195,186,111,227,13,201,199,157,177,26,86,203,68,48,213,208,56,5,217,53,147,141,123,24,211,115,13,51,181,2,21,12,70,40,252,159,221,184,160,161,194,53,109,225,73,255,197,6,161,152,161,71,46,254,119,109,132,152,201,112,147,35,116,167,89,0,207,85,165,37,6,171,213,252,225,30,207,235,215,254,85,46,12,4,96,172,54,164,219,97,7
 5,94,91,121,134,8,216,23,196,37,207,19,228,68,30,94,28,38,64,166,86,180,134,227,25,81,42,31,194,58,109,215,231,138,231,175,137,138,51,85,31,118,123,225,2,235,59,107,118,225,173,101,59,245,36,159,37,77,218,182,207,180,71,126,16,53,119,172,71,38,181,106,182,97,32,236,45,68,147,60,22,53,57,48,39,84,39,126,234,172,63,111,113,210,175,233,222,218,132,63,141,139,197,41,143,81,112,137,253,217,119,129,143,42,116,221,190,146,232,44,168,43,87,211,179,4,116,61,78,64,224,58,3,161,105,132,119,219,222,162,171,213,238,241,29,254,223,184,91,252,186,198,30,158,133,98,243,93,105,120,217,206,197,150,88,63,51,118,97,247,226,122,148,57,166,20,77,202,183,169,136,253,57,145,162,230,99,183,212,166,40,99,50,182,37,55,113,132,162,78,115,191,147,58,7,21,185,42,62,128,40,35,33,15,133,233,247,63,121,13,201,40,41,222,163,56,194,181,196,12,226,144,180,131,160,40,21,127,179,219,247,139,206,71,15,82,241,34,71,102,195,234,89,237,52,219,241,77,93,136,120,81,91,38,118,185,191,36,202,140,121,14,14,71,108,125,188
 ,150,71,7,3,87,100,178,175,179,7,76,200,20,133,50,154,194,228,213,170,134,88,158,211,176,105,88,22,112,73,94,86,126,120,122,253,250,93,157,130,151,0,126,236,221,28,1,253,63,55,189,153,251,79,93,157,6,77,103,254,40,28,235,49,74,147,108,200,58,169,88,209,156,70,182,103,118,84,223,58,129,112,98,30,250,159,148,70,91,31,20,2,55,46,251,181,99,164,123,144,41,74,194,116,153,107,46,237,58,228,68,206,234,31,136,169,211,81,47,171,162,83,84,131,36,178,91,228,114,72,190,201,13,79,64,18,63,72,110,4,233,7,166,160,125,123,66,251,21,210,156,223,85,76,38,231,193,201,231,156,23,106,201,34,2,116,216,216,225,34,138,209,253,251,254,119,245,173,134,45,88,135,20,131,143,119,221,206,2,225,232,147,156,81,56,6,155,202,19,18,191,169,119,172,102,145,131,203,148,182,106,56,185,193,238,230,155,185,83,78,19,56,228,82,129,234,239,52,84,244,33,27,184,123,178,60,45,232,0,99,11,93,11,81,229,190,53,214,193,200,96,168,89,26,11,164,173,144,135,34,76,129,190,80,102,240,90,131,187,113,254,23,54,125,114,134,160,73,1
 60,246,201,152,246,246,165,6,13,163,51,8,35,28,40,13,94,184,81,159,187,28,188,142,85,133,15,84,63,125,239,212,232,190,6,30,66,42,54,20,209,17,185,75,178,192,113,98,25,190,105,196,25,8,169,135,63,124,154,97,127,251,124,69,120,160,232,189,88,15,229,49,215,213,174,228,142,5,98,241,186,110,84,183,61,187,5,129,232,153,35,68,106,188,86,150,47,130,71,59,138,246,23,197,195,114,217,11,68,48,49,27,144,192,205,25,133,88,162,33,75,85,208,234,103,226,143,102,183,133,130,235,65,130,225,65,233,239,108,124,80,16,15,38,3,139,160,56,42,28,104,241,29,204,151,170,253,150,199,11,75,8,204,136,31,176,80,9,73,135,230,34,63,111,50,136,189,123,170,88,151,87,171,119,123,178,0,69,170,56,51,188,180,251,41,247,4,117,26,106,159,146,210,8,40,228,44,28,9,22,227,78,96,91,90,233,213,122,21,89,91,131,126,137,116,245,18,133,177,106,27,155,126,255,210,79,99,14,28,27,248,42,187,91,117,179,237,15,29,236,194,218,9,134,135,187,172,96,234,188,121,166,42,93,27,153,94,214,127,200,161,166,241,54,96,38,128,223,123,243,53
 ,84,65,95,249,237,122,125,127,249,26,33,42,33,141,194,31,0,63,79,45,148,149,155,43,243,115,148,252,190,73,61,186,209,88,219,59,25,207,230,175,215,47,168,45,208,151,192,7,188,87,209,190,100,88,62,79,131,141,213,74,132,10,11,228,247,91,134,237,98,238,255,255,242,64,193,37,14,54,34,143,17,106,221,10,231,238,109,73,128,30,64,34,152,84,86,49,242,165,102,142,19,196,18,138,19,232,239,208,136,60,124,189,244,157,156,35,52,67,96,191,129,58,123,238,31,47,9,146,14,183,68,139,100,214,221,73,130,112,13,216,164,3,153,230,209,48,120,223,172,218,252,241,73,55,125,157,168,128,107,103,132,82,28,138,41,102,230,87,68,32,107,70,77,139,44,243,125,190,152,124,121,171,246,179,122,112,215,87,188,210,8,73,79,225,50,72,56,76,137,140,127,151,109,204,225,109,245,133,5,183,99,202,128,60,2,38,163,105,38,128,204,215,111,187,126,7,18,194,115,236,32,227,215,169,192,198,253,251,145,213,85,123,160,139,122,225,161,80,76,149,235,177,23,47,242,72,211,133,208,49,15,82,50,53,79,33,99,7,145,131,97,4,142,120,116,136,3
 1,182,161,87,180,42,25,151,160,195,194,154,152,96,7,243,196,201,255,14,93,204,146,209,62,250,211,103,146,68,81,16,7,154,115,94,178,33,226,122,203,19,211,73,151,248,170,252,118,111,204,143,24,36,239,185,218,19,159,181,73,9,48,155,216,141,66,100,193,156,12,200,42,65,129,19,245,67,158,193,225,223,150,35,43,188,62,37,62,112,219,179,66,200,169,189,190,158,39,232,65,250,105,150,219,86,128,91,135,116,3,2,92,107,123,84,216,73,197,61,24,27,229,47,31,191,126,255,171,116,181,28,21,28,52,126,24,56,176,33,144,47,105,40,205,22,99,149,122,177,239,76,107,127,213,170,16,103,32,9,155,90,29,144,113,34,70,169,108,193,153,14,77,58,55,47,28,255,179,91,248,189,227,186,144,217,182,121,126,103,143,178,37,24,125,111,131,174,182,93,221,145,250,233,115,118,135,11,255,89,194,46,199,230,232,80,15,13,197,95,82,22,89,73,227,89,65,138,187,154,13,220,85,236,236,236,221,141,42,196,207,0,167,27,196,233,11,242,95,155,6,174,195,189,88,190,50,45,106,197,242,239,95,171,185,98,38,74,216,11,202,143,18,113,110,80,82,
 167,121,67,160,15,248,76,79,117,168,228,196,112,81,36,95,203,153,123,188,81,8,89,173,152,33,108,244,222,5,20,81,228,25,92,215,213,128,202,149,96,218,214,117,150,55,183,112,159,230,6,3,14,184,185,223,37,204,126,116,5,64,113,236,18,210,255,55,38,11,69,22,218,183,154,26,154,49,128,225,182,98,59,68,101,80,110,191,187,37,70,75,61,244,243,234,200,214,152,20,9,125,1,155,73,252,146,81,1,180,175,209,216,42,80,87,228,118,63,20,133,111,180,245,175,113,226,29,127,208,24,48,21,67,242,50,233,35,20,5,165,4,131,100,28,100,173,214,151,205,220,236,29,175,107,123,175,125,141,183,250,66,1,63,165,209,249,20,192,172,191,33,176,90,213,201,165,144,185,36,163,116,103,83,163,64,121,207,95,128,127,36,239,180,81,188,102,194,48,54,170,5,251,53,29,26,226,156,249,88,78,61,233,21,210,80,246,238,165,138,106,13,155,34,108,231,238,212,195,138,122,86,210,210,122,132,81,176,241,195,221,238,0,2,203,194,155,209,76,255,226,43,130,3,180,113,44,172,27,168,80,140,137,115,101,185,152,43,68,124,168,137,3,226,135,249,11
 7,88,155,247,189,195,188,0,127,48,219,223,17,180,108,139,136,241,2,236,63,210,41,175,135,112,154,42,191,52,128,133,149,147,175,63,43,52,151,112,100,72,160,184,72,21,226,123,52,236,178,115,78,138,191,205,125,218,109,98,208,241,65,223,48,196,174,249,253,99,78,213,67,231,139,191,251,156,224,93,33,15,185,137,229,187,197,148,75,6,80,17,180,45,213,28,73,251,174,205,15,54,159,85,35,254,160,5,85,217,65,77,140,133,56,170,218,163,170,35,152,212,43,135,39,13,15,213,133,59,246,142,128,44,228,184,63,132,36,250,112,130,167,222,200,199,2,101,131,25,32,94,174,17,228,172,53,213,88,167,133,105,222,177,105,57,142,187,60,47,154,83,69,201,52,165,230,135,157,112,213,243,159,15,193,31,170,2,167,142,148,145,238,66,192,234,58,107,150,22,249,85,174,204,67,57,39,105,113,204,11,250,98,118,89,3,36,100,125,218,125,23,123,57,116,122,72,90,62,210,183,57,175,138,87,216,100,121,130,169,250,231,86,140,217,4,57,25,20,19,133,75,175,140,160,67,151,225,77,229,33,11,212,46,70,220,126,18,30,25,29,219,229,154,206,13
 0,222,187,72,59,230,190,102,156,237,132,36,13,212,226,250,142,248,247,249,89,35,121,77,151,222,113,118,248,60,190,55,160,64,213,166,251,211,208,32,146,182,120,239,222,53,34,106,185,115,18,108,194,20,67,1,154,234,241,240,41,238,229,131,145,205,147,17,245,53,38,212,61,117,126,167,49,109,3,241,245,146,161,82,127,177,106,26,78,181,191,186,80,11,117,148,28,109,33,235,50,29,48,28,236,246,221,35,245,173,218,237,93,158,1,102,178,204,74,36,226,204,101,96,253,92,139,177,162,214,112,79,210,93,146,57,2,173,231,223,170,249,33,226,214,109,160,125,213,15,224,218,132,196,76,224,207,23,2,46,89,63,34,175,179,94,251,242,21,48,143,62,251,35,139,142,105,47,155,230,206,91,105,78,109,184,64,231,134,217,64,19,228,58,236,167,64,16,234,233,75,163,42,44,48,207,6,71,164,35,197,167,60,15,174,251,137,154,185,214,21,43,218,194,179,19,250,224,99,169,126,249,66,99,18,222,24,118,2,140,40,147,180,9,209,64,120,94,55,123,245,237,182,26,195,126,114,250,230,231,78,57,250,41,214,80,79,203,177,213,155,150,142,204,2
 20,24,10,11,20,222,114,195,35,137,61,75,169,62,98,240,238,199,110,66,239,161,233,69,245,119,182,239,58,2,72,0,78,133,172,160,250,2,199,162,75,112,238,33,88,67,222,209,73,19,241,32,78,158,127,58,200,137,252,179,139,100,213,38,245,99,62,163,90,146,9,240,168,76,120,239,181,235,151,26,219,102,246,121,13,112,131,168,242,123,192,181,175,125,149,141,131,204,239,95,18,233,160,136,81,56,107,36,6,51,180,53,242,206,106,252,51,199,221,6,47,91,152,192,242,247,60,91,223,148,76,96,171,191,174,185,72,27,92,10,195,18,141,186,134,94,77,113,63,66,49,60,34,18,77,251,190,43,216,19,217,114,120,67,186,213,175,145,63,181,154,70,193,222,75,74,129,16,168,219,19,238,72,151,13,113,88,75,36,232,5,109,85,129,38,111,73,0,8,245,188,168,84,54,156,78,72,167,88,89,220,141,195,159,15,60,182,79,127,100,116,108,177,30,16,245,87,51,98,234,82,19,235,133,198,125,149,246,73,188,122,253,231,35,237,70,221,101,124,90,78,49,6,231,33,182,125,181,155,60,187,229,232,175,131,211,198,129,65,48,136,223,194,125,123,16,220,54,1
 45,161,254,162,154,34,182,10,233,133,81,3,115,160,121,151,137,225,198,126,124,11,109,246,61,69,210,162,135,43,175,71,233,4,164,159,221,153,44,42,211,67,244,251,102,218,145,132,26,162,252,38,15,28,231,223,22,231,147,6,249,183,151,32,239,141,147,99,245,88,252,135,92,215,247,198,26,168,58,66,83,97,162,242,90,172,54,211,68,39,78,155,199,58,77,82,89,232,175,218,198,58,204,166,158,177,120,204,122,60,240,251,194,117,56,146,102,179,91,80,89,110,4,25,236,56,34,212,17,75,159,189,44,138,54,233,162,234,168,143,200,232,170,244,130,153,35,120,121,209,105,131,29,24,131,190,165,156,134,198,166,190,218,229,166,85,2,36,165,29,174,211,247,31,47,186,30,2,73,110,170,178,13,219,92,30,213,43,75,5,152,125,135,21,106,67,216,34,76,170,157,205,232,34,28,249,115,132,1,95,51,97,128,16,69,237,14,42,231,201,26,144,135,40,223,146,124,57,21,137,51,129,31,126,45,179,203,124,123,14,173,90,75,193,169,7,93,167,200,99,39,47,107,138,153,210,124,16,231,35,86,105,198,234,32,53,240,25,65,137,245,167,245,41,193,244,0
 ,4,226,28,67,8,155,228,155,192,129,2,201,75,229,84,170,252,245,228,229,217,50,118,151,29,149,118,206,223,203,28,47,240,134,64,206,151,120,39,250,254,128,131,236,151,182,184,239,182,203,196,163,85,236,107,254,153,130,43,194,196,220,164,109,75,1,76,211,56,78,230,119,137,247,96,72,194,72,158,135,187,5,184,38,9,112,47,228,55,171,135,207,136,9,174,196,25,142,254,70,240,50,44,16,186,221,111,5,225,3,85,46,95,20,116,81,105,72,180,108,171,54,50,108,245,155,91,121,73,145,247,231,229,192,137,228,124,86,164,1,12,102,185,161,81,248,87,149,221,246,67,172,155,59,144,168,148,229,31,93,127,190,25,153,172,82,252,125,69,60,17,243,192,225,219,245,160,247,191,44,145,177,164,88,47,116,156,15,187,210,172,80,47,40,34,99,122,167,253,65,212,195,232,155,201,90,143,208,196,155,253,184,171,230,217,149,108,98,218,14,106,79,40,168,201,26,175,202,130,183,167,143,47,194,44,65,174,114,11,43,125,72,157,247,33,173,208,11,72,26,20,18,246,17,52,29,37,153,179,95,78,18,244,50,66,201,197,88,33,145,198,88,4,48,218,3
 4,173,199,215,104,89,211,253,3,166,31,109,204,122,164,215,173,252,254,169,94,64,181,162,173,180,86,161,82,102,241,41,97,41,101,150,59,155,22,231,2,183,224,51,198,52,227,173,199,50,76,250,236,244,43,112,190,223,168,253,130,229,6,78,180,163,136,69,102,88,29,162,109,181,0,120,154,30,37,155,81,53,168,20,200,155,196,179,124,198,20,176,91,55,220,1,230,104,108,163,206,79,184,67,137,2,49,1,20,31,137,31,73,15,237,183,178,58,61,224,222,34,7,213,154,239,71,77,171,176,223,90,68,97,93,223,38,104,131,17,241,3,227,7,250,203,214,170,196,83,127,196,127,182,185,47,85,218,199,224,32,244,169,98,45,53,13,67,21,200,243,145,172,246,46,38,28,5,188,58,40,197,64,43,15,197,143,156,66,83,1,48,49,217,240,149,245,102,24,118,138,185,170,29,185,230,67,253,133,88,55,230,195,193,172,226,202,110,179,24,5,180,51,194,96,77,18,78,61,174,114,97,166,229,58,216,210,147,131,116,117,50,167,242,231,170,151,112,123,13,11,176,232,139,133,190,164,217,113,62,6,24,110,47,255,109,194,119,206,1,250,123,127,190,138,87,38,131,
 128,161,167,128,56,98,0,24,102,164,109,174,141,215,105,107,1,124,84,206,247,203,182,15,66,166,96,243,93,107,8,47,105,90,115,223,248,178,211,246,217,124,192,43,213,140,176,162,15,93,150,26,84,141,25,196,141,83,129,0,35,95,203,33,143,14,250,99,31,27,217,1,130,204,33,252,40,107,78,231,10,242,57,87,93,209,118,222,56,153,236,247,6,103,55,56,115,171,238,236,151,230,197,203,115,90,75,132,77,133,112,212,9,157,113,65,219,80,74,211,1,170,96,26,48,60,179,224,24,85,69,156,169,201,93,127,30,125,228,113,195,255,233,38,170,143,52,205,239,108,213,249,48,51,23,99,254,43,41,180,105,248,130,180,242,23,168,118,107,143,65,147,9,8,47,100,42,27,3,58,86,160,156,200,68,137,10,114,199,78,208,5,152,149,105,126,58,21,240,15,254,198,1,90,43,195,201,159,254,179,38,251,185,235,226,111,49,233,50,54,185,145,221,40,174,209,95,59,246,72,82,206,237,36,152,116,109,212,6,21,106,46,249,215,10,111,249,51,34,177,30,149,35,127,219,170,27,81,152,117,142,250,78,18,87,43,235,73,38,14,46,204,217,61,191,59,29,17,140,25,1
 09,41,173,190,194,125,51,188,33,37,18,64,77,193,130,149,99,122,198,129,143,192,98,165,35,56,131,249,5,233,47,156,188,88,9,123,238,103,82,184,87,22,174,245,152,148,94,121,64,1,157,188,66,232,76,128,172,244,244,161,189,164,231,128,23,57,65,255,238,164,208,234,195,203,168,34,113,173,240,72,53,199,10,70,155,50,254,8,239,20,23,70,231,188,55,215,111,186,168,244,63,72,116,182,51,255,63,167,177,187,53,133,239,61,54,228,145,210,86,217,69,15,227,51,174,92,230,227,232,103,123,81,112,169,219,38,182,172,1,13,166,153,38,156,6,189,1,215,197,137,204,246,93,71,63,54,39,4,179,232,112,255,57,195,54,125,227,61,90,37,231,144,64,181,38,209,27,82,167,25,173,211,250,93,232,135,198,121,0,83,156,3,114,69,143,108,26,220,94,18,150,247,71,246,95,82,82,222,68,247,239,103,56,36,11,76,162,28,255,135,241,16,125,31,206,49,35,200,52,131,137,137,45,9,68,58,60,49,136,8,233,122,148,27,59,23,242,13,95,202,161,42,112,123,8,176,74,87,83,23,14,156,8,116,239,226,93,57,23,197,122,76,139,143,111,207,142,224,249,125,35,
 79,183,203,201,35,225,79,23,100,179,46,112,105,37,167,184,12,46,26,143,191,190,241,132,54,63,151,23,198,69,103,139,143,0,234,235,169,120,73,33,214,187,203,38,158,28,180,186,212,68,177,42,220,139,88,146,47,224,85,28,167,97,164,7,91,76,217,5,235,166,240,104,191,55,169,40,144,181,160,86,210,166,248,231,235,137,36,72,30,182,194,188,144,191,63,116,127,120,140,199,28,208,52,157,77,162,80,178,43,251,208,144,186,60,128,225,202,50,0,240,199,151,111,202,12,248,221,224,31,99,138,135,209,133,246,205,85,82,251,244,78,123,201,14,49,247,67,56,254,240,28,146,48,205,212,38,164,3,70,131,231,55,107,227,54,167,86,73,85,111,246,11,114,74,252,229,182,138,78,239,36,253,229,171,72,146,16,103,110,84,130,239,186,76,11,166,104,192,230,199,169,249,66,76,23,68,237,1,218,229,85,209,174,11,70,103,226,60,121,97,205,196,203,32,252,192,252,152,108,191,96,211,212,231,240,192,128,183,27,237,212,212,6,114,202,33,117,60,88,92,131,74,182,79,107,98,24,204,202,246,112,58,4,253,23,51,108,97,223,156,66,188,186,255,18
 4,82,98,176,142,172,80,47,79,106,116,8,50,41,8,121,221,83,171,124,48,192,201,230,152,253,146,180,133,182,27,67,154,184,148,215,48,176,204,146,182,23,50,84,27,228,26,177,91,177,43,183,165,27,70,93,108,234,97,2,123,145,15,166,244,97,18,170,220,162,30,194,117,167,228,88,62,148,68,175,24,14,195,161,90,168,211,188,134,138,251,231,87,208,16,77,31,0,76,210,178,184,216,188,79,245,132,217,206,47,146,154,54,80,186,246,155,201,200,120,239,143,39,189,34,123,196,202,45,112,158,56,251,69,6,85,130,8,254,242,188,27,133,102,5,144,109,168,89,127,9,22,191,42,73,181,166,7,105,82,248,29,200,162,173,172,62,254,79,246,207,13,47,111,145,198,120,20,59,249,218,88,247,167,126,107,240,25,100,116,31,199,152,46,159,93,200,83,54,252,43,200,41,214,138,160,228,216,120,233,137,116,158,127,229,107,97,163,172,103,255,247,155,212,97,193,249,107,100,240,142,234,207,101,239,23,13,2,69,173,232,169,91,110,198,145,252,129,83,84,28,24,81,73,8,30,15,21,6,229,196,14,239,26,143,240,38,229,21,65,5,64,112,171,94,218,70,97
 ,222,153,183,251,250,7,33,44,182,11,117,100,225,84,82,55,110,98,56,202,188,252,160,185,49,122,86,175,90,223,41,254,221,46,247,218,27,36,160,155,96,231,200,105,235,79,150,25,191,107,115,222,72,210,57,64,217,81,136,74,218,183,45,110,163,13,83,106,103,42,26,135,236,182,203,34,191,173,5,137,57,25,247,193,148,18,86,126,25,55,171,89,147,216,221,191,17,195,16,38,228,118,245,141,96,22,49,52,192,82,38,40,168,248,15,148,165,158,119,92,205,99,64,79,98,31,116,29,249,90,239,159,101,83,244,190,117,80,97,206,16,221,252,20,3,197,152,255,0,127,67,30,17,202,25,243,244,226,53,216,132,151,45,173,8,81,167,43,147,54,23,176,143,190,148,206,211,162,114,69,102,209,255,13,70,33,251,11,53,61,113,159,186,242,100,44,151,117,44,203,76,233,141,81,137,161,235,20,112,117,59,30,206,94,226,120,87,63,67,9,96,36,37,239,102,93,183,123,179,142,13,12,124,224,130,110,139,111,148,93,83,83,93,174,175,14,22,0,180,187,179,147,4,208,250,38,18,152,211,118,79,219,253,81,15,218,12,188,115,243,138,26,86,35,49,21,216,173,201
 ,107,118,245,212,179,67,100,174,158,30,81,210,229,4,228,133,42,199,98,228,67,95,229,237,171,119,147,193,168,223,197,39,170,142,148,119,232,48,225,104,40,72,165,72,150,120,133,36,46,106,167,29,154,153,178,192,255,121,30,96,217,183,43,249,117,182,67,47,22,207,102,144,11,210,227,118,185,183,63,128,230,64,198,177,67,206,201,253,238,146,31,131,206,197,29,170,161,31,50,225,78,18,103,69,160,213,42,57,188,21,180,153,184,88,83,105,125,230,54,250,234,237,245,165,22,134,210,11,104,105,24,233,115,196,193,243,148,87,196,84,179,178,209,53,211,207,191,51,128,34,97,162,23,125,56,44,145,16,90,77,253,29,190,177,59,47,182,230,118,3,6,119,150,26,147,12,37,12,110,116,127,31,157,28,209,82,144,187,141,176,38,44,121,157,206,54,133,238,208,232,160,247,123,58,139,119,123,155,172,127,129,67,8,181,96,244,205,226,59,103,4,107,35,5,146,29,167,0,250,254,110,118,124,181,156,46,140,72,114,243,8,105,123,207,230,13,182,49,41,244,108,184,61,219,88,189,203,158,224,130,14,192,15,248,15,224,225,167,203,80,226,1,4
 6,183,110,99,159,220,32,58,184,34,77,218,157,236,58,223,99,82,9,50,213,150,147,9,238,67,58,85,192,189,135,32,88,181,16,192,70,106,169,91,43,187,79,29,108,124,142,133,247,37,178,81,255,44,95,233,69,120,13,25,23,197,117,61,144,91,239,141,189,184,40,10,231,17,82,206,171,194,63,191,168,10,122,33,179,91,235,85,182,80,207,219,132,145,81,114,97,102,167,32,255,13,245,127,2,102,249,81,91,69,129,67,171,56,33,222,65,155,67,140,7,230,155,246,54,191,83,249,98,51,185,168,9,48,50,101,69,30,255,157,222,208,38,127,204,171,243,15,36,53,149,110,54,85,72,43,183,196,38,208,205,91,88,89,109,35,38,99,238,137,54,228,59,64,182,22,103,31,183,35,58,204,185,210,118,107,219,6,170,83,5,203,124,49,73,149,32,138,70,70,225,91,56,225,140,80,146,54,221,120,223,7,209,103,33,225,60,133,227,159,206,27,94,22,98,155,129,19,43,55,198,181,154,3,45,180,12,91,19,197,28,228,121,146,40,254,85,18,126,122,240,33,86,231,198,227,221,89,22,241,102,0,64,65,64,38,40,62,191,139,85,94,251,53,232,138,155,188,108,200,212,177,244,2
 54,39,101,226,16,140,171,127,98,163,217,112,27,218,110,221,245,20,94,19,21,186,179,203,253,188,63,22,155,78,154,54,180,233,99,64,133,173,127,193,9,210,51,236,65,68,13,130,191,13,100,181,211,252,110,20,36,103,16,35,62,115,119,25,76,55,156,134,209,65,103,39,45,18,201,35,21,244,196,206,167,207,74,44,118,7,226,249,140,114,220,88,160,170,39,249,100,137,55,219,58,253,203,153,190,252,163,40,152,223,188,111,191,208,158,92,245,8,24,28,130,28,86,146,238,1,31,175,18,116,188,28,224,178,210,100,177,98,245,73,23,74,52,196,95,159,162,63,116,173,225,64,248,178,19,135,197,104,229,182,242,49,133,33,250,98,27,140,90,67,253,74,218,24,193,83,61,3,240,167,243,54,205,167,235,63,102,206,144,74,147,21,97,135,49,97,109,176,162,204,227,10,59,53,37,140,16,49,126,199,19,188,236,149,228,253,209,242,242,160,163,103,55,33,101,37,175,18,224,105,205,251,208,0,159,27,133,136,147,138,247,217,103,63,24,181,161,217,141,26,185,77,13,74,61,33,161,246,213,199,246,4,77,1,18,221,166,210,7,46,155,140,248,199,103,72,28
 ,192,199,83,224,177,7,189,150,46,100,223,101,105,23,163,44,218,128,117,169,237,154,187,123,102,208,171,74,77,211,118,138,103,62,185,217,81,145,19,51,91,54,181,117,138,11,187,112,1,140,248,76,175,152,173,200,38,157,147,1,203,100,167,81,175,43,139,121,229,212,168,204,205,130,255,10,3,255,215,218,142,145,168,144,35,55,67,218,96,108,86,56,119,34,61,23,92,3,166,66,236,52,169,12,238,100,228,5,145,239,144,154,114,225,190,126,132,91,155,147,179,234,45,11,228,155,76,18,32,109,241,76,65,234,34,53,20,200,138,250,55,166,205,209,187,220,231,78,67,129,44,198,148,231,202,221,13,249,239,96,114,94,74,37,119,0,185,106,83,174,255,183,83,213,190,202,44,133,31,104,214,126,225,243,62,127,31,119,147,150,75,198,201,186,126,148,183,20,57,67,182,27,57,113,151,137,12,192,79,63,125,248,219,203,193,128,188,113,170,84,35,62,80,210,190,69,65,4,115,144,156,49,116,97,216,117,127,14,219,111,252,116,220,203,108,70,159,179,243,220,224,99,60,170,120,179,122,241,147,111,90,63,180,233,38,21,178,113,204,27,170,44,
 214,217,69,1,93,63,140,90,102,125,66,88,98,9,180,117,48,124,31,37,133,88,198,16,61,64,170,157,49,32,116,130,46,64,221,138,52,11,72,70,254,0,28,109,104,88,25,229,79,46,105,118,125,7,179,78,235,210,192,64,1,188,187,200,78,251,189,197,84,2,19,180,0,88,101,187,56,115,35,54,78,31,17,81,84,245,152,198,39,15,23,221,74,49,111,202,196,171,46,81,150,209,0,44,223,7,115,157,78,197,198,130,129,240,180,248,230,153,102,26,120,216,134,237,116,83,13,145,206,248,29,56,22,252,64,233,78,70,158,84,58,105,178,99,100,4,115,56,201,92,71,162,132,182,224,73,195,10,140,105,226,227,120,159,239,111,7,175,166,167,60,7,107,9,171,195,52,33,146,9,90,110,247,22,224,65,64,132,85,109,27,100,192,188,56,217,241,206,11,25,28,81,155,7,244,54,154,75,156,56,164,124,229,27,159,177,44,41,68,104,129,125,13,60,111,171,122,14,181,49,216,179,106,11,246,175,195,39,70,67,148,12,69,241,140,197,226,209,28,146,206,30,128,49,93,83,49,176,55,145,15,87,230,40,254,16,178,129,141,251,39,62,185,59,121,240,164,223,4,26,209,157,114,22
 2,109,112,144,211,19,103,96,198,89,246,19,25,154,92,49,52,137,102,2,165,20,146,146,1,172,218,127,217,179,96,255,165,235,92,35,61,1,232,69,163,235,30,187,172,124,249,235,189,178,54,22,231,172,99,106,59,236,183,33,32,239,61,2,238,59,219,72,246,137,219,117,66,226,217,2,68,75,149,214,154,132,40,185,75,17,171,35,173,192,166,84,177,104,51,2,51,19,217,211,134,116,67,44,21,97,55,55,107,132,48,8,6,152,19,146,190,25,103,49,26,216,230,147,6,44,157,95,17,66,67,170,225,59,121,205,174,55,95,39,170,142,88,79,250,51,255,81,21,226,82,160,29,238,147,210,50,216,129,215,75,90,11,139,39,148,78,88,130,250,73,55,244,126,232,80,72,235,111,85,180,30,186,130,76,30,223,221,151,41,235,144,30,113,145,63,3,120,2,167,121,73,38,67,232,163,197,18,108,124,204,38,14,238,43,66,244,197,152,22,227,209,137,235,196,31,67,21,23,193,110,126,93,87,6,232,49,13,242,19,28,34,126,135,222,235,2,214,151,244,149,198,232,145,97,253,171,9,68,126,17,22,85,252,177,236,199,144,221,57,253,223,12,119,6,51,78,187,81,90,77,184,119,2
 8,105,236,5,113,95,192,20,143,86,79,123,166,156,210,11,221,89,75,147,236,74,114,30,2,179,61,39,66,0,109,229,224,42,64,167,252,104,87,202,229,114,114,32,91,234,214,153,102,253,199,92,110,37,178,121,180,135,63,203,197,25,180,25,139,159,216,244,41,234,194,169,2,44,187,255,24,113,27,80,217,174,43,114,136,161,58,237,208,157,222,56,103,186,0,219,115,4,31,141,240,169,216,161,182,233,69,214,91,15,73,215,113,85,124,78,207,99,36,72,135,224,8,1,202,30,54,73,67,216,18,224,122,132,5,226,114,148,108,143,156,242,148,186,89,4,157,139,175,204,254,202,91,154,195,199,219,245,107,20,170,163,168,194,45,120,8,188,208,185,120,77,22,25,250,247,91,157,74,152,137,141,11,122,235,240,18,254,241,149,140,137,177,193,223,244,140,64,71,196,103,202,142,252,145,238,71,109,10,55,25,126,235,129,242,127,255,98,241,52,114,233,173,89,172,165,221,154,93,252,154,91,184,94,166,156,187,200,234,87,237,0,213,208,22,211,229,4,133,66,3,74,30,30,58,74,28,117,163,222,0,181,248,151,192,103,45,37,219,221,227,240,244,23,43,20
 9,173,94,234,194,206,227,30,240,125,218,108,233,232,18,112,45,134,162,219,88,104,43,109,30,99,149,140,106,23,16,16,32,68,22,201,251,22,52,29,124,174,64,197,96,210,150,88,252,234,16,124,193,61,205,13,16,221,135,47,117,146,11,207,152,233,96,176,250,192,226,173,35,69,115,56,209,254,248,130,220,93,172,138,61,139,119,105,9,39,5,240,72,13,81,4,201,44,217,183,70,246,49,34,221,170,128,224,10,161,186,4,224,52,92,5,8,135,223,114,168,240,11,87,199,176,68,44,51,139,187,22,204,172,171,176,167,57,166,182,8,74,254,106,138,51,17,72,100,207,255,16,174,143,58,103,206,191,4,148,25,223,84,188,167,24,79,72,188,17,253,2,94,173,14,205,169,97,137,154,24,110,15,148,127,151,59,38,222,148,38,161,10,254,138,93,133,179,223,218,197,98,217,92,85,77,209,25,207,120,196,84,187,126,216,13,189,240,109,141,161,70,157,171,156,171,141,156,46,17,144,235,64,27,114,45,207,57,32,200,143,13,169,92,197,28,221,90,189,206,87,135,30,14,105,123,196,248,213,77,82,86,217,88,181,93,232,229,48,240,32,209,20,186,252,185,179,199
 ,245,236,177,127,193,82,205,158,152,236,206,238,16,145,79,100,229,8,151,220,63,188,215,128,244,193,27,220,82,45,228,165,107,70,214,62,200,49,50,144,127,143,53,153,174,221,176,207,110,252,62,100,171,140,224,218,113,255,12,13,123,155,57,225,69,22,243,22,54,107,24,131,216,12,47,30,36,206,141,149,134,190,136,147,24,110,200,145,157,1,204,43,39,197,226,96,226,58,252,222,2,164,243,202,26,66,4,30,122,139,24,186,156,75,73,74,105,246,151,201,20,125,85,244,91,119,21,195,200,86,106,176,195,86,6,144,236,174,187,145,60,245,32,252,195,129,4,154,193,251,249,146,223,24,70,108,36,96,173,48,6,234,27,167,59,83,44,91,69,94,218,32,141,70,30,246,32,221,91,0,190,184,200,247,184,191,78,51,179,149,62,125,112,201,25,62,115,191,126,44,209,171,70,54,175,232,189,182,152,78,20,203,71,114,214,168,104,63,227,100,180,149,204,122,156,226,9,147,88,150,134,133,212,224,161,114,40,170,100,33,53,125,191,252,162,44,18,91,100,242,125,249,44,111,11,68,95,180,10,93,88,64,185,249,127,126,88,254,134,46,126,100,25,122,19
 9,241,37,99,45,121,231,160,217,60,38,84,8,218,152,227,16,158,36,7,91,110,246,181,17,198,144,36,118,61,93,73,161,183,129,152,0,140,126,156,41,106,252,107,18,121,167,29,224,146,176,170,122,142,69,66,90,200,180,209,66,0,239,39,88,22,246,32,39,81,216,194,26,71,118,91,155,158,186,227,193,35,131,44,9,164,0,105,103,28,90,14,188,188,128,202,72,24,146,71,181,197,245,244,166,127,196,83,115,242,44,175,75,228,57,144,245,125,162,117,168,173,43,93,157,196,150,222,30,18,36,116,198,219,63,54,191,247,89,255,65,218,12,99,24,210,92,79,61,27,165,138,174,2,152,98,125,129,178,141,8,221,227,151,199,230,212,8,147,110,182,179,104,181,106,138,47,182,85,148,233,66,59,74,103,212,179,149,132,240,234,224,6,212,143,205,9,69,57,57,190,39,69,185,83,103,54,193,250,73,180,226,162,33,228,172,233,140,207,172,163,174,158,42,57,158,36,172,186,6,135,221,249,30,158,169,0,169,132,28,132,189,16,50,12,214,241,21,213,26,157,243,64,214,203,235,202,222,33,201,159,150,83,219,33,195,25,246,176,10,23,36,58,111,135,59,117,93
 ,122,168,44,154,131,120,32,105,29,79,104,142,184,161,142,247,21,46,153,142,26,36,10,163,108,10,139,213,247,20,170,245,198,249,76,134,18,179,232,16,179,174,250,174,126,222,138,167,140,224,221,74,94,141,209,80,153,94,127,252,160,113,7,112,161,139,98,113,198,111,173,70,185,89,62,70,166,51,14,17,21,89,197,233,11,53,135,15,170,76,24,207,159,85,187,95,213,238,71,27,148,75,167,42,61,188,138,126,96,32,210,71,47,250,5,234,154,169,221,181,186,162,245,171,33,23,207,250,142,209,29,131,254,241,215,18,187,215,188,170,128,111,202,240,171,106,6,127,235,15,33,184,87,227,89,39,168,170,149,194,152,4,135,66,1,72,0,84,55,238,9,67,60,129,186,9,123,206,199,111,224,103,222,42,96,18,89,208,222,186,157,253,170,107,206,30,133,212,248,14,48,128,90,203,180,105,61,239,123,36,47,11,85,221,113,195,21,69,96,161,34,226,231,229,15,4,36,224,117,213,245,185,45,59,106,161,122,207,144,177,235,242,172,254,201,125,87,8,237,217,254,188,42,54,130,208,124,229,9,123,24,28,14,77,242,45,54,118,71,175,141,203,189,185,156,
 172,152,239,111,109,90,59,104,112,137,62,119,247,113,160,138,118,66,83,204,168,12,125,249,163,172,6,209,107,68,6,195,11,237,177,181,31,136,103,25,236,58,188,80,170,32,213,170,94,74,176,87,93,96,181,87,248,43,234,245,22,180,215,165,182,35,250,146,132,229,65,200,146,154,2,129,221,18,108,99,225,210,47,202,67,234,222,14,178,197,238,28,118,75,45,92,120,110,89,77,1,245,92,151,231,65,100,139,228,111,173,78,114,39,151,241,241,25,17,71,195,97,95,64,187,37,5,159,208,206,32,216,197,136,57,197,180,90,178,121,192,180,41,87,18,209,246,112,234,233,252,126,51,240,148,44,109,116,7,74,135,193,50,22,190,221,138,75,173,128,233,153,148,229,128,173,227,106,183,164,22,121,64,173,54,49,36,119,43,191,185,128,29,173,157,125,164,165,177,43,117,201,146,212,84,145,100,236,205,131,236,133,182,227,222,185,142,47,253,141,12,106,105,185,157,166,215,249,220,231,75,170,76,190,164,201,130,138,72,138,56,144,2,76,137,41,56,143,89,136,167,202,241,86,135,237,214,80,225,254,191,172,153,119,65,137,79,5,73,226,119,94
 ,176,213,156,241,118,208,184,72,22,130,251,164,238,176,136,141,170,146,251,124,149,168,251,177,43,85,90,130,13,196,245,105,38,91,81,108,129,199,104,135,25,44,31,219,180,250,24,75,167,244,246,255,219,148,184,203,199,6,66,239,214,5,217,155,9,238,96,159,122,129,100,68,91,65,24,251,197,61,38,107,204,37,182,62,12,132,208,114,231,87,189,185,224,43,94,239,207,190,126,0,195,146,48,112,15,131,213,236,179,91,212,150,223,218,167,51,190,198,76,180,155,81,24,116,36,164,56,44,34,234,139,34,74,236,140,57,33,118,240,22,243,2,76,68,228,84,83,17,83,10,237,111,148,237,89,150,91,97,34,78,54,83,145,148,168,150,37,135,136,67,238,79,91,93,78,236,222,185,133,204,107,212,173,116,69,94,36,150,41,77,169,210,162,157,35,38,172,166,237,157,238,21,213,150,196,232,231,156,236,13,78,164,248,4,218,167,182,221,27,208,162,189,166,112,188,71,149,11,199,209,4,246,146,123,50,176,252,58,119,15,250,133,144,173,153,248,191,9,102,133,78,205,104,181,146,202,117,230,250,52,51,106,241,207,152,249,240,38,21,206,168,218,1
 19,93,236,102,33,224,239,173,97,226,233,44,127,136,66,198,91,9,226,168,28,42,199,38,28,142,241,250,254,234,80,247,209,3,209,234,190,108,98,238,118,106,232,225,85,255,220,229,213,124,223,200,208,149,122,125,59,175,3,231,53,73,61,114,231,216,82,168,7,151,106,50,149,16,219,238,144,169,186,32,22,22,252,198,224,27,84,32,97,185,213,115,175,79,2,0,74,84,43,1,44,251,210,17,40,185,208,102,197,141,239,83,42,208,252,116,57,90,156,26,112,90,174,114,160,248,188,175,81,225,236,151,154,136,215,18,176,89,87,85,206,30,251,185,84,107,175,67,52,88,154,132,182,73,160,41,133,58,168,191,235,198,147,122,112,24,171,225,93,17,164,168,202,190,178,70,0,110,224,192,215,154,222,199,93,243,235,166,178,254,153,127,89,39,157,205,186,14,99,40,23,211,109,18,171,87,191,14,144,225,178,108,75,97,178,177,76,176,165,46,147,105,241,128,38,18,151,85,245,213,251,199,69,180,145,195,152,38,215,63,208,219,58,82,226,155,75,110,121,11,35,215,207,181,196,21,109,232,230,201,214,186,197,77,82,122,11,80,156,194,130,254,150,1
 95,45,30,14,140,150,17,241,86,73,218,248,175,37,167,229,147,64,211,86,228,188,211,45,148,225,220,193,166,64,241,104,218,20,165,61,159,44,49,59,169,158,195,66,189,128,169,12,135,168,104,100,182,243,157,50,140,36,40,32,185,78,63,65,226,140,2,169,127,8,193,73,154,191,40,2,19,145,52,84,217,85,36,2,200,235,162,246,196,245,105,64,163,199,200,243,72,212,137,126,112,55,212,147,13,114,181,59,5,147,100,67,115,58,196,4,197,99,109,165,99,61,252,150,38,134,40,242,31,105,156,180,216,140,95,168,224,242,50,157,12,237,157,218,92,96,173,62,144,174,50,69,79,209,250,251,115,119,230,244,39,43,193,81,203,24,252,3,136,191,63,11,173,23,175,123,249,69,139,69,62,40,165,98,1,61,217,71,80,158,177,33,64,0,184,95,190,70,194,208,124,191,40,23,190,23,35,5,76,35,52,154,252,255,104,77,115,246,221,74,40,34,237,23,188,107,35,69,40,197,59,197,76,241,227,61,29,104,70,136,84,242,189,193,143,20,138,110,140,39,146,194,230,93,164,92,132,71,165,186,114,4,35,34,100,35,132,29,90,185,170,67,130,131,196,82,80,91,67,145,3
 9,230,219,194,18,213,233,207,173,115,12,250,144,89,15,135,154,200,76,71,30,151,244,82,168,66,130,3,175,71,82,87,24,19,60,95,14,121,115,239,92,219,207,29,94,122,121,12,246,240,72,249,212,223,175,187,201,175,154,86,104,99,44,91,202,239,87,20,23,175,250,237,7,143,86,197,244,119,215,153,206,166,73,156,113,114,138,225,193,34,30,104,3,67,216,62,4,87,115,177,56,39,49,46,80,47,67,153,136,79,206,1,189,75,137,222,110,253,145,103,240,231,126,240,192,10,67,87,141,32,115,221,79,223,203,212,56,205,153,158,62,220,88,221,220,192,212,15,82,44,146,255,88,182,90,26,156,22,48,216,229,143,3,60,9,97,47,102,230,164,99,34,178,230,139,18,10,176,128,83,149,143,140,24,128,109,96,61,182,123,132,249,112,91,25,141,56,37,250,96,179,15,237,218,106,72,172,69,64,229,235,250,64,117,167,250,223,196,210,127,239,148,61,227,28,136,175,173,204,11,138,212,196,87,64,237,170,187,216,66,42,156,175,209,3,53,194,229,254,38,140,128,149,116,178,174,206,125,16,225,21,187,72,36,255,140,1,133,204,186,2,91,33,183,215,160,7,83
 ,8,234,0,78,206,31,44,27,122,111,139,137,173,247,163,43,163,237,6,12,133,129,145,186,156,213,83,202,239,2,57,152,205,59,167,36,134,35,126,112,72,163,127,112,219,241,114,18,251,35,61,162,91,59,75,11,173,17,87,87,241,142,148,175,99,117,136,46,75,215,154,243,197,23,157,181,161,3,171,198,57,4,228,54,220,219,43,172,186,3,1,10,96,78,95,48,82,52,68,185,195,51,28,170,119,96,62,91,76,137,179,216,30,230,234,54,203,100,43,229,124,223,219,160,28,253,82,11,148,74,11,7,164,30,173,52,252,158,144,199,95,91,116,147,239,92,242,37,53,100,3,17,66,190,20,183,19,3,67,146,3,234,226,39,95,206,53,179,46,14,200,238,113,240,31,130,153,68,119,146,207,21,208,102,132,176,222,154,46,142,217,200,42,153,228,207,69,21,170,204,42,43,164,9,107,167,194,123,74,210,187,254,111,55,71,224,115,205,103,26,152,116,95,35,216,176,31,13,192,52,127,204,131,199,209,147,87,0,223,151,83,141,117,23,98,96,15,155,5,156,202,224,60,234,109,129,222,119,206,225,154,224,226,209,162,175,102,231,25,112,125,188,20,230,89,42,235,7,219,1
 36,188,152,245,104,111,40,118,150,188,162,131,73,208,201,250,86,54,22,75,60,123,206,93,241,231,43,144,165,182,245,140,224,144,85,232,115,128,200,107,178,102,80,247,165,90,96,37,66,151,229,173,75,54,239,1,18,206,45,82,220,55,89,86,48,70,59,244,17,91,173,113,150,212,70,209,13,62,94,98,51,5,218,182,101,245,159,37,237,47,89,110,36,205,198,27,52,209,72,136,248,253,201,208,114,65,176,141,93,62,190,146,64,245,102,132,164,252,163,54,111,33,138,233,251,163,28,57,66,151,247,102,95,61,129,208,15,16,202,190,82,140,172,25,250,96,156,118,24,82,30,243,194,99,87,57,128,183,87,202,206,45,11,188,5,59,217,125,204,90,142,243,73,75,86,186,251,130,217,74,2,98,242,152,164,102,27,181,25,245,167,65,206,107,162,134,95,181,5,231,208,160,128,66,20,104,127,98,209,139,75,30,166,43,48,230,122,17,188,34,195,1,97,221,254,193,62,168,42,95,149,90,86,189,233,51,147,140,61,71,53,51,200,156,49,177,225,235,117,172,255,42,209,17,223,204,137,23,4,17,211,232,42,158,182,183,24,136,1,47,175,240,228,119,26,10,177,185,9
 8,74,103,181,240,54,67,222,159,89,163,235,121,198,241,249,139,19,7,204,149,135,116,29,9,116,85,209,159,46,212,166,253,74,13,171,70,110,209,173,169,196,42,233,17,134,73,230,186,85,138,179,139,30,38,77,73,210,136,79,36,30,115,188,109,77,105,63,63,15,255,203,28,211,31,206,16,35,33,55,2,36,242,0,66,137,194,76,248,231,58,32,156,163,9,180,138,234,188,216,82,15,56,174,201,76,21,226,101,32,103,124,168,226,209,214,161,140,150,46,82,19,60,209,229,16,70,113,229,88,121,228,21,108,56,97,150,32,193,224,156,190,99,142,146,124,3,21,124,157,236,60,126,254,111,213,67,236,203,240,45,91,58,199,193,25,95,124,238,53,205,255,146,51,80,176,105,21,68,171,169,205,177,54,193,153,30,109,11,26,230,133,60,17,250,204,183,231,128,75,16,46,235,27,193,64,12,152,93,53,138,54,30,145,134,169,73,26,71,177,243,225,93,253,213,171,217,182,249,123,235,118,189,232,226,253,10,169,63,144,16,219,155,221,16,167,50,86,93,59,11,161,39,102,188,1,117,36,113,111,9,12,95,231,179,208,132,88,28,185,58,96,67,101,203,171,167,229,2
 47,126,230,101,186,136,136,219,192,141,67,88,159,159,0,77,56,228,28,172,246,220,245,240,142,81,211,10,151,82,169,225,183,188,124,247,210,51,159,87,191,11,201,17,36,6,207,69,108,180,31,229,239,90,170,64,49,248,172,117,148,95,62,6,56,200,156,243,221,77,165,20,241,243,213,21,246,41,246,104,163,47,12,80,199,150,36,108,104,151,200,75,85,20,212,250,40,70,68,95,233,95,95,181,30,18,140,117,129,198,108,47,94,101,128,42,109,201,54,106,66,158,140,9,172,83,138,80,228,77,183,246,195,47,207,119,118,167,167,24,108,80,18,181,198,212,26,13,216,254,5,247,209,213,101,162,15,150,101,77,12,214,205,224,154,29,61,221,236,159,25,88,21,49,131,174,53,208,229,200,205,110,151,65,187,121,21,66,199,88,221,125,192,35,169,141,41,246,136,78,241,226,81,125,205,24,152,119,253,165,10,226,101,19,184,103,92,66,136,148,190,119,11,64,92,103,165,116,21,194,76,5,236,233,169,6,217,128,120,54,136,41,213,51,4,71,70,186,177,145,153,47,108,54,243,27,21,174,104,125,184,128,197,167,92,39,64,222,35,148,207,176,122,43,183,25
 5,53,135,125,167,34,21,113,242,238,111,76,80,70,197,68,4,185,64,206,6,230,209,248,134,253,111,39,156,42,235,59,231,16,222,133,164,34,242,21,245,234,180,88,47,161,51,89,98,155,227,148,191,92,201,237,165,185,91,73,92,228,38,56,252,107,118,27,36,28,88,245,194,178,132,234,85,217,156,219,146,88,131,119,68,102,94,46,149,47,235,62,55,69,233,225,159,208,53,186,51,91,9,87,194,53,66,214,18,250,36,91,245,115,102,210,240,81,76,209,238,182,98,65,167,199,70,244,156,238,41,57,49,224,176,44,38,33,40,86,144,77,181,178,249,44,208,108,55,170,150,169,70,148,221,186,250,1,153,190,37,7,66,241,180,168,47,185,229,109,59,140,252,130,21,122,3,179,129,34,48,45,158,244,147,208,74,214,248,44,173,138,186,69,33,174,152,57,160,54,51,199,242,185,98,213,103,74,165,174,4,66,76,76,96,63,102,34,36,240,11,167,94,33,85,108,77,186,166,91,243,38,48,90,162,175,75,5,227,232,8,231,110,210,160,195,111,193,168,187,187,220,194,200,224,220,221,99,183,12,216,207,86,157,72,188,71,42,150,221,51,168,202,237,177,163,161,182,17
 3,219,236,236,221,84,150,159,71,140,65,246,16,215,245,185,63,166,9,244,195,137,151,179,63,242,82,137,170,129,186,241,59,59,242,128,82,190,253,135,132,78,74,65,205,15,157,249,15,244,64,96,42,103,24,95,214,251,75,208,244,168,123,51,173,72,123,59,246,241,213,81,34,154,97,71,59,86,107,86,168,251,65,40,109,37,44,248,4,75,93,45,120,198,6,43,25,97,35,255,190,43,169,0,216,227,23,133,158,26,138,251,222,9,95,37,189,235,60,188,69,123,1,94,54,94,148,209,109,42,71,220,80,142,45,137,25,202,232,0,19,124,99,214,202,105,15,73,238,87,221,233,151,0,195,245,245,57,242,8,125,114,76,81,90,170,180,154,252,231,246,129,130,94,155,238,177,216,14,12,243,1,230,221,25,185,217,226,248,179,125,173,52,3,203,94,151,248,40,39,60,130,140,248,98,48,144,4,121,226,133,10,249,150,103,57,175,192,40,43,38,42,0,185,4,105,255,195,43,22,132,37,72,10,245,43,172,231,227,229,158,5,185,146,178,225,47,247,108,38,8,213,163,37,116,174,45,106,230,249,243,81,237,148,175,131,3,141,78,3,50,178,73,150,101,157,186,108,117,197,86,3
 ,36,124,172,38,118,53,86,88,217,4,155,83,180,197,215,114,130,133,153,100,116,192,78,17,235,41,76,227,23,139,208,206,128,169,116,55,125,75,77,218,254,121,49,88,140,36,193,92,95,18,41,229,138,33,241,183,147,210,20,201,175,145,59,129,15,144,194,0,34,233,252,74,61,179,139,202,231,168,171,252,202,46,0,84,144,73,63,229,28,221,222,166,118,39,42,137,67,76,109,84,166,251,91,44,251,210,20,195,184,103,78,32,146,211,191,184,118,4,127,247,104,176,239,228,79,70,212,217,43,54,128,169,211,165,2,7,186,117,88,66,4,136,15,40,235,66,172,153,103,72,36,40,110,70,244,112,58,232,149,45,193,128,171,84,1,192,64,240,9,147,200,105,208,63,243,166,177,125,46,125,43,253,180,17,203,211,218,52,99,164,6,17,244,242,107,177,49,46,178,241,27,39,124,170,31,39,15,225,179,216,159,31,251,21,219,3,127,101,154,218,182,100,97,9,202,189,60,245,154,46,203,120,13,34,104,150,161,211,232,92,0,30,139,162,52,143,118,45,144,249,173,157,126,248,12,115,36,203,13,168,55,169,117,70,224,89,155,172,152,182,241,237,112,154,229,245,2
 34,188,212,37,111,232,154,41,220,22,126,133,134,33,128,184,21,246,131,136,95,31,135,236,132,181,94,87,249,10,131,233,48,94,221,102,149,231,210,249,77,23,40,169,247,112,72,193,96,52,131,24,196,24,139,154,16,219,156,73,174,32,146,163,88,78,16,139,28,211,204,17,197,138,197,196,165,112,39,56,192,82,223,26,50,165,148,151,55,63,197,105,114,182,162,41,183,33,179,224,211,189,201,226,91,118,219,236,104,133,168,79,235,37,89,212,156,41,60,213,63,144,120,34,28,246,23,77,29,69,41,188,167,39,74,30,167,110,246,91,182,52,248,89,205,200,6,130,30,249,92,99,142,194,79,58,242,170,2,160,125,231,231,30,253,190,209,35,167,210,122,148,15,247,232,27,73,41,215,223,255,93,127,173,193,80,88,5,0,249,82,41,245,168,22,8,202,8,5,76,49,99,200,118,105,197,199,158,223,250,51,62,98,231,8,238,8,187,209,178,26,68,108,173,123,130,62,31,214,117,212,227,107,82,175,216,226,134,9,219,28,84,204,132,167,78,171,86,96,195,220,84,228,66,156,114,78,53,192,89,9,146,229,130,28,120,9,137,26,222,49,177,246,163,109,245,14,210,2
 7,141,230,145,53,218,130,168,162,228,86,108,170,62,99,226,39,65,12,150,13,191,107,188,161,215,16,124,36,139,78,196,174,114,222,114,89,97,33,219,36,57,232,119,149,74,255,203,155,7,254,2,136,108,62,187,195,47,113,33,167,100,87,248,135,39,185,123,172,102,30,121,142,205,175,39,91,105,198,60,181,49,86,29,248,178,250,67,30,15,48,51,57,96,142,100,127,29,93,61,248,41,138,131,93,189,195,101,9,168,57,115,224,6,52,139,36,72,64,163,15,110,212,62,69,31,149,105,235,95,68,52,182,219,120,203,16,228,49,204,135,246,182,241,72,43,176,6,73,76,82,222,148,69,234,163,60,183,80,176,231,252,255,53,202,130,8,120,10,43,221,191,252,64,197,73,91,175,215,146,32,149,233,60,161,249,70,214,177,53,226,171,108,17,1,99,39,253,206,12,193,120,115,234,214,232,236,221,141,164,97,233,1,84,48,31,44,86,125,132,14,138,79,136,106,112,179,179,204,37,16,236,53,72,32,115,197,12,209,243,196,209,228,173,109,73,157,57,242,15,8,156,87,214,225,147,45,154,139,138,124,160,108,226,207,109,223,175,236,118,144,48,10,124,18,50,209,9
 8,108,95,84,59,194,141,105,193,45,134,65,42,207,158,59,110,82,112,40,23,136,116,139,253,240,0,235,32,146,100,156,88,136,6,167,167,128,180,90,253,78,169,134,133,196,110,27,160,210,51,24,205,169,151,59,27,7,24,179,6,200,90,1,104,87,142,28,123,94,129,123,213,239,9,118,75,74,142,155,2,129,64,189,168,194,80,84,175,42,162,25,58,1,227,208,247,89,224,92,26,71,168,88,215,108,88,224,201,77,224,223,22,213,13,44,192,130,208,93,70,38,71,199,134,148,210,51,128,111,39,58,225,157,250,78,8,80,158,145,62,60,96,163,41,142,79,45,226,60,107,198,59,108,106,213,203,84,165,254,224,75,186,80,73,29,50,44,51,185,106,188,131,85,45,55,26,31,119,186,10,189,98,93,163,83,25,15,69,221,14,48,38,57,146,179,189,179,46,252,156,219,72,242,55,75,198,78,85,46,78,202,10,238,10,90,178,117,98,75,91,174,25,95,65,72,49,50,38,159,9,161,112,51,227,98,162,97,205,167,81,35,41,85,134,107,248,8,195,129,243,88,105,90,157,160,8,52,177,12,13,205,198,118,163,77,226,59,171,241,9,17,201,31,48,87,168,144,208,196,88,181,27,162,246,1
 89,94,224,139,3,180,65,135,236,65,110,134,161,30,175,47,138,95,210,150,95,88,184,242,250,209,78,73,183,234,251,138,212,143,50,238,245,214,86,71,51,124,164,173,129,203,155,168,164,124,156,129,141,176,143,172,5,210,246,125,240,19,174,75,42,24,15,72,182,230,155,26,153,213,240,108,190,36,48,64,98,244,25,111,221,240,172,118,111,113,135,223,75,81,28,178,99,63,186,219,133,184,117,242,101,207,160,47,46,6,123,165,130,35,31,30,152,200,240,109,222,241,82,160,215,44,12,208,177,117,187,82,136,81,163,47,251,52,191,26,110,237,240,19,33,211,45,142,233,146,167,64,107,33,253,9,94,136,219,85,179,196,250,143,50,244,150,12,84,125,48,105,174,12,209,64,204,105,239,150,178,36,134,185,173,186,48,85,219,33,28,80,124,91,197,128,226,104,147,116,74,20,209,190,233,201,16,210,189,46,253,132,216,232,134,60,213,181,238,66,59,187,107,21,113,33,115,144,34,166,122,160,179,162,67,56,30,45,249,239,146,220,61,230,71,201,254,89,58,214,49,55,126,158,135,8,101,109,13,71,37,111,17,88,215,70,22,172,54,45,133,159,202,1
 77,206,245,169,88,162,69,205,5,69,141,123,124,252,94,84,167,101,39,165,236,95,190,117,68,50,152,251,13,199,139,157,57,60,130,159,10,239,89,3,71,188,229,167,217,44,84,190,67,57,119,139,229,168,91,158,72,205,222,115,175,4,37,43,10,152,103,163,32,254,51,152,201,178,8,62,20,109,192,148,7,248,29,216,112,26,100,184,31,147,189,241,98,6,206,86,204,36,88,249,63,178,100,164,224,221,85,202,47,222,51,7,49,234,217,63,160,209,189,7,254,165,20,182,62,46,247,179,168,158,26,251,129,3,49,68,183,11,73,46,187,183,134,142,97,169,240,230,59,238,181,130,93,48,34,162,121,247,138,238,148,34,170,246,248,227,125,5,174,147,230,149,239,73,9,115,0,124,175,183,64,71,231,19,177,100,228,92,174,179,132,59,193,57,71,83,146,144,53,117,245,36,70,167,164,167,208,13,1,41,251,131,87,37,235,126,70,28,48,29,155,254,56,75,0,186,169,4,176,42,116,98,37,206,30,162,114,188,8,61,206,252,108,127,166,112,12,105,209,95,45,74,25,118,143,47,58,228,4,110,173,23,144,249,81,137,204,255,245,100,141,2,182,10,52,162,197,251,190,29,7
 8,121,249,62,18,119,200,192,140,219,220,52,27,76,195,174,64,202,59,9,86,207,50,100,36,58,40,8,35,28,108,213,32,68,147,12,196,4,38,27,142,57,101,171,87,111,26,87,93,255,73,57,167,101,181,8,132,108,145,54,117,37,253,19,172,231,116,97,171,133,250,73,15,183,23,204,129,91,188,33,219,24,75,204,129,136,19,77,139,159,105,134,175,149,240,233,246,12,153,231,10,193,150,228,183,135,214,76,58,43,201,101,68,250,4,188,22,90,206,230,25,167,6,66,249,72,161,182,155,231,200,4,236,8,232,205,9,57,188,210,121,209,134,207,176,75,211,183,8,241,199,181,2,154,49,111,238,153,71,96,54,5,145,34,231,42,112,110,33,147,42,217,222,86,131,207,123,170,149,41,105,236,175,243,47,180,124,194,117,9,71,174,101,97,209,78,4,53,172,128,170,98,195,53,112,184,97,130,237,226,251,164,81,250,231,52,72,213,69,175,54,134,112,155,208,175,201,76,25,178,123,191,90,253,243,201,207,218,243,23,62,250,58,152,120,85,121,59,194,115,62,4,42,208,167,230,138,125,214,200,218,99,14,164,32,155,121,35,62,129,10,222,54,206,130,199,95,39,214
 ,7,70,90,46,18,178,234,217,182,89,115,103,114,46,53,39,171,158,242,113,49,204,29,249,148,146,0,222,176,55,234,175,191,179,98,115,168,134,4,147,217,133,134,239,105,201,226,130,61,95,3,138,219,76,188,144,216,177,254,30,119,73,74,91,135,23,219,80,152,113,171,181,210,126,114,18,112,46,84,4,172,9,87,171,247,203,27,63,236,89,114,241,154,68,70,77,6,83,49,241,110,75,207,34,103,44,215,100,231,107,182,218,212,117,101,146,10,243,51,161,53,176,86,189,231,190,196,204,32,51,231,198,146,244,9,122,41,99,178,32,55,110,210,140,52,253,166,52,125,71,152,139,80,201,175,154,73,159,45,119,90,151,46,93,14,56,105,160,92,164,75,245,85,190,233,131,90,154,169,30,235,187,71,4,112,156,159,96,40,198,133,85,184,154,141,207,194,49,199,142,245,237,3,99,193,108,99,68,250,199,141,172,10,189,237,38,150,106,34,118,66,75,82,221,223,75,3,247,175,223,154,110,75,165,106,132,26,38,182,49,62,163,254,183,216,96,229,86,64,112,209,87,249,93,195,226,241,6,168,95,227,58,145,159,75,8,2,183,5,21,232,251,244,54,194,181,157,15
 4,87,194,162,233,18,176,195,31,85,21,243,248,213,81,216,165,120,149,10,248,10,66,18,129,124,159,61,45,56,254,117,207,188,174,95,22,244,14,64,163,23,54,28,165,74,15,82,229,162,75,81,166,203,169,69,179,209,83,136,10,88,253,46,155,100,205,107,44,105,230,163,68,22,146,190,160,126,194,237,80,39,48,147,38,155,241,201,196,67,107,41,26,101,2,231,55,98,114,206,145,218,92,82,161,114,144,99,67,208,131,255,8,110,53,23,127,44,91,39,124,73,242,174,195,129,96,237,191,77,229,163,248,67,216,40,136,91,213,133,211,26,114,143,146,239,110,53,105,197,76,170,243,80,101,203,19,138,139,152,223,121,89,174,97,30,64,163,110,0,159,77,110,45,18,170,65,74,84,79,46,132,195,44,123,243,167,133,181,16,135,51,99,81,49,1,168,226,115,209,78,190,232,38,99,255,140,84,81,252,172,205,81,166,236,181,52,62,122,222,157,87,225,160,14,222,203,219,46,238,19,179,250,60,168,75,143,22,64,106,100,137,173,17,185,10,76,195,14,188,243,24,73,227,54,43,107,112,71,35,17,125,26,61,12,107,127,25,39,107,238,145,237,12,182,22,96,115,20
 9,126,238,20,119,226,39,68,20,138,82,107,183,110,222,178,143,250,75,213,224,190,190,95,175,153,6,237,245,200,143,133,47,189,120,40,42,79,183,75,144,176,231,181,3,204,127,75,214,106,240,19,167,61,26,227,40,39,214,224,94,248,85,208,168,135,72,115,36,21,19,141,8,126,37,165,240,138,4,24,127,21,142,175,161,128,143,2,61,55,67,186,92,2,191,248,105,41,16,112,160,239,243,70,97,20,105,214,144,133,9,170,166,154,57,93,86,95,204,204,195,130,200,56,238,226,114,53,233,133,87,89,128,190,59,99,10,169,149,241,88,80,52,19,31,199,57,229,151,75,133,230,153,184,2,5,52,37,120,95,220,107,134,249,168,165,198,136,117,183,98,224,105,191,62,187,204,97,103,67,222,95,114,1,118,176,133,202,164,174,166,189,0,158,169,1,194,34,50,131,207,184,208,146,156,160,80,44,161,244,254,9,19,146,96,175,33,47,68,38,32,34,198,92,217,35,86,39,195,73,3,150,48,166,59,206,156,12,214,38,12,194,153,35,117,83,66,247,149,255,44,101,172,110,111,186,202,117,107,163,16,212,105,155,126,1,90,174,250,245,64,99,62,28,174,117,194,173,250
 ,25,106,149,10,87,120,152,55,230,39,246,207,142,199,135,25,165,203,21,26,154,151,94,131,189,56,173,173,25,229,253,35,55,64,213,49,183,233,41,133,104,90,198,225,156,106,57,70,148,6,165,10,202,228,160,118,87,51,56,22,236,254,232,254,169,123,78,170,252,151,186,14,161,86,25,32,249,171,194,41,34,196,112,136,111,249,239,242,88,156,246,138,220,182,233,21,207,172,83,56,83,215,17,35,56,69,232,29,231,117,69,223,98,48,252,140,50,209,83,83,242,59,189,40,165,208,240,183,136,158,42,44,78,0,205,214,49,137,100,85,245,127,14,23,130,181,18,64,139,161,21,117,83,133,66,35,239,0,113,39,203,86,173,187,35,239,196,47,64,11,170,16,180,73,118,146,126,148,189,41,146,128,22,203,59,92,209,17,228,203,58,107,229,18,113,6,238,171,70,118,163,10,26,222,109,229,39,89,139,198,216,60,244,120,157,148,241,250,213,34,230,90,198,131,255,154,0,119,161,67,157,40,122,25,137,166,69,153,250,210,182,229,81,216,126,76,246,178,23,126,194,45,42,193,248,81,193,22,202,67,64,177,70,221,137,79,230,228,121,217,34,88,38,52,114,92
 ,68,161,255,239,171,54,179,215,171,52,97,75,129,200,5,161,202,35,125,54,1,222,36,109,168,230,48,27,161,111,202,196,101,117,31,76,1,61,123,110,202,47,80,173,67,96,155,71,25,233,154,23,206,151,120,205,173,124,71,171,132,210,90,119,14,30,92,146,169,231,207,28,18,51,97,215,123,203,110,187,150,198,13,185,140,52,55,28,117,88,93,172,140,179,176,144,28,14,149,95,2,106,187,207,70,141,88,238,83,127,158,190,197,27,168,71,147,253,13,22,203,80,213,49,57,116,215,57,109,65,40,170,221,137,68,31,7,148,247,66,151,152,185,3,129,145,97,13,16,83,121,156,205,2,236,241,252,130,186,154,37,206,204,131,84,4,82,173,234,73,217,236,106,88,34,87,122,241,80,159,137,141,109,47,62,53,226,183,41,242,57,102,225,37,189,129,126,166,69,45,78,27,5,21,199,164,160,28,24,231,228,47,170,68,20,212,133,119,38,35,76,145,128,44,17,158,20,85,16,229,18,125,251,140,66,215,186,3,35,157,101,106,168,114,188,232,137,184,119,129,136,228,21,248,141,185,120,102,136,240,189,159,52,14,84,104,212,197,161,199,236,181,13,166,71,85,248,
 95,124,97,154,238,174,241,130,79,21,190,70,233,69,130,55,101,134,217,76,55,74,72,86,176,53,63,16,207,77,26,146,119,75,107,56,9,245,78,52,122,131,64,32,109,231,4,129,229,92,125,212,83,140,20,237,29,59,115,5,78,154,253,190,163,29,222,67,33,26,193,128,8,112,71,5,189,230,28,214,101,47,33,133,94,197,61,116,180,130,190,110,233,47,64,92,117,13,114,177,133,105,138,226,63,196,80,105,61,3,122,63,187,57,118,10,72,157,149,176,59,162,218,124,219,156,46,0,84,13,77,243,53,77,144,99,251,40,60,24,183,152,217,147,34,207,199,204,53,4,210,78,3,253,28,77,126,146,94,175,144,214,4,145,239,129,162,42,107,58,116,164,90,91,112,159,240,72,121,94,26,69,112,10,23,43,73,148,244,110,42,197,51,92,132,108,246,11,196,106,106,35,120,111,224,27,149,169,218,130,118,223,22,11,243,113,113,176,168,120,229,114,120,96,71,137,221,48,148,200,195,178,251,69,177,202,55,202,101,197,20,44,114,153,127,238,196,72,55,107,73,248,251,164,84,156,220,15,171,102,151,10,243,126,19,203,141,104,131,242,130,138,47,109,71,240,55,84,94
 ,220,66,81,119,88,94,95,39,217,191,243,65,59,149,198,32,126,83,230,61,97,190,71,157,131,204,107,83,177,124,82,185,118,205,131,96,24,230,27,212,78,169,154,46,252,84,240,186,36,212,165,225,42,41,49,240,71,251,46,27,60,225,73,49,47,187,177,199,200,17,209,201,18,31,7,249,139,38,59,119,218,186,209,107,203,81,25,34,39,109,168,46,42,115,253,161,142,190,169,207,107,104,163,57,50,164,203,46,4,214,80,42,52,101,62,84,162,251,235,79,166,142,27,199,207,169,144,13,105,47,206,57,94,142,121,211,106,62,102,103,4,126,91,223,167,219,36,123,95,157,109,53,227,13,35,198,198,198,178,244,97,18,251,184,199,5,35,80,248,180,86,186,40,67,187,115,161,181,100,170,227,50,224,52,140,106,71,32,251,85,178,227,197,203,45,69,202,98,42,155,126,54,44,172,78,99,57,54,238,141,83,18,83,218,36,113,8,142,224,207,240,228,104,180,150,79,106,6,40,131,109,144,102,214,78,112,99,46,12,95,187,213,102,168,93,180,172,121,107,238,163,199,27,37,173,14,224,27,250,52,10,16,59,77,73,27,135,239,130,150,5,222,216,200,205,48,232,93,2
 47,34,58,198,9,129,180,102,215,238,96,63,51,94,184,179,58,108,78,206,48,68,160,117,215,1,47,201,204,237,174,89,193,94,168,5,176,188,156,58,103,254,128,235,174,251,73,146,35,173,183,22,125,108,136,215,193,91,53,177,252,35,135,136,220,179,146,233,187,219,118,185,148,173,28,160,23,0,7,157,107,161,116,217,59,252,46,127,116,250,145,147,90,225,196,229,89,33,213,123,85,112,227,234,233,237,198,83,180,92,181,119,167,192,224,225,147,142,150,238,136,213,159,92,53,139,97,166,73,40,242,25,72,32,18,199,174,29,219,212,107,15,69,44,241,157,194,92,2,201,11,48,182,63,9,29,153,178,110,65,199,143,25,69,22,222,112,66,13,124,99,162,145,130,202,185,44,110,204,48,30,98,252,228,179,52,217,233,147,227,210,9,69,182,86,31,227,91,142,219,146,176,33,216,49,175,166,164,193,27,122,79,244,114,123,204,20,10,183,95,31,228,191,203,169,174,39,20,49,145,144,178,61,67,20,239,178,181,166,33,60,178,67,177,146,187,248,168,209,239,60,11,136,140,189,131,233,112,169,37,208,190,184,12,33,130,236,153,80,2,93,101,230,37,1
 06,134,237,188,136,14,73,196,253,53,193,67,41,158,153,211,244,176,165,77,220,124,110,50,56,220,236,115,237,173,199,160,205,190,52,74,83,154,17,94,157,216,210,240,101,102,166,80,46,104,9,228,89,93,114,14,62,162,166,249,21,240,175,201,133,245,114,13,236,92,252,125,72,102,247,174,246,118,87,58,242,206,237,193,233,109,244,241,130,80,101,254,7,251,242,19,187,153,80,19,131,189,185,45,93,106,238,99,54,120,148,30,217,0,26,141,187,78,98,232,49,52,138,84,204,51,226,43,65,37,79,42,192,69,45,200,20,199,4,83,36,233,92,82,246,238,210,110,203,28,96,26,240,4,213,100,253,200,68,164,70,103,7,78,127,248,207,153,224,203,241,157,164,255,224,153,31,68,252,173,83,205,61,161,146,78,149,203,153,52,242,190,95,7,7,237,179,154,54,223,90,181,123,194,232,177,230,223,222,193,38,8,45,147,24,21,19,253,170,62,159,78,212,174,198,11,158,255,6,199,252,127,105,144,24,29,28,43,226,221,126,58,183,145,238,198,190,231,164,44,255,155,80,144,142,162,180,141,88,148,142,31,171,25,61,97,180,204,110,131,38,107,128,86,146,
 109,104,0,67,139,0,137,240,233,80,228,88,121,186,250,12,18,120,216,81,129,211,101,9,103,118,183,176,26,22,102,229,42,252,125,156,7,73,52,213,230,1,251,86,149,147,132,117,8,12,32,50,16,42,153,27,152,190,80,102,69,103,183,222,145,103,64,151,89,113,18,32,166,171,209,87,112,217,163,140,95,89,30,170,110,135,182,74,247,236,29,172,150,65,240,166,82,12,88,255,238,249,201,204,127,111,200,164,203,11,33,55,119,167,157,166,57,77,98,1,235,212,210,134,213,158,64,164,4,20,136,110,148,114,201,233,51,159,250,77,175,245,34,4,122,107,100,60,192,146,12,164,45,191,7,236,193,23,87,68,210,253,24,228,156,237,10,137,106,25,155,196,167,167,113,193,107,36,136,44,225,38,62,39,37,230,248,44,62,19,32,183,9,207,130,222,185,132,243,180,57,193,65,247,113,187,245,0,128,36,74,149,29,201,47,9,86,65,114,69,124,2,90,117,160,216,188,50,181,221,217,119,58,243,252,60,90,40,44,81,108,87,229,144,222,166,89,192,22,135,248,85,154,119,147,170,240,174,250,114,19,225,138,250,199,11,62,195,112,180,116,111,94,220,197,229,10
 9,9,250,204,178,157,10,253,72,58,221,129,177,197,160,159,193,97,35,228,231,231,227,201,226,202,254,255,219,136,187,224,76,63,51,23,82,187,102,221,32,225,190,119,216,84,23,101,19,46,27,227,74,43,219,136,178,30,21,146,114,74,117,171,104,116,60,242,245,28,57,175,176,54,5,248,11,158,58,112,70,237,146,125,250,236,195,45,124,214,84,8,124,220,97,1,116,43,223,163,226,178,184,154,41,67,239,172,29,27,157,38,41,165,172,131,144,235,104,65,4,39,83,208,77,75,248,76,236,254,213,8,87,142,176,180,237,167,219,89,196,57,233,213,66,128,136,182,230,75,146,231,4,222,5,100,126,100,86,121,123,167,229,188,55,218,124,53,102,214,153,76,244,23,244,8,108,122,42,105,103,144,138,234,58,84,249,30,209,136,133,230,168,99,94,92,31,187,116,172,244,90,56,145,113,106,124,107,164,182,181,159,147,140,116,124,20,54,32,45,185,156,195,39,233,151,111,179,213,124,15,125,144,203,175,40,112,139,83,10,108,179,234,0,141,136,81,203,114,52,46,75,75,188,254,15,211,112,137,220,74,90,90,121,63,243,121,237,117,189,136,181,150,17
 8,43,244,127,71,5,126,61,196,114,242,235,196,104,95,72,237,161,37,126,6,251,96,43,233,87,133,39,129,217,106,150,133,161,235,254,127,76,188,10,2,216,239,123,244,78,130,158,255,134,230,17,14,187,20,156,239,236,201,38,139,39,161,147,224,228,167,69,63,190,1,144,192,99,39,248,182,248,132,246,62,61,147,169,102,93,98,133,66,120,40,239,240,51,96,233,106,47,113,127,50,119,63,40,96,227,61,178,193,232,35,152,188,53,130,14,45,39,19,110,236,92,68,40,50,73,114,81,235,25,12,178,156,168,232,114,28,10,235,200,215,206,7,147,142,9,194,78,109,214,248,219,171,10,211,36,96,186,10,161,201,38,44,249,41,208,44,147,89,113,89,3,144,12,239,2,2,223,192,38,129,12,136,171,87,153,216,215,1,161,81,152,178,255,211,14,156,72,183,234,43,77,151,74,148,96,116,153,107,83,61,55,180,180,71,192,85,53,9,117,116,29,178,12,33,56,54,149,233,143,227,77,140,63,236,7,48,93,204,73,151,164,209,233,29,237,42,9,142,212,232,76,178,230,118,22,66,18,60,135,61,149,90,10,240,98,189,36,251,142,244,132,142,178,41,242,47,228,149,156,2
 31,240,228,141,153,29,31,32,52,155,196,223,184,130,137,18,255,137,217,47,3,139,57,89,70,45,227,194,119,174,228,112,14,13,193,120,71,2,169,199,231,143,75,86,215,185,26,218,165,181,163,145,112,86,99,204,19,107,86,236,82,60,101,129,246,29,61,54,114,252,163,154,8,1,37,238,92,180,159,114,19,127,100,203,182,63,15,55,0,182,109,47,186,108,92,57,209,30,9,208,157,142,80,216,170,0,28,14,27,201,71,30,192,2,153,148,164,92,129,160,227,132,140,114,244,42,89,254,154,245,225,62,98,232,221,140,216,66,75,27,87,242,181,236,89,235,117,214,8,213,253,212,114,142,88,18,50,65,198,174,74,190,250,134,163,124,135,119,234,3,137,96,148,177,193,109,253,79,105,242,0,56,113,52,0,210,104,33,70,131,197,230,107,188,9,213,250,108,112,18,199,184,42,232,249,41,142,160,157,155,146,130,244,11,243,241,162,115,176,195,211,233,17,95,49,79,205,134,206,190,33,110,101,85,64,7,211,181,64,17,179,97,142,30,129,103,195,65,177,155,64,239,209,224,170,147,20,65,152,175,197,59,175,66,225,182,213,211,109,134,96,15,190,181,225,213
 ,182,98,229,57,65,192,163,135,158,111,179,55,96,79,147,185,115,22,14,114,61,77,208,169,74,167,119,154,252,8,188,233,42,183,180,79,179,222,42,208,208,184,168,86,57,168,180,124,180,222,51,55,184,147,221,92,100,112,152,80,61,153,251,42,227,223,4,198,150,60,145,178,70,218,218,185,173,235,174,210,3,88,43,201,5,197,118,240,239,40,172,206,45,16,239,34,2,206,13,143,141,201,210,5,16,37,5,24,194,151,68,233,250,1,230,248,163,178,7,179,105,82,193,92,94,244,100,249,91,220,75,166,216,227,205,49,171,84,216,71,125,31,68,207,220,92,65,216,236,186,46,59,217,116,146,17,116,247,117,105,19,143,70,215,96,235,238,236,196,179,212,95,210,254,39,118,244,215,23,163,47,173,239,167,38,135,128,29,83,40,229,200,207,88,119,148,41,118,236,64,6,30,62,6,149,114,149,37,145,182,53,132,54,149,125,253,106,42,11,98,68,5,137,35,184,26,52,66,254,3,194,121,240,45,190,212,187,255,222,35,177,156,82,118,176,118,66,206,41,89,245,158,252,179,148,34,180,154,93,209,35,95,246,107,200,108,34,179,71,156,167,24,5,149,9,228,180,
 108,202,252,174,176,102,233,114,230,195,177,115,255,128,194,207,71,104,66,162,225,11,198,61,196,118,219,251,158,234,143,128,13,227,80,220,52,73,40,57,59,86,93,161,229,11,65,169,106,15,230,107,82,65,243,79,187,249,224,134,57,236,18,131,64,155,112,211,18,200,28,242,230,229,209,110,232,202,252,118,225,26,114,156,245,168,230,182,151,127,160,171,47,216,26,155,226,201,60,69,168,172,40,77,49,131,14,157,207,65,33,117,133,82,146,8,55,233,48,144,252,216,181,22,164,26,248,43,195,0,126,244,132,38,27,181,254,195,132,3,148,92,140,84,200,153,153,36,46,45,54,243,143,255,215,36,29,21,62,60,144,245,173,231,72,11,123,188,125,75,184,232,164,93,38,91,171,0,175,197,215,208,39,163,104,250,227,126,28,192,52,12,49,234,139,131,126,211,147,225,220,18,31,142,242,10,73,116,206,100,78,103,110,172,179,209,152,192,223,236,12,13,94,220,188,255,1,122,93,162,65,194,162,34,248,2,57,187,14,78,158,189,85,171,193,71,53,254,92,39,3,55,141,226,46,25,118,61,232,230,158,39,168,167,167,76,38,249,172,81,19,136,115,84,1
 66,34,92,189,228,8,70,160,191,84,236,188,29,131,204,182,127,138,206,78,221,49,132,132,26,209,150,0,88,39,183,148,131,141,124,188,6,29,167,198,93,204,170,16,19,158,75,146,248,29,89,154,158,148,105,209,234,105,255,95,254,50,72,126,214,96,179,74,18,143,207,244,3,146,224,6,110,158,141,95,0,72,174,96,223,71,0,213,135,54,109,160,51,64,113,169,171,16,20,250,188,94,90,66,177,247,201,184,240,198,27,52,21,84,32,26,232,41,27,126,108,218,215,50,17,120,193,29,155,248,118,163,3,235,196,232,149,113,143,205,232,198,237,56,148,98,221,94,152,215,82,252,43,100,187,64,35,31,138,114,7,234,103,250,124,67,93,55,58,175,224,0,142,224,11,122,135,189,80,106,30,176,178,7,84,183,244,137,113,118,136,181,178,210,225,73,134,56,146,112,61,241,14,253,97,213,196,124,159,216,29,108,121,235,12,7,187,253,190,90,20,173,18,37,205,252,220,87,239,226,40,238,84,153,93,69,0,232,120,162,4,68,162,193,96,202,173,187,245,233,48,3,213,153,24,209,208,45,69,53,33,79,144,66,169,187,9,24,161,84,11,190,187,73,136,102,60,204,92,
 16,128,23,21,5,164,136,232,52,143,169,102,172,195,39,172,143,30,136,78,102,61,117,140,136,193,215,127,51,71,232,53,69,155,186,63,60,184,234,21,240,41,15,132,22,51,97,185,114,102,3,102,200,199,144,58,208,203,141,55,33,123,165,190,42,191,195,224,2,154,148,139,43,237,51,152,171,185,43,122,210,229,198,206,141,27,100,215,86,24,195,99,235,76,183,27,124,9,126,41,40,13,27,208,183,236,239,106,29,87,21,66,164,172,133,179,43,157,158,49,73,251,169,187,128,68,220,178,59,18,201,85,208,46,62,20,112,85,163,7,81,84,115,53,181,137,208,121,84,115,104,80,63,3,110,179,109,249,170,248,51,86,42,1,32,98,50,2,71,213,45,193,251,14,64,254,133,119,209,203,0,130,200,41,69,169,113,93,118,63,173,47,245,14,16,113,142,196,203,50,94,127,4,89,66,25,214,8,47,235,199,80,38,151,185,251,203,15,201,211,117,240,124,135,157,212,37,129,89,7,118,162,108,46,177,243,156,191,231,205,12,153,46,192,119,63,145,212,88,230,162,70,118,151,102,164,31,141,127,95,172,22,101,212,160,154,62,74,70,75,188,15,140,109,131,5,151,86,219,
 197,73,134,238,100,183,130,150,94,185,58,82,107,117,189,145,188,245,102,16,255,50,181,128,237,157,33,20,2,5,116,23,18,252,231,139,211,220,220,152,133,248,184,43,163,251,100,37,54,143,126,3,12,37,111,69,27,152,158,161,105,171,86,197,96,96,16,186,164,158,50,213,93,165,126,6,224,191,169,148,204,75,83,182,36,142,84,161,143,179,89,141,67,148,140,117,202,187,222,108,230,195,138,212,78,153,104,131,201,168,158,48,131,174,72,171,229,129,184,12,179,143,146,215,251,215,209,220,226,91,40,59,134,113,100,37,139,196,173,237,152,123,136,196,202,243,129,42,107,190,155,76,56,11,97,223,140,205,98,148,155,151,33,38,140,109,162,83,94,127,88,12,191,94,52,249,138,53,136,239,13,33,223,105,120,101,109,79,198,42,132,163,193,26,238,30,175,139,87,200,188,251,131,146,128,232,185,86,106,90,217,9,246,68,230,69,188,151,122,220,153,255,196,234,202,168,35,234,104,123,140,12,219,103,146,64,79,172,97,249,45,38,130,235,19,54,168,165,148,117,127,154,77,84,56,249,194,37,124,135,217,7,248,226,179,207,25,23,194,91,
 120,112,107,189,230,250,8,170,172,1,22,118,243,221,179,223,226,72,146,128,211,205,214,60,116,243,54,94,191,35,194,33,24,211,23,175,174,11,217,165,135,119,244,56,222,251,128,42,123,24,77,243,210,232,22,117,164,201,65,180,119,222,55,215,3,11,72,62,150,95,35,119,112,136,246,56,188,40,119,142,156,87,9,130,15,9,97,62,84,140,167,197,75,104,168,65,4,243,79,170,116,191,215,167,66,174,2,59,57,96,235,124,229,223,22,159,73,38,92,106,102,136,248,165,194,197,68,102,177,207,9,111,217,33,225,140,86,231,26,149,68,36,194,21,98,188,117,185,66,183,243,172,116,203,189,244,97,113,14,216,76,0,246,182,22,243,155,243,32,84,137,80,109,199,235,200,110,187,47,128,156,151,162,239,145,124,110,181,109,193,27,233,120,250,9,42,181,77,192,167,10,22,10,33,121,20,195,27,206,104,97,122,181,5,216,65,69,244,7,74,19,90,145,162,29,118,64,77,235,250,84,138,150,207,203,56,228,117,68,179,252,230,245,149,222,204,11,122,209,98,194,153,139,233,74,57,129,214,48,57,56,85,93,245,198,255,7,243,217,132,242,177,83,160,115,148
 ,219,227,131,166,135,41,163,73,73,152,91,190,222,149,18,229,83,236,242,48,78,116,87,49,132,199,145,57,71,234,237,199,135,168,145,114,208,193,186,26,202,109,205,210,60,255,69,53,97,22,38,233,156,98,242,34,9,110,29,97,1,176,85,223,23,12,136,97,190,216,252,64,115,179,184,192,86,87,49,32,3,44,150,137,79,98,97,69,185,34,16,229,114,59,204,149,245,70,188,193,95,89,45,239,220,175,232,165,230,175,222,203,46,8,111,78,187,178,188,224,51,11,230,253,112,196,134,252,227,128,47,236,81,76,229,181,187,153,149,76,84,66,185,154,223,83,66,143,226,234,172,131,187,95,88,109,212,87,235,101,33,230,249,39,29,196,177,10,25,139,137,116,134,199,56,198,3,125,195,167,59,46,128,13,185,89,233,174,136,94,92,66,21,95,161,119,149,27,249,73,176,197,111,131,165,80,113,147,19,131,146,72,252,126,159,241,57,55,123,211,208,180,173,187,243,251,141,216,37,138,76,253,91,120,123,8,118,16,198,130,117,229,191,95,194,79,251,170,71,240,33,37,23,71,139,182,27,158,200,115,253,209,249,19,182,242,160,241,227,0,187,173,152,213,
 226,134,87,161,158,226,4,251,27,163,89,187,172,174,9,248,143,218,9,198,11,220,38,17,155,85,117,234,3,250,208,150,177,133,182,53,159,75,12,60,10,140,18,60,173,73,124,218,199,208,192,34,159,217,67,160,192,55,133,189,42,18,233,211,45,183,65,225,194,38,10,98,80,133,181,134,165,42,206,127,168,199,109,176,122,116,147,191,172,70,200,32,245,210,170,132,82,35,50,146,251,251,54,158,205,83,234,22,137,182,104,182,2,40,218,6,174,22,170,161,211,1,255,207,189,104,6,90,9,101,27,94,223,126,60,117,39,233,196,33,51,131,38,146,94,248,27,155,118,157,10,145,29,217,154,146,90,93,228,212,29,171,178,231,61,9,72,36,222,45,217,59,184,94,171,26,72,239,215,215,95,22,13,250,67,246,31,162,234,48,52,179,39,241,76,66,234,30,215,115,204,196,42,205,156,69,203,90,225,66,168,127,11,23,229,82,134,97,66,243,230,155,152,71,156,88,133,14,128,125,29,192,159,162,129,231,222,79,175,44,238,135,30,91,88,94,170,240,44,227,247,249,193,172,31,223,68,39,43,159,114,107,225,233,185,128,128,195,223,176,46,93,235,23,32,238,124,
 79,1,52,156,183,51,77,43,17,112,73,253,43,101,60,203,135,54,198,220,70,172,69,139,92,170,34,125,126,137,254,195,158,141,77,38,31,7,231,130,196,39,44,132,55,181,156,96,41,218,167,160,189,203,62,189,43,91,178,121,47,136,192,50,16,79,176,222,184,99,219,164,152,56,50,2,246,192,226,115,165,17,172,70,131,52,122,182,90,155,29,42,166,164,57,76,138,48,58,152,96,139,80,55,220,238,232,196,10,8,32,62,58,85,201,233,186,240,132,120,135,23,131,198,66,76,173,54,84,68,217,18,183,179,183,250,46,145,3,47,120,159,60,143,201,245,23,3,142,104,62,144,51,214,149,172,228,130,235,74,227,177,246,37,81,147,48,31,248,185,233,82,55,90,72,154,79,254,106,208,192,161,6,74,134,23,70,161,102,154,5,221,69,247,195,153,139,185,15,41,181,233,67,200,20,123,137,9,84,50,232,125,198,88,95,153,42,116,201,77,35,123,52,172,95,214,66,155,179,151,86,208,57,121,27,197,0,155,119,220,17,176,142,180,174,139,206,97,75,79,59,37,143,245,171,225,173,41,17,10,46,147,92,44,50,40,23,141,9,48,184,35,0,32,111,28,64,146,87,186,193,84,9
 1,91,197,186,18,77,209,103,142,21,137,43,15,120,3,218,121,75,173,45,253,166,67,182,1,56,124,7,16,116,192,174,103,225,107,177,143,134,125,228,186,188,135,35,110,21,167,216,154,246,28,125,130,227,205,18,5,2,175,226,81,188,199,101,37,108,103,223,185,113,1,22,32,96,131,82,79,214,245,74,182,13,240,113,67,203,83,9,178,11,181,9,39,175,145,207,168,204,24,3,28,197,148,11,51,51,251,207,135,91,154,11,131,215,194,86,70,81,82,29,113,0,156,235,230,179,153,55,241,231,35,5,39,59,241,76,185,119,48,91,2,207,105,254,86,192,176,86,31,176,75,110,36,115,221,61,98,106,190,197,130,72,47,14,206,95,97,148,31,119,121,54,197,14,249,25,205,167,89,162,79,80,249,35,142,234,192,4,179,244,3,194,20,52,181,65,251,180,46,115,84,44,245,100,211,67,26,38,100,244,66,68,96,91,143,110,188,65,213,68,165,79,237,9,234,58,238,37,77,31,28,21,52,96,142,78,18,191,59,72,13,28,142,174,90,29,104,50,57,67,18,101,52,189,64,251,169,95,221,224,216,127,182,136,174,49,172,129,137,52,14,98,62,107,126,49,216,6,79,250,25,81,222,132,89
 ,172,251,238,117,60,22,47,179,72,24,205,63,188,89,185,252,131,98,138,23,201,157,228,234,79,150,9,45,65,89,219,96,207,230,89,161,229,72,197,40,234,157,246,223,100,118,51,166,139,0,89,65,81,45,93,133,238,142,125,88,200,30,109,121,29,137,89,88,168,171,163,214,95,209,143,179,75,83,141,143,253,119,176,64,139,121,156,159,66,254,125,236,10,37,178,227,95,82,22,5,84,221,72,190,47,18,136,254,123,124,232,250,59,234,76,131,144,118,127,56,221,198,204,162,79,221,184,96,52,115,121,153,70,147,204,72,185,134,56,152,114,133,248,192,238,71,26,46,183,62,220,165,228,117,145,207,10,82,5,52,211,72,170,237,134,61,25,219,218,120,223,136,228,140,140,205,112,53,32,187,152,34,235,95,137,200,4,182,187,203,241,167,97,162,103,110,86,117,84,215,19,228,204,235,42,72,16,209,69,185,114,59,160,73,35,183,157,194,213,58,191,226,121,69,169,250,203,56,165,27,59,231,187,104,207,44,47,63,43,87,209,123,51,20,87,158,163,165,148,117,178,230,25,59,217,194,159,79,133,238,94,24,84,225,50,155,216,230,235,13,214,36,197,127,
 156,84,237,30,178,187,31,21,38,98,86,135,45,133,214,129,136,101,18,209,144,42,2,193,78,111,217,139,2,44,39,142,11,193,202,96,60,160,95,91,14,32,234,244,41,251,82,236,155,85,51,36,88,140,228,155,67,43,143,140,123,41,165,92,169,157,0,76,208,69,78,251,156,112,250,36,249,218,134,47,166,113,5,228,112,46,19,121,225,222,233,210,137,250,108,108,193,214,122,181,118,6,130,190,124,242,77,22,253,62,18,219,96,67,253,160,81,188,213,218,31,44,101,10,21,92,222,169,254,76,65,17,197,252,177,208,125,171,201,237,96,63,25,215,197,22,176,23,138,192,10,0,142,13,55,111,0,105,231,121,33,13,186,177,124,182,103,238,139,96,234,169,182,122,115,187,214,86,170,229,117,104,76,168,55,199,191,1,50,92,23,150,164,146,222,26,89,10,112,8,174,185,11,134,12,102,169,170,17,121,140,221,6,125,41,227,152,184,169,119,20,235,212,16,115,50,244,157,67,109,110,50,189,217,185,59,204,106,199,101,97,53,187,165,108,51,107,198,17,196,161,198,223,116,210,214,136,181,155,89,163,5,228,70,127,188,46,82,118,8,194,204,134,49,36,107,1
 02,139,148,6,255,71,199,224,164,140,25,71,58,214,6,57,47,40,164,3,229,167,57,216,16,8,66,10,215,97,36,41,25,200,184,169,126,235,183,53,254,18,225,172,46,116,169,246,62,41,223,141,34,15,136,236,24,165,220,223,103,146,177,100,36,18,193,228,158,118,29,245,52,203,104,31,224,16,114,21,138,220,211,216,171,16,166,245,21,148,247,10,137,16,14,107,220,191,9,151,7,158,237,184,183,1,201,232,156,180,106,248,51,0,44,27,185,68,176,42,215,148,91,150,155,218,23,182,141,41,113,72,29,236,127,66,223,253,85,124,209,154,155,69,6,195,58,195,31,118,237,144,77,141,51,21,207,166,113,123,101,202,253,74,252,83,114,43,177,230,131,207,164,95,67,163,68,123,63,158,64,239,181,191,1,160,62,248,23,20,194,255,159,240,27,93,56,157,27,58,114,104,235,22,57,94,79,126,81,78,184,212,203,1,23,34,240,176,28,7,141,65,57,29,171,231,46,53,109,208,241,175,58,145,134,109,54,111,86,79,92,228,33,104,28,72,155,235,51,254,166,200,214,133,44,145,233,43,213,176,111,28,251,117,247,64,107,190,32,229,192,222,20,43,180,106,112,59,13
 3,12,228,244,156,102,186,98,71,157,206,69,128,251,84,171,1,41,140,247,206,96,12,100,187,121,35,161,224,236,130,119,213,130,159,233,109,186,246,176,134,42,184,18,192,219,168,125,239,163,82,22,138,218,136,97,156,68,154,101,98,159,114,165,156,66,51,172,204,126,9,65,203,109,49,230,119,103,40,243,52,203,19,94,103,238,19,23,55,219,130,11,79,7,37,255,234,30,73,155,239,199,6,42,199,45,137,143,151,54,95,4,8,189,35,250,187,249,1,142,82,109,186,3,22,16,107,52,87,183,129,74,233,10,114,158,188,145,49,30,104,106,19,245,120,131,150,251,50,210,210,180,191,60,142,109,110,56,111,204,178,144,246,111,100,148,85,26,19,137,254,51,85,132,4,172,215,105,118,53,54,67,120,114,2,188,229,110,57,121,74,215,162,143,77,21,18,82,194,231,255,239,238,182,173,49,14,137,173,219,249,56,45,55,203,90,97,85,155,61,1,247,143,209,191,29,250,251,184,21,192,7,49,168,35,190,23,100,251,177,144,122,250,114,188,225,159,184,174,221,74,221,46,65,165,92,99,27,211,169,123,44,71,253,103,179,187,113,85,31,183,185,137,116,164,193
 ,97,16,30,176,146,83,219,137,58,178,55,14,166,15,129,210,180,149,171,107,230,199,89,136,182,52,22,30,161,6,9,237,8,158,252,21,250,74,174,171,118,218,145,156,201,177,61,172,18,90,238,156,13,249,119,189,188,120,149,2,191,89,49,50,212,107,21,186,38,131,146,186,212,230,224,14,230,182,79,190,174,158,225,210,125,70,135,152,105,138,126,178,153,123,53,234,11,81,188,125,255,29,217,73,206,41,221,51,249,46,217,245,180,9,73,123,20,202,205,95,255,252,181,107,113,28,79,43,157,184,136,183,65,156,224,193,37,183,175,115,51,183,5,81,112,254,78,166,227,5,176,110,83,14,164,55,97,197,58,98,95,179,209,225,84,111,45,28,68,197,248,184,216,47,146,248,82,230,100,218,183,13,94,56,131,44,82,56,15,27,243,24,252,239,169,228,228,11,119,129,44,183,100,111,182,161,237,149,228,14,183,210,40,152,221,120,43,172,167,92,157,104,9,252,80,127,65,55,252,176,164,51,221,115,200,160,25,230,201,149,170,37,80,211,23,225,200,159,25,148,31,122,177,217,82,139,27,150,253,107,151,46,198,228,32,34,206,38,239,12,89,113,157,66,
 250,66,217,8,203,60,59,234,17,128,165,91,48,46,34,67,102,244,134,140,106,146,184,208,254,73,32,192,89,144,27,182,240,144,221,19,180,89,149,181,166,230,102,225,84,102,4,216,254,236,98,252,129,166,213,173,22,145,77,219,60,109,254,138,206,220,252,242,187,10,54,22,241,231,183,66,38,97,211,59,184,148,66,123,41,150,86,141,179,158,95,228,95,176,140,29,26,7,58,26,3,254,153,172,76,8,129,141,74,89,123,62,136,208,94,152,196,111,106,212,103,86,4,154,219,215,246,94,225,128,109,70,23,237,235,44,239,135,187,76,219,163,211,162,245,115,7,181,149,198,13,150,225,10,53,181,100,154,152,71,211,40,51,106,180,113,110,47,29,34,177,95,208,164,170,12,127,81,167,177,171,113,238,138,199,122,160,68,238,242,150,247,22,166,163,165,145,238,42,86,80,104,228,36,30,18,19,5,14,178,19,251,125,116,116,126,245,3,12,221,236,203,147,112,149,109,37,216,220,141,160,0,236,124,72,113,207,168,67,185,91,7,91,32,75,58,68,47,165,44,8,164,116,26,242,253,250,205,62,188,81,155,148,187,93,93,178,108,172,124,96,54,28,219,211,213
 ,240,15,28,37,193,202,235,212,65,83,199,19,84,16,183,104,104,118,19,72,231,169,11,53,148,45,16,25,228,109,65,163,212,6,2,164,239,155,159,164,135,101,57,194,249,172,20,17,234,14,156,245,66,213,110,46,107,235,62,207,103,240,50,241,103,95,95,162,74,148,235,149,175,121,18,151,79,199,132,23,94,204,226,34,30,42,210,200,7,85,48,55,75,113,86,29,95,140,80,113,144,202,217,102,161,153,102,157,246,61,239,68,28,1,206,50,177,190,7,150,208,160,56,198,248,14,42,178,224,44,157,230,27,8,112,151,228,244,24,75,152,120,108,220,194,173,137,44,24,113,173,78,146,67,185,27,10,117,186,239,235,60,31,159,86,145,31,177,190,95,117,83,207,105,154,27,51,199,212,48,179,151,226,128,238,154,196,109,1,149,79,35,203,119,8,3,60,115,190,38,18,239,176,206,93,244,90,178,226,156,58,215,173,193,196,6,234,226,200,103,80,145,95,3,185,87,180,188,98,242,85,37,76,129,42,73,186,170,118,188,246,203,255,102,53,110,174,206,8,228,184,206,115,193,136,57,199,50,23,204,51,151,39,202,113,104,15,17,246,54,141,0,244,129,33,3,164,113
 ,27,161,229,11,247,121,191,78,123,217,114,243,182,240,235,13,55,244,10,0,11,214,11,178,110,164,169,136,182,66,151,75,229,89,105,51,109,75,164,70,39,7,8,103,35,42,76,154,137,58,151,251,51,128,200,126,200,53,7,110,216,36,167,90,193,174,119,64,201,144,78,181,118,207,194,59,226,220,18,77,84,158,115,66,103,48,119,97,66,228,239,84,46,255,127,211,38,90,56,14,228,157,93,7,153,92,74,207,173,193,12,221,40,143,33,30,101,114,241,55,6,153,241,131,66,249,97,118,225,125,241,96,121,208,205,59,227,200,120,214,85,102,192,163,10,40,236,216,123,156,243,96,205,16,202,135,140,162,35,195,132,41,36,66,82,145,5,213,54,92,111,225,149,238,118,100,200,239,232,78,169,148,130,5,192,165,95,61,60,216,180,224,124,229,163,13,35,153,175,63,243,202,84,165,210,244,91,90,199,197,78,68,49,200,158,132,130,131,5,109,47,65,62,140,128,101,157,96,103,22,23,220,120,172,183,32,157,54,89,214,174,94,187,4,95,6,182,194,78,211,150,128,100,52,204,205,49,60,237,96,168,59,159,123,175,198,208,244,103,57,201,231,74,184,229,128,1
 92,166,243,151,221,143,23,189,112,92,238,214,207,89,71,28,249,197,213,181,42,222,126,113,56,186,94,115,7,22,66,143,73,126,158,135,93,18,8,156,105,140,202,40,20,197,106,69,59,239,219,193,104,150,72,180,68,193,10,178,209,202,24,249,26,195,100,47,68,65,241,192,159,19,239,169,252,106,167,68,98,238,89,126,196,145,197,213,116,10,27,41,183,86,167,228,150,10,199,158,189,63,253,132,215,225,95,76,52,228,126,6,86,210,166,69,111,49,165,200,203,138,235,42,118,206,189,142,91,198,214,134,225,117,6,67,81,196,123,37,252,183,107,147,59,213,34,146,9,9,170,175,121,65,203,247,109,108,127,3,120,112,100,237,180,223,107,57,152,178,52,205,46,43,252,59,90,8,45,148,7,57,86,133,152,159,53,147,190,129,121,219,104,67,248,34,233,218,76,1,137,17,122,251,185,208,44,24,184,105,38,112,200,154,192,58,62,192,54,245,224,194,142,25,218,180,57,5,109,193,34,159,69,70,2,97,242,142,75,165,132,174,254,35,170,193,153,45,49,80,251,74,216,40,29,208,6,134,95,215,138,131,133,178,116,164,43,212,200,54,37,165,121,28,52,181,2
 09,35,189,35,168,234,161,58,75,191,227,92,208,123,221,152,225,240,211,130,21,29,78,87,81,119,19,163,18,118,231,116,22,175,3,196,210,190,25,102,189,177,105,213,99,24,172,33,137,85,251,224,63,11,250,173,250,65,70,61,201,174,179,192,111,72,186,5,168,107,221,160,214,151,93,57,199,227,22,233,247,75,22,72,58,127,192,255,249,39,206,90,149,209,88,152,96,148,67,21,41,18,212,29,231,140,154,6,230,169,96,217,12,100,188,205,215,230,230,2,134,64,101,66,54,223,28,75,239,134,58,51,149,79,36,207,203,91,186,98,174,89,188,146,93,239,136,55,60,135,136,83,123,65,66,212,124,97,177,43,19,99,129,207,84,200,239,207,143,119,44,113,221,197,214,112,55,146,174,128,43,244,31,63,42,90,102,38,148,216,98,139,199,160,125,167,47,16,93,244,248,98,189,187,140,13,46,160,49,121,181,143,1,21,70,185,4,61,147,181,222,239,109,108,179,156,136,47,212,152,65,207,208,206,99,27,137,214,121,3,1,21,179,57,127,105,224,124,65,227,237,116,31,86,183,131,140,184,105,37,101,238,113,4,140,104,96,148,101,82,245,50,173,17,75,141,16,
 209,140,229,128,41,124,102,243,83,66,163,17,115,26,111,50,230,188,76,29,94,245,169,48,96,151,180,255,214,111,91,63,252,137,246,62,21,102,74,181,199,133,95,84,225,220,235,173,152,133,210,5,200,12,49,173,131,109,149,96,20,157,40,43,146,112,2,236,13,207,104,212,246,142,185,249,172,231,148,64,230,218,118,236,186,238,69,156,255,85,44,15,34,148,70,55,117,15,226,84,152,216,238,201,110,141,7,75,242,38,141,191,190,19,64,226,78,203,32,185,121,124,109,105,196,83,183,84,233,134,63,232,43,246,168,166,199,168,195,138,91,76,183,5,177,92,122,110,242,141,234,124,126,24,74,169,116,97,61,42,221,39,142,128,99,70,129,184,174,208,13,236,84,75,75,55,102,193,96,114,135,195,72,254,121,193,174,191,208,249,58,79,161,157,209,192,56,71,57,169,46,188,96,173,162,162,4,78,107,71,208,46,164,81,121,180,251,63,107,138,175,181,84,113,98,226,215,148,208,112,199,131,244,176,46,107,122,188,188,21,32,178,88,192,237,34,169,107,159,58,128,35,145,127,89,201,166,215,251,174,223,96,156,225,8,212,131,165,85,7,112,77,96,
 87,2,80,30,130,86,196,124,233,170,126,54,89,167,236,175,149,24,99,210,240,3,255,213,238,28,138,179,97,149,218,255,174,223,59,112,29,239,12,98,49,18,41,42,119,94,37,78,110,179,87,167,37,156,250,122,61,39,45,118,21,175,151,58,195,141,227,57,148,25,112,204,239,69,56,91,40,51,153,232,146,150,166,136,96,190,40,45,207,218,3,131,118,69,39,251,110,145,137,237,93,215,130,65,161,110,5,217,178,29,207,188,114,81,122,239,130,13,200,244,207,152,251,112,50,122,115,197,148,117,75,106,95,119,233,190,154,13,49,119,196,139,45,144,186,182,236,15,59,84,175,173,189,179,195,96,136,194,168,28,26,238,138,200,160,14,96,10,255,154,114,26,204,54,147,225,39,51,214,0,218,10,119,26,40,136,229,98,83,196,105,225,227,99,149,182,227,79,191,36,215,109,250,84,183,231,129,217,158,147,200,181,248,246,163,135,9,3,255,146,38,14,204,73,56,62,248,228,152,137,179,101,41,0,250,183,153,155,182,244,35,240,197,10,94,82,110,149,89,249,170,37,197,40,53,113,30,142,6,10,74,218,145,126,92,8,200,152,178,168,180,213,20,143,150,1
 53,59,107,157,144,93,253,19,102,127,151,211,17,30,111,4,223,0,37,8,174,23,204,164,64,113,99,154,163,144,190,73,165,202,32,204,238,75,73,170,236,157,152,143,253,138,3,83,109,49,137,171,13,244,67,234,58,23,198,189,51,172,107,154,114,147,127,24,33,242,116,95,82,217,174,39,6,109,85,214,75,1,33,219,41,48,166,159,147,20,200,27,77,20,63,128,231,130,244,11,134,73,85,151,143,94,204,97,114,56,64,142,22,162,194,84,22,38,170,44,162,72,168,231,175,215,48,70,138,207,184,198,91,220,186,243,49,6,33,145,244,41,170,54,245,181,28,145,244,21,72,92,174,5,15,9,30,129,76,121,239,119,179,89,122,88,23,254,28,205,120,236,17,121,207,4,85,223,216,221,25,9,46,222,53,233,101,107,136,91,28,172,97,211,224,141,37,251,235,135,57,143,19,206,221,204,201,174,141,157,162,27,144,226,247,203,187,45,234,90,130,31,34,216,4,29,102,103,168,192,37,171,63,59,84,231,214,150,147,244,215,25,213,9,105,204,23,82,222,37,237,42,219,25,72,62,12,23,174,228,137,235,10,201,227,155,152,226,242,65,203,44,77,175,232,245,27,85,195,65,
 82,96,100,145,197,94,203,143,174,58,87,5,242,129,31,208,101,201,10,103,145,110,158,55,122,179,47,80,118,83,56,252,228,119,93,46,36,180,176,75,28,170,106,185,214,49,81,100,238,202,206,25,9,216,211,230,26,225,95,159,43,173,230,149,31,230,199,195,142,132,89,241,61,72,3,38,217,191,29,109,45,208,125,172,67,57,72,81,97,8,92,110,81,92,220,167,121,167,140,245,83,68,173,152,45,198,220,200,181,128,41,137,196,95,136,172,57,120,248,94,209,26,10,232,103,2,77,24,144,3,93,5,242,230,134,175,240,20,246,57,255,168,130,49,159,171,11,188,107,20,236,1,85,60,196,135,27,66,188,129,105,228,22,164,205,135,37,160,209,74,33,146,4,8,168,216,138,203,206,40,200,242,28,207,156,218,180,155,253,21,121,10,229,148,21,62,255,27,152,190,148,46,246,113,207,140,94,249,205,7,111,148,108,166,249,23,158,73,41,199,41,184,53,216,220,244,76,105,81,62,35,49,107,130,246,131,155,72,86,128,179,30,167,46,45,34,54,124,105,111,205,91,208,155,232,197,54,23,212,170,97,196,225,210,205,173,188,192,41,27,135,8,28,214,206,243,235,2
 43,132,41,141,47,176,199,112,69,240,213,230,30,123,164,57,142,102,203,215,67,145,51,48,155,180,74,76,124,206,249,119,169,99,224,177,101,203,171,1,160,181,225,122,103,34,250,188,72,33,17,57,144,114,180,190,34,199,231,63,232,37,71,226,255,105,221,89,52,150,247,95,111,240,59,39,174,43,57,114,211,26,83,253,157,217,250,25,222,210,248,40,148,169,96,12,1,48,204,182,44,25,72,124,126,12,208,240,209,114,196,177,223,125,179,156,157,71,152,221,187,19,202,109,100,114,0,19,206,57,61,200,89,147,35,208,17,71,180,235,150,40,26,204,62,113,198,239,79,25,101,2,184,172,231,55,157,102,125,2,8,211,16,151,209,30,149,161,23,212,178,67,52,213,171,134,215,102,124,181,192,252,11,213,82,90,159,1,87,209,98,153,90,77,5,24,181,23,72,234,109,83,86,146,175,146,161,87,240,75,153,14,236,62,105,141,205,173,67,82,88,76,3,214,159,198,102,203,52,200,92,83,119,55,28,122,161,166,177,50,201,180,229,203,79,67,62,77,146,134,75,27,25,155,214,180,226,177,37,241,156,192,4,44,221,69,184,52,175,166,196,206,62,114,78,193,156
 ,164,245,147,33,36,104,80,243,131,190,217,66,55,54,52,178,174,14,229,75,13,78,147,249,44,231,112,160,16,238,20,101,81,157,207,239,154,39,221,110,86,119,77,200,25,238,228,221,199,41,115,53,132,212,19,70,45,62,69,14,8,233,178,135,164,255,170,49,175,175,11,217,155,0,9,241,113,176,167,95,162,141,249,199,118,214,244,250,150,7,109,210,142,245,154,143,184,39,121,91,39,86,131,166,149,220,132,206,95,234,250,136,58,124,194,73,98,58,12,128,165,244,188,254,190,246,34,72,210,106,183,49,27,64,47,2,120,202,197,1,31,182,10,127,36,128,237,123,85,231,90,31,62,16,129,254,204,80,150,238,101,155,27,19,238,104,13,204,238,99,90,242,106,51,149,110,168,154,41,107,134,169,245,140,186,129,198,179,37,186,132,141,70,8,53,124,67,113,64,148,101,42,135,203,162,36,54,170,77,12,155,201,48,211,159,198,62,49,141,176,61,21,92,14,182,146,42,49,137,137,173,246,40,7,73,219,105,64,19,227,110,12,54,71,6,10,150,222,27,210,93,68,193,226,102,243,132,70,244,195,78,100,159,247,220,179,201,234,9,131,100,239,141,204,190,72
 ,47,102,60,102,190,141,245,87,191,227,99,25,172,242,195,40,207,167,143,226,75,233,109,75,235,189,87,235,154,202,203,66,131,115,111,255,124,125,163,200,197,76,248,168,57,215,92,46,67,239,218,214,55,245,198,7,89,224,14,170,189,161,204,132,236,34,178,208,99,54,201,62,34,101,16,147,52,86,79,77,18,127,231,187,50,8,92,22,71,92,172,51,248,103,196,98,214,66,96,19,12,213,121,100,230,192,20,43,164,141,51,130,235,179,76,189,231,51,109,232,239,92,105,212,199,137,49,202,213,0,232,145,87,244,43,116,222,243,176,250,156,203,49,58,197,210,3,86,73,3,103,213,116,43,240,95,133,51,222,103,233,51,226,65,180,135,189,147,157,155,128,245,174,51,157,25,107,160,217,243,243,147,160,160,139,144,54,125,132,215,174,128,231,106,195,132,91,253,234,105,46,182,130,61,39,103,111,158,132,214,76,138,146,181,214,60,188,162,120,174,131,97,184,174,55,70,148,84,163,145,114,220,72,228,121,227,190,244,41,55,92,2,33,158,231,60,54,64,162,205,19,0,94,74,21,185,166,213,49,160,2,76,124,80,158,55,199,167,170,12,138,21,228,2
 05,226,85,17,250,101,127,208,162,152,239,117,58,148,253,176,197,252,113,90,100,205,101,67,227,25,32,217,253,147,34,126,50,165,253,189,34,8,220,75,229,132,228,79,70,135,233,224,24,115,84,27,113,17,172,168,167,67,135,135,82,212,207,79,45,157,206,52,163,88,189,42,43,251,193,49,83,245,182,223,35,121,78,26,208,129,195,228,251,96,150,179,62,164,99,159,99,146,110,246,73,47,59,109,225,190,91,128,39,131,59,48,137,211,146,152,95,107,127,28,174,107,121,6,58,28,253,22,204,129,176,163,237,110,92,139,110,247,171,92,118,27,53,94,32,87,24,96,116,188,22,239,82,125,171,57,151,137,157,35,154,225,91,62,69,5,72,48,105,242,233,64,217,132,173,142,27,175,59,103,168,110,46,82,169,172,1,224,44,186,30,97,10,204,0,154,173,141,30,78,203,122,222,203,218,95,88,153,22,197,33,94,174,250,17,149,248,138,186,165,134,35,50,71,236,8,234,129,253,70,211,127,109,90,77,112,163,240,26,131,56,176,149,112,40,168,86,143,32,228,116,44,33,168,4,145,12,53,118,23,38,147,216,232,45,203,65,44,57,198,226,232,113,230,170,58,229
 ,53,163,139,63,41,100,168,242,231,15,160,174,17,3,110,108,113,176,248,103,175,241,199,130,164,24,196,100,159,6,87,18,164,103,21,145,170,19,135,4,142,135,17,148,76,33,178,223,118,222,11,219,50,140,221,92,183,229,104,189,6,14,252,231,218,232,3,17,70,247,156,178,174,69,243,51,176,164,1,245,178,128,93,182,61,107,5,121,159,198,230,130,216,136,171,243,142,13,40,52,152,253,124,18,164,141,58,160,38,231,67,185,29,18,159,15,192,151,189,145,238,247,241,99,225,40,107,134,243,84,23,149,45,145,37,41,80,100,135,57,254,144,130,54,182,73,170,109,74,46,177,147,149,239,135,123,40,105,204,122,213,250,181,44,93,96,229,221,54,11,177,116,174,69,72,233,246,130,111,212,223,114,161,172,126,22,234,99,17,201,242,204,249,241,98,191,38,0,209,87,104,252,35,243,237,112,220,4,253,222,220,98,178,42,45,127,112,60,150,116,250,152,197,130,131,178,247,77,17,160,98,187,168,125,83,48,178,216,77,37,216,24,31,78,222,204,163,122,8,249,49,25,205,112,214,244,85,132,223,166,56,58,4,55,56,211,37,52,63,36,138,26,180,44,23
 4,62,124,101,204,151,116,226,115,195,170,57,115,96,137,216,75,15,38,149,182,108,206,23,212,147,31,26,200,234,6,64,146,51,178,51,143,235,19,201,90,20,103,187,129,237,141,128,93,3,64,16,210,153,156,97,205,142,106,32,28,176,72,70,106,251,254,210,213,63,19,236,231,74,217,77,64,103,101,183,2,165,254,162,103,57,43,77,42,200,218,205,5,115,22,99,109,168,174,144,44,217,129,163,20,94,108,11,79,200,93,160,217,248,47,250,59,197,177,99,15,213,83,94,128,100,2,174,177,138,253,226,227,209,101,78,197,231,247,219,66,239,222,198,145,65,207,98,51,24,148,228,100,210,235,129,224,191,116,69,197,90,142,128,255,123,123,40,6,39,31,238,55,6,224,122,173,6,44,0,154,94,227,120,82,109,46,3,253,197,84,93,121,221,192,212,171,24,168,117,234,148,227,204,131,10,112,166,17,91,220,20,149,238,86,99,250,172,208,20,138,106,49,227,134,217,219,60,158,35,155,70,110,104,17,147,230,174,239,217,35,156,146,122,247,120,125,143,118,211,87,212,69,117,119,34,45,187,167,12,249,124,207,178,121,252,115,248,135,87,222,38,37,16,37
 ,144,231,41,5,4,120,138,33,244,205,93,170,145,7,106,65,143,158,181,66,12,155,200,76,81,205,140,18,235,53,117,220,82,122,188,241,61,157,217,236,56,232,52,205,223,102,9,49,176,47,113,88,38,169,91,239,185,25,109,49,204,248,176,49,77,21,86,89,162,117,99,153,255,173,151,247,246,143,172,174,179,200,94,8,113,231,142,145,52,236,9,150,151,11,97,146,112,184,150,96,241,46,127,77,70,135,195,36,152,179,30,159,18,36,62,59,73,97,226,30,156,184,204,167,89,6,229,48,210,33,30,113,143,122,41,50,185,11,92,208,209,251,14,253,58,71,161,148,252,72,238,28,236,118,33,30,163,219,32,249,202,81,84,82,70,244,27,221,47,88,112,101,91,152,228,108,239,15,105,8,21,47,96,18,74,113,195,198,146,97,212,9,240,60,47,23,76,93,95,212,82,152,7,211,129,124,239,146,243,70,155,81,51,189,254,168,14,75,224,131,83,172,202,23,171,117,110,88,221,26,180,187,249,127,24,170,33,98,136,21,181,105,215,195,32,93,244,203,111,228,176,222,163,172,76,2,102,53,143,249,235,59,17,179,189,82,76,96,123,223,132,163,136,249,227,218,111,159,11
 0,121,143,186,246,23,42,156,140,233,13,40,231,225,148,135,151,53,87,40,47,240,199,191,34,88,241,103,118,254,43,0,241,226,132,106,163,243,78,12,77,35,244,195,214,119,58,68,122,29,171,245,123,71,23,249,224,20,241,101,165,152,13,186,67,28,86,90,184,198,35,208,16,97,158,183,184,158,200,23,202,71,46,84,245,149,135,233,81,163,34,255,20,37,55,116,167,219,62,208,224,103,134,126,216,5,200,99,138,132,18,7,81,67,127,118,222,222,20,119,162,148,68,230,249,160,40,209,216,49,39,17,222,254,72,234,194,49,207,28,14,167,131,172,231,216,83,211,47,125,134,34,3,42,251,196,237,208,7,89,223,115,143,64,176,196,249,212,48,254,62,133,248,246,212,61,127,136,171,5,132,64,115,235,177,168,227,142,246,105,89,98,172,255,72,250,175,13,17,145,139,108,187,120,20,32,14,20,226,48,231,227,110,98,112,110,85,227,143,108,51,67,76,80,90,82,37,226,144,224,95,118,11,27,151,44,76,138,14,233,143,44,82,111,44,25,155,213,124,228,144,241,56,214,14,17,179,203,190,142,237,247,85,158,252,46,41,203,67,103,228,3,172,77,246,98,41
 ,237,15,48,15,30,216,241,162,137,190,92,208,215,169,111,22,191,22,217,180,183,108,95,255,57,41,229,193,51,39,211,218,73,68,116,62,126,177,76,5,240,167,83,78,224,191,110,246,188,166,17,234,35,86,87,118,167,228,70,227,176,160,204,85,212,3,202,82,174,177,115,208,150,5,11,205,150,157,76,76,152,139,192,153,200,115,73,124,246,170,230,255,98,121,76,102,249,24,98,31,136,77,91,225,183,44,201,29,44,209,84,170,41,87,57,28,31,239,70,214,21,51,82,108,181,116,94,107,213,88,67,178,45,206,152,41,16,80,160,24,12,4,122,203,123,228,173,16,212,188,211,11,192,214,251,9,170,28,54,162,205,227,133,245,197,6,133,158,212,108,39,122,21,86,65,241,136,45,131,117,199,43,15,254,91,25,160,121,129,170,60,113,5,79,232,32,143,19,191,109,50,255,108,100,161,225,199,43,169,22,230,224,246,116,28,197,138,109,67,58,5,198,168,226,133,12,153,27,231,88,212,42,154,160,9,2,75,229,9,94,155,133,159,215,193,2,218,97,153,234,13,121,191,99,115,50,27,139,60,78,50,156,74,140,167,154,5,111,75,242,62,109,175,191,20,222,199,197,1
 9,194,164,126,55,195,227,47,156,70,88,37,129,152,182,252,87,222,8,238,44,149,66,178,137,20,14,226,83,232,109,168,156,28,23,221,0,246,180,78,97,149,8,27,90,179,17,25,114,81,103,14,179,186,245,105,97,10,246,24,165,91,133,181,17,7,108,234,2,23,28,64,97,78,88,242,106,232,235,206,222,182,244,4,186,79,93,161,223,210,145,184,187,8,40,34,229,50,155,205,122,183,89,60,246,241,55,186,33,136,152,51,169,87,93,180,114,190,104,119,113,211,196,196,217,173,112,226,30,12,200,89,162,33,35,89,17,233,38,108,50,176,72,83,205,157,223,106,76,160,28,252,92,24,199,142,126,213,207,62,134,58,159,55,175,220,165,193,242,220,40,230,142,204,72,65,162,157,200,252,118,244,96,235,153,49,254,252,90,190,135,159,166,105,55,122,193,182,248,250,128,144,115,221,157,192,251,51,37,2,139,195,41,66,28,16,9,143,222,92,223,72,126,162,233,42,215,159,25,183,189,198,33,24,81,221,5,76,135,53,80,98,44,121,178,137,73,146,183,83,127,107,210,70,119,205,127,224,75,95,142,86,138,169,90,32,69,75,107,139,140,135,177,65,132,180,34,17
 1,60,35,104,74,13,45,8,28,99,11,19,191,79,91,212,241,42,223,182,167,104,220,244,183,181,211,29,32,78,42,18,36,28,246,253,24,125,162,98,207,85,198,94,120,71,112,209,100,200,97,233,226,156,176,163,51,133,56,244,156,254,144,208,35,95,243,136,198,90,108,183,237,41,221,7,85,4,163,159,209,172,241,43,96,47,251,213,126,114,196,62,153,186,209,242,181,216,105,99,228,235,41,23,83,249,125,33,187,90,17,61,15,58,41,89,191,27,196,58,178,251,83,81,182,24,115,10,245,20,85,135,188,189,31,177,234,227,126,35,148,23,54,84,211,129,45,60,24,30,166,167,110,91,55,19,144,84,9,5,148,39,222,169,59,2,6,20,201,193,40,1,141,2,213,116,50,39,128,41,89,67,103,123,127,89,24,118,255,69,68,100,234,108,12,99,60,96,101,10,76,169,12,186,109,75,46,86,238,23,186,232,9,168,14,14,41,252,122,157,225,175,232,168,229,218,140,250,118,158,15,201,105,57,108,142,203,229,175,85,36,105,154,35,65,56,49,119,75,137,178,64,204,59,114,206,120,205,39,48,199,0,70,2,199,85,86,44,142,169,236,159,119,230,28,78,17,90,167,187,185,135,143,
 123,37,119,216,94,112,1,121,60,44,225,107,102,213,109,43,197,20,47,113,104,105,16,56,162,229,25,201,182,86,175,136,106,131,49,63,6,246,169,243,234,182,85,172,213,63,136,31,188,218,3,225,9,19,83,90,202,6,173,232,208,224,206,236,181,13,43,81,126,57,249,67,71,61,239,95,91,154,127,121,240,24,37,79,28,195,78,6,100,114,158,111,61,126,63,107,221,254,225,126,105,97,249,166,237,220,172,152,22,180,83,146,151,197,246,193,223,68,103,114,111,186,209,202,13,120,206,188,80,223,115,158,38,189,183,200,227,93,180,20,185,238,138,217,70,228,82,104,30,7,199,116,138,94,135,252,236,135,14,68,125,106,23,191,169,228,38,50,93,22,163,56,134,11,197,115,27,31,211,43,172,119,98,222,156,227,79,107,95,143,184,44,99,98,31,127,18,11,200,142,126,127,66,204,35,177,2,72,5,23,127,179,226,240,163,196,190,72,68,133,68,152,243,152,155,205,72,198,133,221,48,51,180,98,41,243,189,239,182,186,173,185,22,74,77,173,145,89,209,25,37,11,133,83,220,77,154,8,208,95,249,150,240,213,159,40,22,15,175,94,102,205,116,221,47,51,69
 ,92,166,188,43,173,137,36,90,107,114,47,88,16,249,234,134,163,131,8,40,151,61,0,136,93,38,9,54,245,202,99,44,205,60,145,233,43,189,243,106,227,75,107,18,124,47,137,175,156,155,188,25,30,220,63,161,169,124,128,68,78,26,63,236,228,162,204,170,239,168,193,118,102,210,46,235,136,101,30,74,51,75,54,101,239,134,218,27,195,193,89,73,189,234,130,233,212,85,121,39,118,24,25,10,29,236,176,211,56,11,179,2,189,83,134,184,233,9,55,219,88,145,183,210,120,16,150,102,1,223,130,96,47,95,43,249,17,119,117,203,140,220,223,234,119,204,182,217,14,249,91,218,148,121,181,144,201,39,89,252,128,111,126,251,61,191,92,129,249,13,19,108,25,87,98,223,191,6,1,193,152,66,149,189,71,115,113,234,173,153,87,177,35,64,63,2,247,235,209,84,17,36,56,67,41,5,2,77,53,240,12,89,183,64,172,119,57,239,124,154,117,183,219,159,82,73,226,190,3,26,47,40,22,125,251,147,93,194,92,74,97,99,10,78,150,73,36,141,230,204,196,206,65,35,202,89,177,170,96,135,95,168,206,144,78,113,184,150,64,143,91,208,194,209,25,163,178,121,162,1
 26,187,128,178,177,210,224,95,128,88,151,28,217,183,195,196,127,96,89,148,130,232,73,47,156,141,129,90,193,75,52,152,165,99,17,255,240,131,152,49,92,129,139,77,116,62,121,64,55,73,97,209,232,85,11,32,39,157,235,2,95,145,146,108,212,92,31,25,181,195,123,32,44,106,0,124,205,185,209,207,32,71,113,119,82,130,180,250,116,231,174,7,220,199,233,96,136,143,167,46,121,152,69,126,109,212,204,82,81,13,41,29,210,0,152,32,210,172,212,101,14,69,206,201,93,12,91,234,135,181,242,171,127,182,31,5,158,74,118,13,96,5,104,72,205,169,208,55,170,41,9,70,248,251,105,58,243,70,214,90,178,16,176,81,106,6,9,237,168,212,88,141,249,26,69,94,149,172,204,59,126,210,10,216,113,182,80,108,36,208,142,46,20,144,72,72,203,39,221,113,24,148,56,206,203,149,147,66,224,253,128,59,1,158,102,94,169,176,173,20,182,202,182,168,123,96,164,195,185,163,92,154,127,14,127,99,172,6,137,90,201,144,133,191,64,235,189,126,30,59,126,55,112,42,52,178,103,107,136,95,151,118,41,204,228,15,219,77,148,243,68,205,59,203,142,210,220,
 99,163,213,113,141,204,123,243,54,98,38,108,76,102,105,170,1,112,49,29,141,37,81,217,57,190,144,195,109,185,135,30,125,62,39,201,139,235,247,246,47,227,20,61,207,251,133,97,36,17,173,73,26,113,164,155,182,51,142,112,231,104,48,229,39,82,25,87,11,7,242,44,148,91,68,101,20,221,57,25,39,153,65,234,205,93,94,162,83,134,115,126,202,89,238,205,60,180,57,205,42,38,240,110,236,103,52,202,249,188,8,225,223,100,132,212,234,17,3,185,212,186,128,132,200,79,173,24,167,249,177,10,241,70,158,198,127,162,65,126,155,41,228,2,168,62,141,164,16,108,62,204,1,98,30,119,181,215,72,185,111,217,197,26,189,211,252,9,109,13,58,128,186,184,12,117,167,59,6,57,66,238,164,94,57,209,165,58,48,124,102,19,82,119,77,236,66,68,91,23,142,95,62,220,34,178,136,138,210,42,174,167,22,210,233,34,8,154,112,229,119,102,171,214,19,60,26,107,20,170,123,117,196,225,123,185,177,135,98,42,187,98,190,194,106,253,102,62,3,157,78,8,17,190,149,95,195,160,187,255,144,156,219,89,98,197,142,157,242,140,162,168,45,181,102,178,99,
 109,205,151,46,157,125,135,108,188,70,119,73,177,193,221,18,153,22,149,123,143,176,48,115,118,176,23,82,192,77,209,103,91,173,142,222,222,60,20,133,240,102,242,14,32,91,172,199,184,158,3,86,82,244,54,43,124,79,185,78,165,224,49,18,158,255,24,38,86,201,106,78,5,199,78,135,39,10,167,214,50,234,176,26,93,122,52,197,252,38,248,124,216,198,158,121,35,197,255,16,94,16,212,183,193,172,220,212,235,130,24,221,62,6,248,130,105,71,207,195,42,163,233,219,137,171,124,237,249,160,120,136,0,45,123,77,252,245,90,214,47,187,209,248,88,5,44,76,236,121,152,196,118,57,48,151,49,104,193,240,237,206,86,27,100,121,82,236,226,129,121,254,197,218,191,88,45,114,51,57,37,43,55,108,118,213,171,228,107,47,194,12,39,73,100,225,62,34,94,84,45,239,198,150,144,90,225,145,214,140,227,8,62,107,168,77,192,38,7,54,132,244,34,63,82,105,53,60,248,17,142,212,151,141,149,247,112,27,66,44,68,61,162,20,52,156,8,116,81,237,114,35,127,218,155,47,156,106,8,218,234,133,82,33,5,179,70,95,130,174,84,70,180,111,121,199,220,
 33,165,14,199,239,49,165,137,139,251,214,69,111,133,139,48,133,9,212,96,101,121,97,252,127,154,165,66,244,159,26,177,175,159,152,183,252,151,139,171,240,107,190,58,233,243,78,43,197,50,77,11,11,106,155,98,105,63,217,44,35,165,163,122,44,125,157,96,169,94,175,200,117,238,34,136,233,45,234,239,82,252,11,219,145,101,185,180,232,126,184,157,157,69,36,203,187,237,98,137,139,53,95,69,198,72,145,204,47,166,227,198,235,86,246,123,6,62,57,139,97,239,85,42,176,133,198,69,84,102,185,72,29,70,75,28,119,107,43,202,157,132,43,189,212,104,28,123,109,241,158,88,109,244,51,48,67,129,122,92,167,145,95,186,22,229,215,105,24,49,188,233,54,110,189,248,137,75,7,167,83,165,98,6,175,47,247,253,70,215,16,204,26,161,203,28,230,102,140,156,179,224,61,104,88,229,150,22,9,15,113,171,137,3,238,198,57,125,198,196,44,141,234,62,50,242,201,129,240,237,197,74,225,132,58,56,202,87,25,27,155,252,237,12,60,115,61,161,23,59,220,158,59,108,33,239,3,249,91,220,91,145,212,173,6,12,246,225,18,84,98,58,97,189,149,164
 ,165,110,154,191,127,21,136,83,139,181,88,127,221,58,123,5,230,147,51,85,170,252,232,55,136,21,4,42,155,172,231,178,23,199,41,143,246,202,44,49,2,160,102,11,147,150,48,96,56,219,25,198,181,145,202,246,151,55,247,147,195,237,156,57,87,190,197,129,24,87,233,177,249,204,255,213,97,190,130,72,219,86,40,102,209,148,58,128,172,251,252,27,244,168,204,115,26,143,68,113,106,105,176,77,174,73,22,77,66,177,182,205,178,191,11,111,117,242,29,23,227,242,1,11,196,248,87,217,205,153,16,3,240,157,252,239,180,125,161,90,185,174,198,239,88,209,166,48,166,167,162,143,108,215,189,28,87,79,105,102,14,28,65,119,158,97,166,216,175,176,185,138,248,175,231,149,95,125,49,219,120,91,154,125,146,239,79,114,97,111,218,61,171,7,65,1,211,45,216,109,8,7,4,148,196,76,107,246,145,12,112,175,156,127,77,121,80,214,193,54,250,155,154,224,62,66,182,219,164,80,222,249,132,67,75,114,188,105,243,162,121,181,6,192,197,230,220,248,149,128,156,149,190,243,94,143,141,101,22,166,212,12,156,231,194,247,55,252,8,50,247,117
 ,240,209,117,132,196,78,248,208,218,205,184,117,93,108,72,21,142,239,241,148,130,185,211,84,37,21,113,120,129,99,18,17,132,81,120,167,183,145,8,47,212,43,92,74,118,113,17,20,32,145,227,86,3,51,146,120,128,83,157,108,100,32,68,102,138,246,17,52,197,115,166,106,120,121,67,186,97,165,87,121,217,105,11,120,163,46,231,91,52,48,179,169,153,11,10,4,56,156,128,172,224,105,4,197,71,124,211,109,172,54,87,54,160,11,255,100,115,168,169,160,104,8,55,91,41,127,65,216,117,60,152,169,42,14,92,68,47,189,110,216,119,7,131,19,127,175,125,32,56,2,160,171,232,123,164,89,181,222,122,101,113,241,68,196,154,120,25,78,167,211,169,77,73,84,111,51,89,9,9,228,226,168,14,210,194,116,156,171,92,34,7,125,55,178,171,29,61,195,249,159,5,235,23,111,115,83,21,38,247,247,253,84,85,101,67,214,31,118,110,249,192,34,188,137,181,203,234,243,22,228,203,118,119,196,162,219,68,142,244,197,172,14,87,8,144,51,213,127,120,208,27,197,125,130,227,107,50,54,15,117,248,165,147,252,94,87,116,53,166,39,2,56,116,86,16,117,208,
 147,77,59,96,149,122,161,50,93,189,148,86,180,180,151,130,104,89,161,44,26,203,150,62,69,11,39,211,222,225,60,52,169,48,230,183,188,86,163,219,203,108,167,103,143,9,157,139,201,62,177,208,174,44,69,87,112,180,181,145,27,205,186,4,190,181,212,123,146,56,237,175,36,87,185,65,23,240,158,232,139,230,50,76,67,224,13,61,183,211,1,198,42,65,245,134,3,164,26,149,100,211,217,163,235,120,17,4,110,160,37,233,30,149,198,142,119,246,115,132,159,181,93,57,147,177,228,197,190,108,167,80,11,173,102,18,184,129,108,82,90,37,20,14,146,17,4,187,215,91,164,44,41,142,139,136,232,33,177,110,214,191,107,253,66,126,35,172,214,183,186,70,61,16,118,161,139,149,204,110,115,0,22,52,179,177,51,195,248,110,52,215,224,117,116,123,240,126,6,88,241,221,175,80,67,177,160,172,0,75,241,64,83,248,178,207,191,206,122,48,54,140,53,219,93,189,243,44,15,71,121,181,151,232,105,249,6,200,128,241,193,112,149,91,55,199,189,52,189,207,19,145,214,27,198,246,11,115,204,96,68,165,180,253,12,144,159,90,118,184,1,58,109,231,2
 30,227,110,129,164,32,75,83,201,140,156,101,59,144,188,223,221,26,70,23,196,171,198,238,163,207,254,41,8,249,205,151,36,7,11,161,11,234,190,242,65,91,205,147,122,78,125,54,228,77,174,24,78,78,129,92,247,248,127,38,14,1,221,139,179,250,207,197,136,203,44,25,101,152,90,163,202,78,52,192,121,141,53,106,179,145,48,74,53,246,195,8,40,128,49,21,15,52,112,86,201,148,129,153,78,233,131,43,224,125,239,158,118,236,149,67,227,62,235,202,167,211,134,234,232,68,221,33,85,219,148,13,25,219,65,246,113,185,212,76,12,63,103,82,179,99,193,57,158,212,57,248,74,52,39,122,109,48,58,167,128,234,129,13,186,149,0,33,89,13,181,22,39,56,250,220,38,254,245,255,190,249,150,188,68,110,104,82,181,103,62,5,254,191,255,241,243,31,117,89,109,153,27,68,61,157,27,108,6,148,162,99,205,235,190,73,41,168,98,184,92,93,224,35,15,63,122,103,184,192,113,84,207,159,250,253,108,173,213,25,219,60,219,59,119,40,56,26,25,85,185,232,137,208,108,176,66,221,249,187,91,41,203,161,188,251,1,97,99,141,127,76,102,54,130,90,2,12
 ,244,33,232,156,188,110,1,141,86,30,139,221,146,40,19,18,93,130,68,73,92,8,185,228,102,107,188,189,54,151,70,214,88,186,187,226,166,108,80,205,154,99,78,175,43,111,114,140,180,242,101,16,230,4,170,184,40,111,43,213,6,57,55,254,115,106,51,1,5,90,75,98,163,155,251,239,228,43,23,63,239,199,116,135,187,111,180,136,160,231,10,126,190,165,7,196,139,236,211,186,251,239,96,157,181,15,100,240,176,215,175,52,215,135,8,23,17,174,219,70,165,181,118,164,92,93,211,98,226,128,52,150,83,138,174,114,218,135,232,171,69,214,8,228,11,165,178,105,105,4,201,30,18,77,46,125,220,243,242,221,129,207,232,219,155,88,215,17,236,46,108,93,15,148,208,220,67,85,95,103,9,153,8,194,19,194,72,53,88,148,32,58,35,24,104,136,153,204,175,221,21,157,10,178,242,255,32,174,197,18,59,135,160,59,62,121,68,172,134,88,113,73,28,94,75,220,102,10,243,176,148,176,226,185,170,15,228,76,65,45,69,84,50,84,130,133,78,151,100,63,134,192,35,227,162,6,120,132,74,181,126,201,89,12,220,102,229,87,160,80,3,130,231,159,236,83,170,21
 ,78,232,171,161,84,14,20,228,185,228,35,171,190,139,216,144,25,16,180,203,12,143,118,9,144,15,190,234,73,248,132,170,185,82,10,245,222,41,237,144,81,32,176,168,14,197,121,23,161,43,6,125,66,140,250,15,90,141,78,240,218,158,121,201,119,33,154,202,14,136,4,16,85,27,105,22,152,79,137,204,248,0,5,130,195,23,243,113,231,165,79,175,40,130,27,29,207,77,6,177,33,157,196,98,201,107,112,220,229,190,228,200,197,32,79,59,127,119,138,168,129,78,29,213,81,6,47,118,67,57,116,111,218,137,43,104,235,21,82,197,95,40,71,145,18,187,61,229,231,118,153,5,85,101,84,3,180,213,159,107,199,12,232,96,117,78,198,17,232,58,105,108,209,134,51,162,230,112,16,69,233,226,170,116,243,29,191,175,46,229,183,122,52,192,244,66,199,23,236,123,219,166,243,161,46,217,131,62,114,82,134,128,189,155,180,98,109,255,49,11,10,89,253,69,34,233,36,41,138,44,109,11,115,29,50,34,177,73,128,147,58,212,172,48,58,149,76,221,180,224,90,65,120,87,92,34,209,42,15,90,25,164,108,168,70,70,242,105,151,42,190,230,38,87,82,164,225,96,1
 75,220,95,16,61,248,176,157,148,34,209,159,170,30,90,33,108,104,136,96,74,248,35,230,121,84,212,117,230,121,154,53,240,177,71,165,120,168,197,158,110,122,120,176,46,170,61,22,42,112,39,114,165,82,158,196,11,103,32,156,187,180,160,107,79,3,179,206,242,78,158,116,158,126,4,38,248,30,52,90,81,112,105,0,194,142,54,11,174,140,76,91,72,251,159,84,223,191,162,4,112,181,8,81,69,34,192,120,109,67,130,226,122,75,121,160,149,182,133,26,9,177,93,72,73,62,17,128,78,223,28,112,48,130,141,222,149,151,25,66,67,106,220,95,216,11,16,64,10,180,232,137,163,184,143,34,16,72,100,251,203,33,28,16,35,105,195,110,96,17,190,29,18,109,41,225,180,142,0,160,17,69,148,62,210,84,77,211,68,104,58,107,10,105,24,157,243,98,218,140,180,71,97,132,63,190,200,8,72,72,102,206,148,233,113,216,15,55,93,91,58,174,166,160,187,4,17,71,140,123,242,97,179,205,135,208,69,63,78,180,92,67,99,32,101,71,111,61,241,141,136,1,120,78,69,101,230,198,40,177,69,62,182,224,195,229,127,224,148,212,143,95,113,224,205,7,37,57,248,113,
 187,54,140,207,224,90,41,223,35,72,144,37,227,142,93,253,179,124,98,53,84,167,229,169,180,130,53,109,77,49,139,93,154,180,14,134,130,132,221,197,154,174,139,78,107,78,208,237,127,167,46,199,237,75,195,61,19,193,70,250,249,210,188,60,223,141,168,193,93,1,216,4,218,149,203,26,205,164,142,187,191,102,33,155,17,43,67,102,85,135,26,16,57,44,112,215,195,80,9,133,130,35,66,248,75,80,84,122,133,118,113,248,63,189,160,164,105,17,63,20,45,163,16,0,42,135,153,136,138,177,31,187,121,223,107,54,16,232,239,16,164,86,99,255,48,182,81,248,169,248,41,239,70,99,65,81,92,180,140,76,251,164,232,77,185,176,147,85,194,230,68,139,6,65,33,76,214,86,192,97,2,221,172,112,145,94,209,170,29,121,114,250,20,202,60,155,33,84,23,202,180,231,154,251,144,80,197,197,113,204,23,187,136,132,35,165,132,218,72,25,108,235,28,144,18,9,166,248,137,103,84,135,72,107,164,252,139,197,142,125,23,72,245,101,70,85,204,179,40,20,217,122,84,246,156,49,125,97,53,212,4,125,150,36,59,159,124,197,64,110,220,167,138,115,236,151,
 178,140,233,0,17,236,29,149,38,63,217,35,19,254,31,113,195,243,34,110,97,45,34,185,160,124,120,24,133,42,10,107,67,112,225,254,139,12,80,123,150,128,153,217,91,220,61,5,164,61,234,226,78,58,197,3,28,226,148,55,97,235,162,160,153,113,170,82,243,215,238,113,8,227,166,239,130,95,75,61,246,227,0,118,171,143,93,79,66,89,163,12,70,187,246,100,142,54,186,7,96,1,42,3,3,254,88,15,250,194,51,254,118,112,149,221,141,166,106,177,250,105,184,129,127,244,236,149,201,161,55,248,105,4,24,19,246,100,65,27,230,54,182,46,224,89,225,213,168,44,69,188,132,31,190,189,41,72,109,93,20,117,86,177,169,144,42,204,41,62,21,217,240,181,40,214,205,219,156,28,182,59,202,6,85,55,188,122,157,236,184,174,81,118,106,167,55,135,74,143,13,94,117,240,155,80,107,238,143,209,160,28,242,195,121,65,32,203,49,232,113,223,47,38,133,63,145,37,219,59,202,235,149,184,173,140,255,221,199,208,18,250,215,117,35,180,174,149,36,55,170,105,172,46,25,115,221,130,26,205,87,228,82,47,82,15,209,48,101,112,152,119,120,65,226,129,20
 2,190,194,111,177,95,91,53,21,121,102,112,106,73,22,77,175,43,19,34,0,165,149,209,233,124,245,123,150,0,140,171,115,106,129,60,85,208,221,253,42,73,3,61,60,252,245,88,104,0,41,216,62,2,247,127,227,28,174,22,58,45,166,25,138,53,21,54,23,177,12,76,221,31,224,93,209,241,62,73,86,95,97,180,241,83,47,32,235,116,70,69,35,190,47,184,142,148,138,163,143,47,116,239,199,60,100,79,73,222,151,162,104,34,94,63,42,65,77,70,109,161,8,87,105,28,36,159,205,94,101,43,216,36,180,55,228,155,110,212,4,49,30,222,111,128,104,218,84,89,78,195,61,161,28,22,219,206,235,82,126,102,212,101,72,124,223,103,142,10,37,186,190,107,165,92,1,12,63,45,170,150,230,45,159,214,181,46,130,16,137,212,227,132,100,117,103,123,164,146,114,182,178,135,217,142,119,186,96,128,195,119,198,40,102,7,193,121,242,182,104,44,229,39,117,177,153,195,95,133,77,150,200,223,217,222,115,191,166,102,197,108,46,23,46,217,180,220,57,187,52,72,183,173,178,137,16,119,230,133,217,137,74,57,13,131,168,37,71,237,133,148,67,60,232,21,68,236,
 84,247,3,9,22,150,87,117,186,164,14,58,239,81,159,235,14,12,75,2,172,157,110,246,165,51,2,153,174,229,240,17,133,38,31,72,173,162,75,251,133,172,244,56,252,30,149,99,179,5,29,148,72,58,19,215,100,228,11,32,4,9,28,127,177,177,224,168,163,17,62,171,30,187,17,214,125,43,253,197,14,235,119,194,37,91,217,195,208,84,40,205,126,178,22,201,216,218,63,176,18,151,124,89,24,63,43,35,193,200,103,139,224,31,140,190,155,187,112,209,142,51,226,100,171,112,197,144,200,35,244,140,207,151,187,72,120,159,66,20,106,132,144,199,249,103,241,151,72,173,118,238,219,224,3,161,91,91,234,210,38,230,14,2,185,62,207,37,131,48,53,102,110,5,69,147,248,232,80,212,161,202,160,116,253,56,9,27,25,84,107,217,152,84,255,223,255,249,180,234,22,198,90,231,191,60,233,105,253,75,195,9,151,43,198,66,23,1,205,216,76,69,230,114,250,53,48,231,146,246,169,172,113,95,234,33,5,53,197,246,44,21,123,102,16,95,217,253,102,190,4,5,90,91,191,16,230,96,121,36,195,24,139,92,201,175,125,35,130,222,242,111,40,192,112,123,2,134,109
 ,110,146,79,199,50,98,50,89,23,73,37,104,20,27,109,93,214,205,110,194,59,114,208,76,13,114,74,129,29,112,37,21,230,59,199,229,10,192,149,97,135,201,201,243,193,63,163,5,146,161,82,78,251,192,24,7,44,224,72,245,219,89,130,207,139,58,122,63,251,38,151,174,28,63,166,174,188,37,239,9,184,88,118,122,210,201,39,125,26,12,50,128,23,231,116,91,20,118,56,180,69,180,81,204,20,251,152,228,255,62,94,82,239,221,1,19,89,54,50,72,166,65,86,93,120,242,99,189,91,255,159,10,121,250,252,55,191,54,152,128,99,107,132,112,94,153,136,226,129,179,177,3,153,127,124,131,232,153,135,177,212,85,201,228,165,142,252,224,75,141,93,42,34,108,50,154,223,10,0,41,138,140,191,190,231,158,251,57,120,142,237,55,32,128,203,43,90,253,211,211,230,89,43,135,140,155,106,130,184,14,225,147,46,40,100,194,39,15,223,45,76,59,64,87,119,234,233,21,160,16,158,16,148,147,129,203,243,99,230,93,65,185,98,64,233,29,236,150,129,7,21,33,224,193,5,116,34,197,120,133,107,231,164,195,192,144,187,191,134,78,21,133,145,192,107,244,176
 ,171,68,158,248,90,3,153,79,178,43,202,240,231,204,223,178,154,202,194,30,167,104,132,39,98,154,115,237,246,130,92,59,7,114,99,183,185,69,16,184,174,97,228,205,212,56,176,46,102,33,224,133,232,43,113,251,182,203,97,33,81,135,100,115,192,11,193,60,0,203,142,174,57,120,246,191,162,101,66,8,41,120,182,22,219,129,224,236,16,91,1,150,133,65,51,227,92,100,52,9,138,234,29,204,46,78,8,222,14,236,44,96,159,11,213,174,177,134,147,74,97,149,90,122,160,174,119,171,70,202,232,11,95,176,146,47,183,97,144,106,15,212,19,28,100,41,20,180,47,28,175,97,144,12,195,147,63,89,74,237,93,170,50,223,69,1,173,11,28,233,84,121,238,60,252,43,193,53,98,248,252,131,250,26,255,123,12,49,69,136,69,216,83,243,88,251,72,107,135,212,223,184,236,107,61,229,210,124,78,169,58,187,157,39,78,126,212,213,25,77,55,237,113,241,83,165,112,244,46,89,32,74,43,8,177,55,155,209,3,174,53,9,119,36,129,39,189,41,81,54,117,35,125,143,0,138,36,105,101,188,248,150,66,112,194,215,191,26,187,200,244,249,155,110,78,102,24,171,88,2
 11,6,182,177,122,87,229,146,129,35,167,188,37,151,156,24,211,210,178,0,118,175,176,153,52,88,125,116,149,98,243,77,114,52,236,132,40,70,184,149,132,12,111,59,169,147,162,97,96,176,0,215,235,198,56,234,96,16,23,189,141,79,19,56,128,62,252,236,228,247,139,176,187,23,66,26,248,190,17,34,131,49,57,245,165,8,87,90,187,65,149,20,95,64,89,71,97,105,218,72,219,187,166,100,82,243,177,168,167,209,77,93,206,210,190,245,226,226,198,37,173,88,55,206,10,90,238,109,200,11,97,180,8,16,142,203,121,6,240,225,228,14,143,214,149,152,73,11,34,191,140,81,235,105,163,237,242,234,22,67,12,196,125,112,143,1,93,136,189,194,217,253,237,22,144,75,143,0,141,133,175,4,198,164,115,179,86,149,143,166,255,180,253,179,166,50,74,4,254,157,81,62,147,153,55,189,104,250,158,186,132,82,158,105,248,164,21,42,227,31,81,15,145,66,255,58,218,143,13,90,49,133,199,228,200,93,228,209,254,74,196,162,95,110,234,207,53,247,100,205,137,195,217,129,172,43,171,79,75,98,62,70,92,47,77,62,155,3,109,168,43,163,178,2,31,167,63,83
 ,163,7,215,24,148,153,89,67,199,96,189,156,249,93,148,246,222,203,65,87,212,20,231,116,210,53,104,107,250,124,130,140,170,200,246,78,186,222,98,171,34,251,247,242,144,178,214,138,105,31,8,231,53,115,204,164,225,203,198,55,106,18,212,58,253,14,82,217,141,31,148,154,190,7,241,248,189,146,158,45,135,64,27,85,57,129,238,192,143,94,226,38,124,220,209,142,169,168,23,233,235,63,250,145,43,151,147,42,38,25,235,125,122,29,193,211,169,206,153,130,213,96,99,69,145,201,222,0,101,58,36,189,157,11,252,237,207,206,178,56,37,255,157,105,22,186,50,5,35,91,124,39,81,52,180,96,153,48,240,22,187,212,121,41,241,50,70,151,217,120,171,173,167,38,153,232,189,184,36,224,95,246,172,227,168,122,95,35,100,59,108,148,82,93,143,49,124,98,173,130,234,86,31,99,245,23,146,236,17,10,73,35,93,76,128,92,255,71,77,65,236,101,90,0,47,83,190,145,51,25,93,25,209,194,169,61,185,158,203,70,168,162,214,229,109,145,80,187,87,153,228,203,52,231,107,233,30,69,94,12,110,156,65,199,42,20,158,76,62,229,232,64,198,220,152,7
 3,95,79,234,2,87,28,48,103,212,245,49,134,33,222,129,31,226,88,109,198,91,202,173,234,28,98,68,190,245,37,116,123,119,194,242,198,141,171,40,242,97,195,16,180,13,225,46,227,45,217,190,147,2,92,188,103,5,61,180,143,151,86,45,220,133,178,15,37,86,164,50,114,147,228,230,90,210,114,86,109,26,166,126,165,5,208,196,88,218,120,118,224,59,212,116,202,49,214,122,135,26,175,231,11,117,146,36,12,177,161,147,156,204,8,40,40,74,216,150,102,59,34,201,67,231,211,235,89,179,3,182,54,197,20,194,250,130,13,81,11,97,101,106,231,94,50,26,147,126,13,82,86,225,150,57,78,126,143,36,225,25,2,134,157,178,210,78,71,243,52,108,15,106,92,229,78,206,180,18,50,3,131,84,85,146,9,141,134,209,198,78,41,178,199,182,185,19,146,1,59,107,56,39,156,2,99,180,255,54,131,227,123,62,200,3,198,43,221,82,158,245,89,103,135,188,54,126,169,196,194,227,101,115,106,131,204,18,192,80,53,71,149,236,101,148,3,48,90,5,250,33,139,198,53,138,223,201,142,173,125,246,133,253,39,56,1,193,252,176,39,206,6,248,145,109,131,67,31,184,
 126,157,247,32,201,125,160,251,203,248,239,64,27,35,201,205,64,98,231,67,115,148,133,107,54,204,85,230,233,152,173,31,144,222,84,67,108,45,118,43,224,64,226,238,62,85,110,36,117,181,178,45,109,150,251,85,223,92,207,183,31,9,154,15,55,158,174,61,240,173,78,13,226,19,92,131,68,70,191,221,218,100,115,29,125,107,181,36,12,59,36,93,56,239,205,132,76,112,39,111,166,176,13,223,39,188,78,238,45,232,8,33,170,153,111,114,19,170,15,237,24,233,102,154,79,157,135,69,89,195,150,91,234,78,26,203,17,43,240,0,104,131,115,143,113,32,132,69,87,122,3,224,85,113,146,23,101,146,187,22,124,91,196,93,13,199,73,124,205,216,179,162,115,70,133,146,216,143,79,108,0,103,28,162,193,208,221,179,64,174,51,233,175,66,185,230,175,58,76,30,32,151,49,249,27,38,124,210,35,224,104,128,81,21,248,53,205,246,130,201,215,254,195,65,5,166,82,106,88,87,102,220,19,88,27,203,45,20,111,2,59,66,53,55,220,169,210,26,241,11,55,79,92,53,195,166,220,84,86,254,102,208,140,1,230,157,119,72,31,229,145,89,44,23,12,9,234,33,61,234
 ,210,240,39,50,251,138,77,97,153,200,158,122,253,8,244,210,183,198,90,239,110,150,206,254,61,213,163,57,6,108,106,130,77,37,218,111,62,16,207,58,198,8,152,71,158,212,224,120,238,17,148,154,85,245,149,26,62,30,179,93,54,147,44,88,5,219,96,53,84,4,198,114,56,106,157,238,143,102,46,173,142,66,175,110,166,14,46,225,142,193,155,212,22,216,9,227,19,48,186,248,181,76,115,239,216,157,57,227,163,34,12,164,168,93,244,172,125,153,16,140,228,167,140,19,29,172,170,166,140,51,253,184,164,183,87,71,113,222,171,60,208,122,11,22,97,145,54,137,158,227,128,141,70,109,213,74,59,222,46,230,212,249,194,91,77,234,246,163,233,77,194,226,119,121,8,203,222,181,21,209,2,36,122,163,142,211,137,116,66,237,250,44,138,103,2,87,238,187,185,41,13,136,115,33,63,139,180,90,199,45,108,91,245,39,244,32,104,223,77,28,60,186,212,115,200,168,118,24,76,59,54,16,86,96,191,215,154,39,191,65,155,13,185,64,28,90,194,92,189,79,230,138,84,112,237,62,63,55,64,97,95,102,206,168,189,198,150,45,196,108,157,155,11,179,17,237,
 158,231,134,139,209,37,181,72,76,98,215,144,106,84,27,153,80,69,87,233,241,180,123,76,200,126,166,164,92,16,139,113,96,218,89,0,245,111,240,43,202,60,27,9,26,133,77,73,46,97,228,110,2,188,18,25,245,116,126,215,247,111,8,120,160,248,23,132,144,252,37,233,96,219,131,117,38,243,31,237,94,177,110,200,137,214,84,100,200,54,22,16,179,218,77,177,187,26,107,220,190,186,234,21,180,203,248,53,95,61,191,232,151,176,189,49,106,202,184,181,14,19,232,243,253,50,22,114,72,130,189,0,168,252,223,225,95,146,239,17,120,124,227,217,196,39,95,85,135,92,41,33,45,130,118,121,221,153,109,122,124,220,41,48,22,57,179,20,212,241,232,39,9,63,87,219,187,213,169,189,51,135,201,141,57,228,123,17,7,184,221,150,113,33,152,58,11,199,59,54,99,183,53,197,150,18,214,230,63,101,129,80,226,239,227,232,201,15,33,246,255,194,116,165,48,188,219,36,253,80,50,131,135,110,98,217,113,27,71,129,248,12,14,32,40,11,19,18,184,109,193,214,135,149,83,168,41,44,7,180,138,242,29,80,115,193,63,151,86,46,37,215,196,194,9,48,68,72
 ,239,30,137,73,54,244,243,82,241,56,45,146,8,96,226,237,233,1,239,202,39,28,168,167,83,138,76,233,75,235,24,210,10,150,166,224,166,164,141,58,2,24,62,70,132,100,184,174,100,148,252,151,228,126,113,78,19,175,21,146,78,103,118,4,0,173,96,96,199,107,15,243,171,197,238,244,214,160,32,208,95,140,89,184,28,60,116,103,31,172,1,72,209,95,19,221,231,243,245,61,52,255,81,94,241,5,27,67,220,91,81,86,98,85,210,18,62,223,242,40,162,184,197,0,78,141,40,61,88,156,229,170,193,246,98,25,125,85,54,35,251,151,185,95,105,80,151,81,209,222,222,133,188,39,124,139,36,73,150,71,4,56,38,108,111,220,150,110,116,166,248,200,183,56,147,15,106,67,222,33,104,118,102,106,31,107,188,180,178,162,230,107,240,239,189,203,161,17,225,253,12,69,92,144,254,210,136,192,59,14,146,28,207,216,202,90,57,16,124,149,24,146,115,96,146,194,162,177,86,111,0,58,16,244,64,173,77,57,186,20,138,27,128,173,25,75,34,240,44,171,25,35,8,78,187,10,96,34,158,243,223,37,160,60,204,228,35,215,251,54,234,248,159,164,131,243,128,71,165,
 23,233,188,210,97,121,67,90,153,75,88,234,103,143,195,215,150,213,157,17,54,38,131,115,149,169,119,255,3,133,56,239,133,162,212,61,63,250,10,70,221,3,154,21,171,195,119,5,177,108,140,110,195,162,109,180,245,39,28,194,23,162,251,149,163,32,251,74,62,152,6,153,234,67,144,215,109,136,155,155,135,105,162,73,247,153,238,144,104,220,105,83,3,101,246,190,42,28,138,126,154,244,179,217,166,111,104,71,79,79,137,33,240,173,210,109,240,5,236,219,140,172,137,2,208,236,108,140,66,64,66,23,79,51,146,188,88,100,129,73,204,185,173,75,88,247,138,28,67,60,229,39,59,177,44,250,171,231,220,123,20,204,75,252,229,15,159,116,25,131,105,15,189,249,150,171,97,202,243,62,175,105,46,16,172,122,215,26,47,48,161,139,237,9,115,54,103,71,229,212,111,72,36,195,86,151,173,58,120,175,219,239,100,46,152,209,103,194,234,76,158,160,138,217,8,117,253,19,199,92,8,235,31,161,246,37,163,214,17,117,210,16,178,174,61,209,170,68,181,102,20,151,68,141,62,116,175,239,252,212,64,155,63,250,7,182,87,141,99,135,239,83,29,96
 ,63,190,41,72,139,233,102,164,193,227,126,11,147,137,21,129,110,254,49,56,128,19,75,169,199,1,251,198,147,22,71,132,147,181,156,11,90,89,191,161,5,207,176,133,123,147,78,39,94,216,53,114,131,131,106,56,136,100,247,89,113,241,202,13,240,173,140,2,117,150,72,179,95,152,124,124,232,127,94,159,147,61,29,194,63,136,125,202,188,108,141,62,112,239,14,64,87,83,149,151,143,64,228,90,178,28,126,230,101,104,8,152,72,51,150,183,96,90,222,131,60,88,77,115,0,55,125,235,157,126,133,48,3,71,232,141,193,47,243,14,63,85,1,39,169,28,221,132,50,127,77,193,224,67,191,107,62,216,230,210,150,91,109,152,145,64,106,135,162,72,221,28,33,177,200,180,78,37,96,20,80,152,226,221,57,137,172,231,213,248,225,217,241,25,54,159,96,63,178,123,89,131,55,6,1,156,41,187,229,55,181,219,120,110,62,86,202,35,69,87,158,7,244,213,30,40,219,173,72,239,152,216,18,212,241,87,240,235,58,127,230,93,224,199,150,54,139,82,163,28,16,236,57,63,48,111,129,170,160,153,154,210,252,25,242,237,166,208,42,224,222,125,107,136,195,248
 ,97,176,14,1,45,243,87,96,114,156,74,80,246,239,224,183,124,220,35,41,142,87,217,67,190,251,3,229,145,191,236,248,73,215,117,4,116,190,234,78,163,85,47,71,191,141,56,214,170,50,140,68,5,255,241,20,119,174,55,54,140,219,96,114,226,129,179,86,45,96,103,59,175,234,22,244,164,196,99,114,252,194,255,31,241,86,218,197,46,105,111,215,103,167,218,42,159,132,212,20,26,114,145,207,211,25,199,199,55,188,188,170,207,216,202,155,245,84,121,12,2,182,111,26,193,236,28,242,85,139,198,113,171,69,181,5,99,82,64,16,64,46,244,80,221,60,237,131,82,150,88,40,140,9,247,62,162,100,46,6,99,253,20,65,100,173,156,254,195,58,65,197,207,244,241,74,56,33,9,96,158,50,189,248,232,252,82,198,193,12,76,82,9,81,18,148,225,105,99,18,167,2,147,123,251,228,232,145,200,169,232,28,3,173,110,154,96,147,92,81,211,253,107,233,26,71,80,226,153,238,236,120,196,223,173,61,248,76,245,10,54,220,1,38,221,179,247,253,188,10,243,251,46,171,85,118,128,68,161,113,10,104,6,132,124,217,221,159,214,143,250,204,82,7,197,99,231,184
 ,18,68,33,133,0,139,140,98,209,122,67,117,92,138,168,112,54,128,151,178,228,11,57,254,220,72,203,114,240,228,51,181,95,133,209,12,185,183,19,69,219,137,39,148,123,104,131,252,50,21,226,253,212,14,217,72,192,35,190,21,176,30,2,191,148,221,47,219,29,34,166,179,26,111,246,144,241,153,13,189,141,162,222,170,47,233,134,117,231,171,31,177,139,169,57,173,10,227,158,44,36,201,0,249,96,214,110,210,103,235,96,218,101,254,153,43,131,37,198,108,148,221,136,160,118,142,178,55,194,131,2,88,87,11,244,165,10,69,144,114,116,247,147,32,137,124,109,29,71,165,221,236,93,53,206,251,178,219,167,219,43,5,162,71,73,82,68,182,114,122,144,235,147,85,154,64,204,138,4,214,176,234,232,76,18,76,181,35,237,61,7,128,100,141,76,13,118,189,120,60,5,187,207,194,19,15,138,35,15,247,64,254,130,103,121,199,162,96,79,42,69,40,79,69,122,151,65,61,229,224,6,54,81,12,206,36,182,141,189,54,179,129,92,158,92,158,18,225,57,67,125,255,232,205,125,120,165,84,108,204,241,164,31,23,194,230,213,241,105,76,155,69,237,180,132
 ,87,180,234,194,7,61,163,47,102,22,131,124,32,185,131,113,56,158,160,123,218,211,213,249,35,218,64,106,251,126,32,10,6,69,196,150,218,124,8,246,100,42,201,47,134,24,215,228,42,249,207,162,158,157,194,214,193,26,107,236,201,66,37,130,182,210,15,182,254,32,45,116,83,75,212,16,248,205,196,147,0,179,203,83,155,157,28,6,194,123,211,53,142,233,18,22,223,74,63,107,129,127,87,131,146,37,209,148,147,229,123,179,10,121,26,138,214,87,191,48,236,91,229,204,99,13,148,177,235,71,176,10,12,222,223,180,49,13,105,138,40,30,251,58,95,232,70,56,150,70,165,175,111,12,27,240,69,225,6,173,133,163,225,105,225,240,40,65,2,137,100,17,83,39,131,56,99,64,252,99,21,100,213,255,123,24,244,67,90,85,57,11,211,165,160,211,77,72,238,109,176,90,243,220,94,46,57,187,216,138,142,242,221,39,58,115,214,62,150,145,198,163,42,66,56,239,85,116,215,58,44,133,115,197,47,252,74,66,192,0,42,153,245,43,73,227,223,25,100,249,200,37,209,43,23,225,245,231,21,215,114,141,231,21,52,5,106,81,157,171,233,233,61,133,163,0,167,5
 6,42,12,252,29,7,53,9,1,49,40,17,123,202,99,151,4,141,166,203,212,197,12,71,199,245,62,41,21,120,194,174,104,187,146,65,153,144,94,174,247,89,180,248,174,42,60,234,53,114,114,233,127,162,102,6,34,182,188,247,78,134,63,198,131,150,117,213,199,219,167,252,212,72,152,51,202,31,4,38,185,73,211,42,147,77,161,100,39,47,140,18,139,1,182,201,20,72,228,41,216,161,36,132,217,181,238,194,59,141,27,158,231,196,18,234,204,87,151,194,45,150,168,75,10,21,72,177,89,129,197,235,161,56,253,118,30,181,1,171,193,36,161,120,155,139,154,64,164,24,179,190,251,169,255,162,38,179,129,245,254,165,190,91,143,33,126,176,139,242,189,68,73,245,33,140,30,72,143,22,237,139,83,142,134,54,158,243,107,118,33,42,175,175,142,187,195,235,34,224,131,164,243,29,105,49,13,254,242,192,135,86,61,224,50,227,100,167,180,70,157,93,66,242,250,133,171,114,100,126,219,154,72,96,184,68,251,122,126,184,148,84,130,88,254,154,105,99,13,252,130,170,85,115,196,60,29,222,166,142,170,154,126,26,29,120,25,11,66,160,10,89,91,254,88,
 108,49,73,96,142,134,120,130,182,111,228,33,9,150,147,226,198,236,4,30,94,185,60,52,99,45,236,27,71,28,204,127,6,159,153,18,96,199,221,109,65,108,181,20,105,39,51,24,8,83,169,153,180,84,156,255,244,75,143,95,73,6,75,224,27,29,26,217,201,108,10,142,13,186,62,181,10,33,194,47,243,136,59,214,43,152,164,15,143,40,28,227,178,95,12,196,178,66,125,28,24,28,142,225,234,90,208,199,224,130,15,179,112,216,55,1,225,134,240,34,37,165,241,112,194,132,186,68,24,223,204,74,223,52,5,192,142,172,160,2,176,59,134,119,117,9,144,103,172,234,146,211,172,232,27,193,87,114,114,116,196,127,227,195,87,42,41,214,208,187,88,183,7,65,44,196,88,74,239,175,156,58,102,82,173,64,185,18,10,16,147,242,142,181,145,3,128,79,61,6,126,57,187,231,181,166,21,153,159,175,104,97,27,45,22,46,249,191,197,124,249,107,216,178,220,7,93,180,171,79,22,237,215,50,153,131,145,188,206,86,90,183,120,128,229,44,18,88,182,252,136,163,253,53,175,18,164,218,242,169,238,90,151,116,194,149,193,201,79,22,132,39,168,107,157,7,219,110,1
 61,25,181,255,71,204,59,32,203,50,140,75,117,202,199,129,59,226,112,187,255,234,108,193,236,39,231,18,164,169,179,200,170,244,245,101,219,170,164,147,80,96,22,195,170,181,252,127,253,101,33,139,56,26,114,149,229,59,233,53,47,83,247,66,89,232,114,226,4,169,227,233,234,30,202,5,148,52,207,244,97,62,161,200,46,250,136,49,181,87,102,60,239,32,14,248,190,57,152,11,98,172,27,25,99,248,147,201,187,14,182,60,57,46,227,221,107,208,7,73,126,138,221,195,22,225,156,10,57,211,49,183,193,0,243,53,29,252,0,102,94,144,254,171,233,28,95,46,215,207,66,79,40,92,58,208,139,182,230,241,39,193,105,150,104,245,31,211,249,148,151,89,112,237,15,84,206,176,163,108,135,248,246,215,24,31,163,116,124,140,181,117,140,217,4,213,159,211,253,157,248,65,239,36,30,239,241,235,84,119,151,35,10,85,146,183,213,70,35,9,219,103,121,224,44,21,242,74,238,231,135,103,26,252,29,236,130,19,216,92,32,115,255,162,128,206,252,120,80,91,157,71,64,16,68,179,72,36,140,36,104,224,108,212,234,37,115,146,13,82,241,191,224,232,1
 71,130,194,107,153,150,184,127,191,226,173,61,64,223,35,93,14,236,190,4,109,169,45,192,39,132,179,1,134,159,40,187,233,181,248,236,147,130,40,173,245,56,239,34,13,197,116,219,39,115,47,28,183,103,70,50,193,85,224,237,37,129,104,234,96,18,27,137,65,148,75,235,127,43,24,213,155,171,8,187,217,177,126,38,253,179,26,150,174,48,47,75,202,130,230,232,191,236,234,81,130,1,183,128,66,57,79,13,118,129,11,107,145,229,14,226,119,198,55,49,128,182,23,147,70,30,14,190,8,50,99,68,142,194,243,186,130,197,222,229,216,112,155,156,130,229,166,20,101,18,115,108,175,246,252,101,25,117,252,229,111,114,134,205,153,214,38,116,218,201,216,115,22,180,202,44,172,123,192,42,78,60,22,16,1,244,89,18,195,255,174,169,142,15,211,8,8,113,239,122,216,69,20,243,102,48,6,169,228,9,54,95,150,180,220,68,39,59,80,79,8,89,149,155,49,232,143,106,57,120,36,182,68,79,206,63,190,48,113,224,131,240,227,169,207,84,87,13,94,255,182,198,98,79,69,84,122,221,24,49,58,197,245,173,163,92,113,12,41,200,72,242,128,250,254,134,5,
 213,5,213,245,117,76,243,30,116,218,243,255,163,195,50,84,224,152,36,17,168,84,83,136,70,142,58,80,84,186,71,123,133,85,125,56,222,66,168,213,124,229,132,6,144,83,109,51,222,101,66,217,253,211,89,103,49,88,98,75,212,172,194,242,19,98,93,191,238,60,94,105,232,159,28,144,209,64,239,95,42,123,138,56,253,220,176,72,129,183,5,121,109,188,204,179,138,207,219,9,254,22,155,65,219,242,161,4,143,112,115,32,214,33,156,130,128,166,45,227,65,50,99,157,172,245,153,169,126,226,11,202,165,48,157,200,34,81,144,172,26,206,121,228,10,251,222,55,246,107,193,70,29,126,148,172,254,63,244,158,31,206,123,115,212,41,215,244,101,175,213,38,254,248,149,141,254,191,53,31,253,37,143,194,174,208,53,250,85,8,42,45,37,24,33,185,187,138,193,99,102,148,101,187,194,24,5,63,137,39,77,100,84,169,59,176,125,30,79,145,138,98,205,126,0,55,200,247,70,213,14,73,223,60,126,35,105,248,194,90,105,150,251,70,14,31,239,217,108,133,205,72,96,42,196,237,123,227,205,69,252,84,57,213,74,25,101,231,42,136,59,72,224,222,6,212,
 167,149,219,25,194,12,164,43,39,162,67,86,246,225,145,248,29,22,209,141,89,50,61,145,219,93,136,231,122,157,83,90,60,227,253,90,124,25,232,182,124,234,29,153,173,20,64,16,49,86,198,41,244,173,151,146,30,218,75,24,212,202,19,15,114,63,184,79,114,22,110,147,248,247,159,31,96,192,149,215,247,233,205,63,28,251,84,154,241,185,172,7,183,212,40,86,207,183,250,251,134,7,27,57,146,163,147,204,171,81,53,41,66,15,125,73,117,99,29,38,182,176,44,95,155,248,235,228,189,17,171,214,115,129,31,254,83,137,203,176,184,192,108,147,47,106,2,90,88,161,81,196,4,102,180,30,76,70,181,10,242,227,205,109,61,177,195,241,106,71,66,163,96,43,35,78,50,110,153,247,8,115,175,55,175,200,236,89,25,2,254,123,37,197,77,247,124,128,55,48,143,190,20,212,111,118,176,245,245,196,89,144,98,214,208,124,5,75,188,3,46,126,25,240,212,148,210,234,179,208,124,78,68,206,16,156,251,15,135,101,18,157,187,94,11,116,156,168,235,29,197,190,220,231,238,58,134,164,150,111,171,111,119,244,104,176,159,235,185,236,54,201,195,214,29,
 114,175,206,55,189,217,127,1,13,198,189,68,171,194,104,74,132,103,216,15,199,244,26,130,240,213,179,147,123,82,154,84,34,222,5,43,231,183,123,218,211,224,221,205,199,91,1,114,223,193,23,185,239,151,225,207,21,180,156,31,105,227,169,141,18,59,94,22,179,81,2,199,159,251,203,84,142,145,123,188,228,208,66,189,8,8,226,143,76,71,103,192,255,178,216,176,11,133,7,94,158,224,14,26,86,96,143,63,157,176,176,169,132,249,145,49,218,164,2,121,55,128,18,82,227,2,66,225,103,59,231,98,2,117,0,33,32,173,192,231,96,143,47,241,71,72,190,58,74,221,139,38,104,84,17,59,98,206,97,209,45,77,65,193,29,170,202,237,228,80,122,68,239,121,235,72,234,227,202,149,64,178,210,93,239,180,89,137,15,236,171,126,70,90,158,67,116,38,129,204,79,209,114,166,151,247,134,46,66,17,161,139,231,185,235,230,161,193,239,64,3,147,198,27,95,194,13,18,181,244,134,37,248,203,215,231,72,216,200,150,193,36,254,92,74,2,195,176,22,162,211,193,164,178,152,46,237,62,149,200,123,19,242,75,80,131,243,179,126,222,115,8,180,78,180,198,
 2,231,64,116,81,86,10,31,78,79,136,236,85,98,84,239,171,76,40,122,70,143,173,212,245,224,121,233,125,111,245,106,207,180,81,91,155,4,3,62,235,195,227,108,46,63,230,35,96,214,101,223,27,166,31,122,111,241,39,99,85,247,134,89,38,166,224,125,0,159,152,73,166,211,247,157,130,38,222,20,184,55,191,179,89,80,20,24,124,212,202,245,116,86,216,215,40,41,194,8,154,176,58,9,20,161,236,95,69,247,49,42,15,124,240,232,246,64,250,229,105,217,155,221,212,119,166,105,254,246,69,201,236,166,234,233,142,216,101,6,118,214,113,149,214,160,143,228,230,74,91,141,162,131,159,217,33,119,132,197,108,180,252,66,132,204,135,181,240,195,186,96,218,180,120,129,129,182,70,254,173,92,12,109,3,174,44,33,34,192,36,240,204,244,212,228,64,72,41,138,54,146,83,225,7,49,255,181,212,1,162,156,10,29,251,151,236,137,171,64,57,3,222,52,208,225,206,13,209,176,241,172,129,18,250,47,196,157,88,99,29,70,207,62,80,204,93,59,200,181,2,62,90,118,234,146,35,133,106,14,52,117,222,5,21,142,179,138,248,104,171,230,222,219,192,54
 ,241,149,18,160,207,69,229,11,57,125,144,244,110,38,164,211,173,64,5,223,21,43,96,149,59,252,6,199,177,120,18,210,23,88,195,255,36,241,164,247,42,47,154,193,117,75,106,66,235,236,126,222,150,236,107,171,144,162,38,168,182,209,9,151,7,34,3,166,82,129,209,192,99,144,69,166,62,96,13,147,83,125,185,67,182,171,125,74,12,52,3,21,25,146,33,219,50,148,97,100,184,62,229,187,227,104,14,103,47,88,210,195,105,22,203,250,73,189,121,131,140,166,147,70,133,12,235,201,129,79,105,211,183,80,222,25,87,56,209,3,15,115,111,30,229,252,225,11,50,6,19,79,143,207,205,237,126,187,245,117,100,0,172,104,1,44,84,22,187,157,59,137,139,26,94,92,118,160,249,76,165,221,141,87,44,137,151,217,23,221,26,152,163,168,26,81,38,135,243,35,146,112,79,49,177,86,223,86,157,240,78,4,243,50,169,132,212,11,91,229,75,37,85,174,3,128,86,215,137,215,215,149,80,226,144,98,54,80,34,109,245,126,68,100,165,54,218,46,50,191,17,77,97,244,131,14,46,202,53,186,91,34,96,109,53,222,242,63,111,35,43,132,39,90,47,81,143,9,68,104,234,
 252,43,163,252,181,191,177,184,14,150,108,230,60,67,78,78,56,240,52,107,102,225,43,33,95,108,246,53,204,208,254,235,196,15,94,6,20,158,13,212,85,54,170,190,173,54,244,61,45,100,8,202,248,131,235,203,203,116,90,100,187,151,118,170,6,173,216,36,192,127,127,75,240,239,236,116,100,1,101,37,4,35,202,33,198,103,40,178,97,67,97,182,228,50,105,219,244,163,171,226,108,164,112,163,126,119,210,235,170,153,194,102,70,153,8,121,74,78,6,11,3,1,156,133,40,190,135,117,93,213,225,197,26,83,233,105,218,40,212,235,3,245,172,42,31,211,145,13,130,143,73,45,83,167,232,230,239,185,146,191,219,238,77,175,161,16,1,39,130,111,68,209,25,130,213,247,214,101,142,86,16,70,71,251,38,123,239,163,226,1,189,162,197,223,217,112,1,214,74,162,187,223,28,29,162,207,192,96,62,47,149,9,15,53,0,53,252,111,5,71,148,121,81,125,133,140,196,10,93,52,115,76,181,46,246,98,73,103,130,181,181,39,234,156,169,10,168,148,161,240,94,29,218,95,90,44,209,14,188,162,7,154,110,180,86,145,50,223,57,248,73,25,169,33,55,37,153,90,58,
 78,13,38,68,250,110,156,199,211,186,58,53,37,216,81,40,229,117,159,79,145,197,252,119,23,57,4,18,62,26,172,49,125,44,138,214,40,10,67,61,44,139,133,140,103,18,27,30,63,46,51,226,71,235,112,194,207,72,242,28,185,15,240,117,55,237,253,50,151,147,175,239,228,225,202,78,85,93,67,107,54,129,154,131,98,141,175,235,173,88,71,15,133,243,239,58,246,62,169,82,148,240,212,58,151,168,82,204,30,71,17,236,32,22,153,6,166,169,236,140,105,205,32,6,69,14,39,11,198,156,215,88,32,222,169,24,203,192,207,209,226,176,231,227,117,209,245,130,128,64,199,86,70,211,54,165,179,195,194,86,132,115,19,234,186,123,34,168,84,178,233,211,88,185,255,212,193,166,64,54,18,148,213,166,9,66,41,118,113,235,86,242,114,215,79,18,175,144,109,93,82,154,44,222,123,63,62,104,70,102,71,81,99,110,226,221,23,228,37,94,146,174,12,106,88,111,0,186,108,243,110,12,138,63,246,139,110,110,234,1,90,126,182,20,251,155,215,159,141,11,109,8,16,144,144,0,115,65,18,38,2,27,74,248,145,248,13,179,157,83,82,13,10,194,182,164,191,206,214
 ,75,114,3,153,35,70,157,14,202,176,200,193,152,184,217,162,202,22,246,252,180,131,46,121,177,25,95,109,161,192,131,65,16,226,62,202,159,226,175,1,62,18,151,245,50,127,153,93,122,114,235,119,127,114,32,236,200,252,167,220,175,90,154,138,109,149,51,24,124,91,174,144,91,32,79,170,130,39,51,106,112,245,185,78,220,132,155,83,64,148,46,53,5,225,105,240,50,64,165,88,47,88,119,28,183,219,123,57,43,167,82,239,135,200,9,177,37,176,92,69,7,107,48,50,129,66,223,158,125,20,219,240,115,177,194,35,196,144,22,119,228,27,86,5,204,203,70,99,226,154,152,9,238,187,140,255,210,95,111,209,2,113,170,20,159,174,56,35,209,201,34,240,34,195,86,204,204,213,87,38,186,128,241,12,149,3,53,242,160,86,21,176,50,152,241,250,181,208,224,71,94,32,223,240,240,101,58,20,73,240,73,61,98,136,128,67,202,147,13,229,74,0,236,65,229,177,250,176,68,250,66,33,169,247,229,3,166,211,135,11,128,231,80,201,41,10,89,15,240,138,12,70,5,49,101,129,50,129,248,152,119,130,1,61,236,49,128,115,70,36,48,97,242,255,125,144,232,174,
 180,94,65,78,88,58,78,1,220,133,52,29,220,44,3,227,30,170,210,112,140,239,67,178,139,238,41,147,49,211,178,104,22,188,222,215,147,31,159,19,232,65,92,122,131,193,1,7,100,136,31,28,133,123,127,87,104,73,42,110,114,62,176,175,190,137,148,28,56,70,223,198,158,166,155,165,171,30,173,202,34,233,75,55,130,51,4,92,82,44,232,255,171,245,243,58,75,171,9,185,253,100,101,46,7,2,159,236,252,77,38,189,253,158,154,27,72,183,166,232,65,152,180,255,220,192,245,107,75,102,224,81,31,159,246,55,45,126,202,91,47,22,210,66,155,128,181,34,222,246,156,40,70,62,249,149,219,246,91,147,48,5,211,47,217,44,243,116,194,161,158,175,70,219,239,90,236,27,44,174,233,37,164,127,49,189,218,241,64,155,26,74,245,25,169,99,157,91,12,164,209,79,34,46,86,143,33,122,113,218,106,41,210,142,69,5,114,145,50,118,185,161,138,102,223,232,127,166,83,159,33,198,236,181,149,168,78,107,197,156,1,166,97,234,222,168,239,237,186,86,144,202,11,163,26,30,13,134,236,108,207,137,166,165,132,48,18,93,15,198,92,209,148,189,167,192,15
 9,208,38,60,232,235,239,212,115,30,246,101,2,1,195,209,92,89,31,30,166,135,4,84,112,135,145,229,94,194,77,230,78,202,195,148,119,192,58,0,245,23,107,222,89,234,205,6,195,152,38,10,244,197,205,23,60,90,158,219,61,152,205,118,67,134,39,201,253,146,54,113,32,60,38,56,22,110,158,11,25,212,26,51,119,174,109,32,25,5,141,6,224,115,107,63,131,154,229,253,140,178,128,10,93,19,154,209,226,163,132,127,178,167,217,16,21,248,47,155,222,29,164,195,243,1,251,107,27,130,172,134,223,32,100,61,61,122,188,114,33,158,62,24,240,10,106,95,188,201,134,46,132,220,27,116,142,196,124,195,62,245,105,14,164,216,213,188,5,73,220,167,224,147,42,14,170,59,84,172,218,172,25,164,207,211,217,103,105,97,93,220,90,185,143,142,40,50,238,168,146,233,30,139,155,52,211,146,105,159,50,245,78,168,190,233,200,225,228,184,122,87,93,82,185,11,130,213,141,56,181,234,246,183,87,128,56,228,182,241,207,167,251,27,188,22,191,103,45,180,108,37,44,114,187,111,207,32,161,49,211,110,220,132,79,116,127,49,216,148,246,4,93,206,21
 0,161,151,12,91,76,85,74,249,86,120,58,68,206,12,75,96,89,243,118,52,198,237,82,113,42,134,176,131,127,2,56,16,113,40,147,189,73,55,71,117,50,61,149,49,138,74,97,105,65,179,233,87,188,38,237,201,191,130,135,0,96,239,120,43,118,174,64,85,39,116,86,102,211,86,65,129,126,5,178,20,154,215,37,254,95,47,142,210,165,15,180,128,95,80,193,210,36,215,192,138,238,28,201,160,126,33,188,80,52,108,59,103,100,151,19,72,46,206,136,46,171,230,211,136,37,182,43,144,139,52,186,180,242,230,6,162,167,46,211,102,142,140,179,136,92,219,18,65,180,138,65,162,255,41,69,167,227,240,230,42,144,108,14,23,248,202,246,23,233,214,90,45,181,75,24,216,113,206,86,206,26,77,29,22,248,70,200,194,8,189,96,225,1,41,7,32,214,229,94,23,163,126,206,11,249,48,212,59,98,177,27,196,232,54,177,209,222,119,170,61,32,199,165,6,183,172,160,222,99,4,254,58,242,194,180,130,102,0,14,203,186,159,135,182,165,65,203,235,107,27,216,154,235,155,67,141,33,213,47,127,7,182,112,228,0,208,242,74,128,76,90,192,207,199,87,239,26,234,13,
 35,228,14,86,162,170,87,191,133,232,55,220,203,229,45,28,52,145,135,109,116,149,179,212,52,47,9,106,204,15,232,62,153,118,45,76,186,59,144,210,225,126,51,107,197,124,85,223,164,166,14,8,133,109,97,0,169,103,103,160,9,84,117,154,122,69,209,160,241,86,114,154,246,78,16,137,246,152,79,117,204,167,94,113,18,32,158,205,104,45,212,168,209,172,196,98,182,52,190,55,135,243,202,100,23,51,101,202,159,49,45,145,182,125,240,254,97,187,70,209,95,231,178,213,245,19,51,52,129,254,42,52,12,249,141,177,39,188,120,206,25,60,78,129,99,136,85,104,95,46,87,253,228,89,201,167,129,163,133,153,14,87,137,24,214,100,86,106,52,126,14,27,47,25,213,158,177,225,127,251,167,215,43,75,175,134,16,221,62,40,11,173,225,68,73,53,72,189,163,226,82,201,49,106,252,32,219,94,92,16,60,54,138,234,240,40,28,111,160,11,88,228,170,133,80,250,220,219,119,17,3,74,24,210,234,50,155,116,61,112,206,94,187,65,41,239,243,113,43,23,57,161,239,234,99,54,245,84,217,91,71,2,138,123,1,3,16,79,33,39,141,127,114,222,40,200,239,135,2
 44,247,143,190,50,176,117,60,17,195,6,21,206,176,155,57,164,227,146,244,204,108,118,190,202,181,178,207,146,239,172,64,177,89,26,93,60,54,161,237,125,86,198,71,42,254,186,33,39,245,62,88,165,104,232,59,194,38,76,136,27,36,69,46,119,213,10,39,195,53,93,216,184,100,89,154,140,162,58,154,234,1,4,62,2,244,155,19,139,69,29,157,29,62,41,177,118,47,207,98,206,213,62,3,157,99,8,152,99,115,179,143,196,221,71,28,251,220,9,18,163,43,129,224,152,225,156,208,183,162,110,236,25,206,183,49,19,142,56,72,133,23,186,138,245,188,112,168,43,160,220,51,145,68,110,246,206,173,114,153,90,86,188,169,245,243,237,44,69,214,106,163,155,93,63,209,212,152,136,221,8,227,107,30,209,33,170,178,53,220,228,120,195,219,192,0,0,72,60,92,226,166,220,81,213,209,114,95,132,250,128,128,241,226,109,184,174,40,14,196,189,163,144,159,254,62,194,50,89,75,157,220,145,53,152,113,101,22,183,255,177,126,29,192,255,200,135,67,108,77,44,54,79,64,54,218,157,4,166,15,238,255,220,197,211,240,205,120,243,160,62,133,29,148,148,7
 ,7,200,140,148,16,78,192,49,165,231,15,34,39,21,114,109,29,203,233,44,86,196,18,58,73,61,21,167,92,228,168,212,25,126,64,102,231,9,224,23,29,253,142,52,154,149,192,223,197,134,219,149,217,128,18,131,89,140,158,209,232,73,171,68,155,134,16,160,245,141,188,128,246,214,114,241,141,78,233,106,218,122,168,232,89,132,139,99,74,156,53,82,131,188,11,46,80,75,38,227,151,46,11,108,205,200,113,126,29,134,50,11,160,246,155,154,189,212,59,31,50,95,197,130,205,242,150,249,209,41,138,147,23,223,233,237,72,242,78,250,9,70,73,64,224,251,185,64,203,72,60,218,221,196,118,123,76,120,177,245,176,221,2,92,6,178,214,174,190,114,172,74,131,236,139,198,2,92,220,175,22,38,165,251,3,113,124,156,53,245,168,76,225,199,13,89,219,64,220,239,249,19,255,145,206,242,199,169,12,71,27,238,174,251,234,218,112,203,142,252,11,22,15,151,235,89,18,49,63,203,190,246,150,28,217,142,14,70,227,251,22,249,100,104,166,200,135,111,23,17,138,7,67,30,147,65,157,141,81,171,151,199,147,53,51,11,130,165,199,140,148,156,188,84,
 14,78,5,112,75,8,83,197,191,194,145,238,12,229,85,152,71,140,138,59,76,119,172,55,62,166,139,40,225,188,248,222,153,113,123,61,51,215,170,190,44,62,123,11,108,165,129,242,254,183,175,68,161,173,74,32,212,101,4,130,65,234,38,110,12,249,71,146,27,29,119,206,154,14,147,16,161,177,227,171,35,47,147,239,220,22,124,240,216,249,11,163,243,157,32,194,138,190,66,142,187,232,181,137,118,137,235,171,203,141,21,46,41,165,97,126,126,161,102,92,169,245,108,86,81,170,129,33,162,37,190,3,80,76,164,130,42,183,167,63,122,245,122,56,194,110,103,172,228,104,217,240,136,53,22,13,105,61,73,56,140,116,114,195,177,61,23,63,190,73,117,82,129,107,65,65,213,156,76,145,162,7,67,187,113,82,241,30,230,247,28,236,142,134,238,62,68,240,76,45,218,230,48,254,198,136,183,66,186,138,227,101,104,10,110,131,120,233,5,172,101,235,3,208,93,139,243,54,113,214,168,63,40,130,210,73,114,229,42,148,255,191,181,143,122,159,21,208,44,222,51,218,196,219,211,201,81,238,108,181,136,159,11,67,1,56,202,64,89,68,183,176,121,13
 0,159,155,136,15,139,197,146,131,141,242,185,163,84,51,75,103,247,174,191,117,231,138,205,50,229,107,118,243,110,231,178,142,81,4,168,131,162,225,151,47,142,40,137,86,214,49,3,157,71,95,238,96,23,86,114,156,40,25,74,61,216,152,127,77,210,81,213,143,27,76,217,25,116,26,246,182,217,240,89,205,140,180,23,78,119,159,163,83,77,2,155,45,6,25,135,125,197,193,42,171,50,64,120,33,183,144,108,103,244,48,222,242,118,107,120,95,126,78,85,23,161,6,20,20,134,184,217,160,115,20,198,122,5,12,78,190,200,243,91,217,153,51,226,209,114,169,212,19,148,150,136,195,75,36,229,91,246,202,84,197,138,131,207,179,169,69,216,90,148,240,221,35,128,135,244,202,254,79,27,80,142,237,109,115,144,171,153,13,233,84,94,18,111,170,210,97,216,46,236,203,155,104,108,74,154,186,101,137,242,172,166,159,179,91,35,216,158,249,44,70,56,204,3,227,88,9,188,76,172,40,80,98,151,64,20,30,72,204,76,64,155,78,242,66,103,69,192,238,172,242,24,153,123,60,124,226,231,249,171,190,204,105,111,236,179,129,4,118,38,70,73,98,234,170,
 7,206,125,110,247,53,31,254,246,97,146,129,246,193,90,98,80,176,193,44,233,228,69,243,90,36,46,204,117,212,10,214,189,190,111,110,29,9,249,165,19,183,75,49,190,83,155,221,6,88,244,64,208,196,190,201,250,71,116,191,26,143,215,104,215,107,78,209,64,101,137,211,129,26,88,66,24,189,108,147,79,155,209,40,28,74,206,188,117,242,242,140,64,134,199,146,219,106,29,36,251,215,182,92,31,139,240,167,228,46,150,214,45,164,250,16,207,144,180,172,127,232,171,239,153,46,175,206,99,25,113,75,45,171,129,125,165,191,152,244,23,81,176,146,252,111,32,58,95,163,9,233,15,45,30,0,33,227,128,130,95,53,31,20,243,65,44,130,250,192,146,152,232,38,54,222,229,126,74,175,52,1,104,105,134,122,118,18,250,16,180,88,217,214,36,46,91,104,229,79,27,33,28,43,48,8,151,121,116,200,238,76,113,81,124,135,173,112,27,116,159,108,76,34,237,78,53,239,39,230,109,164,247,188,114,183,140,36,64,118,198,224,235,195,28,94,207,10,68,9,28,221,3,125,242,76,255,226,108,156,177,245,31,14,89,118,137,213,206,163,1,135,251,147,151,71,
 242,113,90,87,121,141,92,194,83,150,48,91,34,155,153,32,153,55,175,62,160,98,56,129,161,113,99,214,244,183,65,169,22,157,1,200,216,1,203,50,3,131,242,251,235,50,109,56,158,15,121,18,1,137,179,22,45,215,123,110,47,145,77,157,77,118,192,235,89,0,97,55,120,181,130,72,211,224,179,252,10,104,148,242,62,181,126,190,226,253,171,91,252,171,150,103,209,185,116,244,61,19,118,243,7,24,247,250,9,187,139,138,36,141,103,191,59,238,225,232,147,65,161,111,99,214,92,197,175,41,58,146,215,212,22,191,146,95,178,192,196,40,115,244,81,80,137,177,32,203,172,85,213,48,151,93,3,24,117,111,62,98,93,138,86,192,202,35,226,75,34,173,84,223,38,116,201,184,173,100,95,43,207,31,218,214,175,22,106,141,183,168,122,169,108,175,177,215,229,99,246,162,140,71,130,17,245,45,26,94,47,22,136,200,231,170,47,215,65,101,186,168,113,75,100,14,235,131,20,193,41,89,134,202,254,216,22,177,55,6,159,175,118,157,250,42,172,73,7,250,169,210,226,27,209,72,83,75,171,189,63,16,139,99,168,165,99,116,160,8,6,237,114,236,224,188,1
 66,8,97,66,242,227,11,91,158,186,73,9,17,176,213,115,204,29,120,120,173,248,176,186,67,212,111,230,135,140,3,111,148,175,132,223,17,25,32,93,246,86,212,62,201,71,222,230,15,62,232,174,175,247,94,167,57,52,9,200,210,121,98,30,123,246,204,106,87,99,49,38,5,74,168,136,126,200,212,139,185,63,57,212,159,0,3,224,238,135,120,196,108,194,206,0,211,104,181,119,114,182,71,72,25,15,101,196,77,21,37,89,143,247,244,126,186,73,123,173,102,239,82,122,149,121,81,82,110,233,111,160,22,201,47,222,10,110,189,80,10,13,78,120,187,55,143,242,162,221,130,107,36,85,188,135,234,145,181,238,168,138,122,222,75,38,1,171,167,201,104,215,101,19,23,126,64,12,3,50,233,65,180,158,85,230,42,170,20,180,227,201,108,228,184,18,254,184,145,242,103,46,119,119,205,12,164,27,46,108,225,30,237,44,125,101,131,124,249,122,108,82,244,194,7,60,178,236,181,244,72,12,124,48,67,204,120,35,6,184,222,63,165,155,7,208,57,25,44,207,251,98,15,194,241,212,103,162,145,250,201,38,23,146,153,154,4,142,101,93,183,55,41,55,168,157,24
 3,170,175,252,197,153,108,94,195,232,247,130,199,118,251,213,195,212,124,180,238,41,52,203,21,44,162,153,55,17,111,198,200,228,51,151,2,164,195,130,179,176,74,94,119,33,40,90,85,70,233,3,174,182,136,166,168,31,190,172,148,26,39,16,203,162,168,5,245,199,178,64,207,60,2,22,247,50,130,220,223,15,213,204,83,96,46,76,10,150,174,230,38,41,124,167,158,169,88,7,169,204,130,158,159,161,252,117,166,44,79,130,8,116,192,242,145,168,206,129,39,131,241,94,251,160,236,20,10,70,84,105,169,8,66,160,57,67,37,74,149,193,104,165,202,123,70,171,229,105,249,227,128,201,41,64,77,50,203,173,125,86,211,6,88,215,129,30,86,84,10,92,216,99,188,179,85,120,229,138,143,146,227,236,147,255,183,126,9,44,12,213,101,113,32,90,87,120,55,66,195,0,213,115,149,69,18,164,136,47,51,27,240,44,44,164,189,184,101,42,14,230,150,163,39,23,182,140,152,100,70,148,103,224,211,28,32,185,110,217,44,59,121,133,107,223,220,68,216,117,137,92,185,140,6,86,199,39,83,235,187,70,80,205,209,82,87,237,1,208,157,43,165,240,22,229,226,
 150,156,128,23,66,227,96,1,18,240,10,66,204,225,33,71,231,57,44,233,237,253,208,221,67,126,51,211,11,125,155,160,187,39,104,29,189,152,200,186,164,38,114,122,77,104,3,73,11,127,237,211,254,156,210,73,201,227,9,227,155,32,20,25,83,22,136,49,130,174,122,4,10,235,149,121,34,8,20,124,223,166,99,215,128,118,57,47,5,53,164,184,19,65,130,164,255,125,220,128,212,227,255,172,145,62,19,72,191,84,127,194,225,224,193,79,67,155,185,93,135,250,242,29,51,198,253,253,134,8,58,255,191,6,101,100,92,41,29,116,22,149,41,230,237,225,1,163,200,148,41,118,48,182,181,144,96,22,10,180,181,139,7,74,233,253,3,0,186,247,148,44,181,218,118,234,121,217,69,77,227,53,189,67,67,227,183,121,19,220,16,200,66,31,85,163,167,61,43,155,255,79,83,54,97,188,127,64,74,19,70,38,116,58,41,102,14,238,236,240,51,176,70,115,170,102,100,18,135,104,135,58,70,213,46,29,254,225,151,207,37,234,225,226,190,138,157,211,72,47,31,63,169,59,189,143,95,142,188,169,146,67,154,16,238,138,105,214,175,187,15,223,227,37,153,41,133,203,9
 0,161,253,216,237,249,170,189,214,102,154,200,232,141,106,225,232,70,6,118,104,57,123,242,76,247,65,217,130,73,168,105,173,120,243,50,192,172,86,26,237,68,208,191,149,85,61,4,88,34,54,184,11,38,149,7,53,100,200,213,216,85,97,197,72,39,200,101,219,81,28,178,162,155,99,75,20,87,117,204,116,121,227,72,131,139,38,177,224,58,192,101,215,73,202,218,129,33,173,72,132,89,97,8,239,107,186,41,92,86,70,232,102,182,36,204,250,6,28,51,157,118,53,136,45,69,136,174,90,253,135,160,59,80,134,250,105,110,102,36,56,87,226,139,213,109,54,124,44,137,18,161,166,200,243,121,239,40,88,40,138,135,213,31,75,211,51,101,233,18,72,77,115,154,242,141,166,152,142,194,13,145,11,150,47,199,50,206,40,159,73,47,143,172,105,46,38,125,206,24,118,166,187,198,81,32,142,17,28,111,110,99,169,223,34,39,205,97,103,119,35,18,217,189,196,177,184,50,104,115,158,18,126,242,151,33,24,214,190,210,220,115,217,197,250,49,76,166,78,207,69,9,19,75,231,128,107,172,23,58,104,83,229,96,178,191,102,235,140,208,112,248,225,88,37,87
 ,215,100,36,84,197,5,19,141,202,172,17,126,124,202,11,200,130,148,250,7,47,102,156,189,48,123,40,136,68,109,108,70,82,159,54,75,100,236,49,233,157,118,198,155,52,248,237,197,150,58,102,94,239,39,119,68,251,113,250,45,236,110,174,12,112,193,141,25,248,74,86,17,97,175,251,42,6,179,72,221,78,6,253,5,153,206,129,224,148,173,245,116,138,116,185,71,75,227,10,22,119,39,25,213,138,92,97,24,217,93,187,147,193,27,160,213,191,26,147,13,205,251,157,159,71,30,211,76,215,95,85,36,249,132,59,99,161,178,11,73,224,226,201,244,241,236,104,190,94,95,18,43,105,57,36,43,140,238,8,213,93,172,49,237,168,121,52,146,79,51,181,192,88,40,65,104,98,125,191,143,218,244,93,100,174,34,180,220,104,193,232,235,102,117,192,70,33,85,201,223,88,194,141,17,59,100,215,204,152,43,14,181,102,69,163,96,26,40,69,171,208,155,131,250,53,57,175,152,180,164,201,206,221,167,154,90,162,158,109,106,1,179,169,176,37,153,50,137,89,67,132,169,157,19,42,7,140,85,157,46,30,96,96,237,67,220,133,162,177,131,1,231,245,103,10,203,8
 0,157,125,11,18,217,24,150,11,81,195,157,243,114,246,63,183,71,54,133,183,50,137,136,191,98,165,42,101,208,146,46,187,66,198,136,77,207,83,80,111,108,116,209,192,165,148,0,180,38,192,203,62,49,24,165,194,78,218,49,84,112,239,96,232,135,42,56,255,108,185,85,238,117,218,110,57,205,72,170,9,30,166,213,36,178,8,224,46,190,221,55,136,132,102,10,155,82,166,199,145,45,223,97,49,189,172,58,48,20,13,21,76,116,220,174,185,81,55,172,190,125,9,10,227,111,250,118,20,57,197,248,154,235,90,176,143,242,9,84,35,180,110,3,95,15,5,207,77,46,111,18,143,216,50,31,165,121,13,55,199,99,169,233,74,84,10,165,221,194,79,51,63,0,170,24,4,42,11,109,198,113,170,168,215,89,111,88,46,246,77,123,167,194,55,234,6,213,153,86,9,123,77,241,23,169,48,35,221,83,76,125,244,23,165,14,165,9,182,63,107,125,241,107,47,255,73,7,183,63,168,198,252,224,183,101,64,121,2,194,150,10,66,185,121,123,156,219,170,37,202,92,119,120,207,144,40,109,253,6,72,81,233,109,209,228,12,173,199,156,228,113,195,103,26,77,201,207,68,143,23
 ,81,209,153,63,120,45,71,243,120,251,247,128,212,119,147,25,198,146,222,121,196,87,29,39,218,67,163,53,96,93,49,144,72,125,232,252,210,195,234,149,195,245,247,44,75,164,112,3,31,90,1,119,115,107,68,153,183,55,199,196,61,150,104,230,28,179,83,66,163,195,222,152,242,228,248,135,1,19,107,100,127,164,159,96,189,202,158,126,101,122,72,224,1,200,228,5,107,236,196,244,205,8,249,120,221,220,43,111,117,18,169,155,172,104,32,249,153,161,1,174,200,166,251,249,110,187,106,42,188,196,134,14,159,83,31,217,29,120,242,157,97,127,119,146,22,235,41,53,168,99,41,18,206,116,31,49,244,49,102,89,87,150,76,2,155,55,153,190,160,9,74,242,193,228,173,219,249,46,247,237,115,104,40,60,84,36,93,115,145,223,86,253,157,43,97,207,39,217,182,5,123,31,178,184,45,194,218,132,123,197,69,178,20,141,64,185,204,42,20,228,113,11,209,30,5,154,135,228,70,220,119,150,62,227,128,206,189,54,210,166,127,65,110,23,65,48,3,22,26,38,170,50,103,80,0,214,203,70,74,126,223,150,188,42,8,233,171,108,210,12,14,148,53,167,198,253
 ,28,247,168,170,8,130,124,150,215,174,73,104,70,100,88,115,31,194,187,13,94,216,202,42,196,53,104,64,249,42,164,171,188,202,135,215,219,191,188,75,34,134,74,166,42,26,205,146,129,16,94,158,47,31,70,247,138,185,177,208,61,152,15,20,96,94,164,176,1,87,153,1,26,230,205,104,141,171,100,96,32,179,145,9,13,121,3,145,105,76,239,133,38,225,121,190,133,148,103,197,11,49,13,44,117,166,165,70,108,225,141,103,128,174,222,191,68,202,55,97,122,141,68,8,162,231,140,206,246,130,242,192,214,140,14,132,248,244,203,245,219,14,172,210,203,201,109,137,199,239,124,163,129,97,136,80,66,56,52,123,119,216,226,148,131,112,37,208,97,90,173,152,222,160,23,49,115,217,43,145,249,73,84,67,46,142,21,31,200,130,207,229,52,114,149,41,160,223,148,109,71,245,156,52,178,15,207,1,167,83,10,183,94,13,242,104,197,213,116,228,62,51,68,170,41,225,20,167,129,20,164,172,2,90,52,66,188,47,240,217,200,90,178,188,143,229,21,235,247,112,254,168,230,54,241,191,152,0,92,61,170,32,7,218,55,154,91,210,135,188,10,32,210,159,88
 ,121,121,81,155,160,96,39,139,178,249,211,226,63,26,6,158,159,70,253,110,137,62,25,220,233,16,50,234,23,142,131,211,19,94,13,111,7,22,217,53,173,32,50,51,135,44,103,4,254,33,91,104,179,49,73,38,247,232,89,56,80,160,181,32,163,175,251,203,52,198,163,155,246,113,254,215,141,176,139,127,76,213,57,150,79,109,203,53,213,28,155,110,94,255,203,133,220,113,190,125,227,248,221,225,255,4,153,20,246,58,221,189,162,187,83,110,216,83,146,20,74,47,20,141,160,196,220,44,5,184,108,95,100,71,235,218,191,251,118,227,44,183,48,232,4,76,145,152,170,116,170,75,129,220,189,180,50,239,65,99,190,53,62,138,73,218,168,153,4,229,194,246,205,0,21,177,52,174,89,70,34,21,95,129,163,5,160,104,92,226,117,94,83,240,232,196,69,150,157,175,231,99,109,121,167,23,5,57,137,175,69,161,120,56,235,244,168,69,198,44,69,80,226,179,135,79,132,96,63,88,15,253,233,187,137,50,248,121,84,128,63,102,123,176,192,22,215,176,147,248,230,35,11,175,236,167,253,190,87,37,149,137,128,208,151,44,135,32,238,168,231,126,0,177,124,16
 8,174,214,202,19,155,14,239,126,113,77,88,182,190,8,126,6,130,218,226,71,207,217,156,170,148,119,6,137,147,201,67,159,44,67,70,141,89,33,135,220,230,16,232,106,169,52,58,1,59,177,184,191,217,73,50,195,225,59,98,124,115,188,250,166,212,43,85,171,61,99,248,32,162,7,16,152,2,148,32,250,198,188,101,122,240,115,82,67,221,213,216,250,215,98,177,66,119,90,11,213,43,174,131,17,102,159,46,65,27,167,22,169,249,131,45,231,193,66,231,188,26,30,19,103,54,120,129,86,30,219,187,51,72,184,163,0,113,33,219,9,74,128,226,238,155,98,225,196,90,131,127,23,162,74,222,165,200,216,165,225,240,122,201,13,116,225,31,211,171,86,220,114,110,71,35,60,236,221,154,16,7,240,52,18,83,185,183,15,51,87,123,149,80,104,238,41,106,21,173,158,171,98,95,10,45,175,182,138,17,221,67,62,35,87,118,204,225,182,139,94,202,69,188,43,155,206,191,95,144,6,137,55,242,140,80,130,70,78,123,120,115,6,131,150,163,34,93,100,121,225,174,51,240,17,127,167,160,123,79,101,116,41,241,154,224,238,11,81,44,188,124,239,2,102,89,103,219,
 3,97,140,61,55,38,3,188,30,96,140,175,24,158,238,211,16,179,11,17,125,211,16,34,196,104,59,41,159,88,239,49,217,131,128,186,187,107,193,167,215,38,159,236,187,172,177,53,33,241,204,70,91,66,127,209,68,33,166,59,59,196,16,118,32,60,119,169,49,192,80,254,24,191,96,188,7,38,184,69,203,141,215,127,90,240,225,40,182,50,242,44,14,220,210,15,189,41,113,10,168,231,141,175,100,227,69,29,250,188,220,54,195,89,161,243,147,38,235,130,117,243,249,206,237,227,48,138,238,184,44,142,241,243,76,36,254,232,22,24,68,22,98,89,67,240,162,48,138,15,168,7,10,80,63,200,124,50,48,7,15,141,147,131,37,232,66,84,34,108,204,198,147,124,129,31,111,237,193,26,241,21,153,96,238,7,81,191,22,59,228,189,172,74,60,51,80,250,160,98,90,75,251,57,142,245,87,192,23,6,146,215,105,42,171,53,71,62,224,219,47,32,79,17,231,99,90,232,187,253,63,62,33,201,83,84,203,147,0,163,204,183,255,2,96,166,3,137,13,94,57,56,73,75,234,88,196,29,205,212,10,253,74,196,50,140,245,6,226,213,89,174,171,246,44,213,102,153,238,247,232,236,
 245,86,124,136,91,169,142,65,71,247,142,200,56,237,188,183,73,215,51,69,50,163,221,184,191,217,119,49,179,250,224,105,152,179,188,243,25,133,228,172,180,164,1,84,28,76,97,108,181,88,228,29,198,128,15,52,86,223,112,74,175,83,183,163,218,163,189,112,64,28,254,14,137,237,227,33,23,246,239,242,5,79,155,0,166,91,23,205,117,134,122,98,12,16,99,59,128,38,145,162,147,14,100,3,26,206,80,55,198,210,171,37,206,141,201,34,117,222,235,254,213,119,66,245,241,52,141,150,194,27,43,86,0,2,198,106,96,208,11,155,118,231,19,18,239,122,152,225,139,71,255,2,244,47,166,215,104,44,214,110,120,205,249,255,211,54,181,250,221,52,186,110,8,228,59,242,191,194,69,131,178,153,222,61,165,195,149,133,108,36,13,227,1,190,197,5,100,187,174,134,16,251,38,240,144,187,12,38,18,50,72,0,201,79,34,136,119,181,73,159,177,197,246,173,0,108,219,32,15,185,22,251,10,12,192,10,123,51,161,64,24,117,193,49,198,249,185,168,189,166,37,116,145,107,250,9,181,134,197,227,15,143,84,95,215,11,217,231,75,72,4,70,178,200,150,115,20
 1,51,179,84,250,168,149,179,14,91,225,218,138,39,143,150,254,143,69,232,81,224,201,19,162,219,164,128,206,111,93,50,51,148,237,48,148,48,89,174,143,240,22,240,171,153,230,193,125,27,162,95,71,110,11,127,93,135,168,186,83,117,108,131,81,146,182,30,145,77,191,93,182,87,99,25,195,97,51,136,217,34,218,89,164,49,149,112,176,62,87,80,4,141,199,68,194,173,63,33,64,23,5,18,187,89,155,71,148,128,192,41,128,221,23,123,195,69,103,20,138,113,168,239,26,32,137,71,242,137,18,244,216,34,6,0,141,255,6,98,127,23,126,191,50,218,165,158,54,59,209,52,23,169,230,53,114,140,172,218,248,58,105,36,134,195,77,99,89,42,101,119,120,248,141,126,36,70,244,210,25,112,95,187,126,172,198,91,54,206,136,94,195,25,16,73,221,13,40,65,101,91,126,121,81,52,104,74,185,89,33,229,148,64,111,234,52,125,7,12,148,169,32,195,168,224,211,78,192,107,23,244,74,246,174,81,97,244,87,137,228,172,132,78,90,73,143,88,208,51,102,134,36,50,36,116,204,100,169,160,40,24,127,160,43,78,137,213,57,81,98,29,67,84,113,138,113,82,24,118
 ,16,205,168,243,45,133,251,89,83,88,221,119,115,55,98,217,198,78,84,14,1,149,17,153,83,201,244,57,231,50,47,5,204,194,13,38,8,102,211,29,169,225,197,206,207,162,3,136,185,152,140,100,78,136,105,214,58,63,92,67,161,172,179,181,50,212,170,214,179,142,104,217,201,88,18,84,96,52,213,108,14,160,60,173,245,165,182,88,158,116,104,73,135,229,54,110,76,219,53,116,35,76,86,197,180,77,61,102,96,34,116,85,73,103,216,128,211,190,50,192,245,166,186,238,85,1,172,58,84,158,234,18,124,67,215,54,151,107,248,119,78,79,63,81,48,92,78,96,0,49,244,34,138,127,110,24,20,83,71,46,5,102,142,74,139,26,189,172,222,138,35,198,199,205,97,253,105,14,82,80,234,41,211,127,85,231,137,109,94,111,69,20,134,87,215,233,177,236,154,31,19,83,178,228,95,79,38,240,33,143,222,167,167,58,161,78,78,49,27,24,100,214,216,152,129,32,196,133,95,163,19,199,173,134,59,226,69,191,229,185,214,105,249,104,71,100,26,161,226,122,249,178,184,6,30,223,177,15,36,213,235,205,24,99,108,155,107,14,90,78,204,137,111,131,220,95,29,158,49
 ,202,63,105,29,146,247,247,138,245,174,135,128,103,142,231,7,144,78,126,126,85,251,9,172,90,158,159,89,220,129,92,11,178,118,179,235,139,131,136,230,53,173,185,39,205,116,86,127,116,21,151,78,198,72,187,226,54,101,150,79,136,228,249,255,10,133,40,58,220,103,169,221,132,163,25,183,133,213,79,30,139,158,179,48,73,92,214,29,235,229,132,11,94,48,72,71,218,20,0,65,15,103,135,210,154,122,119,160,252,79,108,204,93,71,235,163,89,209,212,114,137,119,34,103,137,190,4,187,154,42,244,19,39,145,244,191,80,72,12,115,50,19,85,157,241,148,187,143,197,14,248,99,45,89,210,98,221,63,101,172,92,9,138,59,188,93,42,196,132,229,124,135,39,22,20,10,126,121,165,155,73,93,227,213,204,66,185,246,222,237,49,133,10,161,124,72,157,161,92,252,91,79,25,248,139,77,62,18,33,134,104,52,124,18,28,148,241,31,52,2,244,157,152,158,73,112,206,108,171,163,43,75,214,115,234,179,102,52,4,80,77,41,7,153,216,120,5,135,230,155,238,250,183,243,219,184,114,71,228,227,247,69,84,250,136,254,203,201,79,128,205,57,204,52,173,
 156,217,38,230,27,218,196,144,124,60,240,212,57,84,187,44,88,108,243,155,241,127,163,130,78,100,132,212,115,57,136,117,245,58,157,64,25,92,141,226,60,49,244,59,234,232,7,36,186,101,83,33,203,107,245,194,220,207,23,141,107,29,85,68,248,121,151,92,246,84,201,238,70,182,230,150,241,12,121,244,144,109,153,11,118,217,228,215,53,4,22,166,145,6,223,183,64,218,56,208,129,74,142,41,193,249,191,234,17,167,206,106,175,64,22,50,90,109,95,183,239,254,147,234,43,132,162,75,232,197,3,128,124,45,85,108,159,189,106,82,218,138,184,254,40,197,33,0,89,254,49,141,60,8,73,171,121,42,109,160,177,96,242,215,239,16,235,31,234,160,170,161,145,243,79,52,191,99,194,116,227,138,242,242,153,123,118,75,208,64,208,18,50,44,172,45,120,158,7,30,84,15,205,58,74,140,159,246,243,68,130,148,205,191,176,15,115,101,201,245,255,167,96,192,94,106,119,153,128,172,114,182,122,187,155,96,77,130,46,202,200,104,9,195,61,242,55,255,38,242,101,20,249,154,88,72,212,227,180,149,142,25,112,192,60,249,47,79,14,95,250,71,142,31
 ,169,63,36,55,131,235,169,0,182,101,43,103,79,153,54,209,172,241,69,145,68,48,3,18,109,60,253,10,183,51,226,16,67,150,116,91,47,34,244,103,122,251,195,211,29,230,207,179,137,178,71,165,70,252,162,157,215,159,61,172,45,15,166,105,58,75,17,174,194,111,71,52,185,235,111,74,66,117,170,204,97,57,14,129,247,183,33,201,205,168,123,49,174,183,38,113,219,145,45,8,164,214,83,132,184,92,75,121,72,100,35,109,87,224,179,97,186,188,55,198,108,95,220,78,197,147,92,174,113,123,168,1,185,135,38,177,242,249,69,99,118,36,206,170,179,60,117,88,80,214,50,193,108,124,58,81,43,144,64,144,186,167,58,133,192,81,10,224,92,49,222,236,231,71,89,123,224,128,209,50,85,121,165,122,22,180,133,131,7,209,165,40,245,127,93,65,166,145,86,90,65,125,236,193,186,174,119,133,63,76,54,132,38,18,147,59,91,28,52,55,65,149,124,182,217,55,69,182,187,67,82,149,157,149,224,245,166,88,204,247,245,163,119,136,150,168,184,244,185,208,240,200,230,79,94,57,36,55,123,155,203,250,58,54,221,195,37,60,126,52,38,21,100,207,53,222,
 118,134,40,190,102,96,126,228,90,179,158,221,45,17,162,39,185,15,164,77,183,89,131,2,87,160,148,11,55,226,108,119,179,11,206,197,68,111,70,152,18,89,49,96,147,164,122,131,51,153,115,7,210,192,204,89,6,183,171,92,185,106,149,19,175,107,165,221,191,76,223,137,160,213,201,251,194,107,117,81,45,234,165,62,194,226,69,27,242,239,216,69,16,3,172,95,94,203,0,253,31,153,209,146,186,227,195,27,207,131,196,204,93,60,91,23,5,210,84,194,11,228,26,225,57,164,68,6,118,106,113,15,148,102,63,3,251,158,41,236,253,210,59,200,122,183,19,200,188,122,46,99,22,162,225,207,48,112,8,178,102,219,11,204,139,116,190,117,104,158,33,240,45,241,183,62,121,9,177,190,247,108,234,174,175,214,126,189,24,17,114,254,191,48,214,237,131,198,250,231,58,231,228,91,196,239,241,26,69,27,96,13,187,217,61,251,230,119,23,167,161,214,43,117,3,108,238,163,114,215,201,219,247,167,236,51,196,5,187,184,22,239,18,20,123,162,239,18,30,16,5,171,53,216,0,170,51,83,152,37,161,252,146,75,10,206,174,41,32,160,54,204,70,213,29,35,25
 ,119,130,104,203,250,223,195,206,30,39,88,244,160,42,212,116,61,72,127,93,171,157,76,209,15,48,112,94,128,40,42,182,239,58,217,79,7,193,40,43,207,121,149,125,130,49,156,212,16,66,14,170,81,58,178,165,225,146,163,198,120,187,151,188,146,55,243,148,11,6,217,29,5,218,69,164,58,205,134,144,163,145,182,32,197,223,51,36,200,250,207,223,72,227,154,169,136,75,35,142,101,40,125,21,193,94,242,81,143,207,161,127,72,25,97,220,138,168,156,212,172,103,48,227,115,164,118,37,184,79,253,13,71,221,1,238,161,195,101,204,194,90,172,176,45,235,98,96,24,50,145,28,159,100,85,144,199,105,7,156,15,148,48,70,71,8,215,74,121,251,104,56,167,202,243,58,255,215,49,0,29,227,111,18,0,104,78,12,56,218,81,167,126,56,116,28,194,246,16,202,136,245,201,92,149,158,1,249,9,176,123,197,181,150,138,90,146,79,22,170,241,234,96,21,188,67,185,121,65,116,9,161,133,245,74,234,244,111,155,81,248,132,210,44,139,189,168,28,28,198,15,237,241,93,28,85,39,116,220,138,121,224,103,93,27,19,140,47,127,226,65,1,132,128,222,113,21
 ,59,77,42,122,217,5,186,64,15,156,183,207,194,163,221,164,13,90,34,255,16,187,249,208,150,94,198,93,125,230,83,125,83,182,77,102,194,8,170,201,138,205,124,232,172,88,102,17,117,180,87,153,151,110,108,86,1,185,156,46,116,228,152,51,200,87,179,176,252,14,16,60,39,149,141,22,169,222,112,115,227,13,115,17,148,215,193,253,70,108,159,185,70,166,39,4,27,73,75,32,123,234,91,186,251,172,78,139,132,241,132,200,165,238,102,24,221,114,11,231,20,3,152,165,69,80,92,89,158,253,67,84,10,136,212,115,74,220,41,126,156,46,85,44,48,52,25,73,164,179,68,7,69,136,107,25,145,251,199,240,162,128,204,238,148,38,198,254,232,208,99,163,167,62,0,237,247,171,6,63,131,86,94,9,25,27,139,123,31,152,213,218,110,249,123,167,9,30,107,162,193,53,51,196,116,190,209,43,40,69,251,126,204,142,136,237,177,157,250,201,12,213,53,30,241,20,196,162,146,19,237,13,72,21,144,110,90,126,241,105,209,178,130,101,52,156,170,148,85,45,26,158,208,97,53,37,242,136,202,56,187,26,49,229,72,5,97,17,149,22,92,74,7,22,124,227,170,169,
 73,5,105,68,166,78,156,69,178,97,234,47,43,97,69,206,167,69,138,122,119,245,90,191,41,131,198,180,165,68,172,60,137,24,111,92,36,0,120,36,57,251,68,85,1,161,156,73,155,84,105,214,251,152,226,238,182,41,69,161,120,34,87,144,192,237,4,49,164,206,210,109,86,227,53,120,175,52,128,229,28,195,229,61,35,87,23,24,181,64,243,142,206,123,57,102,95,9,30,215,74,238,86,167,141,50,53,162,17,15,240,223,59,24,224,70,70,195,228,185,211,101,200,178,67,148,79,99,60,247,34,241,104,228,111,20,64,195,10,245,221,181,156,235,230,175,119,224,229,118,37,177,107,91,31,201,237,97,239,63,116,228,185,255,243,172,72,195,153,113,180,150,132,218,100,224,24,141,16,219,240,42,221,132,119,157,92,41,138,109,170,78,130,237,37,187,205,210,145,237,184,170,0,88,224,70,177,74,18,10,0,23,29,89,21,213,252,2,221,227,197,60,215,227,221,176,177,18,44,193,95,144,54,39,239,239,99,150,53,194,57,116,69,75,158,241,20,147,140,232,206,152,46,127,240,174,207,77,114,35,164,108,140,251,111,240,197,45,8,84,134,161,254,33,163,31,233
 ,222,71,198,135,114,84,198,175,67,61,228,156,55,43,240,118,201,13,234,73,12,26,137,173,76,204,127,126,27,113,39,21,171,219,184,112,22,91,47,237,189,42,214,162,145,178,210,240,126,130,197,47,61,119,182,179,123,68,111,161,234,111,62,97,177,126,167,185,84,33,234,136,14,140,101,185,109,24,133,21,245,49,190,250,151,242,180,98,66,48,20,157,188,191,192,186,101,245,193,225,189,97,18,11,75,243,150,120,112,27,8,240,103,115,100,197,69,219,183,89,53,126,148,245,240,6,78,38,175,252,185,40,239,196,141,141,42,9,183,80,187,183,5,39,252,131,217,182,234,152,239,142,72,243,172,82,131,192,239,52,192,95,26,246,6,13,230,18,7,219,223,112,4,70,227,242,154,108,61,194,199,96,170,242,63,188,128,131,57,168,196,162,201,93,75,163,58,6,147,223,167,10,138,215,127,23,143,143,222,198,122,106,58,175,114,219,151,210,51,194,66,42,36,58,148,195,153,161,242,5,52,244,116,210,212,206,229,67,168,183,72,84,188,150,212,80,54,173,130,2,20,36,191,170,81,254,135,131,6,102,106,158,168,150,231,254,68,245,143,51,132,92,212,
 146,30,123,172,2,10,59,64,72,7,202,113,222,40,118,9,147,244,184,201,32,169,181,169,184,107,204,238,85,157,17,123,171,65,110,138,233,155,245,184,174,106,37,231,99,64,23,224,55,103,234,216,107,102,221,182,164,214,127,68,209,196,247,85,112,79,66,156,243,200,212,110,37,54,223,203,248,253,73,43,236,44,55,14,53,77,252,42,119,151,199,18,113,234,218,173,173,198,240,25,167,198,177,135,13,167,107,36,242,3,204,154,89,104,22,6,244,210,207,91,133,220,40,202,7,247,190,145,197,43,226,159,208,36,138,64,179,149,13,192,11,38,4,152,231,248,9,208,69,158,22,56,164,197,81,162,237,75,145,183,192,114,225,43,81,222,9,103,59,251,135,64,96,6,215,69,109,231,95,107,251,105,129,14,135,134,24,54,100,108,137,30,122,169,247,143,136,150,210,181,174,114,69,127,139,21,24,59,93,0,237,3,136,57,147,27,4,220,219,30,78,222,71,146,75,101,56,153,31,230,45,243,31,33,47,114,172,200,14,43,155,116,79,212,157,221,50,94,83,188,114,140,167,68,211,157,239,179,227,33,176,175,240,42,115,9,65,181,162,140,49,96,210,69,67,207,24,
 23,251,203,219,253,93,10,222,94,199,255,187,139,86,83,24,103,242,29,48,168,187,55,112,103,117,81,102,126,22,105,221,104,76,213,1,220,109,99,160,163,91,203,80,78,236,41,8,72,228,45,80,85,60,54,8,126,179,93,219,23,151,240,247,43,164,207,13,88,74,171,35,73,77,220,139,250,103,240,106,87,236,160,136,0,117,232,198,198,1,139,50,170,163,148,240,88,172,123,133,180,70,124,154,205,98,4,253,206,142,103,198,132,97,46,231,16,150,132,125,191,145,8,219,254,174,23,137,91,145,39,124,126,58,240,89,35,155,63,189,101,24,205,50,47,15,176,86,136,84,89,63,143,120,255,156,237,187,217,179,211,242,97,179,181,204,27,87,208,180,201,164,180,175,135,114,118,150,89,127,179,204,45,184,126,128,46,17,237,15,247,15,73,109,241,191,109,99,151,142,147,86,173,132,148,97,115,45,221,20,43,220,207,253,180,215,12,209,10,167,174,20,196,162,92,55,95,223,160,227,157,33,240,68,81,197,17,174,202,124,105,78,48,159,118,52,167,92,80,227,188,235,54,107,54,108,252,137,217,33,97,246,176,28,37,181,51,196,30,221,211,51,204,67,28,9
 9,55,174,190,118,224,24,230,117,128,56,201,206,151,83,200,58,10,122,60,238,192,208,61,8,86,89,54,130,180,30,122,210,220,118,163,228,250,188,139,177,1,158,171,216,195,77,60,36,183,171,68,171,180,34,98,28,245,179,16,28,193,39,242,53,121,65,63,175,223,109,204,250,4,75,105,201,209,88,21,3,240,216,134,90,63,246,74,128,146,32,204,206,149,105,230,28,3,11,254,137,147,85,124,4,116,232,225,191,97,191,61,99,151,197,153,136,82,125,125,0,5,91,136,33,1,46,196,45,132,73,251,93,166,38,108,116,124,80,202,200,108,242,155,24,111,55,14,239,37,192,7,142,120,73,55,35,126,97,158,43,156,179,183,122,119,124,252,63,45,193,68,42,209,153,189,109,255,94,29,22,108,99,241,175,239,216,58,199,138,90,195,222,212,175,102,160,188,222,45,241,150,65,218,226,227,239,23,52,39,188,114,91,118,144,7,80,38,229,145,179,155,202,221,180,101,162,92,208,139,189,219,152,229,189,156,209,128,182,255,246,47,126,30,205,223,102,76,173,39,48,158,49,21,26,231,120,220,155,12,157,129,45,120,45,124,103,172,78,104,13,10,44,64,159,127,
 139,127,97,151,199,42,212,208,143,206,40,11,183,89,206,243,140,103,120,78,111,63,149,92,149,95,228,83,19,226,114,115,222,162,53,137,227,118,165,252,192,13,127,38,162,90,68,181,191,209,11,220,108,153,220,243,177,4,123,208,125,163,199,37,240,166,45,210,178,0,107,220,175,73,179,130,198,11,52,116,116,142,107,49,142,241,93,208,219,117,102,245,186,120,92,35,141,144,153,216,185,227,109,226,128,220,29,38,180,74,225,70,208,192,48,167,113,181,241,165,228,185,99,108,0,178,95,170,149,235,56,127,58,209,200,85,182,28,198,164,240,178,95,184,211,244,162,40,149,16,122,80,186,41,176,186,239,160,50,179,90,38,44,222,58,170,194,113,136,226,129,104,211,252,16,50,189,110,104,213,180,192,75,97,150,254,45,148,253,57,29,162,187,65,224,164,4,68,155,44,15,160,116,0,103,155,100,45,200,224,79,130,12,31,211,105,73,34,230,233,101,76,71,117,179,99,236,90,128,117,3,108,56,178,219,79,241,109,78,36,144,154,159,157,49,192,245,141,153,20,154,146,142,90,11,158,139,104,86,175,247,93,184,165,52,108,100,52,178,5,168
 ,143,172,20,224,65,133,96,222,47,54,150,197,207,96,43,189,13,85,2,181,92,238,144,204,14,141,24,244,198,5,191,8,57,218,172,134,104,42,205,191,18,178,166,129,1,26,220,196,17,229,68,38,65,139,185,70,166,115,246,243,122,124,102,181,106,103,16,253,162,198,25,11,248,124,37,236,7,245,15,81,48,71,113,87,12,178,71,119,176,203,204,175,222,88,93,178,132,239,217,209,170,202,251,66,229,165,236,245,185,2,147,43,79,57,94,78,52,238,153,1,26,68,133,24,254,140,87,44,36,178,233,139,156,189,227,159,167,222,172,130,249,96,244,103,219,101,57,169,78,210,150,117,71,191,23,88,20,230,231,190,121,91,28,73,113,201,13,219,211,250,128,62,89,178,139,189,198,242,32,148,109,121,50,151,158,223,10,8,58,67,176,38,180,2,100,54,21,157,158,130,244,206,178,88,199,196,175,196,13,131,166,155,176,146,235,139,169,176,46,15,47,104,132,143,47,41,240,240,114,107,28,180,199,102,96,186,23,54,86,56,34,156,38,172,237,241,193,30,30,41,83,114,238,112,81,86,149,83,153,21,20,174,209,128,214,31,13,142,239,239,229,141,118,3,42,109
 ,132,205,71,99,119,111,110,123,109,186,176,212,1,80,20,13,124,138,7,84,18,145,13,13,129,63,139,218,153,170,119,18,188,24,187,145,171,202,18,110,169,166,50,50,113,120,102,34,212,172,171,0,247,248,58,251,49,236,168,38,226,231,206,107,124,229,216,192,119,86,192,218,56,164,30,197,225,81,141,151,101,189,121,147,9,85,55,5,141,104,188,245,46,239,15,198,191,85,197,33,126,195,128,104,79,64,166,182,42,108,179,110,118,153,56,21,241,156,199,153,71,203,130,161,28,199,25,252,152,15,55,229,219,156,72,219,131,55,155,207,196,207,80,71,231,216,154,210,195,149,145,55,28,36,156,24,127,9,244,137,194,147,115,144,236,133,155,174,209,233,242,169,83,211,50,212,90,20,10,213,213,134,78,26,7,103,219,109,109,42,246,100,60,230,144,239,83,14,148,189,146,166,244,56,171,134,34,170,209,127,213,189,132,36,6,154,58,160,41,210,12,209,2,226,36,219,41,168,134,27,101,148,18,186,149,29,187,52,163,221,207,40,154,93,175,112,56,31,171,120,212,231,247,184,49,206,53,120,85,206,77,119,27,223,240,211,47,1,110,55,46,120,66
 ,235,238,186,214,136,117,252,63,126,202,2,143,115,172,250,217,104,192,63,193,102,138,73,94,49,174,224,228,230,222,69,139,86,9,253,7,25,144,49,179,154,92,139,58,215,119,226,185,149,150,0,200,197,7,95,147,237,203,145,14,144,140,152,238,81,68,208,7,233,75,244,145,110,163,0,244,61,243,43,82,164,36,113,245,6,181,226,110,222,254,11,188,224,249,42,84,9,89,243,219,150,246,36,79,231,157,40,48,57,3,124,240,223,7,9,62,18,165,254,134,44,216,107,209,116,236,194,50,122,57,124,221,254,131,53,224,107,157,120,229,73,194,193,104,110,45,178,157,110,242,240,134,29,198,79,28,20,227,31,234,210,226,62,66,34,185,188,133,136,231,35,107,247,232,89,135,56,6,98,37,53,130,234,121,136,66,200,57,115,110,59,249,38,139,238,241,254,143,72,138,134,221,53,149,174,93,193,38,30,151,32,110,225,21,147,159,126,195,122,107,139,136,144,140,64,167,128,16,195,217,8,77,166,186,192,99,15,105,34,111,219,94,105,58,54,244,74,63,168,21,135,51,33,112,151,142,127,115,17,207,14,204,223,138,246,7,194,22,138,12,55,169,252,138,131
 ,166,6,15,64,220,42,140,141,0,180,51,179,44,36,40,95,234,191,11,143,102,41,70,33,228,97,3,157,250,169,1,136,225,121,131,246,196,21,178,17,68,51,83,56,66,145,110,187,100,119,244,44,164,137,14,37,97,78,121,116,149,245,62,217,192,55,24,192,112,135,196,54,32,79,101,117,114,18,252,46,149,226,150,12,226,104,53,40,34,72,213,50,251,248,160,0,89,89,241,192,218,180,229,135,65,74,176,101,65,73,230,116,53,243,180,220,65,1,247,167,59,194,114,105,139,239,186,39,128,156,50,83,69,41,69,165,163,171,145,9,31,38,220,133,149,87,109,153,237,191,97,50,230,96,177,61,49,162,212,142,94,191,185,29,61,135,229,169,167,62,29,98,32,206,74,187,171,53,189,19,92,147,198,69,245,238,207,118,148,53,14,169,155,84,81,64,177,122,122,29,102,150,34,76,118,137,171,215,118,97,84,237,232,206,191,188,192,255,126,94,85,106,59,125,38,176,65,180,220,177,202,145,214,78,202,184,74,10,129,144,159,152,63,19,212,206,159,21,137,96,204,214,230,80,192,55,80,161,158,53,96,47,205,63,65,201,193,227,3,2,0,86,209,112,207,217,92,161,15
 9,196,252,226,240,32,177,185,1,32,123,75,73,232,151,70,31,26,141,82,40,134,223,181,187,204,1,95,58,93,112,79,77,69,242,137,4,41,213,42,221,77,38,47,140,206,176,220,160,241,230,220,193,70,92,11,32,198,161,57,164,162,105,104,140,219,150,13,22,128,161,142,196,184,225,253,223,163,245,71,77,47,232,223,245,238,52,247,144,213,102,250,144,1,61,2,126,132,120,15,35,173,166,60,91,111,124,144,236,54,117,167,174,81,64,189,108,81,149,210,118,252,11,60,218,101,8,143,24,189,135,248,172,218,32,59,193,82,181,42,58,220,206,87,83,156,166,77,68,129,195,201,71,153,126,132,131,62,223,237,51,41,139,206,17,83,55,103,172,203,53,59,71,186,29,50,223,219,221,160,52,226,79,83,243,77,96,226,173,149,162,111,97,216,63,21,159,3,177,164,148,70,124,29,26,63,194,239,178,166,119,203,195,97,110,226,129,230,249,165,39,217,159,43,231,177,8,125,171,217,45,177,50,149,153,162,178,116,239,112,241,116,13,8,224,105,23,79,32,148,59,53,86,245,205,103,30,38,179,131,199,66,24,79,133,212,100,219,221,191,225,168,97,129,55,195,
 225,157,140,229,55,84,210,220,63,238,149,175,104,166,177,130,71,41,245,160,254,65,58,60,190,25,3,32,26,207,124,49,247,203,47,177,20,11,217,211,23,68,126,25,185,171,122,59,241,122,232,88,137,113,73,154,43,252,72,182,144,254,240,47,169,139,189,74,161,59,95,185,123,140,38,73,126,190,254,175,142,150,240,255,203,36,1,177,185,192,100,163,225,228,48,226,205,253,41,201,41,107,221,237,251,19,44,225,87,209,89,146,201,137,196,76,234,122,19,152,24,173,212,211,74,94,35,42,127,32,194,139,226,219,74,30,7,147,170,123,13,147,53,61,96,242,112,38,137,104,168,181,7,21,12,20,53,5,51,218,103,154,70,29,196,151,175,33,73,100,116,84,51,59,193,169,50,252,44,172,99,135,86,34,72,52,112,244,210,145,255,98,58,254,100,171,185,87,217,209,229,172,171,100,243,237,190,215,131,126,145,151,139,166,225,126,231,116,254,8,168,33,10,79,247,192,50,213,126,223,216,240,124,70,140,161,15,213,96,194,109,150,191,201,217,127,44,233,143,115,122,198,83,96,122,54,16,37,106,166,156,205,122,169,69,75,229,6,194,62,62,150,174,15
 0,111,48,95,17,21,228,8,238,155,250,34,212,191,253,16,125,181,105,60,45,124,234,52,61,107,0,217,224,14,204,81,69,52,141,7,122,188,211,197,0,121,98,218,88,54,181,123,242,155,43,39,72,21,82,216,16,219,109,139,165,69,228,249,27,195,65,38,22,100,244,229,215,204,241,7,222,46,177,238,172,144,182,1,6,227,58,1,40,44,126,206,232,29,118,108,228,206,201,142,75,18,25,73,247,221,92,199,61,78,203,39,234,101,20,53,9,164,20,191,151,104,23,249,225,96,176,118,82,124,28,35,4,84,141,88,243,155,199,216,195,198,94,68,133,101,2,74,113,123,206,168,149,31,136,56,185,111,96,201,118,148,52,120,115,226,189,40,25,46,193,37,225,66,10,64,238,172,224,25,17,21,29,107,228,251,18,250,190,213,41,142,20,31,61,155,35,52,119,87,132,131,216,161,29,158,82,52,113,156,165,121,83,248,235,14,181,53,1,88,230,54,120,16,66,139,120,38,71,110,226,175,247,98,141,20,223,201,167,162,231,143,151,132,73,161,126,189,255,190,109,242,146,151,204,237,144,192,44,49,204,85,1,107,237,242,85,61,133,252,218,9,238,30,207,100,47,14,48,221,
 208,120,13,188,226,46,233,190,9,201,82,30,25,246,132,180,214,212,52,130,206,134,136,144,40,160,10,121,3,225,120,159,218,105,67,22,216,11,217,23,104,216,17,233,232,44,112,235,21,18,107,5,196,253,84,195,109,69,153,121,63,81,219,56,14,74,253,41,200,22,28,131,41,4,223,54,65,210,179,77,5,53,253,201,161,194,49,54,38,228,206,47,128,59,28,89,122,60,133,173,249,169,170,65,206,16,193,14,78,12,140,255,171,184,53,135,96,90,139,1,184,53,42,174,118,154,60,121,219,204,144,196,137,160,41,137,35,169,253,184,43,135,230,220,190,35,183,14,129,17,231,3,143,205,55,18,209,131,85,135,168,229,125,255,63,148,170,58,43,59,149,39,22,247,47,149,16,95,129,249,255,91,12,34,215,224,119,79,186,177,192,223,92,84,75,24,208,140,254,97,59,119,125,131,2,166,180,48,213,238,51,242,36,23,8,210,83,67,14,166,187,34,214,129,20,82,74,151,126,69,57,8,237,83,197,182,93,218,237,75,17,74,225,237,232,148,170,122,110,156,47,148,122,67,197,214,97,46,147,123,145,178,46,248,138,231,39,31,100,141,180,22,32,184,45,5,86,8,198,146,
 133,163,206,155,81,7,225,183,216,217,221,108,236,200,240,42,46,147,96,231,226,127,54,33,210,67,142,139,123,174,118,215,238,13,76,159,188,58,83,72,245,208,195,116,215,174,235,8,145,196,255,191,10,69,22,91,127,43,246,240,239,222,6,38,167,10,241,196,22,247,47,94,141,119,194,167,179,208,15,48,84,203,171,208,202,170,187,92,81,253,70,146,207,129,60,6,127,217,84,69,37,197,65,232,189,35,182,147,178,206,194,100,92,208,17,113,193,65,12,145,179,216,255,202,231,107,55,157,212,150,174,75,244,143,222,55,12,63,152,139,54,146,150,44,225,151,209,16,151,100,114,47,1,203,169,0,167,205,53,196,21,12,84,148,239,35,25,108,116,28,246,175,18,146,157,66,194,100,178,247,72,252,19,79,47,112,220,14,177,161,165,103,126,159,58,251,149,1,166,153,245,240,155,85,138,216,155,179,103,178,93,21,253,221,234,7,133,158,135,65,187,126,193,209,129,187,175,83,106,116,37,238,152,228,191,237,112,213,14,246,109,110,184,45,71,57,67,38,29,164,223,238,28,133,203,198,130,176,18,163,42,187,107,72,223,219,13,197,184,123,109,1
 51,230,156,114,201,150,97,29,161,108,5,239,35,139,18,222,190,159,168,45,53,207,111,35,68,14,155,98,124,1,149,113,133,2,230,75,88,47,125,147,210,236,61,76,28,163,231,193,162,171,23,191,131,115,49,222,128,238,238,23,74,251,63,90,131,159,59,101,184,62,244,33,57,125,140,5,172,12,32,38,113,172,99,83,248,29,0,77,225,161,85,18,120,215,7,167,146,132,87,219,15,150,0,100,210,93,254,202,14,140,6,167,73,171,143,8,251,243,150,208,25,72,103,251,148,86,141,78,52,76,199,114,231,223,229,102,75,29,51,210,206,157,120,230,209,131,71,195,85,198,229,125,214,150,207,233,248,87,110,22,195,102,181,209,202,181,188,203,194,46,252,131,136,119,144,186,46,94,150,187,27,123,153,65,53,192,149,1,198,182,196,51,211,53,246,116,220,187,151,42,197,66,143,75,142,212,232,11,192,83,30,150,251,53,176,240,243,158,92,39,182,28,105,16,233,244,59,245,200,235,172,44,238,46,117,181,77,171,49,174,30,252,94,108,179,107,241,165,94,63,47,124,252,32,139,91,63,107,169,150,115,194,43,184,129,26,92,103,181,135,25,236,133,29,190,
 103,74,235,91,71,194,40,150,45,156,88,34,174,192,212,150,36,50,166,141,38,124,29,5,27,144,209,231,117,8,226,255,112,141,87,110,190,128,53,52,39,109,86,203,179,220,238,117,233,49,174,38,239,86,205,228,242,239,126,125,200,9,9,1,10,65,72,137,214,237,103,106,139,178,254,216,78,220,211,159,21,73,255,140,166,125,150,211,16,162,54,193,154,156,60,227,245,75,92,164,55,62,103,164,144,226,105,140,39,75,161,24,140,87,47,50,216,112,21,181,83,110,141,238,107,16,230,33,104,183,220,215,128,158,195,64,90,1,212,203,64,124,3,97,126,176,145,13,123,190,197,46,126,154,40,176,60,207,40,63,92,65,40,151,127,67,133,91,193,215,234,244,108,24,40,215,3,209,149,241,40,97,117,225,207,230,194,27,198,69,251,183,136,156,31,233,15,44,219,82,231,85,83,146,22,36,55,128,212,91,187,229,22,157,11,5,180,161,121,209,153,58,173,211,4,188,32,37,163,138,153,209,18,253,167,161,184,124,118,189,220,4,187,253,140,234,177,42,5,25,64,111,82,182,47,138,105,99,75,85,62,81,206,200,68,219,10,230,236,17,214,150,188,104,134,132,96
 ,217,149,203,8,92,202,170,228,31,198,177,45,143,66,8,42,32,69,100,250,85,223,76,187,41,171,228,11,39,40,186,3,180,172,41,225,97,151,55,26,127,137,51,177,218,196,52,121,62,29,177,40,127,252,108,200,68,7,42,131,56,69,97,204,56,203,40,11,240,42,178,26,34,134,169,216,197,147,156,226,171,100,8,188,207,162,222,7,1,53,222,10,32,109,212,169,34,93,46,94,10,1,147,16,95,63,102,201,95,244,31,88,183,201,193,107,66,231,148,194,15,191,62,237,240,61,8,164,86,207,134,96,77,233,198,186,1,187,18,103,9,231,247,240,225,48,65,209,150,53,115,241,202,88,47,163,127,138,15,253,134,75,123,195,147,48,14,4,48,35,57,210,21,17,40,190,192,223,237,136,227,9,108,97,52,155,198,124,201,148,52,196,220,37,136,70,121,248,88,236,73,108,157,208,238,177,95,220,81,230,12,37,106,22,156,68,11,102,199,34,91,24,82,117,196,84,226,154,162,118,155,4,197,46,108,234,49,16,167,199,109,210,154,49,21,113,109,229,120,25,63,12,73,224,56,79,158,23,49,252,55,206,96,138,30,149,246,126,164,160,119,17,83,122,118,136,211,0,234,65,147,24
 5,208,118,166,230,243,115,227,153,126,58,37,132,29,85,124,31,143,130,206,39,248,249,153,72,245,249,9,85,214,164,131,234,41,198,70,164,85,7,245,8,174,202,2,213,3,83,35,52,99,177,179,229,208,208,243,239,248,183,234,163,19,190,248,71,242,60,49,212,133,111,30,88,244,230,96,53,250,186,125,245,57,129,44,72,182,131,126,175,65,95,230,187,233,236,135,86,100,165,226,91,208,51,149,106,194,2,28,118,32,197,253,113,16,235,93,159,79,67,59,127,235,237,245,108,33,247,120,193,4,108,6,132,138,154,238,123,133,34,94,235,57,186,241,200,167,202,123,118,155,77,60,181,131,147,254,30,150,110,198,43,230,187,20,202,252,96,176,8,12,106,217,114,151,132,154,83,224,4,58,116,54,85,57,166,82,15,32,53,123,123,158,197,159,159,87,5,26,166,50,219,22,250,91,250,185,77,234,22,46,20,173,201,250,217,81,92,111,203,56,29,65,160,205,164,252,131,24,136,173,163,110,162,78,73,255,88,204,248,108,103,230,255,154,167,145,142,27,14,200,248,190,99,129,7,235,173,235,68,223,129,140,64,224,225,176,108,164,12,213,173,252,145,74,11
 7,217,14,31,51,157,47,34,86,125,219,233,158,52,130,7,43,8,103,17,187,143,178,247,59,106,180,222,171,133,223,238,227,147,160,45,107,193,170,193,210,229,193,43,133,99,121,239,58,121,73,160,186,137,98,34,130,0,107,119,210,35,4,149,150,92,2,143,177,42,222,211,16,68,121,148,179,78,89,184,155,36,126,192,242,212,26,80,211,9,227,190,95,147,166,69,35,144,252,146,172,254,97,226,130,107,231,83,137,38,85,75,104,43,42,201,113,27,77,127,174,19,12,82,254,204,137,209,13,201,156,184,95,203,75,141,163,237,70,17,145,147,170,57,27,45,100,70,61,225,14,75,146,236,171,42,96,108,151,192,208,11,94,175,214,223,187,251,149,186,200,243,35,197,72,99,40,169,178,92,5,133,40,3,3,145,109,25,207,139,115,166,3,135,122,123,177,174,4,47,155,237,36,184,45,22,170,34,40,179,100,180,96,238,60,37,52,200,30,83,45,162,22,43,136,93,77,27,120,139,70,49,201,26,141,255,213,92,44,229,230,108,97,89,23,174,210,176,135,60,51,218,165,142,7,126,96,103,228,104,64,211,31,135,111,181,120,251,43,118,179,88,240,130,52,131,8,216,179,
 83,179,98,35,134,47,38,193,169,215,174,158,167,224,125,249,214,76,112,166,89,149,38,192,186,70,229,76,0,236,225,215,204,239,206,92,184,108,116,57,14,140,196,228,162,158,152,96,95,140,219,38,32,217,237,137,159,54,219,253,21,27,88,64,70,255,42,207,27,71,1,165,189,164,38,52,157,213,103,70,61,233,99,85,211,84,222,30,234,150,0,226,111,253,139,144,191,31,106,146,149,140,85,62,152,19,70,212,69,160,116,16,138,66,37,43,191,152,132,140,113,221,65,113,228,105,79,137,210,98,37,98,45,156,154,170,182,128,55,0,134,167,38,184,138,224,237,190,94,51,57,100,88,120,4,131,7,55,83,222,6,198,249,226,71,9,93,221,173,233,55,213,13,181,153,175,107,177,103,184,51,22,222,117,117,116,31,251,126,52,163,125,103,122,48,239,126,135,217,39,145,39,140,192,146,45,133,52,31,89,186,138,152,107,29,59,132,76,57,4,163,212,103,11,229,189,127,240,142,132,85,89,112,135,119,122,179,232,44,118,184,206,244,251,39,17,207,208,99,206,39,129,250,205,89,118,163,238,255,186,54,40,4,97,213,7,154,164,204,117,27,115,209,216,201,2
 11,96,218,108,183,65,123,43,248,8,77,84,0,201,245,29,16,122,168,223,203,216,102,58,163,207,113,224,84,37,71,250,197,2,75,3,130,232,61,178,252,62,113,120,103,77,46,128,52,18,52,46,118,109,5,250,52,119,211,120,128,214,187,172,16,186,37,94,15,26,244,190,9,81,171,25,48,42,160,160,167,56,21,67,142,215,78,100,21,56,130,181,242,36,17,51,240,232,247,229,151,47,172,222,32,119,5,141,81,160,10,197,186,133,118,154,218,186,83,99,161,77,5,114,17,187,252,207,40,156,112,140,220,32,215,12,240,121,18,59,103,122,35,21,40,241,126,82,242,95,135,130,141,139,23,111,164,13,248,117,200,97,63,213,24,106,126,123,193,112,242,85,202,142,214,239,187,4,46,133,46,15,54,70,217,36,137,138,230,189,76,211,245,139,64,138,196,123,75,92,205,179,121,79,210,70,110,111,149,131,8,186,183,88,245,213,118,172,130,140,179,229,135,33,174,230,124,81,73,230,42,68,210,146,19,99,43,254,47,164,246,113,168,141,51,117,248,39,251,106,224,49,22,150,166,49,242,113,6,79,44,249,114,100,193,195,225,224,112,253,229,94,181,193,7,67,234,
 112,213,1,148,182,84,208,35,108,46,1,216,84,117,255,66,204,149,26,156,165,89,223,116,187,35,196,236,116,168,117,230,156,62,195,116,86,110,108,30,181,31,134,46,86,145,175,49,181,174,13,74,110,222,186,185,78,241,215,168,110,141,40,37,176,31,198,58,54,76,51,184,31,35,191,34,113,159,204,186,238,24,122,133,195,116,14,156,67,71,108,1,249,61,91,108,119,184,183,215,99,106,175,46,80,200,93,178,182,251,229,70,224,129,156,143,249,228,67,114,66,2,250,66,198,226,136,233,236,5,218,53,55,248,58,7,131,1,185,136,135,189,248,49,146,224,135,212,115,68,182,66,184,237,62,152,185,193,255,113,3,234,254,215,14,106,78,13,222,203,149,76,49,212,234,248,50,164,25,66,83,247,38,159,160,238,126,200,219,83,96,156,213,3,51,213,182,246,208,47,193,12,92,97,63,54,242,80,214,214,200,27,53,211,162,172,146,224,62,228,50,75,10,178,105,33,162,176,193,76,73,153,60,195,58,133,121,3,212,105,176,21,157,11,247,96,179,94,172,200,28,220,152,71,107,109,202,248,174,11,16,43,214,249,56,236,14,90,196,126,43,188,235,214,89,166
 ,182,48,21,145,93,69,151,0,166,77,164,44,90,189,5,105,75,160,126,123,86,189,53,2,157,58,185,104,171,180,177,53,67,136,36,56,102,12,195,193,31,142,174,237,71,153,243,193,132,200,125,151,153,157,231,146,234,35,80,130,30,190,21,44,14,56,41,219,175,153,194,197,100,123,207,153,83,32,78,77,77,203,103,192,92,116,73,111,239,254,210,20,236,140,133,48,137,6,101,61,166,146,150,170,35,33,226,238,193,186,69,248,254,20,201,33,60,131,49,35,102,178,140,155,122,187,24,186,165,137,41,42,173,95,181,139,150,144,173,201,118,137,31,45,142,8,214,225,93,203,228,193,110,66,140,89,138,170,205,125,52,201,213,210,126,65,224,33,237,220,212,173,248,206,78,30,129,187,154,40,131,212,245,98,97,39,23,97,160,133,17,41,203,186,27,165,22,210,254,255,83,90,207,218,76,80,188,168,152,202,72,225,165,44,156,155,87,67,185,74,106,19,131,235,178,87,93,251,73,223,75,217,220,9,70,130,110,240,133,152,184,105,155,234,88,36,206,54,133,24,228,161,181,80,199,218,163,170,110,130,195,232,106,175,103,102,113,212,37,26,228,147,47
 ,180,189,150,66,147,117,236,70,107,35,154,84,9,101,25,152,8,202,148,223,32,79,190,212,210,93,13,230,87,74,100,60,191,97,75,119,181,98,228,219,28,136,43,20,165,109,150,208,35,160,104,85,45,244,170,235,177,91,141,20,3,194,242,91,105,252,255,245,79,11,123,110,50,48,64,194,200,157,30,154,254,89,29,212,93,75,193,247,179,91,218,135,183,197,247,155,52,247,200,123,99,126,71,203,23,183,83,251,244,233,98,24,202,208,35,60,58,30,21,86,3,32,40,208,65,85,126,17,220,42,85,216,223,136,98,101,81,229,153,24,129,44,243,5,30,207,70,188,66,168,181,189,193,24,231,59,64,174,8,78,110,21,229,248,114,233,104,24,128,87,8,147,152,37,231,185,41,244,44,106,239,0,79,205,20,146,43,138,228,79,138,231,131,148,26,164,207,135,141,95,180,166,40,165,205,20,175,170,20,247,221,112,185,95,187,88,146,59,120,154,146,160,58,149,144,22,25,187,237,40,110,8,180,254,20,76,218,124,129,176,32,55,84,132,37,184,133,65,88,26,115,108,234,76,134,217,236,110,154,98,201,109,5,122,28,139,138,230,53,40,249,225,12,238,189,128,144,221
 ,228,233,70,96,236,226,180,39,58,168,147,229,31,34,14,40,49,62,246,231,101,82,25,132,163,177,60,184,144,91,198,183,29,92,220,54,239,65,112,227,23,242,120,237,249,191,199,63,91,58,139,86,64,203,255,45,246,70,237,59,234,34,55,200,119,218,65,162,217,69,235,29,23,60,145,36,242,246,134,63,251,218,26,7,124,94,108,46,85,204,91,25,206,184,165,196,100,238,106,145,12,175,245,84,158,23,174,239,188,112,98,201,58,29,214,155,155,30,126,210,9,179,50,68,30,174,10,89,233,196,110,160,246,17,3,237,69,94,3,114,166,15,210,18,95,92,38,115,76,30,91,93,51,21,126,249,201,59,252,48,28,1,141,193,97,147,223,70,89,189,62,216,96,36,125,69,222,141,189,189,193,45,164,93,5,47,57,177,241,76,127,150,245,57,64,16,221,199,147,50,134,159,93,222,152,230,192,242,251,150,141,67,173,8,184,132,224,125,155,28,12,63,138,135,68,36,138,135,128,77,159,110,194,128,255,190,152,103,92,9,184,134,162,117,113,72,248,162,17,206,23,102,214,186,60,62,26,142,119,92,104,209,199,39,127,39,103,75,204,69,180,239,23,105,4,73,211,247,165
 ,233,55,169,176,72,196,81,171,194,138,54,205,124,133,183,146,27,241,254,236,53,160,81,122,96,247,31,3,103,57,68,86,9,90,144,34,147,201,130,104,68,35,177,114,24,209,0,62,205,0,39,174,27,212,106,219,107,244,164,51,19,76,99,155,42,65,80,195,142,141,103,79,218,58,149,84,194,240,6,213,117,150,153,205,96,180,174,99,74,103,108,4,152,107,9,171,127,78,229,33,112,94,149,249,78,231,232,74,28,253,141,79,230,42,169,172,132,128,27,98,117,141,168,205,147,124,172,50,156,134,237,121,126,248,239,4,169,6,245,161,240,248,165,160,136,196,137,230,205,194,139,248,12,213,8,32,104,205,230,26,98,13,212,127,34,50,117,10,237,124,188,152,249,152,110,179,181,132,136,63,255,207,235,145,109,212,171,87,180,36,129,250,143,220,76,165,250,201,192,54,19,117,29,154,120,224,192,170,201,224,112,140,130,148,200,254,121,236,49,17,237,13,57,180,154,198,234,123,248,226,247,68,243,128,126,54,148,53,43,81,230,219,183,143,230,34,79,45,196,249,223,227,105,151,151,84,82,195,208,103,28,129,53,144,38,146,2,101,123,233,242,95
 ,144,35,138,105,68,213,129,155,222,204,38,250,209,10,238,44,225,212,123,211,71,88,47,40,3,88,237,97,93,10,212,209,227,89,123,50,96,20,228,81,161,57,3,61,56,151,99,195,167,37,137,41,108,161,62,161,187,88,99,12,3,137,163,141,3,253,176,122,151,35,114,180,162,103,212,61,205,115,1,244,155,146,223,121,13,181,27,21,238,63,130,83,27,111,151,225,63,179,113,70,165,197,25,47,74,67,197,91,247,233,98,216,37,248,38,77,32,218,207,172,221,207,200,216,214,13,245,223,189,92,58,231,180,27,231,24,159,179,173,196,86,3,190,233,141,82,14,149,184,255,227,63,37,26,68,66,172,217,10,44,215,98,198,30,18,111,207,219,16,134,37,129,177,46,96,178,139,45,147,17,51,242,201,209,178,143,38,136,118,255,68,62,74,190,252,56,139,145,85,182,45,198,31,80,199,254,183,147,110,81,22,253,73,251,112,97,235,42,140,120,114,116,133,62,214,42,237,11,83,87,167,35,96,206,187,41,0,127,16,72,44,78,149,52,168,191,100,187,239,175,163,13,240,119,156,61,130,111,216,127,104,78,190,57,107,241,190,158,135,92,25,113,58,91,65,187,74,190,
 116,87,218,66,33,111,8,80,2,187,29,198,220,108,78,114,138,139,154,225,98,156,185,225,93,219,42,156,245,244,119,165,61,49,70,136,78,4,102,155,243,79,53,209,110,198,215,6,45,174,31,152,158,76,139,217,134,100,229,72,107,14,108,143,102,23,238,81,255,118,47,17,49,169,149,144,2,246,19,173,141,197,215,21,188,223,34,8,169,118,246,203,53,5,113,37,102,229,243,252,99,162,177,48,71,151,104,129,168,175,33,192,191,81,121,173,112,89,199,179,13,237,236,204,213,181,142,202,156,107,17,98,39,104,55,145,59,117,255,248,90,134,84,44,116,38,180,41,29,37,141,184,40,98,82,46,158,107,5,112,180,4,13,14,94,20,209,229,40,212,140,184,146,242,2,225,232,154,152,87,60,255,202,16,122,46,176,109,185,240,236,50,237,186,220,51,229,49,127,155,156,197,213,89,251,170,103,162,246,108,194,247,134,34,207,224,158,116,246,133,236,13,25,28,59,163,210,108,196,222,5,189,50,1,88,76,182,86,86,243,223,26,170,9,187,96,231,103,68,75,216,111,211,243,190,3,239,161,88,65,190,242,238,79,51,192,186,225,55,99,23,13,57,147,85,30,225,
 89,249,117,122,249,252,249,22,28,210,118,251,60,61,154,144,231,94,119,247,170,196,8,100,80,39,218,242,106,233,64,189,178,122,165,49,62,154,243,215,78,159,145,198,247,205,172,55,164,206,67,137,56,246,228,92,88,212,241,222,127,251,185,96,143,212,7,230,49,61,171,58,220,232,88,139,228,88,104,40,54,92,29,159,15,227,21,226,219,213,242,238,87,204,211,56,108,22,82,223,183,174,106,45,19,176,54,15,161,237,255,118,69,153,179,148,73,236,152,157,85,83,40,30,75,92,139,142,213,33,172,52,6,14,69,159,20,249,169,33,184,50,194,134,87,201,6,125,163,124,238,3,225,14,241,19,139,60,242,1,177,245,1,243,4,107,231,18,126,156,61,165,159,90,85,191,119,122,166,73,218,83,197,70,27,73,52,80,57,37,197,206,47,97,226,61,77,56,221,191,5,37,103,127,18,3,147,142,241,159,164,5,207,27,51,227,108,141,19,129,46,23,18,237,170,221,38,164,148,92,168,62,94,195,164,31,184,96,19,188,229,106,195,121,178,85,17,14,110,24,79,109,28,238,93,247,63,218,108,72,61,188,229,124,44,228,138,138,133,149,206,60,34,107,30,81,198,161,164
 ,112,61,121,128,128,169,162,162,68,148,203,241,173,195,51,53,145,133,88,20,233,208,217,232,210,17,229,205,176,112,226,14,33,106,126,187,14,198,116,151,138,113,192,195,192,192,173,43,137,151,225,123,31,171,135,5,92,18,86,71,251,42,220,199,218,128,25,167,128,232,9,202,30,249,15,156,177,92,152,239,23,126,120,20,234,95,30,2,15,63,252,19,215,174,38,78,10,248,139,77,26,91,127,133,169,11,121,119,204,83,154,169,83,192,41,221,199,201,106,52,58,90,227,106,90,74,118,149,112,145,188,95,93,189,103,58,105,240,112,28,8,124,212,201,230,158,177,240,158,41,47,35,190,71,93,236,74,154,69,8,170,223,244,213,189,101,96,43,211,41,111,25,30,7,154,218,170,56,239,159,64,89,192,227,23,54,101,119,192,218,236,135,216,129,253,203,177,93,98,114,99,117,92,74,200,58,171,127,58,126,15,50,132,27,98,163,244,193,182,113,244,177,148,68,91,235,20,165,57,39,59,88,167,15,48,77,87,21,227,111,166,151,168,57,159,81,112,165,34,219,143,50,176,164,242,128,107,30,79,50,243,192,16,38,61,41,88,40,185,164,107,97,111,81,89,106
 ,155,62,126,65,29,227,223,14,156,245,49,66,252,46,127,24,184,193,160,236,31,218,8,20,137,50,55,199,28,4,169,245,130,160,58,75,91,131,199,24,185,179,188,173,154,102,214,101,41,236,241,168,149,119,253,140,122,10,139,166,139,237,220,174,137,30,83,239,219,87,24,98,111,140,127,224,197,22,60,175,65,137,37,202,23,78,102,32,165,136,56,184,123,45,24,61,144,31,12,22,23,230,148,78,156,94,67,118,236,115,210,17,99,139,243,3,238,89,146,230,4,140,95,84,105,179,134,119,139,35,86,195,187,163,167,59,19,168,84,205,143,237,95,224,213,192,154,17,233,20,212,68,72,216,135,122,31,207,199,172,152,108,226,5,64,2,162,58,213,3,234,31,21,49,140,150,219,183,33,240,242,91,164,87,145,226,245,234,177,154,158,239,117,14,142,24,159,79,114,41,14,34,149,93,110,197,110,60,120,120,7,97,131,118,78,194,182,123,9,150,5,196,168,215,24,71,7,220,151,253,207,52,171,114,159,235,64,77,114,242,240,215,148,30,49,130,92,22,113,99,53,141,172,239,141,201,115,12,181,97,110,255,203,197,55,203,60,239,131,105,125,91,161,65,237,189
 ,195,72,158,3,73,208,126,207,59,114,237,91,134,240,29,216,162,70,57,244,219,102,55,116,164,197,28,252,62,191,211,33,115,204,221,59,54,194,5,212,177,174,80,132,247,28,155,57,146,151,178,177,128,32,126,222,13,107,215,163,1,112,118,115,6,224,5,98,24,159,131,146,39,187,32,169,182,197,142,186,47,82,159,71,198,68,247,138,72,238,151,142,26,163,12,151,192,225,71,167,198,242,139,121,143,224,239,8,44,91,247,146,205,155,235,37,41,244,179,93,0,185,77,109,111,24,73,180,225,4,227,206,179,188,146,2,227,241,141,128,250,183,73,183,175,133,55,89,77,151,161,179,78,217,14,5,194,184,82,181,70,105,140,61,82,166,28,85,246,18,3,27,2,239,21,79,58,136,140,149,236,131,51,108,47,162,132,13,200,34,221,68,59,147,140,114,106,89,74,187,248,244,184,66,125,29,169,71,170,140,251,114,196,66,205,123,42,5,140,13,218,79,134,74,54,88,255,90,95,163,249,170,17,202,124,58,89,214,176,70,128,221,173,181,110,79,29,203,207,14,11,123,7,109,234,197,216,165,166,212,90,71,72,7,148,19,128,31,193,112,238,73,139,186,169,141,136
 ,124,20,61,169,96,12,46,145,100,55,243,36,200,129,82,62,61,179,217,106,71,236,79,51,60,141,39,145,182,74,62,102,211,122,23,142,202,1,59,177,232,147,181,46,55,166,77,43,49,160,40,156,240,233,117,26,96,227,215,201,171,158,95,210,27,255,15,213,5,130,116,210,82,146,176,80,143,117,49,158,103,55,45,211,46,185,36,1,251,49,106,224,72,108,53,161,128,195,60,78,20,67,90,114,89,206,13,62,233,37,7,189,1,131,185,27,29,32,93,81,70,114,110,239,69,143,31,242,140,27,217,1,199,181,149,200,166,110,84,160,21,198,71,193,228,160,219,57,70,66,226,174,178,95,55,236,47,145,248,110,21,244,69,105,248,112,208,131,100,9,18,12,3,185,211,46,154,50,207,228,75,166,131,153,176,243,151,114,209,251,91,31,115,250,222,34,117,173,160,98,141,171,47,203,62,14,103,151,166,112,86,90,197,163,5,34,148,149,19,134,117,169,24,52,54,19,195,139,81,75,45,96,216,82,217,36,225,245,0,152,51,15,66,31,29,209,96,51,150,111,195,218,78,114,1,117,102,94,247,53,64,173,152,9,86,26,113,186,105,182,19,119,249,205,7,140,250,166,88,74,144,5
 1,71,17,235,134,30,33,219,0,138,166,30,23,88,50,240,120,211,211,72,56,232,69,6,3,98,182,62,132,218,117,226,141,114,92,168,124,40,245,53,246,214,145,127,181,179,139,158,20,52,106,202,58,174,37,216,5,37,158,141,129,203,117,106,48,215,82,232,152,113,142,42,232,85,102,163,152,223,59,94,86,142,154,137,66,84,249,177,121,67,7,77,184,132,250,230,126,202,177,196,58,43,29,36,142,235,91,204,71,197,93,231,107,197,142,28,69,225,142,170,213,91,18,29,94,58,123,245,138,210,131,36,128,246,133,247,116,16,207,49,202,223,74,226,181,103,174,181,159,51,133,109,123,176,101,3,126,93,182,18,157,128,237,248,70,227,227,228,147,44,152,121,205,82,49,218,200,203,2,156,72,216,235,169,31,238,240,51,120,219,82,64,181,163,244,77,204,154,108,60,208,57,6,12,238,50,133,140,233,121,173,181,247,100,239,20,11,211,2,210,83,194,129,62,52,220,76,77,123,246,165,183,129,134,6,197,208,61,168,107,57,128,113,149,97,90,125,10,58,247,84,104,189,26,112,144,138,226,129,197,69,86,248,13,30,219,255,219,58,29,243,30,223,247,104,
 112,210,102,204,67,241,2,162,199,193,99,116,12,52,190,26,11,129,209,93,138,193,199,44,117,76,167,77,139,121,219,18,139,43,20,124,117,90,155,223,25,74,241,59,94,105,124,161,187,24,240,224,97,100,67,119,163,71,102,221,14,194,192,160,243,246,126,225,101,63,179,82,103,167,98,82,77,121,108,248,12,148,86,17,64,187,229,30,129,72,198,134,44,71,11,100,56,32,31,121,91,155,81,197,20,253,196,28,162,91,64,143,96,99,5,145,87,209,237,185,83,7,228,116,159,234,80,136,144,49,211,18,218,109,69,122,150,124,81,46,75,246,247,124,52,48,127,209,27,52,223,211,152,238,12,55,104,184,159,7,90,244,123,71,157,212,122,237,48,92,136,68,10,173,186,24,106,218,247,124,249,185,197,62,155,228,203,126,47,8,240,1,35,102,17,197,212,176,225,215,124,63,127,182,112,17,14,252,43,226,46,101,190,235,255,68,173,45,155,47,48,141,220,139,86,255,101,148,38,235,155,129,77,34,163,83,44,147,90,242,86,159,190,112,158,249,166,156,152,40,165,219,254,46,254,218,74,152,182,137,119,177,117,89,47,135,243,168,171,78,52,48,237,8,101,13
 3,142,126,152,200,54,187,188,92,30,187,164,2,206,231,20,184,210,56,64,226,22,185,236,76,212,98,173,19,105,57,74,151,102,200,60,208,249,166,50,19,239,60,43,139,243,29,207,94,63,224,55,2,44,4,145,142,12,8,201,11,29,67,225,19,115,131,244,187,93,75,227,224,129,197,25,232,213,80,182,5,65,9,94,60,43,134,235,146,124,255,70,21,72,1,203,230,128,120,133,18,89,94,197,147,120,70,137,110,22,138,24,39,228,84,91,241,192,83,227,78,126,31,97,68,129,118,187,172,160,229,166,156,43,37,255,236,80,30,122,7,25,24,127,144,183,233,8,81,227,67,54,245,254,207,86,144,107,125,19,69,36,227,167,202,97,52,60,142,186,238,73,98,79,88,91,169,1,143,249,227,87,56,68,101,248,225,127,7,36,170,147,67,93,57,235,167,43,81,173,244,241,200,13,221,172,117,102,91,126,144,70,226,236,114,8,96,55,224,11,185,253,61,51,248,92,79,41,3,28,213,132,120,163,162,100,105,229,40,167,134,159,15,29,84,120,51,73,184,88,8,32,3,214,51,126,63,23,2,249,164,87,122,180,204,32,47,172,43,95,99,43,223,132,241,142,227,51,208,125,194,123,16,108,1
 47,89,9,166,176,254,193,199,213,40,156,213,194,106,28,229,165,59,159,28,47,174,39,87,228,108,101,101,124,96,117,75,250,50,54,157,71,214,54,221,78,30,241,57,204,89,63,70,6,134,114,135,52,26,49,133,154,57,74,121,19,88,74,114,2,61,230,244,1,225,225,93,233,95,132,136,85,36,162,175,165,140,212,131,12,206,203,15,53,159,176,253,88,15,71,138,213,45,198,49,138,69,191,57,137,110,3,252,28,2,182,138,34,127,162,148,114,90,146,227,241,90,54,197,253,85,170,113,251,138,158,239,204,44,92,202,165,153,64,208,184,98,90,217,147,142,122,38,6,125,203,187,124,253,151,26,74,71,168,8,22,82,159,94,205,212,240,222,79,51,186,165,28,81,105,217,148,0,66,172,236,37,94,90,220,184,238,125,182,20,123,62,138,133,163,174,37,45,136,162,119,58,244,187,213,71,170,249,233,145,207,249,156,37,3,33,108,35,46,206,139,27,97,163,45,180,162,40,65,45,129,29,244,216,193,129,20,134,138,215,20,147,136,36,171,88,133,171,174,55,181,180,71,146,212,22,227,45,135,227,237,255,235,206,180,124,185,175,105,70,13,57,231,193,18,187,78,2
 18,76,237,163,129,130,55,74,44,150,159,230,163,92,215,160,35,191,144,231,215,252,52,37,76,69,236,156,228,161,219,14,37,74,206,159,219,158,143,204,116,161,85,195,27,29,132,55,117,140,204,200,249,179,19,41,27,122,64,171,11,202,143,201,94,72,84,98,129,62,59,122,211,79,244,155,21,19,255,206,116,88,41,242,68,46,237,85,156,51,67,208,98,167,154,141,250,221,128,117,192,222,229,205,238,213,176,238,39,183,116,154,206,116,208,133,202,247,26,90,76,19,67,247,17,58,9,86,49,184,130,5,91,141,41,108,74,213,159,153,45,20,229,201,147,136,197,7,205,225,245,85,51,73,148,205,51,229,172,189,201,151,78,77,202,75,152,25,179,69,45,250,59,64,21,211,91,43,56,12,43,23,220,236,145,87,67,38,150,121,225,87,166,238,93,255,129,251,180,253,178,147,206,34,207,49,145,116,143,184,255,53,91,122,151,220,96,196,167,192,156,14,109,176,6,108,82,134,39,166,154,142,199,177,54,189,121,253,235,236,16,207,211,40,74,127,54,179,220,195,227,208,156,91,117,73,8,218,70,252,160,69,55,204,29,53,200,85,219,214,2,104,237,255,234,0
 ,41,48,198,55,71,14,158,30,224,195,241,79,252,168,227,110,239,78,68,97,240,52,251,87,188,100,60,89,250,193,198,249,223,160,72,253,171,85,236,144,228,99,50,125,188,245,143,199,15,34,119,147,241,214,14,115,201,15,214,84,8,211,182,40,140,65,144,94,118,27,119,244,109,58,85,70,227,77,237,167,117,234,16,254,10,209,115,6,127,2,145,106,208,57,118,76,67,7,41,148,178,181,15,100,38,81,57,37,110,130,51,94,56,255,248,204,250,174,228,181,41,62,182,81,58,150,112,180,94,72,173,155,117,86,203,32,140,83,158,75,212,87,66,177,184,154,140,157,73,200,205,90,152,247,228,86,2,15,192,223,159,30,114,71,177,114,162,252,250,89,11,176,225,200,223,61,158,241,61,233,65,114,237,142,165,196,89,204,218,191,79,254,112,57,116,198,10,158,162,71,213,77,206,47,91,136,2,252,124,232,176,168,182,51,226,242,145,80,10,237,250,212,230,195,240,148,102,22,181,78,108,229,27,35,86,135,155,163,46,107,194,119,108,49,176,186,35,185,46,237,146,212,138,160,225,84,108,39,246,123,109,223,46,170,138,254,198,174,151,188,8,227,4,243
 ,124,252,122,200,161,55,200,7,251,72,194,130,66,19,149,87,190,127,22,77,36,209,220,154,50,254,31,52,71,74,118,117,75,119,78,111,219,170,56,234,212,246,146,180,137,17,248,173,49,13,249,102,220,94,9,190,35,238,133,35,161,126,21,167,183,242,113,214,164,168,205,90,213,94,170,18,96,82,71,40,39,182,210,29,203,79,93,144,146,37,150,212,4,9,43,190,210,174,151,43,15,194,127,31,203,183,40,251,77,58,74,82,54,81,119,156,162,185,9,181,111,62,118,40,167,209,101,87,238,238,102,133,151,56,85,60,28,42,96,17,222,57,107,199,5,142,132,77,59,42,79,74,230,168,103,15,230,248,30,249,172,89,147,92,119,58,219,112,92,251,240,152,61,211,171,147,152,75,53,230,118,111,149,94,0,255,135,146,5,83,149,172,244,213,137,145,130,62,201,13,181,157,194,114,246,62,69,9,120,72,119,255,68,50,117,225,185,254,46,186,147,94,55,211,20,216,204,166,57,0,233,140,13,16,179,62,243,184,215,211,34,251,112,74,162,63,99,7,127,105,32,186,114,103,75,213,96,119,242,50,99,112,236,248,138,113,92,1,244,100,3,233,138,61,146,179,30,198,22
 2,3,58,211,54,14,198,225,91,199,172,223,2,187,72,216,36,111,102,153,86,243,174,200,103,140,59,41,230,78,124,132,164,115,23,18,58,39,243,182,130,8,54,116,23,251,200,37,167,66,110,240,140,130,210,124,158,140,82,140,79,40,83,223,154,88,46,38,213,239,66,40,27,186,104,153,16,40,123,225,112,97,116,108,183,136,85,28,94,40,158,173,40,111,28,41,3,125,19,21,57,124,156,133,160,227,58,56,23,4,224,143,60,91,120,111,138,59,79,176,161,33,34,209,166,151,16,96,51,53,124,188,180,137,187,108,186,149,207,141,191,182,112,170,210,140,38,193,24,160,28,165,206,248,194,3,155,210,223,252,51,210,47,200,87,94,9,225,219,200,198,145,245,13,168,85,26,32,32,95,91,179,137,28,194,44,230,59,106,188,243,66,180,96,247,40,191,51,212,129,242,84,118,209,22,125,10,227,52,223,50,17,13,246,151,1,252,15,218,230,144,237,204,135,11,203,74,215,10,224,118,200,1,13,1,6,118,32,205,193,235,180,22,9,66,226,63,237,50,60,222,1,56,164,155,95,62,32,131,176,73,59,16,113,23,241,192,227,201,219,17,191,153,208,31,80,151,128,81,13,91,
 226,157,112,82,125,134,153,138,124,58,80,135,14,172,34,99,175,68,203,109,71,140,158,220,145,76,245,175,44,252,115,148,228,225,212,111,253,223,211,46,21,228,87,100,165,104,55,244,140,37,51,203,35,104,251,19,242,115,71,182,254,45,85,153,108,178,203,179,14,139,115,90,158,127,54,109,229,185,22,139,102,184,82,197,205,186,228,143,103,46,21,211,226,241,212,4,215,201,238,215,232,51,112,51,146,86,251,193,142,246,57,208,180,206,233,23,73,73,43,82,223,154,136,238,10,166,202,93,169,211,179,220,41,239,12,239,127,234,125,54,153,95,40,209,238,237,158,217,109,189,189,231,174,88,231,49,128,19,90,232,45,91,82,66,209,132,41,152,233,171,61,246,169,47,196,74,234,172,28,72,97,15,44,96,106,40,170,2,6,159,210,169,140,99,154,8,204,218,214,214,115,92,196,206,75,180,169,62,188,120,250,138,3,198,170,145,206,207,23,216,171,101,71,222,138,95,226,132,74,39,115,104,45,74,12,165,242,71,146,38,232,124,7,192,139,166,40,200,162,84,49,68,158,119,251,194,86,244,17,47,26,180,171,135,105,25,139,179,249,218,158,160
 ,58,92,132,4,99,237,76,204,158,105,163,63,4,62,121,237,201,242,134,215,52,60,233,84,121,130,46,66,227,55,114,206,140,221,128,84,38,202,236,199,174,128,94,181,58,200,221,212,167,138,147,31,145,200,206,84,31,33,45,94,43,63,223,253,1,107,208,109,77,152,146,10,168,141,204,113,37,75,149,63,225,120,104,25,168,79,36,195,76,106,125,215,249,30,225,159,202,99,16,100,58,39,36,18,176,141,50,57,9,224,230,143,25,186,41,25,166,246,32,24,230,254,234,73,153,34,1,171,231,70,237,202,111,68,101,14,89,172,55,78,74,59,107,110,84,79,93,9,88,219,128,142,78,156,41,185,221,234,244,112,219,113,108,194,208,246,127,111,78,202,184,126,108,102,186,202,165,86,149,120,197,49,150,42,17,78,221,115,112,155,218,66,35,40,201,250,207,159,154,235,154,39,242,14,72,253,178,113,227,51,83,177,255,111,141,144,53,173,139,196,238,160,12,20,61,175,255,54,31,157,101,115,140,10,154,190,14,117,13,127,141,233,55,36,79,115,36,244,235,154,241,37,32,183,102,15,173,19,128,227,67,27,94,183,75,36,203,225,192,37,112,113,116,38,2,108
 ,170,159,158,123,27,193,77,30,137,121,0,99,252,205,139,34,196,71,40,223,136,128,183,136,87,180,148,120,149,175,51,164,189,226,209,223,78,147,237,220,16,233,181,96,202,89,230,122,72,12,137,216,195,79,244,168,163,55,40,152,210,3,88,158,27,144,71,26,253,85,199,78,44,105,10,139,67,218,30,13,230,250,116,121,244,230,124,77,236,58,115,186,148,85,193,172,59,107,18,243,66,178,251,85,21,206,128,101,219,230,19,199,158,244,27,103,6,71,226,108,224,13,178,106,136,88,6,71,32,28,86,52,16,65,68,59,255,156,245,156,242,204,91,67,218,61,5,90,141,167,161,50,199,130,29,139,58,147,146,193,36,73,187,72,146,123,142,246,51,175,165,71,147,139,67,20,56,112,90,253,135,224,37,168,233,116,204,150,107,217,70,167,56,141,186,7,224,102,99,104,210,50,42,94,132,110,149,30,93,37,177,177,230,255,80,122,77,50,67,237,100,199,182,254,45,33,83,210,32,96,103,238,245,136,191,60,22,128,203,229,39,144,230,93,99,209,230,63,40,181,110,239,62,12,26,153,161,70,9,225,80,16,84,191,148,72,87,62,240,95,126,25,151,146,40,73,120,7
 3,112,24,38,127,213,203,158,2,163,103,239,112,197,99,14,31,71,186,57,48,202,174,99,134,208,124,154,37,119,138,200,242,62,190,206,153,167,127,78,8,17,167,244,30,91,60,105,138,215,187,67,186,156,136,118,17,201,202,54,170,31,130,77,145,193,239,43,190,165,75,44,113,169,77,2,198,107,125,200,207,206,4,71,195,33,7,106,7,127,167,220,160,209,180,25,187,208,190,246,180,242,118,160,85,245,68,123,47,254,92,250,239,137,80,6,242,235,10,66,198,222,122,220,2,243,169,129,195,86,105,218,5,221,90,128,192,195,184,31,2,61,9,111,88,66,102,76,31,202,3,195,13,129,243,207,25,125,139,40,169,60,190,136,241,151,180,10,47,23,110,253,6,176,204,68,24,118,85,84,234,173,199,87,145,228,104,227,255,183,155,56,9,157,190,39,41,74,181,168,59,130,252,146,148,156,107,213,73,151,44,80,88,59,85,188,141,46,48,168,65,74,150,87,30,143,226,193,104,195,218,79,168,84,21,101,17,109,117,167,132,89,160,134,85,152,165,68,179,9,16,41,206,222,225,175,124,93,94,189,88,208,149,6,130,90,31,136,89,105,10,93,135,219,94,181,86,25,211
 ,210,55,58,41,67,31,173,181,104,105,191,133,61,5,131,174,133,128,108,209,38,154,128,138,1,101,149,250,95,217,167,239,231,157,60,62,44,238,43,244,19,7,7,216,127,122,5,218,253,251,71,241,78,118,249,157,127,138,10,67,233,97,65,254,180,179,163,217,137,181,124,95,179,73,47,5,116,232,7,128,48,156,178,156,107,188,30,34,108,216,203,136,213,22,38,84,54,124,70,238,8,65,156,209,87,113,93,103,88,198,199,77,84,72,132,194,2,210,246,98,45,59,202,208,104,147,112,84,187,118,95,178,151,83,142,53,204,115,74,223,33,123,167,121,217,42,58,86,206,177,193,10,17,210,236,229,99,29,173,37,76,117,250,6,18,147,133,47,213,209,100,28,3,54,203,137,1,232,77,223,227,18,178,143,14,116,28,62,241,67,226,212,79,34,109,231,224,217,19,163,183,51,247,133,146,49,60,241,35,241,57,157,119,87,141,243,68,252,99,166,170,151,7,136,26,242,94,101,253,103,166,61,81,141,148,74,219,195,96,254,194,216,60,135,79,139,95,228,211,9,189,33,94,85,229,27,80,38,236,217,125,200,38,9,143,95,188,48,114,20,78,96,236,84,70,119,248,6,80,183,
 114,150,154,78,184,210,104,146,44,36,230,65,17,252,125,151,194,189,138,170,96,60,126,204,174,155,22,179,178,64,109,215,236,121,130,126,220,58,253,237,231,175,20,29,22,156,29,216,193,196,151,197,78,253,140,154,75,12,124,83,80,41,40,75,167,154,69,206,216,118,52,165,18,57,24,126,136,33,250,192,205,27,202,158,29,133,225,122,198,212,231,153,221,175,201,32,182,22,78,241,131,57,188,85,7,153,190,253,39,65,62,219,249,89,128,221,173,74,189,36,71,12,180,36,189,247,176,141,154,137,181,208,131,64,250,146,9,147,255,165,100,111,45,68,183,132,60,156,229,12,78,195,223,47,106,245,19,68,251,93,133,113,92,204,42,59,177,170,172,206,174,184,94,186,145,30,78,224,84,193,71,111,58,83,87,7,40,147,233,237,253,40,235,130,215,156,208,101,200,27,36,57,165,36,151,173,246,116,49,174,240,82,155,159,197,33,104,24,115,100,40,182,247,40,148,68,123,43,145,222,62,223,24,118,0,249,22,250,89,136,251,227,87,75,46,56,128,51,228,255,137,30,94,101,114,25,135,108,247,200,186,161,91,163,16,192,226,196,242,17,192,47,17,2
 44,110,37,70,30,68,14,104,116,212,138,96,168,23,133,47,65,139,138,108,102,21,201,177,96,52,1,114,53,66,174,81,84,72,217,9,1,21,149,94,215,12,94,216,71,184,103,115,231,202,103,222,238,74,161,1,181,6,201,40,85,200,40,45,224,155,119,43,161,56,7,91,249,170,211,47,51,58,9,17,120,143,156,216,148,95,186,230,216,27,164,158,210,147,5,121,106,185,206,220,10,37,22,25,117,55,15,39,110,26,39,203,38,125,43,65,186,45,55,82,58,49,48,43,39,83,214,96,74,184,68,58,166,150,220,201,222,158,230,56,230,35,18,244,166,114,108,2,161,216,61,89,14,146,219,148,241,3,110,36,120,205,219,188,107,43,81,87,14,94,67,245,248,26,251,214,176,41,14,244,13,237,10,25,98,134,109,71,137,238,201,227,218,173,180,195,191,2,147,134,2,200,205,3,50,138,192,107,195,41,106,149,44,177,228,150,157,132,224,185,247,211,58,31,96,127,113,29,221,229,224,216,179,150,46,188,32,182,114,101,130,107,79,161,89,205,72,223,234,102,229,95,68,41,124,229,132,76,183,67,58,246,245,228,121,147,96,74,215,85,27,66,87,62,109,166,36,108,153,141,116,
 243,121,62,86,205,15,230,246,17,222,183,159,96,75,152,235,44,136,74,22,47,187,251,208,115,58,87,53,104,128,119,115,112,7,136,208,147,19,179,220,109,11,86,216,102,200,76,57,38,213,86,218,147,144,138,82,123,243,22,184,49,141,195,225,90,240,190,93,249,175,17,45,83,153,165,53,207,52,237,71,226,211,253,218,154,130,23,74,15,95,145,43,120,161,242,4,84,91,89,3,181,221,216,170,55,139,81,232,204,86,138,225,138,85,19,94,81,172,213,29,115,164,115,188,46,174,134,31,241,254,209,205,237,62,10,44,194,115,186,117,83,64,34,179,16,10,223,193,62,131,245,41,135,235,95,94,38,46,93,201,99,183,8,44,92,84,22,46,117,165,79,170,114,127,131,96,3,102,184,58,4,76,174,45,143,61,231,98,141,121,41,252,70,117,175,166,136,175,62,210,207,56,239,108,135,188,61,98,138,69,216,157,185,184,88,123,28,4,45,5,81,214,154,86,62,44,208,44,8,82,166,17,45,43,183,90,77,97,128,95,209,161,36,62,131,118,201,72,190,185,118,193,254,119,183,9,250,233,160,146,239,140,208,187,215,142,174,127,111,21,33,114,189,127,95,192,240,33,136,
 219,84,71,105,86,98,194,18,162,69,231,236,91,6,175,179,73,184,232,178,113,55,55,42,238,234,23,108,132,150,142,246,179,153,6,160,1,174,194,17,111,214,91,156,126,90,41,107,137,57,15,7,254,21,141,87,166,95,157,244,252,184,152,202,214,114,163,244,144,12,165,1,97,142,214,111,243,186,0,79,214,218,27,190,31,226,217,242,66,95,5,134,250,88,136,2,82,243,104,10,39,200,131,59,216,255,136,252,54,171,47,0,118,84,53,143,82,191,102,26,61,211,3,47,244,65,136,100,208,18,155,139,38,98,220,186,169,189,45,3,158,223,121,5,222,64,97,134,224,140,182,72,145,225,219,78,161,194,198,23,87,44,62,245,146,227,18,63,90,227,11,3,130,105,162,101,42,99,175,10,152,105,254,9,226,220,191,73,202,200,55,216,20,97,35,175,231,22,168,223,17,85,89,151,113,211,94,1,240,235,43,129,7,190,161,156,55,230,238,129,76,97,125,116,197,91,248,20,30,233,61,213,236,93,6,48,116,124,205,46,56,74,150,177,196,13,236,18,162,182,197,59,87,235,79,244,253,210,74,45,238,138,128,222,142,93,71,251,50,148,28,35,83,7,242,169,65,0,204,144,2,222
 ,180,197,132,125,166,199,188,232,127,135,234,213,116,165,198,227,128,155,59,31,5,183,169,87,87,123,236,85,14,158,223,18,105,54,128,54,222,198,202,175,138,247,189,136,215,116,202,175,217,33,247,230,17,245,72,48,107,60,61,210,189,117,194,164,211,57,103,77,117,88,104,74,210,95,205,214,222,76,166,120,4,43,134,107,63,102,167,122,55,58,10,226,47,190,116,6,163,95,191,201,169,1,187,185,8,132,144,96,177,180,41,108,216,118,255,59,146,62,251,224,123,101,197,205,98,216,116,50,236,222,193,179,211,22,67,21,170,159,53,72,52,194,79,159,46,242,64,152,97,199,167,83,160,39,240,181,130,210,178,40,80,60,107,47,62,128,220,53,251,205,148,5,145,96,10,52,169,7,118,73,73,197,56,170,195,33,249,179,250,16,203,110,201,63,7,125,158,146,188,41,114,110,128,16,12,90,29,194,40,156,237,178,205,10,229,225,45,235,132,253,187,14,162,126,14,47,126,44,80,123,188,6,12,89,91,61,63,238,175,220,171,244,142,201,170,71,104,243,198,152,17,155,55,186,247,68,218,143,102,200,193,129,48,14,6,40,199,182,250,223,4,206,219,209,
 155,152,102,204,240,4,198,211,159,113,199,79,102,149,40,95,105,209,127,247,71,183,106,216,250,235,35,93,23,183,77,34,13,104,139,85,229,239,13,211,205,142,99,34,149,106,5,106,137,195,94,239,216,58,241,162,69,142,238,180,130,169,54,119,193,24,194,247,247,169,167,113,247,175,208,207,29,9,72,149,252,43,71,14,214,109,232,111,172,123,235,48,39,122,6,67,89,55,39,236,43,181,251,70,180,124,237,26,126,188,61,21,239,126,104,206,6,175,74,137,96,243,63,232,11,107,170,142,31,104,105,185,224,205,23,32,199,42,193,207,35,103,106,45,24,10,79,21,252,72,163,225,126,164,218,51,224,107,102,114,66,183,188,79,215,38,109,75,18,174,54,85,169,128,231,0,49,95,137,55,107,210,142,148,53,202,185,103,15,142,236,31,91,15,90,203,195,207,153,80,204,112,162,93,171,197,38,35,130,161,210,191,18,246,236,98,114,179,96,67,162,51,64,117,17,115,110,147,143,95,19,151,14,65,208,101,208,206,17,218,76,61,122,107,178,142,27,144,65,217,136,5,99,100,110,68,9,67,205,181,122,2,213,133,49,73,60,218,184,14,99,203,49,37,120,192,
 23,38,253,230,90,135,201,14,26,236,122,132,148,198,210,9,2,243,225,247,121,112,64,215,249,148,217,80,193,107,69,196,224,161,125,101,97,161,108,63,28,28,231,223,42,59,113,161,248,57,131,104,44,222,155,155,112,25,201,201,239,18,51,247,197,197,71,121,224,236,17,49,70,237,175,1,176,59,2,20,11,45,138,237,78,67,95,247,72,129,46,151,169,228,63,233,132,18,218,176,72,135,255,208,6,54,124,8,73,98,132,41,191,74,117,90,9,137,21,61,162,24,204,232,181,179,190,215,201,154,224,5,113,250,52,197,110,136,253,145,34,134,56,193,29,17,117,29,70,94,190,42,4,72,244,231,150,175,7,202,9,60,116,120,181,56,218,224,95,51,9,254,139,31,104,11,167,166,129,44,69,36,191,98,5,59,179,207,237,184,43,177,175,137,248,94,247,118,153,177,100,28,199,130,70,8,206,179,236,156,43,251,9,172,108,97,149,211,249,9,233,134,24,204,46,184,131,91,47,49,75,217,186,124,33,138,65,183,42,164,35,237,112,136,41,145,182,130,192,233,33,237,70,68,192,55,178,32,230,1,231,179,145,254,56,154,246,163,40,68,76,126,159,103,255,223,131,95,89,
 169,250,232,85,252,136,172,122,106,230,14,212,201,117,225,110,40,196,49,152,149,89,143,122,224,127,193,47,235,150,226,30,177,50,201,25,204,85,220,206,225,74,96,211,13,218,27,121,105,39,179,181,86,154,149,35,89,101,239,180,99,103,98,178,20,255,248,39,252,95,251,210,207,1,97,142,245,75,69,235,68,83,144,184,221,15,129,142,183,224,79,149,233,1,3,34,77,70,37,161,49,145,17,243,160,48,215,15,179,162,92,238,87,134,96,124,171,125,21,70,112,116,185,195,232,151,130,188,213,209,195,140,165,11,132,171,126,21,155,191,78,233,192,82,82,246,71,43,222,31,146,173,113,67,187,208,242,244,240,42,127,8,0,72,31,170,36,161,184,35,179,218,199,146,37,205,216,92,186,186,42,101,123,140,87,131,102,52,186,149,144,91,31,54,147,141,78,225,22,206,204,168,170,220,75,163,34,146,3,239,135,133,182,247,33,15,179,82,169,81,79,208,240,194,235,241,163,136,105,21,24,73,107,109,236,132,98,116,218,174,73,123,109,232,230,163,141,146,15,80,124,36,28,64,226,113,225,18,205,93,154,16,80,24,10,103,37,196,195,185,18,178,131,1
 58,214,146,101,126,89,165,168,219,102,16,97,18,192,31,65,228,152,75,204,14,15,0,103,158,52,100,58,117,181,193,122,207,25,35,8,33,90,192,180,191,202,11,163,30,161,14,168,198,216,190,242,107,57,177,149,164,16,116,221,107,204,6,129,223,219,36,230,7,125,96,195,31,217,60,84,141,7,115,74,253,142,183,188,2,201,144,203,150,121,191,51,70,104,207,64,37,83,147,229,51,93,232,186,55,39,196,46,196,224,144,150,124,189,100,123,18,56,205,39,76,26,7,207,250,191,167,222,131,15,66,249,6,96,165,7,253,7,216,147,10,179,180,80,188,167,122,218,73,168,131,212,188,32,69,120,251,245,114,100,78,211,115,243,11,81,224,150,23,239,147,26,67,157,31,44,109,86,193,36,234,182,217,234,26,91,19,213,65,239,45,59,160,79,68,115,201,154,66,139,132,36,139,126,209,168,45,184,204,175,254,159,84,28,122,112,66,113,40,100,204,91,20,137,12,115,209,72,86,74,178,116,192,52,1,223,60,28,5,11,235,80,135,206,22,74,173,202,157,184,250,117,143,52,98,234,176,70,92,226,129,141,91,160,34,112,157,55,100,62,192,172,191,128,142,44,57,121
 ,246,199,28,12,199,156,35,65,20,64,176,103,220,72,178,1,219,43,84,224,12,119,42,109,58,111,255,239,184,225,113,150,94,46,240,23,167,23,85,254,167,252,172,188,13,242,64,32,136,39,113,111,234,226,83,124,22,249,15,130,205,217,28,181,251,68,194,145,19,26,190,151,62,36,183,205,88,110,175,252,134,137,26,196,254,227,26,254,71,96,168,87,73,171,215,218,7,177,253,136,92,222,181,60,209,127,232,178,49,82,118,176,234,225,190,134,236,107,246,23,138,247,162,237,91,3,13,210,144,225,128,64,164,19,84,177,8,42,85,130,108,174,174,139,176,248,164,46,230,29,183,217,174,160,71,203,188,199,0,186,193,180,45,116,246,200,200,233,40,134,48,40,95,245,224,131,38,10,66,43,198,163,236,104,25,216,101,134,18,70,220,87,12,179,138,42,113,45,50,225,140,204,131,52,190,254,93,228,156,225,31,240,236,18,131,199,105,30,58,197,205,70,116,199,130,22,157,141,13,46,34,120,130,202,93,182,64,64,98,167,124,250,57,243,89,240,72,243,224,74,133,104,124,67,167,1,167,167,7,173,175,92,139,9,153,200,232,130,60,132,103,240,72,175,
 229,97,2,132,38,75,132,197,64,79,205,5,89,255,36,53,80,247,40,151,166,1,152,238,96,27,89,71,188,221,46,173,214,79,140,142,158,93,242,238,77,147,203,91,171,67,145,117,57,22,214,65,36,35,103,79,147,5,237,155,154,64,149,228,193,176,239,225,72,63,2,242,163,85,231,18,25,150,167,155,150,86,166,82,78,118,148,49,118,28,48,157,148,21,53,181,14,37,72,214,228,6,181,35,41,206,38,49,212,117,130,28,96,107,162,168,190,22,218,138,84,224,233,237,206,110,86,179,108,153,163,49,69,237,225,254,56,73,161,32,255,85,113,155,78,0,124,205,251,159,218,126,226,81,82,159,167,158,58,107,11,31,5,19,135,45,83,134,72,162,2,15,166,253,249,89,22,182,164,151,37,176,25,130,248,179,226,156,207,244,66,154,17,181,176,201,233,69,95,106,27,216,200,59,141,114,104,174,178,125,231,102,2,243,170,104,255,162,149,169,234,119,121,105,91,74,157,219,249,64,155,218,102,225,8,139,107,13,169,19,234,81,171,125,189,25,78,24,67,13,2,88,213,210,166,140,252,95,77,190,118,137,119,33,192,48,97,117,217,22,44,43,3,253,156,84,18,199,206,
 162,10,169,194,92,229,118,52,215,139,96,204,3,47,242,212,19,239,42,142,250,54,230,235,17,12,178,159,190,151,226,93,188,160,19,198,114,22,235,230,8,212,166,149,221,238,136,252,161,219,181,252,121,133,172,64,253,81,31,220,221,0,136,163,174,174,136,132,97,194,30,11,130,111,141,109,61,176,66,105,176,51,10,121,248,170,126,93,63,24,168,86,229,203,15,4,98,170,253,172,6,170,149,26,181,10,236,227,170,101,67,24,176,153,204,189,107,72,48,147,250,8,161,21,229,91,91,84,33,147,78,39,199,136,11,206,37,183,132,75,146,249,82,16,31,57,85,140,155,10,86,80,238,90,23,165,252,145,189,179,120,33,205,207,243,168,47,201,17,142,222,120,132,143,22,243,119,61,175,101,97,159,21,210,8,114,171,108,73,1,93,51,142,1,198,235,122,141,3,45,71,172,243,238,169,249,99,33,40,145,236,134,52,205,148,229,32,157,214,194,79,57,148,25,154,130,195,154,198,20,7,191,133,0,174,14,142,240,62,180,78,253,6,174,146,233,108,109,252,209,242,139,154,194,216,73,79,24,127,155,244,189,142,148,80,123,186,234,207,97,142,163,201,223,102
 ,10,210,57,73,29,154,213,189,172,106,169,32,40,219,74,41,47,114,167,124,12,75,58,241,20,96,112,157,154,1,237,62,105,123,4,33,214,255,61,119,238,19,209,199,77,51,172,44,93,176,178,69,211,207,146,80,155,37,208,44,53,9,123,255,167,57,251,55,228,105,215,241,227,68,46,229,67,209,213,199,223,42,22,128,122,162,234,42,137,167,88,87,208,210,133,214,43,124,182,149,7,112,122,115,126,193,78,125,91,102,3,169,186,104,75,123,116,191,126,131,33,81,236,172,1,80,236,168,73,120,41,141,189,47,64,204,116,253,79,113,180,114,21,239,108,187,75,0,9,153,29,245,41,209,82,70,150,95,207,59,78,111,220,25,5,254,75,208,62,113,191,240,91,146,141,242,234,204,98,137,73,49,17,22,110,176,174,92,201,7,65,210,215,145,234,104,18,125,233,15,117,78,98,50,113,85,73,166,238,215,242,51,148,139,145,89,176,241,23,86,16,126,193,143,77,111,201,198,90,56,130,221,31,85,95,234,230,167,179,215,22,104,199,1,89,52,6,96,222,111,195,42,222,221,225,211,2,160,97,228,72,149,196,187,47,71,91,221,129,180,120,129,122,8,142,112,108,166,1
 65,73,55,218,121,65,55,148,235,29,64,18,186,199,147,190,74,166,213,17,24,177,136,174,47,146,37,125,148,30,71,38,51,115,228,1,30,72,205,33,212,21,177,250,20,238,201,43,58,167,117,1,86,98,41,231,129,103,146,64,221,24,211,115,151,204,36,182,253,99,70,169,136,129,89,30,72,82,116,85,186,28,84,132,82,203,238,81,172,218,155,152,247,9,209,176,8,206,21,181,90,63,217,246,124,129,218,5,94,36,215,182,203,88,171,25,156,225,100,46,155,120,50,175,78,254,16,47,7,145,34,171,110,13,173,33,176,103,76,160,255,98,3,122,70,82,106,221,37,224,233,199,110,183,160,175,152,113,85,203,211,64,106,86,45,231,28,15,217,237,2,36,243,103,77,10,91,136,255,197,99,195,229,211,60,29,242,56,70,160,67,247,216,55,1,185,199,133,125,161,103,176,69,193,41,156,106,153,253,157,50,117,92,235,41,98,22,76,112,110,115,73,145,131,16,28,159,72,191,253,226,239,90,40,102,65,150,132,35,221,105,143,111,140,54,22,122,249,159,245,101,246,13,154,115,223,213,249,136,234,111,63,138,216,184,83,97,90,184,115,121,0,135,2,210,158,131,236,
 208,187,92,200,80,51,83,210,116,110,7,162,245,116,52,75,91,111,93,222,223,77,70,22,29,186,253,64,155,71,42,165,111,74,90,199,117,252,147,44,194,70,195,236,132,102,42,3,136,188,135,80,140,73,218,86,183,48,231,158,76,3,237,106,116,190,174,69,235,212,191,78,163,189,201,62,187,82,245,27,147,60,228,121,178,231,25,41,128,63,0,53,203,119,4,6,181,27,175,50,191,45,184,236,56,180,190,60,51,51,14,132,241,55,181,104,162,59,150,32,68,114,138,109,212,191,122,233,160,129,134,163,196,70,221,94,27,103,201,245,241,229,136,55,14,107,165,54,33,131,208,85,26,170,102,214,48,227,223,143,151,192,147,74,10,168,23,190,57,136,83,124,141,21,11,91,80,124,193,125,120,139,217,28,60,166,100,102,163,234,174,123,6,112,36,180,40,35,182,58,169,216,59,192,131,77,191,189,12,244,158,16,194,149,112,47,120,163,169,81,36,222,171,147,227,229,49,122,152,95,68,191,128,168,211,187,231,123,186,89,94,157,253,178,93,22,202,251,102,227,27,121,74,85,29,98,112,232,208,4,97,43,96,134,65,108,155,161,92,116,211,15,3,15,40,68,165
 ,166,18,246,198,167,147,68,185,25,62,62,75,157,137,65,64,131,169,126,195,202,149,180,68,128,115,249,71,174,50,250,164,38,143,165,228,58,190,219,125,181,18,244,17,227,107,43,162,242,174,116,58,149,118,222,117,109,122,144,16,45,104,203,118,84,5,8,62,94,88,13,42,43,30,174,79,11,135,161,123,55,242,219,5,83,1,210,197,95,221,90,124,95,13,234,224,17,167,148,218,133,154,231,215,225,89,98,100,240,108,93,96,130,127,63,9,163,38,163,66,25,131,148,35,108,112,17,154,232,247,220,194,25,103,130,84,238,176,164,170,140,209,97,124,230,234,70,149,161,126,66,139,159,204,180,170,237,232,143,228,22,75,216,123,82,131,127,220,216,55,123,59,115,243,20,6,16,9,164,43,159,151,162,151,7,245,68,92,144,104,173,73,109,214,107,235,95,35,14,28,158,145,252,187,134,140,78,251,179,133,97,166,126,71,25,233,246,247,124,148,68,194,191,0,115,195,229,167,128,17,63,121,130,21,26,244,70,99,222,131,48,113,108,184,151,124,134,141,241,236,5,194,60,137,59,131,94,160,234,162,110,3,18,106,181,145,211,214,108,51,108,216,247,3
 9,82,211,188,238,142,150,44,37,154,83,18,183,205,126,214,167,43,90,89,105,255,207,236,143,13,115,119,67,237,102,222,23,217,136,98,117,224,171,137,232,54,43,108,55,126,109,62,245,7,47,32,28,159,91,3,244,50,111,94,17,235,34,189,7,59,34,195,150,215,118,203,47,34,51,68,52,208,240,75,111,229,128,204,227,67,158,223,66,196,70,8,39,133,191,34,73,238,152,3,40,156,140,45,187,198,228,31,196,186,186,192,157,153,142,91,100,136,11,160,92,249,160,110,124,226,87,53,36,147,49,78,71,37,94,26,133,8,70,52,173,134,12,17,83,11,213,68,164,185,160,126,162,125,152,225,165,83,188,38,225,30,235,244,141,84,154,204,157,215,47,197,171,37,226,186,70,161,182,115,13,143,196,86,73,103,181,45,116,129,75,163,204,198,86,219,161,131,187,40,172,7,255,45,168,228,211,61,202,225,221,99,208,196,9,124,120,248,178,34,65,57,79,20,191,25,57,136,29,146,147,86,141,253,238,74,49,234,5,54,194,205,35,145,179,179,88,114,183,218,195,126,18,162,106,52,22,168,229,92,141,14,159,134,55,237,41,251,154,166,166,203,42,7,164,139,156,12
 7,192,58,211,37,174,144,7,91,207,30,184,88,201,244,14,253,186,180,103,151,63,61,108,132,196,101,232,100,168,229,41,191,69,41,157,53,10,33,111,197,233,204,161,10,193,115,179,119,79,234,111,46,191,205,188,247,82,179,174,78,183,226,200,193,95,127,211,87,166,152,138,251,206,63,23,176,162,157,200,198,102,137,239,204,97,23,157,156,242,244,206,223,233,66,252,71,243,158,190,143,243,178,150,205,186,6,55,32,199,248,75,33,140,246,116,210,15,148,1,191,66,88,26,89,186,5,169,28,11,109,144,56,83,190,38,92,123,156,173,164,106,143,189,34,174,239,198,119,195,33,180,181,122,168,209,226,119,126,166,233,107,228,232,238,36,89,146,236,6,148,158,181,230,205,121,220,230,210,185,238,6,245,133,72,36,160,185,174,131,107,62,77,208,52,64,129,117,142,102,154,102,51,31,63,224,45,205,61,74,159,47,128,74,56,207,152,243,54,88,139,170,47,135,147,136,80,131,50,33,208,177,53,115,40,254,78,225,61,220,132,187,170,8,72,92,21,225,211,110,112,175,173,179,42,242,19,134,242,60,195,47,167,46,69,160,213,142,75,2,172,169,
 98,96,31,166,183,126,37,5,122,246,61,136,191,74,251,184,238,87,35,235,166,20,173,143,63,96,251,216,166,188,194,230,56,155,32,250,10,202,196,208,21,116,10,246,216,224,140,151,52,166,99,83,206,14,52,69,50,34,129,117,137,89,96,61,183,211,227,110,244,81,16,226,55,234,169,204,245,53,160,189,218,40,253,74,241,221,107,109,150,162,22,131,173,235,226,233,76,40,35,19,222,68,58,61,28,98,204,217,4,168,17,75,204,135,106,14,199,17,168,241,250,254,39,118,183,186,128,253,222,61,207,13,155,165,188,107,33,78,163,196,241,68,9,244,196,175,38,16,164,115,103,189,143,147,57,40,200,3,7,92,85,50,190,84,72,243,180,38,162,129,76,232,218,149,54,215,232,232,125,77,146,207,166,231,190,98,231,232,228,100,69,238,35,141,50,234,86,147,88,5,233,195,232,203,225,77,238,245,222,22,71,205,154,126,98,10,231,227,162,204,124,107,90,41,255,112,236,79,177,129,189,239,63,98,149,214,153,175,46,96,88,168,112,226,47,202,13,91,105,97,56,214,188,101,222,106,161,177,193,99,2,40,18,237,88,46,80,0,105,48,116,254,202,160,139,11
 ,214,169,23,200,5,220,92,32,149,209,128,192,156,22,116,10,239,112,156,247,226,222,122,254,183,27,106,241,43,100,135,58,124,48,96,208,209,18,65,242,9,192,81,60,168,58,201,194,103,18,188,41,13,14,136,159,47,169,29,216,113,121,27,88,80,131,25,138,221,189,93,181,98,150,2,180,233,112,137,154,54,20,81,43,108,222,15,130,183,19,171,196,191,84,79,124,191,93,135,127,235,130,9,196,238,126,183,250,5,81,188,12,19,151,153,174,166,191,132,92,158,239,201,94,153,58,165,169,242,252,199,223,3,53,188,206,14,161,21,24,170,190,125,98,207,162,54,206,104,125,111,221,1,72,97,133,91,170,31,219,246,222,12,50,156,171,33,26,251,130,63,108,155,24,119,84,140,160,252,222,83,250,15,253,206,48,107,71,220,10,165,244,220,120,68,1,69,104,9,246,180,246,239,60,81,243,156,56,227,164,143,207,92,237,29,115,103,51,32,224,84,84,105,245,143,96,62,45,42,179,79,48,19,185,84,54,75,111,56,104,206,175,178,94,32,125,8,207,183,255,52,109,115,217,19,124,189,125,64,190,84,75,195,133,90,80,4,17,193,211,163,166,190,69,43,29,116,1
 75,68,148,181,99,74,17,159,30,92,190,159,62,106,149,39,1,212,211,76,74,172,33,29,51,169,76,98,96,96,68,159,148,202,51,234,85,62,105,137,230,253,14,1,238,115,11,25,83,124,253,181,179,7,22,51,58,22,140,161,249,126,106,110,247,89,191,126,14,88,30,143,114,247,28,36,32,189,89,10,229,16,117,138,150,198,3,186,117,226,157,119,64,207,45,17,109,178,101,219,113,11,180,36,232,50,52,218,223,26,84,224,16,77,50,220,129,136,15,233,245,218,131,32,133,25,204,193,84,133,254,159,68,144,71,207,42,67,160,179,76,93,174,152,230,74,12,175,205,240,47,143,1,238,224,67,57,137,136,72,140,19,30,239,16,34,177,45,53,89,108,45,31,59,255,179,92,123,10,31,18,216,88,154,79,7,238,108,151,209,148,66,168,186,94,143,93,212,100,168,139,12,33,209,146,154,74,54,115,147,225,49,246,211,86,206,246,231,7,244,188,165,228,105,249,145,84,198,117,176,39,86,133,161,74,220,121,143,193,215,242,203,223,16,5,214,251,119,148,28,146,190,30,45,20,44,200,134,137,163,217,138,22,100,102,13,213,171,223,108,148,54,190,86,90,88,177,186,47
 ,124,64,113,89,106,191,211,81,122,169,232,22,58,144,153,248,136,15,239,72,31,173,114,6,170,199,34,44,4,88,177,220,230,195,108,27,234,40,251,133,115,28,28,65,35,254,96,37,70,197,235,186,232,119,65,114,24,135,19,125,149,71,216,126,9,165,153,205,229,191,177,75,212,148,145,249,25,167,144,230,227,180,157,170,166,198,198,127,206,179,92,40,108,1,19,26,89,112,226,14,16,121,137,33,228,197,232,181,235,176,251,222,81,194,54,115,213,25,173,42,68,140,218,248,30,96,60,201,243,175,184,234,127,94,103,97,220,117,73,112,208,149,203,233,35,100,252,229,119,137,29,235,196,207,152,55,238,205,177,164,7,232,5,111,102,112,75,80,157,44,216,225,91,216,243,128,51,255,130,209,150,31,142,188,75,230,253,4,80,73,108,202,77,147,120,34,150,4,114,219,188,225,34,223,108,0,151,199,128,86,226,238,94,22,111,245,221,66,117,65,236,151,172,121,154,254,223,255,204,101,119,93,148,39,217,208,104,227,248,88,96,78,136,199,186,253,137,37,4,98,99,50,146,62,161,212,98,31,3,3,124,236,63,43,167,38,230,89,232,18,62,56,83,17,58
 ,245,241,254,69,249,198,119,155,141,34,175,219,252,231,32,231,119,208,14,104,174,154,39,137,0,167,69,145,11,56,216,80,63,101,173,50,114,127,91,168,104,225,236,70,202,101,206,175,68,106,81,97,192,222,39,109,123,67,75,58,213,207,3,167,60,154,19,154,116,46,136,27,16,17,6,168,123,37,42,143,197,97,214,30,141,118,246,155,221,239,150,23,179,83,111,73,241,146,183,60,66,204,123,132,63,4,67,30,218,144,2,213,48,246,230,160,16,8,118,72,223,230,158,255,82,140,133,159,169,19,48,57,44,143,87,127,71,129,209,82,32,63,95,74,82,131,176,196,183,110,204,204,135,125,245,58,51,254,96,30,12,30,41,46,106,168,10,130,26,0,102,41,186,185,155,33,183,68,15,231,0,246,118,125,76,230,33,152,170,102,235,251,61,15,160,178,68,96,236,203,127,70,244,151,5,83,31,90,27,107,110,25,29,191,121,189,194,104,55,82,126,13,191,79,223,176,95,199,116,135,253,37,75,117,42,40,210,230,189,206,15,58,232,136,19,205,162,9,250,169,88,204,242,45,201,197,92,199,189,90,192,32,5,205,127,233,103,184,229,177,139,48,153,34,244,242,51,174
 ,109,75,118,245,36,32,232,11,233,114,239,148,105,117,237,32,213,132,237,239,29,134,215,24,49,255,179,228,6,146,188,217,6,34,18,249,249,184,185,183,6,1,100,18,179,101,42,60,214,168,205,209,239,138,21,153,72,218,222,186,151,129,13,177,104,93,144,178,212,172,157,178,58,161,50,218,156,142,103,136,170,94,213,71,53,80,220,159,252,118,239,188,209,100,191,141,253,208,131,220,62,55,204,117,158,195,80,112,173,75,134,150,167,96,125,140,162,249,225,237,41,252,229,94,156,33,236,211,129,226,155,86,71,126,198,117,22,84,189,64,17,68,59,93,75,141,186,84,233,74,181,46,234,81,186,194,168,25,82,114,63,156,201,17,173,109,141,124,207,0,254,89,234,181,161,52,148,125,174,104,165,119,197,232,45,233,60,26,110,219,166,88,122,22,61,233,32,111,44,56,214,217,30,102,18,136,233,68,39,225,95,226,67,250,10,220,114,203,239,58,226,115,169,150,126,205,216,135,81,189,134,21,167,33,145,128,81,37,229,162,79,166,222,246,49,158,224,103,26,191,65,135,152,89,92,144,248,15,16,91,26,36,131,102,48,97,184,255,161,85,245,2
 7,126,195,26,75,244,95,125,205,110,120,173,87,120,246,208,252,184,104,153,118,89,64,208,216,0,213,133,134,236,62,16,214,225,193,93,185,127,70,220,163,13,14,26,165,180,251,247,188,84,148,105,65,210,14,150,8,155,97,1,75,106,53,72,148,207,10,148,56,93,86,219,197,32,135,9,79,202,161,125,48,205,36,20,132,195,248,72,37,244,100,31,104,200,193,86,221,124,231,157,182,184,232,115,226,71,6,237,195,125,31,143,165,177,221,94,77,146,232,251,196,211,198,227,204,26,249,98,161,195,17,126,155,63,1,144,78,79,229,68,160,109,3,194,95,207,138,39,192,78,218,137,1,99,126,190,30,250,106,14,30,67,97,230,56,255,47,142,139,102,198,198,252,11,90,187,7,150,210,76,110,231,255,52,139,166,96,4,3,226,73,28,231,126,176,28,81,131,40,34,163,58,253,238,56,50,241,202,170,79,222,126,110,176,140,66,149,157,210,255,105,248,215,81,200,144,17,39,160,38,255,100,162,239,37,82,84,215,136,166,178,220,27,185,51,111,152,253,155,94,151,166,26,193,209,179,115,248,75,213,108,120,120,73,193,103,17,161,89,73,25,29,223,238,223,22
 3,60,248,31,204,9,87,98,38,38,112,88,132,206,155,58,59,72,198,83,122,138,89,11,43,153,61,3,129,130,156,74,152,15,227,129,59,34,18,23,22,72,255,255,117,207,254,57,136,4,254,60,158,173,62,223,128,115,188,229,171,62,107,35,69,249,21,138,232,224,128,180,70,216,8,73,235,83,110,40,31,35,234,12,19,222,87,96,37,93,255,114,136,70,204,22,14,72,72,175,175,34,211,153,76,127,76,8,8,105,248,80,233,70,190,95,38,110,189,116,68,142,7,5,77,90,208,247,20,159,249,1,239,227,253,203,203,206,191,240,117,247,142,202,14,217,223,87,31,9,104,1,195,216,1,93,44,204,249,4,32,68,186,202,159,190,175,26,197,199,195,216,27,141,227,224,210,99,248,70,83,157,215,202,212,188,17,46,158,152,226,31,37,221,190,12,116,73,50,176,178,113,47,163,54,91,255,74,254,229,103,103,136,106,196,174,40,169,22,254,205,220,241,227,31,176,20,162,43,151,209,220,94,94,218,242,94,251,79,41,28,188,139,75,123,51,96,61,104,179,140,244,95,3,48,237,148,65,209,123,58,243,146,91,224,77,232,162,48,9,115,121,122,136,206,210,76,43,200,209,204,99
 ,25,87,187,49,13,46,133,18,141,210,183,78,96,199,195,24,10,173,235,77,233,62,84,108,88,245,9,183,221,133,134,167,245,77,194,146,10,19,105,255,172,188,110,22,27,150,81,168,185,88,208,14,180,97,36,42,124,194,40,35,247,166,140,139,12,246,117,21,103,204,72,24,208,139,34,137,153,31,2,179,132,156,179,216,134,179,70,19,86,229,221,34,143,203,93,36,213,237,176,74,223,228,142,37,246,219,120,253,57,164,158,239,192,224,156,114,196,183,4,176,94,238,60,237,62,110,42,182,86,185,84,90,201,67,95,160,145,134,42,86,240,117,91,173,136,45,244,31,9,74,173,160,112,72,208,249,99,48,5,194,183,8,44,26,67,186,111,65,56,136,205,152,28,204,152,235,114,176,215,35,190,137,55,162,4,249,38,83,120,156,90,16,48,246,43,117,176,225,12,54,79,187,130,11,170,128,155,200,72,129,156,176,114,235,156,127,216,239,20,199,82,42,70,170,24,214,131,6,17,121,17,61,175,48,192,249,108,222,244,123,248,113,81,165,134,130,18,74,158,31,81,184,107,69,195,58,237,151,149,105,139,33,200,237,103,178,170,54,159,107,15,132,24,247,31,108,
 43,232,36,217,189,2,6,176,71,245,161,71,7,130,180,128,147,230,79,236,173,3,228,223,169,138,185,85,52,100,181,93,178,70,4,201,84,74,217,25,23,115,78,224,236,196,135,178,37,101,98,21,158,112,252,29,210,189,103,173,138,213,147,97,12,189,0,161,167,197,5,68,211,183,219,24,49,230,84,98,56,114,225,197,14,237,161,153,243,195,232,131,164,5,8,169,252,224,99,39,231,48,44,208,131,238,32,24,135,113,23,129,231,72,122,52,105,29,59,29,228,145,153,2,75,227,39,135,253,101,23,152,63,229,71,77,59,228,246,107,95,70,215,103,71,221,0,233,127,49,245,16,31,32,41,127,106,18,23,37,246,148,213,108,202,70,212,169,142,158,169,95,229,220,178,220,206,39,163,15,235,3,45,90,199,162,87,220,241,193,229,249,126,159,18,73,209,200,55,156,48,35,219,24,122,31,170,5,226,5,5,90,3,164,104,75,195,83,115,103,163,139,251,203,180,96,174,117,52,244,230,136,230,220,216,255,129,56,120,195,158,106,65,216,57,123,197,10,246,190,187,232,44,206,43,19,168,243,99,76,153,202,89,56,186,14,80,128,151,254,119,188,165,59,131,108,36,46,2
 17,251,137,253,38,124,132,6,72,53,134,25,213,251,104,113,8,21,168,159,71,213,129,140,153,96,102,65,102,80,21,177,160,46,148,221,136,46,25,121,48,135,174,183,231,237,149,240,30,117,132,154,75,180,24,253,9,236,211,58,146,140,83,120,89,162,140,111,9,135,42,184,155,176,179,114,236,215,174,253,226,203,145,174,236,218,130,116,3,212,168,16,95,172,155,39,76,84,238,39,98,220,53,24,89,77,47,88,95,122,202,157,180,192,228,50,248,87,147,80,52,122,227,94,132,145,11,216,185,102,160,103,42,177,192,95,233,34,202,172,75,22,10,151,222,201,143,13,95,87,57,63,92,93,61,21,152,10,149,173,125,70,182,76,117,24,54,2,110,128,135,249,151,44,9,142,93,132,223,220,189,213,15,41,71,253,107,75,125,181,226,26,162,171,114,44,78,77,229,216,181,100,61,43,45,125,26,100,177,177,166,232,159,152,4,17,136,44,188,232,154,76,6,138,218,198,106,158,67,7,18,69,61,157,45,63,37,72,216,30,54,73,194,229,11,206,218,172,7,252,191,151,231,70,53,17,23,214,129,32,139,103,185,117,226,10,52,104,66,244,218,10,62,54,255,130,30,131,11
 3,125,231,46,107,22,20,83,213,60,152,72,110,48,13,196,164,229,23,214,228,125,214,60,255,37,161,222,0,52,51,189,107,119,243,94,95,110,56,139,51,4,32,101,175,212,233,92,43,17,231,107,32,222,93,207,247,184,62,212,202,77,64,99,178,45,220,199,125,34,204,144,146,37,141,102,172,185,239,3,248,201,50,7,173,201,66,66,230,70,43,212,22,17,177,146,162,203,88,101,118,69,156,46,47,206,98,236,161,34,40,120,250,22,12,127,109,70,239,4,246,45,53,227,163,27,45,170,111,209,130,27,22,211,174,148,44,19,113,200,92,2,136,7,235,215,39,209,212,103,124,114,178,91,187,77,118,2,97,172,146,152,89,151,74,212,197,254,97,99,41,116,120,28,224,240,65,125,115,156,107,24,38,15,79,132,238,182,86,111,225,190,183,24,143,246,229,217,147,69,240,230,204,21,1,25,201,32,170,175,160,83,48,162,39,103,201,170,91,191,102,66,122,236,212,31,211,102,123,80,136,113,182,14,201,244,217,225,154,120,59,156,176,97,105,194,79,190,186,200,64,159,22,191,197,225,16,215,38,132,98,121,243,137,134,37,195,132,102,40,117,208,225,103,87,54,11
 ,179,225,115,56,191,157,248,181,166,19,159,222,150,234,164,188,166,189,19,142,4,53,168,0,2,41,203,68,138,167,76,162,39,80,100,31,49,14,75,130,200,88,6,86,96,41,61,212,179,152,119,84,245,186,254,80,99,157,203,7,177,62,125,19,127,239,167,255,35,46,61,110,219,118,10,184,71,31,138,255,59,159,218,94,115,140,224,150,22,162,81,173,187,137,245,24,139,165,126,191,41,105,49,156,233,196,220,166,49,244,221,14,58,56,218,224,109,95,192,203,135,50,248,6,69,38,124,118,105,242,194,204,212,77,175,193,216,114,114,2,104,212,30,42,232,79,215,121,76,78,49,72,26,68,74,42,71,69,164,156,64,98,112,218,231,137,172,50,79,164,51,202,169,137,173,247,156,42,87,17,8,82,241,18,140,71,221,144,161,81,190,159,218,220,125,248,59,223,238,83,74,88,154,161,81,125,24,230,105,37,166,132,87,26,255,92,51,81,160,23,109,58,74,156,74,40,111,75,247,252,186,242,83,109,231,14,147,108,190,185,149,196,199,138,66,112,191,240,162,177,185,239,13,6,231,249,94,135,225,42,6,72,154,45,74,126,135,97,159,245,240,172,170,244,182,79,0,1
 66,81,196,118,254,245,138,39,243,213,204,47,142,18,136,49,252,82,246,211,44,109,145,98,236,218,55,36,110,155,56,50,246,15,96,4,184,113,53,166,47,206,166,167,252,253,195,130,146,35,108,244,110,23,25,18,178,148,106,254,93,227,250,189,152,56,76,100,74,235,130,139,195,161,56,38,163,226,152,122,113,246,233,233,171,2,247,73,112,237,9,181,40,71,96,250,51,140,113,234,222,70,150,8,212,107,254,203,74,72,41,100,160,19,13,60,70,173,46,39,134,255,8,255,32,125,199,117,104,82,66,231,3,31,151,17,189,98,103,60,66,53,211,183,18,41,12,80,96,235,0,254,66,157,39,95,238,84,215,53,245,190,26,53,159,103,176,148,197,7,209,74,103,188,135,128,180,149,108,146,83,115,130,185,156,16,63,122,78,61,204,211,1,97,1,86,129,54,70,87,54,175,225,120,209,210,251,81,239,26,143,55,95,150,6,104,165,64,196,21,134,79,136,58,233,124,176,115,64,28,179,50,147,132,215,147,181,207,3,213,7,19,132,75,119,37,44,4,216,235,210,124,119,23,165,231,239,40,104,207,35,221,250,167,121,78,234,7,125,124,243,105,46,90,47,223,227,253,44,1
 41,124,51,5,124,212,51,224,58,177,181,184,217,10,6,158,183,55,96,241,165,117,193,248,127,225,147,41,53,141,145,147,249,16,115,76,157,102,199,178,129,60,169,203,194,86,142,7,74,234,149,91,36,230,98,134,246,102,35,97,1,49,243,114,110,240,94,182,121,222,96,80,193,196,26,129,14,162,98,187,14,232,100,60,25,160,137,182,50,64,223,12,65,71,59,243,9,20,43,149,91,235,67,26,93,99,208,40,68,96,2,163,189,24,69,111,75,29,232,181,70,49,72,66,190,180,48,205,166,17,159,235,218,60,38,18,98,236,34,167,232,62,18,232,8,153,100,201,202,208,249,18,36,197,173,191,75,145,63,133,210,155,252,47,161,189,39,224,173,202,41,99,40,141,233,107,188,71,99,27,173,218,75,120,193,98,22,125,253,111,133,110,74,119,108,47,14,32,96,12,36,71,79,147,89,61,86,237,29,70,255,150,219,41,81,254,160,23,106,54,213,98,149,39,34,17,181,99,147,130,58,86,57,108,167,11,220,90,42,126,2,112,26,138,70,57,115,151,222,5,248,239,185,203,207,102,73,210,164,157,13,174,34,75,39,140,190,54,196,145,96,104,94,157,125,115,188,143,201,158,130,
 121,50,0,255,181,221,57,179,104,172,147,99,242,224,54,118,76,152,80,248,195,36,64,111,84,17,172,175,195,220,74,146,90,75,135,34,181,225,212,135,216,234,40,61,212,132,179,4,239,170,27,106,210,247,133,233,7,16,192,81,200,91,85,231,254,207,230,200,9,56,87,109,7,239,98,141,108,118,191,223,201,102,122,151,70,9,169,13,109,33,150,17,30,128,49,109,119,86,110,110,67,135,141,75,64,23,117,24,129,164,143,22,205,151,78,97,88,247,128,182,201,223,15,148,218,13,101,238,216,39,33,243,67,8,169,37,66,98,122,185,86,197,77,245,168,70,157,99,178,205,177,140,76,163,58,90,162,48,143,138,181,245,163,13,111,136,118,64,233,215,150,139,141,67,146,239,87,56,236,63,91,78,247,81,112,70,34,126,53,77,240,152,31,126,11,65,96,203,230,148,137,3,27,232,29,232,205,148,95,110,243,229,245,197,12,109,100,92,250,3,170,179,92,95,106,71,170,52,194,216,237,8,237,157,132,232,133,41,130,58,188,27,147,197,129,16,242,121,144,208,255,75,153,146,134,128,0,214,201,148,94,114,90,47,61,119,251,132,110,76,146,97,77,121,173,150,2
 07,54,90,84,229,208,24,118,95,147,65,236,140,89,19,61,12,173,55,50,29,243,47,19,10,13,205,0,120,132,179,116,15,133,199,174,103,95,177,218,16,40,99,38,221,24,113,219,62,114,205,245,74,49,239,9,170,221,127,52,146,127,121,75,237,145,235,157,18,105,23,176,179,146,5,210,33,220,191,219,86,127,7,157,10,230,15,187,22,67,200,123,144,15,162,185,124,246,156,30,220,157,54,92,32,70,195,151,6,106,187,29,27,236,169,164,14,156,80,75,117,125,226,13,58,175,149,172,59,178,176,84,125,183,96,53,219,170,152,194,244,223,72,41,35,155,55,181,182,2,23,21,107,127,158,148,36,150,130,220,135,161,148,223,9,102,48,64,20,237,91,5,162,138,70,242,17,117,54,7,30,64,176,15,179,237,243,43,128,214,130,62,84,179,117,198,26,206,147,1,46,104,163,86,30,161,210,143,224,152,169,119,228,60,90,169,62,111,209,149,211,125,76,240,88,212,234,162,184,31,155,37,242,79,23,247,248,89,223,172,20,88,153,100,57,99,12,20,211,155,10,92,249,18,75,175,169,156,147,153,15,95,82,62,196,207,160,241,139,102,71,123,3,116,65,23,124,6,247,223
 ,161,245,83,198,89,27,176,189,69,136,190,19,163,143,61,70,84,212,21,232,101,13,6,211,21,89,199,239,229,107,50,7,181,245,201,154,147,235,228,1,30,253,32,245,81,133,213,23,233,23,215,11,85,215,185,85,144,125,106,78,243,222,7,33,23,144,181,88,77,94,50,166,55,82,2,51,214,131,110,0,104,132,131,227,216,51,147,56,5,10,99,157,196,76,13,80,103,80,252,215,152,100,147,117,214,48,33,91,191,38,158,40,184,108,145,102,185,131,14,115,237,16,58,172,129,61,31,189,171,169,80,168,189,133,254,90,234,184,82,137,124,246,137,155,186,68,183,188,252,201,96,149,93,208,196,66,86,131,229,46,110,255,86,200,252,156,43,160,223,22,182,145,153,96,86,68,121,245,168,79,92,91,164,184,150,200,96,159,245,29,215,35,103,169,198,205,243,143,38,168,36,163,46,0,85,198,219,47,1,40,67,219,129,14,72,93,161,88,165,11,56,91,97,124,24,53,4,220,180,199,128,226,73,237,244,172,23,208,80,4,128,98,198,87,35,201,108,219,111,215,154,169,252,181,131,94,102,36,214,35,196,146,60,253,250,182,42,226,32,68,111,245,215,244,233,101,181,18
 2,13,86,13,61,254,57,3,76,164,81,83,247,159,193,189,52,148,52,237,67,236,41,142,88,93,227,4,14,29,24,189,7,3,129,114,136,231,3,1,80,157,39,56,119,36,36,72,241,208,108,127,76,192,149,177,43,199,179,64,219,199,209,212,210,125,61,249,169,223,157,97,205,70,93,130,78,237,90,16,1,106,6,48,220,156,39,209,47,56,20,201,233,196,156,242,99,26,35,62,100,228,176,248,206,52,126,176,99,57,154,166,23,91,81,220,207,183,201,72,139,233,110,249,174,247,254,103,151,228,100,129,222,74,42,145,39,218,200,93,147,181,251,249,163,246,186,230,11,218,58,131,247,31,63,148,159,208,1,117,20,111,93,13,190,248,189,44,142,142,235,165,131,119,223,69,132,91,100,159,170,18,241,192,219,143,29,224,230,253,209,10,148,184,5,74,142,48,46,195,66,62,171,46,157,112,24,211,231,26,72,171,160,46,204,235,161,85,151,29,33,108,196,245,114,105,21,28,61,170,137,245,45,249,245,102,104,205,222,7,40,110,102,51,255,164,82,6,107,183,249,152,7,80,16,116,228,214,162,59,241,126,138,9,180,123,74,146,126,224,53,113,185,5,61,52,119,235,41
 ,250,136,25,197,185,199,217,232,228,213,3,244,0,126,70,255,91,30,155,20,135,89,134,109,148,116,242,185,8,61,139,248,119,205,118,80,191,81,163,59,159,195,210,108,198,242,155,184,96,107,113,179,211,195,90,147,27,213,27,42,29,44,251,87,230,254,61,45,247,43,176,35,24,188,156,206,164,96,41,102,7,4,130,129,52,18,174,191,204,168,83,183,251,20,56,201,2,201,169,47,89,115,55,121,220,49,113,215,142,211,251,226,101,22,186,199,58,49,174,205,26,53,250,117,72,212,164,17,242,98,128,34,11,169,63,194,140,195,46,41,112,229,239,200,186,86,152,234,153,46,255,150,129,214,190,139,222,54,15,164,108,156,193,245,216,77,232,127,132,194,9,232,217,180,72,151,133,245,96,215,17,120,83,212,28,23,44,96,62,128,63,125,83,34,164,148,190,8,135,42,100,140,175,187,175,252,215,72,223,166,241,129,187,205,177,8,232,5,6,31,58,140,180,246,139,53,170,201,5,95,97,245,232,241,43,50,9,14,97,211,69,104,85,189,246,24,155,10,0,82,239,198,48,66,21,125,236,248,157,111,29,87,187,185,42,110,59,31,250,250,49,9,43,188,139,137,182,
 169,92,8,187,243,56,81,22,244,38,70,150,219,209,145,96,156,11,112,202,30,83,114,25,66,205,30,122,168,101,102,87,155,243,80,94,200,234,147,141,44,173,29,171,168,209,254,104,209,41,17,48,172,251,195,68,213,84,79,205,220,42,70,173,58,171,95,66,173,66,20,252,248,7,40,192,19,222,137,182,158,214,105,44,175,196,176,199,239,139,18,16,167,52,17,147,144,211,54,2,8,33,68,72,17,78,74,219,151,27,68,102,57,252,81,162,71,159,0,103,214,249,202,3,126,245,138,5,68,210,68,11,126,135,69,179,119,92,84,64,158,173,158,206,116,58,111,206,59,119,123,82,51,163,33,136,231,252,213,109,147,46,237,76,227,68,17,69,105,73,246,25,236,213,216,119,85,199,150,81,64,159,217,53,213,137,252,172,26,158,206,97,89,166,220,20,14,66,245,166,184,66,159,92,221,180,240,112,58,190,95,123,95,209,173,103,164,206,110,13,117,74,3,232,3,255,161,115,54,102,79,154,249,77,99,254,108,219,107,32,39,248,193,195,172,206,174,108,35,50,11,210,220,103,178,166,97,142,176,239,108,188,6,204,222,15,141,121,193,125,172,249,191,68,153,154,20,
 72,43,166,116,23,43,119,127,195,131,221,197,160,3,159,102,168,62,116,200,62,10,198,111,130,254,175,67,160,160,183,144,22,50,3,121,26,251,200,112,33,216,172,106,141,38,87,112,90,28,25,19,163,60,245,3,186,157,243,166,21,138,87,253,66,102,219,138,172,151,168,41,121,61,204,140,94,241,133,45,214,141,222,71,255,13,210,252,30,84,17,97,166,63,6,228,151,236,13,102,27,124,103,224,123,240,122,125,115,198,228,180,14,124,216,30,71,221,14,209,231,202,0,220,178,101,59,69,219,57,12,202,250,179,212,70,250,148,62,242,159,146,36,241,196,159,250,22,218,111,222,70,207,41,227,235,167,172,63,31,9,130,125,96,176,188,116,135,175,130,224,104,182,91,90,214,32,68,158,33,88,28,192,59,185,46,59,162,181,6,173,71,50,10,132,88,86,142,215,50,122,40,220,45,193,43,26,57,185,199,223,46,206,228,203,175,143,116,190,31,146,5,111,239,192,216,143,191,230,191,82,124,238,177,125,114,132,193,108,179,7,245,193,137,133,239,175,71,109,218,229,93,1,233,65,210,15,140,253,26,102,133,56,167,78,246,70,178,51,200,168,125,35,70,
 106,127,112,158,106,151,206,149,151,87,225,94,160,241,203,1,183,109,14,143,223,203,136,33,155,115,115,122,117,168,57,140,201,110,84,22,35,106,177,238,13,118,113,195,132,171,58,206,116,182,20,133,5,68,229,200,116,106,75,95,243,157,163,74,9,132,77,112,236,18,252,174,51,88,10,139,114,116,164,100,5,23,59,73,189,167,206,53,160,2,78,64,153,206,83,149,182,121,16,50,62,245,7,8,98,214,45,12,100,135,80,212,52,175,169,42,54,41,214,130,51,187,63,224,236,184,210,218,185,17,59,156,191,132,171,244,218,222,141,195,172,246,98,155,255,147,254,253,5,25,172,214,240,214,144,76,114,75,123,237,126,28,158,113,13,65,36,136,215,78,118,163,0,179,182,248,225,50,82,233,52,232,195,16,230,187,219,4,181,68,50,60,217,101,30,169,174,111,12,216,166,230,116,247,11,46,98,89,1,9,82,92,197,217,41,164,147,140,63,73,6,12,67,30,168,233,244,127,101,199,122,108,98,10,162,199,224,184,134,132,159,84,196,119,208,128,148,74,220,95,32,57,16,18,202,92,181,89,234,221,114,156,212,142,48,20,126,148,53,227,33,14,41,26,61,209,5,
 229,81,156,23,19,226,105,196,132,184,40,240,27,219,229,241,175,217,19,59,94,139,134,168,206,187,79,156,225,118,200,95,74,3,73,217,211,75,192,52,180,36,53,160,214,61,188,126,116,50,89,28,0,231,235,5,182,75,200,73,28,140,229,130,235,150,219,156,57,156,250,17,92,35,247,147,175,211,61,148,188,113,148,132,149,47,149,49,221,104,39,20,219,118,83,170,199,79,190,16,82,228,245,227,166,57,178,229,188,233,88,146,153,142,224,210,12,219,26,206,67,237,112,102,155,149,140,26,187,93,243,186,251,210,220,217,71,176,90,108,218,241,162,16,240,168,106,193,76,223,121,103,209,132,253,136,238,146,1,223,240,157,50,15,8,83,225,77,113,183,168,248,39,172,77,58,50,124,220,204,185,222,108,102,56,205,149,6,145,150,41,224,13,125,58,7,41,104,203,126,58,169,94,55,7,104,62,88,253,3,143,73,61,215,234,29,216,28,162,178,129,103,37,236,46,0,140,149,226,224,150,240,52,176,49,64,233,21,246,199,198,148,191,115,123,210,247,218,80,61,62,169,37,254,122,90,0,246,81,137,206,173,243,35,234,146,185,57,167,24,186,253,215,43,
 166,207,218,246,132,226,222,165,174,166,167,7,217,103,179,15,204,200,203,25,51,2,127,69,162,125,184,20,223,62,9,93,63,139,109,255,150,177,35,36,245,157,24,173,194,162,133,105,32,196,236,44,97,167,206,194,24,89,224,98,223,1,120,253,28,101,12,215,5,179,103,50,148,58,136,43,134,237,12,173,189,84,161,37,65,117,165,101,235,106,52,10,7,230,19,171,17,201,58,196,124,74,5,201,48,134,85,232,249,209,205,181,163,251,10,80,114,127,74,24,199,72,198,158,45,34,33,27,156,135,126,83,32,39,233,218,57,71,81,34,189,13,236,12,3,55,32,71,192,85,98,217,203,73,194,222,124,84,164,111,120,13,79,34,1,156,157,210,230,25,162,7,7,211,162,119,96,216,163,216,181,232,166,144,102,117,229,155,174,34,51,219,142,110,158,208,145,203,237,83,143,189,50,144,169,228,151,72,53,235,145,73,232,57,36,232,132,90,17,206,170,125,99,7,124,198,16,244,13,1,36,111,122,9,60,135,156,211,8,204,76,90,78,19,219,54,182,178,3,5,34,138,98,51,164,4,51,128,166,190,19,28,204,89,255,23,43,103,142,227,144,79,177,178,171,138,104,236,62,76,23
 4,129,159,204,251,245,229,32,96,190,46,215,137,111,238,231,136,118,213,3,197,239,39,139,181,26,211,23,92,165,250,248,235,61,36,160,84,136,121,233,119,202,55,42,121,122,100,207,158,158,179,119,28,84,155,255,59,35,252,94,166,181,38,71,160,133,168,77,106,84,37,8,193,39,210,187,147,211,204,231,246,132,143,141,166,164,41,34,73,189,85,214,55,85,186,27,16,248,253,42,26,33,74,238,188,238,152,208,194,64,39,5,52,204,194,41,47,157,178,176,135,165,135,35,152,168,238,118,244,120,19,52,91,73,113,224,196,26,249,11,59,168,83,90,38,105,217,151,201,36,43,158,43,31,164,180,18,130,170,124,163,8,156,218,199,179,84,86,57,243,148,162,96,71,246,98,175,31,183,235,71,239,113,70,156,101,158,143,96,252,167,87,206,86,224,179,220,36,31,90,6,117,221,255,30,103,144,56,82,252,50,126,219,103,132,18,233,16,211,172,70,62,40,248,190,212,35,205,50,45,221,201,202,218,180,47,202,132,184,14,211,75,150,246,17,168,92,178,159,186,144,202,41,127,33,154,126,4,188,197,144,210,169,19,32,166,194,6,42,203,15,160,254,255,16,
 9,98,2,1,29,189,176,179,175,16,149,11,138,51,26,36,147,37,2,154,147,76,60,32,172,35,203,62,186,82,141,121,152,62,87,132,20,140,210,55,190,253,220,56,79,44,118,139,32,166,217,211,152,147,1,123,20,109,204,56,162,176,61,178,145,186,50,46,179,201,190,10,242,48,64,67,60,159,80,109,34,228,237,154,40,47,194,83,157,38,53,83,56,134,1,24,200,91,142,231,151,192,191,149,222,62,110,214,199,116,96,75,174,115,220,31,107,40,237,8,255,70,146,126,47,49,26,58,221,148,177,99,243,83,63,88,100,91,39,131,63,104,59,78,18,45,242,61,71,208,147,7,52,123,198,117,158,32,38,127,37,58,145,200,226,49,27,180,58,116,91,23,222,43,167,103,81,177,149,154,163,39,76,21,255,187,7,177,133,179,103,47,220,101,172,72,218,205,99,173,131,208,157,41,32,100,45,132,230,97,236,16,68,174,177,49,42,244,165,95,185,68,54,23,245,231,113,206,7,81,242,13,240,85,31,106,155,252,187,151,184,107,55,241,92,133,66,29,91,167,192,59,12,216,4,144,76,221,28,137,193,237,170,75,42,10,35,208,88,158,150,176,89,43,252,99,85,19,24,239,133,148,190
 ,246,208,84,64,65,41,63,22,92,214,1,75,240,84,149,99,53,81,4,157,32,164,21,181,43,166,4,92,195,205,73,188,186,243,73,34,179,178,237,85,189,153,46,182,102,35,138,126,155,234,255,26,231,144,114,204,161,191,152,8,252,82,33,53,246,209,109,197,0,46,52,225,240,82,233,227,238,214,169,101,253,10,229,213,212,213,200,163,230,176,11,241,0,159,197,77,188,136,249,68,79,78,226,244,229,80,54,229,12,73,243,218,200,193,155,177,87,230,126,12,77,3,76,195,63,91,251,154,52,57,98,134,121,121,217,152,111,73,146,177,220,190,149,178,251,3,116,37,240,74,66,173,98,11,167,243,133,97,55,206,246,137,8,55,215,122,48,60,121,167,48,162,221,196,251,95,31,126,241,114,230,230,102,71,72,50,69,22,166,220,78,155,27,62,69,143,249,24,136,16,55,14,12,55,206,59,135,101,141,59,87,207,172,238,132,240,205,118,148,45,216,191,86,126,102,120,66,15,0,226,8,112,79,220,111,87,102,46,65,138,210,111,149,48,221,201,24,235,221,249,249,150,112,70,190,124,214,49,250,131,5,78,42,241,165,62,6,187,238,253,40,10,3,206,223,191,247,4,217
 ,87,208,25,53,160,236,16,205,82,119,146,93,236,35,197,96,204,128,156,101,65,248,110,144,91,133,74,191,171,135,251,1,42,124,119,23,56,82,247,199,4,160,83,140,155,89,253,34,209,73,250,48,119,7,107,219,56,159,156,188,6,191,61,77,30,17,168,73,122,75,107,81,92,127,246,71,201,17,228,16,155,236,90,193,62,73,202,135,35,255,219,8,31,233,46,189,156,139,85,147,209,81,127,11,70,44,40,116,17,33,223,36,223,89,175,223,3,142,48,216,151,171,70,20,51,211,247,204,109,242,108,204,238,194,178,231,137,204,172,116,194,4,79,134,181,55,108,78,139,202,95,218,27,39,18,35,140,173,21,107,161,179,170,181,148,75,155,35,1,6,207,230,144,157,55,90,252,161,131,192,18,242,114,82,232,114,91,181,229,82,99,134,215,152,225,126,58,36,67,70,127,70,158,242,55,241,100,220,192,239,229,63,5,132,223,16,169,74,45,51,76,155,75,147,185,94,129,88,14,214,121,31,97,160,99,177,42,151,175,95,110,22,114,143,186,38,71,116,196,71,94,77,24,151,35,103,64,79,40,72,181,250,79,85,222,175,12,97,127,13,216,133,51,47,170,197,41,33,108,208,
 133,200,200,126,182,255,160,254,61,75,17,242,73,183,154,9,157,66,86,157,179,102,169,141,182,173,157,194,177,221,197,42,102,3,119,216,86,126,239,169,60,211,125,227,233,44,45,218,17,221,204,147,9,180,250,106,198,65,24,15,78,239,125,226,95,201,97,224,172,99,25,121,197,36,117,238,109,61,94,81,119,195,72,202,155,184,149,234,85,195,221,113,127,176,248,80,29,98,2,220,59,231,216,95,42,159,152,53,67,120,80,63,149,30,195,123,25,131,29,174,150,190,140,237,150,254,183,42,69,204,180,229,203,142,218,68,254,121,36,53,122,84,39,72,169,168,218,249,48,80,168,152,98,115,117,169,115,221,155,200,173,250,187,106,226,133,2,174,178,47,60,200,59,17,216,212,76,142,34,82,142,54,81,67,32,138,106,174,16,133,32,220,96,2,173,12,186,186,206,31,68,163,163,96,128,135,80,35,81,147,190,146,203,88,216,166,123,133,2,182,216,196,183,154,46,232,126,124,16,2,201,12,113,129,170,9,185,180,167,145,78,78,93,158,9,110,219,68,146,41,219,217,228,232,192,152,223,119,139,196,7,39,49,141,112,47,152,27,222,143,173,222,74,190,
 68,99,204,154,119,126,57,102,150,39,30,45,31,39,195,64,67,115,225,225,93,141,155,133,8,191,239,141,86,34,221,247,99,88,20,210,196,213,157,42,223,108,205,187,218,179,33,210,137,60,225,24,123,209,41,88,20,185,112,26,222,237,111,173,212,63,121,106,150,7,251,155,59,193,254,244,153,23,197,172,62,200,105,186,19,38,155,250,137,250,112,42,225,66,176,200,85,142,114,207,60,83,16,251,171,180,57,141,65,239,125,151,105,110,1,161,58,162,105,30,210,203,133,190,3,242,67,62,74,13,180,122,82,57,187,163,126,144,164,118,36,94,248,145,149,245,165,230,171,198,64,127,163,159,168,12,129,245,1,159,83,197,31,114,13,114,82,9,20,83,41,181,134,34,23,58,51,111,1,61,96,38,189,34,234,68,188,159,32,157,45,217,222,36,130,131,250,78,250,203,221,154,251,150,136,42,30,242,74,15,48,141,114,234,27,33,198,101,198,59,44,156,67,249,137,3,250,203,166,64,190,249,219,76,169,215,70,206,255,153,70,254,118,210,124,93,239,133,217,211,103,155,136,160,29,76,28,183,25,129,11,215,191,123,60,191,129,216,249,39,91,112,88,82,0,15
 7,197,0,25,224,228,197,183,191,135,174,27,36,96,60,219,110,71,191,249,109,198,37,27,69,18,185,33,212,86,121,4,250,98,217,189,218,176,145,222,18,1,123,130,141,222,185,125,244,183,8,169,245,188,96,234,191,134,56,193,80,211,239,213,104,4,160,43,122,84,239,50,27,167,76,148,184,157,233,245,1,175,66,131,176,161,188,68,200,38,118,213,20,192,151,213,57,230,19,228,164,238,78,158,44,126,100,249,139,66,16,77,235,226,89,77,86,255,80,112,180,237,239,44,78,245,57,73,73,57,22,70,77,154,55,33,65,1,114,57,141,4,201,11,211,152,127,116,3,71,29,102,212,127,117,129,152,189,245,112,133,96,134,152,236,81,234,97,192,131,117,47,221,200,137,138,30,60,251,97,123,122,153,212,237,22,129,93,77,132,201,65,212,49,28,27,68,186,207,202,131,226,196,155,167,200,238,12,98,200,219,148,89,90,246,52,107,79,23,16,56,9,194,149,196,44,13,168,91,28,62,221,17,177,45,6,161,60,97,24,217,243,32,39,171,84,196,205,189,57,139,204,19,81,193,199,26,122,188,89,243,206,192,217,157,1,138,190,27,22,205,177,213,23,254,139,33,30,168
 ,194,105,105,236,93,146,41,102,154,18,17,244,6,199,180,91,216,1,236,156,250,3,227,198,155,117,69,132,228,75,36,84,219,130,59,218,241,90,4,196,104,124,204,58,116,45,184,190,232,112,92,163,34,184,26,85,68,196,58,96,48,41,151,107,45,21,150,19,250,240,182,102,51,67,112,30,236,250,154,51,102,234,230,142,116,34,184,227,29,238,42,214,187,112,139,214,194,158,110,229,135,181,202,155,213,139,83,48,97,81,146,164,118,100,32,100,198,133,229,232,243,131,52,216,16,132,187,95,176,20,227,162,187,172,193,54,212,146,182,0,120,195,13,163,207,154,103,12,198,39,30,232,151,184,216,120,13,208,132,129,157,16,130,179,238,29,10,201,238,40,132,55,30,81,77,118,80,103,124,222,52,214,221,33,71,42,247,143,27,115,15,180,3,252,248,149,206,74,105,141,191,52,225,189,184,227,71,124,222,203,29,6,255,212,65,21,189,219,244,94,218,32,93,206,217,59,255,57,48,209,44,169,106,64,197,148,141,9,224,53,9,8,68,229,139,144,58,24,26,255,49,68,196,139,108,143,66,136,241,252,143,176,216,89,90,216,101,6,195,191,27,73,50,186,172
 ,238,188,0,136,172,99,78,212,202,70,243,106,126,112,227,141,148,192,99,66,9,160,96,249,101,183,68,149,235,147,209,249,103,206,143,147,136,242,98,49,81,79,230,118,95,16,181,90,253,133,203,214,83,135,12,218,87,109,45,219,50,173,15,120,205,113,73,197,134,94,6,44,228,204,63,85,135,56,69,234,82,102,36,65,81,135,84,138,251,101,95,60,135,244,125,227,207,205,83,150,113,131,110,38,241,225,2,209,141,56,72,207,242,53,206,183,230,57,249,237,184,150,251,105,102,30,3,74,74,219,5,231,193,188,252,45,76,176,101,251,63,24,202,158,203,174,166,108,212,91,61,78,74,245,94,24,170,59,156,53,244,220,255,192,250,233,178,18,195,25,255,76,60,77,251,143,176,18,143,47,76,183,131,29,162,104,113,241,99,240,211,175,218,29,190,238,2,169,139,161,173,112,111,167,12,181,82,204,75,48,106,229,107,87,23,71,39,220,52,128,199,105,22,67,136,11,212,74,249,191,72,144,59,72,247,240,4,38,134,176,183,84,207,107,252,212,69,13,49,196,241,18,171,108,36,228,92,216,73,57,13,138,178,185,6,191,146,104,255,172,89,127,68,29,80,122
 ,80,180,16,45,84,119,148,146,102,245,45,118,150,101,31,103,98,11,221,145,26,155,224,14,153,155,151,36,236,87,117,60,108,19,3,161,179,152,17,188,130,130,139,177,162,51,30,106,202,17,231,149,16,143,164,194,122,34,253,180,161,137,21,72,149,190,158,101,32,160,253,6,198,69,126,7,248,102,105,238,165,209,252,1,179,239,249,52,50,198,34,164,103,244,128,183,180,31,53,81,169,12,220,246,237,65,154,54,30,213,97,233,242,230,125,223,155,83,205,26,170,182,197,78,213,85,24,77,216,101,154,3,254,107,26,222,43,31,93,248,82,168,225,34,34,32,189,43,73,49,107,91,179,224,39,155,15,108,20,174,107,131,98,117,128,3,23,197,67,37,100,159,241,229,111,30,5,33,7,24,24,148,127,87,234,42,169,54,229,95,159,85,180,92,137,182,83,222,242,124,120,50,195,117,56,214,62,23,121,77,94,81,240,65,225,247,253,111,122,134,72,233,233,82,46,83,229,211,122,164,142,142,242,200,130,115,48,194,243,70,254,208,194,141,44,56,136,49,0,76,97,1,150,148,156,243,222,169,141,84,252,5,186,59,197,192,191,140,110,92,142,107,3,23,144,42,73,
 89,101,134,189,98,170,12,178,181,152,206,44,125,99,227,198,230,204,49,213,214,209,174,11,92,103,182,239,165,49,60,123,166,137,200,217,175,121,30,132,132,176,10,233,19,71,142,91,63,173,5,112,142,117,64,120,0,83,139,137,165,127,167,54,19,252,128,121,90,112,27,214,82,222,137,107,155,71,6,111,76,168,237,253,234,239,47,210,244,40,138,12,88,253,49,55,90,89,228,16,193,86,40,73,138,122,99,183,75,31,108,41,162,165,131,176,12,196,36,147,158,249,70,49,52,24,213,110,75,78,154,4,251,8,124,209,175,152,145,5,26,69,186,244,191,110,187,8,149,190,101,87,125,57,114,26,54,7,238,126,212,226,11,243,174,158,138,33,103,202,214,214,167,205,75,126,40,229,99,169,67,128,34,219,204,57,196,36,250,151,66,198,199,75,172,23,169,75,146,78,21,148,91,64,170,57,62,139,202,56,209,62,229,188,240,52,254,110,66,64,123,192,63,150,21,180,228,183,114,54,2,161,113,211,190,131,33,33,56,245,207,85,206,197,61,76,201,247,144,202,190,88,242,196,28,138,175,239,33,137,80,49,128,74,241,151,18,153,39,52,215,153,12,62,117,107,35
 ,32,47,64,165,65,7,241,238,87,38,128,176,46,56,161,133,149,139,92,37,69,109,5,197,98,105,212,159,23,5,155,138,107,218,178,120,255,249,129,153,80,29,129,16,125,147,254,81,171,27,9,5,83,155,126,108,58,167,64,139,155,165,148,98,184,195,176,38,20,199,21,234,33,209,51,71,58,153,226,9,22,74,109,25,109,251,228,55,233,236,188,41,95,113,62,21,71,45,193,115,110,21,211,163,221,11,1,169,31,31,140,211,5,59,76,49,79,229,18,37,5,78,43,219,120,202,93,141,150,15,147,152,101,57,124,43,93,11,141,28,53,223,72,194,201,131,91,204,91,189,162,248,121,130,153,204,52,194,120,119,163,66,55,36,203,250,140,238,38,119,80,244,203,92,143,49,239,122,62,89,166,230,246,28,29,175,21,90,76,239,216,9,22,188,118,80,199,236,216,18,161,94,154,186,28,231,162,67,139,157,6,66,30,81,70,79,14,224,216,3,134,174,3,180,59,4,121,18,0,160,40,59,244,90,75,89,15,7,124,175,8,94,75,163,74,13,176,252,189,213,82,130,70,56,154,217,97,86,62,158,95,158,110,12,41,214,203,60,26,98,21,255,221,178,129,100,194,193,178,189,70,158,180,21,59
 ,217,241,130,48,205,187,61,133,13,71,223,250,203,74,179,239,135,56,225,191,148,80,76,217,241,151,243,69,2,201,227,182,230,32,213,181,38,15,55,187,129,28,129,99,94,204,173,82,159,186,126,118,142,129,91,167,86,21,208,199,227,51,24,46,197,128,195,148,0,104,216,187,225,148,189,138,60,7,142,203,135,98,199,112,176,181,243,125,237,220,36,175,130,174,190,143,88,254,243,76,218,253,49,234,104,46,67,174,49,252,111,89,2,62,238,126,0,117,141,91,181,52,142,5,228,171,109,101,43,125,106,139,135,33,233,70,117,150,255,211,109,191,167,235,86,3,214,85,22,41,98,63,216,196,79,41,247,25,51,140,95,108,83,40,83,170,213,96,61,234,43,155,242,115,228,140,44,157,250,23,119,114,66,66,205,196,119,129,204,39,191,11,236,36,118,225,188,217,100,1,224,251,170,230,252,119,14,242,22,104,99,221,145,32,1,17,4,152,99,128,221,81,88,34,135,65,134,220,119,10,98,15,59,105,238,10,233,29,126,150,220,59,172,226,187,228,83,141,214,151,191,186,254,110,54,123,223,77,241,201,97,234,228,104,156,60,3,101,165,4,204,163,108,147,1
 03,148,165,204,99,81,13,20,124,94,57,233,39,202,138,213,46,128,238,202,100,129,13,190,79,56,39,113,250,195,9,104,104,68,104,96,250,224,208,187,22,150,173,94,132,16,9,79,30,225,87,9,110,58,212,228,212,186,76,207,61,192,67,16,254,69,67,86,174,20,106,141,29,255,252,17,238,19,66,189,63,147,7,101,99,184,57,105,186,131,104,243,31,186,197,251,86,43,174,42,178,176,1,209,128,76,212,103,140,10,161,56,81,15,165,160,93,127,57,230,116,215,44,84,208,123,74,2,180,8,16,182,8,236,195,185,103,218,88,233,52,49,199,189,193,172,169,221,248,37,161,207,15,205,40,100,57,39,217,172,184,66,192,228,252,142,37,37,175,154,151,147,10,135,51,66,108,75,25,163,246,66,15,212,7,78,32,156,255,173,68,243,165,75,168,72,134,145,217,218,100,92,6,177,48,73,146,12,131,57,47,50,218,238,239,22,101,55,163,13,230,160,108,176,205,240,231,186,208,130,185,198,108,179,211,21,136,190,234,208,240,86,180,155,211,173,43,174,198,149,174,92,10,217,74,122,82,119,80,141,198,23,94,24,118,234,187,226,237,230,226,156,144,206,146,60,8,
 188,85,66,163,125,101,103,79,29,186,166,133,24,71,166,123,38,18,212,143,109,120,255,22,51,186,247,46,41,102,96,25,41,8,57,84,34,254,120,71,50,173,254,209,201,202,124,245,138,26,12,161,229,236,252,121,158,91,150,79,253,192,115,20,246,184,193,39,35,44,84,158,110,186,231,209,93,83,182,5,164,58,79,244,176,10,11,199,216,50,196,127,228,6,190,230,176,75,158,175,61,102,130,68,25,183,56,149,116,12,193,133,68,165,164,21,229,91,171,155,134,156,91,255,108,149,31,153,72,170,98,233,233,142,25,66,138,43,125,31,126,216,138,39,246,104,103,89,124,246,35,21,231,116,255,47,152,37,231,149,145,73,171,119,164,228,38,66,121,15,233,54,251,140,5,55,251,222,125,63,126,134,71,75,80,147,195,223,197,96,72,144,38,126,50,145,79,242,124,37,28,171,28,31,112,131,231,101,182,43,27,207,202,167,172,202,202,178,241,174,15,34,240,118,190,24,29,106,38,125,71,216,172,78,37,234,23,77,101,9,173,133,56,104,209,55,69,178,133,10,94,99,187,114,57,166,96,91,103,87,181,28,41,80,34,90,116,233,76,223,253,124,1,150,23,17,170,5
 0,253,103,79,100,187,125,1,47,53,246,181,199,97,81,208,223,16,114,181,186,128,199,57,44,26,221,190,202,170,26,54,133,9,150,38,219,231,129,226,225,52,137,189,11,210,8,208,194,51,236,75,240,114,208,200,91,113,250,82,0,252,143,162,3,243,51,86,25,198,92,229,189,117,13,72,165,175,128,78,11,218,122,202,92,157,63,228,217,164,206,153,102,205,87,139,202,240,246,8,243,115,176,11,110,33,186,131,77,145,234,181,32,104,212,43,245,137,39,89,186,103,167,194,111,213,101,184,10,82,52,32,157,115,186,171,81,135,187,195,189,176,103,118,141,105,115,252,42,127,244,88,154,92,237,87,65,2,70,145,116,230,103,104,195,51,11,130,6,216,67,174,234,84,102,111,85,65,204,5,130,97,26,241,201,179,35,16,42,82,67,37,50,21,58,31,233,84,58,58,123,147,179,24,56,140,205,116,193,19,174,143,206,225,20,172,254,163,213,208,2,13,6,170,248,90,114,22,241,248,43,214,200,46,34,136,136,227,140,218,60,121,212,95,205,26,26,191,68,123,89,126,181,8,143,233,200,241,215,179,70,62,128,67,162,216,104,152,179,113,195,52,51,128,125,199,
 104,255,16,37,43,231,234,136,147,206,185,196,55,151,125,137,150,178,8,131,157,18,175,143,243,7,142,196,195,39,103,199,55,162,243,208,178,165,13,73,146,76,25,226,8,195,13,253,26,33,82,41,238,82,234,105,183,10,220,118,48,48,219,133,124,50,15,129,77,34,56,223,117,93,137,91,192,109,168,82,246,247,79,87,14,93,0,38,167,123,27,16,87,144,196,188,79,6,103,78,77,114,54,135,18,246,208,130,80,105,176,191,215,65,213,5,94,224,229,255,60,56,135,31,125,100,137,94,167,178,49,147,70,39,58,95,225,52,64,67,182,235,49,114,249,207,141,189,60,2,231,123,26,185,146,73,142,99,100,55,126,176,123,177,172,5,145,55,71,236,187,94,96,76,171,39,228,199,108,235,184,12,196,189,35,2,72,213,184,34,226,23,175,85,32,109,219,33,181,30,116,137,231,118,214,205,74,113,15,212,199,154,84,142,227,88,55,45,111,227,128,92,176,180,219,23,80,41,152,75,171,117,140,105,52,152,107,239,120,90,147,162,26,63,134,177,93,193,102,55,82,62,102,165,43,72,163,74,3,75,47,83,123,197,25,229,7,187,75,85,228,136,20,199,91,83,114,165,132,64,
 112,206,240,64,66,61,194,171,196,219,199,27,47,239,145,24,176,121,188,67,52,30,25,57,72,192,209,204,176,100,115,0,8,196,126,218,153,120,87,109,106,213,211,16,191,242,134,32,232,244,173,98,46,7,36,131,50,243,8,253,236,80,123,137,5,10,37,35,130,116,110,247,67,216,244,132,17,101,30,30,40,93,161,195,115,249,33,8,88,92,59,248,135,198,219,100,194,51,116,250,111,69,181,238,28,44,105,27,23,13,39,7,223,111,84,71,211,65,139,72,103,53,195,86,192,119,56,85,141,17,111,42,59,9,12,201,29,181,78,176,128,95,185,130,232,228,151,233,62,13,135,249,105,39,30,231,96,178,130,185,94,159,57,76,9,53,108,128,99,199,29,34,183,28,189,117,105,251,249,146,172,193,6,70,103,138,241,26,156,209,175,237,83,243,214,36,251,86,11,196,5,62,246,78,228,244,254,145,246,100,26,157,17,78,78,40,239,27,12,236,226,48,2,82,52,236,2,38,118,181,29,196,141,10,251,250,91,224,86,155,203,153,237,158,206,18,178,4,101,63,219,24,48,193,203,174,203,13,205,104,54,13,93,142,166,168,38,10,181,53,68,80,172,221,62,129,187,144,122,16,86,2
 11,8,95,217,241,195,116,190,47,180,219,224,128,209,224,181,75,127,177,146,4,153,225,138,243,176,93,181,98,99,184,48,159,204,195,9,4,83,81,38,99,44,45,67,206,238,112,37,92,142,73,212,149,252,210,84,185,225,235,134,1,52,168,103,51,178,146,236,204,5,89,16,94,185,93,165,41,155,128,140,40,93,52,207,131,17,81,35,209,6,206,174,217,77,28,18,69,137,231,194,232,12,56,162,227,235,145,74,156,25,123,89,151,94,131,183,156,39,248,21,212,176,132,52,73,91,44,184,239,38,123,246,221,83,121,116,103,0,238,119,63,92,27,41,15,82,201,8,241,163,111,59,63,205,154,209,85,186,220,170,26,173,138,128,161,13,209,0,102,79,58,223,168,109,170,187,243,213,113,117,7,167,191,6,131,116,108,137,46,180,158,186,40,92,63,61,29,206,240,84,7,27,100,233,217,74,16,230,146,178,102,239,126,57,94,71,174,227,222,115,19,141,183,177,183,66,145,191,17,207,217,224,69,51,184,182,137,20,4,79,55,28,122,225,171,129,29,116,216,252,140,72,166,158,67,1,146,24,153,240,255,137,23,30,61,124,74,40,117,208,98,162,235,111,99,47,85,208,22,25
 2,18,203,188,114,141,184,58,119,65,238,7,76,21,196,253,167,223,211,102,53,161,237,236,217,157,93,83,188,116,161,42,217,67,82,53,176,16,82,7,118,94,140,186,139,195,129,105,167,31,161,45,22,202,96,34,113,145,159,99,3,62,81,209,138,170,184,87,4,134,94,146,77,183,255,87,195,30,198,10,235,128,119,198,179,97,103,164,101,155,52,10,239,239,215,84,189,70,218,112,227,76,142,189,92,194,25,129,255,173,122,220,114,187,141,211,208,6,149,210,230,7,46,225,82,59,223,158,231,93,98,212,135,153,229,159,74,253,90,173,106,180,91,241,162,67,144,11,180,110,41,120,147,170,51,123,34,60,231,22,71,100,100,155,64,251,136,187,231,67,136,143,18,84,126,75,243,189,147,41,186,73,41,57,30,21,229,167,174,120,164,78,9,65,132,180,70,159,227,53,22,7,109,90,177,208,109,177,210,252,214,152,170,150,115,151,50,69,188,10,167,5,62,168,63,213,69,245,216,104,120,145,8,232,201,132,94,61,41,53,23,141,139,10,77,30,30,159,15,76,176,20,154,7,22,122,157,54,158,182,72,49,29,15,163,113,229,28,217,160,174,225,151,174,21,176,174,1
 48,255,174,179,99,24,251,4,116,43,253,201,127,248,227,96,216,47,197,152,29,72,96,192,35,10,236,83,26,161,93,231,0,134,134,138,172,99,253,90,231,189,6,162,123,68,203,8,178,83,5,14,82,195,13,138,43,251,39,164,116,234,195,203,59,109,76,19,92,181,55,83,254,73,244,115,177,35,229,83,249,101,72,33,18,111,147,228,157,152,220,93,45,216,82,52,39,84,58,143,32,39,105,221,34,225,14,50,99,133,62,152,226,158,151,72,223,23,211,70,132,187,58,52,135,178,193,235,48,46,87,115,248,250,224,180,211,169,226,115,243,222,135,219,96,122,170,10,226,22,167,205,147,143,55,79,180,199,10,49,189,10,251,95,119,76,134,45,88,76,103,184,65,249,83,80,139,105,214,13,166,197,181,205,183,97,244,109,233,243,232,42,182,136,140,155,202,140,55,57,212,45,145,15,153,36,109,190,138,215,200,65,107,48,58,134,69,210,137,122,87,230,192,104,166,45,203,63,112,223,129,69,187,147,36,64,157,57,191,155,8,123,63,87,65,208,41,225,115,101,40,99,188,91,2,111,193,97,57,86,60,185,248,242,91,110,156,199,213,226,33,202,31,87,48,101,214,87,
 92,74,153,40,62,205,76,92,80,169,252,175,212,167,76,207,46,78,13,215,51,184,91,220,98,39,39,175,161,183,150,1,107,41,50,226,185,108,196,202,1,204,57,63,144,73,170,87,10,47,149,48,106,48,3,203,143,96,36,97,126,125,122,76,91,30,57,162,182,248,4,181,133,202,6,159,45,144,191,47,145,37,95,56,245,123,229,75,192,61,210,199,35,194,227,247,142,238,89,34,90,12,252,30,25,241,4,185,124,161,91,179,51,200,213,202,165,42,173,70,225,252,124,201,169,243,238,162,13,115,216,122,235,39,16,119,136,131,53,176,190,225,252,179,52,172,212,5,255,169,170,30,149,65,195,15,217,151,154,242,2,215,136,247,135,109,106,176,0,215,115,9,74,179,19,202,16,7,103,104,57,115,138,92,248,12,236,127,29,63,174,23,48,164,107,121,167,0,112,180,166,101,83,43,155,210,151,176,32,229,138,227,150,206,236,108,172,60,148,60,48,221,213,156,55,145,227,250,64,111,42,132,20,197,137,85,173,226,70,203,178,223,100,163,155,49,255,118,114,27,217,113,171,100,221,100,106,217,89,205,52,14,92,205,73,169,94,18,128,220,61,139,148,11,182,193,2
 3,62,102,193,118,99,58,20,183,221,158,220,181,249,160,213,134,176,78,56,40,234,99,50,124,247,186,43,227,43,106,126,91,108,0,202,21,83,153,16,246,224,143,55,39,169,69,90,139,37,71,82,182,253,31,93,246,191,54,73,218,146,245,6,152,121,30,77,202,39,15,136,186,145,190,78,103,38,189,199,245,245,245,135,102,239,182,227,66,7,41,34,236,41,108,135,175,62,231,40,90,129,192,209,109,194,205,218,250,17,13,182,85,103,87,228,186,66,87,59,106,215,151,7,32,194,83,241,230,57,43,199,104,87,16,25,154,109,167,176,164,163,248,58,227,62,63,111,64,62,214,178,79,178,50,108,28,184,147,63,228,62,53,69,102,128,140,140,150,184,175,79,117,191,237,224,152,154,252,64,148,242,249,207,148,42,80,149,143,247,180,36,84,6,14,143,150,94,141,112,29,25,195,155,55,132,87,107,89,33,160,85,87,216,11,160,22,128,253,46,210,207,237,152,220,183,96,227,128,214,241,56,93,171,30,240,168,27,117,112,207,22,31,194,89,136,229,246,182,22,188,173,68,187,209,101,98,32,102,229,199,126,90,177,20,247,228,34,112,186,220,235,105,167,219,
 33,76,89,126,212,63,125,10,83,251,217,233,98,207,6,250,84,96,244,101,9,37,78,33,186,183,143,190,29,140,185,5,104,94,17,226,222,81,252,107,232,78,158,15,82,92,0,212,209,23,42,204,57,26,168,235,79,126,144,2,179,55,29,81,127,253,219,145,85,86,37,21,74,99,50,253,82,176,28,231,205,128,124,13,216,49,187,140,201,139,161,32,232,51,35,187,33,43,134,38,138,101,40,252,20,59,147,127,14,203,97,34,56,62,225,104,107,78,234,66,110,7,27,244,239,252,57,194,189,18,0,83,133,218,59,99,26,145,104,214,10,47,113,155,18,131,203,233,120,110,85,239,181,142,225,212,98,111,194,183,129,77,225,213,187,101,11,10,71,198,51,136,149,242,110,101,136,71,206,158,103,52,248,28,243,38,107,75,233,217,121,201,224,208,99,159,115,71,92,169,211,233,199,2,139,98,23,180,58,200,238,41,211,222,105,95,96,209,4,193,207,209,88,208,208,27,211,140,220,17,116,54,13,101,49,155,76,97,190,145,72,246,211,161,141,171,240,73,138,141,142,224,232,48,195,82,150,67,219,69,31,176,196,104,91,119,218,250,86,70,249,38,197,238,142,92,127,39,24
 4,95,190,35,102,194,51,153,68,188,143,181,59,139,127,207,70,88,198,155,138,134,143,246,135,59,208,142,175,91,43,58,84,28,250,183,106,232,172,192,185,191,63,29,191,21,52,22,91,51,50,48,179,252,218,7,168,199,105,41,64,30,210,10,67,197,191,246,109,63,117,110,198,153,63,23,196,55,188,110,37,210,146,132,246,95,76,72,146,189,177,58,157,227,70,188,29,98,110,159,54,253,73,156,123,47,12,123,240,16,40,69,141,81,12,79,8,35,149,14,43,75,158,108,42,227,117,61,69,60,166,166,109,88,53,146,44,209,108,60,133,238,76,127,228,44,31,39,249,140,115,239,142,105,202,225,229,112,150,50,120,249,47,31,136,88,160,175,120,26,86,234,168,88,78,55,79,228,193,29,9,252,166,176,235,161,116,164,177,85,236,205,186,53,6,99,32,207,165,204,117,155,18,24,22,27,10,72,219,96,195,59,16,119,51,139,31,179,67,250,55,99,84,221,52,101,241,24,79,124,230,16,157,118,176,142,191,42,197,217,164,68,186,4,61,209,129,1,226,138,39,137,36,97,8,13,240,248,12,32,171,77,134,238,36,212,241,209,172,10,78,115,177,127,163,193,167,143,107,1
 07,8,106,174,79,27,199,10,138,60,18,225,238,221,70,133,224,97,94,112,40,26,157,224,170,77,40,21,18,23,55,151,251,114,235,186,193,19,172,171,182,206,161,30,100,150,245,193,196,134,91,150,94,113,92,52,223,9,78,35,78,148,86,251,139,139,102,176,42,5,67,241,102,13,140,72,92,134,7,54,2,117,4,254,240,17,169,200,122,105,203,253,56,227,255,94,127,218,176,121,214,101,164,1,209,187,74,171,55,68,80,122,159,213,159,26,233,7,212,4,243,232,94,193,54,216,134,157,111,111,169,107,175,130,236,97,171,52,181,98,239,121,13,177,210,244,70,30,105,215,58,127,44,69,92,63,9,189,62,143,154,4,14,203,195,152,238,89,92,59,53,135,48,231,159,7,3,225,87,237,27,121,125,164,172,75,113,218,213,180,55,122,20,230,39,122,107,141,136,253,105,189,31,80,121,3,58,159,203,150,184,255,117,160,16,190,52,122,139,156,119,134,11,160,137,178,88,36,182,81,221,245,223,168,116,20,210,234,17,155,244,27,212,180,192,216,66,94,132,3,89,129,12,226,186,178,129,7,25,64,123,37,109,43,11,114,9,120,243,222,70,227,14,136,79,2,241,208,0,23
 5,163,225,250,228,198,239,63,100,13,13,170,183,188,5,106,112,135,123,244,112,127,113,79,16,4,232,69,179,193,166,81,118,90,255,74,225,179,242,199,1,12,44,217,255,133,203,224,85,228,9,201,12,81,93,85,92,30,7,110,110,61,99,101,57,111,223,181,44,206,194,18,54,153,34,225,151,189,21,98,31,166,140,67,243,47,190,0,79,119,169,198,239,76,105,111,172,141,202,69,76,170,8,101,124,45,153,12,12,81,81,75,149,217,179,212,181,148,230,186,220,27,31,145,158,229,86,197,214,93,134,117,219,121,121,171,179,0,13,50,67,192,83,122,135,96,9,80,154,90,28,233,233,37,200,17,75,35,186,139,47,179,243,218,68,115,30,215,94,113,80,74,172,150,132,56,162,138,60,144,162,255,245,17,210,235,250,244,13,63,9,45,200,196,238,251,207,235,68,9,78,174,213,54,164,246,73,67,206,198,19,52,95,74,120,210,115,217,186,73,163,170,242,118,188,74,33,11,87,15,192,180,221,69,7,254,9,106,13,65,188,163,198,51,159,119,5,213,22,96,233,243,120,18,254,170,163,111,207,92,45,41,41,168,221,215,155,93,3,225,145,30,211,44,166,187,248,115,2,195,
 92,79,122,187,178,77,79,143,61,127,72,104,134,239,210,233,67,88,222,57,41,225,82,233,217,134,208,85,81,16,54,70,119,196,67,75,69,66,171,9,92,199,250,123,195,114,53,104,173,232,223,31,41,197,157,239,242,166,5,39,45,150,181,226,243,158,1,118,120,240,177,80,252,86,195,50,25,244,55,145,172,82,210,158,10,64,238,39,62,212,60,70,175,118,120,228,99,72,4,105,93,133,131,170,53,205,130,167,0,168,220,4,10,105,205,153,223,167,66,33,233,112,109,238,9,92,26,123,1,222,223,200,205,117,146,86,183,246,26,221,235,7,124,214,199,140,76,114,92,253,71,135,82,253,226,147,142,241,35,49,249,3,179,19,233,57,228,98,90,96,133,160,65,160,202,94,115,87,52,150,195,103,197,12,192,3,4,54,47,189,96,128,159,35,3,131,233,157,17,32,5,136,181,22,73,104,22,10,25,80,155,236,160,96,20,14,201,132,177,232,47,122,36,7,211,203,122,114,228,57,155,137,152,24,192,210,254,65,183,157,197,136,106,173,111,49,131,74,206,215,107,6,122,180,147,139,219,92,199,197,153,139,146,103,2,223,96,166,230,32,58,15,86,171,65,207,1,159,107,105
 ,120,85,99,214,231,190,235,55,204,234,142,203,136,78,178,8,13,101,202,62,10,83,159,197,177,180,109,220,237,133,233,115,252,104,6,228,22,86,245,6,106,82,98,67,13,96,8,45,79,62,147,192,29,182,215,154,118,205,235,16,211,100,63,5,44,72,157,15,16,253,65,71,241,110,191,110,20,162,222,242,37,58,182,49,213,49,166,96,188,97,165,164,254,9,98,69,97,149,94,183,151,82,22,31,203,176,243,224,67,57,194,163,181,101,14,168,15,154,224,150,46,206,196,57,129,87,132,77,67,62,54,192,131,88,60,60,245,29,87,199,153,135,36,34,235,223,50,54,248,75,229,204,76,41,15,130,161,237,212,255,71,10,78,233,72,237,183,186,44,172,93,92,179,121,19,97,99,68,205,245,51,122,113,70,198,142,42,218,112,112,64,86,89,51,19,201,73,22,132,171,211,147,146,77,155,190,8,104,99,254,186,118,37,56,65,92,38,227,60,69,90,37,89,208,185,33,175,191,230,170,111,223,39,7,64,126,240,106,126,215,57,3,34,31,75,86,72,146,11,183,13,17,125,2,203,109,108,251,47,79,157,125,179,105,103,251,223,207,136,16,17,52,252,220,245,50,13,162,50,176,190,23
 9,36,245,27,238,234,223,7,53,245,206,152,245,93,227,150,249,237,161,2,243,38,51,26,72,119,205,137,197,96,241,159,72,149,163,6,38,189,210,35,64,21,237,194,194,5,33,240,218,221,235,7,49,152,2,67,120,248,222,174,227,32,17,229,33,38,9,155,68,137,113,193,132,222,57,0,199,59,13,5,135,198,190,103,225,235,54,253,227,33,92,184,198,251,67,76,71,51,47,12,66,222,1,195,192,100,190,23,131,47,208,34,115,232,84,12,54,88,166,171,142,2,111,250,0,18,247,218,133,179,138,114,82,118,164,114,180,70,230,212,119,195,85,245,83,14,75,214,144,187,169,150,24,62,138,177,212,150,118,107,220,206,57,159,156,234,203,229,147,160,125,121,43,108,235,31,16,5,249,30,163,190,215,159,192,73,115,254,170,137,187,230,84,38,211,99,224,84,53,70,105,145,214,220,117,66,243,223,241,240,32,198,63,115,79,69,209,24,90,6,28,203,90,188,148,100,20,172,34,197,139,40,73,77,81,242,12,164,60,126,219,112,209,228,50,218,115,95,2,180,214,104,140,21,109,157,7,137,109,60,120,183,214,39,119,201,198,75,137,57,158,251,155,54,158,116,49,90,1
 2,249,184,55,230,230,7,145,96,138,49,113,77,242,129,36,225,61,108,88,178,107,235,227,215,94,31,72,98,132,32,255,60,205,129,61,117,139,43,155,171,227,96,176,234,252,89,224,207,156,99,183,224,58,102,86,98,150,244,147,22,94,146,184,238,49,235,131,140,170,197,204,254,28,23,106,189,64,125,114,153,92,209,245,178,117,217,79,235,250,238,160,250,159,239,224,82,243,209,138,179,73,88,2,117,201,253,51,33,238,8,105,141,31,105,66,170,241,92,11,70,165,127,215,11,109,140,67,182,44,154,54,15,242,120,118,102,239,171,13,181,184,116,12,63,10,175,113,0,129,171,202,74,163,68,148,216,188,12,172,103,3,239,224,215,252,134,111,203,190,92,133,181,7,166,101,84,227,248,101,20,139,148,60,11,137,78,221,5,217,249,225,182,133,158,124,106,80,158,6,110,129,173,8,55,82,209,234,112,68,147,57,217,77,63,187,177,9,251,219,185,206,108,109,5,117,171,109,82,101,98,252,5,182,52,83,154,214,212,71,128,246,25,191,78,109,74,89,25,224,0,39,16,126,167,55,52,27,53,228,169,50,154,152,63,177,215,142,58,171,239,160,140,79,175,1
 05,61,158,98,198,171,115,76,42,139,150,180,191,120,126,227,156,16,173,125,150,182,170,195,104,222,39,61,0,160,130,133,156,227,141,56,202,178,45,95,211,184,71,54,37,173,146,129,60,234,94,7,38,139,47,113,7,236,181,121,212,26,186,72,55,98,198,231,207,214,111,86,15,148,250,186,229,165,97,144,33,111,252,250,6,214,77,248,47,84,145,146,181,89,149,3,57,128,195,80,152,169,15,10,0,58,7,97,9,18,213,21,107,28,244,127,17,135,156,59,116,133,44,222,149,113,21,191,57,231,99,245,136,50,154,149,50,247,26,65,98,106,81,82,113,175,142,150,32,112,149,199,11,199,213,76,61,177,181,184,6,122,104,7,73,129,238,36,37,184,123,174,107,234,136,47,47,70,172,137,179,198,236,190,161,72,218,120,147,253,47,28,53,189,100,122,61,126,199,141,71,148,177,0,237,108,95,31,98,152,167,98,211,69,43,197,155,224,191,165,36,143,198,111,58,199,12,124,244,26,95,195,255,148,241,156,63,33,117,123,158,57,171,218,136,197,231,86,198,94,130,131,191,203,86,151,160,24,39,5,200,201,7,90,104,12,233,70,199,250,122,121,92,223,225,51,181
 ,114,213,21,62,158,201,200,44,246,128,51,2,69,87,186,145,82,208,52,95,23,251,198,140,50,109,107,243,166,98,76,250,189,19,15,90,97,54,181,214,152,94,202,181,151,217,135,51,52,96,98,232,181,71,152,181,20,1,42,78,71,77,49,67,125,150,237,153,148,253,248,26,118,208,125,217,161,67,201,245,251,64,47,99,68,217,136,0,3,252,242,30,228,59,72,208,116,1,11,162,49,226,166,252,62,247,124,105,251,38,13,198,61,215,171,62,57,82,237,7,184,121,116,151,201,153,230,1,227,82,111,149,182,61,84,255,176,89,123,228,52,172,140,201,156,252,45,157,57,208,20,209,144,171,40,22,46,251,130,92,240,233,158,130,255,180,17,66,205,63,218,177,117,201,126,118,174,157,175,215,150,189,249,34,243,74,28,44,86,76,190,47,55,217,249,123,60,36,61,136,104,103,124,118,156,150,143,75,120,243,160,246,7,52,10,112,249,63,182,163,236,25,0,166,154,102,195,138,177,218,187,203,95,211,89,178,57,18,43,101,254,146,76,30,235,29,154,139,60,89,193,97,32,54,32,181,119,120,118,62,112,181,26,27,111,177,72,108,187,84,217,28,110,93,107,166,182
 ,143,252,39,63,124,171,143,214,243,87,216,184,27,219,153,209,51,53,197,247,124,146,126,32,11,28,27,216,42,168,224,54,100,135,42,250,137,58,214,41,211,45,191,92,128,168,142,76,24,122,250,193,73,94,183,206,97,60,161,91,37,235,118,253,197,245,83,0,235,253,6,51,160,99,241,65,50,188,225,88,4,229,183,225,60,0,21,79,165,92,230,94,231,150,163,192,145,97,189,47,238,190,162,218,49,229,115,48,15,75,52,25,27,23,253,128,24,74,78,143,25,230,144,214,199,219,191,150,152,230,170,145,254,22,47,119,234,0,139,210,205,97,233,218,195,96,156,79,85,34,190,144,91,146,34,108,153,106,1,190,145,95,249,33,25,6,56,117,209,28,237,71,231,224,126,33,137,214,105,152,32,185,176,246,252,95,61,208,222,33,141,186,149,163,85,28,167,203,30,249,102,245,15,238,13,163,241,245,49,26,217,53,36,166,64,244,43,238,146,255,70,155,149,193,140,192,19,42,30,90,185,17,63,255,119,27,239,104,55,212,242,246,40,193,130,184,41,16,140,22,54,10,96,35,117,23,191,121,184,156,98,18,231,43,52,101,178,243,45,22,179,111,50,84,95,158,230,25
 1,88,115,102,115,102,181,62,19,66,197,236,177,77,35,14,185,200,97,165,33,11,29,162,149,83,63,141,75,124,164,82,52,193,47,5,187,142,196,56,77,47,118,211,20,47,194,250,195,225,193,136,35,108,5,165,224,121,39,149,141,169,248,0,18,156,70,208,251,16,220,173,156,83,107,160,5,193,117,20,174,164,40,49,69,42,155,4,72,253,9,172,89,167,245,208,38,166,130,172,69,174,28,33,146,215,207,112,247,41,149,70,168,239,115,193,3,108,127,29,217,178,198,91,239,245,153,27,62,80,12,121,151,193,71,124,54,184,80,21,27,242,61,1,222,235,3,179,202,84,230,243,208,177,9,7,157,239,2,203,132,200,224,200,175,149,35,219,128,128,24,248,56,163,202,51,0,123,126,107,90,19,212,88,3,81,54,165,171,47,219,76,53,31,60,137,156,55,164,19,218,16,139,202,29,103,142,159,135,106,141,147,95,69,163,198,51,35,212,47,129,42,174,123,197,185,125,151,223,195,110,152,170,121,165,235,212,56,207,50,91,185,101,105,94,79,11,191,209,75,137,164,95,49,4,134,141,65,58,133,49,210,44,110,28,207,215,172,120,170,76,209,174,73,230,216,220,201,95,
 146,168,159,161,236,12,57,79,10,40,173,132,170,160,114,208,212,55,234,137,180,10,118,219,54,49,175,209,239,205,104,250,255,116,228,64,7,113,227,158,102,64,30,11,66,177,86,175,183,176,183,98,247,56,41,244,139,138,222,100,46,15,148,29,29,213,226,135,217,52,188,196,178,150,245,23,117,184,103,87,56,39,147,150,66,212,119,168,251,240,91,250,146,70,51,159,48,142,194,91,99,145,144,67,179,230,49,192,194,240,132,61,109,60,250,5,182,116,118,46,14,70,51,146,100,210,90,208,108,153,212,55,190,102,174,128,124,207,175,6,181,41,118,184,51,181,136,110,97,187,193,116,164,88,91,251,241,72,105,147,250,103,235,65,204,30,72,238,137,114,56,76,228,140,51,183,140,20,81,65,116,73,43,152,134,8,70,12,250,248,198,228,55,142,67,58,195,16,104,194,104,89,10,112,126,111,84,79,175,63,165,108,167,6,46,10,168,174,149,40,101,249,66,61,122,181,167,87,164,44,48,86,185,89,75,165,53,94,184,17,32,22,169,143,207,113,222,155,65,138,176,90,184,171,73,11,191,143,60,12,186,254,249,139,75,24,130,114,140,19,37,67,14,147,52,
 148,113,219,23,177,90,43,31,251,188,106,29,99,39,143,229,20,67,183,254,97,232,97,53,201,206,14,101,81,25,122,93,223,61,113,17,224,171,98,164,92,198,62,80,200,33,125,44,7,164,244,122,248,151,13,196,62,113,181,32,220,130,247,64,101,64,99,104,167,214,131,167,219,196,34,194,37,61,4,239,134,213,163,38,164,203,42,132,241,203,65,136,167,20,184,201,10,179,254,157,29,171,227,145,243,255,71,116,104,192,176,225,162,213,238,5,169,187,246,38,94,76,211,28,100,9,213,170,28,30,89,208,14,111,38,45,145,168,119,11,49,15,61,167,1,215,26,56,88,185,168,154,104,105,73,160,186,204,80,128,188,255,244,138,136,105,221,151,120,72,248,50,195,191,201,49,32,13,48,28,196,95,49,65,110,172,201,225,233,244,90,21,12,175,24,179,104,61,45,165,239,184,168,23,22,143,28,236,164,151,35,98,195,143,13,191,155,174,122,168,37,166,93,84,64,57,228,108,194,138,164,75,212,2,165,41,16,224,151,189,103,60,95,238,64,156,248,204,181,106,108,76,179,213,167,123,67,223,18,80,166,234,107,51,29,58,175,213,4,53,146,139,46,171,203,228,
 193,2,250,118,98,76,36,185,102,102,220,124,171,117,63,160,155,145,228,170,181,37,104,227,248,54,9,231,226,118,155,211,9,202,39,162,17,82,56,159,178,15,65,171,176,243,92,251,2,242,189,167,102,190,167,78,48,67,127,147,201,2,132,4,169,136,104,153,224,148,240,133,82,79,11,133,232,87,197,184,101,143,214,168,79,183,3,159,161,213,202,186,242,209,100,134,103,66,191,99,206,7,183,166,62,190,74,91,144,253,168,158,252,248,201,41,246,119,184,73,185,224,138,26,0,235,109,167,6,162,18,191,146,169,69,178,49,233,22,86,107,245,36,187,133,192,233,218,252,196,53,173,107,135,38,241,73,98,146,214,206,238,164,31,125,103,120,199,226,102,252,156,216,211,110,12,131,111,206,230,191,56,210,24,112,214,215,85,83,109,20,49,1,20,70,251,57,37,230,146,201,209,77,138,221,180,204,6,51,236,143,192,10,254,129,135,198,72,22,131,116,39,102,85,156,191,153,203,122,232,216,49,55,14,57,170,80,174,122,67,250,217,230,130,121,68,249,72,33,201,49,252,220,111,207,5,120,179,254,105,208,2,10,36,99,208,14,1,200,124,105,111,135
 ,42,38,79,50,163,88,71,233,145,209,133,176,163,39,191,89,186,149,16,156,44,210,1,118,242,58,150,43,132,112,65,248,3,74,238,80,108,198,233,67,112,66,3,152,158,195,172,65,43,115,8,203,189,74,193,90,132,171,74,105,51,35,226,79,223,174,21,2,116,209,116,35,112,217,17,62,75,214,225,59,250,143,15,12,152,35,137,175,67,174,74,100,167,136,239,248,49,229,246,249,126,114,35,167,174,162,192,59,224,196,54,128,246,148,159,95,119,55,217,163,218,173,251,35,123,106,115,36,244,11,0,204,28,232,39,155,22,154,252,111,237,160,35,141,144,123,72,19,42,19,169,96,49,20,100,239,122,131,22,223,151,139,154,40,176,206,61,7,239,87,22,139,132,249,104,239,40,112,67,229,120,169,47,49,240,123,73,22,188,201,187,171,168,117,160,190,209,157,157,79,255,161,220,162,207,211,83,205,206,59,164,232,85,89,248,65,71,238,192,26,104,71,156,64,204,180,139,62,58,117,103,148,2,91,123,112,37,200,164,87,192,95,226,160,135,237,238,168,32,16,5,148,53,241,48,195,175,110,27,68,59,231,10,77,222,109,52,172,18,189,15,151,203,140,124,9
 ,99,50,135,96,163,13,183,44,254,88,50,227,17,105,79,240,135,65,177,126,228,241,224,154,253,153,126,150,97,228,68,136,138,226,8,40,75,197,188,60,162,193,136,116,225,78,224,122,31,68,216,60,139,136,139,22,159,21,253,121,5,102,87,138,221,59,180,106,62,218,35,54,184,230,112,205,109,166,24,180,117,203,148,45,191,19,138,214,124,177,133,191,153,109,10,137,103,238,237,59,49,242,250,67,152,127,248,187,32,206,171,53,115,49,9,36,62,234,140,28,134,186,100,78,145,208,150,106,33,128,130,47,52,89,117,43,17,137,76,20,146,137,87,80,199,0,69,78,63,139,148,17,172,169,195,249,157,160,50,96,243,241,154,118,216,28,234,246,158,214,197,245,199,7,112,127,11,73,177,192,135,150,160,220,12,89,200,86,100,66,223,152,250,138,43,140,132,204,253,181,187,39,158,233,214,250,152,220,99,205,171,171,157,220,32,205,177,169,84,200,2,128,57,125,249,150,6,227,213,93,65,77,6,182,200,33,200,124,191,46,166,56,86,106,207,200,78,192,230,3,136,78,40,206,165,109,142,227,169,242,223,99,44,9,24,255,10,95,103,137,128,41,236,1
 49,191,53,176,95,255,233,169,96,79,247,19,234,207,23,216,131,66,227,35,13,105,206,39,30,216,58,111,237,96,100,80,54,249,67,80,199,39,103,209,111,13,175,82,254,67,14,97,61,133,239,154,54,221,233,204,228,102,187,214,88,123,84,140,23,60,91,96,189,67,17,65,248,70,37,4,32,186,118,170,215,141,148,54,73,175,117,7,154,203,215,26,80,90,50,156,255,105,3,209,36,27,86,203,73,249,16,31,32,1,247,214,171,229,243,5,7,92,51,249,33,111,163,39,48,62,228,149,21,102,125,9,102,88,145,221,154,127,177,174,185,243,72,34,170,236,232,182,87,189,26,221,40,183,163,136,233,189,222,185,25,162,144,48,55,24,202,199,211,55,88,238,214,52,198,90,98,232,60,169,27,242,109,207,101,124,183,192,117,218,112,152,130,199,111,196,45,95,95,118,117,204,209,93,48,26,59,167,99,180,236,140,193,122,238,65,139,25,82,249,142,122,216,128,211,181,99,254,3,5,81,170,134,226,238,113,204,24,16,211,48,250,44,163,81,16,204,243,77,196,53,94,162,67,9,119,248,5,165,140,52,22,32,229,232,14,101,98,196,199,148,58,146,141,24,226,218,5,97,66,
 52,176,252,10,48,135,10,14,123,136,207,121,110,162,125,85,245,197,35,135,122,216,125,208,210,43,50,31,112,164,227,80,239,40,255,131,18,23,12,103,115,65,201,11,188,144,52,103,44,6,252,184,244,51,215,240,151,179,20,139,90,57,56,190,72,243,116,12,101,90,136,166,37,58,82,75,83,217,163,216,131,162,46,57,79,150,38,204,101,184,182,235,36,120,1,161,188,18,229,88,199,248,251,255,209,160,75,29,97,85,139,64,238,164,35,122,6,209,179,83,243,217,128,56,230,47,126,89,110,3,119,135,48,41,131,148,23,222,26,203,211,34,249,176,254,115,48,176,89,248,91,165,198,253,191,106,108,9,3,155,18,103,5,106,205,40,148,162,57,191,254,200,207,135,188,59,29,227,153,97,4,54,72,54,56,100,16,249,62,36,181,158,241,67,105,86,119,236,16,140,225,138,40,9,73,251,73,143,228,199,223,22,124,83,175,132,113,32,245,233,45,230,250,81,236,130,141,226,236,215,43,51,136,12,136,201,152,127,118,50,116,33,126,163,76,40,147,195,170,142,126,197,55,181,96,146,177,234,144,143,85,207,33,145,97,52,163,101,205,195,232,208,237,121,73,94
 ,220,43,172,47,78,173,130,56,190,155,8,177,174,228,70,201,51,31,166,11,200,242,23,23,214,134,163,233,121,147,65,53,187,203,149,153,168,247,90,1,60,74,105,121,58,131,30,209,17,204,142,107,86,90,172,180,7,191,63,26,228,172,192,99,151,126,3,163,236,40,233,145,221,106,83,212,58,174,208,239,123,32,229,118,218,73,139,134,164,20,224,172,225,220,154,202,58,93,106,172,88,185,128,183,189,54,204,205,165,89,35,54,242,207,99,136,128,84,87,111,223,219,83,101,70,61,137,46,196,118,173,131,27,222,241,193,190,222,167,87,108,164,64,153,162,211,9,159,188,188,202,74,242,131,118,206,233,126,17,206,98,80,78,7,172,84,29,251,9,80,71,42,252,207,208,114,159,227,82,15,166,208,182,18,236,46,47,122,228,14,218,210,225,61,188,219,127,252,252,108,209,52,243,100,130,94,55,155,161,25,46,174,195,88,32,107,129,84,243,82,48,34,2,149,152,179,200,253,186,250,54,79,32,108,245,78,42,185,160,128,77,195,179,14,169,242,12,73,223,123,18,46,192,42,134,128,116,87,21,242,83,4,20,35,208,158,2,82,149,134,220,23,215,9,83,24,8
 5,236,88,21,151,47,120,59,92,217,155,180,113,185,91,125,121,169,223,190,8,135,36,110,27,75,38,191,113,222,52,230,128,86,81,71,154,75,244,98,65,89,133,212,132,144,6,37,39,159,68,13,173,61,179,94,43,138,225,0,79,229,157,78,123,49,8,120,184,54,85,210,220,225,82,155,64,76,239,113,168,255,17,223,251,233,205,132,174,88,254,127,218,8,3,245,65,239,251,10,213,101,159,211,96,47,76,221,25,40,48,157,75,24,161,45,146,13,109,65,16,127,221,208,190,165,50,142,3,186,40,38,210,70,65,33,174,106,183,245,23,240,114,183,111,76,150,245,172,135,236,108,228,109,158,220,211,242,13,206,148,96,133,218,243,241,26,99,218,59,89,112,90,203,151,187,243,90,206,11,162,197,96,15,50,62,22,102,251,62,198,103,50,235,126,252,220,255,79,52,80,196,153,184,226,218,153,101,232,161,166,43,253,193,135,134,0,27,24,66,16,149,167,61,182,23,253,65,144,217,231,21,120,61,48,41,241,91,0,141,2,222,68,166,193,142,69,234,122,123,168,227,241,146,128,37,37,56,187,208,246,169,170,188,42,248,204,183,233,96,143,142,51,194,228,196,230,
 74,214,58,233,213,115,32,87,12,124,46,38,81,19,101,93,64,178,84,14,195,170,82,83,159,248,80,59,116,78,39,65,131,60,120,58,161,23,247,28,248,13,115,69,101,182,154,24,90,214,182,219,136,246,206,128,13,4,42,138,41,183,184,64,53,34,175,132,246,61,6,207,125,1,131,85,57,250,126,168,216,149,123,74,122,96,32,149,142,211,75,126,233,42,79,144,83,178,132,204,195,24,56,0,55,182,15,136,233,233,62,184,63,139,244,178,194,196,210,105,24,3,203,50,5,10,29,190,73,221,203,216,200,45,74,27,128,111,236,118,108,175,79,12,115,80,144,193,102,174,90,230,223,254,252,240,119,227,24,230,67,149,17,123,34,90,94,216,39,117,220,122,100,131,116,11,18,197,153,238,31,164,141,142,212,237,47,63,30,172,50,202,184,159,153,92,24,97,233,41,161,70,117,104,255,116,66,141,89,254,53,152,63,215,186,124,203,81,25,49,110,154,55,245,198,201,52,217,139,106,34,100,197,47,32,28,42,136,204,235,148,18,5,100,187,181,12,59,246,95,99,160,188,240,81,114,76,49,183,199,126,70,187,73,220,175,37,49,114,223,225,87,145,40,40,123,103,216,8
 9,182,189,106,244,146,85,17,78,160,198,47,220,93,38,87,118,179,77,47,176,102,77,131,213,90,124,97,88,84,92,3,97,159,37,229,148,10,230,35,64,133,6,169,221,152,111,67,16,84,90,93,195,220,194,183,231,207,142,90,121,200,13,188,83,113,67,206,20,53,196,162,241,81,241,152,237,65,221,220,79,242,139,94,105,128,161,162,174,193,63,19,34,48,164,247,100,23,175,77,45,144,48,103,108,223,252,152,57,147,44,17,117,90,87,8,132,64,154,109,199,20,153,194,18,15,127,213,162,110,59,196,203,48,45,217,42,40,51,221,48,81,141,241,174,161,8,126,80,249,26,194,96,204,9,78,249,200,53,146,17,35,89,132,240,24,89,154,222,99,195,137,235,76,210,16,52,230,55,150,40,61,9,17,39,137,93,165,109,2,24,159,37,23,106,59,202,27,217,133,160,129,92,63,152,250,45,220,104,76,28,97,179,239,86,122,67,28,104,135,235,226,93,72,28,111,38,145,71,191,30,104,105,178,93,199,233,57,235,3,116,126,156,183,108,131,204,14,24,196,25,120,46,176,225,25,147,179,57,166,168,221,254,41,239,35,159,240,8,191,137,92,143,242,209,61,163,177,216,247,1
 59,95,159,25,95,246,82,227,94,209,133,254,145,130,29,86,66,67,168,194,126,175,108,12,27,143,147,248,64,169,250,141,234,46,53,116,255,34,118,36,27,0,135,46,68,140,134,127,137,128,250,11,117,106,135,15,1,53,58,121,164,3,112,91,117,229,238,173,155,49,41,244,223,115,111,30,197,190,40,215,149,78,13,29,211,159,106,107,217,190,160,52,243,29,148,48,180,78,208,64,106,220,112,223,84,241,56,229,120,85,193,135,37,196,192,31,204,129,253,164,151,109,100,133,82,116,150,41,203,140,128,173,95,248,240,57,155,204,31,80,26,127,97,143,201,120,193,139,81,10,0,97,137,1,227,154,187,72,89,120,7,209,162,30,98,63,234,126,52,150,18,74,3,201,201,244,213,57,117,141,129,139,157,110,170,251,58,252,31,10,44,124,156,79,199,205,168,231,85,228,91,188,244,0,145,101,94,139,39,51,184,194,58,178,129,127,125,84,66,63,59,131,49,49,164,90,12,138,99,196,89,135,108,146,180,179,51,191,141,42,213,11,22,102,4,32,147,186,105,58,48,235,229,74,209,79,100,200,227,203,56,46,237,142,146,214,35,36,4,56,108,164,70,219,190,46,174,
 15,89,49,23,88,80,121,19,107,40,30,182,117,53,164,144,81,23,62,157,134,52,38,176,215,57,45,54,87,199,223,217,50,77,104,159,37,189,189,85,62,104,240,230,132,28,246,72,27,17,185,97,9,136,12,112,186,220,193,7,168,19,132,79,230,225,71,30,222,131,166,119,205,209,49,16,154,176,251,118,31,255,213,143,239,88,205,19,239,253,2,196,5,206,235,192,230,57,47,48,239,136,16,204,64,34,189,253,108,218,176,173,222,192,56,251,147,8,133,56,13,76,222,135,37,50,238,247,237,140,195,52,82,254,86,141,23,136,15,50,1,57,134,247,20,58,148,225,23,68,231,167,25,30,97,92,214,242,227,196,166,109,218,81,140,34,16,210,56,86,7,140,58,5,211,74,172,31,243,160,79,61,37,182,92,136,17,196,41,242,75,69,45,119,4,77,237,175,90,43,197,25,168,209,6,255,47,90,24,50,147,86,86,105,34,79,213,192,250,84,255,98,216,255,172,237,45,79,248,38,206,150,47,178,56,249,129,188,18,240,234,139,155,23,170,53,136,36,181,189,131,84,178,127,102,18,126,110,63,66,190,191,57,81,75,198,7,168,47,151,40,251,213,20,189,108,36,122,91,253,19,17,17,
 144,16,180,35,34,134,70,132,189,176,165,213,63,90,7,136,6,176,98,95,102,246,0,142,66,144,77,128,156,213,60,22,190,243,80,221,70,10,74,180,81,225,118,2,46,96,41,241,73,89,77,156,155,248,184,38,27,18,204,250,49,235,71,130,186,125,131,249,38,207,248,67,218,158,218,248,150,83,219,46,34,224,36,69,244,236,233,227,202,219,236,5,139,32,75,209,193,141,244,117,233,217,206,188,146,46,27,169,63,83,71,120,252,8,200,81,97,138,112,205,134,246,181,174,1,166,9,14,231,51,106,182,102,129,253,94,233,221,63,37,46,111,89,192,168,178,14,206,40,121,224,213,248,120,75,12,197,60,189,170,49,151,255,149,141,221,221,92,225,92,248,16,42,180,248,121,2,84,91,252,97,143,42,151,227,156,229,7,89,156,142,47,243,202,149,6,227,236,143,178,128,108,216,78,74,196,134,82,173,8,83,57,194,3,243,76,189,112,146,45,158,84,7,223,242,53,13,42,224,21,152,74,252,153,77,224,242,33,58,62,3,176,19,107,45,151,27,62,171,17,5,3,231,119,23,67,163,155,251,194,161,101,56,209,59,131,1,6,156,207,232,221,38,217,114,137,145,169,76,224,36
 ,126,207,124,88,196,213,53,203,191,133,122,84,125,122,170,59,43,41,120,132,35,15,115,212,147,233,101,217,224,74,111,94,93,188,178,182,232,112,194,24,205,139,47,136,223,84,194,226,40,213,16,91,228,24,2,68,7,230,69,170,37,136,218,100,156,50,97,87,248,164,234,122,109,225,28,54,222,136,170,143,66,147,245,147,6,12,206,30,67,201,17,163,219,19,251,220,6,213,215,123,174,72,214,53,101,52,102,66,6,100,138,42,150,103,94,31,43,200,11,36,82,78,197,178,230,217,33,0,85,207,187,228,171,46,104,154,222,141,244,79,39,188,250,248,113,160,93,222,236,45,28,29,98,166,241,77,105,52,195,198,26,253,59,39,185,14,4,32,212,66,71,96,187,213,247,218,22,131,202,202,50,67,252,178,70,206,106,187,80,236,218,164,186,115,250,246,174,248,150,192,115,8,24,115,60,130,172,63,18,201,104,216,11,205,101,180,56,30,130,0,130,200,54,50,213,53,18,5,101,13,39,195,73,46,79,137,207,5,1,204,236,91,121,130,177,227,92,36,144,86,93,106,94,126,241,220,139,120,124,252,206,170,91,84,239,254,173,212,200,97,52,73,131,121,51,16,92,100
 ,186,141,45,227,47,157,28,208,155,148,36,196,145,219,24,122,78,167,155,47,162,44,84,68,138,56,124,123,130,213,93,36,48,176,12,198,98,126,163,18,140,161,136,143,29,178,212,13,132,106,62,88,254,246,202,171,181,152,212,237,126,247,202,220,122,200,101,47,142,105,69,145,248,131,202,58,193,198,159,101,154,162,196,218,53,118,204,173,121,247,196,130,254,49,82,244,160,167,163,151,202,93,198,176,236,87,235,134,122,176,189,56,138,143,40,236,186,93,55,65,94,24,131,61,222,183,230,209,43,142,39,191,205,95,253,66,157,243,88,165,132,168,174,135,206,41,238,195,152,200,252,44,164,229,93,95,124,170,39,142,203,98,162,57,11,167,183,76,42,188,12,249,113,232,152,195,26,234,128,76,96,174,81,107,170,247,234,122,194,255,77,39,129,72,255,209,248,102,67,162,99,186,66,118,40,145,11,34,198,114,59,146,128,177,52,81,6,132,31,187,97,153,78,160,70,99,62,71,18,150,87,112,166,221,227,218,167,215,243,116,119,54,111,1,64,193,123,164,210,234,114,252,146,123,15,15,222,149,97,220,234,98,187,165,162,108,102,62,78,16
 ,29,58,189,131,243,104,123,198,178,221,8,115,215,23,33,83,225,124,18,190,210,27,201,107,213,200,110,194,50,193,67,106,146,153,30,128,106,129,221,100,202,37,120,182,240,69,172,191,190,98,63,186,185,49,164,28,171,184,248,190,152,16,217,179,72,217,12,20,52,133,92,72,166,167,174,46,201,137,161,222,44,79,20,131,121,86,194,83,183,104,223,73,183,92,244,185,251,213,123,210,112,90,253,119,147,190,147,158,222,224,155,228,143,51,93,14,105,194,31,226,5,174,116,123,1,14,71,201,117,206,43,232,115,165,86,34,221,86,153,197,119,201,139,147,37,253,47,126,211,132,66,130,149,49,117,217,229,212,113,20,124,15,150,134,73,7,151,88,231,191,117,55,188,142,180,115,35,253,19,72,47,80,46,222,46,13,212,95,202,162,145,213,85,97,228,93,110,202,154,244,53,103,153,91,222,143,17,26,148,151,10,114,221,98,161,206,81,150,90,245,200,112,22,188,172,72,180,5,34,161,85,52,95,73,34,122,27,86,121,50,105,173,11,52,128,236,214,228,144,65,143,158,231,93,205,202,228,245,202,143,50,229,30,108,98,254,95,125,85,62,43,59,81,1
 34,13,19,228,242,229,110,35,96,1,0,135,219,197,150,195,100,40,174,144,35,17,17,67,90,224,94,249,121,241,122,97,122,253,217,243,170,238,140,39,50,147,128,191,186,252,250,89,160,216,178,109,127,124,200,201,84,202,28,0,207,145,188,224,54,149,116,169,143,68,47,28,238,23,144,221,86,248,59,121,116,198,231,34,35,235,214,106,63,33,233,190,81,254,69,247,179,232,138,49,23,24,195,53,46,18,12,127,119,26,200,25,253,247,59,77,83,60,211,168,118,14,146,246,92,229,142,70,17,54,61,84,20,123,222,18,8,87,40,194,250,71,70,190,38,175,139,97,128,171,161,108,231,160,11,149,164,251,130,138,168,97,67,192,220,61,221,107,100,76,130,144,250,113,183,125,56,10,218,86,196,228,90,205,83,151,255,115,129,143,115,133,199,93,122,167,133,39,62,29,134,79,3,211,238,135,224,39,134,133,28,214,140,253,194,2,222,159,66,231,173,204,219,137,134,165,221,23,191,217,179,78,41,184,123,160,1,41,153,49,79,174,98,177,162,244,189,39,35,173,172,221,115,229,78,58,213,247,77,152,189,190,226,145,113,193,224,173,80,156,175,160,59,12
 ,99,83,28,40,161,178,49,16,253,8,70,51,119,83,250,233,176,133,73,214,168,225,164,93,116,150,64,58,35,84,150,208,150,124,132,232,234,192,33,201,210,102,199,48,17,128,93,223,228,185,85,18,167,45,103,183,123,3,143,46,218,237,94,1,212,53,24,234,140,236,207,200,67,51,105,212,96,169,231,64,247,194,251,45,69,106,99,69,189,216,235,221,68,182,111,49,152,160,178,56,113,195,97,195,60,93,99,47,49,216,205,141,151,58,129,160,174,54,52,203,63,25,153,200,7,181,222,201,8,170,13,74,102,91,199,34,192,169,127,109,208,95,40,183,87,147,112,169,212,213,87,97,192,202,196,69,149,131,87,196,99,90,248,181,54,204,154,128,24,151,203,157,27,38,197,64,15,9,241,172,86,144,134,200,80,107,197,50,47,115,190,223,161,84,60,151,130,12,252,16,132,198,84,50,98,161,180,147,68,195,234,103,43,105,196,171,127,221,137,38,183,228,105,123,7,107,131,65,24,196,139,170,248,101,75,100,163,218,16,211,119,158,116,238,101,4,118,237,169,7,104,100,107,254,136,124,62,44,199,242,52,206,90,252,95,237,47,143,209,58,119,219,41,104,119
 ,28,178,105,24,58,217,102,211,21,160,128,44,223,56,62,192,244,57,141,19,42,172,125,117,191,81,222,215,116,56,249,54,194,8,35,68,232,179,253,99,149,131,89,137,138,95,129,37,96,67,246,134,93,255,178,34,225,251,116,50,71,17,50,180,228,7,67,175,45,99,129,245,49,142,93,29,120,178,137,167,132,173,179,71,113,38,148,193,241,253,172,115,213,223,139,40,173,147,53,87,243,176,166,204,232,49,245,75,147,125,78,56,199,116,20,32,42,51,249,13,29,95,31,90,98,190,92,36,111,20,27,29,83,141,237,3,154,172,35,187,5,94,7,201,21,86,214,145,213,152,213,216,55,15,160,14,140,131,151,90,97,41,205,6,178,14,230,93,132,228,248,250,145,76,236,156,173,17,67,213,174,171,190,60,102,97,42,120,69,236,4,128,16,69,209,91,208,190,57,50,123,144,12,163,212,112,215,8,55,193,222,174,231,32,134,201,215,207,8,62,1,135,176,234,17,217,92,174,208,155,158,99,132,114,48,154,153,56,233,210,96,139,26,162,146,153,113,253,134,7,24,17,172,120,9,80,139,111,6,147,66,158,109,2,76,240,52,67,195,55,250,15,69,15,97,138,208,233,92,225,11
 2,114,27,61,230,119,66,95,210,158,199,104,119,237,142,33,15,51,102,65,112,210,120,87,212,184,27,230,143,76,208,224,196,195,154,96,197,188,118,236,40,79,135,85,150,240,102,157,99,130,180,105,57,159,15,229,167,36,56,55,99,244,248,131,149,71,219,22,139,31,19,235,201,157,134,193,20,125,58,161,81,163,219,136,140,166,178,246,10,178,203,241,215,174,110,190,199,155,72,116,24,171,21,82,166,188,190,20,249,206,48,210,107,209,82,15,251,225,85,232,178,100,217,210,233,198,144,93,251,236,223,199,205,185,71,55,68,250,114,96,122,145,115,24,201,130,38,114,216,138,186,246,155,102,117,137,115,209,218,81,34,27,63,85,158,118,119,244,144,36,150,107,116,34,13,199,223,3,219,113,168,105,191,76,82,130,144,207,187,168,105,149,249,97,237,40,124,14,171,62,164,30,169,177,63,73,69,8,216,180,19,5,68,191,237,176,247,72,62,247,64,144,132,157,5,251,88,131,78,107,159,156,240,31,221,188,11,63,86,171,154,197,210,240,0,184,192,46,81,108,103,2,95,28,173,8,8,151,148,45,130,93,113,89,241,95,67,188,92,177,59,5,110,78,
 161,128,104,228,130,229,11,39,247,126,245,139,233,160,134,161,28,198,89,133,167,67,52,173,68,251,219,173,139,224,20,97,169,236,242,111,23,205,172,139,105,209,175,40,150,122,34,249,86,16,252,25,209,161,139,94,241,79,57,215,191,121,85,149,5,204,85,103,216,222,191,1,211,201,174,85,228,179,67,193,254,208,247,139,227,230,17,251,126,140,33,92,89,60,220,21,228,22,93,62,232,253,24,91,167,70,69,155,130,158,196,73,103,179,181,149,107,231,78,57,37,172,227,82,249,196,60,177,169,69,149,197,90,182,100,15,138,104,172,29,49,219,105,42,207,172,37,47,212,44,41,152,31,185,126,82,241,122,189,105,83,57,244,11,108,219,212,36,5,169,125,254,187,236,55,134,41,250,237,16,233,148,108,50,184,240,175,33,166,91,96,81,69,43,0,140,221,28,132,129,118,49,216,125,140,190,158,206,185,62,21,52,34,127,186,116,26,220,249,61,237,89,187,95,116,191,27,83,124,87,46,35,109,11,202,194,250,65,202,121,188,202,214,213,245,219,8,211,20,118,77,127,14,216,167,131,80,70,244,18,198,19,216,234,165,210,207,252,42,233,187,130,123
 ,14,230,46,35,189,100,131,242,110,136,93,190,194,115,78,110,119,76,106,236,96,255,32,107,168,137,16,142,254,42,219,192,146,213,141,83,104,42,231,11,16,76,192,184,21,213,66,200,114,47,147,44,176,55,59,227,5,91,233,223,5,165,68,19,122,180,176,208,176,188,218,218,166,95,205,7,87,237,36,246,27,204,32,22,53,204,14,50,109,251,94,93,42,44,243,169,8,217,18,45,147,141,168,73,134,22,97,138,197,107,47,63,240,64,224,52,62,145,236,157,99,33,177,143,235,182,166,74,86,62,107,234,22,87,130,226,230,91,163,103,115,108,228,156,109,10,136,171,249,157,194,80,63,35,159,184,105,20,33,155,198,195,55,129,181,112,49,30,218,232,121,167,115,160,218,226,15,232,172,85,167,190,163,101,242,241,175,48,146,207,138,5,96,61,103,101,231,220,253,61,28,57,158,15,62,244,174,179,76,216,166,163,233,99,152,42,140,244,91,25,88,174,220,184,109,84,243,164,132,103,118,236,4,222,171,86,187,246,80,201,189,148,76,205,9,174,84,142,166,38,84,52,39,88,13,32,24,39,3,213,160,57,238,144,242,167,17,10,58,31,148,34,38,206,57,207,19
 4,53,236,157,10,201,128,123,192,77,138,106,49,117,69,24,253,88,41,5,71,241,105,149,104,53,186,165,173,111,149,73,219,212,75,75,13,32,133,223,218,38,247,219,206,213,74,218,77,183,245,124,239,3,185,20,150,140,110,172,68,140,45,36,170,161,182,2,218,141,189,153,181,152,81,67,21,50,136,123,232,88,198,218,158,111,179,16,39,188,199,12,132,192,177,203,73,184,215,205,55,244,206,73,122,194,98,148,80,103,247,103,111,47,11,178,182,178,33,127,158,195,201,155,203,198,89,18,112,168,107,111,205,234,96,52,177,230,180,103,205,107,230,148,21,173,103,239,159,252,200,83,56,66,41,197,41,29,163,237,175,191,8,254,119,131,11,170,184,109,60,136,81,209,34,250,194,95,20,81,212,41,254,81,123,26,230,108,50,182,53,156,179,56,96,98,98,49,77,29,6,86,134,75,161,190,5,193,159,116,80,168,174,76,112,57,64,234,215,176,5,26,228,98,236,138,145,136,82,197,214,84,141,16,58,80,183,121,43,193,205,53,99,111,10,219,178,203,138,177,27,200,23,147,149,150,175,101,244,37,59,242,140,148,150,26,205,103,251,11,108,12,80,108,18
 3,77,40,186,115,10,170,191,42,112,121,75,106,188,52,172,40,106,106,151,73,19,221,224,218,116,187,183,202,76,66,235,64,164,119,96,208,95,0,171,144,220,118,14,137,89,2,181,225,202,140,11,93,112,100,115,98,4,133,202,231,41,65,112,144,164,243,91,31,65,212,69,240,173,84,211,245,228,166,234,235,75,253,108,254,248,193,171,76,120,30,0,130,143,93,94,198,193,143,172,75,72,254,53,238,8,14,62,242,122,87,2,99,254,249,14,104,72,113,170,171,82,37,184,29,42,242,79,182,96,50,65,1,171,122,155,86,87,29,183,100,98,248,246,37,137,160,237,62,3,209,0,111,151,9,213,165,171,45,20,48,26,151,113,99,241,243,201,102,251,223,85,185,20,199,209,168,243,25,134,91,35,205,24,58,83,159,79,239,198,108,243,212,28,137,183,9,251,9,211,229,72,111,87,73,37,198,38,29,192,17,29,197,190,197,126,6,18,127,89,65,80,251,192,146,242,107,130,71,150,131,182,168,1,99,70,178,81,54,99,191,166,86,250,34,213,192,215,179,102,252,203,219,194,128,179,56,115,164,203,159,91,90,218,205,196,32,75,248,194,249,246,140,42,164,44,82,58,133,2
 32,214,162,215,5,146,153,242,75,92,83,34,151,109,221,58,95,156,245,62,139,192,26,125,61,131,238,87,83,75,79,136,37,142,147,118,116,11,14,0,174,236,114,212,217,64,13,109,157,133,213,218,195,145,194,148,149,121,138,127,226,99,93,76,163,91,178,80,213,180,203,117,195,188,242,53,78,83,101,227,252,195,67,151,61,117,170,80,24,240,145,246,44,151,90,15,100,193,33,25,211,212,108,201,85,46,248,171,252,8,59,30,148,49,241,179,42,33,175,39,198,69,55,63,145,183,202,105,216,238,225,250,167,228,46,114,177,201,40,144,42,237,114,176,81,128,129,25,182,255,200,91,148,198,181,231,123,251,96,16,135,122,133,95,140,100,8,139,50,229,161,116,124,86,26,211,133,28,227,226,46,29,64,93,23,18,180,91,17,125,201,108,6,216,206,91,107,150,32,173,139,19,23,139,218,199,118,221,162,176,216,198,225,79,202,185,43,173,83,220,178,153,175,68,163,147,162,118,40,49,231,26,18,201,68,196,69,183,11,173,128,117,122,111,196,119,22,36,34,8,131,162,5,38,165,241,157,247,67,53,227,244,143,21,47,88,145,152,16,44,79,219,93,72,13,2
 38,86,102,240,30,115,159,127,79,211,99,197,47,39,42,93,217,95,62,172,174,183,199,112,13,105,220,13,232,164,41,206,127,252,90,136,222,119,232,71,138,181,89,36,216,221,82,205,122,144,144,42,66,98,96,0,236,182,43,234,171,145,106,243,1,182,145,55,25,68,255,40,211,107,77,16,28,26,157,148,22,214,202,139,131,48,97,47,217,168,142,217,215,157,139,15,134,46,105,43,167,112,123,189,150,183,139,87,157,2,132,251,21,48,96,148,243,58,97,86,236,135,34,179,63,48,209,27,199,204,96,44,242,182,26,21,54,153,144,45,27,54,128,69,98,87,25,214,156,209,163,219,130,156,159,185,2,45,2,81,72,15,99,162,239,69,232,229,89,132,254,248,84,136,87,28,36,10,244,126,148,132,161,134,1,120,162,78,29,108,7,52,187,222,177,127,176,130,225,115,224,61,228,94,209,233,84,242,40,84,237,41,100,212,83,33,42,100,68,0,111,163,30,21,242,94,190,26,56,244,207,71,216,176,67,215,242,222,182,68,40,180,73,39,175,95,6,187,142,199,53,74,149,180,50,126,95,31,208,152,73,94,39,215,212,130,150,217,79,41,232,233,193,169,7,47,147,34,208,190,
 65,209,179,42,234,51,214,213,111,150,106,105,125,170,4,168,57,100,181,227,75,102,118,92,176,119,0,163,85,168,93,200,170,227,31,245,154,151,72,6,81,197,172,233,166,182,168,51,247,252,136,124,33,225,16,104,159,143,194,14,20,102,118,88,39,170,70,109,95,172,205,99,241,20,114,226,2,140,101,62,197,189,145,204,17,153,216,86,33,141,150,96,79,17,93,27,197,66,250,182,241,119,111,125,38,184,117,219,243,236,65,206,85,254,144,25,171,201,213,38,88,38,186,197,64,25,227,129,212,159,84,5,177,86,125,176,243,113,85,179,92,186,38,84,116,97,11,245,113,92,176,108,175,43,103,124,145,107,70,196,130,197,133,147,169,176,32,139,13,172,59,37,155,216,33,247,84,16,93,38,226,27,110,66,229,72,151,65,38,76,150,119,245,80,39,10,90,106,186,121,20,242,241,101,120,10,131,40,246,43,150,144,42,117,154,184,102,68,62,41,11,187,56,194,30,15,168,201,96,239,76,126,7,55,16,4,179,150,217,180,244,167,58,198,220,146,142,252,141,153,206,229,63,150,31,212,152,114,255,57,55,228,172,155,212,87,13,133,166,77,3,70,207,175,70,11
 ,21,34,122,157,172,45,198,105,126,229,232,97,233,76,31,138,195,112,101,200,129,243,186,90,87,163,104,170,13,185,107,77,174,228,222,112,124,211,124,185,50,137,134,230,81,12,211,66,224,22,236,41,247,35,197,77,58,29,163,15,26,146,72,209,190,64,104,33,102,7,214,9,234,196,122,62,153,97,171,131,159,162,20,34,136,125,13,16,184,244,27,245,81,79,76,243,95,98,210,136,207,5,25,141,148,255,120,255,244,127,43,42,198,158,71,87,207,6,219,110,148,206,116,192,16,185,202,128,211,142,219,136,75,218,83,181,255,218,227,198,181,164,16,19,168,3,129,2,48,183,243,81,35,175,2,117,117,102,187,147,187,127,141,219,158,43,58,39,207,23,156,210,19,186,239,79,9,189,124,133,234,182,178,161,251,232,127,238,195,23,219,112,240,186,184,197,74,210,240,4,117,94,48,191,177,48,144,134,182,120,253,185,221,188,137,25,72,4,76,99,239,157,148,100,19,227,184,131,47,48,32,25,32,62,38,215,213,8,201,92,105,231,245,214,197,135,167,217,176,26,228,108,219,180,192,119,57,168,145,85,114,108,242,197,255,120,156,84,124,97,243,108,8
 3,123,245,149,191,122,98,57,224,164,35,21,127,238,17,237,100,223,31,227,186,62,137,142,13,223,129,99,228,218,180,131,147,244,224,116,54,79,149,85,36,47,100,91,100,204,253,98,158,199,144,148,17,139,200,238,140,233,70,73,83,100,151,220,207,157,128,235,74,250,65,124,223,81,239,165,169,155,24,112,149,32,127,105,13,79,9,79,101,34,58,128,190,39,173,235,105,192,181,230,143,215,149,234,145,24,14,196,240,54,200,130,147,4,2,196,41,13,66,185,183,99,154,184,25,236,90,143,54,191,226,72,84,126,172,239,28,152,187,61,234,66,236,253,136,184,254,210,30,248,131,155,30,11,98,83,229,252,196,59,194,13,173,192,189,77,102,77,195,177,37,201,162,128,237,68,50,225,85,175,186,25,186,139,148,18,107,50,118,142,130,0,249,3,247,98,89,30,77,92,65,228,135,226,172,80,47,186,186,90,126,45,145,111,227,24,79,146,42,67,255,76,53,192,150,169,168,214,104,48,49,132,90,88,34,118,35,57,104,25,164,109,137,157,165,186,76,186,230,215,197,164,175,137,224,89,131,38,146,125,64,243,153,69,186,191,77,34,175,72,134,30,102,157,
 63,242,49,22,222,51,155,154,213,191,253,250,22,21,17,127,21,197,113,160,113,129,158,222,142,207,151,212,51,248,117,165,56,72,100,60,157,214,5,244,83,100,144,88,148,123,253,202,185,57,97,35,63,86,102,199,244,195,132,51,225,2,76,170,49,78,134,87,137,144,205,122,198,138,237,166,6,77,253,194,39,218,150,173,15,169,231,98,47,31,188,116,179,136,116,213,164,220,224,210,36,167,253,213,178,115,120,246,3,13,104,247,208,155,36,23,76,52,170,247,3,81,133,84,235,49,99,114,187,236,107,187,16,220,111,20,203,31,213,174,4,84,108,30,164,192,124,102,135,24,244,131,232,187,69,189,100,240,155,170,197,248,173,151,46,85,252,241,234,217,107,67,86,48,30,100,54,178,20,171,5,1,130,174,94,188,11,171,117,13,0,230,99,242,194,79,223,91,29,172,69,142,49,51,50,213,246,135,133,87,99,154,36,210,172,30,224,116,255,92,160,159,172,57,95,45,123,212,178,20,189,121,152,141,135,84,69,2,225,90,229,234,240,195,116,117,230,178,146,205,133,198,9,88,184,81,155,29,39,3,88,186,16,165,78,163,54,190,220,164,193,30,0,95,131,137
 ,10,63,18,176,46,73,81,164,252,106,192,3,241,163,183,37,231,224,91,83,185,87,253,22,78,185,218,240,191,1,82,62,64,190,178,59,124,102,82,140,70,154,95,220,205,35,160,252,31,199,19,44,33,216,141,110,188,26,166,141,48,16,121,46,146,82,50,233,64,166,196,230,21,74,198,39,117,237,32,177,64,116,47,30,132,200,80,114,224,56,47,53,25,126,37,241,84,55,87,5,214,215,176,234,110,94,223,88,150,74,87,204,112,229,229,227,89,151,108,97,235,49,127,32,40,206,86,209,185,231,89,76,68,125,191,94,29,109,138,242,149,133,32,199,63,219,212,58,161,201,142,207,194,62,108,192,223,117,60,230,140,232,69,236,164,136,206,137,55,116,200,166,230,249,120,107,247,241,80,117,43,151,64,47,226,194,231,182,247,38,19,125,202,84,134,148,21,44,113,197,142,86,200,239,174,62,82,199,157,242,14,236,107,103,132,155,9,254,177,207,250,147,225,124,69,251,71,167,59,237,173,211,254,181,107,180,234,255,200,166,144,22,102,220,126,136,137,254,189,153,148,244,214,109,63,74,199,167,137,176,34,246,3,121,76,98,113,113,106,154,160,89,15
 8,8,116,31,86,138,218,221,0,203,84,4,49,249,76,6,175,11,126,16,188,250,12,114,79,250,96,163,76,53,215,228,49,225,111,105,237,94,255,86,156,118,75,68,11,18,60,155,253,163,97,248,14,184,42,175,248,213,35,68,33,223,165,39,168,98,186,65,7,150,112,248,250,17,109,54,53,192,246,160,222,134,139,42,220,142,71,105,130,10,5,70,245,0,255,5,19,200,76,166,226,170,236,151,215,4,254,64,132,209,159,98,253,66,112,74,209,59,76,164,46,148,154,31,28,217,21,237,42,228,148,197,1,240,208,35,61,160,178,4,17,251,185,232,241,120,166,255,207,120,137,91,77,73,188,212,49,252,96,152,212,180,114,46,27,92,90,230,170,86,155,160,135,120,51,88,136,198,158,50,213,130,122,243,7,83,114,117,33,61,82,125,11,62,67,120,6,202,18,152,161,196,63,229,2,123,223,212,252,25,56,245,133,252,28,67,244,75,36,34,21,137,111,116,191,166,85,212,247,208,119,77,116,249,240,19,139,83,46,149,173,86,161,173,78,153,13,48,93,146,147,148,208,204,53,77,174,202,154,214,114,93,101,34,169,59,69,233,249,12,68,166,224,115,202,112,232,173,128,193
 ,81,184,71,179,66,235,106,20,53,121,202,122,229,248,140,109,151,116,82,238,36,192,17,89,2,176,248,86,66,219,32,147,133,178,69,104,196,62,105,220,123,86,3,136,92,108,142,208,199,141,111,204,88,101,118,195,155,174,203,95,81,20,142,218,231,220,131,204,165,67,220,191,223,106,0,114,98,153,87,26,163,48,86,145,46,245,122,105,173,112,2,235,59,58,175,215,180,91,17,13,129,180,78,105,254,170,236,16,247,30,239,49,90,25,17,91,129,231,231,136,144,190,121,188,126,74,144,143,255,138,228,100,69,196,162,5,157,245,44,50,74,90,154,88,151,11,21,138,156,55,109,145,83,133,83,134,36,48,151,41,38,82,213,212,15,34,171,77,84,143,25,214,237,19,66,123,36,102,110,28,239,190,230,224,24,99,17,165,221,177,32,192,44,189,16,94,250,16,176,205,3,139,109,41,205,172,203,87,225,197,236,206,40,254,241,101,248,145,148,174,75,86,100,48,49,150,222,223,30,115,119,244,85,169,110,12,173,58,215,118,238,190,5,5,248,41,148,90,118,244,202,19,3,164,59,62,249,152,23,58,30,2,220,255,186,149,132,64,98,125,21,48,90,138,203,71,0,2
 41,255,108,31,177,195,219,44,142,82,47,4,11,11,187,31,43,210,8,120,192,151,158,199,94,141,87,95,103,24,110,115,34,204,75,131,116,138,210,205,168,14,157,221,138,209,223,130,34,213,140,181,127,149,76,39,50,210,75,202,80,229,56,62,23,255,236,149,82,82,186,186,191,74,253,116,252,61,82,148,125,64,197,117,204,63,248,239,116,228,100,213,140,14,138,135,145,206,91,99,158,233,9,116,100,2,161,86,170,115,41,98,115,102,98,46,10,114,171,192,36,212,83,149,152,55,10,81,244,94,88,54,176,55,252,24,241,110,214,164,195,254,93,185,80,79,245,28,103,44,71,192,119,241,85,46,195,203,79,186,72,145,122,86,152,146,77,135,198,111,159,98,33,107,190,179,61,202,164,76,81,246,112,10,19,34,82,41,73,5,13,195,88,98,40,124,126,122,111,252,67,128,129,94,119,167,107,54,89,117,65,105,7,233,134,165,81,103,42,102,28,156,92,111,173,167,87,184,129,60,59,179,137,10,81,104,57,166,71,137,189,11,120,202,243,133,247,23,152,181,126,98,102,124,46,61,93,165,190,26,132,81,159,80,76,172,36,129,5,131,142,175,12,74,24,90,16,94,19
 3,10,9,248,163,232,53,165,110,155,212,219,177,231,171,186,181,218,191,167,18,2,201,165,70,192,185,41,27,114,206,251,249,131,91,137,19,237,179,77,233,30,224,0,90,168,201,89,61,153,228,70,84,111,232,130,173,202,174,184,16,158,99,244,238,184,75,233,31,151,239,239,161,206,162,134,220,115,174,187,231,114,117,67,175,0,248,241,28,66,120,202,22,155,201,238,39,69,46,122,235,194,162,176,145,174,82,99,193,97,228,114,72,158,38,164,49,99,199,77,204,83,255,26,10,62,81,44,107,0,90,47,7,215,23,76,48,239,229,156,232,32,168,195,106,205,135,161,56,11,140,243,139,252,150,63,193,211,93,72,203,50,62,80,200,33,79,166,126,80,71,8,29,32,5,187,25,103,166,224,137,148,53,79,152,0,87,93,42,233,92,140,6,182,15,163,74,137,96,83,137,54,147,218,112,60,8,141,207,222,159,97,65,168,85,214,196,96,251,148,82,240,37,134,36,139,185,7,54,229,59,73,42,23,32,114,251,175,220,115,0,10,68,172,162,199,199,91,34,131,35,5,224,137,239,75,84,68,123,151,99,193,59,186,177,115,149,63,0,210,113,195,194,209,85,134,106,85,213,83,2
 6,245,242,96,170,126,67,77,10,131,249,202,225,5,144,181,250,35,63,101,184,37,184,73,249,69,198,44,52,239,246,13,31,107,91,129,60,196,166,22,233,163,121,49,98,138,81,107,73,229,93,53,192,107,41,41,174,198,79,159,29,171,146,176,109,73,11,237,134,236,157,234,220,99,72,240,129,85,119,66,164,191,47,247,165,255,12,11,213,110,247,146,220,65,148,101,198,126,85,119,138,196,96,192,72,33,230,44,114,176,114,130,12,183,192,244,166,207,139,232,39,143,196,4,250,194,241,41,159,106,142,226,115,160,229,213,98,146,233,221,26,186,126,181,117,1,194,24,122,133,62,219,201,90,238,7,138,167,48,73,147,50,192,247,17,25,65,200,63,207,235,174,214,225,255,183,62,35,26,51,221,215,91,159,188,31,161,226,112,126,118,166,178,216,154,190,112,70,125,125,2,188,236,233,161,140,230,30,64,244,237,139,114,230,32,133,72,100,94,139,53,244,149,170,74,18,237,170,172,172,192,255,125,58,124,105,240,24,249,213,105,114,31,228,116,248,246,211,207,219,0,94,180,31,199,78,148,8,144,173,246,243,173,94,90,22,87,58,169,67,158,0,23
 4,96,216,12,155,56,211,98,51,70,94,32,180,224,210,58,224,92,77,7,29,33,12,183,111,154,207,16,164,54,59,40,222,141,233,49,175,136,93,227,251,106,113,159,116,58,234,9,205,119,123,142,122,99,201,162,80,141,150,128,71,231,242,133,138,92,11,42,112,101,4,208,163,112,35,245,0,48,20,4,51,75,168,162,63,136,101,138,75,57,245,247,18,248,117,237,196,109,59,90,62,121,106,181,170,157,230,75,21,139,253,184,185,126,101,141,145,184,71,19,90,220,45,216,231,94,55,120,116,158,124,192,111,93,249,214,108,188,192,126,17,102,180,73,126,164,77,218,9,124,40,89,188,175,228,98,73,231,240,71,110,14,169,132,237,145,52,174,205,193,10,99,154,171,183,67,222,165,244,166,219,196,91,64,95,76,53,113,16,13,62,237,101,134,186,176,127,199,190,42,34,159,166,254,58,115,74,70,184,77,42,135,229,118,31,99,177,177,22,17,153,15,231,103,97,16,72,51,175,33,192,210,244,178,61,240,190,188,154,77,94,210,142,15,68,164,133,176,245,232,42,91,185,15,13,99,48,125,119,119,184,176,154,45,160,154,209,26,253,160,132,86,255,228,84,108,
 41,148,72,225,22,31,203,50,87,208,82,18,175,248,140,93,160,110,74,193,239,216,222,67,175,212,16,157,176,169,68,149,240,71,177,192,178,118,17,168,79,149,242,65,177,178,95,192,108,176,75,92,105,192,13,54,100,154,187,4,59,5,171,120,91,165,157,40,98,126,234,214,152,155,22,75,139,20,135,87,128,145,238,39,158,52,156,82,139,10,129,142,194,110,27,205,147,163,189,121,99,137,16,165,198,175,76,129,251,119,74,19,75,120,4,31,111,136,15,79,111,255,82,226,104,243,27,212,235,195,82,158,183,157,173,74,24,93,60,130,214,120,100,222,174,197,139,64,65,108,48,220,207,76,229,3,107,197,94,121,54,113,50,162,157,9,18,95,106,157,152,173,54,63,21,39,54,105,226,245,110,123,174,124,47,63,2,101,67,77,44,211,173,62,86,136,213,37,109,251,193,100,247,227,236,85,126,67,20,49,198,209,136,142,99,177,126,171,230,237,6,109,32,141,198,202,112,185,157,246,151,16,37,34,239,94,10,36,192,132,13,255,228,250,79,85,206,91,145,54,244,50,210,117,111,54,194,199,126,224,195,6,198,242,40,170,101,19,32,75,132,58,33,159,37,222,
 83,67,215,225,88,32,109,210,118,219,73,2,22,151,226,224,37,20,150,114,216,212,11,143,26,72,231,57,3,80,181,54,157,29,178,135,125,255,232,253,185,56,171,209,205,175,224,90,152,51,95,112,15,184,156,20,22,44,52,115,168,239,101,1,38,78,154,222,144,19,159,186,63,137,180,185,99,199,5,234,222,230,158,3,100,193,42,235,148,102,10,202,201,93,150,95,215,149,221,47,81,19,193,18,25,201,96,223,185,226,28,34,37,40,164,99,117,178,196,124,123,166,93,57,67,2,166,73,34,58,163,42,169,103,86,49,237,160,19,158,206,113,12,85,198,77,137,188,120,162,138,14,147,142,144,91,218,135,248,52,165,203,231,129,228,186,186,119,173,82,0,209,241,163,23,145,12,179,192,140,3,253,214,46,242,75,41,135,119,216,141,112,198,123,226,141,178,83,246,139,176,49,152,43,207,212,28,199,159,2,27,162,29,217,171,152,209,252,133,33,189,72,73,221,12,115,224,12,67,36,53,198,101,182,202,47,1,84,107,93,23,47,78,177,168,38,134,70,241,205,101,80,172,125,127,187,148,150,169,158,192,68,239,218,188,38,240,34,8,5,49,59,192,250,48,18,143,2
 30,63,246,43,46,35,126,191,33,151,207,194,103,192,135,12,183,194,27,10,42,229,194,17,139,248,228,191,122,85,189,11,76,180,91,248,179,203,184,104,205,26,108,248,104,238,197,66,10,14,240,171,40,209,229,0,244,70,235,31,146,53,42,185,8,77,183,151,184,154,103,203,160,183,203,169,187,148,136,220,125,172,133,58,155,242,213,159,60,211,155,72,232,42,179,218,68,252,242,99,205,24,113,40,94,190,126,185,23,182,154,38,30,142,39,229,180,23,5,150,113,143,169,180,102,215,160,54,102,186,78,134,98,240,120,59,201,122,200,75,116,23,249,235,243,53,26,40,28,95,22,9,86,32,107,191,190,212,36,12,182,117,108,211,110,164,188,130,109,76,10,89,43,113,216,173,218,66,91,27,175,254,46,254,182,33,249,153,103,156,227,31,203,23,244,170,196,137,42,97,153,108,92,62,167,209,1,96,177,211,193,69,147,11,193,165,234,24,115,20,164,202,67,234,153,182,230,242,10,28,242,110,40,79,204,11,109,232,24,155,96,241,215,16,175,87,207,123,134,45,196,62,58,26,185,254,219,20,198,23,163,175,32,189,192,134,47,166,136,164,240,38,112,6
 ,231,107,56,75,212,236,2,211,131,221,41,87,115,202,1,148,125,194,83,137,182,108,8,120,162,173,67,104,24,174,84,54,225,168,45,117,30,80,126,200,76,154,229,223,214,145,150,144,251,194,137,217,52,110,30,187,252,145,144,35,100,18,14,229,217,235,27,237,124,83,206,8,183,107,255,173,182,214,236,151,16,231,122,36,250,77,106,168,193,225,67,30,63,140,4,250,46,78,63,27,117,102,93,5,132,107,183,67,45,187,114,120,72,240,124,244,162,75,161,21,160,71,252,235,5,108,126,183,251,63,254,95,169,91,63,245,159,74,114,56,112,126,138,120,220,74,104,57,220,203,77,162,178,221,12,24,4,134,78,45,218,79,58,110,160,252,93,112,250,223,139,131,77,110,159,5,141,1,139,19,27,251,213,147,251,252,255,209,51,61,178,191,107,50,209,5,106,80,233,204,176,20,68,178,93,117,203,184,182,245,15,37,240,64,160,137,242,218,77,153,111,212,38,121,177,160,45,13,208,201,157,37,120,64,60,151,48,159,67,107,86,21,8,147,77,155,97,132,43,188,81,244,228,52,18,9,230,143,192,201,234,130,7,27,79,211,18,37,97,54,121,165,238,229,99,115,17
 3,84,6,194,43,18,163,213,119,43,104,109,217,27,164,165,67,36,206,33,42,185,101,28,219,204,235,68,52,101,204,140,46,1,78,24,42,191,188,94,87,78,80,187,210,122,18,62,91,137,239,68,204,148,10,87,85,150,15,19,166,171,64,65,138,133,9,93,207,247,33,251,208,131,156,234,13,94,218,80,11,58,244,55,11,4,99,252,231,179,95,11,190,3,42,185,88,78,235,83,192,11,163,208,83,81,166,84,4,151,252,202,192,16,100,239,191,219,117,55,236,234,184,205,3,166,34,50,10,8,156,54,235,255,239,43,85,129,82,52,26,91,12,94,26,124,95,219,73,20,1,90,153,241,63,100,175,24,180,32,0,109,87,113,203,168,230,143,17,3,72,80,85,89,249,104,224,97,194,156,30,2,103,183,20,186,107,120,99,232,70,54,135,245,80,84,75,148,210,40,154,14,18,143,148,54,65,152,173,150,102,148,53,80,102,146,236,245,121,145,198,215,217,94,24,131,107,65,70,108,9,160,154,81,88,224,14,241,146,65,25,127,180,23,129,243,127,61,122,55,50,174,144,183,56,220,109,142,123,248,208,222,28,177,157,100,52,114,68,6,92,212,178,112,228,214,192,183,151,217,220,8,200,35
 ,4,179,228,46,100,199,252,42,178,111,42,177,119,12,91,103,185,189,137,131,2,18,225,200,101,8,212,214,159,137,58,113,88,198,251,24,212,28,1,35,241,58,240,249,15,49,99,111,64,139,137,87,60,221,39,161,98,148,207,52,23,219,145,53,129,145,199,213,31,195,186,139,40,11,7,25,56,111,78,101,214,126,154,189,77,133,10,197,57,249,48,214,23,61,40,197,24,128,41,127,81,81,150,66,135,232,146,14,77,90,205,215,203,152,231,145,224,140,194,203,84,106,221,189,198,224,97,168,239,232,22,134,132,13,75,101,232,224,218,117,71,88,47,74,69,68,175,144,8,229,141,15,105,110,242,207,105,135,90,230,198,11,106,138,172,184,165,31,164,65,88,228,214,99,19,62,240,107,179,25,177,114,158,103,199,99,56,3,64,110,27,31,154,209,131,57,211,203,53,186,251,144,20,140,215,135,1,85,65,89,168,138,112,164,127,113,2,244,2,236,126,21,105,242,115,244,119,157,153,161,68,169,65,206,216,236,58,171,117,140,140,113,149,154,127,181,23,129,20,1,135,46,20,76,227,253,41,7,215,79,114,155,225,146,47,12,106,239,44,103,100,21,188,17,82,60,74
 ,103,233,248,233,117,99,11,148,96,18,109,247,246,98,198,124,118,251,22,38,146,86,120,207,108,97,126,38,87,177,47,5,79,185,16,220,203,103,210,49,178,97,190,91,57,75,65,166,44,78,180,236,150,170,52,99,84,246,90,14,231,94,12,118,42,0,250,99,212,30,0,28,39,113,196,255,223,82,82,131,32,129,212,246,131,112,45,117,68,0,200,111,210,55,139,148,21,92,237,196,209,212,60,200,83,176,19,7,20,225,130,229,63,14,211,85,10,33,83,31,188,55,182,32,102,179,27,13,132,128,137,153,138,8,139,69,102,29,142,141,217,41,153,25,109,252,109,170,185,241,43,216,80,248,14,84,174,52,248,207,255,192,219,102,232,103,58,179,158,253,168,116,179,142,212,200,10,99,137,37,231,2,192,214,229,14,54,100,41,110,236,180,24,33,85,235,223,67,160,176,35,142,112,139,6,79,92,213,98,226,222,59,200,96,124,44,16,154,12,3,199,16,194,16,87,231,33,112,54,12,197,164,6,44,185,228,113,65,146,63,192,194,52,249,156,30,57,134,29,204,217,108,42,166,160,184,229,221,151,52,154,165,50,74,193,16,53,4,180,203,178,90,204,32,69,219,5,54,211,57,19
 4,81,226,214,242,117,204,48,29,230,86,193,68,57,80,45,65,179,128,40,245,118,249,140,79,172,71,158,248,98,226,1,254,177,116,151,167,74,182,9,38,139,57,178,11,81,71,177,118,90,102,84,164,229,196,59,122,148,196,23,168,10,125,141,247,43,165,51,48,176,74,0,109,8,199,5,54,152,103,37,197,138,24,47,107,45,237,79,75,66,193,207,76,113,1,102,51,29,134,243,190,221,51,45,95,169,150,228,238,252,153,42,59,175,60,113,34,255,227,17,92,129,141,4,39,222,105,76,213,28,236,15,131,36,81,50,115,184,158,101,203,142,154,232,14,20,160,111,101,143,201,47,217,235,214,112,111,169,28,242,21,73,55,35,110,109,230,53,204,70,171,98,100,88,55,241,176,246,248,218,235,47,58,82,108,57,0,27,108,58,10,222,188,189,23,108,184,249,94,5,204,158,236,131,74,230,192,58,110,93,115,185,178,192,220,112,25,226,205,243,211,187,184,201,180,213,213,44,24,31,186,137,212,77,115,123,99,50,127,154,141,39,48,231,80,141,170,38,191,212,127,86,92,81,53,143,218,76,252,121,246,187,174,21,236,113,144,253,206,169,111,244,207,65,198,50,71,7
 8,219,71,91,236,254,187,87,117,77,24,251,117,88,219,118,21,115,119,54,74,44,183,66,233,12,123,250,225,217,87,249,25,130,121,56,171,7,170,145,159,37,22,196,61,66,65,164,236,149,205,23,228,182,151,204,86,246,163,111,168,154,154,254,74,91,49,235,150,10,121,40,87,78,182,251,180,143,60,242,217,156,78,97,58,215,51,74,25,170,109,62,49,67,207,205,118,106,98,194,47,132,127,171,141,243,192,178,80,193,255,211,82,247,113,127,28,12,51,240,66,183,71,252,50,46,225,62,20,219,138,216,227,19,201,42,187,6,195,123,43,107,123,220,255,2,112,44,196,127,231,85,93,95,31,249,29,210,102,2,49,19,204,217,196,251,155,86,182,188,97,41,43,50,24,110,154,126,88,104,136,222,166,32,4,185,223,24,198,112,119,240,76,60,16,228,115,54,145,93,245,156,88,175,149,98,129,180,57,93,57,255,100,69,209,36,131,220,222,10,61,235,25,247,152,202,121,189,2,84,144,119,132,208,148,250,37,42,57,97,146,71,87,254,218,83,70,138,74,248,80,131,162,222,32,247,59,201,47,47,26,216,218,172,207,92,15,217,234,201,60,83,38,60,140,248,55,33,20
 1,73,80,70,97,203,186,146,111,220,202,248,51,145,79,214,57,67,0,125,82,61,58,70,124,75,242,39,13,83,77,208,56,13,126,218,239,226,112,115,211,152,225,99,23,222,203,146,137,35,237,25,218,245,198,139,30,199,165,250,58,245,84,60,206,210,96,190,184,120,11,200,116,255,184,73,152,147,84,253,144,107,227,249,101,89,127,151,125,186,151,11,174,105,44,219,152,73,203,11,9,45,77,100,84,152,157,29,150,181,172,46,227,185,103,188,15,173,17,200,45,108,105,48,32,239,126,205,65,55,17,190,254,222,180,177,209,157,119,219,169,215,218,121,243,194,69,19,133,45,220,31,169,229,30,150,255,13,5,1,221,95,86,77,250,152,191,114,159,109,66,240,102,52,151,215,154,74,32,131,241,191,207,24,13,159,242,212,222,136,143,7,203,178,18,68,9,98,180,247,10,117,231,152,222,19,137,217,254,22,83,196,12,231,48,99,213,77,17,227,82,254,221,128,13,206,54,148,195,159,17,28,203,127,43,63,39,39,64,141,182,44,110,78,6,243,13,129,17,200,169,109,59,231,37,35,104,93,74,37,140,131,126,227,39,251,233,167,37,205,171,79,205,215,56,82,18
 5,170,25,186,151,140,101,250,175,66,74,156,242,134,120,188,116,125,183,9,178,12,53,143,177,208,144,56,139,211,222,215,26,66,68,248,55,185,47,73,41,70,100,116,171,7,88,120,27,225,130,140,247,164,72,224,208,49,40,72,7,51,177,175,99,131,130,7,232,65,3,156,209,61,47,191,43,211,238,113,68,149,196,132,215,235,150,132,160,153,235,120,177,37,152,69,140,82,103,26,158,244,31,37,202,231,153,95,78,77,11,139,12,176,164,80,94,193,115,156,92,175,231,18,75,95,107,0,217,198,204,128,153,96,207,186,89,89,168,37,112,74,166,72,95,208,92,83,186,154,111,26,118,105,208,26,31,30,116,85,50,93,168,111,174,214,45,218,74,25,36,190,44,213,7,106,151,93,6,61,18,123,178,46,162,141,4,107,17,197,224,209,216,75,50,225,218,217,206,178,30,139,115,172,75,16,206,55,33,72,194,199,66,194,239,191,210,24,68,64,155,144,144,255,218,140,182,95,36,25,128,131,182,213,171,160,34,249,227,180,123,156,7,82,11,249,162,84,169,218,229,246,182,7,164,217,50,91,207,2,202,142,132,4,166,251,109,1,178,139,181,186,245,239,25,142,77,1,19
 2,191,152,163,131,150,91,178,121,251,229,103,3,77,75,185,236,172,110,18,211,16,26,228,196,138,20,54,197,181,184,158,157,66,152,120,177,64,21,14,207,140,216,73,29,46,57,73,16,133,121,27,35,172,172,215,150,153,50,173,227,89,75,107,78,105,248,94,206,86,175,15,7,82,211,123,31,193,140,83,169,242,134,117,160,125,86,174,196,236,3,235,140,132,215,215,4,98,95,74,93,55,91,181,202,254,77,17,22,229,204,200,239,104,156,24,73,221,246,145,245,124,140,28,158,209,72,36,140,96,201,50,180,250,246,135,246,146,117,229,28,31,0,192,86,39,200,208,160,155,116,4,41,130,151,35,40,191,219,81,139,86,35,226,29,117,152,211,145,220,90,26,145,53,48,213,239,86,18,28,79,178,84,70,106,224,142,57,133,106,118,253,102,50,194,71,136,63,86,112,121,92,106,185,203,187,91,111,153,169,175,119,130,23,189,87,175,252,140,152,118,0,84,171,151,227,116,250,236,166,9,184,233,255,101,60,26,194,56,215,49,28,10,174,227,65,75,78,10,15,158,55,104,24,207,8,114,128,114,217,229,180,222,123,71,249,189,51,206,39,215,0,163,111,112,59,13
 2,231,149,138,189,76,215,183,36,23,178,222,103,109,124,16,70,79,237,61,138,194,249,134,99,25,120,162,49,92,37,129,101,64,75,179,245,127,125,88,142,58,197,197,85,34,4,233,78,209,159,230,97,48,78,1,7,226,253,255,126,126,73,128,255,164,44,242,83,228,207,175,148,245,100,170,207,211,254,42,11,235,102,3,171,8,6,86,95,176,179,86,205,82,145,101,232,102,222,23,194,159,206,24,179,155,179,2,199,192,102,74,70,224,121,0,12,126,153,246,134,180,212,152,18,108,148,255,249,214,53,238,162,145,160,208,58,207,175,52,183,184,96,32,155,165,240,92,227,165,44,195,226,19,167,144,58,15,117,149,152,247,197,102,139,225,205,253,9,4,6,77,121,165,80,143,30,198,202,88,149,73,249,84,206,36,213,29,145,245,96,201,13,158,181,196,80,158,238,194,48,113,195,108,56,95,234,253,221,90,232,88,241,178,190,237,40,116,89,57,212,77,50,236,222,192,112,196,45,171,60,14,165,144,32,95,50,134,78,6,17,95,58,225,43,7,100,135,234,183,8,185,126,30,35,168,202,120,189,222,6,66,78,238,197,39,214,139,20,53,21,133,211,75,148,244,218,1
 17,46,28,81,92,248,137,37,85,138,237,41,211,88,226,174,253,31,157,109,46,127,237,148,87,2,32,19,14,50,173,243,85,181,52,55,169,233,151,191,3,221,207,47,166,139,0,104,34,180,78,139,128,223,230,44,213,158,127,131,50,48,169,171,136,249,38,81,80,143,179,77,215,2,120,93,214,207,231,71,28,236,251,241,211,24,160,165,35,53,10,119,214,132,86,67,222,54,203,53,13,55,92,103,85,59,222,56,44,146,83,255,100,99,150,180,158,192,80,4,170,35,163,68,143,32,177,104,185,67,103,62,236,46,57,126,123,103,161,78,112,144,158,69,125,35,120,90,102,65,61,21,26,72,116,160,147,128,202,70,97,108,53,234,209,176,102,47,3,133,185,36,180,93,37,250,2,115,140,125,15,96,48,171,52,235,93,92,38,99,211,92,102,67,199,66,81,26,135,52,222,230,78,3,31,6,41,15,76,117,49,6,121,29,19,36,196,104,218,218,101,5,2,114,147,110,4,90,41,70,9,123,8,245,108,107,83,66,125,192,208,7,142,188,71,150,34,234,217,142,43,115,25,114,3,201,241,232,191,103,232,99,134,223,22,228,154,93,8,146,30,91,79,162,162,162,36,219,67,134,45,61,95,142,151,1
 5,134,56,206,144,68,250,141,5,62,24,58,165,217,122,108,230,189,237,31,76,43,10,20,14,83,62,110,206,125,174,164,253,40,212,122,20,86,174,245,54,111,173,166,49,112,167,117,213,182,50,58,106,97,253,173,15,181,23,235,26,15,181,104,36,201,92,98,132,45,19,196,35,35,81,39,86,155,16,13,160,165,223,170,46,174,29,252,107,75,12,59,101,119,145,225,190,150,37,115,173,149,161,110,131,179,190,195,235,96,214,254,68,39,222,13,144,16,70,217,174,252,87,219,128,47,27,77,36,27,223,151,189,23,102,34,65,133,22,128,0,222,143,140,128,120,24,247,34,171,8,45,161,242,120,234,80,63,156,71,24,68,140,184,2,74,170,231,179,244,96,220,26,185,242,120,38,212,182,43,105,226,193,23,50,57,60,247,134,93,123,133,249,245,146,167,68,126,68,37,164,116,78,116,187,193,34,194,83,133,11,48,58,242,173,88,17,135,88,159,165,129,252,87,221,140,144,166,84,169,44,181,191,68,203,27,8,146,91,48,214,6,58,176,67,198,243,147,122,136,8,248,160,175,121,185,19,41,2,193,8,136,15,9,57,30,58,167,159,131,131,43,102,46,98,196,42,45,8,184,80
 ,131,98,198,85,137,92,139,42,53,138,165,86,151,62,89,233,198,246,128,64,152,94,22,2,187,26,184,226,170,110,27,174,199,152,166,104,201,220,38,197,21,49,93,209,200,167,105,193,9,170,183,90,190,20,171,79,241,196,226,43,203,130,136,192,62,191,88,254,34,118,169,157,38,155,181,11,87,208,24,90,123,156,218,144,253,72,12,141,95,42,24,27,134,37,52,209,97,144,165,103,149,153,149,104,191,31,208,147,26,38,135,253,190,38,221,107,144,192,117,183,51,40,126,62,68,163,223,139,228,76,197,132,74,232,210,99,2,206,2,143,29,253,148,159,132,189,110,158,161,205,90,185,44,145,162,1,142,40,82,75,233,222,93,178,90,160,217,18,39,240,53,180,201,60,136,184,137,227,150,151,123,166,34,148,242,91,120,248,191,48,111,205,114,141,38,50,114,255,170,9,149,125,9,59,49,246,108,251,203,55,41,216,35,133,220,11,172,26,88,40,26,24,100,184,244,173,147,223,221,169,81,114,69,241,150,244,51,96,53,253,237,112,158,23,210,38,0,60,102,8,165,148,135,236,108,145,58,99,213,141,139,229,52,213,0,135,59,198,110,230,86,112,224,232,32
 ,14,25,255,225,19,226,72,136,27,155,228,127,43,72,33,55,75,138,21,8,125,141,190,162,59,109,137,29,60,102,158,29,193,56,47,26,192,231,79,108,69,247,23,230,205,57,91,80,40,129,67,31,139,122,88,77,71,246,112,172,104,155,30,150,183,220,173,203,217,188,248,182,22,61,69,20,236,197,15,255,168,99,236,212,94,36,53,162,177,167,4,227,52,16,85,250,78,139,205,7,106,221,19,96,146,154,35,80,65,116,183,230,106,40,177,159,25,15,217,27,87,164,40,235,123,224,187,142,187,100,67,87,186,98,250,152,54,144,125,27,98,205,66,174,151,254,9,81,201,134,37,54,27,83,219,243,238,179,180,215,69,219,92,49,2,214,119,220,60,96,190,156,90,183,64,3,232,108,59,110,45,0,189,131,201,62,183,66,204,90,82,127,11,96,36,74,71,122,25,242,103,92,3,95,154,160,205,88,239,92,252,210,232,228,246,252,60,28,43,168,62,197,200,100,25,97,20,49,128,222,41,195,13,242,240,233,88,38,33,140,197,233,112,226,212,38,156,53,21,94,44,145,29,53,182,204,130,109,100,175,95,146,5,71,187,109,160,122,249,179,134,38,137,172,154,49,88,199,224,142,1
 75,217,30,254,148,157,222,195,55,17,130,90,183,21,123,221,142,96,165,201,7,250,9,182,195,24,205,223,97,100,195,174,205,247,17,100,227,167,7,140,176,217,36,110,15,121,26,160,181,151,99,148,143,29,180,205,126,196,184,60,67,222,199,200,121,141,229,15,103,173,131,114,49,171,48,0,149,46,183,233,142,206,113,213,20,40,188,135,119,5,22,115,40,215,254,84,221,77,51,141,106,105,229,175,59,175,27,201,216,40,249,189,75,82,38,1,43,66,230,111,79,87,122,184,138,33,214,11,134,183,167,218,231,127,19,120,238,91,175,5,34,160,255,155,122,6,2,55,120,210,162,203,35,201,70,189,109,3,183,139,81,42,229,250,252,114,89,209,213,157,55,47,7,133,230,100,93,228,18,176,6,35,115,165,95,24,26,246,172,152,14,214,250,71,90,205,91,115,205,18,205,194,54,17,163,99,45,159,155,129,86,52,112,68,146,64,152,147,119,37,217,54,19,28,113,46,75,52,147,181,130,157,255,32,11,139,194,15,65,206,127,38,142,185,106,140,161,149,34,236,189,95,44,132,113,226,91,18,230,64,56,226,93,29,90,116,24,188,47,123,53,177,191,121,57,143,116,1
 57,249,88,209,40,88,206,145,228,139,181,67,97,250,22,207,199,148,55,173,124,173,218,149,9,52,46,234,115,149,75,223,159,33,145,64,11,48,29,229,100,62,206,8,14,216,63,39,146,157,204,143,172,196,4,88,65,63,150,171,244,178,40,32,104,9,31,29,38,123,11,174,70,32,173,103,182,46,157,165,219,60,120,4,120,148,87,188,115,168,62,196,78,16,200,122,127,58,167,168,42,113,21,183,115,22,48,131,73,134,176,244,105,185,215,133,93,255,68,242,185,65,223,92,237,88,192,29,180,57,43,142,204,106,89,170,91,175,192,82,95,238,157,51,27,143,148,243,68,191,79,214,33,38,141,25,209,239,145,112,183,48,13,128,169,90,90,104,62,131,246,49,27,46,72,124,24,30,143,217,184,122,180,24,76,224,232,246,21,154,19,97,103,174,131,25,238,232,184,140,93,27,60,111,85,179,9,14,133,122,13,198,206,188,25,64,173,115,175,136,86,197,225,81,102,112,163,203,72,18,133,242,21,146,148,2,221,224,203,75,179,208,49,75,12,62,214,132,56,137,54,157,78,162,250,121,156,1,42,76,106,10,95,174,135,95,81,19,100,144,141,108,82,131,118,38,27,117,23,
 214,166,87,39,108,111,220,247,88,221,86,96,176,97,177,148,43,3,211,32,127,168,84,39,84,85,241,87,239,169,237,223,32,178,217,113,251,108,53,187,144,39,69,156,222,194,16,150,124,35,14,12,176,208,100,218,243,209,43,33,185,164,13,130,217,241,177,18,90,109,42,151,73,189,110,140,120,79,74,78,120,151,40,83,49,55,2,37,27,49,11,23,122,208,103,112,84,227,102,70,78,135,247,221,68,51,82,32,135,117,25,234,93,179,180,30,188,193,228,89,28,59,226,36,227,212,94,62,7,75,170,179,142,243,73,169,103,117,232,35,68,21,93,162,195,133,21,200,205,174,161,251,136,54,139,174,95,41,145,235,71,182,79,71,12,118,160,242,61,35,214,124,17,98,63,69,55,9,199,75,65,21,146,38,126,102,71,240,82,203,131,223,84,23,253,18,221,48,6,94,97,207,191,254,232,155,176,87,72,255,132,184,134,134,146,13,79,123,192,221,24,114,133,252,9,175,102,121,3,213,36,48,251,89,67,34,214,108,102,104,134,101,137,251,99,167,64,87,160,112,6,138,209,214,140,117,190,253,145,241,192,150,45,124,50,47,131,188,191,68,100,29,209,96,244,98,193,49,83,
 145,84,175,220,253,131,210,19,133,102,176,20,244,108,52,83,225,168,251,184,40,230,137,214,40,99,178,134,35,132,63,191,137,98,212,141,17,233,7,182,135,164,83,180,42,205,223,97,210,211,120,164,250,106,237,58,214,76,232,151,92,205,108,7,209,253,43,96,177,54,205,204,209,17,164,58,99,242,97,227,86,73,201,106,159,164,191,100,237,64,253,245,231,119,85,58,92,113,93,180,250,64,138,211,253,64,42,119,112,5,228,48,140,58,232,255,137,216,92,242,72,111,235,102,236,241,165,16,171,195,118,101,216,172,9,153,61,110,105,214,170,123,2,129,98,70,27,7,197,2,52,8,3,253,180,71,185,109,1,30,74,218,104,230,57,217,115,23,212,225,154,166,171,2,121,180,235,18,3,79,212,185,178,117,228,136,220,161,11,93,154,52,180,19,138,186,138,229,158,165,56,206,24,41,23,25,200,22,51,47,249,248,15,23,167,45,160,97,199,83,37,112,236,23,175,87,48,24,10,155,237,20,246,133,7,90,203,116,43,138,6,192,161,75,8,93,44,34,238,149,124,129,55,114,126,8,155,148,203,164,138,226,98,64,132,198,195,241,204,72,226,189,28,178,52,219,33,18
 9,97,122,11,37,22,120,116,139,191,58,41,25,61,7,210,79,131,39,68,161,2,73,121,87,6,12,106,133,74,123,9,19,137,224,45,140,200,100,27,208,180,246,140,3,169,149,118,38,75,131,214,73,248,113,156,1,73,218,196,71,223,5,88,188,135,187,170,95,86,98,63,76,127,4,177,86,62,227,211,35,223,12,5,245,108,100,55,88,223,171,11,120,202,171,42,249,78,242,95,19,81,153,195,127,142,29,115,196,13,96,47,171,187,168,12,54,3,218,125,144,227,251,190,13,41,180,220,34,94,39,32,185,1,189,205,27,146,237,112,157,193,190,114,79,83,71,209,247,145,108,148,183,150,57,6,59,51,220,207,70,212,254,107,191,120,42,239,72,163,92,159,87,139,61,70,38,17,203,187,15,163,75,167,51,83,212,213,180,79,226,240,176,232,242,186,151,32,70,48,14,190,0,139,124,244,109,122,227,253,113,102,214,76,2,79,150,242,168,170,159,13,215,215,85,251,193,207,190,3,54,136,66,68,107,30,170,146,174,228,99,175,135,174,35,90,17,63,217,99,41,169,252,114,208,37,182,37,167,235,222,150,102,74,34,245,225,34,236,155,81,232,60,212,227,138,246,50,226,95,230
 ,143,160,19,27,65,255,127,122,8,16,236,94,34,48,248,9,217,72,43,232,43,73,115,50,118,120,37,175,202,233,156,214,129,248,242,176,198,221,219,209,24,71,178,102,224,198,68,190,216,174,164,18,198,253,146,11,49,130,102,9,48,218,122,107,95,232,233,146,148,222,59,69,140,240,71,18,173,181,235,24,217,35,122,210,245,156,24,41,132,32,119,78,117,148,28,235,147,216,51,226,144,30,241,251,122,135,17,64,190,131,75,255,240,153,139,227,57,248,35,161,31,137,212,119,16,183,103,247,201,223,146,48,124,173,171,202,25,178,233,3,110,160,207,228,63,4,153,225,182,80,242,101,74,26,155,121,139,167,19,136,211,0,49,130,214,113,172,204,106,153,162,63,147,17,34,124,197,107,224,50,196,10,9,90,86,85,102,18,64,52,92,184,228,55,29,219,255,171,216,2,102,9,212,51,88,10,113,183,209,110,115,24,233,200,43,170,83,52,199,14,98,91,21,134,119,156,126,239,76,247,249,108,145,172,59,130,5,58,146,160,222,54,2,154,130,191,205,228,202,22,230,63,15,126,40,91,141,70,0,55,8,70,132,230,81,123,73,198,51,105,70,194,77,133,138,243,5
 2,109,51,60,26,93,83,182,230,187,26,66,223,200,252,154,39,37,144,26,144,160,204,151,88,20,33,229,177,72,88,5,146,202,123,243,249,113,99,209,88,0,23,168,42,118,68,231,35,159,95,28,21,56,32,252,125,37,97,83,113,56,111,73,84,211,94,203,75,48,142,179,79,59,69,107,37,72,172,12,201,182,211,28,110,103,163,140,113,197,110,131,32,2,184,208,108,174,20,199,95,214,251,16,166,79,132,203,88,22,222,248,102,157,70,159,224,31,76,26,9,243,217,18,165,56,152,162,141,187,46,161,10,91,174,14,19,134,93,211,232,27,247,165,131,218,201,207,199,108,209,162,158,106,75,31,170,89,73,170,101,245,109,17,64,203,2,4,142,248,177,99,180,251,184,230,247,55,5,137,250,45,79,37,137,127,200,151,236,49,202,144,212,143,86,204,35,204,165,65,24,102,151,210,220,188,170,81,199,207,39,227,131,246,30,93,227,38,67,93,54,88,113,244,216,247,143,196,78,218,136,158,153,219,254,82,205,184,20,74,232,59,237,93,178,196,46,22,69,118,3,220,159,254,71,176,134,53,223,143,25,62,207,7,200,189,242,77,172,229,28,177,54,42,56,186,140,216,99
 ,19,178,233,11,29,236,184,33,118,119,116,14,117,160,34,122,176,199,86,97,106,153,179,244,250,84,65,92,228,173,103,134,149,120,248,249,236,65,112,215,237,197,40,249,213,132,35,61,67,45,65,66,139,106,116,55,239,237,194,15,208,64,216,117,17,187,114,92,156,149,49,236,245,230,83,45,203,59,50,36,114,108,171,103,55,68,202,191,148,65,102,170,190,171,213,79,156,138,199,168,130,42,85,195,59,8,130,130,166,237,115,25,116,218,12,128,60,114,130,230,240,246,146,158,69,184,218,231,153,11,190,180,82,235,179,84,141,102,116,73,172,217,108,96,45,87,220,151,243,32,83,136,41,50,183,41,129,34,211,23,184,83,244,175,2,170,27,105,100,36,252,87,21,26,4,215,14,129,11,58,176,92,28,47,186,87,99,95,241,117,88,140,246,135,75,133,154,136,61,141,195,109,134,179,108,135,166,137,2,88,204,131,205,174,18,185,171,113,155,38,197,3,112,94,40,141,204,1,200,6,172,165,203,131,201,163,71,61,104,121,249,242,7,68,57,186,36,85,87,15,153,113,239,0,167,238,129,85,27,12,91,17,132,163,121,115,224,192,243,248,133,191,213,230,7
 3,48,186,127,48,221,229,65,169,101,72,112,22,78,225,8,175,254,123,235,203,104,201,162,173,170,128,26,22,81,40,251,191,74,40,207,95,98,19,156,69,105,227,249,57,0,191,107,141,59,209,146,14,70,133,3,106,171,188,87,37,173,216,27,61,108,143,64,222,182,199,250,3,137,17,47,73,28,209,24,235,67,135,121,11,254,242,62,123,20,216,70,224,189,11,49,150,28,178,172,4,91,200,165,135,101,111,160,236,125,67,217,60,21,88,245,225,179,25,174,37,24,116,79,135,101,78,141,214,128,4,184,18,108,3,15,43,101,149,29,63,232,207,108,228,94,4,242,213,37,66,120,218,153,227,112,199,197,49,9,176,209,63,120,80,60,17,115,51,200,106,216,166,237,24,102,252,7,65,198,110,52,109,86,10,168,219,68,11,179,111,62,16,240,80,165,4,192,111,4,129,199,82,55,112,227,132,142,203,136,166,133,241,110,218,88,122,69,48,74,57,228,144,106,169,42,149,218,244,92,217,53,121,90,9,135,54,196,154,39,106,241,231,150,105,27,187,125,32,233,234,240,150,251,51,133,192,86,157,14,80,138,76,100,203,3,240,253,222,73,13,170,253,3,199,63,48,83,209,20
 5,73,164,34,253,11,43,76,38,130,194,106,217,192,227,114,159,175,147,184,115,162,130,180,248,41,186,109,182,177,99,95,124,12,145,214,197,36,157,166,100,48,158,197,15,73,145,232,39,231,109,156,182,203,188,94,77,79,211,28,155,23,81,51,79,151,242,30,21,4,214,149,64,234,2,220,233,52,3,239,42,104,42,119,164,122,58,229,77,53,138,237,165,252,183,216,71,71,9,153,213,205,185,234,230,205,51,165,27,162,167,219,101,223,221,195,3,120,226,104,66,87,160,89,217,201,169,58,0,13,39,48,133,14,146,50,120,74,7,0,216,245,169,24,114,58,149,220,126,209,55,12,213,193,162,235,230,187,209,249,0,91,0,0,136,118,106,21,209,69,25,239,122,235,101,165,184,212,168,183,158,208,93,19,107,215,157,219,34,150,104,243,101,34,94,105,127,248,226,79,152,149,176,55,55,145,92,164,187,146,96,34,19,219,122,152,19,20,243,68,228,136,206,125,25,142,184,19,0,237,228,225,229,223,50,48,156,191,167,186,25,69,106,5,122,111,123,126,170,29,245,83,218,170,132,130,156,138,204,52,202,137,209,10,9,41,4,133,232,129,23,253,153,56,127,42,
 185,23,245,148,34,170,15,255,163,171,57,13,139,70,50,208,89,252,203,13,229,192,215,51,109,82,15,196,162,74,255,248,38,183,76,207,10,170,121,211,53,186,110,181,159,60,176,32,247,223,151,56,30,42,80,103,202,26,214,44,69,48,220,208,219,212,90,56,133,50,65,72,154,87,124,12,58,52,166,93,129,8,222,149,214,114,178,130,148,78,101,213,29,97,62,100,137,195,176,19,54,234,102,149,111,185,40,156,190,231,13,143,228,40,98,194,181,178,71,69,70,159,20,46,75,154,69,66,125,99,73,143,152,77,20,180,148,45,2,130,230,119,89,17,207,182,226,9,216,149,174,111,141,250,242,57,136,52,115,48,242,91,98,163,72,248,150,68,104,94,173,219,42,140,53,219,170,57,189,189,92,67,227,147,53,71,75,96,147,126,75,140,128,199,110,73,71,13,8,55,113,85,115,149,83,81,202,37,64,65,44,160,217,85,22,96,222,238,117,103,202,18,97,243,117,163,223,149,118,52,136,0,129,63,161,28,103,76,102,42,236,34,82,136,159,137,97,241,217,151,128,201,46,120,217,65,156,125,125,208,155,139,10,50,246,215,1,84,224,76,246,136,169,63,17,241,153,251,2
 28,188,144,38,149,16,125,57,209,44,17,209,61,67,133,43,131,143,16,160,156,41,179,213,228,45,96,99,243,58,46,137,158,227,157,62,40,108,208,104,228,50,218,175,20,108,250,84,251,250,250,82,132,37,197,43,7,141,87,14,210,118,230,183,120,88,28,92,73,117,46,118,48,127,112,38,56,161,172,119,114,65,234,177,4,195,66,92,50,45,167,214,152,232,98,111,108,114,189,150,191,208,81,66,110,125,177,190,108,207,215,19,171,169,7,199,194,0,188,176,208,142,13,248,212,5,249,27,112,163,210,1,61,0,150,172,105,217,182,144,140,18,246,17,100,12,116,198,86,163,110,182,121,143,229,247,10,201,235,85,169,188,17,37,103,171,194,192,77,185,252,166,41,211,135,157,55,230,201,213,111,204,245,183,227,7,111,156,246,65,191,154,136,231,30,159,162,152,68,7,100,214,220,33,228,179,110,134,252,249,201,206,220,93,244,84,48,81,97,48,30,223,65,82,168,192,31,227,114,81,42,53,117,112,53,191,5,71,192,122,229,234,245,68,187,207,217,44,116,228,210,210,146,120,36,34,128,239,225,37,133,29,95,184,245,237,253,35,20,181,53,22,58,238,3
 5,220,224,154,215,54,204,196,84,70,69,134,247,171,11,180,229,119,88,77,61,10,41,43,210,186,57,112,197,26,40,56,129,55,186,16,0,71,177,170,55,80,60,225,92,143,56,191,164,254,221,92,218,5,195,109,74,61,86,135,255,3,145,239,174,45,193,17,212,151,6,223,160,53,26,160,196,170,111,74,72,190,127,158,36,147,121,40,211,79,124,225,158,24,55,15,80,182,94,160,238,248,154,71,41,207,30,199,35,60,92,44,42,183,228,59,114,117,92,85,41,17,19,155,216,136,125,145,253,223,242,195,135,25,172,255,199,132,217,219,183,91,25,30,226,218,215,243,99,222,255,215,156,54,250,124,212,26,213,134,60,221,237,86,174,109,168,4,175,164,170,129,194,53,167,179,119,238,200,27,30,67,195,191,14,244,244,233,37,229,12,142,175,47,52,28,25,28,155,3,210,191,214,190,255,109,206,163,83,188,44,135,206,19,6,110,115,149,153,248,163,204,208,53,164,85,244,187,84,129,240,1,184,21,56,22,13,196,189,149,152,237,65,192,37,165,231,226,186,38,0,60,22,254,162,35,54,211,142,87,16,2,201,146,11,179,195,78,92,185,107,205,138,2,14,102,154,107,
 91,140,126,157,154,67,25,169,237,182,204,205,7,244,112,8,130,32,247,50,8,219,232,230,67,60,153,123,55,128,172,161,162,103,69,113,41,245,175,121,79,25,203,230,116,241,3,187,202,35,154,80,159,228,199,52,53,242,32,22,86,78,244,88,96,174,228,74,36,28,15,1,230,195,135,150,109,128,96,125,43,50,194,230,180,26,74,132,131,69,157,30,78,54,28,227,88,76,23,218,112,221,203,79,124,198,13,111,170,159,42,255,46,246,113,149,212,90,154,145,34,154,175,220,114,131,196,73,62,106,23,69,135,135,77,199,38,122,158,98,24,238,188,191,183,180,113,180,243,136,64,120,231,173,188,5,99,201,193,57,3,70,229,146,195,182,50,143,254,231,179,163,237,9,48,40,128,185,21,183,80,238,30,204,226,204,181,226,10,119,20,72,189,146,142,113,23,218,153,92,192,150,253,237,116,134,103,150,80,213,233,150,204,92,145,245,195,248,151,43,109,218,243,238,205,146,155,34,181,229,3,66,104,37,181,9,217,228,244,90,58,38,194,2,69,90,38,178,40,26,31,159,199,247,215,242,221,227,91,63,192,55,74,78,77,236,235,109,157,100,23,99,146,59,166,222
 ,207,192,82,250,72,126,115,51,81,147,56,249,241,23,62,136,30,2,12,170,42,29,251,162,48,122,19,129,230,198,73,145,33,238,252,53,191,100,142,145,122,207,158,181,63,70,239,27,10,95,8,251,92,34,252,62,195,202,67,114,88,63,46,183,120,72,87,166,196,33,183,189,54,166,148,241,231,224,40,71,51,145,2,170,111,161,234,199,183,183,138,110,31,134,179,179,92,211,13,211,185,116,54,111,215,207,131,197,177,121,236,255,153,213,72,243,176,215,41,110,159,196,111,162,248,234,112,176,112,179,139,19,54,20,38,242,135,243,116,89,82,168,108,182,212,20,23,128,155,179,11,211,213,177,185,172,173,152,198,36,85,90,8,8,72,154,210,71,16,110,217,163,128,4,129,152,187,92,194,169,68,165,73,237,62,160,26,231,18,169,231,167,165,234,196,226,229,239,193,175,0,103,48,80,38,47,49,188,227,98,83,56,120,28,60,130,158,150,204,85,70,143,96,148,84,155,49,111,32,190,23,102,114,51,167,228,246,117,174,239,225,55,3,6,146,66,133,120,36,85,163,139,110,29,242,116,49,243,152,77,203,106,106,73,214,174,0,180,184,213,44,223,250,3,99,
 50,244,177,85,57,141,83,201,251,199,135,130,178,96,40,199,156,81,207,93,115,234,202,176,252,58,243,237,6,10,127,94,116,106,183,163,9,113,81,57,61,203,110,0,75,149,35,244,166,109,131,18,4,154,225,60,179,108,24,244,190,172,155,96,116,85,108,143,208,148,26,57,173,89,215,165,213,1,172,73,148,126,16,85,135,149,2,236,175,87,136,131,44,148,6,138,10,88,70,52,8,179,17,13,222,55,186,170,140,176,1,142,242,61,103,125,64,187,115,65,106,154,140,244,86,224,17,130,191,88,190,42,96,54,223,2,204,5,220,46,12,2,183,106,179,53,18,17,253,243,44,58,187,250,139,176,97,53,217,184,194,47,84,49,52,52,87,165,81,150,83,190,227,20,165,185,91,51,41,114,134,192,3,0,10,152,52,223,178,242,27,0,28,224,242,17,255,51,10,244,30,124,113,232,50,184,121,117,48,208,13,91,132,161,212,7,243,203,182,153,162,77,101,212,93,196,124,252,2,27,190,147,7,232,43,219,58,0,11,45,88,90,126,93,42,18,43,14,144,86,227,12,95,107,174,25,242,1,149,94,240,124,243,202,50,130,145,39,81,20,70,36,244,138,86,136,176,23,65,160,90,83,121,142,1
 97,111,233,234,133,245,9,41,221,10,148,247,191,6,59,222,153,182,149,193,216,41,93,78,12,211,175,109,99,175,97,117,224,229,254,190,173,125,92,81,123,219,58,51,69,114,75,157,47,38,8,56,26,213,140,53,79,159,179,172,124,191,210,47,173,211,244,37,46,60,189,165,147,149,205,238,196,46,182,54,0,27,123,237,159,151,80,27,214,98,164,118,41,164,40,60,69,183,204,198,15,54,23,131,156,30,77,167,108,121,186,78,153,191,187,209,227,200,138,144,160,99,126,240,166,239,157,116,198,138,186,70,121,64,245,119,115,111,104,50,97,178,83,170,254,202,102,100,248,210,4,42,24,29,175,202,76,90,168,241,84,72,150,88,116,134,89,238,161,248,194,230,241,179,121,179,44,10,63,161,14,133,199,28,109,198,36,225,26,91,161,81,146,218,246,181,175,191,212,153,70,11,133,4,230,22,242,70,63,150,70,47,241,53,233,67,33,20,141,97,238,193,130,244,250,231,67,247,105,246,62,105,100,231,199,74,106,56,36,71,49,96,43,188,134,211,80,13,154,49,157,90,0,149,70,182,148,166,17,138,87,173,245,80,190,100,191,114,55,148,221,197,87,64,162,6
 8,217,110,218,79,130,234,139,225,158,2,179,51,12,176,10,11,114,155,151,145,183,129,91,129,139,74,58,189,147,128,178,127,156,244,246,27,198,139,147,132,54,167,80,112,121,240,217,99,217,242,43,130,246,163,111,253,215,161,178,254,111,83,222,236,99,92,134,147,214,31,98,220,215,141,197,236,135,111,40,240,168,205,100,52,7,43,74,237,68,107,196,133,114,78,3,39,57,70,95,28,231,165,72,232,144,91,116,104,4,38,198,235,116,37,136,229,34,213,44,152,125,214,87,243,219,87,80,212,203,206,143,188,55,223,156,182,76,255,19,209,104,235,131,143,58,188,203,201,216,179,87,6,152,224,31,139,102,92,173,218,119,89,232,130,126,41,130,35,97,42,84,100,129,143,33,219,83,75,97,248,104,5,90,127,129,147,221,86,209,228,60,162,71,91,135,197,32,136,143,114,171,194,207,186,214,26,250,168,137,104,170,130,58,69,113,228,43,113,255,74,151,176,19,75,200,95,214,48,133,63,109,114,170,29,153,115,223,83,3,162,156,33,24,163,66,85,238,133,63,23,96,11,157,145,208,18,103,168,165,84,201,116,43,9,0,11,179,177,107,14,135,227,115
 ,239,52,227,197,102,227,61,159,156,204,159,9,170,188,28,44,23,9,61,179,84,28,168,186,166,244,210,230,82,240,178,91,153,164,24,144,93,64,41,82,16,109,152,77,164,52,168,33,189,25,0,137,55,223,184,105,36,122,223,104,4,31,224,52,207,45,128,222,166,24,195,186,66,81,254,226,225,108,118,67,164,187,182,127,103,133,77,18,95,109,195,189,34,60,189,158,35,61,238,186,143,84,237,246,29,48,111,195,137,147,145,8,145,60,232,225,119,198,57,95,77,130,34,27,225,36,87,241,18,208,2,194,33,223,51,152,148,74,117,223,97,230,64,252,236,76,70,213,97,58,234,95,133,77,220,57,102,97,63,93,241,79,98,210,222,232,28,21,19,124,14,170,16,76,182,92,235,140,248,179,18,69,41,77,242,216,173,46,59,97,234,6,206,62,82,11,193,93,94,110,39,136,204,45,176,234,120,59,148,157,100,48,57,194,221,170,98,248,105,226,190,117,18,11,156,42,217,232,213,19,51,81,124,148,218,135,101,58,167,198,64,193,23,167,210,177,141,81,178,152,124,155,114,162,249,109,82,249,194,241,7,213,25,84,153,154,129,160,47,252,133,178,11,150,210,100,177,2
 32,23,89,35,47,232,147,1,123,6,228,105,221,132,203,247,87,108,244,118,248,219,201,95,30,193,129,0,224,198,176,127,252,69,114,205,184,47,171,148,98,137,102,217,92,161,124,7,26,22,113,5,136,43,35,234,13,178,152,126,37,73,69,164,159,9,69,94,52,217,90,74,24,112,248,112,156,95,128,115,96,215,213,113,117,87,87,245,241,120,238,18,252,50,97,78,234,132,100,85,66,24,187,70,3,18,142,251,150,131,222,80,59,11,125,232,126,21,44,109,122,206,200,32,242,126,48,161,206,59,54,5,169,158,175,66,213,60,102,220,161,17,166,172,125,183,51,79,239,200,210,124,224,72,148,51,50,89,234,215,16,180,76,118,152,146,75,213,112,37,189,38,109,52,4,11,133,18,191,150,163,51,126,175,171,209,232,237,190,143,0,153,232,106,16,41,123,87,103,7,26,196,161,24,204,78,87,142,246,171,6,144,216,204,125,254,82,65,192,7,133,213,30,13,102,25,172,200,10,194,41,26,6,162,35,33,238,247,73,2,104,176,84,204,245,75,164,171,179,225,79,180,149,25,250,80,43,117,113,43,123,97,105,248,170,232,202,167,29,238,241,41,188,229,105,49,86,239,154
 ,231,0,112,126,9,169,83,92,130,193,241,243,143,196,109,51,233,118,220,38,21,105,31,154,173,232,148,255,225,246,75,197,97,200,178,76,208,193,55,168,52,175,121,103,236,28,212,175,61,60,63,125,39,128,182,142,196,252,242,4,47,153,244,136,221,146,204,249,131,153,216,131,193,104,254,12,60,102,101,192,192,26,185,227,33,18,63,137,45,67,35,221,161,34,115,182,188,51,156,118,73,92,110,194,134,0,97,32,168,165,125,142,174,140,45,243,153,3,1,160,54,247,7,77,249,197,105,27,250,127,67,0,170,114,94,9,52,91,239,7,63,217,162,172,30,226,224,109,239,170,34,237,117,163,50,90,46,193,145,79,106,199,86,127,79,123,154,244,123,196,71,78,191,248,133,205,99,169,131,51,248,233,177,110,178,115,203,48,67,142,73,5,107,153,56,238,68,139,236,95,3,55,4,152,52,181,253,171,133,240,30,182,71,21,81,125,111,125,6,239,86,232,148,93,239,202,186,235,18,3,22,2,183,94,168,139,251,205,162,34,18,95,172,157,45,237,132,205,248,206,245,33,216,87,146,147,93,183,134,166,11,16,199,103,131,45,143,135,23,0,9,124,97,135,133,35,122
 ,82,252,255,160,71,96,137,225,29,114,21,173,227,18,237,183,19,64,225,70,174,248,142,191,172,230,201,147,176,201,51,233,120,117,177,116,137,157,33,157,2,26,147,139,105,69,98,91,7,114,33,175,198,65,200,130,24,172,249,113,133,221,236,207,246,80,166,109,242,112,229,7,96,12,85,134,200,69,221,4,104,117,216,199,115,212,83,234,161,129,179,44,15,215,234,123,90,23,182,172,139,80,240,39,36,205,63,114,46,155,221,102,137,35,249,103,31,145,203,91,28,0,11,202,155,145,162,221,219,181,100,150,250,177,244,22,95,145,226,68,217,247,224,44,60,255,211,217,242,16,220,45,85,216,52,173,113,253,5,181,239,89,151,102,114,165,60,199,35,240,124,224,58,189,197,143,115,212,36,24,247,157,9,10,67,225,72,1,40,184,160,137,239,166,192,0,107,8,172,65,169,255,8,239,209,101,183,166,204,54,114,250,0,145,103,208,146,238,119,213,11,233,68,51,217,252,94,204,152,215,238,43,81,121,89,55,29,144,236,234,113,45,69,34,49,38,2,22,197,181,44,27,39,176,171,101,50,115,96,172,227,73,122,102,193,241,84,105,4,174,224,138,217,216,2
 11,171,181,65,252,228,125,207,94,235,100,70,0,82,9,115,241,43,205,74,246,196,130,22,235,9,185,151,104,116,45,206,208,67,148,233,84,186,122,178,143,66,5,229,247,129,82,17,138,144,14,97,23,0,70,83,224,209,48,227,214,46,233,37,19,160,222,101,48,230,150,250,125,39,114,127,119,107,130,211,70,40,58,9,104,244,29,1,91,172,41,230,2,61,211,71,21,41,21,87,227,159,165,119,176,30,27,70,133,173,57,160,125,254,200,157,158,198,177,92,113,220,140,173,42,179,71,177,107,160,34,42,1,44,57,193,101,235,204,131,88,101,210,80,12,188,105,45,126,254,99,174,75,236,147,198,210,81,80,127,203,81,236,103,190,152,176,120,255,93,159,170,152,68,18,100,232,1,128,160,179,154,249,19,222,180,123,64,91,42,122,4,63,204,194,94,100,91,234,214,47,224,45,158,3,198,36,159,94,156,238,50,199,37,68,245,237,224,239,173,18,43,254,130,235,77,93,248,169,20,18,40,209,233,217,251,244,137,57,86,209,249,62,209,150,172,96,250,68,39,88,7,81,233,67,219,130,14,54,144,105,116,184,8,128,170,177,104,13,2,247,50,182,132,149,7,112,248,132
 ,18,155,54,201,151,145,197,143,183,8,182,232,146,143,114,138,158,152,125,176,115,49,24,117,123,12,254,111,116,49,126,154,79,26,188,200,193,5,4,4,223,56,89,123,71,53,211,116,34,164,191,219,137,133,254,198,102,225,169,186,103,51,89,52,249,212,68,3,182,212,126,19,244,39,167,183,55,18,123,210,165,149,147,95,176,41,11,190,154,192,96,57,246,10,229,35,70,14,133,250,116,59,201,233,98,34,123,205,110,107,147,223,64,193,244,164,136,99,36,7,32,244,64,21,223,102,47,166,123,70,15,76,9,60,222,26,22,193,55,100,239,165,77,131,188,154,213,25,143,102,227,122,208,248,6,11,26,209,95,35,49,228,246,138,8,192,11,146,111,119,216,216,64,143,102,37,148,168,77,24,129,203,180,159,131,73,85,97,61,0,203,73,240,254,144,59,32,122,158,134,66,5,190,144,239,173,27,62,239,119,222,75,84,198,141,246,0,5,16,72,57,5,174,52,56,39,90,211,4,252,159,148,247,106,171,122,133,234,130,15,93,242,91,81,184,90,17,236,196,189,149,35,213,25,185,62,142,84,77,254,188,168,13,180,248,82,1,111,59,211,41,255,112,191,43,29,231,216,117
 ,173,80,44,184,244,135,98,64,109,123,207,88,55,177,21,98,56,183,165,157,111,30,31,24,242,117,122,93,105,208,142,71,201,139,209,32,35,201,147,250,251,14,73,42,228,81,195,49,234,157,201,76,217,140,101,145,113,182,181,130,123,150,29,140,220,4,39,235,209,43,124,0,102,192,185,128,68,41,31,62,62,15,121,13,46,106,189,202,30,137,175,236,240,159,40,129,151,233,25,188,155,213,159,246,237,113,128,133,136,64,107,199,154,223,174,248,171,198,210,173,224,20,189,130,79,66,113,100,182,251,49,83,92,249,241,233,6,142,127,223,167,146,235,217,181,15,211,189,139,72,205,138,115,209,233,170,78,146,17,68,54,226,218,206,159,79,171,235,86,98,124,0,146,192,167,199,161,162,136,38,41,104,209,104,8,135,219,232,191,100,82,214,85,24,7,156,157,184,162,149,236,68,167,228,8,20,207,228,130,216,233,120,82,112,156,227,195,183,28,37,235,133,116,164,89,45,28,29,188,198,230,231,186,213,27,65,75,227,43,187,8,244,149,133,116,246,113,217,32,89,178,239,137,176,117,41,66,107,209,11,73,225,145,110,60,162,182,98,150,222,98
 ,254,194,80,12,214,167,99,49,255,107,167,60,233,180,134,191,122,231,169,110,34,124,178,130,240,181,217,79,251,39,85,29,123,34,59,4,162,149,251,78,94,223,122,163,12,28,36,77,182,133,16,146,13,180,99,57,38,163,109,34,115,69,94,160,193,29,28,63,232,8,82,119,239,255,46,127,51,79,198,116,192,247,144,60,152,49,1,225,73,200,65,167,132,86,220,65,109,37,23,33,115,211,170,188,112,140,21,8,180,1,152,233,215,130,27,237,3,202,245,250,52,208,129,226,201,98,97,127,15,142,115,27,181,201,166,25,66,26,200,61,30,190,194,247,210,72,60,139,112,190,208,167,253,40,36,126,189,37,54,176,54,135,172,142,125,165,105,76,188,216,113,25,194,243,207,83,81,29,84,162,239,209,214,134,32,126,100,185,66,0,35,144,113,218,143,126,156,145,192,0,156,240,163,191,136,55,83,60,16,204,127,177,155,89,191,7,177,97,22,137,30,198,72,66,137,124,5,30,113,98,251,104,198,254,94,200,115,224,82,141,144,60,106,110,116,230,97,26,247,215,234,4,238,71,194,17,101,231,77,76,219,213,71,190,29,194,132,247,18,28,88,5,18,108,136,4,93,65,2
 39,53,117,208,28,213,217,39,34,198,69,6,114,192,131,105,113,233,22,19,48,107,27,129,26,231,62,80,99,243,78,20,5,192,136,176,206,59,2,153,10,142,9,202,211,211,119,171,236,88,121,82,231,11,17,83,213,177,42,235,234,234,138,50,202,190,187,42,41,215,218,208,105,40,180,186,204,157,235,58,105,193,65,233,128,7,203,154,13,164,120,112,195,21,110,188,183,58,216,204,139,236,236,93,84,10,74,163,140,10,72,225,122,28,175,84,89,95,78,181,215,141,60,186,43,151,206,90,234,109,164,178,154,165,118,32,163,15,185,100,146,84,154,116,149,113,199,190,176,72,87,101,120,78,193,168,12,183,187,221,51,151,29,6,39,142,120,49,19,190,168,236,71,194,148,18,123,214,114,186,139,69,89,74,120,89,89,74,242,62,187,15,254,165,177,121,140,138,38,127,226,167,253,104,247,211,35,171,186,160,161,159,35,54,208,159,150,6,157,187,176,53,106,63,126,184,80,109,102,73,21,80,163,84,199,78,64,36,89,221,198,188,119,105,252,237,117,246,165,18,96,167,143,194,182,5,91,255,69,111,215,58,191,174,56,195,94,175,124,106,157,204,93,35,20
 7,134,168,178,234,124,117,196,78,145,39,228,182,100,91,136,34,132,62,85,213,247,166,243,183,100,190,27,6,94,10,94,252,234,19,126,77,10,133,91,63,102,92,231,135,238,1,86,34,152,158,134,147,150,172,3,225,115,254,119,3,20,193,158,132,158,254,50,164,188,74,136,18,106,46,113,85,114,65,100,54,80,155,140,55,58,97,150,63,137,175,66,112,161,188,108,39,233,86,22,250,151,232,187,22,163,45,237,108,154,150,126,123,14,3,72,106,146,67,118,201,68,194,118,25,130,190,253,133,72,107,46,247,86,178,114,209,152,207,119,10,140,35,29,0,208,25,84,92,49,133,67,142,236,110,214,62,90,232,91,12,213,71,108,91,99,148,179,245,159,240,176,41,142,123,177,175,88,10,232,70,123,216,167,61,126,18,24,245,31,145,65,211,189,198,161,236,148,133,58,235,162,250,193,248,50,60,83,11,206,185,24,201,167,48,165,34,12,143,30,105,143,183,163,204,75,215,253,193,189,34,7,216,133,81,131,122,71,242,7,135,147,218,168,132,230,59,123,46,168,31,45,219,134,46,166,149,156,130,220,113,194,166,117,38,252,185,161,100,8,205,123,150,74,82,
 232,169,3,89,24,81,206,8,119,94,231,108,32,6,38,171,136,172,54,242,250,203,140,245,92,88,125,228,88,21,173,192,182,230,160,17,226,12,176,187,33,189,36,162,187,106,154,171,1,85,80,10,241,116,145,58,160,116,100,75,234,114,220,178,185,219,223,12,56,17,75,88,23,15,205,219,225,169,124,191,101,196,69,161,240,53,75,17,129,27,75,71,61,136,206,245,118,200,145,68,40,203,160,28,160,128,151,97,108,14,129,116,57,192,5,223,28,93,34,247,246,114,144,194,42,137,196,128,234,255,190,156,55,187,24,45,204,231,70,204,7,92,231,137,184,13,218,31,171,213,105,254,20,100,115,43,95,101,173,122,103,1,170,19,245,64,221,27,47,93,47,88,14,28,124,68,222,76,0,95,173,114,185,142,166,48,147,8,77,57,21,86,10,111,78,136,176,222,179,50,169,253,66,42,247,249,101,47,222,20,101,202,117,61,133,42,95,139,133,8,117,206,4,220,225,39,37,60,82,69,148,192,232,79,79,192,190,80,71,255,66,125,68,136,21,138,197,239,207,70,81,73,178,240,40,208,250,41,198,247,220,78,216,230,252,65,39,165,104,6,137,213,13,156,236,176,135,78,139,9
 4,200,117,83,98,202,66,37,44,163,10,54,203,239,231,110,96,111,212,39,43,189,31,242,192,136,101,117,222,115,166,105,187,63,15,229,90,216,54,153,215,41,56,201,51,39,222,112,178,72,46,87,29,82,126,149,191,87,220,187,117,23,193,99,220,190,32,8,133,98,207,91,239,216,254,202,31,105,63,56,202,179,19,156,53,207,12,10,61,220,139,158,238,189,65,219,93,32,227,228,204,9,37,55,134,170,184,220,228,252,42,9,71,108,141,138,23,44,72,76,208,227,150,130,40,160,52,244,201,119,201,78,127,230,122,220,22,42,126,176,233,14,58,33,241,4,194,225,147,39,186,148,65,118,60,244,7,167,159,1,86,110,133,239,208,173,19,194,113,160,153,161,146,31,113,150,250,70,171,41,41,144,228,215,194,25,131,78,50,73,178,184,155,143,199,139,245,43,85,201,197,19,6,191,170,158,183,181,31,200,181,247,168,179,69,164,142,200,2,228,173,252,29,131,39,239,116,80,230,66,189,108,141,217,245,188,157,226,225,194,254,26,117,136,130,178,194,195,20,187,220,159,189,50,123,33,204,218,54,252,190,113,125,55,154,8,208,235,17,71,49,28,86,134,231
 ,122,6,181,138,234,152,32,8,58,94,67,154,49,63,132,211,13,146,197,247,173,171,236,100,64,221,22,110,168,32,25,227,146,194,106,195,94,229,154,26,60,16,229,0,121,155,221,114,67,140,73,62,243,20,165,196,195,253,138,57,157,34,188,8,224,234,244,112,81,220,104,238,169,179,190,50,244,38,35,244,221,165,233,48,175,21,94,10,105,79,81,172,197,120,94,131,239,31,63,243,64,189,198,245,113,197,160,14,58,121,75,157,86,202,210,182,254,118,98,108,95,198,49,100,103,78,50,117,117,99,241,2,76,33,19,55,111,92,95,216,45,128,16,36,166,126,56,6,137,120,111,12,188,89,239,234,78,166,84,199,167,105,1,144,211,164,150,17,250,226,121,233,144,250,156,233,33,21,34,20,65,54,76,62,175,55,23,88,247,67,225,109,228,60,42,1,101,139,224,86,56,113,238,33,164,138,157,159,81,191,81,250,149,96,189,141,255,217,93,190,233,41,128,65,58,7,37,182,118,67,83,141,49,12,193,42,129,15,209,238,56,15,31,225,19,43,163,197,245,217,51,152,218,25,98,31,56,201,254,99,194,0,53,129,164,95,44,191,88,205,235,64,130,165,195,195,84,217,219,
 61,96,241,99,211,54,229,169,137,223,213,115,180,153,84,196,123,112,179,201,127,226,27,63,106,219,110,35,50,84,185,40,141,154,137,157,223,212,92,103,249,98,172,45,165,128,224,224,178,94,14,127,78,155,111,94,239,143,251,79,74,18,142,135,25,146,87,127,165,72,34,36,207,248,54,115,170,0,57,61,146,109,103,62,46,89,133,187,100,224,219,72,139,178,138,161,46,72,250,102,117,217,205,211,4,195,169,154,237,72,125,191,19,11,27,58,90,146,217,15,23,137,220,203,91,77,200,71,97,59,101,131,122,128,227,155,95,52,89,12,41,228,119,141,72,116,201,79,169,130,7,4,248,1,140,0,183,35,90,97,209,33,161,251,210,52,115,70,59,116,125,128,146,6,78,136,229,94,244,216,46,227,124,194,61,111,229,210,104,97,237,195,58,80,167,195,60,190,134,67,144,144,221,154,52,167,145,56,219,255,252,176,50,229,134,233,192,188,63,201,167,122,16,0,249,194,243,193,106,233,69,54,213,160,58,47,183,47,139,216,181,126,105,137,159,84,164,228,130,35,168,199,49,234,120,9,66,158,227,129,235,92,59,72,191,210,53,17,193,208,191,8,174,82,151,
 187,144,48,173,144,32,32,179,67,101,64,53,210,230,109,173,62,189,152,232,168,213,244,229,80,107,162,148,72,16,231,64,6,46,103,98,13,134,15,223,152,10,168,221,98,154,17,71,231,117,35,32,3,73,2,236,31,102,221,248,166,226,4,82,219,197,28,68,135,175,240,153,59,49,92,82,3,243,56,150,242,74,127,84,111,123,236,23,44,243,66,6,52,183,58,211,25,98,197,140,113,30,162,133,28,243,106,230,96,2,97,147,174,14,137,240,91,75,187,112,64,14,66,209,194,13,35,29,141,0,29,69,25,156,195,233,117,230,100,203,132,173,136,21,202,17,190,82,159,239,201,166,57,138,194,210,198,138,110,155,166,94,6,155,191,127,135,17,123,208,249,60,240,154,59,103,43,149,147,239,170,2,164,11,68,43,73,137,41,62,48,96,47,213,35,147,101,92,62,2,206,35,159,152,27,107,60,212,126,70,4,86,29,147,5,177,154,70,69,128,98,222,179,23,211,12,250,147,88,218,8,231,143,168,249,172,201,166,119,174,228,121,211,32,199,218,29,231,185,111,93,29,129,100,185,158,170,88,69,123,135,5,60,142,191,120,32,96,238,3,103,99,193,186,196,46,254,77,24,54,110,
 97,199,246,184,224,130,45,179,176,232,136,128,107,106,118,198,215,166,234,31,31,188,155,185,213,30,146,68,100,220,202,252,234,236,124,127,201,125,96,119,48,141,254,28,6,20,111,223,143,73,41,144,167,1,123,111,93,98,223,79,161,200,56,127,232,105,17,46,180,236,143,242,161,229,83,252,191,139,223,144,6,49,124,249,82,89,2,210,149,93,23,92,136,39,18,97,190,105,190,132,69,71,91,29,192,32,135,200,182,79,221,230,163,165,130,200,49,59,250,237,131,67,140,245,113,225,130,135,178,123,67,144,14,165,241,45,199,27,233,37,248,32,82,190,35,24,233,49,52,173,215,251,136,109,255,223,160,74,111,201,19,221,191,206,55,22,132,174,9,138,115,32,82,244,190,85,113,235,253,83,78,37,174,220,85,38,54,29,245,214,140,138,254,109,38,23,96,197,119,25,171,217,85,246,72,203,160,160,219,5,199,185,204,46,78,199,51,195,115,32,189,48,60,206,28,67,95,136,214,124,106,160,188,129,67,42,29,96,117,29,61,88,70,148,194,83,52,78,208,5,157,98,111,16,87,24,187,202,21,123,85,232,98,240,243,118,175,159,47,116,253,42,124,34,238,7
 0,118,25,15,18,145,132,194,12,34,38,108,78,228,183,14,211,172,137,180,20,244,58,51,201,211,94,198,62,185,99,137,196,18,189,87,198,136,184,135,193,72,25,192,13,35,159,242,66,90,218,13,230,15,48,232,71,18,6,227,135,220,87,228,180,107,130,92,204,20,234,99,16,96,53,232,155,27,5,53,66,36,13,253,78,59,98,224,245,195,19,237,186,119,95,84,169,5,119,186,125,73,63,181,105,96,110,45,67,212,234,211,32,125,109,236,243,75,92,125,117,13,79,73,20,5,115,95,210,86,252,78,252,85,118,1,124,233,20,151,87,5,252,227,241,137,97,131,124,57,207,142,191,47,115,152,198,13,230,96,232,122,218,73,81,233,158,149,61,40,232,172,77,154,232,9,35,217,199,45,136,174,246,213,238,15,192,98,161,208,110,78,191,102,119,6,42,125,29,172,189,195,85,193,238,238,173,73,45,174,240,26,187,142,108,228,193,8,39,17,103,77,8,116,223,199,6,14,112,36,195,56,140,32,100,24,52,233,103,147,130,191,235,16,5,159,185,14,9,168,214,125,10,93,71,216,144,53,254,7,45,160,184,102,201,178,57,215,129,52,66,65,221,70,7,101,179,117,68,224,220,192
 ,158,53,199,245,219,195,156,158,17,72,55,169,84,229,230,245,164,207,188,29,156,21,147,100,157,5,70,6,89,86,111,243,169,109,52,117,139,232,18,208,13,168,183,237,27,234,248,31,240,198,131,193,93,111,122,241,39,127,193,119,7,2,62,68,71,13,243,85,213,240,222,75,107,242,169,6,59,146,118,179,82,193,171,47,191,113,199,112,222,179,22,63,43,27,185,5,156,131,212,128,80,74,153,227,114,113,23,171,253,239,78,115,98,38,144,126,109,173,48,107,246,174,163,255,90,241,124,146,91,59,12,73,230,141,32,85,140,192,62,107,206,133,68,88,205,70,111,56,230,28,70,80,188,187,164,192,66,165,91,160,97,135,5,33,217,193,188,92,167,119,132,248,225,7,135,120,49,121,21,97,21,183,17,242,242,118,205,122,158,113,65,119,99,5,204,51,134,114,247,60,119,109,63,176,72,129,40,42,228,203,193,201,55,82,194,96,79,214,58,253,192,116,246,100,198,0,49,151,8,85,111,229,196,202,14,161,233,45,169,83,87,18,70,233,0,126,57,174,33,156,154,131,22,203,177,72,12,132,54,201,167,168,36,216,146,127,194,95,160,155,159,91,15,35,42,154,61,
 82,214,180,123,147,220,174,48,155,147,199,223,215,74,153,237,217,91,45,109,192,141,219,39,12,223,51,233,127,72,9,166,152,121,82,165,137,89,60,6,224,1,155,11,6,153,178,25,57,102,68,16,14,223,216,19,120,111,114,172,57,107,40,233,169,86,128,136,233,187,156,19,91,165,145,250,190,26,63,213,202,95,58,238,142,243,231,43,230,84,154,195,32,71,21,245,107,42,27,156,94,169,55,97,190,204,115,136,135,12,59,48,27,201,5,40,62,61,112,143,240,166,37,49,95,177,83,197,43,2,128,159,241,9,109,123,73,126,31,224,177,117,147,123,139,247,232,10,104,125,13,74,88,175,11,31,163,10,107,37,39,16,166,100,46,28,5,187,71,77,134,139,186,47,101,101,37,181,43,66,180,11,98,206,224,193,64,176,253,86,134,168,55,127,246,46,28,64,242,87,127,124,207,13,25,32,50,120,119,124,225,114,132,52,211,64,57,123,152,126,131,89,212,24,98,239,220,192,248,14,34,59,180,199,15,60,46,211,45,50,210,190,240,215,176,29,47,222,19,109,21,201,201,198,184,89,21,100,57,228,171,230,25,232,9,244,104,255,83,41,142,180,250,94,59,28,174,73,131,20
 0,76,120,179,87,122,43,7,162,54,238,139,153,23,248,79,88,36,250,140,112,251,221,182,117,15,115,232,164,181,132,232,247,138,185,117,170,229,177,140,84,236,218,227,74,148,112,134,154,20,134,55,182,16,237,226,62,37,194,223,35,135,23,94,183,54,159,74,244,101,33,6,177,136,10,84,2,5,159,145,161,185,8,22,226,107,122,46,197,5,187,165,251,158,209,130,22,62,25,52,205,63,203,198,41,241,29,45,48,198,168,243,96,175,241,116,15,128,133,173,31,198,219,225,151,119,100,217,199,45,39,99,56,162,88,17,120,24,11,232,192,191,113,127,70,101,21,4,107,97,13,251,220,171,248,177,185,237,229,50,189,156,245,242,81,206,108,101,141,29,198,214,2,47,225,131,164,105,73,201,18,130,53,106,183,148,245,196,170,152,160,153,230,214,231,201,188,231,143,131,254,31,254,64,187,219,88,35,152,30,83,26,129,173,46,14,148,113,167,141,11,94,142,205,199,220,80,10,251,188,163,0,249,217,109,132,154,80,169,151,209,120,107,103,47,71,60,159,8,60,173,66,245,181,143,2,115,39,158,130,125,243,120,128,108,129,39,26,149,36,91,200,140,54
 ,123,53,50,41,124,198,135,206,85,102,26,95,140,94,76,100,161,79,164,191,246,79,105,149,32,26,98,138,21,52,189,179,83,94,201,209,20,178,125,91,88,165,106,2,123,96,87,138,207,94,170,78,234,55,155,156,242,101,84,119,45,82,142,97,48,74,246,191,6,97,77,215,150,34,83,176,56,37,33,82,86,147,124,128,71,162,151,32,162,130,103,251,103,76,4,208,104,11,82,48,155,125,72,130,226,166,198,36,92,51,155,51,64,215,51,14,33,79,65,235,36,214,119,3,237,189,147,146,40,193,19,144,240,153,99,126,67,144,148,83,207,226,66,27,134,163,38,132,192,77,75,4,121,11,90,241,206,123,20,46,183,188,133,97,24,113,202,229,217,47,192,145,253,2,222,81,100,165,75,20,101,43,88,215,31,190,106,92,180,215,240,126,201,71,29,2,134,210,52,250,176,75,239,57,89,104,33,19,19,244,27,250,27,233,2,126,197,102,248,98,252,166,31,189,205,27,80,90,88,159,205,244,35,25,163,113,253,148,59,28,131,137,41,79,229,72,195,46,8,86,19,255,19,97,108,66,178,233,88,87,129,238,100,195,184,154,224,123,125,97,123,220,123,134,106,226,211,103,65,94,93,
 53,165,81,112,48,60,241,110,111,144,13,196,133,91,37,24,183,188,191,160,47,193,28,49,155,32,116,151,130,141,79,116,252,216,92,135,116,67,40,194,193,200,69,234,42,89,161,75,199,108,224,74,192,84,215,142,246,251,131,33,246,13,112,227,187,61,204,215,110,45,116,151,93,40,57,180,237,102,217,124,106,88,196,240,36,58,39,166,116,88,11,21,80,188,28,120,58,16,140,104,171,241,25,45,30,96,87,125,139,202,105,115,104,140,195,184,41,177,59,61,50,35,82,91,104,171,184,93,146,149,4,145,18,161,140,205,202,43,167,248,220,194,45,83,163,61,230,59,47,181,117,109,159,103,240,6,139,61,95,249,232,40,85,15,204,16,200,35,112,60,2,7,8,218,222,171,5,51,38,115,54,186,128,202,165,107,184,79,225,224,233,75,41,13,203,179,247,20,98,143,214,64,74,88,151,141,137,44,186,44,56,213,131,12,164,237,134,8,181,247,77,14,214,6,149,108,168,237,149,8,48,93,99,217,33,92,12,105,90,81,145,207,192,17,75,151,129,214,55,226,215,148,253,116,162,113,161,27,156,14,11,31,138,117,235,48,155,134,231,64,32,97,169,154,148,126,44,40,14
 1,108,216,201,34,69,109,152,7,139,235,64,5,112,199,37,64,72,147,233,6,248,203,107,235,107,149,31,94,37,222,154,118,243,45,55,232,38,225,33,227,180,60,204,44,124,141,48,36,144,137,110,57,254,183,62,213,38,70,89,198,72,125,137,99,104,2,252,146,2,37,9,49,9,40,74,99,75,103,83,1,58,61,154,32,254,147,199,254,137,44,156,98,50,230,80,84,107,176,143,241,247,181,125,105,149,186,83,183,195,71,208,143,209,186,219,5,34,199,64,100,144,150,149,107,158,187,7,74,95,50,22,2,149,179,17,220,43,130,60,90,210,214,52,87,226,18,145,43,47,73,71,4,9,155,230,226,217,82,151,217,113,189,123,118,192,187,254,39,81,90,102,97,214,27,187,54,157,36,141,146,123,93,50,73,53,43,47,7,230,94,151,11,23,43,100,71,57,255,64,141,25,236,59,175,246,9,250,154,220,214,142,52,83,25,182,102,102,76,181,153,160,127,18,135,35,118,50,33,148,176,126,1,2,151,142,12,78,95,168,128,85,116,222,142,143,136,200,136,178,172,189,205,226,231,70,148,162,248,248,89,15,200,3,44,160,194,161,186,33,203,57,227,239,101,34,68,53,190,120,46,211,22
 9,18,175,93,251,194,229,58,38,62,100,167,166,195,15,211,240,40,71,63,245,43,59,209,143,166,236,153,240,59,45,119,93,72,142,72,76,28,207,126,210,85,114,169,188,163,210,80,149,235,146,26,195,157,69,213,246,11,95,174,241,52,77,41,15,78,11,174,161,157,216,141,8,225,223,35,42,94,34,159,101,107,162,220,210,37,218,206,227,87,234,47,66,91,150,46,96,229,43,60,158,149,188,116,235,108,166,95,70,96,204,168,255,232,241,122,9,148,211,39,49,121,159,245,177,16,187,78,190,233,102,68,91,48,246,251,3,18,239,117,252,22,22,223,156,95,38,36,223,208,84,225,152,98,124,190,170,134,53,95,245,84,9,129,114,152,5,75,50,12,27,212,151,161,22,10,35,43,244,179,219,17,158,238,149,48,9,190,242,105,155,189,204,98,86,174,4,83,28,242,162,119,162,59,204,34,129,51,236,188,84,162,232,94,192,107,91,79,237,35,58,72,229,89,200,89,162,152,43,51,3,216,159,178,26,64,180,33,172,197,138,50,174,68,232,186,57,15,141,0,60,59,158,226,139,250,212,6,171,20,10,242,235,141,160,134,200,236,206,234,251,114,190,32,6,49,163,57,162,172
 ,152,16,87,39,40,254,49,183,124,80,248,217,57,239,60,154,134,11,172,84,247,5,217,206,165,140,17,73,84,227,157,109,235,197,170,123,76,245,18,199,254,253,52,2,120,47,87,210,222,185,166,74,96,56,221,153,209,238,128,79,165,53,181,177,82,91,74,150,42,28,96,88,86,95,98,220,34,234,172,178,213,181,41,157,176,255,204,65,85,127,173,197,170,96,13,254,146,113,233,78,84,0,10,91,249,95,167,17,230,7,255,109,153,165,217,186,165,249,24,58,116,91,4,23,88,94,75,179,186,60,108,105,48,1,88,1,140,244,103,214,20,252,26,247,194,37,218,189,129,137,130,119,179,11,245,82,243,38,125,112,65,176,189,136,225,24,175,168,212,241,121,9,27,180,18,121,9,182,89,132,130,117,181,209,231,215,111,148,29,94,241,117,60,178,69,226,187,102,44,67,55,159,76,122,41,131,82,196,106,33,174,101,73,110,180,161,211,102,188,115,226,159,177,77,140,225,247,241,11,2,232,37,101,172,80,131,42,218,242,83,254,24,163,64,100,19,73,215,93,112,214,241,16,119,0,76,182,213,253,123,226,81,107,85,186,188,95,93,169,57,46,54,127,125,130,168,153,
 16,247,230,74,254,135,203,125,33,90,72,123,129,115,138,220,119,73,15,213,26,165,92,27,39,85,152,71,116,29,32,148,15,99,177,215,124,90,162,70,71,62,30,187,139,232,159,154,31,6,76,57,130,80,90,123,234,204,145,165,152,169,29,185,12,156,149,118,100,189,248,4,207,210,212,111,153,190,74,22,171,124,54,95,96,26,133,202,30,34,173,26,60,110,214,52,58,131,116,101,78,85,237,183,208,247,29,190,76,230,246,199,140,54,158,23,97,137,112,77,91,112,39,101,196,149,242,202,199,21,221,199,202,166,15,200,85,191,105,109,73,244,151,56,176,15,159,19,31,50,16,227,220,130,125,13,159,192,136,129,40,64,245,46,84,121,72,195,199,165,216,137,123,46,37,178,144,117,199,165,103,250,7,229,176,161,193,243,15,250,166,183,132,90,245,43,188,111,42,72,157,93,185,66,36,247,99,20,135,217,170,47,181,173,232,155,125,101,94,141,113,144,210,174,115,31,177,158,110,137,241,152,107,23,3,163,255,110,205,150,235,173,251,119,135,14,48,88,84,174,186,254,244,144,78,168,141,173,36,0,203,184,134,87,110,248,50,227,120,45,104,152,131
 ,171,38,37,199,104,182,214,141,110,152,37,108,60,240,153,94,211,239,197,183,99,249,239,156,158,50,45,79,167,140,186,101,38,157,16,135,172,229,67,117,38,44,212,239,8,97,155,34,238,192,79,47,90,89,217,61,26,8,174,33,174,246,135,76,22,33,230,128,4,87,189,250,155,33,200,74,175,162,186,191,173,235,205,106,8,254,83,178,157,158,250,126,168,32,14,226,50,14,180,96,72,65,182,209,159,70,159,18,197,50,228,161,193,187,87,142,137,228,44,122,81,150,84,21,252,68,128,86,214,224,21,205,106,223,65,219,153,215,18,167,244,185,181,214,197,156,176,111,168,223,13,8,113,44,235,255,213,93,251,12,115,215,228,245,12,120,224,138,154,240,91,56,142,210,28,62,110,34,112,58,193,229,90,124,161,90,223,157,145,21,154,250,201,194,207,45,24,16,252,155,65,60,167,114,89,251,241,184,222,71,93,33,135,238,94,15,49,213,103,6,169,102,137,156,33,74,230,97,57,242,50,184,171,174,118,115,4,240,231,129,186,220,23,119,5,89,91,194,60,79,84,197,198,2,205,217,196,62,134,220,191,235,248,37,25,170,138,2,185,6,180,83,187,129,174,3
 8,18,101,65,219,89,106,82,2,86,147,61,146,32,177,22,250,29,213,13,25,196,170,47,180,80,222,211,156,57,19,208,154,189,238,115,108,140,25,197,84,39,8,86,232,197,56,252,50,201,47,18,176,235,50,111,239,146,68,214,27,252,142,29,182,215,63,133,179,46,208,69,80,159,80,238,101,148,49,69,219,153,132,22,96,125,137,42,254,198,39,166,120,86,65,38,137,120,188,174,141,92,17,155,37,218,124,130,152,253,191,207,214,92,18,218,248,241,162,85,134,158,114,0,81,225,70,168,121,188,3,42,104,18,49,63,174,0,160,142,140,254,48,251,110,124,24,101,23,184,158,62,194,54,42,13,31,220,164,145,146,48,10,4,253,218,176,164,206,102,95,122,156,228,119,88,39,169,85,199,213,200,77,72,185,122,142,87,145,244,87,50,242,151,246,81,48,128,129,65,143,173,133,105,30,92,136,253,202,70,234,48,83,40,209,138,201,246,230,182,59,138,145,60,236,176,73,86,15,237,214,195,249,195,206,1,181,119,132,187,227,219,194,106,38,210,181,98,155,118,31,63,236,226,33,166,225,40,153,217,254,241,81,67,164,181,230,158,245,183,147,181,140,85,10,6
 3,165,233,123,209,97,90,75,124,218,70,238,138,230,73,51,121,9,125,206,204,99,173,82,4,121,103,185,100,60,212,184,0,99,42,82,238,239,224,45,103,47,179,40,205,151,102,94,162,245,64,73,148,20,191,4,161,207,19,0,175,103,114,152,164,47,166,125,76,27,230,49,44,129,161,29,240,120,231,211,42,220,44,22,107,249,5,50,110,207,57,118,116,113,43,129,3,145,71,4,176,227,49,25,3,182,86,124,199,79,203,161,126,201,165,0,48,204,86,127,18,227,236,105,82,189,154,81,191,231,75,40,34,78,99,194,68,214,26,244,202,79,219,238,183,35,162,127,114,243,41,124,56,196,29,191,153,132,165,39,110,28,243,224,103,164,57,20,102,144,45,219,100,248,133,9,235,20,227,65,19,36,15,161,232,78,124,193,184,143,105,49,253,32,236,153,245,140,153,212,158,76,232,165,229,113,121,65,241,188,203,209,102,88,229,184,90,45,177,215,202,35,185,242,223,90,10,138,94,141,39,126,178,40,131,47,162,58,159,211,255,168,64,225,141,34,109,122,150,201,231,162,176,43,164,161,80,21,195,230,159,131,207,146,190,123,229,212,168,121,13,176,43,12,221,3
 6,167,240,243,120,97,67,66,45,88,23,15,229,102,8,54,167,127,36,62,4,166,241,194,130,38,199,200,103,51,249,223,58,203,28,102,230,109,129,25,20,80,201,156,179,151,231,184,10,56,57,214,166,0,216,7,223,42,254,67,43,159,129,125,105,210,13,36,115,230,112,245,58,22,144,224,207,239,8,61,40,45,114,46,183,205,195,99,43,131,14,211,231,38,28,92,64,247,236,38,206,217,5,150,5,245,224,165,207,55,129,202,115,144,14,75,96,71,69,209,82,45,62,105,152,232,76,77,152,162,251,50,139,107,103,68,12,43,236,212,252,61,82,107,177,115,30,46,55,129,62,180,58,213,77,178,129,37,165,204,218,198,24,178,196,134,192,233,54,156,15,119,186,206,110,8,212,82,241,10,122,69,168,63,218,212,9,213,137,248,74,13,191,65,156,173,169,173,111,221,157,163,51,119,168,146,8,131,36,249,143,190,255,73,188,173,29,81,29,227,5,54,175,40,48,116,81,157,221,188,17,99,85,105,138,52,157,52,248,141,29,191,234,73,198,10,186,79,202,170,20,67,116,138,170,231,245,239,82,240,193,44,5,195,31,26,161,155,44,182,228,239,4,245,106,21,19,198,224,16
 2,210,90,82,86,152,13,188,245,249,91,59,83,65,14,58,241,179,55,18,100,21,141,210,65,168,95,40,167,33,253,200,102,110,10,99,53,80,128,19,232,195,16,75,89,93,178,170,8,25,151,230,226,56,150,181,134,12,189,122,141,226,3,201,52,94,33,60,161,211,233,130,142,12,226,36,135,247,113,205,112,195,93,11,221,102,70,205,89,62,58,253,162,163,95,103,13,128,185,42,231,45,183,211,23,2,238,206,87,208,172,145,16,65,202,20,119,222,199,184,255,196,232,33,161,94,140,82,242,249,106,103,164,116,243,77,37,53,101,64,118,209,197,155,120,164,252,68,142,20,249,34,205,106,44,208,145,245,3,221,98,153,175,131,207,213,110,96,200,34,15,232,38,125,123,26,57,255,218,151,145,209,170,113,29,42,185,9,58,112,137,204,242,23,37,197,148,42,161,250,34,238,146,220,77,60,154,134,247,41,4,137,230,15,229,204,121,242,122,231,26,224,239,219,230,119,46,250,0,137,150,115,45,146,95,106,66,12,116,185,174,16,10,15,199,45,121,16,56,199,137,196,117,192,167,155,252,39,14,253,232,86,104,206,70,21,49,24,37,41,244,219,31,239,91,219,84,
 11,126,28,126,244,230,254,25,26,104,16,127,179,182,120,34,59,125,59,76,152,87,151,9,106,140,123,117,169,68,210,191,158,159,78,76,232,250,19,120,90,9,66,174,219,227,227,166,208,124,147,213,73,184,253,75,129,73,19,10,151,119,238,122,178,19,124,16,218,95,70,28,234,16,242,134,124,56,124,94,180,67,163,11,201,159,168,60,1,144,188,185,160,56,123,225,154,251,213,45,152,51,224,240,219,119,221,0,12,218,75,17,119,134,92,221,26,204,48,154,173,251,161,89,142,207,138,215,60,29,14,0,126,130,168,183,100,25,180,61,12,48,154,37,247,114,222,210,8,126,8,222,165,171,2,12,67,3,189,184,56,120,141,252,49,231,188,63,119,159,201,220,178,132,118,250,82,185,165,160,30,34,64,232,159,86,77,53,161,8,13,176,30,142,114,19,125,133,162,2,62,213,104,172,67,21,10,174,8,251,205,14,113,179,95,23,41,210,223,44,126,53,177,115,205,83,30,227,83,109,236,93,149,243,107,138,28,167,26,161,146,103,43,244,105,253,94,182,58,164,167,174,50,54,212,201,124,13,76,137,161,9,75,150,1,245,205,48,115,173,80,43,36,116,121,159,212,51
 ,247,93,3,203,2,134,229,81,156,227,198,123,156,215,30,36,103,255,174,152,207,110,153,173,145,49,25,39,186,57,219,248,248,214,17,49,214,194,20,107,244,251,95,200,177,42,212,249,42,195,115,65,246,207,85,80,35,14,239,151,73,160,124,30,190,255,200,147,44,13,145,46,46,21,14,61,47,103,166,224,176,166,32,82,94,114,54,178,151,240,141,51,147,89,61,55,55,185,23,123,242,88,171,253,78,147,154,201,161,123,12,193,30,28,7,29,167,45,152,195,115,224,51,188,222,214,72,39,183,5,90,240,169,174,48,122,62,69,65,50,97,162,14,252,7,183,82,86,121,214,10,151,118,227,101,55,102,94,123,244,38,128,122,139,194,67,186,196,97,82,139,234,255,182,204,130,229,100,189,207,43,138,127,48,115,139,57,213,100,39,228,164,201,108,201,135,61,55,212,246,5,210,236,180,172,16,180,146,28,143,59,251,58,26,232,155,56,133,140,103,75,16,51,51,92,38,245,50,109,116,155,5,5,170,97,231,64,84,217,153,246,120,90,254,249,119,89,92,58,222,70,216,127,195,183,96,104,45,93,58,97,115,154,160,218,179,147,166,210,26,163,53,79,95,51,140,236
 ,60,200,31,222,143,55,202,160,165,247,81,67,75,193,237,208,233,48,92,235,224,46,245,235,138,234,198,123,130,248,44,144,74,222,42,140,101,136,58,25,76,3,107,23,223,26,77,166,29,229,27,58,193,173,239,227,79,36,102,112,52,114,29,95,230,161,187,197,48,142,62,134,178,166,10,109,215,20,191,140,7,163,64,203,60,11,161,134,144,85,114,150,255,224,138,196,202,126,216,216,128,128,200,27,191,11,28,218,211,17,179,245,32,72,162,132,4,164,57,111,88,52,103,211,0,242,69,102,48,78,48,55,79,122,143,178,52,41,22,62,193,105,13,34,222,214,20,209,138,253,86,90,169,127,222,123,87,23,242,116,122,243,187,150,204,64,35,97,80,118,72,232,40,202,22,42,26,136,163,249,190,191,191,166,167,112,143,192,105,37,72,148,151,71,202,224,103,235,60,89,214,250,46,88,20,147,141,225,52,56,243,54,247,45,74,82,39,131,84,94,242,127,177,109,157,162,131,253,124,148,95,179,30,107,102,100,231,233,121,106,13,87,207,141,156,239,84,47,211,133,176,79,141,27,216,85,244,22,73,165,43,119,234,210,212,95,184,14,209,208,97,66,65,213,124
 ,250,254,168,110,66,121,226,97,247,155,194,152,24,168,247,102,251,184,201,35,222,217,235,212,188,72,49,69,223,55,168,216,134,192,40,185,222,91,74,88,116,246,53,232,148,6,219,95,47,80,51,129,135,17,47,151,251,249,16,97,188,196,96,230,142,21,167,231,110,241,123,60,3,75,23,30,121,182,217,181,221,58,14,104,148,156,182,163,129,55,4,59,44,107,220,216,24,111,157,205,54,143,56,71,115,249,75,248,93,66,81,19,106,241,246,46,14,105,197,188,170,179,115,173,13,111,28,143,160,51,86,174,192,143,35,1,59,204,219,102,171,180,14,60,200,105,112,23,32,87,136,88,75,96,232,88,178,69,158,27,3,144,179,179,23,184,245,162,110,251,116,204,153,188,25,9,82,13,53,178,91,115,51,41,61,226,130,228,178,134,182,208,196,223,26,6,88,108,109,183,69,239,116,0,224,195,225,1,193,195,95,148,1,221,20,30,125,55,255,180,54,176,59,77,143,96,225,33,206,247,251,198,244,229,9,115,96,146,0,2,128,104,224,50,37,238,119,223,166,1,80,168,166,212,177,131,200,21,252,133,77,164,8,177,108,119,53,212,214,150,230,76,94,245,120,227,142,
 134,104,254,245,113,58,74,197,83,66,201,83,65,165,181,86,76,2,166,198,233,235,114,195,165,43,0,8,6,54,0,242,98,33,71,51,20,66,170,235,218,252,60,128,104,211,115,130,125,202,223,36,43,148,125,206,232,254,131,239,165,246,253,31,2,13,96,243,140,161,140,173,91,138,160,200,111,255,166,165,219,244,58,118,168,135,209,202,138,72,208,9,184,175,191,157,242,213,80,151,227,128,71,113,12,46,171,176,30,23,79,89,203,92,43,61,165,4,147,239,157,206,241,46,235,253,251,252,94,25,164,108,234,199,22,139,33,234,234,47,165,7,65,175,49,43,2,222,131,170,177,122,60,8,63,246,97,93,217,184,229,166,217,101,235,142,41,207,70,91,236,125,252,180,182,103,138,78,68,8,186,122,96,216,69,42,83,23,211,254,177,53,11,107,14,122,91,226,49,203,79,162,152,28,26,113,115,42,88,62,79,137,236,15,12,249,131,88,6,186,102,221,90,129,133,97,31,153,210,62,135,207,199,247,85,118,164,115,195,177,122,163,38,216,148,42,100,106,71,102,96,61,228,222,97,93,222,25,89,110,242,7,151,101,128,114,89,247,129,159,40,111,74,68,221,215,13,22
 ,238,162,80,193,208,29,153,76,30,32,50,246,63,161,106,133,162,158,140,110,98,75,28,119,212,221,75,193,105,104,213,14,63,107,176,51,120,90,174,60,86,48,165,90,121,185,15,86,51,188,183,220,28,162,40,3,38,193,133,208,56,76,81,236,82,86,167,43,123,68,140,136,124,195,101,174,13,220,19,31,17,89,254,40,243,219,142,193,247,187,227,51,237,143,210,85,30,95,118,82,25,202,153,72,36,70,50,88,48,125,128,51,77,162,182,91,210,119,47,83,195,77,171,97,240,106,56,7,181,216,200,76,104,169,204,89,254,148,235,182,40,89,28,225,23,188,167,237,100,141,44,178,254,194,167,142,73,247,202,61,107,130,50,250,97,190,120,251,22,142,92,218,158,39,82,247,202,131,203,201,101,203,255,255,56,144,26,176,30,150,174,193,250,31,64,249,188,38,28,62,110,66,200,46,73,229,110,164,230,48,124,237,129,195,107,163,174,201,44,196,28,74,226,131,35,50,16,47,81,5,113,189,47,89,177,196,231,252,108,45,107,169,225,65,187,131,175,48,107,160,225,80,83,164,183,54,49,7,100,97,230,191,85,176,96,254,17,135,54,200,27,73,114,185,32,9,71,3
 ,175,248,41,35,175,78,10,77,246,151,47,185,129,66,211,179,138,252,168,25,43,215,37,91,70,21,72,8,205,187,147,159,89,215,159,141,32,74,158,172,40,146,103,150,169,93,194,147,8,91,155,20,90,63,202,227,61,102,129,29,105,169,229,146,216,209,92,188,18,192,212,166,147,227,182,45,188,116,94,128,31,53,212,225,135,86,141,17,161,245,178,77,119,83,30,253,16,57,138,0,228,157,118,222,125,84,9,16,191,34,214,43,199,99,139,151,166,41,199,170,58,93,113,159,22,8,23,86,63,87,185,115,150,192,248,78,250,55,148,9,24,133,110,17,118,232,179,246,196,253,21,146,225,204,145,166,100,254,110,222,7,138,199,22,212,147,218,234,4,196,102,14,79,146,233,189,138,192,150,151,145,5,253,59,113,34,117,20,244,72,56,102,63,164,9,26,63,206,141,44,235,146,126,123,180,5,181,113,140,23,150,95,234,105,194,9,184,6,28,239,126,244,140,38,58,190,91,146,28,15,158,8,93,190,7,44,235,72,228,169,218,40,202,188,90,31,188,108,172,155,144,187,98,234,167,254,199,248,46,71,120,180,82,9,113,95,217,251,244,98,172,16,26,77,232,238,179,75,
 32,72,200,231,168,64,179,219,69,86,177,167,42,180,240,73,88,245,87,12,11,197,153,112,169,202,144,153,138,10,102,1,126,22,190,239,243,182,108,218,83,196,245,239,131,187,213,129,84,223,202,230,255,248,240,42,200,82,126,15,13,33,109,125,194,180,96,211,52,147,0,181,196,242,93,219,122,117,152,102,48,133,17,182,221,139,36,172,50,131,17,22,232,135,33,74,247,162,23,169,150,70,87,235,174,61,164,63,204,202,28,31,209,161,200,7,253,194,87,237,207,23,129,198,99,125,10,225,133,65,65,132,44,161,123,164,100,58,184,6,44,83,38,37,151,145,120,222,59,75,253,82,40,6,203,87,128,246,231,143,54,122,85,58,124,253,119,16,141,160,88,90,74,230,76,118,115,21,18,43,201,249,143,26,156,9,29,158,202,51,226,229,179,76,121,181,215,102,110,121,67,147,94,74,109,25,87,193,130,37,122,66,175,239,250,32,44,121,69,131,7,221,213,171,23,195,169,135,71,196,251,22,49,45,148,0,22,63,26,107,214,234,3,134,26,120,43,57,162,160,94,132,224,142,136,93,202,107,242,51,41,251,44,174,233,250,195,33,78,155,6,76,45,131,193,140,206,1
 25,141,46,99,38,224,114,39,145,138,127,7,166,80,91,212,15,108,131,150,56,161,96,222,20,63,146,64,106,3,246,25,107,220,142,110,129,165,106,76,69,111,2,160,38,204,109,155,1,205,205,200,89,2,100,10,30,203,174,2,102,129,192,165,33,196,76,235,236,226,60,112,198,202,94,152,48,29,242,120,118,137,223,163,10,4,121,168,38,81,190,189,209,224,122,185,66,108,53,36,224,156,49,44,164,158,58,12,74,240,32,244,243,219,50,184,15,129,229,102,73,135,74,107,123,179,173,50,208,128,242,232,126,27,30,201,150,28,123,250,75,197,242,86,237,196,227,80,203,196,244,204,176,36,220,248,43,43,114,23,68,41,140,133,181,24,152,73,145,33,210,247,150,228,109,97,47,41,141,190,82,129,208,137,114,15,157,162,69,66,197,110,218,243,238,228,84,94,127,248,149,209,251,141,101,195,86,244,115,207,217,16,185,215,79,242,92,47,234,19,55,122,11,156,4,17,121,103,183,71,54,8,234,21,212,133,209,46,40,85,52,159,10,245,49,207,205,24,113,78,66,180,132,171,14,195,243,211,35,33,33,98,109,255,152,14,149,99,173,204,119,146,25,110,188,138
 ,220,61,15,148,177,116,164,31,80,229,125,240,0,35,232,183,105,204,83,198,230,172,53,96,66,24,79,133,228,125,243,39,82,228,43,19,79,179,202,11,150,131,49,40,27,186,118,156,122,199,98,64,166,48,215,234,4,207,74,106,75,61,136,42,154,208,79,232,165,165,210,27,165,127,128,138,100,251,205,171,233,199,115,208,47,134,149,227,169,140,8,154,43,40,99,187,54,126,25,227,61,211,243,47,23,162,227,224,158,21,90,92,31,124,171,227,98,104,20,43,206,82,121,43,125,9,113,225,224,119,232,188,133,178,195,142,198,151,168,141,255,207,66,220,173,47,226,5,206,251,100,234,243,125,86,188,175,157,220,220,26,58,175,9,146,232,46,147,11,123,198,62,171,84,44,181,177,44,167,120,75,22,50,184,0,33,83,214,84,226,23,235,110,73,14,70,151,4,67,9,87,8,98,6,206,243,82,38,173,189,235,228,148,29,113,229,141,29,96,206,44,249,179,87,185,165,2,58,56,116,74,210,50,238,144,225,248,141,224,247,139,170,31,66,24,191,63,94,123,149,255,131,34,208,176,28,25,239,115,214,134,210,132,8,248,25,229,42,17,70,23,21,166,200,41,209,74,82,7
 6,230,107,199,220,252,206,111,235,105,242,194,114,228,34,30,182,32,239,32,123,60,155,244,203,16,149,115,155,101,20,140,61,241,84,249,116,71,73,26,240,211,156,15,76,247,199,248,3,85,94,81,166,125,232,18,250,152,194,144,120,254,21,171,76,67,26,44,123,148,184,255,163,229,130,81,186,170,129,191,24,208,33,107,158,218,40,36,143,22,11,33,86,4,60,79,79,127,249,175,215,119,90,235,71,30,147,114,34,49,151,152,130,95,239,118,159,137,66,103,91,87,153,154,5,177,44,186,51,230,240,146,18,63,56,66,213,8,103,104,230,112,39,154,10,130,232,46,35,129,106,115,252,7,19,57,225,113,57,215,141,83,85,207,30,244,157,138,59,234,105,5,176,248,245,88,215,116,77,92,131,98,223,155,106,80,115,211,144,183,110,91,12,39,154,173,217,197,142,15,152,202,148,34,112,67,186,135,3,131,140,144,186,121,216,77,21,17,55,119,219,178,74,112,94,18,162,232,219,32,221,92,107,21,233,112,5,18,33,32,183,105,10,28,167,105,1,87,71,90,115,143,8,3,103,174,132,94,120,144,97,51,184,239,30,249,47,127,106,24,176,76,56,224,104,52,153,155,
 89,112,14,66,1,202,152,245,136,97,14,76,125,117,20,154,127,231,46,115,47,228,154,154,71,205,149,93,119,191,160,72,252,137,166,117,9,200,130,144,19,92,27,73,190,89,39,184,57,171,120,104,8,223,206,117,8,125,214,3,224,142,114,210,228,51,251,44,68,3,177,145,119,233,94,158,176,143,20,41,171,90,183,50,224,214,240,28,23,44,83,117,201,194,88,194,138,150,230,224,161,110,143,150,149,131,211,32,134,157,168,20,111,51,181,208,183,107,90,249,76,146,181,52,150,1,216,198,208,160,23,21,99,233,145,121,176,14,55,4,17,136,86,142,71,71,64,85,159,199,81,93,22,34,163,81,199,91,162,26,57,70,145,90,207,147,136,150,202,189,227,76,228,188,143,50,161,145,228,197,239,141,20,44,157,181,32,127,249,9,232,63,254,87,235,136,149,195,236,227,75,123,120,113,254,121,2,191,58,146,145,81,70,139,217,196,29,43,90,115,210,37,75,90,134,64,238,61,46,30,66,176,182,178,137,88,180,53,160,160,2,129,130,203,249,145,54,213,6,5,174,40,139,144,207,99,8,108,185,49,123,236,117,213,244,163,200,56,115,36,196,52,198,196,188,34,125,
 68,35,158,191,94,110,165,94,94,104,6,209,157,221,73,82,234,146,147,196,142,67,205,17,94,130,145,0,1,225,89,6,14,91,97,183,57,150,20,101,168,144,211,77,190,183,20,32,211,85,151,170,90,157,149,209,159,109,203,227,39,175,0,228,142,238,143,95,97,54,231,174,105,157,252,9,100,7,213,82,127,98,219,13,203,189,195,38,32,71,185,216,147,84,117,230,119,34,120,249,150,231,94,185,188,3,109,235,143,210,170,242,114,210,50,132,37,168,191,252,168,203,148,67,243,41,137,190,45,66,241,6,105,210,145,231,157,105,62,20,181,248,175,72,128,75,2,214,169,140,219,217,146,239,29,201,146,88,115,132,54,2,161,222,216,169,160,139,150,232,32,122,208,32,92,236,153,89,154,77,241,148,243,50,21,31,56,189,94,153,185,58,238,76,71,174,153,70,233,228,192,198,171,174,155,171,159,174,246,162,248,40,102,161,159,64,180,88,2,216,177,221,214,11,141,211,147,67,152,152,19,86,47,209,131,229,139,63,178,106,165,215,14,64,249,28,218,5,86,161,185,108,2,183,158,26,98,81,7,19,219,232,229,201,175,96,70,32,114,38,30,70,64,98,64,19,242
 ,244,97,218,128,102,26,14,181,165,139,222,63,91,2,136,102,228,239,25,252,232,147,97,137,248,86,242,68,208,1,189,149,225,236,142,158,140,146,61,13,127,190,243,167,2,85,23,203,192,127,153,204,175,98,189,143,130,35,57,205,116,63,178,229,55,213,253,218,149,143,224,241,18,87,180,98,98,199,83,16,4,241,39,1,240,141,245,77,252,95,159,110,75,224,12,234,247,145,220,232,144,61,25,137,79,168,56,190,165,103,237,85,40,177,220,227,171,229,173,23,227,217,113,201,140,57,6,28,180,173,23,227,226,128,113,104,6,59,102,16,125,26,59,74,135,82,41,157,118,41,170,134,51,73,50,247,177,188,233,26,158,171,167,178,102,35,231,198,36,106,217,95,203,28,89,104,180,185,143,184,242,146,167,62,66,251,215,180,100,98,105,7,232,193,8,63,226,124,201,193,45,177,6,151,232,168,162,52,235,165,181,9,203,132,163,204,56,219,185,222,115,12,248,94,12,225,209,118,72,54,177,37,41,110,219,200,163,111,81,233,179,255,180,178,157,143,53,91,139,219,156,157,114,97,220,142,128,135,99,99,249,232,55,66,31,121,175,91,83,42,226,185,143,
 201,199,156,214,119,128,225,168,50,134,133,166,212,241,199,0,88,119,102,133,66,149,237,254,88,93,87,65,115,26,37,15,67,210,148,184,2,178,173,199,106,219,7,23,181,26,23,105,125,89,81,245,10,165,19,189,251,129,1,86,11,205,186,216,222,139,36,142,138,54,98,15,71,201,20,122,236,136,212,64,166,4,84,103,162,189,98,226,250,167,151,228,129,101,26,138,245,174,148,249,116,98,94,157,169,56,86,130,172,126,67,36,249,104,174,231,2,112,48,60,226,89,1,182,104,164,81,50,209,136,203,240,152,110,26,69,133,168,58,102,241,162,8,91,64,148,221,214,50,184,61,131,173,110,72,192,164,243,58,202,166,17,123,84,36,68,27,27,72,147,162,38,245,59,66,67,143,110,160,141,137,33,179,136,255,127,112,228,96,23,125,255,167,79,110,219,222,89,54,100,142,215,6,181,49,171,244,194,177,71,34,112,72,210,71,67,15,215,200,219,222,166,39,189,141,209,132,240,30,69,205,149,211,234,61,24,8,254,234,138,64,63,10,16,183,20,17,169,163,65,158,135,138,98,20,181,104,97,64,136,29,93,95,184,134,21,174,211,147,186,174,157,75,244,31,111,1
 55,13,29,33,85,198,178,144,208,30,198,197,31,170,90,164,253,209,122,164,173,148,242,235,169,65,140,243,31,204,7,220,134,187,53,208,156,219,48,143,135,140,103,115,183,127,26,24,144,168,198,235,143,246,106,133,200,154,224,165,62,95,135,24,25,219,188,18,13,114,43,133,20,38,193,71,222,150,188,180,168,55,12,195,208,13,166,161,41,63,53,254,183,164,39,157,124,199,246,79,179,226,162,172,102,233,200,227,207,54,111,43,148,245,29,59,252,105,143,250,142,166,64,127,184,206,64,58,37,117,220,251,240,77,108,210,204,188,214,164,148,144,106,38,223,132,159,183,117,113,61,6,205,166,14,54,63,202,97,20,214,151,113,246,150,233,194,49,205,161,205,243,134,198,10,131,13,169,190,148,208,241,211,1,216,79,198,10,79,126,215,198,107,247,230,130,18,39,150,52,16,242,246,17,161,176,104,60,245,94,64,202,232,177,180,236,242,254,49,56,128,81,42,66,194,68,32,178,69,5,11,251,3,209,73,215,72,126,198,86,158,187,8,38,7,109,220,47,94,180,117,203,172,6,187,75,10,254,244,38,102,30,82,28,73,69,176,221,164,181,187,184,22
 0,176,57,252,251,126,243,235,12,4,221,130,113,95,99,12,38,60,19,109,10,164,154,166,185,221,47,178,52,138,141,159,228,38,109,48,105,132,77,100,117,70,167,18,156,80,80,12,57,130,212,255,182,140,44,7,136,19,167,231,109,96,153,204,166,129,215,204,30,229,159,1,103,85,127,87,105,21,131,116,225,15,1,214,54,249,227,192,130,228,80,45,189,223,237,20,72,22,179,228,229,214,212,183,221,215,112,73,49,73,45,62,217,27,7,56,164,97,202,76,244,234,149,235,175,227,204,52,233,205,113,193,143,107,58,96,136,149,59,40,192,162,117,27,133,166,233,126,120,164,148,227,171,255,157,253,234,127,104,86,234,174,111,125,134,167,163,148,214,1,172,124,141,196,80,20,193,230,14,165,155,163,191,58,30,50,113,171,104,131,231,60,62,198,8,155,19,162,41,9,81,15,193,93,61,60,109,235,28,75,175,113,84,103,159,175,35,222,129,186,23,82,204,255,247,8,118,74,100,199,168,147,141,108,205,242,49,62,201,109,104,51,209,100,13,204,17,75,156,14,195,147,183,214,185,130,43,22,166,204,171,30,5,178,145,176,117,109,155,198,97,87,145,98,
 28,213,243,96,154,159,81,13,214,91,171,178,151,13,31,179,88,34,8,35,115,118,84,71,194,201,89,11,191,211,39,132,220,251,44,255,9,241,137,218,125,96,165,3,205,113,155,94,79,70,159,49,49,98,218,33,122,6,134,196,148,225,131,124,124,145,244,159,203,71,225,71,233,195,150,16,7,149,233,63,137,140,194,71,203,100,159,171,188,101,129,101,236,231,29,172,215,130,245,126,125,78,64,253,198,138,13,27,221,229,149,222,212,252,192,201,35,156,251,197,134,128,198,110,244,62,71,10,73,99,130,91,235,179,167,116,111,131,203,127,200,185,252,204,161,231,79,95,236,27,167,255,152,112,55,3,224,233,249,144,108,94,84,162,89,186,194,141,75,9,23,36,246,91,75,21,89,90,11,138,218,25,171,168,4,6,239,10,229,209,177,231,5,150,83,42,170,50,216,15,237,16,139,156,196,9,163,170,129,67,220,155,143,238,52,148,209,77,252,216,8,91,172,166,44,172,188,42,138,106,204,57,77,12,103,148,18,250,17,157,21,41,121,2,254,113,118,234,41,156,233,220,254,28,20,150,192,238,158,90,218,54,149,167,249,181,137,199,100,60,1,3,89,226,148,90,
 215,154,111,103,17,73,226,87,217,84,23,220,19,13,186,124,154,22,38,58,210,66,103,128,223,9,86,119,15,23,22,129,44,104,162,237,132,202,123,52,112,109,70,109,134,121,201,93,2,130,200,91,244,179,178,156,44,229,87,79,22,121,91,197,251,181,214,87,236,66,92,232,111,239,126,105,162,116,245,23,138,86,41,190,207,11,225,115,90,172,117,118,228,166,195,168,103,69,74,67,76,251,78,99,156,195,136,126,122,118,94,26,231,152,178,175,249,188,208,94,93,217,130,67,118,225,14,160,117,187,102,108,85,51,115,177,183,181,211,64,49,8,221,210,115,78,158,184,44,244,175,102,81,130,0,202,209,13,87,203,172,127,10,99,92,152,72,113,73,109,41,219,97,123,213,90,119,13,193,12,122,175,252,34,83,252,108,71,161,223,72,76,197,13,208,126,126,219,185,101,171,162,76,58,136,55,44,119,161,175,69,159,3,250,125,111,146,74,44,60,194,60,95,135,44,149,60,81,204,32,244,163,216,176,75,30,101,13,236,199,3,126,138,236,117,87,146,254,139,226,56,155,44,31,122,206,163,136,9,92,9,41,107,20,54,191,76,32,205,104,150,203,155,115,117,23
 1,25,194,167,46,12,244,4,66,223,107,113,94,48,47,42,21,181,129,46,210,254,231,228,252,42,26,208,162,195,21,147,226,213,152,137,216,93,39,10,147,193,243,239,19,100,21,93,123,184,193,24,239,19,162,109,187,220,41,19,127,3,19,13,27,24,8,131,40,152,175,209,65,192,14,163,166,159,198,20,171,218,212,153,169,61,160,96,38,186,170,108,4,105,117,41,208,159,34,125,1,122,71,79,60,118,151,214,120,123,129,87,82,236,72,14,57,0,18,155,98,149,74,237,155,69,110,68,12,14,121,201,33,29,130,212,200,30,16,57,230,132,233,159,50,10,139,222,74,12,12,138,234,40,82,93,120,39,231,135,139,129,34,122,23,185,37,19,164,156,247,13,191,53,124,40,4,141,157,150,198,215,145,71,50,193,249,212,76,142,244,192,171,196,113,40,113,30,122,150,155,73,141,62,55,67,59,65,196,12,86,134,200,225,110,244,193,177,169,124,208,12,253,177,253,145,249,85,180,86,79,26,80,5,132,246,92,157,199,178,16,95,250,0,184,81,57,51,60,69,93,238,107,142,222,69,4,17,212,251,19,130,255,197,132,154,162,37,108,76,71,100,110,69,235,112,60,112,60,128,
 93,151,13,39,198,235,210,154,208,65,238,103,155,133,135,131,13,64,190,79,87,44,43,34,181,167,125,3,33,56,142,242,19,8,124,116,97,141,204,214,17,209,29,95,175,176,66,137,148,196,0,99,225,24,172,219,83,4,184,255,169,36,245,164,193,51,113,106,169,31,34,52,167,232,192,23,241,196,151,134,140,46,241,73,206,39,40,147,80,230,101,215,125,234,133,91,235,214,115,144,100,192,239,97,66,58,132,67,65,36,169,212,239,235,236,88,23,169,58,149,4,126,152,156,243,40,90,201,115,116,95,28,64,58,119,17,128,92,96,128,237,124,70,135,207,185,43,170,215,131,107,43,213,0,210,98,135,9,219,110,113,126,252,108,75,54,128,181,148,124,6,86,0,183,193,251,126,170,118,57,159,29,145,209,230,9,37,192,148,237,108,218,106,1,170,91,125,198,237,21,113,122,238,118,181,103,8,154,198,235,79,212,114,41,244,237,116,243,80,49,10,53,98,79,218,45,24,78,214,126,16,61,178,92,176,240,252,180,66,212,55,117,250,237,175,61,36,111,227,101,93,33,116,156,4,248,140,48,35,143,208,38,13,189,227,218,58,84,52,140,244,244,188,220,10,254,41,
 4,246,236,141,157,51,147,2,13,251,235,64,81,123,88,253,122,252,255,83,72,161,35,229,144,146,59,19,84,249,160,8,152,255,71,172,58,37,196,151,34,18,4,250,229,62,207,30,189,124,153,222,143,240,17,38,183,243,49,1,165,231,53,100,240,36,86,124,75,65,238,60,123,21,219,121,110,175,42,69,58,171,189,102,81,41,80,35,255,135,152,176,22,31,229,202,249,218,95,96,108,138,249,242,233,30,194,164,145,141,145,83,94,46,170,77,157,98,108,53,91,74,252,254,138,133,220,41,104,82,226,166,79,208,71,67,167,27,117,196,75,184,215,239,113,64,177,206,70,161,166,18,43,223,214,107,204,89,107,69,186,225,86,59,94,209,191,217,43,178,34,224,105,140,188,129,213,24,221,217,115,112,73,204,133,141,121,211,198,20,86,151,190,113,224,175,189,23,37,196,147,193,51,35,212,147,152,139,118,65,116,215,31,50,141,136,83,217,222,181,144,94,89,115,121,31,97,224,167,88,71,14,105,4,233,78,80,144,113,120,71,55,128,95,179,101,255,231,235,120,50,36,162,156,25,248,102,5,29,35,39,58,72,65,128,161,188,17,187,39,187,0,177,27,66,158,90,1
 6,105,241,255,252,88,109,200,63,230,61,45,68,206,146,0,147,37,5,225,224,178,63,255,43,207,175,230,175,252,38,162,225,5,181,58,137,87,43,162,214,106,133,152,54,214,131,204,184,148,141,63,46,91,95,1,94,161,35,20,227,112,46,50,14,61,172,236,162,164,43,143,58,250,98,247,29,53,95,246,69,51,95,122,138,192,195,36,118,47,3,182,195,37,215,172,6,221,198,46,177,117,154,39,106,20,158,148,36,187,64,45,106,154,152,35,220,67,246,125,84,75,16,241,91,80,157,57,55,70,88,251,206,116,114,192,31,11,74,13,198,111,114,180,60,75,248,59,41,18,84,6,35,46,252,194,131,176,244,163,149,216,225,51,132,72,201,43,202,172,226,223,222,252,69,30,62,164,209,234,204,70,228,98,111,17,101,147,254,33,60,80,32,105,79,135,11,150,224,173,236,229,63,14,103,185,36,25,174,45,139,165,147,70,46,107,129,228,137,139,196,191,32,54,201,212,165,170,1,196,158,204,248,247,102,103,81,25,142,22,218,243,239,236,165,56,120,102,83,231,190,45,209,248,87,96,182,29,128,222,31,255,38,67,96,197,96,164,25,182,140,230,124,137,31,93,38,203,11
 8,130,188,35,18,178,146,70,41,130,173,169,159,170,90,99,174,110,236,170,45,93,50,49,215,56,187,77,27,69,16,180,145,54,187,236,152,19,225,98,233,70,138,156,109,160,99,134,216,90,49,145,143,109,3,53,179,220,124,45,244,220,254,69,16,157,8,128,50,120,83,207,104,142,212,142,180,235,177,115,199,50,48,78,252,136,33,107,74,195,70,67,224,13,183,211,34,175,167,221,181,251,187,70,144,117,6,198,255,32,56,10,145,158,234,134,14,32,170,80,201,199,249,77,25,65,105,80,89,35,235,54,13,236,102,90,42,203,36,13,227,72,152,158,162,9,24,174,129,56,4,48,253,232,193,206,242,170,128,116,13,250,146,252,210,201,150,120,141,65,141,104,1,21,230,251,183,27,196,203,180,145,121,64,211,56,214,120,124,5,148,102,200,36,246,130,8,245,164,203,84,156,22,153,102,25,138,145,206,242,134,245,33,49,156,151,244,95,19,188,72,82,97,149,125,96,180,110,243,127,95,107,65,240,47,111,99,57,222,189,36,71,224,0,183,117,173,247,23,127,145,13,191,68,204,193,213,15,150,222,51,0,111,118,192,146,62,186,134,54,214,150,69,30,52,116,24
 0,203,236,201,83,118,184,224,80,225,117,108,26,51,70,141,34,41,167,114,165,192,103,222,168,220,125,63,190,248,250,41,30,219,92,56,204,19,222,185,200,21,83,147,139,151,203,117,150,216,134,236,142,194,99,14,124,216,225,94,135,24,203,191,128,102,87,74,152,151,80,186,151,71,179,212,99,46,187,17,79,245,204,217,126,101,188,200,16,83,204,115,45,96,70,226,223,235,170,229,220,99,128,105,69,74,251,243,83,56,157,5,165,64,15,80,191,237,153,119,144,141,92,67,15,220,161,245,104,13,111,16,126,1,241,196,23,12,247,193,67,93,74,240,57,212,34,176,93,190,54,15,28,54,58,15,205,214,188,2,52,233,170,16,164,248,65,206,9,198,92,16,135,14,106,107,214,161,60,104,83,219,154,138,188,24,66,47,146,43,203,53,207,117,124,18,221,98,46,101,16,88,87,210,249,58,231,159,160,112,106,180,62,179,253,41,220,103,172,216,23,51,172,96,225,204,45,62,74,31,146,160,231,105,121,246,155,108,204,251,151,188,120,9,108,198,224,192,14,225,77,35,132,246,215,243,172,162,132,65,104,26,53,86,65,186,67,172,193,222,176,221,239,112,58
 ,66,55,141,46,247,193,163,37,204,75,70,26,249,225,31,88,205,116,221,220,156,80,140,138,140,83,146,241,90,43,39,5,227,83,52,3,77,241,17,34,102,172,13,57,21,129,152,235,55,65,26,133,131,248,1,20,53,109,100,192,251,42,45,147,9,5,49,132,125,50,130,68,116,39,140,26,128,77,162,235,66,113,99,131,220,130,246,144,23,196,137,178,183,27,207,236,32,161,237,102,187,16,148,23,74,50,210,113,105,163,232,196,200,71,114,125,145,93,76,116,43,47,7,254,142,66,211,211,61,113,45,62,71,0,98,130,120,79,193,89,164,69,12,16,140,200,173,95,188,140,202,116,188,41,177,77,108,145,96,156,176,206,101,17,227,249,97,60,47,97,95,15,139,123,177,67,165,51,33,93,123,221,240,203,14,230,94,19,166,148,177,152,81,56,22,156,0,153,141,30,105,17,75,162,211,122,216,242,166,170,178,165,39,208,8,57,198,161,132,158,47,93,200,67,193,196,91,65,94,132,229,110,10,116,158,195,10,56,180,232,54,243,125,56,191,196,51,141,250,98,165,21,117,66,250,60,117,140,204,80,239,228,166,80,228,125,86,55,75,6,1,186,148,32,161,34,181,102,116,224
 ,233,139,165,87,92,55,130,157,109,170,23,95,40,136,204,121,78,193,59,1,27,149,170,82,5,68,24,87,196,147,204,56,25,161,224,53,176,188,147,48,168,105,51,240,239,51,231,231,114,101,158,77,115,194,247,22,92,235,77,30,48,39,117,246,23,235,161,65,10,195,218,179,205,158,42,71,45,150,249,178,178,87,189,151,226,125,219,244,28,47,123,152,120,126,209,72,208,10,208,181,151,142,40,2,26,115,168,26,108,142,176,26,254,98,236,100,254,157,113,103,135,229,73,48,153,243,32,87,97,161,106,236,113,128,95,105,109,131,27,143,134,131,163,58,219,113,94,38,11,166,214,111,24,123,213,223,226,34,80,105,87,143,160,151,39,140,209,172,103,144,187,113,38,210,226,217,241,38,147,88,80,115,127,36,147,42,111,165,40,149,237,135,3,191,0,247,29,179,17,141,182,4,6,195,214,116,183,216,15,141,143,40,26,48,144,229,46,18,65,188,155,35,23,101,33,80,254,5,247,255,51,248,127,250,215,37,0,190,37,177,122,54,97,38,122,9,14,112,122,75,184,44,64,231,130,162,180,212,161,179,123,93,135,149,112,117,234,142,223,25,151,53,177,1,238,4
 9,226,161,26,0,1,163,71,160,48,1,197,168,48,50,106,113,66,20,162,148,185,154,169,24,51,123,238,219,10,180,181,101,114,30,11,211,138,207,77,180,194,47,159,82,81,141,184,22,6,110,103,195,63,22,61,20,216,128,25,195,46,206,118,16,125,166,4,139,153,40,119,93,219,22,202,44,162,30,122,50,33,115,32,131,41,136,71,90,205,188,175,102,14,31,133,29,167,114,197,104,114,244,28,104,60,119,53,163,139,9,145,250,229,219,63,57,237,129,197,237,1,117,54,171,164,6,18,161,229,11,227,75,87,48,0,240,23,182,163,173,104,21,95,165,0,143,115,95,107,17,222,75,228,197,79,99,23,148,69,112,63,245,167,166,143,36,63,60,19,134,34,16,247,183,116,35,240,234,171,179,33,50,193,117,131,254,9,202,129,82,31,167,186,153,114,12,137,217,62,198,47,86,138,0,208,112,111,90,78,43,147,228,108,246,83,208,93,138,248,227,154,234,175,173,44,148,224,119,248,45,194,215,247,62,32,63,41,16,241,229,123,69,92,34,46,33,16,235,160,242,29,8,62,138,51,163,176,86,166,226,24,132,112,140,84,50,13,222,53,221,2,178,199,161,136,204,98,85,119,39,
 181,117,93,215,187,7,169,118,20,245,216,48,174,122,177,178,97,66,29,119,222,166,27,70,38,164,218,30,33,194,196,68,61,10,38,39,239,89,91,168,196,150,37,94,94,200,180,229,72,33,35,194,224,212,225,207,248,7,44,89,183,83,81,96,245,232,180,253,136,233,53,153,0,155,212,224,66,30,77,216,114,84,59,107,27,4,41,228,36,7,249,14,36,145,201,4,147,190,46,201,126,152,140,253,67,188,205,92,246,26,113,8,61,82,130,254,244,189,61,175,68,24,122,198,79,145,37,21,106,159,131,185,4,51,42,84,79,87,155,61,46,182,190,28,63,43,210,158,3,126,146,106,224,63,83,102,69,221,191,76,253,41,255,177,65,248,171,241,134,16,25,166,177,104,53,218,254,75,74,184,202,116,151,107,177,186,147,201,58,193,253,63,251,154,159,137,178,87,92,24,158,138,236,133,28,225,24,229,58,189,228,90,24,208,22,29,241,96,63,73,17,78,88,59,149,230,189,142,27,206,173,208,110,88,15,223,41,16,242,185,109,98,141,31,73,87,8,169,82,228,138,74,44,105,35,3,3,207,27,122,43,136,160,4,60,60,85,221,177,172,11,164,109,241,14,49,219,240,6,128,144,223,13
 9,248,15,97,230,124,68,68,19,183,160,52,84,222,24,252,107,236,73,13,40,190,95,226,90,10,126,21,65,161,31,200,128,174,167,37,181,236,126,135,227,35,49,9,106,70,153,85,105,46,144,80,12,178,8,209,117,162,253,117,189,21,234,138,58,232,142,109,108,92,214,216,29,134,223,56,28,171,202,106,165,0,88,28,165,200,11,140,141,161,11,63,23,54,44,121,243,152,138,187,238,148,217,212,24,129,229,68,82,248,185,44,215,247,67,132,233,142,242,251,220,153,214,194,221,109,103,176,77,112,33,105,244,8,100,30,240,149,23,191,198,107,39,244,189,178,173,26,127,47,57,58,110,237,225,31,154,220,195,27,167,187,88,18,193,121,204,45,94,51,170,64,219,28,115,161,157,122,163,245,247,74,80,32,135,42,224,124,227,252,119,72,242,32,233,107,142,200,6,71,183,10,86,154,87,12,18,124,202,73,171,173,41,82,33,205,79,205,2,51,137,247,201,195,42,86,215,156,51,215,182,84,95,114,54,93,114,86,242,215,176,137,42,165,46,127,251,1,249,132,31,56,244,9,116,67,63,201,202,84,169,133,207,32,181,126,214,138,141,187,172,49,203,115,171,124,
 49,17,235,89,0,209,85,124,212,47,77,59,254,60,177,82,142,34,130,69,64,185,39,239,160,153,165,215,232,67,219,102,34,13,201,74,31,118,205,222,78,252,191,244,88,217,147,61,157,145,18,90,249,187,112,8,40,64,119,138,23,233,57,164,172,88,197,179,78,193,176,83,14,9,38,8,207,163,163,3,226,138,58,163,188,117,244,190,212,201,48,9,74,153,41,112,29,45,149,14,172,137,75,169,148,217,70,84,54,229,79,143,72,65,234,200,27,215,178,3,186,65,98,184,215,247,243,126,20,221,74,218,165,224,190,189,8,232,154,189,64,132,187,78,138,23,45,177,6,243,169,84,223,96,196,133,144,24,83,53,13,176,127,90,226,227,7,104,254,188,246,111,86,54,194,73,202,28,64,91,216,127,100,63,98,193,227,200,194,233,28,159,110,56,98,163,165,200,37,150,38,70,234,153,231,147,143,10,72,139,145,20,89,218,67,115,130,127,94,10,67,126,178,225,188,95,135,247,129,227,16,127,84,254,23,116,204,170,114,65,135,29,115,195,11,204,172,244,167,129,226,21,233,54,2,189,232,82,217,139,150,185,31,31,14,3,22,80,179,137,3,226,156,235,65,114,65,86,29,48
 ,34,73,217,46,132,94,174,12,63,167,155,69,78,124,121,122,198,229,88,100,174,35,183,182,147,230,5,136,44,171,106,170,191,254,216,0,179,217,119,162,136,240,44,210,112,22,152,104,154,139,215,116,196,217,179,139,221,133,84,57,220,149,147,10,170,77,221,241,121,5,18,69,157,116,173,237,226,189,6,80,197,172,180,17,42,202,69,91,182,18,174,239,202,163,237,250,152,96,245,198,83,157,117,83,44,70,180,176,221,209,74,61,71,24,70,88,95,94,224,27,28,201,140,209,209,102,248,192,38,228,101,202,246,62,29,194,17,166,243,160,191,61,96,244,177,195,221,198,180,248,187,86,73,176,254,152,252,30,163,192,114,104,1,52,109,33,106,130,214,6,68,174,125,61,141,31,48,156,228,226,112,147,231,103,54,111,241,21,247,251,140,147,115,169,166,253,238,232,246,1,153,25,42,126,213,144,16,56,216,198,160,98,211,140,154,222,47,213,186,89,100,44,3,76,228,106,204,80,1,245,170,41,37,68,130,186,105,89,120,167,206,123,52,120,29,10,220,146,137,214,12,40,93,185,45,112,200,248,249,79,58,170,237,121,149,239,124,1,108,43,161,92,30
 ,206,135,47,61,159,193,58,148,6,47,84,233,104,181,251,136,240,185,252,140,56,246,4,254,251,17,171,180,75,100,4,161,187,36,127,195,231,77,255,9,213,103,139,142,252,137,37,61,14,74,19,243,176,203,5,64,175,121,137,217,206,195,190,221,182,203,205,186,140,76,18,151,133,219,252,98,8,94,106,238,19,120,70,184,104,30,224,82,124,173,12,39,146,29,70,134,86,77,187,213,81,127,33,17,162,250,215,125,78,141,132,148,109,222,163,110,167,95,56,125,143,155,59,23,118,253,213,121,227,200,92,107,79,244,228,250,43,59,209,75,247,181,118,167,78,198,195,48,111,97,72,106,255,58,40,141,158,197,95,59,175,240,185,242,80,217,241,63,16,220,172,75,70,100,254,217,116,93,170,184,219,165,181,66,147,2,57,185,165,78,109,52,53,247,16,163,201,210,186,164,32,2,68,251,159,145,129,194,74,24,140,103,226,20,201,44,145,244,200,155,234,229,95,97,162,90,241,105,40,54,3,10,87,21,31,30,245,190,50,41,170,84,59,220,244,148,80,175,119,66,144,235,124,86,13,144,237,167,44,29,196,121,188,180,177,140,2,244,130,93,133,192,181,79,214
 ,156,100,27,215,238,175,183,171,251,162,193,172,54,26,123,132,85,55,4,230,111,228,148,115,187,50,148,212,27,221,242,218,34,201,82,147,115,123,174,113,69,59,79,178,111,203,95,149,164,101,227,126,23,174,23,13,178,147,182,221,238,223,216,132,76,130,207,191,233,178,220,193,37,222,97,35,232,48,52,17,222,144,77,180,248,184,53,154,133,141,224,87,63,23,66,170,125,207,86,94,81,95,69,91,119,113,191,108,130,86,8,239,26,109,126,241,60,197,198,152,4,230,50,123,53,192,58,78,215,44,2,140,222,169,157,29,192,198,214,48,44,3,126,161,21,126,39,252,242,235,186,158,18,93,61,6,80,102,123,99,93,147,34,59,119,235,76,209,121,13,120,63,226,149,182,139,123,32,149,230,38,114,160,15,36,74,143,213,255,242,92,193,92,79,202,26,250,151,109,2,139,156,210,23,136,71,118,12,67,61,127,19,171,119,5,134,23,243,81,152,94,241,199,177,113,29,161,72,100,161,136,252,15,187,228,167,183,157,240,225,60,3,152,227,204,16,132,12,187,225,194,12,102,221,203,64,203,1,228,35,118,69,211,179,134,29,50,125,162,200,217,219,235,9,105
 ,22,71,216,189,173,255,213,45,245,214,161,189,170,20,196,145,65,247,97,8,61,225,201,46,88,217,170,20,22,253,139,61,222,244,163,214,72,183,115,73,200,184,128,49,35,168,76,231,212,55,248,130,85,200,110,219,88,101,185,249,182,58,199,72,159,181,1,169,89,214,117,149,93,171,196,143,25,170,130,177,20,178,32,244,15,203,5,224,38,51,21,99,24,92,6,240,3,18,106,241,235,190,238,187,104,130,18,131,51,226,132,57,69,195,97,106,249,128,240,201,101,168,188,194,221,146,206,217,177,34,151,119,29,232,53,46,123,110,0,121,255,180,148,255,101,34,102,216,88,208,67,185,250,104,82,222,26,160,113,145,234,122,12,235,197,238,79,9,164,88,128,249,174,190,53,244,10,201,172,72,249,109,230,29,74,173,236,4,196,145,33,80,133,33,89,236,246,72,106,151,215,110,164,12,46,152,26,246,55,127,60,132,104,3,54,85,5,156,223,87,238,215,122,178,147,88,184,221,228,254,111,254,11,12,31,35,237,118,84,29,39,129,202,98,126,45,253,219,197,217,24,235,190,89,130,51,39,147,240,239,183,189,147,161,201,18,159,106,72,47,120,186,206,164
 ,29,238,57,147,98,80,144,206,53,75,143,20,115,63,12,222,123,255,175,61,6,201,91,127,33,21,226,9,176,199,196,31,80,209,157,125,29,111,22,241,37,182,9,161,245,211,77,41,234,215,108,38,251,121,45,2,100,45,131,130,33,119,235,193,226,145,14,241,25,40,150,100,119,222,44,194,21,231,105,23,242,194,252,157,192,209,149,244,247,171,73,206,185,185,130,127,165,166,4,73,155,42,225,26,239,69,120,102,174,68,217,175,105,107,69,165,69,53,238,164,226,226,46,226,33,96,249,52,74,13,114,156,32,118,45,130,206,245,207,216,53,212,20,235,24,54,38,165,230,106,87,42,103,225,188,186,18,222,235,204,29,205,12,197,181,195,239,224,168,74,13,181,195,106,162,153,111,52,248,72,43,139,83,47,170,4,94,231,218,80,82,37,8,228,134,12,14,106,185,19,18,128,138,217,253,167,132,36,142,138,170,15,136,128,54,31,44,233,37,234,229,228,172,31,209,123,14,133,5,55,227,62,225,118,101,155,85,181,5,11,161,223,209,187,106,79,31,204,232,195,87,192,107,53,98,115,194,255,115,115,133,140,252,143,128,133,72,10,193,197,253,215,68,108,16
 4,240,43,168,95,7,206,222,211,38,33,63,5,178,25,74,171,166,223,34,133,152,76,198,22,12,85,200,195,175,208,84,38,136,62,22,206,8,250,104,32,37,105,167,162,253,184,229,62,105,117,93,240,91,141,141,85,248,31,114,45,102,226,198,14,171,47,60,200,218,67,217,38,211,12,65,164,212,31,151,61,28,126,100,118,111,115,230,221,100,135,43,4,196,74,53,91,171,227,200,195,143,124,195,163,13,243,175,241,249,21,151,121,223,138,51,153,223,58,85,120,115,33,8,149,69,77,186,255,180,98,44,87,39,150,122,175,23,78,101,19,19,37,240,80,119,46,62,13,155,18,222,47,128,251,215,41,28,44,212,29,211,91,145,161,99,69,103,215,134,105,104,184,242,55,120,17,68,230,209,65,99,131,238,24,147,81,7,253,177,54,226,107,17,64,83,199,63,225,252,217,146,40,187,175,174,112,245,32,165,135,181,4,223,210,110,162,41,242,205,11,189,118,47,183,168,233,207,105,42,104,13,203,60,148,172,188,110,127,16,186,54,198,6,138,65,126,232,80,112,122,131,245,56,233,240,28,81,136,205,186,88,146,43,71,144,67,146,19,233,129,9,5,215,103,2,187,27,70
 ,158,254,180,207,21,6,99,170,245,62,43,48,89,254,25,120,60,32,27,103,24,32,221,141,132,1,126,25,147,197,190,79,251,85,37,77,157,236,152,80,231,205,77,77,180,50,225,50,99,173,198,138,201,244,81,60,15,184,168,108,33,163,77,3,44,15,132,225,146,117,155,134,6,134,72,150,103,123,94,78,139,29,109,34,189,4,210,167,239,87,248,168,251,173,94,104,131,174,178,163,8,125,30,86,51,125,207,185,45,235,71,132,247,20,174,217,132,138,44,26,215,134,148,131,210,151,84,220,132,97,172,85,77,108,247,51,221,6,41,65,33,109,82,101,67,77,121,56,114,175,159,138,25,180,40,119,179,223,182,19,16,212,107,216,72,119,200,239,116,89,77,126,61,227,218,86,205,112,224,211,11,185,38,21,165,50,47,130,192,37,187,18,225,58,189,116,239,106,39,187,197,212,179,51,170,99,5,209,187,76,250,146,112,99,87,7,232,140,94,169,110,99,178,138,133,197,85,226,14,253,76,250,125,6,226,228,127,28,40,119,177,14,70,81,45,241,163,59,82,56,249,2,47,6,45,110,198,180,112,120,135,94,56,78,48,69,111,88,75,41,181,170,92,208,169,206,123,238,238,1
 76,79,88,223,145,92,160,133,56,235,55,134,42,10,85,71,107,161,166,96,131,119,75,152,208,26,89,103,68,16,20,23,63,95,230,68,105,145,171,71,252,183,220,224,118,80,236,226,193,242,34,229,114,254,163,91,2,212,185,240,11,19,42,149,210,130,40,205,15,161,126,237,139,15,209,169,63,193,251,2,32,171,144,38,134,49,208,183,55,132,218,49,6,112,147,104,255,102,54,34,193,175,102,243,225,130,147,204,92,233,73,15,52,29,207,203,34,42,122,39,90,113,104,238,207,171,127,73,106,232,200,115,244,236,34,201,95,215,244,15,224,34,237,218,104,157,93,80,236,238,225,7,34,170,173,93,64,144,76,255,8,97,15,146,145,113,44,6,115,145,122,174,170,220,195,20,174,137,195,171,203,39,71,218,21,50,199,130,248,159,158,6,43,86,19,69,37,199,85,181,49,249,247,139,61,180,144,232,229,193,71,73,12,94,129,89,68,10,193,154,102,92,191,215,74,94,138,203,159,148,197,26,114,182,42,22,158,185,44,137,102,62,62,23,9,90,207,112,192,31,252,44,87,97,185,183,155,17,149,72,57,116,193,5,28,102,21,74,217,126,192,226,125,74,228,161,213,227
 ,1,128,66,23,41,211,230,17,105,129,198,179,216,173,145,164,82,94,231,82,129,79,29,171,184,126,137,22,193,84,209,168,197,4,121,133,233,33,177,82,36,23,34,39,37,66,24,110,12,36,166,63,212,243,104,5,17,66,174,65,147,125,151,150,159,15,147,45,234,250,52,241,193,137,134,34,208,5,39,115,5,138,60,171,131,123,89,131,151,93,30,190,212,125,166,200,126,108,240,81,123,49,24,244,190,139,105,43,19,246,251,150,45,190,57,4,193,162,60,215,54,76,228,71,22,27,28,85,1,204,123,249,86,208,83,6,129,224,231,173,103,234,92,151,24,121,205,189,210,137,92,20,219,4,85,231,129,202,153,77,190,160,245,198,246,216,174,3,27,216,84,80,156,9,136,136,99,155,182,69,21,75,107,236,141,110,174,217,232,26,206,154,207,118,114,80,248,55,160,31,231,32,82,204,185,131,176,240,18,168,131,164,22,193,227,154,84,51,129,51,191,190,70,123,143,194,50,135,240,245,229,23,237,22,24,139,180,84,173,224,105,142,220,65,97,191,101,127,176,74,111,87,137,188,100,44,7,215,201,52,39,73,102,250,108,56,2,166,238,69,62,125,143,127,0,83,39,107
 ,171,143,130,35,12,197,46,9,7,75,239,170,210,102,162,247,50,252,91,17,79,153,239,26,8,28,20,74,56,222,104,9,233,198,53,213,142,206,105,11,1,140,152,27,135,164,55,227,146,254,70,166,34,62,147,223,153,128,143,137,251,223,136,169,66,236,207,141,159,83,27,54,247,225,182,49,250,219,97,114,35,122,125,152,230,196,64,37,171,201,212,150,63,141,176,99,44,27,77,97,185,203,118,255,203,2,17,129,62,36,167,47,142,214,58,12,163,2,85,175,52,226,117,30,0,128,202,38,175,252,32,138,22,254,88,60,21,114,108,65,36,227,31,48,49,71,87,92,162,100,245,153,65,66,121,3,215,166,112,205,62,69,70,131,150,221,112,218,35,225,78,179,94,52,58,74,199,66,194,214,19,173,122,62,9,148,9,76,2,242,47,157,130,8,52,240,75,69,69,8,121,194,188,118,200,169,138,172,31,202,83,167,143,157,10,62,241,110,142,101,190,147,20,100,61,63,216,89,219,48,13,182,44,205,255,196,106,238,207,134,89,44,12,65,116,42,30,9,66,47,34,42,206,168,29,134,67,179,252,199,105,170,29,219,249,241,75,232,145,40,135,145,154,184,44,111,173,212,198,209,94,
 22,197,88,108,249,207,173,202,220,147,132,171,217,13,253,162,119,208,120,66,35,35,77,197,233,232,172,120,90,105,97,18,105,133,229,69,44,102,120,135,9,131,196,92,130,22,103,130,170,143,79,121,215,28,231,5,168,76,35,153,55,107,125,138,237,127,207,6,44,241,216,58,205,108,209,192,1,210,84,219,140,189,209,183,105,52,157,103,51,194,177,155,64,75,38,131,28,182,50,81,156,225,156,179,229,239,152,30,17,13,76,45,117,55,96,62,74,85,56,157,242,110,220,92,217,50,123,62,243,219,93,128,41,201,54,181,187,7,53,231,169,98,101,142,183,202,105,239,131,93,201,253,142,206,194,56,195,189,67,131,208,36,151,170,60,87,125,200,19,198,118,28,167,117,3,166,102,44,244,208,26,193,123,166,125,29,127,191,250,10,136,75,15,180,16,42,100,192,51,40,24,130,130,9,93,215,239,231,223,141,54,29,59,122,195,80,132,2,145,220,233,233,235,234,93,123,251,192,152,231,128,226,102,159,249,199,137,245,112,163,147,226,156,254,118,136,28,206,241,112,65,85,218,16,5,92,82,78,98,217,136,130,5,35,180,1,25,3,134,55,180,53,249,192,103
 ,249,252,140,186,97,240,33,233,107,26,51,252,185,220,208,18,210,138,238,141,246,48,222,234,132,87,69,85,184,178,243,98,122,199,115,126,27,146,244,168,5,159,165,53,6,188,207,205,25,67,56,124,129,250,178,84,89,76,90,98,20,41,80,213,203,223,247,228,149,77,95,155,236,2,86,166,228,36,63,25,47,132,180,216,48,138,150,233,7,169,106,47,237,131,58,42,230,50,95,162,224,199,39,15,146,202,151,25,212,232,91,241,143,51,157,54,115,118,168,210,97,204,102,232,64,90,119,68,183,183,146,130,255,194,93,225,221,174,41,244,155,194,55,230,76,78,57,22,77,111,195,90,19,76,8,17,112,9,0,37,79,13,235,231,243,190,231,235,76,21,63,239,153,40,153,1,238,10,168,226,231,196,3,220,161,168,59,30,158,225,143,121,66,22,211,152,136,10,253,66,56,210,138,106,125,198,29,229,154,251,193,33,82,180,13,215,215,218,168,102,212,128,75,48,10,197,203,226,248,229,105,75,215,130,44,55,113,190,199,214,53,35,59,131,232,140,58,4,255,161,61,204,88,133,245,137,83,57,225,255,112,205,191,175,179,39,72,205,69,176,129,7,161,121,191,106,
 247,50,15,80,218,102,160,18,26,151,192,212,127,57,19,244,210,155,75,158,45,92,129,33,76,163,188,104,100,0,221,222,139,255,158,182,152,133,37,77,156,99,62,125,254,242,57,195,122,13,94,80,57,102,139,52,253,218,22,59,247,181,70,89,27,128,103,233,61,242,160,17,180,114,1,242,93,8,77,235,0,67,183,180,234,162,227,129,236,195,172,146,82,178,0,142,146,144,155,161,97,112,67,216,109,236,46,255,35,243,165,223,38,38,141,253,96,35,43,234,41,69,86,107,126,233,57,62,140,54,175,119,194,165,104,187,96,85,135,207,38,21,241,26,170,250,155,205,52,65,3,145,69,181,59,3,5,64,132,44,103,17,88,199,242,182,185,54,15,120,170,236,129,31,159,93,128,155,110,62,163,244,242,19,247,246,138,158,218,122,32,26,74,177,195,14,131,199,41,84,218,64,135,158,202,59,137,136,183,92,119,75,180,239,12,190,204,92,179,51,38,164,190,27,26,144,65,91,4,50,103,45,239,240,210,191,175,60,110,119,221,41,111,209,165,37,150,86,136,160,188,46,121,56,143,169,106,78,96,182,107,237,233,248,181,194,90,83,197,38,118,168,80,202,134,198,23
 4,94,179,189,99,225,5,205,85,220,12,120,99,241,178,82,162,65,241,184,57,76,2,80,50,148,165,213,95,208,66,173,44,246,65,227,162,182,143,251,220,190,230,103,202,195,195,19,101,158,133,16,237,225,255,72,21,164,221,149,22,26,38,39,249,151,207,62,9,193,220,27,170,6,187,79,142,65,118,206,176,63,141,84,167,13,134,15,143,33,5,195,180,115,239,65,164,56,73,65,186,61,22,32,230,45,91,122,184,27,248,115,239,213,7,139,75,142,83,223,217,164,248,17,238,193,112,182,178,184,103,190,56,121,119,204,79,95,67,96,124,225,232,98,81,189,96,242,16,119,142,177,121,217,124,238,228,207,37,36,67,104,10,92,15,33,200,173,91,59,56,32,0,190,134,115,199,204,29,47,55,96,127,110,118,222,221,169,218,37,188,13,149,248,191,205,59,210,91,174,229,175,56,232,146,146,222,197,48,183,230,162,247,171,229,149,144,32,226,44,58,25,245,236,105,118,164,108,148,47,39,21,84,116,41,113,117,174,237,205,255,7,150,179,241,117,65,217,57,12,207,26,60,104,85,238,192,18,121,19,100,222,124,232,145,98,3,3,230,159,177,90,213,212,197,165,1
 89,171,170,32,175,154,24,178,199,121,45,251,9,32,63,246,57,214,219,91,51,54,19,147,181,110,241,158,124,247,82,168,205,169,70,117,172,219,166,56,60,206,183,89,23,203,63,25,67,185,61,123,148,41,31,134,43,177,52,65,144,239,1,134,23,33,34,143,213,190,80,54,217,108,99,105,237,237,192,65,187,40,130,8,201,29,253,47,95,212,234,95,49,11,93,40,102,23,109,83,85,39,33,188,64,86,65,156,232,43,131,226,31,3,150,219,124,60,174,43,241,47,114,105,19,134,69,202,125,194,149,38,149,197,171,241,120,142,119,187,63,69,22,97,135,130,6,103,74,11,152,156,167,84,53,139,146,58,193,142,102,103,50,237,218,113,92,236,177,243,239,127,90,190,128,61,186,161,132,208,25,67,137,50,30,179,28,175,193,194,228,67,173,13,7,133,83,157,58,139,45,100,212,82,152,237,238,174,166,179,127,201,151,110,127,39,96,16,189,115,203,102,117,253,19,39,147,142,6,99,125,60,0,230,188,81,105,91,140,87,238,8,146,224,239,128,205,38,18,207,225,110,87,247,221,3,193,246,245,195,145,186,74,199,201,22,128,121,102,58,149,208,247,84,58,8,68,239,
 142,146,128,244,38,18,119,149,62,138,215,141,174,13,213,11,11,43,237,60,119,152,49,139,82,84,237,187,41,56,180,177,166,68,17,122,141,247,243,137,82,17,141,221,92,7,241,216,211,181,241,70,62,138,228,138,119,5,226,161,106,228,102,133,77,136,229,43,147,219,117,20,87,197,137,56,231,94,20,232,122,3,250,2,198,86,216,174,39,178,189,7,148,64,91,28,147,221,21,119,40,18,58,146,254,153,196,209,96,212,220,214,187,87,44,197,213,108,74,170,69,202,111,129,93,245,12,192,150,216,38,100,239,146,227,126,103,178,182,23,61,133,104,83,194,52,222,221,196,72,6,35,177,124,21,138,199,203,17,207,161,45,245,9,193,134,33,68,51,205,44,195,194,147,117,254,180,170,100,63,74,11,3,58,61,127,221,30,68,108,205,129,189,242,45,122,66,128,144,70,184,55,37,51,187,7,138,85,92,148,42,49,253,140,91,13,72,137,197,124,121,250,64,71,61,75,66,132,146,205,114,215,176,186,10,128,232,148,57,216,19,224,76,9,142,156,106,239,35,249,9,143,22,245,138,71,186,49,152,158,42,183,19,223,61,131,120,150,64,114,116,247,63,108,39,125,5,3
 3,148,215,66,47,42,62,37,156,71,211,73,250,225,6,215,1,113,183,242,168,63,132,105,188,230,120,103,29,97,37,3,70,11,43,79,126,153,148,67,93,251,16,69,160,108,136,204,193,255,173,120,179,129,163,232,82,139,118,215,30,194,205,240,175,74,231,9,47,69,154,255,185,172,80,202,69,250,5,108,113,179,92,158,159,236,143,111,58,148,145,132,75,186,37,15,38,249,119,107,165,104,65,35,80,251,211,16,10,170,112,153,138,182,6,242,140,244,94,147,127,68,36,149,73,194,80,81,49,249,250,133,239,11,243,105,202,89,168,233,246,174,78,211,244,122,102,185,150,28,200,85,186,95,29,26,204,59,188,64,147,56,81,96,246,235,135,200,6,199,114,92,20,33,80,134,192,211,172,123,62,223,55,7,33,159,40,31,63,194,230,153,238,36,175,192,190,104,237,138,247,211,189,231,206,119,41,49,171,237,45,5,169,195,193,192,69,100,144,115,175,235,190,183,167,74,210,107,167,204,4,79,137,64,193,194,87,19,134,80,25,197,224,233,10,130,11,233,60,176,228,7,159,75,20,75,49,182,64,125,196,192,187,77,188,85,38,30,3,156,123,21,137,50,225,99,208,2
 47,247,51,208,234,80,8,201,116,243,54,6,70,165,68,220,227,132,228,210,5,61,152,157,161,238,148,146,52,207,20,232,17,229,173,82,211,50,5,199,210,189,91,23,229,136,235,89,166,12,233,208,118,39,113,236,35,140,249,173,14,9,200,70,27,166,237,238,133,206,4,172,191,205,201,53,32,250,101,148,241,250,62,96,170,152,55,95,14,117,234,240,73,187,242,46,202,121,152,188,23,194,8,173,49,115,180,252,141,78,71,35,99,225,206,19,96,180,108,163,130,102,68,199,247,210,191,83,185,114,247,167,113,190,47,148,210,94,39,227,112,234,172,117,38,70,111,221,76,193,170,244,91,53,166,61,59,38,242,198,22,131,254,52,56,39,72,235,227,188,138,162,255,72,155,241,16,98,185,69,65,246,135,240,102,119,172,26,79,26,47,58,92,245,169,47,133,89,9,59,15,160,113,195,224,57,128,232,67,60,114,0,183,184,159,76,122,27,35,63,235,98,136,0,149,131,19,85,172,33,151,170,147,61,71,195,98,14,180,174,11,186,112,28,223,79,74,11,189,216,242,194,162,167,191,4,115,201,254,80,41,234,143,144,3,190,153,198,206,7,205,19,66,229,109,38,245,178
 ,183,121,93,13,203,114,236,87,216,226,172,52,127,156,171,94,85,193,87,101,46,247,23,238,169,175,12,179,223,230,90,118,237,150,236,129,182,42,39,194,46,142,116,120,127,88,75,241,239,124,42,46,65,140,119,81,15,118,171,202,169,231,98,119,192,216,164,41,161,103,33,117,20,66,241,139,131,109,238,243,207,154,89,184,216,226,18,143,157,98,45,188,33,205,195,63,171,26,65,165,250,152,186,29,239,53,195,219,114,167,26,123,230,122,104,49,46,164,199,251,89,76,214,94,24,100,218,198,107,37,208,250,18,148,2,108,98,101,183,137,20,139,10,51,64,1,216,87,40,171,123,146,67,99,122,229,120,230,222,229,43,14,223,199,112,49,161,194,147,135,167,235,232,85,175,183,222,238,200,4,179,69,7,11,124,225,213,252,226,176,3,118,85,76,138,155,51,12,195,104,89,171,133,144,14,129,56,240,197,27,81,32,65,5,192,36,76,116,177,200,255,110,128,130,22,111,178,195,225,26,160,255,225,164,60,123,118,24,241,244,65,161,247,5,138,201,89,50,214,253,213,116,88,10,229,120,35,222,37,115,153,130,213,45,118,19,39,232,139,226,184,178,6
 7,56,110,62,59,222,128,101,140,16,176,159,106,33,22,190,10,63,91,201,130,132,181,85,40,252,93,205,57,17,212,212,206,127,29,232,65,221,191,53,19,160,24,213,160,57,64,187,241,91,207,53,151,53,200,153,175,140,33,146,218,14,136,86,20,23,218,146,53,241,185,30,133,159,206,72,234,109,139,247,97,201,70,107,175,169,211,44,249,31,22,117,3,27,39,233,153,137,56,226,15,226,23,132,252,52,225,215,140,182,68,42,125,231,249,109,8,136,16,205,237,77,31,92,212,216,188,137,97,254,233,182,75,232,241,110,113,30,136,130,147,11,2,122,135,34,250,149,111,178,100,75,234,99,245,30,255,222,28,186,195,205,155,99,214,29,219,24,155,9,31,143,41,161,88,114,151,150,210,168,60,97,241,0,132,190,38,96,23,75,202,196,53,135,17,178,45,30,237,110,186,213,36,6,183,109,109,7,166,225,191,42,180,89,112,127,9,144,34,95,220,40,186,33,98,229,97,98,110,162,163,147,191,93,135,20,78,178,229,12,87,233,44,26,174,202,15,82,228,105,134,186,92,151,204,147,32,200,174,89,1,206,68,124,24,159,171,221,229,168,214,168,82,185,122,19,124,8
 8,51,134,186,52,224,86,104,197,181,32,217,190,222,159,77,192,230,122,247,65,5,84,221,85,215,28,19,91,192,199,75,251,164,219,196,170,80,210,48,2,172,223,78,59,205,27,122,11,1,146,96,179,135,130,58,174,145,239,240,116,138,70,120,224,104,109,235,255,237,203,64,56,149,65,116,60,168,28,0,234,206,224,9,129,57,246,52,6,87,211,143,55,71,189,63,179,163,63,209,155,39,65,209,132,114,29,222,116,249,223,73,197,238,100,136,100,194,231,146,97,182,162,151,102,79,210,223,52,32,87,45,184,209,175,249,184,177,216,5,199,10,87,157,131,162,150,239,240,159,255,41,254,183,169,247,165,217,233,236,226,71,185,165,108,209,109,138,30,210,168,177,30,99,1,56,81,59,178,185,141,61,226,180,239,189,201,156,101,0,241,75,184,13,234,88,127,164,204,244,159,174,90,111,177,36,181,172,93,249,125,218,17,86,98,130,63,1,245,83,209,151,220,207,182,235,218,76,46,189,149,205,65,67,81,231,221,190,220,109,247,192,73,64,178,109,184,17,210,88,219,165,52,47,213,133,61,218,255,81,153,251,49,126,56,228,45,59,50,186,191,204,132,10
 ,188,48,22,106,184,195,94,175,214,101,104,14,32,217,220,21,2,210,70,227,42,146,240,116,116,140,163,93,128,31,43,80,179,184,132,37,168,254,0,168,145,54,241,165,60,195,227,117,38,225,59,224,214,66,210,141,81,191,28,166,59,181,14,197,160,112,147,201,91,238,64,223,229,239,249,2,125,255,182,89,76,25,32,180,80,137,120,142,22,133,167,101,157,65,117,80,220,2,53,63,220,241,115,31,98,185,41,252,60,62,29,47,140,172,21,94,45,191,1,15,140,84,205,128,28,140,146,222,251,199,24,199,72,118,97,58,30,227,10,255,229,167,148,37,194,111,221,128,120,225,153,137,254,253,142,168,7,197,31,217,89,146,70,121,223,179,202,157,24,88,84,36,145,239,212,80,212,148,17,243,169,202,253,234,242,47,238,64,3,56,91,201,126,45,93,107,228,172,231,51,204,57,95,80,105,104,199,63,119,29,171,175,65,124,102,134,17,3,172,42,183,222,182,146,63,245,75,18,2,155,69,145,160,74,235,248,116,159,119,162,238,74,39,211,221,8,210,194,92,66,135,97,82,145,113,184,152,249,200,1,124,3,162,85,243,84,79,22,226,102,245,118,18,235,153,24,151
 ,166,140,14,91,54,232,44,25,214,79,137,58,49,120,46,52,34,134,223,111,14,28,183,31,207,120,150,209,238,181,210,134,243,219,128,147,29,252,19,36,30,235,216,234,75,61,11,51,246,174,10,102,80,96,84,228,180,80,148,240,7,197,186,205,146,171,175,213,255,119,67,15,199,233,161,113,188,90,207,82,28,94,234,53,53,60,209,153,55,254,238,254,221,204,59,211,183,90,56,220,146,89,241,144,244,68,242,108,29,30,159,190,138,195,6,54,141,60,195,178,173,203,5,33,98,28,250,68,47,142,3,164,106,204,182,187,239,65,190,94,11,62,51,35,201,146,70,20,233,6,133,75,173,117,137,216,110,92,224,69,65,177,58,74,196,45,33,0,242,53,65,81,13,224,112,11,228,168,100,108,42,14,146,8,75,11,72,184,89,250,146,125,230,10,118,104,66,176,109,39,174,64,206,60,228,73,4,55,2,128,36,241,203,170,190,92,206,52,25,207,162,144,247,18,146,51,184,207,118,195,120,157,67,144,211,202,238,82,194,194,219,206,76,169,72,112,209,27,118,5,36,122,100,195,14,245,239,122,113,98,116,138,255,238,165,131,111,173,38,176,47,177,140,102,196,211,133,8
 3,10,253,1,221,107,90,118,209,39,97,62,235,230,225,247,229,152,18,235,245,224,13,94,165,89,100,253,229,34,106,236,128,204,61,232,135,245,174,140,244,44,90,31,65,53,20,31,175,113,45,20,182,255,80,143,175,12,141,105,235,99,254,148,21,153,57,25,43,116,95,105,68,132,66,117,134,13,196,217,183,10,196,119,110,178,51,18,90,84,17,75,198,210,60,178,128,212,117,59,188,68,33,205,24,132,61,94,35,59,123,32,11,193,85,186,168,38,119,64,148,51,67,250,65,110,243,74,213,87,93,91,156,102,244,133,36,143,132,81,44,169,212,68,18,139,154,34,110,251,208,73,31,198,212,118,70,64,67,238,20,8,9,77,169,60,186,75,36,32,58,7,40,28,219,252,7,106,188,205,202,169,5,238,189,124,107,168,174,224,249,105,236,202,182,84,8,58,69,25,218,239,41,7,134,43,247,153,196,42,42,207,99,31,150,173,105,2,172,244,154,95,107,38,185,30,190,138,48,80,62,105,146,68,61,164,148,241,238,125,220,151,207,11,200,206,5,4,1,145,65,36,228,251,147,133,251,106,9,58,153,10,210,65,83,69,0,144,241,239,175,35,136,38,75,134,187,179,103,211,103,112
 ,119,195,157,223,115,77,16,219,216,230,134,57,233,238,9,176,247,111,239,1,143,175,183,54,76,229,49,28,124,12,115,27,213,184,194,253,149,255,41,47,118,246,103,71,81,38,72,17,51,222,176,22,161,172,21,38,236,245,48,73,87,143,62,227,41,11,197,133,27,221,52,225,224,156,64,162,48,73,224,216,28,212,219,180,105,15,148,119,123,164,222,46,14,193,169,124,94,87,175,88,76,56,90,197,179,228,232,15,213,78,194,250,64,43,90,150,43,63,89,132,192,212,226,183,225,7,209,68,65,30,239,1,245,60,94,54,7,245,250,14,15,232,86,207,8,183,134,37,13,112,238,133,146,120,177,149,187,204,162,57,94,248,190,193,130,90,200,155,230,149,8,219,253,36,122,228,190,237,200,43,30,124,163,202,180,94,11,141,33,112,177,103,100,53,80,67,96,136,145,88,141,193,12,201,121,199,112,88,118,216,145,133,42,129,130,123,158,34,53,33,214,182,27,12,85,85,163,175,75,185,206,147,149,99,220,142,187,50,14,73,60,125,99,68,182,9,149,70,125,174,112,74,156,78,63,118,176,201,59,33,34,24,33,185,58,150,86,219,172,129,250,189,211,250,160,224,102
 ,142,6,151,17,105,40,150,39,89,39,89,54,164,61,176,107,173,191,150,241,188,208,111,119,110,53,204,138,8,64,171,236,140,122,151,36,2,168,241,77,34,132,119,146,241,45,132,104,220,158,42,30,25,224,152,15,144,3,6,66,198,93,59,117,33,70,112,129,111,109,124,213,241,147,248,234,151,133,66,192,214,172,75,183,48,120,88,26,138,82,84,193,138,113,3,33,190,140,3,64,206,230,71,3,249,75,57,39,123,161,124,207,205,227,48,4,214,26,160,51,181,119,220,127,0,5,202,16,38,128,131,253,89,114,8,28,117,160,32,48,73,45,155,202,92,229,114,176,72,138,144,6,202,224,147,97,136,150,230,23,183,214,164,199,230,81,102,99,127,179,109,89,2,155,250,60,93,141,159,123,157,44,129,72,183,196,97,173,58,254,136,71,180,26,64,17,14,4,181,57,159,133,158,12,148,201,3,165,41,17,224,109,85,182,50,144,199,203,188,213,148,162,26,223,5,20,37,106,10,82,86,233,104,49,135,202,61,252,71,70,68,13,229,87,18,175,87,229,111,244,190,204,125,184,75,157,129,13,26,181,115,16,204,202,253,177,121,72,172,90,11,147,65,215,123,128,228,124,112,
 58,230,48,167,165,110,251,34,188,226,19,15,162,72,87,213,59,223,68,167,246,3,183,33,199,8,109,41,24,152,184,187,183,148,252,50,195,92,84,209,113,175,223,65,150,174,184,93,45,138,208,111,105,14,175,199,65,33,243,72,242,81,182,246,120,222,180,72,198,134,225,213,193,100,183,225,46,189,251,154,249,90,201,88,188,199,89,251,224,151,147,107,220,151,138,204,94,149,133,125,196,250,202,24,239,208,13,56,36,16,3,142,177,237,111,208,195,95,172,235,173,40,86,64,53,60,57,19,98,43,231,157,23,163,195,207,178,148,43,57,158,121,145,48,42,212,221,68,50,91,73,109,251,155,164,241,135,62,22,26,31,136,152,218,54,215,15,37,116,2,163,2,100,219,138,38,62,210,71,136,173,130,178,185,39,184,211,223,115,177,44,205,187,242,106,152,254,126,150,112,72,122,217,181,213,223,121,173,201,202,36,71,183,171,8,37,193,214,64,150,83,37,33,151,204,94,33,76,252,83,74,137,160,144,184,178,136,147,112,183,47,187,217,10,243,160,184,161,226,98,78,101,104,3,149,166,251,55,106,127,121,28,8,236,89,157,80,251,15,42,118,243,28,72
 ,246,46,176,115,131,245,151,62,89,205,142,81,107,191,136,178,180,222,73,17,24,2,18,129,99,64,65,166,201,16,141,171,225,42,79,60,214,180,115,227,180,175,137,153,212,205,164,92,141,148,234,241,39,217,29,65,77,140,7,176,207,110,7,233,212,131,203,69,142,21,135,249,37,217,254,131,202,77,54,3,179,192,249,138,218,130,68,69,229,100,123,74,215,144,126,172,216,221,220,139,124,114,110,154,9,81,29,235,131,235,146,82,21,35,204,47,129,219,202,163,195,85,16,242,232,31,159,30,232,108,76,74,38,244,54,63,98,232,83,109,110,217,205,48,250,110,190,113,99,135,138,21,35,56,104,166,248,106,16,71,220,24,243,11,201,67,219,10,116,209,100,158,224,111,164,170,152,123,213,60,48,158,103,51,230,206,240,47,196,128,246,54,223,17,78,101,180,107,79,68,55,233,82,67,56,143,121,184,220,22,155,78,88,213,71,9,193,139,74,100,56,248,88,66,64,177,186,254,67,190,71,138,219,167,22,233,126,240,104,220,53,133,71,44,210,158,144,34,150,66,91,171,251,206,78,189,149,43,70,95,140,194,65,119,7,107,191,82,148,32,76,204,130,168,2
 10,64,62,226,28,139,65,36,216,120,166,133,82,95,201,137,201,229,246,50,154,227,37,106,246,89,43,209,97,160,65,20,137,227,2,210,11,109,45,236,26,157,165,142,147,81,235,47,10,28,40,174,157,55,6,109,113,221,26,168,254,138,89,96,54,95,89,234,148,35,26,200,151,203,226,131,34,168,41,46,59,147,11,21,36,112,170,113,139,191,226,142,221,158,54,143,182,25,84,60,164,168,200,252,45,19,193,205,47,30,150,79,39,27,100,14,230,224,110,16,13,197,123,125,81,199,47,154,106,67,147,81,186,136,35,253,151,16,106,197,36,29,143,243,237,192,208,129,85,127,47,122,132,30,218,151,179,68,7,163,78,221,231,188,75,58,247,190,75,8,155,124,233,22,95,48,34,174,172,124,54,116,198,84,230,65,183,146,77,37,50,57,117,207,163,104,55,96,38,195,54,158,5,134,205,195,76,136,221,6,155,242,44,88,79,186,162,232,14,14,195,48,125,9,187,202,76,57,250,133,204,26,197,217,239,32,141,3,30,151,70,226,119,211,177,42,94,183,99,146,158,117,194,42,102,22,242,185,76,85,147,184,160,236,159,15,148,164,37,19,252,119,97,231,205,139,86,220,6,
 56,155,26,161,8,179,164,205,198,39,233,17,52,13,71,222,132,251,164,89,43,158,42,146,75,187,133,21,203,183,75,242,75,115,80,214,14,26,103,185,230,1,47,119,126,159,22,46,189,125,164,40,156,150,220,33,253,204,228,12,182,138,116,112,48,48,173,35,158,25,77,109,172,11,227,149,254,166,129,222,253,36,2,143,43,199,211,65,241,153,246,197,183,163,226,133,85,1,4,139,18,159,104,42,13,110,154,172,36,170,68,0,76,172,18,168,144,157,216,124,187,190,167,18,70,126,185,80,91,170,200,100,144,135,186,104,245,38,92,228,241,104,99,82,113,131,211,55,137,169,20,11,6,10,239,40,85,116,208,198,120,109,43,166,129,185,195,118,233,41,138,251,117,169,15,224,91,104,99,22,122,7,17,68,112,204,248,117,26,120,35,53,43,58,228,141,214,82,174,157,185,110,136,200,101,124,218,20,79,152,213,8,229,35,116,142,124,199,168,180,80,61,241,211,69,67,2,165,211,46,198,244,12,125,89,36,245,34,7,47,147,131,133,95,121,155,57,173,87,204,230,194,37,91,223,203,61,107,118,10,111,5,148,223,110,3,101,157,89,221,44,4,24,143,205,207,70,1
 45,117,4,232,97,126,241,61,155,114,112,147,249,226,117,81,93,80,178,1,2,226,192,238,2,142,111,79,99,213,98,181,187,190,119,180,210,142,98,64,239,14,7,199,179,118,215,4,249,71,211,211,157,120,208,7,135,129,33,82,49,22,226,226,139,221,232,251,229,189,187,28,226,105,60,34,99,252,98,90,36,41,190,75,80,138,156,143,226,91,158,75,233,99,210,84,136,152,127,213,68,23,177,92,71,58,80,200,248,210,67,100,21,0,239,215,133,82,108,181,252,33,94,73,210,250,22,56,178,67,141,156,29,37,88,190,50,208,238,192,92,210,127,253,46,162,38,112,161,187,253,177,72,194,210,39,145,87,9,129,75,145,243,110,132,45,108,131,220,1,105,9,23,56,220,238,99,211,6,94,212,143,37,23,27,40,208,126,70,34,126,143,64,152,230,157,123,174,152,71,87,192,10,27,54,37,206,74,250,31,143,9,65,60,183,189,127,108,136,132,178,102,171,44,208,158,120,87,197,154,114,88,138,150,187,185,37,211,12,138,144,150,148,195,104,59,241,164,71,16,255,72,95,249,197,220,2,172,255,84,236,222,145,94,10,220,69,41,38,252,227,129,90,43,103,139,248,253,22
 1,241,80,106,109,120,137,124,200,155,194,198,190,30,126,82,132,104,177,186,18,251,30,78,65,206,94,144,247,121,106,54,214,85,214,170,104,147,219,218,174,21,144,87,227,54,195,95,8,101,100,95,53,207,101,97,113,137,223,236,92,169,240,100,118,105,148,33,122,44,214,132,186,214,209,115,95,179,225,165,3,142,73,169,73,247,81,162,207,138,126,175,220,81,35,66,219,96,80,10,8,231,104,221,136,10,27,246,241,37,102,37,171,109,85,185,218,115,61,147,225,67,71,239,181,112,164,154,56,49,57,222,161,238,130,92,233,59,196,37,188,78,130,193,133,55,27,39,7,136,49,113,133,49,145,89,210,145,221,48,88,80,174,151,92,7,9,133,124,58,236,172,124,193,72,10,88,99,207,102,45,34,71,9,217,153,249,131,230,122,250,201,215,36,51,213,52,141,23,187,239,154,110,235,51,107,35,125,210,254,37,104,87,235,35,226,21,168,124,38,246,234,104,203,167,4,174,239,50,65,183,81,43,178,5,197,249,220,31,36,253,57,246,75,1,135,9,235,107,196,155,71,66,43,158,149,69,131,72,60,4,228,212,49,122,132,75,140,86,226,247,216,201,70,184,42,84,2
 23,62,26,108,176,245,93,227,55,46,7,7,88,176,48,0,90,21,243,175,142,115,14,70,1,94,188,73,117,80,42,230,50,123,169,58,186,36,196,159,168,253,11,97,1,165,201,47,157,181,129,230,135,191,238,1,13,98,187,242,43,144,130,24,40,164,208,87,101,99,98,229,92,238,17,57,246,248,33,80,140,51,182,180,104,133,245,82,26,59,210,65,163,93,145,8,42,168,255,237,167,34,141,65,55,11,244,127,250,49,220,120,174,89,48,216,150,173,228,115,207,195,245,153,86,38,173,9,133,79,230,38,42,3,54,162,193,238,140,73,32,233,58,203,38,241,168,236,124,132,73,229,6,28,48,168,221,65,38,35,36,140,164,150,192,220,35,19,23,252,170,160,255,89,221,222,50,252,245,81,246,103,117,170,106,130,157,155,139,206,10,244,251,253,128,74,76,99,203,230,240,27,70,198,5,138,80,162,202,68,172,190,208,182,176,121,215,164,218,120,52,39,16,78,65,200,74,45,9,114,39,91,213,189,183,89,177,114,154,176,205,7,173,49,232,232,145,194,57,165,231,150,237,252,142,151,126,83,190,150,11,46,218,245,47,135,133,151,160,15,14,211,252,185,215,11,6,188,173,
 26,158,228,150,23,139,8,213,135,196,169,7,23,190,222,105,117,42,5,203,158,34,212,214,246,157,245,222,86,36,27,87,44,19,62,192,157,69,86,171,170,28,206,239,55,193,81,118,129,134,102,65,232,133,95,171,198,148,50,213,61,132,94,97,210,187,57,249,156,141,250,229,153,22,229,133,12,153,82,97,139,228,72,164,55,25,244,125,176,25,185,56,237,191,34,242,83,41,9,125,206,187,161,43,240,250,10,80,50,71,131,39,135,217,60,236,191,3,229,15,54,48,77,242,159,218,143,191,178,254,47,87,132,164,26,221,95,54,59,230,198,177,170,126,48,50,41,105,142,141,8,152,189,198,176,98,185,131,184,245,199,238,30,245,170,215,45,116,219,39,43,252,27,202,127,127,180,98,117,101,213,238,177,28,65,28,66,174,238,248,201,144,24,64,89,56,113,55,195,171,50,137,111,252,178,215,143,56,103,142,243,230,63,204,27,89,112,125,230,245,63,82,199,208,81,231,133,148,195,106,209,16,6,13,129,160,143,19,254,49,79,154,187,3,244,236,95,2,127,191,59,216,107,83,157,75,204,201,94,214,177,26,101,185,36,114,17,30,213,34,182,76,75,156,89,165,1
 21,111,79,151,242,7,247,128,83,238,152,107,255,172,135,6,47,167,33,214,183,37,44,162,131,30,245,113,222,159,253,206,100,194,81,80,97,160,69,68,215,176,218,108,72,30,51,117,67,29,69,38,127,49,91,228,84,200,231,7,194,144,66,48,73,3,160,236,101,204,221,42,245,13,175,50,254,64,135,102,246,97,49,122,103,167,85,104,114,26,42,58,129,86,232,35,207,100,4,110,244,65,125,3,55,122,161,231,32,237,247,43,116,212,23,255,247,101,124,232,242,236,177,95,149,103,122,239,250,129,203,153,249,97,52,230,175,180,226,118,68,134,147,12,223,21,72,251,143,103,61,252,61,225,50,94,177,53,162,238,226,167,101,239,63,197,208,61,63,179,33,159,142,61,61,1,220,243,81,119,204,55,50,31,221,150,10,190,23,70,72,236,202,89,24,110,156,222,81,135,28,241,125,248,183,212,107,72,230,201,225,255,246,68,37,140,35,220,172,159,27,207,126,238,217,225,216,28,151,147,103,133,156,210,123,215,231,78,51,62,63,227,84,166,182,7,167,27,116,237,144,244,229,247,230,165,186,29,134,180,185,94,24,119,183,244,187,75,215,178,215,109,115,12
 5,172,98,111,185,224,186,232,74,142,108,35,239,57,189,130,120,33,85,26,241,212,244,60,78,220,48,140,62,68,21,77,194,131,135,176,98,7,140,198,172,45,19,110,84,217,86,144,251,118,149,203,76,43,246,73,2,2,203,127,68,233,167,168,226,57,72,234,205,195,161,110,168,95,175,223,8,237,210,6,23,97,178,167,208,220,11,137,22,238,99,1,152,61,102,146,86,10,223,175,25,173,210,175,108,254,14,28,193,192,240,240,116,154,246,95,92,214,129,110,49,88,89,185,20,199,189,123,30,227,86,193,195,237,138,193,144,50,46,61,104,44,37,83,53,59,211,18,239,96,137,120,140,105,238,77,64,97,50,99,90,170,138,250,60,196,27,202,86,57,172,67,153,68,243,22,90,213,203,210,225,86,234,202,132,147,200,54,84,172,207,171,207,15,24,187,70,54,65,1,49,23,84,121,163,218,201,129,42,50,27,56,221,182,126,255,64,255,226,134,220,167,39,53,140,166,155,60,171,63,201,87,117,255,197,121,10,8,186,227,240,40,235,10,71,188,92,162,56,102,61,2,250,163,89,4,168,60,52,176,22,20,33,18,70,99,161,234,145,35,63,146,221,49,39,179,151,53,184,127,16
 3,76,109,241,136,64,236,104,126,78,75,224,26,78,228,125,174,25,215,45,183,203,205,88,27,131,176,182,154,10,56,241,238,202,214,204,28,105,227,75,185,77,168,188,152,217,48,229,17,127,68,27,216,205,33,52,74,146,190,241,67,148,149,179,8,97,74,245,79,77,143,115,214,157,238,76,164,155,96,235,105,233,251,30,219,71,150,50,234,176,3,189,139,231,244,34,82,56,223,158,200,49,202,92,188,21,147,152,154,254,170,139,182,114,188,71,250,28,196,250,178,149,218,239,196,178,113,41,252,36,131,226,152,207,228,122,247,119,252,125,235,144,134,33,149,43,7,191,24,156,212,218,109,161,236,24,78,242,55,50,5,136,188,254,23,182,69,215,48,196,68,110,26,227,112,205,165,52,210,28,85,50,93,42,163,210,20,188,178,127,115,24,87,44,88,122,128,72,17,159,26,207,255,49,248,225,213,86,212,254,160,166,172,33,115,233,52,132,94,244,14,225,204,162,167,24,23,42,120,255,140,113,31,46,14,102,122,198,31,119,210,243,25,32,26,7,20,69,209,40,18,3,231,107,235,90,58,200,254,155,74,8,77,88,213,211,209,12,236,43,43,124,105,22,238,66
 ,222,55,214,169,128,105,43,210,97,160,3,156,80,155,117,107,144,93,115,7,81,253,35,244,220,187,230,130,91,111,63,250,250,9,224,89,38,108,153,31,117,23,58,46,238,153,203,224,106,23,125,138,46,79,208,19,188,140,32,164,54,130,250,98,16,178,74,117,145,250,42,158,102,184,53,218,124,131,249,137,85,219,97,19,155,1,112,56,80,85,235,10,56,210,22,160,54,255,126,135,95,218,22,237,192,151,167,20,36,137,94,221,92,135,202,237,107,227,47,250,92,65,25,157,123,121,132,86,218,212,145,96,6,105,54,38,235,153,245,19,121,175,15,249,59,133,85,70,48,156,124,29,140,129,95,45,60,98,197,110,103,241,47,91,154,64,65,148,151,73,2,232,49,142,159,168,16,214,170,52,130,111,29,227,246,93,131,105,80,141,221,174,132,146,122,127,73,153,75,100,52,140,28,33,91,226,53,254,54,129,110,110,172,74,219,201,159,48,152,17,109,155,70,51,254,85,142,17,172,9,216,216,160,242,172,35,189,123,161,57,89,208,35,131,69,5,205,4,69,183,67,227,47,1,161,42,185,126,16,247,34,185,127,155,32,183,9,34,95,74,73,155,154,179,16,72,44,180,194,
 165,218,86,243,77,188,37,230,139,111,206,217,22,37,110,90,11,134,193,215,200,191,230,161,114,186,41,83,71,40,42,242,0,166,81,78,130,191,88,42,184,243,212,30,51,219,37,114,185,113,150,147,125,179,232,63,85,250,9,122,120,59,191,17,74,192,131,142,58,101,127,21,24,134,244,255,205,211,107,159,197,25,249,38,43,249,82,192,203,191,231,29,128,119,35,42,88,19,84,255,194,195,135,164,42,77,251,76,173,189,86,216,76,35,188,198,13,58,19,49,137,230,152,60,101,169,148,5,161,60,45,166,109,135,159,247,161,207,203,170,30,144,18,25,91,128,234,219,34,190,115,137,243,181,96,127,170,242,221,102,41,70,136,133,49,224,217,38,97,109,40,198,27,191,103,207,23,50,77,255,29,118,140,19,206,43,34,140,31,47,48,30,98,139,39,198,26,170,162,130,81,209,228,247,108,169,82,251,199,193,48,93,184,99,181,106,155,130,254,59,201,192,241,56,244,109,101,100,106,228,135,87,13,208,91,110,233,182,21,3,36,158,29,227,65,192,208,120,215,100,113,146,73,137,158,228,107,139,58,241,32,135,243,232,129,49,140,163,38,179,85,156,242,19
 0,63,123,35,99,106,206,184,62,60,61,17,144,210,161,122,188,160,235,107,120,227,72,182,57,36,185,121,228,181,90,172,206,70,214,63,133,32,63,180,71,92,188,102,185,76,246,97,229,95,61,210,35,156,117,223,129,194,188,250,198,84,81,42,228,168,28,15,210,195,223,226,108,39,166,64,87,246,4,1,186,173,15,157,41,120,195,199,214,174,201,197,88,56,189,53,101,52,169,143,116,238,53,192,220,236,169,20,170,192,14,81,84,124,85,166,36,142,214,221,37,5,113,198,211,51,20,227,87,168,176,22,22,102,243,79,185,248,79,228,4,1,217,34,104,87,11,205,253,104,245,42,202,42,27,126,191,79,28,195,8,233,233,133,55,113,28,143,205,180,78,134,208,234,131,84,123,117,115,253,9,157,243,222,255,5,4,150,95,254,64,30,40,199,53,111,68,229,68,148,20,64,53,59,26,57,224,55,144,59,4,88,170,49,190,133,149,63,60,128,5,218,73,207,70,41,172,38,87,61,41,237,89,228,210,179,92,9,107,225,25,241,135,147,83,77,161,12,86,123,186,245,47,99,39,35,104,171,103,225,165,164,218,156,182,151,116,194,113,155,122,187,10,168,70,39,88,9,195,139,1
 51,47,151,132,72,76,226,123,126,121,96,54,189,175,121,193,21,232,134,237,9,34,71,155,253,25,93,169,142,172,244,215,136,245,95,157,25,69,92,67,92,112,17,165,218,55,186,88,211,247,85,74,148,196,115,184,78,213,28,155,68,203,31,181,140,151,97,177,159,157,196,167,143,25,200,11,139,55,90,207,132,20,105,66,102,24,189,0,35,33,212,93,186,241,223,1,150,48,219,147,6,235,163,132,188,11,240,124,240,11,182,37,136,46,16,151,187,222,239,95,121,96,110,81,74,19,108,35,121,3,199,156,112,239,231,149,252,56,127,158,133,189,151,197,230,241,16,125,126,168,250,63,55,127,71,247,185,204,63,121,17,254,106,208,81,114,155,35,106,65,101,232,147,50,48,119,194,158,244,2,155,204,51,34,97,109,169,79,235,231,98,135,138,162,59,254,96,245,20,39,47,117,82,78,147,119,55,94,20,109,227,70,229,157,82,143,183,165,246,145,22,47,250,163,150,173,250,140,43,65,18,47,22,203,154,165,227,249,178,185,107,109,30,180,235,41,73,24,66,74,85,8,192,82,71,186,187,39,52,26,230,93,26,232,108,163,252,123,238,217,212,220,228,59,209,101
 ,100,157,184,213,135,172,93,109,88,231,103,159,236,230,35,214,31,119,197,204,86,33,199,130,233,220,9,137,32,92,156,123,196,249,250,137,162,80,191,17,140,90,231,241,213,93,189,26,121,187,61,27,39,102,240,233,48,172,223,138,44,255,133,169,212,218,101,156,114,188,208,220,103,162,123,74,27,48,244,208,180,17,186,43,36,160,86,210,103,9,168,117,185,38,79,193,217,233,184,144,182,121,127,52,105,227,148,159,57,127,34,9,83,198,137,19,188,48,184,84,114,74,237,79,36,27,197,42,173,15,28,8,26,161,123,230,71,237,148,95,109,115,195,150,126,76,1,214,216,34,243,172,135,15,255,204,140,249,51,46,31,7,83,151,198,69,228,9,241,109,221,13,40,166,59,145,237,37,53,112,37,16,9,244,228,3,15,249,136,37,101,111,120,189,160,207,187,140,253,226,30,83,205,46,146,39,75,19,25,34,219,254,27,7,3,212,148,105,179,110,222,147,216,18,83,141,174,126,61,156,159,187,209,2,172,2,77,180,154,7,214,245,30,79,7,212,87,19,21,146,160,198,103,226,210,47,163,232,52,126,243,87,133,158,236,236,99,206,210,101,129,254,122,61,115,21
 9,89,226,212,142,86,8,225,83,215,77,98,17,71,123,207,222,171,72,82,176,177,131,203,157,138,15,113,12,70,113,177,32,22,46,216,165,162,152,131,114,154,232,139,89,31,197,223,21,148,184,116,178,190,146,202,42,221,70,54,142,83,74,96,207,245,6,198,74,206,122,183,125,141,185,56,243,91,90,54,153,196,37,176,217,157,158,234,53,34,170,204,151,9,198,83,34,138,198,88,154,202,52,139,36,16,153,203,35,51,107,197,53,112,42,6,210,201,48,25,23,186,110,127,170,57,11,9,51,132,97,144,110,97,142,154,22,182,48,124,163,59,234,12,98,12,68,204,162,225,54,146,170,106,179,200,96,113,29,94,8,251,215,85,139,50,106,178,217,2,74,141,128,78,48,125,6,219,115,75,146,155,248,238,52,209,254,232,130,163,117,249,6,201,33,182,100,153,220,209,205,208,82,187,34,36,175,237,78,194,78,209,39,31,226,58,189,253,14,178,251,144,86,221,12,186,30,169,212,76,3,237,250,142,198,18,81,200,91,52,79,190,233,224,123,141,200,31,29,69,184,225,96,104,25,220,151,144,211,15,235,145,250,49,77,125,54,81,134,20,161,173,129,170,250,28,204,20
 5,54,22,133,223,229,15,106,219,215,246,108,168,127,136,251,94,245,48,193,36,203,211,40,87,27,11,9,9,247,250,253,163,19,166,255,170,130,247,59,236,227,118,247,96,196,5,161,16,192,68,181,236,169,21,160,33,117,244,187,112,101,221,110,244,99,183,219,115,187,45,22,103,6,14,10,255,237,222,121,124,193,136,255,18,192,252,124,68,110,221,165,91,235,212,45,242,94,61,26,249,170,99,93,124,11,229,104,215,225,138,179,230,178,116,17,170,38,110,116,146,193,247,246,139,94,95,207,26,144,175,91,123,52,159,147,194,105,190,211,236,245,112,217,46,28,212,225,131,231,75,173,205,69,74,176,176,255,223,250,210,90,27,58,90,143,243,117,218,89,122,167,6,85,144,149,3,21,74,107,70,57,2,165,217,113,174,222,194,203,70,71,135,250,14,62,212,141,250,210,209,162,108,208,226,163,20,93,85,86,208,248,104,179,216,136,212,15,161,42,219,15,220,46,231,93,159,162,185,207,249,42,180,182,184,142,134,69,47,25,236,187,154,28,74,154,27,147,215,1,92,221,132,21,144,128,54,107,121,113,133,192,226,26,3,33,87,219,168,212,150,200,1
 38,18,81,191,3,219,41,183,132,202,173,61,18,204,42,142,28,231,235,66,180,118,243,184,229,204,49,14,70,129,93,95,24,103,84,102,122,74,185,116,136,160,229,23,75,57,184,157,176,58,152,194,128,137,137,169,70,194,172,42,71,136,218,219,121,3,217,238,118,122,182,163,153,245,129,83,141,7,250,15,64,137,2,249,138,193,141,142,253,69,46,196,186,209,4,174,124,131,194,93,136,156,31,240,203,124,231,96,37,169,15,128,55,29,28,63,46,200,229,75,229,159,210,19,83,222,49,107,174,55,140,44,158,54,182,54,34,160,108,124,120,185,90,88,213,89,133,226,168,196,18,206,186,104,151,109,39,182,102,228,8,249,136,70,30,49,223,117,180,70,70,203,245,4,227,239,46,11,79,244,231,166,208,44,118,44,80,153,45,249,223,0,224,93,88,38,57,67,112,181,69,66,146,148,39,137,106,68,57,190,34,51,96,193,65,24,97,40,144,214,172,199,251,254,9,226,46,190,118,222,164,31,143,124,44,76,115,73,186,103,160,58,155,86,143,194,162,78,140,118,136,67,54,69,156,79,88,77,33,84,242,163,147,225,23,104,187,84,136,81,133,49,121,206,86,233,249,22
 6,111,199,97,133,54,144,242,78,26,82,4,52,149,20,57,194,227,66,20,202,77,199,155,235,229,128,170,117,236,13,111,240,144,249,99,245,214,134,129,255,103,247,108,42,167,114,170,17,202,161,46,129,236,167,164,152,108,232,44,107,121,65,212,75,55,158,39,152,142,156,138,160,154,91,179,94,123,236,154,203,29,190,142,113,214,70,229,85,215,77,79,237,118,154,86,211,18,85,110,238,39,201,105,115,73,62,118,202,91,210,252,83,28,168,147,36,157,201,226,180,125,47,45,210,92,216,161,37,164,216,100,97,253,91,79,24,56,122,105,70,141,91,95,51,198,185,239,216,82,57,249,72,186,100,25,28,141,166,197,1,244,86,252,241,152,193,27,9,145,212,187,28,208,169,231,80,28,156,173,145,16,64,105,218,94,186,120,105,74,186,191,154,147,48,93,199,84,85,126,241,225,150,35,56,158,0,0,23,204,164,101,112,188,178,222,87,91,187,111,33,52,17,102,88,253,236,86,145,133,112,183,141,179,204,219,186,12,35,164,70,44,163,41,210,25,121,173,201,154,199,238,37,27,217,10,5,218,116,11,214,67,11,249,211,70,187,125,107,253,126,48,108,2,12
 5,26,159,1,240,66,55,186,17,204,199,65,80,26,189,52,80,100,180,233,169,198,29,134,96,9,200,237,24,65,156,139,153,132,103,83,155,241,202,15,245,249,108,215,225,161,159,53,40,246,17,158,248,213,75,148,91,80,177,49,27,73,250,137,166,133,254,13,57,98,182,242,160,131,167,48,99,17,221,91,179,194,116,50,81,176,147,3,154,76,140,78,116,247,72,182,217,193,210,40,197,201,173,17,220,94,156,121,189,45,202,178,102,21,207,233,11,210,251,52,105,157,52,96,3,241,104,101,146,87,224,135,170,23,101,79,214,71,219,1,178,142,95,252,141,133,177,211,147,163,153,186,235,189,128,118,231,34,18,210,90,46,150,149,170,40,108,99,140,126,166,167,183,239,86,100,14,3,42,54,78,230,202,126,130,62,241,18,180,131,186,120,65,25,242,74,49,51,34,90,188,135,126,172,141,153,123,85,37,178,134,100,80,104,45,247,191,120,245,154,198,15,218,5,222,213,21,43,72,207,138,106,57,194,201,254,230,195,168,40,140,144,175,95,231,68,17,117,164,19,169,114,216,56,130,101,79,177,251,85,171,242,191,42,210,57,116,187,136,20,187,9,4,67,42,6
 ,29,66,220,102,132,159,186,85,253,212,42,134,104,90,203,45,160,158,35,237,195,186,95,102,138,88,16,189,123,95,181,19,49,128,248,90,75,164,189,21,181,154,212,230,95,0,242,176,28,177,41,206,129,253,145,209,63,199,171,212,129,59,232,197,229,55,29,104,3,94,107,49,45,191,215,87,227,227,102,225,41,134,26,79,90,211,135,11,0,253,11,219,174,248,246,148,24,11,230,64,109,138,175,105,71,234,249,250,60,175,189,109,186,194,12,174,194,20,39,246,230,97,188,82,35,186,208,182,242,239,69,119,255,55,36,232,59,119,31,165,193,255,42,213,243,165,214,235,243,174,88,140,200,32,63,117,176,132,240,53,58,93,165,241,59,249,251,173,59,66,225,72,125,239,16,41,93,173,62,214,197,45,167,2,122,215,94,145,208,21,31,90,134,134,4,123,136,137,162,129,230,165,25,194,148,156,84,70,224,170,33,242,113,30,76,4,249,210,231,36,25,94,87,166,75,27,140,168,67,147,129,116,6,218,138,180,255,117,255,198,122,234,231,146,94,37,131,87,208,209,52,248,213,114,46,35,198,78,15,234,102,153,204,103,50,74,111,87,208,68,207,151,26,51,14
 8,128,150,244,20,249,95,123,74,109,157,66,15,170,24,3,48,241,238,254,70,6,24,81,34,63,60,211,44,248,196,68,192,244,170,111,131,233,83,168,112,206,255,183,153,182,126,98,189,42,166,153,229,112,241,144,24,201,20,64,28,143,237,34,139,113,170,69,253,71,212,173,160,45,16,211,196,204,127,204,149,93,214,71,111,77,240,30,144,24,193,35,132,68,214,209,209,207,116,211,4,240,85,220,73,49,206,64,4,56,138,78,189,60,143,222,109,136,76,71,218,239,178,96,161,178,90,36,205,19,236,104,122,165,94,56,103,72,237,35,14,136,37,11,210,32,219,214,180,214,145,88,179,93,182,106,99,30,110,102,144,8,117,160,2,93,67,43,169,232,224,62,138,30,243,149,88,96,85,158,102,52,238,145,158,156,4,53,131,91,167,47,93,124,53,106,152,223,47,152,238,239,113,69,11,172,140,223,61,25,48,43,170,0,104,151,165,110,2,164,42,73,168,87,128,9,217,28,129,11,15,83,23,161,185,230,67,36,187,120,180,190,242,215,93,174,155,124,219,115,144,3,141,35,122,95,164,250,244,48,31,2,26,150,241,98,86,96,178,198,173,196,183,211,68,98,143,243,19,2
 52,101,202,34,130,9,251,0,38,177,93,236,12,1,91,127,14,242,122,33,198,150,213,133,10,247,216,57,106,174,171,96,185,253,106,108,139,65,245,164,99,234,83,181,112,193,112,106,138,151,151,88,133,233,252,102,244,125,100,91,0,110,33,36,95,127,146,28,37,47,242,94,31,98,38,199,98,95,246,23,115,33,112,44,84,40,193,161,66,88,19,147,144,95,144,248,241,5,140,9,53,77,140,33,216,2,24,132,41,95,49,185,131,197,76,135,182,13,211,137,89,215,103,173,123,86,68,220,53,75,63,214,114,39,179,157,150,99,232,225,105,3,13,214,209,112,211,209,153,174,96,63,34,52,178,94,37,186,230,181,47,177,181,169,158,100,191,48,166,224,111,179,5,83,206,87,255,46,79,137,156,163,159,16,238,229,129,207,198,231,54,107,65,117,249,85,75,253,22,11,11,13,192,230,137,79,203,38,49,4,252,159,244,194,243,175,195,63,110,35,235,107,231,86,163,33,180,134,125,170,232,245,22,177,182,238,210,86,228,198,161,187,92,195,55,192,216,26,197,231,22,0,16,184,30,253,103,250,205,207,111,16,34,60,51,223,120,5,172,221,40,65,22,81,67,73,194,204,80
 ,89,76,84,33,146,36,107,133,133,169,209,45,78,226,121,153,56,59,124,37,72,0,139,254,19,8,199,233,163,217,135,2,148,185,217,250,64,184,218,147,204,200,57,5,173,176,111,178,184,211,14,144,83,98,64,191,130,224,8,84,206,177,82,17,131,191,115,133,121,141,100,197,87,219,98,133,6,201,21,43,131,97,69,216,127,43,247,210,232,255,169,151,56,172,162,128,46,100,14,140,182,191,148,71,193,112,55,224,174,166,181,97,0,253,231,183,91,58,113,255,89,223,146,188,8,16,147,19,99,234,4,183,10,56,2,209,18,174,39,82,23,174,58,147,231,128,29,117,19,121,42,147,201,182,79,147,167,89,81,193,174,246,176,112,142,251,82,171,207,197,194,70,121,5,96,178,19,92,123,96,68,217,156,9,15,66,196,212,22,33,166,221,195,203,42,42,213,240,67,24,109,159,163,226,81,13,32,215,164,30,85,249,215,127,210,112,194,125,11,194,2,109,22,69,207,42,0,164,23,33,172,77,65,164,46,130,210,100,55,163,211,85,146,241,80,207,220,29,69,128,192,51,157,73,156,166,31,60,196,148,64,82,4,231,214,106,213,128,177,162,83,35,48,75,242,253,104,8,182,9
 9,64,68,79,0,196,230,58,30,80,233,253,115,140,78,142,131,121,125,40,177,166,252,151,177,243,132,74,31,144,84,183,18,235,63,147,135,91,193,150,228,137,76,65,131,12,105,113,63,168,165,62,156,107,235,8,228,36,120,137,198,54,188,250,28,106,189,75,201,220,20,219,106,47,45,190,252,125,255,193,209,154,132,151,255,164,115,206,225,55,212,156,96,128,146,157,109,161,213,251,114,16,251,176,252,215,6,18,229,107,126,225,220,253,2,185,197,178,244,235,62,100,227,219,0,237,150,245,80,183,122,94,128,193,130,207,99,78,175,88,142,240,167,217,30,80,217,2,35,90,92,115,12,169,64,87,236,86,78,224,48,25,170,64,216,161,232,226,21,86,246,176,211,195,99,244,95,170,116,9,72,17,252,111,0,87,96,161,233,228,17,126,60,193,192,28,146,33,255,175,249,233,248,82,170,100,80,189,204,52,13,211,17,214,165,199,136,197,46,142,129,242,168,73,15,203,123,227,193,214,0,84,212,205,161,35,69,12,50,14,119,211,189,232,5,182,0,12,50,146,231,100,25,27,82,175,244,109,164,58,110,189,219,48,229,153,29,142,183,125,44,179,210,106,1
 34,243,224,12,139,239,61,58,180,75,185,190,119,1,15,191,104,15,199,163,112,53,192,86,180,117,190,29,244,10,132,171,105,217,140,159,211,215,64,39,18,224,48,19,242,126,14,161,205,226,36,77,70,211,90,224,45,252,26,5,45,88,103,151,235,50,193,229,53,37,112,231,150,53,201,141,218,139,121,4,200,35,171,202,44,107,220,208,67,245,96,141,103,251,250,68,234,167,88,58,222,215,38,136,82,232,18,110,89,92,29,199,209,190,11,204,138,187,60,99,44,70,171,199,251,112,247,103,124,83,212,159,121,91,214,208,88,56,188,33,161,200,180,201,137,148,51,73,214,189,198,39,186,180,213,250,136,63,142,205,208,156,219,44,98,12,35,234,107,191,36,255,4,153,24,128,148,174,114,107,159,153,108,226,108,54,109,141,45,50,68,74,184,215,131,194,16,58,232,127,88,167,252,235,107,216,166,231,122,222,227,107,25,14,50,147,195,61,168,113,147,241,53,94,61,27,8,138,75,242,132,133,201,178,89,140,250,53,71,63,92,241,88,85,66,247,83,40,89,109,156,147,117,189,235,75,1,92,33,36,187,63,129,114,117,35,31,171,49,190,143,24,65,254,247,1
 76,93,18,116,15,154,213,18,158,157,217,35,123,67,46,148,133,157,92,187,48,84,170,60,138,36,168,241,179,237,160,164,129,59,69,51,81,121,130,1,140,78,89,198,12,231,85,148,212,154,184,226,222,214,243,76,241,91,76,194,2,53,164,2,188,22,165,215,39,129,241,161,64,91,95,16,157,228,88,113,80,23,100,93,231,115,5,242,152,102,121,187,221,249,218,183,255,7,65,209,181,135,79,218,161,36,69,112,56,189,177,189,34,22,54,51,205,5,125,195,198,112,93,218,171,7,100,163,42,178,2,122,84,219,127,234,42,183,61,143,1,48,195,180,198,201,55,224,98,106,62,4,162,71,206,239,123,226,119,165,91,235,250,189,249,223,85,111,95,76,129,210,85,11,81,93,62,67,103,35,188,212,223,105,229,83,122,244,37,29,5,210,72,6,143,189,249,182,253,108,49,228,177,249,234,16,214,253,55,48,64,49,111,226,184,234,105,127,243,155,85,159,49,101,149,80,191,69,170,112,104,146,208,131,183,179,83,251,55,155,62,11,63,56,70,28,230,45,123,116,17,130,125,99,31,34,219,203,11,233,102,17,232,52,153,237,222,179,180,43,220,33,79,137,141,142,199,250
 ,78,129,132,71,53,154,111,69,150,81,183,136,19,67,16,24,171,75,204,120,243,67,163,5,118,208,77,192,49,39,8,44,110,13,27,101,52,253,213,158,235,232,8,130,200,63,220,237,137,188,140,100,2,185,134,40,55,58,170,253,164,88,33,110,188,148,198,143,250,158,29,142,206,116,160,93,225,117,203,253,200,215,60,176,131,161,148,24,38,237,93,236,51,254,148,107,133,112,177,249,83,18,73,36,253,167,124,70,124,23,71,105,148,82,217,125,193,27,97,125,55,235,196,244,150,175,132,192,85,184,104,187,103,139,7,68,50,95,134,87,32,120,57,252,100,204,239,142,181,55,220,255,52,205,36,146,69,237,128,140,10,26,75,141,113,112,8,73,157,131,173,208,99,47,132,108,139,27,220,247,133,222,98,44,211,208,29,46,107,104,156,60,204,7,64,154,228,183,95,10,10,109,19,190,169,115,90,140,144,6,151,253,219,83,182,223,174,4,232,40,146,157,221,4,43,123,40,231,161,123,93,143,101,229,82,46,66,23,167,21,140,213,247,207,227,210,147,19,159,35,143,120,146,174,115,14,81,30,161,240,54,56,147,238,123,17,10,108,37,52,214,140,137,119,248,
 30,84,69,17,102,23,102,15,113,47,42,237,224,207,28,1,141,237,42,233,82,121,104,155,125,252,226,108,3,253,203,130,190,69,121,102,48,112,7,108,24,142,199,238,218,53,135,219,229,75,242,121,174,205,182,65,62,204,74,92,44,147,137,102,24,70,54,17,74,220,160,24,24,3,190,183,150,242,214,241,80,14,244,234,143,176,107,63,194,8,172,177,172,223,187,226,204,102,122,244,231,217,92,166,243,145,62,5,203,248,26,213,116,240,85,165,50,74,16,47,118,129,40,172,204,252,250,79,239,240,99,234,212,204,179,148,186,209,191,74,202,252,119,5,218,246,82,224,225,233,72,197,104,144,19,233,251,55,2,20,80,211,193,235,92,241,111,152,165,59,24,155,57,80,176,239,15,128,158,132,18,34,254,177,170,144,174,116,23,33,43,9,248,154,168,165,241,14,35,76,223,175,165,100,116,158,210,232,71,66,174,182,218,201,75,204,111,208,83,77,115,37,108,132,181,209,118,20,105,34,32,66,157,89,231,36,58,166,93,164,99,116,76,1,31,88,61,149,160,173,65,38,55,116,229,8,109,166,149,228,144,115,75,4,253,184,29,147,162,223,38,115,10,180,207,11
 2,106,157,134,48,166,11,102,192,191,193,142,6,187,48,202,168,211,0,16,164,42,135,20,142,93,209,242,225,158,56,155,19,174,57,179,180,218,75,15,205,139,71,187,252,126,236,7,46,63,204,194,249,3,245,234,94,179,54,75,157,16,153,63,97,31,123,60,74,171,73,98,194,152,33,66,122,132,168,46,230,96,21,45,34,237,218,229,232,217,69,105,32,6,233,112,78,48,18,98,9,6,106,191,116,86,119,204,92,21,80,95,60,87,13,229,136,129,47,65,57,126,3,141,44,51,60,129,112,48,113,78,51,120,167,174,5,251,97,113,188,69,25,247,7,181,202,38,46,168,157,185,148,12,5,125,102,98,29,120,50,87,100,153,78,154,75,209,135,84,194,9,182,84,10,248,221,92,17,213,223,31,53,195,68,65,8,170,90,189,85,125,202,6,11,5,8,2,155,151,201,202,120,27,192,28,192,73,185,216,126,252,246,196,164,197,244,89,168,226,231,132,129,221,175,117,101,102,228,36,226,124,1,32,10,198,73,114,194,176,184,247,18,175,101,146,30,205,48,210,68,83,122,55,156,12,125,131,228,178,40,63,76,15,80,237,248,198,117,252,243,89,155,237,166,109,254,220,232,254,171,235,
 194,185,161,232,105,196,60,184,12,141,132,119,242,183,144,180,165,3,27,147,128,209,83,6,246,127,24,152,115,144,51,182,222,155,104,156,86,128,80,242,238,37,240,116,13,33,196,215,160,217,79,62,66,89,187,14,203,118,251,80,151,225,210,244,120,32,114,175,167,51,64,132,242,59,232,164,38,43,73,48,241,182,250,96,26,59,26,14,164,231,30,193,185,237,159,34,193,48,212,150,207,143,185,10,114,167,163,168,205,158,134,57,97,43,200,175,115,199,151,199,204,9,63,169,121,14,250,39,108,63,40,185,134,12,176,165,178,2,44,102,133,18,207,18,1,3,203,223,54,84,143,173,125,73,140,166,36,106,175,25,247,51,63,32,208,52,70,7,239,140,82,69,226,48,26,119,182,142,119,131,139,26,248,9,144,254,172,128,96,212,47,207,225,234,151,6,136,33,134,244,242,239,245,193,123,128,226,176,50,172,95,73,82,47,3,186,124,13,241,73,52,111,115,90,70,52,4,12,223,242,106,227,239,0,228,216,116,106,188,179,238,37,113,37,204,188,154,165,254,174,129,121,243,110,137,110,163,249,12,134,55,214,174,48,0,173,163,41,225,82,81,110,114,237,10,
 59,174,137,235,250,238,211,0,180,175,84,77,57,179,210,158,197,129,188,29,123,18,123,193,119,228,235,111,168,20,138,80,45,28,72,6,239,93,116,224,48,72,238,139,137,158,110,66,52,79,38,99,11,201,171,25,47,167,49,1,31,1,171,181,183,145,210,8,99,21,5,44,31,16,40,217,64,136,64,154,171,187,157,177,81,96,244,238,206,193,177,233,132,149,100,231,184,61,44,213,9,170,218,195,179,127,122,77,46,110,114,92,50,55,74,67,235,44,177,72,109,69,148,95,92,249,205,197,210,185,255,49,11,23,81,223,234,193,142,141,187,10,211,128,198,189,206,228,127,248,41,228,226,171,89,188,227,74,187,180,12,101,34,159,178,83,69,84,2,25,4,30,178,82,13,84,63,161,79,35,99,210,164,85,21,48,160,24,103,225,14,99,132,108,185,123,211,70,136,39,118,79,88,129,128,186,125,221,18,180,82,119,156,27,69,189,242,42,29,89,110,97,171,180,240,199,166,66,198,174,147,158,237,24,155,64,190,218,42,19,2,66,253,155,235,71,34,170,70,43,191,4,141,103,186,199,40,255,144,162,145,65,46,62,150,88,101,146,143,161,150,84,208,131,169,16,87,97,118,12
 3,46,66,123,174,113,157,183,25,66,51,27,46,95,182,233,19,38,111,125,67,167,197,229,206,143,149,63,3,185,135,125,188,62,94,117,140,50,175,226,111,166,191,159,20,210,161,173,76,31,87,181,158,122,20,67,15,202,90,250,12,220,203,155,235,22,109,71,67,237,36,80,169,217,238,245,49,253,255,66,235,238,49,61,185,219,50,22,11,170,249,191,238,16,113,247,42,147,234,157,76,133,23,242,238,177,123,20,189,119,248,182,0,170,239,94,47,246,143,203,240,203,131,254,115,3,10,184,237,245,188,222,94,180,70,179,150,66,235,124,187,141,182,40,231,145,234,207,187,166,130,230,183,199,102,52,8,198,245,106,149,16,107,0,248,166,234,171,37,115,55,82,12,246,94,247,15,239,138,136,68,184,196,66,81,104,122,230,223,236,211,147,115,188,222,17,217,6,183,193,90,65,51,115,220,42,131,149,72,142,51,73,2,61,185,10,20,222,24,96,28,90,194,62,250,114,253,73,235,36,53,217,53,149,209,59,23,245,146,150,34,51,236,94,248,26,169,119,3,67,216,137,225,129,94,216,10,98,143,224,5,174,236,28,133,244,238,213,184,113,150,143,136,192,233
 ,0,232,140,226,200,167,82,157,115,144,78,5,13,226,82,86,117,11,93,106,220,192,127,108,90,63,226,185,210,222,101,220,43,74,188,13,78,128,181,142,21,38,61,151,94,250,209,6,58,37,210,0,168,35,86,2,206,25,232,58,109,243,121,60,143,229,134,90,207,163,191,53,222,159,4,231,141,106,176,31,169,82,65,230,216,196,154,64,242,107,97,59,143,144,121,187,52,217,73,229,164,159,219,82,93,187,151,77,162,78,149,43,57,53,248,3,4,71,141,16,67,230,209,34,230,47,21,157,215,99,216,228,192,58,62,129,200,233,70,207,23,177,41,172,142,115,45,158,69,101,186,160,20,252,171,220,151,248,141,34,67,214,255,87,78,188,28,22,6,25,49,180,18,0,246,133,198,104,100,213,228,49,60,61,80,171,243,89,142,151,220,29,36,239,225,52,230,237,200,110,235,236,128,146,153,75,91,190,174,236,144,250,9,18,151,41,137,154,244,35,7,245,213,56,227,105,90,5,222,196,168,235,166,11,232,206,249,90,14,11,24,32,233,226,54,19,208,81,5,166,162,69,101,118,45,206,238,24,71,254,56,50,210,191,131,225,143,167,196,146,163,40,194,251,71,101,213,208,8
 1,175,196,165,66,37,170,148,15,54,120,109,125,96,135,230,212,238,114,89,241,144,183,47,67,49,33,197,144,91,60,45,144,35,136,172,23,165,250,81,206,197,30,231,22,192,130,211,125,133,155,73,56,106,179,252,137,189,29,11,242,187,214,149,219,63,99,87,138,195,64,83,47,247,50,217,217,169,45,184,184,126,134,195,62,13,129,81,56,255,52,225,194,41,237,60,98,127,231,193,242,104,198,20,252,171,146,41,234,220,244,145,31,180,151,219,174,148,103,228,105,58,181,183,134,179,100,80,150,61,0,14,181,108,217,210,17,21,157,110,142,116,21,188,186,95,128,1,244,192,166,21,28,102,105,222,1,2,35,92,13,51,219,79,61,210,29,170,131,67,150,248,213,86,156,30,142,5,112,164,106,72,174,221,186,73,62,239,225,162,76,210,218,252,20,88,114,219,195,63,49,175,227,213,77,214,143,25,86,115,103,145,176,49,25,185,251,87,86,131,193,201,248,89,208,195,30,136,229,255,99,91,103,49,39,135,175,95,218,241,233,59,2,182,177,185,215,69,110,125,133,68,179,26,145,109,13,123,236,145,8,67,46,62,79,183,112,240,67,135,237,111,14,148,132
 ,1,76,10,17,30,114,235,251,225,129,134,39,68,129,33,253,172,111,41,189,206,83,199,157,63,156,35,17,129,250,24,39,78,55,206,215,106,196,149,27,144,52,10,164,226,144,44,8,151,38,160,118,38,56,187,50,233,162,229,84,8,81,219,57,184,52,120,137,9,95,40,132,134,210,217,65,181,121,13,46,198,85,239,168,234,87,96,194,255,52,151,11,243,203,128,76,192,13,217,36,166,20,7,220,89,20,149,249,2,86,45,85,202,85,139,71,160,142,133,125,114,20,114,115,7,246,148,149,124,116,150,224,89,55,73,26,49,98,140,125,173,255,223,253,126,217,133,146,158,185,87,254,172,184,228,2,132,129,77,87,206,48,29,221,135,7,253,165,43,168,133,223,69,140,172,255,241,154,67,52,80,234,197,9,239,13,206,189,113,241,95,119,214,63,35,73,182,88,157,143,55,227,109,181,14,181,162,97,245,82,172,195,51,109,196,137,69,158,162,31,199,93,130,86,81,102,45,242,131,54,164,102,128,92,148,136,0,166,249,219,31,54,86,252,230,125,235,95,95,30,21,11,187,245,127,206,32,70,82,144,121,168,121,67,222,128,6,129,51,214,195,55,105,120,98,248,172,27,3
 7,196,27,240,218,181,232,81,15,74,143,78,201,85,192,106,118,220,218,239,116,196,242,52,46,245,226,169,48,105,54,3,207,178,246,59,138,218,161,211,5,115,247,48,17,44,39,28,200,216,17,168,198,119,53,90,5,150,49,153,198,213,83,63,137,165,169,56,90,184,125,162,200,149,208,229,218,234,153,149,130,217,41,70,143,215,97,154,86,189,35,42,196,69,153,58,123,133,216,159,161,32,175,171,5,248,39,229,191,112,70,83,214,217,74,144,64,198,173,40,40,39,30,230,173,54,2,207,255,39,236,90,246,118,14,27,207,252,128,6,45,114,121,33,157,244,59,159,53,68,85,224,19,36,201,134,164,86,71,115,154,254,205,202,184,103,130,46,12,241,41,109,83,97,152,113,240,86,232,239,233,255,198,10,218,63,26,222,248,16,210,117,86,188,222,48,133,194,51,210,196,48,116,74,212,62,51,205,135,171,199,111,159,10,160,31,140,136,104,223,66,93,175,167,21,78,107,70,130,237,186,218,179,115,116,45,105,96,195,212,20,71,133,57,54,102,208,21,240,135,222,48,150,240,237,168,104,130,99,227,169,154,92,166,236,137,99,67,82,234,111,184,35,122,92
 ,19,206,29,32,198,111,50,4,203,190,181,190,187,252,249,89,210,237,218,207,242,227,55,242,219,104,88,116,186,170,154,116,197,239,216,3,195,163,212,209,96,190,232,0,141,72,12,212,64,104,51,161,20,130,9,224,90,22,231,14,129,204,55,9,20,110,125,215,10,160,141,209,162,143,136,180,61,73,74,143,39,8,12,145,61,80,54,167,71,35,64,144,156,85,100,155,175,95,68,235,23,132,47,239,33,140,161,139,150,53,195,156,52,16,33,121,153,86,100,26,15,249,222,6,113,130,148,176,76,218,100,83,66,94,183,83,216,56,197,242,156,84,102,223,243,72,211,249,177,47,24,86,119,55,6,66,91,187,21,108,158,0,47,170,59,0,146,103,160,19,108,43,143,90,115,3,128,249,114,27,244,16,89,167,217,96,109,189,239,98,209,45,48,181,157,107,184,115,70,199,127,161,104,168,177,140,234,99,193,93,101,178,181,187,150,4,2,207,99,186,2,244,110,231,241,224,31,186,101,130,89,134,13,211,41,136,158,29,49,203,88,233,131,43,163,195,27,45,209,251,150,71,162,14,87,229,177,125,16,58,166,57,51,120,200,79,171,183,207,167,26,42,65,184,42,59,76,154,21
 8,10,250,105,213,120,87,151,186,112,198,34,46,250,251,75,51,87,223,20,102,2,148,88,222,205,121,150,229,62,211,10,40,137,140,102,74,249,106,2,223,219,176,186,227,178,67,152,140,113,181,125,236,149,233,191,160,13,48,125,195,148,120,109,144,6,94,78,254,188,121,231,119,13,36,38,228,92,41,31,177,39,225,94,120,104,55,50,69,125,121,171,84,183,114,152,23,154,14,155,115,103,110,143,69,255,109,25,213,242,16,96,114,6,167,41,235,231,189,161,221,48,167,211,79,180,165,203,244,227,229,3,255,109,155,163,49,76,141,232,59,127,54,183,166,6,180,131,188,153,191,24,52,196,171,144,59,172,0,92,65,205,158,124,20,3,4,130,37,160,180,72,84,75,186,45,16,126,167,127,34,49,6,109,86,68,97,21,57,233,1,87,39,100,110,104,172,125,46,222,89,173,132,128,121,191,199,182,134,213,65,45,53,235,15,213,150,163,183,177,119,176,159,65,41,101,221,36,103,233,145,180,44,16,84,12,135,97,123,9,59,28,156,76,205,9,50,148,147,190,59,81,52,164,94,213,128,150,179,111,187,233,220,144,52,3,128,232,72,233,17,13,110,111,199,151,127,1
 21,172,162,222,144,229,250,224,159,244,218,151,191,7,151,144,205,249,74,27,112,90,123,6,160,161,23,194,32,45,202,71,115,74,118,126,192,163,39,106,214,3,189,51,35,7,23,44,242,173,59,154,8,55,138,184,206,4,136,112,235,3,163,59,55,54,33,201,11,215,202,170,72,168,95,174,2,254,233,206,232,146,113,90,29,71,41,71,14,102,109,114,138,212,202,104,85,101,93,49,55,39,102,51,26,89,92,147,249,243,198,201,213,84,135,116,98,80,80,106,173,153,69,56,99,221,233,61,70,148,218,186,56,198,163,177,87,89,167,73,134,128,84,2,248,112,49,218,91,253,114,33,180,143,109,8,0,25,78,32,110,38,157,121,115,27,135,190,50,132,142,19,80,234,210,142,160,39,184,234,92,61,209,60,155,136,113,43,17,220,232,101,175,239,232,229,104,11,21,135,138,34,30,172,110,43,70,218,84,133,178,96,85,135,96,218,59,76,18,194,70,136,173,30,152,129,72,64,147,125,179,174,130,106,139,212,24,47,188,222,20,103,193,70,117,113,246,25,98,96,77,142,77,213,198,33,205,230,93,146,8,186,154,86,41,232,130,77,13,36,10,83,110,97,30,139,74,26,24,40,150
 ,191,238,10,183,163,113,72,192,3,211,102,75,197,177,147,95,12,195,0,154,159,132,58,183,52,108,74,71,70,55,121,189,38,22,116,43,51,177,194,104,235,144,97,42,159,126,104,80,191,37,139,108,217,182,148,41,93,115,233,135,39,170,0,190,179,212,209,72,189,137,157,159,161,203,163,168,136,108,163,202,246,110,84,219,219,241,129,214,209,107,248,222,188,224,19,120,240,158,162,254,40,147,142,197,40,124,33,57,32,76,87,188,85,240,80,49,247,63,203,206,74,11,222,75,168,85,65,164,233,58,134,155,84,182,184,97,154,162,223,228,72,136,144,203,39,17,131,24,13,56,100,11,231,234,202,19,253,164,98,251,73,147,243,50,108,242,37,173,77,105,138,194,20,108,115,121,42,93,167,215,88,109,240,177,224,117,94,145,91,238,198,125,214,225,202,53,8,174,42,78,183,164,211,252,148,198,27,213,238,32,117,241,227,170,47,51,91,134,70,115,84,97,196,63,248,64,72,221,183,100,11,79,198,42,86,246,131,118,86,183,128,151,119,108,131,242,163,51,217,217,69,182,209,148,207,22,108,25,49,247,189,135,2,137,209,192,14,154,120,30,231,106
 ,204,82,153,8,105,197,51,127,19,248,7,147,81,163,175,110,99,143,210,160,22,204,113,216,20,78,48,27,233,183,143,14,57,111,165,188,163,124,132,230,219,8,206,87,30,64,6,188,68,191,92,24,134,104,223,200,120,208,211,85,88,123,95,64,74,160,161,59,183,76,152,1,90,134,75,119,205,61,50,13,203,146,36,34,31,253,255,164,172,44,82,109,88,25,208,193,219,199,224,87,247,31,224,33,99,183,73,20,116,83,213,224,187,141,6,199,193,135,100,49,120,240,169,126,72,4,238,77,69,1,121,81,117,21,126,26,168,210,142,119,19,21,9,66,203,142,216,211,132,69,146,25,149,230,15,200,31,17,121,110,30,186,219,59,57,136,9,16,28,208,225,103,77,19,62,93,120,251,138,197,51,236,150,58,45,83,93,135,246,28,184,106,190,35,56,79,170,90,80,245,227,214,240,244,114,33,177,148,16,5,84,196,71,245,250,112,57,53,79,201,180,220,117,112,251,102,230,9,40,130,221,40,117,199,129,232,18,84,60,181,178,175,152,102,8,220,105,91,190,189,229,61,250,103,139,154,202,116,58,101,7,103,173,148,40,184,64,26,0,63,126,226,4,163,137,36,72,142,50,76,12
 7,216,156,74,174,228,233,30,141,34,228,161,2,143,121,51,247,172,174,149,166,76,159,71,185,172,88,190,210,141,235,197,69,122,93,197,193,182,98,126,111,113,202,152,9,176,88,11,156,250,67,29,115,166,96,198,65,151,107,119,6,212,189,181,218,124,39,22,79,4,81,71,178,90,117,114,201,20,129,176,95,188,107,52,233,110,73,205,175,220,112,250,123,242,169,99,185,103,220,203,122,216,189,6,38,223,186,251,104,3,210,207,200,112,154,47,199,32,223,34,142,15,234,163,222,182,163,71,181,132,175,233,114,94,228,19,75,203,26,242,95,101,86,176,175,82,110,226,85,205,165,105,80,226,159,115,39,241,50,117,15,220,41,214,149,107,151,156,60,165,13,184,211,178,250,239,85,53,179,87,11,134,152,203,101,159,206,116,224,7,127,8,146,157,127,0,146,23,140,0,107,137,26,24,138,142,84,144,222,39,136,154,123,138,169,135,65,246,42,223,88,98,220,195,186,35,37,238,202,19,67,24,15,246,240,120,221,79,73,192,47,162,153,120,148,57,84,26,54,53,94,79,107,68,186,157,154,101,120,180,255,81,63,185,124,231,96,87,87,163,193,93,144,192
 ,179,155,60,34,193,49,52,227,3,172,40,131,196,215,163,1,224,121,18,208,73,21,61,193,45,162,153,56,123,64,13,191,56,126,195,195,61,19,226,6,109,24,181,166,31,253,104,139,243,51,150,88,174,195,125,184,11,31,153,227,191,53,30,95,20,227,85,159,224,170,119,3,180,42,105,65,21,47,45,247,116,243,89,75,42,32,57,195,132,63,149,51,133,123,2,174,75,8,46,65,111,79,119,224,241,78,87,224,192,187,179,221,211,179,53,199,36,116,18,214,214,204,188,132,3,248,189,116,250,117,28,22,226,97,196,25,119,10,119,228,219,123,60,30,237,101,59,249,120,195,190,83,78,157,88,124,3,188,211,134,203,29,9,123,122,86,113,107,234,32,12,129,222,26,94,159,57,98,244,65,202,222,244,251,94,29,167,77,133,98,232,47,83,147,80,183,188,138,70,122,113,196,80,63,170,38,76,49,0,206,77,171,41,107,70,115,214,14,255,92,134,67,41,169,125,247,119,243,214,240,111,206,53,68,126,132,132,191,13,11,12,132,126,217,27,203,172,245,196,142,217,245,104,52,81,69,191,214,106,73,228,82,254,75,202,4,97,84,145,83,1,202,67,245,149,160,253,12,253,2
 49,11,71,243,78,62,139,255,152,255,206,231,167,24,87,178,199,179,137,126,59,171,98,120,5,9,232,91,109,3,165,160,66,6,242,143,130,166,44,26,195,219,185,102,142,233,40,2,128,83,161,203,183,30,206,2,87,168,127,211,166,223,206,214,140,236,12,110,166,71,207,21,191,49,38,228,117,220,210,32,25,255,151,253,54,205,75,186,69,30,100,56,160,73,198,228,54,118,201,253,6,117,8,62,144,237,4,89,56,131,211,77,46,157,8,45,66,83,136,48,236,18,243,181,144,81,55,63,247,212,192,249,31,171,249,148,173,35,253,73,20,5,191,214,181,128,242,240,133,219,44,9,65,110,183,20,156,14,149,162,242,103,202,133,170,168,84,75,230,155,14,224,7,237,25,36,29,145,231,22,166,224,69,251,82,204,173,143,101,201,60,233,132,171,69,230,167,173,183,193,242,155,118,115,209,109,237,228,175,159,243,225,28,223,27,224,100,24,85,59,65,208,46,187,139,128,160,252,238,200,149,40,23,83,230,40,138,91,82,243,105,63,208,86,47,68,171,161,219,101,241,77,252,247,208,119,49,30,96,64,13,84,116,64,139,105,204,131,91,5,16,76,233,249,115,160,204,
 29,241,172,152,235,83,47,137,36,2,208,85,12,54,42,17,77,215,195,146,175,234,12,38,88,223,0,2,159,117,50,252,92,194,108,21,110,149,236,67,93,73,248,132,42,93,116,173,91,72,157,7,90,77,48,99,242,23,15,113,36,158,69,113,199,63,158,249,142,152,32,67,248,88,20,151,170,15,118,185,188,48,221,251,244,20,48,66,121,42,127,198,171,51,61,227,225,174,116,92,248,78,78,250,235,71,213,155,63,206,45,172,194,141,160,205,95,29,228,91,82,177,159,71,239,227,31,17,188,212,71,5,12,88,204,228,219,20,16,29,184,36,158,62,32,221,232,171,160,210,116,17,24,152,184,62,244,189,128,160,210,195,165,74,87,169,230,188,9,175,180,132,181,136,63,208,228,230,90,4,234,236,24,183,223,175,171,12,106,195,219,131,66,64,36,211,79,153,61,176,37,44,193,187,79,74,87,101,183,246,74,26,8,148,156,85,221,48,24,162,2,213,41,39,217,189,85,175,84,77,157,196,216,2,40,128,208,145,229,227,231,210,188,0,87,216,99,30,215,178,251,174,117,152,202,95,239,149,215,131,51,201,209,126,102,37,54,75,167,135,201,7,23,254,113,105,106,153,206,16
 2,75,197,185,64,222,66,52,48,138,197,101,199,103,251,146,36,143,140,101,138,189,177,102,13,181,84,107,100,18,213,130,110,85,75,117,190,39,191,40,251,35,138,204,231,177,221,160,237,51,230,164,64,192,241,200,182,255,36,27,203,6,212,25,156,115,235,75,243,100,208,229,85,7,230,12,145,226,10,89,213,131,145,194,123,2,214,34,78,2,217,156,233,232,191,11,47,248,95,139,234,158,45,153,162,220,109,230,148,18,67,133,53,61,60,66,82,69,87,209,178,77,196,119,76,43,113,62,232,10,123,207,214,60,185,173,53,251,203,104,253,53,16,176,97,67,22,12,171,15,88,202,113,154,187,22,209,64,151,128,93,205,40,209,208,152,124,208,35,29,95,155,69,59,124,210,125,96,127,214,211,108,9,186,172,120,4,54,26,236,222,117,230,161,148,196,50,11,84,254,201,108,225,160,119,160,90,12,234,194,49,101,91,89,90,218,145,150,217,43,68,108,42,23,194,59,120,1,58,193,60,28,22,153,134,213,86,145,31,211,216,103,15,61,27,190,24,162,160,192,235,127,255,204,229,55,243,221,96,250,206,29,145,218,40,97,188,113,4,103,22,59,169,17,186,99,82
 ,72,14,44,250,225,250,246,97,174,236,213,198,55,60,135,218,44,220,43,14,180,153,71,236,170,113,251,252,209,166,221,41,61,52,229,154,241,227,104,248,106,126,11,206,249,116,124,213,143,35,44,206,225,238,197,203,213,76,79,38,230,45,13,22,124,78,150,70,189,138,220,29,178,24,52,68,0,147,118,132,215,222,134,40,205,137,20,136,170,186,198,230,158,153,115,30,0,21,15,40,151,72,250,133,239,221,37,23,34,4,37,0,23,173,158,48,194,231,222,122,170,217,34,195,26,5,150,56,58,221,125,129,91,223,10,49,12,92,202,80,13,98,178,222,123,47,137,248,71,236,114,15,169,189,245,27,181,214,64,55,3,19,219,201,57,8,237,87,184,88,150,42,179,121,71,182,10,227,73,180,218,107,49,100,7,215,176,234,129,0,253,128,239,90,243,254,14,122,7,152,152,5,193,50,117,158,41,48,174,31,215,65,179,212,134,253,57,96,114,39,182,199,133,114,9,197,167,90,240,117,9,78,167,186,85,31,232,38,166,226,84,60,92,117,190,58,35,35,25,135,201,173,7,32,225,130,8,122,100,178,205,145,253,210,95,137,189,107,152,105,41,50,200,61,189,8,237,94,147,
 213,51,80,138,187,121,3,245,180,38,115,99,10,240,207,185,64,69,11,12,26,184,71,48,73,112,14,231,183,4,42,244,161,135,86,183,235,144,48,206,24,81,233,182,165,208,216,159,136,126,210,211,83,207,174,132,233,252,117,249,231,103,225,89,11,193,59,233,194,35,215,50,213,163,170,43,20,216,140,81,133,73,79,58,125,210,93,191,141,192,189,227,72,99,169,247,83,185,236,131,191,62,123,135,161,108,162,203,84,37,85,143,30,232,238,221,42,60,9,97,198,137,9,244,255,243,155,3,54,110,183,175,145,4,0,86,250,41,136,97,180,226,42,97,143,182,225,100,110,84,79,97,246,225,147,33,93,191,83,231,181,206,72,153,184,155,205,160,89,144,22,42,67,37,248,135,177,157,159,245,158,207,114,20,118,74,104,31,88,102,166,141,76,31,233,29,242,246,245,158,128,170,7,80,118,87,101,211,234,14,214,83,148,32,192,174,163,246,31,70,239,139,154,192,50,87,103,15,153,238,166,188,28,79,204,3,57,204,112,0,72,99,120,5,134,169,11,24,107,215,98,16,93,226,36,14,174,165,156,144,85,223,44,237,74,207,242,182,182,191,104,84,28,207,225,55,220
 ,114,81,196,53,91,229,11,249,39,29,86,113,190,96,63,147,77,63,81,20,23,182,205,169,30,168,208,88,223,29,126,198,105,164,213,41,9,119,227,0,235,25,145,153,208,56,208,63,203,73,63,5,65,225,144,65,235,6,196,237,185,251,152,14,173,139,146,130,141,232,111,173,246,243,248,98,91,178,29,138,53,149,189,68,65,77,203,83,106,126,38,86,29,156,158,109,178,196,179,247,47,254,168,120,24,151,229,76,164,162,89,59,242,92,109,81,33,173,93,32,164,26,141,216,66,193,228,233,209,124,227,12,65,38,197,120,79,224,41,50,120,197,189,146,140,73,233,51,107,18,58,208,253,249,35,211,80,5,202,69,96,75,172,1,70,219,34,20,51,255,88,237,152,165,218,196,86,46,172,164,98,21,224,83,147,226,175,19,4,231,135,28,176,110,151,154,182,144,239,74,165,228,135,135,178,203,231,6,65,247,220,59,6,79,25,81,150,199,176,126,170,152,218,217,86,60,198,208,2,26,135,123,152,218,131,52,232,171,253,172,209,102,187,160,244,250,163,22,21,47,14,49,149,107,187,78,188,177,42,20,203,226,101,57,62,98,77,23,41,86,218,172,197,109,70,203,72,34,
 219,119,16,200,110,6,76,122,134,213,62,73,32,243,137,116,34,130,67,55,188,75,86,40,137,55,52,243,249,246,20,142,7,92,221,99,31,229,218,216,234,3,22,191,143,230,40,197,235,169,40,203,80,233,130,209,253,28,12,156,36,251,77,91,222,51,212,180,58,184,208,251,109,184,44,26,4,166,112,101,148,125,65,91,116,36,3,179,159,127,47,165,117,150,101,87,22,220,195,147,58,143,157,165,20,156,177,214,33,3,54,86,59,152,160,248,192,126,134,8,69,246,226,92,61,115,249,244,226,45,17,254,10,65,37,101,13,206,2,30,218,173,1,146,216,77,59,144,243,104,112,167,131,189,126,16,142,215,161,234,242,74,37,87,200,74,52,73,24,200,2,164,52,33,63,160,207,43,9,8,180,82,255,31,152,94,61,204,214,85,229,91,194,94,140,207,3,94,171,226,52,115,210,208,5,28,9,8,141,160,101,45,41,124,91,103,106,255,144,155,239,60,217,140,107,35,93,88,81,237,120,69,54,165,154,7,130,129,5,75,161,231,190,207,45,110,50,169,247,247,51,25,146,249,117,9,111,144,3,62,131,200,5,238,105,114,150,243,51,65,27,201,4,90,179,252,247,60,89,147,51,209,218,
 28,90,87,184,214,122,197,193,115,202,219,164,140,214,82,100,222,235,3,248,38,127,125,159,155,60,205,63,61,14,174,56,113,175,167,239,243,25,27,32,0,215,80,13,65,45,174,152,249,27,121,125,47,124,201,93,96,89,171,49,173,160,215,59,32,94,30,94,162,104,75,211,107,252,106,181,77,82,211,46,42,156,63,239,76,109,254,158,185,26,234,96,58,19,138,100,219,16,194,95,148,25,2,221,119,142,11,203,42,30,173,69,3,235,235,80,124,255,118,145,95,236,222,111,163,128,167,197,120,248,221,140,132,32,11,17,153,96,247,119,119,133,199,170,42,22,88,105,60,181,159,166,66,192,41,84,191,198,172,184,113,23,210,204,163,123,200,181,95,197,84,160,132,119,238,218,160,61,18,170,24,4,191,179,2,218,217,64,32,77,170,210,253,24,148,204,103,67,148,140,215,249,141,8,76,71,128,101,25,255,146,0,95,108,68,127,110,236,50,134,13,111,252,45,184,0,227,23,123,18,250,34,119,191,248,27,189,183,234,60,154,168,239,239,74,129,141,65,11,143,129,93,192,120,59,81,163,117,117,98,56,88,170,145,203,183,202,154,121,83,97,163,225,43,43,80,
 46,106,65,66,122,147,161,245,215,237,58,125,26,95,170,97,176,240,213,179,152,227,196,170,45,222,232,71,225,187,87,252,215,18,124,241,94,255,57,85,51,38,108,203,69,78,132,71,56,173,184,246,31,18,118,56,71,146,228,104,59,107,124,102,158,65,44,11,254,169,154,45,104,22,58,198,51,128,16,52,102,4,106,44,114,4,191,148,188,104,192,44,246,6,49,62,112,23,163,33,209,25,56,86,172,2,120,118,209,145,117,118,22,213,140,20,207,107,85,241,220,255,136,99,149,99,245,39,155,198,37,172,147,184,244,239,181,160,12,204,201,253,196,58,185,243,167,42,5,182,201,228,49,209,159,235,118,98,187,250,19,185,169,124,210,143,225,127,233,29,216,68,175,106,160,20,201,61,31,146,119,123,72,160,41,194,215,130,255,33,47,228,70,135,112,173,188,1,169,108,32,80,39,222,55,3,53,103,20,46,28,136,102,49,19,131,173,243,47,204,95,246,64,19,61,152,229,185,143,102,223,252,163,161,206,130,111,120,109,211,114,32,148,249,20,159,207,191,57,73,253,179,162,219,56,128,11,160,166,227,148,95,213,213,83,226,87,116,8,249,227,20,250,234,
 220,168,167,114,132,5,130,137,194,83,81,46,96,149,83,79,178,156,26,140,0,96,122,149,53,102,218,108,142,97,100,177,146,49,166,255,98,180,216,158,67,179,105,77,207,136,9,148,79,107,126,187,110,47,87,41,14,63,222,95,207,117,217,205,64,110,155,91,19,60,212,147,205,254,28,232,104,223,87,76,96,211,175,136,5,146,218,142,185,157,203,5,47,181,100,15,115,101,132,17,158,250,182,208,36,72,119,13,189,221,6,44,210,3,251,23,98,184,186,5,88,225,102,201,81,211,142,184,40,178,78,174,155,231,236,198,34,227,53,136,209,246,215,230,17,198,220,161,177,20,243,77,121,173,184,6,112,187,79,249,75,141,64,8,99,55,210,116,52,178,117,47,172,18,193,174,118,104,110,213,39,242,242,37,136,223,79,165,102,164,81,209,116,217,79,142,118,222,176,233,238,101,209,56,136,126,171,242,137,226,156,77,9,113,103,239,145,176,53,139,74,34,79,50,61,228,155,232,154,34,233,80,158,150,20,98,109,149,137,208,179,113,239,212,77,2,132,213,24,135,253,195,206,226,194,81,205,17,100,247,216,140,167,71,25,20,146,219,98,184,49,210,6,188,
 166,228,186,156,40,82,154,72,161,23,49,102,115,196,138,147,103,209,251,169,51,125,48,57,68,127,129,146,109,73,127,164,23,226,227,64,53,208,150,109,181,228,205,175,132,98,185,184,141,160,251,241,153,97,243,188,58,187,167,25,124,43,48,226,78,31,178,231,34,216,35,244,131,230,136,247,132,91,170,168,56,15,216,3,40,32,240,248,129,200,158,236,67,78,141,142,112,176,249,116,69,181,162,148,196,228,182,49,77,170,85,236,91,89,180,55,168,207,241,133,236,179,110,75,157,153,38,122,138,135,111,152,157,23,103,55,76,90,81,31,39,5,67,141,145,179,125,5,64,253,140,149,48,31,26,74,240,1,49,91,220,4,187,76,79,233,49,44,99,108,127,210,220,25,75,141,215,77,22,155,169,197,68,164,189,98,211,8,31,179,54,110,241,117,178,12,245,127,2,0,222,208,155,98,33,134,229,75,172,253,243,76,139,136,227,10,30,216,132,216,45,106,170,26,89,141,103,26,50,199,170,228,237,180,206,207,217,78,39,150,158,202,15,16,38,195,240,75,120,87,112,130,1,240,182,171,19,234,79,33,83,197,26,119,158,109,37,180,94,178,183,130,136,54,200,3
 4,249,181,69,41,249,134,233,50,40,1,64,122,200,219,49,23,226,119,90,238,79,194,122,74,254,147,196,24,121,225,14,106,42,87,135,108,184,53,51,219,190,175,47,193,68,181,154,125,80,31,249,222,149,36,152,62,194,21,92,198,95,230,164,143,147,114,65,42,74,130,63,239,147,46,97,176,206,37,209,65,104,20,219,35,212,52,223,193,204,180,205,204,226,25,85,153,227,53,24,93,20,112,112,89,242,166,77,100,205,2,11,77,247,181,192,165,162,172,18,72,137,216,3,53,111,79,173,90,203,197,218,34,144,175,222,23,174,116,253,98,19,52,193,216,189,236,110,208,155,184,86,108,253,112,218,180,6,44,70,57,165,92,35,50,92,111,30,73,206,229,168,127,163,101,32,228,142,167,206,95,182,48,239,55,35,33,148,174,190,136,83,44,92,28,189,165,33,189,174,94,119,229,208,173,158,64,146,109,67,234,35,126,132,215,203,146,93,19,179,7,198,153,157,165,251,77,42,25,19,255,146,226,20,65,33,109,54,211,131,15,56,234,137,78,74,224,93,255,142,89,97,248,63,73,17,214,147,36,21,145,248,209,146,139,56,134,73,234,125,203,175,5,228,204,189,114,
 192,23,213,147,41,221,166,168,66,246,108,133,126,27,235,48,117,168,145,210,78,138,235,82,251,202,133,125,118,161,191,111,224,108,212,46,63,171,123,251,149,139,20,96,193,9,112,160,55,60,39,112,62,226,88,2,20,150,121,64,85,45,32,250,111,173,175,243,189,202,24,83,214,130,59,179,192,75,62,116,65,236,142,250,37,60,155,171,23,22,241,147,97,240,6,100,42,174,77,200,11,80,7,45,47,235,16,112,161,179,96,185,217,35,208,21,25,120,7,87,213,33,134,187,131,143,231,0,149,223,81,85,191,60,88,110,169,250,65,133,7,91,78,215,99,71,148,249,3,226,97,51,227,154,254,167,80,213,169,192,63,130,34,90,30,237,173,6,7,148,134,12,228,118,56,93,187,122,163,48,15,90,217,208,210,231,91,48,29,123,30,164,211,19,18,65,51,98,138,189,35,223,163,84,73,161,143,189,155,175,179,84,207,251,104,29,18,2,81,196,8,207,211,219,149,18,205,69,141,85,117,212,56,234,165,44,159,127,37,155,144,12,4,253,81,63,189,209,56,216,78,127,74,101,151,168,218,195,142,51,30,131,157,139,167,59,230,111,59,33,28,227,53,164,157,195,180,147,40,14
 7,104,40,153,63,250,149,108,103,220,247,246,53,11,39,96,160,42,15,91,2,42,237,245,76,10,250,30,177,150,187,221,236,3,137,199,168,201,212,213,0,145,118,164,216,47,14,110,44,111,255,197,253,196,4,76,129,195,143,197,31,57,172,254,99,192,121,158,102,212,105,212,55,213,79,183,84,239,73,203,147,75,230,30,137,206,145,27,251,246,51,165,98,238,73,15,192,8,103,191,180,98,17,126,251,120,59,128,204,157,103,135,130,124,207,192,29,99,245,115,167,255,100,42,163,183,218,120,98,107,227,138,253,190,151,61,223,118,115,74,176,171,30,76,205,230,175,139,54,228,188,227,62,194,182,175,158,3,47,228,100,63,172,17,230,52,216,226,215,15,177,230,137,105,108,241,221,134,59,56,163,6,124,119,209,172,41,244,203,82,105,239,206,125,44,37,187,48,103,21,185,104,136,64,11,104,116,146,17,144,167,243,45,80,107,103,1,199,41,79,155,82,33,148,172,157,100,151,33,11,135,181,174,164,66,169,194,66,140,71,68,231,121,185,210,171,221,214,19,222,75,243,42,19,209,92,166,123,8,253,201,132,26,163,56,32,74,82,250,58,43,172,163,2
 01,56,141,118,223,57,185,19,48,219,75,217,232,237,152,232,204,45,167,125,159,48,53,48,192,87,29,62,143,138,170,227,161,62,236,180,243,182,113,139,219,209,181,88,230,59,123,34,3,81,33,191,72,24,47,124,54,193,178,249,203,122,180,71,171,34,88,37,150,57,53,246,139,239,110,79,28,148,40,15,204,103,243,95,128,86,180,64,99,142,127,178,16,138,226,199,135,67,244,46,207,247,6,6,168,197,254,116,1,31,91,9,152,120,163,204,110,58,75,14,246,26,88,73,171,93,215,117,39,185,170,93,64,50,151,36,7,229,251,42,238,90,154,240,182,142,147,13,100,14,134,1,160,39,62,221,198,21,103,191,56,106,66,34,46,208,123,98,146,153,28,204,208,250,151,176,125,37,195,121,232,100,109,231,122,92,35,195,234,133,88,13,254,88,77,241,134,57,1,163,34,14,128,205,233,128,83,137,197,179,143,91,130,29,195,98,121,26,125,58,26,103,0,177,181,8,58,253,42,74,142,169,110,220,84,5,117,162,83,66,180,83,164,90,172,102,237,246,127,125,129,71,184,196,148,51,124,233,204,55,34,23,92,253,25,246,78,202,110,211,97,109,254,34,220,162,65,148,13
 3,244,204,238,155,245,40,116,37,4,102,28,174,57,251,96,204,90,9,1,136,236,128,255,55,74,201,243,53,248,120,211,171,196,19,196,227,54,244,227,13,175,101,171,234,218,1,61,37,11,225,155,134,162,82,49,194,147,91,44,54,196,182,105,108,133,145,95,3,153,110,173,10,46,56,251,23,160,166,222,193,87,11,142,33,210,218,34,131,181,20,144,242,130,222,200,197,51,111,165,40,5,159,223,191,133,192,251,62,254,175,9,48,36,15,69,219,159,89,111,145,92,39,33,250,207,66,33,26,12,161,248,78,132,6,232,3,91,31,249,227,186,191,121,224,141,199,124,105,158,37,181,254,88,219,0,190,233,171,187,169,77,220,45,22,248,151,143,145,158,151,155,247,94,187,45,74,71,215,70,90,150,161,44,223,56,68,173,232,41,210,2,52,16,230,150,170,148,23,67,174,232,66,15,118,56,193,52,167,117,247,40,132,195,10,253,185,202,40,192,118,253,135,171,246,51,101,98,185,172,254,64,64,217,192,114,35,218,1,158,66,177,99,213,254,31,211,65,66,98,7,132,66,209,71,239,213,61,153,70,97,79,234,178,209,164,22,24,217,50,106,153,114,24,239,52,231,155,1
 44,205,55,255,118,202,198,177,193,180,175,141,91,81,14,203,175,28,229,12,137,228,132,12,67,116,239,241,1,2,90,61,133,142,4,147,173,207,9,125,23,137,221,111,66,19,111,126,69,27,52,146,50,228,192,49,220,63,219,117,186,250,145,39,189,8,145,48,7,135,100,175,110,175,16,198,212,15,120,85,47,5,126,220,120,63,31,83,214,70,207,88,108,142,140,87,182,99,50,11,83,12,171,96,38,30,67,33,227,92,253,167,228,128,191,138,49,184,240,62,3,156,54,122,237,56,208,54,19,86,175,70,75,102,86,141,237,35,206,255,80,51,3,24,192,183,126,143,244,134,251,250,254,226,200,112,216,93,3,133,75,31,251,165,18,53,62,0,232,104,1,139,233,206,138,71,160,116,6,31,197,216,248,139,1,85,51,88,34,64,85,0,37,51,183,177,13,155,242,139,227,29,47,160,189,225,48,250,2,220,147,231,30,148,15,221,250,167,176,84,214,112,224,12,244,173,10,250,200,202,195,202,120,168,50,183,183,34,119,70,18,136,124,248,3,193,69,221,135,255,140,60,210,145,51,47,142,187,252,45,73,227,32,109,235,91,230,87,122,159,3,79,169,146,178,109,193,239,21,179,17
 2,83,57,186,14,169,103,180,56,72,68,60,171,120,15,106,133,87,33,216,55,219,198,123,214,128,217,145,225,54,24,255,86,174,227,137,163,174,255,63,252,22,0,246,2,197,253,12,1,1,177,193,127,177,45,191,40,75,183,131,24,46,93,227,24,245,111,201,162,127,218,190,182,3,119,5,135,217,169,168,184,31,170,63,40,27,244,128,187,119,193,60,236,143,93,28,216,252,2,102,255,121,132,136,142,23,232,77,47,7,245,24,174,224,34,244,106,192,6,105,12,31,85,174,233,229,179,108,69,0,242,83,214,103,132,74,209,86,105,197,66,40,195,52,48,0,117,119,231,19,195,25,125,16,89,105,251,163,176,48,253,113,196,44,229,126,229,155,55,1,25,198,82,197,250,111,82,149,70,53,175,86,214,187,188,54,112,41,189,223,135,79,34,36,239,68,254,14,156,188,139,201,132,115,111,21,179,78,18,245,91,111,164,117,220,74,78,106,15,213,48,0,5,255,137,145,165,253,68,37,10,70,166,23,187,16,65,75,108,207,179,3,189,19,94,80,156,187,192,173,212,207,145,131,180,43,49,64,251,248,55,239,48,135,112,166,192,166,95,7,214,138,217,244,146,141,235,166,14,
 185,68,136,60,185,155,235,189,111,117,58,248,7,239,58,41,176,97,39,240,208,222,99,118,207,15,85,96,132,17,135,119,43,51,185,104,99,122,163,10,255,141,141,128,74,43,222,94,2,179,199,155,210,209,134,149,85,252,189,178,240,130,223,16,95,173,222,77,205,210,156,160,207,19,162,40,142,4,169,91,132,39,50,112,156,141,201,15,193,247,77,212,170,252,149,88,59,115,53,117,166,231,55,112,146,243,171,18,215,160,179,126,241,130,197,240,104,119,245,210,207,213,216,177,238,221,160,199,102,233,92,186,31,168,214,159,177,115,85,244,172,93,69,148,247,176,169,101,148,180,138,246,58,183,227,10,58,29,207,81,79,59,127,117,237,165,71,105,160,156,238,16,95,165,67,129,99,64,123,191,22,24,6,112,39,142,183,243,73,87,19,146,246,194,122,188,137,243,108,239,167,162,188,197,134,96,63,15,234,119,246,131,153,99,27,74,135,190,127,98,140,189,60,53,216,234,168,203,171,9,140,144,153,220,119,248,186,31,122,98,195,86,81,46,55,17,139,78,13,228,53,159,196,75,231,0,216,49,38,119,224,55,14,91,153,34,27,1,247,231,56,6,60,2
 05,194,106,230,62,214,151,224,200,137,234,234,225,145,197,233,105,62,235,229,201,94,38,125,35,27,223,91,4,16,152,106,15,240,108,139,111,26,37,115,15,183,33,217,220,90,129,49,126,49,114,103,189,165,83,255,148,46,181,186,169,211,159,16,14,187,161,20,254,147,32,34,220,216,174,39,70,36,147,96,164,56,161,75,95,35,29,131,56,84,211,119,156,136,136,79,253,207,155,3,114,39,251,171,209,77,106,141,178,73,15,138,224,79,195,45,183,127,185,23,222,169,208,24,194,120,117,127,216,124,249,61,223,175,94,184,151,221,220,154,135,4,196,245,124,126,153,186,224,172,78,93,181,8,113,222,199,81,201,121,148,3,186,61,213,127,32,179,201,218,163,14,120,194,183,6,212,107,35,242,113,48,110,70,90,67,204,215,177,50,140,230,214,239,75,130,23,246,197,17,182,154,49,6,114,102,179,153,46,164,132,48,187,97,42,248,61,243,86,224,24,137,32,38,40,131,63,85,117,140,179,170,21,68,213,45,178,24,100,252,215,19,10,35,174,43,251,211,81,166,163,44,231,25,249,143,151,12,11,60,38,14,214,205,171,7,83,81,188,214,81,198,216,221,12
 1,111,167,180,115,143,115,39,152,203,245,93,63,21,176,4,39,223,47,196,141,247,2,219,127,207,96,221,72,218,51,20,58,205,142,229,189,115,47,43,164,153,129,53,30,38,105,131,101,11,24,29,234,241,113,211,100,230,188,39,182,40,11,191,113,252,125,235,21,240,20,214,224,208,98,3,128,225,193,36,90,139,128,131,57,207,111,147,161,208,92,178,169,158,163,250,91,110,73,115,119,151,212,148,166,175,229,152,81,59,91,71,185,242,182,246,212,31,178,218,169,12,70,195,43,153,174,223,17,103,162,246,3,110,129,64,65,73,16,191,235,66,126,62,121,40,250,76,248,113,186,79,44,182,154,238,106,212,70,65,37,198,34,153,182,77,30,194,47,154,187,63,46,98,25,93,67,1,218,46,42,9,97,109,155,111,15,49,104,154,46,81,172,110,139,227,4,110,59,224,39,150,196,182,210,196,176,64,167,166,73,32,100,143,167,165,144,191,210,198,97,138,103,124,100,222,149,4,110,245,252,76,67,237,113,163,193,164,86,85,218,99,62,28,239,55,50,88,221,24,92,206,125,24,200,220,201,118,113,19,56,126,204,50,92,10,42,43,238,198,171,132,100,212,68,140,
 10,33,196,67,55,19,26,164,176,151,163,161,193,184,144,38,70,195,36,65,56,164,156,248,93,79,26,136,40,160,7,158,54,129,36,59,200,193,163,239,126,14,230,242,188,54,41,50,15,185,214,209,133,11,107,109,156,24,223,34,13,194,7,154,216,77,197,113,30,24,162,7,96,36,129,10,237,241,85,172,240,205,125,70,190,162,226,124,88,46,161,112,71,149,138,220,92,192,149,128,126,86,32,78,51,22,4,216,95,17,68,73,12,209,10,143,225,10,57,116,130,91,191,126,102,233,55,136,37,146,56,40,221,7,45,255,223,167,52,197,52,182,34,218,103,115,83,171,185,189,26,251,205,244,26,126,38,122,81,36,172,83,47,221,244,191,99,178,41,19,210,183,179,222,230,246,76,196,206,224,216,237,211,139,16,240,17,120,85,111,122,57,157,184,71,1,35,246,71,15,106,16,120,196,194,253,98,65,67,31,67,72,56,76,77,211,107,133,237,228,162,100,133,18,49,101,103,48,240,109,99,90,72,72,150,250,226,4,139,235,96,24,204,253,215,148,128,115,36,9,207,161,113,123,94,63,145,145,169,222,76,138,75,242,225,232,84,152,233,16,239,179,213,47,23,127,62,255,167
 ,239,135,163,228,184,135,91,171,71,109,5,104,48,211,119,119,252,123,212,183,153,54,226,228,215,89,236,0,29,6,81,59,113,1,235,105,21,193,55,46,231,54,149,174,25,140,145,81,103,150,193,226,236,41,98,49,253,208,70,87,81,99,44,78,85,35,61,254,192,147,172,11,102,17,158,60,158,120,246,214,85,180,135,167,143,48,7,172,121,242,208,208,248,144,75,116,237,10,170,219,219,27,119,112,158,41,132,37,115,89,161,247,154,250,202,108,202,2,208,88,33,77,47,51,116,176,29,131,119,41,88,163,17,185,94,98,106,117,249,96,71,17,221,103,203,181,8,191,227,204,220,59,244,214,14,207,101,144,71,34,72,217,233,144,249,128,149,129,114,182,253,193,158,34,134,146,224,226,58,4,190,69,206,167,252,58,249,213,206,160,250,69,31,76,54,148,215,154,129,134,34,86,35,44,224,147,232,229,40,16,39,190,79,198,38,97,3,24,145,123,234,108,99,182,243,1,202,74,9,134,254,37,230,219,77,254,80,171,146,46,29,163,250,27,211,77,94,137,144,50,206,89,175,254,229,233,12,226,154,99,165,12,122,96,46,88,217,117,7,170,239,74,111,242,236,89,20,
 105,0,236,119,232,242,12,198,241,121,142,119,119,249,57,86,181,155,237,141,73,204,3,170,11,90,200,131,252,64,64,174,166,154,66,252,65,61,166,46,127,194,112,89,73,19,12,145,2,87,47,209,130,251,223,16,212,244,59,51,26,82,161,196,240,219,9,39,67,101,142,156,231,227,29,106,86,166,27,209,199,182,95,67,41,127,107,181,124,133,93,159,251,193,151,63,86,128,14,159,101,80,142,36,99,241,119,84,243,18,252,133,138,191,182,238,203,100,249,100,105,252,255,133,59,91,118,175,242,34,74,43,4,86,222,159,210,51,70,16,107,6,26,36,44,13,49,41,141,121,112,61,81,112,218,196,225,102,64,121,169,194,211,158,222,155,237,24,160,45,235,113,214,171,15,187,224,135,142,144,136,172,60,67,193,141,4,161,42,42,36,64,153,237,142,129,10,242,163,229,73,92,42,59,127,254,173,23,181,130,227,137,246,46,190,137,214,25,185,102,18,21,108,114,29,47,122,217,87,19,203,23,96,169,102,104,134,75,210,32,29,152,85,231,197,163,118,51,77,23,136,209,239,176,225,218,61,93,240,245,239,109,73,47,154,2,119,67,145,187,1,209,43,152,112,134
 ,207,138,245,159,84,149,60,27,137,97,242,204,84,57,34,97,16,13,101,205,140,36,229,8,119,190,130,181,33,164,192,21,122,76,173,4,228,83,211,43,61,27,242,239,120,204,210,230,2,203,206,114,79,76,119,147,249,34,47,195,201,226,69,12,139,221,239,21,164,80,116,200,107,191,30,26,177,243,14,178,24,248,240,232,138,154,81,84,92,112,251,59,144,239,137,37,109,87,228,61,180,93,156,88,118,148,41,143,238,218,253,0,198,21,198,45,203,190,101,63,64,247,151,78,43,170,89,7,19,20,141,181,124,119,110,156,254,0,110,53,226,129,56,203,134,234,105,31,22,36,19,87,179,26,14,200,221,14,120,228,64,159,147,134,40,87,73,214,30,107,15,135,215,137,167,20,218,224,45,8,76,1,127,163,175,201,115,61,112,204,149,22,170,147,3,102,219,156,33,110,234,61,139,236,201,98,171,239,106,19,34,74,242,59,19,105,211,248,157,113,118,171,52,127,121,241,188,110,210,45,148,148,117,2,32,61,47,224,250,187,101,96,53,241,238,161,255,68,101,7,173,125,6,41,32,170,168,29,102,173,8,95,114,205,82,217,132,255,132,209,39,153,75,174,155,208,148
 ,142,10,146,164,12,250,88,82,100,73,82,234,61,212,235,19,142,154,47,253,155,67,243,63,17,8,82,115,189,35,42,110,106,28,135,110,163,193,34,25,73,135,242,207,112,82,21,10,23,4,62,162,166,93,144,223,18,11,224,209,245,114,7,79,102,137,38,183,24,250,87,21,18,178,136,204,93,250,22,54,103,139,10,59,253,87,250,40,168,248,196,96,0,24,110,84,39,110,171,205,32,163,35,159,61,54,7,253,138,241,66,19,51,61,190,235,93,31,233,108,179,30,170,221,29,134,82,177,201,10,233,159,56,252,158,163,202,56,233,105,228,124,163,183,104,158,179,122,101,230,47,7,8,122,70,81,101,211,133,244,157,105,77,80,109,135,68,97,200,180,250,121,172,162,191,54,32,92,161,212,115,101,175,224,222,134,121,156,237,251,142,99,109,132,129,111,221,35,50,114,173,187,172,48,208,145,182,120,137,51,225,195,103,21,3,148,165,28,126,238,96,25,206,242,252,160,194,185,18,139,43,127,174,186,180,88,84,17,254,51,10,235,5,119,12,247,51,158,247,151,37,230,8,34,129,3,252,171,108,0,179,120,38,200,250,50,33,252,101,234,34,244,128,137,187,95,174
 ,220,36,88,26,141,166,86,142,207,190,96,134,135,25,59,15,123,155,155,233,83,34,32,135,118,54,189,211,182,183,197,238,167,155,242,176,69,209,144,39,129,40,61,236,96,222,97,191,248,124,215,104,208,93,46,25,109,94,8,25,62,24,151,46,196,196,26,10,120,98,201,6,214,50,230,61,118,58,210,219,178,207,142,5,113,114,28,107,71,223,115,67,84,129,183,152,236,225,226,200,168,1,2,19,224,159,220,213,117,101,241,133,179,239,36,74,215,152,45,230,159,253,155,233,49,29,237,25,88,153,252,42,145,39,140,165,162,180,246,28,34,73,123,148,57,3,41,253,96,47,106,223,101,4,166,249,38,221,205,159,184,233,154,236,35,226,78,216,196,188,173,99,52,158,221,44,62,182,171,229,227,25,148,244,113,150,251,125,34,99,124,214,192,203,66,76,146,161,55,104,212,46,195,1,122,39,48,78,255,233,234,169,108,172,206,225,6,128,194,112,78,138,208,4,22,175,147,32,215,198,98,134,99,32,249,156,255,115,102,27,251,59,166,210,189,225,6,114,27,82,239,12,53,17,109,94,42,239,79,146,205,64,171,249,193,162,249,255,62,120,241,158,83,217,177
 ,175,252,57,160,79,30,41,214,76,160,207,242,56,226,247,147,239,156,107,216,40,194,87,215,246,255,133,48,117,134,222,153,199,151,253,37,217,91,118,177,110,229,206,232,249,238,175,110,239,29,238,147,223,127,94,26,156,69,111,108,119,252,115,236,161,166,188,40,114,237,111,113,137,50,90,141,220,208,154,84,143,110,168,209,143,138,166,8,102,58,129,99,123,252,194,158,212,152,231,32,253,230,74,142,9,59,106,45,121,225,61,95,211,245,174,16,205,208,180,136,55,107,121,131,35,119,17,83,0,66,95,18,247,224,174,126,241,189,167,248,43,232,103,3,94,199,135,248,165,89,81,156,175,114,218,124,24,24,67,15,62,94,236,140,218,106,152,178,148,121,178,54,192,12,249,7,172,226,54,189,82,95,159,162,227,112,223,194,192,232,40,170,72,85,41,58,69,88,146,124,67,87,46,109,222,220,3,153,199,204,246,223,226,115,139,123,207,230,116,231,136,62,24,32,155,226,169,156,253,45,78,96,35,75,43,163,242,47,243,8,58,146,98,98,84,179,111,40,169,73,249,178,253,144,146,11,13,103,157,34,44,208,207,178,139,247,84,165,206,72,200,
 232,119,31,178,218,136,241,146,226,162,231,176,7,142,33,75,42,76,46,9,65,159,165,207,213,127,183,107,51,21,86,235,43,213,199,10,106,183,13,232,74,233,144,253,133,82,69,11,50,240,219,91,101,87,124,97,57,67,2,74,214,43,200,250,183,191,238,132,6,76,64,129,88,250,64,116,151,202,204,37,16,13,128,213,16,235,188,72,118,141,157,88,104,94,9,136,45,15,239,6,158,89,53,95,101,243,131,69,138,8,35,25,69,102,44,209,119,187,40,59,101,10,221,31,163,141,80,26,244,211,203,172,186,40,39,151,123,209,125,24,55,202,64,161,56,208,186,137,214,163,96,233,185,120,69,142,147,206,121,90,143,90,13,63,150,149,248,248,38,58,126,181,245,162,190,40,83,35,225,200,108,74,56,11,130,134,109,50,8,168,144,198,40,60,97,231,68,15,82,227,242,132,41,29,161,213,240,131,42,104,29,175,152,19,11,167,19,87,149,191,65,125,202,234,60,204,58,97,15,67,120,186,15,225,181,21,92,191,134,64,42,202,73,26,98,137,58,23,170,46,212,6,33,132,74,69,251,28,247,239,75,240,82,114,133,53,225,253,234,86,133,26,219,255,95,59,77,124,42,118,112,
 45,208,245,106,169,41,50,228,223,172,72,171,100,184,203,123,231,127,185,80,83,67,139,157,110,245,65,32,76,36,255,119,235,26,54,230,185,36,180,197,121,236,230,101,134,65,5,5,172,243,44,123,134,128,174,161,118,158,210,56,144,186,11,150,188,238,124,8,207,126,46,18,193,147,239,227,139,249,180,47,112,197,40,120,216,252,100,57,204,218,114,248,207,165,8,38,126,181,72,140,102,135,29,88,127,250,58,208,86,249,192,139,20,238,58,92,148,45,206,46,55,36,149,180,36,67,151,101,154,89,241,238,254,157,59,69,19,62,199,232,201,74,21,107,52,116,171,220,178,62,71,254,36,101,87,35,60,69,102,255,195,240,153,89,240,155,217,117,210,158,3,144,191,0,137,130,30,137,98,233,118,191,105,193,104,63,20,62,223,102,127,195,40,133,49,33,37,50,64,209,70,133,180,251,80,219,80,99,185,95,127,112,123,214,107,247,70,243,45,244,45,162,232,229,247,38,239,178,91,148,69,3,104,94,154,13,224,206,248,57,92,96,122,147,49,173,36,82,56,236,243,78,144,113,135,164,30,234,210,158,48,47,219,70,42,230,203,56,149,114,89,190,162,73,1
 64,185,207,94,251,186,218,24,157,73,201,239,4,103,254,192,184,2,123,36,129,26,121,211,241,16,184,219,55,132,125,180,146,118,24,89,14,225,79,164,168,228,64,93,51,96,20,102,165,202,21,98,30,80,110,224,221,77,172,188,114,14,26,128,248,199,116,132,189,180,74,170,157,171,46,129,81,131,247,251,176,223,35,186,220,38,52,207,238,246,56,119,152,61,142,170,124,80,76,51,6,67,59,163,81,118,18,255,89,85,130,134,234,141,210,85,5,19,65,148,23,111,200,205,177,50,16,181,247,134,127,160,214,123,58,147,213,19,70,240,183,73,99,233,124,73,169,118,88,58,101,160,162,197,165,218,120,156,79,221,110,191,184,237,226,57,139,208,19,216,21,146,247,4,34,207,233,239,28,187,93,76,59,51,206,61,181,1,63,92,247,54,135,91,17,98,211,24,221,127,103,222,193,67,219,174,146,140,178,223,66,6,213,210,48,83,223,162,29,91,37,80,221,239,49,232,107,114,195,45,67,123,78,125,37,227,225,217,21,68,235,77,44,120,182,82,39,134,77,226,208,110,134,99,237,111,247,31,98,246,175,96,113,68,138,157,125,50,82,230,215,171,147,25,15,89,16
 8,169,50,126,101,181,113,69,234,102,147,197,101,248,127,167,196,92,113,147,91,197,142,13,123,189,168,123,103,65,31,137,23,214,254,132,193,71,125,221,65,3,24,153,77,224,29,7,21,239,36,99,207,99,19,103,117,206,201,165,66,29,117,250,50,3,36,226,97,171,1,226,9,69,40,42,202,250,95,230,127,9,91,9,203,235,97,60,59,33,231,128,242,136,46,157,153,68,173,94,228,212,4,130,200,38,220,162,10,30,178,237,168,234,108,41,148,109,139,38,162,8,160,89,140,46,113,44,50,211,234,67,113,106,143,234,255,128,142,242,72,11,99,171,177,7,47,61,86,119,167,138,224,22,56,48,81,120,233,81,10,187,74,125,158,255,195,224,233,180,190,70,118,188,180,173,238,186,20,69,58,216,66,97,218,182,54,79,222,103,73,214,239,18,212,176,181,234,183,173,93,84,117,89,107,48,102,46,189,224,200,122,151,155,64,85,151,166,193,122,178,16,120,146,167,144,75,232,81,72,38,74,104,243,82,78,146,248,101,20,135,155,49,100,203,126,15,65,184,205,221,57,253,168,175,41,152,227,246,90,149,148,17,171,188,108,185,210,69,168,168,135,171,193,54,158,
 80,169,72,165,66,42,88,181,84,40,165,86,155,244,184,9,241,147,179,157,94,88,120,238,235,141,224,82,112,133,165,63,9,203,215,6,23,33,88,60,231,33,101,75,150,136,43,220,255,167,174,145,29,147,21,133,206,182,108,175,25,131,229,89,221,239,36,202,146,150,252,62,40,124,127,55,155,45,210,46,28,251,89,6,5,105,182,81,56,143,249,242,203,115,103,168,224,217,131,242,101,194,44,53,46,159,118,108,123,107,180,191,142,0,72,27,191,120,160,146,111,145,170,77,87,54,172,228,5,154,42,177,54,190,180,232,167,141,130,248,157,253,238,157,94,24,246,152,51,231,102,215,53,206,39,206,222,202,196,234,51,124,7,80,132,246,95,98,201,211,80,212,230,181,194,108,144,18,88,191,147,245,255,129,81,252,88,137,187,184,200,218,40,94,180,152,11,21,128,248,133,242,111,169,133,135,183,114,217,90,240,111,114,211,67,214,168,185,127,131,69,138,231,119,146,174,222,64,252,217,195,181,123,159,163,250,13,4,98,174,252,65,189,61,130,122,71,88,181,157,177,247,110,189,94,116,85,52,133,232,74,168,98,245,85,38,94,16,164,184,31,54,1
 58,147,47,35,159,205,132,248,228,218,112,25,5,80,225,160,214,96,75,246,196,189,244,223,65,30,169,115,113,248,20,10,204,131,108,196,190,228,190,139,202,19,193,96,53,41,157,212,38,65,106,210,174,225,223,216,38,67,234,34,130,164,122,129,177,232,131,42,82,123,208,108,200,30,241,58,45,74,159,240,129,195,5,232,5,193,195,190,192,156,14,201,17,250,85,138,107,27,174,235,95,24,219,195,135,70,211,249,126,33,94,216,158,212,211,96,91,168,26,118,109,254,252,122,157,193,52,39,88,195,39,79,62,237,132,3,95,248,68,32,28,136,222,80,172,207,180,133,230,69,85,94,42,103,135,233,38,39,179,82,43,148,143,190,141,160,132,97,16,222,73,74,194,24,235,17,175,27,0,131,17,56,53,146,194,43,111,7,15,105,116,105,158,160,254,175,182,188,253,92,231,115,112,64,57,228,77,17,138,48,56,167,219,25,67,81,70,194,15,4,18,38,130,74,38,186,39,224,95,3,98,15,132,227,30,113,177,87,206,234,34,34,193,50,226,185,9,46,135,151,85,109,102,176,25,76,253,111,35,60,227,194,147,38,101,16,11,89,159,125,25,12,242,19,183,103,12,63,177,
 156,31,106,195,15,111,153,214,105,20,245,126,26,21,173,166,209,32,33,41,81,117,225,231,11,157,24,117,117,169,215,158,177,123,128,10,20,126,91,111,14,164,122,47,238,232,216,219,29,157,35,59,3,124,41,208,8,229,39,62,61,184,130,105,181,66,108,143,192,115,197,183,242,219,125,58,82,187,194,249,248,2,220,136,4,76,150,151,102,14,160,22,20,172,193,241,254,27,82,255,247,247,4,29,175,45,213,217,121,99,16,27,91,102,202,87,154,252,1,226,63,93,66,229,185,129,152,5,71,3,145,236,7,145,194,115,243,157,115,250,90,237,112,11,233,77,69,65,37,127,28,124,158,216,203,137,221,121,40,85,108,10,100,149,119,99,254,205,86,250,143,228,215,199,108,45,208,114,61,240,185,112,60,86,24,243,129,244,222,231,234,170,160,174,86,81,36,161,156,218,69,172,222,176,104,4,166,86,252,204,246,177,207,112,195,38,179,151,37,91,196,176,16,140,102,39,28,5,54,43,133,186,217,199,243,86,29,186,132,91,12,187,130,13,150,1,238,104,140,235,200,38,207,151,41,142,37,226,53,204,217,115,189,120,228,77,59,71,249,192,20,9,180,147,124,9
 3,217,237,95,69,156,163,168,155,85,39,124,33,207,120,89,125,215,188,202,5,240,197,149,100,87,82,229,213,74,88,51,132,48,72,190,29,113,62,38,98,146,44,99,222,225,91,46,117,28,104,195,17,0,228,137,22,242,20,30,237,72,120,172,245,96,85,57,50,101,193,214,65,4,70,135,127,171,163,151,16,206,160,83,18,208,243,59,61,241,18,98,230,155,10,214,191,13,240,167,235,254,212,63,185,221,29,111,247,32,72,20,247,80,49,7,17,5,60,185,107,84,93,197,29,15,230,156,24,109,231,2,121,10,18,248,150,24,136,224,165,124,76,214,161,245,187,189,223,149,171,18,13,50,156,38,178,24,161,123,69,78,57,200,72,46,120,72,66,51,19,3,117,104,8,184,149,46,92,242,133,147,227,228,198,79,245,19,54,215,201,150,96,112,34,152,54,149,81,109,98,188,20,49,220,221,59,180,24,58,243,32,128,59,38,136,43,194,84,91,142,94,242,80,177,11,25,227,34,132,236,95,170,166,255,206,58,107,128,255,118,75,104,231,6,61,137,44,216,177,65,126,219,120,207,75,213,37,31,44,58,121,201,235,103,154,211,16,25,126,44,220,186,28,47,183,254,97,96,99,109,134,
 196,73,203,85,224,148,158,155,4,108,55,201,74,36,147,233,12,201,63,241,0,242,162,142,104,104,31,228,3,52,188,235,27,211,143,23,189,27,48,10,235,86,248,192,239,118,57,179,185,115,40,215,131,242,249,36,86,167,63,144,171,153,189,158,201,218,100,255,46,207,182,61,128,186,154,82,231,198,162,118,150,137,64,161,163,168,218,23,255,134,192,102,241,130,163,239,9,191,32,194,99,6,225,109,172,186,79,45,123,228,129,205,26,34,46,166,76,162,176,177,142,184,245,57,184,1,46,40,136,89,20,138,245,123,97,110,138,192,15,230,151,212,170,160,112,66,122,129,15,43,243,156,22,20,250,247,43,94,133,33,104,237,254,7,18,170,137,95,35,129,250,159,156,105,164,23,206,84,30,206,129,44,107,186,45,50,152,191,124,90,11,205,212,236,167,235,155,105,206,123,96,131,190,174,213,154,131,84,115,156,94,233,214,8,163,7,224,218,137,191,140,18,247,132,216,197,181,108,206,218,233,28,133,78,149,83,252,251,107,27,12,229,255,90,184,145,216,79,147,169,61,150,176,143,118,214,207,149,42,97,84,171,195,127,44,182,239,146,142,137,23
 8,252,121,206,158,183,140,30,25,19,135,88,62,41,104,137,141,147,49,134,211,5,164,25,44,205,201,133,209,40,14,39,142,173,251,221,81,87,176,64,5,249,161,120,20,107,49,13,182,143,143,203,152,15,117,2,30,23,176,86,121,37,203,99,177,209,8,235,78,248,192,127,113,221,146,189,206,237,212,112,50,68,21,178,60,185,18,145,38,185,245,153,49,163,140,84,18,72,198,248,10,227,230,78,195,16,132,38,113,181,192,29,162,21,147,126,87,247,89,85,235,34,227,101,101,71,92,11,148,212,224,209,36,231,201,114,15,241,131,184,137,191,123,57,1,141,10,113,107,83,90,206,21,177,204,176,39,36,68,131,131,116,99,239,228,76,38,187,234,93,132,76,14,72,11,57,13,244,172,155,80,121,115,249,254,117,147,196,2,22,28,193,114,237,78,92,156,198,46,163,220,37,209,143,247,85,175,137,186,108,161,116,192,134,141,119,173,24,146,198,224,225,159,18,244,57,91,22,114,106,15,152,12,124,30,64,217,222,93,206,7,247,230,245,191,21,61,163,180,153,59,35,108,132,83,143,230,193,119,139,113,68,116,119,156,175,165,218,249,49,57,16,230,161,239,
 180,30,191,17,237,160,36,134,37,87,68,246,167,208,244,134,192,186,66,7,188,250,148,62,13,91,11,64,137,91,204,177,76,65,93,190,244,97,95,14,229,91,26,51,23,54,224,245,203,199,192,200,94,141,173,93,184,13,194,174,232,11,78,17,81,101,158,99,237,30,101,232,115,109,177,73,67,206,237,235,95,42,193,215,152,210,215,219,193,83,222,203,218,79,176,34,123,169,54,28,39,117,125,179,27,168,189,88,227,171,161,196,49,46,204,112,73,167,243,58,91,66,95,46,29,85,88,149,39,76,215,230,176,116,185,148,28,56,244,147,122,171,222,52,245,8,37,152,91,144,144,220,112,205,160,97,216,139,64,214,12,11,147,132,147,157,179,135,47,225,33,69,146,203,29,86,227,153,112,81,146,130,139,26,90,148,167,166,31,194,185,91,168,199,198,155,247,203,155,59,227,51,192,27,188,155,146,39,233,222,233,248,150,206,28,232,219,78,168,42,89,192,4,4,61,47,116,180,28,102,146,115,167,165,56,254,5,75,95,148,120,166,148,83,81,38,74,61,90,86,240,34,93,4,4,131,81,27,71,124,0,217,124,98,18,231,116,172,30,61,174,98,191,32,160,154,139,174,16
 2,129,114,31,91,199,241,92,139,172,35,99,221,62,232,63,173,115,236,15,2,39,99,201,162,0,3,106,151,253,11,15,192,74,55,174,56,34,66,195,211,29,203,219,245,228,241,66,185,49,97,239,129,68,89,232,121,28,102,87,202,27,150,254,228,231,203,213,42,117,228,5,252,253,69,54,232,225,136,129,18,243,165,80,44,252,102,45,49,39,130,183,122,209,199,93,119,31,243,182,27,215,212,158,71,24,91,209,171,196,138,66,224,215,162,169,170,96,190,90,236,112,18,183,59,211,231,200,171,56,92,161,86,76,38,125,156,168,35,168,111,60,240,202,196,111,52,23,37,107,55,134,88,191,162,12,193,40,63,88,164,39,117,123,204,249,215,81,178,193,9,44,83,209,172,55,98,82,224,150,32,179,115,208,106,157,82,35,113,228,135,193,100,17,43,30,236,216,19,54,204,102,186,20,234,81,104,152,136,125,216,78,118,189,9,124,36,200,85,238,84,58,175,2,6,241,183,212,104,67,24,194,34,54,205,159,4,11,53,152,102,19,221,188,1,144,20,220,125,223,152,175,32,252,22,174,133,197,232,184,31,29,88,195,45,4,150,194,76,97,237,180,107,46,67,164,213,100,8,1
 78,6,87,84,244,199,110,1,161,94,165,77,179,94,207,2,192,148,120,145,114,224,216,165,227,70,209,178,182,236,177,149,215,244,3,21,114,116,97,209,201,138,110,55,250,106,245,134,48,17,236,128,226,226,165,102,154,141,35,166,202,228,242,76,154,133,245,64,252,154,229,100,198,144,66,175,66,251,212,46,13,132,219,195,48,63,84,94,120,48,228,204,77,67,143,90,127,140,143,94,145,13,218,130,203,15,107,71,37,116,26,185,5,28,88,109,241,23,183,226,3,99,212,55,133,156,158,25,216,244,22,123,47,89,35,34,74,96,86,144,120,90,99,54,154,220,243,150,196,23,228,131,21,170,71,14,254,206,43,203,55,131,16,50,28,42,1,46,219,189,171,212,191,167,181,145,31,229,178,137,39,102,68,35,204,76,30,240,183,254,110,223,178,251,93,2,105,40,123,65,233,175,94,128,150,210,79,160,140,80,91,20,14,233,2,242,229,87,47,159,73,212,142,254,226,88,89,19,122,95,194,138,231,113,75,94,148,187,216,196,33,237,179,80,197,195,243,136,12,3,116,44,85,213,223,231,32,32,166,115,72,3,132,168,174,39,184,129,125,53,151,97,131,148,77,6,46,55,
 138,17,107,88,87,202,61,246,240,60,149,9,233,229,154,22,126,215,119,184,142,167,17,100,149,88,231,170,182,172,80,220,47,18,246,255,255,12,228,232,190,100,138,81,43,246,53,209,218,21,190,69,48,4,88,131,65,148,60,11,112,163,243,249,101,83,224,181,211,161,194,76,195,172,47,246,242,173,78,182,146,23,159,91,20,165,255,192,44,14,240,38,98,167,162,214,113,169,16,50,250,150,243,226,74,146,201,150,100,233,142,22,94,77,215,230,173,169,76,116,255,83,131,91,81,128,177,235,80,201,141,133,142,85,157,89,240,128,235,170,180,41,190,24,22,233,189,152,12,164,251,145,137,106,28,134,57,91,37,121,114,165,170,85,86,2,150,240,62,73,26,151,113,209,53,159,80,204,58,105,134,162,152,191,246,134,98,53,149,141,153,47,184,218,136,231,212,212,138,8,101,205,171,3,19,160,72,155,246,185,134,116,89,114,218,94,117,188,248,16,114,113,199,86,36,13,169,20,56,190,254,138,118,129,134,166,77,54,114,153,66,39,217,157,225,161,104,131,144,155,40,68,221,119,83,233,165,252,240,62,93,141,217,217,243,67,66,33,204,194,30,168
 ,118,210,147,25,187,195,130,252,205,185,185,166,211,99,8,69,175,215,91,248,233,152,74,82,12,59,252,79,33,230,90,55,40,67,215,250,211,64,170,202,127,195,247,122,178,194,33,227,99,83,141,49,56,101,93,13,134,133,24,2,208,111,130,97,30,151,177,197,129,3,131,168,208,50,25,71,213,223,244,116,18,104,0,81,63,16,52,138,233,141,170,232,110,49,165,68,143,57,95,206,88,142,10,213,68,105,220,190,48,153,93,155,58,207,229,245,178,223,44,110,99,98,49,72,175,186,65,183,11,170,212,213,26,53,47,43,222,91,200,54,211,56,192,231,74,125,223,191,12,196,105,13,30,160,78,215,56,157,36,53,200,239,145,169,211,204,145,118,169,51,110,251,230,145,216,91,70,183,176,172,177,208,247,6,5,99,128,89,90,82,150,194,42,128,38,78,232,174,135,118,120,109,63,107,21,96,72,248,36,30,18,255,0,212,134,31,208,200,62,26,105,22,46,108,232,143,48,179,37,187,159,35,134,11,48,223,158,156,20,127,144,193,7,121,250,61,54,151,152,52,80,89,85,88,184,228,180,154,135,35,203,79,8,19,133,80,172,108,131,152,113,61,52,65,30,68,206,168,175
 ,22,104,25,48,160,21,221,208,225,189,13,8,186,83,107,169,203,101,124,131,37,196,133,113,6,216,38,52,66,150,102,41,173,131,233,185,165,52,246,253,187,48,41,17,105,137,245,122,176,119,3,228,173,191,218,183,213,71,6,81,78,86,139,116,194,46,147,68,202,248,79,195,168,158,88,167,49,231,130,8,233,37,220,62,135,172,141,89,218,3,48,240,174,183,50,66,221,0,164,64,233,118,3,71,224,37,132,141,189,244,195,254,111,44,203,180,67,154,38,39,249,175,97,92,10,8,243,223,168,62,211,135,105,213,203,145,154,213,109,236,113,127,107,166,247,224,100,139,127,211,104,206,22,19,20,159,246,117,153,7,18,138,209,170,5,220,133,179,7,221,62,226,30,232,251,154,24,1,195,92,113,210,180,226,105,58,45,231,0,134,41,28,43,95,58,58,205,140,133,38,94,214,188,188,20,108,87,49,86,109,238,14,224,167,188,71,230,167,5,149,232,135,26,80,52,173,10,39,196,49,232,4,5,106,81,248,226,201,248,209,227,94,20,147,169,78,51,209,71,65,186,189,238,99,155,107,150,101,111,14,1,122,239,119,218,104,206,108,226,102,110,186,130,98,157,252,7
 ,141,222,31,164,16,164,148,88,136,193,229,214,223,0,72,171,6,250,79,205,189,138,201,39,24,89,56,109,97,186,65,239,163,223,174,122,0,226,156,164,204,73,207,7,240,207,145,110,53,64,132,45,9,137,27,231,139,35,31,62,188,23,233,245,123,186,38,148,194,122,196,42,89,101,244,41,59,76,20,252,121,104,207,41,110,237,127,7,147,37,75,65,55,202,164,99,225,109,53,221,82,157,86,0,97,17,139,102,158,42,130,220,100,212,180,55,98,239,145,137,48,20,159,102,210,0,83,16,71,134,10,7,120,222,77,26,22,70,243,249,15,106,50,182,53,111,236,238,244,232,56,34,37,218,219,0,254,104,7,147,122,89,25,16,129,56,77,183,12,171,40,90,85,21,113,8,161,253,151,249,210,179,116,240,146,127,18,117,55,154,226,8,117,157,239,41,16,200,49,0,145,54,189,61,160,161,139,190,49,182,28,240,38,108,81,6,153,151,180,11,13,127,38,221,105,18,38,73,106,172,211,26,87,30,55,77,226,48,177,125,95,243,130,219,31,65,215,52,212,199,234,151,62,142,11,16,35,66,206,20,15,13,211,18,190,103,251,196,221,100,12,3,149,238,119,165,152,251,233,187,59,1
 62,130,30,17,90,206,145,169,136,86,120,20,204,53,153,170,191,26,21,1,48,159,131,184,117,207,29,182,178,19,174,45,171,39,32,19,70,251,24,251,51,250,81,128,242,96,13,40,252,19,35,47,14,56,7,94,174,110,200,118,73,70,255,194,55,197,84,146,207,167,47,244,99,110,152,88,230,120,159,227,177,96,114,128,199,103,14,175,33,78,75,161,215,81,144,178,211,126,225,178,110,149,36,161,42,143,206,102,86,65,133,156,25,92,71,123,120,12,131,96,24,255,129,5,46,164,181,41,182,49,241,199,48,76,217,126,235,134,217,52,216,41,4,15,10,171,173,44,99,243,129,238,145,21,22,213,82,237,103,74,241,234,109,66,64,191,198,118,189,201,225,248,1,87,248,200,30,93,184,190,55,177,254,182,31,57,112,115,132,178,103,24,242,114,23,90,232,63,8,59,123,92,144,100,207,8,85,1,97,184,110,56,92,205,247,236,170,217,35,177,237,128,233,97,185,210,254,57,169,173,35,221,218,169,80,101,215,9,144,171,92,194,88,205,145,168,195,201,17,100,58,154,122,235,122,72,9,175,248,9,175,181,111,130,156,184,108,101,112,231,218,189,118,133,29,76,12,1
 46,108,19,17,185,235,225,239,158,8,139,148,210,2,122,183,255,27,15,141,90,233,165,197,112,228,78,19,236,221,58,45,5,67,204,91,240,146,68,135,195,92,191,26,110,186,35,158,127,40,254,161,211,23,115,131,219,77,119,193,214,247,96,155,5,189,80,140,15,188,189,214,125,106,215,160,105,110,149,121,236,38,207,222,101,224,53,5,61,61,149,128,90,70,1,117,99,131,131,94,193,166,195,47,232,205,140,165,238,245,71,95,140,130,88,247,102,22,90,244,229,238,191,201,217,150,96,124,107,168,173,203,1,244,106,179,74,69,235,106,78,77,187,35,134,14,93,0,53,155,147,172,22,145,136,61,230,53,30,121,167,223,194,44,121,195,74,73,183,227,246,98,215,178,37,108,186,226,161,57,76,36,190,131,148,116,26,211,43,134,70,53,187,97,117,178,126,145,20,35,29,215,19,90,65,196,13,70,40,239,54,249,134,13,148,144,166,253,157,234,106,8,59,15,96,227,121,192,54,248,157,107,175,15,129,205,121,31,51,182,38,247,233,17,49,105,54,155,49,196,61,69,243,115,130,215,67,19,59,8,219,137,20,66,17,102,57,53,133,129,30,35,54,215,69,236,19,1
 71,12,200,110,210,204,186,17,192,5,6,34,235,137,62,119,221,79,40,218,78,46,225,238,247,235,202,115,84,136,118,176,255,154,171,186,253,173,174,146,18,15,84,87,90,234,37,152,122,66,192,63,239,105,0,239,94,14,66,18,15,67,240,223,130,57,24,135,184,166,216,113,94,248,133,73,210,95,111,252,89,39,96,76,167,250,164,125,30,27,229,248,22,146,199,177,130,20,255,152,195,197,167,2,88,26,157,3,15,163,121,12,87,108,50,210,164,99,112,220,225,136,128,76,146,141,60,101,150,6,217,131,248,160,7,138,165,191,211,104,122,3,1,29,28,175,111,70,183,210,49,71,247,108,3,125,212,64,218,151,39,201,53,107,45,21,222,167,170,224,66,221,223,49,245,108,233,121,139,80,38,200,226,101,214,54,6,125,104,206,153,221,43,106,172,173,57,146,182,217,48,34,208,192,229,41,214,246,184,7,135,13,158,31,117,180,128,122,245,55,243,168,112,70,152,173,248,170,152,173,12,186,169,35,37,198,178,227,15,54,214,22,144,31,107,20,22,77,220,128,83,126,130,93,123,125,112,77,212,235,122,223,218,229,22,45,181,108,250,111,20,54,190,101,17,2
 09,225,175,21,1,76,60,90,226,208,246,143,79,132,22,172,61,12,207,170,5,141,23,184,245,31,106,98,131,202,96,162,118,84,9,92,193,76,13,56,12,73,95,22,197,15,115,104,140,247,116,142,180,38,51,179,103,126,42,146,144,116,20,221,139,217,55,62,117,170,119,31,123,114,251,78,235,175,61,98,68,141,137,101,45,56,152,25,147,53,112,30,103,177,140,172,173,217,204,250,103,87,81,203,70,18,78,235,18,104,187,12,250,18,117,13,212,111,175,220,69,38,201,201,243,187,225,156,152,140,16,24,60,83,168,57,145,123,130,180,205,234,191,99,78,17,140,86,94,229,125,213,155,59,164,33,133,86,100,44,143,193,123,76,132,188,175,142,205,214,23,223,79,68,198,19,193,108,28,183,8,82,86,167,22,89,13,238,28,173,221,53,217,236,159,155,39,82,242,123,19,117,70,127,172,103,93,157,169,114,238,178,209,221,43,46,84,97,185,9,33,127,204,153,205,54,8,135,136,39,181,152,208,41,68,104,182,39,180,60,182,175,164,26,164,113,28,5,43,97,85,208,181,73,135,53,254,208,30,139,166,225,231,249,92,142,186,224,221,37,151,84,39,84,182,96,105,13
 6,195,240,245,147,186,186,75,83,188,253,55,72,229,193,13,174,97,227,168,66,124,21,83,173,238,246,72,198,80,226,114,154,231,140,57,30,4,14,241,225,15,69,230,201,91,206,149,47,177,20,230,62,56,34,202,250,164,180,82,77,128,214,131,94,205,82,206,115,158,114,57,13,241,194,99,164,83,156,223,31,77,183,233,206,192,71,72,237,14,3,149,251,151,74,135,115,26,137,93,136,90,222,250,60,176,168,70,159,121,236,110,35,45,254,123,185,203,153,47,173,1,16,206,41,115,79,17,28,200,99,140,245,220,144,246,245,109,93,50,241,95,48,238,240,6,64,6,124,241,90,243,6,131,226,50,186,156,158,14,199,220,101,215,181,242,234,6,57,118,215,104,203,38,153,180,225,198,116,183,29,49,78,230,186,10,23,124,52,171,221,118,11,65,234,137,148,235,52,25,57,235,80,244,56,35,39,90,191,37,41,132,79,84,81,240,219,218,231,189,178,206,178,216,112,225,27,164,206,25,60,7,83,73,181,73,233,160,89,11,74,176,224,33,159,27,24,45,12,159,220,185,204,156,204,73,105,14,189,171,78,227,77,169,105,246,73,88,237,126,198,111,48,141,158,141,77,22
 5,201,129,20,11,165,120,41,212,231,73,235,44,245,186,66,78,132,243,219,89,213,83,135,165,27,153,34,64,200,117,5,62,58,54,148,7,79,71,222,100,60,13,34,117,27,29,139,131,207,210,51,87,71,145,29,30,234,155,218,47,30,9,239,93,66,162,166,22,109,189,89,239,88,34,137,167,134,115,99,123,182,44,220,160,22,134,210,5,170,30,79,4,215,25,106,58,0,246,51,243,247,211,212,66,169,252,9,167,21,51,199,99,181,22,244,242,252,175,243,51,46,12,90,216,252,34,41,64,41,248,93,146,122,131,93,144,187,78,205,125,17,120,45,171,30,97,46,133,36,202,41,58,76,7,232,139,241,166,241,69,177,28,70,228,49,3,118,31,33,39,198,67,117,96,195,29,137,77,181,36,124,113,94,33,122,21,11,69,96,70,234,246,142,117,81,22,233,28,7,143,37,111,82,234,120,104,130,185,146,87,182,78,38,63,180,169,249,191,4,168,219,125,85,190,25,133,31,37,57,205,204,196,189,131,5,149,231,253,130,61,234,113,36,109,80,113,23,222,79,147,168,181,80,6,26,101,10,106,244,115,179,19,33,52,111,17,62,95,147,137,17,139,79,157,111,39,56,24,129,97,46,98,189,175,
 80,5,62,38,116,173,63,33,53,156,184,216,108,17,160,99,206,168,135,159,162,91,24,193,71,10,109,5,232,127,52,83,185,133,244,111,210,7,92,87,97,164,4,109,26,214,84,186,146,37,204,179,40,131,179,37,230,118,71,71,116,253,110,46,198,150,236,81,100,104,226,175,25,103,139,125,120,132,90,157,139,80,150,120,127,196,86,121,73,228,100,42,170,218,190,145,39,72,154,155,191,53,13,17,251,103,170,32,28,195,155,229,199,44,156,91,37,66,22,10,139,152,161,177,101,243,46,194,137,194,183,210,220,46,110,116,190,205,20,188,50,234,109,61,248,77,242,192,99,234,59,115,164,227,38,126,113,84,154,9,13,17,214,249,241,192,201,172,98,242,37,51,126,158,38,123,211,179,112,152,207,255,206,50,71,105,47,12,145,190,244,83,174,133,34,39,93,242,141,29,99,226,218,183,208,214,205,76,168,251,208,143,130,77,120,202,91,89,165,115,46,112,106,152,222,113,238,242,100,197,222,8,138,135,18,202,220,59,95,60,70,241,208,195,157,213,92,100,110,145,251,2,177,72,182,91,198,4,41,135,34,244,54,189,237,102,91,115,235,36,114,252,137,25
 3,125,51,228,167,75,36,237,12,245,179,92,223,240,113,34,44,31,16,230,67,99,27,10,165,123,15,48,25,54,103,208,109,216,88,15,147,65,41,249,26,92,78,181,17,12,142,160,30,157,97,226,250,226,137,160,187,236,41,241,233,33,185,58,237,4,153,179,17,31,174,194,139,158,107,102,199,143,69,148,246,28,186,7,83,171,231,230,1,140,26,189,234,8,127,188,6,41,191,16,132,198,235,13,10,98,94,105,145,224,123,170,140,161,55,123,92,98,143,227,1,90,134,123,142,234,39,24,208,95,199,28,205,254,217,60,12,137,127,124,49,202,84,170,57,125,186,117,144,224,254,114,46,249,194,239,19,0,171,94,139,127,212,69,28,59,27,197,89,171,111,44,147,120,236,84,116,98,204,30,129,33,96,33,124,197,73,109,217,18,149,43,122,154,153,86,199,80,109,129,166,61,12,108,26,247,56,141,25,51,6,114,87,94,146,68,156,246,85,143,247,187,243,98,74,205,34,173,233,27,155,89,100,133,127,47,200,143,44,21,92,228,125,94,68,87,90,166,9,200,186,185,247,67,70,128,134,2,146,98,236,218,2,202,84,8,81,10,101,141,195,32,121,205,75,108,217,214,119,131,12
 3,190,183,175,238,185,242,135,235,78,150,13,87,241,89,201,185,110,220,239,229,150,109,134,134,35,241,6,141,74,229,21,210,95,68,123,45,219,89,164,55,6,129,40,145,38,57,36,126,206,203,249,154,33,192,162,7,113,19,188,93,179,202,191,115,24,37,178,104,209,33,64,161,131,179,132,144,66,164,191,6,70,195,1,125,21,156,30,11,198,178,115,14,37,10,180,80,208,218,103,24,73,231,146,229,20,16,240,46,138,186,231,149,228,146,120,143,180,185,87,158,53,226,236,5,15,137,130,170,4,202,102,232,156,31,158,158,191,175,183,13,91,229,93,139,118,211,74,81,146,175,129,22,232,43,38,14,91,65,172,88,221,250,142,250,55,254,4,44,54,170,36,191,211,12,1,41,167,128,164,47,156,184,1,206,194,225,132,95,249,216,228,162,47,168,114,41,51,121,112,211,56,46,220,252,0,119,42,166,70,249,6,124,187,39,231,185,131,100,240,204,231,213,133,196,191,39,145,147,4,207,223,150,209,243,95,216,236,250,193,103,106,165,199,229,121,88,7,122,30,49,42,158,97,208,244,246,160,253,202,154,20,210,52,209,90,27,65,92,40,251,102,90,33,176,110,
 48,253,35,187,245,202,168,112,205,139,175,43,70,31,190,43,212,55,41,143,227,135,133,207,156,228,45,204,94,135,88,205,56,254,83,218,249,215,53,127,35,26,134,51,45,123,104,246,249,201,176,124,90,151,150,158,246,41,94,71,7,76,96,89,115,184,23,151,110,137,182,234,8,219,247,189,1,212,124,78,155,207,212,219,236,237,80,46,141,76,191,17,228,237,22,230,15,140,93,33,246,151,55,91,22,96,215,136,77,241,133,78,110,142,151,37,148,19,176,3,44,216,147,158,70,16,216,120,180,156,17,97,81,110,39,12,183,53,215,173,232,105,2,181,70,105,73,101,255,114,143,28,113,50,207,243,157,245,207,122,4,45,133,162,183,11,153,202,248,155,65,86,122,37,200,204,121,225,161,229,116,163,247,209,229,47,134,91,233,158,146,101,196,132,138,22,222,121,245,137,252,189,94,233,86,44,118,153,162,108,141,211,180,113,15,116,62,136,120,114,5,163,41,156,26,55,116,80,5,219,235,21,223,55,17,89,99,151,201,117,146,197,247,15,140,230,66,112,137,15,134,233,238,248,110,185,122,147,67,208,253,199,32,84,245,180,191,49,170,245,79,43,70,1
 10,47,227,40,50,197,64,221,172,76,57,141,22,212,135,79,114,124,14,158,215,180,147,153,174,59,124,76,2,219,105,184,223,195,113,75,19,99,163,38,220,138,96,168,231,85,200,197,145,173,27,51,196,20,99,205,106,140,242,70,97,10,194,148,133,3,152,163,142,243,28,43,191,215,63,108,211,97,205,5,191,18,243,142,237,36,239,40,68,91,196,184,81,199,230,100,225,35,242,81,191,31,80,114,179,236,139,105,25,115,248,12,151,150,155,25,202,57,80,26,161,250,102,36,182,203,32,227,43,31,215,199,134,68,216,0,116,18,163,112,3,122,231,25,22,142,163,212,104,32,103,31,148,6,180,210,198,34,247,21,38,254,155,191,73,145,64,168,249,142,41,38,149,122,24,130,172,15,5,160,248,141,79,89,43,25,65,35,108,215,235,109,129,167,85,180,248,190,205,246,27,151,51,34,210,39,31,91,205,38,90,145,134,89,14,87,47,53,177,88,181,188,78,151,221,56,235,29,91,2,1,111,193,251,42,62,254,126,84,39,67,154,66,119,149,244,77,65,207,181,219,237,43,186,182,224,91,43,207,120,247,83,160,72,161,77,178,230,35,16,116,190,148,54,37,250,19,249,96,
 73,223,165,99,121,120,157,22,84,49,56,71,115,31,166,205,115,99,79,86,149,121,2,107,137,241,210,230,82,110,195,52,142,201,20,235,60,215,181,175,197,98,210,142,143,37,28,129,169,152,200,72,140,241,99,32,184,194,250,245,238,119,229,57,175,222,223,228,139,29,179,130,115,29,28,213,144,208,68,78,150,37,129,158,206,173,133,182,17,207,224,172,182,161,27,217,32,208,116,219,20,186,177,80,92,102,126,97,46,137,191,55,127,123,247,114,170,172,92,149,236,53,158,156,206,127,154,242,19,241,19,217,207,222,243,227,161,151,153,201,13,208,107,118,133,6,202,224,187,48,26,208,19,121,161,101,102,14,158,183,247,28,129,118,164,249,32,213,227,231,1,170,149,47,124,247,204,82,81,37,104,121,67,25,85,238,69,242,15,168,70,160,12,213,187,134,93,172,133,111,66,215,168,78,87,108,141,121,183,28,202,248,214,94,184,199,81,102,190,18,8,44,252,113,12,72,25,201,245,41,4,80,177,160,36,146,77,86,98,131,13,35,105,83,18,215,22,56,202,155,128,160,38,156,155,4,168,228,192,72,71,147,220,42,133,106,241,198,141,5,28,218,238
 ,128,166,145,110,239,99,179,125,179,16,203,35,220,76,18,216,14,232,116,79,169,92,235,242,122,145,249,88,124,24,45,116,183,211,65,66,14,47,34,233,177,79,77,62,242,43,181,70,151,3,3,156,236,199,92,158,213,45,171,149,126,30,0,229,150,32,93,28,180,170,213,231,38,195,118,218,208,166,87,67,24,182,133,33,77,178,33,229,125,146,189,59,151,4,127,168,2,135,56,126,14,11,30,74,41,184,220,137,97,206,245,164,75,231,152,86,227,192,34,117,222,83,111,135,135,133,237,52,218,70,88,227,32,219,169,77,241,101,40,161,244,81,97,195,134,229,108,248,15,183,6,59,9,102,182,139,60,69,66,165,181,17,49,69,223,219,136,15,92,154,88,34,88,13,241,53,219,5,122,127,164,38,251,134,195,39,215,110,59,186,149,160,49,27,127,251,143,233,161,209,137,195,209,213,157,183,164,73,210,62,165,221,150,245,199,236,201,8,237,220,171,15,48,209,179,70,247,85,111,10,155,125,45,136,151,66,145,228,68,197,241,88,182,119,47,96,68,230,156,178,121,127,183,125,197,242,54,149,56,144,45,56,76,214,144,249,205,69,29,196,28,15,249,251,174,241
 ,89,79,116,225,48,19,86,155,48,180,247,125,47,27,156,216,180,3,176,230,140,151,235,79,60,120,170,15,134,158,15,36,136,195,81,220,227,161,104,179,97,251,16,201,192,14,44,125,15,166,179,121,75,254,102,228,135,243,216,172,229,171,73,126,81,140,24,245,168,157,27,105,212,60,54,195,147,108,188,150,6,219,218,63,167,11,196,6,96,196,190,22,46,159,90,95,67,54,3,172,56,229,246,100,49,171,67,69,5,93,76,228,121,4,138,157,24,18,192,180,174,243,16,118,135,115,112,179,205,46,201,167,56,112,42,175,144,254,74,77,22,93,207,213,64,242,247,254,153,3,158,57,167,11,137,30,175,171,247,171,83,33,176,244,217,88,77,125,101,102,41,14,209,99,33,171,70,16,113,73,53,195,131,64,196,116,205,97,158,24,217,124,30,181,90,90,53,149,208,164,75,145,97,148,135,108,4,133,19,155,115,171,162,182,5,80,181,172,204,19,138,164,146,227,30,237,2,56,78,125,253,79,82,85,157,223,194,192,117,166,176,251,33,118,76,182,197,87,181,242,188,99,90,188,133,3,62,97,1,119,122,11,203,222,2,43,143,128,76,125,200,51,178,119,95,160,91,169,
 65,39,133,38,241,28,22,63,128,150,178,23,36,244,220,182,218,144,173,185,129,132,57,102,30,131,31,128,32,12,173,163,102,33,192,114,211,48,242,101,247,84,185,18,198,85,106,232,203,188,103,95,235,5,125,180,124,108,255,184,94,8,11,148,106,49,149,197,88,116,165,13,202,156,139,13,25,198,124,206,34,47,12,70,196,108,105,143,42,105,113,5,4,130,162,94,102,195,172,140,204,189,31,249,70,205,114,74,65,11,81,125,176,73,14,179,203,142,152,102,167,113,128,143,180,46,0,28,199,231,108,30,109,101,155,126,155,112,197,59,240,210,64,158,20,233,60,122,148,220,227,220,5,18,111,142,35,1,88,115,35,226,214,175,17,35,205,182,135,44,208,232,3,199,193,191,143,72,234,85,143,130,209,246,139,50,57,232,81,239,87,61,72,53,90,75,183,73,237,246,177,155,133,78,212,152,66,230,87,222,101,67,156,39,121,170,120,11,102,113,144,20,95,138,224,184,196,144,56,228,149,105,132,208,114,67,98,215,217,148,90,176,206,181,89,23,150,71,221,174,219,11,120,161,72,53,241,32,252,100,39,180,92,49,110,202,251,29,141,17,158,10,249,233,
 85,32,171,139,142,140,225,192,92,185,237,72,17,203,25,117,139,93,64,36,160,27,119,111,119,140,132,20,90,24,18,193,160,0,41,105,191,15,150,140,93,100,207,67,121,12,197,33,172,27,198,240,227,185,113,19,183,54,240,180,101,146,254,251,143,24,82,73,244,73,85,3,146,196,57,52,51,219,194,244,174,96,249,38,3,157,186,241,255,44,210,146,205,239,17,102,109,148,232,19,192,245,220,210,36,232,22,48,169,255,10,48,191,106,98,236,164,108,158,12,18,193,55,106,198,17,183,224,140,184,189,244,232,127,207,222,242,9,194,33,249,73,82,71,45,9,222,209,201,95,138,197,234,209,159,36,217,241,171,205,144,16,66,74,62,178,136,205,12,35,207,184,250,180,216,78,52,3,189,5,28,108,217,31,133,217,177,177,253,111,242,175,85,249,91,184,82,140,18,40,67,220,45,166,86,176,38,237,181,172,182,30,126,150,63,172,75,146,12,255,226,183,155,7,77,24,86,95,17,67,4,83,50,40,25,107,201,183,136,9,225,47,100,61,254,44,233,118,246,79,75,245,119,174,191,92,31,106,8,187,127,83,92,8,241,154,103,229,133,13,57,226,155,135,78,45,202,50,8
 0,6,36,155,19,183,147,186,148,98,11,224,221,59,113,236,177,100,129,183,164,138,239,160,40,228,149,247,199,105,97,171,33,159,198,78,129,164,35,165,143,65,200,140,151,127,105,165,252,193,105,44,163,155,106,248,7,244,198,138,92,57,212,197,100,168,241,56,158,38,141,126,80,36,50,232,200,53,16,218,46,166,167,158,200,145,42,54,237,214,151,215,68,40,98,132,146,232,29,116,103,162,246,41,74,115,111,216,0,183,36,51,107,128,102,234,247,57,99,81,91,168,102,180,66,230,38,112,251,28,242,46,80,10,176,50,235,234,123,194,97,74,37,83,252,66,0,202,126,20,79,239,117,183,139,145,141,240,31,58,190,168,244,227,217,247,200,219,186,99,159,29,39,228,31,116,190,26,180,183,242,6,179,228,16,195,129,149,195,211,229,111,248,26,117,7,198,171,39,82,3,117,184,113,166,116,229,159,65,36,55,81,152,28,17,164,79,235,177,7,56,7,164,104,89,125,10,235,161,83,52,58,189,86,165,25,186,134,223,33,241,146,248,119,204,14,48,141,176,155,52,130,147,46,181,22,218,16,123,4,116,49,169,230,188,208,129,69,33,77,126,214,19,252,62,
 65,231,200,64,200,196,89,140,59,246,110,0,1,232,186,135,145,222,31,225,140,206,22,67,44,129,61,220,63,149,184,6,16,72,116,76,80,75,117,14,163,103,192,159,170,65,41,183,126,24,145,123,83,214,63,64,238,86,119,189,125,48,0,235,187,240,220,226,148,141,163,52,83,182,128,202,131,219,244,5,139,214,246,185,83,157,159,89,116,201,121,9,60,182,47,172,106,143,7,186,64,21,69,209,80,169,63,83,14,250,129,147,78,253,64,128,66,213,139,244,63,117,80,174,246,195,205,125,229,183,155,107,159,127,181,55,4,159,51,28,125,34,199,110,247,36,33,194,14,73,221,23,132,235,6,87,91,208,19,192,12,246,218,131,67,19,134,72,146,19,251,90,87,181,180,216,43,96,222,65,214,213,157,202,140,144,127,93,19,130,12,145,181,17,218,55,27,193,106,48,188,8,28,244,176,24,110,121,142,182,152,210,97,198,127,77,170,152,237,159,23,108,243,40,179,89,108,183,149,215,49,137,149,47,3,61,71,2,55,178,210,125,174,31,114,162,88,25,46,61,72,213,31,91,131,79,101,220,87,86,222,96,70,193,99,162,242,236,158,43,160,224,152,248,222,243,124,40,
 5,197,196,31,244,135,168,28,210,37,126,160,199,48,135,102,104,150,245,2,73,191,157,86,131,115,241,13,193,63,14,0,219,141,150,76,57,68,147,243,134,156,201,110,18,41,46,104,17,182,156,160,216,68,224,0,103,55,187,149,209,190,14,169,234,35,12,52,3,164,227,162,94,26,23,133,173,12,158,189,56,227,134,200,43,133,123,0,39,105,134,222,144,63,173,7,192,123,154,195,55,45,202,201,131,76,106,80,100,125,178,118,213,231,179,29,32,81,126,48,103,105,182,128,155,187,111,119,207,175,148,219,69,132,203,131,112,31,216,80,138,206,172,231,55,17,181,6,127,64,7,245,185,204,145,29,248,58,98,129,7,231,67,255,9,164,223,148,98,202,78,0,113,27,18,1,105,123,255,87,178,87,30,124,55,61,22,108,100,228,124,74,198,154,229,151,231,19,169,40,108,157,239,205,21,219,100,242,146,190,27,251,142,17,33,99,19,203,247,110,147,77,36,93,87,230,125,137,200,201,219,83,190,163,30,153,89,90,2,53,240,81,253,153,47,15,88,3,74,46,226,6,0,183,108,182,29,141,232,161,183,191,65,35,193,250,57,148,95,203,243,118,60,116,249,153,67,77,1
 57,242,57,127,94,206,210,137,141,111,65,142,159,35,169,224,187,60,85,144,209,198,16,61,161,185,92,248,242,31,243,129,63,255,202,6,127,68,150,62,114,64,242,227,248,88,103,10,247,98,142,186,90,171,161,24,194,46,50,242,239,145,142,74,77,43,103,33,75,171,5,120,10,95,39,226,57,159,152,149,33,241,213,42,71,70,203,99,48,203,228,250,203,238,36,231,102,76,78,174,194,37,230,101,125,5,170,228,225,230,32,55,231,121,179,64,135,229,91,30,38,117,203,119,214,126,250,56,121,171,203,204,70,77,177,80,219,114,147,17,177,83,71,77,157,9,199,57,100,149,171,96,142,249,59,126,114,33,103,80,107,173,144,52,7,129,98,173,158,233,5,105,7,111,241,30,57,222,206,10,36,237,220,55,61,193,139,245,84,219,214,111,165,66,142,189,85,99,185,244,236,164,33,170,180,183,195,35,222,198,93,52,119,51,249,191,243,144,60,88,10,128,61,41,166,94,0,92,11,148,25,164,230,155,21,6,61,9,83,253,55,37,152,153,83,3,227,79,100,3,244,237,172,68,189,12,97,90,213,59,61,15,172,121,186,53,255,172,95,196,253,128,27,205,240,89,84,75,132,0,4
 5,234,250,32,54,65,217,107,168,62,175,63,122,142,34,144,113,252,131,53,90,95,154,222,230,234,62,128,73,253,20,148,79,30,212,165,112,109,15,19,156,234,36,92,115,226,129,39,83,183,123,104,233,84,132,123,245,89,75,14,46,240,173,172,96,65,72,170,238,32,242,109,184,218,125,223,115,106,134,204,9,115,116,208,190,123,247,28,16,242,233,19,143,136,124,145,21,71,102,6,215,97,111,100,230,33,62,115,115,0,225,159,86,179,197,63,6,204,60,142,204,169,18,245,233,224,32,145,187,254,255,63,1,23,49,227,236,180,222,227,44,23,84,223,29,165,140,149,151,144,52,134,145,155,102,191,30,160,184,245,53,213,80,160,87,216,120,35,15,179,17,82,146,116,59,198,70,81,89,153,106,60,158,94,44,195,80,7,202,38,161,159,69,61,144,230,185,17,215,12,71,230,201,142,69,247,187,20,20,248,185,85,126,236,69,21,67,222,174,178,222,158,95,54,11,33,190,255,22,77,91,127,219,224,174,131,239,43,81,146,235,100,53,134,210,134,246,11,54,51,125,235,0,7,214,142,54,139,188,214,206,61,89,2,201,253,67,185,208,99,60,199,231,181,119,73,81,2
 12,177,64,151,91,122,136,36,145,129,46,190,127,62,106,9,137,152,37,28,4,205,206,57,144,117,150,51,146,60,183,6,108,6,37,187,3,23,178,160,251,164,101,44,0,169,215,61,204,8,200,100,154,188,7,13,207,160,170,192,251,12,191,102,238,160,23,134,252,110,83,114,222,89,209,147,236,166,121,204,2,79,194,64,32,227,213,107,98,150,73,228,129,253,80,169,126,231,16,190,119,27,204,89,139,217,187,220,197,79,105,32,206,167,11,138,34,178,80,112,121,35,182,5,96,228,243,197,36,55,152,14,250,118,148,140,123,88,32,243,60,2,76,211,116,174,207,215,57,1,23,126,136,217,199,6,5,30,191,123,95,70,53,156,20,125,222,104,29,212,69,48,7,160,175,22,199,72,186,54,186,25,54,63,212,15,187,75,199,87,177,57,7,132,212,74,54,65,48,59,163,211,109,71,150,24,127,22,187,179,241,244,59,31,183,127,203,32,29,128,199,12,186,228,64,65,146,142,70,15,95,38,111,20,115,128,246,99,240,62,205,133,167,191,165,195,19,235,199,41,47,221,108,197,239,172,186,197,71,178,111,183,225,78,249,192,148,150,14,208,50,222,147,2,57,102,106,230,20,1
 74,7,159,107,91,78,166,44,147,14,238,177,106,245,121,70,240,39,179,218,145,153,196,244,200,245,103,252,126,92,99,73,77,36,196,22,45,185,233,74,11,185,202,147,194,60,55,69,158,183,164,193,184,219,84,70,194,33,10,195,79,234,124,178,164,219,28,189,192,92,50,111,17,239,246,218,11,132,31,59,123,185,197,147,20,89,192,241,189,149,46,125,6,8,128,103,47,13,242,209,244,74,221,166,247,180,32,121,230,126,205,161,155,165,24,58,5,176,118,69,210,47,225,162,199,147,152,21,131,75,197,44,161,21,130,18,146,63,59,31,248,164,199,80,255,115,243,239,232,133,159,47,89,132,213,158,87,210,26,95,91,158,227,140,161,38,9,73,15,70,99,210,86,141,218,68,109,187,54,4,64,93,213,235,21,159,211,195,228,157,77,159,34,90,249,213,254,238,52,179,243,226,59,223,18,185,60,175,123,105,150,47,83,211,38,203,143,31,252,57,36,139,73,82,17,97,78,203,135,254,19,41,164,200,236,182,162,51,45,108,213,186,233,223,112,214,122,185,41,254,128,174,96,251,138,83,145,57,226,1,46,255,43,11,196,132,188,251,1,73,166,193,77,193,136,128,
 61,245,210,51,105,14,59,245,224,235,242,33,205,175,218,239,160,109,174,137,82,218,227,179,200,121,153,116,51,44,101,185,80,168,144,0,16,21,223,206,106,231,47,201,177,39,254,23,117,235,35,113,33,127,80,119,8,109,92,129,119,4,198,65,81,10,162,79,247,146,75,39,158,167,169,66,200,248,197,94,61,196,249,243,221,113,8,1,0,94,115,97,196,201,229,225,152,120,2,224,35,18,0,112,173,194,199,215,96,138,198,38,30,133,250,26,112,108,246,167,45,118,92,22,135,87,244,50,169,92,17,41,41,155,50,17,86,165,128,70,71,214,6,91,27,158,201,188,65,166,176,74,127,91,80,53,59,81,167,79,168,125,75,230,128,34,84,39,236,203,209,140,204,171,74,62,45,223,58,40,43,127,245,160,47,153,92,231,242,17,183,103,51,174,127,155,176,127,62,125,76,247,82,198,70,215,166,1,193,255,175,143,106,33,144,1,73,90,176,65,12,43,142,166,63,87,68,241,81,193,3,130,165,109,204,113,130,218,54,202,244,246,145,252,82,118,253,128,75,122,7,246,243,12,109,79,2,88,51,148,32,107,66,48,199,130,46,137,148,42,108,58,174,78,250,44,54,178,9,218,45
 ,40,210,217,75,193,72,176,76,207,170,127,182,101,108,198,20,76,142,101,177,111,185,70,82,221,1,11,94,227,28,211,38,248,109,125,72,66,64,226,163,225,110,162,53,151,83,198,183,225,99,153,55,3,88,196,136,150,212,111,39,191,19,209,118,102,36,23,222,176,233,208,209,80,88,131,247,192,72,184,31,155,211,165,236,251,255,204,152,37,184,148,59,87,226,181,20,16,10,80,193,13,62,243,45,103,252,145,80,61,116,9,199,226,250,127,33,203,227,152,3,128,251,239,52,91,181,114,16,0,186,86,85,210,1,66,213,35,196,4,225,248,192,36,96,200,168,80,37,69,74,165,62,242,170,30,13,115,51,23,77,84,190,19,74,56,137,34,137,129,226,72,17,242,163,65,108,155,45,209,137,70,9,131,157,186,124,64,102,198,19,135,18,90,252,13,62,133,198,86,176,99,147,152,87,236,234,244,203,231,239,82,32,13,90,39,236,209,186,143,220,129,59,66,87,194,176,50,72,87,62,167,211,7,124,151,245,168,19,199,80,247,202,179,176,178,23,0,62,150,104,57,133,139,48,129,248,0,29,13,162,159,0,63,165,129,43,149,64,151,186,16,224,207,8,88,166,138,226,129,20
 5,47,144,210,114,69,181,54,16,94,192,78,4,81,58,227,118,36,73,174,19,89,41,249,51,91,119,81,197,154,252,203,70,197,37,27,102,35,219,85,223,76,69,69,157,240,114,46,162,113,137,225,206,102,139,131,168,32,94,242,158,176,61,220,115,25,125,234,158,8,31,199,60,204,173,228,106,78,241,81,215,82,185,159,127,78,163,225,101,238,185,217,224,122,71,180,237,204,120,156,44,4,216,101,251,48,10,11,24,64,25,222,227,165,251,161,10,20,63,224,173,50,30,179,51,93,162,55,133,141,251,87,38,40,103,211,43,94,239,176,107,140,133,155,142,253,167,60,140,160,177,61,3,206,250,212,3,52,10,222,44,114,176,194,16,114,171,62,121,68,152,30,241,9,76,166,226,161,123,26,129,31,130,216,75,168,177,125,209,14,204,119,80,2,50,115,53,195,33,204,252,182,79,128,163,228,0,137,149,14,152,242,168,7,155,85,194,193,149,206,153,88,245,175,225,186,1,44,139,30,250,66,245,55,72,21,69,83,142,174,176,30,139,197,206,43,203,135,110,106,47,54,61,7,228,204,192,168,173,220,249,179,214,207,77,81,214,143,74,49,109,174,46,238,96,234,249,12
 1,28,21,106,147,196,239,117,224,57,188,122,150,126,242,139,1,59,202,9,94,143,205,192,38,208,181,150,223,12,170,254,138,30,186,186,131,198,94,50,22,226,116,224,214,73,121,191,193,213,55,132,8,40,177,255,246,106,195,250,169,37,69,251,19,151,242,167,130,4,224,152,67,56,94,175,7,204,47,49,176,14,62,154,151,125,223,169,79,207,61,65,220,193,136,222,152,89,163,94,77,145,249,187,96,236,169,19,40,253,58,116,188,75,95,254,221,87,235,94,199,224,236,173,183,70,79,100,111,49,43,84,230,175,100,241,227,136,226,133,141,200,144,150,155,243,149,203,38,144,245,84,155,191,165,38,213,166,50,201,174,106,83,15,204,92,241,45,152,110,147,146,158,252,88,228,155,234,236,203,214,43,71,121,233,119,121,166,226,145,151,43,249,16,44,189,111,222,48,190,205,22,90,248,179,110,148,194,22,63,61,176,82,135,11,36,34,221,99,87,111,128,212,208,179,170,184,188,171,99,91,144,35,109,255,217,215,108,77,81,164,88,219,57,165,157,216,139,236,100,175,120,168,136,207,53,231,146,183,27,251,212,78,176,101,115,28,254,121,5,54,
 78,211,139,53,83,95,135,206,212,192,164,90,17,58,45,164,152,93,59,173,130,86,74,164,50,130,57,165,187,85,145,153,117,41,222,24,238,125,195,195,84,41,61,195,48,97,238,7,240,151,225,3,27,178,182,82,253,49,92,138,218,246,242,217,219,242,31,115,242,164,80,191,64,157,132,179,53,169,250,191,18,185,112,202,208,192,82,95,100,85,139,208,101,204,125,159,174,173,164,56,24,139,228,140,253,113,195,94,151,189,226,29,184,17,206,28,196,189,108,5,90,124,40,69,30,26,123,47,113,63,68,12,234,173,97,142,180,255,90,162,139,174,108,12,98,71,197,169,3,205,176,60,182,183,147,161,135,201,179,185,69,183,74,144,229,161,102,167,17,160,229,241,54,165,21,204,195,107,110,64,220,49,123,11,178,181,15,207,220,102,253,223,233,12,185,115,55,223,48,1,94,204,254,151,194,139,31,86,213,22,179,230,237,78,175,17,30,240,196,158,239,142,178,230,221,99,224,220,33,193,140,130,137,233,141,45,176,45,225,6,24,50,185,60,63,29,176,180,58,55,236,88,43,219,13,2,178,37,216,141,39,32,81,133,113,21,43,126,184,151,139,19,215,209,22
 6,38,104,207,115,146,86,51,39,243,91,176,45,83,44,188,200,15,173,188,179,152,232,239,115,249,97,37,98,101,81,53,190,130,72,0,216,8,109,205,124,177,211,226,18,187,124,26,174,12,220,29,142,60,254,88,139,70,37,170,70,167,24,26,115,21,11,81,229,204,252,80,77,152,153,45,11,150,118,79,184,130,251,7,180,183,21,245,28,67,197,201,62,154,64,237,23,227,1,40,210,21,44,232,43,123,124,81,48,210,148,255,97,123,130,168,153,38,255,8,57,194,250,1,201,236,100,70,53,35,155,9,255,190,69,221,34,60,131,162,194,230,99,31,1,194,67,118,117,137,214,97,232,207,132,250,229,4,244,45,72,14,130,198,71,8,215,23,11,69,167,139,0,246,100,27,188,46,253,86,88,239,163,62,146,71,36,60,24,75,105,86,36,208,38,75,158,14,220,63,113,104,85,225,88,78,31,102,55,104,13,143,124,139,197,216,21,48,110,42,81,148,238,53,225,180,161,193,135,7,67,126,22,178,161,137,57,80,107,13,83,144,153,206,3,167,163,198,204,231,215,230,9,229,156,105,27,191,189,44,118,209,186,55,192,240,25,121,187,135,124,45,163,38,192,227,250,247,235,16,180,7
 ,164,169,7,85,190,166,155,191,225,219,163,215,167,71,190,127,133,165,231,222,145,138,35,217,69,63,7,68,127,36,229,105,51,129,231,165,154,106,195,26,74,235,146,244,208,30,188,96,74,198,54,178,15,35,222,30,143,136,86,55,202,66,222,233,64,243,30,71,15,66,40,144,34,53,94,87,198,191,84,132,207,18,113,28,189,27,213,21,238,109,116,176,62,45,213,126,47,158,125,187,141,169,210,15,106,63,0,221,202,104,104,28,23,62,33,214,2,172,38,81,53,231,235,196,97,217,2,254,71,162,125,106,252,149,46,72,152,218,117,35,64,79,129,174,160,168,51,9,103,158,74,188,49,234,1,86,90,51,243,23,34,137,59,86,127,251,175,102,77,191,119,193,233,127,136,241,251,151,236,39,89,203,21,162,69,53,233,244,198,134,122,36,192,91,188,131,117,122,235,247,217,31,158,84,129,206,157,100,164,251,159,105,148,194,207,99,163,180,246,169,233,116,176,80,130,0,182,250,61,83,182,142,255,66,166,100,120,120,85,49,149,26,38,253,146,1,35,141,34,121,74,122,164,231,189,207,52,224,8,231,120,66,199,145,197,42,123,195,17,120,84,43,43,169,233,1
 22,73,219,186,200,142,244,18,199,146,203,179,105,132,216,128,197,5,140,65,151,126,194,11,151,45,25,35,77,104,40,251,167,142,188,77,129,7,49,240,54,14,57,130,184,163,81,181,82,3,205,244,68,110,142,148,59,174,164,182,251,43,5,131,186,51,139,138,195,125,108,30,148,117,105,144,235,67,40,40,139,101,42,135,25,233,4,129,71,11,163,152,3,215,3,249,165,39,100,200,113,14,100,197,50,150,230,12,225,193,69,58,82,37,214,250,191,160,5,136,91,228,111,13,227,41,99,26,212,187,11,229,38,129,210,101,221,11,151,30,236,191,78,82,12,163,21,174,106,70,45,221,12,41,238,30,69,36,87,181,206,233,252,224,245,112,146,254,137,83,218,167,105,135,79,177,83,4,221,28,225,161,134,101,23,55,79,49,11,108,184,112,165,60,220,245,57,106,138,54,157,120,238,79,193,84,79,153,186,230,145,251,125,228,141,44,214,77,209,227,207,145,194,189,17,151,209,202,37,142,102,103,111,104,75,12,228,123,243,81,103,133,23,131,89,33,152,200,153,224,255,178,166,68,107,6,194,219,125,170,29,14,147,123,152,41,131,74,108,239,118,76,23,197,150
 ,245,53,150,206,130,39,2,112,242,149,121,153,7,123,29,86,31,86,143,13,42,186,139,35,32,88,56,167,30,59,203,150,123,172,201,31,196,245,169,118,235,234,221,223,218,96,245,63,210,112,211,85,214,193,70,14,195,2,109,38,83,250,98,121,2,244,185,183,74,64,251,10,136,51,134,218,226,12,112,149,43,173,198,206,165,159,214,67,25,237,130,158,252,192,238,160,252,236,235,121,185,239,15,6,101,133,91,67,56,82,205,41,133,123,35,166,231,4,63,97,175,182,30,230,128,149,71,127,121,53,177,195,177,220,61,234,1,24,85,83,99,19,106,219,232,66,3,246,83,249,122,109,203,211,200,121,211,9,177,121,57,174,248,44,228,168,209,16,197,174,42,136,102,171,111,96,164,45,38,33,225,122,10,109,10,54,193,52,83,250,70,243,29,84,194,247,188,119,168,167,53,236,164,130,126,49,178,60,129,227,136,20,249,250,114,231,106,1,16,28,242,224,57,67,156,231,11,237,240,83,241,134,251,26,217,254,196,154,50,225,9,59,108,179,172,36,251,191,181,141,109,146,132,101,65,241,30,122,30,157,132,54,149,247,156,243,119,80,51,96,92,212,19,105,250,
 209,224,160,187,20,69,201,206,45,178,31,19,160,57,179,182,48,221,195,44,47,239,45,252,168,54,46,47,168,179,74,255,244,162,103,222,70,166,229,252,33,114,120,219,23,5,141,234,52,162,228,149,218,181,34,158,108,223,153,214,212,244,211,238,21,194,57,184,55,64,25,164,7,246,60,78,19,6,59,109,36,244,121,237,213,13,126,149,88,105,224,102,94,218,235,137,233,20,65,12,24,157,215,89,168,251,188,182,68,251,137,115,160,62,59,127,186,75,12,130,86,200,111,34,234,32,29,48,238,226,122,40,151,15,155,46,143,236,222,171,91,204,124,91,165,117,109,63,172,239,128,133,189,156,28,44,225,49,150,192,192,177,185,158,190,232,0,252,151,40,209,197,110,240,107,148,211,247,189,64,200,216,192,253,47,221,209,139,20,104,93,135,223,209,30,91,130,164,241,227,252,26,43,103,23,39,66,161,75,104,241,250,42,14,152,173,82,54,81,216,14,35,71,155,6,158,143,127,103,70,64,155,101,120,167,50,63,158,150,58,146,19,5,149,239,250,250,116,192,172,168,140,0,71,62,27,163,211,113,233,156,178,41,246,73,147,56,64,73,62,79,52,3,6,199,1
 40,153,166,76,63,203,87,234,35,241,233,90,66,186,210,6,231,184,62,234,96,222,135,233,94,0,117,95,123,75,99,244,236,134,73,144,44,143,184,255,27,3,29,100,92,177,244,77,173,131,251,25,24,157,38,236,233,94,163,78,193,0,220,8,30,230,39,239,193,65,247,99,99,95,73,176,188,197,69,80,94,215,10,160,55,104,138,23,11,172,97,170,124,99,136,35,25,153,202,187,137,219,110,214,2,149,134,0,199,25,41,81,66,102,88,126,161,214,97,92,101,8,137,119,214,32,54,52,137,50,76,222,152,140,241,100,171,109,254,9,39,229,211,199,32,48,52,157,170,120,57,212,91,120,141,14,225,109,153,177,55,178,171,248,232,79,22,5,146,105,58,187,17,97,97,185,3,82,163,124,58,157,92,204,69,130,67,12,174,94,246,164,185,167,245,130,220,5,83,38,157,86,186,254,37,241,38,129,69,156,237,251,145,176,24,54,210,246,202,164,76,254,122,242,40,243,161,108,114,114,26,140,50,100,182,238,47,33,184,10,73,192,124,150,115,32,189,101,109,147,208,249,124,240,15,88,210,246,206,167,204,241,134,161,113,145,118,199,116,110,205,232,177,180,85,68,170,6
 7,116,122,13,229,129,108,165,172,9,95,100,203,162,232,14,151,168,93,142,77,125,29,85,55,92,14,0,82,147,172,114,12,153,252,30,12,222,67,3,74,247,51,22,251,49,74,82,243,79,168,240,202,249,128,109,87,105,137,10,254,172,172,122,178,56,72,23,117,195,108,111,25,240,198,80,112,228,145,38,204,212,123,104,53,253,88,117,140,239,96,255,72,33,190,43,26,78,248,142,194,19,72,98,198,220,230,65,35,65,219,24,172,3,195,28,71,157,236,9,188,89,134,138,173,175,146,227,118,104,177,197,246,175,188,19,229,246,172,86,157,7,199,196,11,160,39,22,239,55,11,228,159,152,212,87,221,27,19,6,220,152,30,158,243,248,221,74,174,109,137,116,13,56,63,5,58,114,95,143,200,204,116,115,86,37,234,15,52,18,40,38,121,186,24,98,41,63,52,211,5,11,94,47,216,226,90,14,21,194,150,102,204,14,95,28,251,108,254,54,86,56,75,114,239,163,20,132,69,168,99,110,58,106,74,148,99,101,14,188,192,56,251,137,37,212,165,153,59,120,160,88,35,186,177,220,8,145,21,222,65,3,239,85,77,5,128,189,90,121,142,136,108,145,47,224,30,167,144,96,173,5
 5,235,243,104,129,39,122,59,118,232,68,5,90,237,124,29,224,46,172,96,245,172,185,225,254,16,98,29,215,255,111,9,77,224,128,203,223,78,98,223,202,251,139,85,46,175,6,31,30,186,164,70,240,41,49,55,134,65,122,5,54,15,213,210,59,36,176,218,92,95,92,200,177,202,137,248,30,10,111,100,148,191,244,124,213,141,21,92,73,89,247,233,14,178,5,69,66,104,98,209,252,155,82,219,188,84,86,93,97,126,196,45,28,220,65,77,148,225,10,41,234,13,84,56,175,129,149,245,200,69,255,193,134,232,198,199,82,16,158,55,110,168,216,210,187,249,4,161,117,253,47,0,102,187,245,219,62,132,19,172,129,70,242,152,178,232,49,72,49,147,67,75,163,39,74,130,229,92,115,184,236,211,107,27,114,233,148,58,194,90,142,87,97,10,94,186,75,219,70,230,194,88,206,231,121,250,65,70,115,155,7,150,26,244,253,123,105,50,246,160,101,179,255,191,220,250,109,240,80,45,150,11,15,189,242,255,129,124,228,137,15,223,183,77,167,85,115,253,126,252,247,49,45,39,215,34,106,164,194,134,24,105,3,26,3,238,106,222,35,134,162,181,6,115,224,67,162,33,
 46,152,215,83,190,109,176,200,74,17,236,123,0,239,144,80,20,89,223,139,162,238,33,161,145,109,180,203,115,239,190,11,181,20,193,118,8,105,150,191,115,226,121,133,68,37,99,144,237,99,47,150,0,51,145,200,117,189,177,244,151,186,135,200,105,250,64,234,104,45,59,92,69,30,150,10,224,100,184,202,159,12,0,16,80,234,148,232,49,166,40,50,112,107,140,74,218,179,149,59,210,104,227,235,128,86,36,221,45,73,197,126,71,199,175,28,122,166,138,234,236,207,9,129,101,155,68,104,121,88,240,71,248,29,38,59,68,131,197,229,218,147,248,210,20,240,37,53,207,42,182,202,240,219,179,93,44,59,18,12,19,135,151,170,218,86,179,154,90,24,98,201,237,47,142,164,150,137,95,170,107,171,218,104,1,211,185,141,60,85,122,211,132,53,59,145,178,177,8,133,21,137,99,45,16,193,188,75,170,250,185,22,123,127,90,50,174,108,108,251,13,237,211,128,226,225,203,211,79,114,216,105,73,152,227,198,158,118,179,47,116,204,197,245,3,176,164,129,113,81,249,202,93,189,26,244,199,210,46,167,190,17,137,77,92,73,133,188,168,35,151,39,199
 ,115,83,103,58,185,97,15,30,236,28,167,56,46,234,173,243,176,214,9,55,56,76,41,243,159,215,51,62,14,220,39,28,29,228,152,132,158,116,96,190,113,63,101,106,214,43,132,14,186,246,174,2,149,118,248,255,215,119,170,228,136,249,198,99,117,180,102,110,163,242,211,222,51,102,180,202,143,123,219,131,238,162,107,33,201,193,142,56,154,94,191,197,154,162,165,74,113,191,34,202,200,107,237,214,58,15,185,243,6,47,128,205,201,106,212,166,64,204,79,202,104,77,21,91,57,17,222,210,42,29,163,52,193,236,24,94,89,103,244,246,126,247,37,155,3,199,116,198,195,25,228,234,235,188,120,18,19,64,51,148,52,14,250,27,168,90,68,11,129,193,184,206,147,84,164,94,74,212,140,216,250,70,156,6,187,28,3,113,137,139,61,181,38,23,71,70,36,91,77,62,129,118,242,168,15,44,182,191,78,160,105,148,198,180,249,21,2,100,146,183,55,21,26,51,124,64,158,121,39,47,186,79,90,182,72,161,96,11,229,9,174,9,254,81,22,10,16,223,208,40,131,183,90,29,129,245,11,234,163,166,119,78,111,66,136,174,194,110,223,87,251,78,192,45,75,54,120,
 73,148,136,115,246,190,51,138,198,138,75,210,0,139,57,118,1,100,3,203,210,141,46,79,101,180,127,241,17,60,254,62,159,129,137,37,140,179,134,133,22,183,39,228,67,31,106,94,216,210,195,181,144,243,46,183,85,100,181,0,185,89,165,162,187,138,64,149,38,45,161,109,173,248,238,88,232,88,130,78,224,198,31,117,233,254,35,158,164,233,70,33,179,37,187,49,102,54,251,198,13,153,81,110,79,100,157,222,217,120,43,220,46,14,9,235,34,165,18,215,134,67,90,91,85,55,26,143,165,32,43,168,109,240,26,188,136,182,26,250,71,85,178,0,37,42,11,190,196,134,236,126,42,86,239,39,126,87,182,107,111,69,108,187,121,67,16,76,235,5,117,210,74,29,65,2,156,51,229,47,88,135,224,17,49,77,84,103,161,23,228,241,24,192,147,131,173,35,141,119,24,8,169,233,149,216,253,6,193,85,164,34,165,50,48,59,215,247,102,174,50,176,167,122,36,153,14,117,36,32,226,252,127,94,216,6,77,19,147,235,97,222,3,204,251,32,223,103,147,94,199,182,93,122,20,222,130,189,75,202,74,172,155,172,47,104,94,158,237,237,163,36,30,204,93,191,192,254,23
 2,251,99,129,237,183,67,134,84,40,42,160,87,225,106,218,201,205,75,174,96,129,134,167,197,126,164,63,225,254,145,88,10,154,180,132,161,29,31,82,198,179,102,248,17,209,90,11,161,230,84,27,126,141,164,136,16,88,24,76,6,74,139,242,137,12,176,241,157,85,227,175,58,164,90,127,168,110,122,95,6,96,36,178,30,216,111,73,83,134,51,179,175,119,146,154,131,250,108,216,9,202,159,181,127,46,27,67,142,126,2,156,210,79,6,252,166,159,136,220,57,27,65,128,212,235,44,234,101,48,221,242,173,27,239,121,26,107,251,5,98,114,131,143,66,54,254,22,53,122,252,162,109,218,126,168,101,105,13,40,40,240,27,110,188,160,10,231,9,189,55,251,157,188,176,242,28,142,142,95,225,191,142,88,28,246,232,173,184,155,52,113,41,44,43,11,39,31,36,22,84,163,247,51,192,151,19,52,46,254,213,150,166,213,68,229,199,125,232,71,160,223,17,102,5,117,75,149,178,135,157,50,107,248,67,197,93,70,169,127,188,79,246,230,158,250,196,28,111,151,112,44,144,54,164,142,172,51,81,167,226,117,135,242,55,14,121,144,136,140,47,186,35,38,164,3
 0,89,76,42,21,208,200,115,252,43,107,245,24,68,111,115,230,55,238,49,86,225,70,121,207,25,213,92,65,242,164,139,240,225,26,198,221,104,2,58,197,112,213,253,113,130,150,233,98,134,178,138,128,116,115,35,174,68,0,3,144,26,159,85,175,31,48,83,91,238,186,102,180,246,12,245,66,155,3,250,79,168,216,106,183,154,148,168,42,228,212,128,172,126,3,235,11,150,104,128,168,157,171,115,27,24,171,221,55,73,244,53,51,43,224,108,254,239,174,198,229,102,199,20,231,72,12,190,143,161,101,168,74,125,6,239,245,186,189,151,156,146,75,15,5,79,111,195,136,50,16,200,237,96,146,32,87,208,71,110,33,223,139,254,218,62,104,23,167,72,158,53,75,133,73,252,207,78,43,54,62,58,222,139,49,102,30,207,199,88,75,243,215,106,210,21,206,97,10,21,201,220,238,106,27,199,165,157,32,36,227,1,144,169,142,205,236,70,66,166,185,84,65,86,136,1,104,199,200,20,224,195,238,185,61,1,8,194,239,196,219,76,92,21,138,80,212,96,238,167,252,163,181,22,58,213,162,107,218,133,112,231,80,166,9,142,72,79,212,15,89,74,98,154,148,235,122,1
 12,69,238,30,58,106,213,17,32,138,33,155,43,246,78,152,129,146,17,153,19,107,147,224,144,131,92,215,102,117,254,190,251,63,32,35,101,179,19,252,248,57,74,108,124,97,184,23,212,66,70,112,220,147,58,253,109,85,52,26,86,104,231,202,26,118,61,75,23,135,81,32,196,179,174,215,154,37,203,119,4,117,32,150,46,210,223,196,221,144,96,246,145,120,24,246,128,120,99,176,22,238,15,116,38,127,36,72,40,91,210,227,1,230,98,74,3,10,182,84,106,249,78,208,238,159,113,46,61,94,173,130,146,208,228,186,114,14,73,162,11,57,155,182,37,194,224,166,244,216,201,17,62,25,83,170,78,158,142,85,34,123,25,53,105,185,172,48,35,48,5,195,36,223,180,167,154,33,68,101,121,3,217,115,123,214,229,15,155,206,165,177,192,116,215,37,90,177,195,162,0,176,212,64,34,9,214,121,150,102,226,153,164,42,218,85,226,87,246,50,243,129,129,247,167,88,200,102,209,81,65,189,119,17,94,147,139,85,76,130,122,34,33,203,22,26,51,10,4,180,238,32,240,254,243,10,114,140,239,225,121,197,115,37,157,238,152,113,253,14,21,124,11,169,177,192,185
 ,138,8,78,86,124,42,40,158,108,111,39,145,219,168,180,201,125,98,41,118,128,223,134,143,85,67,104,231,43,46,127,152,104,139,212,124,37,190,179,40,223,54,25,96,57,163,225,35,233,112,21,196,142,173,183,113,244,52,60,113,103,51,148,38,235,165,14,252,133,213,231,45,139,39,65,225,238,88,33,38,158,197,9,41,244,210,201,109,27,47,77,243,158,30,73,236,137,220,124,182,98,212,161,253,113,97,95,255,63,70,162,184,29,163,94,75,229,95,106,121,125,0,88,252,122,39,126,12,231,132,208,222,47,170,145,198,155,52,193,20,92,254,120,98,37,136,228,109,158,237,140,0,123,195,69,198,28,173,204,65,58,216,251,93,22,129,123,255,184,228,15,208,187,80,49,180,117,19,175,159,226,179,126,58,7,19,172,116,61,77,4,194,239,216,25,39,158,27,247,38,130,242,47,14,139,146,244,142,182,220,137,48,90,252,188,118,110,54,235,237,235,106,165,125,117,153,126,94,138,28,24,236,168,36,1,254,101,35,5,116,167,80,186,217,79,112,135,180,218,144,85,10,93,16,133,145,96,109,131,251,3,55,255,138,143,173,118,99,83,232,192,127,228,27,191
 ,203,101,11,217,32,0,205,80,228,150,97,142,225,129,37,210,49,39,209,30,208,9,30,111,36,202,55,100,97,120,85,110,138,97,219,32,82,126,158,67,156,23,17,161,17,116,255,141,42,196,216,249,120,105,80,118,61,26,18,16,134,117,87,80,223,185,4,72,232,152,89,92,165,208,145,57,237,95,244,164,75,247,189,5,178,33,254,191,191,211,1,27,28,176,68,0,44,32,28,114,239,25,52,64,180,195,36,234,54,108,194,17,224,204,210,107,201,11,236,96,178,137,247,3,78,191,67,6,194,3,227,27,212,130,15,133,247,198,18,100,1,187,198,132,247,125,139,96,186,19,55,236,212,32,89,202,13,102,162,143,202,41,104,228,216,220,227,60,94,215,48,69,203,188,194,182,81,127,40,201,189,8,66,36,245,55,80,173,87,70,20,112,153,103,147,87,184,214,201,118,111,101,200,200,168,43,5,199,95,87,183,81,123,63,133,191,202,78,156,145,54,203,74,230,109,118,212,63,6,150,184,238,16,116,208,111,81,191,57,42,224,138,16,20,9,202,66,19,100,18,197,7,71,249,114,65,167,250,65,117,192,183,113,173,131,99,116,222,9,18,202,182,52,214,0,72,33,6,188,91,225,28
 ,40,101,76,61,47,166,219,150,15,111,252,222,170,167,143,194,19,13,227,7,100,100,171,247,67,11,55,70,166,174,145,221,36,134,125,246,41,189,140,251,215,52,75,128,100,9,251,237,38,45,231,201,48,220,112,145,180,167,54,175,155,181,49,104,237,140,137,16,20,173,85,117,221,88,7,217,226,176,223,247,50,78,83,85,33,249,143,236,235,20,235,153,245,170,45,99,163,88,192,43,230,7,59,191,7,59,145,29,221,235,91,0,227,148,218,237,25,219,108,6,5,50,90,214,30,253,116,17,151,169,172,98,193,135,28,64,155,29,175,100,103,225,235,172,63,199,159,242,88,157,4,40,51,129,30,201,179,192,200,173,88,54,192,102,140,13,236,149,235,202,242,47,57,67,163,226,228,99,140,225,25,137,111,204,123,119,241,23,194,234,96,69,140,222,141,137,238,75,211,106,132,50,31,181,153,106,4,250,121,62,148,49,156,182,204,176,6,198,117,109,87,166,57,122,110,237,108,157,223,25,209,107,111,110,126,184,162,253,43,66,15,73,120,227,88,237,221,4,220,117,57,196,204,197,80,171,48,196,4,146,251,50,34,5,27,80,36,12,155,76,170,213,144,196,139,16
 9,73,86,247,73,155,250,226,82,148,122,12,53,48,240,5,152,31,89,97,196,133,161,32,3,168,245,155,212,25,133,170,172,48,98,74,147,159,166,40,117,143,120,31,210,80,160,204,247,117,215,177,187,126,220,141,95,12,62,148,112,96,20,124,252,165,209,2,55,6,73,144,119,93,191,14,98,152,219,170,16,124,252,231,126,218,52,140,232,133,78,252,192,48,148,154,126,205,110,252,99,239,214,140,139,159,168,139,109,43,86,245,71,74,194,229,122,198,224,78,40,82,187,68,130,47,80,234,239,113,246,210,234,234,96,133,164,204,50,159,155,127,47,88,64,217,187,237,232,218,18,143,24,24,44,248,51,116,98,154,220,83,229,106,0,97,1,22,231,187,162,48,200,81,190,241,219,129,214,104,161,70,177,192,20,148,30,158,246,204,237,181,135,17,85,138,254,109,85,8,250,133,41,176,156,3,207,99,235,197,174,30,62,31,243,188,10,123,137,233,186,73,178,162,182,160,18,255,232,12,57,207,135,200,108,230,100,67,111,124,33,41,206,38,156,127,24,39,186,212,156,58,235,127,192,93,135,90,70,142,181,237,87,185,137,69,242,52,225,216,85,94,25,231,12
 6,234,241,208,59,126,129,109,96,103,130,77,150,80,24,98,50,0,53,198,77,238,0,144,56,207,193,110,155,168,200,166,39,97,73,118,153,28,34,237,124,221,167,35,238,238,54,227,90,126,219,143,41,75,34,217,174,133,111,46,120,60,12,214,224,129,44,249,22,117,233,90,242,10,67,164,247,225,250,221,165,91,118,224,134,126,147,192,134,217,87,4,202,230,113,169,201,41,2,205,19,194,159,229,233,218,64,4,84,244,113,186,88,77,1,31,78,181,39,232,199,57,158,123,24,238,221,176,117,66,222,190,69,171,82,52,140,181,67,184,65,4,35,41,198,8,169,136,137,220,206,78,170,69,206,212,255,85,6,188,176,171,116,112,149,105,54,81,242,213,86,92,74,42,136,29,42,100,41,116,160,235,78,189,144,219,135,237,196,85,140,23,88,66,183,179,224,120,71,72,10,141,247,51,24,236,41,58,95,112,194,97,51,15,223,228,5,56,146,218,51,3,221,196,9,135,146,181,183,176,46,27,13,168,71,148,88,12,248,50,245,138,219,24,120,243,212,131,136,123,70,69,38,79,68,172,219,155,119,72,166,108,253,247,96,134,109,40,198,139,13,160,181,132,26,176,159,255,2
 20,255,137,60,147,201,234,127,141,66,73,134,156,172,2,87,203,145,231,5,189,51,234,121,28,134,47,201,201,113,175,237,218,159,217,244,191,125,140,88,75,174,122,90,72,89,237,208,134,120,189,85,94,202,126,69,78,176,133,129,185,29,162,146,46,247,98,167,206,159,161,80,247,74,31,55,37,43,66,195,166,75,58,46,196,21,157,182,141,163,133,202,207,60,111,14,78,174,20,46,233,142,20,251,14,230,86,247,152,250,65,36,140,146,252,1,135,127,175,100,77,205,3,248,192,9,193,6,132,229,7,20,170,223,83,42,111,21,253,171,95,240,12,64,109,70,176,198,203,236,1,51,251,60,136,240,83,94,66,223,121,16,92,115,85,135,28,147,13,181,32,225,142,29,182,114,158,12,87,241,101,1,105,44,147,144,101,122,215,218,90,226,240,46,163,70,90,191,56,9,35,5,114,233,208,253,38,99,60,90,142,145,140,80,88,194,225,190,169,206,106,45,148,30,174,255,177,146,235,144,30,218,41,73,20,81,124,170,58,49,181,132,80,110,250,132,142,34,137,68,12,51,2,70,89,245,58,215,104,169,128,200,224,40,14,65,9,178,76,14,213,221,104,239,55,96,96,147,222,1
 9,111,96,197,243,13,140,209,31,216,220,151,139,168,230,13,228,170,78,128,188,24,75,82,151,107,58,88,126,137,75,184,173,60,45,212,15,11,175,176,10,124,186,185,42,201,78,68,141,100,216,186,26,186,13,142,38,43,224,38,116,50,115,1,230,35,170,21,141,163,20,18,207,219,75,164,16,126,90,175,40,213,208,135,214,125,190,168,150,137,115,180,255,186,105,12,95,161,22,116,242,19,51,87,226,155,182,223,116,90,243,177,142,42,87,12,27,4,67,203,219,17,148,100,42,201,82,188,196,97,159,171,88,176,205,23,72,17,65,199,235,139,248,73,242,96,222,159,47,232,24,25,100,188,37,40,153,255,1,68,96,5,50,49,13,243,217,244,20,230,55,78,210,39,94,196,113,60,92,105,105,106,96,235,191,118,177,15,39,20,223,252,89,23,154,177,182,72,64,121,176,37,20,186,156,221,27,214,168,37,41,93,231,47,126,61,255,208,251,244,226,46,30,171,99,198,200,119,217,97,66,198,146,46,54,109,97,42,62,168,106,253,67,164,213,156,142,108,208,140,255,187,171,164,131,160,166,165,40,136,73,91,119,59,172,133,18,219,53,38,121,108,56,75,171,112,52,1
 74,226,240,69,33,6,253,126,216,45,171,8,101,112,89,249,19,222,225,23,113,229,188,79,72,54,46,176,198,211,157,207,64,55,248,223,140,117,202,219,52,235,13,15,150,226,133,5,254,241,177,243,218,253,141,76,129,185,128,23,113,186,74,235,137,77,177,229,27,168,47,50,17,14,25,76,96,139,2,99,248,189,145,192,25,2,159,36,229,54,42,160,192,3,198,199,0,178,76,160,242,105,224,41,166,147,246,40,237,187,126,104,31,127,137,205,60,42,177,36,227,14,247,191,108,82,192,231,251,241,39,115,155,220,222,23,106,59,60,250,74,76,231,7,183,128,120,46,179,108,232,206,154,46,36,218,84,186,60,129,70,40,102,89,202,189,216,245,233,52,87,79,215,183,165,255,185,211,160,105,250,156,19,140,181,202,94,129,210,254,70,36,151,69,31,221,144,164,162,58,188,92,71,75,46,7,58,233,20,152,162,4,113,102,87,246,172,84,27,200,63,27,110,149,116,38,75,123,66,42,179,17,67,225,72,11,83,31,157,84,206,28,248,138,88,99,169,44,244,201,45,215,192,158,84,238,4,231,191,219,122,200,138,207,45,178,71,154,214,219,231,200,237,109,230,183,12,
 42,127,225,231,251,99,53,82,148,38,204,42,208,98,33,151,110,66,35,206,205,239,178,163,185,143,253,63,19,242,22,131,152,41,122,34,188,229,113,183,146,248,116,46,217,233,167,84,219,115,126,28,13,43,255,51,164,112,42,23,248,122,206,61,35,113,81,81,220,198,90,251,53,86,158,67,203,21,51,90,202,71,117,158,152,232,74,168,236,131,90,152,192,205,48,43,132,8,38,115,223,211,68,115,102,213,216,13,160,218,203,14,83,101,243,171,47,182,104,106,75,8,196,125,7,13,212,161,126,184,58,125,100,78,250,181,171,114,75,125,249,188,64,237,129,138,111,171,185,85,66,60,67,40,33,219,28,108,196,80,255,19,117,251,22,1,46,141,116,56,142,190,68,105,70,172,65,72,134,172,157,99,207,17,105,71,79,161,138,147,170,190,243,251,12,204,9,91,83,187,59,217,206,232,167,110,199,244,44,255,113,138,18,199,161,243,233,250,110,55,129,112,253,123,151,162,187,230,213,169,85,145,252,239,243,172,20,202,56,186,242,114,97,173,175,173,15,115,39,200,94,86,139,2,140,118,227,188,12,65,109,109,180,30,36,195,94,36,155,47,15,251,59,226,
 81,189,213,155,73,117,28,193,197,6,252,109,77,180,121,231,134,238,126,36,59,34,50,6,127,81,231,23,207,165,206,194,25,98,41,66,169,166,170,11,204,79,154,242,70,40,22,152,170,23,14,226,181,176,39,74,22,208,154,136,49,89,173,129,96,86,33,12,73,29,32,215,233,30,13,250,159,4,145,234,219,3,197,56,242,224,241,218,52,209,192,228,22,147,233,47,8,182,112,9,189,3,19,142,15,180,180,225,206,243,86,19,235,218,143,254,89,171,41,21,71,4,91,187,246,58,238,182,127,174,63,152,29,187,210,125,140,232,174,168,190,25,215,169,67,78,230,249,32,253,147,69,133,250,208,24,100,138,54,141,30,75,33,21,18,99,133,180,247,76,37,135,116,183,130,45,0,231,77,100,9,23,94,79,216,215,90,42,168,179,17,201,97,51,74,175,136,105,142,27,181,45,21,130,56,252,245,249,1,34,17,210,222,58,108,171,208,251,186,153,225,85,49,151,141,30,251,38,86,239,248,139,237,50,152,254,210,85,218,31,214,65,143,28,220,196,46,223,165,189,164,196,22,66,251,21,170,3,196,34,147,119,229,221,191,7,126,21,23,253,133,45,57,97,176,203,18,206,121,151,
 113,99,67,152,113,130,209,23,219,81,130,163,100,141,47,117,82,194,70,123,91,168,46,239,190,42,3,248,156,254,52,221,164,181,252,103,129,45,128,234,25,134,183,147,60,91,133,25,90,43,84,14,177,213,18,207,117,107,147,13,182,164,238,3,239,43,172,18,79,20,19,234,121,58,83,237,54,68,99,211,47,80,103,231,1,94,81,242,52,61,161,164,146,61,23,254,93,80,224,100,215,85,210,142,68,232,245,172,102,138,63,140,71,51,19,180,88,190,219,70,201,172,186,115,67,203,100,194,204,85,73,180,86,7,150,59,26,183,23,230,224,196,236,97,136,74,235,248,252,143,89,116,191,199,232,93,164,134,2,86,56,139,204,230,93,234,1,73,190,157,118,121,121,109,159,216,161,186,102,222,243,154,85,197,59,50,56,199,136,72,221,75,225,153,25,91,250,226,169,135,103,12,225,207,28,160,39,203,240,0,58,86,159,196,154,14,11,168,83,93,20,83,16,143,30,228,207,154,108,154,198,149,213,80,168,137,243,7,53,94,21,221,131,10,143,195,172,33,5,0,234,244,130,237,102,155,232,64,209,126,129,7,104,67,174,211,150,80,156,150,131,101,116,254,149,204,11
 1,94,76,179,52,217,173,125,17,182,118,232,28,170,101,75,244,171,22,98,17,178,134,25,152,16,24,201,221,138,220,138,109,56,247,33,109,176,113,36,83,96,167,109,85,115,201,202,165,16,126,183,236,112,133,32,14,193,9,78,234,163,172,17,157,77,155,210,175,51,111,240,30,52,177,48,80,130,51,4,147,49,151,213,10,192,254,118,133,141,29,205,71,172,169,9,167,11,177,180,99,4,152,41,233,232,170,2,35,191,166,198,47,168,212,241,71,6,232,53,85,176,76,250,15,25,244,121,151,31,155,233,255,170,73,192,27,173,45,115,63,134,250,165,27,117,18,222,241,124,16,50,164,8,168,247,23,110,70,205,87,1,128,152,124,193,66,4,225,103,135,13,252,127,126,196,193,202,77,161,36,21,9,243,181,228,99,242,55,16,116,109,3,95,224,162,29,39,162,103,103,133,195,130,80,38,123,89,196,180,22,36,11,27,78,146,57,224,168,9,203,235,41,115,97,226,60,137,9,37,236,158,181,213,190,213,34,147,23,79,142,30,149,21,32,234,75,17,50,118,218,119,41,138,199,90,141,54,73,5,77,69,28,183,27,12,220,54,212,23,197,50,57,72,151,168,148,195,240,24,78,2
 5,183,57,245,235,130,4,65,158,220,121,254,243,155,241,173,64,87,169,103,182,117,103,57,173,218,207,176,45,102,236,127,179,163,238,69,80,102,18,213,215,8,53,137,240,191,94,83,143,107,53,204,159,117,186,181,158,193,199,77,214,197,17,156,155,211,182,253,27,226,79,137,75,199,148,99,182,214,187,45,61,88,219,119,18,7,46,211,28,47,189,164,10,80,168,191,237,21,211,89,121,76,247,7,77,20,148,43,229,96,240,154,143,55,57,165,102,254,50,128,32,92,153,240,15,113,5,120,113,234,2,47,155,6,85,233,92,51,95,28,133,186,196,233,132,59,130,219,162,66,51,22,146,27,22,15,11,216,139,3,124,13,196,217,243,53,133,142,200,176,145,217,244,177,178,157,112,68,37,33,133,20,92,226,104,99,142,103,193,144,102,200,214,82,239,93,164,4,39,94,144,200,71,162,141,242,77,110,46,95,126,6,104,24,126,153,153,92,63,31,155,233,43,73,133,246,158,17,147,16,46,212,49,75,162,203,232,67,201,1,25,24,32,133,31,7,107,128,151,174,205,64,209,219,132,88,240,170,205,183,94,233,169,181,29,244,102,99,93,217,40,170,7,190,167,49,214,108,
 53,229,215,22,196,2,241,86,3,135,186,150,248,156,154,65,70,81,221,166,149,132,97,102,127,50,67,89,240,98,246,102,213,107,12,189,250,172,193,109,247,126,176,244,32,18,163,205,224,98,42,190,205,98,97,118,237,246,147,171,185,163,82,192,175,137,188,78,149,10,70,169,21,38,41,61,119,98,146,166,21,23,193,28,29,189,193,227,96,83,76,103,30,33,198,78,126,24,22,168,74,139,130,235,38,53,48,39,210,102,1,100,14,62,102,219,25,3,181,122,75,71,241,147,123,236,6,200,27,239,11,57,245,166,208,229,128,63,194,4,21,168,218,45,15,91,103,2,143,9,118,220,252,28,50,169,237,205,162,236,252,250,155,28,79,24,40,134,45,42,143,114,240,21,141,247,222,10,48,72,7,190,31,223,145,20,175,6,60,101,63,239,245,33,39,220,45,171,79,30,48,183,248,221,192,12,220,34,129,213,55,128,43,208,89,25,155,47,74,28,27,125,106,146,181,158,220,223,242,92,149,52,209,167,10,180,90,125,64,39,98,17,89,196,216,250,102,172,99,59,122,141,226,124,31,130,119,224,102,186,29,63,67,170,170,254,127,194,138,224,248,1,54,127,143,184,204,32,199,7
 9,189,31,195,187,154,79,82,156,230,150,237,90,232,136,116,91,110,13,225,142,17,89,178,84,117,70,121,160,138,139,109,218,137,131,114,69,93,128,156,146,46,207,117,194,33,8,175,152,214,100,57,168,91,139,138,229,78,244,203,140,38,135,123,164,251,59,61,232,165,69,237,255,186,37,54,218,177,138,74,168,103,93,191,196,247,179,18,12,135,57,4,189,18,81,17,234,54,214,59,77,151,129,128,32,8,233,239,199,54,133,6,115,170,61,161,199,57,200,215,195,5,243,128,43,82,25,249,78,38,202,159,46,240,178,195,40,78,20,218,97,120,120,1,145,196,48,149,21,18,51,61,247,195,56,11,244,134,47,149,248,7,117,82,150,134,193,18,203,30,178,76,49,186,19,25,39,92,118,236,216,138,175,150,17,33,111,217,178,212,2,8,109,67,98,102,53,162,83,76,107,57,29,202,146,35,42,165,84,53,243,255,135,203,42,183,111,180,141,128,248,206,132,126,205,195,32,68,249,50,187,195,174,201,248,220,37,154,120,106,131,213,213,199,215,195,7,67,149,138,229,208,254,20,137,72,94,87,130,61,7,19,54,211,161,71,223,121,4,248,105,231,26,170,91,188,132,1
 63,20,17,61,22,114,73,226,92,192,124,53,35,238,0,2,61,165,211,149,35,133,235,79,193,186,224,251,214,14,18,35,198,136,221,126,41,135,126,120,139,77,196,54,100,87,167,181,181,80,4,84,56,17,103,134,90,212,1,216,58,106,174,26,100,231,231,88,10,211,159,75,253,19,58,126,79,126,171,56,85,124,12,17,213,146,218,193,11,194,159,139,119,17,155,217,107,202,138,200,104,186,73,24,129,50,97,141,216,174,59,119,49,205,125,248,135,68,76,178,226,195,225,49,121,72,146,233,134,39,251,38,155,87,250,192,89,181,15,115,245,234,225,251,77,161,217,193,15,251,234,240,129,221,232,173,53,169,123,4,117,159,70,191,129,89,128,105,149,234,16,255,161,12,40,101,19,23,183,83,90,58,97,35,215,112,109,28,10,139,177,212,229,197,75,67,95,114,235,247,22,104,155,109,197,35,39,166,43,64,136,223,169,98,135,85,37,64,94,124,116,4,217,67,122,161,144,235,18,92,43,44,158,119,210,80,0,143,130,136,117,110,68,84,210,10,220,54,118,207,240,103,228,122,248,144,178,177,250,236,18,194,157,108,192,29,94,142,182,232,158,203,167,173,27,
 41,10,104,62,54,96,87,145,192,194,210,242,195,106,144,66,95,137,162,158,3,172,6,209,124,176,215,104,197,105,144,227,52,248,102,72,54,14,15,138,198,150,100,59,19,77,95,246,133,4,28,118,235,73,157,245,67,222,252,205,233,252,154,49,122,132,231,17,162,162,211,210,227,40,171,46,213,28,222,152,55,129,21,87,219,224,127,138,232,105,93,251,61,234,220,49,11,11,209,75,210,44,77,126,211,208,182,169,204,110,29,185,0,135,166,59,68,82,16,127,77,44,136,76,147,12,250,4,14,135,255,7,167,94,99,77,95,18,152,195,32,8,109,243,111,84,133,87,32,3,245,4,250,107,168,200,149,93,79,164,236,229,192,211,156,43,101,103,71,175,188,145,94,138,227,176,81,43,115,238,234,121,77,43,44,67,114,237,25,86,164,88,206,148,85,66,5,124,138,62,96,36,208,12,218,225,184,41,195,25,117,233,84,104,92,1,206,235,42,132,227,209,141,223,222,32,251,106,49,188,224,55,206,49,171,133,224,132,213,98,237,163,197,27,96,219,39,118,17,72,247,129,193,247,187,209,185,54,217,82,94,171,211,130,92,81,180,33,59,5,160,127,46,116,183,208,141,229
 ,156,220,85,209,116,99,178,224,87,94,147,128,86,227,144,24,125,216,149,198,54,32,115,24,50,135,16,201,223,169,189,171,231,181,0,38,59,106,37,109,247,185,86,115,118,97,47,122,49,69,86,54,67,7,249,19,93,84,90,81,72,47,65,135,234,215,132,12,102,159,229,71,76,247,4,223,41,155,46,131,204,43,23,168,160,238,38,216,59,20,108,128,9,7,216,165,137,22,143,147,59,202,111,244,88,130,194,59,214,245,233,18,118,156,223,37,27,107,48,238,123,214,196,26,81,196,6,38,179,112,253,21,236,246,15,224,253,168,57,47,43,137,85,255,241,70,208,1,171,211,27,227,253,124,162,39,96,126,255,100,74,3,65,216,222,100,194,234,201,50,242,232,48,62,217,42,137,9,23,155,10,40,122,212,40,98,73,85,127,202,127,119,64,30,73,129,94,107,174,76,37,71,69,5,216,191,54,158,83,73,39,242,52,119,220,239,22,85,185,23,20,78,133,176,47,134,156,151,129,158,106,150,230,87,124,87,21,100,78,20,253,195,12,125,196,246,180,8,198,157,14,63,219,132,244,48,143,147,199,61,102,182,156,219,142,199,90,29,108,194,159,121,56,62,184,191,38,237,200,15
 9,43,163,41,159,217,132,187,187,60,141,77,110,18,155,200,190,121,22,39,164,219,134,178,210,32,96,129,118,247,115,149,226,190,219,131,122,77,65,47,209,63,143,101,81,126,217,219,34,244,173,186,3,142,12,17,55,188,185,100,25,44,0,194,76,21,80,160,176,67,80,102,231,80,86,55,254,36,208,75,157,193,167,208,202,50,62,83,107,15,7,98,158,79,64,8,85,184,117,1,100,196,246,225,82,248,68,194,39,62,241,144,215,208,135,74,48,155,112,65,112,158,161,245,226,148,111,153,170,255,250,148,238,221,42,192,21,235,61,164,176,186,200,30,246,39,79,62,106,219,225,40,51,84,106,134,73,199,2,45,78,216,194,179,55,41,77,132,75,199,152,136,111,166,198,39,218,229,66,244,136,202,163,141,17,149,6,106,236,230,195,122,96,217,217,244,111,86,187,129,7,40,193,13,68,9,77,140,83,197,212,247,218,91,34,157,26,39,162,16,45,38,78,255,248,236,114,194,120,71,48,231,71,0,82,150,54,242,45,36,219,67,227,131,18,242,194,232,15,46,19,206,195,112,54,80,142,80,12,213,168,133,143,77,233,161,76,224,101,83,172,66,228,209,72,149,9,116,25
 0,143,236,40,220,185,116,27,228,141,107,38,6,190,177,73,21,121,132,41,113,144,107,167,86,49,26,189,144,224,12,82,60,151,210,0,79,12,84,50,77,117,48,65,185,103,131,124,233,179,58,220,189,160,19,195,137,142,41,91,85,140,152,238,134,183,112,97,255,173,110,211,164,203,150,57,28,38,63,244,92,31,197,106,65,138,191,102,142,28,251,239,84,15,42,134,112,190,11,202,75,86,119,100,210,9,252,191,117,197,160,126,5,74,164,197,207,13,135,85,236,139,173,49,211,121,56,121,37,211,180,227,121,173,85,131,29,206,69,23,251,232,84,57,76,21,155,102,144,239,176,155,60,189,252,255,106,6,188,148,15,168,222,165,170,199,30,182,180,26,170,94,250,83,17,183,119,26,146,56,69,240,136,144,97,32,239,17,137,203,149,98,142,62,178,127,219,158,132,228,43,223,180,65,104,157,156,39,86,219,147,134,254,1,28,26,193,11,213,224,136,99,179,17,205,116,243,238,160,101,221,82,2,117,102,89,206,247,2,107,83,106,59,46,72,212,139,205,219,236,191,217,238,198,13,161,179,44,138,172,123,252,1,95,169,134,184,14,182,89,131,49,186,187,30
 ,251,181,20,12,77,81,25,158,93,162,33,33,221,193,228,66,55,104,150,72,187,114,137,141,8,209,154,245,21,40,39,150,49,219,133,162,49,0,158,56,89,175,33,181,12,161,166,137,61,24,166,134,85,201,197,56,241,148,13,215,130,17,156,53,204,225,35,21,190,89,74,91,83,203,141,147,87,27,93,114,124,172,68,16,101,127,153,161,133,197,42,220,44,37,156,184,80,200,87,129,108,193,79,75,173,215,255,135,10,57,151,166,193,74,59,188,104,100,48,250,206,105,15,41,238,186,73,11,83,44,38,228,102,31,158,6,27,120,252,52,78,157,214,253,77,70,168,155,184,188,192,61,116,123,227,64,20,165,108,21,83,244,17,201,151,194,154,199,139,43,172,38,36,180,199,126,173,175,3,7,11,19,199,248,78,73,70,174,150,36,22,200,166,193,222,86,8,164,7,230,184,105,220,102,20,124,49,2,176,38,255,77,82,255,110,97,214,26,126,113,92,115,87,222,253,246,251,4,79,204,165,149,69,89,153,210,118,232,92,209,197,181,6,152,173,150,136,173,170,253,144,164,24,148,59,189,69,56,140,185,105,93,76,189,112,106,152,141,242,36,153,85,78,37,246,179,92,228,
 47,183,41,48,57,175,170,172,222,89,245,44,113,234,23,121,50,175,206,10,80,23,103,213,8,47,219,126,51,99,235,147,199,18,235,156,161,236,76,84,57,9,220,197,214,119,191,157,119,239,182,137,144,40,145,43,149,28,90,240,22,37,210,135,61,92,183,215,223,192,45,126,53,100,204,236,225,112,234,97,19,198,70,90,111,153,195,250,142,18,59,47,21,143,231,74,29,7,128,146,243,65,115,101,62,4,33,10,1,141,55,63,16,107,94,93,81,193,17,116,231,165,240,114,239,227,60,53,154,100,19,131,85,136,156,231,21,144,61,239,133,248,197,97,137,89,98,215,170,78,188,146,157,171,233,13,157,47,109,28,139,122,188,41,215,178,254,210,53,66,44,231,186,106,204,94,42,214,227,199,119,241,181,120,200,252,97,151,87,98,40,72,93,1,161,28,15,183,205,66,130,11,90,188,226,144,202,11,176,152,21,128,228,225,22,111,209,174,238,139,12,255,17,208,60,177,78,227,232,20,83,53,90,91,196,185,86,30,206,169,88,177,230,221,192,253,35,61,88,4,61,25,113,86,55,127,253,191,249,204,223,49,121,9,249,0,39,3,101,207,7,47,228,66,158,58,147,68,54,44,
 152,166,67,55,120,155,52,223,86,4,201,160,240,215,18,80,27,237,101,207,127,219,210,255,230,243,110,215,240,218,38,99,241,75,223,93,189,134,65,166,254,27,128,161,36,152,0,197,111,118,184,73,67,30,74,229,169,10,74,176,170,94,160,113,106,52,162,9,231,246,205,243,240,140,14,239,226,36,213,106,116,227,63,121,156,224,161,26,250,244,1,81,59,66,116,27,133,75,167,14,133,156,228,55,32,169,233,102,189,201,102,232,227,59,149,93,247,22,225,169,55,89,230,88,10,89,150,177,107,145,153,152,27,185,71,218,222,2,105,85,29,137,223,27,134,143,223,228,123,206,66,175,122,151,31,157,219,196,199,20,5,120,159,147,243,233,19,36,126,233,74,78,106,45,104,29,137,233,209,96,87,181,153,248,8,215,241,13,172,228,59,181,185,206,172,77,158,160,202,40,209,144,100,23,24,176,73,174,20,213,89,207,210,150,89,81,151,180,15,168,68,131,157,224,166,93,4,3,71,51,221,229,250,154,248,170,220,169,40,65,43,224,103,138,196,162,106,100,47,192,225,251,155,26,183,87,5,96,197,184,242,37,143,61,79,134,169,91,202,251,171,120,217,15
 6,162,163,112,179,19,193,225,96,184,140,31,86,245,193,183,251,219,250,73,167,103,123,137,184,44,188,26,72,143,131,120,127,231,219,169,243,246,207,196,144,145,86,187,18,64,73,16,47,142,249,200,243,92,47,123,3,115,208,171,156,181,217,100,100,220,48,222,174,183,254,16,80,183,178,40,192,24,133,83,202,129,58,148,29,181,158,238,146,183,215,219,15,103,80,144,98,23,42,62,227,224,180,161,133,251,0,127,248,66,27,155,252,86,28,232,122,63,68,2,232,34,59,80,10,73,155,58,164,26,79,112,27,7,78,210,84,157,197,56,175,233,126,103,246,58,112,155,185,170,108,154,98,152,62,192,160,8,21,164,198,38,56,4,247,5,255,159,178,78,242,182,37,193,106,65,173,46,175,247,253,48,87,193,218,211,45,246,59,129,3,152,55,195,30,178,162,225,152,76,154,204,234,67,54,110,142,44,234,195,209,66,196,142,62,7,161,170,239,95,70,45,250,75,11,31,5,41,228,216,55,236,176,180,109,155,2,71,19,199,184,29,45,66,232,160,153,198,203,23,69,122,195,90,180,57,62,8,125,47,26,215,222,201,228,3,50,208,127,105,205,111,204,248,157,71,84,21
 0,175,165,26,52,76,216,164,77,252,160,139,131,33,47,135,34,93,236,127,205,169,134,33,186,174,44,144,73,55,126,135,177,86,133,90,14,173,147,149,53,95,6,39,218,200,183,128,140,198,227,101,115,7,103,128,116,132,126,107,143,212,128,30,27,177,41,107,164,209,0,6,1,251,125,45,53,104,110,155,11,165,148,61,144,127,42,37,204,186,210,53,77,128,231,252,143,80,152,199,114,191,179,120,95,171,54,159,69,204,36,29,195,227,170,124,0,41,197,213,143,105,138,67,98,179,114,199,10,253,178,79,165,132,248,59,120,122,228,105,162,215,50,94,122,212,209,175,147,225,12,2,76,253,118,54,24,229,42,243,72,193,86,126,192,89,220,82,17,214,45,50,164,217,157,163,102,39,41,146,13,178,215,172,175,158,54,70,141,192,214,18,43,116,1,69,47,69,34,183,160,213,129,108,218,196,45,39,200,58,101,201,22,13,195,128,97,22,235,31,13,164,104,59,10,39,193,196,180,166,163,124,169,133,198,161,39,101,19,105,240,165,40,157,90,178,175,233,181,49,74,206,165,12,37,169,114,86,52,177,64,178,155,195,154,250,181,55,113,215,159,178,181,241,1
 23,1,204,33,159,96,137,178,65,108,143,30,137,234,70,124,179,107,221,8,171,114,88,209,31,241,35,176,127,199,69,176,173,140,12,42,18,136,64,194,114,118,178,126,189,210,246,149,100,77,80,90,138,78,12,178,69,157,97,49,144,244,81,73,80,18,225,138,83,162,40,26,165,192,111,15,32,122,97,53,127,46,120,230,55,15,172,80,105,239,36,224,21,108,126,94,237,14,105,98,93,181,171,208,67,131,19,245,55,174,64,55,194,188,128,147,164,160,192,208,243,140,154,27,255,42,25,67,237,127,164,104,128,87,86,1,180,189,18,187,103,171,166,47,211,49,33,89,207,28,36,10,95,67,116,219,110,63,43,24,125,102,58,244,38,191,182,220,146,124,33,213,148,196,156,198,1,8,139,249,64,66,12,114,249,37,196,27,167,18,196,202,51,190,133,138,199,209,126,117,89,43,40,169,46,19,221,124,184,20,179,121,58,39,145,158,43,224,148,109,236,2,194,200,187,251,111,129,160,124,194,39,217,87,145,35,112,107,55,114,110,86,93,7,130,130,116,69,184,168,172,103,168,136,146,243,248,43,104,154,177,210,142,92,66,67,248,108,38,234,57,231,91,174,163,84,
 106,254,135,99,133,37,58,197,83,210,18,146,236,66,17,235,26,38,167,183,246,25,80,74,205,136,165,202,36,155,140,149,2,203,45,231,131,16,107,164,41,188,103,164,92,8,166,137,116,237,144,129,115,67,157,24,152,108,251,152,84,142,208,108,161,200,238,127,187,63,74,43,132,59,141,26,45,152,97,56,209,111,5,183,9,164,14,23,174,117,235,148,61,195,59,165,207,168,253,153,134,1,51,77,101,224,40,135,168,146,108,146,196,82,84,189,208,178,148,235,194,169,144,94,19,8,9,31,249,103,154,176,97,66,85,131,224,170,57,51,101,1,50,23,184,0,184,6,77,31,176,7,10,118,199,131,231,193,196,126,6,0,162,9,193,253,188,90,73,220,117,219,249,3,10,112,119,113,228,86,93,162,142,41,51,75,62,146,48,105,136,197,12,73,105,238,199,115,1,85,39,140,153,108,38,38,184,118,43,146,225,43,116,236,75,233,6,121,96,87,239,0,149,12,182,173,57,135,57,135,32,12,237,61,162,134,162,98,86,60,221,135,23,6,133,181,210,135,47,36,215,50,254,104,0,210,149,57,138,74,31,200,158,103,202,238,103,164,235,204,60,77,117,179,215,134,242,124,5,73,1
 4,104,119,241,76,178,10,153,3,61,112,205,33,251,0,62,60,126,23,78,173,198,51,252,68,239,194,162,9,58,89,29,251,1,151,122,229,206,101,1,64,37,176,13,80,95,205,13,19,241,217,13,161,35,113,62,249,169,54,156,226,209,37,160,191,146,69,253,115,238,207,8,173,229,107,118,233,76,75,15,138,215,201,127,215,56,162,209,104,69,90,146,50,69,131,99,97,106,213,215,184,49,120,77,243,98,40,199,201,159,194,78,170,198,198,156,181,237,153,176,179,175,90,10,96,205,4,0,185,182,218,147,86,29,30,127,167,170,8,157,68,17,155,151,92,147,201,81,109,46,33,196,207,238,170,237,233,116,166,94,34,82,228,201,92,44,195,108,104,175,22,134,231,159,87,82,26,232,28,213,113,32,104,186,76,25,196,125,229,206,41,169,79,53,12,150,208,129,251,216,46,250,114,80,246,19,73,192,227,195,136,51,160,124,255,19,98,242,23,13,179,166,85,148,143,166,161,188,121,130,77,136,81,228,154,86,155,117,235,62,207,88,183,16,120,87,41,114,48,46,200,149,73,119,170,96,6,52,191,166,42,175,26,195,34,89,201,188,1,58,180,163,206,79,55,182,161,212,2
 9,90,79,238,187,188,204,117,222,146,198,138,206,199,208,164,95,71,143,71,41,242,153,213,87,67,66,214,93,115,102,2,121,77,198,220,160,112,75,126,129,6,211,160,180,181,107,157,124,15,200,217,111,94,22,147,96,80,216,115,13,214,181,55,6,233,88,94,199,233,169,104,225,27,127,161,104,72,220,137,100,37,243,16,42,119,231,72,95,104,238,129,44,57,196,133,107,115,103,115,226,13,71,155,209,66,189,70,66,67,66,207,16,154,98,99,164,186,110,57,151,174,67,65,1,193,197,7,50,7,219,204,33,115,218,154,202,57,195,123,210,207,185,41,83,0,30,26,168,137,166,118,221,1,85,38,49,87,108,200,164,80,50,201,6,125,249,2,118,70,196,99,151,181,176,44,250,217,44,230,86,15,196,186,163,114,9,180,181,43,94,241,147,170,114,202,217,33,144,99,43,34,202,151,224,219,203,84,182,183,254,203,194,181,240,36,90,128,100,107,235,153,229,99,207,188,202,69,223,90,87,21,10,143,6,29,143,167,33,65,53,164,241,134,255,253,123,206,88,90,58,217,170,91,80,155,229,14,76,74,120,103,247,135,247,181,4,17,51,63,213,28,133,134,162,76,81,44,2
 3,158,155,125,181,221,243,136,120,140,173,231,130,111,10,204,126,91,225,106,239,113,224,83,216,215,243,104,104,130,30,44,137,239,130,154,231,65,150,246,232,88,140,4,146,115,183,45,45,160,19,205,35,118,54,227,222,121,244,49,152,219,94,227,218,74,176,132,150,202,200,129,182,93,97,1,115,250,186,204,1,180,18,167,40,57,188,25,118,155,224,183,139,139,151,115,241,66,153,241,145,234,22,134,136,90,34,199,14,39,88,163,134,37,246,178,226,23,195,52,194,49,219,215,36,119,247,152,97,240,227,107,195,21,21,24,208,158,125,120,224,240,216,20,156,196,110,203,77,216,44,22,140,6,213,176,171,230,126,249,233,179,68,197,117,148,228,185,81,138,71,201,146,123,1,252,123,225,86,83,252,221,199,220,239,128,243,76,255,6,251,255,233,88,128,208,83,229,40,172,5,16,94,85,205,47,229,182,140,33,212,115,138,239,0,57,186,220,23,205,157,253,160,101,16,71,118,159,28,239,234,155,188,175,188,33,90,218,29,244,96,195,81,153,150,162,150,196,139,142,169,6,6,214,171,7,208,167,36,229,216,19,38,223,41,103,243,78,13,223,138,
 190,104,63,190,1,211,191,175,47,162,95,5,131,179,160,80,119,95,157,35,69,37,208,143,183,227,179,102,116,36,178,176,205,234,30,49,51,32,32,78,15,245,164,4,59,207,109,113,129,70,53,211,42,193,233,57,125,75,122,36,71,97,1,7,216,152,245,155,201,34,182,6,186,136,17,166,240,239,255,55,203,129,38,175,167,199,154,227,20,81,122,1,28,20,18,39,16,183,122,186,226,38,80,205,11,158,205,63,122,229,255,204,62,194,221,138,219,253,198,5,76,232,181,58,168,77,120,20,22,133,193,42,71,236,100,112,211,62,84,169,224,131,17,137,177,68,32,76,195,23,4,202,42,12,238,36,21,195,40,240,214,132,210,204,225,209,65,59,203,132,21,125,91,48,25,215,213,160,44,191,167,199,252,89,153,40,177,167,234,163,234,160,113,204,164,168,232,11,195,165,79,36,148,57,172,30,53,252,172,171,162,60,52,38,252,233,118,201,166,235,189,106,208,239,154,173,7,52,58,164,91,21,142,67,173,201,22,192,174,216,177,227,127,80,237,228,34,99,94,205,240,148,173,116,217,61,230,50,44,85,103,80,103,104,254,74,80,255,173,243,120,59,194,248,16,213,15
 6,33,103,199,178,243,34,89,133,146,34,38,239,3,207,109,236,146,4,148,226,44,231,64,225,170,163,194,45,200,95,76,150,61,171,241,225,152,75,106,49,37,209,230,19,61,22,154,72,103,0,41,98,25,174,40,86,128,153,88,87,110,114,250,74,209,202,69,39,140,97,45,201,48,142,153,133,68,225,197,55,158,130,194,134,43,160,75,245,149,187,66,215,29,73,73,70,120,36,89,35,91,129,34,159,99,59,200,228,98,132,79,184,217,100,150,59,138,246,79,202,92,241,125,178,5,27,64,191,10,126,4,64,41,84,191,97,22,253,181,50,174,132,184,86,145,132,202,197,114,95,252,174,222,20,94,149,145,172,251,130,214,151,110,101,133,220,24,82,205,22,227,221,195,108,18,244,247,224,18,232,83,28,111,35,186,208,72,239,36,161,81,201,156,224,150,168,69,124,116,192,179,54,92,158,23,116,247,83,188,159,152,24,248,114,171,221,86,107,118,17,253,94,58,108,213,165,116,24,156,7,10,238,17,215,180,173,227,190,149,207,150,187,146,58,65,3,183,143,77,141,233,149,2,60,254,6,134,46,149,192,196,125,49,150,59,204,56,239,158,153,195,16,85,44,254,86,88
 ,36,245,113,72,251,250,35,207,209,184,3,56,16,10,85,121,228,69,41,83,177,74,30,120,75,160,133,13,163,68,132,175,43,11,114,174,249,92,10,228,63,39,36,248,136,17,21,205,149,195,163,240,191,234,30,154,93,85,240,155,122,12,14,176,254,125,96,205,198,204,43,50,223,176,218,89,120,180,246,7,195,61,4,72,66,133,91,241,0,9,154,114,144,240,76,248,133,38,138,102,232,151,97,183,80,61,68,22,35,153,206,136,160,22,176,51,49,117,151,53,178,51,124,170,248,101,254,130,52,27,251,65,139,220,1,56,234,128,30,229,36,112,72,156,176,207,166,203,103,216,201,133,31,157,105,168,215,126,21,18,155,149,188,69,218,136,6,152,153,212,246,145,24,232,3,232,41,137,75,35,165,115,23,184,156,200,91,60,180,251,192,218,193,222,156,251,243,139,51,45,108,2,90,206,31,16,71,133,237,180,148,211,164,135,234,118,238,239,116,229,216,17,120,49,194,200,54,111,238,47,194,69,243,26,175,229,94,79,189,119,156,100,44,25,92,160,124,103,189,231,57,246,235,182,41,90,26,125,219,47,184,48,79,54,150,114,138,102,65,127,122,10,25,168,127,18
 3,108,44,116,237,64,43,41,248,29,41,87,108,168,88,123,224,119,27,144,149,212,143,196,47,251,183,198,190,117,173,148,219,98,171,129,194,35,151,226,135,31,50,146,146,28,47,14,243,104,114,225,124,115,218,179,37,79,40,88,56,79,173,77,97,165,64,104,84,70,50,170,34,40,103,66,211,60,190,93,71,104,15,107,230,0,208,253,214,3,34,125,248,215,36,227,3,160,121,68,71,79,15,17,112,69,157,110,89,94,200,22,201,252,237,135,90,210,96,91,29,33,169,33,245,17,230,21,39,188,130,192,130,32,5,194,253,143,65,45,139,162,7,9,208,168,11,165,137,91,236,244,124,254,40,207,144,28,231,91,103,116,152,222,183,16,107,203,207,31,29,222,71,84,74,221,150,114,213,221,4,144,201,191,19,122,132,5,194,89,27,21,132,147,155,222,200,132,97,148,169,167,30,37,74,14,17,204,162,9,5,95,213,146,177,198,72,201,42,83,17,246,147,205,14,219,188,152,153,39,242,57,28,97,62,96,96,237,171,43,60,240,114,102,21,155,147,228,1,162,204,36,219,10,118,219,9,106,163,202,40,27,35,37,243,172,61,148,28,114,27,183,29,169,82,165,224,192,114,132,32
 ,107,28,218,214,65,92,71,213,249,66,151,141,49,202,231,98,17,190,66,108,169,242,233,230,74,53,82,60,147,210,50,47,86,228,25,157,0,164,75,13,115,183,130,195,14,239,235,150,117,32,57,235,192,44,60,238,189,12,22,54,29,220,148,0,78,156,35,129,88,99,220,235,169,81,166,73,136,25,191,24,44,234,44,164,123,10,89,75,216,37,94,123,141,190,60,87,241,78,211,36,70,147,175,86,46,208,210,198,91,162,117,250,69,173,195,0,237,186,241,106,8,184,167,141,45,37,74,164,215,108,9,185,202,190,50,129,135,55,81,25,138,168,91,48,205,98,180,192,65,155,254,190,207,2,223,79,18,22,9,122,94,11,19,149,216,193,208,251,3,86,165,15,133,217,146,12,229,187,101,169,98,138,123,52,140,57,211,17,84,120,35,116,86,59,23,235,170,187,94,129,190,157,173,89,249,68,13,202,249,54,57,97,174,126,64,228,132,81,242,71,43,28,248,242,29,186,186,168,246,254,57,199,221,215,254,112,108,176,31,78,238,204,243,141,76,70,178,155,191,99,223,11,108,20,224,189,45,159,27,36,212,212,41,105,156,226,233,88,185,197,16,118,200,247,140,84,103,128,6
 9,179,128,251,24,231,155,53,155,116,188,16,22,66,174,104,138,88,50,93,196,15,129,184,55,207,115,94,56,116,59,13,56,221,52,173,125,158,1,35,205,182,245,116,246,60,147,27,1,185,177,245,85,54,14,254,220,75,195,82,13,179,76,16,228,84,170,204,150,228,96,240,30,106,9,159,229,125,142,114,4,34,161,128,249,238,135,180,18,11,163,16,221,196,48,11,32,209,68,16,3,183,255,33,106,30,186,44,62,142,168,220,56,101,155,136,218,73,6,151,237,56,198,22,166,2,167,13,15,253,32,66,154,29,174,217,172,10,25,118,250,70,93,72,140,132,96,210,160,154,127,178,211,185,123,232,32,81,34,36,108,21,52,246,81,12,219,152,100,63,20,200,15,227,191,30,141,114,179,120,111,139,108,52,226,147,92,168,121,179,228,102,177,40,154,160,159,213,35,242,77,168,244,196,212,204,149,188,16,248,204,249,63,218,230,177,249,160,103,73,234,8,178,235,40,74,41,70,216,185,64,48,201,66,138,220,156,201,13,248,163,226,160,252,194,106,17,102,18,114,42,234,41,251,154,58,56,212,29,197,202,52,24,197,178,223,169,51,215,72,80,169,217,183,10,226,12
 6,49,80,50,99,127,216,184,220,221,243,5,127,152,118,9,37,5,244,128,155,20,67,91,82,45,185,5,130,160,213,147,229,244,151,80,125,133,226,94,228,140,188,191,151,126,54,105,5,75,253,224,73,199,27,17,134,49,35,172,14,137,244,127,101,64,200,94,141,230,184,109,32,228,157,179,130,72,123,65,28,2,223,99,249,57,87,201,21,43,58,128,131,46,124,112,234,157,25,31,216,53,23,77,204,253,43,231,134,127,38,67,234,0,27,254,163,1,116,38,137,216,84,7,181,194,70,182,21,188,218,1,250,52,91,117,223,42,87,103,189,96,237,49,117,165,81,236,94,98,155,185,253,208,95,11,108,124,225,181,11,246,89,238,250,163,33,162,73,197,25,88,56,22,72,104,69,155,151,73,24,64,141,196,192,13,151,72,95,128,207,135,198,186,70,244,202,49,113,182,19,89,9,146,86,197,78,11,213,169,224,18,217,13,87,70,96,70,161,0,246,93,237,250,47,113,32,136,242,165,23,102,151,198,145,28,2,5,44,152,236,161,91,70,224,154,147,146,133,110,84,127,25,232,145,86,103,154,1,128,140,76,229,201,15,123,91,136,37,191,17,179,83,38,111,139,30,119,148,172,19,70,
 78,167,97,30,31,187,214,61,125,182,149,241,109,73,198,94,50,112,243,110,22,5,186,40,23,198,143,243,225,242,251,43,96,66,224,143,157,186,245,146,216,52,249,124,175,33,40,167,186,22,244,69,200,250,134,79,154,108,220,10,195,95,126,138,150,211,235,217,54,247,120,197,125,56,176,182,14,54,152,224,163,242,29,25,93,180,179,169,78,5,65,59,45,88,62,178,114,95,88,137,221,233,90,236,66,35,11,238,130,234,27,96,69,94,201,239,46,89,71,98,28,143,123,23,129,55,151,10,31,43,65,206,46,84,171,217,120,130,179,131,123,226,10,158,54,191,64,2,174,188,154,157,217,73,75,188,67,251,132,113,242,85,191,48,138,75,134,51,55,136,100,102,31,150,164,237,79,14,100,128,153,148,86,187,225,131,155,144,167,240,142,74,7,44,43,151,155,237,121,236,51,209,167,74,201,43,25,33,90,107,184,53,198,231,133,43,91,246,220,6,179,51,108,45,145,144,39,88,166,64,11,95,50,124,66,195,76,113,194,222,201,215,163,242,20,225,52,121,176,218,87,55,139,237,16,26,46,86,251,91,210,73,233,26,91,195,193,224,95,118,40,92,198,23,88,12,215,101,
 94,108,123,141,94,114,98,4,201,204,232,43,43,253,166,98,120,114,32,209,141,226,111,213,199,244,130,142,202,43,71,191,99,152,3,72,90,199,66,8,130,151,152,172,224,68,147,127,2,85,103,117,233,122,177,177,140,213,171,195,126,214,23,23,46,141,138,102,234,246,107,195,128,58,123,38,80,84,125,6,191,154,26,17,137,1,118,80,199,73,149,72,173,135,214,38,2,253,111,117,87,1,188,252,106,97,114,189,240,25,128,11,101,98,138,233,11,71,245,249,135,17,204,178,88,213,75,48,107,75,115,83,20,122,125,232,99,9,177,25,20,85,35,119,141,126,217,13,60,23,50,195,211,134,81,196,56,54,224,254,107,86,184,55,7,207,241,76,38,121,213,101,41,117,144,182,197,214,77,96,35,222,246,74,28,129,206,185,46,77,0,245,245,248,87,40,214,211,253,148,102,114,105,0,161,101,197,225,208,141,234,213,42,133,184,174,194,129,207,121,219,91,3,176,239,5,165,185,26,129,115,60,58,107,48,180,151,6,225,236,246,0,134,122,237,22,38,240,172,119,28,246,223,73,185,79,101,251,242,9,53,110,48,157,84,8,158,216,201,127,191,101,13,86,16,1,177,217,
 104,74,33,65,209,13,52,11,235,122,208,34,21,203,141,141,191,119,52,3,92,186,218,218,131,118,129,62,181,35,48,220,29,217,178,78,68,77,243,0,169,9,147,149,167,182,150,172,40,140,140,244,46,147,15,148,53,145,68,169,176,99,205,184,212,23,137,34,105,243,167,241,95,11,111,213,127,179,170,115,50,110,204,126,62,86,225,158,234,248,245,72,230,102,254,187,78,200,172,110,132,65,209,202,238,187,170,105,32,105,116,213,164,127,166,137,48,86,15,242,196,102,180,239,137,201,150,208,208,232,155,242,50,16,64,21,11,156,138,94,77,25,165,173,1,218,53,244,123,126,201,19,65,174,155,243,51,24,124,6,41,5,17,50,235,244,209,193,74,91,81,248,96,194,192,146,124,254,120,22,152,45,44,221,44,136,254,82,170,91,111,38,89,172,41,182,54,234,0,123,20,189,43,104,75,24,114,147,243,93,2,237,116,36,251,244,240,227,80,123,199,192,158,75,142,23,229,56,234,23,182,92,127,196,129,99,136,68,200,80,0,28,164,109,71,109,177,177,152,144,52,21,219,160,72,113,6,34,147,198,129,78,77,173,19,88,178,182,236,90,178,109,137,198,205,20
 3,126,18,107,171,9,72,167,224,158,70,137,203,203,39,14,226,17,109,84,181,163,192,164,79,0,84,24,109,20,3,181,38,94,197,182,88,180,245,146,125,10,151,70,157,166,70,45,255,221,182,194,102,16,106,175,148,158,233,66,252,184,176,210,114,74,187,25,137,99,184,138,234,170,3,137,230,166,6,172,50,229,231,133,103,108,140,32,211,244,95,199,98,6,143,26,223,86,135,24,201,192,178,76,254,141,89,174,75,207,148,167,30,44,78,231,60,69,80,200,235,235,28,147,70,128,48,136,42,178,165,92,108,105,91,57,212,131,210,173,76,113,160,197,105,48,129,44,235,146,106,231,63,50,74,79,16,93,19,47,100,229,234,115,52,44,6,109,149,132,205,154,198,219,229,251,103,3,59,134,87,87,126,121,170,97,182,183,117,236,85,226,196,200,225,124,76,113,222,20,96,244,7,95,99,140,211,137,192,103,196,59,31,244,191,187,59,233,75,253,195,192,252,172,236,130,148,126,250,37,201,240,236,244,43,110,136,49,193,107,113,141,82,246,14,241,41,121,56,60,12,10,141,154,87,254,232,206,4,232,135,220,219,99,128,159,159,172,149,5,20,186,57,190,219,
 112,207,70,4,207,58,206,9,181,173,133,164,246,26,83,119,122,228,245,149,247,155,198,190,183,239,18,155,33,171,182,148,46,157,159,34,135,81,225,252,43,102,44,238,56,30,225,221,4,218,159,185,88,254,87,215,22,135,26,239,97,104,185,113,78,232,233,250,104,53,194,131,100,166,118,121,95,26,190,134,62,36,22,76,209,130,111,1,75,216,196,182,15,105,168,211,84,99,4,235,88,84,70,145,46,195,137,159,17,115,1,9,17,189,221,188,176,120,31,138,244,245,251,200,208,14,166,5,171,138,135,24,168,255,238,141,238,233,232,86,167,219,139,225,189,130,213,90,224,247,103,32,62,59,13,237,179,135,100,68,4,32,176,201,240,46,85,233,63,17,146,37,182,126,117,50,82,145,94,98,162,90,97,66,81,100,236,185,69,18,200,75,119,3,83,247,213,62,14,165,81,148,86,26,94,159,43,56,83,197,202,232,139,46,218,173,242,93,57,81,72,142,19,50,42,189,20,153,80,253,38,116,243,5,29,96,240,232,79,35,214,124,0,49,234,231,179,61,189,243,145,216,29,183,88,195,181,102,127,155,93,37,211,119,141,248,11,253,135,19,3,90,165,165,56,20,200,91,212
 ,154,76,166,93,167,65,242,228,146,129,127,125,173,32,28,227,169,79,6,0,124,189,187,130,240,247,214,67,164,33,204,69,194,183,95,47,134,77,90,34,152,196,21,236,247,138,63,125,129,22,161,184,200,22,94,178,103,133,27,33,174,233,175,191,16,164,45,228,170,189,111,138,218,6,13,193,127,188,159,153,28,72,28,228,2,234,51,101,117,168,178,177,180,83,134,123,210,170,133,83,107,236,239,77,231,236,178,148,127,108,191,166,202,174,239,167,27,59,184,124,51,149,215,66,30,149,232,125,83,59,182,62,18,167,255,250,65,250,160,44,177,63,245,96,184,83,152,103,86,87,13,125,202,19,114,199,78,201,86,157,102,195,206,118,222,66,6,43,139,50,189,236,139,184,158,117,207,133,41,90,40,9,238,202,102,214,176,217,76,184,21,114,252,44,193,122,238,156,71,74,55,14,161,106,191,159,79,174,125,195,46,87,99,32,155,51,171,98,237,12,169,65,46,210,106,128,111,85,239,113,182,190,39,28,103,109,218,107,204,137,236,7,63,46,131,121,209,15,37,207,59,34,17,24,81,197,167,92,128,79,181,59,163,255,158,220,17,100,8,94,33,203,78,15,9,
 14,71,124,141,89,243,19,46,168,195,85,92,117,50,11,229,141,155,84,145,208,151,66,110,119,87,230,106,66,168,68,191,80,175,84,208,16,3,163,3,42,132,180,170,203,171,215,136,57,70,38,229,215,115,134,159,30,68,193,219,228,34,47,81,185,15,64,136,111,114,189,89,9,135,126,67,253,216,169,110,216,92,80,19,116,143,95,153,243,83,44,86,12,213,164,240,19,251,156,9,43,183,154,179,21,186,98,122,217,120,18,160,173,250,223,75,167,82,235,47,5,26,218,234,189,19,98,81,165,112,18,217,134,59,123,249,213,162,140,78,93,90,150,156,157,139,150,108,32,102,237,13,49,208,185,183,50,237,76,63,25,10,139,132,103,114,230,70,193,42,218,187,190,41,207,105,133,101,193,112,147,174,223,255,177,145,119,89,115,192,178,6,5,38,209,10,191,23,52,206,1,77,2,51,96,176,97,66,35,224,205,129,229,160,183,80,189,184,151,75,239,206,253,186,73,249,158,2,16,159,63,65,174,84,238,128,198,253,14,110,130,76,133,230,25,24,0,39,123,70,110,104,55,97,143,158,42,119,249,14,162,31,107,128,196,116,48,217,247,134,200,85,120,132,239,86,80,70
 ,71,216,98,234,167,60,119,109,170,0,125,79,70,26,107,203,178,249,163,245,42,156,146,175,158,245,107,94,76,10,4,88,86,204,158,85,94,247,231,62,135,153,88,151,190,15,219,241,156,113,159,121,165,31,44,243,209,9,48,66,48,243,102,154,159,124,30,74,167,2,25,117,60,232,174,119,112,146,65,104,96,231,93,207,9,12,199,70,79,35,48,17,237,13,247,112,118,66,41,2,161,244,200,170,231,88,127,80,236,63,207,71,19,52,169,101,60,28,195,209,124,45,223,191,205,37,215,53,117,175,157,81,250,20,100,76,155,16,127,81,28,108,116,125,180,218,53,6,219,39,237,19,18,231,168,167,225,138,28,46,77,166,65,100,121,156,122,93,167,175,86,112,205,133,219,183,190,226,117,164,167,122,53,26,153,157,15,99,10,185,117,87,11,97,175,229,15,114,168,108,16,3,112,209,112,137,42,46,103,224,19,65,236,132,214,129,18,141,130,121,154,139,101,26,19,74,23,203,236,215,250,182,161,144,138,157,122,6,196,194,228,228,209,149,160,158,165,79,168,196,123,48,67,248,172,110,158,163,88,102,68,202,146,148,139,15,53,176,222,128,37,99,21,27,54,11
 5,120,95,114,217,40,23,42,170,144,60,38,36,144,88,186,167,245,89,54,102,13,229,69,228,187,11,218,32,101,62,10,9,145,110,230,102,9,26,93,225,23,106,198,156,142,36,46,14,22,146,226,155,19,123,166,24,223,49,174,218,89,73,89,208,197,166,225,165,69,186,91,174,117,232,236,213,170,167,119,62,150,25,190,68,239,198,168,48,226,221,190,59,70,122,234,149,108,162,84,115,141,39,128,233,212,148,229,109,104,61,127,178,59,176,218,17,118,203,57,250,213,185,234,58,132,123,70,140,160,49,223,47,113,139,34,98,186,205,65,149,154,179,49,52,153,58,49,213,105,59,216,60,246,169,34,11,157,235,84,71,104,232,239,116,16,164,64,90,213,65,244,182,41,170,108,152,60,43,90,132,113,141,229,155,159,173,61,93,1,103,190,158,24,63,50,58,110,235,202,178,107,107,202,82,77,63,16,69,91,103,121,160,137,105,199,195,139,52,79,107,64,188,103,163,110,184,214,165,121,147,123,237,198,173,40,69,228,160,244,103,208,2,121,168,165,46,58,49,38,211,156,105,180,3,150,14,161,243,189,178,198,208,138,168,125,62,71,191,178,80,19,179,39,
 100,236,230,230,11,110,202,204,97,27,194,25,240,49,238,74,50,163,227,243,165,146,225,25,117,153,165,30,222,213,130,220,127,28,79,241,176,252,218,61,83,155,194,171,34,145,71,97,127,143,47,212,129,169,72,74,181,241,133,91,119,3,105,183,181,244,172,138,192,129,101,255,42,14,50,203,67,9,96,155,16,133,245,17,195,107,210,3,207,107,18,54,9,139,115,251,1,156,250,97,80,189,110,216,252,90,195,114,6,194,201,4,224,80,82,70,213,102,194,150,29,79,217,122,93,227,18,47,160,133,225,48,106,124,70,99,167,97,152,68,226,243,212,93,195,149,170,191,190,166,241,37,151,251,54,136,215,6,106,243,224,220,48,60,14,240,186,140,151,22,49,153,232,229,238,49,245,196,228,232,87,17,159,175,36,175,215,62,13,121,59,18,190,231,242,209,108,161,242,19,164,166,177,7,73,111,125,191,24,237,4,208,188,29,83,79,157,140,248,5,113,70,236,196,24,153,135,63,201,206,1,2,47,109,32,208,249,27,200,120,131,178,253,164,71,46,40,130,15,29,167,30,59,71,181,69,204,251,122,82,189,119,254,174,224,2,94,246,234,251,82,243,209,81,80,170,
 42,112,92,247,111,64,113,27,224,47,85,58,191,162,207,101,50,229,173,90,122,254,206,233,197,174,168,163,74,166,254,43,65,250,60,126,202,52,1,207,60,53,195,52,254,133,238,138,29,87,238,187,131,24,250,212,12,0,168,176,177,197,144,117,214,20,77,187,167,55,221,68,66,23,248,123,151,47,132,89,183,69,149,211,12,123,88,158,172,172,217,134,4,94,64,89,109,110,233,112,46,75,181,99,138,189,78,110,79,137,51,186,112,150,27,54,167,202,234,159,226,163,56,136,176,45,14,0,64,34,15,234,52,231,28,235,33,83,102,246,160,48,35,13,37,131,246,127,191,202,231,71,232,94,126,228,31,203,99,122,119,189,211,151,36,85,87,8,180,236,109,88,218,42,230,21,150,56,185,186,116,55,96,147,28,95,166,170,240,170,109,5,76,236,90,0,162,147,46,57,181,216,182,16,178,238,178,99,93,73,226,218,193,129,179,220,218,145,220,31,211,159,177,242,251,7,47,51,226,249,112,70,143,192,28,245,50,34,167,153,126,42,67,182,47,188,22,250,89,93,133,2,143,126,217,252,215,237,226,142,64,86,238,7,236,30,5,146,180,195,211,213,245,0,129,223,2,198
 ,3,79,111,105,205,21,125,34,187,91,142,120,132,56,106,9,76,116,187,246,60,109,243,46,249,110,13,122,29,205,226,182,181,154,159,106,76,124,84,116,216,117,73,190,36,19,3,192,204,115,160,126,152,37,208,13,1,204,231,239,6,187,226,179,11,44,20,68,250,127,66,250,103,112,180,105,194,9,186,250,154,41,2,83,115,5,100,169,128,66,236,39,164,180,234,60,214,21,244,121,142,183,206,16,177,214,6,181,70,55,58,48,230,193,223,215,201,240,100,55,45,224,3,116,190,220,254,159,81,144,83,135,25,220,43,156,82,217,92,95,119,39,249,192,46,249,30,105,77,196,38,254,238,143,99,240,190,54,228,16,67,75,243,35,246,29,122,213,184,151,75,86,113,19,21,90,239,225,189,29,217,227,246,231,121,92,224,223,225,148,217,249,216,135,70,143,2,49,141,133,130,223,83,163,212,129,96,46,32,192,29,30,137,92,233,122,209,142,170,35,4,82,161,170,54,210,186,211,220,177,166,217,168,137,254,191,81,29,101,105,130,29,184,239,53,189,42,145,123,145,173,89,170,201,235,77,48,43,217,8,114,255,20,227,90,46,216,65,105,168,170,38,159,38,76,174
 ,133,215,139,186,183,137,134,142,111,81,226,44,214,210,108,215,53,124,219,165,148,54,226,96,174,6,28,3,80,101,81,155,240,118,95,224,115,102,198,222,193,185,209,94,122,129,129,232,10,201,169,253,201,205,10,62,103,31,23,117,1,64,233,20,225,8,2,89,4,239,180,104,107,192,97,76,202,43,53,135,83,12,17,254,66,104,51,234,135,135,223,73,72,222,207,185,143,142,47,35,233,165,45,106,223,220,218,167,144,62,72,53,49,230,161,57,195,13,69,248,231,76,90,51,7,156,139,133,32,50,114,83,174,234,166,218,112,200,251,194,193,149,80,220,93,101,173,182,204,81,173,95,162,215,179,243,55,237,228,116,84,77,253,159,73,217,205,229,146,22,54,116,91,23,142,153,240,170,211,154,129,135,44,26,95,223,107,105,196,98,153,86,200,158,100,63,24,210,67,147,22,5,126,26,31,125,136,68,241,210,140,154,240,123,20,204,242,20,134,189,79,201,104,137,123,28,101,194,106,108,127,201,31,155,239,75,210,194,255,70,243,47,245,21,207,48,113,42,34,157,232,230,225,56,150,81,36,204,36,140,228,40,89,191,204,71,99,165,92,136,167,187,224,58
 ,139,253,111,19,178,148,231,190,128,119,51,237,201,119,97,110,188,163,91,172,27,135,25,11,235,10,44,10,106,181,49,82,7,160,105,38,196,236,36,201,243,5,194,73,143,4,182,203,224,46,6,144,230,211,216,12,188,184,205,194,97,134,202,168,35,41,155,74,137,194,8,55,229,72,215,144,142,98,38,101,138,93,209,226,74,162,16,150,135,223,245,195,122,26,47,56,51,90,227,138,206,216,20,45,98,210,109,145,255,205,103,246,110,121,184,83,152,69,214,226,240,4,5,5,181,246,99,210,173,147,202,33,117,141,43,253,128,86,96,182,105,16,85,103,253,214,55,175,190,135,67,102,176,116,128,14,154,45,60,95,131,172,44,69,42,136,7,8,68,183,216,153,31,217,238,232,86,14,92,123,242,225,152,9,135,244,46,163,73,178,54,75,118,163,74,37,54,31,229,146,12,222,147,93,169,126,217,185,61,237,47,110,54,159,49,56,159,116,126,235,41,100,136,61,209,186,213,50,143,8,111,60,175,107,18,1,140,40,129,206,145,207,153,131,195,137,190,77,10,187,220,60,40,54,124,55,140,171,108,176,49,103,120,39,238,140,176,69,28,225,22,47,129,78,25,49,46,25
 5,204,211,1,20,231,96,194,134,156,225,188,46,189,49,167,99,52,205,234,99,241,101,67,218,137,1,212,177,221,157,163,137,213,147,212,83,91,1,96,199,43,130,196,111,99,195,212,102,123,218,200,69,240,170,248,204,143,9,130,119,224,106,132,117,143,248,93,43,134,43,138,84,171,73,71,89,249,42,248,16,160,168,42,116,166,46,114,186,217,209,7,31,58,58,165,14,148,224,116,97,52,215,156,247,222,19,244,108,87,239,215,157,99,47,85,80,228,43,218,254,29,10,137,23,230,34,227,86,139,51,52,223,47,255,154,61,37,128,88,225,139,129,48,236,172,156,246,226,46,197,58,73,74,77,177,46,30,14,54,167,133,67,89,119,66,52,135,102,44,113,138,111,217,146,11,222,101,79,143,193,56,172,226,192,214,142,42,108,248,89,145,58,208,128,87,14,106,18,235,222,185,200,46,90,144,141,196,196,105,169,241,252,111,147,33,193,146,74,243,182,124,193,230,169,116,188,67,172,117,7,97,225,24,15,112,253,192,66,73,187,185,61,131,169,49,94,62,104,3,10,27,230,148,107,201,217,175,137,169,75,181,88,237,103,117,87,159,245,215,175,124,166,105,2
 34,212,72,10,191,146,46,0,11,16,81,55,209,121,144,134,208,105,212,222,183,92,221,195,123,12,251,234,82,34,16,68,189,247,240,80,19,188,165,95,132,141,177,180,57,130,161,208,107,249,203,141,216,172,210,230,204,204,145,183,32,174,157,33,148,133,169,249,217,188,97,32,239,143,17,61,119,15,80,14,246,61,183,11,59,118,205,86,242,105,235,106,20,167,212,103,168,29,61,199,48,124,170,196,76,17,198,203,159,151,74,54,136,217,9,78,95,239,79,162,134,52,136,177,1,34,43,218,211,57,251,80,22,136,36,216,187,156,74,140,123,98,149,220,253,134,219,172,88,145,77,219,215,144,194,123,135,97,243,117,163,69,204,115,232,101,150,57,54,109,0,202,76,213,61,164,163,222,76,25,97,218,45,251,79,123,217,37,51,236,33,110,66,49,53,82,59,112,15,203,216,86,29,146,185,145,136,176,156,161,123,167,149,30,54,218,163,76,149,82,154,105,97,46,7,98,125,180,34,104,12,165,211,171,124,11,12,241,126,46,200,53,52,37,124,182,134,165,163,212,134,89,162,230,54,252,33,52,204,9,218,158,2,90,251,40,99,24,175,52,58,180,244,41,46,92,22
 1,194,234,129,182,212,41,111,127,222,47,140,116,130,45,173,96,16,197,110,248,50,199,56,218,178,193,85,238,202,136,191,196,26,81,214,90,83,99,252,195,189,64,76,82,50,105,207,66,218,54,20,92,107,1,2,193,186,16,168,240,69,72,240,158,134,44,93,194,152,20,188,223,211,39,128,245,61,41,105,9,191,249,137,142,37,67,117,50,248,249,246,176,5,167,29,96,219,172,134,101,93,47,149,84,118,15,223,145,222,103,107,218,229,197,63,173,184,225,159,143,145,234,209,189,121,252,91,84,96,57,219,125,20,152,244,1,86,123,137,137,45,47,27,95,106,135,115,139,162,28,58,210,59,118,101,36,155,210,218,87,123,183,29,144,19,148,14,120,130,107,111,20,111,34,124,51,134,69,202,54,206,179,88,213,96,138,193,177,227,24,66,150,204,112,2,95,155,90,73,160,185,60,141,220,27,170,249,248,195,38,32,59,220,70,198,204,81,0,92,86,75,255,119,79,111,80,136,67,115,191,123,92,197,225,255,116,245,12,55,55,252,18,26,81,65,0,87,60,154,187,54,198,159,158,9,7,136,142,94,123,5,211,123,228,99,195,250,77,59,84,25,209,103,205,73,96,18,224,
 171,38,29,242,216,88,93,158,217,56,51,30,54,118,249,237,211,250,166,253,200,222,134,66,54,33,141,157,218,222,205,145,84,50,50,189,11,127,57,182,46,192,199,19,67,173,70,34,231,194,189,253,134,85,143,150,41,137,55,64,210,148,215,64,93,193,215,98,76,187,232,95,122,69,137,104,131,254,86,141,92,75,233,122,41,122,231,122,199,7,113,157,98,116,27,48,35,171,85,102,46,117,87,182,51,146,47,103,202,177,126,237,159,74,22,26,94,24,148,70,135,178,168,197,12,51,119,26,61,146,110,19,54,54,160,101,74,108,118,55,176,57,134,142,68,58,87,80,247,245,174,113,14,175,121,228,46,203,24,207,133,88,238,42,96,79,42,100,26,54,225,150,107,6,94,221,143,58,211,123,160,169,204,16,47,3,34,12,105,214,59,15,30,187,83,93,42,189,204,70,248,61,236,128,242,5,149,19,14,214,221,107,134,84,40,238,180,217,182,214,209,18,13,224,97,42,28,189,161,9,42,224,158,75,1,246,169,228,28,43,30,221,117,18,251,161,148,45,165,30,137,255,145,72,194,220,77,137,74,36,26,10,117,254,252,192,78,149,144,238,102,61,7,75,158,8,223,150,172,4,1
 54,111,7,218,236,14,120,74,54,243,16,216,160,165,201,237,231,165,219,181,112,214,71,56,158,156,155,82,13,68,151,155,42,244,167,144,98,205,125,132,44,183,59,60,240,91,20,105,146,84,211,235,168,52,95,130,227,152,83,220,18,240,41,249,238,57,30,43,65,141,40,210,4,157,234,243,49,57,222,182,179,142,201,82,131,175,176,159,171,168,64,215,19,175,137,246,79,99,130,45,113,249,39,202,16,41,172,166,198,176,207,254,5,224,25,124,224,205,73,158,164,190,11,175,251,144,129,114,228,125,12,46,206,86,139,35,111,32,155,107,42,126,121,217,73,198,67,183,226,81,104,190,247,58,89,177,235,149,113,79,161,212,180,157,131,129,45,123,60,212,165,226,77,32,79,235,87,98,244,77,165,170,8,73,57,132,68,136,110,0,165,161,135,105,92,64,127,214,188,69,244,172,44,73,70,178,44,242,206,128,66,27,118,92,54,162,187,152,123,215,73,205,120,84,183,76,210,143,121,117,227,59,224,168,77,135,255,114,138,46,95,130,247,187,35,39,76,106,205,103,180,157,132,187,73,141,172,41,53,176,48,228,144,243,162,150,23,55,166,9,250,62,233,78
 ,88,243,160,188,58,104,75,109,244,135,148,61,9,20,119,6,207,175,53,245,77,158,165,47,65,210,221,59,160,11,168,5,144,65,100,188,207,246,114,226,129,84,136,17,161,178,176,61,107,66,105,91,154,75,31,6,242,80,243,73,180,23,127,91,247,248,49,220,40,235,11,149,120,179,35,251,123,194,144,61,158,145,27,217,103,209,84,186,192,121,17,42,221,20,90,62,126,124,254,219,178,112,152,241,251,162,169,155,180,171,39,193,255,215,56,54,189,166,159,196,82,119,36,26,133,5,163,238,173,181,77,75,181,73,195,132,145,222,31,22,162,25,48,188,73,118,103,0,164,77,179,179,134,184,136,220,196,151,100,34,111,226,27,97,23,97,35,82,128,84,11,35,84,255,112,193,127,36,200,75,132,158,182,229,6,34,180,166,181,98,98,117,173,23,155,167,110,32,82,44,117,43,146,87,142,103,151,210,202,131,140,226,143,123,81,121,92,175,189,27,33,10,33,125,182,82,32,172,171,152,138,153,246,53,138,80,22,0,97,116,109,227,133,175,18,146,193,217,27,52,16,21,109,220,96,203,176,124,121,243,200,195,50,90,153,254,206,27,37,251,93,108,148,122,175
 ,146,13,240,224,148,222,4,5,30,132,3,34,100,154,206,244,167,20,71,134,44,0,112,159,12,226,85,130,144,150,60,206,123,232,0,210,37,208,149,109,38,192,202,35,146,249,148,102,63,4,36,133,163,181,129,39,74,11,223,44,195,123,160,246,22,132,62,73,164,36,5,109,83,200,25,143,126,15,17,43,154,182,34,80,220,50,134,229,150,185,33,28,83,135,94,225,5,2,92,148,96,102,196,105,47,78,60,97,211,252,72,95,145,116,141,60,61,94,88,116,99,14,52,221,123,213,159,6,141,235,176,244,157,77,154,6,208,103,176,24,68,107,151,104,164,168,126,174,234,143,28,197,99,103,143,225,211,210,235,238,79,89,250,124,41,230,106,231,198,44,11,143,61,235,71,79,167,181,254,34,182,163,25,42,97,242,50,164,21,209,14,251,247,60,61,32,198,199,21,207,104,59,32,132,139,186,254,165,206,151,179,75,123,186,101,236,236,52,75,244,177,241,79,116,6,57,152,22,93,153,45,70,178,224,115,82,86,85,158,114,251,29,219,41,80,174,43,1,241,129,99,238,82,34,17,9,155,125,173,29,155,200,188,226,186,0,142,252,193,42,44,220,56,96,138,77,120,212,175,180
 ,8,218,62,186,4,106,226,240,138,42,11,100,132,175,39,86,180,136,134,35,36,117,224,33,75,166,154,25,194,227,188,187,230,115,210,122,243,74,72,187,104,173,193,35,15,204,29,245,223,176,44,36,21,175,193,174,69,69,76,219,244,200,19,153,22,160,255,249,254,209,230,151,199,152,217,180,118,21,138,241,144,87,106,141,127,104,170,159,106,42,56,36,141,239,185,197,239,57,75,225,53,66,207,124,17,228,185,108,113,252,8,166,181,73,158,90,200,33,232,230,113,14,83,63,14,137,239,195,188,6,107,43,29,243,142,68,13,41,138,210,23,201,170,253,85,168,175,55,10,220,121,157,53,136,251,39,113,16,196,99,195,125,233,85,216,93,42,101,110,225,217,92,29,134,4,199,38,40,31,86,97,95,162,77,141,93,221,3,166,118,237,11,222,177,86,45,96,68,213,125,52,38,87,174,184,171,220,255,171,1,15,98,178,96,39,88,162,231,116,116,136,199,232,87,136,146,1,54,79,243,228,244,43,174,135,248,141,100,79,28,243,45,151,168,255,142,87,60,165,172,197,232,234,250,0,54,218,9,218,183,73,39,190,53,67,209,233,71,130,195,169,139,92,138,190,210
 ,228,80,125,250,23,244,104,108,236,66,63,169,211,71,195,12,137,128,162,17,150,69,253,223,232,220,244,119,17,71,225,10,88,70,32,37,79,244,154,78,180,34,109,157,211,91,205,18,122,100,160,28,76,130,205,127,177,83,156,27,99,39,118,121,174,228,3,94,219,218,116,151,248,70,223,246,200,36,140,239,240,37,213,126,84,185,238,86,248,210,118,61,182,180,250,47,18,235,63,44,155,178,225,104,50,160,66,36,51,211,17,178,181,6,92,24,253,34,182,248,148,108,44,165,101,89,93,28,60,77,67,254,86,179,120,122,203,228,119,164,61,125,149,175,147,103,146,243,244,236,7,18,37,18,38,219,119,96,171,247,30,219,105,19,188,29,253,69,174,144,49,38,106,221,106,151,238,255,210,201,184,245,24,125,204,53,205,10,152,114,175,186,168,10,197,67,132,161,65,217,33,233,98,53,90,113,248,72,67,55,0,207,203,204,84,158,222,105,101,33,192,184,131,39,124,232,223,185,191,19,232,60,174,211,55,188,78,252,127,187,80,126,97,171,181,164,130,208,177,226,99,152,40,185,50,66,189,13,198,132,150,238,50,158,207,220,138,147,23,190,204,90,21,
 21,227,70,212,141,43,247,229,192,54,121,138,167,132,81,52,145,12,201,31,46,171,4,108,163,147,156,132,86,136,214,145,108,209,15,27,108,229,13,137,120,226,96,206,57,191,40,13,159,138,106,106,87,234,127,49,28,169,202,159,177,255,29,165,85,209,143,16,244,32,222,32,167,155,149,205,226,68,116,166,104,148,146,209,22,33,204,233,127,123,228,90,11,83,20,222,194,157,205,69,220,206,24,246,7,92,204,64,86,214,57,21,172,217,4,145,2,1,192,74,78,137,207,112,210,150,33,239,154,139,159,101,229,21,121,187,209,135,244,62,0,80,102,199,229,243,56,59,147,36,213,240,48,186,4,123,201,188,16,217,103,186,89,7,176,160,34,124,168,234,185,226,4,34,217,65,105,142,233,52,243,36,8,139,18,5,75,182,55,22,43,110,87,86,56,179,227,126,241,68,77,200,0,246,218,200,93,1,5,138,108,203,235,143,89,170,85,230,122,125,10,227,51,196,114,43,79,195,247,188,124,19,208,54,242,146,84,244,242,135,110,34,1,112,53,252,211,235,90,43,206,56,78,71,176,93,155,131,255,70,143,218,131,24,200,22,88,109,78,155,200,228,177,119,250,221,175,
 81,139,166,139,253,4,107,208,168,55,0,129,85,136,183,233,229,170,170,136,214,239,52,184,198,170,183,177,254,245,17,159,36,90,49,136,116,112,239,62,56,199,21,211,103,247,172,253,114,109,95,10,17,146,243,50,212,31,90,136,246,242,87,179,56,41,81,67,87,90,252,190,83,208,103,144,14,56,17,33,180,72,226,161,254,228,185,58,118,53,166,173,83,43,96,26,92,21,76,69,117,150,214,58,95,165,60,206,109,96,182,60,51,11,21,182,220,20,25,153,210,244,14,25,92,78,188,216,205,82,203,228,126,70,147,154,161,61,109,1,140,193,11,186,57,237,42,254,34,195,89,215,117,150,99,162,91,190,1,154,153,195,39,184,112,141,42,115,108,127,124,229,165,18,73,206,124,41,118,199,91,163,133,189,161,152,48,145,29,35,87,215,63,76,173,206,80,203,90,117,206,113,192,107,140,220,144,236,232,6,102,45,225,220,33,199,135,37,52,249,112,223,79,53,130,91,167,79,155,154,188,201,32,56,95,197,184,63,53,177,254,1,155,182,137,34,83,42,182,95,82,51,57,94,196,74,189,98,171,127,117,140,140,98,89,103,32,229,22,100,209,182,124,201,175,97,66,
 42,64,203,140,155,241,128,128,57,41,100,140,209,184,216,24,78,109,141,98,150,68,201,254,16,24,14,111,72,80,9,53,194,233,215,23,190,2,241,69,39,10,89,128,249,253,234,190,97,223,57,214,116,3,128,213,125,240,118,180,168,225,247,98,175,232,172,163,229,103,116,121,90,128,236,3,239,173,14,134,103,57,1,246,180,205,174,216,164,149,34,77,144,254,220,0,180,44,10,101,35,251,6,139,110,171,114,59,170,178,243,173,223,153,177,146,195,28,10,195,239,107,139,98,94,116,229,145,115,250,98,75,43,10,117,59,39,77,103,255,249,164,1,56,195,216,137,158,160,203,250,233,136,163,158,26,253,171,198,188,132,35,97,115,194,38,78,172,162,178,157,22,100,144,114,214,141,91,229,136,38,202,217,210,70,109,101,78,92,135,255,239,63,64,144,111,74,189,176,234,62,158,179,248,158,150,240,17,103,223,90,99,50,243,40,135,136,144,223,120,201,138,115,54,140,116,50,122,154,135,54,166,236,9,105,126,74,9,48,202,239,255,39,28,161,112,121,72,18,115,183,158,224,150,174,136,13,51,135,229,226,250,167,48,222,151,33,68,90,73,113,247,
 249,244,116,63,115,94,201,78,194,37,220,250,123,109,5,175,35,33,24,173,225,187,179,24,43,78,77,26,49,115,184,48,114,206,201,252,205,132,239,181,141,73,148,74,99,180,31,23,238,132,33,95,167,147,144,0,236,8,74,163,196,175,146,41,12,109,227,125,74,7,56,27,158,177,188,105,59,14,68,219,148,80,224,136,39,113,155,115,217,201,54,45,94,125,112,178,249,81,75,219,68,208,247,247,130,27,230,189,147,137,70,206,61,194,111,136,82,236,147,146,60,185,24,203,51,253,244,190,37,193,134,115,92,51,186,128,192,72,185,73,185,96,13,138,132,199,12,169,92,99,21,106,119,13,219,8,3,129,243,100,76,34,61,172,119,208,67,204,169,139,44,88,136,55,82,74,239,244,169,14,20,230,252,38,230,189,212,13,174,239,138,186,80,135,32,49,186,251,160,43,158,69,199,173,139,83,185,184,238,84,197,220,246,251,139,86,79,210,255,248,146,13,5,215,89,87,59,72,129,104,159,99,193,72,113,41,93,133,7,20,93,81,149,54,12,16,234,99,14,125,7,183,162,67,156,249,26,79,18,186,121,144,142,127,71,127,203,217,141,154,119,178,138,96,108,142,191,2
 13,195,243,130,95,204,21,95,14,183,40,80,227,95,135,211,159,40,169,148,159,200,34,20,134,194,132,6,112,251,221,15,74,253,18,175,175,177,101,0,162,58,139,169,150,126,26,189,18,110,52,193,51,5,0,105,190,37,24,217,183,27,145,198,104,72,86,228,162,156,180,244,113,72,21,235,111,154,129,191,152,235,97,228,48,8,92,128,141,164,155,14,158,239,116,134,190,126,189,87,164,63,21,32,197,224,111,57,158,26,148,136,163,162,75,67,145,114,39,221,240,161,38,187,84,37,169,54,6,212,255,69,187,53,118,113,3,80,213,172,176,32,94,27,150,173,128,165,200,119,69,237,65,62,218,2,140,213,74,243,207,123,18,230,205,18,254,163,227,97,60,245,36,158,117,249,34,49,171,231,65,144,88,54,7,235,227,181,148,113,87,103,190,225,19,229,82,177,39,80,91,54,177,2,41,95,216,8,7,237,8,117,70,160,29,35,137,100,190,158,194,153,55,110,85,178,0,35,195,220,74,38,161,138,154,102,166,29,220,33,208,117,121,114,19,199,129,112,159,32,122,68,159,48,68,48,125,227,76,189,51,37,217,51,157,109,26,5,65,181,206,116,227,243,146,110,189,251,7
 3,160,128,43,159,163,188,134,208,104,181,138,185,60,46,188,248,155,150,220,175,211,136,45,203,198,34,224,198,187,181,173,84,169,4,155,194,43,103,46,188,141,235,196,100,19,73,12,95,108,22,229,41,49,65,127,92,100,213,51,83,14,237,241,72,94,103,125,154,60,84,147,133,54,10,90,226,91,156,100,223,71,78,140,197,133,43,230,234,190,1,191,28,125,221,144,133,206,184,167,104,233,148,132,138,160,164,109,15,207,28,214,187,31,199,62,23,166,158,116,197,23,11,17,38,201,151,11,173,85,127,98,219,161,167,69,215,215,18,133,224,61,27,5,223,202,104,174,161,81,188,80,1,37,165,56,46,112,124,223,123,11,115,251,251,222,78,163,151,179,66,170,116,255,231,57,55,185,58,158,147,124,182,196,59,128,108,154,193,4,80,177,150,34,54,153,29,96,4,166,246,45,112,116,176,104,137,239,131,174,103,28,53,3,77,103,25,130,103,108,254,6,184,203,80,108,199,76,148,149,172,102,14,153,75,140,106,22,19,73,98,127,56,32,18,87,161,254,184,188,225,80,92,134,84,123,1,188,184,65,154,224,254,252,46,134,33,202,16,169,70,27,234,125,219,
 107,199,134,88,64,31,46,84,94,207,128,68,167,132,238,16,122,146,10,126,31,133,99,21,194,252,221,131,56,248,25,174,233,199,55,116,158,211,52,51,49,59,55,250,171,236,202,117,202,181,106,248,215,97,100,38,61,76,240,187,232,63,82,95,92,252,70,170,242,40,103,172,72,49,45,121,53,202,25,176,69,155,14,141,139,135,195,12,39,125,101,161,43,46,205,1,181,25,40,223,228,109,95,159,70,189,149,135,7,194,44,19,12,133,91,50,114,69,30,95,224,53,41,211,192,106,56,85,41,203,33,16,223,123,86,218,98,137,87,112,246,243,205,112,156,230,58,189,148,15,214,247,32,212,20,78,16,22,185,21,180,52,236,99,236,8,104,221,16,64,179,139,10,7,82,8,214,229,156,31,111,200,10,69,153,240,81,217,104,185,127,18,207,50,20,175,166,50,253,93,1,219,129,84,11,252,151,134,88,66,210,205,53,32,129,46,44,58,84,245,13,189,53,111,82,235,232,128,159,13,180,27,71,231,48,158,248,41,82,177,155,218,231,63,222,214,180,238,120,157,33,201,38,227,104,161,46,9,161,62,142,99,41,216,132,2,33,201,9,244,242,35,6,74,245,54,61,112,75,95,14,242,1
 44,254,253,203,206,244,169,8,82,226,248,22,138,46,87,235,39,90,254,255,23,187,47,127,207,179,62,180,95,42,150,227,40,45,205,164,19,44,74,85,209,83,14,143,208,152,206,4,179,122,99,115,92,48,138,104,211,181,234,88,14,246,164,1,225,165,13,143,71,134,59,212,237,147,246,186,141,160,244,27,14,252,111,152,192,122,248,254,20,127,13,132,148,211,13,24,209,213,45,144,252,96,226,43,28,116,32,17,2,251,40,145,146,83,124,98,203,1,42,120,34,124,121,173,228,167,174,57,25,210,204,66,91,180,185,74,112,255,168,248,179,210,224,144,7,49,62,98,80,212,115,49,122,190,126,132,175,27,3,94,247,115,50,32,233,193,93,89,149,46,8,57,218,89,136,89,169,57,211,84,69,252,53,20,2,37,160,102,245,41,255,252,167,20,157,98,75,236,13,103,158,223,210,200,112,232,13,179,226,112,158,29,33,146,127,153,4,15,42,69,253,15,91,161,19,203,182,110,189,205,110,18,198,74,38,250,33,52,159,166,117,134,213,57,95,160,232,159,53,95,187,48,14,137,60,247,135,211,20,90,149,242,179,5,90,55,80,48,216,109,43,7,229,202,70,148,122,148,180,90
 ,189,51,122,253,249,140,212,248,243,96,72,229,70,214,60,154,112,13,53,232,198,242,200,124,142,1,34,155,192,177,179,1,147,224,149,224,123,25,41,234,20,9,168,28,120,16,46,105,216,252,8,163,90,33,243,153,160,76,144,241,9,252,136,237,222,239,158,0,238,57,116,5,49,127,131,16,67,37,247,251,126,187,21,21,147,171,5,63,82,202,187,236,20,214,113,59,147,226,233,187,67,192,182,54,217,87,53,4,205,204,149,231,179,155,170,70,174,163,192,94,230,60,80,88,239,174,8,21,250,123,201,194,73,97,35,134,172,27,13,189,160,165,44,75,45,49,174,107,227,29,59,45,149,138,176,49,222,36,195,92,57,28,106,232,124,36,162,250,206,241,1,232,72,121,246,164,92,213,101,58,163,201,219,40,128,109,189,73,94,156,121,144,39,80,153,102,51,40,240,224,110,211,190,73,211,236,128,175,4,223,239,225,26,132,255,143,126,169,141,229,137,36,131,8,248,225,217,124,52,57,157,181,212,3,21,167,167,239,78,174,168,168,86,244,99,167,153,13,125,20,2,175,124,108,55,14,213,100,1,10,159,10,141,132,207,77,125,243,172,97,6,183,188,12,206,143,14
 1,98,132,176,101,251,88,3,242,11,228,110,186,158,85,169,57,149,240,233,226,203,124,131,254,144,4,87,170,159,247,128,45,80,84,250,193,74,97,217,24,230,80,215,137,184,196,174,96,116,184,100,19,81,155,77,117,184,239,28,8,112,74,91,56,253,191,65,149,9,9,120,160,104,204,215,161,45,8,32,55,154,232,225,72,201,36,140,199,5,214,160,156,90,107,208,8,124,124,148,146,242,105,105,235,166,14,3,122,1,1,73,154,204,14,107,132,103,12,138,42,227,154,103,15,81,154,206,78,182,76,175,69,72,185,136,24,174,113,70,211,140,137,66,16,75,192,142,229,56,62,224,168,216,68,156,13,216,16,48,85,158,183,151,198,113,12,206,73,110,117,158,41,175,200,63,1,127,111,104,214,111,200,195,113,130,196,88,239,194,244,142,245,38,216,240,193,130,136,59,239,44,16,200,20,13,207,253,117,215,93,89,231,242,121,81,218,181,154,59,252,169,246,64,216,159,113,71,228,96,45,215,45,85,4,103,29,113,220,52,196,254,207,41,63,199,12,49,196,182,82,188,52,19,143,8,233,219,164,231,98,201,194,165,50,197,79,18,31,60,105,209,43,37,197,191,203,
 3,240,28,96,27,73,168,176,79,27,100,252,168,3,109,101,154,66,210,3,39,162,221,79,40,244,93,192,237,66,123,164,209,122,222,172,72,175,94,68,212,144,16,199,204,183,173,189,36,32,76,132,115,108,240,40,206,243,122,247,187,158,62,223,16,151,216,27,218,104,180,245,34,26,189,79,205,119,167,127,193,67,239,49,109,140,204,32,172,88,25,56,142,95,30,63,107,197,204,194,55,219,89,125,25,104,0,201,208,111,252,77,238,255,235,2,105,76,106,51,184,71,109,155,169,35,129,241,241,189,242,214,163,210,99,208,88,6,29,224,55,37,250,202,226,186,10,248,183,159,22,190,100,44,74,230,102,183,0,231,195,216,132,78,145,232,49,1,0,78,19,131,96,35,130,232,176,38,139,136,131,20,72,102,216,143,124,63,205,143,141,103,149,68,128,188,206,205,195,230,63,143,243,165,51,192,8,159,85,93,246,177,196,196,164,232,190,192,127,84,209,82,145,97,17,138,158,208,79,4,81,33,249,89,225,206,181,86,60,196,12,83,104,78,121,133,196,60,185,4,247,36,6,164,187,173,247,129,51,31,9,149,231,26,5,86,118,92,2,101,28,30,155,133,123,113,98,23,
 7,44,23,214,73,211,30,192,60,30,20,153,113,174,87,165,80,220,160,189,131,247,153,135,191,40,67,163,187,57,74,50,60,122,87,167,194,78,188,20,252,46,9,199,254,131,190,196,166,231,4,21,62,87,14,200,250,249,14,164,20,199,36,170,78,142,168,211,70,3,110,235,251,176,159,228,226,189,16,77,141,96,180,177,212,87,235,104,200,212,170,32,83,1,189,83,114,250,103,18,94,33,224,2,64,225,144,107,31,116,38,100,198,175,138,112,168,126,3,108,106,39,47,88,126,82,131,95,4,236,8,249,99,33,221,235,78,30,73,121,215,6,30,116,157,36,206,192,213,43,228,255,245,172,18,57,64,46,153,50,195,162,116,202,213,184,179,199,146,36,42,30,141,238,94,121,208,106,87,36,149,61,168,139,112,125,50,239,181,4,216,222,211,162,30,103,211,52,107,81,177,126,156,50,74,27,241,254,35,115,158,153,200,213,168,241,112,92,235,232,16,178,27,203,40,93,218,136,61,95,162,127,167,193,2,94,57,69,62,164,186,15,51,170,25,159,147,114,63,232,121,7,85,88,240,205,30,101,255,216,174,53,175,67,33,248,40,225,6,125,222,113,64,172,109,36,113,92,76,6
 3,6,20,66,182,172,62,104,68,118,146,129,243,162,8,11,228,108,105,170,98,148,210,46,212,71,121,169,138,6,63,129,101,45,154,181,72,123,101,147,221,20,214,183,131,57,12,42,157,168,193,10,28,198,87,101,183,115,122,164,149,106,167,203,88,39,28,55,232,62,39,214,188,189,136,39,88,156,181,93,14,238,138,18,168,142,47,69,43,211,45,245,89,178,154,26,50,10,237,66,190,177,61,68,26,78,20,86,175,215,66,27,20,146,64,53,216,70,211,26,185,83,204,215,195,155,27,234,131,222,105,248,56,210,116,161,235,201,202,150,133,64,84,25,10,94,79,233,115,26,176,74,101,162,68,217,90,69,194,198,220,164,35,92,136,79,221,35,105,132,24,25,110,6,132,208,169,54,224,47,84,241,81,128,18,102,142,234,156,122,176,146,159,208,126,167,121,135,32,115,187,88,174,134,201,212,120,238,198,144,232,64,2,169,131,159,103,3,129,207,127,255,113,156,148,41,50,213,218,124,153,183,117,3,94,62,157,111,127,111,234,131,214,233,57,202,2,117,156,217,212,209,113,20,235,47,141,13,91,123,108,214,97,247,188,42,36,233,172,115,107,151,218,128,11
 9,129,150,252,89,235,111,249,180,162,185,151,102,60,212,157,190,145,85,177,56,6,139,219,228,240,12,175,161,171,125,125,37,72,96,185,249,21,155,210,0,196,17,113,38,74,2,98,159,153,18,111,30,64,227,192,206,108,144,211,227,216,243,94,166,142,18,226,212,130,129,146,84,46,151,250,205,197,108,169,237,31,100,69,240,92,126,79,168,19,184,56,47,69,136,210,191,73,104,253,15,123,108,107,110,74,117,224,31,107,7,41,184,229,236,183,117,4,187,74,91,110,223,251,0,5,5,206,60,96,31,24,252,221,186,124,8,239,208,35,152,191,71,78,39,105,106,102,96,229,218,56,164,156,106,175,143,26,79,30,4,44,229,111,207,69,187,174,49,200,128,112,230,206,244,204,35,169,9,46,41,150,234,99,170,160,127,175,23,54,140,197,183,167,33,101,54,36,58,113,89,32,171,202,2,163,22,103,43,75,0,192,124,103,214,42,238,166,250,104,29,120,167,79,144,55,213,148,247,239,15,32,221,229,211,136,116,144,74,104,215,3,118,111,20,248,1,187,110,106,75,50,111,130,175,49,227,225,6,255,85,231,49,237,234,76,148,222,60,211,146,182,128,170,247,160,
 121,117,64,178,150,157,83,66,136,59,31,168,191,162,83,243,73,127,131,208,156,236,200,0,98,53,19,240,28,146,151,89,139,39,209,220,45,103,32,202,71,210,52,46,235,231,213,65,27,205,60,243,75,204,53,26,89,29,161,115,146,226,190,65,180,136,76,44,248,98,252,255,67,165,43,171,255,9,96,71,96,242,127,210,76,104,199,199,50,60,147,55,4,32,4,123,33,183,182,196,224,106,236,61,73,143,249,132,183,90,58,181,165,105,193,44,204,32,235,227,72,244,66,33,213,116,176,206,145,108,174,107,77,118,124,148,79,147,170,220,11,253,163,164,85,138,55,80,112,136,52,154,167,97,148,153,103,72,101,121,183,3,214,255,101,233,120,105,138,235,179,193,23,222,232,24,61,148,144,89,252,37,45,22,11,159,251,186,181,123,130,175,5,202,109,129,132,160,90,215,60,254,232,232,6,77,235,254,88,233,2,30,127,86,134,170,223,190,116,205,1,153,210,134,10,213,141,41,34,158,190,3,255,64,207,90,8,85,162,58,79,23,140,112,35,141,73,121,184,253,40,224,32,246,227,64,177,180,43,140,235,12,80,136,153,132,67,29,121,161,201,22,82,251,235,127,5
 2,214,31,84,123,38,212,197,10,201,43,97,26,241,139,47,206,18,140,164,189,17,26,208,31,3,162,103,60,200,125,73,4,87,227,29,70,137,223,222,155,183,131,44,81,64,114,156,92,62,0,33,182,182,55,169,33,44,174,11,74,141,21,72,49,60,169,205,201,67,234,61,211,243,249,13,65,19,181,135,114,138,209,129,0,211,131,9,85,126,204,52,171,154,37,79,84,224,176,72,54,61,179,14,44,108,194,205,124,120,145,54,172,114,3,15,178,141,194,213,82,185,186,91,252,163,156,0,129,78,237,20,65,142,44,30,104,58,67,77,228,72,150,62,87,35,155,57,115,175,146,48,158,198,210,11,200,144,238,222,217,150,215,158,52,73,243,155,227,211,65,92,32,43,191,77,18,115,148,90,148,28,87,30,105,239,234,135,132,222,102,142,34,84,131,115,152,40,111,76,28,154,172,171,74,13,56,102,233,197,97,70,38,24,190,149,223,106,249,177,199,44,5,233,46,63,96,191,227,215,172,37,187,110,22,14,57,92,148,146,106,158,103,249,165,145,59,120,6,243,227,46,112,46,6,92,196,114,19,172,191,12,154,63,97,186,130,204,54,162,94,49,83,0,221,21,250,209,170,187,184,1
 97,196,143,22,44,188,17,99,115,156,70,14,72,215,243,201,134,227,223,188,222,64,163,192,17,162,246,221,28,10,5,171,67,80,117,187,109,123,86,64,8,38,150,160,143,16,104,155,208,110,147,84,63,208,22,100,11,19,180,243,204,250,206,13,92,68,121,230,122,16,213,60,85,160,148,142,34,51,138,28,30,136,232,140,18,136,160,241,185,121,28,250,142,127,128,119,244,215,234,7,62,149,112,239,2,75,42,183,234,30,47,48,73,228,218,124,99,69,123,221,60,8,113,118,21,4,202,221,240,211,219,172,66,251,171,52,103,239,214,202,145,177,194,251,223,93,39,188,41,217,244,183,134,205,199,161,124,28,4,156,72,250,186,154,145,204,41,204,82,238,249,49,160,7,72,210,42,151,20,73,91,191,150,76,22,94,160,63,238,105,213,90,67,164,42,14,47,83,65,57,22,184,81,155,3,192,83,195,31,128,178,31,216,72,118,134,34,37,233,98,110,74,87,59,109,240,191,253,128,223,134,212,108,184,123,201,80,173,207,187,228,173,158,251,23,184,192,122,151,154,70,88,229,33,13,111,166,16,63,221,119,46,190,93,15,19,114,10,158,131,80,217,207,52,117,189,88,
 72,24,10,82,247,225,187,164,220,223,231,128,26,79,54,2,135,148,89,225,174,58,190,191,71,82,51,157,36,202,196,12,241,102,183,238,120,72,225,3,93,109,250,178,25,169,27,73,130,98,15,109,223,4,0,80,223,254,208,70,139,63,198,19,39,57,13,36,236,176,135,150,7,13,152,100,226,49,65,96,208,168,18,26,91,114,139,121,41,46,254,56,79,81,181,61,181,16,69,137,4,202,69,99,165,71,157,121,139,11,94,214,1,85,216,95,216,137,215,21,230,212,172,246,140,110,107,19,46,130,115,175,119,165,178,30,97,174,172,21,95,2,185,44,138,179,151,90,216,172,223,17,216,174,178,213,133,66,36,251,153,63,132,31,249,76,246,175,173,154,236,238,215,161,178,82,2,14,55,254,183,122,243,241,220,220,94,56,112,183,195,43,37,113,139,218,13,37,10,36,119,117,107,103,74,48,157,129,29,155,33,142,51,43,146,170,86,208,72,97,199,104,141,217,83,181,137,209,44,158,52,174,180,213,202,215,141,150,161,212,42,111,103,195,216,237,171,165,238,95,37,58,77,192,45,148,32,33,91,69,171,15,56,222,199,177,181,175,55,95,109,180,78,74,60,143,86,10,171
 ,95,18,27,32,251,46,140,203,179,168,168,226,179,131,203,25,73,139,185,29,195,114,123,72,191,216,97,130,199,255,231,174,130,100,120,157,152,66,225,121,219,86,87,100,196,180,1,8,80,23,125,55,245,229,166,17,147,13,119,124,172,211,135,239,28,45,56,86,24,220,198,38,28,111,11,121,84,219,0,25,124,8,100,235,147,177,185,246,6,118,74,87,209,228,66,172,139,146,228,53,68,140,100,77,99,38,42,166,160,79,87,131,78,185,64,39,221,20,27,22,37,156,246,223,95,160,211,149,183,104,47,96,38,89,245,14,124,149,219,44,118,172,99,77,198,2,146,140,109,129,160,66,80,217,216,207,97,110,209,132,9,238,22,133,247,170,92,238,63,10,48,118,71,121,183,161,37,95,4,44,79,41,73,185,182,52,32,89,24,111,4,58,201,227,233,196,47,205,185,56,79,253,121,63,161,251,251,198,203,6,49,69,27,69,124,145,68,227,81,185,3,135,120,177,75,159,141,82,76,42,26,86,60,212,186,86,118,74,6,46,61,42,251,189,25,102,58,89,162,59,201,218,163,176,116,227,242,81,183,231,174,166,251,167,193,213,81,155,108,246,166,250,59,141,80,68,49,51,182,226,
 113,183,245,127,124,241,156,92,190,169,22,210,14,170,126,192,127,170,39,198,195,46,228,121,133,192,179,106,97,74,143,234,178,45,150,179,129,93,193,34,247,142,249,220,188,38,183,185,237,35,156,20,60,200,14,171,227,73,27,122,98,244,72,237,140,220,3,72,202,49,120,3,226,230,52,157,28,67,92,125,34,153,107,239,143,229,132,70,83,151,75,222,145,192,249,228,148,195,35,229,33,22,157,7,75,145,216,88,77,91,22,87,125,247,74,112,71,171,64,180,168,56,250,90,29,66,77,169,248,58,88,30,54,9,177,238,107,200,178,201,196,155,87,129,199,15,4,104,62,128,214,4,3,171,29,165,158,17,37,178,143,155,180,45,84,11,112,75,116,87,102,80,50,141,119,102,101,122,233,233,122,60,200,196,204,80,171,128,214,51,80,157,58,196,67,240,174,204,25,53,46,127,10,200,188,183,144,9,31,186,189,82,39,216,180,226,63,225,226,28,221,233,242,210,194,29,56,209,172,227,33,226,75,129,126,166,66,92,29,28,77,190,13,7,44,63,246,177,207,0,212,70,8,70,228,112,55,196,54,94,30,54,153,66,158,85,205,169,66,106,2,241,99,86,186,169,40,247,143,
 133,87,75,101,134,223,128,248,30,153,80,233,109,200,120,131,228,14,173,229,166,165,27,235,196,206,141,159,215,166,188,120,112,252,36,38,33,240,168,118,212,106,148,129,57,121,145,27,44,98,20,221,121,116,178,225,253,169,32,155,226,46,239,192,247,115,220,209,18,82,233,244,219,244,30,245,39,242,76,161,96,82,219,89,101,18,86,83,195,171,48,62,14,213,121,188,27,191,98,221,94,114,250,29,62,104,12,117,98,161,7,230,71,168,74,153,77,135,120,67,207,37,225,115,173,138,239,99,92,30,61,5,35,238,39,207,42,55,175,151,5,121,96,219,146,36,7,11,249,186,1,7,234,47,155,43,99,210,178,143,47,94,202,97,107,150,228,156,6,151,230,149,186,143,70,150,90,67,121,203,126,135,182,111,55,162,171,218,152,193,72,100,16,35,208,116,144,31,152,156,99,206,34,217,127,119,19,81,250,71,86,25,107,120,192,241,127,99,112,5,105,172,37,53,10,196,143,69,179,58,66,218,111,74,190,41,132,161,118,191,86,113,254,57,73,159,155,117,61,210,81,17,126,56,53,234,217,46,126,121,172,154,186,82,80,42,46,10,203,237,57,26,123,66,35,215,24
 ,191,107,89,84,51,245,231,60,38,203,0,18,68,31,103,106,108,132,162,248,108,132,14,80,182,34,45,66,50,35,123,15,189,148,74,194,1,181,240,143,184,77,210,147,34,81,247,126,216,74,239,69,64,255,241,189,190,175,174,5,69,169,4,106,226,65,132,206,18,171,16,66,43,169,127,168,105,88,246,235,255,3,201,240,158,191,202,222,116,112,1,1,142,118,213,113,189,153,9,74,13,76,76,14,91,193,54,212,158,109,75,81,65,27,34,171,133,74,95,26,46,122,12,71,229,36,164,160,243,120,188,251,181,203,121,221,84,120,155,195,161,154,71,184,50,248,66,132,173,201,58,56,159,8,97,217,67,115,100,126,62,5,25,103,13,252,141,211,179,23,133,161,183,118,167,232,231,97,95,17,41,79,67,58,234,0,170,6,44,180,145,103,58,192,14,152,231,18,198,100,23,180,217,189,86,218,172,143,9,222,119,142,103,221,107,242,234,185,139,166,12,53,178,155,10,251,204,218,153,202,48,51,253,130,57,184,0,166,180,243,120,140,120,240,188,223,130,102,203,198,25,147,33,34,203,120,2,118,89,149,140,63,102,53,36,72,115,123,247,124,56,163,176,248,216,62,165,
 98,60,117,254,122,43,76,82,116,118,125,52,245,95,123,157,200,94,115,89,200,135,141,129,227,79,139,157,7,55,148,48,155,163,175,239,209,136,151,47,137,161,39,37,87,155,158,51,57,115,164,118,205,191,9,125,247,115,252,204,222,123,49,176,208,171,206,228,36,79,213,27,15,252,197,49,48,66,55,239,249,188,182,23,124,136,237,125,97,86,51,158,228,141,252,231,148,82,148,151,229,191,234,85,8,111,205,41,61,55,56,42,57,91,117,9,87,181,198,42,8,79,17,247,245,214,3,103,209,142,143,174,131,111,51,60,121,120,85,164,203,46,26,130,194,67,69,56,68,58,72,197,13,41,203,82,35,115,107,100,221,97,151,26,35,203,60,6,196,214,127,34,134,176,12,184,188,230,159,13,248,54,177,176,113,82,156,62,143,2,13,116,144,219,162,134,67,130,132,91,226,153,185,45,159,253,57,3,132,182,184,26,101,189,43,70,156,237,99,156,16,189,117,15,94,198,17,11,134,187,25,203,75,252,66,9,235,81,221,108,222,64,99,69,119,207,95,99,157,138,173,231,43,17,131,49,217,141,9,213,16,67,149,91,127,243,181,65,172,41,118,183,11,106,142,41,249,52,23
 0,245,85,157,249,121,224,100,102,14,227,21,94,7,212,6,241,199,26,219,156,74,30,70,25,207,227,178,160,246,10,139,94,162,224,95,225,180,254,92,251,87,154,169,247,55,202,189,248,175,73,235,140,182,36,110,184,24,69,111,6,163,82,20,2,101,54,233,94,52,19,55,131,108,180,132,113,48,248,104,85,4,96,145,94,86,46,95,119,206,75,177,217,15,25,214,211,59,61,218,108,149,237,198,236,125,212,189,179,127,30,120,217,6,160,210,63,192,125,224,236,233,246,69,210,168,49,7,182,38,183,85,102,185,213,121,159,154,82,36,57,158,46,91,126,126,203,8,164,87,161,213,175,152,216,243,138,68,136,128,209,241,103,160,207,205,214,246,90,160,112,189,3,198,55,141,195,247,103,21,73,82,244,212,190,220,248,242,236,211,221,52,46,50,187,93,244,174,100,92,116,239,203,65,59,0,115,195,25,218,153,123,237,239,30,178,66,55,173,9,143,135,0,132,217,57,255,229,97,247,154,161,184,147,35,74,137,14,35,84,129,192,192,180,152,7,103,20,123,239,163,75,202,15,61,213,142,148,58,228,115,120,28,201,203,104,160,197,80,78,116,87,31,236,22,10
 6,227,191,155,73,182,238,217,186,85,205,237,251,246,141,92,246,145,190,248,57,225,105,194,5,62,145,195,82,149,138,133,208,118,153,67,216,175,149,83,40,247,187,108,77,110,84,68,48,182,210,223,144,111,211,234,51,145,128,169,230,124,109,115,140,94,233,39,10,253,232,186,251,166,109,233,29,144,24,233,190,246,14,158,88,231,100,158,75,90,84,28,252,137,188,55,212,206,210,184,92,106,226,77,228,59,254,22,71,63,139,107,230,206,152,30,221,166,32,73,179,26,229,145,117,40,186,84,230,240,230,170,103,167,189,33,175,46,174,225,136,111,199,87,121,130,178,71,237,207,114,227,105,131,80,141,153,178,163,239,247,146,165,166,147,19,254,57,254,68,156,118,208,14,64,148,162,86,142,83,70,167,168,222,171,82,178,198,139,218,240,149,0,55,201,218,243,44,53,140,35,170,10,44,73,107,251,3,189,123,98,225,88,76,180,5,23,65,113,90,253,105,200,176,193,244,172,47,60,119,146,5,145,115,157,54,29,115,4,253,230,54,58,104,133,184,206,214,207,47,34,95,52,84,16,134,131,65,3,0,185,135,122,255,122,223,106,55,30,20,187,214,
 60,218,101,21,143,80,186,43,65,129,37,78,66,163,92,32,191,221,239,235,138,221,27,188,248,156,7,40,127,35,140,104,182,223,89,130,25,185,115,230,94,10,215,212,170,123,42,246,132,112,69,113,107,98,44,206,8,112,154,178,211,26,111,107,119,116,230,28,9,83,69,197,76,245,79,61,11,72,14,228,221,249,226,188,126,212,1,41,135,90,225,167,114,214,64,7,154,22,26,126,57,157,244,32,193,113,79,86,150,243,131,128,107,122,202,92,233,184,78,129,185,191,152,39,199,159,183,184,127,116,58,214,208,115,135,40,90,130,171,236,205,155,240,95,212,42,103,102,137,228,142,171,228,89,243,233,29,16,148,235,87,107,138,50,190,68,247,75,216,172,241,215,94,234,132,221,136,199,28,122,62,119,133,31,2,242,176,115,219,21,242,134,45,115,47,106,97,165,53,89,33,21,162,115,149,17,4,82,26,214,43,81,17,31,144,26,29,54,224,63,172,84,159,158,31,180,206,160,56,27,89,188,77,94,147,127,173,32,50,146,12,213,74,208,119,137,242,240,164,170,190,225,203,114,50,58,117,251,146,125,185,90,80,252,61,24,15,146,254,60,135,108,109,21,238,5
 9,44,3,74,79,9,236,152,35,226,234,51,81,34,109,132,99,131,57,185,222,208,24,13,7,4,63,247,0,49,85,212,21,59,18,106,87,220,15,176,131,161,225,112,241,119,4,21,246,66,217,97,27,226,226,239,220,34,191,86,202,50,189,247,74,40,198,188,184,191,237,191,162,134,40,111,140,164,65,175,238,187,47,73,227,210,125,222,223,47,96,243,116,90,233,142,124,12,189,128,115,119,127,102,35,178,57,119,38,210,124,61,80,169,3,231,97,182,212,34,96,121,163,222,86,155,157,81,140,255,233,59,7,85,21,225,200,81,28,32,67,93,120,229,24,36,174,180,110,2,173,61,113,205,54,144,205,195,133,113,59,193,90,237,149,185,56,246,145,127,89,201,123,39,39,136,106,232,36,223,242,40,117,24,113,212,21,32,203,41,75,63,169,34,26,73,44,24,245,182,51,13,112,90,48,166,186,212,41,100,252,244,157,103,102,176,176,72,52,198,9,234,138,236,240,223,244,119,4,112,144,48,142,135,85,3,212,20,130,156,86,178,183,173,129,138,200,162,61,100,244,214,29,120,241,217,124,85,196,7,42,97,18,245,231,89,72,5,196,120,154,60,251,47,235,23,99,63,205,2,23
 7,213,231,55,240,154,122,118,185,58,138,72,98,251,10,245,116,247,19,164,46,75,117,205,231,112,193,23,3,56,91,42,107,243,106,106,87,17,35,212,74,82,177,56,243,104,73,28,249,205,62,16,219,32,185,75,157,106,252,52,45,222,97,83,179,73,121,2,230,118,63,45,96,133,195,90,230,81,101,255,23,18,57,104,70,193,3,166,229,203,169,77,114,76,0,124,233,60,85,171,236,176,203,146,73,46,219,229,11,80,209,165,38,112,142,57,254,65,126,146,52,148,140,253,57,51,43,212,87,141,192,73,194,0,10,201,92,22,193,184,228,144,93,102,78,205,120,18,201,229,127,91,55,99,127,184,165,93,173,59,224,109,141,210,85,188,225,101,189,114,248,25,128,183,234,32,137,6,107,147,180,40,125,197,204,29,211,123,194,192,4,181,174,4,74,177,56,131,132,57,98,60,156,53,5,8,237,24,72,201,100,55,162,205,161,55,192,64,127,41,56,222,207,171,125,129,53,162,164,228,182,234,71,137,110,124,248,138,61,233,14,176,224,40,92,12,92,40,112,18,157,98,14,190,24,116,231,67,36,46,27,40,126,100,207,136,55,18,181,34,231,79,108,232,7,177,219,39,185,106,
 168,118,85,0,185,237,149,134,146,204,236,21,34,141,157,177,166,155,253,27,140,210,128,255,144,113,233,207,78,4,164,203,93,7,145,205,37,40,199,208,124,154,229,126,192,199,145,247,57,59,164,80,2,123,76,254,28,119,235,1,15,97,22,46,143,122,181,172,35,27,189,105,178,82,24,213,116,48,51,27,208,167,245,69,41,225,243,187,62,124,240,204,144,154,13,136,171,23,125,227,95,208,134,82,73,17,99,173,241,56,194,53,211,40,251,48,251,116,147,51,251,156,203,58,111,102,146,16,226,251,227,34,37,150,112,126,190,13,211,46,139,160,127,198,236,154,109,163,84,172,229,153,174,11,167,154,163,151,161,34,39,104,23,228,240,74,88,40,2,102,159,47,164,233,183,181,117,18,16,13,196,149,244,63,161,20,82,169,197,212,159,242,49,52,159,241,200,242,99,220,148,106,176,63,55,48,166,235,85,55,217,231,140,168,26,161,110,170,112,116,46,241,206,120,161,52,115,189,237,115,246,140,235,125,26,63,222,168,146,183,61,236,245,252,167,161,38,133,41,205,65,72,40,99,76,117,12,46,5,101,63,62,14,98,80,49,169,190,87,234,81,167,107,18
 6,108,112,95,151,222,134,91,11,190,234,12,247,93,251,222,62,4,243,252,61,234,252,106,205,177,212,133,249,95,123,21,164,147,127,221,211,160,223,230,185,142,251,28,234,179,88,34,32,233,201,169,94,37,140,51,17,155,218,58,64,72,135,175,131,160,8,26,115,6,3,247,10,42,224,239,219,255,205,213,212,177,217,79,163,43,187,253,1,204,68,53,24,57,4,198,160,201,155,179,58,173,153,188,169,242,63,65,158,103,110,56,84,74,2,100,98,100,149,205,229,83,78,57,52,219,172,147,168,41,229,14,255,183,54,153,129,206,56,180,213,171,25,138,111,148,57,102,122,0,27,179,143,63,46,195,111,124,210,205,3,14,151,171,191,145,3,8,243,28,88,178,203,137,121,77,225,117,48,81,89,167,98,115,253,204,6,183,176,78,188,58,178,115,25,2,87,42,73,188,194,156,114,51,238,39,229,138,107,186,236,68,15,115,220,173,13,75,118,184,168,6,49,91,160,194,130,1,24,46,98,57,252,220,34,57,83,74,55,45,246,41,192,33,75,167,228,152,36,177,127,104,231,206,12,237,135,223,55,133,111,113,219,78,82,107,61,187,86,29,150,95,41,209,45,14,80,61,108,99,
 93,132,117,54,108,62,149,243,10,157,38,252,166,171,99,67,52,207,101,2,91,93,104,58,242,251,169,14,223,163,83,112,124,184,157,141,48,183,104,55,171,113,154,187,208,31,208,25,186,106,199,49,254,124,57,98,118,21,145,27,82,189,246,133,137,238,111,206,153,234,222,246,77,175,119,124,16,145,150,139,47,226,18,177,13,119,175,67,174,28,72,215,226,174,89,219,36,68,30,202,148,239,5,238,64,155,194,118,17,143,76,64,100,63,122,5,156,143,168,224,18,167,128,89,39,82,44,124,115,79,171,250,246,121,218,112,226,12,74,239,123,244,212,54,2,57,193,186,254,104,201,214,242,62,254,147,84,250,124,58,202,69,232,156,131,249,90,247,24,10,182,150,221,248,142,227,170,54,134,225,189,133,156,111,2,139,93,167,193,242,194,127,140,38,14,164,42,252,132,199,108,28,228,147,216,209,57,179,97,133,34,102,5,9,176,255,73,115,91,0,202,82,74,44,115,27,79,88,185,7,184,31,210,28,6,59,233,215,146,224,184,197,223,220,173,165,177,14,195,50,156,36,173,74,216,165,239,81,27,181,181,191,17,81,86,203,36,78,5,207,101,171,156,104,229
 ,158,54,180,142,238,23,123,86,140,157,154,12,212,24,151,225,171,140,107,19,241,102,70,121,181,215,228,245,182,33,220,178,216,78,162,20,71,114,162,222,104,171,172,230,38,238,188,87,149,21,19,90,167,214,119,13,175,174,242,117,103,49,122,159,27,140,121,7,149,189,195,63,3,140,201,64,150,180,213,23,24,189,150,187,140,228,212,186,185,252,51,96,48,227,162,161,49,98,93,225,111,113,183,107,66,178,97,64,163,30,224,126,70,164,239,249,154,243,135,186,140,135,98,45,190,230,173,252,25,71,221,97,87,96,25,168,189,128,39,44,44,64,74,135,20,98,229,196,58,14,33,250,137,28,123,222,201,141,105,36,120,85,20,35,189,200,74,84,59,237,231,163,13,209,199,222,3,28,110,46,60,238,165,252,149,112,60,255,160,131,126,125,77,68,186,204,207,134,73,39,29,121,50,190,158,179,115,123,41,119,139,139,140,212,70,176,103,129,145,46,190,47,49,240,170,43,27,18,111,240,50,73,18,214,130,150,122,84,44,185,117,90,70,86,67,105,76,201,10,9,161,195,209,149,36,207,178,155,204,36,40,87,59,84,136,157,98,237,8,57,141,112,185,191,
 42,100,109,90,242,14,193,60,121,195,124,154,115,108,59,95,183,67,187,87,159,253,184,33,21,33,172,67,122,255,77,79,195,80,100,101,1,36,84,23,250,23,116,220,37,80,178,19,206,229,30,253,161,233,229,67,207,102,5,93,116,45,175,155,108,42,221,28,91,126,122,205,82,66,215,106,40,34,82,136,14,147,140,197,101,7,158,69,31,13,225,0,23,26,146,150,165,46,177,85,86,69,162,98,134,135,229,214,10,75,68,135,247,229,27,58,84,238,197,164,106,203,85,7,135,57,177,68,206,67,56,250,24,155,251,37,205,171,26,5,134,147,225,209,9,7,18,113,236,79,92,4,119,97,236,97,230,85,143,139,130,4,22,255,137,75,109,228,110,20,191,147,55,203,67,249,14,249,2,129,239,151,181,75,67,26,117,180,229,171,86,140,169,135,19,37,180,109,215,171,41,204,213,193,222,131,201,118,130,164,156,31,192,36,184,180,161,161,190,65,1,39,246,23,128,223,97,103,223,196,110,0,234,49,109,178,188,46,8,56,193,112,7,101,189,74,237,221,105,109,222,10,86,213,228,185,126,102,153,166,13,197,169,210,238,37,217,231,127,128,30,87,90,147,205,178,22,151,89,
 231,39,68,58,60,158,109,124,142,162,204,215,223,36,193,83,185,4,223,69,180,168,218,97,105,125,57,4,168,213,244,172,243,236,122,234,29,181,135,147,203,103,220,26,43,235,200,168,47,75,99,57,40,215,81,147,201,18,130,40,129,139,195,194,15,61,126,16,254,242,255,208,196,181,146,112,61,200,203,196,183,240,162,191,74,220,0,176,128,10,186,80,17,200,85,62,50,91,216,31,156,50,174,92,98,234,130,91,203,60,80,164,101,109,22,11,37,140,255,38,197,19,116,169,37,13,231,84,45,116,2,28,230,131,25,49,224,21,67,140,173,43,96,125,89,135,70,238,89,33,29,18,235,164,80,29,159,240,129,182,200,88,61,207,141,205,114,154,102,13,85,81,117,45,225,95,97,88,230,74,155,50,47,37,151,72,231,171,0,18,76,222,101,48,147,233,109,118,124,121,171,125,64,208,173,26,74,109,151,247,197,147,122,239,239,184,32,6,157,121,240,139,32,153,65,32,26,9,242,175,109,169,148,212,191,41,132,21,230,225,84,177,210,184,139,19,85,90,210,207,39,0,227,145,107,149,96,182,182,136,46,254,52,106,149,27,199,28,209,223,5,59,190,97,239,119,20,20
 7,159,207,183,208,23,251,159,84,81,217,62,181,192,83,54,118,211,138,115,154,100,157,24,98,171,194,158,18,166,51,82,9,218,212,74,110,242,187,249,91,109,22,131,4,238,208,250,96,39,56,81,94,247,218,198,101,131,186,215,14,80,12,72,20,174,171,163,245,208,103,111,66,242,214,40,88,88,189,171,207,226,138,165,156,228,133,224,116,170,43,77,197,22,155,104,207,196,188,33,35,159,145,181,151,156,136,99,253,72,188,255,110,38,119,160,140,23,81,24,7,66,215,243,2,214,170,193,35,85,195,46,33,214,221,173,255,228,37,230,166,182,124,82,241,20,213,206,14,184,254,198,87,49,208,44,208,174,244,49,239,21,168,37,23,150,33,33,6,208,28,77,239,190,209,110,12,113,231,27,12,148,214,204,226,203,27,89,208,227,136,33,115,164,112,114,34,105,230,41,26,107,220,32,105,234,217,79,138,85,152,52,220,209,224,73,255,29,174,160,54,123,71,148,237,38,177,27,131,2,151,53,194,14,168,172,197,96,223,104,92,237,251,248,80,93,50,109,248,152,229,151,96,125,61,42,133,219,248,181,81,113,91,197,162,244,253,23,162,155,183,210,137,90
 ,239,232,200,150,54,110,3,236,77,170,7,189,15,151,112,133,244,23,157,28,207,0,153,14,12,4,1,238,102,144,228,186,216,224,79,221,6,163,40,243,233,243,241,208,36,115,228,123,48,102,42,73,186,56,35,215,33,5,125,229,37,28,84,118,149,138,55,8,5,192,81,12,41,219,182,245,36,241,63,54,99,54,129,48,73,126,188,101,51,213,22,191,151,146,59,119,40,19,175,58,46,68,119,127,195,125,29,166,57,56,58,106,38,92,115,54,68,149,199,34,64,250,116,255,18,207,172,82,215,115,232,21,29,16,97,98,106,240,53,118,152,62,171,230,55,83,96,84,207,55,246,171,188,10,164,51,111,217,107,111,182,190,21,64,43,251,239,56,17,108,168,92,151,212,117,224,224,36,198,101,169,129,22,70,12,185,24,216,57,50,56,101,75,74,222,132,31,1,116,98,220,54,54,182,130,85,159,77,230,246,176,226,97,13,117,76,136,161,99,197,124,17,70,201,83,65,221,231,133,133,245,15,51,224,1,179,53,181,212,50,98,32,171,247,110,113,215,14,168,90,99,72,113,236,186,252,254,176,19,38,172,217,175,194,241,217,227,143,103,48,137,91,4,163,66,139,36,93,189,64,142,
 119,213,179,135,104,75,242,35,138,78,120,42,206,96,48,204,223,14,135,234,83,130,233,5,127,89,213,61,124,158,184,229,76,26,160,139,20,255,74,11,171,107,12,87,143,225,7,141,218,83,80,248,127,155,246,7,175,149,4,248,207,173,130,33,246,194,150,148,145,97,254,96,252,120,68,205,148,142,185,27,218,44,74,231,199,14,27,144,252,247,46,119,120,197,19,238,81,191,137,66,253,0,195,243,190,151,238,164,150,209,48,90,17,197,58,90,88,115,53,29,7,229,164,181,246,200,139,182,179,166,108,56,188,20,39,69,66,160,56,2,254,186,49,218,184,160,108,191,174,207,202,112,51,176,182,89,255,133,136,41,145,144,139,214,163,29,99,91,105,212,11,119,111,53,1,81,207,56,242,248,59,231,192,51,134,141,242,210,223,116,254,92,159,85,23,133,204,96,42,147,91,159,232,205,169,210,70,247,102,54,245,14,51,78,200,41,250,188,219,218,51,98,142,146,100,152,169,127,231,57,203,41,115,122,120,202,147,42,212,226,95,223,141,7,38,18,86,70,159,56,104,126,79,46,92,208,86,56,194,204,84,60,252,211,232,143,252,18,190,180,242,229,34,191,19
 1,225,113,176,216,9,139,81,2,133,234,45,225,185,96,222,211,148,118,197,241,108,94,5,152,161,210,144,248,93,126,183,100,61,236,190,59,122,74,61,155,101,53,30,207,251,219,23,30,25,137,201,160,108,109,75,38,168,8,2,93,181,46,122,226,191,143,187,169,132,170,87,102,219,120,46,22,24,62,239,74,203,11,50,163,251,32,88,252,119,175,171,73,252,142,148,174,151,231,56,93,215,33,124,242,169,199,89,59,120,227,77,144,122,221,139,14,70,66,161,18,99,221,32,42,6,1,149,8,167,226,110,72,86,237,107,87,177,155,179,44,5,85,245,136,71,169,75,145,112,67,98,254,148,87,188,78,131,109,44,236,157,220,19,89,30,200,79,218,45,45,100,203,104,122,95,180,153,148,87,73,57,178,39,25,179,184,129,168,249,161,110,57,10,163,152,42,20,234,7,226,162,91,59,0,221,71,132,237,75,253,124,90,63,146,162,233,59,233,46,66,65,164,109,28,148,212,242,119,162,13,220,190,239,9,229,231,117,231,251,193,246,155,44,78,216,167,183,72,7,130,246,206,232,123,164,170,63,48,78,99,33,45,219,243,79,27,170,208,194,2,20,68,207,84,6,203,41,226,17
 4,156,178,16,142,194,58,104,43,147,39,83,159,195,25,141,107,255,245,66,199,201,46,9,104,54,22,70,102,200,194,251,15,100,196,62,142,127,57,140,0,209,168,42,200,85,192,32,81,47,224,80,4,176,143,95,242,112,19,106,227,128,116,79,228,184,12,30,241,99,26,51,209,196,157,65,154,216,155,137,97,42,222,178,202,209,112,228,50,17,160,23,70,8,229,81,182,167,19,204,177,76,242,24,96,82,98,162,249,118,219,113,233,231,44,244,28,230,223,237,72,42,71,229,143,67,190,199,99,204,127,14,234,208,80,247,110,77,73,106,64,120,179,155,218,88,183,152,227,119,193,58,4,3,155,2,81,195,73,137,72,50,138,254,25,89,200,82,24,202,216,200,204,195,216,169,240,142,208,192,203,255,12,154,161,36,113,206,110,145,95,234,110,239,144,20,6,96,79,212,41,244,113,240,86,167,157,116,11,101,31,212,254,191,41,182,5,183,125,181,67,76,33,116,94,31,45,223,217,172,78,99,108,245,235,14,1,188,208,48,252,140,247,231,112,123,163,42,71,73,26,78,30,77,77,105,65,34,176,142,14,171,109,49,224,7,65,19,40,172,170,55,230,17,77,94,210,132,90,5,
 159,223,126,141,229,135,148,61,40,85,220,54,28,23,1,139,78,16,83,22,226,241,108,80,231,158,171,30,200,192,49,160,44,167,130,162,202,83,110,190,161,61,169,208,73,89,157,40,192,82,40,215,80,130,28,19,215,19,83,42,155,173,48,217,226,45,92,250,145,148,55,124,248,115,241,26,105,17,181,29,131,114,179,131,216,28,217,109,0,42,43,2,140,235,180,182,232,1,97,194,118,64,16,43,4,37,229,182,66,213,127,141,12,140,18,75,112,33,129,130,226,233,66,168,16,113,29,175,118,34,233,223,197,85,40,24,72,84,57,220,241,208,169,66,253,158,57,140,135,117,116,174,3,233,210,5,88,136,63,138,46,199,223,219,152,49,39,65,113,80,173,67,122,77,215,38,154,217,147,105,243,141,184,74,107,239,244,146,108,46,206,78,35,157,220,193,38,104,84,100,117,138,190,58,49,101,13,38,141,232,100,231,165,15,102,63,228,155,163,66,128,185,109,244,139,149,51,1,86,91,65,179,195,243,208,110,214,157,31,242,171,81,5,166,100,147,143,90,120,248,10,98,192,15,248,152,173,176,72,163,180,12,76,51,121,244,181,183,15,109,171,3,177,21,141,165,5,2
 36,64,236,158,116,62,65,148,165,226,205,37,163,181,234,1,129,214,146,53,166,225,83,135,51,85,113,231,156,209,251,134,140,107,178,127,21,33,80,125,27,215,102,50,29,28,199,123,33,56,177,225,97,234,214,184,190,49,235,203,254,113,183,236,173,31,23,51,154,142,169,127,76,50,154,169,130,142,226,216,140,151,233,187,107,31,247,74,134,103,254,107,164,16,66,147,135,28,192,30,227,2,91,213,110,219,210,230,36,176,225,177,229,245,75,121,25,109,16,226,215,30,70,27,213,13,209,105,4,98,87,80,40,32,144,108,252,197,246,171,21,119,140,88,21,43,58,30,206,21,229,37,12,147,177,1,21,140,89,213,3,130,94,52,139,27,222,70,237,134,8,136,230,160,135,68,6,72,125,126,41,88,207,41,11,248,55,102,85,173,137,164,32,30,239,170,101,199,134,33,44,83,210,146,7,113,133,160,160,131,167,88,215,2,143,23,15,215,134,40,31,223,195,158,42,202,206,14,104,159,194,71,164,136,71,102,96,246,243,119,46,75,94,18,42,75,183,175,37,56,133,39,23,87,160,79,145,131,104,24,125,7,84,252,119,230,97,204,255,29,244,91,42,106,42,254,3,190,1
 16,98,142,157,243,140,104,30,55,212,16,120,9,44,90,214,95,202,239,150,200,44,30,10,147,137,48,45,241,194,13,92,86,6,167,81,67,16,83,88,112,138,116,79,15,151,169,20,238,235,19,63,17,102,224,217,199,8,167,76,20,140,43,63,29,237,124,152,18,106,38,73,94,123,227,66,162,74,33,103,188,47,224,103,147,236,249,61,24,4,175,90,231,149,47,172,234,200,154,112,244,65,8,153,165,109,203,82,158,145,172,48,230,187,94,89,153,40,251,152,66,151,110,95,97,184,209,149,145,36,146,136,142,168,161,113,223,139,189,101,193,249,63,63,142,214,124,187,18,111,207,207,74,22,174,209,16,125,214,92,164,202,86,95,54,236,140,59,51,170,38,226,106,51,66,49,114,129,123,88,215,206,187,103,148,250,209,70,151,200,3,179,92,147,57,180,31,125,132,127,145,174,142,82,125,99,245,150,126,71,124,253,52,8,221,76,29,26,9,58,195,141,63,14,208,96,42,179,98,203,81,136,14,20,155,128,132,220,8,1,27,197,45,57,106,79,131,56,37,244,218,62,23,168,62,163,100,209,245,209,170,217,233,163,128,204,233,150,205,66,10,70,43,106,192,5,245,186,66,
 33,139,73,63,181,62,235,170,2,156,95,181,13,157,125,5,87,0,12,207,49,198,6,111,113,16,113,228,109,168,59,122,238,205,118,91,31,236,217,30,192,74,185,248,150,114,221,222,208,133,240,252,218,40,222,34,209,228,1,120,225,57,115,50,166,90,168,72,41,77,227,251,153,60,218,241,24,211,251,28,62,164,23,110,185,16,15,185,222,57,153,228,82,240,211,34,196,15,204,201,131,250,129,53,220,193,218,101,4,34,182,128,248,98,47,47,40,59,167,76,19,223,211,78,160,82,36,176,241,69,189,134,248,225,127,84,56,124,146,30,193,82,40,169,32,223,253,60,71,149,65,103,76,32,50,23,221,78,86,130,26,164,161,138,224,244,0,241,69,246,255,229,107,235,191,93,229,108,144,45,131,42,46,240,209,243,242,191,169,149,119,142,36,182,167,57,126,85,28,11,214,16,89,245,113,119,197,171,127,18,130,4,43,141,170,15,38,1,23,60,165,218,205,112,50,246,165,153,247,241,41,12,27,26,241,46,114,33,10,219,157,194,116,91,227,167,57,138,45,179,20,173,241,59,91,134,81,22,35,47,38,135,194,35,53,44,56,30,67,224,246,25,52,79,206,141,119,111,108,
 28,50,214,104,76,169,105,59,7,0,20,246,66,79,87,139,144,54,113,139,121,181,145,107,70,106,126,191,15,151,99,210,55,183,230,33,113,138,12,223,64,186,149,232,89,98,211,193,141,162,75,113,12,46,85,146,30,215,99,41,82,79,180,20,219,87,252,131,85,244,231,14,255,202,128,156,188,140,7,37,161,249,42,92,38,229,139,104,230,3,23,19,156,140,105,22,108,106,105,12,32,199,215,237,244,60,6,247,172,53,85,105,94,198,192,173,242,205,133,153,174,194,65,1,170,131,169,69,59,245,82,237,198,21,160,93,122,101,196,42,35,180,82,103,74,31,176,212,115,253,105,52,236,77,157,31,98,224,10,154,231,160,113,201,12,87,147,181,142,42,139,153,128,234,235,120,247,152,111,158,39,49,95,175,50,10,13,162,157,223,240,222,208,148,222,206,155,159,209,163,98,69,197,214,220,68,71,46,216,75,251,64,76,239,208,88,241,194,85,11,125,139,128,212,163,239,58,164,151,106,154,191,25,9,148,10,9,0,102,195,184,40,241,248,95,244,242,94,209,183,7,202,17,156,121,161,229,212,122,129,143,126,145,166,88,239,212,254,238,161,87,9,81,211,250,1
 91,194,157,156,85,29,66,3,23,67,232,251,28,91,240,144,49,194,249,179,157,185,75,10,216,91,217,136,19,87,27,160,75,137,195,104,28,8,72,183,222,96,68,43,162,152,155,8,190,12,91,182,201,59,221,239,16,87,58,159,79,177,11,75,168,207,85,173,229,174,1,251,14,73,154,129,252,17,7,59,43,240,230,91,37,193,187,46,106,156,5,215,69,213,76,129,218,160,6,203,212,85,210,31,182,154,236,208,239,84,187,97,197,222,77,214,114,98,248,53,186,241,187,76,43,167,123,69,220,116,55,1,24,208,218,8,231,120,21,100,76,114,96,142,104,85,186,17,100,125,156,69,112,72,122,37,122,237,189,23,61,161,54,189,135,43,222,154,26,45,9,117,5,121,183,165,172,53,27,153,163,243,182,99,31,176,236,56,205,89,244,115,89,89,27,169,47,172,146,246,3,219,85,192,111,5,82,26,99,191,113,35,248,130,146,238,159,204,57,25,40,206,201,139,119,69,49,125,84,89,168,198,3,99,128,71,147,43,105,254,45,127,2,212,94,170,21,209,7,140,75,75,80,174,114,231,194,166,22,176,170,110,188,94,140,154,228,219,99,111,134,180,236,109,145,57,11,116,95,139,16,24
 4,134,69,106,195,201,189,140,90,254,76,4,53,33,81,80,249,226,226,121,154,151,189,38,94,62,114,218,156,109,139,100,112,182,11,232,236,167,143,228,140,146,63,209,178,113,127,232,120,230,175,140,236,19,48,102,255,211,46,100,162,192,21,27,93,21,21,19,153,191,85,19,213,100,151,122,71,194,129,73,213,233,200,143,174,27,101,211,99,42,174,169,156,87,170,94,97,83,127,45,232,96,224,142,168,12,126,167,240,147,187,114,31,61,8,56,70,201,0,162,242,170,25,15,39,84,226,12,219,251,250,20,6,179,211,173,50,28,173,1,186,194,57,86,238,199,106,206,14,197,27,27,82,18,174,66,239,182,138,73,241,158,197,220,115,112,213,59,225,231,220,93,20,51,0,149,155,10,239,246,57,52,180,118,248,96,94,225,17,8,204,39,212,235,235,119,133,147,242,132,7,42,219,73,215,225,228,38,200,19,181,205,4,162,182,129,91,195,117,83,32,48,3,134,177,157,192,186,28,46,239,206,78,33,5,154,251,125,237,186,136,23,133,55,102,151,250,55,250,148,92,127,241,150,186,200,141,130,110,120,177,174,89,76,147,37,17,93,154,86,207,208,39,47,237,28,1
 65,19,24,39,132,123,31,226,92,160,107,90,12,251,233,22,90,183,45,229,236,248,232,42,126,134,4,68,23,243,173,129,244,232,25,125,244,95,223,181,26,99,88,202,19,220,5,210,111,229,128,239,0,47,164,239,245,86,165,231,249,74,86,86,187,59,62,246,212,173,119,229,144,148,112,238,66,123,29,231,192,181,240,106,247,204,48,214,152,124,204,154,189,185,14,224,119,197,48,245,35,167,49,170,217,77,213,210,91,96,190,43,144,245,199,92,27,146,161,148,123,221,31,156,253,88,255,238,189,107,118,64,50,242,110,130,112,248,200,179,191,100,18,107,146,236,139,98,251,193,169,87,206,103,107,202,176,93,241,168,188,238,64,112,158,15,31,158,171,70,12,66,111,66,43,7,224,61,236,139,136,160,173,104,217,13,74,82,65,35,180,14,96,166,209,228,18,81,68,212,51,227,246,203,114,168,76,129,171,16,32,237,203,127,21,100,12,83,79,43,159,94,71,182,6,177,187,254,197,194,217,169,49,76,171,176,9,252,77,119,39,32,76,73,26,134,213,198,64,194,198,198,159,225,33,140,93,1,25,86,152,157,225,169,111,83,127,5,235,43,240,116,133,131,19
 3,111,94,102,113,75,248,195,26,14,13,213,132,42,98,68,141,152,39,61,173,62,123,130,38,122,96,202,23,22,17,35,227,130,79,27,150,122,54,13,76,200,24,83,2,166,200,111,6,222,46,251,57,170,195,112,237,120,11,29,30,67,41,25,0,230,61,244,46,186,212,218,14,166,123,231,85,179,60,184,141,21,234,85,205,251,128,51,157,76,109,102,105,107,172,164,167,71,73,242,137,50,21,13,134,199,71,87,190,190,228,54,60,76,185,48,251,3,213,233,55,61,54,38,99,216,7,4,113,11,187,36,148,97,76,74,155,243,115,192,100,229,159,92,90,90,126,22,197,37,130,249,232,196,111,74,80,50,15,201,222,47,34,43,138,30,59,104,26,197,140,25,54,248,204,40,232,229,100,26,157,120,133,76,110,131,196,177,96,240,70,51,218,94,219,254,124,246,221,47,108,108,214,165,182,42,97,174,76,84,74,123,180,221,124,146,29,192,179,63,152,215,179,213,109,251,228,74,196,31,185,240,157,244,107,101,197,115,85,105,123,84,45,230,146,253,14,194,129,243,150,115,128,224,97,96,48,34,214,112,34,99,112,108,167,55,56,122,13,126,143,186,101,184,124,26,18,103,23
 7,170,134,99,241,57,226,220,94,111,195,228,182,32,63,139,191,124,37,191,126,21,144,148,155,176,69,224,3,176,22,4,242,7,125,1,137,155,80,76,15,49,194,72,203,0,27,49,176,111,179,140,112,203,255,35,206,188,237,240,224,203,59,241,162,156,213,54,205,84,132,55,110,12,229,63,222,124,188,133,210,238,132,219,112,55,172,153,3,102,131,221,147,12,236,99,97,250,74,187,87,150,140,37,249,96,195,116,201,243,0,8,106,89,222,102,178,130,20,230,252,215,204,14,108,178,254,98,160,43,211,90,149,219,192,103,156,17,140,96,48,253,163,172,79,172,25,40,11,60,187,72,243,26,18,13,116,191,81,109,206,19,166,249,75,23,173,154,89,232,191,226,159,16,56,139,127,93,207,209,205,126,148,128,221,212,13,249,182,252,147,250,24,97,38,107,31,17,12,69,235,132,220,75,195,193,155,120,200,61,94,45,152,142,196,87,108,229,220,45,193,235,177,28,39,84,1,196,103,127,137,162,140,134,250,155,33,209,2,220,75,215,238,178,208,169,125,0,147,141,243,98,115,69,224,199,43,166,13,194,7,174,192,63,90,130,101,72,171,149,212,40,205,0,24,16
 8,209,72,76,11,39,140,79,153,118,109,187,85,36,44,51,138,62,120,175,183,73,48,52,106,20,47,152,33,112,106,231,193,72,35,234,86,91,63,11,173,13,87,188,12,132,64,137,74,44,147,15,163,158,210,114,48,230,12,253,234,197,133,209,117,75,253,90,23,83,40,99,115,168,28,81,181,139,204,65,72,56,85,166,79,41,132,118,207,166,110,174,88,48,233,64,247,194,5,22,69,22,72,217,31,40,179,89,156,117,170,82,207,233,146,110,182,174,195,255,26,32,122,104,30,68,214,164,15,29,136,72,242,52,207,188,54,54,141,226,147,225,8,167,147,183,224,197,40,105,6,72,44,199,55,29,148,216,108,183,233,131,98,243,241,8,46,96,217,128,195,4,234,235,100,50,118,47,99,176,228,62,130,246,120,250,216,38,30,199,210,193,5,136,126,158,36,64,163,187,104,33,182,61,12,38,250,46,57,65,229,40,123,237,29,198,223,145,24,55,91,151,39,138,99,74,200,124,164,11,120,149,230,71,29,203,181,134,29,92,131,221,237,45,75,196,111,255,29,152,139,177,242,202,157,192,4,141,228,232,236,14,165,88,162,107,28,73,178,92,97,115,21,18,229,245,237,55,192,225
 ,55,100,228,132,73,157,20,116,64,195,152,250,26,216,24,126,30,161,87,40,117,97,24,105,16,98,13,151,77,170,62,236,209,116,77,219,202,16,33,71,51,152,186,2,139,35,212,20,117,128,23,143,71,30,47,46,4,231,162,150,187,198,16,95,207,107,187,74,74,140,78,244,92,84,141,114,194,148,143,181,193,2,43,140,187,105,11,44,178,196,240,15,6,131,245,128,98,215,53,153,216,197,41,250,201,55,199,100,20,173,204,136,153,140,107,113,209,104,8,218,133,190,38,255,250,232,4,197,133,172,176,95,169,71,56,117,251,164,174,71,146,239,170,58,149,115,176,172,74,244,123,57,69,38,76,34,250,97,101,16,170,230,172,35,26,242,20,186,116,191,170,244,148,96,169,152,114,175,174,70,83,228,65,228,218,102,140,16,59,240,55,171,60,250,42,220,98,218,59,25,108,10,59,211,235,205,121,76,129,51,90,229,44,136,31,25,231,134,246,215,11,251,83,131,14,64,174,89,57,61,219,25,200,60,192,251,160,72,212,78,109,201,154,106,239,135,238,186,146,29,108,84,187,129,250,129,34,64,98,55,129,29,147,26,116,44,42,45,43,182,242,166,179,118,151,84,6
 0,89,76,155,118,222,118,142,103,244,105,22,127,215,129,198,162,212,133,58,201,222,243,140,83,231,116,77,99,37,130,96,173,69,50,67,169,69,14,203,71,16,192,191,149,70,221,142,189,186,16,157,81,93,168,26,29,250,243,251,26,242,195,254,171,75,72,7,192,123,84,95,142,160,191,167,181,69,110,199,135,237,2,202,248,14,84,88,210,3,115,212,118,219,160,121,44,6,88,117,199,239,69,88,251,118,35,158,97,203,249,241,102,251,2,108,3,140,75,238,141,45,223,185,196,170,204,163,200,112,83,32,243,145,17,110,160,63,37,36,250,239,120,40,123,182,120,224,70,96,164,27,236,93,7,74,68,102,128,119,195,234,35,52,52,0,135,25,96,125,107,87,183,54,189,19,246,241,184,93,59,230,158,157,187,27,10,48,56,78,142,147,252,174,69,114,77,5,115,17,88,188,204,128,209,186,72,120,170,190,102,232,89,99,224,230,198,98,146,49,218,35,104,163,71,205,10,228,113,137,13,140,252,184,135,116,29,97,4,163,132,194,63,71,162,250,232,136,44,252,182,183,238,103,127,38,174,91,41,82,249,244,207,119,159,38,36,65,195,244,103,249,30,61,129,60,19
 8,242,100,132,170,119,224,173,146,151,106,234,32,32,211,146,215,176,111,241,1,254,210,212,95,100,70,155,79,237,117,230,67,253,237,55,176,89,181,221,193,54,103,62,149,252,38,195,163,239,215,145,119,133,246,250,208,45,142,159,210,213,111,36,226,131,97,242,106,124,54,194,202,78,132,123,198,166,197,135,13,251,241,142,94,118,191,146,104,214,206,52,9,200,233,76,53,142,229,119,177,32,25,175,30,109,181,80,146,248,45,128,206,161,250,200,108,23,250,53,38,35,171,50,218,216,27,14,244,255,136,53,60,128,93,216,221,3,18,223,204,178,53,96,194,247,117,196,190,117,66,114,15,93,57,126,139,211,143,173,55,73,215,18,100,116,164,57,22,240,50,93,133,209,196,39,17,249,213,177,30,157,83,72,60,244,234,180,1,178,161,224,177,240,18,138,91,180,132,238,159,16,247,116,43,229,25,17,126,154,174,156,194,64,53,122,19,239,113,103,229,65,54,191,205,149,170,135,134,84,2,116,108,80,158,4,249,219,38,151,117,254,16,206,9,86,48,28,74,235,193,48,114,149,205,94,220,199,34,101,159,89,144,243,183,88,129,4,236,236,20,155,
 172,213,128,158,3,207,108,50,151,56,122,150,92,60,224,32,201,165,59,167,150,92,206,111,66,102,1,126,101,133,248,32,42,16,34,202,134,62,183,130,121,160,146,132,174,120,100,50,196,48,13,106,140,6,16,136,18,112,243,227,220,250,22,21,16,57,62,203,235,13,75,253,91,119,183,170,181,22,37,235,81,242,218,58,118,175,32,65,140,62,174,47,173,112,127,174,218,68,228,106,149,154,75,24,66,85,193,104,185,130,17,67,109,140,174,221,191,156,93,4,66,108,154,85,21,116,235,45,226,26,191,210,72,40,96,149,190,143,197,255,129,243,245,60,231,188,235,191,251,180,60,160,147,55,70,214,199,226,43,31,144,243,233,45,210,18,130,6,210,196,234,93,191,222,108,54,226,56,122,99,243,141,221,96,130,17,67,253,7,216,210,215,3,21,135,191,160,90,220,130,248,17,195,195,206,122,91,39,103,11,219,254,134,227,218,203,12,252,38,109,92,112,253,151,77,103,202,209,222,160,204,170,245,238,2,97,91,120,162,197,224,234,210,69,1,25,120,202,120,49,176,240,2,88,165,58,49,207,186,120,202,113,236,117,182,209,234,51,202,30,138,84,151,158
 ,142,68,178,255,125,94,2,218,139,181,85,233,40,32,223,250,75,53,140,20,232,139,163,248,225,186,209,138,141,102,250,61,187,79,241,93,64,52,103,177,32,234,173,10,136,200,61,14,67,205,245,59,67,141,0,86,220,14,148,183,61,5,12,36,3,247,78,239,143,124,100,18,84,150,154,95,148,251,14,20,2,154,37,30,139,149,34,230,185,55,151,28,86,173,52,153,202,81,228,50,238,17,29,79,80,59,246,94,255,52,2,60,173,127,234,104,15,10,172,214,116,119,14,248,46,100,1,101,204,86,246,48,31,142,192,40,184,0,190,244,31,1,1,126,92,37,122,195,134,215,74,194,219,67,194,225,60,194,97,140,192,194,48,160,90,195,242,11,199,145,249,134,228,46,42,232,185,205,185,55,104,197,146,72,67,157,88,58,38,74,171,20,223,218,7,77,151,36,142,222,60,67,200,126,105,193,37,188,69,224,186,79,204,33,13,127,211,32,191,13,133,242,129,71,106,252,173,151,52,40,236,101,74,126,176,67,94,69,44,255,49,217,105,54,173,0,30,63,10,6,140,42,51,204,105,196,62,19,59,79,154,44,182,159,131,253,24,91,188,165,15,221,244,162,189,1,200,192,135,81,4,25,18
 4,213,168,97,84,233,141,250,98,205,165,148,102,232,34,135,255,108,30,101,129,247,58,84,16,157,176,237,128,117,98,192,183,26,130,12,204,14,158,14,48,62,210,86,172,207,252,189,79,247,221,45,146,41,58,108,178,245,19,18,125,72,108,24,222,117,179,153,206,7,11,192,184,148,92,76,163,76,221,105,28,140,204,103,171,12,202,253,6,234,44,237,93,99,156,154,174,84,205,144,111,79,2,108,228,90,40,41,81,201,6,253,240,220,147,117,193,188,171,74,210,115,6,184,174,123,80,201,247,188,237,14,197,38,56,242,127,44,203,62,180,77,93,255,159,246,240,148,53,164,83,152,216,242,53,129,120,28,71,13,155,237,80,185,67,141,253,251,130,220,41,51,20,78,60,139,233,129,29,205,183,84,104,23,164,22,236,188,66,232,218,138,113,38,238,101,114,239,63,39,102,198,36,133,71,41,76,154,243,153,193,52,154,174,87,164,2,195,186,115,113,250,220,126,5,221,115,38,123,173,123,200,86,37,191,79,154,226,248,142,29,193,37,240,186,217,42,220,197,113,161,235,227,149,84,99,248,242,215,27,192,29,103,200,91,142,116,7,107,197,236,103,58,19,
 12,36,221,170,158,226,177,217,115,17,215,102,233,222,119,86,87,19,22,198,79,172,17,129,180,138,156,169,170,149,77,92,69,138,168,62,227,102,236,16,210,219,223,74,161,209,213,118,118,67,182,14,93,239,161,221,140,242,155,58,169,39,58,42,88,222,123,91,227,170,136,209,205,18,170,129,85,185,86,6,42,158,135,189,36,126,104,79,57,209,64,137,69,113,170,128,185,38,119,39,13,46,41,133,32,24,49,159,189,129,31,34,223,196,190,107,64,144,214,142,153,86,101,230,72,175,63,205,227,81,214,38,216,35,29,225,10,109,144,50,133,181,88,67,111,146,32,56,185,230,252,37,125,146,254,212,170,219,62,120,1,14,209,132,18,97,211,221,59,154,21,66,14,81,38,204,125,203,107,124,196,56,104,37,195,155,68,49,177,33,130,80,115,143,156,191,156,19,20,114,67,238,11,247,15,138,154,99,194,219,160,232,4,95,11,28,163,126,89,68,43,200,42,90,114,207,52,90,114,215,56,239,213,220,79,205,77,18,17,109,25,3,97,250,170,255,36,233,105,3,50,44,169,197,203,7,162,0,34,91,163,212,108,141,227,28,92,121,18,53,244,211,147,103,52,126,220,19
 6,135,175,69,111,92,50,245,97,227,106,224,17,139,77,14,121,152,226,202,30,82,55,19,124,91,1,13,84,96,167,167,201,254,216,163,104,170,144,38,76,54,221,199,219,43,244,90,166,126,14,50,46,154,193,230,35,66,35,253,232,205,132,38,231,53,120,89,213,184,15,224,252,50,148,119,206,17,116,36,104,88,147,43,131,60,11,151,34,61,156,139,180,118,2,208,103,131,255,187,55,73,107,51,81,206,20,190,33,114,201,113,13,58,133,28,202,227,84,85,45,148,78,147,55,254,222,162,11,70,10,76,155,187,166,213,154,71,18,208,14,157,35,95,79,162,38,177,178,158,148,148,203,9,38,92,34,228,99,191,189,114,231,68,231,136,100,241,211,157,114,140,227,81,215,233,71,167,16,56,87,240,61,51,34,230,42,211,109,79,82,116,10,60,4,168,230,249,144,24,23,181,171,201,211,221,77,67,253,236,179,59,62,55,79,232,11,93,115,109,39,2,219,177,235,114,134,250,161,94,21,23,144,79,241,124,87,167,101,253,114,65,5,167,237,177,93,58,12,35,136,84,113,191,60,112,119,206,120,182,128,104,222,218,62,203,5,65,83,206,237,38,140,3,227,45,188,165,1,198
 ,152,223,186,147,112,223,132,6,164,215,122,17,100,69,151,122,67,2,252,143,126,99,238,246,66,112,23,49,139,3,141,228,145,5,117,184,226,211,146,19,241,81,130,83,204,229,2,108,224,210,10,54,61,42,2,76,220,64,124,181,115,179,242,151,83,246,177,169,79,117,31,116,18,171,114,154,163,24,30,175,162,205,33,202,48,84,117,31,241,185,64,137,193,26,151,54,185,172,246,235,113,21,55,6,4,210,29,136,248,137,194,207,166,117,244,162,210,195,180,97,136,7,235,14,204,239,144,84,124,177,218,43,8,90,116,236,21,180,41,6,26,92,87,238,34,195,201,112,246,96,123,95,107,31,37,103,71,111,152,190,206,75,81,56,65,211,220,213,94,56,222,175,213,102,174,117,13,201,159,149,218,161,190,166,96,62,36,83,238,72,50,244,73,91,10,28,174,183,216,113,47,98,9,201,7,68,72,29,205,125,244,4,89,167,9,222,61,119,244,250,1,6,196,135,19,223,87,21,140,82,96,25,211,164,116,147,255,195,203,190,192,83,222,237,93,75,71,195,126,173,153,15,42,6,51,156,187,58,17,224,181,227,169,187,225,17,227,194,189,108,240,82,159,154,9,64,207,215,142,
 78,25,151,186,67,163,246,55,220,208,43,83,174,52,136,65,13,89,111,155,159,133,240,245,182,63,172,207,182,173,233,254,72,218,72,137,95,155,23,33,199,226,223,129,40,151,215,214,172,86,159,230,60,135,255,45,140,44,213,65,21,90,185,46,12,180,199,181,96,220,210,100,232,100,144,21,26,106,113,33,58,128,203,169,172,10,189,79,33,123,130,31,246,217,81,234,14,129,199,212,93,102,147,151,37,43,229,236,228,73,189,79,223,141,87,104,81,5,5,43,57,108,230,181,227,80,183,159,240,69,111,248,59,196,152,147,33,46,13,69,82,187,129,73,34,227,195,65,61,204,243,216,40,66,210,194,52,85,60,219,240,142,73,65,166,225,167,69,89,11,220,6,144,146,245,125,120,116,24,47,44,84,212,248,7,54,44,139,221,165,101,64,90,62,229,243,216,159,4,14,95,53,130,187,195,254,91,87,99,200,176,208,158,179,60,220,140,239,78,223,216,140,1,243,22,76,168,5,45,238,199,154,143,174,121,145,124,127,187,62,245,94,81,50,98,45,40,10,200,84,61,111,113,34,2,84,177,73,217,36,226,91,122,30,94,12,83,222,222,23,138,107,196,228,81,119,57,254,0,5
 1,161,143,119,186,128,128,183,46,59,64,50,198,254,144,238,140,208,238,155,207,144,206,179,220,147,213,121,59,11,245,14,237,132,180,123,45,203,22,200,34,221,151,250,38,200,110,26,106,120,3,54,0,238,110,158,239,100,176,110,173,131,45,122,66,62,67,204,5,156,91,73,56,224,72,47,32,5,37,126,76,67,129,43,154,124,122,102,104,239,28,165,79,223,230,205,168,121,186,111,132,249,179,191,212,138,221,157,169,185,170,37,160,254,236,234,21,223,5,183,117,98,106,147,199,42,38,121,225,23,169,68,249,21,153,24,105,181,41,120,38,222,37,164,132,186,153,224,4,231,255,3,4,1,4,192,173,181,134,93,212,9,45,165,234,154,132,188,161,128,2,178,246,176,36,149,213,57,227,118,187,251,202,56,120,30,177,63,240,166,95,210,60,154,148,171,83,22,81,158,43,195,40,160,116,96,193,247,126,172,115,250,218,70,21,211,217,72,237,89,254,89,252,190,69,176,200,10,158,57,94,65,198,189,6,149,127,165,153,148,146,249,147,192,28,36,209,178,247,229,192,174,48,150,56,80,115,122,92,220,138,223,5,144,112,116,226,242,10,213,34,238,152,4
 8,46,170,6,252,141,42,207,8,16,187,194,169,204,40,127,218,127,149,95,154,45,201,254,90,212,189,110,28,214,204,11,121,109,57,44,137,150,20,10,107,217,225,101,4,35,123,175,98,241,144,43,197,248,33,225,38,253,215,84,225,48,71,171,127,7,69,230,244,71,68,202,44,130,161,90,21,39,85,47,150,23,36,71,114,233,226,4,182,62,181,192,237,52,202,151,221,81,194,239,114,38,206,156,57,228,199,222,151,79,36,231,102,145,230,138,169,95,91,121,181,51,227,120,154,102,36,195,234,83,240,117,71,128,88,57,157,82,215,18,81,26,159,233,138,74,14,87,225,153,23,248,227,5,99,0,174,180,165,173,147,106,249,104,92,147,227,7,148,129,21,126,211,21,10,184,184,236,101,26,111,77,183,160,34,84,182,206,113,105,154,133,215,77,53,250,101,42,2,48,203,177,130,52,232,163,122,39,9,72,86,218,131,107,247,122,46,47,45,203,9,130,221,96,99,35,108,64,80,252,4,158,37,133,113,37,27,0,33,229,28,190,0,116,189,136,127,33,169,9,220,182,191,83,58,239,101,33,205,185,251,158,90,175,60,68,193,12,118,211,245,246,222,21,138,88,168,159,150,5
 6,172,175,219,187,12,194,93,203,132,57,156,117,213,153,30,23,126,181,145,69,57,165,151,59,58,99,141,99,82,52,16,29,167,92,84,193,203,156,69,249,249,184,9,189,135,91,98,124,54,54,22,52,30,198,221,47,107,82,65,72,73,112,88,220,254,246,87,3,236,124,198,231,74,82,204,145,245,190,137,164,25,145,52,130,24,211,204,182,171,0,184,42,154,26,43,173,140,48,65,81,107,51,66,76,32,132,145,176,179,20,14,17,16,231,4,59,40,161,245,105,94,248,149,159,201,245,86,242,7,239,224,33,25,159,219,197,59,111,155,54,204,119,202,219,211,58,33,33,6,242,60,194,86,255,189,102,166,164,68,93,234,34,140,163,226,9,120,182,219,198,168,70,196,16,70,255,205,53,203,80,26,53,101,204,222,157,122,207,164,102,221,202,251,188,86,16,231,184,102,4,175,178,135,78,148,213,145,62,125,240,52,232,81,4,43,126,81,53,0,79,199,194,136,203,55,109,136,110,194,161,83,45,220,181,118,70,1,226,225,151,99,63,9,237,44,14,201,14,37,190,5,58,48,174,200,55,43,174,220,153,174,96,13,17,6,67,18,55,149,22,3,27,118,134,86,245,123,39,233,149,26,10
 1,220,88,203,147,169,33,26,185,10,155,158,220,232,149,248,64,54,166,106,196,185,150,219,147,113,70,136,185,106,149,53,50,212,209,252,75,132,40,128,184,55,185,70,71,71,81,28,182,70,162,124,177,73,247,2,50,59,78,212,167,126,52,15,70,194,117,217,208,43,237,75,33,143,232,24,191,252,143,81,243,222,199,235,105,95,178,136,137,33,127,86,166,225,113,81,244,132,32,80,193,253,101,194,225,162,229,27,50,245,51,167,23,61,5,80,123,128,47,63,191,119,83,119,125,103,211,185,55,96,129,225,43,106,227,120,101,125,143,153,130,186,23,138,138,48,217,194,240,161,184,142,136,81,209,72,105,167,143,147,197,63,109,172,49,71,29,107,236,31,75,235,33,57,38,82,46,33,121,129,242,27,253,83,89,234,219,178,142,211,168,209,208,126,177,105,71,211,77,186,202,108,138,21,254,204,162,96,22,104,234,47,63,9,49,128,38,233,163,220,147,69,66,111,79,187,189,128,119,18,109,199,208,232,210,239,131,56,207,173,111,123,166,254,57,139,247,210,37,37,208,92,110,219,185,194,120,37,134,119,68,112,246,130,92,215,59,65,122,95,208,32,2
 20,49,204,205,80,110,86,25,8,208,21,91,255,72,220,22,184,7,211,203,56,76,248,162,57,158,137,35,153,116,72,206,121,205,35,68,136,214,99,247,117,10,55,51,135,70,247,195,16,102,49,79,94,73,132,116,247,54,237,1,73,224,32,254,55,64,28,51,119,175,89,83,161,250,122,134,197,255,40,37,25,66,185,144,64,187,242,183,117,79,240,170,17,208,101,142,133,161,30,247,84,70,217,192,237,23,221,105,32,2,60,17,39,14,39,80,146,182,27,157,37,6,8,37,16,24,58,9,219,116,4,174,166,75,182,133,84,171,238,214,124,220,228,230,24,118,159,83,166,172,10,11,243,147,90,59,75,185,241,27,110,170,44,18,153,225,194,70,109,90,231,100,71,55,110,23,24,57,73,84,220,249,205,38,66,248,215,65,64,196,63,188,116,162,165,226,174,241,120,180,226,175,184,179,53,216,173,228,30,144,87,137,49,6,189,158,133,6,47,242,202,24,169,25,168,186,0,122,217,248,250,9,204,47,182,251,91,249,175,237,79,29,151,125,235,239,120,25,233,64,159,18,180,17,201,241,94,28,186,182,147,225,75,62,186,231,214,213,187,238,133,212,62,220,76,62,188,180,6,16,90,
 178,40,43,215,25,183,152,104,119,49,77,138,230,2,155,89,101,25,126,243,155,222,172,116,202,192,251,232,163,208,137,22,148,93,48,115,165,209,225,14,84,44,253,115,205,14,154,67,227,220,4,87,71,226,77,26,201,215,127,11,139,70,50,241,131,38,127,39,195,146,41,82,78,151,54,186,173,133,141,118,85,136,243,193,12,41,193,169,76,97,57,148,124,5,196,185,93,138,26,154,235,29,187,201,130,82,14,90,210,146,46,174,205,192,200,246,228,44,222,168,58,252,235,71,237,117,115,213,219,251,95,252,47,33,7,199,229,52,216,142,183,38,180,11,77,212,80,146,74,62,20,45,136,32,184,8,233,76,215,211,100,142,130,226,57,194,72,230,108,151,99,73,192,162,213,110,120,77,1,220,30,107,66,213,84,182,27,111,242,255,59,100,226,11,70,107,164,206,29,54,25,54,86,231,207,190,35,104,171,213,162,83,214,241,194,27,184,30,38,0,38,228,38,210,40,171,3,142,52,56,79,199,217,155,124,62,75,186,164,22,38,156,91,57,94,128,68,50,34,188,195,61,145,51,248,141,42,132,146,75,195,109,82,180,60,230,118,168,2,246,28,185,84,172,80,19,6,170,18,
 30,131,75,48,45,12,134,113,18,186,42,161,178,93,136,99,97,234,220,73,148,106,81,210,216,223,143,90,139,185,82,238,93,174,76,142,86,179,16,30,85,120,44,252,3,138,193,237,178,86,141,96,193,46,54,109,101,126,34,5,213,181,206,148,105,151,90,132,192,10,132,63,134,159,40,141,240,43,176,91,100,81,99,185,143,49,32,56,235,96,27,218,164,3,174,38,71,188,164,167,74,132,139,169,156,244,8,214,11,179,161,166,3,68,75,1,169,238,103,82,96,122,35,130,228,42,163,32,194,51,136,197,214,5,90,250,4,18,233,194,164,101,118,78,95,111,195,81,181,166,136,16,122,189,37,59,160,138,227,161,242,167,14,58,173,157,165,5,212,63,208,85,239,126,99,162,194,120,129,77,212,130,59,52,217,43,171,98,164,61,202,255,34,202,78,63,181,184,234,65,150,220,76,33,101,202,28,70,213,146,58,230,53,142,232,88,23,21,177,206,173,184,144,215,18,82,163,123,232,15,70,227,22,237,161,180,229,97,88,98,190,165,239,185,227,55,134,129,3,88,145,114,215,91,225,37,6,21,235,40,59,248,114,72,150,199,135,151,192,129,31,151,208,18,71,207,180,127,7
 3,114,254,106,164,121,147,133,56,164,134,155,144,195,204,83,107,191,180,249,158,195,71,211,214,197,94,40,167,14,124,163,105,143,222,15,175,135,146,55,174,39,125,241,192,57,110,230,50,129,53,90,196,1,127,6,105,230,195,185,171,41,105,108,112,193,247,199,170,49,128,167,78,31,93,77,54,193,109,250,81,73,48,126,124,233,111,66,9,11,55,211,0,122,164,35,150,209,204,119,18,237,233,141,79,176,247,181,89,33,21,239,100,106,163,119,105,122,56,195,239,46,109,65,3,223,171,233,179,22,138,114,35,233,90,50,12,98,223,228,174,20,108,236,138,216,63,206,87,83,92,212,92,226,163,73,4,115,199,151,247,30,12,7,150,216,221,228,196,71,2,121,82,171,202,127,15,214,215,3,86,57,232,156,14,202,94,99,209,168,200,126,192,15,152,202,121,6,158,213,137,73,240,10,248,9,216,23,44,191,192,224,146,128,55,49,91,170,47,105,205,211,176,69,220,253,190,78,183,243,160,220,229,95,131,156,140,227,170,151,178,142,6,144,242,239,28,208,108,58,154,244,177,230,20,55,108,139,75,17,206,16,184,47,94,224,230,247,156,172,96,250,171,144
 ,51,85,200,252,116,41,184,207,145,62,8,123,219,122,61,101,80,235,82,176,80,158,40,77,219,229,81,102,62,27,173,221,98,207,194,255,122,26,149,70,208,163,234,159,19,205,120,130,154,37,69,207,77,189,126,205,29,144,106,170,138,92,172,105,251,21,145,247,19,234,63,17,19,80,247,16,45,74,251,51,108,173,198,202,14,72,118,34,64,67,246,242,248,146,47,228,221,23,19,134,202,211,120,191,206,36,119,100,151,88,237,227,191,69,52,141,201,178,173,169,23,158,8,124,190,175,45,54,25,237,81,25,186,180,66,76,144,111,120,11,64,75,202,166,226,63,101,165,29,68,181,160,37,104,63,20,221,245,48,215,97,66,208,167,30,203,235,219,113,33,201,137,242,145,123,131,126,32,90,146,97,189,30,67,119,91,165,45,101,211,50,92,119,190,101,27,163,68,134,140,110,249,49,241,221,2,96,9,65,207,163,83,134,1,152,195,153,55,246,96,139,133,63,197,110,124,32,139,128,72,164,29,81,143,220,228,222,145,134,213,15,238,197,74,114,80,53,217,62,243,94,206,127,170,51,228,253,80,154,226,15,223,194,176,224,226,241,230,185,173,124,225,90,18,2
 02,119,166,112,99,62,84,192,25,203,105,100,252,81,234,247,59,143,133,23,203,245,213,92,153,145,216,12,204,229,84,139,226,115,124,55,112,246,66,79,51,67,6,186,23,58,100,117,198,107,219,75,29,252,176,167,45,162,213,239,66,20,178,110,167,125,68,227,216,90,23,54,45,203,104,61,86,169,93,128,187,246,11,99,66,177,130,66,142,104,137,157,5,107,115,52,146,102,225,183,89,62,51,54,73,102,199,252,242,101,200,63,239,65,187,204,187,147,75,246,31,83,131,190,211,233,22,234,169,40,207,169,47,2,21,230,30,63,30,123,119,10,253,149,130,39,5,202,77,134,196,192,173,173,97,112,224,72,197,206,118,61,254,183,63,110,235,239,184,206,99,228,102,168,236,242,252,8,7,79,16,231,221,33,204,228,1,64,169,93,74,171,78,115,172,188,217,84,14,116,171,112,54,60,92,198,129,130,182,252,148,17,105,167,244,80,121,47,216,29,247,122,94,214,220,100,179,40,144,244,238,185,208,226,3,216,74,46,127,243,117,88,203,75,81,187,15,21,106,47,213,87,134,253,126,36,231,117,203,47,224,187,148,42,32,89,26,122,127,182,160,144,195,56,193,
 0,246,184,47,78,64,181,62,100,130,184,154,245,212,41,79,87,161,118,250,58,176,111,167,38,49,59,232,130,154,76,30,28,123,167,57,57,250,223,166,90,101,175,122,21,31,222,206,13,47,9,235,18,1,116,119,112,51,189,249,3,254,154,241,42,53,83,12,23,72,248,77,72,167,223,118,243,7,98,187,17,75,222,199,136,118,87,23,248,75,87,224,19,22,41,134,254,241,138,97,189,112,120,13,24,128,155,186,42,22,168,174,244,44,174,252,129,4,115,157,176,198,141,159,2,114,181,3,25,243,47,152,170,124,36,102,96,242,22,17,41,84,250,87,219,140,91,139,149,37,120,86,59,84,110,138,188,221,95,245,46,177,8,145,84,187,38,228,10,110,100,93,15,222,53,251,44,179,70,95,241,195,208,140,149,41,194,88,202,135,105,117,122,236,47,197,94,240,165,159,112,91,12,58,78,172,155,83,224,229,48,137,39,63,237,214,107,53,104,64,125,242,190,202,198,136,86,250,67,112,225,98,136,98,162,202,196,211,192,8,149,234,76,237,13,166,182,204,225,244,43,226,86,71,170,140,88,228,79,110,45,248,199,101,158,57,141,169,221,62,168,92,53,43,86,115,22,32,7,1
 40,117,217,42,31,225,69,98,112,146,190,94,173,233,137,184,62,182,227,148,238,156,92,140,41,87,38,79,106,143,139,180,249,53,230,199,178,107,88,33,139,115,191,155,186,138,253,108,12,68,1,233,40,254,165,7,221,100,104,63,103,2,185,239,173,240,166,164,7,233,191,1,78,82,233,53,188,204,126,179,254,231,248,63,167,159,66,95,86,4,61,134,206,191,30,222,20,80,89,176,94,82,144,191,93,58,202,188,200,84,195,153,10,227,194,217,15,229,84,16,241,161,4,107,66,171,12,175,199,154,170,84,97,225,151,119,102,84,158,65,50,136,220,93,49,180,1,55,31,97,25,251,62,198,177,107,51,71,46,215,174,74,206,70,151,179,120,239,126,184,148,113,233,98,247,123,218,32,10,62,214,4,130,19,128,163,45,13,87,137,184,166,174,118,167,171,13,68,113,27,132,21,2,248,40,130,88,217,174,0,216,65,179,14,143,132,11,248,42,215,194,192,149,218,30,209,202,82,254,161,77,195,209,209,181,10,9,124,117,206,54,206,1,170,254,79,62,61,125,141,243,202,55,135,34,95,228,176,253,229,45,92,69,104,26,193,54,75,62,187,120,254,169,129,60,127,161,140
 ,246,98,49,116,132,100,183,97,97,25,163,244,225,163,172,107,162,25,48,70,87,74,18,158,223,149,76,141,73,49,226,34,235,145,56,198,140,22,128,67,251,68,200,186,122,173,37,94,214,108,142,253,145,105,116,5,235,40,181,29,101,200,153,61,117,3,61,218,53,145,104,140,55,49,27,225,180,169,11,241,6,153,130,228,138,19,71,91,63,233,229,60,108,232,187,160,143,155,114,130,90,203,150,164,62,215,113,105,122,137,103,101,255,216,128,87,16,108,196,254,142,149,186,63,233,136,173,100,233,236,30,110,69,22,114,15,72,214,60,72,93,176,160,110,45,140,80,0,47,72,185,202,102,221,146,65,60,106,145,238,213,226,223,120,121,82,69,177,52,225,1,194,26,210,79,243,137,50,203,217,106,56,17,244,250,168,254,199,100,103,224,50,56,27,112,93,55,254,191,110,237,68,154,83,135,148,108,77,114,226,172,73,233,164,122,253,28,198,220,234,10,60,240,155,213,14,56,162,100,134,142,143,254,92,71,59,92,81,149,33,237,239,239,237,17,102,155,131,39,133,106,124,120,67,241,7,7,207,24,21,240,202,196,83,200,51,227,86,137,87,176,82,156,73
 ,81,198,250,106,131,27,156,236,40,21,134,173,36,193,169,206,146,128,184,181,219,6,138,116,20,238,144,99,218,8,150,222,10,45,192,21,161,12,136,20,119,2,162,244,73,108,87,142,148,211,249,235,41,56,1,59,95,233,179,122,126,74,57,37,191,231,167,118,23,255,133,94,190,214,16,5,174,119,242,226,45,189,210,68,141,177,118,134,120,130,21,199,122,100,117,81,149,136,94,152,161,104,49,107,92,223,172,216,21,32,205,71,250,59,229,192,194,125,93,63,177,51,91,151,134,107,106,232,240,92,22,2,222,9,49,21,51,207,18,29,110,3,155,197,237,62,34,158,45,65,18,206,222,175,250,232,190,165,178,136,228,253,126,143,20,94,251,53,172,24,81,1,160,4,131,104,126,1,172,116,191,21,208,80,178,168,184,194,66,108,133,17,239,111,110,10,27,148,45,88,101,60,237,181,37,86,116,245,216,248,208,186,159,196,135,141,154,165,189,185,88,106,132,229,30,53,177,236,97,118,179,143,164,244,91,196,161,105,191,139,203,204,101,150,239,4,149,71,129,133,64,116,254,2,216,37,97,114,14,140,221,64,195,248,110,68,184,101,79,50,184,241,122,107
 ,139,46,18,214,163,181,65,48,7,84,238,87,161,163,93,253,171,59,248,140,226,12,135,123,18,117,240,34,231,255,105,211,149,36,194,145,71,243,81,12,228,96,253,133,64,159,144,20,92,227,206,195,71,102,134,52,222,125,177,40,49,147,135,104,91,191,116,98,125,169,77,215,20,230,60,93,52,63,84,80,48,142,36,196,57,57,232,195,209,225,29,175,135,76,71,34,130,194,145,97,28,37,235,136,38,76,47,26,172,143,197,182,23,191,122,144,149,64,84,219,159,74,38,129,115,51,199,91,182,125,59,37,61,246,188,168,35,239,172,78,183,105,15,221,89,154,12,29,138,101,236,160,213,125,125,119,222,183,117,81,108,14,177,78,215,70,58,37,13,227,58,209,95,45,246,167,131,223,110,255,48,203,250,71,233,93,2,167,148,221,22,234,95,222,190,249,216,139,154,165,210,144,64,25,153,78,80,179,218,54,145,60,254,154,125,40,51,73,23,73,162,155,53,182,174,222,48,13,24,159,105,190,203,236,10,239,165,182,162,38,180,186,31,62,241,73,219,235,31,2,50,9,169,25,44,199,69,88,143,97,53,211,157,9,153,44,17,206,155,38,78,161,71,48,67,33,253,200,2
 33,45,92,236,153,38,107,11,11,67,57,225,70,201,253,39,83,80,69,241,13,197,225,28,111,125,103,202,136,229,104,145,5,71,248,163,83,2,118,18,146,205,41,112,179,167,133,127,160,248,254,129,97,179,168,86,129,178,54,192,179,134,173,192,53,54,208,228,29,124,201,47,215,221,14,205,18,35,195,83,61,48,167,69,84,195,77,229,107,94,31,109,181,156,109,28,32,140,62,169,142,170,202,202,81,170,225,134,165,27,17,174,154,96,92,3,137,239,138,223,58,99,253,51,11,45,219,203,138,0,105,37,17,83,44,182,215,16,186,222,73,206,249,215,109,177,186,70,43,186,225,70,94,117,163,122,228,42,36,71,158,25,220,201,125,6,166,68,188,248,19,165,51,131,122,50,167,136,171,89,6,85,229,201,221,121,216,225,30,201,8,52,63,182,174,0,98,66,133,69,252,219,32,250,19,89,2,138,222,15,187,131,79,146,82,212,80,76,128,11,45,253,157,85,62,106,239,221,220,139,216,197,162,243,179,146,141,155,71,181,178,131,182,14,224,116,83,29,233,175,252,36,93,126,62,240,196,251,152,89,224,88,122,176,165,181,2,167,128,78,217,29,72,4,248,131,250,49,
 191,97,18,106,174,104,80,56,52,213,145,246,189,177,30,25,202,152,253,84,44,135,25,52,232,54,227,166,101,33,17,176,218,81,201,2,165,138,33,228,56,25,37,132,42,161,206,33,225,25,60,97,255,152,16,98,97,182,178,149,107,229,191,146,135,73,77,60,65,108,89,54,65,94,113,240,38,79,24,132,83,38,103,41,148,135,37,238,247,80,191,191,226,202,121,254,20,84,90,185,64,44,162,34,222,14,164,56,76,51,95,21,166,251,66,4,12,104,199,119,229,162,108,213,227,241,27,210,13,205,251,112,38,111,228,67,176,124,6,14,115,10,113,253,90,21,240,190,35,19,173,71,123,69,79,191,24,229,157,18,198,61,20,69,24,71,195,243,88,238,62,222,160,233,166,11,184,252,58,171,76,48,229,147,26,184,84,47,178,111,152,104,56,245,222,192,21,124,27,59,153,42,106,91,109,222,89,92,191,62,28,224,179,29,207,78,77,218,41,194,174,248,193,247,182,232,24,140,8,92,3,79,73,60,155,31,31,181,53,164,23,215,194,136,42,205,168,225,255,76,152,189,219,134,117,153,243,129,209,31,16,161,130,150,9,98,120,37,239,166,160,248,60,245,125,95,32,124,247,225
 ,213,83,183,243,129,84,69,167,205,206,88,160,125,134,209,106,106,29,205,32,27,26,66,81,234,60,180,135,201,57,92,54,246,106,126,215,180,130,196,97,57,47,171,172,92,209,99,174,82,243,161,154,130,45,121,152,228,141,8,100,109,2,35,116,43,234,36,227,216,170,191,153,240,124,108,38,205,54,178,42,111,1,215,86,148,85,182,127,177,47,59,214,138,178,214,97,76,236,11,199,52,96,59,172,228,52,117,148,37,243,119,212,217,236,164,203,127,44,167,247,115,12,63,240,108,114,182,62,52,238,23,89,214,112,65,107,40,142,228,251,44,13,12,44,107,1,110,67,208,177,195,129,9,55,60,35,236,0,100,32,118,71,12,166,234,237,37,41,169,211,96,27,26,251,205,57,200,146,118,110,43,135,200,107,36,143,126,197,136,111,161,42,47,121,9,58,218,181,114,206,15,230,255,153,214,204,152,50,49,219,101,212,38,34,214,239,71,124,214,28,137,152,219,224,146,156,132,176,52,115,94,145,138,170,214,100,3,138,73,191,151,112,26,214,64,157,118,55,159,188,75,156,73,214,0,242,223,96,25,186,188,113,50,2,24,131,115,192,92,202,22,204,95,188,174,
 142,113,180,14,240,74,226,127,16,67,106,53,57,127,37,203,253,211,21,34,225,51,224,248,129,213,137,40,126,123,218,223,233,116,83,62,16,137,16,124,190,166,105,107,187,58,139,75,209,6,129,171,45,222,163,194,245,201,125,253,235,114,215,29,2,238,252,77,131,6,158,2,60,132,184,220,207,157,11,63,207,23,109,184,137,10,123,150,23,229,49,142,6,52,101,203,21,105,29,195,10,30,166,15,3,124,0,58,252,125,41,1,245,111,157,170,246,218,9,39,180,147,170,118,0,5,223,199,43,141,244,46,160,114,166,216,147,215,141,223,202,231,217,55,119,123,157,1,71,243,145,119,208,222,107,21,216,17,133,30,173,126,207,192,150,85,49,228,161,83,101,169,168,48,211,51,84,222,235,42,119,236,247,228,74,87,217,30,58,224,99,212,184,215,136,211,125,20,193,137,44,233,85,95,98,112,8,166,116,228,163,140,179,255,254,94,254,245,27,163,50,42,255,136,179,117,162,218,150,188,31,121,82,75,248,136,87,41,228,76,1,30,47,94,240,247,12,108,23,178,182,214,75,63,1,111,55,9,167,230,47,222,203,126,57,84,227,240,74,113,141,191,174,23,170,72,1
 91,186,91,32,38,233,165,225,92,253,180,150,35,55,168,71,205,70,217,80,28,103,74,142,45,112,95,62,60,235,229,196,103,90,152,102,59,223,182,147,146,105,126,138,127,45,140,156,38,24,201,145,142,178,83,48,198,170,41,240,134,44,111,19,228,90,129,234,149,50,38,104,38,31,105,116,186,62,30,235,136,191,28,83,65,178,154,65,145,161,138,252,90,182,81,90,148,62,13,48,215,78,141,103,66,101,121,28,163,25,167,134,112,78,248,98,238,122,87,141,50,252,118,127,51,17,189,255,189,246,1,108,243,22,86,67,193,196,58,58,112,161,228,148,86,33,212,172,3,243,247,108,86,163,189,97,191,196,214,44,147,255,178,14,204,149,161,37,59,213,153,150,5,52,179,12,165,137,238,113,95,66,133,48,32,219,217,94,66,34,252,191,203,216,233,255,254,250,196,127,128,146,189,197,25,174,120,247,136,7,158,222,163,10,173,23,26,110,179,32,165,250,83,136,51,49,47,58,163,239,238,143,155,78,4,162,155,19,78,214,151,28,189,223,181,183,172,46,127,138,171,70,99,83,110,172,107,176,248,127,251,166,0,168,241,104,132,136,64,146,57,88,249,221,3
 6,39,97,166,236,84,117,167,39,239,34,10,171,132,93,50,162,101,198,148,76,252,92,118,19,143,147,198,121,207,169,221,157,164,138,208,130,114,136,99,161,135,34,165,124,40,146,39,179,214,90,148,114,72,157,195,141,111,122,2,157,106,239,205,91,22,113,113,140,138,30,76,47,5,36,21,139,21,109,50,75,72,10,167,102,198,28,72,248,146,46,208,87,40,75,219,49,224,6,72,101,161,10,37,156,61,252,54,216,149,162,66,219,158,12,65,23,32,108,78,203,250,153,140,225,11,202,93,135,19,231,199,155,102,52,159,215,75,73,126,98,182,93,153,53,27,15,155,158,222,238,210,196,119,237,233,0,204,93,166,49,31,130,138,93,83,13,221,66,188,200,134,3,110,130,35,100,165,164,147,51,64,88,126,5,200,161,182,254,224,136,99,160,75,196,161,33,188,80,101,252,22,19,120,122,0,102,202,69,32,199,35,111,92,6,34,217,213,238,94,85,78,124,171,107,6,118,219,26,20,207,159,192,239,118,122,162,134,130,165,237,98,201,181,207,126,47,185,242,196,24,17,129,97,199,94,103,237,133,49,7,69,42,119,113,100,189,228,124,159,168,151,160,154,231,84,12
 7,74,215,225,162,141,39,224,42,105,88,217,123,4,177,102,152,104,153,95,20,22,10,140,43,112,70,179,142,191,52,112,185,230,101,62,102,11,236,179,151,88,232,214,58,244,174,149,159,97,181,83,216,208,250,208,0,171,155,129,104,236,234,181,255,62,144,171,187,230,75,170,107,63,13,74,45,214,115,182,41,75,70,47,0,77,209,36,244,236,248,149,152,1,45,255,248,149,175,154,95,116,236,7,99,79,9,22,67,217,87,187,22,80,149,20,158,198,181,6,208,52,231,76,195,94,183,13,216,118,161,63,173,52,183,224,138,109,144,230,137,184,116,53,152,96,167,249,135,144,249,131,225,232,94,186,60,175,38,242,37,81,42,164,163,255,192,254,51,71,64,77,32,211,85,39,103,206,235,118,118,164,223,9,141,56,73,162,173,112,203,85,209,174,185,252,217,105,163,168,47,5,254,68,255,223,109,39,167,58,252,202,122,6,227,241,215,99,239,220,35,186,147,84,89,168,28,106,3,19,43,223,159,168,89,28,65,168,74,132,46,93,36,130,237,84,32,11,43,111,125,142,222,229,156,175,151,155,160,249,253,35,107,96,227,250,175,121,50,119,71,10,237,73,26,237,1
 10,7,83,75,213,125,173,28,225,194,226,72,119,156,140,70,168,255,90,219,74,255,158,171,135,7,123,103,146,18,202,177,168,143,63,227,0,17,99,235,73,216,19,202,28,143,184,227,140,45,226,198,241,154,217,248,205,222,69,246,117,142,4,16,235,138,1,190,76,75,115,59,148,47,10,209,116,122,67,147,194,119,111,13,25,192,23,119,168,66,137,227,100,182,233,130,97,227,10,145,239,29,74,26,143,26,122,44,196,134,196,229,228,103,139,117,3,121,42,191,72,188,186,133,118,169,109,114,93,255,34,242,21,34,200,74,92,24,196,83,49,157,113,19,222,89,157,179,247,163,189,50,213,244,231,31,79,93,196,24,222,237,42,125,38,87,165,186,26,166,95,28,21,148,51,60,100,47,116,23,113,81,115,58,98,199,15,123,153,149,64,193,171,38,203,34,33,211,103,106,139,45,32,35,37,139,8,10,14,75,4,47,175,110,70,12,65,126,74,83,148,108,143,74,164,98,246,57,245,98,224,202,33,208,52,66,169,162,165,254,168,37,69,197,153,217,160,151,216,80,195,104,3,154,213,227,51,2,35,67,225,188,101,57,168,217,24,224,241,72,78,80,236,108,229,253,118,13,1
 22,57,240,23,75,199,108,233,128,47,120,96,70,117,244,60,90,150,5,68,25,212,163,97,248,195,245,77,130,235,160,120,17,219,88,5,125,130,70,230,27,21,153,77,19,164,128,131,188,126,110,31,21,166,40,196,18,190,123,76,206,149,23,76,208,2,0,141,197,140,126,47,160,107,125,76,122,56,215,150,129,207,6,206,129,14,137,146,0,130,85,228,249,35,177,201,4,40,167,6,8,115,106,128,27,102,57,177,249,107,72,131,141,161,124,97,189,183,65,84,83,246,109,251,94,58,43,35,22,234,71,220,68,214,112,57,1,185,52,231,77,181,246,39,39,148,194,214,67,9,110,117,147,13,121,70,79,2,238,226,216,208,237,147,157,22,24,52,18,196,183,231,216,166,212,46,222,156,207,129,212,65,250,120,237,74,19,39,114,33,129,76,68,128,182,153,158,231,148,214,15,177,213,177,240,181,129,10,88,149,215,64,160,110,170,23,197,66,48,136,207,215,113,187,115,188,4,125,228,230,255,9,234,29,167,225,28,201,20,29,27,248,149,49,205,175,48,204,4,102,255,186,133,115,168,30,7,58,6,179,220,189,92,237,26,133,84,229,221,43,83,247,49,137,185,203,145,134,50
 ,148,204,231,136,4,8,62,126,89,138,254,0,51,18,226,104,165,36,175,137,205,73,41,202,187,28,21,87,93,191,167,118,254,19,143,233,228,211,47,65,113,103,94,35,98,83,217,20,77,101,184,75,78,72,157,69,227,24,42,189,205,53,72,122,78,102,62,249,46,131,74,34,218,192,59,215,5,20,234,199,70,199,217,150,250,111,165,120,75,175,161,186,250,49,99,253,17,8,144,255,220,22,62,255,50,186,61,120,159,96,120,146,11,16,91,190,101,28,66,117,249,224,61,238,29,14,132,184,104,171,92,47,76,225,64,123,11,108,64,145,160,204,214,44,29,9,29,47,215,177,140,131,192,55,219,150,82,193,71,44,1,214,188,79,216,120,138,96,104,165,48,167,188,26,131,74,101,231,181,89,130,22,76,8,254,150,114,206,163,242,199,80,188,28,53,153,177,236,103,6,1,148,13,107,174,239,167,98,161,220,209,30,40,141,218,98,246,192,26,197,148,192,1,85,95,45,133,96,42,101,100,228,110,206,61,97,227,251,54,184,112,128,30,227,24,137,173,125,110,103,4,175,84,12,20,40,93,194,130,233,25,156,35,161,215,109,39,112,164,178,235,152,36,61,173,110,125,156,126,
 101,77,77,143,223,255,244,1,45,150,157,36,98,67,63,210,51,238,8,84,130,7,69,37,61,37,178,158,220,45,236,37,173,80,163,124,175,237,30,79,108,205,91,138,92,252,20,62,13,91,74,18,229,123,207,116,26,45,121,17,236,112,209,148,43,37,20,196,92,27,2,139,118,149,61,254,12,101,1,54,165,134,10,74,221,93,10,97,72,241,79,67,63,133,129,82,11,197,30,154,167,47,21,192,218,215,102,211,37,184,45,91,71,253,141,234,109,12,95,177,144,227,201,24,119,239,2,160,194,45,167,4,42,45,255,155,117,125,156,195,160,115,136,151,9,74,20,223,251,35,200,20,113,192,144,235,253,203,86,188,192,146,82,65,57,204,253,32,38,40,8,82,25,59,49,114,3,178,35,70,174,65,154,103,165,134,11,104,65,127,119,110,78,83,247,89,16,60,58,113,126,135,93,1,111,37,21,173,9,32,154,77,176,50,30,97,227,133,167,171,213,129,188,66,231,211,126,62,26,251,167,15,79,208,64,107,208,101,244,161,4,45,44,236,203,50,164,185,120,196,168,247,2,224,160,158,20,14,68,207,32,10,9,176,161,155,202,143,32,49,73,74,0,210,89,137,52,62,111,214,130,88,191,239,78
 ,146,98,92,227,205,44,229,219,108,10,31,37,11,15,16,82,188,124,155,206,200,84,129,104,2,76,43,86,91,250,141,87,10,32,215,242,203,4,175,96,44,88,69,239,107,221,190,198,90,246,133,149,29,58,39,115,164,229,163,105,60,200,199,237,190,135,30,44,183,68,21,138,81,148,8,31,162,251,247,136,121,1,245,106,224,191,163,232,185,154,18,116,218,5,153,166,214,57,15,239,171,35,85,88,144,41,84,126,236,162,134,238,187,176,76,184,18,24,189,90,153,233,233,247,72,103,168,158,114,246,11,58,121,153,86,237,78,90,34,13,148,5,217,154,32,198,36,30,183,160,67,128,78,162,188,175,15,145,205,225,160,135,172,6,238,230,173,66,59,54,198,250,226,253,127,230,174,215,137,49,183,245,31,200,86,160,133,116,4,206,15,186,180,48,149,241,228,136,190,113,181,232,153,2,248,226,216,37,160,243,66,103,83,110,79,126,46,211,255,238,85,84,170,65,23,216,144,215,27,7,21,128,87,59,20,44,133,217,74,210,172,83,141,54,174,178,174,26,28,41,66,184,174,14,166,105,145,18,67,39,86,122,143,82,112,14,183,27,110,4,119,56,226,59,138,191,26,11
 ,50,115,45,158,101,35,165,0,41,254,251,242,9,41,11,96,235,189,23,53,219,71,247,33,160,244,89,242,46,20,253,3,176,194,191,123,210,235,169,59,228,50,78,61,103,142,171,127,229,226,205,143,147,203,157,166,171,44,197,133,213,55,218,103,223,4,135,156,102,228,53,60,223,52,252,51,147,52,11,62,162,237,111,8,37,220,242,209,178,125,0,126,204,15,35,255,203,158,149,206,146,34,75,156,1,36,245,162,178,160,65,132,149,245,235,88,162,180,109,156,95,113,82,79,232,61,49,161,77,189,8,198,18,62,46,157,26,169,166,78,209,122,230,107,188,10,155,165,112,134,104,228,83,27,40,217,42,38,121,71,122,149,79,60,18,123,151,174,162,219,240,5,95,215,144,26,132,210,53,221,208,177,83,125,166,95,142,123,40,227,182,161,36,91,49,46,194,120,61,157,38,117,223,10,104,215,163,18,173,81,219,93,209,197,169,53,91,43,138,204,8,55,22,64,239,36,42,138,74,78,145,255,212,172,156,145,29,166,79,124,255,182,129,207,136,224,27,161,109,124,103,28,45,243,31,93,118,249,92,48,67,186,247,221,156,109,210,199,120,3,40,116,190,74,239,247,
 192,99,77,120,95,101,194,206,9,215,246,113,79,102,45,12,139,132,154,90,145,98,100,175,143,119,6,247,23,135,215,73,62,116,106,116,107,77,77,57,3,84,168,97,234,7,202,86,233,153,135,34,223,221,157,130,121,6,20,77,196,241,62,201,217,157,172,85,29,61,167,136,216,147,42,18,237,75,222,71,202,1,151,218,24,109,191,63,80,151,17,44,190,66,158,119,130,199,120,3,6,190,208,100,24,194,80,104,3,167,248,80,31,74,61,229,137,222,240,52,167,241,47,68,148,30,4,85,254,150,52,143,241,18,36,253,221,96,6,203,242,152,137,246,246,141,95,83,138,250,209,53,15,126,74,160,151,156,199,13,41,107,43,176,108,102,95,107,203,164,147,170,182,210,8,81,203,118,3,200,74,243,189,28,45,80,208,89,71,113,193,25,26,154,192,48,251,35,163,72,130,50,68,255,187,59,218,132,57,169,110,189,111,146,66,215,65,33,60,133,222,194,173,145,4,251,194,107,52,240,79,47,247,104,246,184,203,160,28,86,198,150,5,72,226,11,178,188,64,78,253,175,13,187,93,60,130,230,16,220,159,134,210,42,39,246,36,87,14,120,19,181,7,122,8,118,7,114,253,48,158
 ,16,228,167,112,216,113,161,182,38,16,68,185,168,148,48,231,154,46,234,2,161,252,184,208,1,202,64,166,15,102,28,105,106,176,248,165,238,251,48,117,140,213,130,149,233,25,32,247,234,233,85,253,128,93,152,39,72,161,6,197,70,225,201,242,193,3,106,214,148,36,198,88,14,117,227,21,210,151,52,14,78,44,94,65,181,125,176,176,44,184,192,90,204,109,100,184,25,151,182,139,48,34,48,166,192,120,216,81,70,37,241,177,65,227,188,60,241,81,171,20,174,199,103,66,156,154,254,104,236,246,185,242,218,195,134,153,126,0,208,229,239,190,159,232,98,25,171,136,6,243,27,33,46,95,77,97,9,7,34,82,182,250,119,103,255,62,144,65,215,72,18,234,47,62,160,92,244,55,112,178,1,163,154,134,0,208,83,61,223,132,120,106,24,84,147,97,121,177,126,233,237,144,246,151,93,112,72,16,197,251,174,11,3,54,154,199,124,86,100,239,122,20,124,166,85,87,194,153,76,204,211,141,167,101,149,75,246,155,64,18,37,25,129,71,240,128,57,9,229,180,31,15,0,253,190,160,30,102,149,252,211,59,7,173,109,89,170,114,124,30,74,30,209,177,30,217,19
 0,186,0,41,160,202,37,53,51,149,87,126,18,216,233,168,77,198,255,102,175,67,193,0,44,218,6,136,50,239,138,151,206,6,247,22,117,249,51,21,141,126,53,34,35,134,185,3,21,226,67,202,159,35,255,142,86,152,6,114,147,167,231,22,210,203,180,42,45,147,235,108,151,113,238,176,157,26,98,146,66,234,126,124,128,49,24,106,215,198,190,215,86,228,155,210,107,195,121,119,188,193,144,101,183,86,218,32,105,147,151,31,35,146,68,164,1,192,51,248,219,147,234,227,226,243,43,85,166,202,200,178,222,123,13,165,98,209,48,76,148,115,195,59,70,84,133,128,184,214,218,133,115,155,104,223,14,217,19,49,111,220,91,112,137,114,141,11,87,21,60,158,0,71,67,251,54,166,166,106,57,170,1,58,26,49,222,218,247,82,229,194,149,37,231,70,241,224,37,106,241,104,87,17,222,197,103,27,166,180,74,8,161,81,178,86,140,167,140,71,226,70,136,37,219,113,17,155,252,253,200,86,206,187,176,40,77,69,4,101,226,99,207,192,204,66,16,67,78,122,88,250,52,90,30,217,194,168,141,126,71,234,161,151,228,90,176,214,71,39,97,112,56,211,129,175,2
 06,145,228,178,222,54,49,226,70,32,99,225,161,103,62,197,190,251,47,15,51,98,9,125,185,30,206,20,49,13,133,237,59,227,30,122,126,205,243,185,206,180,10,231,248,211,129,93,73,248,112,190,28,22,224,205,113,218,225,150,43,72,237,90,164,203,9,244,136,178,119,24,72,17,54,74,233,225,208,17,128,100,199,118,188,157,96,253,78,130,134,41,141,141,195,250,100,69,69,133,61,154,250,182,148,96,147,221,134,149,29,62,48,102,136,138,139,244,181,176,240,83,196,153,77,238,224,168,1,141,133,244,209,160,242,20,168,245,42,152,29,171,146,9,8,170,136,35,249,68,35,154,219,190,67,89,176,61,1,105,248,181,3,31,80,58,251,17,228,108,62,79,156,130,118,204,131,44,197,28,154,48,169,152,72,70,196,89,209,10,139,218,88,242,157,146,163,69,121,69,11,54,228,179,142,83,32,154,11,148,113,120,70,223,227,107,140,124,53,134,101,40,253,64,97,64,64,252,227,20,220,117,156,188,4,221,174,108,3,199,222,41,190,1,64,85,50,106,75,206,13,34,34,98,37,204,115,72,208,252,208,120,193,35,121,148,153,126,254,36,240,195,238,21,215,93,1
 04,194,242,40,252,176,86,58,140,106,17,142,82,155,234,138,45,36,202,185,150,163,23,13,106,169,8,2,102,118,24,165,191,111,154,213,112,222,187,240,104,71,180,18,56,28,85,186,64,192,151,236,174,6,112,233,64,8,15,21,52,84,87,95,103,87,69,57,45,3,138,126,77,116,60,12,59,188,253,67,181,111,163,131,82,168,116,149,13,203,45,147,120,153,200,223,68,251,218,20,12,159,160,10,93,94,182,23,151,126,173,78,186,87,88,111,133,112,44,89,236,122,194,199,205,214,169,125,170,55,19,229,232,209,121,177,163,62,233,20,79,74,77,13,183,96,158,102,167,65,231,225,40,23,78,76,19,167,116,213,11,105,231,142,214,170,231,95,184,22,207,222,112,243,147,3,203,47,59,19,191,173,252,141,206,241,200,212,65,78,11,42,17,251,235,192,25,34,39,50,56,245,223,177,223,94,110,172,248,76,109,10,117,46,22,168,164,217,241,239,183,230,112,182,205,230,2,75,194,238,72,104,171,107,229,86,152,140,193,181,108,158,54,254,40,65,154,2,255,77,191,180,84,97,82,199,3,31,128,219,67,233,44,170,174,247,26,154,201,234,252,79,43,65,206,202,248,
 182,47,231,61,244,107,193,34,139,121,175,229,141,166,201,106,53,220,167,237,233,148,147,97,236,14,121,79,33,68,53,178,99,56,190,180,185,236,154,9,232,87,248,39,51,233,221,252,49,234,230,60,233,239,69,109,218,5,5,30,21,195,134,194,229,52,109,143,147,193,129,198,127,56,143,194,44,201,31,139,82,212,47,92,226,226,243,57,226,19,56,213,67,62,37,187,182,151,189,194,42,184,182,27,236,117,83,215,84,47,84,141,23,156,245,167,2,7,186,226,82,205,189,78,182,179,14,37,47,110,186,49,197,173,246,198,41,103,129,159,243,111,24,228,126,191,221,94,183,241,14,44,55,132,71,90,119,160,213,242,168,175,182,19,215,69,151,252,229,141,57,100,204,249,76,14,221,185,22,206,227,104,249,234,159,117,84,212,216,29,120,232,117,56,185,194,143,52,67,246,182,206,34,166,112,49,131,86,187,47,170,146,224,97,177,24,184,129,171,210,44,54,152,234,111,63,145,156,185,169,111,145,57,210,136,181,39,73,85,155,91,59,72,95,212,39,221,195,88,139,34,172,0,139,245,17,165,50,119,65,243,6,212,127,180,38,122,26,205,239,73,183,65,8,1
 06,28,162,224,13,198,201,37,228,185,156,155,84,150,210,174,6,70,96,188,148,23,166,89,118,118,54,0,141,224,122,134,200,20,117,136,188,92,252,120,35,58,53,146,67,117,22,72,6,24,91,204,103,28,82,80,101,155,177,100,159,48,132,196,217,153,175,152,46,194,147,206,243,244,77,255,136,149,113,93,92,175,253,219,32,39,150,68,248,158,148,10,115,170,220,60,222,198,125,90,123,108,114,73,166,128,197,161,242,51,27,71,25,241,188,157,172,126,107,113,18,0,170,166,90,16,205,25,66,127,99,29,138,150,32,40,84,122,74,120,76,185,30,184,147,10,22,97,30,53,31,83,224,231,236,103,54,5,177,109,184,126,209,217,103,89,34,98,180,127,109,51,139,67,154,28,247,94,186,163,169,136,164,125,178,245,52,105,172,115,158,172,6,77,147,218,163,182,34,247,132,251,115,65,24,243,127,55,134,159,216,146,105,250,221,41,252,114,60,63,62,246,100,125,112,210,233,78,16,125,192,107,197,169,12,43,95,200,29,53,61,161,190,246,2,210,2,26,206,220,116,138,111,213,208,55,120,128,27,252,150,14,71,133,94,96,31,181,171,87,24,234,105,81,193,1
 89,221,170,95,225,42,166,190,98,173,171,193,100,174,138,94,249,219,59,173,207,35,251,10,80,225,15,39,174,92,24,187,236,87,155,237,77,88,20,47,81,190,115,56,94,241,118,155,206,103,228,114,97,245,212,44,64,134,33,136,224,63,15,42,6,162,19,135,222,162,165,0,63,77,143,151,114,40,168,207,71,119,9,46,131,16,227,36,77,1,14,191,244,23,131,58,50,22,30,0,137,136,151,128,208,254,87,233,46,234,30,74,225,185,66,168,177,109,118,217,22,207,136,199,163,8,51,19,128,96,164,135,136,11,112,204,85,57,128,18,212,16,140,62,63,181,234,70,202,22,20,233,68,253,29,83,89,38,227,28,4,189,203,130,215,77,60,215,97,10,147,221,73,176,182,95,14,14,157,197,242,207,220,250,71,228,29,229,97,9,25,220,209,138,68,41,72,218,18,164,71,231,136,92,58,61,145,145,179,160,197,255,132,124,37,139,223,1,27,172,222,9,149,170,204,216,149,241,137,148,212,248,238,132,36,66,230,90,233,166,58,130,254,62,170,252,47,105,84,240,199,3,169,199,34,66,12,95,234,28,65,85,213,111,246,250,87,124,229,85,169,244,155,31,179,119,231,35,9,119,9
 ,136,1,96,22,245,226,35,131,99,214,66,81,215,110,217,182,194,85,161,249,177,222,143,111,173,227,167,85,224,227,60,62,71,24,3,123,136,186,98,73,230,201,125,61,21,140,86,221,50,192,83,210,27,124,230,53,243,134,18,218,145,94,29,77,114,1,226,107,11,71,85,250,185,58,237,217,173,226,27,42,206,235,186,20,203,97,85,131,1,138,133,141,58,153,209,150,34,31,85,0,70,17,172,19,50,63,184,9,162,81,22,51,111,3,119,227,132,91,142,183,136,3,60,166,243,72,128,71,208,209,254,221,78,250,236,36,13,110,157,208,119,191,144,178,210,13,167,95,164,247,115,46,63,205,40,202,221,24,14,15,65,70,34,217,216,124,100,240,248,211,181,226,243,24,122,76,252,220,138,163,171,65,184,128,26,90,149,78,151,125,2,189,232,137,81,187,74,115,24,47,84,135,26,125,237,251,170,66,157,76,145,7,222,140,89,228,53,53,201,209,14,48,94,7,21,19,37,165,8,239,101,212,152,96,187,44,253,244,81,179,193,66,229,99,214,81,154,43,135,123,38,241,216,112,194,235,166,118,108,76,145,41,236,111,131,244,101,79,75,230,227,65,65,123,0,69,214,182,210,
 170,225,58,119,21,164,56,142,102,101,118,142,23,15,196,153,233,136,233,246,155,81,145,240,24,9,241,227,38,92,41,159,123,77,186,245,82,194,254,101,163,81,128,69,53,149,91,196,227,242,83,18,57,3,249,246,65,131,217,3,43,174,180,42,22,224,224,228,73,152,141,176,248,155,206,10,137,27,146,92,216,140,119,148,239,12,191,20,204,24,89,56,29,171,147,112,220,176,218,210,167,225,184,102,184,74,209,95,93,83,99,74,220,63,252,82,231,65,227,164,121,183,111,25,212,156,228,141,42,9,114,61,110,105,52,214,196,205,245,167,81,111,26,32,72,42,97,195,146,91,61,145,112,174,29,34,210,252,62,204,244,78,102,108,73,31,81,44,69,241,68,81,85,71,153,192,25,136,237,159,217,88,121,182,150,64,187,225,33,90,214,28,185,227,249,193,78,239,14,108,41,205,82,29,33,194,87,96,247,85,60,152,43,138,149,222,114,202,54,154,203,117,134,148,92,75,28,157,174,38,189,20,50,114,21,114,47,224,3,236,246,25,56,41,225,177,56,70,111,160,183,128,133,88,48,93,134,101,214,54,130,145,72,204,132,47,255,184,78,165,220,90,152,34,33,185,121
 ,111,32,199,246,83,89,17,105,44,157,89,247,166,238,72,223,232,131,201,239,42,46,125,85,128,7,88,135,160,208,83,65,181,89,11,175,102,186,238,86,53,232,208,245,82,246,27,15,60,250,47,167,43,63,252,108,170,117,37,116,154,187,57,53,203,57,248,153,220,37,68,128,246,205,47,1,8,150,143,129,140,178,86,231,97,20,87,164,25,153,112,122,155,229,69,175,21,29,19,62,189,203,220,47,183,95,209,87,60,81,208,81,117,48,250,113,149,64,94,195,39,182,70,195,23,196,147,78,167,165,79,133,194,7,200,57,112,25,80,129,237,59,158,108,220,240,112,17,64,110,141,84,124,120,5,124,76,38,123,90,127,41,223,134,17,186,49,119,5,238,163,138,9,155,182,150,77,66,36,78,186,147,81,29,179,153,158,245,7,228,224,27,54,231,108,42,141,175,154,27,93,6,198,60,181,136,178,71,199,164,81,156,86,46,135,156,136,249,141,213,185,73,134,186,121,84,68,132,104,56,19,215,59,166,46,80,154,201,109,216,111,249,142,45,168,207,220,25,56,92,212,6,72,117,168,51,9,132,61,134,39,191,210,66,4,30,238,125,174,89,42,180,15,27,253,19,120,54,90,177,1
 07,20,143,95,35,86,227,177,44,128,189,243,10,167,68,193,148,45,56,61,29,236,196,71,230,237,134,218,46,193,95,152,88,161,1,174,168,66,92,166,187,146,102,64,171,198,207,188,169,200,154,167,230,23,105,202,43,104,1,119,170,207,2,186,144,103,28,225,198,132,166,157,54,50,218,14,118,42,199,115,52,176,48,144,4,188,83,253,91,224,45,239,1,81,180,16,214,148,224,160,158,158,11,38,139,91,7,170,99,242,69,84,203,134,52,136,26,113,96,223,9,244,123,1,181,100,122,206,81,178,34,234,122,95,166,248,46,242,50,233,250,245,35,119,99,75,95,205,54,210,73,14,147,140,61,162,244,243,45,155,218,127,242,12,17,253,29,89,45,97,58,97,160,115,212,9,10,68,58,214,47,173,21,51,80,57,49,79,123,110,252,107,171,53,201,230,31,51,5,204,68,203,146,211,117,93,148,151,140,67,170,124,156,168,112,71,240,1,105,92,11,140,230,135,5,130,93,237,215,96,12,43,232,6,225,255,234,135,137,51,8,230,155,209,188,16,97,47,234,11,68,127,123,197,34,105,3,59,28,126,64,90,227,227,125,56,170,12,176,117,12,23,142,103,179,11,171,20,12,134,243,
 199,137,244,74,164,0,180,93,194,155,174,55,137,7,200,221,129,131,33,101,26,61,6,142,126,68,161,98,71,131,99,50,133,34,176,114,79,40,242,198,151,125,0,198,248,205,43,231,107,50,117,42,226,61,78,93,217,220,112,178,119,205,163,194,71,213,221,217,109,139,150,185,182,112,140,140,181,160,183,131,22,105,224,56,143,49,108,99,26,84,215,219,57,50,20,35,113,71,13,90,251,197,123,250,164,254,240,29,196,227,1,31,39,187,197,131,135,112,134,190,7,136,44,191,187,121,216,5,253,40,199,202,47,33,248,39,13,254,148,74,110,185,235,45,239,196,231,179,8,20,8,117,144,104,114,96,171,212,46,192,182,129,80,201,123,218,14,37,60,86,218,43,223,96,18,251,56,52,143,200,230,151,246,161,219,145,229,215,183,219,183,222,160,16,235,205,175,98,47,152,249,217,211,113,68,162,235,173,19,150,93,178,154,3,232,174,54,215,74,246,54,143,155,190,194,252,57,41,185,207,250,85,82,10,236,123,107,239,154,39,33,210,53,201,17,201,182,150,47,209,85,109,209,190,24,102,211,126,4,141,1,141,110,187,44,52,30,8,160,45,96,228,7,114,40,16
 7,194,83,134,135,104,177,21,131,230,184,132,239,243,166,216,47,118,12,142,8,183,82,61,62,230,201,46,203,64,127,126,73,25,35,23,164,125,41,107,211,199,121,110,205,7,185,134,4,149,84,92,227,2,20,26,10,160,113,59,62,25,83,149,128,197,83,205,58,211,229,105,103,242,172,119,163,0,95,134,145,90,240,91,247,249,226,203,197,35,60,237,240,241,216,112,72,116,230,246,24,22,44,223,193,21,163,106,213,254,193,198,88,152,209,183,100,24,20,90,198,225,232,107,205,52,131,50,82,157,174,61,143,21,222,188,75,123,59,81,180,61,45,23,24,85,216,199,185,107,252,13,9,98,158,40,150,53,143,23,193,176,179,35,181,191,191,198,89,11,223,241,230,180,218,194,43,223,160,244,20,48,125,0,41,96,233,122,8,95,118,243,39,24,91,124,28,244,234,242,243,168,31,141,128,187,138,212,110,154,230,152,49,220,7,152,180,62,103,88,152,129,132,149,75,15,156,124,167,221,26,31,233,50,7,101,11,28,192,184,16,181,165,35,109,241,130,25,163,56,150,105,242,117,95,224,86,166,248,42,189,60,82,0,213,253,140,161,239,23,151,198,49,181,192,5,183
 ,207,141,31,100,117,40,192,230,166,208,186,3,16,184,190,42,38,214,227,66,79,42,157,197,104,180,166,4,174,155,182,225,83,185,24,255,70,110,224,200,234,219,42,114,54,9,33,52,34,147,148,158,201,108,183,179,3,194,124,21,133,73,64,93,44,73,209,125,33,57,15,136,148,65,121,188,132,12,251,122,154,32,201,108,124,106,140,25,103,124,110,122,34,255,52,58,32,121,24,124,202,161,85,102,84,237,126,69,12,188,123,126,207,136,102,77,239,67,73,102,145,136,75,96,19,171,129,33,109,108,42,171,98,233,6,53,116,106,159,187,171,248,220,92,99,86,74,30,147,192,158,248,240,134,155,197,112,161,172,82,191,160,34,222,124,45,8,176,174,16,10,230,189,226,3,37,40,79,235,104,22,211,212,34,109,234,3,82,207,225,94,62,66,193,158,121,219,167,49,81,5,132,226,154,4,86,5,36,68,253,51,106,107,76,101,191,110,203,20,136,184,177,29,16,8,57,212,111,102,78,140,91,13,67,146,198,95,238,124,198,205,33,59,33,139,48,9,38,191,100,239,54,235,250,205,140,71,95,144,172,128,39,94,210,18,15,160,47,72,155,159,165,153,37,117,120,27,126,2
 31,184,234,71,57,225,200,244,188,51,0,166,35,248,239,201,223,21,114,37,214,21,65,72,143,174,245,245,222,1,56,108,114,196,212,246,52,196,6,112,189,165,250,145,94,20,226,201,210,202,206,34,177,135,101,230,49,16,149,133,211,193,218,127,79,5,87,7,96,200,206,53,146,21,40,200,151,208,171,74,146,206,176,46,100,226,169,126,250,218,71,115,71,130,223,172,27,26,182,239,52,113,177,149,203,56,36,11,57,91,137,155,5,251,12,230,122,13,228,38,15,81,205,149,187,196,152,97,104,45,39,69,188,12,24,67,151,8,254,147,249,236,245,195,46,27,68,250,196,123,82,202,148,22,212,3,126,72,174,8,147,231,107,134,219,73,55,213,174,166,190,9,201,133,115,232,165,171,84,56,193,94,45,216,75,250,30,96,32,15,77,176,189,137,99,188,96,53,54,62,204,177,184,154,221,163,191,233,253,183,233,11,106,119,37,37,133,231,142,104,183,183,251,81,196,133,107,124,17,68,49,199,11,80,204,184,182,98,90,229,159,183,176,75,241,55,40,155,86,62,223,83,118,154,224,51,239,55,206,183,155,84,118,197,243,49,12,139,160,123,188,129,75,199,44,249
 ,241,223,193,15,171,5,55,68,80,155,62,42,236,220,1,12,251,186,204,195,70,244,28,77,63,232,187,190,11,200,44,0,91,25,133,230,83,67,32,231,248,131,15,245,211,188,45,182,157,115,252,220,116,224,223,219,190,162,66,235,205,19,134,59,112,195,156,88,87,139,236,59,210,67,174,26,241,112,102,95,220,221,153,174,23,118,216,187,179,233,16,169,136,171,169,174,11,133,146,92,105,138,238,56,201,73,14,189,244,7,93,83,58,34,99,46,240,195,253,21,181,55,175,246,59,74,41,218,168,159,135,77,145,104,105,233,110,174,64,188,22,138,86,173,237,149,4,242,237,92,100,75,212,192,94,59,230,172,34,151,99,72,23,242,170,110,94,168,112,138,209,105,171,251,25,169,112,57,56,115,75,122,195,7,150,236,40,205,75,197,134,24,57,75,137,229,16,237,159,16,91,45,41,118,42,206,253,177,209,22,115,117,120,157,146,93,31,138,142,209,81,94,125,71,30,15,49,144,138,171,7,188,132,28,115,170,170,19,124,141,170,143,29,208,155,165,123,203,69,85,175,83,43,48,236,90,84,134,111,184,3,74,229,197,52,216,57,99,231,110,142,88,243,199,243,122
 ,153,155,206,167,63,181,64,69,162,166,215,123,164,22,25,151,178,220,43,219,187,188,200,87,3,68,104,121,88,58,29,133,29,169,107,197,163,151,217,99,210,61,232,5,139,68,150,14,247,48,211,14,250,47,204,15,119,129,3,218,111,96,114,71,128,186,8,105,132,216,127,162,28,87,53,17,11,209,18,109,82,138,20,176,37,13,231,93,91,24,204,223,208,131,56,234,179,44,250,139,21,231,60,147,123,226,132,155,126,43,169,143,214,67,182,52,78,161,43,107,1,81,48,89,241,69,64,65,239,53,237,131,9,24,114,24,201,172,110,218,206,156,96,238,125,73,196,194,214,94,95,215,181,15,171,199,249,134,15,48,239,22,255,146,0,44,194,135,129,202,95,23,46,180,249,117,152,71,134,185,223,172,118,224,76,127,252,54,175,170,156,105,125,212,5,252,39,103,12,17,236,161,138,150,254,181,175,134,9,97,202,246,0,25,114,52,228,138,9,50,7,166,11,193,18,128,81,254,45,211,205,99,173,11,199,133,112,67,116,12,213,51,204,106,175,150,41,102,121,123,59,73,30,242,71,166,107,49,122,154,16,181,28,188,88,53,1,46,96,42,255,52,115,153,209,115,118,108,
 69,24,173,169,173,7,193,116,234,209,65,102,238,163,97,104,163,219,65,225,57,147,195,19,120,73,178,51,49,17,140,248,104,1,200,167,130,132,31,208,7,102,10,208,24,34,50,4,176,239,236,42,100,69,161,16,219,77,180,122,228,59,115,45,159,189,6,190,111,68,202,5,70,49,163,238,65,57,71,247,218,241,50,119,109,57,106,56,64,161,255,84,124,197,87,84,58,196,207,152,240,99,114,175,253,108,181,218,121,35,50,51,95,138,90,39,89,27,161,26,140,211,220,25,7,122,172,142,2,237,150,165,192,151,19,151,17,139,5,245,106,76,203,252,48,232,153,6,239,109,9,230,198,195,71,115,73,30,96,153,106,208,132,126,74,208,135,13,11,35,142,21,196,128,143,25,151,3,106,203,112,65,246,11,243,220,147,63,156,219,42,125,185,64,113,84,135,155,67,124,47,1,220,90,118,79,79,26,123,45,68,210,230,236,217,9,178,241,85,149,200,228,5,240,152,233,44,151,212,115,40,96,53,62,35,19,88,228,238,36,186,170,37,80,19,52,208,105,125,152,2,240,32,236,20,104,153,216,143,108,203,63,232,27,83,59,226,5,137,132,169,153,12,15,137,98,253,17,131,199,20
 5,90,129,88,96,239,236,239,246,185,58,196,125,171,159,2,57,9,243,205,37,230,175,61,12,106,73,172,58,7,0,7,68,20,109,17,153,175,182,70,246,84,74,150,23,164,44,240,120,104,151,88,217,144,26,105,117,135,39,81,198,133,226,1,140,26,59,121,116,111,121,74,126,72,92,246,200,153,121,0,123,81,174,11,33,8,118,127,53,193,241,238,0,19,37,141,189,188,113,88,99,45,156,223,200,94,222,4,205,116,51,34,1,78,120,245,31,253,246,208,22,22,209,101,176,243,114,180,127,46,7,128,39,178,209,81,250,240,148,142,165,60,63,144,70,157,253,172,64,146,229,213,233,247,153,54,179,7,70,177,31,39,205,148,45,139,116,65,56,149,0,66,18,199,252,153,235,121,206,28,100,252,228,90,145,19,130,14,29,213,77,187,44,34,247,115,227,163,108,180,136,153,228,126,127,197,222,65,15,250,99,148,15,53,88,181,220,209,84,199,128,22,232,79,62,54,19,242,131,66,60,209,230,215,142,13,143,12,17,223,186,123,173,156,126,2,83,93,64,214,40,214,186,101,162,94,55,210,123,15,222,79,14,10,231,138,35,234,134,156,33,88,125,201,108,217,160,162,191,16
 3,103,78,51,23,112,127,94,236,147,65,147,81,100,90,170,82,47,204,48,158,172,105,104,81,25,65,41,95,31,213,126,240,61,46,13,138,128,171,17,35,74,54,227,126,181,231,91,28,5,177,126,165,198,87,165,90,234,81,98,179,111,49,14,85,111,251,30,124,143,166,163,197,38,249,253,96,98,233,213,138,141,231,44,174,227,148,251,161,122,215,134,236,123,20,15,196,21,65,138,123,212,186,79,249,122,149,63,131,125,132,158,146,65,128,124,58,253,246,160,59,244,204,120,88,166,128,188,121,104,187,7,11,182,29,181,136,211,167,17,74,128,0,66,181,35,149,112,34,79,251,196,39,213,5,231,146,50,207,179,189,163,206,104,130,242,214,246,245,204,118,193,130,218,171,11,192,104,181,229,239,13,109,132,53,3,147,206,9,216,224,194,44,240,99,157,66,118,123,250,128,97,147,71,77,22,129,89,54,91,4,78,96,1,203,58,201,54,101,6,192,144,161,22,32,44,104,105,132,159,248,47,120,244,157,69,24,92,207,204,212,94,229,214,91,210,204,54,232,88,15,114,88,48,86,127,156,71,127,40,75,123,232,250,12,48,222,69,28,47,152,193,55,81,47,101,6,119
 ,201,246,228,149,63,82,220,141,66,123,38,132,123,128,140,103,123,181,231,111,201,135,167,159,147,137,7,169,53,233,165,70,107,113,227,25,0,140,76,24,56,114,178,99,101,213,143,154,183,48,90,0,145,233,225,122,159,35,56,66,197,37,230,22,93,103,132,10,9,94,251,190,76,211,142,211,71,152,115,234,160,202,195,242,18,85,126,184,112,224,24,107,55,104,78,183,209,32,142,181,58,30,235,234,238,193,84,39,16,28,50,138,226,166,39,186,45,188,199,216,113,186,205,163,123,124,154,222,187,17,109,120,233,21,125,10,192,250,183,176,255,33,46,54,76,112,163,94,247,141,51,159,223,168,178,33,30,96,136,153,217,162,82,83,231,213,240,70,145,163,209,217,53,166,127,162,208,114,191,119,85,232,150,233,27,234,195,255,211,24,94,157,226,138,130,125,203,7,5,207,191,140,29,93,80,137,47,69,168,232,221,212,228,62,102,228,125,20,183,56,35,247,219,178,246,51,234,98,35,125,77,17,210,20,28,167,174,185,66,194,208,59,44,152,198,42,229,3,145,114,97,173,178,241,148,77,118,78,88,252,148,93,21,59,226,161,210,187,166,220,179,24,
 23,217,206,110,71,100,218,125,94,27,117,107,239,65,39,123,50,57,222,139,158,93,232,140,5,239,19,181,72,212,166,31,120,130,155,171,13,112,161,148,101,228,240,10,245,255,72,22,51,6,151,28,242,178,26,121,36,26,247,123,7,184,6,243,119,77,198,226,158,224,91,10,92,207,79,77,42,131,74,138,162,97,73,61,53,76,162,55,187,238,188,12,150,248,83,134,107,128,49,233,110,197,157,153,67,168,93,58,27,67,251,174,125,195,109,80,178,64,83,132,169,97,38,214,161,115,201,182,24,22,199,158,106,167,42,80,112,58,10,186,203,133,188,187,205,65,25,215,232,6,224,96,140,65,138,240,161,152,71,134,77,39,175,193,244,30,45,146,9,165,30,0,16,65,95,60,254,42,150,227,193,203,189,184,19,197,187,239,62,141,109,54,247,211,142,99,202,71,114,168,6,91,234,175,45,133,99,4,11,186,100,191,217,244,74,28,28,208,107,17,120,119,255,200,138,168,105,127,68,63,46,130,193,168,153,184,113,14,101,66,214,88,182,214,173,14,87,203,85,89,109,76,238,55,202,91,16,96,74,11,65,195,232,26,215,142,104,255,201,209,14,16,95,246,21,117,82,147,1
 59,95,87,182,101,253,175,117,86,121,149,173,140,221,197,164,204,151,156,150,97,105,174,231,31,204,126,27,216,87,24,113,209,138,127,69,169,105,102,235,114,197,242,77,126,43,169,202,139,146,87,159,84,145,186,56,139,229,126,101,128,226,21,215,43,232,177,136,199,98,213,217,57,198,59,30,61,105,171,1,58,140,89,31,68,114,158,212,57,30,103,75,214,1,205,216,176,30,28,174,83,229,131,158,134,46,88,252,41,218,24,64,65,204,72,254,11,101,63,151,173,159,79,5,190,120,57,148,139,123,84,41,207,59,148,54,68,72,19,33,108,31,186,13,228,221,213,78,222,120,102,6,94,63,228,14,142,11,217,138,77,51,35,220,34,43,105,79,54,45,9,75,73,222,21,75,67,130,47,140,212,103,41,124,136,148,146,84,63,208,116,117,134,191,61,246,201,22,17,241,171,33,136,128,254,46,230,237,157,17,249,223,159,170,202,70,124,155,221,57,148,245,57,75,133,93,16,235,7,125,163,130,100,191,99,19,124,2,223,205,110,98,161,231,153,13,88,223,31,85,134,202,33,79,255,177,249,241,124,133,38,176,171,244,196,150,179,115,84,41,200,110,232,217,235,15
 0,82,172,162,40,193,63,74,140,77,33,145,239,87,209,74,168,174,167,3,116,174,233,123,198,65,0,33,12,70,28,127,122,212,101,157,3,64,202,82,8,45,168,104,143,11,151,51,180,82,117,126,53,103,85,224,8,229,110,96,221,171,33,92,236,70,222,109,27,119,217,186,218,222,222,86,204,197,102,248,249,72,63,175,186,215,233,26,107,143,130,22,183,46,163,123,200,191,254,142,46,65,228,155,126,20,194,144,50,235,49,212,175,153,122,73,241,236,245,47,233,152,152,196,86,106,136,223,134,230,156,254,42,221,110,79,49,84,198,66,71,85,28,154,98,107,53,252,139,234,137,157,71,158,226,177,129,166,228,207,83,113,95,9,208,79,254,3,23,165,164,227,109,92,192,19,202,246,94,220,34,194,223,209,180,44,176,2,162,100,97,134,6,44,116,132,42,97,241,2,144,158,24,77,1,109,28,225,129,233,153,180,61,246,146,188,112,57,85,88,74,219,82,192,138,119,234,41,15,68,185,197,236,41,106,58,239,216,130,66,222,53,98,199,217,126,21,197,252,224,41,184,252,105,107,217,198,94,82,107,146,127,90,203,169,140,76,253,104,114,232,74,89,159,57,226
 ,62,187,80,24,71,238,176,216,97,27,51,0,92,69,220,56,70,203,134,139,66,207,117,113,177,217,226,240,211,46,206,107,230,9,77,146,188,177,215,52,149,63,47,88,151,25,20,36,15,109,255,68,182,22,103,173,22,243,108,168,223,45,49,88,80,29,185,125,253,102,66,77,54,71,177,54,1,83,87,129,135,50,181,230,195,36,156,38,247,66,184,94,71,85,107,133,220,38,254,205,7,134,198,21,202,6,42,32,40,84,55,253,169,5,114,129,187,203,2,42,248,106,107,204,199,245,129,98,228,81,127,74,90,56,60,199,239,164,243,155,212,78,249,95,45,253,235,130,7,86,110,223,201,117,242,243,181,178,113,143,101,187,192,70,202,78,140,116,126,248,58,166,251,198,218,196,192,248,161,98,9,90,151,133,159,142,90,99,134,86,218,240,152,30,253,149,51,129,236,93,30,110,63,119,53,23,235,137,118,1,185,121,169,58,223,179,7,133,171,146,39,131,233,48,149,117,84,67,62,233,33,217,18,146,148,96,126,92,213,64,102,121,36,61,229,54,218,57,44,225,130,240,252,130,246,221,73,184,110,137,11,143,244,179,142,216,20,51,147,245,40,210,177,96,79,192,205,17
 4,26,211,186,17,244,224,98,95,158,147,7,9,66,215,76,24,133,123,90,211,66,161,94,114,230,41,9,230,180,37,244,247,36,107,4,216,19,52,249,244,230,24,184,170,106,76,77,61,90,114,38,53,89,95,132,229,119,82,151,190,242,40,143,243,161,198,232,102,71,145,0,139,235,232,86,224,26,219,233,31,18,102,23,167,229,223,207,132,135,203,57,224,5,245,180,250,89,161,91,201,121,171,14,211,200,245,155,228,19,76,229,147,142,196,243,128,154,250,180,147,247,131,65,199,37,105,12,122,78,22,19,60,112,83,127,249,243,105,9,177,158,90,138,179,70,226,178,89,7,224,125,167,154,54,85,247,187,192,228,197,192,89,13,14,189,102,14,208,73,59,217,112,33,187,129,209,38,227,32,136,35,203,40,91,41,137,16,163,223,249,133,79,175,233,52,58,56,131,57,145,204,134,211,91,93,5,93,83,107,133,79,56,126,221,126,137,96,206,23,65,170,127,29,140,149,27,15,249,252,48,237,149,67,241,138,182,189,14,191,161,237,54,142,95,193,22,194,69,113,253,166,97,4,225,6,255,193,77,253,199,11,78,213,140,251,40,118,7,69,87,191,141,25,78,30,138,114,20
 3,192,142,49,76,29,218,189,78,86,96,152,113,179,132,253,62,228,56,137,124,50,36,17,139,85,44,35,58,185,176,26,223,47,247,51,126,56,23,128,227,163,127,107,136,42,218,11,163,79,232,167,205,143,145,80,151,166,24,0,199,23,215,251,87,212,166,108,151,137,186,169,147,193,174,9,165,70,91,94,143,121,154,51,239,122,115,46,40,201,151,73,17,82,202,174,180,57,243,233,136,158,3,121,152,61,63,91,116,236,130,210,111,154,113,157,86,235,131,199,124,191,52,195,136,132,23,52,115,162,101,187,174,159,201,234,149,38,130,211,3,84,130,96,69,156,70,106,174,85,112,171,212,122,185,64,20,135,83,0,131,54,47,84,102,152,129,98,104,89,142,132,110,26,83,17,27,173,110,238,44,203,15,23,188,221,62,181,206,161,226,209,9,94,105,236,121,127,73,182,133,82,98,211,26,161,177,179,100,212,66,57,47,247,2,35,224,224,60,49,111,244,135,83,214,64,116,125,223,214,38,231,35,174,217,174,166,86,42,31,99,251,49,49,194,253,160,23,25,42,8,227,120,116,119,70,219,94,116,20,203,244,30,25,171,119,21,25,145,132,177,6,109,62,54,246,69,1
 99,43,1,133,60,181,69,149,238,112,176,202,136,13,203,128,207,52,229,163,120,30,136,106,144,229,87,44,83,248,203,210,55,24,61,91,151,199,180,103,18,111,223,53,234,218,202,164,15,8,96,15,88,4,49,156,244,172,241,77,143,52,185,231,226,55,254,221,140,86,238,5,253,201,69,228,52,144,192,50,121,183,135,206,84,206,162,243,28,230,9,1,206,35,113,211,57,236,180,57,67,126,137,129,104,7,97,69,178,194,165,49,83,202,218,85,240,143,137,226,113,126,160,23,39,129,130,162,2,82,62,127,92,82,189,156,118,8,122,227,146,39,55,160,116,132,147,25,89,172,222,191,233,190,125,101,228,66,29,28,43,73,148,205,240,226,220,5,163,39,165,228,27,250,179,218,172,30,230,114,8,181,124,64,98,180,184,209,139,193,17,21,96,34,47,87,137,43,132,121,65,190,183,90,173,246,104,168,176,188,115,254,236,169,244,149,159,195,255,5,14,75,131,130,130,43,120,234,170,146,53,203,135,52,3,116,124,105,86,13,146,8,185,107,106,65,170,15,115,148,5,114,180,13,99,253,0,9,110,182,141,173,33,1,132,217,148,203,226,107,111,229,105,191,175,143,1
 06,225,104,53,171,129,84,228,4,84,25,59,95,204,247,58,125,33,106,46,254,213,172,4,224,72,22,71,228,181,25,205,14,203,25,76,40,117,100,47,160,58,34,27,53,200,66,86,235,103,41,221,226,16,163,231,32,97,158,220,201,158,151,221,142,20,77,15,140,102,237,72,163,218,230,107,175,34,17,2,82,72,87,204,78,1,142,113,234,235,146,216,60,29,214,250,43,57,86,111,175,0,163,244,86,7,141,128,103,202,67,29,2,101,245,187,201,27,135,219,104,221,123,236,95,229,74,188,116,19,241,143,136,76,86,184,155,161,93,60,225,207,49,209,11,173,4,129,35,93,76,25,137,248,143,45,67,69,47,160,85,118,251,30,59,254,88,9,79,77,63,1,17,112,74,118,19,235,144,247,7,243,189,164,3,211,49,12,54,103,196,132,45,157,211,168,245,156,46,62,78,8,157,248,71,234,65,52,40,134,167,87,31,127,54,156,37,21,151,37,138,203,64,145,127,18,249,53,148,66,85,32,47,49,227,253,115,200,35,47,174,185,32,78,34,176,64,194,157,116,90,31,51,118,102,213,208,125,50,141,177,1,216,157,240,236,103,136,1,254,17,239,147,28,156,12,247,11,99,233,245,218,60,176
 ,180,77,99,91,193,60,26,0,87,20,67,224,91,207,150,129,95,69,52,215,180,51,10,221,69,81,4,217,139,182,6,213,1,97,4,206,143,249,69,75,176,212,30,44,9,89,246,100,40,175,44,178,116,200,253,119,163,146,53,90,204,218,60,122,45,169,45,230,139,250,24,130,28,58,217,232,224,15,139,102,248,250,138,32,163,180,201,164,175,220,215,104,89,9,120,217,242,142,134,228,13,191,68,94,22,59,78,120,29,98,63,182,194,234,162,132,179,137,138,42,47,37,48,212,50,18,50,105,205,120,62,26,165,215,6,101,82,75,255,116,208,101,223,41,153,87,193,139,59,105,106,209,131,93,63,80,237,32,164,221,78,163,28,155,239,164,242,22,62,64,63,36,43,32,125,143,239,74,128,90,21,119,195,133,14,75,6,71,74,91,173,224,60,100,145,135,95,151,44,177,13,160,30,139,235,136,143,62,33,137,206,43,28,136,177,82,189,171,133,5,140,52,70,70,160,143,197,11,170,63,251,63,33,204,5,92,22,45,198,156,177,17,4,219,35,106,15,142,137,55,228,19,197,212,196,19,205,233,138,242,129,24,89,124,127,150,84,38,243,146,7,7,163,63,189,17,31,171,202,253,201,196,
 10,15,121,199,199,206,49,127,120,228,39,176,29,30,220,133,209,205,83,103,203,4,118,100,247,248,200,111,171,251,14,131,137,121,249,74,76,190,70,248,250,193,85,42,93,227,181,186,114,137,55,225,88,140,195,242,57,94,102,153,245,88,173,2,116,134,153,144,96,120,105,191,71,194,242,99,79,98,169,94,168,72,152,181,149,167,183,95,195,24,102,230,5,14,55,145,176,132,92,254,60,214,101,17,45,180,221,187,134,121,234,154,149,255,98,134,41,122,158,51,88,194,180,122,207,176,22,225,154,173,240,101,60,175,139,76,126,91,51,145,128,204,241,210,37,135,216,234,121,224,227,150,3,219,102,130,149,142,182,196,79,34,18,244,166,153,23,156,194,245,194,125,8,209,254,59,202,169,37,232,221,114,44,226,200,98,127,112,246,114,191,37,213,219,193,146,235,173,13,69,98,38,101,120,183,184,79,167,60,231,209,195,128,26,157,138,223,19,224,226,111,8,49,187,32,82,35,133,135,68,6,214,176,153,28,192,66,165,118,178,62,236,221,228,253,201,113,163,96,59,83,79,25,172,226,237,9,32,169,9,29,113,151,92,43,204,177,193,70,252,27,123
 ,190,114,132,5,85,254,238,186,190,61,5,248,254,153,212,93,100,121,217,68,72,171,33,236,64,233,72,25,92,7,231,250,193,232,32,169,1,246,162,251,78,113,19,198,109,234,247,252,229,162,54,17,70,163,110,100,43,179,241,175,153,55,161,90,110,5,182,128,178,158,2,69,121,209,88,94,203,120,124,201,242,135,6,101,54,176,15,103,147,170,95,188,97,134,244,197,218,214,177,248,198,57,50,218,157,4,200,230,209,73,20,12,112,203,14,112,95,127,0,53,58,31,169,189,0,129,218,0,255,185,14,95,49,178,186,67,204,173,41,213,119,213,208,182,209,42,149,220,112,227,80,231,111,117,59,145,124,111,108,152,15,18,221,128,12,219,168,134,44,227,32,200,166,142,20,176,69,255,7,147,38,22,213,64,30,160,205,160,74,134,26,181,18,212,58,92,70,135,43,17,215,139,25,189,136,138,244,63,65,172,118,38,119,175,213,190,43,47,32,90,209,145,68,171,113,196,248,4,203,55,167,182,52,75,189,100,133,217,135,69,85,128,227,142,130,31,22,220,201,234,68,115,216,142,20,156,228,230,250,222,140,155,53,95,212,102,113,138,174,184,146,32,125,153,95
 ,251,142,122,127,231,201,243,56,163,155,94,102,8,127,44,96,244,212,51,207,27,207,129,129,233,116,137,142,40,201,213,85,191,77,125,139,51,222,244,163,147,52,197,248,112,90,16,93,63,222,37,77,115,22,31,177,129,206,175,245,4,166,101,151,58,38,132,188,15,40,151,143,154,225,219,128,125,60,211,145,163,3,121,44,91,236,188,114,23,152,13,86,106,198,112,201,182,197,194,199,251,114,171,214,10,66,129,158,206,220,148,197,15,3,19,254,50,210,175,184,153,161,105,131,219,29,72,45,121,166,125,206,241,73,112,104,103,129,213,171,107,165,70,167,119,107,30,0,5,165,138,228,216,238,176,155,233,5,253,217,239,156,81,255,20,124,59,95,220,47,98,165,233,96,8,13,255,109,57,146,54,16,86,245,146,182,171,81,246,187,9,114,244,208,129,107,89,93,215,61,158,47,85,32,208,62,193,87,240,204,74,36,166,58,202,150,172,23,91,48,67,4,102,210,215,115,244,167,42,246,239,199,122,98,107,42,214,196,102,53,80,40,7,172,47,133,28,211,210,183,1,192,44,145,146,208,56,62,128,254,191,204,120,56,191,15,246,39,71,171,178,195,50,99,1
 7,7,5,99,69,40,168,127,59,67,191,76,63,231,158,7,83,239,245,6,17,61,204,203,20,98,147,63,134,223,33,123,94,40,116,143,232,143,136,186,143,74,170,252,16,20,151,190,149,105,106,3,1,150,165,201,125,236,235,182,251,117,54,42,241,206,207,120,205,218,183,60,220,56,210,36,13,255,100,132,60,8,152,160,143,59,145,192,235,236,51,116,93,237,26,78,185,49,2,158,191,189,23,149,20,99,148,35,162,118,54,153,188,54,164,55,133,8,208,198,132,191,143,238,240,145,118,94,179,153,231,172,161,146,218,134,154,178,184,98,102,19,215,201,5,88,36,164,159,185,14,239,38,54,3,46,223,116,91,51,130,80,25,95,195,105,249,206,3,40,34,245,252,99,171,192,50,4,142,247,78,182,65,61,8,64,35,73,76,189,18,230,156,117,162,142,124,15,54,52,53,148,221,47,211,17,172,237,202,254,161,36,116,205,155,102,107,155,219,249,155,69,79,198,120,248,181,225,160,183,232,29,148,236,226,92,12,151,79,255,165,4,208,173,188,149,40,47,123,73,136,112,154,128,138,241,65,125,225,177,3,65,120,86,220,83,32,245,23,119,18,77,49,123,37,68,218,228,150
 ,7,240,30,18,65,162,21,211,151,114,118,62,50,122,248,171,229,49,241,181,52,107,54,244,216,197,86,128,214,245,49,2,133,44,49,87,130,186,140,217,189,30,165,47,233,72,9,235,84,117,68,63,242,87,53,31,59,209,31,20,77,144,80,35,238,239,248,210,219,178,219,243,119,228,221,246,119,181,36,131,128,63,237,6,133,93,47,174,3,20,87,215,55,29,147,21,189,105,210,203,76,130,189,193,164,183,160,214,32,205,193,123,189,205,208,208,56,169,90,255,204,179,80,149,70,192,158,171,157,152,130,20,87,85,6,214,234,155,4,86,248,166,75,68,101,142,211,178,234,166,226,207,201,3,143,240,125,21,54,22,22,67,168,29,134,37,178,139,213,62,160,200,2,203,157,98,231,11,23,229,107,241,151,2,162,12,159,136,136,246,95,229,30,93,22,16,234,144,98,47,28,142,14,196,17,176,199,82,164,10,73,101,46,187,246,93,179,245,128,154,179,55,135,4,186,31,79,27,185,155,206,154,183,187,97,87,63,220,64,154,130,115,54,56,157,56,88,217,38,240,184,160,40,97,20,32,80,57,160,106,174,23,44,188,190,217,85,48,215,39,45,161,63,80,214,121,243,222,21
 8,9,74,35,95,110,147,171,12,11,255,22,21,84,85,3,125,9,19,44,17,189,61,185,159,239,244,45,159,203,9,241,130,105,192,9,50,150,49,42,183,37,61,97,200,247,63,50,118,142,27,54,224,167,69,40,69,53,155,232,20,141,102,104,62,58,244,60,246,236,129,54,218,198,149,128,10,172,118,198,96,249,143,39,112,161,152,68,44,34,29,10,133,251,28,19,179,13,110,112,233,123,248,157,129,47,34,21,155,150,117,196,164,96,85,50,222,177,99,134,238,248,248,94,185,203,88,70,255,235,5,137,5,135,227,170,142,183,149,65,131,59,125,240,1,35,105,35,194,240,72,51,37,208,194,82,171,76,110,30,169,139,118,3,44,75,70,212,63,14,140,133,100,5,133,49,82,37,142,18,146,194,134,191,77,50,114,169,142,46,237,120,218,209,216,193,218,231,218,233,13,175,204,251,59,86,207,248,195,165,94,40,242,193,41,227,159,239,26,60,20,250,31,68,148,31,240,139,18,242,79,157,144,155,130,156,200,212,212,190,186,218,190,136,202,137,107,197,150,19,110,101,178,3,66,92,212,230,47,94,173,170,197,172,74,5,147,62,147,206,209,163,206,121,21,205,8,104,39,
 142,142,251,59,42,195,167,111,51,228,218,76,124,184,197,86,73,248,101,239,111,232,125,157,244,143,55,136,130,243,68,235,3,147,209,43,8,130,201,197,59,246,148,219,78,45,72,16,4,243,78,237,234,92,161,108,31,162,107,135,165,146,200,102,100,45,134,113,165,67,151,101,190,14,182,35,144,148,40,253,182,43,224,96,232,90,30,156,219,165,187,83,76,73,206,56,175,51,222,202,173,84,8,4,122,129,43,167,59,167,3,171,110,202,201,93,97,156,90,61,232,151,214,70,173,200,192,231,213,53,6,103,53,248,86,4,255,195,39,81,131,106,145,101,35,207,157,205,198,195,140,176,245,86,243,75,77,33,208,114,109,156,45,53,10,158,220,8,236,88,103,93,5,134,73,61,90,39,28,36,30,96,86,57,105,2,185,59,129,17,43,228,140,86,235,131,148,60,87,78,66,73,171,164,227,12,47,12,248,171,58,65,113,218,214,193,120,79,231,27,76,50,13,180,169,29,92,240,97,252,87,75,199,28,180,74,201,57,70,30,25,90,48,180,75,65,91,247,195,237,93,193,176,191,242,242,58,75,12,22,47,144,223,0,8,27,42,180,157,250,55,119,109,90,105,147,241,240,57,1,127,108
 ,155,130,133,179,126,125,102,8,227,107,13,62,182,81,52,220,5,26,70,172,10,93,46,72,47,234,143,226,119,38,250,245,230,207,142,27,239,17,0,141,188,10,173,236,234,174,217,71,66,166,146,157,65,2,196,254,57,189,132,3,116,184,149,250,208,151,115,120,214,216,225,136,243,10,192,12,105,248,199,66,232,197,243,243,61,102,83,184,47,162,23,23,124,47,205,0,119,189,231,44,228,3,161,53,64,206,35,52,94,197,2,32,211,200,252,15,162,96,237,62,191,243,25,207,85,172,199,34,191,22,113,207,107,94,63,39,44,23,21,49,135,158,120,200,182,34,139,117,107,90,240,89,179,233,220,64,38,185,225,121,131,41,129,137,231,192,133,196,52,197,124,27,67,28,8,48,156,225,83,118,82,93,106,46,113,167,119,209,172,26,66,195,246,92,251,104,209,4,1,217,203,169,143,196,153,102,122,236,225,97,12,32,134,15,18,222,202,120,23,216,192,45,84,6,239,255,201,248,53,217,229,70,198,233,200,33,225,211,66,95,182,24,116,234,195,151,6,244,229,22,215,101,171,214,178,229,73,136,134,108,86,45,157,200,214,63,68,218,4,253,49,141,213,54,194,38,1,
 143,29,146,46,192,195,62,100,37,54,115,12,130,70,9,105,59,153,242,70,33,118,21,124,46,215,197,232,59,155,253,221,26,35,241,144,85,160,237,83,191,16,113,93,11,65,21,222,34,125,3,218,46,71,117,164,104,78,5,39,213,189,147,175,65,90,175,32,0,6,233,130,164,17,118,211,188,243,79,148,6,22,25,174,118,207,38,216,91,53,174,242,248,110,172,25,52,169,240,139,71,30,232,31,229,66,68,232,56,97,180,52,253,16,216,37,105,253,49,184,37,181,243,15,15,144,14,232,92,0,67,111,127,250,92,106,66,150,57,33,55,94,226,191,31,183,179,83,106,40,6,238,6,140,38,182,34,244,148,212,138,97,46,137,86,108,224,3,111,13,206,2,115,162,201,34,119,145,35,72,0,242,169,242,59,103,77,63,237,23,105,197,102,109,214,194,173,220,5,166,111,179,29,142,9,59,106,69,79,23,23,111,36,139,87,254,188,184,181,239,65,250,3,142,48,128,250,140,64,197,49,8,177,63,9,119,216,17,178,99,45,82,82,4,226,74,115,87,232,140,228,236,16,184,153,84,45,10,170,219,58,65,8,212,221,53,255,58,212,64,44,240,71,122,140,27,105,46,150,104,193,18,154,208,136
 ,241,14,206,120,185,151,47,39,83,155,124,152,82,103,176,137,135,197,156,237,62,191,209,73,69,23,80,232,48,60,31,82,134,96,117,19,229,17,157,33,111,140,9,190,186,57,5,49,255,138,24,199,143,141,244,233,228,132,134,55,1,169,66,215,175,219,226,134,41,77,207,110,78,43,24,99,235,171,21,175,99,123,20,249,38,134,14,209,175,213,166,11,27,75,19,201,64,185,82,1,114,240,212,53,119,86,205,249,149,90,7,146,226,163,184,101,153,247,220,123,169,110,250,59,169,213,209,72,56,135,221,192,208,225,178,5,12,220,35,47,102,29,150,227,251,173,154,131,231,202,63,86,240,59,63,110,114,26,13,204,15,160,108,155,195,169,35,181,182,32,212,15,162,140,119,143,32,94,39,28,209,62,72,249,1,184,190,140,129,187,217,30,81,7,153,238,193,126,134,23,217,180,205,162,174,35,200,198,58,90,141,29,139,95,31,79,100,150,219,60,161,78,4,80,106,113,132,41,15,136,201,255,7,29,145,5,177,12,220,195,9,32,221,143,23,115,251,230,118,128,240,252,14,131,55,113,39,146,179,6,124,162,8,202,83,176,73,158,214,117,217,191,145,140,182,59,141
 ,211,193,56,8,216,10,215,198,33,66,211,47,88,150,153,100,183,228,63,64,34,33,176,139,187,146,54,232,174,255,58,56,133,245,6,20,76,72,188,133,193,132,65,21,224,105,180,83,108,35,43,251,128,179,228,32,100,160,185,119,197,167,145,211,55,71,217,183,218,189,223,168,186,191,140,82,206,6,133,35,246,211,34,236,40,49,17,160,67,137,120,146,199,42,192,167,60,46,193,236,154,25,68,173,171,55,243,198,195,170,233,170,242,53,0,187,196,72,194,162,139,124,26,2,116,124,241,196,189,189,171,47,255,34,131,194,233,30,152,202,84,178,105,148,250,2,60,5,103,150,102,27,195,71,225,102,4,252,154,31,202,153,222,43,189,86,196,177,199,68,41,13,128,38,15,197,20,50,212,227,211,3,180,101,197,61,221,25,135,91,158,125,249,197,237,211,57,30,191,234,17,19,172,210,202,178,223,236,101,147,129,47,240,44,205,199,111,108,63,99,132,186,104,244,132,216,22,119,144,206,27,123,65,37,106,20,96,195,137,239,36,43,129,54,27,124,56,212,197,147,200,232,129,49,79,124,239,54,221,241,136,142,58,10,79,186,64,242,253,159,192,2,180,10
 0,35,189,43,97,159,200,154,146,59,112,131,111,39,75,35,55,59,35,183,60,153,33,20,48,45,151,198,100,89,137,202,138,2,188,120,48,88,221,61,90,178,5,46,253,245,222,70,16,61,152,167,50,5,87,85,231,176,41,43,70,184,190,161,173,84,151,30,142,25,126,117,183,66,144,51,96,150,123,255,30,176,180,68,10,238,129,253,151,144,224,147,50,65,129,135,164,233,165,155,146,25,208,51,170,173,163,127,229,251,77,158,75,17,51,253,50,154,4,194,14,247,71,229,130,70,116,19,176,117,117,33,49,245,196,21,199,172,131,55,234,232,91,83,111,99,65,63,101,26,209,81,228,141,68,149,102,21,180,96,212,97,230,117,147,37,34,43,92,25,30,169,78,73,226,152,201,34,139,204,209,124,156,185,2,3,122,125,123,140,124,78,120,255,70,22,171,13,124,4,220,35,0,157,161,151,51,75,240,34,15,211,172,40,175,8,229,108,200,96,95,23,55,186,79,176,202,11,239,61,3,25,181,147,129,98,227,93,2,205,57,124,249,234,174,57,24,183,153,61,236,65,34,238,13,222,114,112,38,46,119,221,38,122,240,213,200,225,66,72,11,44,177,150,246,37,29,118,81,126,169,51
 ,3,115,142,219,186,72,218,85,250,174,190,85,15,88,42,137,32,76,172,240,131,29,4,160,254,226,124,91,64,65,170,66,95,28,73,17,84,162,175,54,236,162,202,128,71,7,170,44,194,30,94,119,166,131,18,222,155,139,5,245,73,31,91,167,196,212,143,180,78,152,0,168,160,222,137,157,195,218,184,175,31,142,107,209,83,208,72,68,205,137,142,111,18,109,58,156,29,56,150,217,144,220,180,49,137,87,126,147,231,84,25,28,22,155,123,189,233,183,222,89,54,101,255,113,87,233,79,69,134,10,35,128,147,247,57,167,172,52,108,196,92,205,76,71,237,71,53,63,225,246,20,179,237,157,163,217,88,232,237,154,28,207,169,115,183,189,31,89,253,178,90,147,134,81,93,50,153,79,171,212,144,116,243,236,101,67,53,41,177,203,136,31,84,252,30,6,211,175,47,236,18,128,83,62,59,40,236,236,68,226,24,105,17,232,137,184,83,166,247,91,220,145,229,248,192,45,206,19,55,156,83,127,219,102,172,211,226,107,154,136,152,139,189,86,68,95,172,169,71,193,166,193,219,210,236,162,149,139,220,181,239,12,242,250,90,187,231,21,62,94,251,56,209,217,16
 7,73,105,24,160,90,142,68,136,58,60,49,81,24,239,134,247,219,65,158,216,242,123,142,155,6,137,154,81,136,88,131,80,15,20,204,176,43,11,8,121,89,52,250,52,135,92,222,100,182,89,134,231,25,190,162,235,52,17,242,50,212,42,191,129,126,34,20,39,151,237,19,230,48,145,13,16,153,6,195,65,61,40,43,72,117,94,1,249,60,177,183,247,231,69,52,182,37,27,221,140,171,172,163,93,149,5,38,163,99,207,101,145,85,195,247,153,172,153,173,53,152,48,158,155,75,150,200,101,138,80,240,250,102,104,161,88,239,83,77,246,90,84,228,55,126,190,150,117,28,209,213,61,160,129,128,217,67,11,68,106,252,114,98,190,11,144,93,189,87,87,220,207,152,10,199,55,6,128,155,135,206,132,212,164,185,104,183,237,174,72,202,122,107,145,204,80,53,53,100,1,97,198,249,86,31,28,48,174,242,37,254,168,99,108,106,133,156,139,136,177,30,248,164,131,133,219,200,194,63,84,86,175,60,72,62,106,129,69,13,219,30,234,17,10,178,244,21,92,20,151,23,5,77,236,128,92,111,215,113,133,149,211,52,108,172,206,184,75,21,89,42,77,234,25,194,126,42,192
 ,241,68,94,240,154,223,93,160,136,244,56,149,152,122,218,230,25,196,26,229,226,217,126,152,240,207,130,226,204,103,177,2,217,223,127,255,251,69,186,182,251,93,120,174,224,7,3,147,115,92,238,84,198,194,243,171,129,175,113,7,56,236,90,14,35,32,145,178,231,96,98,185,81,164,46,146,2,63,196,207,60,169,172,41,3,77,40,18,10,177,111,46,155,82,210,5,205,116,229,54,205,249,216,253,117,126,11,101,66,49,170,36,87,55,50,86,197,37,35,126,52,106,230,203,238,121,192,114,217,80,59,235,110,66,163,196,19,193,6,177,156,12,16,54,126,87,14,200,210,123,45,233,62,13,201,241,63,84,242,187,41,236,144,195,108,95,228,244,17,179,242,143,126,102,177,58,11,184,159,86,219,169,137,88,51,138,117,172,145,199,18,105,80,228,192,152,21,180,241,25,159,179,161,230,127,249,118,98,170,30,192,75,166,88,67,129,244,146,140,253,222,17,100,229,246,10,90,247,146,239,21,152,5,72,228,224,241,185,194,112,199,39,35,158,118,85,61,217,199,78,212,88,235,167,124,211,173,100,176,69,58,213,205,53,231,78,240,115,100,228,120,141,183,
 62,243,251,218,215,131,47,183,251,52,113,83,101,96,129,197,55,196,147,4,236,170,164,46,249,23,141,39,217,55,220,81,49,117,224,35,108,70,1,39,55,225,25,164,119,16,212,13,116,239,87,163,171,19,152,183,112,171,194,138,89,55,19,54,214,250,70,113,19,148,122,21,181,215,68,59,167,133,255,146,106,101,144,64,3,148,154,88,155,108,37,159,29,40,88,182,202,96,228,243,72,4,100,199,184,146,91,95,12,194,59,180,247,244,156,119,247,144,126,247,57,253,144,49,72,78,35,176,71,143,14,211,172,11,237,142,208,43,51,243,89,26,84,7,238,109,103,122,83,213,107,128,143,4,131,244,163,55,244,78,158,94,135,135,233,222,147,255,4,0,187,121,4,209,115,21,172,236,45,217,140,250,234,91,88,64,229,240,98,231,204,162,40,0,66,154,97,191,28,49,22,94,132,153,169,64,96,236,183,43,8,251,157,124,88,156,57,89,201,29,154,18,230,127,79,148,125,239,200,209,150,174,165,117,149,64,55,15,225,176,132,243,5,104,82,108,78,91,23,53,7,38,166,226,237,35,18,195,254,26,230,37,13,237,121,126,23,126,24,247,238,176,169,204,102,65,183,24,19
 4,84,125,4,72,194,248,160,61,152,85,96,83,146,231,60,124,54,184,6,67,117,99,214,172,244,11,52,64,132,75,50,192,213,229,36,61,162,253,48,84,167,154,209,84,220,250,219,119,211,191,198,195,193,31,61,148,64,24,82,191,29,237,150,8,240,141,180,101,43,167,133,95,225,15,46,226,132,181,27,108,196,195,253,92,223,77,162,77,216,171,149,111,226,219,101,148,223,177,4,19,101,169,119,207,221,71,149,60,147,145,94,43,193,187,21,104,5,201,116,125,136,134,219,124,25,253,50,126,234,210,141,173,71,142,47,47,243,76,125,176,243,9,181,210,1,153,168,171,117,200,1,221,91,109,213,254,182,70,227,92,241,120,6,145,225,87,99,109,163,172,205,185,197,42,146,117,42,164,170,185,6,20,13,20,251,41,82,210,21,230,228,83,231,114,222,236,71,32,25,225,13,71,238,56,164,31,229,30,141,39,179,65,98,206,205,11,113,84,181,166,127,233,3,13,29,52,23,193,245,15,221,20,161,144,41,198,52,70,42,104,86,170,43,212,197,191,53,252,30,191,19,36,139,243,204,249,88,102,51,113,237,83,245,66,69,92,57,42,57,173,153,180,224,188,86,154,164,
 150,119,4,92,69,231,79,134,9,12,218,223,172,181,166,96,89,144,164,218,186,172,151,135,115,252,236,55,39,85,73,126,253,77,18,92,128,147,236,186,48,192,101,32,245,203,11,98,113,21,160,213,61,187,244,94,15,110,53,105,239,94,157,120,124,84,27,240,246,39,120,80,208,215,187,38,200,60,196,136,176,6,104,131,106,26,119,21,173,36,221,69,205,182,92,66,68,59,35,66,231,94,167,59,130,127,15,101,54,195,134,149,239,181,21,54,80,124,154,63,190,5,66,189,60,240,38,57,108,103,209,130,190,129,120,7,88,201,129,203,30,138,106,140,52,131,252,213,20,243,250,158,231,249,219,119,96,162,192,234,167,69,231,198,219,168,140,254,38,82,36,218,52,169,117,104,36,224,221,170,22,79,14,111,203,171,201,60,244,219,50,56,166,188,94,34,142,246,25,152,71,240,121,106,214,52,161,188,31,35,162,76,111,43,97,102,195,223,100,200,224,63,10,45,7,73,1,44,73,158,67,85,39,102,73,99,58,220,59,240,41,186,67,249,166,155,62,181,223,75,203,32,135,119,133,169,25,123,220,219,26,13,159,160,240,157,255,147,45,183,92,1,151,100,216,214,20
 6,34,63,88,209,83,146,7,184,69,90,156,124,164,13,205,194,140,101,241,19,160,53,21,36,65,147,56,55,50,40,242,83,248,188,221,137,155,27,235,181,253,139,193,231,13,19,22,108,34,96,101,55,150,94,130,203,8,229,175,129,247,111,46,193,160,179,148,145,126,133,123,28,81,0,189,7,80,65,10,29,244,63,234,163,106,93,23,113,37,196,159,14,76,168,8,167,175,82,173,146,200,196,91,27,142,234,214,143,117,0,37,98,48,176,164,200,107,40,2,11,162,142,30,235,194,197,252,95,173,79,216,108,105,81,242,183,209,103,240,6,141,54,30,210,225,169,209,147,84,215,232,124,29,29,203,151,88,19,177,61,130,162,192,94,238,162,25,244,7,175,31,233,198,100,6,216,216,185,16,105,178,159,27,83,51,12,214,139,82,146,17,233,73,54,101,133,153,9,136,50,244,171,161,121,150,112,247,255,49,125,251,58,195,249,81,64,181,157,161,179,112,251,249,38,241,79,135,139,159,214,216,188,27,125,26,31,111,9,73,170,232,198,92,51,5,120,115,126,170,145,167,235,107,31,199,189,245,163,146,99,124,250,170,254,47,22,174,239,142,118,51,175,210,148,35,10
 3,58,106,236,53,200,79,150,233,8,85,74,156,137,121,38,75,191,9,209,34,154,135,126,128,159,172,223,83,28,127,33,182,20,9,48,197,139,20,29,188,204,72,187,139,173,87,134,45,85,10,73,64,248,182,83,110,129,170,185,225,214,215,115,162,188,183,33,133,193,19,55,14,150,44,8,220,29,211,127,172,233,41,68,178,141,243,159,40,116,65,232,8,24,57,98,174,185,234,121,169,235,12,42,65,240,253,143,107,208,173,177,203,91,214,153,149,234,4,95,110,72,115,156,163,169,180,167,143,21,152,210,63,141,41,18,198,18,221,224,49,74,241,189,78,200,156,121,107,17,125,35,121,213,105,47,86,109,245,2,229,27,7,39,108,148,233,134,172,204,182,68,82,101,54,85,207,246,12,3,106,69,247,194,200,169,205,33,94,22,89,164,94,56,88,48,205,202,237,158,38,248,111,114,0,39,55,97,213,0,50,64,201,83,45,25,250,124,209,41,216,176,232,188,244,179,136,6,112,214,127,166,218,212,65,170,28,103,142,181,101,173,54,253,61,252,65,231,229,18,150,13,169,138,80,201,252,64,25,37,133,91,104,80,91,183,189,60,101,92,143,172,41,209,7,78,195,3,83,13
 9,166,160,34,178,62,124,71,79,156,121,108,96,146,219,37,44,229,47,64,35,70,146,122,102,242,2,254,202,88,11,138,131,192,66,12,179,241,152,103,27,26,161,141,69,251,229,19,39,88,56,30,149,69,110,237,218,9,132,231,190,138,240,2,77,169,75,80,219,65,113,148,154,205,171,75,144,4,104,2,26,198,44,158,13,224,174,237,216,28,54,100,19,177,221,187,209,57,222,195,84,72,15,219,197,150,201,149,74,38,109,152,131,113,169,44,192,188,148,1,100,51,206,111,223,167,139,175,40,20,40,114,66,9,150,21,119,73,108,32,3,122,198,238,206,79,123,5,64,8,186,249,24,191,248,84,91,127,170,198,61,36,199,170,255,79,117,84,1,146,182,153,108,185,16,27,130,196,6,40,81,28,226,75,45,8,40,107,69,30,203,102,48,224,193,44,187,117,236,130,98,107,117,101,20,5,64,68,96,89,96,177,127,134,171,95,219,206,100,229,152,77,136,157,161,42,62,62,80,230,4,58,184,180,255,254,150,28,220,46,49,75,76,34,151,52,9,11,68,95,255,206,136,81,144,135,88,129,106,1,118,84,35,208,131,164,29,119,104,113,128,248,110,20,89,89,37,18,24,208,113,188,10,
 255,124,64,23,52,248,216,104,183,208,49,3,71,118,59,5,214,139,130,243,128,63,77,77,217,66,203,199,180,164,240,167,122,137,148,40,199,140,55,25,221,195,190,73,157,157,89,78,181,131,88,145,109,184,124,73,174,42,22,195,157,23,134,70,222,56,184,225,255,212,193,135,88,85,165,176,195,162,104,112,131,234,34,1,39,141,33,152,8,149,149,243,167,56,177,134,46,254,62,209,0,165,228,201,222,250,142,97,26,98,151,222,65,56,136,94,98,122,142,154,213,186,144,50,138,63,213,211,175,205,228,245,64,100,246,7,8,19,227,71,251,163,120,153,61,231,167,26,153,51,150,69,55,191,233,66,156,109,32,80,212,20,171,102,175,210,13,109,221,136,78,143,119,133,7,94,67,12,126,137,215,20,237,211,213,168,42,160,100,239,95,183,205,193,158,241,54,80,176,14,16,115,138,92,175,33,249,16,82,237,226,33,121,197,141,56,127,181,135,210,18,141,47,122,19,58,206,45,191,14,83,227,116,190,15,161,122,163,164,101,23,23,235,63,154,73,199,133,243,160,119,154,190,12,15,79,92,243,147,205,203,94,101,80,172,233,10,221,189,130,132,84,185,214
 ,242,98,106,84,184,218,161,214,167,160,219,21,157,213,57,239,215,205,161,146,36,0,243,48,150,245,135,19,95,81,90,127,157,214,15,33,17,176,210,235,16,73,198,1,8,27,70,178,91,98,66,91,165,163,133,76,196,208,236,99,188,52,187,246,253,67,242,91,119,20,246,34,242,196,47,24,49,97,61,53,68,245,83,115,112,13,231,144,147,12,7,214,250,60,92,47,157,108,21,190,97,45,177,164,118,189,66,203,2,97,188,142,181,172,169,31,74,40,75,43,29,242,52,39,167,173,61,25,164,160,29,133,148,52,171,194,149,105,240,82,141,253,140,107,118,236,134,179,7,104,53,15,48,89,81,202,79,188,159,8,106,127,175,183,98,134,244,247,58,216,146,219,169,3,107,224,9,146,49,118,47,234,253,193,116,84,236,86,1,12,106,143,110,56,150,196,135,43,177,19,72,68,213,221,79,202,94,188,253,28,125,167,0,118,78,184,129,55,209,163,243,36,152,242,202,191,133,124,80,114,54,128,4,140,92,54,174,47,102,231,3,212,221,104,161,67,74,156,251,10,87,59,238,178,206,56,248,137,114,174,42,61,81,205,81,231,224,55,101,236,133,129,33,87,107,234,128,106,89,
 169,198,77,165,120,165,85,214,203,90,186,253,68,110,64,157,52,51,71,231,170,38,16,253,188,162,21,237,97,34,220,6,69,4,112,255,206,228,1,140,150,115,166,96,231,185,148,84,119,106,172,155,63,116,168,236,212,168,111,49,166,203,217,199,0,138,13,237,223,235,192,167,95,102,0,10,27,167,77,242,99,152,114,155,134,223,62,112,240,134,7,117,226,81,217,46,196,242,13,23,74,168,151,20,146,181,104,111,59,39,127,66,23,2,63,128,200,28,81,235,188,80,132,94,62,61,169,153,186,196,49,134,194,47,166,7,185,88,218,144,93,211,231,122,165,112,185,72,248,239,240,222,90,253,104,250,97,231,147,121,157,67,207,167,38,0,23,67,94,208,166,135,53,33,126,163,94,181,115,11,250,126,175,192,10,26,56,21,228,255,216,206,216,120,114,19,97,14,200,21,188,153,188,149,223,219,118,62,91,186,6,160,192,81,106,103,247,248,36,195,195,26,111,130,166,193,87,192,205,198,253,230,6,85,245,168,49,79,235,16,79,92,159,145,39,25,188,212,142,226,71,175,91,126,84,118,100,189,244,58,3,73,33,230,240,93,157,108,186,31,208,145,168,217,55,23
 6,9,116,17,214,4,114,90,211,39,233,237,110,160,100,148,57,171,90,63,248,39,78,0,195,72,20,68,2,89,19,117,10,230,129,254,203,54,151,27,50,157,84,230,37,237,90,46,90,81,223,190,92,232,181,179,170,38,123,68,197,56,63,93,25,190,44,12,136,106,85,90,191,251,86,29,46,164,134,147,158,26,39,55,166,173,55,8,144,176,10,77,53,23,151,22,171,150,194,241,68,182,94,205,121,53,147,159,16,35,26,122,196,202,125,56,116,235,20,25,79,41,109,93,230,100,206,34,236,218,133,157,43,81,130,111,105,86,150,95,193,49,18,168,59,80,11,48,88,162,83,4,222,84,23,74,119,101,141,219,33,41,75,104,109,118,56,96,164,19,137,220,5,37,61,165,244,208,196,151,246,15,220,153,157,185,166,216,141,241,130,111,98,129,128,137,128,84,40,125,161,58,130,70,200,184,252,7,134,138,232,155,216,38,89,100,243,143,97,30,234,42,207,197,223,65,103,194,62,50,128,128,59,153,194,138,154,209,24,46,246,34,76,21,65,71,92,120,107,151,39,247,153,101,126,17,131,156,58,186,181,27,241,9,11,96,164,252,35,235,54,217,166,155,161,162,65,69,204,131,0,14
 9,26,241,63,191,134,18,86,140,25,114,11,202,204,52,164,6,251,194,165,116,43,222,78,202,238,100,86,111,68,61,197,14,71,220,212,247,11,62,160,245,158,90,151,203,134,208,91,44,215,118,224,6,184,51,169,81,235,191,166,110,97,177,62,173,44,205,190,158,90,47,201,88,176,137,197,169,153,203,201,71,190,82,86,166,57,17,96,118,90,201,72,105,64,66,223,180,56,188,71,45,132,149,157,156,176,224,79,70,57,136,5,152,52,104,98,25,231,225,37,188,42,164,131,139,189,225,97,88,156,169,93,149,151,219,6,120,196,117,82,148,151,13,231,95,150,181,136,145,235,79,216,62,82,15,38,185,126,16,32,176,234,72,230,70,250,101,4,198,8,234,193,8,199,34,142,40,58,5,148,89,100,18,56,165,214,39,137,234,34,30,102,75,17,255,218,147,117,96,32,4,56,38,2,30,186,192,9,72,5,14,76,249,161,108,116,182,185,126,247,50,66,69,241,14,33,26,146,229,242,10,48,206,39,207,53,204,37,244,85,69,161,124,245,122,100,168,6,97,88,72,142,192,75,158,90,37,138,105,120,95,114,191,151,177,176,153,29,149,253,140,93,83,234,182,221,12,165,198,244,18,
 40,45,72,82,212,97,165,29,1,150,41,121,196,228,120,175,203,18,47,76,196,223,205,3,242,228,114,167,129,255,23,242,250,107,154,237,190,44,145,166,157,1,161,31,28,172,181,185,12,16,51,238,17,239,108,100,254,149,199,20,131,106,203,112,80,208,113,160,56,241,135,20,181,119,222,36,25,183,72,178,109,109,78,156,13,127,60,241,1,116,155,121,72,135,158,238,147,178,203,33,8,92,123,238,112,164,47,145,48,58,99,52,69,229,218,249,74,254,113,44,92,112,102,159,245,120,22,241,245,62,194,138,216,133,251,145,135,199,232,32,138,222,69,177,226,58,151,61,147,192,91,177,100,31,161,190,24,194,106,85,64,147,209,11,197,152,244,180,85,79,234,165,86,62,51,233,165,224,213,255,198,207,18,132,244,115,218,17,141,51,27,0,232,188,78,209,238,125,42,61,178,137,59,41,149,53,252,195,84,48,240,238,141,242,204,185,46,125,141,13,103,136,40,194,5,159,30,29,212,111,134,66,10,70,8,56,111,152,10,244,208,85,253,175,17,60,77,117,72,225,241,84,12,55,90,77,155,97,188,46,126,248,207,249,32,125,246,216,66,54,12,236,41,209,73,66
 ,89,118,95,226,38,81,142,26,10,166,24,18,55,220,162,59,89,151,178,191,238,175,50,206,127,157,190,6,69,175,248,171,209,193,61,66,124,148,221,242,244,152,34,17,123,196,32,255,12,231,220,70,159,113,121,103,34,106,59,121,197,84,60,5,252,153,118,112,55,166,210,66,131,161,6,35,125,85,255,252,176,186,147,49,53,196,13,174,113,50,78,142,30,90,243,120,142,181,32,170,211,232,25,48,141,24,143,40,55,245,37,49,196,126,249,226,55,203,249,99,36,58,59,6,222,165,47,171,237,83,11,25,60,194,232,143,92,167,212,179,218,114,11,219,74,86,63,97,173,224,171,40,161,196,63,16,35,37,55,232,96,43,207,105,200,115,241,95,4,88,178,97,28,68,24,80,222,116,239,0,195,206,128,247,131,168,56,248,135,183,174,12,38,172,144,6,60,7,194,12,84,156,139,84,255,194,134,55,106,0,33,4,33,208,29,85,195,150,53,84,85,75,101,225,83,206,246,70,139,86,166,1,138,11,102,49,246,121,61,195,9,189,175,34,87,227,248,41,19,140,31,205,12,226,203,246,50,14,114,136,226,73,95,35,165,73,74,50,9,165,57,163,242,124,83,243,83,84,106,207,28,70,17
 8,97,9,232,3,81,43,252,127,101,155,137,151,43,176,27,239,50,56,19,178,251,121,90,148,189,205,110,159,241,228,84,71,13,187,26,62,206,226,148,187,232,150,18,239,225,63,137,190,151,206,230,35,12,151,182,237,81,86,172,141,182,49,221,222,176,137,201,211,34,207,189,100,29,226,216,33,136,229,47,102,145,56,203,90,122,100,219,242,68,171,159,224,243,64,163,227,29,5,19,33,64,1,151,164,131,26,110,248,169,18,148,27,81,171,54,155,182,2,50,201,20,115,188,200,57,84,252,73,135,131,159,189,138,80,43,102,99,128,51,195,153,230,157,50,249,178,220,53,149,243,195,0,231,21,187,105,73,99,220,67,188,66,95,63,180,101,191,100,198,55,39,136,14,243,94,78,182,46,47,79,230,143,152,195,129,57,84,30,122,106,125,62,236,186,223,248,108,144,60,189,10,248,177,94,44,161,96,132,104,188,56,56,55,224,79,26,16,178,22,165,201,72,169,156,122,106,211,230,215,253,53,227,199,43,122,193,134,111,193,226,56,134,23,21,148,106,181,237,7,29,52,152,50,121,38,66,138,81,116,0,139,191,197,195,194,159,155,74,30,18,227,44,155,50,63,1
 31,221,246,214,189,97,15,104,191,78,245,72,111,230,187,234,239,75,180,217,123,20,158,138,129,191,138,152,58,129,25,106,166,165,52,4,90,207,133,203,152,205,214,112,250,191,206,146,48,125,153,213,143,175,222,209,203,1,236,83,102,247,101,79,48,16,42,99,243,212,138,189,203,241,189,3,80,114,9,231,200,141,196,139,43,111,233,199,73,109,179,173,28,215,13,9,86,92,66,174,37,226,254,239,82,11,46,149,181,39,33,175,150,199,82,227,179,219,171,144,192,43,32,65,149,85,205,35,230,129,106,66,110,230,167,43,128,111,105,2,20,86,32,223,125,139,242,194,179,134,13,170,13,90,129,111,106,153,227,14,244,62,226,14,245,208,121,21,191,39,161,150,204,5,88,224,104,45,172,11,91,66,171,194,202,160,120,99,210,251,202,205,139,102,2,142,57,172,76,162,108,71,60,61,143,27,95,124,240,99,23,98,70,0,62,228,221,250,179,159,55,65,195,78,172,80,210,72,122,58,74,57,33,49,134,16,217,170,10,64,56,29,131,71,155,209,95,115,133,114,33,218,176,230,250,40,39,223,164,13,28,97,122,125,218,35,239,247,116,150,222,149,37,37,151,94
 ,106,46,40,142,159,82,36,191,11,176,39,93,245,54,76,177,216,65,40,37,54,89,37,104,98,195,211,20,138,60,172,120,79,212,47,5,179,19,205,169,205,100,94,209,171,241,177,72,219,92,78,10,181,102,57,229,121,116,3,249,136,138,113,93,130,191,153,34,245,171,202,249,41,138,71,144,150,84,135,122,102,198,157,132,116,247,159,146,227,122,34,64,144,200,134,34,53,65,185,220,37,139,133,76,152,75,250,127,148,24,86,87,223,147,138,190,249,77,75,195,174,165,248,87,143,173,78,38,26,223,90,159,16,201,124,119,189,147,204,5,140,66,168,67,247,122,210,172,7,133,196,139,107,101,95,5,31,124,17,98,254,132,184,14,151,199,130,157,44,198,222,145,193,31,144,246,48,221,194,239,98,190,29,179,188,106,8,25,239,63,235,26,215,54,203,128,9,170,182,45,180,99,95,233,55,49,139,113,79,186,41,77,61,16,77,195,108,182,63,150,67,183,243,169,129,70,121,43,198,189,216,92,10,218,208,153,9,95,15,91,108,229,90,208,156,71,116,81,168,84,197,233,215,128,237,103,193,137,153,191,26,168,105,126,71,87,18,167,24,44,220,109,169,58,25,13,
 71,74,131,40,159,255,141,29,150,27,79,238,215,39,79,158,80,237,99,118,44,26,208,237,184,48,193,131,207,244,12,172,58,189,31,234,41,108,71,120,105,228,205,41,163,142,3,203,153,22,70,195,134,74,148,134,97,1,242,208,51,254,102,21,79,135,212,224,33,3,197,17,138,155,40,31,28,232,28,115,180,8,183,77,4,188,244,177,31,165,81,131,249,164,54,77,61,118,44,152,60,212,90,232,81,133,204,197,62,202,250,63,251,0,162,104,79,160,190,212,234,216,11,69,185,252,42,233,126,196,142,163,183,143,111,80,191,167,92,185,187,159,23,37,100,158,136,232,172,133,147,133,250,227,68,13,69,39,89,138,30,4,204,204,164,142,237,96,55,72,160,78,214,253,157,255,106,73,92,54,236,32,183,6,0,199,88,44,216,94,124,209,70,252,187,82,130,210,179,74,0,117,231,119,249,198,83,4,72,10,194,198,48,235,23,122,14,105,32,196,56,213,26,53,130,13,69,51,13,240,239,173,152,18,54,163,31,236,67,44,212,154,73,247,42,232,77,48,226,234,82,122,214,76,141,120,164,227,141,109,38,10,24,240,29,48,169,79,129,111,5,63,226,27,222,168,162,185,182,97
 ,58,85,42,17,241,58,8,20,194,128,136,180,218,111,202,46,75,83,79,120,145,47,0,40,33,225,134,131,25,90,10,134,235,68,245,40,127,73,38,30,243,82,251,11,152,55,110,254,216,181,242,162,199,58,153,5,226,87,184,29,166,33,10,199,250,205,112,169,255,239,107,123,42,83,62,219,191,140,20,239,229,124,199,13,140,218,5,164,59,147,14,244,136,10,7,162,57,21,127,35,253,163,30,71,231,181,190,102,221,189,219,240,193,54,198,216,79,26,70,80,0,71,95,145,20,182,197,118,106,82,213,44,35,104,9,239,1,59,73,21,23,16,55,16,44,84,250,169,11,15,110,88,58,253,63,254,105,185,152,153,133,173,34,231,174,116,214,13,12,248,30,88,141,183,106,164,83,184,94,239,67,73,187,251,96,40,195,203,112,106,77,67,19,48,26,156,18,140,155,210,248,119,226,188,203,13,212,160,202,17,118,99,207,67,214,180,241,9,197,14,203,129,11,241,76,53,93,86,20,93,32,85,203,232,21,18,252,24,197,53,101,104,238,108,110,115,165,65,32,57,92,126,84,31,63,145,92,154,237,136,151,69,229,108,142,197,16,246,30,0,50,36,48,171,78,175,63,206,83,21,197,200,
 111,36,50,144,53,203,206,175,224,38,130,48,188,131,78,157,46,150,180,253,99,213,125,107,203,190,157,131,107,250,183,171,58,104,180,19,76,218,205,29,5,75,110,63,26,106,121,3,112,239,25,43,147,106,239,241,244,175,184,137,66,115,215,111,59,154,160,121,119,7,248,187,26,253,23,56,119,33,160,147,25,215,119,214,43,177,245,126,201,9,58,191,157,218,80,234,192,12,102,125,5,5,148,227,122,36,199,241,118,215,0,110,232,72,163,110,29,252,61,167,236,81,242,39,181,166,63,250,197,71,89,133,123,0,118,194,188,137,116,236,102,11,230,210,240,134,224,171,211,171,132,132,19,139,155,73,32,129,157,156,114,247,42,250,153,247,169,208,31,72,37,137,209,10,153,85,51,83,43,11,201,254,134,52,134,102,108,240,182,51,160,223,76,5,15,43,22,182,111,8,30,181,232,69,24,237,222,50,127,21,197,140,87,190,44,134,80,250,180,239,243,2,90,154,197,56,137,194,32,27,248,215,89,15,210,126,228,50,103,229,126,88,123,171,226,229,133,104,13,218,87,80,162,170,67,89,91,9,86,239,64,20,169,82,187,14,2,107,173,56,124,153,51,41,135,13
 4,218,26,120,136,153,49,142,183,76,112,190,47,109,18,119,6,80,191,150,86,1,183,36,52,43,42,163,199,161,87,119,127,142,121,36,127,129,252,99,185,194,143,25,253,57,87,146,252,105,2,133,160,130,253,53,149,191,62,190,30,224,154,154,68,159,60,101,30,198,34,22,15,114,193,28,119,109,67,190,210,63,135,61,36,202,77,171,59,119,199,33,217,83,163,77,162,33,0,224,218,217,107,91,177,187,105,100,28,125,58,7,20,44,241,176,198,178,81,153,59,89,110,209,101,230,215,13,220,77,95,61,64,150,108,38,29,85,19,229,192,42,118,188,255,186,154,81,190,224,42,244,223,157,177,7,20,92,153,115,238,97,6,235,202,84,251,91,53,116,236,211,225,75,198,204,13,151,71,161,200,109,83,79,250,156,97,201,0,99,204,159,70,77,221,73,143,255,162,100,30,87,27,95,135,126,221,19,37,96,235,94,64,233,200,146,54,196,127,87,159,123,89,146,217,155,96,140,83,123,191,4,222,213,3,72,71,2,129,99,44,166,12,30,47,26,120,120,147,7,212,14,78,127,63,216,134,67,105,75,219,184,138,221,248,68,165,250,79,219,59,156,203,197,144,108,152,16,64,76,1
 95,252,18,66,185,148,240,51,70,166,176,191,17,253,235,221,68,177,248,200,5,129,209,255,211,38,229,92,23,242,43,218,40,46,227,129,101,125,210,255,44,20,134,173,184,58,146,230,55,200,79,162,98,250,197,52,3,93,32,127,9,248,24,47,187,161,255,175,29,15,143,211,251,134,238,50,100,144,88,59,34,163,134,188,153,226,213,107,38,186,253,80,166,70,39,106,128,22,184,218,105,40,113,241,157,87,158,12,166,163,245,94,188,114,135,64,165,3,239,2,2,1,151,204,3,56,170,161,222,122,48,137,13,124,83,127,8,14,123,137,160,250,138,178,68,93,220,53,1,206,141,95,198,132,177,12,177,81,202,162,21,104,47,74,0,127,162,51,11,60,62,173,251,221,151,8,109,125,146,115,95,34,72,254,192,165,60,190,148,249,97,72,53,96,229,38,24,70,52,188,254,170,88,248,74,185,176,12,94,9,119,115,59,177,65,222,238,12,12,231,70,189,186,45,173,131,145,200,222,23,207,0,90,253,252,43,59,13,167,97,154,229,128,110,163,125,47,64,68,245,115,71,26,156,22,139,149,151,178,50,183,6,145,42,150,57,200,172,242,51,84,229,249,79,69,120,150,104,174,22
 0,19,216,212,17,77,97,147,36,161,203,78,120,3,30,122,252,50,56,126,126,25,239,145,168,83,206,40,208,95,240,188,242,47,50,147,85,16,77,158,41,73,55,115,91,190,194,110,51,45,185,112,224,251,146,179,160,135,53,198,42,167,218,176,76,202,186,220,62,196,98,210,218,158,224,149,253,104,131,76,22,32,18,220,20,116,107,75,167,61,205,116,199,57,235,21,163,177,212,93,182,208,61,90,211,118,129,169,246,170,247,147,242,7,197,144,75,84,9,80,207,156,39,128,38,41,156,0,58,22,3,52,191,144,250,231,206,111,248,131,111,196,143,74,185,223,53,53,246,159,45,107,126,185,169,181,195,28,246,101,34,129,104,238,103,205,31,47,133,40,235,11,158,49,252,44,163,185,75,202,69,207,221,188,70,54,195,122,166,179,32,90,148,31,218,244,227,250,207,65,176,2,246,81,97,35,252,108,198,253,108,89,48,30,0,255,64,196,87,50,83,185,193,27,44,86,154,191,40,8,113,233,126,76,255,203,172,247,136,68,40,110,107,53,182,185,199,87,9,58,195,202,236,46,16,253,38,7,219,220,35,208,18,68,204,145,94,221,131,3,45,141,24,59,151,152,63,170,21
 2,136,63,36,52,92,78,22,124,146,213,62,105,120,26,198,188,6,218,97,11,28,103,228,122,165,71,85,43,96,16,64,37,16,73,212,150,39,23,207,53,132,230,205,159,147,77,165,223,57,86,245,3,85,10,147,220,182,150,198,229,32,144,151,96,182,240,177,223,90,174,84,163,134,30,202,21,180,125,199,212,141,38,199,75,172,116,183,98,237,214,121,133,221,64,11,1,127,83,181,34,18,126,58,60,22,14,210,16,201,192,111,8,253,90,205,118,179,244,46,50,203,29,219,230,192,72,35,217,14,231,102,31,152,218,159,39,71,14,91,119,13,176,165,59,142,211,32,193,232,84,19,27,87,213,27,247,143,76,192,165,230,147,109,123,85,42,15,203,193,126,229,222,169,62,219,215,149,89,21,193,119,194,230,100,255,31,98,40,43,148,121,112,147,100,92,131,95,47,180,170,17,134,46,46,29,250,137,245,83,162,96,131,144,201,13,90,123,119,23,140,230,83,218,83,108,93,173,201,85,158,234,235,235,196,66,74,23,61,175,73,224,203,57,35,133,9,22,16,88,41,131,158,196,133,206,11,45,43,156,76,130,145,25,63,139,200,237,219,39,223,178,166,11,43,62,131,209,99,1
 25,76,116,225,13,110,218,169,169,96,236,214,121,74,147,30,92,122,171,209,86,100,155,166,148,179,190,140,226,241,134,184,75,88,167,74,246,253,35,197,92,243,220,114,40,116,168,79,120,244,78,198,2,99,72,239,86,217,206,219,20,138,7,134,246,141,216,59,245,143,45,101,114,165,217,35,245,200,236,160,124,205,154,107,69,58,15,242,66,193,178,136,241,220,58,34,67,43,154,86,175,190,8,95,174,208,218,162,174,133,231,236,192,224,204,29,202,91,133,8,231,43,246,225,67,22,111,26,248,90,108,227,202,50,145,141,121,38,158,186,107,185,227,11,130,246,62,168,42,76,35,37,124,75,200,186,247,165,155,177,234,21,138,104,34,125,197,16,79,217,162,210,115,84,244,70,192,196,68,95,20,212,122,141,120,12,38,16,209,129,112,184,137,1,227,13,94,223,124,167,154,220,151,32,210,213,234,66,163,192,88,44,161,23,48,144,183,42,169,28,34,119,203,254,193,231,206,154,106,37,98,103,155,92,155,142,206,240,27,90,82,63,3,181,170,135,192,107,131,156,167,150,104,240,177,57,57,207,25,83,196,219,140,101,240,72,36,106,131,95,152,223
 ,62,4,154,17,224,136,191,41,247,27,202,11,87,108,95,230,40,163,19,143,253,107,194,99,114,12,206,54,25,1,92,26,152,105,159,35,42,54,79,165,91,63,217,90,244,169,208,15,160,1,218,137,9,131,242,29,107,100,145,58,20,49,143,139,65,69,59,171,189,20,177,38,68,174,247,227,51,214,228,85,205,63,75,175,75,135,144,10,139,21,4,98,219,199,234,174,2,42,147,145,142,39,152,180,112,47,51,95,79,43,20,107,72,5,88,10,185,214,233,172,150,34,92,252,218,98,23,137,84,56,189,238,2,72,57,12,145,217,238,153,229,17,174,101,188,181,120,85,61,156,252,9,40,31,79,165,19,223,197,227,124,121,48,116,191,78,8,26,79,156,178,52,121,83,94,3,86,66,112,14,194,53,229,72,179,57,65,152,244,12,47,31,122,121,233,137,205,33,235,87,27,160,247,179,140,151,204,58,174,92,235,174,42,238,27,177,186,216,115,72,136,4,169,106,109,218,205,189,110,165,79,41,54,45,192,19,42,195,249,222,62,52,235,129,95,72,238,122,236,49,187,252,100,76,5,185,108,84,83,255,25,201,252,188,150,142,232,32,147,197,165,246,21,86,214,23,127,22,44,51,76,123,42
 ,6,123,90,80,35,221,212,171,60,157,69,252,184,223,33,89,59,20,205,87,33,152,40,249,93,127,224,45,50,52,247,107,243,172,77,216,96,206,200,114,128,225,160,122,1,133,147,26,60,148,67,45,248,160,213,141,110,32,219,232,53,31,88,40,23,57,243,103,42,66,252,122,161,78,108,31,182,52,140,85,3,33,66,150,253,234,47,232,206,94,225,74,204,131,149,118,177,246,224,109,27,38,123,179,168,141,243,197,226,253,45,71,32,222,224,209,110,226,36,190,61,173,19,76,255,119,131,150,171,104,42,114,109,5,71,226,211,167,200,133,104,162,102,155,190,241,3,189,147,93,157,45,130,230,215,152,62,82,143,50,155,240,30,71,138,25,230,191,83,206,139,118,139,91,142,23,219,124,197,227,79,255,219,91,30,163,103,21,85,129,116,6,248,142,83,95,250,245,240,89,131,157,8,161,41,118,87,186,155,121,4,172,253,37,90,53,158,195,91,212,26,195,93,77,64,138,205,248,214,253,228,218,224,214,207,144,214,30,21,91,73,44,123,138,237,189,76,29,24,118,207,21,113,207,112,21,252,122,239,213,232,162,143,168,39,219,18,33,166,70,157,92,143,175,219
 ,232,93,240,22,92,45,13,224,33,113,140,118,41,122,179,92,170,106,238,131,86,13,29,43,249,79,203,74,87,104,248,42,147,2,197,227,98,128,49,73,136,77,187,77,62,203,206,74,109,255,89,180,176,115,24,229,54,41,125,56,71,32,222,115,124,110,100,54,88,244,24,107,189,33,197,43,145,170,130,212,14,206,74,208,124,17,34,57,218,39,113,107,195,75,2,142,7,79,208,198,176,248,26,225,248,59,70,156,135,148,165,147,50,235,95,82,7,20,10,145,161,31,18,230,40,142,143,50,57,220,230,159,188,113,217,125,96,18,5,109,38,8,183,27,150,230,137,88,189,188,37,253,116,128,225,66,136,49,158,253,55,67,199,90,195,96,118,26,176,193,255,109,190,175,8,128,225,167,6,127,69,84,98,79,13,157,206,228,231,240,202,157,153,165,122,148,67,51,27,70,89,198,211,110,78,176,252,134,243,109,176,113,166,101,151,129,14,141,136,218,72,201,247,116,117,16,23,52,186,16,22,34,162,22,219,176,140,245,70,97,243,172,83,160,166,167,254,164,77,91,171,19,49,68,192,239,13,121,88,108,39,119,105,174,239,212,173,92,240,72,35,25,47,99,146,214,199,85
 ,189,148,153,175,135,97,129,235,140,80,109,213,29,159,54,70,211,1,124,229,167,147,228,253,61,45,11,110,171,251,214,200,40,58,183,251,133,253,106,150,66,0,83,172,109,72,193,211,62,146,238,242,199,89,176,76,46,94,9,115,117,77,208,80,102,96,44,241,71,196,187,116,79,193,250,163,104,14,205,41,60,222,107,170,41,160,72,26,236,205,6,98,104,244,56,192,4,187,109,12,49,226,201,228,145,248,46,132,255,88,231,82,116,47,54,138,87,255,90,99,109,218,51,211,69,187,50,161,71,184,162,157,56,37,104,93,7,133,94,86,71,120,166,19,35,43,118,154,39,255,147,128,113,124,20,33,193,110,125,179,196,181,245,8,55,160,233,248,161,146,190,124,159,71,98,50,81,79,235,197,25,66,95,180,144,145,88,96,4,56,18,149,56,98,254,69,191,205,181,93,46,127,146,239,150,226,200,145,200,97,242,153,77,99,16,60,50,79,134,218,54,78,143,154,158,43,57,219,224,7,133,242,209,10,158,217,196,31,108,209,234,78,201,4,185,98,116,65,207,135,211,252,30,30,79,181,72,43,39,226,2,207,13,145,231,33,87,223,148,62,237,203,59,220,44,198,138,160,28
 ,102,203,53,222,37,241,255,83,23,95,23,38,170,112,162,19,71,58,217,0,76,145,233,3,111,16,200,246,87,99,202,67,146,251,121,120,133,160,16,77,219,46,251,141,62,77,164,81,63,216,227,82,147,32,155,166,44,121,51,136,115,28,147,8,95,38,155,163,230,93,58,64,41,169,73,85,182,211,218,217,10,18,165,231,48,186,27,242,97,74,104,195,32,157,250,199,120,250,238,246,200,236,57,47,125,198,78,104,237,7,65,8,71,235,38,234,7,185,160,144,75,26,97,17,89,146,156,250,196,46,255,77,211,194,130,51,199,68,72,178,196,235,17,23,128,202,181,7,101,54,12,32,246,48,216,50,147,189,140,243,238,146,208,244,82,208,11,29,115,34,246,134,148,137,169,159,147,183,240,160,52,205,204,21,120,241,1,10,85,20,164,15,41,110,206,51,122,162,96,32,203,210,109,89,222,52,217,131,203,244,214,254,89,195,180,138,160,200,23,234,164,38,176,9,102,57,137,239,146,12,190,208,73,202,8,69,200,110,149,161,120,90,214,211,242,45,200,27,212,158,189,63,184,134,194,177,13,119,215,6,229,236,76,47,6,17,193,106,94,137,129,65,16,56,71,104,94,238,22
 2,166,66,55,100,108,241,87,59,74,9,207,158,56,206,208,124,42,24,131,204,54,141,64,97,249,99,242,69,112,188,120,35,196,26,190,180,11,242,118,157,213,149,127,38,50,148,200,59,149,229,152,139,133,16,185,238,175,205,202,25,68,237,236,243,141,220,31,82,99,23,218,5,174,198,90,211,21,156,219,36,78,55,195,189,23,241,128,224,232,191,35,28,29,82,27,198,133,10,238,186,127,205,138,147,144,55,191,53,180,249,22,171,67,0,162,139,234,37,184,207,90,226,224,212,11,221,29,168,47,113,241,11,196,193,71,10,5,57,222,235,74,247,110,2,165,205,16,236,16,247,251,145,171,230,38,110,154,28,73,215,39,220,145,24,148,237,206,196,65,228,132,93,30,25,211,166,199,154,54,4,79,153,225,248,211,217,59,197,34,205,93,37,196,46,160,4,112,163,81,155,101,106,206,234,101,235,230,171,192,189,167,246,241,74,244,220,229,234,38,177,238,71,240,14,251,115,33,237,33,178,87,3,243,201,112,64,175,219,173,142,4,50,153,52,166,232,48,196,167,84,181,134,221,80,108,107,28,15,110,35,133,230,236,41,55,201,118,40,11,197,158,199,52,130,1
 94,189,24,194,72,61,209,255,32,45,101,146,255,56,90,149,110,102,237,24,0,169,233,169,30,37,193,48,239,51,255,13,36,16,161,30,200,84,128,143,84,133,12,76,126,243,142,180,230,30,45,156,249,223,147,197,134,170,130,111,134,208,58,56,197,18,228,197,191,38,224,173,117,10,85,98,208,99,42,69,230,148,91,208,68,38,170,17,141,164,85,160,73,228,197,176,53,163,141,204,45,137,28,117,121,3,142,181,4,191,204,166,80,111,123,132,0,169,134,230,241,34,209,63,211,234,156,137,107,170,13,210,239,209,108,131,112,144,153,62,214,119,82,168,248,216,41,164,67,255,236,145,190,175,159,75,211,1,145,180,141,15,148,155,134,75,148,8,142,86,70,185,200,14,54,145,167,122,208,91,92,35,171,69,216,88,226,89,232,150,166,252,229,196,85,205,242,224,92,180,73,221,35,61,28,59,129,131,145,223,113,162,24,219,88,95,89,82,38,80,181,158,128,41,13,160,252,197,59,71,60,224,254,196,149,122,94,83,203,105,159,82,2,227,178,6,48,28,169,46,78,158,19,220,103,11,113,122,212,123,28,117,219,15,27,62,124,233,130,6,143,191,255,65,95,63,6
 0,100,243,29,173,173,78,104,198,1,144,213,18,125,184,80,53,231,251,239,10,65,117,67,156,53,187,11,17,117,88,209,218,89,193,155,188,87,101,52,33,68,76,118,163,118,192,227,208,210,226,202,101,238,3,141,105,67,189,216,190,101,138,120,122,14,152,72,151,14,14,16,53,81,157,151,244,239,78,61,186,149,127,35,160,80,1,135,54,250,251,203,198,195,134,144,125,22,92,9,184,89,61,180,65,169,252,57,96,64,207,26,101,6,206,137,135,8,169,98,105,0,34,206,124,193,223,140,125,98,126,114,246,242,163,211,144,128,62,188,13,119,153,75,1,194,57,224,190,178,82,53,191,215,24,184,7,30,252,117,6,153,125,52,59,139,59,76,2,221,134,113,180,120,195,57,228,94,184,250,43,11,10,78,21,17,184,82,70,125,176,92,51,127,142,108,151,210,114,33,124,89,151,212,174,3,25,15,107,145,151,183,76,233,117,209,69,146,206,220,3,63,57,61,152,99,237,71,148,225,185,31,136,141,164,39,158,18,176,225,232,48,219,86,198,184,163,164,128,70,127,244,250,18,54,12,91,231,175,173,47,174,161,93,83,149,36,156,213,138,231,170,137,230,153,177,201,2
 43,19,63,255,104,187,149,178,240,81,85,230,60,30,230,121,95,175,229,234,12,22,75,46,217,52,4,112,202,58,189,214,97,120,20,225,128,251,117,244,31,89,10,10,176,253,163,83,131,174,137,247,16,212,30,221,232,10,151,153,78,169,227,59,128,52,113,198,192,7,214,7,229,152,253,142,163,54,164,188,71,41,171,213,138,246,42,76,198,100,81,154,99,141,192,181,144,97,176,172,188,104,184,220,18,110,240,239,109,145,127,34,157,40,37,243,253,189,30,125,93,90,75,101,222,117,77,43,36,112,17,146,53,69,73,209,6,87,58,238,109,246,10,84,187,57,72,65,170,254,13,7,210,41,114,67,114,152,239,50,17,167,34,163,143,230,6,219,72,222,91,245,238,198,191,220,0,162,135,248,110,15,249,162,168,147,45,213,230,125,70,200,22,90,61,132,176,252,74,41,64,90,54,195,30,85,9,3,56,215,213,29,132,104,215,50,229,246,53,44,39,121,11,13,154,181,254,208,63,53,23,49,62,52,176,110,84,131,129,103,6,8,4,212,10,111,248,165,37,201,213,159,90,45,181,43,147,19,192,227,7,0,115,132,171,204,212,14,138,75,76,122,48,220,201,106,198,96,135,49,99
 ,121,218,177,212,75,160,68,207,216,54,215,35,1,134,119,245,230,164,5,119,225,25,5,82,226,122,230,142,152,224,251,62,210,227,160,123,133,65,127,127,2,200,17,66,62,74,99,24,196,29,122,146,149,240,86,22,254,31,141,9,2,162,169,48,212,225,154,198,155,74,82,209,223,46,210,182,76,197,65,30,47,128,115,107,25,116,11,242,209,210,126,211,114,122,119,85,170,37,34,254,191,161,227,152,126,173,22,191,238,26,158,97,43,228,203,117,160,187,146,242,187,243,93,23,216,132,70,138,166,137,29,112,52,117,4,4,82,181,57,24,22,215,57,217,69,13,123,160,91,195,78,38,48,196,19,33,144,73,83,124,218,135,57,243,31,112,246,102,127,79,250,223,171,7,71,189,104,51,244,170,99,205,194,222,220,3,153,166,142,100,85,35,151,227,78,101,155,225,247,4,202,121,233,230,141,143,198,185,122,59,11,9,35,223,143,108,38,235,135,215,108,15,81,196,164,193,19,167,252,172,66,98,156,167,116,32,48,10,22,125,49,113,74,8,215,116,146,180,185,211,56,67,206,87,155,255,194,52,7,49,26,54,218,189,67,10,26,83,18,144,43,118,120,207,50,13,109,21
 6,217,153,38,56,166,112,245,116,9,45,183,59,77,232,93,81,142,146,28,197,168,71,90,78,100,49,134,230,63,112,237,38,81,85,173,57,11,76,81,109,102,166,2,249,132,141,119,106,253,61,231,235,54,112,105,208,29,130,121,7,198,167,101,134,48,222,233,44,165,108,108,250,181,238,107,100,247,202,114,186,179,43,136,134,223,42,92,10,121,252,35,160,27,232,9,216,206,208,235,50,2,133,13,243,223,129,171,156,53,196,112,207,205,230,202,113,59,55,189,199,13,176,97,20,36,19,31,25,154,153,121,13,184,231,39,215,0,112,93,58,209,75,61,99,0,240,23,21,217,32,240,8,181,248,235,54,222,158,162,74,205,74,229,79,147,8,119,68,95,8,22,39,149,242,91,3,67,78,130,15,171,214,228,18,61,224,95,99,23,196,151,106,177,134,52,204,178,119,90,98,215,151,244,132,108,38,228,254,138,208,178,74,100,9,111,174,208,50,1,239,26,48,52,69,28,29,160,97,19,141,79,50,73,4,141,241,102,178,123,232,42,64,187,81,187,210,193,29,21,203,187,214,242,8,18,37,51,26,43,175,72,89,107,208,65,143,58,121,82,68,146,40,80,80,13,211,152,175,248,169,248,
 165,196,94,29,83,13,4,138,80,8,20,198,57,106,216,206,175,148,212,206,59,75,40,253,102,154,170,183,106,148,168,77,78,189,102,244,39,152,69,5,198,216,143,102,95,18,48,140,173,78,124,71,20,203,105,127,111,243,7,29,196,55,86,52,110,208,26,236,86,141,124,127,192,65,209,13,59,33,28,254,18,239,138,146,75,43,162,174,225,102,93,118,77,125,183,242,31,8,26,61,108,86,99,224,70,250,170,103,181,187,133,20,42,70,74,153,147,62,242,146,13,193,76,108,14,18,162,65,63,241,224,207,42,194,233,219,50,153,182,141,113,193,37,0,48,150,239,24,52,218,207,103,18,14,102,116,223,196,19,8,226,138,11,219,197,157,244,63,26,255,142,19,161,42,73,201,61,39,211,187,90,160,120,25,13,246,138,196,187,178,171,197,141,214,196,54,133,201,192,9,117,7,219,204,174,37,26,232,99,184,22,115,53,183,79,9,116,213,217,153,24,151,30,20,195,145,255,152,245,167,71,138,12,173,154,232,81,236,137,211,17,237,143,211,234,16,161,231,245,12,28,186,235,19,178,9,91,57,230,38,184,240,144,64,190,20,201,232,108,106,74,11,40,211,91,79,35,135,1
 90,130,126,27,29,63,183,123,213,207,61,223,105,89,184,62,18,79,92,175,201,255,141,132,85,107,109,124,109,188,45,159,216,54,84,43,89,116,170,124,197,17,255,65,23,147,20,98,127,124,121,117,144,253,109,116,50,38,246,186,249,168,184,142,90,85,201,151,155,218,149,119,108,12,103,57,73,253,121,209,45,212,123,161,130,208,160,220,167,27,17,189,174,137,88,219,192,90,121,209,0,77,177,126,208,197,0,177,102,8,12,115,187,116,47,224,141,48,109,229,32,61,217,93,197,44,156,66,147,138,7,91,113,28,116,45,169,105,87,174,101,229,96,245,210,207,230,138,149,166,55,26,237,24,86,22,181,59,62,183,207,38,63,164,92,245,115,203,34,126,16,95,245,61,50,189,117,149,61,175,112,27,118,239,125,156,32,224,172,175,151,218,72,75,92,203,240,131,164,128,138,49,193,251,46,238,221,119,255,38,69,28,67,203,216,248,168,232,33,5,180,136,106,65,3,161,184,159,7,126,186,148,142,238,195,110,230,179,114,197,111,72,246,176,59,87,185,171,171,134,73,96,10,206,78,78,42,22,244,14,169,138,213,51,50,244,250,227,96,252,30,191,4,137,
 42,17,122,140,105,69,111,223,122,9,105,103,73,167,202,174,39,198,66,238,132,97,126,236,140,96,215,94,102,160,248,32,76,72,239,218,236,146,134,44,169,79,115,188,114,87,114,138,138,92,225,208,117,153,223,221,156,100,55,57,12,74,244,37,141,124,91,130,254,80,73,167,48,174,146,169,136,71,236,58,63,76,118,51,92,81,82,20,143,102,120,235,36,179,59,132,101,118,210,169,238,231,132,249,103,56,189,43,102,177,164,141,161,30,130,241,82,56,119,37,135,48,44,21,242,17,47,17,55,196,160,144,128,64,140,175,56,72,124,252,76,162,65,202,60,47,178,240,58,141,156,254,15,4,88,13,117,201,129,62,207,61,166,145,74,5,175,107,3,223,176,200,61,171,94,47,70,230,177,215,198,24,161,57,41,30,44,63,135,59,194,31,133,74,144,157,138,116,121,3,119,78,71,144,167,190,27,237,209,199,119,60,114,179,249,88,111,5,138,239,222,86,231,100,204,36,171,58,0,235,147,6,203,12,181,135,73,109,151,9,216,5,8,108,167,174,213,232,220,187,215,54,27,119,135,136,60,141,9,195,207,212,36,206,72,148,50,88,75,104,151,0,210,11,119,30,8,162,1
 41,43,133,244,176,64,248,183,6,72,2,231,42,72,111,50,216,108,41,23,222,80,98,107,224,10,95,23,41,202,131,158,146,179,65,228,102,139,160,128,215,134,59,252,75,12,59,223,216,66,237,140,114,151,135,247,72,177,96,37,27,141,251,168,128,149,225,76,125,45,31,208,154,227,142,118,8,118,175,150,20,219,107,74,179,59,101,26,239,43,107,45,15,14,182,134,79,88,52,223,47,36,178,146,160,151,145,44,108,85,184,45,224,47,18,255,118,22,105,28,152,163,147,124,161,241,54,107,12,62,130,252,124,138,21,220,82,164,85,166,158,138,8,157,223,165,102,121,102,138,234,164,165,145,231,13,9,15,57,165,187,97,18,146,65,59,238,149,13,205,1,228,225,139,146,161,243,42,57,236,160,2,204,239,93,44,1,48,89,51,123,218,106,100,7,17,44,74,107,235,247,207,151,195,105,196,137,216,7,62,191,223,85,111,207,183,49,35,148,10,84,14,217,91,247,41,26,97,144,62,29,151,158,209,245,181,170,36,233,117,2,127,68,198,170,113,43,88,127,60,205,238,233,173,4,89,121,215,160,229,254,3,133,55,162,54,244,40,87,23,65,255,54,191,91,209,174,128,21
 2,9,39,201,143,210,42,48,111,155,34,246,248,102,251,200,221,215,235,138,191,0,120,7,118,111,70,42,101,39,221,164,138,81,188,205,66,202,80,173,184,221,138,66,24,213,221,81,249,40,163,94,236,105,94,94,0,236,220,102,185,146,14,213,236,212,80,254,84,86,9,150,49,219,8,90,156,215,38,74,30,195,222,9,53,187,51,25,196,26,203,187,40,122,113,9,186,47,94,172,69,236,34,21,95,32,83,143,141,211,1,190,58,155,71,70,234,83,35,88,41,182,147,141,215,237,226,208,206,105,168,6,215,215,241,5,28,200,147,47,214,235,34,224,198,102,203,211,208,131,189,185,160,250,137,70,42,64,1,56,141,142,47,162,51,239,2,151,108,72,92,3,130,231,236,10,84,10,75,48,214,21,11,211,64,156,170,251,135,89,215,158,11,187,75,84,37,73,231,150,37,71,53,108,25,140,47,55,185,127,113,102,224,215,77,159,80,52,255,40,58,180,217,56,85,98,220,242,246,65,246,255,137,200,67,117,15,202,2,96,27,190,27,177,46,175,227,223,140,79,36,25,188,102,222,250,52,155,181,165,53,78,225,97,140,213,153,31,154,176,5,141,247,215,5,238,205,177,15,86,219,176
 ,225,222,128,87,36,150,70,123,10,143,230,213,15,75,59,162,72,83,104,150,148,19,49,54,148,183,74,107,137,225,165,1,136,165,64,94,216,200,85,21,58,63,112,110,234,208,85,18,0,69,110,171,172,124,37,32,241,204,54,49,174,114,126,200,236,232,65,235,24,43,116,117,168,126,119,86,103,56,210,211,111,143,35,245,194,48,204,6,32,53,153,238,174,193,168,64,198,164,72,47,204,159,174,19,13,84,120,53,189,35,101,107,110,191,13,244,244,246,17,178,163,71,169,55,200,68,55,80,167,38,238,120,132,15,73,234,46,8,246,60,89,4,77,2,162,198,163,70,101,251,85,221,7,196,154,183,151,116,20,231,108,70,114,21,60,210,197,135,229,233,147,40,231,31,216,198,23,94,103,3,127,28,89,160,100,157,52,154,116,64,20,201,180,101,25,194,202,200,222,205,147,77,139,76,14,110,155,130,53,215,37,194,198,127,58,123,128,27,135,240,219,35,240,56,160,254,212,108,230,107,251,247,68,16,1,154,248,148,195,229,8,47,49,173,101,74,115,35,215,109,141,249,143,87,198,230,106,8,43,75,114,24,253,248,210,95,227,135,144,174,102,162,224,109,161,26,
 18,56,107,184,48,134,86,73,191,247,144,86,12,110,203,108,200,66,72,125,74,82,167,243,210,132,106,151,187,20,56,223,253,17,65,240,79,45,19,66,80,163,37,2,226,183,82,33,91,59,210,238,242,33,250,200,138,187,150,37,221,236,205,15,103,198,199,230,254,246,246,96,89,14,55,166,94,59,7,111,219,123,220,79,53,9,133,177,179,145,180,212,119,180,56,214,160,169,110,2,224,49,211,78,22,105,29,177,233,181,36,191,237,94,210,165,77,3,252,78,247,221,53,3,52,155,194,200,145,159,194,37,136,197,147,207,131,241,139,3,201,144,233,4,15,210,132,230,112,186,55,99,207,29,189,125,161,191,255,103,147,244,133,217,200,247,201,172,89,140,200,174,96,99,216,97,98,86,237,18,124,241,204,118,110,211,106,205,23,160,170,235,234,221,29,41,28,253,143,30,24,26,127,165,43,221,210,72,212,139,196,102,73,80,238,3,164,84,200,100,68,68,195,154,99,180,251,48,143,115,240,93,251,157,68,94,131,208,208,3,208,86,154,161,85,112,82,97,20,190,227,155,29,152,34,49,4,231,55,199,91,111,144,47,45,145,20,102,54,58,27,52,44,108,121,178,186
 ,203,84,61,57,148,80,243,236,40,219,4,86,194,122,153,75,149,184,212,163,31,229,11,137,82,163,251,133,179,47,194,33,61,225,116,242,132,45,130,69,191,4,206,86,42,218,136,9,40,157,251,114,112,82,71,28,19,249,77,208,97,80,245,104,33,9,242,216,146,54,160,32,30,165,30,32,75,40,195,152,145,49,29,219,106,142,175,209,189,214,60,244,138,185,29,97,47,253,104,168,100,207,126,162,32,172,255,110,157,143,229,239,169,239,183,44,176,240,68,44,187,233,82,37,98,43,5,238,107,23,85,43,132,75,90,246,186,165,89,188,101,217,103,249,182,255,43,190,209,204,243,183,149,117,226,207,151,210,64,169,101,15,51,72,142,36,31,152,246,26,60,125,194,156,192,102,131,55,225,14,183,96,178,131,16,230,65,17,11,137,85,35,114,174,211,68,7,185,232,119,92,223,61,149,61,1,237,115,198,218,40,241,79,1,195,136,108,29,240,130,186,156,206,59,128,237,41,184,48,33,247,239,100,111,251,208,2,84,159,22,246,91,244,230,251,25,174,239,54,198,115,177,100,8,108,45,107,224,156,17,105,152,228,130,43,121,34,122,21,76,193,90,197,138,134,14
 9,196,177,28,195,128,189,89,47,96,90,6,28,117,128,147,183,78,92,196,2,104,175,233,75,76,186,200,22,183,10,155,102,215,208,219,204,117,125,122,107,206,30,238,1,43,82,185,251,234,233,3,144,71,180,27,24,202,23,238,236,132,195,226,105,212,206,157,75,241,145,72,152,85,116,23,47,192,161,248,44,160,130,86,236,73,220,45,54,155,82,209,118,62,217,158,60,169,103,51,218,251,223,190,141,213,250,205,231,169,102,136,43,92,100,31,151,65,211,86,223,232,236,121,155,148,92,87,222,55,194,67,51,22,179,100,51,125,140,43,51,137,115,76,97,10,218,6,152,65,0,135,125,232,116,167,233,139,55,76,19,122,38,88,119,80,178,91,23,81,11,126,65,150,207,47,249,158,118,114,49,163,2,172,118,229,215,99,174,247,9,196,14,198,212,15,45,146,249,249,133,128,10,210,11,254,108,30,248,249,243,157,157,214,145,206,22,102,1,240,137,51,155,251,109,176,60,35,8,189,144,120,191,197,110,251,236,97,117,103,250,167,244,124,254,59,223,178,127,205,162,166,101,230,175,63,44,36,239,72,95,166,86,132,227,216,37,253,230,163,57,144,234,19,1
 58,137,149,115,10,169,51,18,227,144,227,42,101,46,82,187,184,237,112,228,200,243,189,23,231,64,195,57,37,237,27,84,205,235,8,142,19,121,155,122,250,245,28,229,255,148,48,4,224,209,224,215,28,138,236,26,74,15,128,3,150,133,220,66,220,2,2,143,155,157,97,21,52,191,76,113,100,36,248,87,104,109,137,51,128,84,162,53,178,153,142,121,240,114,243,174,33,86,22,120,164,28,136,18,123,122,197,230,221,212,55,79,203,86,2,183,31,192,241,252,26,46,181,53,37,219,176,207,201,174,123,1,182,149,176,210,60,140,107,149,241,245,98,70,113,83,103,232,105,206,41,205,202,105,92,88,119,106,167,31,229,241,13,243,236,7,63,41,73,193,14,75,216,5,169,74,9,135,149,17,199,33,70,139,138,105,210,133,177,180,30,135,96,130,8,248,160,194,114,171,160,215,77,77,136,84,159,85,217,177,150,52,215,30,161,167,171,90,46,16,169,110,62,56,145,49,132,143,237,177,104,52,98,60,171,238,99,151,99,99,96,222,123,75,69,156,243,65,10,234,168,33,224,40,187,89,208,242,104,225,67,174,11,82,150,71,170,71,156,187,35,158,24,208,37,86,133,2
 34,12,30,115,15,55,14,6,189,121,56,103,184,151,249,107,182,40,88,254,109,176,153,52,61,97,247,161,4,65,17,205,19,218,65,233,193,34,183,11,197,11,234,25,188,66,25,145,234,135,247,147,95,109,116,6,41,56,117,172,184,33,246,51,128,117,245,5,254,138,234,197,93,210,77,78,206,204,37,122,66,128,216,198,146,28,242,28,176,75,221,193,42,79,28,5,198,88,1,35,239,212,182,206,243,147,252,124,94,10,112,66,51,226,183,175,186,190,5,22,121,129,247,81,63,60,1,72,57,89,110,141,198,38,109,2,208,146,124,90,240,60,224,188,6,106,187,212,104,125,105,216,8,114,11,239,222,103,94,97,30,8,57,37,17,250,182,111,184,85,46,145,186,196,95,109,250,211,200,87,220,77,21,145,222,26,18,210,111,248,132,190,24,226,59,69,124,171,199,10,252,24,221,217,136,176,232,121,149,53,101,213,174,201,96,159,21,95,197,185,77,80,240,193,81,129,230,170,145,245,152,101,40,125,16,141,6,192,113,195,187,185,167,149,142,243,52,25,252,183,19,16,3,52,5,134,32,150,147,116,77,43,162,114,187,156,229,66,47,45,237,162,8,204,117,117,48,247,95,6
 6,50,25,10,78,195,155,171,145,146,246,98,33,123,31,186,233,91,245,151,130,15,189,199,14,99,41,245,149,67,183,168,219,119,80,40,121,68,163,169,2,132,100,114,224,158,237,6,229,148,82,214,255,8,31,100,243,6,233,219,2,155,122,29,203,122,59,250,108,87,92,192,35,228,161,58,143,41,234,150,45,69,122,53,12,36,196,72,103,76,60,98,135,45,224,42,223,238,110,60,141,159,23,119,90,194,194,151,98,99,15,42,144,43,197,3,26,156,87,155,95,72,251,54,190,12,83,28,146,14,21,225,217,62,6,30,51,142,69,167,50,69,223,231,242,71,168,141,240,206,205,9,73,201,55,87,119,224,101,190,121,105,218,205,76,212,129,5,42,154,48,94,149,64,86,60,54,116,77,56,230,182,130,79,249,11,115,100,33,1,159,28,193,190,156,115,130,172,179,125,35,119,63,243,62,74,40,207,88,206,124,2,112,237,18,252,20,186,132,91,129,241,15,175,159,165,153,37,53,64,38,179,28,206,252,37,203,145,47,214,13,12,129,157,146,242,83,161,106,62,66,164,133,54,236,43,143,8,251,248,15,122,159,60,186,181,78,130,93,90,139,42,231,225,248,211,226,175,193,167,15,
 69,134,52,236,233,160,180,197,81,164,201,251,65,37,76,213,14,207,128,135,234,236,83,134,125,166,225,228,195,10,176,29,212,88,94,14,240,231,195,118,166,238,162,137,218,162,143,32,67,14,193,187,150,51,107,239,84,211,200,73,87,37,253,84,147,231,14,120,195,150,72,255,28,66,56,223,21,3,197,172,106,241,130,214,181,133,20,57,79,130,232,171,26,201,195,116,194,1,136,70,115,73,24,226,17,237,161,248,6,237,43,230,75,111,114,13,193,247,23,160,26,139,96,193,79,20,15,5,221,135,253,28,161,39,65,143,110,209,183,241,215,17,33,255,158,136,62,163,61,39,108,113,65,1,170,206,18,47,96,15,179,41,78,96,228,242,47,78,157,79,105,3,32,244,93,49,208,145,155,203,63,36,157,48,214,98,52,24,211,143,59,140,220,209,90,190,70,35,142,49,22,214,16,8,245,216,217,28,114,57,54,84,84,160,144,209,128,206,51,119,218,193,247,98,141,192,115,50,192,248,196,143,17,93,16,161,239,235,108,221,21,86,214,13,88,96,133,247,135,5,185,212,197,98,117,210,115,5,131,111,254,21,126,235,191,184,88,86,87,165,56,247,151,212,208,101,85,24
 3,190,226,118,116,158,207,175,154,132,100,212,207,188,224,108,175,236,133,219,110,238,202,248,126,66,223,157,203,63,141,126,116,191,166,157,207,234,127,91,247,88,152,159,78,70,80,114,107,239,145,20,243,153,51,137,31,184,194,164,214,112,46,180,94,162,59,227,7,203,34,92,240,115,90,21,248,46,85,96,63,136,201,15,98,93,38,236,111,169,239,228,207,93,36,70,96,22,124,119,80,120,161,48,122,68,205,81,51,148,39,50,161,29,56,64,134,27,81,131,68,165,100,158,242,16,214,180,24,222,14,59,86,232,190,205,159,232,134,69,229,252,60,154,97,252,125,19,155,102,98,177,238,196,142,228,72,58,34,72,140,53,113,200,87,40,212,87,231,130,166,74,25,221,78,138,2,4,193,44,219,141,183,18,130,77,117,242,81,69,87,77,57,214,235,212,145,53,111,249,252,30,225,118,4,194,183,226,52,182,165,140,28,220,57,213,103,88,231,217,115,255,247,3,128,74,182,173,57,9,36,124,30,83,51,224,85,145,101,186,30,232,204,111,186,203,118,205,239,191,34,208,217,83,218,59,144,28,144,84,4,81,213,37,168,218,100,83,143,31,129,23,12,49,74,56,1
 99,38,16,205,237,151,209,99,149,222,165,68,130,63,227,78,77,45,176,145,72,255,116,101,66,65,169,202,241,199,25,108,161,149,9,27,7,9,25,81,253,198,229,36,75,192,240,22,2,229,43,206,247,25,250,120,81,123,40,250,32,10,96,37,130,188,115,8,47,74,134,56,47,186,175,174,94,50,230,92,229,6,124,93,12,201,246,61,169,31,214,187,147,122,116,252,71,154,204,9,38,124,70,211,103,86,48,138,135,140,216,38,86,55,38,160,192,43,152,233,222,179,255,23,42,22,170,58,61,60,123,131,223,69,194,190,161,86,169,237,134,100,26,246,255,68,63,219,36,15,31,192,87,113,165,188,182,4,139,2,165,25,210,27,34,24,84,77,211,53,162,234,144,30,117,244,238,51,183,32,43,117,202,160,180,118,228,62,219,210,20,20,87,53,42,198,244,107,219,203,76,178,179,97,223,132,91,67,41,99,231,253,225,100,100,110,7,113,225,142,211,232,182,227,48,215,212,22,212,212,44,224,185,36,197,127,1,199,80,154,95,125,123,81,24,62,160,190,112,109,50,95,242,149,186,40,81,160,238,199,164,53,192,79,142,101,192,7,177,122,199,79,231,126,241,218,150,59,83,2
 9,34,196,144,61,151,169,134,80,24,169,82,27,90,211,85,110,127,175,206,206,35,231,65,245,104,108,16,54,30,171,215,142,172,93,161,75,238,118,51,43,113,23,193,240,188,42,231,173,158,240,252,197,73,240,201,121,157,181,196,111,206,179,36,240,85,56,91,250,86,22,209,65,129,187,253,121,35,126,96,9,235,190,242,209,72,183,15,251,206,250,85,233,117,83,223,176,172,19,5,217,59,21,123,96,224,163,191,142,231,146,61,214,110,51,2,111,183,149,51,201,19,220,4,139,223,86,47,204,27,27,62,62,89,49,215,241,29,213,48,18,61,16,8,62,53,241,123,63,180,126,159,169,214,242,229,140,178,198,162,189,191,57,123,127,126,116,140,209,203,64,233,26,231,66,80,187,94,207,108,196,149,118,240,232,251,230,208,169,141,74,194,11,75,72,199,64,35,87,83,27,36,206,177,43,152,169,215,157,98,70,245,218,178,125,33,185,171,45,70,116,221,211,18,97,224,58,31,50,229,149,96,27,67,31,77,195,165,1,55,84,203,192,135,133,198,75,44,182,64,228,72,34,191,79,63,167,149,16,214,168,102,218,32,106,214,59,199,200,254,32,190,240,248,26,183,15
 0,89,112,28,101,193,170,242,229,205,43,128,203,154,64,20,94,185,237,208,18,148,143,105,56,117,249,9,229,22,75,226,158,74,6,139,248,240,44,207,33,52,118,214,28,208,60,45,241,160,70,248,243,40,150,62,238,160,171,104,31,255,195,112,107,225,3,113,142,84,57,185,112,185,126,138,20,58,52,90,241,184,94,82,196,151,167,189,174,169,132,126,100,65,213,76,126,219,0,193,239,219,143,38,249,19,103,43,48,165,170,86,169,51,211,230,71,78,116,28,203,165,195,53,177,85,184,71,216,31,172,109,79,230,71,14,190,166,89,238,135,228,103,8,208,75,235,77,234,243,219,1,97,224,131,23,136,20,198,144,104,212,45,153,198,140,178,24,57,201,61,177,93,201,132,231,254,135,133,220,253,205,211,224,13,66,202,18,146,244,192,221,240,160,30,245,0,145,139,179,46,248,22,183,210,73,168,0,5,240,0,4,135,22,236,142,81,150,46,43,191,142,60,229,31,184,69,36,17,244,39,225,53,214,14,212,10,24,50,9,13,184,193,41,153,226,194,91,131,172,229,85,140,208,171,244,156,59,201,225,180,131,170,58,146,252,110,40,36,102,177,187,146,248,125,114
 ,188,242,214,49,54,91,24,61,137,83,35,119,203,210,204,123,122,252,229,153,90,45,178,234,119,59,213,169,133,142,246,20,122,210,24,164,10,215,24,165,145,76,203,199,39,76,25,243,114,103,209,147,117,99,177,157,196,202,53,23,181,54,167,204,114,7,21,225,23,23,18,232,195,181,17,187,120,16,60,87,209,13,123,230,14,241,13,222,119,227,215,26,189,61,93,14,210,229,103,154,132,204,255,48,51,90,44,241,213,94,209,218,124,206,128,158,108,248,251,47,142,185,215,63,118,7,220,126,8,227,68,184,175,186,15,164,20,219,190,174,161,219,69,108,13,218,43,196,242,103,115,8,132,51,229,211,165,100,34,204,129,84,179,113,189,204,235,91,249,197,61,110,127,33,110,85,207,210,196,143,120,65,244,118,227,66,72,18,94,245,186,211,241,90,126,20,129,133,80,202,147,216,250,114,0,200,56,130,7,76,117,170,88,73,159,183,115,171,137,180,217,45,244,219,229,111,0,103,151,26,112,140,120,30,173,93,46,51,74,21,206,84,18,189,68,44,8,144,232,82,138,97,110,57,118,40,147,145,3,92,229,126,148,214,205,205,161,134,91,100,228,130,192,9
 8,186,217,92,88,5,97,168,240,218,14,108,161,39,170,185,98,79,40,55,240,167,18,243,147,237,214,168,160,108,93,212,154,142,186,174,178,202,143,215,31,161,202,94,25,37,247,11,163,195,224,93,145,45,255,92,108,143,146,242,122,208,58,238,161,142,147,152,92,217,177,150,116,218,187,63,252,116,96,125,222,112,246,88,160,55,64,113,63,176,230,133,3,233,216,75,19,68,234,159,181,73,113,237,118,141,198,11,100,64,230,95,149,57,183,92,15,80,120,38,163,70,201,58,84,147,184,220,231,168,230,250,210,88,165,202,119,119,73,112,118,30,209,56,123,84,71,172,86,135,205,140,54,187,13,73,63,13,231,249,114,207,149,138,142,3,244,233,20,51,212,99,243,245,189,251,210,27,51,220,2,111,51,204,185,188,181,39,191,173,17,45,29,193,79,113,21,255,7,88,90,84,64,108,156,89,20,106,187,168,225,137,31,81,74,234,195,31,199,114,61,249,143,188,166,209,149,93,217,31,152,110,128,83,207,112,203,58,76,184,1,12,214,142,231,14,191,180,142,239,245,197,40,53,145,29,120,236,23,111,87,39,6,98,19,240,184,106,100,159,111,32,214,70,123
 ,13,191,69,127,119,99,246,198,96,248,224,123,236,232,57,99,208,73,146,57,156,212,168,4,165,32,5,59,242,176,14,122,203,83,253,174,230,62,218,191,21,176,50,96,8,123,129,32,63,228,245,187,105,247,123,247,115,92,213,43,191,205,69,227,237,190,0,57,36,23,155,180,112,204,214,39,172,251,31,111,51,54,130,134,58,100,228,72,94,180,7,175,201,82,58,45,208,254,220,75,39,69,224,20,127,28,10,242,184,227,60,49,155,97,175,128,233,172,128,13,8,10,86,252,80,76,153,194,140,241,91,53,16,106,211,44,22,172,197,28,149,11,4,120,8,163,90,29,17,53,225,104,254,67,90,237,11,253,65,159,90,78,13,46,221,128,158,83,62,132,31,115,11,87,153,41,34,157,230,150,37,244,152,136,183,28,241,127,23,119,67,69,115,25,204,70,189,219,89,108,118,238,81,15,194,180,126,139,45,92,246,116,255,222,21,153,181,149,157,37,146,76,61,234,247,44,181,114,51,48,164,98,87,193,152,137,165,202,205,141,245,170,56,175,221,53,223,206,32,220,212,39,248,156,93,94,148,92,124,50,136,169,105,43,100,119,215,40,138,86,29,216,9,68,27,32,201,131,90,2
 32,164,72,231,63,165,175,246,181,66,211,234,219,113,198,17,2,63,62,209,16,252,0,85,61,131,146,253,60,151,31,178,78,224,114,210,188,56,88,86,188,111,189,134,97,114,147,25,91,206,231,145,129,167,201,115,53,182,115,55,31,1,67,81,138,58,203,162,187,163,79,88,90,45,65,205,91,248,130,212,30,190,106,86,55,75,111,29,241,12,173,103,228,109,82,9,16,13,25,121,219,236,226,70,127,64,168,218,203,79,192,97,170,231,224,125,135,40,223,38,78,211,136,39,254,154,121,25,146,93,154,30,151,115,150,209,218,131,237,92,101,117,196,253,201,17,20,64,35,251,109,107,211,58,223,149,9,78,67,108,197,136,247,188,37,113,133,202,92,202,130,160,206,168,63,134,82,164,79,89,62,16,183,137,128,226,204,254,1,37,7,38,13,51,145,4,162,254,43,62,216,214,120,37,20,79,138,141,222,210,122,192,55,77,133,233,236,45,94,85,31,161,217,2,17,18,174,142,96,84,49,123,126,37,189,249,62,232,17,161,54,156,164,93,21,124,125,169,118,125,150,151,121,246,106,9,145,34,127,246,237,239,247,139,254,103,52,204,84,136,209,108,7,205,246,118,65,1
 7,53,188,185,26,237,65,143,20,78,242,192,65,81,248,238,20,28,217,245,221,85,168,104,72,111,197,212,237,12,37,236,246,99,186,8,114,30,32,117,80,26,236,72,232,110,111,125,201,36,227,173,104,41,254,215,33,245,20,125,20,27,82,80,137,61,157,189,188,85,87,160,43,155,35,232,78,102,204,45,208,147,171,170,221,160,223,145,167,106,20,142,247,180,133,143,152,54,130,90,27,102,253,37,127,146,255,137,248,36,234,144,125,46,171,84,169,167,131,240,110,61,5,197,160,47,10,167,119,137,78,26,77,41,172,236,162,155,38,54,167,121,126,73,46,165,180,230,87,128,223,159,44,11,144,224,139,248,193,241,105,46,69,3,86,234,103,208,226,240,60,109,30,213,56,226,218,170,58,153,202,218,197,160,149,241,243,160,88,176,58,195,154,230,240,144,36,243,145,174,227,179,153,120,109,50,103,30,4,109,242,79,148,212,66,252,212,134,157,232,75,237,189,151,113,109,94,206,99,162,225,97,151,135,143,190,76,194,49,92,226,224,237,249,132,93,51,235,182,179,232,65,121,201,169,67,183,218,25,85,156,157,124,42,160,243,56,230,150,85,242,1
 91,19,140,73,137,233,40,181,216,108,20,160,2,101,209,167,194,108,245,143,74,70,177,199,106,180,253,142,172,73,255,193,120,119,27,214,165,216,188,172,136,57,142,126,114,165,177,44,24,78,148,172,19,252,219,60,127,174,200,191,7,154,120,174,151,30,44,3,151,180,11,161,140,72,67,57,103,101,2,169,90,240,72,28,127,89,25,1,233,28,19,137,12,195,201,118,113,252,23,2,212,190,200,55,201,13,231,142,212,64,36,153,198,121,245,229,226,182,164,128,33,106,82,246,70,232,152,135,204,248,244,122,33,121,179,98,101,70,199,18,242,110,198,241,255,149,210,16,7,195,62,48,3,173,154,138,246,2,186,91,176,143,32,149,168,135,12,187,103,190,172,240,112,21,28,230,28,187,147,182,33,214,141,131,154,82,232,8,0,52,230,75,194,186,126,149,36,103,142,211,38,80,93,4,246,212,181,120,253,189,50,249,187,114,132,89,108,175,146,70,218,230,180,135,63,114,27,201,104,168,125,69,212,155,8,233,248,241,165,187,56,111,0,116,83,97,222,228,181,131,98,40,32,14,196,173,66,2,32,195,195,199,82,150,89,251,24,212,190,23,111,229,96,115,1
 30,166,123,203,57,235,169,103,177,164,67,199,240,106,125,54,63,250,237,156,37,163,18,123,195,217,250,108,129,47,117,93,93,214,154,250,193,157,157,196,139,216,131,178,248,41,245,196,121,83,213,25,161,80,68,112,94,181,162,206,129,73,158,28,252,234,212,7,49,123,225,177,168,159,131,112,175,4,157,229,175,228,218,120,108,163,211,102,222,206,64,135,204,34,124,6,115,190,62,107,74,83,191,41,166,211,202,4,230,251,102,179,13,147,244,207,148,21,240,0,73,31,98,190,230,168,116,49,19,72,80,144,51,145,91,21,50,89,157,44,40,240,49,187,180,67,213,70,173,152,113,83,224,214,203,129,90,31,52,196,70,147,187,13,40,37,232,134,101,233,106,237,127,199,253,49,245,114,70,110,174,248,55,139,188,229,33,95,156,132,224,38,153,155,147,6,235,121,2,114,24,32,157,144,191,25,231,151,74,21,49,62,47,168,187,171,175,34,220,73,37,111,255,148,64,1,74,31,48,157,13,90,3,19,225,201,108,221,48,29,3,229,12,136,72,148,47,49,0,170,116,157,175,238,60,231,69,229,101,105,164,89,237,217,192,134,134,134,235,118,214,233,129,25,2
 48,174,231,240,212,45,37,95,73,151,39,25,235,197,234,122,231,167,8,71,100,31,84,174,9,132,168,159,104,38,92,111,52,225,198,181,218,71,176,86,218,229,175,89,227,90,73,25,185,83,200,36,223,114,86,20,160,42,0,211,197,240,217,241,184,28,56,84,152,22,91,216,193,223,216,99,176,98,54,251,250,214,144,163,85,19,185,94,207,98,41,140,143,59,84,45,241,174,141,214,43,185,138,156,197,12,114,171,113,149,90,223,233,158,94,143,111,148,24,55,101,93,15,86,230,52,143,94,71,112,157,40,191,197,135,73,83,229,203,122,129,73,204,94,142,115,137,214,232,250,213,119,145,136,184,77,253,29,179,196,113,67,26,237,83,211,80,197,156,98,172,136,174,252,90,183,180,134,97,77,5,81,48,15,141,66,17,172,202,91,254,127,42,184,3,85,23,246,80,157,211,150,91,120,198,234,222,134,124,194,248,70,28,98,234,34,139,180,239,12,175,165,185,151,163,126,130,236,23,151,89,191,223,114,233,150,138,70,251,71,6,222,33,206,109,9,87,170,108,137,102,3,226,45,5,215,102,52,75,44,221,151,92,40,179,36,142,38,43,109,196,19,31,72,164,150,208,
 186,75,27,8,163,192,79,95,63,41,223,202,121,170,90,97,28,175,101,135,20,119,119,120,217,208,168,162,163,158,10,192,4,223,247,157,30,247,133,165,83,240,50,156,52,37,12,160,207,81,111,34,25,102,206,235,230,84,136,165,164,186,174,107,118,76,35,82,81,123,150,219,214,181,180,216,71,173,10,246,145,29,69,168,182,60,145,69,225,119,105,82,199,175,169,80,108,216,154,207,83,88,52,54,29,136,222,145,84,132,219,243,159,78,247,134,48,161,37,254,236,246,93,54,198,54,82,42,113,133,181,205,197,66,49,27,140,219,253,236,54,123,66,120,193,181,94,18,136,23,248,249,176,28,156,92,195,73,204,163,173,95,96,50,247,187,239,92,189,69,175,42,130,202,155,53,223,135,98,250,28,214,110,244,119,79,197,229,49,109,5,56,227,104,252,167,136,20,102,138,190,112,22,48,77,239,99,118,103,251,189,101,119,75,94,168,232,9,69,125,50,69,251,237,120,160,253,107,46,82,34,24,165,130,42,166,43,122,237,154,221,107,53,127,144,195,214,45,14,80,49,204,62,182,198,81,243,73,95,165,161,66,177,167,192,126,252,244,157,60,173,82,92,130,
 87,16,30,246,205,91,96,78,202,213,176,31,10,56,60,68,11,153,238,130,201,54,124,235,9,30,50,65,180,32,172,115,223,181,137,50,99,11,140,169,126,169,254,222,100,206,160,200,237,86,128,228,151,90,0,48,226,183,195,245,184,115,235,130,44,181,36,154,132,203,52,52,95,25,8,153,208,167,144,97,47,49,68,232,114,113,21,100,71,82,41,251,137,148,138,60,84,41,206,155,188,250,36,215,220,186,5,81,91,74,54,194,53,88,249,37,96,145,178,180,130,127,215,13,95,102,196,251,140,171,159,19,255,158,190,144,162,21,125,85,2,68,27,95,149,0,98,236,120,109,56,238,87,249,180,99,26,194,130,19,186,135,170,195,247,62,94,52,242,166,12,226,204,88,157,232,140,177,94,136,55,214,87,48,164,173,229,124,109,203,126,55,140,140,132,87,33,193,157,123,51,8,207,2,109,250,239,194,45,230,39,216,231,241,27,158,53,120,12,225,237,140,13,227,72,215,23,205,58,100,46,240,66,89,121,183,26,20,230,141,185,165,243,12,126,42,224,243,123,236,126,178,37,119,52,248,61,69,240,49,199,13,236,255,31,48,202,164,213,21,187,45,198,109,245,185,18,
 169,84,112,34,5,94,141,32,167,184,19,248,38,182,231,229,92,86,145,223,244,135,150,241,159,139,156,134,24,61,62,35,158,153,204,220,143,66,78,74,199,59,214,221,189,16,98,164,95,233,88,88,200,235,144,160,251,81,223,173,73,117,93,90,94,32,178,4,0,236,223,113,152,253,156,248,214,122,91,95,67,171,51,199,117,255,69,159,147,175,143,161,31,134,237,96,10,143,131,116,168,178,223,211,179,219,21,150,181,2,75,115,100,17,251,140,142,44,26,156,216,112,82,91,48,245,218,63,120,66,6,88,43,50,250,25,70,52,75,58,110,163,235,116,43,217,230,89,155,134,183,148,252,46,98,62,203,251,242,215,252,201,179,15,167,124,179,208,84,30,68,179,209,3,23,7,133,153,162,13,209,239,113,231,246,41,199,156,133,198,246,64,255,116,67,84,52,166,247,99,51,169,198,85,226,210,104,80,65,159,127,191,174,38,113,36,129,66,118,169,160,232,139,125,191,184,95,104,165,34,22,236,179,123,19,138,224,163,182,214,94,106,10,225,153,27,118,6,64,71,54,94,168,220,183,39,60,11,98,149,139,0,34,61,126,30,181,106,16,140,20,190,123,142,216,98,1
 82,248,59,56,61,18,16,25,124,125,156,183,254,80,4,238,24,38,28,56,222,52,91,6,252,203,23,6,238,60,26,195,29,61,34,211,194,105,144,233,122,110,11,252,139,61,115,74,21,191,79,30,144,224,172,227,94,72,114,12,105,112,23,221,226,169,109,92,236,102,145,122,174,245,91,56,126,70,212,186,212,79,210,235,164,195,175,185,49,75,187,194,105,169,113,230,154,148,58,99,185,3,193,99,52,34,39,77,181,59,238,42,12,218,208,242,202,45,229,154,160,60,205,30,69,59,217,198,251,142,196,150,169,35,20,161,56,207,118,111,156,155,72,55,13,128,241,245,122,59,74,136,89,238,222,109,89,39,211,112,68,226,182,233,131,31,13,255,19,43,166,121,127,207,71,147,240,197,130,232,130,46,92,188,152,246,212,93,89,192,4,194,60,187,125,139,207,195,63,37,209,76,157,244,29,20,204,36,40,240,150,95,61,31,55,6,52,135,57,173,7,50,4,153,69,197,35,203,144,166,222,212,154,193,252,206,120,160,192,87,22,187,17,82,116,70,45,130,88,196,39,72,143,178,106,61,195,20,140,111,26,183,152,227,236,107,157,179,130,146,199,157,132,174,103,154,208
 ,132,218,24,49,234,17,235,49,216,86,243,62,22,132,26,244,240,195,84,182,101,138,153,161,9,165,179,51,95,99,50,158,112,79,58,55,149,74,51,119,14,110,173,249,9,159,164,102,150,109,71,32,27,13,7,48,186,162,190,243,152,160,72,160,12,249,115,217,253,129,214,130,128,153,155,29,67,26,44,101,202,169,140,106,199,244,13,20,79,76,114,24,164,212,105,229,136,56,141,70,49,136,112,87,189,189,33,75,166,182,204,103,237,33,215,6,26,58,26,103,229,2,140,11,48,227,169,95,220,247,183,30,87,227,131,71,19,68,82,127,30,216,132,128,122,55,49,32,93,23,222,185,55,196,163,74,217,131,184,195,47,68,174,125,85,7,90,39,199,246,140,86,77,121,171,23,32,101,219,244,226,187,0,241,224,238,236,220,149,175,3,79,121,173,127,232,191,36,250,130,190,168,123,185,190,182,85,92,149,43,151,187,140,227,51,83,27,120,230,254,171,212,121,30,14,55,116,59,207,121,196,87,127,241,232,230,15,126,1,218,65,216,206,13,156,143,32,234,200,143,15,6,166,113,68,195,125,168,159,86,72,245,104,208,247,48,96,198,152,183,172,95,237,123,10,241,
 58,253,226,230,31,135,100,142,188,224,34,233,112,56,168,89,77,206,216,120,136,216,99,65,153,67,210,96,214,240,46,140,4,124,145,236,125,58,168,93,60,245,190,167,194,213,241,80,170,200,166,5,52,63,244,21,57,162,22,6,79,114,176,178,62,100,243,51,222,180,203,117,197,103,56,49,210,185,14,145,188,189,105,55,190,231,224,120,25,121,24,37,173,62,198,64,170,246,69,143,246,206,106,243,205,122,149,180,198,22,246,153,75,249,139,148,22,91,131,190,98,232,215,180,85,63,236,238,115,82,108,99,60,234,88,101,42,232,195,61,30,6,20,87,165,188,165,34,199,228,133,125,36,240,109,113,221,19,18,193,203,203,14,49,180,10,240,85,69,191,51,131,94,53,100,101,43,41,179,19,30,196,156,255,148,112,98,106,69,107,202,147,63,176,127,12,87,243,88,188,148,254,98,252,229,184,216,138,199,34,88,118,139,59,61,247,129,147,198,125,230,54,43,46,138,209,79,133,12,54,45,199,213,220,217,74,52,220,128,97,97,32,184,119,109,187,122,71,101,31,222,197,157,49,18,21,39,177,9,76,220,107,144,169,107,18,193,185,109,13,219,207,135,89,1
 19,108,82,13,211,71,167,102,136,124,67,122,142,163,103,73,92,164,76,2,32,228,52,55,30,51,21,32,152,130,114,190,194,232,186,191,120,179,198,119,64,223,9,218,63,89,187,0,187,140,151,78,148,91,253,3,218,61,128,167,9,21,156,96,155,227,142,56,127,207,86,135,232,156,68,141,91,56,210,61,80,29,148,12,124,180,145,187,132,139,15,180,146,26,6,147,163,255,145,187,158,71,182,212,128,155,85,56,78,194,170,51,54,235,232,227,250,154,83,215,89,151,178,141,75,250,215,203,142,80,34,252,70,1,77,41,88,244,243,50,180,102,1,165,217,189,9,206,194,55,121,137,56,127,137,44,68,133,201,52,206,125,162,158,188,4,91,176,107,73,143,178,116,178,190,160,133,185,116,96,16,25,95,44,197,145,76,194,142,160,117,150,209,236,7,84,87,26,43,35,170,157,248,120,99,72,50,225,130,124,202,167,179,11,185,192,47,219,102,167,65,179,129,88,187,141,73,125,212,128,117,20,187,239,250,42,174,188,3,151,168,145,145,26,106,53,115,173,186,250,4,161,170,255,0,115,34,65,86,243,189,204,27,18,121,235,115,17,90,79,178,38,224,49,125,157,98,
 168,149,138,88,167,108,82,43,227,187,18,133,74,57,210,209,151,27,222,50,139,252,21,188,236,100,74,29,133,224,227,45,98,74,141,240,99,153,36,231,165,101,93,131,202,70,180,209,175,67,132,222,15,169,14,252,222,72,230,170,30,119,153,26,30,189,142,130,12,227,194,78,7,182,26,93,20,4,202,124,201,0,119,232,219,45,88,31,85,10,168,26,215,138,45,192,20,92,14,210,240,159,230,68,145,26,210,97,182,68,224,117,163,210,90,79,84,158,186,7,1,159,201,2,130,230,29,224,211,216,141,54,71,223,102,51,32,66,75,205,240,213,20,6,128,61,210,159,243,6,138,4,82,143,11,151,177,48,16,31,106,155,194,44,38,27,139,130,145,74,20,207,141,103,0,201,159,197,237,30,139,106,223,6,163,19,35,155,141,31,169,187,68,60,191,4,240,157,16,233,54,252,227,190,76,173,53,203,131,118,15,254,246,45,91,180,8,218,177,217,92,185,59,220,26,5,232,104,43,23,59,145,23,68,104,152,133,190,115,93,143,112,241,111,52,53,209,42,249,216,18,227,22,174,86,119,179,144,240,140,68,51,163,100,125,186,81,109,208,18,100,241,136,226,94,234,30,171,14,55
 ,185,141,166,16,45,6,174,40,171,218,216,99,116,27,92,117,220,196,96,240,201,112,211,85,66,116,214,109,1,198,45,210,173,147,83,160,184,116,142,166,162,82,155,151,224,170,87,27,200,95,74,23,155,234,246,103,188,122,19,126,213,180,47,105,58,208,2,16,1,158,76,243,230,220,208,13,179,137,180,115,186,207,205,200,162,56,13,184,252,24,136,124,96,122,196,61,5,100,43,55,210,245,55,0,255,128,193,229,6,173,122,186,130,179,8,246,43,249,57,31,228,244,135,105,142,242,28,80,30,91,98,155,15,215,55,50,241,88,31,157,234,71,115,209,183,143,203,248,87,36,23,101,48,9,59,81,195,179,10,120,208,29,102,7,66,213,201,127,50,222,124,64,21,185,153,64,26,234,101,60,124,247,92,54,74,146,207,52,108,73,207,103,221,160,51,234,184,227,68,213,197,160,83,119,210,69,88,201,206,45,124,181,166,148,240,152,135,80,177,167,31,81,19,152,253,89,123,13,38,67,59,97,243,36,68,75,143,244,20,118,160,59,145,67,136,123,231,245,48,112,15,101,138,253,157,8,232,21,122,89,115,32,169,209,31,13,63,68,117,124,127,32,126,91,182,85,75,35
 ,42,165,106,29,186,11,233,16,35,155,12,70,197,241,234,157,137,219,120,68,43,119,249,98,26,133,217,38,127,189,28,33,235,65,224,96,104,116,82,214,63,18,118,71,131,114,110,27,40,170,148,99,248,219,81,3,240,109,254,201,198,45,153,5,38,255,214,122,210,29,184,97,51,108,23,142,21,139,63,5,56,8,163,182,212,149,117,146,80,179,153,237,92,85,162,50,13,2,88,179,104,103,106,244,198,93,239,62,141,161,127,96,165,34,16,207,194,223,17,84,190,33,142,108,240,223,113,247,115,222,73,5,145,103,233,146,87,14,21,126,98,14,31,86,49,223,45,27,137,107,123,242,94,89,244,19,147,148,225,111,44,21,14,118,229,3,206,147,146,250,189,153,26,238,243,162,71,140,92,8,27,215,238,69,244,254,168,240,74,216,70,61,15,89,64,32,153,38,51,149,159,117,40,62,112,15,13,244,139,45,252,124,30,91,135,155,201,194,116,108,114,35,240,80,168,176,46,137,195,209,243,129,181,79,180,89,86,40,62,201,60,6,61,231,202,198,231,60,141,206,17,208,175,160,23,37,151,3,207,251,125,92,204,98,20,41,165,103,254,156,213,71,204,133,0,11,117,69,116,
 109,95,217,120,237,71,248,15,9,23,135,28,102,128,82,27,11,82,89,29,143,254,244,149,185,53,185,254,136,46,158,119,77,31,156,230,129,14,26,207,143,137,186,134,119,42,109,239,142,184,250,170,253,133,185,198,187,75,156,45,167,114,87,13,186,83,47,218,210,239,219,11,222,191,130,103,2,10,178,97,52,135,141,96,15,244,175,233,118,181,230,165,170,142,10,12,194,24,94,228,57,234,171,73,165,15,153,230,166,154,182,157,70,169,192,242,103,201,211,113,131,194,224,72,98,54,223,180,141,183,34,154,105,3,69,155,68,200,40,54,91,209,118,119,223,94,129,112,5,41,28,167,83,210,138,224,20,99,104,182,37,76,144,149,210,69,39,154,8,25,12,204,10,212,21,152,78,17,140,210,90,101,80,38,200,178,2,125,171,165,31,164,202,193,223,77,194,254,173,161,57,26,210,89,24,72,184,208,235,150,137,90,39,46,21,166,135,75,134,226,35,224,187,77,239,100,129,220,11,188,3,245,154,190,132,230,243,212,225,216,241,31,32,226,180,204,255,218,66,191,74,33,208,181,8,136,190,116,249,69,6,30,118,118,231,111,213,13,1,195,187,88,36,240,121,
 222,173,168,177,56,131,100,31,70,226,54,229,161,133,121,238,59,165,177,70,134,127,164,165,38,204,233,181,167,138,79,228,82,152,192,218,20,145,129,250,153,20,82,101,56,224,99,168,156,123,111,153,151,149,69,253,224,170,31,159,125,67,30,169,253,247,98,98,51,80,140,73,206,19,222,208,118,54,209,204,99,159,157,62,158,221,226,201,2,50,237,104,20,219,245,77,200,9,78,106,159,33,188,17,163,30,7,116,134,56,241,65,178,75,90,180,187,163,205,59,224,191,164,172,251,44,22,133,102,128,162,164,58,162,69,243,160,166,246,57,216,64,82,44,220,233,78,69,172,54,109,164,29,65,81,67,163,186,82,244,109,59,29,35,142,49,55,124,222,56,234,205,243,253,147,247,225,45,107,73,68,218,113,92,199,57,83,71,153,0,212,58,155,141,79,57,194,17,132,107,6,158,114,10,229,222,207,136,126,138,138,62,14,194,24,21,67,86,184,196,244,210,94,107,0,123,101,179,147,245,82,185,212,102,78,240,113,38,174,49,115,168,139,185,221,246,186,243,37,141,229,107,176,203,159,242,140,204,159,92,85,140,18,9,114,144,29,90,214,137,210,62,59,116
 ,81,134,143,23,184,102,46,2,138,140,46,5,103,48,41,192,38,174,43,73,96,202,32,240,117,154,90,85,124,158,42,161,162,202,92,100,167,23,200,4,184,250,189,183,81,174,200,20,18,157,213,33,228,72,242,39,25,209,234,253,181,59,250,21,65,166,207,250,12,57,121,94,176,220,192,149,107,4,175,78,251,162,215,239,21,230,25,189,84,51,129,91,90,150,103,135,189,100,189,15,161,157,32,170,102,153,145,242,137,253,186,230,101,206,234,229,57,19,25,106,109,186,107,74,25,252,6,73,233,0,77,136,92,22,183,233,143,78,229,52,19,222,140,188,1,152,206,200,56,199,241,225,57,208,223,179,127,92,175,236,20,66,51,33,171,236,143,89,0,39,85,20,52,71,89,24,106,89,108,190,176,200,80,41,232,181,96,44,58,193,243,85,39,195,28,229,82,29,61,97,92,228,201,114,65,103,15,187,38,154,25,119,175,35,200,81,244,184,58,109,128,252,159,216,186,2,171,105,60,233,54,96,77,27,144,80,51,141,17,254,214,230,211,237,250,105,59,120,191,129,171,58,224,196,8,164,37,240,94,0,41,83,241,136,159,1,79,53,173,252,246,245,15,119,12,87,60,168,166,18
 4,90,37,210,48,197,40,158,87,91,234,4,253,139,143,9,159,218,107,91,221,99,146,26,34,210,21,124,105,202,105,125,212,135,184,51,207,97,95,225,17,7,105,53,141,154,136,95,122,33,227,157,157,127,107,39,1,164,142,39,235,23,144,18,33,103,7,255,185,239,254,218,17,1,53,39,179,71,52,99,247,51,159,179,142,175,96,62,206,241,183,185,224,234,23,207,190,102,236,164,132,10,125,6,32,150,50,42,111,49,81,12,196,126,10,9,129,71,102,78,209,235,114,137,112,131,53,129,204,55,142,194,121,94,177,225,98,33,195,50,186,16,112,126,134,185,92,165,63,91,83,163,196,192,113,68,69,126,57,10,185,157,254,242,44,115,113,164,59,84,33,73,205,158,246,192,141,224,117,216,2,200,231,195,142,127,247,182,6,178,40,6,73,102,241,123,32,19,105,169,61,239,136,219,186,4,254,17,195,220,49,184,89,163,96,10,143,231,152,58,9,116,1,159,195,224,129,130,58,178,132,76,5,241,224,38,64,186,15,177,128,43,57,61,172,208,247,123,132,127,103,172,147,38,179,197,203,114,242,194,18,18,118,49,236,24,87,54,165,104,146,109,188,170,23,66,130,119,
 130,7,37,87,171,68,226,6,227,1,147,32,131,234,25,15,58,193,155,80,247,206,148,193,213,111,86,34,147,163,54,204,116,159,171,99,24,129,20,104,179,153,125,65,14,169,250,63,198,50,70,165,103,246,242,222,43,38,121,182,119,80,218,87,253,210,180,143,8,17,92,22,239,147,228,141,88,219,214,209,18,191,64,235,90,83,246,77,130,12,192,117,96,122,170,7,199,30,202,9,237,46,164,117,33,90,77,60,198,213,45,220,137,165,34,241,140,0,245,91,3,234,40,178,128,34,64,53,12,113,236,154,220,47,121,248,122,27,11,43,4,124,29,160,199,2,156,79,56,220,244,252,81,216,0,168,86,41,168,180,108,235,106,50,115,205,162,9,97,171,19,71,204,243,95,39,27,19,38,203,19,20,105,18,31,16,233,162,184,161,98,68,189,215,205,150,160,220,47,244,110,158,240,97,144,83,63,17,169,134,71,212,181,87,182,32,156,220,78,242,62,184,201,239,44,98,194,186,25,221,49,14,190,10,246,87,177,74,213,10,179,227,187,190,208,1,247,247,251,58,116,248,164,22,23,22,121,37,43,193,124,44,185,249,67,31,99,102,196,6,21,36,244,228,244,226,215,61,89,137,20,5
 2,12,86,138,239,165,7,122,80,191,123,172,160,9,228,100,125,21,207,174,19,110,44,111,228,160,58,41,70,245,49,219,252,95,79,177,38,50,31,1,56,140,220,233,148,111,121,37,1,238,206,107,138,72,235,167,132,250,211,231,190,66,0,83,30,129,96,118,6,2,181,240,48,130,82,115,68,159,60,81,165,237,194,60,252,145,82,48,106,254,114,134,26,152,20,161,175,145,74,236,231,72,197,45,216,160,169,102,71,97,96,147,146,223,103,149,220,10,201,137,221,212,233,214,99,37,202,133,135,103,236,233,182,181,64,172,61,165,215,26,187,154,154,125,201,240,182,55,205,49,202,230,138,14,42,199,138,54,78,23,73,144,152,32,196,252,87,65,98,219,55,218,216,16,172,22,117,148,226,152,107,20,24,213,175,100,220,92,43,243,167,3,159,246,102,211,231,135,192,21,239,6,106,118,122,20,194,53,249,22,133,146,163,13,7,59,240,141,147,183,169,153,87,75,166,232,214,208,137,239,17,138,13,77,149,145,78,240,123,44,91,203,36,126,193,80,184,175,109,154,70,202,122,32,116,204,39,190,56,164,205,223,164,206,78,194,157,198,239,33,17,10,71,59,59,8
 ,109,254,126,225,220,35,12,239,228,218,85,4,2,17,55,195,36,33,38,222,69,25,35,241,240,237,203,22,111,7,224,90,102,13,181,8,73,193,200,129,231,72,91,216,78,4,98,243,73,142,23,28,130,179,85,168,179,74,229,175,159,172,100,113,89,0,147,0,0,154,189,141,214,6,73,93,238,121,156,19,180,201,251,52,106,22,115,252,174,95,61,198,152,52,158,177,50,84,36,108,212,251,193,114,222,60,1,130,181,210,195,252,89,199,13,9,0,221,224,215,231,5,82,232,50,59,170,32,205,165,132,116,142,12,16,91,202,23,162,173,243,190,196,82,102,33,200,12,225,212,255,18,86,142,179,230,251,114,185,135,239,142,167,202,78,173,215,134,198,22,212,69,15,246,145,67,238,10,217,176,223,56,34,15,195,239,53,91,107,189,249,124,170,116,93,32,59,52,100,192,233,156,194,7,160,25,160,53,36,113,40,240,112,92,120,160,47,9,154,105,205,88,149,198,217,152,32,214,161,231,121,137,227,206,83,191,57,30,31,171,100,193,213,139,35,70,37,134,20,128,205,25,103,80,70,37,51,15,150,48,44,223,161,233,43,244,68,156,186,58,154,1,138,166,144,223,208,83,211
 ,214,142,212,68,181,205,53,7,73,172,112,224,3,74,195,46,120,22,70,48,39,16,47,46,243,5,119,168,194,9,220,227,51,130,30,147,143,125,42,123,93,49,75,120,191,170,151,206,59,118,142,249,250,132,25,243,125,66,229,199,81,48,84,228,245,8,189,62,232,183,210,176,248,103,16,114,138,52,71,10,126,121,115,60,5,7,181,65,122,142,106,191,62,92,202,172,161,174,66,93,241,252,229,151,165,181,118,98,146,31,186,198,13,67,241,186,138,67,142,239,161,208,182,0,205,124,129,211,217,85,145,43,4,58,78,23,189,128,232,32,63,43,234,27,94,119,199,162,117,162,171,169,254,84,40,198,96,167,211,202,123,158,84,89,120,88,109,116,123,131,84,66,218,25,221,54,94,175,68,215,185,221,232,86,214,251,19,44,196,179,138,232,193,247,242,185,58,171,6,60,224,226,123,223,204,120,96,173,16,206,108,103,135,142,233,137,11,85,153,94,135,237,79,2,47,116,199,76,103,34,187,143,31,177,48,108,137,179,73,145,70,36,87,41,139,242,231,253,125,209,178,235,104,50,183,218,239,156,66,170,109,9,196,163,125,246,111,151,32,66,133,5,243,159,227,6
 7,111,110,186,47,207,212,174,48,37,193,27,138,95,215,24,35,144,167,71,18,128,134,77,204,178,169,94,166,1,55,92,3,63,202,167,151,140,70,32,128,125,117,138,70,178,237,42,50,146,90,32,149,214,133,82,97,90,144,15,85,7,251,29,32,89,205,49,61,206,181,60,127,202,223,97,124,206,106,248,5,114,127,151,189,6,164,178,150,230,43,129,119,211,67,156,193,91,112,254,170,124,28,205,147,227,205,53,19,242,6,100,46,67,190,221,52,201,1,210,12,39,215,101,225,208,233,232,189,143,47,88,50,11,42,193,0,146,143,34,177,181,132,31,103,193,121,82,224,36,27,139,234,76,53,232,159,15,195,62,200,255,158,173,178,75,17,238,43,167,133,20,128,26,22,126,25,31,233,234,206,207,59,175,103,228,196,182,150,41,167,159,61,204,230,30,164,102,89,190,144,48,194,98,60,111,182,243,108,56,26,149,229,246,79,24,7,169,91,35,72,31,104,255,227,139,70,67,224,235,48,197,53,178,165,181,171,221,46,237,64,66,118,231,1,165,185,70,145,25,74,160,57,239,242,93,16,188,71,243,81,61,255,71,192,12,168,0,64,199,176,218,30,201,203,74,69,90,113,14
 7,45,86,241,245,188,223,139,101,242,109,167,235,201,0,91,181,22,109,154,70,172,249,107,164,97,216,3,233,125,226,167,239,231,129,119,116,31,129,150,72,197,31,11,60,196,58,47,54,23,61,156,58,98,134,138,81,228,37,233,49,3,178,19,83,188,171,185,43,53,124,105,10,126,162,103,206,218,187,154,16,226,19,147,192,178,0,115,175,114,137,232,174,80,93,169,103,83,239,97,119,228,138,244,17,252,190,95,133,62,210,47,134,207,41,50,169,194,73,230,158,25,116,23,171,104,128,195,176,13,251,166,238,56,68,27,90,101,63,180,236,195,167,43,94,202,48,125,85,2,145,126,222,53,109,204,180,47,227,95,198,72,214,38,96,167,174,237,67,176,202,41,27,212,14,165,249,25,109,200,58,86,228,191,204,179,171,229,5,152,25,132,253,17,41,113,95,161,124,142,180,86,170,241,95,13,72,39,22,133,103,27,216,186,242,197,1,7,56,110,209,21,5,237,76,32,76,203,8,34,250,142,108,79,70,9,5,41,133,57,11,130,253,115,133,68,128,234,118,15,158,232,193,181,160,159,104,134,249,154,98,163,118,1,118,46,12,139,141,196,119,217,162,16,147,38,147,24
 0,186,13,110,71,167,216,226,219,240,122,38,250,104,74,10,79,213,106,100,55,89,120,240,18,225,169,62,169,200,94,235,103,131,160,253,64,101,237,153,126,117,169,122,125,117,144,54,107,140,78,232,170,84,161,150,121,97,19,25,201,238,173,255,14,146,164,113,96,170,243,151,23,43,130,47,193,107,45,153,146,24,6,241,106,157,24,32,248,122,146,92,146,52,156,28,242,39,230,213,194,111,69,164,124,230,177,148,58,75,34,231,110,86,123,109,236,158,110,68,62,198,47,97,186,143,39,169,214,10,112,135,97,201,20,222,187,160,197,130,178,106,71,224,212,147,227,170,102,189,119,36,189,132,241,82,60,230,66,193,38,32,33,43,223,148,167,81,183,204,81,196,191,187,177,174,187,101,22,187,228,206,200,26,236,26,196,185,178,207,237,42,135,112,254,178,153,61,15,176,203,92,73,145,197,173,154,228,166,214,148,105,135,207,134,67,38,174,216,149,6,78,151,242,11,190,167,230,160,55,89,93,91,36,99,37,219,255,72,63,207,118,123,255,26,184,147,224,200,70,217,113,148,140,244,167,41,151,200,38,11,226,229,61,68,134,152,129,48,112
 ,99,233,206,192,6,203,209,147,72,153,98,105,84,204,96,46,50,62,40,253,32,173,45,232,221,210,172,184,200,9,157,39,25,111,110,84,213,165,119,16,25,104,80,227,253,35,120,180,200,4,20,32,156,133,26,173,36,91,78,102,53,108,247,44,243,249,243,145,166,9,240,91,14,142,226,127,121,31,77,3,169,205,160,235,26,164,106,24,119,151,157,18,159,6,38,203,95,234,1,201,182,238,154,29,128,135,134,70,13,196,24,64,51,23,96,116,197,51,245,158,235,56,168,238,94,182,192,26,156,52,124,14,211,69,62,216,136,209,7,150,148,197,22,188,13,134,69,84,19,141,212,76,111,14,156,244,131,253,254,6,236,247,216,135,112,186,127,19,243,96,218,158,157,23,133,196,16,48,92,6,129,100,184,130,58,24,86,133,40,36,80,9,236,126,227,64,27,216,125,170,151,188,205,15,131,217,136,58,11,166,210,112,102,204,239,121,31,75,132,58,49,90,248,154,138,189,57,147,84,224,193,35,7,204,189,61,9,88,177,36,19,33,186,97,109,85,206,146,136,214,5,182,188,254,160,4,184,249,0,172,33,207,118,113,54,195,16,148,160,222,141,200,225,30,83,149,172,125,142
 ,239,105,25,64,248,87,234,82,23,5,201,2,143,251,238,78,255,134,194,232,205,230,232,15,56,162,162,90,104,34,109,167,242,193,196,180,36,226,208,13,218,24,58,194,31,10,191,142,191,235,51,66,203,95,25,107,6,218,29,99,19,105,244,169,201,239,153,30,30,164,193,47,31,246,91,188,178,237,111,175,169,88,245,235,240,73,5,92,204,235,75,157,121,206,253,138,124,123,72,11,248,37,99,65,244,105,149,228,247,210,13,46,97,37,44,243,150,178,141,80,212,33,223,127,89,69,142,237,216,66,223,93,247,10,186,108,41,3,70,41,38,88,85,228,102,218,190,233,162,134,165,152,85,141,68,64,1,38,225,164,204,89,6,99,87,91,20,37,52,169,152,17,143,3,201,197,158,102,11,251,208,139,15,29,202,245,67,247,80,248,45,90,32,194,38,195,225,33,63,87,255,166,222,66,195,235,198,245,57,154,12,162,61,132,19,84,22,140,199,150,193,252,60,76,112,104,89,100,102,84,18,70,182,127,172,147,109,32,24,101,154,139,253,116,94,165,34,203,121,106,207,6,121,221,199,248,117,215,254,182,106,222,216,209,97,204,77,93,9,154,35,253,247,115,196,210,153,
 109,60,147,138,160,125,126,126,202,128,153,30,35,171,61,239,216,35,151,21,34,69,39,222,163,88,52,140,251,255,119,123,210,61,48,158,35,110,232,125,82,90,157,250,193,217,90,121,68,85,12,139,222,200,199,64,31,120,152,36,55,196,168,12,102,133,49,122,233,32,204,122,226,62,138,17,15,9,196,48,6,56,33,245,241,213,169,217,121,131,232,58,15,162,15,192,197,214,0,198,154,135,217,26,134,179,57,94,170,136,22,75,169,85,126,52,149,151,9,32,128,176,27,192,66,130,168,95,80,55,247,54,149,56,58,207,1,99,134,26,126,170,69,177,146,214,255,208,201,241,74,8,234,75,217,81,228,246,72,184,20,10,247,169,36,51,52,81,218,76,123,185,111,130,137,17,19,246,82,56,29,154,113,153,9,68,153,2,8,101,9,70,1,127,219,9,37,209,122,144,154,2,39,5,96,154,84,171,248,142,15,228,206,150,153,2,77,182,96,108,243,187,46,119,99,71,205,58,100,166,253,186,251,48,246,124,46,96,237,95,91,23,250,7,204,121,26,28,123,72,34,37,252,194,174,122,33,96,0,55,235,213,127,69,50,134,206,140,215,108,156,252,142,208,114,219,106,55,196,115,83,1
 49,127,10,136,29,92,186,122,88,31,252,100,22,96,23,45,204,16,22,210,169,174,87,73,224,230,158,208,85,49,121,121,9,219,221,135,195,251,101,86,121,113,42,113,31,145,8,172,228,159,169,166,158,53,163,29,6,17,127,138,173,55,185,229,113,163,98,103,217,151,119,203,39,87,63,76,30,137,219,77,127,153,90,189,242,254,163,138,0,36,88,197,108,198,215,78,76,89,17,167,26,52,94,17,98,34,99,89,183,220,86,68,193,148,208,34,250,63,222,80,173,166,245,224,6,78,186,160,162,104,221,159,57,55,247,210,179,209,68,117,95,140,69,3,83,203,178,192,236,210,24,49,124,88,48,225,154,222,168,212,204,234,89,136,182,49,41,63,87,27,136,253,136,174,217,178,203,202,229,209,186,194,243,26,214,201,63,50,179,215,123,150,71,72,217,109,192,21,241,62,102,118,1,223,155,86,177,245,57,40,117,104,117,2,195,211,160,208,151,197,184,221,32,192,129,155,229,61,176,17,254,53,59,88,183,145,117,133,168,15,129,18,150,90,37,95,218,66,103,131,229,153,56,139,216,92,95,5,109,36,235,203,23,217,1,112,167,159,8,93,28,223,236,96,129,12,238,8
 0,102,176,115,136,133,23,191,78,30,55,217,154,52,252,45,113,249,118,178,89,79,25,23,38,135,236,101,159,90,239,168,131,119,107,78,9,153,0,136,183,201,186,205,191,135,240,65,83,115,136,122,197,136,213,133,39,14,10,236,32,237,141,169,144,217,158,157,101,17,45,14,74,96,10,173,21,144,35,84,160,94,161,132,18,212,62,218,165,26,79,222,231,116,97,178,120,211,51,40,10,105,108,163,144,194,224,29,47,117,236,242,198,13,229,227,203,43,43,19,39,239,198,25,37,108,193,222,113,162,155,22,4,28,205,72,67,137,165,102,99,253,82,198,66,68,33,79,192,122,112,13,54,33,0,24,74,124,20,228,34,185,83,218,184,148,82,158,152,198,98,148,209,50,209,131,220,142,104,128,105,179,84,149,135,5,49,95,209,159,38,240,175,22,64,124,163,219,220,15,242,95,185,13,77,12,132,4,199,125,199,226,251,108,130,166,49,133,226,35,45,110,29,132,90,246,111,63,224,233,211,245,186,123,122,131,95,151,80,104,116,161,125,216,191,181,210,95,75,37,193,145,85,168,33,230,79,95,35,18,144,153,206,247,250,187,236,82,22,81,248,99,109,169,54,137
 ,252,215,29,8,206,254,163,211,170,114,227,117,181,129,96,214,28,4,10,132,97,19,97,170,150,163,68,214,236,111,151,1,65,116,209,236,158,200,239,2,45,68,91,30,155,179,11,124,253,78,57,189,66,76,14,230,212,195,98,113,189,169,97,221,234,190,132,46,210,55,229,242,67,6,63,68,4,153,205,79,244,91,85,25,30,183,67,181,150,15,69,223,235,135,21,38,59,45,253,44,31,123,213,47,47,21,201,157,241,166,138,114,4,30,7,99,147,93,197,191,67,40,220,122,23,13,44,169,62,3,238,79,239,234,199,47,153,171,56,14,148,20,176,72,150,172,187,13,111,73,66,198,117,201,113,119,45,88,170,41,220,117,45,118,254,32,254,110,9,223,116,176,140,37,92,239,168,70,146,106,6,188,164,118,76,255,38,61,60,84,17,11,126,70,206,88,117,38,56,60,80,232,205,66,27,77,118,106,55,127,48,42,203,211,47,47,5,29,142,149,194,32,162,142,50,186,91,94,97,236,95,9,18,117,215,37,90,13,111,86,240,188,222,194,109,207,113,173,79,229,162,155,237,70,113,172,93,234,92,36,169,234,132,67,61,122,247,156,30,167,92,198,211,219,90,176,26,16,12,92,3,157,39,1
 91,232,137,97,9,134,14,149,103,119,61,180,13,33,114,191,244,193,38,254,142,117,139,64,252,29,82,143,144,202,133,172,174,159,200,22,50,86,37,175,172,119,248,248,149,89,138,191,17,157,166,57,113,144,85,171,193,212,2,25,2,248,138,20,109,103,253,193,192,96,169,104,106,53,85,74,23,196,180,148,144,199,180,190,21,182,31,227,218,69,192,249,220,180,154,94,199,154,44,137,183,5,245,125,212,2,22,160,192,127,66,8,146,10,125,129,41,96,24,56,0,66,155,211,203,111,192,58,148,190,18,233,141,171,38,12,104,204,234,3,105,147,194,80,243,182,75,232,107,226,204,163,135,186,87,22,115,26,207,217,202,75,209,120,106,22,124,211,229,80,71,32,39,144,211,13,176,137,189,248,184,230,151,40,85,122,24,1,117,230,1,91,198,151,174,28,191,22,59,235,101,146,159,109,78,246,129,11,85,63,87,148,223,107,74,111,206,43,97,80,68,224,131,187,202,4,164,205,137,76,45,157,62,149,23,210,228,35,191,14,104,147,238,137,105,116,234,59,177,98,41,243,192,189,40,20,186,194,203,40,135,141,191,181,74,174,117,84,160,41,16,241,5,9,1,39,8
 2,197,139,76,197,134,254,121,130,45,111,239,129,192,179,67,244,142,202,50,172,140,240,85,120,87,201,71,78,182,238,59,195,243,146,194,58,85,222,149,198,176,149,159,176,116,91,200,104,196,111,92,12,229,188,31,175,120,246,131,21,123,104,199,24,172,171,85,25,43,69,205,36,165,237,231,176,174,216,5,152,138,15,183,202,62,232,7,91,164,135,68,205,219,19,186,4,182,213,26,245,156,181,248,18,41,2,182,5,28,89,21,160,63,63,184,7,90,190,184,17,222,70,26,188,202,164,88,17,178,251,96,84,84,13,191,243,206,235,147,105,161,185,223,84,46,239,162,234,153,154,255,115,218,249,148,13,150,184,7,244,212,99,178,232,130,217,1,166,23,159,120,153,11,205,172,157,133,236,54,218,158,249,230,59,163,104,113,206,46,162,127,157,203,51,164,97,228,136,211,98,50,176,184,234,19,219,212,52,155,145,185,86,114,255,21,95,72,95,236,54,55,35,168,131,75,64,182,120,187,224,207,101,158,207,140,41,191,206,165,207,57,5,209,161,18,40,203,231,21,41,34,248,37,107,65,204,221,200,47,99,103,177,34,35,105,175,20,236,216,191,1,31,231,
 33,251,26,126,116,201,140,117,108,6,189,215,111,142,202,58,31,62,234,219,77,157,51,34,102,152,11,89,249,199,162,104,195,80,99,29,144,120,21,70,122,202,47,37,41,246,239,208,146,51,198,239,15,197,43,189,196,11,223,171,150,16,241,100,72,71,231,144,128,189,18,233,148,219,28,71,150,119,249,81,196,210,254,149,114,16,168,115,249,192,231,148,38,201,214,45,185,230,24,233,3,70,226,102,141,63,250,175,28,33,20,109,184,175,226,142,154,108,206,6,41,152,230,5,74,33,167,199,168,212,135,209,143,91,1,204,49,137,186,47,107,105,132,90,42,65,212,109,4,203,4,188,202,45,186,186,11,109,124,73,12,119,183,161,125,181,43,59,32,99,15,222,30,22,205,59,236,199,65,120,178,113,114,245,39,80,112,14,56,251,183,194,252,178,13,139,82,108,219,117,119,247,224,29,235,254,213,24,146,208,202,241,68,152,55,219,214,214,118,177,13,6,168,153,168,128,251,129,239,155,218,3,44,117,140,101,117,242,20,27,183,225,119,156,252,75,17,11,56,255,39,106,105,235,196,39,182,188,30,190,209,22,131,49,243,24,56,48,18,181,87,211,197,76,
 194,57,4,174,84,89,110,138,22,108,248,141,143,48,152,105,13,21,245,122,170,149,2,6,26,222,115,208,196,139,17,213,242,184,157,255,242,61,239,12,130,236,169,101,40,172,191,167,17,158,232,121,19,125,25,114,35,47,72,80,214,60,33,110,94,153,93,36,206,22,123,209,41,65,152,19,194,71,11,187,216,194,62,133,125,204,158,229,11,92,91,96,197,55,227,189,9,79,25,145,52,151,11,255,110,131,191,218,63,116,124,71,225,205,203,189,78,227,103,209,242,218,60,79,236,191,255,30,70,116,166,207,107,71,216,217,113,37,95,85,246,224,250,236,194,104,224,118,213,235,207,190,78,37,93,111,85,3,98,149,50,113,127,16,128,112,47,186,47,53,49,214,221,228,194,36,72,107,51,18,23,105,92,63,216,50,190,133,205,161,196,179,11,117,82,25,135,171,3,159,43,186,63,85,212,238,226,207,106,8,229,254,164,37,210,169,64,30,243,228,160,199,109,12,184,5,218,123,174,67,101,93,87,64,182,182,19,36,73,235,234,4,109,215,99,239,95,253,54,90,146,14,177,159,92,28,75,143,226,151,111,34,60,17,116,89,131,199,86,250,216,6,119,19,241,118,95,68,
 181,127,236,249,181,49,117,48,155,27,255,164,194,139,87,184,145,206,81,53,149,22,39,115,95,159,104,241,159,172,194,31,115,68,243,73,87,223,49,162,100,210,230,172,190,13,152,246,150,237,37,47,144,107,1,214,102,253,56,9,223,15,75,200,142,236,57,211,73,189,44,139,28,181,139,24,62,130,144,245,87,4,219,241,190,114,236,119,208,95,25,28,237,28,249,253,74,202,106,135,72,84,216,78,126,209,156,85,72,160,132,176,158,242,185,243,183,46,205,66,226,130,46,253,215,117,115,255,2,87,114,163,233,117,110,110,188,190,240,156,204,56,58,182,104,140,56,136,112,20,67,220,194,51,7,8,94,58,15,40,111,24,136,155,93,69,208,100,215,47,247,204,48,132,120,48,8,78,153,236,3,210,8,9,20,184,115,98,196,166,88,186,182,215,63,91,252,167,198,222,135,148,44,43,72,116,187,34,175,203,119,43,88,48,102,87,75,250,254,28,42,233,156,154,194,87,62,68,37,75,23,138,90,158,55,229,82,28,142,209,246,252,194,49,25,255,16,254,66,66,102,212,214,20,37,83,88,121,191,162,83,186,4,102,80,71,119,119,250,76,146,76,255,244,37,47,41,117,
 216,11,69,226,47,59,176,52,253,2,17,120,187,161,97,132,135,177,210,33,219,221,215,5,0,172,74,198,139,11,117,103,43,135,173,176,1,32,163,179,160,79,46,41,57,44,144,41,32,152,41,80,119,82,112,255,43,21,164,59,30,182,161,243,154,203,213,213,40,116,49,32,146,12,154,72,186,202,218,131,139,191,17,138,136,235,104,185,91,75,53,240,96,231,97,83,52,33,51,145,96,92,14,102,43,226,65,138,102,30,83,230,53,253,10,200,26,103,188,234,38,67,131,195,44,41,74,123,223,1,214,35,62,106,53,57,237,38,88,60,51,110,89,45,90,118,162,8,171,51,179,231,63,215,78,56,39,68,215,193,36,26,218,76,110,243,167,111,228,92,80,137,165,145,118,103,228,137,146,2,198,84,14,13,120,60,226,209,23,100,95,32,160,167,245,10,39,247,200,199,251,75,153,13,174,35,242,111,148,220,71,134,177,88,34,180,219,155,70,131,75,171,77,75,233,112,131,201,3,137,204,123,152,40,73,176,6,60,7,244,32,128,191,148,177,17,81,171,186,130,3,82,155,255,101,7,144,28,195,254,130,29,68,117,117,209,103,20,85,119,183,112,215,86,21,42,220,195,96,185,223,24
 2,230,166,43,114,52,155,70,152,2,159,70,53,11,245,130,95,0,240,129,167,50,105,156,23,111,62,98,253,226,94,8,104,170,3,244,163,189,220,226,53,167,58,40,198,147,32,74,207,37,219,187,223,172,233,84,59,8,87,75,252,25,66,130,248,113,247,41,136,197,219,19,48,191,39,0,66,92,133,92,113,194,143,170,128,32,54,224,182,12,100,127,152,146,84,13,230,81,139,227,146,250,120,248,216,176,250,144,16,129,169,42,112,69,76,137,109,254,111,60,4,204,246,18,192,34,66,52,165,203,171,8,193,80,114,204,206,122,2,59,174,243,134,243,56,222,89,138,246,198,23,171,237,98,129,160,205,236,143,194,180,162,55,187,171,252,89,21,144,221,244,126,165,171,156,157,228,95,74,50,114,222,229,69,55,148,220,132,44,178,249,3,86,91,153,208,142,22,130,140,159,184,164,194,8,172,125,123,56,235,174,105,225,242,162,137,130,193,9,159,32,56,238,178,132,188,250,40,129,53,142,149,109,118,87,98,250,112,126,254,243,158,172,239,229,169,137,135,106,28,66,122,168,153,247,13,179,93,75,85,60,15,241,13,112,219,94,80,7,19,64,227,142,215,157,3
 9,249,40,117,171,228,4,196,51,28,251,1,200,158,189,63,19,220,245,132,182,249,6,54,5,6,31,237,225,214,151,87,230,213,69,156,12,250,228,182,119,93,125,10,58,207,199,81,223,22,25,106,110,8,46,131,26,201,241,194,102,95,54,68,46,44,52,109,81,218,54,135,44,79,90,58,39,75,119,168,232,96,45,89,224,238,39,216,205,236,80,236,254,144,173,112,172,183,55,52,229,101,68,19,129,246,226,129,224,61,33,156,242,48,160,24,55,171,90,154,210,210,111,131,230,56,237,40,31,67,217,7,223,80,195,70,11,85,195,212,237,39,25,22,41,114,181,49,101,162,249,58,203,45,207,197,235,7,92,157,1,233,153,121,227,104,46,47,8,132,37,33,50,92,146,153,114,249,30,94,7,103,89,148,47,89,213,41,231,238,64,27,18,100,125,111,236,250,61,235,61,95,104,21,139,11,24,214,91,11,178,171,79,69,211,67,24,57,86,142,131,228,96,54,243,197,112,175,111,76,107,112,33,217,230,208,138,63,110,32,67,162,107,14,232,56,195,127,211,18,217,179,55,185,251,250,189,123,246,139,207,219,37,233,20,18,135,204,209,115,8,36,173,0,220,237,214,49,164,79,204,52
 ,205,75,206,37,91,49,239,146,108,217,218,1,221,15,119,113,9,27,83,39,141,249,88,66,1,170,35,127,146,34,162,114,34,242,230,116,43,161,6,245,120,151,219,68,156,241,138,128,13,84,83,109,96,33,160,216,38,234,25,49,218,17,21,75,152,137,177,112,237,210,176,43,128,55,105,195,188,22,25,169,88,142,180,37,97,168,182,115,220,16,118,180,129,122,20,200,159,87,37,153,182,70,29,247,110,221,2,230,22,60,216,100,233,99,188,19,78,11,37,103,216,144,70,157,100,181,222,190,93,128,95,192,141,168,145,190,183,163,53,164,38,120,104,69,143,34,128,194,196,127,29,250,6,14,206,32,247,93,68,55,253,159,218,97,118,94,105,81,82,25,134,193,107,32,215,47,177,183,217,158,176,211,183,0,245,131,106,221,177,127,66,144,221,248,104,135,102,254,145,165,26,195,74,148,139,243,136,177,148,126,129,196,33,186,173,43,135,134,31,192,72,63,75,83,108,10,155,220,9,119,43,100,30,92,97,95,184,74,228,142,55,11,32,242,83,148,203,40,245,7,50,89,52,240,141,246,212,155,82,252,178,177,54,118,84,61,231,219,237,74,226,56,98,83,170,218,2
 17,186,220,46,83,118,147,16,118,50,122,9,163,211,201,243,60,220,216,90,86,178,140,231,107,189,117,51,233,162,32,82,212,176,171,54,50,149,141,18,253,20,232,65,226,154,178,251,176,125,119,13,36,114,159,235,12,128,65,242,94,114,125,182,248,194,123,151,233,33,25,206,42,87,220,86,202,153,148,98,60,236,159,108,216,186,229,155,58,251,224,196,205,96,145,134,62,202,141,152,144,155,52,36,89,201,33,110,27,30,90,5,78,202,59,204,116,208,107,131,56,246,162,94,11,82,23,68,243,67,162,233,229,221,103,136,170,33,227,123,196,55,68,18,49,39,161,134,45,225,199,132,192,198,38,51,157,185,222,44,197,12,208,220,29,198,210,41,162,199,247,155,75,174,29,44,226,64,67,70,71,193,111,238,181,184,195,88,241,37,136,24,216,188,113,249,228,183,223,30,213,239,1,237,28,11,10,98,122,8,34,195,255,78,65,111,224,250,88,103,52,37,117,251,164,64,54,222,16,75,9,109,209,148,230,216,89,89,31,206,138,240,130,201,250,111,165,12,118,204,27,23,80,188,146,43,36,232,245,192,174,37,83,154,219,140,250,167,192,161,59,75,211,238,2
 2,81,210,118,189,196,176,186,212,4,175,111,15,49,12,57,202,138,211,79,4,252,160,225,31,94,18,152,21,142,181,45,13,200,218,116,209,71,155,229,126,56,253,160,233,4,247,204,11,217,218,222,146,157,84,52,132,89,12,79,111,101,48,148,198,19,106,117,200,94,201,93,161,215,243,19,136,242,50,221,248,218,53,13,1,163,142,95,130,137,65,151,207,24,215,198,89,153,121,60,224,63,253,179,150,154,140,153,99,94,175,119,138,40,74,60,155,157,102,211,196,25,227,200,111,94,141,26,198,141,131,41,223,223,179,216,8,125,166,115,43,252,29,133,33,228,224,102,62,42,229,95,219,223,113,231,100,188,150,52,4,221,13,110,193,63,241,51,51,211,164,14,207,247,221,253,255,9,77,143,183,7,69,229,11,196,64,14,69,71,182,107,103,18,58,229,48,151,174,196,85,26,174,72,220,152,230,226,126,102,91,32,67,54,122,235,29,225,153,217,228,7,18,189,217,180,180,30,250,244,225,214,76,106,128,193,18,81,137,43,100,136,104,12,90,63,146,122,37,205,239,45,254,144,35,142,157,134,15,177,178,75,182,187,139,217,3,100,110,131,242,29,250,141,0,2
 19,52,76,65,107,63,229,208,48,118,179,160,190,115,45,68,203,224,122,38,80,64,190,75,124,64,193,97,98,143,54,51,162,245,130,34,131,117,113,254,227,12,144,157,27,252,238,250,106,237,206,14,245,105,27,85,217,156,225,196,61,14,160,138,71,69,241,212,234,43,231,114,255,182,162,15,139,32,3,112,28,237,126,215,113,50,254,183,148,162,79,173,192,29,10,66,121,63,192,137,93,213,91,20,210,175,61,25,19,13,44,191,217,91,245,66,138,40,143,73,118,13,92,240,47,213,167,124,200,110,216,77,69,38,113,90,110,206,151,105,188,247,165,59,71,28,155,52,139,197,82,210,179,152,111,13,72,207,234,208,5,232,252,222,97,187,143,163,189,44,235,236,233,194,32,95,44,133,82,5,118,0,116,130,189,148,204,109,151,111,159,38,106,80,220,178,36,233,190,192,54,134,197,29,113,246,236,206,73,42,156,139,198,242,72,38,212,47,213,237,71,191,245,173,216,180,159,140,125,24,53,30,75,204,104,234,114,81,219,184,103,253,25,217,163,126,133,40,208,84,92,23,46,89,134,169,75,36,188,41,138,182,250,245,149,211,88,86,151,234,23,133,252,130
 ,226,79,99,50,244,129,163,201,79,226,122,216,130,89,143,180,39,242,34,4,79,184,14,71,77,255,77,195,69,245,13,91,144,119,21,191,125,0,180,160,218,108,57,214,214,0,221,160,68,237,255,185,54,47,92,121,251,66,249,41,172,124,106,7,195,175,231,246,243,143,204,204,227,137,92,30,151,115,195,130,100,173,47,215,231,63,52,20,17,50,183,18,86,46,137,33,144,156,12,224,133,148,225,217,16,196,169,94,184,252,183,100,121,90,201,64,146,228,122,1,16,232,159,26,13,95,11,143,60,253,237,61,149,229,241,136,42,70,65,3,91,40,138,16,35,80,71,196,84,204,224,12,48,156,126,144,224,99,68,28,82,6,102,6,252,213,168,136,121,24,72,199,215,164,101,84,100,25,137,1,192,54,42,94,151,210,212,7,213,120,41,232,117,148,18,17,40,142,57,124,42,170,62,95,32,237,34,46,92,57,218,202,168,217,232,127,183,51,155,89,128,206,125,121,22,0,69,53,67,151,233,200,159,13,136,66,115,28,64,110,163,209,231,38,87,50,183,9,251,153,175,124,50,19,53,222,156,164,237,183,219,168,144,79,233,4,205,241,46,163,148,134,94,117,201,82,128,16,98,210
 ,76,101,107,38,159,99,134,143,106,251,175,24,226,10,13,241,125,99,182,196,84,122,86,110,64,2,67,54,161,188,119,102,5,34,25,83,230,108,114,168,124,130,184,149,255,110,150,58,29,66,21,183,100,9,40,139,210,62,62,143,63,40,93,122,209,94,39,164,230,64,181,17,171,245,122,214,157,125,212,157,219,121,229,201,148,100,136,138,139,56,193,171,27,109,146,156,69,91,32,97,201,54,68,87,120,97,39,0,19,80,95,89,202,97,230,224,7,176,211,64,245,183,201,100,59,155,31,182,201,183,210,175,239,196,238,122,155,227,253,64,16,245,153,152,199,240,30,76,42,14,18,84,29,83,0,141,235,98,214,165,183,237,131,162,11,208,249,169,6,208,33,113,29,123,149,3,41,18,32,169,156,162,82,162,198,215,147,47,202,109,206,110,84,44,29,119,237,105,11,62,71,67,133,99,188,172,135,252,225,201,101,107,58,22,234,249,147,179,209,132,56,34,87,57,29,168,146,195,105,3,13,37,207,171,86,192,249,188,71,101,133,146,129,108,220,2,243,25,24,237,222,74,118,164,14,172,214,107,120,82,43,94,132,48,28,245,149,43,30,244,186,161,249,122,9,120,214
 ,170,182,68,23,187,140,32,230,210,100,23,169,158,34,203,204,175,134,140,201,99,248,108,218,206,204,122,232,126,175,5,210,140,221,128,160,133,201,62,121,63,135,40,220,107,239,251,177,43,237,165,17,41,180,62,173,22,16,121,218,243,126,192,219,5,34,172,67,61,229,115,203,19,79,1,91,232,47,59,161,87,190,153,233,82,133,50,224,235,4,230,199,8,102,245,5,153,115,224,229,104,191,38,67,185,196,229,171,142,144,107,17,183,193,63,214,31,101,36,181,7,141,92,34,107,151,179,76,182,6,150,225,44,244,8,88,83,246,14,197,36,161,254,79,148,47,210,8,0,88,249,58,254,66,171,66,57,97,222,10,162,240,107,222,237,250,228,33,190,83,139,163,107,9,82,220,45,194,98,103,10,156,239,80,204,64,150,235,152,96,128,43,200,54,250,134,87,58,106,213,194,196,81,106,157,238,212,215,152,118,212,159,79,241,34,240,116,141,100,208,236,110,246,243,44,86,151,169,146,81,167,182,115,83,49,173,17,95,231,145,154,122,171,201,80,233,154,247,17,95,94,157,10,4,46,156,27,111,121,51,209,147,203,187,107,250,198,253,184,33,7,206,121,211,5
 0,175,36,8,231,144,220,207,191,90,201,3,109,29,227,208,186,179,254,66,6,49,67,165,243,21,34,203,142,111,132,27,134,157,169,103,211,134,173,253,61,195,129,202,52,212,169,128,164,212,38,135,128,225,228,215,176,207,119,120,177,160,101,150,204,145,68,91,36,12,98,5,99,165,143,37,147,115,166,182,30,141,9,232,56,135,173,52,175,34,2,187,104,124,241,131,41,38,239,248,116,222,11,225,129,191,71,89,174,188,15,40,194,128,217,28,248,215,243,177,241,60,96,233,170,19,204,223,249,28,255,20,159,154,45,185,55,136,61,194,184,41,233,102,186,72,158,10,43,18,165,140,169,177,163,13,206,111,133,14,77,6,177,191,158,246,218,2,120,26,245,226,125,131,119,106,6,56,42,124,17,249,7,68,44,235,213,36,129,13,46,244,177,154,126,44,188,112,1,12,73,218,101,217,99,52,203,78,153,159,17,1,138,160,129,238,197,188,24,54,226,251,247,4,248,209,81,5,132,107,180,51,203,42,186,158,19,90,213,57,230,248,43,39,52,191,118,125,57,99,67,94,224,55,6,232,225,167,112,2,208,201,228,123,50,225,148,81,238,17,26,6,189,170,135,149,151,
 158,63,7,82,83,168,178,36,71,34,96,144,31,184,249,209,148,25,240,114,188,186,184,128,46,193,28,158,170,221,55,245,233,254,101,244,186,97,67,216,167,81,74,228,105,189,47,113,134,250,150,117,94,229,184,94,248,41,74,43,202,78,3,76,44,43,115,102,55,114,58,45,98,3,109,43,17,55,63,13,206,38,187,209,100,19,85,180,136,49,21,113,246,202,227,215,59,118,49,159,73,198,113,71,4,229,151,110,134,91,27,151,193,130,91,126,241,89,29,210,87,60,226,58,77,105,108,170,224,206,183,5,250,155,187,82,164,24,152,73,222,215,204,85,19,142,108,38,71,223,172,214,200,72,176,20,204,240,126,144,88,224,72,234,185,12,76,125,56,40,86,94,27,131,114,217,189,248,31,22,146,230,180,200,70,7,140,127,84,128,58,200,146,60,64,130,241,244,52,222,89,186,160,98,152,155,238,113,54,167,128,216,145,100,118,239,23,54,134,46,208,71,65,190,193,51,55,84,114,9,115,31,11,153,218,46,231,254,85,113,255,94,170,246,103,222,191,245,179,138,15,103,204,12,126,75,89,28,202,90,210,230,245,5,50,134,34,77,51,0,30,233,98,221,129,53,56,216,74,8
 9,73,38,233,161,242,134,17,95,248,93,219,72,170,176,174,201,121,58,71,218,144,79,81,158,79,151,193,94,225,180,192,194,234,78,105,135,21,131,186,195,217,59,139,73,186,182,252,16,199,108,108,26,11,51,241,90,126,14,201,153,59,48,220,133,57,252,10,186,140,73,234,56,219,208,28,32,231,29,22,44,139,254,29,201,239,193,154,255,57,175,142,188,126,17,189,40,159,96,1,43,48,166,98,211,17,238,61,79,83,35,241,173,139,254,115,148,31,216,55,104,44,108,36,215,195,78,174,72,119,103,119,123,203,17,158,165,21,117,5,139,182,226,8,187,194,122,121,120,249,114,107,57,223,195,6,117,75,183,93,113,171,202,15,156,186,60,146,133,189,117,110,65,113,45,32,190,111,222,44,201,138,152,69,69,79,184,4,10,53,139,15,134,241,188,104,69,223,220,72,18,207,119,169,206,126,165,165,189,147,142,94,53,120,115,94,180,220,15,150,202,41,24,56,37,221,122,127,85,106,225,245,23,138,218,35,251,248,204,53,116,84,109,179,130,21,63,87,172,150,104,249,204,184,98,135,229,243,74,129,162,184,13,215,158,249,190,192,184,13,28,181,192,7,
 90,217,226,195,107,184,216,12,160,210,201,62,116,71,196,31,17,107,10,242,17,11,203,44,184,11,147,47,251,215,11,2,37,226,59,225,211,196,128,23,126,232,132,38,34,173,108,225,61,204,25,42,56,64,69,158,241,2,216,236,239,228,232,143,158,219,187,239,143,234,63,43,135,100,241,187,85,182,163,228,87,68,124,250,160,27,165,199,57,114,179,230,84,96,191,83,148,129,234,118,228,225,188,127,218,195,70,109,15,105,159,4,233,34,230,230,240,39,84,224,155,83,214,2,75,63,171,183,131,78,35,234,155,36,185,210,176,118,200,130,178,150,185,197,75,228,111,215,211,11,34,137,98,181,119,107,197,177,135,96,54,36,53,113,245,183,213,63,177,180,9,74,39,131,255,142,72,195,124,168,83,12,51,184,147,127,181,141,37,9,241,245,221,189,126,226,150,193,69,38,35,151,32,154,91,92,147,110,99,226,161,154,137,163,150,180,140,188,60,179,62,77,252,104,62,35,254,243,53,62,223,207,114,77,63,218,250,216,87,119,168,139,11,55,3,208,175,146,96,208,112,211,225,212,59,22,212,10,80,242,180,250,218,90,124,193,59,20,116,188,40,48,153,2
 12,57,138,49,176,90,134,42,96,174,69,153,20,202,159,101,93,52,72,71,130,204,162,111,139,164,181,147,234,52,5,159,64,218,129,0,29,55,174,246,214,175,110,189,65,196,192,96,46,64,250,113,84,130,75,103,92,132,95,74,60,172,189,17,117,167,215,10,7,221,121,200,65,66,234,76,143,63,40,200,96,242,56,197,115,148,171,162,137,130,114,255,200,241,56,206,182,211,135,16,101,58,121,177,107,21,239,191,168,2,115,178,71,231,99,114,15,120,161,189,232,9,80,210,136,106,178,227,145,211,230,71,170,117,160,13,122,107,63,69,135,159,248,147,45,239,239,154,232,111,224,83,31,222,116,100,75,194,117,147,82,212,40,243,78,57,248,30,149,160,30,81,50,108,30,171,168,159,75,136,67,174,17,215,199,231,155,239,182,163,193,4,178,184,142,206,218,58,216,30,18,112,177,44,11,84,127,238,193,208,31,169,131,149,126,17,84,93,79,207,130,1,115,112,34,186,175,134,121,170,112,35,255,89,242,241,200,238,250,49,219,23,159,223,155,243,24,61,55,246,165,174,69,209,196,114,83,71,211,37,250,165,122,178,59,157,24,195,20,140,25,83,156,23
 1,116,46,10,18,129,95,39,16,36,126,37,117,198,165,230,75,173,199,214,185,152,52,218,59,233,119,3,185,31,142,33,66,156,83,211,117,61,128,25,37,80,65,51,157,166,14,215,207,114,78,207,29,11,183,184,84,78,111,243,120,112,203,232,155,88,130,130,17,139,183,146,233,99,77,203,51,180,178,76,138,224,167,45,132,86,80,61,204,4,195,102,147,197,190,190,18,176,221,150,181,52,59,192,126,100,74,107,154,227,151,62,83,171,47,254,217,161,100,247,118,191,208,167,222,2,54,80,167,42,131,188,115,140,74,183,95,123,175,242,238,19,241,193,152,119,6,78,91,138,68,94,181,58,116,18,2,72,223,69,136,220,212,165,11,190,172,229,115,164,43,128,144,207,219,176,144,60,164,204,52,149,32,106,177,52,244,57,254,23,209,156,19,229,186,193,233,90,27,254,32,97,196,104,246,19,159,214,238,173,70,9,74,198,134,187,60,70,91,27,36,19,206,165,21,22,18,35,88,18,233,2,229,16,152,170,166,117,172,145,53,68,141,4,173,246,220,100,37,73,198,136,32,140,157,19,101,105,69,255,171,143,3,253,46,16,201,66,4,254,131,29,226,174,209,28,79,98,
 90,118,21,61,28,207,152,246,201,38,171,6,39,56,20,128,75,189,158,89,179,4,198,140,104,75,220,171,214,88,172,47,147,165,1,78,115,85,79,9,174,137,59,12,22,2,97,62,9,121,14,111,209,101,26,145,162,228,196,185,46,115,103,19,133,223,109,49,236,157,208,155,214,43,157,112,43,205,14,7,226,203,155,34,129,73,169,13,203,77,140,122,116,141,152,175,166,196,252,149,75,101,54,245,113,171,120,183,22,165,94,87,209,243,134,97,3,120,2,209,143,188,46,43,208,123,199,250,75,96,154,97,117,86,152,242,94,12,51,181,72,68,81,19,33,187,105,56,22,100,210,69,99,86,153,255,21,76,252,254,97,63,216,80,192,114,98,187,59,102,209,144,14,206,14,9,21,29,132,168,200,243,221,129,186,230,26,9,35,229,95,129,30,158,113,187,111,245,31,41,183,166,51,115,240,129,31,236,188,240,172,184,36,136,183,230,204,148,4,3,167,162,84,159,177,66,149,17,251,174,89,118,78,226,24,212,138,89,85,24,56,131,244,213,182,255,42,193,178,63,214,161,131,55,13,35,137,224,121,251,135,181,124,77,44,229,8,215,26,247,88,101,12,155,14,90,160,175,148,4
 8,91,148,124,90,190,2,23,3,15,85,225,234,169,121,251,112,18,72,136,252,107,110,21,208,63,49,118,229,161,230,161,82,3,17,38,124,239,177,57,181,24,78,213,154,147,79,228,127,3,114,138,179,195,168,87,237,215,48,143,86,107,35,29,70,200,46,137,101,247,10,243,203,4,164,33,18,109,143,253,87,166,240,221,132,181,187,218,17,51,137,139,136,5,215,80,230,206,245,140,206,61,100,143,81,139,202,207,1,160,31,213,187,177,65,241,252,85,32,138,24,89,111,218,243,48,91,249,199,115,248,165,152,59,67,112,113,198,48,106,156,49,59,128,141,221,23,251,96,114,61,160,46,243,63,248,210,109,216,113,120,145,89,220,102,197,177,188,81,143,243,143,126,83,1,53,48,174,123,146,58,69,128,216,212,233,120,51,43,185,72,209,128,32,125,145,206,191,142,239,170,47,207,115,59,183,80,26,254,180,83,161,112,196,186,158,167,81,215,141,220,140,50,238,225,131,201,157,143,245,171,163,170,210,249,16,177,147,139,163,227,4,8,187,68,246,41,246,70,198,4,69,225,36,83,137,80,208,178,41,66,109,121,172,156,214,103,130,102,127,12,186,204,8
 4,210,210,11,42,40,184,241,203,104,218,108,193,172,90,161,198,230,250,150,189,118,93,17,23,176,112,241,181,220,46,77,164,229,147,115,142,24,78,198,59,74,49,139,3,235,190,79,196,216,199,61,199,21,54,106,245,122,203,193,159,8,126,41,153,165,102,143,140,106,86,81,115,58,176,199,245,27,68,98,181,70,79,1,183,133,2,205,2,245,104,120,159,8,59,147,135,147,185,224,159,109,13,165,132,145,131,255,90,146,96,93,131,126,57,112,12,206,175,176,93,26,190,108,75,240,132,22,242,191,47,146,79,239,208,136,191,185,20,244,10,228,101,205,192,134,30,77,117,128,7,21,254,60,76,124,252,235,23,79,130,154,43,6,220,225,3,145,82,22,235,2,237,250,186,216,233,214,245,127,36,235,80,92,79,7,59,50,85,194,255,186,118,216,12,105,132,165,45,238,249,176,238,236,212,159,37,200,112,111,20,212,203,182,131,198,170,55,164,161,205,170,215,95,208,159,238,201,86,255,62,16,93,32,173,237,135,153,143,251,234,203,4,181,120,203,189,72,6,223,157,246,22,196,242,54,182,208,73,95,39,119,239,235,251,105,119,41,197,212,237,60,30,205,
 112,105,217,158,40,230,170,198,144,200,46,177,211,209,122,58,131,98,23,91,149,141,205,222,157,185,21,100,59,205,102,189,155,182,112,17,212,224,5,138,75,176,167,113,209,59,199,57,111,166,226,94,16,206,81,84,154,69,254,253,62,58,10,22,11,141,147,190,23,95,233,112,89,14,104,10,170,3,43,161,238,131,145,196,7,38,240,237,99,137,38,241,129,46,47,100,14,13,80,183,92,18,5,18,235,208,223,17,2,245,103,98,96,42,50,243,161,33,44,96,29,209,43,23,198,22,106,127,32,154,250,66,41,83,244,195,93,127,148,215,136,130,42,217,27,56,143,119,138,36,153,77,121,195,71,202,122,27,241,238,16,6,179,193,246,31,110,115,91,153,147,189,148,13,195,113,36,153,50,174,2,153,18,186,127,43,222,187,215,187,155,43,26,52,55,205,112,247,49,245,101,52,39,95,164,188,254,46,53,238,242,178,174,15,12,125,98,123,75,123,86,93,222,177,111,125,171,13,241,8,107,92,148,154,41,44,152,3,189,145,233,142,35,227,35,119,214,69,93,64,14,168,221,60,181,212,190,120,215,192,136,227,145,98,192,158,246,200,165,45,96,209,223,21,207,190,81,21
 6,57,121,3,142,43,156,227,136,28,147,180,230,253,160,57,147,227,51,237,10,182,214,141,214,246,134,6,68,151,39,100,94,122,243,161,169,52,8,71,83,9,225,17,117,204,16,89,215,130,239,94,228,26,4,26,129,158,110,53,178,126,207,104,86,244,184,25,42,106,207,217,157,90,203,68,156,105,48,99,241,40,178,41,189,25,197,214,116,224,240,154,221,197,140,92,159,28,54,87,76,185,174,80,158,224,126,79,33,108,121,100,119,53,154,0,235,220,80,98,90,194,125,234,8,63,208,132,84,252,107,161,213,118,22,195,160,245,116,219,186,31,41,106,72,79,97,136,86,9,65,162,106,29,22,110,190,88,233,121,44,27,183,190,151,130,217,55,237,120,99,87,21,179,211,117,154,140,130,212,32,18,169,221,49,34,219,86,117,97,131,220,216,250,28,99,48,5,143,55,0,213,186,68,96,24,1,92,84,170,65,71,162,216,109,161,255,59,255,81,195,36,49,202,94,31,44,97,5,36,78,27,216,239,22,73,35,180,15,146,115,35,227,191,63,172,13,95,133,210,48,60,147,56,180,26,41,94,237,98,15,147,237,58,83,60,35,164,89,30,255,104,52,34,127,187,112,250,22,206,56,56,27
 ,50,51,116,15,7,125,224,227,199,153,74,69,96,82,42,49,177,129,14,228,154,69,188,160,47,74,212,84,98,18,15,36,242,187,27,111,54,63,130,133,105,20,134,68,66,109,248,20,15,188,114,60,124,155,127,65,202,146,128,180,9,172,232,85,69,158,178,24,51,170,236,197,0,136,244,156,255,155,14,30,143,72,137,96,25,183,160,138,196,35,172,239,215,253,99,22,124,137,113,38,123,84,56,62,35,172,239,62,101,24,119,85,72,116,131,115,128,189,208,104,142,209,248,139,199,140,15,166,220,32,134,240,185,83,142,160,97,65,180,115,197,98,32,246,117,152,80,204,254,129,36,162,249,178,8,88,111,168,153,92,222,175,162,139,161,91,217,182,222,13,19,86,175,80,58,119,34,253,157,38,171,139,103,81,86,37,140,177,186,94,201,92,154,44,136,128,254,106,101,34,170,73,45,127,25,97,110,4,54,57,175,159,215,204,151,111,146,68,188,32,255,31,216,126,184,219,126,176,45,207,181,90,74,166,159,238,246,175,31,218,116,62,141,180,250,87,63,218,49,208,52,215,78,105,119,70,178,203,155,240,130,252,13,239,83,185,60,169,136,53,248,145,73,95,155
 ,241,41,113,210,126,17,10,233,175,91,45,126,14,98,212,207,107,35,255,247,4,233,234,49,170,113,12,32,215,126,120,47,227,28,202,199,165,26,153,216,243,168,212,63,121,87,191,96,12,236,64,231,2,177,53,57,50,228,192,218,49,240,237,184,141,7,185,219,203,21,144,38,36,132,183,34,0,93,82,121,113,112,10,32,213,71,45,160,243,213,143,73,149,134,81,29,210,116,83,188,32,128,28,98,42,149,155,120,115,167,214,116,169,160,89,172,213,146,184,232,70,23,79,78,12,139,136,207,55,39,104,191,96,166,226,138,25,223,62,139,32,165,135,6,216,57,234,101,84,17,10,57,183,202,62,249,68,20,104,181,233,167,123,129,184,73,192,70,118,106,22,232,24,68,132,155,195,203,185,34,150,245,9,51,236,66,207,23,93,16,42,227,174,99,56,253,91,110,241,106,156,112,192,63,94,193,255,238,88,245,166,95,172,15,181,107,121,158,127,53,28,69,18,16,9,202,180,24,56,74,40,238,174,8,222,219,53,138,40,198,97,149,236,197,177,184,98,75,52,222,68,50,38,28,254,150,174,123,103,90,88,51,88,142,109,22,238,82,114,93,63,57,3,187,146,138,205,34,6,76
 ,233,133,218,149,201,61,46,8,132,237,79,218,104,253,73,76,37,190,199,235,123,174,47,181,182,0,15,165,184,63,77,231,207,173,171,154,77,149,9,234,186,95,163,53,198,83,78,108,149,103,182,50,19,15,137,235,250,28,14,63,87,219,2,91,19,169,13,127,145,5,160,123,254,193,48,205,30,186,251,60,25,214,142,14,120,194,183,150,204,242,132,76,198,18,129,66,95,33,17,127,233,57,146,11,189,117,172,229,116,108,3,183,233,63,12,16,65,159,149,3,93,133,47,33,101,125,29,246,6,76,65,110,249,98,126,56,93,61,142,54,105,36,234,150,50,83,214,177,89,141,197,135,158,249,19,96,189,173,81,100,132,217,125,135,140,12,73,73,50,137,181,159,102,255,68,187,75,161,59,49,92,233,220,13,48,26,20,48,212,103,216,51,44,34,76,62,143,81,63,121,13,76,110,120,198,114,231,87,169,81,75,184,129,248,85,11,153,221,191,126,193,174,190,56,196,21,105,197,180,3,146,77,206,118,152,147,57,53,63,11,71,115,137,5,216,29,97,77,10,105,212,115,177,82,53,109,81,202,251,56,160,231,180,182,88,137,5,80,150,192,51,94,246,227,100,237,31,123,23,208,
 130,200,158,233,197,99,242,4,30,28,42,226,83,194,66,215,164,17,10,108,164,252,165,38,124,32,35,96,14,49,18,123,211,234,57,213,246,186,140,16,196,119,83,238,6,217,103,217,9,31,124,118,221,72,199,56,160,124,51,132,128,140,202,182,121,142,81,213,46,136,12,125,227,164,231,185,124,147,120,41,181,138,11,183,190,104,76,236,202,107,153,216,17,169,41,94,22,159,55,81,244,153,166,119,68,196,120,76,209,127,254,67,184,34,114,11,212,225,130,13,147,185,239,90,50,84,228,224,9,75,3,205,205,125,51,228,222,3,251,187,198,31,121,43,82,27,154,175,239,185,20,48,171,204,170,113,27,240,84,9,223,232,230,121,24,93,157,101,109,27,23,140,164,32,120,146,18,15,52,252,109,44,243,144,238,199,140,201,185,3,14,41,126,107,161,99,8,117,83,94,87,243,179,119,3,184,19,253,13,126,127,74,104,224,167,188,143,229,169,59,155,35,154,31,192,39,19,219,140,149,111,42,45,82,4,229,240,219,31,230,233,120,248,10,110,44,143,83,62,81,10,157,115,27,149,7,34,164,147,110,199,152,151,204,104,184,100,73,212,245,93,160,160,135,33,79,1
 75,9,121,225,68,7,145,189,76,212,152,116,98,158,234,157,143,176,203,90,74,52,219,155,157,105,222,162,75,56,66,68,125,207,146,122,171,149,211,221,41,156,161,57,65,42,111,27,121,242,248,231,51,135,47,156,52,75,195,82,243,214,88,53,148,199,81,5,216,49,137,89,25,195,170,166,217,104,33,176,66,10,118,148,37,209,237,232,227,181,228,145,142,154,85,103,157,144,190,130,228,51,27,114,104,193,178,48,81,213,245,68,211,253,150,146,48,56,206,243,128,131,17,233,154,85,72,198,149,37,5,94,153,172,215,65,128,255,171,62,138,237,66,37,117,89,244,252,238,113,218,77,131,91,197,86,145,208,5,77,142,149,175,44,114,33,95,36,177,118,75,116,118,150,233,155,100,16,73,43,79,36,250,109,250,157,185,134,231,190,76,239,130,230,208,142,43,91,191,59,16,170,216,138,50,217,77,84,177,66,12,94,137,112,128,158,201,35,150,159,69,227,57,76,249,6,68,246,238,158,35,164,61,100,37,73,34,30,149,244,73,210,226,242,81,142,17,72,25,3,168,106,63,229,20,151,31,66,234,68,139,201,13,108,63,36,166,162,126,168,140,218,100,239,126,1
 27,118,77,127,10,206,25,43,130,222,193,44,120,86,126,176,135,66,17,192,114,29,12,120,204,117,239,138,104,188,135,76,3,83,214,143,45,219,9,210,27,94,142,199,22,150,122,90,47,130,214,147,56,235,37,154,206,30,122,182,70,172,1,149,108,76,182,52,252,136,120,98,9,91,91,82,99,130,249,245,233,16,41,24,185,218,122,254,107,157,237,184,184,62,86,206,26,113,255,44,242,171,133,38,133,85,210,40,90,207,227,73,37,90,222,115,41,103,68,31,143,207,142,214,214,27,10,96,184,217,177,33,124,141,168,151,163,0,150,220,40,113,78,223,228,253,161,0,69,59,132,120,62,167,148,181,70,234,33,191,201,222,63,178,135,60,150,49,241,252,171,172,23,90,50,46,74,102,172,248,240,198,151,191,100,236,16,179,161,20,207,69,131,93,20,133,26,213,200,117,93,55,69,72,232,192,75,10,76,201,19,6,58,176,13,253,216,94,250,36,212,44,250,220,156,141,88,121,208,225,68,164,42,243,17,247,64,185,129,81,238,90,127,138,105,66,73,15,135,11,102,39,222,122,4,85,173,56,49,85,253,227,9,2,27,222,149,67,167,86,217,10,110,82,234,177,125,152,104
 ,23,123,76,202,219,188,57,185,240,103,9,48,23,166,190,143,7,64,79,108,27,74,145,23,182,134,234,93,198,31,127,126,45,15,30,25,115,63,64,0,217,154,5,215,165,52,22,238,35,135,115,119,167,87,142,250,96,70,216,195,171,114,75,75,90,15,187,192,34,117,114,243,111,224,17,182,154,210,227,24,182,70,171,134,26,128,60,95,163,106,21,235,43,80,8,184,173,54,207,169,237,104,88,2,17,117,110,161,15,250,181,43,153,204,123,203,251,93,148,64,138,240,163,213,212,131,148,122,113,45,59,2,17,28,71,193,242,24,251,124,1,4,205,63,192,11,60,72,57,73,188,112,58,8,126,91,30,139,4,227,105,152,10,28,254,102,94,81,206,249,251,220,222,161,6,194,242,74,170,109,120,225,77,195,160,190,136,189,217,49,131,149,35,242,53,185,217,58,20,80,179,180,13,57,183,144,117,75,245,52,17,139,166,170,225,170,94,220,156,161,69,243,61,239,191,172,255,140,138,100,255,36,58,217,44,231,205,110,220,124,237,139,119,9,90,71,150,203,229,70,215,209,112,87,187,130,92,150,71,227,240,220,255,159,13,22,253,69,199,125,18,215,189,243,51,118,229,
 3,54,60,55,192,178,185,116,252,165,137,19,71,158,152,240,185,48,174,110,208,90,54,243,192,44,134,146,161,47,192,73,179,234,111,143,83,137,165,54,106,35,180,221,176,158,146,98,232,184,114,109,138,158,208,225,180,37,158,216,234,132,227,239,155,236,167,107,42,146,146,67,42,45,4,250,201,0,108,26,49,99,245,246,200,208,224,33,224,101,232,75,233,242,168,215,51,97,222,198,143,41,219,155,218,210,114,244,183,113,214,198,212,121,5,255,118,251,110,35,87,64,57,103,25,163,198,249,12,57,252,180,147,136,60,244,194,95,90,178,246,237,180,195,217,171,78,55,136,30,92,124,35,230,193,6,194,225,223,199,132,153,255,194,92,166,215,118,12,74,24,62,51,96,8,151,202,6,141,91,117,3,138,251,208,66,84,218,148,170,245,173,246,104,163,135,222,74,105,43,243,203,30,151,85,8,185,218,216,49,67,73,12,88,235,197,61,67,7,204,132,221,217,129,5,223,56,178,193,93,190,13,192,37,206,250,35,178,73,22,230,155,205,55,107,54,192,111,232,74,158,108,200,223,126,225,26,208,62,138,40,227,249,85,193,13,29,100,112,244,101,214,198
 ,63,242,94,95,27,215,29,15,254,78,39,56,216,238,44,42,36,197,77,59,96,176,119,46,175,134,61,57,178,17,140,242,65,226,50,130,147,89,5,187,68,18,102,221,231,243,206,113,140,15,21,188,77,180,186,213,0,203,11,51,148,44,46,79,75,240,252,7,159,90,95,107,0,100,202,155,92,193,102,199,111,140,99,228,209,62,97,6,84,192,95,247,119,116,226,42,162,124,208,185,16,100,213,135,136,242,18,35,11,95,253,83,173,249,71,176,186,53,66,33,53,154,241,143,158,178,127,238,157,234,197,61,132,91,19,243,220,4,129,90,254,168,104,228,8,186,140,38,254,23,246,182,163,1,123,17,215,98,246,11,226,133,242,131,204,108,214,219,32,203,87,219,169,23,145,130,121,197,235,101,185,190,241,75,99,57,130,83,230,205,50,20,247,153,218,9,19,214,117,63,27,148,109,125,121,83,216,192,33,59,22,170,242,214,236,171,247,198,196,210,49,255,234,78,14,159,51,254,210,48,29,6,169,156,200,82,116,119,186,26,93,225,236,221,120,143,172,9,128,158,243,213,53,8,178,253,19,208,61,95,136,245,93,45,170,10,18,175,217,166,67,117,77,142,58,250,78,40,
 80,225,116,175,150,233,129,34,225,233,236,82,181,176,248,101,66,195,9,211,171,210,130,184,75,251,95,167,91,143,230,230,99,137,27,210,34,176,214,85,215,45,213,113,203,194,248,64,108,118,130,156,85,99,117,219,137,115,226,169,193,135,156,160,4,43,61,141,22,125,125,219,188,248,226,150,224,221,210,31,207,174,110,134,244,159,61,119,58,248,255,41,58,193,96,81,72,74,18,43,40,85,63,103,112,33,238,112,189,6,67,76,156,234,227,145,127,102,160,26,138,171,253,142,72,114,24,34,145,78,131,58,160,131,139,103,255,201,28,65,187,156,192,63,147,87,16,160,77,143,2,68,215,101,145,246,223,65,147,203,162,214,29,115,99,244,155,27,141,252,213,42,173,55,168,186,254,101,153,250,185,143,185,112,173,87,127,24,203,123,86,83,86,208,214,30,85,69,39,135,223,132,143,135,37,73,90,162,110,185,172,197,156,77,166,159,72,89,168,249,85,161,44,225,103,17,55,221,33,124,75,181,210,194,18,127,138,228,108,0,54,167,2,255,154,181,217,198,6,186,86,169,171,250,46,139,117,100,142,131,98,179,132,246,168,54,66,24,6,80,152,140,2
 1,9,36,21,168,48,69,36,230,201,196,235,126,140,33,92,19,213,113,137,67,42,17,137,28,185,32,106,22,68,143,214,248,66,57,177,247,39,220,160,150,75,221,126,139,252,8,56,78,196,239,63,104,125,222,226,44,241,131,157,71,230,89,207,220,150,138,68,196,245,130,97,128,237,169,154,12,5,199,43,69,116,249,118,21,3,7,180,131,84,244,28,197,130,18,210,16,1,188,229,66,216,37,192,57,233,148,154,206,253,193,217,163,176,81,110,176,96,224,207,156,251,44,100,147,32,153,153,129,119,25,49,253,16,232,194,15,107,174,218,219,82,94,247,194,63,6,197,231,224,34,231,24,93,182,75,188,234,142,143,167,158,52,119,168,33,103,93,227,44,188,7,216,167,19,245,249,47,226,41,44,128,196,86,199,112,197,26,172,38,36,169,82,205,5,185,185,181,104,156,17,163,55,195,100,167,167,147,47,117,119,22,55,153,98,191,26,148,247,2,121,176,223,80,30,195,85,71,212,90,241,79,2,141,127,107,123,177,63,14,176,2,216,203,162,220,74,8,229,125,60,36,48,247,91,143,143,104,139,191,69,61,198,91,123,144,223,54,230,55,98,170,254,15,226,151,197,11
 5,19,10,97,141,208,231,250,67,4,219,114,150,199,92,42,32,243,41,171,163,18,202,239,156,54,6,86,162,130,0,0,207,223,220,132,220,235,127,68,142,155,246,246,215,223,132,5,100,187,68,151,120,237,205,130,209,172,189,51,147,207,166,158,121,153,198,87,52,99,145,78,195,45,243,9,107,222,65,251,181,241,198,165,214,28,108,149,186,226,217,103,55,1,37,133,157,146,163,213,141,249,41,254,212,210,153,10,119,242,133,202,50,17,96,42,160,200,54,150,100,218,100,76,196,116,124,31,231,101,251,165,26,26,7,136,7,164,137,193,178,244,93,107,202,171,160,140,231,253,5,236,155,25,7,72,152,65,112,233,59,84,202,166,182,209,69,119,9,118,160,175,191,119,165,39,246,132,13,104,215,164,113,76,180,18,254,70,138,195,30,219,203,81,234,69,227,15,76,213,103,242,192,138,145,211,177,58,98,194,228,125,135,247,51,85,93,84,107,26,79,32,233,7,168,3,219,34,163,236,134,105,205,61,163,234,130,210,73,19,77,210,85,113,160,35,78,11,165,71,236,82,102,172,64,98,64,246,50,14,193,252,80,129,35,236,155,102,123,194,201,68,125,130,24
 7,212,146,26,45,187,13,128,34,85,216,98,35,30,68,212,25,106,118,177,125,238,191,140,89,36,52,118,156,217,234,111,86,91,115,229,33,133,83,228,58,174,65,212,83,137,218,87,185,75,110,93,118,11,130,188,183,222,84,4,30,167,4,20,101,13,109,97,48,199,103,118,113,179,216,176,125,171,60,11,122,101,49,104,45,95,236,226,155,138,166,244,71,154,164,107,71,51,73,225,17,179,210,180,93,193,80,111,167,177,111,42,194,75,217,247,175,156,137,191,201,113,126,91,165,6,22,81,162,86,126,173,209,216,244,239,213,169,178,172,148,205,43,208,51,159,191,226,211,181,89,198,66,216,193,228,18,177,140,249,85,145,253,157,58,175,56,211,160,105,5,160,154,145,245,52,246,118,199,71,96,118,153,33,95,215,38,135,28,163,27,142,126,131,33,25,57,131,100,143,29,252,131,125,97,145,51,75,210,99,107,115,108,142,255,86,19,15,80,119,12,100,29,250,232,1,90,205,168,81,58,6,206,193,232,183,94,41,167,107,141,178,86,40,229,44,189,131,211,154,43,202,147,145,20,55,6,119,6,116,13,205,140,118,19,164,247,7,106,74,246,176,111,57,99,76,
 74,251,39,92,112,166,237,189,64,100,148,174,105,67,62,12,169,170,229,27,127,56,51,31,110,36,28,252,136,202,170,50,15,55,85,108,229,80,110,205,182,142,161,87,145,82,216,126,178,249,242,17,82,154,30,32,169,66,7,23,225,191,94,64,152,90,199,40,163,148,66,238,131,5,167,172,0,32,56,40,88,20,197,38,124,79,241,41,163,201,254,26,35,33,183,104,198,82,242,124,165,43,25,165,124,216,152,57,223,246,206,80,163,202,122,77,254,123,130,226,232,96,158,57,192,148,250,187,194,123,82,190,129,97,152,49,193,29,60,196,157,141,14,193,93,255,119,182,118,244,145,8,86,14,73,151,110,198,199,24,248,44,58,213,201,247,136,159,29,209,16,143,137,17,194,24,45,28,168,194,138,234,130,40,215,75,112,237,209,192,33,75,207,15,74,174,0,163,54,250,3,137,40,81,113,21,205,134,164,232,246,87,108,202,8,164,210,16,64,53,168,251,46,204,125,138,138,148,118,139,23,254,1,112,25,99,134,42,192,43,220,181,148,120,97,19,162,250,105,52,58,245,123,52,232,95,172,128,227,251,156,117,200,20,242,1,45,78,151,249,84,10,124,77,2,244,237,15
 ,97,0,153,65,246,130,239,69,98,14,134,102,52,19,221,136,129,35,79,221,94,184,219,242,163,150,232,65,91,181,12,48,163,71,216,55,224,140,234,144,46,204,149,160,251,32,6,84,233,180,56,83,159,187,115,129,225,157,207,15,159,15,35,228,87,94,249,32,73,117,182,114,245,23,248,136,147,182,60,68,48,28,193,84,154,134,250,36,231,196,204,97,153,193,186,224,74,125,39,103,172,154,62,200,147,186,247,73,212,80,2,10,214,157,7,6,150,58,182,12,252,155,195,29,68,187,2,153,68,33,28,156,40,236,235,102,7,171,118,237,98,82,160,23,148,10,40,176,93,37,207,16,212,140,246,175,77,12,219,253,60,30,73,190,225,245,106,195,28,108,174,95,43,153,250,11,191,153,95,97,49,116,111,122,229,57,221,148,157,239,141,198,250,80,170,56,87,18,212,17,174,198,50,84,228,193,176,158,65,194,49,52,186,48,199,164,77,239,149,113,173,201,40,81,24,29,166,135,211,48,223,221,200,73,108,8,107,59,139,196,93,223,153,46,251,204,12,12,142,35,238,176,29,2,20,111,30,8,77,104,168,33,238,209,244,126,69,53,188,167,28,22,42,53,165,244,23,25,196,
 116,173,232,117,180,229,242,69,7,53,32,107,33,55,68,3,245,119,180,19,115,73,247,66,170,58,46,5,43,150,182,179,10,28,19,212,38,233,70,45,218,139,96,149,9,192,86,103,11,240,73,214,157,95,195,77,147,222,35,240,110,77,214,43,64,60,254,168,107,2,20,217,131,147,115,113,207,56,99,207,183,14,98,119,144,39,32,222,197,163,135,101,200,124,227,74,238,121,182,179,96,129,192,184,30,162,104,91,212,248,32,126,169,254,211,108,217,238,179,126,131,15,152,14,204,154,135,131,23,236,88,158,166,84,122,112,238,138,189,160,252,134,251,157,136,31,26,90,5,118,104,161,47,125,93,198,100,45,104,190,47,167,120,216,36,163,180,148,98,137,179,79,112,220,10,212,170,210,49,137,126,24,215,215,198,134,149,12,7,182,50,217,38,202,213,251,80,204,184,129,155,140,211,207,134,193,191,125,176,243,185,97,124,220,228,220,156,248,55,127,208,29,172,178,120,39,46,237,77,123,131,254,222,67,7,53,131,157,175,104,53,231,50,176,77,25,19,160,225,59,138,109,38,254,167,120,25,144,25,40,156,67,223,158,21,52,236,238,223,183,192,225,1
 44,103,200,117,11,199,152,113,28,240,244,229,224,206,206,84,122,212,38,49,65,25,216,164,133,197,128,219,57,164,80,52,114,190,3,49,121,21,242,62,178,197,141,178,145,76,102,112,139,62,230,141,245,197,163,113,78,130,140,110,33,185,11,131,168,90,168,35,203,72,70,138,221,24,136,255,31,107,163,53,248,191,191,163,245,83,146,94,79,43,93,239,94,168,240,138,14,27,187,11,126,5,111,255,65,201,194,149,24,1,251,230,246,134,251,135,5,233,190,136,163,75,193,171,146,51,82,32,166,95,206,228,203,6,176,243,130,3,182,107,105,243,58,175,113,87,121,8,218,0,72,106,145,15,208,236,6,129,159,213,177,22,241,207,1,97,93,145,68,110,174,182,200,233,62,67,5,223,95,122,246,77,56,49,8,77,31,94,38,121,171,137,234,93,157,2,23,132,39,52,248,56,52,116,225,158,31,212,57,174,120,231,14,112,211,102,92,241,226,121,254,182,108,133,183,133,118,220,237,41,106,21,156,108,6,131,112,222,193,92,171,99,255,189,203,171,188,102,150,127,72,150,77,53,18,170,236,56,193,52,98,116,183,133,181,143,216,20,197,169,111,111,24,137,24,2
 10,210,51,142,248,108,129,177,122,78,171,88,131,126,218,57,172,206,184,104,21,61,245,43,218,222,198,123,32,220,116,188,103,44,106,165,39,29,183,37,234,141,107,40,147,201,204,67,232,221,69,109,93,2,96,50,134,16,198,172,73,140,71,126,81,12,242,197,118,225,25,0,44,202,239,238,28,99,73,213,188,191,175,149,80,76,210,154,87,126,59,40,84,194,40,244,5,201,129,139,196,127,111,22,61,205,43,137,73,187,45,224,124,245,47,82,91,46,228,77,164,90,46,104,213,168,143,194,162,87,187,107,29,243,128,61,60,25,40,69,115,165,16,99,59,202,213,122,138,147,99,136,253,74,168,124,236,22,9,113,173,8,83,214,254,18,27,95,112,215,84,170,226,176,41,154,225,38,155,134,161,227,67,95,168,151,14,187,234,240,248,217,50,221,236,120,110,188,100,154,197,67,165,95,37,90,58,135,40,139,17,189,142,74,255,78,16,87,27,39,164,24,144,3,132,29,120,65,164,162,124,144,207,238,218,53,54,171,198,88,154,18,99,58,4,123,2,29,196,36,154,96,33,199,18,130,45,255,141,174,47,80,145,15,99,199,94,182,229,199,196,234,105,199,91,228,231,197
 ,121,142,151,253,238,38,130,77,167,92,168,188,34,172,140,104,112,93,233,197,33,176,79,246,252,202,64,155,139,81,28,51,7,162,198,223,38,90,247,8,173,180,50,115,215,232,87,211,100,225,37,110,49,1,178,4,1,12,128,37,189,126,126,134,61,72,241,43,77,162,68,58,10,235,206,92,140,199,38,101,157,144,79,102,114,0,173,246,244,68,119,45,37,136,132,120,3,41,30,81,161,64,160,92,127,192,224,12,106,74,20,159,124,54,62,46,13,221,119,66,238,39,6,88,38,138,115,228,170,201,87,77,209,162,248,10,48,24,159,107,31,213,236,162,1,72,238,16,182,34,12,86,170,185,184,77,137,135,47,121,148,36,21,229,48,197,103,182,191,73,98,131,88,12,46,120,110,6,221,106,131,145,117,73,135,5,26,245,32,37,109,63,96,162,3,102,253,149,219,54,115,149,24,29,160,192,168,67,82,162,73,125,104,203,31,68,125,201,49,116,203,113,37,78,29,241,7,20,59,184,168,73,253,216,30,236,124,62,196,60,101,224,125,88,55,96,251,26,49,174,45,94,85,191,172,174,30,16,170,43,24,255,93,66,233,228,212,180,252,54,84,205,61,239,147,154,152,99,2,22,10,244,7
 7,217,230,154,158,176,214,233,218,115,70,238,162,52,59,31,146,71,223,23,4,56,43,174,176,223,201,97,233,156,31,95,93,118,144,171,219,233,241,200,28,190,8,195,157,63,127,197,61,61,77,48,182,40,223,124,7,198,6,194,250,69,169,224,46,109,183,213,41,76,107,234,102,6,131,107,34,16,52,235,125,51,8,6,109,229,118,169,181,109,51,98,90,253,155,53,146,60,252,89,89,20,183,172,229,169,124,105,41,205,188,114,199,134,208,129,76,242,39,88,163,157,44,176,121,118,220,32,247,139,81,164,146,100,4,114,243,238,192,249,110,175,157,130,152,29,79,220,83,113,85,178,247,88,60,133,135,140,249,40,157,95,10,36,225,30,120,249,205,177,108,23,188,178,154,178,53,38,244,245,8,15,185,123,77,131,193,247,193,226,208,85,68,155,50,188,152,17,55,13,104,94,230,224,90,76,41,207,218,149,26,198,119,227,185,236,189,89,79,210,156,180,3,237,153,95,134,190,48,185,105,180,211,98,59,25,185,39,18,132,14,249,174,9,103,251,152,170,132,186,131,87,144,4,21,25,118,9,194,160,252,129,110,1,199,14,53,91,164,218,37,192,25,83,149,185,204
 ,157,146,41,178,18,243,12,89,19,162,120,131,98,16,138,27,167,23,187,3,108,104,240,201,35,135,54,123,42,247,63,180,54,139,64,41,127,150,132,9,82,67,3,172,148,214,135,47,92,212,81,124,95,19,90,187,146,78,128,34,19,226,249,52,207,22,75,110,45,8,173,60,86,233,137,100,44,6,156,39,77,216,8,3,183,116,146,112,71,9,52,49,3,178,85,119,224,2,172,12,138,84,142,153,254,227,16,34,46,32,42,98,40,68,9,63,4,65,221,214,242,169,113,157,66,232,79,8,132,39,100,23,181,44,50,182,5,140,21,76,151,112,110,117,72,34,182,129,102,24,255,206,140,135,142,166,17,60,73,136,52,255,58,9,137,117,191,139,93,199,88,26,186,92,118,160,223,66,130,193,98,97,147,251,134,93,159,244,206,185,250,220,76,127,197,56,234,78,118,55,231,239,112,23,232,34,158,252,241,108,135,238,154,114,36,58,89,18,200,10,197,75,39,80,23,46,206,134,175,202,61,135,24,27,92,170,174,23,96,98,73,117,226,20,168,94,127,238,31,168,7,175,44,144,202,200,249,234,180,107,100,73,87,82,103,73,33,99,36,242,197,239,20,183,72,44,39,71,221,237,140,221,207,74,1
 71,253,210,59,83,136,119,14,217,144,116,33,59,226,136,22,119,45,8,173,219,1,35,121,198,62,114,252,134,172,121,55,182,37,191,226,251,63,127,165,229,209,17,242,19,233,69,170,230,109,90,123,24,217,226,83,31,100,196,215,20,58,34,4,192,56,40,123,225,43,27,25,61,90,232,94,151,20,160,167,145,4,69,211,184,240,37,91,129,57,59,96,95,14,42,52,218,128,81,66,217,25,124,11,204,16,2,112,19,239,102,88,186,18,31,186,70,249,20,103,185,133,234,121,234,151,47,120,5,56,10,133,248,238,180,91,190,106,232,60,33,134,191,240,107,1,178,177,159,175,169,243,214,37,218,15,79,246,126,225,161,138,250,83,29,121,155,86,5,249,63,150,202,168,191,111,121,11,176,153,1,130,149,148,237,232,41,91,214,31,102,199,138,21,23,144,10,217,131,159,162,214,57,139,75,9,157,36,197,239,180,61,225,43,120,44,7,62,66,28,6,144,46,25,38,85,52,61,61,165,142,132,27,116,154,77,141,66,78,72,177,11,96,5,180,181,83,186,67,118,250,218,179,232,49,44,126,46,219,61,188,249,146,140,160,126,45,218,45,228,197,58,18,187,237,105,60,2,77,65,164,52
 ,79,28,202,186,110,66,132,150,205,109,136,207,19,119,232,101,18,32,219,3,106,200,230,213,176,191,74,215,174,217,18,47,74,140,107,42,67,11,57,202,128,162,207,236,26,15,87,229,171,83,19,120,168,164,24,18,231,253,102,101,87,26,247,171,39,206,133,210,152,183,5,156,175,20,214,54,198,52,73,239,144,105,20,208,52,112,11,103,176,34,89,139,23,56,97,95,230,95,241,62,119,109,47,233,252,22,210,40,18,81,153,238,75,115,211,206,49,139,119,250,57,52,173,9,210,131,206,19,106,168,86,166,19,88,208,172,175,239,111,75,135,157,17,82,193,201,68,241,1,18,108,123,48,80,32,39,200,244,182,110,51,59,244,122,165,141,148,119,6,88,105,150,33,74,176,168,67,177,191,71,113,119,62,64,141,94,120,75,199,18,166,126,101,15,196,165,128,205,25,124,13,60,176,126,180,34,74,183,12,65,1,55,43,234,231,91,90,85,22,108,65,48,38,92,92,208,205,61,250,162,35,41,136,74,89,143,39,8,217,166,4,200,131,233,27,76,193,254,179,63,122,178,112,82,242,71,65,54,71,99,22,198,134,242,15,214,5,233,109,247,31,69,206,104,16,234,5,114,92,36,67
 ,254,172,129,191,66,93,110,239,35,237,239,49,145,129,107,209,192,104,167,68,62,141,176,84,158,255,56,173,166,94,237,164,236,50,91,11,177,63,141,61,140,178,63,187,238,60,55,179,60,166,10,137,195,52,83,44,20,95,226,51,141,98,83,53,1,185,68,22,219,127,62,29,160,49,104,254,175,9,126,179,123,173,15,49,153,92,222,139,214,136,201,224,181,93,185,232,46,154,43,163,201,18,23,150,187,224,75,16,128,205,32,92,122,4,5,95,199,127,88,121,61,163,178,198,198,88,113,225,156,92,2,178,182,145,56,73,176,129,123,12,99,30,119,151,172,153,11,252,74,226,142,213,185,203,69,37,124,141,138,118,29,73,190,20,150,2,249,69,146,64,176,77,149,178,171,48,139,85,133,239,43,16,77,244,99,196,57,6,188,243,191,104,61,104,25,130,174,179,182,115,223,24,206,97,163,144,151,205,185,38,83,50,222,97,204,117,134,98,217,1,83,214,179,212,40,10,46,159,49,141,113,239,247,30,51,218,148,113,234,22,93,136,117,69,161,162,208,34,91,84,227,162,165,15,194,142,169,187,194,91,114,107,140,38,14,17,194,250,167,109,28,12,204,122,33,82,92,
 27,104,84,81,253,1,143,200,74,130,155,193,43,144,187,71,150,160,146,89,192,73,91,244,76,145,253,89,208,195,156,185,9,179,99,168,56,21,59,54,142,73,46,233,230,94,216,117,12,92,235,238,252,223,119,61,177,13,45,105,87,207,154,213,56,233,152,189,18,57,93,61,147,128,97,83,187,137,15,44,106,24,42,111,203,234,130,156,128,22,105,1,157,248,42,207,159,142,215,21,50,71,120,194,151,108,184,23,120,164,71,4,11,184,123,33,179,192,117,218,40,69,1,52,1,35,219,122,49,5,77,114,231,144,7,248,176,212,74,109,53,144,188,70,172,62,159,84,86,121,236,30,130,124,105,200,53,12,87,5,52,134,214,78,81,231,59,191,252,52,75,87,196,155,143,107,27,206,180,89,69,239,73,197,191,232,38,207,29,241,162,33,151,243,51,234,85,115,0,9,144,53,242,235,22,207,129,171,53,114,190,206,90,73,122,7,132,173,70,133,26,207,115,38,90,71,38,218,63,150,20,175,133,96,131,42,88,217,139,122,244,137,12,197,24,50,76,214,90,156,118,241,211,232,140,97,25,97,104,139,116,59,113,190,227,149,69,96,240,218,224,171,182,156,136,229,226,139,68,11
 4,155,42,243,206,96,194,142,252,204,0,101,198,2,237,178,31,45,72,166,120,57,121,20,229,148,70,15,19,118,33,43,9,7,166,117,57,38,251,129,110,49,114,229,249,95,229,105,228,152,31,135,174,171,160,63,190,16,193,52,50,65,150,14,20,183,145,127,21,232,207,32,132,209,115,40,33,156,170,228,131,146,181,255,73,113,19,104,195,166,9,235,188,158,161,248,217,178,15,218,191,132,24,251,42,17,211,197,52,147,167,166,29,113,214,162,14,244,140,61,170,177,228,44,138,249,204,2,116,162,112,206,207,112,148,120,85,116,75,225,124,224,78,55,203,96,242,5,5,156,255,206,218,202,184,139,255,48,93,148,176,221,108,108,165,67,82,76,80,95,64,137,239,192,136,25,33,189,133,13,175,26,30,69,151,51,90,85,227,165,78,80,193,226,30,41,4,92,195,45,187,39,99,246,104,140,22,183,18,84,242,66,211,196,20,149,183,203,91,75,185,141,219,169,201,145,28,35,41,170,51,54,11,85,44,218,93,228,48,217,180,71,199,138,83,88,233,197,51,1,137,31,243,225,195,12,20,43,72,37,203,192,233,100,153,225,149,74,162,219,71,124,49,66,215,219,66,112,
 139,161,216,162,54,222,233,137,194,164,200,197,241,2,17,57,198,167,73,234,194,171,20,149,223,58,41,159,50,102,196,186,177,238,58,249,160,82,174,249,71,68,140,247,107,165,48,27,52,59,162,33,178,122,28,112,121,170,0,54,208,81,21,111,239,29,212,4,216,210,207,103,54,84,58,22,45,149,145,235,42,164,158,207,128,113,233,237,203,227,100,81,42,240,225,14,149,11,79,89,131,189,253,245,165,29,87,111,71,96,83,122,55,238,189,20,244,45,253,248,10,59,166,179,230,116,2,192,130,101,92,82,172,89,115,68,25,0,165,78,107,87,100,131,16,57,7,118,73,14,17,232,200,115,147,248,251,141,240,167,110,245,15,94,68,224,120,83,214,194,215,204,76,31,231,39,11,6,91,243,4,107,238,223,48,95,91,240,31,29,29,184,187,37,68,219,114,86,148,128,39,175,102,29,162,171,114,72,219,129,7,203,252,143,30,241,220,160,138,109,233,233,27,96,237,52,188,192,229,33,55,161,177,104,60,188,252,101,240,69,65,6,87,20,187,84,31,117,146,83,38,184,205,29,83,29,88,219,212,44,52,234,73,37,70,254,178,138,212,91,15,239,135,159,247,152,199,25,9
 9,127,15,208,22,39,52,132,220,182,185,123,23,174,61,237,46,174,25,179,92,74,238,168,249,124,80,252,36,81,31,69,31,114,188,226,230,107,21,215,159,215,97,45,144,3,243,102,183,128,74,206,36,102,34,35,78,199,164,124,140,40,189,64,32,84,191,245,139,223,49,217,30,241,117,188,96,25,166,203,66,50,140,202,48,94,126,165,193,69,170,41,212,78,128,228,48,41,248,77,194,189,198,0,63,39,184,195,160,59,205,195,138,84,214,128,56,7,72,96,116,127,148,22,33,67,237,120,170,49,32,127,244,70,53,29,110,144,213,195,0,254,58,248,114,144,164,123,75,172,8,58,220,1,25,19,244,216,62,244,116,147,149,49,90,164,136,198,133,155,53,224,15,80,71,184,41,5,150,65,132,70,71,108,150,231,236,34,90,62,63,240,176,182,172,164,211,168,165,229,200,106,104,53,212,150,93,44,17,137,132,218,108,57,98,4,98,189,242,81,92,130,205,153,25,111,212,220,241,232,13,205,122,198,150,95,113,69,162,0,133,49,114,58,5,9,84,67,90,17,158,80,151,47,136,86,214,28,115,226,163,122,34,71,141,187,221,37,45,9,123,21,19,0,159,246,208,38,171,202,142,
 90,233,74,243,157,131,18,169,177,1,33,8,6,88,155,237,151,152,58,195,66,104,123,213,136,216,153,186,178,197,232,191,19,57,19,253,51,162,158,91,94,124,52,9,243,127,131,27,237,217,109,180,98,110,206,222,116,138,11,16,192,180,135,51,168,61,208,248,233,18,69,224,101,135,227,210,141,13,216,176,129,25,196,23,108,12,157,227,17,99,168,253,36,118,76,36,26,155,77,224,93,51,158,255,171,223,62,36,79,243,224,14,158,210,75,255,212,38,25,101,117,246,97,44,237,4,103,5,79,89,8,30,179,146,185,155,67,91,175,247,215,136,159,14,194,81,82,186,90,26,97,152,51,135,171,25,169,23,168,21,255,161,138,121,202,240,175,114,120,99,134,33,5,101,118,187,218,12,178,243,74,139,150,45,152,51,195,108,162,230,39,64,205,103,241,140,82,248,50,27,11,226,91,32,230,251,56,15,139,251,191,132,37,57,32,106,142,49,233,188,133,206,147,6,60,6,2,196,90,156,189,249,0,238,25,143,5,200,239,1,173,69,117,21,199,50,99,31,136,52,38,39,183,20,147,98,245,133,54,222,233,188,98,34,180,216,91,211,27,206,242,186,28,195,140,185,220,105,39,
 166,2,63,93,246,63,108,117,8,220,7,190,15,229,78,85,193,76,59,40,13,233,74,198,124,19,7,228,238,102,39,7,92,231,229,104,15,220,168,51,173,54,86,79,134,198,204,59,106,9,109,49,248,78,97,106,240,253,75,198,222,74,109,126,135,4,135,207,66,13,19,111,33,155,185,151,159,162,77,98,192,153,73,178,214,15,181,144,44,80,115,138,93,7,69,170,228,29,65,103,191,207,44,123,127,174,168,149,209,72,61,80,46,213,225,7,189,83,141,9,157,78,7,226,205,81,167,10,55,104,131,232,152,163,53,75,207,57,245,225,207,75,165,178,124,93,242,119,163,120,235,108,235,182,110,73,62,105,112,172,195,142,162,91,86,237,21,231,51,1,193,62,209,65,193,84,202,191,20,129,190,157,121,213,187,217,143,73,36,165,159,186,75,167,51,3,215,79,27,185,112,202,195,96,52,74,245,141,202,128,119,114,242,170,151,77,166,155,108,212,192,164,17,43,42,48,210,136,169,200,252,44,182,167,53,71,119,57,128,88,149,23,67,158,195,246,217,38,17,136,134,156,250,8,49,130,8,72,40,59,183,119,131,101,121,84,47,74,18,241,254,249,155,26,239,88,49,100,180,3
 0,40,44,208,108,40,14,232,248,53,235,179,255,93,71,81,136,230,136,66,24,115,219,117,7,7,212,6,5,245,209,111,224,117,223,251,42,147,209,101,204,146,220,30,66,94,128,32,61,144,54,11,198,195,169,82,236,23,134,86,79,142,1,174,51,51,96,125,179,152,180,243,180,52,25,210,237,83,246,202,27,146,237,95,134,217,14,118,180,24,51,111,204,206,145,171,6,109,48,183,239,64,69,146,239,242,116,116,212,68,214,63,66,105,22,73,110,52,48,91,115,171,55,103,204,154,112,220,133,5,251,188,118,88,67,187,24,228,34,203,184,48,126,227,11,219,132,5,104,19,228,152,249,166,59,189,179,127,252,7,51,245,22,12,114,123,158,212,62,173,91,221,198,18,163,242,138,29,175,4,33,211,232,106,219,11,146,214,65,232,65,172,184,241,81,25,164,88,143,245,9,218,101,43,0,117,203,231,235,196,42,13,114,205,176,96,73,1,5,25,240,104,118,70,230,156,232,137,109,251,107,146,147,104,124,133,223,141,190,250,212,87,206,232,69,123,82,181,212,182,82,236,223,132,218,19,105,251,112,101,12,208,35,52,171,56,151,128,102,64,33,41,109,0,10,23,3,92,
 52,143,217,230,45,60,137,162,249,149,105,101,196,162,173,181,170,30,79,186,171,229,34,58,155,237,12,125,252,68,187,142,15,177,163,193,150,74,219,23,108,102,145,198,105,199,168,254,159,224,194,55,13,252,118,153,186,242,137,116,214,127,59,102,156,129,159,138,51,245,72,8,145,74,36,105,221,215,154,33,73,237,181,62,145,128,66,165,26,45,72,213,21,232,127,21,8,30,109,25,53,162,103,240,215,16,165,133,170,230,225,239,58,126,190,109,225,72,229,202,0,241,77,96,59,18,250,116,120,103,21,252,70,190,186,108,146,85,193,59,233,250,80,231,53,179,69,41,173,211,140,24,213,19,232,105,176,136,109,174,238,64,1,176,118,252,187,128,110,186,168,182,34,26,13,202,236,121,252,194,23,40,134,165,176,145,33,3,186,34,33,32,91,203,242,30,26,8,181,250,151,17,83,199,183,51,121,28,62,248,227,131,227,229,191,4,140,156,43,18,11,91,13,217,167,99,207,84,89,227,225,112,196,237,249,211,224,248,216,148,119,196,73,164,239,26,110,184,61,35,78,13,86,226,198,105,157,148,61,91,183,238,114,211,163,99,235,178,66,6,155,68,229
 ,239,146,47,84,21,204,67,63,93,61,123,235,69,165,106,186,160,189,127,128,18,130,132,188,185,99,53,158,198,32,186,161,15,228,15,179,144,150,76,234,20,233,117,80,182,53,67,105,150,152,110,121,251,35,208,116,140,201,76,248,165,61,28,128,2,23,127,111,123,187,231,230,125,105,31,75,2,129,198,58,223,14,169,162,141,185,229,155,56,204,171,5,112,92,85,143,212,138,148,16,151,184,77,172,38,236,140,63,244,13,255,109,39,205,130,119,184,20,136,179,200,76,250,54,78,79,201,107,115,11,145,196,118,89,106,37,161,21,248,130,234,114,196,190,101,112,110,213,36,202,208,188,233,102,4,181,188,153,6,83,120,34,243,218,98,71,170,168,220,91,174,71,199,222,121,200,111,221,130,204,39,195,86,84,62,221,96,123,245,245,177,117,158,212,229,249,229,36,141,69,56,32,117,124,188,144,95,190,209,115,217,141,135,47,87,56,137,50,154,168,36,90,243,248,1,99,110,7,210,202,102,69,72,70,24,140,146,8,202,245,231,72,154,27,153,97,210,243,135,93,202,95,22,210,133,229,78,204,197,63,188,6,243,97,149,209,192,170,46,244,65,155,169
 ,58,214,28,92,101,165,29,0,101,127,177,243,210,42,54,222,92,28,187,214,135,50,189,51,102,177,175,45,47,251,94,96,89,130,242,195,69,234,225,171,116,207,18,195,46,173,253,48,82,89,38,231,233,3,46,10,197,62,147,5,18,87,211,171,14,150,216,40,49,93,234,36,88,247,152,118,44,69,91,174,182,113,158,120,226,23,109,34,165,235,230,197,15,55,170,71,146,83,109,46,34,213,50,14,131,131,63,6,240,243,174,248,52,136,149,49,71,188,237,255,124,58,153,86,39,89,224,147,61,26,175,200,161,142,214,25,158,64,169,30,94,112,110,95,233,238,17,246,175,162,255,230,43,73,64,162,113,53,174,82,250,74,96,253,74,97,172,187,154,162,166,250,129,214,215,183,33,149,203,43,254,117,36,107,76,88,49,161,28,138,45,188,149,182,22,77,190,149,142,42,234,99,52,133,113,161,242,112,148,182,146,223,15,77,242,171,175,77,233,240,38,254,195,252,49,218,28,46,89,10,185,246,189,166,133,95,55,192,132,57,167,214,151,144,161,19,39,201,170,196,166,89,91,56,74,194,137,92,194,165,197,126,229,117,176,201,189,139,57,111,145,101,132,133,4,93
 ,204,68,24,222,149,195,75,170,229,11,90,213,151,70,132,27,166,179,124,186,157,230,211,100,10,208,23,230,192,105,206,71,191,244,182,215,22,54,132,16,203,200,21,219,75,98,228,55,175,191,109,162,118,49,216,250,207,251,76,122,100,111,120,147,90,189,44,198,147,170,239,108,160,15,163,105,84,125,174,224,202,49,246,45,45,211,236,111,58,0,230,105,133,182,235,31,89,71,17,3,73,52,124,228,226,249,154,229,144,188,84,232,38,236,75,55,100,111,104,219,110,99,162,165,86,98,232,187,167,164,137,29,156,30,29,114,23,170,199,34,141,76,4,238,7,241,19,87,32,82,229,177,63,225,74,203,197,152,42,67,8,138,29,160,14,165,144,39,188,203,90,186,55,58,238,230,112,186,136,82,102,157,2,170,14,61,177,191,12,49,16,210,30,123,90,247,101,42,12,112,113,174,140,144,142,95,197,184,51,65,120,100,252,109,76,40,221,150,28,204,184,212,37,6,115,145,157,184,221,26,25,119,89,246,114,83,219,118,250,186,3,149,153,215,44,47,112,28,242,239,97,38,223,53,86,92,24,74,192,5,149,181,19,208,117,107,241,143,62,134,154,74,247,225,58,2
 3,239,64,56,216,86,67,201,249,23,33,241,2,249,29,214,229,51,58,242,235,16,129,43,16,18,100,182,78,95,152,212,244,168,127,235,234,199,128,251,97,90,144,22,160,208,15,95,95,144,228,199,181,160,204,19,240,216,121,190,232,81,65,122,9,200,34,244,126,234,189,46,2,56,61,97,59,82,14,17,23,15,127,191,253,6,38,171,20,254,99,231,230,134,90,247,239,157,148,253,163,204,68,38,38,73,3,251,128,5,24,175,168,162,85,40,34,31,164,187,165,116,24,98,19,23,133,234,29,248,161,251,117,123,61,207,109,58,166,90,167,13,118,175,28,215,127,15,155,27,129,118,83,200,96,90,139,60,48,166,170,18,204,226,54,14,157,220,224,222,149,124,193,47,255,5,197,71,156,20,240,170,202,242,223,239,115,40,90,250,44,119,71,197,187,238,131,17,249,245,41,184,78,168,155,15,180,215,237,34,155,124,122,102,175,119,232,168,64,202,4,101,129,181,112,215,198,193,151,66,134,103,96,54,75,94,38,69,178,99,18,223,225,126,129,25,178,46,242,20,92,156,207,177,17,66,225,176,214,219,146,99,98,73,53,214,236,177,233,191,155,200,207,4,176,106,46,14
 3,222,196,56,156,103,216,0,51,23,243,148,96,93,56,174,32,195,50,219,187,255,43,20,187,11,170,191,94,100,130,88,156,220,7,90,99,77,9,137,54,237,50,196,5,229,167,123,198,216,79,79,12,153,82,96,142,80,198,207,49,233,153,21,65,100,53,18,137,81,230,110,150,67,119,113,184,83,181,193,193,218,135,196,213,60,190,37,155,98,8,237,196,8,200,1,106,102,154,230,165,142,218,83,69,205,212,125,68,62,95,219,26,169,143,159,11,255,38,127,44,80,185,29,219,70,66,129,224,156,12,80,82,85,229,139,148,247,70,23,77,124,201,38,166,24,115,56,90,110,227,21,197,141,166,108,112,20,167,82,186,151,145,134,249,211,18,109,175,145,60,193,87,10,28,72,44,192,61,86,53,164,202,146,180,217,223,33,147,240,146,125,111,205,199,224,196,79,10,197,138,149,46,133,162,9,184,134,34,220,191,174,62,188,120,132,56,134,238,12,43,163,15,73,165,17,87,116,159,123,217,213,109,22,54,32,130,232,130,224,66,132,136,229,106,45,38,56,193,83,154,129,166,106,189,223,135,202,246,203,129,12,128,158,81,255,92,101,228,62,237,190,15,98,182,67,55,
 142,96,33,146,191,21,21,64,43,30,204,17,222,145,106,20,116,57,121,136,127,11,254,138,188,185,150,50,155,210,255,159,214,34,166,240,44,143,113,1,138,116,108,241,88,15,125,156,82,129,129,190,66,203,120,127,170,110,27,156,108,149,112,201,25,169,10,71,146,195,229,73,50,227,48,23,40,95,12,201,220,63,143,119,243,19,79,157,118,69,52,159,161,199,39,190,200,141,232,182,147,192,75,85,57,174,104,107,56,147,2,190,79,20,184,196,207,179,50,188,245,20,148,109,78,254,24,111,155,144,237,61,234,1,67,153,171,233,8,62,189,98,28,182,155,134,247,61,217,133,97,111,221,200,227,239,244,175,17,164,111,66,7,142,63,63,61,219,130,206,15,233,128,235,70,210,181,67,170,137,112,233,38,65,31,72,19,128,195,195,33,84,76,26,94,215,7,72,172,218,130,149,239,229,18,142,175,144,7,224,4,19,123,177,115,229,160,33,90,95,216,12,102,108,239,199,131,198,237,61,205,22,13,119,198,151,144,109,97,163,181,15,91,127,251,200,82,135,182,151,44,196,77,244,232,19,56,168,71,98,250,50,41,228,86,90,119,66,41,133,32,207,37,64,72,119,1
 23,163,231,5,164,128,107,213,232,29,240,222,97,74,59,137,88,93,126,42,17,124,231,219,186,182,139,95,140,29,180,99,47,46,218,9,29,36,255,90,199,79,132,166,14,72,130,155,136,83,126,110,159,112,105,246,181,27,170,232,247,223,169,198,85,118,0,105,2,221,64,221,83,223,251,223,101,137,142,191,204,167,34,106,208,104,128,163,202,102,151,88,57,230,156,112,217,5,195,201,249,62,159,164,146,30,171,153,25,225,48,189,17,29,105,217,79,120,255,88,250,105,146,98,52,13,138,254,65,138,59,112,175,0,36,58,183,58,199,220,151,220,255,86,46,181,25,187,38,24,135,164,94,188,118,214,232,121,5,84,126,230,192,209,239,206,227,241,86,89,58,22,23,178,182,14,191,21,41,63,1,80,255,180,216,243,26,158,86,129,27,43,178,205,63,233,37,6,207,179,135,243,21,77,221,41,61,75,69,186,129,106,50,140,50,180,82,223,239,125,252,166,164,102,21,40,72,247,155,72,18,160,115,162,162,244,53,61,211,107,109,190,59,83,240,140,156,195,107,63,121,200,254,42,106,205,199,168,117,214,239,15,229,190,104,181,150,172,244,196,163,169,225,217
 ,231,93,134,28,175,19,173,103,68,42,55,226,183,182,36,70,153,182,39,38,115,74,27,32,155,22,22,174,3,126,238,64,153,212,4,65,252,16,155,35,18,201,167,164,152,213,144,240,67,135,23,77,149,41,133,114,66,218,36,36,14,36,14,222,44,210,157,154,20,70,32,160,224,172,77,113,10,192,211,76,214,145,10,71,150,89,239,168,34,9,149,30,93,79,115,236,198,105,86,108,217,192,240,38,251,13,30,102,164,98,134,152,210,89,227,127,12,96,11,159,56,129,214,214,35,43,64,49,50,90,183,227,133,248,148,168,253,105,191,69,218,236,170,206,124,102,138,79,98,113,86,187,220,252,216,27,213,80,95,77,137,153,38,202,33,27,15,224,226,222,60,225,231,206,254,84,191,164,144,145,35,211,249,89,209,179,131,152,39,203,243,161,68,77,180,223,213,162,147,33,25,40,151,12,88,89,157,240,198,141,127,107,18,167,253,89,182,180,197,247,207,12,139,217,207,139,31,38,172,193,224,201,218,240,44,29,160,161,54,206,144,85,184,170,158,224,136,189,124,159,111,14,38,218,41,119,176,134,130,152,163,15,10,205,180,49,134,129,1,145,49,172,110,23,19
 4,94,147,211,54,197,121,109,219,137,12,24,74,182,98,119,51,97,245,108,153,35,66,3,14,5,190,119,203,161,174,223,204,210,108,20,131,140,184,226,44,237,24,183,42,87,79,117,18,155,206,176,160,13,75,235,72,68,100,234,154,251,198,190,26,46,24,8,48,20,56,121,215,116,217,38,11,5,246,181,132,250,244,125,16,231,172,162,22,179,14,212,193,161,161,104,132,91,77,210,181,85,160,58,187,139,239,151,242,45,168,236,145,167,31,139,165,18,38,228,199,101,82,20,139,206,181,96,217,155,42,218,137,111,205,240,69,216,243,148,132,113,20,204,145,230,22,99,152,21,115,247,29,30,243,176,51,189,112,170,52,124,152,26,254,239,126,50,153,7,251,138,136,8,149,96,129,139,139,200,159,67,195,51,160,79,160,222,222,248,196,102,48,152,82,221,156,255,247,85,22,86,43,213,132,179,47,201,175,161,120,16,175,168,197,249,26,47,238,55,0,4,70,92,207,226,19,69,213,242,241,7,157,138,168,65,131,24,143,72,107,208,182,221,61,116,78,10,147,184,238,243,219,123,64,174,209,178,19,170,143,16,54,96,4,219,252,173,216,185,228,201,34,92,10,
 75,206,156,193,243,148,149,42,58,138,142,46,73,170,22,216,72,99,141,215,151,127,122,213,13,255,38,229,158,227,172,112,220,143,13,172,184,187,200,53,188,132,138,233,171,115,44,12,121,96,18,37,178,248,55,96,154,94,61,200,140,240,49,234,183,154,156,53,45,59,5,57,208,24,1,156,173,161,152,83,127,121,17,8,31,250,124,146,40,142,59,136,212,234,144,130,175,177,203,75,210,91,233,29,213,60,168,43,83,45,223,96,16,136,81,17,65,41,17,189,213,57,123,241,0,19,151,94,239,130,48,4,196,30,199,50,1,50,17,66,50,181,72,240,243,163,26,212,32,70,241,154,109,54,66,85,181,230,11,106,238,24,219,212,84,87,181,132,60,138,90,53,44,27,168,64,130,37,207,10,0,56,150,102,58,2,171,79,254,55,209,237,109,13,14,58,5,180,195,18,31,88,51,69,214,225,97,227,46,252,69,9,50,225,93,144,213,194,224,72,99,164,84,14,208,252,34,240,199,151,245,103,245,24,15,102,186,144,0,13,28,166,95,151,77,224,204,161,247,132,162,235,98,39,40,128,226,24,161,111,231,117,218,29,105,155,83,58,110,127,181,225,217,113,34,56,217,73,210,63,4,208
 ,201,20,178,11,22,226,64,127,214,126,78,255,158,239,243,216,92,231,75,49,41,209,99,52,148,191,150,13,205,143,219,195,83,58,110,144,50,196,172,204,27,116,75,203,105,80,201,226,230,243,250,55,82,218,219,81,86,239,226,16,226,59,111,46,245,184,71,251,13,48,235,249,192,10,21,199,252,252,136,240,36,9,111,161,235,6,140,130,226,197,96,41,203,202,122,10,66,182,155,122,203,238,48,206,182,124,76,15,7,35,145,202,69,112,107,96,44,169,27,139,179,41,37,146,245,8,36,202,65,242,197,244,53,115,120,225,198,100,195,250,167,16,141,118,252,237,224,17,215,169,226,214,98,20,64,159,60,129,22,68,15,106,236,18,121,195,69,114,165,194,205,73,30,55,246,33,100,92,19,6,212,194,212,8,128,233,175,70,235,238,241,219,68,190,50,133,7,138,83,119,240,101,240,165,104,75,135,91,80,202,232,143,50,54,107,31,129,211,28,8,111,131,48,154,242,227,176,55,209,62,254,233,151,243,102,41,251,188,59,29,247,134,200,82,98,27,250,132,56,76,235,104,58,63,12,232,154,100,0,78,107,197,54,169,89,232,208,153,32,197,86,136,153,16,122,92
 ,2,253,65,253,250,159,254,161,52,8,159,45,144,166,52,225,123,105,23,56,56,36,178,123,221,78,141,216,220,12,66,4,35,141,243,4,92,104,200,253,217,93,33,159,44,14,129,86,63,104,122,16,191,15,213,6,123,7,163,189,51,161,10,206,77,121,217,69,248,243,21,189,211,166,62,25,206,117,154,216,163,204,7,152,147,37,240,176,20,40,42,51,202,20,176,110,155,158,105,221,34,62,70,25,93,243,196,41,122,65,128,69,236,84,153,0,80,145,41,232,91,161,198,20,245,239,21,91,199,102,231,143,189,78,59,149,152,162,160,187,201,178,90,174,132,78,33,246,248,92,66,74,193,123,167,122,181,112,26,162,84,203,1,112,204,18,118,184,78,210,241,70,118,33,2,59,39,127,183,122,167,16,73,249,75,77,166,121,161,55,52,84,4,218,133,51,36,42,77,226,84,73,155,164,221,84,197,178,35,203,171,194,174,115,157,94,161,84,64,178,82,191,158,226,246,93,172,42,34,111,76,60,121,251,129,52,127,109,140,229,165,78,113,122,198,223,28,8,237,41,116,173,97,205,102,48,19,210,27,162,72,254,160,243,63,15,242,206,131,136,202,79,79,23,75,246,11,155,11,15
 0,104,17,86,95,69,232,18,65,12,51,161,206,130,73,10,97,135,25,166,1,122,239,108,21,110,30,32,254,239,113,180,59,76,144,162,107,212,70,160,163,88,25,210,123,190,198,225,164,6,249,49,54,34,68,42,250,157,178,136,207,151,178,109,52,227,200,144,185,17,180,189,209,98,231,229,43,80,114,53,126,180,252,74,68,95,117,217,228,127,137,46,181,235,130,204,86,9,20,185,138,61,98,236,246,146,153,185,199,75,94,137,143,52,190,118,108,154,114,135,156,141,45,131,138,238,56,72,213,31,178,34,208,171,89,60,145,244,132,225,159,191,163,81,131,97,89,51,214,123,207,140,186,177,176,88,154,214,58,74,205,151,20,154,141,1,193,140,146,133,251,152,87,154,209,174,64,65,52,10,59,36,0,114,16,67,241,242,227,10,147,93,112,82,86,229,10,19,189,255,218,249,41,53,243,90,208,31,255,170,44,81,150,123,69,57,198,205,210,127,53,62,24,151,180,125,246,123,168,148,0,159,173,55,16,104,195,26,49,197,182,112,134,126,83,156,137,56,223,227,166,24,240,135,108,210,153,208,20,40,34,186,185,150,175,161,3,226,252,0,105,254,99,177,207,8
 9,227,232,205,83,209,212,95,43,189,197,9,216,5,194,89,79,142,53,153,134,96,149,129,15,155,133,106,101,104,96,133,245,174,106,243,236,21,176,88,248,65,152,96,35,132,28,202,28,152,129,228,24,28,17,71,13,242,105,151,121,1,79,171,105,77,211,105,10,160,158,69,238,152,191,58,158,51,151,231,179,255,141,196,105,63,73,180,253,147,211,3,194,26,35,192,140,212,82,64,31,29,147,67,180,54,51,221,196,184,64,35,194,169,26,167,192,176,216,215,147,62,38,222,56,189,154,174,80,92,196,202,234,17,12,120,67,86,188,245,135,225,135,242,15,134,64,92,254,45,226,50,149,160,216,174,56,183,252,141,219,173,170,95,213,206,23,212,121,79,217,23,171,149,5,165,236,254,198,39,158,76,78,133,9,67,173,94,222,48,113,223,86,228,93,170,224,4,155,8,109,204,68,249,61,144,53,212,102,230,103,202,118,183,75,255,122,234,14,68,5,93,2,14,210,254,218,113,17,248,196,131,142,28,38,204,185,92,164,73,164,226,135,48,97,234,244,233,227,86,121,54,71,131,22,188,47,245,242,103,188,88,221,168,53,45,190,43,222,108,97,186,160,254,202,98,3
 3,76,96,34,39,147,185,15,227,58,154,39,21,18,13,94,205,253,119,136,123,168,33,169,163,11,208,81,112,222,113,211,128,113,250,124,192,149,231,98,181,84,189,250,152,194,30,223,156,137,157,254,156,12,210,233,137,71,144,87,248,133,47,202,2,83,136,143,210,251,231,187,148,121,201,197,230,41,181,0,119,122,107,107,81,248,156,76,244,128,98,3,24,62,81,25,210,86,45,118,191,139,127,211,99,236,160,0,222,133,73,109,187,197,57,168,40,40,229,127,106,86,239,181,1,28,241,213,115,233,100,86,55,134,43,139,153,176,214,97,133,23,169,206,182,222,220,211,13,48,203,41,17,62,98,66,95,107,199,23,41,233,195,3,13,250,166,152,94,124,121,163,26,37,21,26,98,215,123,118,28,223,46,216,182,79,69,239,112,68,166,85,242,80,177,73,156,126,210,11,189,239,146,9,152,186,99,80,210,20,219,169,140,153,6,213,72,169,173,151,119,117,80,195,161,203,89,127,101,252,255,216,238,189,223,89,19,75,81,96,130,68,151,198,212,81,158,127,114,153,196,105,186,168,139,230,139,116,153,109,250,118,43,205,119,97,171,113,37,116,89,89,148,29,
 213,137,47,75,138,222,108,31,171,113,194,146,177,115,165,148,235,121,184,133,230,78,199,180,183,76,88,14,52,109,50,136,140,188,101,156,142,125,167,216,47,104,66,178,197,255,53,241,165,228,252,204,193,124,96,102,28,15,48,184,123,247,102,124,200,0,251,58,94,218,243,103,217,213,238,222,207,100,65,41,247,232,36,247,221,172,113,185,205,59,2,176,52,107,193,79,147,133,91,193,216,153,115,191,80,250,124,124,104,128,87,60,127,141,91,129,137,167,47,119,244,198,13,9,230,174,156,210,99,40,33,49,236,60,149,138,54,113,187,167,32,139,183,163,227,15,112,171,108,130,250,131,199,208,222,185,24,101,142,91,71,228,243,81,248,225,203,61,93,208,12,103,195,222,83,25,31,1,239,129,173,247,229,212,106,146,115,10,59,112,38,125,208,144,220,143,228,240,145,179,41,96,140,246,20,141,59,105,218,182,125,199,91,74,115,182,254,208,7,112,102,136,18,150,154,250,64,212,113,155,147,248,224,186,149,54,126,35,35,160,191,226,114,42,178,122,84,84,242,165,6,191,153,69,35,169,223,29,208,191,22,254,62,53,189,210,255,204,2
 54,123,201,165,53,167,22,108,206,236,189,217,120,61,204,178,86,167,130,32,176,180,228,117,227,43,83,80,51,143,193,228,235,69,32,131,12,108,249,102,36,221,182,36,218,121,126,71,183,184,255,101,5,3,157,102,191,221,215,196,169,64,197,149,35,10,60,89,232,33,34,27,168,147,87,122,126,194,97,255,225,26,55,2,152,168,57,159,47,242,94,185,247,209,78,228,130,0,55,223,85,4,65,213,185,174,59,137,10,123,90,1,4,136,115,30,245,82,230,108,151,146,147,53,151,11,250,9,23,52,136,65,253,231,102,249,246,243,5,232,68,223,138,70,59,177,10,227,132,243,230,253,100,6,62,111,56,97,68,88,25,204,114,187,56,180,180,36,47,63,66,120,161,127,165,11,71,86,150,6,181,31,38,112,74,160,150,156,116,229,48,235,10,16,200,243,48,168,232,164,134,174,149,198,19,1,251,106,95,37,193,205,171,186,14,79,51,137,145,254,11,63,234,223,52,87,177,124,146,66,92,228,0,161,178,237,74,6,227,106,108,96,85,159,239,111,101,102,226,243,132,121,13,229,186,46,13,124,97,140,203,80,77,28,76,160,98,131,116,158,168,12,25,194,219,29,226,227,14
 1,231,69,215,56,100,24,43,133,98,119,166,181,55,132,161,13,234,65,241,157,72,85,135,57,46,103,214,218,104,10,120,251,241,118,245,13,32,222,31,20,75,27,173,193,214,250,131,202,224,50,8,120,238,30,83,130,55,249,12,153,191,251,73,104,27,133,221,151,51,7,24,56,226,71,199,179,40,58,94,223,182,224,88,7,111,172,253,76,186,105,13,154,223,186,245,45,68,230,120,204,101,63,53,42,248,59,233,26,167,159,128,123,154,167,23,107,141,1,140,138,39,193,219,34,206,29,108,180,139,151,213,45,144,145,117,170,98,173,241,162,101,209,21,147,190,84,28,192,152,0,209,178,236,164,113,230,98,71,210,114,107,60,197,124,238,12,109,212,104,146,89,28,159,222,52,97,88,115,189,251,106,12,249,216,82,226,44,214,65,57,193,95,158,75,255,45,233,150,177,216,137,228,72,79,125,246,113,136,122,28,22,249,132,63,30,63,175,130,25,232,15,14,231,144,246,211,12,206,12,25,189,147,235,235,37,8,14,26,114,138,160,119,68,80,14,125,121,3,198,49,144,173,203,242,216,144,31,33,185,29,187,132,134,191,179,98,244,106,7,3,40,130,148,121,201
 ,202,187,105,74,188,232,110,38,200,16,72,41,80,239,16,102,143,70,238,33,232,225,142,182,156,59,55,42,183,198,230,121,230,68,110,229,138,157,154,75,244,236,3,81,122,176,179,47,125,45,70,28,230,58,11,98,215,43,156,12,245,0,44,33,56,187,241,176,29,214,126,111,13,208,169,243,90,192,52,188,243,186,150,116,37,20,186,86,163,199,200,213,77,222,162,81,225,29,193,242,229,192,30,109,55,246,237,145,155,87,29,201,19,239,245,135,32,221,207,243,26,36,178,123,166,92,247,160,18,13,158,217,66,254,166,60,47,254,129,195,185,185,108,218,122,174,150,135,85,40,50,110,15,181,19,2,129,134,154,112,239,237,90,122,36,112,233,34,164,133,186,206,188,217,179,218,88,84,76,103,35,140,227,112,108,16,13,27,151,241,1,91,81,154,250,185,145,213,210,93,103,153,108,41,125,2,73,134,118,162,217,180,240,52,223,252,34,121,249,90,227,199,186,85,44,139,198,88,249,33,167,183,59,137,93,233,44,77,70,110,34,180,93,220,198,41,105,178,200,30,160,23,15,184,130,50,139,106,100,40,68,238,115,91,226,85,238,7,75,251,43,119,95,237,5
 9,175,102,117,170,47,231,65,22,142,190,84,181,130,159,53,142,9,211,67,95,46,238,177,227,158,119,39,71,82,33,58,34,219,84,252,232,127,130,221,17,205,155,116,203,5,24,178,229,47,133,123,108,22,99,179,218,79,243,186,217,45,156,115,135,202,16,140,254,249,181,107,136,118,185,93,8,221,55,186,166,188,212,51,120,87,174,182,88,186,80,62,13,231,7,250,71,7,17,208,205,69,194,186,74,29,38,175,26,234,115,71,210,69,71,55,36,147,11,90,39,97,140,142,41,192,65,254,94,20,149,180,228,208,16,26,33,88,109,192,167,93,197,171,144,103,14,50,223,216,113,250,26,142,23,224,95,131,47,137,26,168,23,49,128,103,81,118,110,141,204,62,194,2,79,110,113,72,86,66,30,130,187,208,142,25,126,68,37,183,215,33,148,92,125,84,134,181,248,86,165,181,109,99,105,179,222,227,22,240,132,111,118,33,118,245,165,31,219,229,1,35,35,180,4,100,240,43,251,56,57,153,139,53,31,136,105,170,75,193,97,95,22,169,166,221,4,196,15,178,93,115,234,253,36,121,63,128,66,36,6,105,57,26,149,99,117,113,208,255,15,211,238,185,245,170,196,228,229
 ,100,92,191,220,65,172,140,111,213,96,253,245,173,11,163,151,225,254,142,48,145,201,169,49,203,227,222,102,12,48,10,78,117,129,83,25,201,104,155,176,119,210,197,43,181,107,155,49,214,103,59,1,219,213,22,66,29,90,133,137,47,84,163,168,181,18,159,69,236,60,125,98,188,210,24,171,191,22,95,16,15,106,220,105,0,182,219,242,121,148,61,75,131,149,107,202,184,5,42,236,20,252,87,52,94,237,61,137,229,28,97,127,136,16,68,43,44,126,143,142,77,141,36,246,166,242,124,30,67,113,39,57,176,213,164,42,73,53,28,201,108,240,58,244,147,239,22,152,113,203,92,210,29,227,241,227,158,94,49,192,91,54,113,246,30,228,163,203,145,2,120,204,65,4,172,2,89,45,207,207,41,74,77,251,245,150,72,93,152,49,194,181,103,240,1,130,92,105,80,112,49,37,66,33,74,251,190,226,48,27,218,146,208,153,206,115,250,112,106,78,114,153,189,60,39,212,253,94,82,248,87,39,36,192,87,138,68,93,44,153,160,173,127,43,66,100,118,76,251,207,120,81,129,48,203,76,101,183,127,17,108,184,99,28,250,24,110,112,67,212,44,242,129,23,103,84,54,15
 6,214,24,7,21,221,19,232,173,128,19,208,27,202,64,109,180,159,68,15,33,117,252,83,93,135,164,151,220,154,109,240,168,225,110,128,76,216,180,130,242,122,229,207,193,60,94,180,25,20,240,50,106,83,43,220,72,60,252,161,171,54,186,217,237,217,161,154,139,229,42,124,221,16,66,83,71,21,54,222,60,2,162,83,139,147,220,238,48,136,93,75,106,211,47,124,227,250,117,104,235,204,128,153,183,61,178,221,147,248,63,60,64,153,161,26,190,199,156,34,244,9,202,97,165,168,187,244,226,179,58,146,229,184,20,205,10,24,206,196,23,118,242,116,1,118,202,85,218,182,44,24,17,208,215,58,124,159,9,113,128,192,122,91,172,188,41,10,136,202,253,98,247,220,0,188,223,203,132,62,251,229,204,9,6,200,165,1,139,58,217,214,21,161,39,138,102,100,107,150,63,247,95,129,35,254,222,253,110,47,86,219,230,102,101,157,204,16,48,107,29,191,173,157,62,57,39,72,176,242,143,16,135,21,173,29,106,1,163,49,145,178,252,82,138,160,162,73,170,129,199,6,56,95,81,213,193,125,243,163,97,79,203,159,157,147,143,238,214,20,222,129,20,245,17
 8,160,244,5,68,42,218,212,158,10,144,189,140,110,92,150,208,202,22,77,54,119,8,78,28,250,24,11,164,116,182,157,211,87,92,70,42,48,195,119,239,177,50,210,16,179,209,9,159,255,104,30,24,21,98,131,29,237,180,218,231,3,104,97,43,76,220,249,184,77,236,18,118,15,204,251,71,146,90,214,126,103,7,98,89,215,9,139,170,73,29,31,187,157,22,223,17,78,6,6,177,207,147,104,231,245,163,193,167,133,179,97,37,207,63,144,103,115,164,107,42,81,149,65,140,148,164,212,26,241,154,33,130,99,214,69,153,4,229,23,136,181,123,70,73,23,248,65,205,159,199,110,169,32,139,134,102,130,17,132,119,158,63,239,126,146,10,134,84,183,155,206,48,254,228,149,154,1,252,121,55,54,216,201,123,71,192,68,231,196,227,96,152,2,214,105,51,28,98,101,122,103,99,236,162,144,158,135,66,85,184,165,214,212,238,79,155,251,231,233,244,36,140,186,149,51,239,244,234,2,210,255,141,218,84,198,71,29,210,180,68,120,55,0,101,129,54,201,232,71,193,56,120,154,157,155,18,236,158,87,88,231,162,30,146,204,134,5,178,253,45,154,212,230,179,122,61
 ,89,74,113,215,241,188,80,220,50,7,86,38,209,137,24,69,196,170,1,34,96,184,103,10,0,173,231,102,193,22,53,116,249,233,89,141,149,148,188,57,240,95,180,248,66,197,94,73,125,150,64,252,72,209,101,192,89,95,217,185,4,88,229,64,166,7,8,188,19,28,254,196,135,67,49,158,172,179,180,39,252,38,90,23,29,214,174,192,151,197,139,153,195,97,133,163,186,147,47,51,27,183,10,66,7,206,230,211,108,135,125,43,37,237,156,111,55,40,19,16,229,227,21,125,50,227,117,110,109,24,105,152,89,72,249,199,193,32,32,210,133,76,179,129,25,146,171,221,205,11,6,221,176,55,196,85,57,33,193,102,208,197,220,205,165,119,121,145,58,207,14,60,222,34,229,128,136,80,163,209,121,212,20,136,168,250,239,171,84,240,186,138,85,18,70,94,115,22,221,61,80,185,108,167,80,26,141,213,236,110,222,96,21,235,38,128,109,245,36,123,40,218,137,182,234,126,96,199,33,155,229,178,206,211,54,69,157,226,168,88,179,32,197,225,109,183,158,49,182,40,41,43,186,199,68,235,195,57,190,58,25,142,37,139,56,231,169,116,22,32,8,141,240,45,148,153,13
 7,58,29,14,165,126,46,204,111,86,125,67,145,28,86,2,0,238,177,208,14,129,168,50,70,186,214,105,224,238,235,177,185,117,1,11,252,188,13,218,18,176,251,96,135,38,112,226,108,229,218,185,168,180,2,100,189,234,147,25,45,109,38,199,235,153,8,51,159,113,111,11,192,19,117,239,173,133,144,121,156,84,111,175,133,32,27,9,201,151,43,192,243,26,175,34,91,57,84,68,244,34,85,115,59,164,138,15,79,14,99,239,207,95,138,31,183,252,197,71,22,22,83,188,247,233,49,12,73,126,244,149,81,143,78,166,55,29,172,7,135,227,113,227,55,196,156,14,40,148,223,172,58,224,183,100,217,133,39,165,196,168,220,187,243,38,73,211,13,125,84,239,91,198,132,7,33,12,216,146,57,240,213,105,45,177,89,66,137,211,104,234,244,61,38,159,173,12,3,148,188,231,71,154,228,24,186,77,70,182,112,189,224,18,218,90,186,248,205,94,58,16,199,131,247,147,44,73,75,159,11,99,234,80,183,4,157,159,97,233,169,144,68,124,123,133,234,254,22,73,96,254,17,197,197,121,111,169,195,75,101,18,206,158,159,155,26,117,114,7,177,168,225,174,132,70,94,60
 ,138,91,33,187,146,140,43,108,121,30,23,98,17,208,89,59,208,209,83,81,73,5,186,69,18,195,88,18,135,199,81,172,207,105,169,79,104,133,236,218,197,235,228,151,224,236,128,144,186,137,54,158,160,121,144,126,188,15,169,237,10,199,15,91,247,97,195,230,199,193,148,247,249,219,81,69,230,92,155,107,81,227,108,33,205,83,129,100,184,183,183,31,219,226,200,36,184,140,234,221,237,184,6,95,15,226,68,224,208,139,138,144,228,69,22,192,35,219,161,102,92,76,72,92,110,193,96,131,154,128,52,164,18,185,197,104,246,152,226,252,192,88,37,126,162,204,109,144,225,35,245,225,208,131,16,67,106,78,220,106,5,202,67,14,48,56,176,36,194,33,200,254,44,113,1,86,237,240,170,108,15,173,132,38,180,220,66,102,222,72,222,127,129,142,33,93,246,70,85,2,91,221,229,245,160,168,56,61,97,29,209,196,78,3,161,142,129,41,233,125,72,91,99,43,37,35,173,159,149,25,67,148,159,44,85,44,239,35,202,82,64,212,89,206,184,240,47,95,243,120,130,245,237,251,173,61,20,104,235,51,154,168,237,26,35,248,240,166,59,250,93,101,95,13,42,1
 1,231,117,209,150,46,228,240,191,173,44,31,169,130,136,184,166,255,60,35,52,211,207,65,145,22,80,164,235,116,238,16,46,125,196,79,220,83,53,148,120,18,186,248,204,182,35,81,188,61,212,149,165,58,77,165,149,186,163,127,201,197,243,28,251,17,152,143,193,85,187,204,180,16,253,83,185,86,191,127,207,110,212,82,213,173,31,174,217,11,53,210,158,31,243,184,1,229,53,238,147,97,66,130,199,68,162,111,75,166,84,150,207,212,171,96,139,109,214,185,189,172,231,128,127,142,218,150,123,45,60,79,52,232,168,84,60,212,69,92,210,174,229,249,166,122,99,190,158,124,72,29,34,143,1,85,187,147,32,97,112,137,122,67,59,126,57,78,237,182,70,97,104,144,17,220,223,77,123,211,149,93,202,128,25,145,90,201,208,4,6,51,77,111,232,40,129,204,159,205,136,149,26,204,97,101,234,243,51,205,179,235,25,230,27,177,154,215,158,85,218,57,174,79,168,189,132,37,211,142,148,92,17,1,43,222,211,28,132,144,103,91,42,253,55,220,153,161,91,255,38,202,166,151,85,84,3,32,91,135,16,254,228,190,40,172,62,198,118,244,118,76,255,161,
 147,182,109,115,209,189,47,131,29,89,213,58,162,230,201,104,159,222,93,86,49,204,150,218,28,136,173,103,5,226,200,5,226,24,203,168,42,53,253,4,161,246,157,203,84,213,229,89,247,207,94,166,181,131,203,104,5,134,63,61,43,129,101,107,11,248,3,151,6,134,23,188,28,193,192,235,153,99,195,44,112,156,62,238,6,34,171,7,216,188,122,182,156,19,96,133,78,15,72,227,81,223,156,91,61,138,113,61,182,82,238,205,17,78,66,33,161,36,246,173,8,163,19,55,16,248,56,179,169,210,40,86,30,107,46,138,193,133,52,31,233,255,75,169,133,239,224,197,215,247,128,203,49,219,88,121,60,222,47,152,149,12,105,74,49,216,187,203,7,73,235,84,137,7,19,181,37,227,5,215,99,37,216,119,136,85,214,184,160,183,14,123,248,199,143,20,128,150,65,156,132,53,222,34,249,118,23,193,20,4,190,230,84,139,86,212,170,192,106,33,235,38,254,156,131,240,75,139,46,17,231,16,159,56,39,128,160,247,158,25,163,130,171,52,233,82,80,194,207,99,254,17,176,41,29,138,245,190,122,51,13,254,45,154,113,51,28,220,30,229,140,93,219,53,126,174,129,112,
 44,214,208,136,170,216,155,164,149,64,103,53,134,121,23,209,28,56,6,73,218,181,233,224,86,116,179,193,90,30,182,13,97,151,54,1,155,238,146,195,154,144,69,97,32,125,135,118,177,82,106,252,1,192,254,220,129,73,211,193,112,53,22,101,246,105,46,239,235,150,159,11,239,170,185,181,207,206,200,68,117,62,84,188,60,181,233,10,3,120,199,194,178,133,16,140,240,177,171,71,66,52,3,50,247,6,226,127,114,163,194,234,55,157,210,219,236,62,121,43,104,130,212,171,25,77,35,33,99,27,108,107,216,200,143,105,171,114,144,86,97,19,108,116,202,60,169,34,176,171,104,153,80,102,164,207,59,137,77,49,79,214,246,113,45,179,89,52,136,29,2,242,15,193,205,134,159,110,223,105,154,24,234,92,86,229,64,100,25,98,199,146,154,34,171,181,146,175,211,157,247,92,19,14,23,114,47,135,32,99,85,222,191,173,241,51,62,163,9,89,91,109,182,194,126,119,32,159,207,37,37,20,49,169,92,129,177,106,170,212,56,127,75,81,107,24,37,115,67,15,36,112,67,146,201,166,190,0,243,227,241,194,32,229,14,198,23,114,85,143,52,33,204,211,25,133,
 18,18,106,237,245,130,101,248,68,215,13,235,151,189,134,95,208,172,213,44,152,66,178,139,131,21,10,4,39,27,16,42,184,122,255,119,30,95,38,229,78,237,27,181,190,160,241,214,100,104,222,35,184,180,22,105,123,79,53,211,190,71,64,189,33,114,17,139,14,238,55,151,223,172,216,42,92,138,111,207,214,231,248,236,86,114,39,165,54,83,244,59,251,27,21,86,149,23,100,201,23,205,54,206,11,223,101,36,224,35,226,164,94,140,124,157,25,115,118,228,252,249,103,121,124,40,172,55,227,96,62,83,122,46,114,27,185,155,11,148,220,1,246,10,107,59,137,82,181,113,69,97,213,86,39,212,113,238,219,24,212,111,234,88,153,200,231,116,14,32,68,200,247,182,92,190,141,51,109,117,156,230,191,223,142,111,202,43,119,152,49,94,188,252,222,119,4,13,221,26,72,23,86,8,15,158,49,135,53,249,238,189,140,208,192,161,145,115,128,230,111,99,229,73,163,251,52,55,173,98,222,41,60,232,47,242,29,126,48,103,110,70,4,115,225,6,238,110,202,254,75,114,209,140,125,83,242,56,33,196,178,150,168,203,32,193,219,150,203,217,105,160,58,218,4
 9,4,185,44,132,14,216,245,59,50,20,3,153,222,59,190,166,76,5,141,55,24,112,131,148,53,65,88,107,51,91,28,210,108,164,78,80,90,18,127,96,26,55,213,192,186,240,101,51,178,234,96,255,218,249,69,157,89,87,63,128,162,189,73,242,123,19,224,49,96,117,47,158,238,139,6,254,200,249,11,69,148,119,236,25,168,163,84,138,75,223,150,60,223,82,190,124,96,30,11,13,226,49,138,125,114,242,49,125,155,189,163,84,212,142,191,188,248,66,81,40,223,35,252,186,68,248,31,149,75,129,85,141,179,136,191,161,148,14,12,176,197,133,87,233,119,203,160,158,188,165,66,214,120,110,207,254,141,138,6,198,83,130,252,79,176,34,33,177,104,147,24,213,5,210,217,200,242,235,227,100,209,29,72,157,11,48,40,47,23,36,130,231,130,211,123,251,20,40,101,46,140,104,5,190,255,73,5,114,60,247,125,41,255,70,212,217,217,151,222,56,8,8,3,134,149,125,114,65,51,32,128,222,191,58,49,89,195,124,218,236,110,238,101,228,205,38,188,166,255,153,107,142,129,164,17,36,9,16,84,163,199,209,100,219,241,224,33,9,226,45,136,157,63,87,94,245,110,1
 4,175,245,130,159,94,167,136,193,209,31,79,194,44,127,85,113,44,163,128,42,223,162,132,238,151,52,210,129,106,177,174,115,63,238,182,43,135,177,48,216,195,114,35,158,252,189,190,58,4,44,98,163,171,222,17,60,84,74,1,209,72,173,55,139,233,164,110,222,155,140,252,167,239,183,61,194,94,54,18,117,111,125,8,162,175,84,218,235,26,180,122,78,202,121,254,150,244,34,16,145,52,11,5,186,188,173,167,199,48,42,199,223,96,172,71,70,243,235,157,204,129,227,245,10,62,0,201,186,35,153,147,243,10,219,180,217,174,142,90,155,172,233,75,193,206,194,100,42,134,159,208,224,183,52,142,240,229,150,179,94,117,76,204,147,169,247,95,231,242,59,115,31,30,65,76,181,205,52,111,218,176,105,122,181,214,51,192,202,33,112,30,36,166,130,177,216,127,196,193,13,42,74,68,240,117,215,201,24,215,114,79,12,137,46,10,211,161,73,3,51,101,193,171,80,204,10,92,229,114,0,109,170,45,25,53,165,26,85,73,176,138,218,95,54,45,202,251,253,240,138,148,90,15,86,198,118,3,216,141,217,172,176,182,107,210,131,105,58,2,111,3,46,129,7
 9,81,97,244,188,171,175,223,22,154,106,217,117,102,104,239,23,218,134,231,101,43,90,80,165,194,36,94,58,255,50,64,117,100,92,22,124,169,151,79,152,110,144,5,31,105,237,116,93,128,65,245,195,162,7,111,151,214,162,109,49,226,139,89,101,140,25,158,95,68,20,152,85,97,223,92,150,10,7,51,175,107,102,177,132,160,15,254,112,181,76,176,253,183,90,90,91,98,136,77,64,173,226,169,26,22,14,68,136,184,153,250,134,75,68,176,39,182,227,0,18,167,106,41,29,177,165,38,50,153,171,110,65,49,126,166,157,81,251,12,220,218,239,117,112,233,39,161,211,119,16,167,205,172,216,102,27,215,179,164,178,254,62,45,232,58,135,250,199,124,83,174,161,89,102,86,144,220,130,89,64,79,36,9,68,9,62,232,39,138,109,85,94,8,144,130,49,105,217,228,32,231,94,115,246,59,242,226,21,192,92,168,176,202,111,69,209,226,67,182,95,181,85,199,231,179,212,80,147,240,118,169,102,141,180,195,187,201,145,212,178,236,156,117,149,122,69,28,243,112,1,31,152,57,233,51,218,158,249,234,192,54,67,144,171,185,247,243,148,125,10,224,198,142,1
 52,184,45,242,250,237,235,190,18,156,80,53,34,28,124,144,100,157,169,157,109,229,111,162,46,158,69,248,238,156,110,84,105,228,115,231,103,219,72,177,199,181,220,228,167,23,124,184,61,209,241,231,21,216,7,67,107,218,214,40,187,245,25,197,54,52,153,249,43,233,244,215,77,87,218,62,181,180,184,61,163,130,6,78,11,208,211,241,164,201,83,219,123,110,205,70,153,135,215,20,121,177,164,66,72,35,67,233,94,10,21,62,223,23,233,61,22,28,4,245,42,0,119,185,171,231,208,86,212,45,170,183,144,207,179,92,179,197,128,222,161,169,189,170,76,163,230,221,8,37,39,11,232,105,224,109,75,40,37,41,70,231,235,122,202,202,177,89,125,12,166,202,34,203,96,52,110,42,155,56,227,213,13,176,43,60,183,1,229,177,160,249,250,250,198,45,211,79,250,135,111,31,170,157,220,183,143,207,150,18,100,27,24,240,140,172,245,169,243,106,62,220,11,110,9,158,115,190,58,63,196,26,70,222,208,148,28,160,32,80,34,189,95,137,74,252,122,152,216,139,238,244,144,216,143,254,124,150,130,253,77,196,97,88,3,230,5,253,35,31,182,10,205,177
 ,225,244,111,44,121,174,109,24,55,118,215,179,16,114,221,194,150,26,56,96,9,236,187,30,50,255,167,252,139,190,41,28,170,255,190,74,134,227,48,89,213,149,229,145,14,141,98,156,155,70,234,94,9,162,241,47,9,64,39,113,0,37,249,52,222,182,24,229,75,29,152,37,168,240,136,173,204,95,112,10,145,30,46,74,211,97,130,221,72,230,30,49,55,92,146,115,153,212,116,51,74,242,40,12,185,183,27,7,110,84,168,45,216,86,78,18,220,149,105,119,197,120,29,40,36,172,28,243,177,112,165,148,141,253,166,235,78,238,98,85,230,15,95,188,208,133,225,148,197,210,157,214,184,200,110,247,218,168,201,194,40,173,205,119,148,75,197,164,63,141,248,84,112,196,79,181,219,211,251,205,225,251,89,2,241,84,182,204,154,250,82,11,35,118,125,159,187,19,108,67,79,17,7,55,142,58,178,172,56,217,105,127,226,191,191,109,18,95,127,62,49,101,29,217,242,132,118,123,188,166,120,98,166,77,122,114,214,161,185,96,119,54,162,18,54,144,8,114,16,60,24,19,176,32,13,189,14,63,114,60,152,65,54,46,141,180,13,16,128,134,182,189,69,5,167,125,24
 2,126,91,203,223,86,79,25,237,50,20,101,141,34,203,115,175,182,255,172,249,35,177,94,193,13,13,195,5,110,117,133,237,191,206,117,140,0,23,200,143,117,68,28,125,140,243,23,63,147,64,199,26,10,195,60,84,198,79,60,110,167,100,116,20,225,87,99,252,38,144,2,88,230,59,63,80,133,96,10,24,243,151,154,154,246,81,64,69,116,69,89,250,89,135,104,0,189,176,152,138,121,147,206,78,17,73,105,255,92,2,205,190,137,248,248,149,171,137,93,179,7,196,207,37,93,53,51,103,139,207,232,72,54,79,146,15,168,38,252,158,79,221,121,44,59,150,41,82,245,171,138,185,146,179,159,8,52,69,165,189,191,95,220,20,67,251,199,178,60,239,146,247,53,190,18,131,207,18,195,128,127,24,127,244,191,77,224,58,8,88,80,123,84,138,213,64,134,107,218,216,37,117,9,208,36,190,188,115,57,8,244,192,144,195,181,73,246,33,192,247,64,142,239,80,223,94,242,1,16,1,206,179,224,216,66,203,46,229,71,147,56,44,127,47,91,134,37,210,219,165,250,205,232,234,87,81,87,175,157,96,208,248,239,160,134,197,23,126,199,245,81,198,67,250,66,149,193,22,
 1,67,133,187,223,178,168,249,142,11,213,119,249,194,230,20,149,32,81,164,243,101,146,178,71,61,198,68,159,124,160,181,61,14,55,220,155,66,90,58,60,223,168,17,142,231,90,12,156,154,215,211,11,109,143,70,133,164,71,13,140,107,115,55,201,253,61,200,180,223,216,7,208,139,141,97,99,1,48,17,208,117,86,196,190,143,148,199,234,182,173,214,123,76,198,188,245,85,137,242,200,121,254,142,221,172,77,164,219,24,89,241,225,73,8,65,129,202,76,199,138,87,176,146,236,95,56,153,200,165,132,58,23,180,127,24,122,198,118,182,78,192,193,122,196,66,14,152,134,226,223,236,43,184,227,43,208,122,90,243,177,55,218,233,180,18,184,94,239,1,3,186,90,30,117,103,21,227,208,210,152,7,231,195,23,176,52,219,120,1,121,42,135,10,42,17,186,221,220,116,125,117,205,31,95,209,56,199,227,52,71,115,215,90,183,41,115,250,101,79,230,67,163,3,211,14,25,227,82,36,226,22,229,184,63,70,221,35,44,21,139,136,65,202,234,58,101,197,139,149,101,98,25,189,94,208,162,106,87,232,21,54,83,241,139,215,247,168,40,218,15,27,0,26,200,39
 ,12,105,98,234,135,43,229,248,158,185,17,44,22,202,35,231,52,130,93,187,87,177,251,114,80,50,228,248,64,210,61,77,6,161,204,194,150,107,201,106,33,147,229,15,235,21,228,23,132,34,86,189,247,113,75,150,255,38,8,133,88,150,34,209,160,15,30,88,221,177,95,92,243,205,34,98,87,163,37,79,28,190,71,211,183,142,54,203,133,189,199,204,208,4,127,101,150,175,238,8,165,80,24,160,247,207,177,166,245,216,199,128,74,231,202,20,47,35,255,48,129,221,1,78,183,212,139,88,195,9,186,91,217,101,11,9,108,209,94,240,125,117,248,128,7,73,83,57,16,43,10,58,88,15,246,232,149,214,40,34,244,213,211,183,132,83,97,190,101,172,149,251,70,5,111,189,232,13,178,207,85,134,245,98,174,194,104,252,37,17,188,81,162,169,43,142,203,181,170,144,187,124,121,137,66,224,156,246,97,6,69,158,38,68,103,190,65,128,84,240,178,183,190,28,138,35,67,187,43,151,61,122,254,170,83,233,172,70,20,163,80,202,226,116,189,219,191,73,25,66,88,237,27,247,174,236,245,157,1,162,181,122,102,242,56,101,48,241,9,166,72,253,245,244,116,249,146
 ,21,28,0,45,0,195,122,232,80,158,147,151,242,252,100,120,252,7,155,178,41,157,168,211,180,101,169,163,243,163,195,122,25,9,78,208,13,4,41,15,218,14,118,225,83,24,153,36,215,55,19,149,73,221,235,74,195,49,220,97,10,165,1,40,157,17,207,189,139,148,213,12,232,10,97,121,213,76,49,221,86,119,65,121,72,8,241,233,102,73,180,144,199,112,112,90,180,159,123,211,76,97,177,210,107,50,31,127,85,12,97,177,31,142,40,241,90,153,203,54,154,248,155,47,129,161,71,53,62,96,102,170,80,176,81,112,208,109,144,56,148,227,64,49,143,141,231,204,29,172,244,184,83,142,92,174,112,85,164,82,71,78,1,177,107,15,139,197,139,131,61,70,190,22,213,37,16,80,114,194,239,45,118,49,234,169,57,99,140,183,125,78,31,17,128,212,152,152,192,177,126,233,75,50,174,39,0,235,72,147,1,155,116,29,35,172,199,40,59,88,169,42,22,134,34,174,33,70,182,240,100,104,67,224,118,88,112,96,195,213,38,40,138,185,72,77,31,144,144,35,201,228,53,134,252,178,57,110,252,105,88,147,151,68,28,64,62,186,103,241,147,122,249,182,192,63,182,11,211
 ,235,13,150,189,188,0,65,185,197,205,129,32,109,234,62,89,158,50,231,124,5,218,120,202,127,115,88,232,231,107,148,235,93,190,243,206,207,182,252,73,229,227,57,149,6,245,179,110,140,37,225,77,209,13,135,82,202,187,121,176,25,66,185,128,149,84,57,141,239,22,116,43,66,150,40,30,111,35,182,209,70,236,192,255,91,205,108,190,168,38,181,214,69,154,10,66,221,8,95,183,169,3,208,205,85,102,252,8,95,168,179,72,187,67,229,95,85,159,252,214,237,149,55,158,225,156,2,224,158,116,165,79,209,158,155,245,234,94,188,153,231,188,11,79,8,192,66,174,85,161,178,19,98,210,231,253,229,248,170,131,31,136,20,21,214,18,118,54,163,200,193,234,174,215,232,74,129,92,98,203,123,115,246,80,237,42,140,28,234,242,205,84,24,244,220,161,155,210,211,172,109,55,194,148,161,83,113,218,42,153,115,154,140,113,252,26,138,248,52,175,184,94,9,88,251,220,185,100,237,81,228,34,79,152,111,189,159,97,124,177,8,166,121,89,86,254,42,145,217,255,21,39,230,39,44,204,159,151,178,112,48,216,141,129,117,162,144,157,107,154,5,214,
 229,49,20,96,56,175,38,232,236,233,145,66,169,78,218,4,161,77,225,120,200,145,1,251,10,187,162,204,222,59,226,233,159,119,243,192,183,39,243,153,205,174,218,162,213,201,29,218,164,56,241,213,255,143,29,83,123,200,244,176,79,37,230,72,111,7,55,87,148,83,211,155,74,94,139,131,214,213,106,110,127,234,51,77,34,26,57,200,185,25,1,145,149,48,206,130,218,85,34,228,124,19,202,94,98,133,55,255,204,101,185,59,130,237,191,59,229,1,173,60,213,244,242,139,203,234,77,186,108,224,32,70,145,33,192,134,12,151,186,239,125,61,160,244,170,45,92,16,219,108,209,156,224,172,136,167,212,136,102,174,178,36,69,20,154,213,141,26,156,38,65,222,173,1,145,26,90,225,93,188,8,107,180,27,233,71,152,131,4,21,170,200,187,219,180,29,171,221,166,156,136,33,199,243,178,201,84,7,37,120,62,27,240,154,12,187,231,127,138,67,19,87,217,53,138,172,186,5,32,119,11,143,136,202,180,136,5,210,221,128,45,250,21,26,156,183,225,13,230,240,216,20,115,222,6,143,199,70,174,81,27,91,13,191,187,133,54,241,147,87,202,173,34,206,251
 ,23,51,76,124,80,185,79,76,196,101,5,215,32,15,71,181,253,81,153,208,57,133,8,232,120,32,40,36,161,75,151,24,141,80,106,116,244,35,108,227,18,240,78,103,27,5,152,2,36,216,83,253,232,86,255,237,176,223,210,65,196,245,198,58,116,90,246,228,215,251,62,111,170,121,52,173,171,207,6,149,61,59,233,2,51,141,248,82,153,251,174,70,6,100,220,240,234,253,234,88,201,11,83,134,99,211,119,23,195,241,171,253,173,87,133,140,110,166,51,201,23,56,89,155,208,218,204,38,16,248,207,187,146,19,141,74,246,94,235,34,201,92,199,27,106,146,203,131,220,237,172,99,37,72,38,52,250,51,253,122,236,213,151,110,207,137,98,136,175,1,22,78,168,51,212,163,3,75,51,14,246,200,127,146,130,115,153,55,150,114,55,55,49,69,102,32,152,95,105,140,192,143,163,56,38,6,96,155,211,192,34,93,217,177,195,118,251,64,10,12,236,162,160,147,10,162,152,62,22,66,97,173,74,168,149,163,98,221,166,74,25,54,116,7,0,105,118,197,27,61,144,80,32,220,153,27,82,233,211,158,9,31,114,246,75,22,211,217,49,238,53,37,130,202,32,127,136,53,228,19
 9,113,182,108,225,168,203,74,165,187,194,115,32,205,122,41,140,180,219,199,196,28,170,68,195,207,210,14,98,32,164,203,226,111,173,85,67,196,10,217,175,79,21,34,161,96,210,185,228,65,30,234,106,241,151,154,71,59,192,43,80,142,188,172,90,54,244,21,229,79,90,223,80,106,75,134,175,198,224,247,153,221,3,140,62,158,72,78,51,48,52,140,80,228,47,86,87,164,233,231,58,104,16,152,154,172,125,71,223,165,199,68,0,136,185,232,193,40,10,4,63,54,136,28,35,202,182,61,45,119,204,101,123,226,220,231,38,143,252,143,110,213,181,89,246,82,108,114,106,12,29,154,83,104,35,208,20,122,239,43,182,88,222,68,149,194,167,194,224,138,34,236,127,217,159,103,123,121,204,202,100,63,133,151,176,132,252,238,124,251,214,185,193,173,154,164,186,130,8,183,31,35,254,169,48,249,197,70,178,108,61,233,206,27,73,156,52,195,191,81,48,245,7,52,7,242,201,110,32,178,189,165,202,100,80,110,156,141,243,102,19,244,119,248,30,133,232,100,46,10,190,7,149,53,75,144,236,126,43,78,78,53,43,35,157,88,142,39,16,168,200,21,191,97,24
 6,123,223,141,219,148,253,169,38,224,98,191,112,145,17,158,174,94,177,137,198,137,64,32,211,182,55,175,200,3,206,47,226,218,192,163,98,162,124,94,129,143,143,144,166,111,186,120,122,44,226,1,51,18,167,230,241,128,245,110,81,152,187,119,220,201,181,46,214,91,173,175,33,191,181,177,224,116,154,217,134,166,74,19,245,219,147,64,204,126,90,37,47,53,75,146,22,252,229,106,252,196,201,245,210,21,75,208,255,199,243,97,83,125,77,124,55,130,6,187,38,242,42,251,250,52,120,197,33,252,203,115,104,168,190,148,250,179,54,90,209,159,29,76,144,92,140,51,52,213,98,149,43,131,253,187,77,28,22,20,10,78,193,75,176,80,114,11,193,74,5,113,7,242,58,41,120,233,230,199,223,165,165,88,96,251,81,143,173,69,59,40,120,220,0,195,96,252,212,62,196,54,4,119,154,38,232,98,125,141,112,9,220,233,240,23,165,192,226,98,251,65,208,191,223,13,149,139,194,17,130,50,83,126,213,212,159,43,38,90,156,48,120,236,186,204,22,164,233,11,125,255,140,168,38,248,77,18,55,180,251,101,196,32,240,173,123,124,251,235,7,239,247,225
 ,180,56,130,6,89,55,170,194,212,87,220,33,235,199,46,219,74,153,247,254,127,35,218,160,146,218,22,197,217,71,9,229,226,98,85,43,231,0,54,66,248,131,253,107,230,163,57,218,196,79,156,165,10,186,31,204,45,208,34,100,159,86,198,2,241,203,103,115,183,176,55,1,211,206,207,63,62,41,42,186,19,76,146,18,106,70,211,176,27,115,121,250,21,31,118,213,200,130,99,50,65,10,150,100,19,217,85,25,211,248,47,31,147,124,179,198,37,71,76,118,218,119,109,88,254,96,15,92,91,53,120,177,86,171,64,98,75,165,57,83,16,172,166,81,39,117,140,219,163,34,165,68,40,169,50,164,40,64,140,21,205,177,128,139,184,74,29,3,168,62,178,33,201,79,234,110,150,74,144,18,100,225,231,33,224,55,232,42,225,21,3,201,78,47,184,134,240,222,109,255,117,252,194,237,200,10,107,128,216,165,57,184,15,230,122,98,181,146,40,232,224,84,102,8,95,212,130,66,57,35,36,189,112,234,254,43,18,0,142,223,44,149,223,48,123,180,87,78,23,80,13,85,62,134,191,119,51,90,106,32,29,251,49,31,51,201,196,66,57,127,11,181,28,108,91,7,213,247,123,0,237,1
 47,40,83,221,207,133,53,58,105,77,57,182,130,102,13,235,239,175,62,19,155,132,91,1,138,5,20,147,170,168,191,243,224,132,126,137,19,139,11,18,62,125,72,221,232,135,226,5,139,95,13,179,28,165,172,164,158,117,169,224,224,6,10,176,170,202,21,95,60,161,200,1,249,18,124,137,248,238,157,127,21,177,197,39,192,3,2,225,255,172,144,165,200,106,183,230,207,96,169,224,163,58,42,32,89,195,218,7,136,62,79,54,15,5,59,126,183,2,119,251,199,76,21,254,112,203,56,23,127,14,43,246,213,152,92,189,132,164,49,211,133,129,45,104,143,182,146,171,91,230,171,25,55,224,9,135,2,49,110,13,229,119,176,71,78,159,230,7,36,217,98,227,125,159,196,27,107,75,74,79,192,11,122,124,62,8,58,58,96,232,227,132,229,107,125,229,183,181,68,78,18,34,99,176,133,112,36,108,141,233,19,154,46,217,67,140,187,182,202,77,191,200,92,91,123,158,145,225,253,247,207,85,20,209,29,173,249,84,78,107,11,188,0,141,62,216,25,103,151,237,209,105,133,43,157,182,142,200,219,19,60,84,61,140,210,15,147,227,180,91,117,2,196,79,236,182,171,112,6
 8,38,150,156,27,170,50,248,63,64,132,81,146,54,30,238,182,60,52,103,134,91,65,165,42,123,2,121,27,212,161,33,241,231,105,64,37,223,148,18,143,92,35,198,88,243,188,68,227,161,47,107,1,104,226,142,207,30,25,114,209,227,157,159,206,138,69,111,47,196,13,37,99,37,46,0,119,105,154,75,158,123,111,65,186,70,122,210,91,19,107,74,164,81,3,23,71,3,86,141,208,33,138,119,31,94,191,212,121,66,154,35,234,240,96,89,19,125,118,171,41,105,71,121,226,213,87,221,107,112,174,150,79,138,164,171,92,185,175,253,17,16,223,78,150,65,114,254,160,171,155,9,134,131,61,193,92,1,252,21,42,217,121,38,7,233,109,203,238,237,78,231,162,219,191,17,53,88,103,104,10,216,53,31,96,142,121,207,35,128,211,6,81,201,50,63,247,76,45,71,133,248,228,90,167,56,55,112,20,232,13,60,193,198,86,97,94,132,171,67,16,127,180,125,172,175,150,127,53,124,37,15,119,223,173,141,48,182,131,120,206,158,104,178,99,214,25,40,137,152,176,139,81,104,37,204,90,94,112,77,160,104,113,44,224,1,138,234,65,61,211,31,143,216,223,15,147,96,1,148,6
 0,114,143,182,13,121,237,2,248,158,156,126,205,247,226,120,192,105,180,121,184,185,159,170,101,135,14,206,167,224,234,173,198,130,237,1,112,161,166,204,121,6,208,24,114,251,87,251,180,219,185,53,68,81,111,94,114,84,206,56,100,237,185,64,219,213,228,122,175,223,130,40,104,28,211,196,57,125,232,38,216,214,120,71,42,209,27,27,210,81,220,72,197,197,203,73,69,241,149,199,120,172,114,206,61,243,51,33,193,180,65,191,124,109,203,59,36,183,70,45,154,47,194,145,200,118,83,127,166,197,227,154,88,113,30,159,65,54,33,62,254,127,14,186,220,255,207,58,78,125,33,24,106,88,184,122,203,48,233,6,220,180,67,232,231,152,128,66,63,127,53,115,238,227,42,148,3,91,30,2,42,45,185,16,109,252,220,55,157,73,227,125,153,140,129,37,213,192,75,171,156,38,217,139,147,18,200,242,30,183,33,60,62,240,29,35,5,44,239,9,210,14,220,115,129,171,146,192,147,107,1,61,186,139,176,152,30,30,83,69,0,238,251,84,238,77,154,202,75,213,214,73,61,140,167,128,198,199,9,141,235,164,52,248,194,137,90,244,72,175,170,75,112,205,1
 26,205,49,193,52,142,226,55,149,118,235,226,204,118,192,164,44,196,4,252,110,237,67,23,20,16,215,3,246,178,161,74,249,96,209,202,151,135,126,56,255,176,5,36,85,230,255,234,111,96,228,213,71,183,149,159,189,18,19,40,141,120,193,139,141,219,46,88,106,238,112,163,228,145,40,34,63,63,254,209,150,45,39,70,143,238,81,114,136,138,37,4,96,15,39,249,102,6,254,36,210,40,227,216,187,232,132,129,53,17,252,80,169,28,147,166,208,41,130,45,8,149,70,157,86,232,66,216,89,3,85,184,25,183,159,14,9,156,172,165,242,97,36,115,13,187,50,177,182,20,78,225,101,142,173,253,213,155,64,9,185,122,177,109,82,96,169,45,216,186,209,238,90,239,18,248,7,110,110,6,104,9,118,215,233,198,8,141,110,202,254,178,125,253,34,171,28,80,62,98,238,108,117,203,156,131,180,228,33,160,35,127,30,166,213,134,145,174,135,52,86,175,142,234,125,88,133,146,74,51,168,115,248,86,70,218,14,163,1,226,90,86,175,125,245,146,53,235,121,69,143,147,115,84,180,147,40,172,79,161,252,65,182,110,7,121,254,185,73,137,221,212,20,166,3,39,173,
 97,10,37,104,8,236,133,30,157,253,78,238,15,126,103,77,190,65,125,74,121,88,104,248,207,65,62,153,166,158,166,27,204,189,114,202,159,126,159,69,30,26,168,143,236,71,147,138,43,231,152,105,36,39,215,216,226,82,63,22,239,205,164,166,16,16,254,141,17,171,91,103,220,64,224,147,167,200,17,2,155,107,243,220,153,235,250,160,246,254,33,115,13,242,26,58,233,44,22,183,15,175,111,211,215,52,8,136,22,215,83,234,116,143,248,99,225,157,29,113,12,31,151,240,127,164,207,215,21,118,28,224,130,46,205,35,176,16,14,144,234,10,13,139,151,150,247,131,118,119,172,240,139,174,103,15,248,237,21,139,181,181,95,183,249,191,1,148,76,44,53,54,144,187,16,83,143,212,151,151,20,66,115,106,37,192,188,87,124,7,213,34,204,151,146,222,110,145,57,253,162,198,176,222,85,136,167,101,110,167,78,238,4,5,36,246,8,185,216,251,30,241,123,208,58,138,77,200,153,77,35,28,190,2,7,177,216,151,188,84,188,127,200,181,113,28,201,90,194,24,248,126,107,213,124,254,168,48,157,22,124,111,116,216,49,131,120,203,35,234,155,170,67,1
 75,66,219,96,134,140,45,154,120,43,82,117,118,19,57,104,239,94,253,249,101,82,2,240,71,138,197,58,174,160,148,234,222,230,237,199,137,139,137,208,101,95,14,35,228,26,152,99,148,98,148,18,58,225,215,151,116,27,138,138,64,111,197,250,112,185,243,251,252,118,66,188,129,44,112,80,4,47,59,226,2,181,9,65,251,153,245,53,236,172,83,200,44,135,229,65,224,223,229,34,120,222,168,215,16,251,176,196,57,46,82,141,241,63,118,48,172,67,168,173,226,81,197,130,236,241,73,120,175,76,92,121,198,247,14,145,76,250,31,37,108,40,123,19,128,91,149,81,96,2,188,85,193,178,32,165,37,227,97,150,47,227,57,254,119,78,140,167,71,63,73,117,131,119,69,236,111,252,203,192,246,186,63,192,222,189,155,105,138,147,82,251,49,129,232,172,8,72,95,66,150,97,3,242,12,14,35,66,195,37,147,83,18,156,7,58,120,29,173,141,232,188,140,85,40,195,68,16,57,160,67,35,147,132,225,215,131,119,49,201,17,241,16,100,67,184,93,68,69,195,99,119,198,218,218,133,74,7,132,200,144,62,148,89,46,56,82,83,227,22,44,22,125,211,118,64,155,47,66
 ,230,87,229,150,171,218,176,52,11,41,230,110,142,220,1,249,156,127,109,99,62,239,126,191,31,206,218,249,79,64,111,32,186,37,175,247,211,174,87,49,189,159,146,119,42,174,201,21,80,102,134,204,54,70,234,55,210,209,201,227,175,238,223,50,126,255,255,182,65,51,244,219,109,29,99,247,140,240,141,162,70,203,46,119,154,158,174,130,164,137,33,172,183,182,117,217,227,154,194,185,18,38,27,30,174,19,51,70,71,122,136,106,47,193,139,58,177,197,20,218,202,65,174,44,111,215,89,71,213,150,129,98,88,231,236,89,225,201,127,93,19,33,109,244,79,221,247,170,152,239,106,162,151,93,24,217,234,122,161,21,25,54,131,201,118,26,18,147,78,212,219,160,108,133,12,27,70,203,42,26,203,161,165,88,197,219,234,232,140,248,92,132,106,128,134,72,113,168,172,2,115,95,55,105,163,110,176,199,144,121,181,214,229,195,181,132,94,106,78,173,112,52,218,238,118,64,235,204,248,197,56,151,202,119,75,171,36,199,135,57,211,89,66,231,204,115,76,56,78,110,157,214,27,93,150,244,50,166,231,242,169,66,71,26,217,35,249,210,223,165
 ,81,185,171,221,84,255,10,92,194,30,196,196,112,120,191,110,218,133,245,184,227,126,23,51,74,247,23,200,179,236,54,126,117,234,76,13,247,99,129,152,135,196,7,210,217,33,222,34,63,35,79,169,194,218,72,119,65,5,52,231,113,220,240,46,252,61,252,190,184,44,133,182,11,186,242,78,96,108,69,199,93,137,108,148,130,196,237,201,134,5,143,146,247,2,155,95,74,222,175,224,254,227,50,193,5,236,191,217,152,113,253,12,232,120,103,41,155,96,102,23,168,120,146,113,122,143,154,24,234,206,144,137,88,101,191,42,123,157,239,127,90,39,247,255,167,18,187,251,148,180,98,186,183,27,22,29,218,220,190,32,98,218,146,219,81,14,50,7,76,117,13,35,188,225,240,21,83,66,107,233,201,244,78,11,242,182,30,212,62,150,206,149,30,53,218,211,89,57,71,241,144,90,139,154,94,40,119,155,90,46,36,137,212,61,199,183,248,252,11,109,120,158,147,206,225,10,184,3,17,134,36,95,196,111,106,139,159,109,42,38,129,203,140,133,10,244,207,149,141,72,20,90,198,215,101,245,19,232,202,211,156,28,225,147,201,121,54,214,193,221,48,106,18
 2,152,6,161,60,159,145,221,23,92,82,180,45,206,229,218,74,171,139,19,237,58,108,25,150,10,244,72,7,121,24,120,167,63,113,135,71,213,83,255,104,111,184,65,226,232,195,154,167,40,66,137,131,3,85,127,96,65,79,238,80,130,193,17,125,251,125,218,203,198,207,131,177,240,178,167,23,101,188,76,245,177,234,71,214,193,81,136,148,117,91,73,7,11,125,142,227,96,50,137,24,36,201,194,29,123,112,143,58,139,72,158,104,11,244,162,16,80,154,95,235,138,192,226,212,14,248,173,9,211,254,65,203,62,202,176,93,74,67,234,51,115,237,213,88,118,80,83,179,151,155,140,34,232,207,105,108,217,98,164,37,153,210,160,34,174,125,74,231,238,126,47,0,167,192,110,134,65,17,206,171,231,147,155,115,61,133,99,30,52,227,161,18,216,66,8,53,17,18,58,219,46,23,137,241,206,91,107,186,205,242,134,46,82,121,202,187,60,154,15,197,123,45,165,243,226,109,160,160,188,254,53,109,94,128,173,60,64,102,1,111,6,17,21,180,12,17,77,114,240,55,193,177,232,32,151,173,56,233,125,56,149,140,37,136,235,29,51,55,62,208,246,186,242,87,78,67,
 242,38,116,50,210,8,118,208,197,205,251,250,113,79,241,169,1,104,160,6,251,5,126,100,164,205,71,119,177,153,178,205,143,225,123,120,252,190,158,190,221,147,175,163,239,209,246,245,142,41,104,84,76,70,238,174,93,206,113,151,2,240,10,184,6,162,61,86,148,36,36,118,147,195,182,149,101,118,123,185,29,53,147,171,126,180,90,139,83,129,51,134,119,201,211,251,155,126,239,209,208,141,206,59,246,207,254,197,6,245,213,133,10,235,20,53,58,12,52,221,107,219,53,251,163,54,214,127,213,186,80,252,30,52,42,230,143,235,185,194,177,117,1,99,201,139,5,150,221,7,125,43,249,255,72,242,6,35,21,179,168,117,43,166,160,16,169,63,143,191,101,57,225,168,147,246,77,231,219,22,215,141,23,168,140,44,38,104,71,196,21,167,186,155,134,233,223,192,151,158,136,202,35,240,222,1,157,239,1,18,216,136,227,210,60,215,163,127,37,122,224,154,69,24,81,178,237,170,44,164,95,223,75,56,253,112,142,140,25,253,180,55,195,141,146,222,63,234,220,177,139,183,141,225,195,215,160,109,92,88,26,64,8,137,212,73,103,238,0,89,58,199,
 144,221,174,202,211,229,187,241,91,218,55,102,121,100,206,191,36,95,101,161,165,136,246,253,66,124,105,47,200,145,194,185,72,238,61,33,41,245,66,151,229,132,252,253,183,217,21,42,222,200,77,42,34,137,222,33,42,70,186,55,61,75,149,20,57,134,222,191,30,225,204,145,91,60,108,250,43,137,198,67,221,154,212,22,2,51,50,74,160,152,151,0,109,225,179,27,231,153,16,46,198,223,135,246,223,160,203,66,153,174,69,254,31,16,236,255,92,110,89,25,197,20,165,240,238,54,30,109,88,103,220,172,73,27,52,77,126,44,236,197,169,11,203,139,76,45,56,254,10,94,7,44,198,3,43,184,68,6,201,123,203,40,134,21,20,145,219,39,91,201,31,155,234,33,247,33,179,100,239,19,17,169,245,40,108,226,16,53,186,48,206,80,189,131,71,207,194,133,145,237,137,196,102,6,169,104,243,235,27,0,105,233,34,81,214,164,186,96,131,168,220,114,201,82,37,85,206,69,49,31,223,44,15,233,74,239,251,13,136,45,141,54,121,155,238,72,194,163,249,46,157,156,216,100,82,53,66,203,68,135,200,38,127,62,196,72,197,11,185,47,118,29,249,194,54,109,72,88
 ,175,220,194,251,201,68,42,25,226,193,113,145,222,83,187,121,130,36,76,190,151,11,184,54,104,72,24,115,234,225,105,230,229,64,204,52,234,175,199,206,23,247,100,124,253,25,18,76,8,19,153,47,206,94,15,158,187,25,240,73,161,131,119,17,58,108,133,145,66,230,170,71,193,145,204,78,41,241,94,99,43,253,156,68,127,200,98,86,55,167,237,254,68,155,220,123,61,113,199,110,90,245,153,157,247,184,90,93,59,88,165,217,210,100,129,164,4,74,235,128,149,32,110,186,55,6,122,37,112,222,65,230,93,137,83,16,122,218,244,253,48,250,151,1,188,235,185,117,131,193,245,165,157,205,23,14,24,195,159,136,177,11,198,126,42,205,250,55,12,205,100,115,233,56,254,43,115,191,66,128,169,209,225,185,168,246,124,84,226,252,79,208,68,156,73,234,98,205,218,44,19,4,4,246,200,211,91,72,234,249,3,216,170,81,90,46,233,211,152,39,120,76,188,76,207,127,167,175,165,101,118,105,204,41,93,172,54,73,86,46,138,86,235,52,196,42,179,236,70,159,172,224,215,164,134,156,16,148,95,89,112,174,14,217,112,49,193,116,234,228,69,225,40,69,
 131,61,124,117,228,11,89,199,28,115,22,105,74,34,42,54,174,108,43,109,182,72,242,209,130,127,60,149,117,244,125,200,94,65,92,111,80,245,248,255,190,82,49,150,159,207,243,226,229,234,171,19,156,188,10,5,244,246,69,41,247,118,116,60,121,127,62,127,248,130,45,86,157,1,15,30,135,96,61,9,106,206,249,209,19,3,193,85,202,32,49,113,97,73,41,45,214,8,101,43,231,174,22,4,142,9,33,11,246,136,188,175,230,160,227,215,217,128,39,174,135,54,21,0,14,253,233,88,69,246,216,131,2,46,56,37,89,38,209,19,204,91,41,217,35,73,157,202,118,39,48,214,42,101,111,99,74,218,93,26,44,116,196,119,94,196,230,85,61,129,201,150,86,45,119,29,69,249,8,255,206,131,163,197,125,183,88,15,165,196,217,125,176,207,159,157,23,21,87,154,36,44,153,31,151,221,229,119,9,9,178,9,246,88,148,137,71,169,159,34,144,128,164,1,193,92,155,65,235,28,243,206,107,31,202,29,62,1,109,93,187,155,120,85,115,150,151,232,27,188,137,172,135,7,122,32,58,128,75,49,25,109,79,145,227,194,12,45,51,178,185,134,21,142,252,20,116,87,114,172,34,190
 ,153,21,23,247,210,150,53,20,86,116,188,19,175,20,216,189,65,153,7,248,236,143,208,121,136,104,59,191,65,132,36,131,250,148,254,13,115,225,189,108,208,45,94,5,33,196,41,44,105,92,105,166,212,197,122,226,88,173,249,45,7,118,94,190,116,162,107,208,74,167,151,118,68,10,150,207,92,104,165,156,90,53,70,92,228,161,242,216,3,102,242,59,60,168,14,72,18,221,88,43,129,118,234,85,207,186,63,209,227,106,236,116,151,75,244,230,23,191,137,148,221,2,11,60,178,15,12,37,174,9,225,52,61,252,113,36,79,124,34,251,14,187,88,238,43,108,169,57,155,100,169,46,54,232,86,102,109,83,80,15,187,166,254,210,124,97,49,240,124,111,14,198,47,103,44,28,207,130,166,234,163,214,166,187,200,98,123,45,85,142,53,214,109,120,156,212,109,27,169,168,205,190,171,241,49,192,245,134,55,131,24,185,186,84,73,62,104,190,213,142,183,248,144,142,58,184,150,134,63,210,195,233,253,217,141,47,70,245,24,192,132,4,231,59,183,139,2,139,122,15,112,178,12,105,192,153,108,189,187,139,87,14,220,139,242,91,49,18,21,34,242,91,113,12,50
 ,34,35,77,175,68,40,222,29,243,124,162,19,34,44,183,84,220,152,150,112,82,248,17,44,146,149,170,100,172,255,90,69,18,127,170,134,118,55,21,185,57,96,17,203,217,198,230,155,22,21,51,169,104,83,246,44,94,44,65,158,229,141,85,244,103,250,122,90,166,52,26,65,160,95,163,16,35,94,227,145,189,161,145,233,28,9,227,142,16,230,164,80,164,15,246,188,32,6,255,55,240,182,41,223,165,88,79,254,238,17,163,78,215,76,12,80,101,120,235,62,191,139,5,82,232,85,150,129,4,108,131,126,199,128,132,204,241,23,41,87,23,150,191,51,219,203,107,22,27,253,134,141,231,57,140,6,39,220,128,144,250,74,52,210,228,5,13,199,249,85,37,128,239,137,241,157,255,148,132,14,253,48,205,120,77,255,53,35,31,107,7,64,71,124,251,164,80,114,52,133,151,231,117,253,94,214,128,204,147,203,252,242,241,162,61,227,218,96,48,237,185,33,163,22,200,92,226,32,191,65,97,8,191,150,251,91,42,215,176,65,41,186,153,204,42,109,234,152,144,28,209,47,203,218,206,210,209,62,224,170,196,239,64,111,245,38,223,226,83,156,106,76,108,90,69,228,187
 ,75,69,103,194,14,167,102,112,14,187,219,225,112,222,93,141,29,39,250,140,50,130,103,156,43,13,211,171,54,35,37,180,163,53,113,159,242,103,253,81,73,223,185,23,139,229,96,16,37,226,19,35,108,154,180,190,239,81,75,86,217,134,49,214,207,23,178,83,107,196,93,141,52,218,18,247,149,163,195,174,96,216,51,110,12,49,137,210,86,215,71,19,27,99,72,65,212,52,88,195,237,65,96,233,82,239,212,168,178,139,178,248,254,7,70,105,235,103,54,191,251,41,214,127,232,193,236,191,163,59,85,238,171,27,25,203,244,43,7,202,67,138,199,243,105,173,155,69,135,100,228,2,214,221,103,140,232,212,140,61,88,202,149,12,214,196,170,21,140,33,40,67,11,254,32,110,139,174,212,57,175,60,78,187,183,154,3,78,101,150,248,105,122,231,99,227,60,11,211,18,41,43,46,6,123,5,47,223,34,114,62,111,78,250,230,249,69,121,234,83,244,144,118,92,79,152,32,19,46,100,14,215,226,249,119,83,43,121,82,75,225,20,244,137,195,14,43,196,85,26,6,57,224,49,144,143,47,76,38,222,77,174,182,157,231,190,255,51,214,65,123,209,167,231,232,144,224,
 213,21,4,155,29,178,57,196,246,204,246,184,124,129,117,229,9,29,25,13,0,161,118,50,25,230,241,36,156,134,79,100,55,108,192,68,56,96,243,32,35,147,123,97,42,208,121,203,212,133,173,225,176,91,88,9,116,46,22,43,213,118,129,170,220,111,37,88,99,37,47,199,70,91,105,106,248,189,2,156,127,207,121,150,23,16,153,101,247,168,177,188,161,204,167,57,65,160,179,183,248,49,166,38,127,17,113,179,196,249,157,164,40,228,151,54,170,56,238,249,1,239,249,224,23,201,95,9,195,96,236,236,58,153,173,110,132,135,37,200,167,157,7,198,6,135,36,215,8,241,233,41,181,64,223,23,108,33,40,112,202,29,222,17,79,0,166,16,4,78,166,118,39,133,118,248,243,161,106,227,129,185,39,141,224,81,87,53,159,48,142,61,114,23,234,9,175,66,236,179,46,219,222,115,166,14,59,177,225,240,8,46,69,94,75,220,65,128,57,136,31,192,232,27,152,97,172,134,236,190,164,6,194,42,225,87,190,134,116,83,174,254,198,122,112,17,184,62,63,11,7,216,181,189,31,61,221,248,77,56,18,82,55,159,191,243,38,23,205,130,180,178,201,226,240,59,112,114,30,
 39,239,62,136,5,178,117,109,110,50,194,181,209,151,23,65,135,201,101,237,61,205,30,170,138,154,253,114,59,209,56,36,217,32,29,62,14,118,192,61,214,167,8,65,172,4,67,37,29,184,165,227,144,117,237,210,41,172,52,237,188,27,232,112,49,23,206,97,207,215,130,235,95,83,141,224,96,148,49,72,152,241,88,141,215,105,234,73,230,1,149,77,154,191,142,41,228,58,146,13,71,129,99,11,120,169,66,170,27,188,10,112,5,203,226,165,9,69,241,89,175,42,193,211,79,58,170,225,65,179,21,53,213,231,54,255,123,197,47,64,105,130,175,101,41,22,166,156,185,114,116,155,251,191,208,214,44,116,32,160,60,164,97,144,199,228,206,222,49,79,182,59,20,136,136,3,121,182,41,59,191,200,137,42,36,77,67,215,206,109,255,161,127,116,124,66,212,32,34,144,65,210,60,224,247,113,220,130,168,197,88,103,60,48,125,158,82,229,66,178,210,114,109,2,99,198,154,232,20,157,77,99,53,133,113,28,201,172,88,161,168,226,254,158,66,229,56,101,58,168,96,49,83,206,96,110,110,217,1,10,252,202,64,64,225,28,6,84,102,189,98,123,60,113,204,5,94,95,2
 52,13,152,26,7,183,120,5,101,253,46,173,22,49,7,74,235,154,202,1,231,241,196,76,65,131,20,55,129,171,165,180,245,49,199,172,225,228,159,203,191,188,70,254,164,119,233,187,135,134,71,140,86,172,3,43,215,71,93,85,123,189,14,96,238,240,62,134,62,9,155,44,3,242,30,62,60,154,132,145,22,38,61,171,36,134,239,97,105,89,189,141,216,14,21,119,210,170,192,93,124,168,61,199,14,154,32,237,118,106,218,135,250,159,146,168,197,20,77,186,220,141,156,106,1,64,25,17,250,98,86,138,78,181,18,143,249,78,229,200,216,243,99,68,8,86,166,159,163,48,2,169,128,94,148,78,116,70,251,171,195,16,51,43,214,11,13,53,162,54,52,255,64,77,123,121,84,140,232,190,231,72,184,129,103,136,235,224,123,81,155,220,55,127,180,152,12,203,108,217,174,1,214,52,253,227,206,146,45,21,213,242,248,8,144,116,246,69,93,49,126,224,62,25,162,253,145,163,128,101,85,49,216,158,26,123,201,133,56,185,28,176,96,39,168,209,37,66,113,140,33,240,226,170,243,157,4,183,48,113,24,73,252,177,205,176,19,158,40,108,113,47,35,138,161,55,32,59,35
 ,124,88,68,143,16,175,11,110,56,100,184,234,213,29,10,42,73,247,201,101,53,197,70,20,248,167,87,86,251,68,254,102,75,121,151,90,38,77,244,204,242,85,45,184,221,224,185,186,158,199,219,147,11,226,184,36,236,254,92,235,156,108,116,41,186,59,182,63,7,161,108,108,16,227,203,55,29,147,126,78,139,1,162,213,98,120,115,215,157,97,229,187,101,100,32,206,158,35,211,214,134,20,128,100,237,68,169,62,40,102,7,178,159,5,136,60,241,174,23,132,20,117,34,79,95,60,146,188,136,139,17,130,186,217,200,148,103,135,217,29,241,40,10,1,164,92,117,149,61,128,104,162,127,69,61,112,193,208,168,198,160,165,229,76,45,29,132,95,162,254,194,125,99,144,7,184,50,70,97,69,166,49,3,127,3,243,97,165,67,212,58,127,142,33,178,84,188,218,88,121,109,2,202,9,29,204,51,143,103,140,164,127,85,72,48,25,244,136,86,121,4,166,176,208,36,97,158,240,212,131,216,195,100,123,205,34,225,42,134,81,222,35,89,208,164,154,237,4,106,35,4,75,191,192,131,177,124,24,219,140,59,118,2,198,46,248,180,54,225,26,168,112,98,218,114,93,5,79,
 45,127,57,154,228,152,228,33,68,118,101,149,14,184,136,172,87,128,51,184,34,248,21,109,192,215,57,90,11,157,174,57,109,122,225,90,33,253,172,250,48,116,37,77,90,151,151,117,203,39,204,211,24,110,177,242,45,36,121,106,47,44,194,114,130,85,35,72,222,247,237,56,114,0,132,105,220,155,37,34,6,148,179,227,20,8,197,117,81,105,253,186,59,253,149,59,217,184,136,177,70,71,61,94,138,78,106,239,163,202,167,168,51,235,88,15,58,238,173,133,255,157,175,116,88,52,117,150,32,27,226,195,18,248,109,108,52,23,60,88,135,86,234,207,89,33,215,139,107,229,41,45,135,89,162,139,189,179,123,227,100,103,40,139,216,128,128,79,19,219,242,21,87,173,125,54,155,67,233,140,181,116,193,42,36,75,215,74,99,177,71,241,209,240,252,43,47,4,20,242,123,75,86,182,241,106,242,123,101,70,154,179,56,135,40,97,186,191,147,205,236,75,115,27,190,19,34,177,178,151,80,34,99,248,142,147,190,109,227,232,155,204,0,219,105,180,234,136,227,248,11,83,167,241,0,162,195,54,24,122,74,83,36,133,3,16,12,26,78,240,93,238,51,60,84,85,88,
 244,175,115,49,92,219,100,204,181,102,70,136,236,54,91,59,16,113,16,157,129,178,26,181,230,193,99,10,104,48,92,224,149,183,139,101,11,113,225,167,61,227,225,62,166,171,146,44,188,226,157,196,190,71,50,211,242,60,50,251,179,33,177,72,250,179,30,12,150,34,28,252,0,180,80,129,217,117,111,2,97,93,138,18,154,254,196,21,13,130,243,175,138,247,148,132,236,165,158,75,196,252,15,36,222,26,53,168,91,4,172,198,68,59,167,34,27,176,97,229,221,73,199,37,241,31,233,117,85,163,253,220,42,56,151,186,198,23,71,12,62,127,138,236,98,119,243,183,148,91,155,188,168,167,197,225,238,12,5,124,187,35,139,11,162,51,149,205,185,181,255,210,112,212,138,143,251,204,128,78,110,65,181,94,184,216,244,182,202,173,223,183,210,225,224,134,225,158,105,93,147,147,55,14,223,12,204,243,41,54,216,249,183,32,205,41,235,145,106,46,129,65,175,107,129,114,222,123,91,175,219,165,250,159,215,35,152,171,3,4,9,234,153,55,47,209,62,217,137,105,36,156,115,85,147,169,233,92,82,126,202,216,154,183,188,152,39,18,254,170,193,100
 ,42,7,63,184,243,77,219,255,231,183,2,56,33,141,84,110,194,198,29,224,184,58,144,4,130,144,199,219,78,105,143,210,13,169,26,40,171,211,233,67,227,230,94,26,37,223,31,238,178,185,238,74,190,3,221,33,42,136,155,1,74,112,212,34,111,125,13,43,85,234,117,144,227,69,133,38,181,6,231,127,79,243,247,254,47,36,180,158,79,57,121,68,55,227,18,6,27,141,146,191,39,222,108,238,198,208,101,164,172,48,155,16,238,100,157,199,166,240,52,125,196,236,0,188,167,249,83,67,225,98,195,243,169,21,76,184,129,204,72,52,0,84,30,20,24,143,202,51,50,229,210,102,114,84,56,178,77,2,65,126,151,104,157,217,60,93,99,220,180,233,255,20,246,160,137,24,55,117,153,73,143,117,146,214,106,86,129,31,1,158,179,207,142,175,27,106,191,230,224,17,117,195,98,181,178,172,192,59,30,87,14,222,118,194,251,111,110,218,7,16,248,88,92,245,95,223,242,237,90,145,186,224,227,12,39,192,217,46,66,178,150,228,148,44,102,171,1,107,245,186,158,164,107,218,0,192,236,135,74,86,71,15,61,219,240,192,150,185,241,10,107,122,206,2,199,88,190,
 218,38,4,15,98,74,64,245,79,80,1,34,187,30,159,96,146,55,24,36,230,54,129,23,58,238,200,127,61,40,123,33,173,70,148,68,247,253,126,199,169,167,136,150,10,177,154,49,74,50,22,222,36,19,145,168,245,187,80,240,50,140,152,76,123,175,31,247,220,232,197,22,99,202,241,139,32,105,133,87,167,172,250,67,130,87,111,108,158,198,128,59,231,253,53,81,98,218,219,251,91,217,126,163,153,159,37,227,151,106,153,140,110,58,78,8,126,34,63,49,25,255,136,41,28,120,239,66,142,216,14,66,151,102,181,45,56,173,160,79,8,166,222,28,239,119,38,120,199,111,194,235,60,99,237,215,243,229,98,86,142,48,102,21,154,7,156,186,86,99,95,195,200,40,103,26,246,145,54,4,62,67,87,214,20,114,154,12,179,152,73,107,186,253,112,100,103,154,27,215,108,235,2,252,143,243,103,57,162,127,191,8,87,113,74,197,49,69,120,245,189,70,2,192,248,192,93,233,132,62,14,204,169,59,229,125,113,75,50,80,24,13,31,141,219,78,46,251,129,107,69,158,50,102,240,19,31,161,178,71,197,47,68,213,237,132,23,94,103,39,179,134,88,8,58,94,210,98,249,169,
 235,89,8,177,80,186,250,250,66,16,229,79,98,152,0,70,75,187,45,217,175,248,151,73,131,228,201,188,136,77,116,221,138,120,91,175,142,205,28,195,48,14,132,240,39,40,246,135,12,158,169,29,163,48,40,247,49,121,154,51,237,125,115,91,9,117,250,201,105,98,10,172,143,158,22,60,98,182,87,99,36,141,182,251,198,62,133,78,36,184,253,212,78,184,43,247,254,179,245,243,234,15,20,103,24,169,192,152,46,28,220,199,117,170,7,168,4,120,252,120,238,226,168,163,25,69,6,9,149,245,250,194,226,12,31,152,19,7,128,136,87,152,78,63,141,90,113,228,205,64,20,143,31,237,63,66,165,185,192,176,231,219,36,145,48,254,81,110,107,243,11,239,160,49,227,74,95,35,93,214,91,136,165,210,175,225,50,218,25,89,177,170,13,63,108,63,220,236,34,57,247,143,55,198,58,197,140,133,39,12,82,197,25,151,199,172,230,244,63,228,155,255,187,141,38,58,153,212,7,144,161,195,139,12,214,189,214,165,198,168,104,26,135,170,105,42,107,237,254,55,51,83,211,13,174,168,32,45,56,67,108,63,11,142,148,160,57,191,114,26,92,142,98,167,154,248,225
 ,116,226,30,43,112,32,201,196,120,111,150,250,138,94,38,53,48,22,248,53,3,101,22,129,181,94,181,50,18,72,71,75,9,217,109,64,38,235,2,193,38,29,118,27,144,214,207,11,160,121,162,240,9,218,249,168,174,17,116,224,175,52,116,77,240,122,16,56,44,56,4,59,109,242,12,190,57,158,153,141,94,70,49,38,15,42,61,55,96,180,208,117,50,207,51,238,206,201,213,112,148,132,216,255,179,139,198,27,214,238,149,68,145,200,49,135,81,10,219,236,50,138,66,89,190,108,26,148,99,193,75,51,229,126,37,108,37,31,122,192,202,61,39,81,59,184,84,149,61,25,235,160,181,194,166,163,226,12,62,26,191,142,180,214,245,157,106,164,70,90,190,11,37,224,157,14,30,53,206,237,120,105,120,103,255,55,238,72,164,174,234,162,75,220,226,220,145,249,66,85,30,4,44,244,182,125,147,121,131,219,17,108,242,17,30,142,84,137,51,197,12,219,205,251,41,170,43,227,109,182,42,85,204,104,155,40,220,210,171,207,107,147,106,87,67,177,253,24,56,213,119,214,222,69,58,177,194,143,59,31,243,185,9,89,175,114,37,148,54,225,149,55,23,189,217,116,179,
 230,107,39,241,250,68,123,69,147,28,167,79,18,178,135,68,148,94,237,6,220,227,112,179,211,21,191,3,113,31,198,8,251,214,185,159,12,179,101,255,74,249,165,88,41,90,160,135,81,172,223,32,249,89,68,65,39,76,67,218,186,70,187,253,164,16,171,195,220,174,113,132,177,114,12,21,121,226,106,96,40,135,108,39,95,138,229,186,50,107,149,159,214,225,252,255,199,33,43,22,240,207,78,252,69,46,66,197,157,191,94,241,169,6,54,121,119,1,42,217,236,75,167,122,53,16,79,144,253,138,50,217,2,159,7,56,135,226,211,227,254,114,92,206,110,58,169,169,51,19,128,93,202,242,138,58,56,29,16,227,195,202,29,82,87,18,111,233,49,78,16,61,36,249,138,180,155,248,246,80,97,174,100,206,161,78,213,103,160,144,87,225,131,244,117,201,45,169,45,157,138,245,1,194,148,203,229,130,188,57,195,173,26,63,176,46,211,211,237,74,253,121,100,231,100,67,176,193,175,179,147,224,134,211,88,165,52,207,32,8,198,230,70,24,157,143,12,24,235,2,127,105,27,194,162,196,238,230,48,103,13,26,86,154,41,36,81,252,140,162,183,192,44,160,149,54,
 33,4,175,245,67,163,130,29,153,169,211,168,112,236,49,229,197,109,236,7,120,174,13,43,172,64,145,232,208,202,198,165,33,249,190,142,217,199,123,204,23,23,217,104,112,36,93,208,176,109,153,8,167,242,213,77,2,12,115,44,35,10,41,92,211,254,3,226,82,79,214,180,30,226,58,104,230,251,173,155,72,180,252,230,114,21,94,117,117,54,100,55,120,43,102,204,242,194,73,3,82,241,212,237,4,216,53,106,47,180,132,231,222,17,1,203,247,98,176,228,122,44,29,36,215,101,59,16,62,155,33,92,46,60,197,43,155,221,232,105,124,26,46,202,97,155,85,41,102,213,15,48,142,209,144,55,79,136,18,49,90,72,38,24,220,143,16,39,132,219,56,77,126,168,32,26,158,54,130,170,22,127,31,225,71,250,131,159,44,11,249,225,73,254,182,176,241,87,38,210,163,179,11,230,73,145,154,3,16,35,135,162,78,21,244,158,49,60,91,175,195,39,157,181,232,17,10,54,83,99,71,128,179,68,193,23,173,82,40,234,90,72,70,180,217,146,238,237,195,62,12,166,21,237,131,150,51,16,113,5,90,85,206,25,158,16,23,76,16,145,170,104,164,85,121,107,245,69,176,202,14
 4,207,101,222,203,164,239,222,238,38,188,71,201,75,120,255,237,236,3,0,48,206,174,133,248,243,120,87,47,244,242,110,139,253,254,123,59,209,22,96,242,16,199,253,241,115,107,141,70,109,34,76,226,109,120,245,91,185,221,15,154,37,9,223,68,75,174,30,15,22,88,103,120,212,48,28,88,84,7,110,26,214,30,91,169,166,9,175,208,60,56,248,204,164,222,254,180,105,35,250,121,132,58,212,29,151,149,51,109,136,113,211,157,189,106,72,119,178,208,86,117,147,195,68,67,102,143,91,26,8,118,227,43,41,205,31,97,75,35,240,96,26,190,87,34,173,140,79,120,69,168,251,169,132,247,166,166,231,175,248,47,143,215,26,225,185,51,254,183,129,105,94,67,56,17,152,2,54,39,4,4,99,239,34,231,128,76,14,88,48,210,127,171,49,66,52,246,62,67,152,41,148,34,120,159,110,68,106,153,197,88,158,120,38,168,98,36,54,221,207,84,99,70,166,185,237,67,146,70,155,205,32,25,13,9,100,185,93,101,221,82,181,85,173,40,194,196,196,200,81,25,68,157,181,48,37,135,87,77,101,190,5,218,138,31,173,41,8,130,234,29,61,124,108,69,143,103,65,50,253,16
 2,203,16,247,188,232,45,228,164,112,145,220,170,56,88,168,234,135,189,149,232,19,86,102,14,164,10,201,99,19,206,41,96,92,126,34,136,243,180,93,65,204,72,75,104,124,68,126,48,215,206,65,157,159,136,191,70,39,1,151,126,58,253,240,154,91,192,99,21,22,113,141,29,146,54,11,84,68,100,64,104,47,28,138,166,171,76,78,13,114,2,114,175,129,56,198,21,76,167,108,157,30,24,15,88,204,242,56,161,47,139,90,211,92,14,214,78,42,94,174,98,163,208,147,27,34,128,25,151,221,59,4,147,175,73,210,53,229,108,116,13,120,236,225,176,33,155,16,118,59,155,109,253,142,181,73,70,120,229,165,244,214,70,20,139,122,192,27,160,205,225,11,20,96,19,110,250,52,27,156,192,2,108,76,133,33,85,30,126,48,142,154,215,135,248,146,177,122,61,46,111,105,247,251,14,151,237,61,208,202,51,213,245,46,64,98,28,50,211,141,68,5,120,206,80,217,57,82,127,70,225,33,9,77,242,173,119,173,11,168,189,242,32,8,77,51,70,216,155,106,82,43,52,149,41,191,25,72,160,31,175,82,122,95,116,33,95,104,226,104,211,135,251,230,140,233,82,123,199,71,8
 7,173,210,178,36,246,93,212,224,214,212,61,153,77,117,221,185,219,161,216,11,26,2,67,205,190,5,229,137,140,210,103,116,174,61,237,250,0,87,117,89,187,14,104,114,132,78,176,232,134,244,146,40,84,163,42,7,62,84,86,97,157,155,30,201,166,105,209,118,117,115,31,135,70,208,203,4,172,119,134,125,147,61,196,31,16,202,16,201,50,129,166,9,162,225,63,36,175,180,161,228,60,239,151,45,221,21,143,83,234,213,200,169,116,194,12,111,82,90,146,145,97,131,83,132,159,62,213,166,123,252,62,89,180,104,147,137,74,36,218,212,231,9,161,47,67,70,160,31,155,14,40,166,234,74,44,102,185,242,174,66,177,111,186,25,205,98,86,16,33,88,168,237,253,163,242,31,10,7,123,106,126,186,97,56,255,165,42,229,84,87,115,58,216,134,233,195,164,200,253,173,68,255,4,3,101,17,66,153,238,22,146,34,24,136,59,246,154,195,42,27,51,92,95,174,62,162,210,81,248,136,62,7,107,33,17,126,149,124,206,167,25,82,60,124,17,234,15,178,112,63,40,17,197,160,9,187,133,206,141,193,82,91,230,74,44,104,65,86,138,219,43,29,211,182,220,146,135,16
 5,123,239,212,238,215,82,75,234,235,212,32,176,205,82,210,248,107,127,81,0,187,219,100,38,158,81,41,109,38,171,244,43,34,99,96,99,108,157,146,46,6,133,166,225,178,142,148,221,1,195,58,145,11,181,110,79,65,228,143,63,9,224,147,58,171,131,182,143,108,165,31,250,232,60,139,167,5,215,194,55,146,209,55,244,186,223,198,214,184,93,215,70,75,248,231,74,157,29,250,199,106,106,167,17,1,51,137,77,219,178,121,8,247,191,54,3,44,249,239,220,235,179,175,86,156,184,195,9,250,158,229,129,141,94,157,40,178,241,82,22,163,12,194,23,71,229,27,112,80,118,51,60,77,107,171,141,63,160,114,137,241,227,31,201,214,249,39,191,136,83,57,110,197,192,2,228,51,146,232,131,52,172,125,247,30,129,195,59,219,89,239,90,246,167,145,8,2,173,76,30,66,73,210,140,54,247,25,113,200,170,40,111,84,163,152,38,29,69,26,254,172,252,184,86,208,41,105,239,15,125,253,52,36,197,35,209,240,198,164,179,253,120,89,185,255,187,90,15,250,50,221,211,195,200,179,102,0,166,228,50,0,43,44,205,249,158,13,159,131,103,21,0,119,253,108,255
 ,36,45,184,212,62,207,106,62,62,206,210,91,119,247,11,18,61,148,105,240,201,83,200,160,137,93,30,148,112,111,55,82,26,121,233,94,77,100,132,44,87,2,16,156,219,145,177,99,220,194,229,170,201,174,181,3,168,255,232,149,252,26,188,201,219,78,102,28,238,201,72,77,108,17,55,140,19,143,75,144,42,32,182,117,177,139,231,9,73,244,14,125,202,157,18,250,158,25,2,174,145,211,241,154,56,194,214,95,252,186,140,217,46,233,98,95,244,16,44,124,226,226,54,53,25,154,172,221,133,151,238,69,110,88,210,35,6,93,244,46,191,16,181,92,51,117,42,33,240,138,180,177,46,151,59,212,70,189,112,204,9,104,20,32,140,116,168,76,25,209,104,101,213,37,36,79,76,190,254,83,142,2,137,73,47,145,207,10,141,229,147,43,33,113,86,195,114,231,112,12,54,71,115,149,170,25,237,121,16,71,163,211,38,197,233,16,161,52,134,36,227,40,146,15,96,138,210,76,238,159,77,182,157,39,48,186,204,116,187,147,202,172,45,127,253,134,108,188,215,34,181,133,112,92,39,201,64,116,50,224,235,197,19,197,51,153,145,85,123,244,207,57,255,56,46,94,10
 1,58,1,205,239,145,226,34,56,230,112,43,152,123,94,67,145,128,106,70,174,182,52,45,100,223,67,213,179,212,201,48,61,17,252,37,221,61,127,17,99,93,112,2,226,32,8,101,137,200,202,115,190,150,56,15,6,38,74,42,214,50,12,187,203,86,204,253,144,3,30,244,251,99,166,99,2,147,213,127,131,100,227,214,29,15,19,158,21,218,72,132,153,21,114,133,94,191,134,39,71,136,50,116,168,53,151,227,202,62,238,56,195,225,196,60,195,112,169,95,131,33,28,98,109,104,252,137,45,76,20,49,254,106,194,41,30,118,217,90,26,96,88,115,88,160,23,35,5,138,11,191,170,112,155,221,251,120,53,177,13,249,206,32,191,188,211,206,151,71,201,46,149,23,113,186,156,209,121,86,22,235,255,242,244,124,173,240,57,112,252,54,238,45,102,79,111,238,211,234,54,200,116,83,216,255,21,167,184,103,251,195,2,0,74,196,87,109,42,54,238,16,109,11,129,113,226,79,237,19,133,157,231,247,227,177,99,29,167,146,25,184,150,94,114,207,129,38,39,127,123,243,111,35,150,63,170,145,128,78,117,81,61,164,245,42,161,72,92,5,130,114,8,37,223,119,99,55,204
 ,149,98,88,203,136,170,210,229,54,173,141,93,42,249,121,254,1,229,242,164,66,142,249,107,206,240,192,167,2,176,30,23,14,168,167,222,91,71,181,186,126,170,48,187,226,237,220,208,50,36,60,192,115,229,2,10,98,79,236,157,210,25,214,40,204,172,54,11,69,201,188,104,78,31,240,209,94,97,84,245,12,171,196,21,174,187,227,177,154,1,169,183,144,136,249,39,18,25,46,138,208,43,215,85,101,14,210,33,221,2,72,98,182,3,69,126,136,66,161,208,55,136,11,198,134,54,81,240,6,150,80,176,192,160,187,124,162,217,11,26,18,71,15,221,118,141,56,37,184,196,231,146,114,142,43,110,33,159,89,231,172,25,49,22,155,26,201,81,202,235,94,73,132,57,120,185,83,200,17,31,103,23,114,154,114,109,166,5,85,117,15,11,202,60,22,124,141,78,224,49,138,159,250,161,185,163,163,165,137,23,141,149,217,203,236,32,38,163,92,207,86,122,170,157,225,69,48,166,46,137,242,4,111,228,90,5,155,119,98,223,43,65,102,171,241,3,38,171,174,224,248,127,3,125,84,146,181,216,252,115,235,211,252,244,201,180,131,246,15,100,72,63,71,153,243,218,19
 8,219,23,16,42,118,206,189,76,101,185,221,88,205,222,2,137,209,49,165,8,75,30,71,94,21,143,66,208,199,89,41,175,119,154,39,241,118,187,100,187,156,168,137,92,91,71,44,118,58,89,22,240,183,218,198,194,0,33,166,72,118,81,25,153,126,232,179,214,130,165,139,211,127,116,112,8,193,239,49,136,125,138,22,135,144,18,19,51,99,231,86,126,196,8,237,22,54,200,105,48,156,239,148,234,206,89,222,181,22,175,215,30,34,63,77,243,250,78,203,213,146,126,16,212,123,183,84,171,114,47,121,77,244,246,140,65,21,219,65,189,224,128,196,164,162,72,202,109,217,74,244,94,18,116,176,56,246,94,136,45,55,231,61,24,234,70,195,214,113,68,31,36,67,0,189,171,16,115,204,191,47,212,20,227,179,2,217,32,21,44,72,208,152,39,93,147,111,51,64,37,2,3,58,127,52,65,198,209,199,70,74,142,96,50,118,241,255,133,224,80,181,93,20,248,17,246,102,136,172,76,169,165,245,153,10,17,10,240,28,84,44,234,133,229,70,46,99,233,242,93,106,3,42,123,163,252,76,131,90,16,165,189,227,60,230,177,100,233,190,65,57,172,203,94,52,55,67,144,16,47
 ,49,169,49,162,71,153,127,124,196,224,0,103,110,59,41,174,17,227,204,32,53,55,201,128,52,169,201,115,161,112,184,147,55,186,141,76,13,54,123,213,2,16,87,39,12,81,159,125,192,61,46,233,126,25,16,248,168,220,6,211,124,125,197,252,30,82,197,63,169,72,147,245,232,150,14,246,125,96,100,105,112,211,127,132,51,24,222,249,154,236,103,228,148,212,146,46,119,219,147,154,160,66,3,115,105,70,139,143,9,212,75,74,4,154,66,196,186,36,102,16,145,54,190,1,243,53,64,67,214,169,162,163,222,122,139,216,193,93,170,78,175,37,136,75,84,109,34,144,217,61,30,219,246,190,94,161,65,160,216,227,24,23,189,225,117,62,156,19,147,89,191,22,237,193,162,36,214,254,12,89,71,214,118,73,42,249,236,9,196,94,100,42,203,96,125,224,233,19,251,66,97,89,87,83,2,110,17,105,41,122,254,157,78,64,254,254,121,96,221,122,132,122,236,102,35,62,245,32,232,86,191,211,239,23,204,67,60,173,165,158,226,211,34,42,97,198,192,21,121,40,96,166,176,236,230,160,35,232,252,253,124,133,79,163,231,238,44,0,84,146,40,214,235,62,255,165,21
 3,153,91,219,46,33,151,22,228,0,212,88,64,230,21,43,124,66,170,154,9,149,84,25,16,81,187,21,246,47,248,160,0,94,206,38,216,208,15,108,54,176,171,128,115,229,19,243,158,188,81,72,241,155,16,203,252,185,88,152,11,188,235,66,56,120,73,8,18,120,60,72,233,95,213,109,207,202,212,216,174,248,169,227,201,172,193,95,203,252,247,140,139,123,209,55,11,166,214,127,148,65,139,92,40,147,34,160,61,150,197,107,40,94,128,152,85,19,228,10,85,53,63,23,211,7,246,61,168,53,65,67,219,223,7,167,245,92,24,225,51,33,36,117,6,124,174,122,209,199,78,178,25,242,201,66,80,2,136,6,61,74,36,117,147,160,17,225,70,253,247,124,211,72,40,40,163,143,71,69,219,94,34,72,107,15,251,168,81,108,197,242,7,86,108,120,207,140,85,138,136,98,84,149,160,4,147,174,136,14,74,55,5,214,170,161,76,232,118,14,34,14,184,102,60,125,240,109,182,112,89,25,115,17,208,199,202,61,122,243,94,103,107,67,206,126,231,71,128,64,46,179,54,127,237,24,15,146,17,173,21,20,40,241,88,94,92,12,22,185,129,81,21,70,63,197,107,106,209,250,25,124,12
 0,33,202,133,10,107,32,86,64,29,223,252,245,130,157,247,251,132,98,47,43,164,49,204,62,209,68,126,52,55,105,16,212,244,138,145,171,169,55,121,203,141,246,16,99,2,20,232,51,2,124,232,98,26,188,57,228,27,189,118,117,123,251,172,249,133,159,17,181,172,229,114,67,232,51,127,231,87,23,84,158,197,214,61,191,130,94,249,58,151,60,145,231,4,225,52,76,63,25,245,250,124,152,0,92,251,218,6,122,83,99,226,141,127,60,57,139,31,116,5,185,124,190,143,22,23,71,184,175,217,84,51,251,224,69,130,37,115,76,57,1,143,247,48,53,165,46,148,179,6,252,61,174,16,126,64,195,73,72,214,13,222,41,160,75,99,129,67,18,155,137,232,156,148,213,191,164,219,48,189,239,75,188,247,130,11,86,231,148,148,127,55,122,154,95,79,151,189,242,43,86,8,9,73,204,36,82,77,154,13,97,114,147,81,153,208,137,182,227,153,52,138,255,68,68,139,47,108,207,181,56,27,20,71,141,232,179,182,2,58,51,92,191,163,69,187,125,149,201,243,238,12,166,124,97,28,150,55,119,112,119,62,124,192,168,235,179,24,38,51,162,153,234,143,158,202,179,191,88,1
 71,94,91,226,253,132,239,233,168,142,95,166,186,5,75,251,217,111,175,131,67,28,75,34,199,104,48,161,51,0,0,78,60,147,64,21,125,213,154,135,244,111,250,225,130,126,135,255,150,138,119,112,57,46,243,131,187,132,44,121,179,243,169,201,231,35,138,152,215,94,140,81,239,58,200,210,177,140,177,133,23,144,218,246,150,71,246,41,109,19,59,85,5,68,246,86,88,38,117,19,152,70,151,101,153,50,106,52,10,172,244,216,160,91,83,140,244,84,67,64,120,19,133,240,103,29,80,233,177,57,180,49,112,30,117,228,71,180,111,156,3,114,228,87,84,78,140,190,136,43,244,199,172,179,133,224,35,97,136,81,62,77,114,154,148,37,186,85,108,126,253,100,66,66,50,250,139,161,53,169,92,217,226,69,59,18,61,77,239,157,12,131,126,222,72,131,207,58,60,177,96,113,43,160,204,34,83,225,6,197,78,177,39,179,228,101,74,96,110,132,193,157,122,163,65,181,83,82,255,3,127,247,107,53,23,180,122,73,102,106,115,63,24,72,89,143,61,121,157,211,233,24,208,242,65,4,150,190,6,238,197,147,105,209,20,19,67,207,246,72,193,195,80,67,169,84,203,2
 4,174,77,121,108,81,126,153,192,22,165,14,186,193,220,174,94,50,64,243,172,143,74,185,160,101,255,180,215,34,226,134,4,144,43,122,145,48,156,44,210,184,100,14,72,209,78,123,71,8,194,66,189,51,198,128,246,183,198,254,194,48,91,113,242,57,132,144,92,4,152,21,43,151,183,25,114,96,182,202,146,162,220,149,173,172,39,56,199,127,182,124,217,143,54,112,54,112,170,175,68,32,57,139,253,226,106,76,198,59,173,28,242,227,187,231,142,199,82,206,92,178,110,230,75,23,134,137,211,130,156,74,149,186,130,123,33,229,222,33,40,200,81,156,166,255,52,83,14,72,112,133,39,149,198,90,99,6,104,40,252,179,179,168,197,133,81,205,189,146,155,8,65,57,197,69,181,130,178,119,31,13,186,88,146,60,185,73,31,83,181,84,243,100,110,31,20,69,204,76,178,109,159,216,116,89,221,168,172,216,93,125,233,21,29,18,247,207,161,43,41,214,68,109,211,6,205,21,116,199,225,182,175,31,188,141,170,53,101,25,142,72,190,242,224,26,97,244,245,185,207,209,20,171,144,245,207,162,12,166,241,67,49,254,243,184,54,91,59,212,25,89,205,106,
 201,228,89,99,74,250,52,188,89,119,150,159,153,74,239,16,173,124,125,209,140,36,253,252,232,52,111,58,107,196,47,148,115,191,19,38,135,65,89,119,159,36,155,33,111,212,32,33,91,156,141,249,74,57,41,69,93,85,223,80,133,110,9,162,20,164,103,202,99,58,203,224,58,107,175,191,106,112,140,33,53,27,43,241,97,120,220,234,212,135,4,89,241,110,181,236,59,97,73,59,6,19,179,219,233,200,151,43,105,81,84,22,255,4,227,149,122,156,110,195,20,20,96,170,62,233,177,67,98,83,145,197,245,254,8,13,11,113,171,152,44,241,245,126,149,132,108,180,217,138,38,106,139,47,197,220,187,146,184,92,46,85,107,159,114,171,143,191,162,168,235,110,163,184,183,175,210,58,45,61,167,161,109,251,33,234,44,13,7,168,12,221,86,177,181,97,125,62,186,29,148,226,76,53,86,150,163,81,133,55,28,98,94,87,216,117,38,167,77,165,106,60,118,236,196,253,251,22,27,77,239,229,91,127,149,87,95,60,64,13,63,130,53,215,136,244,157,36,244,94,22,216,76,187,8,146,112,244,121,88,237,31,82,167,189,5,229,25,99,131,82,234,28,28,61,5,143,9,7,35,
 245,42,199,111,211,251,53,10,150,200,175,42,8,173,194,51,201,55,85,78,216,126,205,25,249,35,197,178,202,151,123,198,129,49,114,120,37,88,22,107,161,69,102,69,23,122,71,135,58,172,187,179,188,91,129,73,149,130,163,96,251,175,4,152,147,242,212,186,76,177,164,197,144,242,58,243,31,5,89,193,58,2,121,22,144,54,178,188,199,41,191,83,117,151,201,211,247,172,20,131,154,220,185,94,227,35,23,110,159,78,141,59,233,202,238,220,15,25,37,162,58,253,7,196,90,29,101,3,91,217,237,139,4,54,45,211,135,189,94,103,70,188,106,217,25,187,1,43,130,149,143,209,252,147,250,160,209,112,161,248,69,10,61,212,211,23,122,131,137,169,219,48,255,48,26,180,206,159,143,8,112,33,124,111,167,138,131,79,20,30,122,198,215,8,111,192,166,188,25,233,6,161,188,21,51,202,132,136,231,81,177,255,200,167,218,157,124,59,57,56,37,99,228,241,49,195,35,232,23,19,97,229,139,3,34,46,228,125,182,59,157,202,235,24,137,95,62,50,215,87,252,193,119,170,171,56,26,25,98,70,208,250,76,25,10,129,40,141,205,167,83,211,150,88,4,158,128,1
 07,247,97,169,246,103,65,223,186,112,46,92,169,36,77,50,180,167,126,129,32,104,47,128,0,113,42,249,110,86,88,124,246,92,220,68,206,14,46,32,88,110,123,242,85,246,95,38,117,132,211,105,139,167,46,130,128,110,100,66,227,136,193,3,175,229,230,252,93,7,72,246,150,88,248,123,193,125,223,153,57,82,246,181,18,160,127,229,190,31,39,93,252,13,240,58,59,146,25,251,228,26,118,8,227,158,139,253,87,35,92,143,50,35,156,198,116,84,249,7,224,137,148,204,235,34,44,82,133,154,171,87,168,110,182,77,140,4,152,81,201,48,240,202,213,39,128,131,184,238,219,110,22,33,147,61,127,197,39,104,7,75,93,31,82,127,252,224,229,125,205,245,177,94,2,74,16,227,12,248,40,106,202,171,50,128,182,240,84,147,129,178,97,120,179,84,234,220,140,7,70,237,228,217,81,64,38,197,20,93,23,214,42,100,217,157,149,238,133,192,246,122,40,95,209,65,133,71,119,133,108,111,95,91,119,149,225,63,19,175,208,85,72,238,136,152,211,26,81,53,85,247,38,33,229,175,186,214,77,72,49,74,54,185,88,51,8,129,138,138,202,34,148,61,20,72,248,128,9
 6,45,57,68,251,124,199,139,200,246,69,200,242,39,8,42,235,181,132,202,101,109,152,213,40,243,132,116,23,53,54,11,172,97,84,70,151,59,137,168,175,125,31,254,58,120,107,137,110,187,205,124,12,30,128,121,63,1,118,35,235,255,47,86,152,18,198,97,106,157,141,109,42,54,142,1,19,254,49,119,237,144,84,200,63,16,210,213,4,118,119,16,106,106,224,41,23,107,57,173,184,166,157,32,86,213,35,196,126,159,69,121,15,68,76,54,114,188,97,18,59,89,35,29,201,31,244,157,199,2,19,3,188,39,96,219,240,136,254,144,232,221,112,98,90,20,124,37,44,54,95,18,22,23,23,30,24,231,192,208,239,200,171,60,35,116,45,59,45,231,103,38,72,85,226,134,96,139,38,236,1,20,37,177,130,119,39,151,37,75,21,50,111,34,225,61,97,122,61,81,130,130,233,62,164,91,109,126,204,80,79,208,23,229,172,101,195,11,61,92,238,162,204,68,157,13,83,138,229,58,96,75,21,73,105,73,34,153,168,70,96,203,186,17,75,22,199,128,146,117,164,214,51,236,140,223,135,23,194,89,59,36,37,132,102,107,84,229,197,112,135,28,19,40,26,126,42,13,119,110,68,153,177
 ,42,17,10,143,94,115,159,89,152,189,23,81,65,88,75,230,104,123,124,167,4,177,164,154,252,196,232,189,210,121,61,190,102,12,67,86,46,96,151,64,160,216,35,250,231,118,59,189,56,247,28,159,135,36,66,113,190,57,109,95,108,243,18,90,101,40,138,155,195,8,22,11,11,185,114,248,102,211,142,22,90,184,228,198,227,223,54,131,125,143,95,71,160,215,140,153,78,203,246,4,75,215,83,248,237,239,214,218,126,161,216,41,213,48,247,63,147,134,13,48,30,103,10,90,1,45,245,9,56,89,210,72,234,91,118,46,150,15,236,70,240,179,51,7,230,49,255,181,235,109,199,37,78,30,145,66,51,58,139,91,108,224,14,103,139,204,185,35,34,191,199,10,161,73,246,73,44,220,132,115,25,159,58,166,109,222,251,123,141,69,113,149,104,109,227,58,215,160,180,231,217,37,210,95,151,198,115,154,174,1,157,114,188,107,90,202,32,175,160,131,66,17,138,25,41,133,118,185,199,78,78,93,61,19,170,157,101,237,40,24,25,42,69,23,198,239,203,79,21,58,57,199,134,8,184,72,207,48,174,74,184,141,210,244,43,252,138,32,199,192,157,126,0,4,44,172,247,154,
 173,205,226,237,148,190,20,190,68,210,249,150,119,43,233,59,96,237,18,227,11,164,87,11,192,138,105,227,137,155,228,155,134,139,241,77,173,246,25,3,149,103,182,217,121,39,224,108,37,43,202,94,178,24,111,25,214,245,21,201,230,9,83,147,154,137,86,251,145,140,54,179,198,117,110,241,126,91,169,43,166,33,20,76,138,140,122,209,16,173,97,105,218,93,59,10,145,231,38,118,232,175,153,230,202,26,72,25,100,246,201,253,31,81,33,255,135,129,198,253,119,144,237,88,132,254,243,225,11,26,64,128,116,98,101,226,175,84,104,199,226,64,30,173,173,91,120,143,9,30,240,119,109,236,175,17,105,217,43,198,204,188,235,192,112,46,190,211,71,142,182,196,25,15,7,229,165,71,236,216,164,14,81,148,166,33,83,187,38,251,179,198,163,20,76,175,182,107,6,51,111,38,88,11,148,37,221,58,108,53,27,153,238,208,96,247,180,107,205,1,164,94,249,72,182,139,248,117,224,139,197,159,84,144,76,139,149,248,91,193,66,116,207,98,48,57,168,205,222,186,153,108,109,166,3,169,117,197,242,123,219,43,144,210,116,169,139,50,227,201,93,10
 6,143,125,112,87,53,27,68,221,222,203,29,175,17,9,6,156,171,19,29,15,170,121,30,87,117,132,119,1,220,108,110,82,144,77,78,88,22,42,163,148,42,199,130,119,181,246,84,227,203,160,158,189,124,138,145,123,38,40,171,223,224,181,186,209,245,96,108,251,134,207,119,159,34,197,214,125,211,210,5,148,138,227,66,110,137,133,102,157,83,245,111,65,23,31,90,42,110,51,184,39,131,210,189,42,205,32,129,20,192,109,129,89,161,137,1,129,68,210,43,0,162,182,180,131,211,214,105,190,253,1,12,221,107,121,190,111,23,155,122,36,178,197,146,180,41,8,58,122,114,85,115,217,9,159,92,113,201,180,21,167,65,145,112,218,0,248,89,39,241,4,24,131,132,59,116,59,254,131,63,108,206,21,0,171,69,62,29,35,26,203,33,205,207,86,146,32,208,242,252,69,255,80,179,12,24,4,165,14,235,151,241,126,230,111,79,188,30,49,158,183,12,17,241,54,59,144,236,191,39,156,92,118,89,26,112,34,226,36,225,236,20,102,96,213,69,95,218,177,199,42,204,158,100,146,124,137,179,26,16,103,199,228,141,84,150,35,210,206,96,12,66,95,85,222,76,175,230,
 246,37,119,172,192,96,59,210,248,134,34,158,225,138,147,77,4,232,139,106,229,247,71,91,7,91,132,126,82,65,20,159,183,224,48,59,141,2,139,206,2,239,207,195,94,64,201,44,43,19,16,11,166,110,45,10,218,195,176,167,146,251,214,254,145,96,183,222,54,49,16,65,122,188,248,38,205,24,93,207,19,45,67,145,7,68,216,243,84,191,24,97,103,251,107,189,111,23,247,141,73,130,6,214,212,5,130,32,146,183,219,62,170,145,11,14,92,253,3,45,100,122,82,28,161,197,134,154,234,75,205,119,216,160,96,75,117,25,77,232,80,128,128,40,47,201,148,215,203,8,144,207,232,248,177,124,101,125,116,227,246,7,54,181,122,2,15,35,56,203,85,233,171,6,173,80,233,226,161,234,86,113,182,137,71,168,202,220,143,149,87,169,119,8,1,11,144,35,57,155,104,245,72,191,73,219,148,190,16,176,147,227,219,65,174,123,72,115,124,129,135,130,217,60,13,3,167,160,84,142,213,173,105,232,77,75,217,4,215,213,138,54,115,155,182,248,135,159,84,122,30,74,36,129,219,95,140,40,145,79,190,147,59,11,180,129,5,66,153,209,33,43,115,48,162,155,189,190,11
 8,187,241,0,20,43,211,47,96,126,80,136,47,129,22,229,214,89,181,115,233,150,75,129,254,98,14,102,235,240,110,219,37,252,253,223,36,42,162,143,51,169,143,25,206,248,192,254,184,14,105,13,255,71,56,165,62,100,142,29,191,236,194,132,185,137,28,78,243,180,53,236,143,49,182,144,53,105,59,44,176,154,225,170,137,217,221,247,83,0,69,254,198,126,75,205,80,246,112,79,180,70,189,36,218,4,73,179,75,58,0,144,114,66,50,39,40,208,140,157,53,136,83,188,199,124,44,127,164,44,170,87,5,212,131,2,63,121,118,110,83,141,249,134,142,36,160,251,41,162,75,253,159,169,249,72,120,10,3,21,184,206,239,1,35,91,71,143,105,204,131,14,134,166,246,57,225,113,121,14,36,1,234,239,9,14,213,74,203,254,57,163,174,198,197,96,179,215,9,119,6,10,167,184,64,46,224,187,252,223,25,169,150,139,226,86,48,70,194,155,228,213,40,34,119,19,165,78,113,122,6,156,106,209,134,30,106,113,183,219,134,197,50,30,26,65,29,16,196,240,95,200,192,23,202,10,79,182,73,87,162,16,16,125,14,1,145,65,57,177,163,138,140,212,142,124,105,155,136
 ,109,97,164,31,108,23,116,119,64,180,172,99,29,67,23,107,39,109,0,92,181,147,77,181,16,223,6,224,221,92,243,180,108,107,217,229,161,89,29,109,234,198,91,61,145,147,96,253,16,102,228,215,220,211,74,120,224,193,163,4,214,0,155,208,171,100,77,36,128,232,41,51,187,204,169,146,166,15,139,103,145,218,86,167,229,128,14,165,141,3,165,78,197,113,24,87,243,119,25,91,89,64,151,42,211,120,233,40,238,194,182,149,166,189,123,9,22,92,35,44,239,38,198,40,89,13,130,61,111,149,180,193,96,178,115,19,139,57,15,248,136,159,22,10,137,192,244,221,29,213,232,102,128,173,133,5,131,96,254,101,236,10,96,132,75,178,139,38,247,244,162,48,134,3,74,144,14,162,204,72,94,187,204,187,154,73,64,132,113,68,187,28,178,19,154,139,98,37,186,115,21,210,180,69,61,213,94,152,187,179,216,95,107,143,185,129,43,202,206,17,150,214,175,238,62,247,78,162,44,117,149,200,16,206,237,231,144,49,254,153,151,42,83,222,93,21,160,172,7,186,29,107,66,42,172,210,178,223,199,51,94,231,64,69,252,78,29,2,39,237,152,177,61,34,20,212,10
 4,95,141,61,182,46,20,146,32,189,79,66,89,42,194,154,73,184,155,254,224,26,8,124,203,226,207,71,31,88,156,43,64,14,23,132,24,155,170,232,207,80,185,168,121,250,155,31,32,8,221,119,255,222,171,158,9,18,30,16,2,204,216,81,152,131,233,91,181,155,210,191,109,28,226,195,100,22,156,114,16,2,134,73,228,252,131,66,68,161,25,140,207,190,88,75,54,141,103,241,109,206,180,13,50,245,210,101,108,102,81,110,111,9,210,156,73,49,15,13,106,104,174,202,11,32,44,215,122,39,112,162,202,84,8,131,191,79,134,14,197,202,128,57,133,97,135,148,213,48,138,59,93,196,61,179,247,45,210,223,177,149,34,10,82,7,77,140,10,244,158,147,149,207,127,197,12,24,105,4,239,183,102,194,175,149,245,115,80,203,152,164,237,124,254,213,111,159,174,39,76,7,211,139,167,71,26,184,32,244,121,181,9,128,222,127,51,243,173,171,9,236,62,14,93,247,250,106,246,237,196,159,205,15,233,62,118,215,45,51,162,248,162,202,108,153,215,160,41,69,244,24,211,48,50,69,6,192,236,158,87,147,248,84,196,211,137,161,7,13,66,8,155,212,237,186,254,44
 ,125,98,112,63,22,87,249,206,24,152,87,226,223,32,56,140,175,42,111,190,120,57,0,183,202,240,1,172,94,189,61,208,73,188,235,247,62,156,160,73,108,194,225,38,85,18,218,177,185,65,118,37,16,144,11,227,239,12,210,28,74,238,245,160,76,145,245,97,121,121,49,62,222,231,116,228,129,94,8,179,237,40,6,76,65,183,118,254,115,76,178,45,21,242,26,252,137,176,135,157,6,103,248,242,195,101,102,214,174,74,228,193,250,57,233,72,118,207,108,16,50,135,91,65,82,176,207,220,105,149,189,180,217,19,247,176,42,109,231,84,130,247,201,17,41,48,169,13,24,142,196,99,158,99,202,212,79,52,40,201,35,118,36,88,92,55,227,160,107,51,252,250,228,92,182,75,136,102,167,56,246,178,224,47,249,97,210,62,87,107,229,107,72,105,18,73,28,219,165,154,122,106,241,191,227,217,157,188,1,108,157,205,58,181,143,165,175,10,97,197,131,70,193,195,121,193,7,141,238,237,158,39,148,23,171,9,81,248,79,136,40,176,116,20,124,222,66,41,181,250,217,63,35,37,136,199,191,55,138,221,200,157,190,34,203,178,68,80,178,158,93,111,96,154,47,2
 04,226,54,251,230,50,57,128,36,194,224,52,65,85,145,30,6,151,213,218,227,193,99,162,142,251,187,238,163,46,19,205,101,98,172,45,220,162,72,228,214,78,101,129,45,65,202,211,1,234,45,164,28,234,106,229,33,9,134,132,84,135,108,158,169,222,35,233,31,238,67,188,244,222,107,141,143,74,52,125,102,70,193,158,194,182,77,149,75,180,211,53,86,118,213,191,116,160,75,133,179,151,190,116,19,130,188,41,149,122,101,91,122,153,208,245,210,216,163,0,162,132,72,48,236,160,11,141,53,152,78,106,40,62,84,30,229,214,49,209,44,229,131,17,247,2,59,240,65,136,198,123,167,149,41,245,158,252,101,157,60,26,186,37,160,18,235,70,107,174,38,180,47,242,104,253,196,224,77,142,172,8,66,221,71,183,16,136,237,76,255,248,220,149,136,149,225,50,109,183,137,24,4,178,49,160,174,252,138,246,28,189,227,112,21,19,177,196,153,80,32,155,190,133,168,10,7,228,197,23,239,232,149,117,11,140,227,169,2,120,70,81,49,158,58,238,174,56,178,107,125,133,97,50,219,147,82,230,216,173,187,11,222,95,61,114,171,2,215,220,129,232,168,5,
 32,48,239,128,98,173,86,192,51,38,215,243,115,168,176,126,101,47,189,119,39,193,41,199,40,199,181,15,113,132,79,200,54,44,28,104,19,4,56,124,177,236,242,128,160,93,251,110,6,90,49,219,27,160,151,24,50,211,233,202,44,153,82,195,169,175,226,183,3,87,10,235,225,153,108,248,158,180,191,125,248,139,201,232,151,241,165,136,109,111,185,64,247,149,116,245,185,230,135,195,109,29,230,210,4,118,112,77,1,81,142,4,109,65,81,122,42,239,19,154,21,247,37,179,90,149,136,32,52,248,193,29,135,99,40,249,57,93,30,14,12,251,169,242,36,133,164,150,239,201,23,20,48,165,47,175,101,133,135,187,78,135,69,173,153,245,81,14,59,33,115,34,137,4,72,62,234,57,73,154,204,178,45,36,21,224,255,168,86,8,36,25,239,146,71,20,50,174,200,186,235,31,170,175,78,99,2,48,40,172,67,142,156,48,136,237,149,23,60,235,150,237,28,36,179,150,159,53,210,150,140,228,0,165,99,90,6,211,254,77,8,106,88,38,255,15,185,84,43,134,75,34,192,28,253,53,125,191,196,128,90,50,158,37,136,128,161,154,238,8,114,63,67,30,80,168,34,88,96,90,54,
 141,61,189,174,219,228,245,161,83,178,171,231,240,32,128,95,68,127,6,224,206,39,218,216,88,112,233,191,238,216,253,129,8,166,64,104,122,79,244,187,34,28,27,129,193,2,97,36,1,107,41,209,233,148,180,131,164,129,74,3,35,204,3,198,93,174,249,17,138,178,57,57,56,193,79,108,150,57,55,64,171,137,201,201,255,149,158,232,111,76,56,105,220,241,195,142,208,92,111,2,164,111,125,170,186,227,45,47,105,87,220,4,203,102,19,243,90,93,145,177,178,40,33,204,178,1,40,76,237,202,227,111,154,27,64,124,109,119,197,217,4,9,219,100,240,235,26,82,6,199,135,29,242,33,130,179,28,142,119,237,84,172,197,82,93,115,253,9,146,184,16,65,235,186,236,22,67,110,118,90,181,254,47,176,134,153,249,172,140,244,30,250,8,120,17,143,247,8,235,30,127,42,100,35,36,174,238,81,150,24,201,250,75,177,132,169,247,101,185,224,105,69,218,3,179,138,5,21,83,11,201,219,121,138,135,160,192,248,207,135,120,12,21,70,245,60,218,149,201,99,13,175,94,21,131,156,224,238,130,129,15,201,76,207,15,158,104,117,105,27,70,6,104,93,74,243,184,
 175,85,66,44,73,194,6,113,42,255,44,130,197,216,65,66,204,35,109,179,104,42,241,81,111,12,200,48,231,166,228,53,120,31,176,215,180,244,131,198,142,125,245,75,97,133,221,76,107,237,12,228,97,168,210,39,199,93,36,140,233,51,142,151,16,188,247,160,55,34,124,90,188,199,34,221,211,253,178,254,86,18,140,104,155,99,228,53,162,22,112,32,96,80,155,205,174,15,55,230,66,106,60,167,187,62,19,9,11,54,176,206,72,196,157,138,74,178,139,7,173,1,121,223,3,159,32,79,132,250,192,118,113,7,250,167,41,238,178,45,16,52,93,193,56,252,136,145,65,70,253,9,87,153,25,222,164,243,41,189,142,104,32,180,6,39,6,122,190,158,63,119,71,67,140,17,206,86,120,226,200,201,82,2,132,22,69,186,170,20,6,72,125,78,78,150,243,224,53,209,76,175,30,244,137,233,227,228,220,111,86,208,136,16,232,224,226,64,73,7,186,1,233,207,63,226,124,75,8,179,241,210,152,176,179,205,111,86,7,176,220,12,1,169,67,248,124,42,58,55,215,154,47,214,105,226,100,246,26,134,84,239,250,90,53,6,75,111,142,60,48,6,156,10,96,12,4,208,143,28,24,97,42
 ,88,17,27,128,103,137,208,63,95,160,83,253,213,254,90,61,176,82,81,214,105,155,81,159,11,61,101,156,193,184,217,112,50,60,28,148,106,240,115,150,54,120,113,185,140,145,10,176,12,34,53,104,145,187,62,87,150,71,250,210,60,85,35,27,134,182,102,60,28,213,26,218,196,189,185,59,206,231,231,142,238,91,151,199,24,143,135,180,77,88,216,145,155,13,40,244,189,139,251,231,223,9,179,38,135,112,109,231,219,164,47,208,142,250,38,4,122,160,224,145,217,155,107,80,153,71,61,33,194,95,166,30,153,102,133,37,22,78,169,227,226,14,138,175,175,67,131,58,145,163,48,58,103,99,173,96,100,174,133,24,225,97,79,116,81,86,167,218,110,181,99,160,50,232,208,247,114,185,13,106,125,230,185,49,255,68,236,178,8,244,105,10,91,242,109,20,40,241,223,235,158,240,55,19,250,3,8,228,52,22,153,46,110,165,9,68,103,43,5,65,213,79,111,97,211,215,88,222,17,46,35,240,234,27,98,152,230,93,37,116,27,78,198,117,63,191,57,246,197,135,12,225,130,217,67,77,155,26,44,9,97,41,73,253,195,38,171,11,26,34,133,233,22,203,49,108,85,183,
 109,226,52,231,90,89,64,120,99,254,71,28,137,189,64,239,93,107,56,157,162,55,249,18,205,239,30,226,158,45,59,59,190,103,83,201,64,79,13,26,23,40,75,197,136,230,69,145,12,194,147,110,183,138,185,6,38,104,110,59,254,131,86,97,183,240,135,144,233,243,157,87,4,210,60,142,167,118,128,205,138,15,244,27,214,37,204,69,176,166,27,95,61,175,18,46,192,25,149,126,15,244,76,111,240,41,217,35,129,119,73,148,129,20,220,137,126,237,199,29,101,57,162,49,99,39,202,206,112,101,215,54,228,30,182,81,237,30,189,184,130,173,222,130,65,96,220,140,52,93,193,224,255,206,64,31,147,78,220,121,15,127,218,228,246,175,189,246,202,149,139,51,231,235,111,150,33,80,24,106,30,15,145,10,251,74,148,18,186,170,30,147,205,31,12,151,49,247,110,50,29,161,155,40,183,138,116,228,88,216,208,29,191,88,55,74,59,184,147,100,103,57,66,171,208,128,140,35,45,239,185,46,121,209,18,134,188,111,184,70,23,243,213,204,31,11,23,150,121,14,150,25,139,182,224,168,67,111,205,18,111,206,68,159,179,218,53,23,4,113,172,1,24,161,78,214,
 123,211,183,103,3,79,195,235,176,195,119,240,151,137,81,197,88,13,61,129,141,73,236,153,85,214,73,139,133,46,129,68,3,50,242,176,188,225,239,164,190,95,85,9,192,175,14,55,163,188,45,132,252,104,86,157,133,26,71,182,84,136,107,27,93,145,247,241,244,141,172,182,125,219,76,84,85,64,122,119,248,207,83,10,30,45,208,198,68,99,24,249,159,185,242,16,251,229,115,212,230,187,249,106,112,128,29,229,249,143,3,177,33,146,242,146,89,214,164,203,167,4,207,110,185,58,215,51,58,11,190,13,7,238,213,173,247,68,19,141,171,58,209,150,186,106,101,226,173,247,83,221,96,67,18,219,219,228,26,32,28,34,139,169,248,124,242,152,0,32,120,30,18,253,34,221,6,78,68,87,174,94,141,249,14,105,114,226,255,39,139,30,15,236,12,1,145,175,38,113,34,127,35,95,199,191,255,236,69,170,229,246,205,128,52,200,168,4,252,54,63,130,102,247,197,7,94,82,34,116,87,187,181,238,106,33,150,97,71,79,138,209,64,116,246,98,12,79,91,176,2,146,141,139,168,138,34,90,9,50,252,34,79,23,177,136,60,144,62,62,132,150,232,93,131,32,217,190,2
 ,234,68,88,3,197,75,172,98,229,86,141,209,241,218,247,147,155,206,32,61,86,254,173,246,91,15,89,27,128,90,95,198,35,26,3,255,197,96,35,246,17,106,149,81,124,28,209,64,97,210,64,143,198,66,252,115,68,70,148,179,4,6,105,166,93,100,118,248,65,226,170,97,111,55,6,5,179,91,87,204,219,136,203,179,143,103,113,87,216,32,204,252,33,30,142,200,24,185,173,239,73,160,138,98,204,51,100,228,159,82,182,14,228,119,25,35,229,71,123,248,64,3,56,234,216,98,84,188,154,206,80,20,254,82,76,55,3,46,150,16,221,187,160,68,1,235,219,159,241,84,18,248,31,203,105,53,66,206,166,97,223,135,189,161,206,18,168,86,186,238,193,18,51,158,48,134,240,178,80,239,6,1,89,104,21,71,210,112,107,40,135,107,114,102,114,228,223,206,145,108,91,231,85,29,94,247,202,0,93,139,164,15,126,42,18,184,90,214,16,174,176,68,217,35,38,150,216,209,194,93,65,114,135,89,146,198,77,104,132,169,224,92,42,176,47,197,38,88,97,147,162,22,239,110,47,19,36,24,75,175,15,116,237,138,62,10,233,211,99,236,20,79,229,252,236,72,86,128,252,176,128
 ,88,72,73,37,117,52,1,187,105,27,18,230,91,67,226,136,190,70,97,170,183,109,248,83,118,198,27,156,5,128,252,187,1,13,227,128,36,208,242,217,159,199,41,10,52,189,197,175,27,173,90,1,211,56,78,238,75,172,103,40,124,233,246,14,7,120,150,37,219,152,95,204,54,159,158,42,213,197,143,148,211,236,109,16,182,244,48,233,251,228,31,128,76,149,188,254,4,125,10,118,99,219,163,209,168,25,209,79,9,112,139,133,161,99,87,206,161,70,185,176,103,61,85,34,10,61,184,250,201,134,197,26,171,188,88,155,11,233,36,178,255,236,74,126,159,209,153,134,70,212,239,106,188,85,215,116,200,35,1,164,72,118,73,75,182,118,54,42,199,194,210,153,217,125,233,158,66,69,115,0,87,168,144,29,195,136,13,5,255,138,73,72,85,27,80,96,33,42,125,243,76,216,95,80,42,48,79,247,193,111,54,175,10,121,186,237,232,220,154,112,191,128,112,178,49,209,254,63,83,83,84,10,128,7,180,25,215,236,241,45,57,240,126,0,44,127,110,210,76,116,201,181,135,44,85,177,210,96,109,247,248,163,218,145,31,107,82,178,152,98,108,21,175,78,32,140,32,70,2
 18,251,206,71,208,209,2,169,221,156,104,23,48,46,175,67,182,129,8,172,150,49,30,116,236,183,11,213,167,254,98,8,26,2,141,90,216,160,218,123,115,137,221,70,188,240,58,44,235,73,127,87,154,199,253,158,163,99,84,157,21,90,66,241,251,48,237,180,52,45,34,114,1,181,133,85,201,165,17,183,65,224,211,221,76,2,182,7,91,250,29,154,65,150,174,251,183,128,233,18,200,116,61,132,227,61,54,251,133,176,63,31,69,91,64,124,232,181,135,84,98,155,36,120,165,212,157,117,173,244,168,134,185,28,121,144,207,181,145,152,54,201,43,113,159,97,109,246,32,41,225,205,56,177,18,177,29,65,102,245,91,251,102,4,229,231,197,155,1,123,57,69,150,94,177,196,214,86,78,13,148,164,40,47,25,160,193,186,38,46,229,245,203,28,68,103,19,53,101,106,187,224,151,221,90,134,33,102,86,137,245,31,85,213,168,79,7,64,208,191,178,171,158,18,142,99,115,194,96,6,170,235,95,218,166,130,225,20,93,202,27,59,56,71,29,56,211,55,229,84,183,121,181,133,180,2,157,226,236,150,3,152,2,119,79,29,105,157,186,240,114,84,14,249,227,2,72,105,180,
 156,99,15,45,247,80,198,138,69,68,74,30,4,251,99,37,63,4,219,2,66,217,161,6,26,136,100,69,234,175,174,177,173,23,73,39,229,36,123,107,254,227,218,15,68,77,11,178,241,180,213,89,100,45,24,121,68,155,177,106,182,70,142,222,222,6,18,248,222,152,164,152,24,209,96,119,66,163,111,146,120,164,139,63,221,46,49,186,122,159,7,237,184,74,106,165,162,216,161,231,250,197,61,133,224,123,158,74,212,36,53,195,227,52,87,249,0,184,52,187,91,92,94,179,14,143,39,96,157,43,111,182,62,86,0,219,77,19,134,108,251,67,230,104,38,121,4,116,188,166,14,69,34,47,10,105,44,91,122,101,160,99,45,128,247,64,22,139,170,230,81,201,60,217,149,4,145,115,244,126,178,18,41,174,111,110,234,255,202,182,4,54,76,200,223,207,199,38,143,235,187,14,12,220,250,213,77,198,20,77,150,26,78,171,8,122,186,55,166,168,114,242,226,213,232,71,84,104,251,88,171,174,230,122,60,202,143,228,19,232,193,8,198,74,145,78,13,89,11,15,150,141,179,129,221,98,251,224,75,113,20,71,162,161,227,211,200,222,241,182,7,154,157,255,44,120,125,198,17
 0,45,134,251,171,143,14,210,174,137,176,27,123,221,211,17,9,215,210,219,232,98,179,133,26,172,73,9,140,243,226,20,164,155,205,96,68,67,84,99,110,93,143,153,75,95,49,15,169,197,173,131,71,169,26,117,84,101,81,221,168,165,112,87,184,29,120,156,117,41,88,124,101,159,113,179,116,9,127,71,11,98,29,131,112,96,29,241,31,94,145,34,15,137,155,26,145,172,208,94,150,239,133,116,119,248,141,244,76,146,77,38,90,230,62,161,47,166,143,175,54,42,8,109,92,245,247,94,53,130,41,207,34,42,167,53,221,218,216,149,140,146,213,212,65,121,110,216,117,208,38,177,161,194,50,37,201,225,251,120,236,10,59,5,233,253,105,212,56,250,223,243,190,199,179,49,83,192,114,76,22,186,96,241,56,95,43,216,84,1,12,9,166,46,59,139,183,174,43,154,195,24,141,2,158,205,119,181,139,129,164,125,160,114,212,66,11,47,189,22,176,32,244,103,186,39,51,46,148,19,210,108,203,134,95,9,12,19,203,128,141,87,57,134,69,139,242,63,71,240,66,188,26,182,187,107,148,89,212,73,30,189,71,126,55,71,45,136,204,33,79,74,162,176,205,142,166,5,10
 0,218,168,128,213,142,34,190,94,235,80,53,41,46,232,118,156,26,148,157,174,159,20,176,220,8,247,115,83,104,230,54,30,178,76,168,177,67,96,57,30,63,228,125,29,125,124,117,88,180,118,228,155,201,227,23,49,209,131,95,133,203,247,52,128,27,34,116,235,126,153,82,225,210,187,235,200,230,61,186,88,24,208,174,199,126,130,236,137,242,138,243,82,239,134,202,244,34,253,45,8,41,26,173,252,207,67,125,50,226,189,164,255,171,4,93,242,188,180,100,42,38,158,89,66,199,241,17,200,78,128,80,168,61,212,251,194,62,82,112,105,246,157,118,173,52,175,98,2,36,116,118,197,244,229,63,22,142,57,150,136,37,208,161,71,117,115,131,110,78,196,101,36,172,219,167,120,93,93,142,167,157,218,216,254,72,196,239,30,245,68,127,150,199,139,32,60,84,156,67,47,38,58,254,163,12,11,161,31,211,188,55,216,172,73,171,220,154,145,239,250,85,37,171,0,13,29,3,179,24,110,152,91,108,219,6,185,184,131,123,152,4,225,175,70,115,8,151,67,111,101,98,178,68,122,118,128,224,128,228,243,22,162,39,46,38,46,84,203,138,25,242,139,103,157,
 109,98,152,117,248,104,244,93,134,219,4,180,129,90,117,164,100,107,78,219,227,1,201,175,62,99,232,106,19,105,35,12,77,19,209,124,136,7,19,206,166,135,54,79,110,49,123,20,86,165,121,23,67,6,88,23,184,106,42,15,102,26,167,107,36,14,99,91,144,128,194,6,58,64,190,204,95,169,89,15,73,179,165,59,32,171,134,131,152,200,22,188,35,111,70,174,176,27,1,8,82,116,146,76,160,81,122,20,35,217,22,129,105,212,110,86,90,122,232,225,92,241,190,233,151,206,63,95,97,247,88,57,232,38,104,108,95,198,89,34,206,28,0,136,77,117,174,91,19,17,196,211,223,99,226,33,202,95,234,89,117,25,161,74,65,233,2,13,115,85,223,59,107,109,173,111,94,72,115,40,12,168,176,113,158,10,87,152,168,109,124,62,193,90,133,166,88,174,203,60,178,29,52,17,140,30,233,4,13,145,39,123,219,71,130,205,63,17,134,36,247,47,56,241,43,23,73,152,31,231,8,55,98,88,252,247,172,46,189,139,141,185,209,212,32,12,75,125,163,138,191,14,190,235,47,54,210,164,40,20,221,226,228,87,177,216,183,201,190,16,34,152,82,182,21,101,121,54,46,134,214,140,1
 04,130,124,135,247,233,20,44,46,159,186,95,35,103,83,245,27,64,88,105,206,16,72,229,199,8,138,68,242,178,197,148,58,110,54,120,127,35,234,4,17,237,65,117,135,134,38,24,63,125,140,122,220,118,212,159,21,11,201,175,236,155,107,149,114,192,128,26,49,53,128,112,232,174,66,162,142,24,205,46,72,112,181,192,166,46,238,235,23,151,137,109,171,145,136,243,83,3,243,74,149,250,32,27,165,71,14,39,18,37,136,131,34,221,146,92,155,191,55,57,28,150,23,218,114,76,216,106,236,74,224,236,24,179,164,136,61,38,6,151,146,71,24,100,162,49,86,55,71,72,63,28,173,61,95,35,155,255,189,6,11,231,165,89,228,229,19,127,254,184,81,255,227,67,25,123,136,216,119,106,246,60,6,98,152,67,69,235,60,176,104,4,212,158,0,117,65,8,8,250,156,154,255,111,58,40,140,1,225,6,195,30,237,178,30,125,139,26,154,150,101,3,1,19,217,213,135,84,100,248,125,228,99,115,86,130,78,76,80,45,203,134,132,13,39,172,87,148,41,132,238,48,20,245,39,185,66,59,61,227,227,209,101,64,175,51,65,133,231,241,136,106,244,101,193,77,21,121,30,177,18
 2,83,48,70,74,181,213,91,60,53,193,118,216,253,204,230,121,178,62,82,253,84,173,47,236,106,124,119,100,102,55,194,35,146,8,162,71,140,19,42,83,192,191,146,14,180,158,187,188,151,251,231,219,50,62,19,73,149,39,34,15,59,11,235,33,250,108,95,165,230,225,60,130,154,226,202,143,184,6,250,93,110,117,123,28,71,54,36,88,115,157,141,32,43,249,179,5,164,202,105,125,78,1,226,213,143,141,133,175,47,121,114,15,71,149,144,7,205,66,159,44,101,129,112,52,11,233,66,111,11,131,105,150,143,43,185,115,111,208,194,187,136,99,122,116,41,90,39,199,173,197,35,168,241,209,102,42,143,155,115,244,253,86,66,253,152,120,3,203,100,113,127,76,11,164,96,201,11,72,62,180,101,129,19,254,221,8,67,48,41,51,240,228,148,179,199,14,65,114,57,245,190,244,229,69,41,29,181,3,83,233,176,33,122,15,53,178,68,151,9,243,233,244,25,225,12,14,171,205,162,182,196,178,80,141,58,42,66,89,113,226,30,91,235,113,216,162,230,249,78,152,248,65,150,211,117,53,79,197,99,160,181,91,101,23,41,48,74,248,99,121,137,41,214,108,252,251,15
 9,106,7,151,183,183,37,38,136,138,120,157,221,166,118,15,107,197,14,183,98,54,80,7,226,149,12,23,92,239,117,54,206,251,206,247,107,195,177,18,119,40,235,13,26,202,83,41,240,205,229,219,127,253,224,123,208,3,150,133,125,165,248,105,184,16,64,149,54,129,49,20,54,81,57,82,218,85,164,222,35,237,37,138,131,232,144,232,193,174,31,223,237,156,177,2,1,178,33,10,178,186,69,90,132,54,182,88,152,95,66,223,74,139,210,152,66,128,177,108,77,61,202,169,140,250,229,143,249,169,234,142,150,23,106,181,173,37,141,157,14,167,58,74,133,205,132,139,125,122,75,135,4,35,84,227,32,181,241,161,126,123,222,135,41,180,61,88,166,235,244,35,216,107,249,0,156,6,50,171,46,105,121,173,166,219,40,60,75,61,83,24,102,110,184,246,251,91,117,161,186,0,144,47,233,64,193,165,112,185,254,233,111,193,83,70,31,43,189,64,213,124,119,190,113,105,121,51,200,75,235,224,5,12,177,254,62,20,255,167,125,4,162,24,24,111,173,65,127,207,90,199,35,76,8,90,234,127,5,248,203,231,51,78,66,120,55,236,114,38,141,48,116,246,130,55,182
 ,59,158,60,2,106,33,158,141,30,218,71,59,4,76,214,63,37,169,240,67,108,92,169,20,38,10,57,219,158,94,44,229,253,113,52,51,160,185,166,169,218,234,64,95,205,27,208,178,113,31,219,41,167,27,46,36,193,109,237,39,66,176,33,211,25,246,213,240,184,102,10,77,76,59,220,193,11,35,146,176,217,253,151,102,244,34,252,2,195,39,184,74,41,252,96,83,158,98,203,213,167,17,132,53,36,111,92,211,83,213,221,124,54,25,106,33,242,202,94,215,163,78,6,235,208,93,2,171,67,42,108,161,30,194,243,203,145,185,48,11,2,174,31,79,185,56,157,104,203,231,163,68,25,248,190,185,162,38,90,84,141,11,181,41,196,239,141,225,137,217,234,118,197,255,144,62,225,237,127,49,170,87,76,80,208,253,40,147,249,228,52,188,53,25,249,41,107,91,120,168,255,141,217,228,26,254,226,186,112,5,38,147,2,116,79,200,120,160,105,218,12,165,89,124,115,216,182,37,8,77,230,163,105,22,73,49,96,4,94,131,72,254,8,72,77,81,232,209,153,163,230,138,168,144,206,254,62,48,50,159,89,12,247,120,160,237,130,169,236,62,111,136,168,156,89,127,10,206,219
 ,196,77,171,214,82,175,223,110,153,143,115,135,24,7,248,195,157,107,141,132,35,62,15,149,250,104,65,58,26,161,194,245,183,21,138,122,122,174,232,127,41,222,12,233,115,250,14,98,152,161,251,167,157,198,245,181,184,99,255,121,243,187,251,69,0,2,19,120,216,162,63,52,193,14,37,178,164,239,191,216,251,26,47,89,162,232,211,114,60,102,46,3,86,28,80,179,83,245,217,115,175,170,182,12,142,152,218,15,149,141,61,221,57,4,5,229,111,234,21,183,111,121,221,139,12,232,112,230,237,41,35,117,30,144,12,189,141,31,221,144,188,29,32,192,251,220,29,124,114,2,39,226,225,222,144,197,28,142,144,77,39,53,147,2,22,180,231,149,172,25,168,37,9,164,251,240,21,119,169,144,64,171,160,60,217,63,204,157,154,246,53,204,158,250,225,186,228,247,14,48,128,61,224,110,233,242,157,145,151,160,222,247,220,170,214,22,249,90,94,226,33,26,5,127,110,190,151,182,169,95,222,9,139,247,253,251,22,128,7,149,156,218,184,31,99,15,243,71,185,33,51,99,241,61,197,180,155,153,248,185,189,77,75,74,64,121,35,141,25,87,192,253,45,125
 ,87,3,205,221,118,13,219,148,151,115,9,135,146,147,197,2,202,219,152,196,84,116,35,139,156,204,235,229,12,13,89,127,196,39,111,146,2,186,66,118,25,16,102,156,59,141,92,166,158,3,239,55,144,80,43,0,155,141,165,20,97,41,136,220,1,196,43,138,102,66,202,141,16,19,204,242,200,119,172,100,164,9,234,26,160,237,84,190,137,164,56,81,119,223,83,105,240,44,1,71,216,14,1,68,185,51,139,107,55,81,7,60,37,23,57,142,3,201,24,169,88,58,246,239,10,123,18,66,82,146,248,228,67,74,95,219,0,161,10,42,182,4,138,92,73,23,216,142,209,249,164,113,248,24,182,159,217,77,56,231,226,48,64,163,117,109,74,50,53,20,187,237,47,0,83,16,107,125,206,69,58,77,21,123,225,214,198,65,240,168,42,242,167,125,211,240,66,24,55,181,134,229,198,150,173,72,68,229,32,15,167,45,38,212,230,27,52,51,101,68,2,62,133,139,36,227,118,92,110,160,181,247,208,194,245,109,58,191,26,234,20,79,135,126,45,225,228,154,96,15,38,111,87,32,10,222,223,190,149,202,95,45,47,131,10,139,128,172,190,102,46,204,92,97,86,128,234,102,56,254,138,192,
 125,94,110,186,167,250,208,67,145,241,251,135,232,67,29,157,114,69,97,212,199,249,174,234,177,206,131,101,190,166,9,215,64,204,170,23,169,221,64,148,242,162,149,129,253,79,79,89,148,42,113,12,206,152,124,176,139,100,114,133,221,97,172,23,126,167,31,106,237,39,112,203,62,121,5,56,173,91,85,192,174,16,212,78,33,87,91,3,156,190,182,40,77,15,17,62,153,143,225,136,17,210,85,215,73,50,195,138,187,212,176,172,227,144,210,188,253,35,179,138,119,123,93,90,99,26,169,146,196,27,219,72,91,171,163,38,208,168,179,218,243,210,40,16,124,144,199,145,179,184,167,47,126,125,95,175,148,11,169,56,250,161,18,208,159,43,191,227,201,253,191,99,218,237,20,80,61,24,20,81,29,247,88,225,219,98,80,72,206,160,200,177,27,241,88,7,201,163,43,114,1,154,248,62,50,243,35,12,40,106,122,90,224,186,26,193,97,202,5,29,68,6,9,167,51,252,3,86,81,59,87,49,7,4,89,55,126,221,216,21,156,68,17,244,43,63,191,206,164,23,230,62,18,58,140,188,168,82,186,171,89,177,174,175,114,117,129,39,15,184,181,57,85,92,59,202,42,188,121
 ,32,218,123,41,90,248,95,15,51,18,252,0,230,78,12,92,106,95,153,243,8,32,200,162,35,191,159,14,8,201,103,122,205,177,43,112,140,229,195,252,19,57,203,41,107,46,204,76,216,221,242,35,47,184,211,187,135,46,209,132,145,17,135,174,61,71,28,211,42,147,147,36,41,74,221,245,153,24,87,54,81,3,110,151,13,52,51,106,22,119,207,66,146,76,252,75,232,29,197,243,176,65,99,97,180,42,5,187,88,31,81,79,190,211,139,239,19,248,215,239,135,66,59,10,136,173,92,10,184,31,245,58,33,180,131,13,137,70,125,134,91,67,214,167,95,134,194,241,214,170,18,24,89,167,104,25,225,125,132,112,200,213,87,104,151,46,217,236,51,226,137,85,19,251,19,154,136,228,233,174,192,204,115,209,136,43,7,218,147,251,236,54,249,148,173,195,60,223,99,50,147,144,126,164,72,227,92,95,198,220,49,224,84,163,246,118,32,201,143,138,74,3,255,39,55,221,220,43,111,214,89,140,77,159,225,48,30,233,216,187,1,199,68,155,212,10,117,141,150,35,233,211,18,74,69,230,235,238,159,107,223,140,106,10,103,16,199,121,242,123,183,145,14,68,207,190,140,
 110,158,223,72,171,144,254,165,95,11,87,165,234,105,40,178,151,254,194,121,119,21,2,250,196,130,50,79,69,166,26,219,11,62,167,241,166,3,1,102,119,107,114,77,103,34,69,120,218,215,137,40,167,187,103,5,47,86,119,158,66,155,44,249,99,162,52,130,34,159,203,114,246,69,186,165,240,102,176,55,94,191,122,116,113,47,167,145,137,109,98,176,121,171,91,136,159,86,205,245,215,60,120,90,38,193,15,145,11,237,127,132,10,242,52,71,161,71,233,197,190,62,152,197,164,233,250,57,49,28,97,87,208,125,55,242,137,12,115,194,72,222,139,117,224,25,43,234,68,114,106,62,112,247,230,2,121,122,108,208,71,176,169,55,115,198,95,158,120,128,126,179,187,54,158,157,60,81,196,64,10,249,205,214,161,83,163,134,72,234,143,78,158,173,60,254,145,193,105,253,112,52,113,12,236,127,247,250,14,253,8,195,219,130,4,227,14,125,96,98,201,232,10,157,255,115,105,194,171,184,22,38,14,174,165,135,55,115,132,207,107,76,11,117,236,32,65,253,144,184,213,12,141,229,147,55,205,237,140,199,44,243,168,166,119,64,10,9,105,121,69,133,10
 2,15,229,86,49,99,107,151,15,197,64,176,0,154,206,108,239,59,221,162,53,91,65,107,239,124,3,250,78,193,18,95,22,156,119,103,67,89,197,136,73,9,94,28,210,89,19,23,174,7,226,127,42,163,111,158,77,170,179,227,118,131,65,252,222,106,60,23,49,196,89,15,95,252,150,170,206,120,206,165,43,50,60,26,160,36,178,135,240,153,162,104,132,153,10,66,137,14,15,152,83,127,190,219,129,245,110,12,141,230,197,12,81,187,151,119,255,156,21,168,85,137,173,94,45,201,111,195,112,200,65,196,192,208,146,72,177,22,226,224,46,7,32,154,16,25,239,85,16,145,97,211,66,208,220,73,80,99,191,53,47,160,140,89,173,210,21,144,72,30,95,131,186,246,7,209,67,255,230,185,52,125,106,91,26,141,160,165,131,122,73,82,32,84,26,81,1,43,128,204,42,186,210,73,239,5,252,188,214,85,6,60,121,48,15,93,126,172,3,174,120,42,158,185,10,204,162,181,80,161,141,181,172,163,206,210,177,60,152,135,203,247,177,147,222,194,210,183,63,203,96,208,211,19,130,95,189,253,125,83,191,233,51,88,96,81,190,73,51,2,137,239,209,68,230,201,139,148,128,
 215,195,71,216,118,162,55,111,157,107,122,194,126,32,240,185,150,164,14,137,248,21,133,172,104,125,174,148,207,253,119,69,104,172,28,33,11,159,118,170,222,30,81,97,98,83,116,219,30,136,234,185,231,207,228,162,162,144,114,3,13,75,72,27,6,124,199,156,155,186,249,38,17,77,158,54,22,115,26,104,11,189,55,215,243,102,216,114,116,97,191,159,129,127,19,142,111,8,254,116,36,145,80,61,52,202,196,58,136,242,194,79,241,118,201,230,29,83,199,146,83,134,249,95,241,43,135,108,6,97,45,181,12,237,40,35,159,137,179,237,52,22,202,59,5,35,135,102,12,34,130,229,125,116,118,198,107,178,29,210,242,14,244,91,31,228,183,6,189,236,103,102,21,15,80,46,45,244,171,102,120,168,202,215,52,246,71,248,71,68,23,123,148,85,134,30,226,1,225,1,10,112,245,232,141,127,39,146,120,140,84,92,114,1,215,198,31,112,66,221,214,118,72,103,15,221,91,75,109,168,119,173,236,245,253,123,204,101,208,228,183,150,3,3,210,177,80,37,239,167,99,56,96,122,205,99,18,109,215,136,32,131,6,196,9,113,252,37,99,44,103,71,221,41,89,92,245
 ,54,55,99,180,82,100,56,251,49,219,203,195,116,44,137,22,134,169,79,212,173,33,26,157,48,103,171,24,71,156,230,197,228,198,159,118,150,238,204,129,121,238,7,100,8,197,51,76,30,65,27,171,209,105,92,224,189,137,18,0,30,251,217,214,36,79,129,23,77,136,46,5,189,6,68,13,207,162,212,74,28,242,216,88,150,54,175,59,104,163,233,147,204,107,141,199,116,172,183,42,138,102,188,174,110,91,214,99,220,84,153,129,198,56,15,228,228,69,225,224,47,144,196,221,194,116,107,97,126,50,87,122,88,209,130,138,93,227,141,76,24,163,220,164,222,193,134,28,121,203,72,125,212,47,97,220,155,121,77,180,188,91,190,63,4,141,109,51,136,117,131,152,49,227,0,36,215,76,254,49,209,171,29,58,186,77,206,81,184,154,111,75,62,76,49,34,9,223,219,42,207,75,229,115,68,73,221,43,76,151,207,76,113,246,33,252,173,73,173,58,229,19,90,135,44,197,61,143,89,171,141,48,27,239,115,58,190,226,145,81,122,99,6,110,100,173,214,32,124,17,64,164,5,173,232,41,127,249,66,140,241,101,95,189,129,36,148,141,111,51,237,73,243,188,27,70,5,191
 ,146,231,251,142,105,10,37,184,227,169,90,159,31,184,100,181,233,170,47,204,185,203,180,125,231,68,252,55,24,176,171,125,172,67,156,246,45,103,135,127,121,146,121,10,201,81,245,82,188,77,7,222,114,221,180,33,189,57,252,54,218,62,201,243,64,52,18,132,14,35,204,192,218,18,99,28,160,169,180,16,253,231,17,243,169,25,119,206,22,120,173,48,138,24,32,211,179,11,115,51,175,163,68,149,20,97,207,31,125,101,155,16,182,40,96,0,167,230,168,0,110,191,184,130,93,200,145,25,172,219,0,9,120,90,37,41,212,107,108,150,168,54,153,213,243,243,59,213,154,18,66,78,111,94,80,32,222,80,183,250,130,45,121,38,20,133,172,80,78,8,5,241,131,218,20,187,235,247,93,65,156,69,235,36,81,96,40,6,135,40,226,246,109,83,32,128,21,33,52,182,134,153,208,172,107,233,215,140,145,252,144,121,207,165,107,121,48,25,179,226,111,78,86,120,226,166,153,126,173,138,32,199,106,64,57,251,144,34,103,177,111,176,73,211,172,1,170,25,102,26,192,49,227,36,103,1,225,157,192,177,181,152,223,125,1,93,17,209,168,140,117,161,190,183,131,
 23,153,57,63,230,3,130,22,224,125,12,144,119,79,134,68,64,115,195,52,18,10,253,50,232,131,240,4,153,20,91,152,138,159,37,144,79,238,247,126,141,132,232,83,245,19,17,245,183,201,113,43,10,62,54,12,163,110,38,157,36,149,227,51,47,3,135,243,48,182,155,51,50,76,99,222,9,72,164,212,242,183,229,176,64,1,31,145,98,214,200,90,113,228,241,164,47,176,47,191,89,8,223,179,196,207,125,188,132,205,195,172,219,121,156,78,122,97,178,178,247,249,218,221,188,2,86,10,185,52,94,63,93,225,90,111,21,84,1,129,76,213,249,170,152,27,176,135,33,33,146,205,16,102,178,95,235,204,242,81,114,83,74,21,84,177,198,173,177,208,73,139,247,30,167,94,229,48,200,52,165,29,161,191,96,171,149,208,97,167,149,22,62,142,34,103,208,206,83,14,97,175,155,60,26,37,44,6,30,109,103,70,209,35,189,48,248,192,253,240,250,195,15,169,35,64,210,92,103,51,6,51,181,170,142,96,26,24,48,137,196,3,168,186,62,33,149,12,113,216,91,134,83,44,189,168,32,252,177,247,187,27,96,245,156,151,45,206,145,190,147,88,98,107,75,211,150,34,153,100,
 182,193,187,49,233,3,176,101,132,36,222,191,119,110,216,150,243,235,199,212,158,91,36,221,64,47,212,111,201,171,34,164,241,153,229,177,77,84,103,180,2,16,178,34,21,139,198,95,61,206,109,18,53,181,117,85,45,232,165,53,251,169,132,205,77,65,20,226,133,254,89,96,130,253,235,43,67,211,199,100,39,237,91,216,251,113,217,152,54,119,81,19,190,97,222,195,82,214,88,203,146,72,196,100,106,100,245,147,49,175,129,4,138,137,243,201,198,138,135,100,139,110,58,112,239,54,41,63,129,67,10,197,27,137,94,75,106,189,5,120,221,133,133,31,167,143,54,35,63,26,24,40,74,166,105,63,76,207,162,170,148,81,245,77,202,107,61,212,161,46,211,236,149,135,70,170,198,193,237,6,63,222,226,53,215,194,250,81,108,193,254,115,119,201,236,141,155,38,204,146,204,210,105,6,236,80,51,233,2,203,209,142,62,215,89,226,55,57,136,69,54,34,255,68,59,197,118,251,65,141,181,94,224,221,30,83,18,111,115,195,37,49,168,252,8,148,74,221,204,133,64,55,52,145,245,155,194,46,190,33,104,90,209,149,110,175,149,3,92,112,193,204,29,230,18
 1,69,4,230,150,195,13,11,171,204,235,198,252,122,255,21,71,49,53,238,27,56,99,189,169,251,45,53,2,171,40,230,28,154,111,103,176,66,160,222,197,170,108,203,247,4,216,222,105,196,104,154,147,170,238,230,198,10,177,85,98,2,37,137,194,236,145,82,237,171,124,236,41,131,119,222,105,84,58,79,81,1,6,13,130,151,48,61,121,155,93,199,152,86,31,26,44,94,49,147,6,170,28,87,157,82,155,84,51,85,191,81,192,169,174,82,51,170,86,63,182,193,208,104,122,62,138,253,248,149,106,59,58,6,146,162,38,121,51,139,118,233,181,204,185,88,64,27,250,34,151,77,110,113,239,188,34,244,193,103,34,35,197,8,1,225,51,179,42,249,44,173,42,165,26,196,56,69,120,113,19,44,161,233,111,76,124,147,224,19,28,162,122,114,24,113,113,67,36,147,20,138,179,43,248,238,196,55,71,180,99,51,98,48,232,28,23,203,68,215,113,87,15,54,97,112,103,52,24,139,136,231,120,216,176,238,33,69,29,192,59,202,94,217,148,105,131,159,183,14,83,203,136,57,99,233,35,225,190,72,192,8,231,116,226,58,88,243,19,68,131,105,113,165,220,201,127,165,249,255
 ,239,155,165,55,203,8,161,142,162,144,48,195,96,132,114,194,192,112,52,217,111,13,171,48,39,94,4,155,139,236,83,170,41,169,244,135,121,157,120,57,246,121,249,215,231,116,175,213,31,253,238,181,61,251,183,150,245,82,35,26,239,88,215,2,69,177,174,213,77,206,158,74,104,108,1,93,165,158,185,140,48,116,95,57,217,81,173,119,11,210,58,150,55,170,71,78,102,170,23,25,119,122,100,211,18,241,78,105,166,204,195,52,50,92,181,129,120,184,98,13,137,35,207,118,151,45,146,199,40,44,22,225,93,182,69,121,17,15,174,92,28,155,79,76,234,254,53,233,40,58,153,14,147,94,233,77,215,8,74,64,186,209,118,188,214,55,52,68,173,199,20,230,226,7,51,21,223,32,207,125,172,46,37,223,94,203,92,48,77,223,152,93,46,52,187,243,12,100,31,31,62,213,95,132,42,179,62,109,142,219,231,244,114,70,230,148,4,225,3,20,146,18,214,158,7,7,174,216,43,57,62,196,164,31,139,43,35,222,181,26,19,222,98,169,104,197,244,77,199,94,187,33,179,15,229,132,230,171,10,210,141,184,134,225,121,140,91,220,34,155,75,73,132,226,243,9,240,192,15
 ,83,6,55,137,134,167,202,176,235,85,218,11,156,144,208,237,218,69,209,46,242,9,247,130,161,124,137,187,125,150,143,91,52,250,235,253,51,103,198,122,0,51,195,36,210,211,64,56,56,201,38,8,227,8,22,164,109,129,9,213,154,70,33,191,62,220,45,79,0,207,84,162,233,235,27,214,164,143,248,200,152,211,225,208,168,111,41,201,167,139,249,196,49,121,242,102,146,128,123,193,194,154,6,116,100,184,0,150,100,95,78,116,240,132,21,59,37,121,50,202,42,224,195,172,120,201,51,246,3,165,246,255,208,42,97,46,117,184,44,203,246,192,10,98,152,216,200,202,56,156,108,178,101,145,92,242,113,154,204,132,53,67,212,54,196,237,76,173,213,71,184,232,16,216,41,197,75,175,119,120,4,134,211,50,14,200,199,136,238,57,76,216,26,243,102,16,61,115,89,202,130,15,118,126,25,74,1,25,112,179,150,203,176,76,111,167,208,10,197,27,22,24,61,164,225,228,228,155,219,154,178,53,196,187,146,159,10,191,235,175,237,5,69,255,37,226,18,40,211,145,187,113,45,51,160,10,10,217,87,48,68,59,203,1,48,100,179,179,13,210,95,4,91,56,206,105,
 25,92,152,32,11,1,253,140,113,72,37,147,88,17,158,130,100,25,1,62,248,108,108,106,228,235,108,130,108,111,60,118,151,145,215,167,138,80,66,106,141,162,29,36,235,26,94,91,32,186,155,166,201,59,248,134,29,153,23,140,205,229,213,125,207,92,252,238,62,130,173,157,74,167,27,122,73,157,170,130,91,94,139,205,115,217,161,104,58,243,226,82,73,236,195,251,244,223,193,218,114,123,125,70,17,245,55,46,176,3,80,152,27,157,25,126,220,230,104,13,68,135,45,69,128,253,57,41,10,224,92,54,3,230,36,5,137,152,117,137,239,53,130,146,87,178,205,175,49,77,39,80,153,96,105,105,124,59,173,37,37,44,37,46,134,77,94,243,251,44,75,125,83,183,79,142,71,239,34,117,226,191,177,78,185,61,61,175,206,63,5,199,47,238,166,223,137,115,73,101,96,92,102,144,37,125,84,222,14,238,64,140,207,236,190,199,76,97,124,112,3,14,219,164,86,98,118,72,81,247,244,49,213,31,37,142,11,217,180,221,125,59,241,141,201,254,68,190,220,217,245,26,217,103,209,19,253,62,145,5,247,221,231,222,55,63,79,146,231,130,194,117,182,99,167,28,108,
 80,41,4,201,17,81,69,116,183,98,226,184,32,68,175,76,68,11,228,230,184,18,138,134,32,195,54,82,47,144,216,225,130,125,64,151,33,150,210,230,131,91,112,147,209,17,42,105,152,126,25,107,231,157,104,46,193,100,96,117,190,150,58,50,223,3,242,109,147,81,88,92,87,121,95,0,212,100,176,103,64,240,95,223,87,15,47,74,160,219,254,236,111,59,85,96,202,164,31,43,225,162,209,88,74,151,28,189,218,164,77,179,151,59,104,23,87,165,115,147,51,2,226,91,223,208,25,162,224,199,91,144,187,133,129,86,152,137,248,83,95,120,10,176,125,253,2,245,235,17,137,131,167,247,157,90,45,125,101,129,49,21,20,152,158,88,215,115,0,52,254,43,29,132,244,101,31,13,179,167,21,103,1,64,167,26,42,191,149,113,239,79,161,4,129,131,70,250,228,99,83,24,77,155,229,203,68,14,17,101,146,179,164,29,12,123,16,71,253,201,204,114,149,226,232,214,111,38,160,140,131,88,40,253,154,101,111,114,3,186,181,175,36,208,10,8,31,99,119,201,2,243,140,39,18,27,203,136,66,144,186,20,119,187,191,179,38,7,18,214,62,3,74,208,21,123,52,160,0,57,87
 ,91,13,40,243,22,94,163,81,76,217,219,230,17,79,71,13,158,90,174,119,116,156,104,27,236,98,59,247,204,102,26,149,103,111,213,165,230,227,42,185,86,34,204,91,194,161,202,254,47,149,221,41,227,120,1,54,165,44,7,144,202,105,110,169,226,25,3,51,209,194,72,113,190,86,27,115,137,255,155,176,208,238,100,180,31,253,30,124,166,188,158,212,252,202,127,146,202,252,215,103,135,153,50,21,169,67,93,97,208,184,95,5,197,150,226,44,135,245,12,174,60,237,82,108,144,57,43,37,248,146,49,190,10,94,162,117,124,0,140,138,0,98,91,123,184,150,199,154,60,232,125,160,60,118,124,144,202,224,8,38,36,69,239,71,128,54,248,215,39,198,126,11,223,223,6,34,237,134,211,223,176,55,5,17,130,169,143,116,58,34,196,28,130,88,208,103,37,80,87,213,226,162,186,92,149,70,199,65,85,218,141,242,150,149,96,99,210,227,158,169,82,51,50,17,152,115,235,41,80,207,113,83,15,64,39,154,121,151,87,183,140,70,241,213,15,221,247,206,216,247,148,155,188,215,13,188,224,170,207,45,208,158,250,87,58,101,186,9,54,181,63,207,103,211,2,28,
 58,238,240,17,35,164,22,145,109,85,72,146,82,145,190,120,236,90,89,89,179,42,120,53,5,7,205,104,213,16,27,44,164,26,106,199,138,255,4,3,198,179,66,206,186,46,28,129,125,130,13,245,201,123,92,11,175,193,15,89,206,110,24,124,59,210,203,93,8,172,90,17,225,54,3,43,147,82,64,73,148,83,58,198,105,109,50,108,148,254,170,231,137,50,62,228,158,182,42,67,38,110,233,111,126,52,210,6,84,205,5,52,234,156,118,40,241,18,178,86,7,10,59,142,86,179,228,23,81,0,209,247,199,96,152,64,69,181,173,94,234,4,179,58,186,152,75,185,251,173,138,247,253,26,36,186,173,217,34,171,4,161,42,175,2,68,87,149,208,33,1,244,121,106,31,114,86,82,228,140,177,13,90,101,173,99,246,241,109,64,52,51,67,217,65,82,54,183,38,239,82,100,94,152,23,227,109,56,131,252,148,92,3,159,149,95,226,169,30,223,67,214,141,201,205,59,71,249,229,210,241,105,66,105,165,221,84,185,249,24,0,161,10,210,219,64,43,238,40,217,123,243,140,51,238,228,240,47,159,85,137,189,205,62,143,236,146,244,152,65,119,26,144,77,164,163,57,18,154,179,46,77,1
 81,75,89,216,206,100,73,110,135,171,54,129,86,226,29,231,101,42,152,210,33,215,107,164,44,146,60,146,240,12,19,32,236,201,174,212,14,161,85,61,21,181,207,149,117,236,65,88,112,165,159,240,117,207,63,219,255,7,56,23,246,45,251,140,29,227,135,91,60,221,75,201,165,16,61,219,166,7,61,99,46,100,151,236,20,223,54,148,61,252,184,33,239,149,222,200,244,87,65,230,120,99,221,194,159,237,27,93,148,122,219,227,254,33,190,146,177,252,22,114,169,211,60,250,4,236,3,29,150,49,97,72,13,125,189,48,73,52,9,248,4,65,57,162,194,249,12,230,94,105,248,73,135,154,102,56,114,95,152,235,17,208,157,230,246,47,169,151,143,59,154,212,153,168,80,180,233,113,81,132,124,131,31,129,165,140,39,14,222,203,199,131,49,159,147,80,246,67,36,91,151,154,216,213,195,138,211,59,142,26,131,54,206,83,94,17,30,66,2,215,209,216,114,27,135,128,37,100,215,55,8,43,207,218,15,151,22,143,239,117,228,116,20,73,112,211,130,80,198,40,184,113,116,150,200,215,192,51,80,212,35,253,116,178,200,181,32,242,105,46,26,165,155,64,218,248
 ,149,41,226,33,11,57,10,186,82,43,53,2,251,12,149,91,23,168,76,138,170,161,119,120,102,223,116,31,166,215,167,71,209,7,91,8,31,139,2,68,240,164,155,116,50,186,68,31,14,154,232,34,63,106,131,131,59,71,21,245,182,9,142,136,50,61,142,22,190,87,202,242,168,207,152,150,236,210,33,91,169,153,222,67,214,99,75,159,167,142,50,145,30,179,136,173,174,45,254,205,47,135,2,31,159,74,127,109,12,106,12,175,200,157,85,77,38,225,72,160,28,21,115,232,5,87,175,164,78,123,230,122,246,167,176,116,55,130,236,93,160,117,162,220,216,204,94,216,210,103,31,58,59,40,239,66,131,177,24,51,31,12,181,102,99,211,79,175,49,198,120,105,86,233,107,3,33,8,187,200,89,7,21,54,21,65,111,177,54,26,43,32,77,96,110,240,194,119,53,205,240,149,19,164,147,79,221,233,195,12,181,173,43,231,59,146,240,173,217,60,42,178,86,139,129,65,4,57,15,143,98,74,76,114,105,247,12,52,108,147,160,88,222,78,13,76,72,159,128,166,193,42,62,194,164,223,244,186,249,34,27,196,46,35,17,166,129,187,173,48,187,104,142,95,121,165,24,213,26,91,16,
 224,24,35,217,202,230,195,219,213,187,39,229,17,95,42,214,245,28,69,137,63,181,26,214,44,103,184,217,232,60,88,220,210,59,197,147,175,178,195,157,70,64,77,85,99,117,162,110,205,78,43,88,51,108,58,192,140,182,234,140,167,27,220,232,119,111,124,34,229,132,252,131,120,134,95,11,40,133,81,32,127,11,161,218,200,219,203,218,188,129,19,96,97,18,130,133,103,93,219,17,23,198,106,100,218,161,162,17,98,43,73,254,235,130,239,17,89,98,207,56,48,154,16,52,206,131,62,209,91,238,214,157,233,61,119,178,136,49,201,97,115,146,10,214,175,141,173,94,141,173,149,2,1,234,131,106,61,95,144,132,140,206,167,98,234,124,2,210,153,22,154,130,2,121,108,155,232,170,207,101,63,170,252,237,88,10,199,13,81,11,179,126,195,62,179,187,85,174,43,101,217,27,223,223,20,203,228,134,86,44,43,248,225,195,179,239,191,126,142,212,184,199,30,123,136,123,26,39,24,201,18,181,253,63,126,196,123,83,250,56,95,122,67,239,190,180,222,35,241,89,135,163,115,172,139,169,164,137,136,24,148,254,57,69,88,149,102,245,98,162,33,16,180
 ,208,237,205,177,41,14,51,184,236,105,123,30,78,204,8,234,39,139,82,38,121,139,183,65,252,37,230,225,100,25,254,131,250,111,235,198,21,168,212,206,29,16,167,47,34,87,84,105,199,101,206,121,6,252,129,148,45,199,175,90,116,232,109,180,42,242,192,192,31,251,173,150,83,101,163,142,115,45,198,1,71,230,28,202,235,228,237,136,191,80,71,36,25,132,149,193,162,179,72,194,25,55,228,12,152,243,119,157,109,183,188,238,22,14,1,194,85,106,7,182,106,115,211,7,43,35,204,86,10,156,226,196,170,218,166,225,31,108,139,143,190,139,209,168,20,27,166,255,147,174,113,228,65,219,170,203,226,97,226,101,102,40,43,255,225,65,16,215,195,96,231,115,119,55,133,226,229,245,111,158,215,31,178,230,89,129,26,71,31,118,245,50,98,25,93,137,167,90,134,89,132,246,81,124,134,157,17,105,217,149,123,112,14,159,110,33,49,178,214,229,113,160,160,87,66,158,13,196,114,149,34,160,62,73,208,161,5,52,60,142,159,52,81,149,0,206,77,7,178,202,186,248,82,111,18,209,13,226,98,94,55,12,214,206,81,221,56,12,94,234,156,44,8,196,231
 ,179,114,150,54,75,121,255,18,245,40,103,7,128,85,236,216,3,231,173,38,172,79,205,211,247,193,44,198,42,134,67,132,160,133,170,53,187,44,5,98,30,25,12,105,131,188,92,40,46,190,123,223,192,66,241,167,26,133,81,242,112,37,70,87,137,206,176,189,227,43,125,154,133,28,86,226,91,17,9,150,98,171,240,96,155,165,107,167,15,31,158,163,72,209,168,166,239,237,208,47,98,147,0,155,77,105,148,78,143,211,21,204,147,75,216,223,111,248,67,237,2,245,249,89,254,218,173,154,163,171,223,160,89,158,93,167,151,177,135,104,134,42,2,158,89,128,249,212,151,178,150,13,193,93,251,0,5,34,63,153,231,23,9,168,151,51,124,125,143,185,61,16,55,40,101,83,98,57,154,53,26,94,25,39,133,248,134,242,254,77,63,157,77,252,75,148,34,109,99,85,57,177,180,199,237,121,165,18,27,206,143,255,17,71,161,198,88,28,253,191,42,243,86,74,205,213,92,230,238,86,90,41,81,252,212,247,110,71,180,229,178,5,74,203,45,248,57,106,128,26,23,44,143,198,53,222,132,133,219,187,6,133,164,227,180,206,146,230,175,22,83,165,194,68,124,65,83,143,
 186,225,248,144,207,1,116,37,176,95,224,249,207,134,159,249,92,246,247,30,108,25,229,114,237,244,66,99,88,191,255,204,80,8,191,31,254,104,3,195,234,57,3,7,242,92,234,213,156,234,106,206,148,15,82,180,122,25,74,20,116,111,84,215,53,173,51,14,216,113,12,179,23,81,13,239,144,175,250,238,94,48,179,209,163,15,97,103,127,105,66,21,26,161,151,1,243,216,128,43,58,39,128,105,93,153,167,243,143,153,108,89,157,52,101,117,224,153,224,57,83,219,94,131,114,255,210,111,164,193,110,175,97,7,255,78,73,39,251,190,206,186,107,93,19,176,65,246,21,116,243,115,123,219,142,82,63,64,78,166,175,150,119,171,154,138,233,220,60,214,98,155,235,78,42,227,155,55,30,126,41,126,153,7,35,178,18,77,5,181,139,185,155,0,57,89,248,114,151,250,191,150,198,70,131,72,214,73,102,187,153,249,189,185,102,86,119,180,148,2,47,248,159,162,185,167,114,219,241,190,114,250,19,55,95,176,238,62,123,167,6,91,134,79,30,56,206,84,91,173,253,20,185,110,108,215,245,168,221,159,70,242,174,17,30,75,127,185,248,164,138,60,54,220,140,
 103,63,56,187,218,12,47,188,94,165,149,88,84,94,40,103,204,51,198,236,14,147,161,96,118,229,167,202,117,85,5,118,15,106,48,190,194,231,118,225,42,241,10,94,148,139,185,158,51,244,210,252,128,212,30,13,6,130,103,145,175,12,145,166,57,244,84,115,213,142,182,45,216,164,238,239,255,21,167,88,185,133,31,122,166,33,70,233,131,249,187,9,187,165,41,63,14,148,245,162,102,137,248,75,250,225,14,44,151,223,132,164,243,241,216,9,199,47,169,23,227,32,175,77,159,210,160,87,175,197,142,42,51,139,62,249,110,29,52,134,10,228,22,22,117,120,221,151,173,178,61,128,42,82,50,239,206,14,15,94,66,246,54,239,189,142,74,155,112,206,251,121,72,218,224,33,168,67,69,110,76,91,243,211,117,196,129,103,50,78,23,116,196,124,29,161,243,80,92,83,102,232,93,45,72,245,147,120,142,95,117,65,43,120,49,226,112,97,58,205,225,35,207,102,82,93,104,39,80,50,51,148,157,14,168,227,64,62,173,147,246,217,0,207,185,125,196,121,217,44,190,178,88,149,51,59,206,208,69,149,39,87,154,47,224,45,222,226,126,36,146,134,158,48,43,15
 4,183,185,145,227,29,246,238,86,52,238,29,95,199,208,69,65,243,151,183,157,30,50,129,137,87,215,54,147,111,186,254,68,166,99,115,224,206,173,116,241,95,188,103,121,128,82,213,118,92,162,223,236,174,143,179,2,143,226,228,135,149,54,124,58,226,56,97,41,197,140,9,222,70,138,100,13,53,199,143,95,65,247,13,105,149,213,228,47,248,219,118,154,249,64,126,87,103,189,192,183,15,179,161,77,192,6,11,138,164,167,209,24,22,238,189,120,175,197,203,136,141,90,50,93,211,1,95,241,65,124,162,186,31,84,116,80,243,206,206,151,97,120,66,122,72,69,128,147,114,5,99,141,103,131,210,86,72,255,85,99,168,105,48,182,176,32,94,219,131,202,106,139,101,176,157,24,246,192,209,152,72,74,204,174,158,194,56,74,56,152,129,91,170,49,131,67,46,203,100,224,90,190,210,160,51,118,145,149,160,26,19,214,79,82,46,57,1,111,212,73,125,32,145,114,248,179,120,159,31,154,162,37,222,175,168,165,104,136,106,174,249,130,133,180,74,43,54,50,79,232,237,38,94,74,81,77,54,150,174,253,24,186,70,74,179,120,179,222,255,6,211,106,231,
 1,125,10,58,137,245,114,170,9,22,205,203,169,54,209,22,71,132,25,253,191,65,103,235,178,27,64,52,151,234,217,169,144,239,26,155,199,57,219,93,67,220,17,247,247,200,245,75,41,107,196,112,176,134,162,167,65,118,52,188,17,188,89,61,249,140,89,72,84,112,174,72,82,227,207,184,240,207,185,52,17,38,106,15,103,148,151,82,126,129,230,16,143,13,155,184,125,185,46,141,76,68,220,60,137,224,242,14,148,204,250,120,50,81,148,113,199,154,224,68,217,227,36,126,87,122,138,20,112,249,251,248,148,168,217,137,190,219,249,130,109,174,112,128,204,161,199,147,177,242,231,113,143,254,75,123,78,191,241,171,246,15,16,78,75,40,90,123,156,56,59,105,93,13,65,237,60,59,206,181,181,217,222,205,126,99,107,130,193,139,243,192,135,245,57,103,233,34,75,83,169,186,197,245,221,69,95,217,68,158,89,42,224,97,125,14,44,207,105,50,116,55,194,147,118,7,75,151,173,216,30,148,44,3,94,193,12,233,234,239,158,53,250,2,70,67,14,77,124,60,209,229,196,66,34,140,39,246,80,0,219,62,118,200,62,157,179,35,3,105,65,223,250,12,138
 ,186,17,7,6,149,66,210,251,8,175,53,88,137,39,90,203,178,209,245,102,114,202,19,177,162,113,249,179,61,105,91,105,177,153,105,159,100,93,255,193,164,98,253,177,244,110,150,232,59,39,175,110,180,24,33,100,233,78,0,250,32,220,113,33,131,86,13,6,108,194,108,165,196,212,39,68,241,134,155,133,86,134,205,203,230,227,170,148,69,71,177,4,176,188,133,70,241,216,246,30,37,188,54,153,150,157,178,5,24,101,48,32,236,26,79,39,146,26,161,8,135,4,49,99,248,126,212,96,162,123,19,51,176,155,87,87,244,3,83,130,192,238,180,135,62,115,252,169,18,18,185,18,50,248,120,253,34,124,164,57,167,58,201,185,118,21,41,54,75,71,21,129,216,40,54,143,53,109,134,223,5,250,29,38,32,88,88,157,53,118,81,38,146,58,135,76,210,13,229,156,14,234,109,216,254,50,160,86,191,184,130,253,77,228,148,47,134,231,19,170,215,189,62,155,225,164,228,50,18,19,224,97,12,197,56,16,21,22,29,179,249,162,116,253,177,102,172,6,152,1,38,226,101,236,58,182,254,84,81,106,171,184,168,132,152,140,127,135,136,255,170,169,149,30,76,212,198,1
 00,175,100,151,165,125,75,167,184,35,29,13,242,96,193,114,164,90,96,105,179,79,95,94,154,79,50,70,152,245,30,122,220,71,163,248,14,113,139,169,119,152,244,99,84,184,35,24,229,167,21,222,77,240,253,34,144,140,9,137,28,62,208,205,12,192,247,109,184,144,137,86,132,250,122,126,173,149,235,48,208,59,219,77,29,196,194,229,150,82,73,149,215,158,18,159,96,216,154,241,65,49,221,221,101,210,53,146,247,139,122,42,174,22,111,216,124,180,153,168,2,105,95,46,70,10,153,129,13,205,61,78,45,125,214,12,122,99,70,234,240,219,244,122,8,80,61,107,127,22,144,186,116,173,233,149,127,226,228,204,124,36,123,249,218,194,252,241,112,224,199,69,70,179,103,160,26,59,199,124,205,246,178,192,251,246,10,191,232,235,40,49,104,10,228,71,131,38,64,175,44,247,232,49,131,72,35,115,54,158,192,120,80,191,103,153,198,115,64,220,95,138,28,226,208,90,88,33,128,39,218,193,225,3,157,45,30,175,50,59,36,244,126,118,182,86,125,4,144,33,145,24,24,254,170,194,230,169,122,123,138,12,198,5,254,108,210,61,131,144,58,15,126,10
 8,101,129,246,152,155,93,161,6,124,150,86,20,162,235,32,1,162,69,159,173,198,234,129,223,182,205,51,159,2,235,145,124,251,28,248,224,232,139,230,154,89,137,245,194,169,0,41,172,34,191,239,14,196,90,26,134,169,15,107,250,89,241,176,236,197,235,114,64,227,153,56,164,255,234,217,194,223,35,80,230,92,202,247,120,185,145,225,41,164,62,123,65,50,82,7,201,12,138,110,70,146,223,152,68,160,8,192,220,141,30,234,34,48,36,245,187,115,118,96,220,114,28,6,126,44,248,183,45,90,40,67,157,87,61,240,86,200,18,230,55,86,38,84,84,91,94,170,223,121,135,205,127,33,131,236,129,153,109,108,228,96,142,36,201,181,8,29,169,88,19,37,185,63,76,25,30,193,255,137,238,228,255,141,88,165,49,201,173,3,138,162,206,227,110,213,210,130,29,119,95,29,116,156,33,199,50,35,135,167,234,151,101,220,26,66,31,106,1,97,168,224,131,72,9,134,22,249,46,249,171,207,80,136,100,130,18,224,186,215,215,178,239,142,184,187,55,136,118,168,98,92,21,73,195,117,180,184,10,12,97,221,68,26,58,180,204,47,169,172,85,42,185,85,149,101,58
 ,232,237,75,174,110,107,208,139,177,249,47,140,111,181,49,228,5,29,203,113,156,150,184,149,233,226,133,127,153,24,67,210,61,219,64,205,85,187,30,249,186,243,137,106,33,35,0,162,143,126,190,239,129,63,93,219,56,237,150,108,224,97,112,154,160,99,98,7,110,161,171,124,160,124,218,111,121,176,125,120,129,68,212,240,44,196,61,222,51,8,161,241,66,241,161,3,35,193,23,161,20,223,185,18,58,47,71,143,85,46,117,11,69,68,127,88,244,113,221,13,104,78,232,170,46,239,75,158,171,10,126,148,26,155,50,157,135,196,117,197,154,131,95,223,1,137,156,214,19,133,80,78,189,248,243,161,108,201,1,23,152,247,76,171,9,181,131,100,92,187,130,4,59,199,77,138,215,221,180,167,94,244,57,54,230,133,53,147,253,235,63,187,108,99,136,213,215,195,220,199,225,48,48,184,140,15,36,72,92,230,81,167,8,164,119,34,220,251,170,190,103,207,40,16,200,128,235,86,10,202,153,187,6,3,163,196,72,200,238,36,164,145,51,126,163,117,13,63,212,184,101,225,96,228,82,115,51,169,42,251,144,169,147,46,201,111,145,220,197,102,138,36,6,84,
 140,87,26,209,202,241,167,178,126,57,38,99,248,197,175,153,151,173,112,243,11,115,21,176,138,202,218,201,154,142,91,209,7,216,252,192,241,10,83,163,19,160,220,37,15,100,54,85,181,69,137,33,56,20,91,61,46,157,4,152,208,4,98,192,23,255,123,74,250,172,253,0,197,221,62,117,7,186,253,193,72,157,116,56,133,201,142,62,34,226,90,141,100,195,240,21,24,177,70,31,214,3,159,114,182,69,172,32,134,129,144,180,163,26,155,77,171,232,58,150,145,211,204,115,154,151,38,33,222,161,30,162,197,207,130,121,218,108,221,139,30,18,231,12,241,249,128,36,75,114,81,18,87,247,85,241,137,20,177,174,75,176,83,52,165,31,103,213,232,249,106,93,28,37,141,82,248,41,174,25,23,65,81,131,71,52,62,6,128,126,163,174,142,142,81,150,136,96,200,0,173,156,64,33,163,56,137,82,66,158,205,234,52,197,64,234,61,88,221,80,189,239,218,106,29,70,77,252,145,22,77,15,134,144,7,13,127,153,174,173,23,186,235,229,17,177,69,164,179,127,223,240,103,77,252,176,128,251,167,198,65,56,16,158,20,32,6,110,237,124,209,244,250,183,20,41,2,48
 ,170,64,32,150,107,86,3,3,188,159,182,85,192,53,123,135,88,16,20,42,243,42,206,159,159,239,36,198,38,62,252,186,47,35,136,229,222,108,128,23,149,85,248,93,139,69,111,134,136,145,73,57,59,50,160,135,175,210,248,80,244,178,70,52,177,87,32,176,40,100,230,1,35,50,117,187,83,137,240,131,118,97,33,51,207,151,103,22,166,28,111,108,8,96,233,91,104,158,207,73,16,120,44,221,182,215,254,103,53,56,119,50,65,35,132,234,7,124,129,33,112,159,38,88,152,210,218,11,197,239,81,91,251,194,30,74,235,192,224,102,67,229,70,154,227,39,19,46,161,129,59,195,124,205,215,36,234,41,254,128,213,28,32,236,132,102,43,103,70,191,171,159,118,96,184,43,135,55,125,32,53,178,45,89,203,8,6,124,37,219,175,68,181,177,251,69,135,24,64,137,34,118,81,197,143,22,80,26,143,220,2,176,128,37,145,236,229,236,156,133,72,120,141,242,230,55,205,50,1,10,18,239,213,147,255,33,246,103,62,235,84,26,181,98,233,6,123,184,53,107,20,168,140,1,171,55,71,4,137,243,17,148,255,104,60,133,79,192,0,77,191,239,229,236,107,242,243,77,1,198,
 101,164,2,179,225,210,56,176,63,216,124,89,202,28,105,150,124,212,39,252,156,91,147,178,253,92,225,212,97,91,194,142,132,244,2,143,118,175,20,135,123,8,181,52,4,105,71,155,46,66,203,117,34,234,82,168,80,44,82,225,91,87,122,3,127,40,171,40,168,69,69,200,182,250,232,93,117,45,147,15,180,86,13,174,110,192,27,109,213,184,11,161,57,107,111,178,147,58,251,167,201,156,204,136,40,135,163,76,241,105,208,85,21,81,43,67,56,97,193,46,210,247,112,111,160,226,89,103,200,116,50,114,218,144,77,195,2,77,40,105,144,199,118,85,54,109,218,136,226,101,165,218,242,30,0,55,68,130,148,67,229,141,78,4,159,81,152,172,57,85,250,177,137,35,249,68,22,243,12,254,136,234,246,154,26,141,193,178,153,162,122,226,134,242,129,175,130,68,57,207,55,218,128,201,187,126,142,225,221,60,9,197,128,176,242,142,176,202,113,229,137,225,71,82,200,66,220,71,47,140,219,192,245,59,172,145,18,44,57,205,163,219,121,27,238,91,242,211,184,51,132,199,140,182,193,184,117,246,66,254,57,103,152,86,55,91,253,188,195,86,220,112,206,1
 93,194,126,75,60,112,150,134,19,206,53,84,226,189,26,107,7,234,96,219,170,47,184,175,192,189,132,24,40,236,0,37,249,110,153,32,98,44,57,120,40,248,24,248,42,117,237,156,164,199,237,222,167,66,234,150,86,5,205,176,224,105,111,32,227,145,182,71,88,253,39,105,71,241,148,112,125,243,175,72,246,212,201,229,184,50,64,170,197,243,13,236,119,175,150,26,234,151,237,106,54,77,49,189,232,112,255,135,219,170,194,84,127,125,159,104,87,84,187,26,243,39,153,176,25,242,104,10,8,139,232,229,145,57,224,60,180,40,142,55,217,207,64,207,129,148,72,148,34,0,15,12,147,124,223,217,51,61,235,22,88,23,118,33,87,8,90,90,201,133,21,230,24,7,17,167,139,72,101,142,95,51,211,53,117,234,229,198,52,217,16,54,143,25,159,175,8,6,15,215,117,57,10,114,77,58,194,131,168,152,242,72,9,141,206,120,234,167,190,240,177,29,157,227,120,207,100,16,191,236,222,80,79,24,136,165,49,188,171,108,58,74,84,79,67,113,249,126,55,192,162,62,228,214,100,123,217,7,145,191,127,109,237,191,1,184,137,62,0,251,63,201,183,213,45,107,209
 ,81,176,226,10,235,53,66,40,73,175,66,156,226,184,58,24,170,19,80,10,193,176,246,56,243,91,187,215,91,162,18,121,23,42,161,250,183,97,92,92,168,211,25,182,129,137,238,28,165,57,48,209,4,36,178,129,139,69,166,242,250,23,184,23,90,217,187,41,79,44,106,246,115,220,233,23,56,127,14,103,2,201,200,175,101,210,90,254,167,16,203,106,236,184,50,51,124,179,159,240,104,158,195,200,178,174,116,11,160,224,204,170,25,0,205,218,183,157,67,218,27,139,135,72,221,118,12,175,16,45,46,167,192,71,122,244,191,176,71,79,177,95,12,233,121,194,145,154,210,214,130,226,147,199,42,188,80,214,226,135,42,229,30,190,191,78,13,159,71,100,38,94,170,228,148,176,202,44,253,190,33,31,108,34,165,42,248,107,187,177,16,108,94,144,224,156,51,144,215,96,243,172,170,252,204,182,122,195,34,200,163,108,63,146,21,187,52,249,141,22,197,191,85,200,17,4,161,173,89,23,102,117,44,103,65,62,85,220,141,55,129,60,214,149,255,128,34,60,161,16,86,229,68,251,75,177,196,255,215,199,177,111,25,215,173,0,132,22,144,95,226,238,206,38
 ,85,5,202,229,38,19,186,184,134,177,123,205,39,93,116,80,75,72,170,244,176,36,35,231,7,113,214,167,107,130,34,70,55,244,130,239,140,169,159,44,46,229,5,90,200,28,148,41,189,237,142,38,202,8,35,68,205,183,79,27,37,33,233,99,135,124,190,141,217,170,116,138,206,237,137,129,232,104,64,140,110,130,61,108,131,144,0,182,192,185,135,49,9,206,211,35,87,58,121,164,202,164,144,221,174,200,96,93,218,236,20,239,194,96,158,166,0,7,233,33,44,51,232,214,43,164,108,29,223,240,191,58,60,217,161,253,10,183,139,177,42,71,124,238,31,35,52,150,231,64,18,228,168,114,36,12,197,147,83,247,0,209,67,40,2,83,117,205,198,17,44,61,64,3,69,234,63,125,224,139,192,172,181,206,67,44,45,37,207,53,58,67,207,137,0,248,239,12,238,231,229,69,146,125,203,76,152,151,107,198,232,113,63,202,124,202,163,200,145,199,201,163,66,218,44,173,85,123,159,232,139,73,218,218,161,227,102,165,44,153,175,184,112,128,34,118,90,52,96,121,236,113,101,138,63,195,153,210,95,196,8,64,165,211,219,75,197,233,80,188,107,181,59,122,152,93,
 67,18,102,115,170,150,152,200,230,116,169,216,127,39,171,29,191,87,64,181,241,158,118,194,214,42,211,41,107,106,131,16,118,114,103,182,43,221,248,126,23,223,83,98,11,221,135,242,157,92,70,134,146,61,154,241,254,91,131,51,229,232,149,103,15,255,142,109,247,212,217,247,203,68,45,129,155,25,38,65,191,16,254,212,48,22,189,91,52,59,4,94,62,250,56,212,179,18,64,203,162,17,226,117,210,43,238,135,189,172,131,198,253,210,114,44,38,207,162,38,74,62,0,137,13,88,127,183,132,30,214,73,192,44,218,181,140,114,112,177,71,241,155,104,107,76,199,226,131,34,77,23,252,162,85,204,235,38,157,200,123,9,230,3,133,223,242,141,22,183,123,37,18,245,159,46,177,175,8,246,135,196,239,31,76,216,170,201,93,11,49,119,249,206,180,25,204,225,2,128,194,210,91,200,198,243,248,25,76,252,252,75,218,47,244,31,215,154,23,13,7,197,139,30,48,242,185,29,193,196,109,239,120,80,31,50,49,47,36,141,43,101,136,224,132,215,172,42,7,141,220,107,159,147,27,194,90,194,235,164,209,12,64,230,197,109,99,44,134,255,206,172,165,181
 ,227,219,192,28,143,17,43,69,160,118,26,45,229,239,51,54,144,238,59,213,145,249,128,163,76,243,152,114,97,178,254,72,26,188,237,167,140,30,137,235,49,205,246,167,12,143,54,111,130,18,229,18,42,213,151,56,25,172,209,243,6,17,97,203,26,199,238,43,142,219,149,64,87,74,92,78,165,146,127,116,6,242,56,185,227,128,178,153,230,12,220,75,245,51,95,150,196,171,163,131,32,22,96,14,16,146,119,111,121,214,236,41,223,122,82,48,206,105,234,29,227,104,125,210,207,167,149,105,230,196,217,137,113,83,181,177,232,114,150,211,111,249,61,11,251,47,225,138,173,111,122,193,174,40,120,156,61,208,208,67,200,16,165,178,210,64,234,193,228,59,159,255,61,155,104,116,173,102,194,161,90,205,139,201,46,192,100,208,167,247,86,104,221,167,105,193,187,191,148,131,165,218,15,123,69,61,139,13,117,30,197,66,68,171,85,123,232,5,93,90,153,69,5,27,73,66,59,121,3,3,23,208,35,111,194,169,159,54,67,110,163,157,64,220,22,154,18,218,71,240,154,44,204,2,18,83,237,248,185,224,234,2,185,56,52,244,128,34,180,207,167,228,240,
 194,86,7,110,150,37,79,245,29,5,200,101,195,125,166,142,13,217,98,206,40,209,15,216,239,209,244,220,30,203,47,69,145,119,13,127,114,53,181,155,113,205,10,247,254,32,117,134,108,131,93,221,88,173,207,5,53,75,224,11,51,102,21,220,226,44,180,152,231,3,37,17,29,137,106,249,179,152,213,120,193,39,213,250,40,171,238,26,185,116,23,105,244,221,210,87,231,59,131,132,243,170,135,138,12,185,245,113,32,171,25,15,236,171,229,137,242,246,146,10,105,25,144,32,227,87,131,211,240,66,144,90,243,82,236,22,44,52,178,100,199,171,228,228,255,155,155,10,151,213,5,143,222,75,62,61,255,201,52,66,156,16,170,121,177,249,59,118,218,199,192,34,200,144,241,187,175,184,240,140,22,139,254,2,246,253,242,37,92,31,26,137,211,187,70,53,30,9,34,34,35,95,17,58,26,217,180,71,141,54,214,122,166,121,139,232,173,149,18,62,236,167,35,202,179,228,183,50,115,46,173,75,11,52,2,5,192,107,186,102,220,229,195,192,90,110,123,111,106,80,177,119,252,206,93,43,74,112,230,34,159,79,245,228,173,28,130,206,1,65,222,244,60,62,21,8
 6,15,220,81,124,93,231,100,33,24,219,32,24,165,247,115,224,139,118,163,9,254,191,207,138,199,172,209,206,154,190,154,177,242,23,11,151,4,164,118,70,78,42,41,72,104,23,7,236,170,50,69,103,209,234,57,42,8,252,246,137,123,75,141,0,146,8,42,150,31,48,77,237,157,226,2,166,187,152,189,36,186,14,127,41,169,240,235,36,24,229,34,83,166,75,95,58,6,17,13,247,131,126,6,107,56,209,111,92,186,167,109,78,83,254,89,123,165,184,48,197,11,157,148,115,38,130,252,156,73,143,90,235,35,69,159,176,81,53,180,154,182,76,153,129,25,126,159,129,194,6,76,33,116,154,149,180,101,24,247,121,177,66,36,17,226,36,144,131,71,1,236,158,45,6,119,159,136,58,125,255,171,240,71,136,222,153,223,200,204,254,195,203,22,236,38,79,193,223,161,198,86,127,38,227,191,125,223,138,65,46,174,84,30,143,83,48,84,83,65,65,74,193,187,64,178,128,24,3,127,248,220,206,158,253,113,70,52,131,255,232,160,117,144,133,41,54,232,186,205,106,99,52,40,185,235,227,173,44,49,80,187,116,185,212,108,219,87,113,104,228,43,14,150,101,144,147,146
 ,127,166,240,26,204,217,238,16,89,95,241,223,63,60,250,217,8,178,17,153,195,71,49,243,219,136,254,96,103,224,89,237,137,79,143,203,31,130,168,34,223,249,25,168,130,99,200,199,199,182,97,19,138,12,10,122,154,34,163,225,87,203,33,149,77,190,59,243,157,88,57,66,44,181,210,209,202,162,153,219,50,29,209,34,99,24,97,227,10,167,202,57,117,151,68,166,6,151,207,251,75,155,180,226,85,178,104,28,84,80,1,172,118,163,1,93,193,57,66,24,158,77,142,152,31,255,139,149,241,235,107,70,22,112,246,111,215,127,152,202,202,253,66,100,82,167,41,220,2,103,231,47,215,249,130,32,102,107,85,177,36,108,170,197,5,79,106,3,232,42,214,120,133,114,58,209,168,190,73,105,237,111,95,127,214,61,97,183,178,71,3,203,95,235,160,206,213,184,189,81,112,177,53,59,83,80,11,217,255,166,45,26,141,160,179,203,29,172,207,136,193,144,193,36,185,107,153,196,39,85,46,247,108,121,62,175,106,65,150,251,78,139,177,61,150,117,158,250,79,227,104,85,139,80,213,221,17,99,32,140,185,152,42,108,97,228,92,160,58,115,73,152,187,68,168,
 36,131,63,218,133,35,106,202,182,63,111,93,232,219,185,146,235,20,40,196,60,170,75,96,78,117,116,32,186,85,54,77,127,138,186,25,219,114,137,111,251,144,7,208,64,247,152,213,76,138,102,62,255,167,100,191,82,63,126,14,12,162,30,31,143,91,150,204,107,188,214,178,82,240,133,58,196,60,17,244,213,98,177,13,236,164,158,167,78,203,133,44,1,159,57,245,216,133,102,217,123,197,198,19,92,247,197,123,79,158,47,23,53,230,138,215,84,136,133,241,60,120,231,236,140,9,235,37,107,246,7,43,79,1,4,223,163,97,227,239,65,216,115,167,102,111,145,158,215,18,32,220,125,115,20,65,171,246,147,142,190,26,52,116,233,63,59,255,0,107,58,183,119,131,64,94,69,153,24,236,48,208,101,48,57,158,138,42,19,63,224,176,125,242,45,66,29,216,66,70,207,238,241,217,143,166,147,197,206,146,12,43,46,134,160,197,15,73,72,64,51,150,190,80,166,236,194,185,195,214,169,97,132,56,180,71,75,150,239,176,45,206,184,38,159,206,167,182,195,40,161,229,236,113,89,109,23,93,31,80,52,71,30,210,25,249,247,11,4,181,252,139,221,126,206,75,
 185,91,14,98,63,252,101,39,178,85,117,223,28,154,183,39,91,160,94,213,69,221,33,197,185,240,184,90,227,122,192,19,250,197,195,25,70,42,19,170,138,149,246,232,181,170,240,1,87,35,144,171,170,107,118,111,71,82,34,44,85,11,201,152,220,216,98,47,19,64,111,226,28,224,44,5,216,250,34,122,109,76,10,22,200,25,32,55,120,39,90,34,145,10,114,59,25,17,184,213,30,248,234,195,174,103,226,45,178,96,27,170,37,78,68,236,223,119,98,168,181,154,19,43,118,27,226,210,152,10,74,55,3,212,77,196,236,176,11,220,255,69,60,15,164,144,17,239,100,179,168,151,201,120,75,51,237,28,59,119,43,62,95,253,146,166,151,43,95,150,156,223,251,100,113,231,88,180,202,230,100,19,91,142,94,7,253,27,216,25,152,173,120,236,28,216,35,31,240,201,107,170,85,133,254,50,35,3,115,33,172,120,38,189,60,63,240,39,149,72,121,201,209,135,248,52,101,84,55,87,251,249,186,150,130,255,229,18,61,241,195,87,9,106,158,250,147,23,88,82,173,189,87,11,82,16,203,145,194,245,121,82,178,89,102,19,100,166,166,15,40,48,140,52,51,166,75,10,208,22
 9,171,33,10,228,169,31,149,19,133,13,249,46,56,154,250,42,67,103,138,240,75,18,48,2,149,226,199,24,34,150,131,65,107,166,165,36,93,157,163,33,139,118,131,93,201,24,133,178,217,120,146,196,32,228,136,202,157,10,11,75,55,53,82,24,164,64,136,103,68,214,210,134,173,84,47,88,71,246,223,50,171,146,74,105,123,219,157,105,59,245,172,92,84,98,254,120,109,128,67,238,133,158,221,33,54,119,170,133,213,27,203,39,135,44,209,163,9,77,105,233,54,255,212,91,121,17,37,125,27,60,32,8,1,184,127,230,27,222,217,48,108,226,43,153,241,86,111,173,66,47,146,53,221,163,253,67,93,227,195,110,56,133,48,242,55,191,136,163,199,26,50,90,107,155,14,57,24,93,255,79,49,237,32,232,29,13,66,205,222,47,193,239,92,93,9,38,186,217,30,189,199,248,165,230,59,254,135,115,72,55,250,10,150,172,112,255,109,250,104,252,127,227,44,155,152,142,211,158,127,1,138,138,76,38,209,233,135,4,15,87,106,188,48,151,196,107,117,12,19,184,109,106,102,100,44,148,231,198,220,108,32,91,47,82,51,72,5,202,81,194,239,82,145,191,6,210,57,59,
 158,155,196,36,162,197,235,78,53,211,85,57,50,222,195,183,227,214,144,71,31,65,188,104,116,159,134,191,101,57,52,140,138,223,94,136,115,0,83,73,183,165,165,107,39,5,23,191,195,110,61,142,47,113,122,97,218,94,75,252,233,181,195,222,213,21,22,144,55,150,159,40,11,178,126,171,188,219,194,227,94,167,196,161,159,4,143,179,107,42,128,214,113,81,94,124,33,117,49,224,106,138,174,137,129,7,254,41,77,17,244,62,33,81,107,154,36,187,16,164,154,192,125,208,173,70,228,200,193,240,244,18,105,10,2,106,170,107,76,27,11,222,125,182,226,99,237,96,170,200,63,39,138,56,90,112,50,205,236,21,176,85,233,119,38,144,146,81,96,217,178,190,30,105,212,134,32,166,159,125,111,186,6,104,240,176,91,224,64,232,9,131,100,249,131,215,142,138,70,38,103,11,34,156,176,128,6,32,94,77,3,102,116,95,47,135,185,112,45,12,143,255,89,15,190,61,138,103,210,236,204,93,129,26,5,244,177,151,201,56,88,11,188,94,189,8,14,48,39,57,101,159,68,248,209,14,232,214,89,34,147,5,255,163,182,22,50,34,150,241,215,22,178,147,207,42,164,
 248,226,181,144,161,15,75,234,188,186,24,52,196,177,212,22,130,4,242,215,147,254,74,186,61,48,147,174,42,72,73,146,237,44,183,248,212,237,118,148,166,101,69,167,130,162,199,2,22,82,15,71,160,66,81,201,62,12,138,125,88,226,24,24,33,139,25,232,146,181,217,13,223,6,252,37,131,73,207,225,229,200,136,120,40,141,174,136,184,70,45,7,243,145,130,111,184,85,10,121,116,31,83,95,189,252,14,7,162,123,125,113,210,230,248,177,36,56,185,108,219,140,108,81,33,105,77,96,26,71,98,71,155,209,232,159,56,202,164,99,6,244,65,68,102,235,51,188,175,80,212,165,26,207,116,82,252,197,240,156,250,221,126,103,246,245,141,72,134,206,197,79,125,145,94,224,43,67,249,203,227,251,118,37,141,32,244,38,17,114,42,150,45,221,103,242,138,136,254,139,13,79,196,208,97,243,75,21,213,136,52,195,18,245,241,71,83,109,162,83,103,160,100,138,241,33,246,182,79,216,35,30,119,181,59,238,54,160,199,238,243,169,27,25,6,134,116,79,89,121,27,118,121,70,98,195,195,222,210,73,157,217,43,158,80,232,42,221,98,60,36,25,76,30,204,41,
 148,179,104,197,203,152,243,154,88,51,204,250,226,105,2,27,228,110,239,136,227,49,25,69,152,134,104,88,93,213,247,191,230,30,75,195,51,72,0,78,136,243,238,71,106,112,179,28,234,194,232,247,187,40,15,45,162,249,113,54,1,207,195,76,21,76,88,74,141,238,180,118,148,96,5,181,41,67,203,62,100,69,138,87,5,87,136,116,246,235,30,245,146,28,165,4,30,136,229,175,66,53,194,162,177,156,149,193,16,152,33,207,161,20,184,164,67,122,82,125,26,89,171,76,242,49,192,53,196,74,152,174,56,37,171,81,194,165,41,195,130,86,78,127,193,28,246,96,244,210,100,229,213,23,117,212,210,247,116,229,107,34,220,24,184,99,237,238,219,9,164,235,199,205,29,244,47,33,92,48,122,89,115,52,233,148,72,156,31,177,16,114,203,113,46,186,102,204,83,88,30,150,232,59,15,87,162,130,5,97,145,36,30,203,52,121,16,226,21,68,218,222,51,147,185,56,130,88,87,66,212,2,88,241,17,219,52,118,241,61,197,184,190,89,131,240,22,168,47,26,161,188,1,87,155,237,185,119,112,225,162,135,128,155,56,95,51,125,125,63,83,47,204,98,241,176,107,222,2
 50,156,50,223,171,111,242,222,182,215,255,3,0,46,204,104,215,194,172,69,11,74,170,9,89,37,125,190,91,248,74,164,93,237,198,109,231,187,74,246,158,165,87,120,207,182,195,173,89,79,239,63,60,207,143,207,165,206,232,66,67,148,6,46,228,58,239,129,238,71,165,135,165,88,13,174,179,229,147,190,59,252,213,254,220,222,25,190,144,44,232,219,251,221,190,222,80,65,50,83,7,139,132,167,226,48,16,20,38,189,135,221,48,72,27,226,93,186,130,128,55,101,226,49,79,242,108,125,170,89,177,177,63,0,160,106,142,24,95,188,242,43,229,142,38,104,161,149,179,149,203,248,212,211,112,26,29,42,224,208,129,28,168,26,236,111,179,197,33,159,20,116,6,21,29,82,223,51,237,87,16,1,214,219,36,141,168,128,5,101,64,13,179,194,55,221,239,123,168,55,182,239,247,81,16,123,126,125,212,3,4,118,177,4,205,228,242,15,92,160,113,198,206,160,127,150,34,62,230,100,118,38,164,134,98,12,224,181,84,196,120,182,44,50,252,152,98,101,7,213,3,172,239,34,213,67,253,33,154,206,107,69,107,157,246,188,66,68,218,216,71,230,57,175,80,129,5
 ,204,8,147,56,109,37,177,113,131,252,11,237,40,34,13,102,42,56,167,66,204,35,42,4,247,125,52,113,182,73,71,114,22,74,65,31,199,69,214,29,109,49,144,39,57,52,160,186,233,168,163,220,225,20,190,139,159,57,72,43,118,28,112,204,4,239,41,197,135,119,23,4,95,245,161,230,214,230,149,75,98,30,15,146,157,26,82,14,207,230,50,99,39,222,159,185,208,116,74,214,0,169,23,84,184,174,8,145,201,54,61,63,211,140,121,35,63,109,169,83,254,22,62,94,168,211,146,153,61,6,198,186,144,31,72,49,38,202,164,11,80,25,174,205,77,116,123,224,238,238,113,147,28,247,101,114,218,188,89,206,83,177,98,188,142,216,59,85,155,103,99,50,75,246,236,43,127,225,226,33,230,107,183,211,95,2,233,112,135,156,114,204,22,219,172,211,253,50,159,92,160,11,186,2,153,190,202,35,137,46,137,46,58,219,131,94,198,230,195,101,158,43,253,51,100,193,216,18,255,43,248,193,177,33,253,24,46,118,187,84,110,228,232,253,35,121,157,192,16,147,227,137,241,22,39,233,133,49,243,29,173,212,75,103,237,0,154,100,160,207,10,201,45,149,217,191,203,7
 ,28,192,53,189,159,23,111,13,63,83,102,10,2,6,181,46,174,241,198,145,20,131,124,106,182,111,253,191,130,51,112,95,183,178,153,148,79,250,233,59,141,107,217,79,207,197,39,177,91,30,0,171,161,94,106,190,235,213,134,144,42,92,11,159,76,250,31,136,206,85,182,165,104,203,41,74,83,26,77,19,168,167,52,29,16,197,219,249,22,35,5,82,238,108,34,189,13,29,47,153,89,42,130,181,89,205,192,62,206,76,110,142,60,206,213,131,254,48,25,193,108,156,189,75,24,208,11,57,97,205,213,9,241,217,203,159,92,2,213,65,128,144,184,156,77,5,166,158,60,70,232,110,152,121,106,124,2,219,89,88,66,100,67,197,1,52,229,61,161,118,111,140,128,133,199,128,95,230,120,152,166,226,26,53,249,181,5,202,200,100,240,72,210,200,131,47,169,126,17,85,34,124,65,34,51,104,168,87,18,224,199,235,69,155,94,20,106,235,180,95,97,71,11,61,205,15,242,153,117,139,23,35,203,72,93,179,29,85,148,129,254,91,102,27,158,178,139,223,211,61,75,120,157,160,96,86,6,65,216,208,30,1,157,168,246,250,128,141,211,137,91,107,243,20,240,171,86,174,237
 ,221,30,241,27,98,150,12,103,206,119,123,52,141,32,228,45,39,160,111,175,127,230,103,220,189,155,200,133,93,31,255,216,138,187,83,88,169,113,76,145,100,107,151,157,198,213,156,27,211,110,145,21,114,175,216,60,42,25,97,81,102,26,78,181,102,230,16,106,217,224,64,110,127,218,82,15,50,132,111,232,82,235,53,252,79,11,255,107,107,68,88,147,211,132,232,113,8,73,202,160,180,191,179,184,54,10,57,112,13,11,60,127,35,234,105,89,15,39,242,37,135,50,223,12,100,98,205,49,111,54,232,85,205,106,41,134,97,215,16,122,146,69,79,95,42,18,222,100,150,110,46,223,118,84,237,28,152,185,68,73,16,7,222,23,135,199,164,195,221,210,20,51,197,237,78,88,234,74,15,245,124,100,7,49,18,165,105,120,138,17,225,88,136,70,44,2,161,196,35,63,54,76,210,63,130,120,18,227,52,67,193,14,188,58,10,3,83,48,50,115,192,228,13,225,36,42,203,151,137,108,23,231,209,188,191,149,11,143,49,216,143,94,224,232,251,161,20,62,103,123,142,137,140,168,54,237,0,151,174,161,28,2,145,164,80,57,37,75,88,38,92,172,251,154,88,172,254,19,12
 2,30,32,72,58,95,66,35,36,22,230,183,10,72,193,14,79,7,145,250,7,96,166,232,255,17,34,97,107,233,152,73,89,53,24,86,183,113,104,49,45,196,16,21,19,243,200,112,69,152,188,22,240,198,243,141,181,94,145,50,84,91,67,56,52,104,173,44,254,82,102,80,190,63,151,23,171,159,98,185,220,229,210,51,149,46,3,196,141,23,3,5,81,130,252,55,70,249,34,34,22,130,216,229,154,131,161,102,191,3,19,95,170,103,235,206,137,164,76,164,28,140,54,76,200,10,60,161,144,232,216,30,231,141,209,6,91,29,6,139,38,174,111,116,46,184,152,40,32,125,173,133,171,51,215,129,2,81,178,220,203,23,183,239,176,251,146,14,124,224,168,126,29,240,140,36,37,85,50,112,98,102,217,18,145,226,217,131,253,0,210,249,226,73,102,150,248,248,247,142,7,18,190,122,130,150,214,251,104,239,119,252,244,104,23,202,61,68,29,214,73,114,39,67,99,95,120,206,136,149,94,77,133,92,135,88,225,229,205,157,169,80,112,135,184,172,16,170,173,30,169,201,71,103,226,20,49,163,139,135,239,226,137,51,83,229,176,125,93,7,228,194,11,199,252,209,199,208,184,6
 8,25,79,226,155,192,60,66,104,21,31,170,107,74,173,47,89,77,102,212,84,49,144,7,182,51,201,208,61,70,176,205,28,78,93,30,240,28,116,177,15,194,92,104,189,136,134,166,145,61,188,106,47,30,110,143,190,88,66,104,174,126,235,74,187,242,49,141,89,8,245,238,243,36,214,126,30,51,96,40,89,186,157,122,6,122,4,151,194,45,136,24,129,35,208,230,220,211,155,192,164,213,219,82,199,220,249,69,69,115,135,30,114,109,103,228,85,237,87,196,130,11,17,3,255,232,64,85,180,237,200,69,81,5,84,59,111,114,120,181,108,51,166,63,29,193,116,237,168,103,144,195,242,180,146,189,1,99,26,174,100,166,54,157,71,212,111,178,230,164,92,66,24,31,171,118,107,15,233,13,91,46,179,214,222,63,147,14,40,25,14,57,80,36,176,194,190,178,83,108,9,232,14,76,32,78,116,12,105,140,122,52,14,241,239,60,51,15,175,40,14,72,69,145,71,87,128,69,47,247,97,47,199,220,164,52,194,18,91,67,168,110,204,44,138,252,65,188,137,232,20,14,233,50,49,140,121,205,248,68,2,190,215,95,58,174,103,197,54,238,225,1,95,90,20,164,250,8,54,223,255,54,1
 46,66,174,230,252,0,133,159,176,253,159,118,22,165,195,194,148,188,42,59,117,85,133,47,36,25,237,64,77,172,41,246,211,8,107,105,173,110,193,155,194,56,7,144,85,193,206,24,229,233,253,207,90,12,100,250,124,208,246,61,163,197,34,59,102,111,188,98,152,90,39,250,247,69,35,112,88,89,81,36,46,144,28,149,69,64,222,34,165,188,6,4,136,235,242,140,60,233,214,117,73,143,129,159,94,169,100,204,201,144,165,88,53,33,231,220,99,146,38,93,110,240,17,139,152,11,11,243,190,246,131,239,131,52,83,169,230,6,102,213,84,146,248,234,126,226,97,230,197,106,241,240,156,181,64,19,254,112,43,227,144,146,51,191,21,206,168,158,238,225,142,180,43,89,248,249,239,38,180,6,0,61,89,170,161,5,200,91,28,201,149,18,215,8,203,166,221,220,141,148,244,72,243,13,124,72,76,151,76,239,21,93,49,20,166,214,138,105,64,65,234,146,39,26,215,146,205,10,33,66,73,201,36,67,27,33,149,134,244,239,140,4,137,220,25,169,61,88,39,179,116,230,20,81,86,201,99,165,82,87,216,38,91,202,117,118,169,227,108,8,195,244,209,70,121,55,154,81,
 241,15,255,230,110,204,167,42,54,237,112,149,9,194,144,213,173,174,107,243,105,226,134,151,147,54,21,143,75,149,144,209,56,99,192,159,60,102,175,17,91,166,125,241,20,221,20,41,59,61,43,76,147,199,251,11,85,73,180,174,248,241,80,210,78,169,156,234,104,113,61,164,18,165,60,161,211,150,212,91,58,97,185,161,238,25,209,36,132,136,212,81,93,65,24,105,158,109,187,14,32,234,148,64,89,174,196,237,2,28,167,161,210,5,80,102,177,252,122,228,119,125,170,60,189,227,238,245,52,145,149,233,62,14,65,96,214,218,108,127,88,223,179,157,105,165,46,139,208,233,197,65,133,62,168,190,208,242,76,211,42,155,73,155,35,23,66,71,198,235,75,11,44,17,204,64,65,110,89,88,166,7,38,139,191,32,228,186,47,118,130,144,95,162,83,205,212,15,162,66,98,54,46,236,127,132,171,195,212,99,159,123,87,121,206,227,216,154,119,41,138,166,29,58,209,200,67,140,213,49,81,101,112,91,141,80,10,218,109,142,238,142,151,46,136,206,246,177,177,186,159,90,136,96,192,220,111,138,117,123,56,47,152,162,23,181,141,8,88,30,194,127,151,18
 ,252,159,44,83,80,205,210,146,19,131,211,188,136,133,65,185,160,33,193,62,38,95,62,15,168,107,17,31,62,210,78,209,47,172,231,153,170,197,61,8,161,100,6,198,231,105,96,92,201,7,185,204,66,169,127,155,120,71,142,244,44,60,179,17,64,209,243,109,88,43,61,54,39,231,25,131,63,69,247,80,115,113,129,135,223,55,34,79,19,195,12,115,248,255,192,136,251,254,243,42,104,119,111,127,152,3,135,55,239,174,165,123,209,30,244,206,46,185,156,71,200,110,70,217,233,15,38,154,121,247,234,173,130,173,46,150,220,183,235,201,61,129,44,106,90,22,226,87,225,117,62,177,49,244,83,56,20,69,54,229,80,70,214,30,205,37,210,50,12,162,47,66,111,163,94,227,55,40,197,196,115,48,60,142,7,47,42,92,82,37,232,122,7,147,220,129,7,162,250,164,36,162,5,124,141,142,201,11,77,106,152,90,222,41,155,127,189,56,125,242,52,54,207,251,190,107,179,217,87,7,235,0,79,166,128,231,7,92,97,168,113,182,153,190,0,57,97,143,225,144,117,16,75,60,150,79,93,169,111,79,99,181,73,219,122,213,75,55,186,105,84,171,46,5,109,87,85,155,169,155,
 224,210,208,40,112,47,46,133,172,10,75,31,75,74,220,47,200,155,203,16,139,34,170,180,95,23,191,161,12,7,55,120,105,44,32,5,137,41,177,99,102,4,100,148,144,243,43,3,4,10,182,250,40,23,196,42,200,188,255,105,197,133,53,155,104,151,78,173,175,93,225,68,235,204,146,187,201,180,26,232,104,111,180,35,131,228,175,209,22,192,114,60,44,71,47,27,118,100,204,174,87,228,223,194,66,250,209,240,244,9,94,58,80,134,175,200,25,36,91,255,217,4,67,84,201,215,117,152,174,60,139,80,113,58,168,211,233,227,153,234,151,241,100,171,245,195,124,59,66,250,157,12,49,122,218,90,65,143,40,45,152,16,144,65,152,27,158,75,172,93,243,196,234,13,246,14,157,96,208,202,59,221,241,100,141,192,141,30,161,86,217,214,198,130,152,238,30,237,197,13,129,118,76,117,106,144,46,127,7,253,44,205,16,0,46,167,57,87,240,9,155,51,234,36,33,51,52,138,90,213,71,7,88,158,245,149,205,147,191,150,188,99,32,83,13,59,27,161,145,163,54,184,37,170,240,220,243,191,36,66,157,30,121,64,104,180,249,225,156,227,98,92,255,47,146,100,24,153,
 211,122,91,44,16,1,13,223,235,43,227,219,150,181,14,76,164,233,241,35,236,120,84,149,211,151,23,98,143,177,3,227,254,4,171,235,121,218,125,211,111,52,224,71,115,136,110,75,137,46,16,99,42,150,1,85,188,177,229,136,120,17,106,106,33,161,50,131,60,165,171,36,50,89,106,191,252,142,79,74,118,3,215,193,223,117,173,166,215,192,10,239,41,29,199,239,221,146,102,166,142,152,21,90,176,45,145,129,146,89,140,133,93,110,89,101,97,55,157,75,244,129,135,253,87,215,14,251,225,38,125,183,0,36,45,23,236,203,50,136,5,31,16,207,13,107,161,192,74,60,101,105,65,159,96,153,52,244,36,39,28,72,153,134,233,222,83,4,28,87,36,132,119,69,79,120,240,183,218,195,210,57,82,45,165,60,252,203,55,44,140,186,68,59,230,35,47,118,173,190,194,55,14,106,97,139,93,112,221,168,178,91,194,129,27,92,161,209,32,234,167,123,18,242,216,100,39,227,189,234,40,156,14,220,214,74,156,42,18,178,96,221,113,242,6,56,25,49,49,253,232,11,209,223,165,2,72,87,243,135,94,200,238,11,39,113,212,161,251,76,180,170,79,39,148,61,145,127,12
 9,111,82,5,235,22,211,212,172,49,253,248,72,123,137,156,57,86,199,133,43,246,171,216,176,6,175,40,184,218,113,156,34,208,58,239,247,133,92,243,59,175,194,21,143,40,98,203,112,81,141,94,92,124,169,121,155,75,104,103,78,83,194,155,68,53,235,5,83,219,149,241,123,88,136,253,253,126,147,76,244,117,229,76,30,239,160,161,2,118,204,123,160,102,142,121,127,206,7,188,22,160,207,91,38,3,195,36,239,189,5,221,221,7,15,31,53,132,107,151,102,170,4,99,170,125,236,52,57,253,44,37,220,88,142,18,123,85,217,38,21,39,24,194,187,125,188,118,192,101,204,33,44,141,247,96,80,141,30,178,229,93,29,108,92,82,138,51,26,160,114,168,138,214,102,162,29,207,165,143,2,32,111,102,27,132,218,141,138,226,46,182,26,123,224,146,251,163,193,143,175,110,194,169,136,227,160,126,226,117,36,186,70,222,120,168,16,122,79,26,201,218,16,240,51,201,82,58,144,227,77,28,136,207,36,25,51,69,1,122,90,252,97,106,251,172,251,0,29,22,244,206,247,18,207,247,46,58,0,51,201,230,231,144,223,120,205,51,16,81,133,161,114,66,112,115,181
 ,71,157,157,11,197,48,218,74,151,212,242,53,72,200,183,162,245,27,95,156,40,137,234,213,182,10,72,177,26,48,5,99,171,218,86,152,187,9,155,193,160,66,146,19,74,152,64,159,251,112,179,201,113,25,37,97,70,43,204,21,129,23,51,210,180,81,146,57,84,151,231,201,20,40,124,85,113,53,88,203,8,224,42,122,250,196,123,165,216,19,0,240,232,194,6,216,137,48,6,127,165,34,61,115,184,234,76,153,182,37,238,94,23,169,14,12,210,210,246,182,202,221,54,170,58,12,78,155,78,244,46,109,242,14,219,251,141,41,214,117,220,21,148,146,105,174,8,188,154,148,171,242,44,1,253,68,0,64,189,122,85,46,117,138,181,207,240,51,82,143,5,36,155,210,174,108,154,135,206,192,235,167,34,160,105,201,207,156,146,207,44,237,40,24,83,221,22,229,190,236,17,95,242,16,153,60,252,208,51,10,131,104,83,107,82,19,222,93,252,166,207,125,216,62,2,62,237,88,46,72,184,158,35,132,166,5,97,120,69,91,112,206,49,88,76,5,173,204,159,254,140,139,67,139,239,72,62,160,51,101,22,150,25,27,148,239,246,116,213,239,56,157,40,147,80,154,28,206,117,
 1,69,180,132,108,59,187,86,137,180,51,237,172,100,115,40,187,227,80,48,212,21,50,170,25,64,123,8,205,231,220,39,97,99,190,3,109,86,167,151,147,128,172,151,224,212,207,18,16,115,168,42,128,75,236,176,175,232,157,210,99,21,89,70,12,218,34,181,46,91,13,200,192,203,65,105,3,175,171,80,201,181,131,141,138,81,30,10,161,14,203,239,73,25,149,174,62,18,46,245,209,41,125,138,131,215,161,47,240,144,114,85,162,100,75,93,244,63,31,184,91,184,186,33,174,68,38,51,129,143,36,204,64,244,168,31,21,42,127,226,197,12,252,188,17,39,19,85,30,40,41,234,129,54,36,139,114,91,52,199,108,68,114,20,103,129,236,117,28,0,142,138,123,60,189,220,190,132,106,163,118,165,101,196,23,59,86,3,108,224,97,51,51,9,237,116,191,209,56,85,158,60,201,8,42,219,59,123,39,10,67,79,18,231,186,147,122,90,232,55,23,191,17,125,107,135,67,84,52,160,61,201,226,83,103,39,197,119,236,205,170,97,177,180,35,7,10,34,48,4,120,233,153,85,194,175,144,247,169,77,126,234,167,220,75,165,160,174,245,208,25,146,30,62,178,13,111,127,38,51,2
 13,116,35,243,66,232,145,168,0,184,245,22,127,191,39,94,189,99,105,151,147,47,90,186,140,238,247,200,87,55,24,57,20,126,228,125,214,23,181,205,17,100,160,88,101,253,145,229,137,105,217,49,51,80,140,231,26,14,70,215,147,53,61,6,28,140,203,219,163,104,217,249,58,116,123,32,200,143,163,21,95,44,71,9,200,0,213,154,116,18,52,160,126,229,139,78,185,203,205,149,2,240,213,82,25,205,62,255,41,11,251,176,199,88,77,111,243,93,203,100,17,1,83,89,185,129,105,190,143,82,198,249,5,179,8,36,35,95,169,255,146,40,186,35,57,101,209,206,79,43,110,130,185,172,233,58,250,192,80,38,127,242,10,6,239,211,243,73,231,22,27,236,102,89,117,121,25,222,14,112,119,216,51,68,187,101,81,145,194,111,58,71,52,81,208,144,203,108,147,122,61,161,228,28,221,51,58,9,98,3,129,230,233,238,95,146,74,22,226,27,176,147,66,129,123,82,44,29,50,129,147,227,159,13,13,189,200,64,102,42,94,72,250,113,147,253,7,80,13,33,93,111,107,143,251,45,193,11,51,173,58,134,15,225,204,208,162,87,48,208,149,137,246,122,128,26,208,64,73,45,
 11,251,50,80,113,63,27,31,253,213,185,192,11,187,116,57,8,118,94,32,113,111,154,60,51,169,253,205,110,149,44,241,151,83,112,135,4,77,24,55,88,7,236,149,251,130,53,4,2,79,245,134,126,43,250,106,215,3,129,104,59,180,170,190,251,27,147,63,51,126,173,226,151,225,223,76,176,222,190,24,90,250,91,60,56,100,245,244,152,214,114,70,16,117,137,167,25,255,199,75,111,249,135,255,2,74,220,7,96,18,31,179,56,5,33,33,72,179,183,104,125,113,128,60,247,127,74,44,116,85,98,71,227,250,235,23,155,176,212,131,206,83,33,98,209,157,135,255,94,53,243,251,162,86,63,151,64,60,89,140,129,10,180,68,253,17,185,240,217,218,228,8,11,220,49,140,217,238,162,119,159,253,213,26,159,40,7,172,253,240,132,106,78,114,237,154,194,232,242,234,74,36,88,39,69,228,211,222,49,189,105,54,254,9,42,209,1,247,97,194,124,181,153,104,30,91,141,111,145,127,120,39,241,242,127,65,210,1,199,228,195,202,57,169,83,187,29,242,147,65,18,54,27,122,145,12,99,11,27,139,87,169,239,231,203,79,209,233,20,199,249,129,163,89,115,211,172,164,1
 22,134,234,223,129,216,165,255,20,212,88,1,171,239,108,32,110,73,187,72,52,114,6,222,185,54,14,239,219,248,198,191,77,251,129,63,25,82,216,183,247,171,43,7,120,59,150,11,24,119,108,136,132,105,89,246,4,33,210,126,230,24,19,41,82,103,231,130,4,212,41,203,34,245,107,6,16,160,99,194,237,227,51,156,4,175,111,26,122,96,213,130,139,193,24,103,137,102,84,152,40,139,197,92,120,161,34,33,237,234,2,243,252,104,168,59,195,218,188,38,26,215,185,77,115,54,181,6,152,220,117,224,130,248,166,66,217,182,171,158,35,202,69,232,24,44,70,184,34,227,235,48,7,252,86,49,161,244,142,65,187,167,184,32,109,160,129,222,171,76,96,248,178,48,60,88,147,4,10,74,254,86,40,46,81,146,44,229,216,9,86,145,225,221,110,89,159,154,224,59,244,120,221,219,9,89,94,246,12,253,186,115,148,38,55,115,82,169,196,131,174,133,0,152,251,161,143,26,22,190,6,142,103,35,245,229,180,142,171,158,184,197,159,15,245,249,150,10,171,238,175,169,249,237,98,10,45,197,60,119,118,70,10,98,213,125,135,42,205,151,228,99,111,75,209,228,199,
 123,35,179,152,245,166,1,82,123,145,171,166,118,186,206,159,102,171,60,54,114,121,161,118,42,112,5,29,3,14,247,11,238,159,253,114,58,39,12,94,55,141,229,251,21,227,249,139,17,93,132,112,188,178,14,6,243,75,37,228,189,82,176,196,139,251,55,110,87,213,30,71,223,207,65,82,215,71,16,234,136,91,21,226,130,53,146,3,241,51,184,139,225,211,41,17,135,3,55,22,113,75,17,119,243,163,7,165,56,232,200,21,78,111,196,242,216,75,65,171,60,127,96,50,131,130,128,252,41,202,235,225,18,21,236,151,102,8,242,55,219,128,36,214,242,188,143,86,5,159,66,219,122,62,84,106,15,62,246,28,236,130,250,25,29,70,236,72,43,157,80,170,43,72,238,151,122,138,148,172,157,254,226,228,182,38,213,72,121,158,161,128,242,69,100,104,81,252,216,108,157,70,182,197,24,114,106,158,123,155,178,45,128,175,134,238,133,175,157,38,43,145,176,200,134,182,250,23,25,246,71,108,7,243,70,243,185,151,110,78,189,32,82,27,248,135,4,235,91,27,148,59,89,125,176,221,130,184,36,199,54,252,246,144,38,43,62,234,32,50,61,211,2,235,122,67,158,1
 90,125,172,87,148,98,143,191,167,192,119,34,3,226,142,178,123,121,244,182,237,227,88,50,189,42,53,60,45,250,215,111,89,60,14,107,114,172,23,111,4,108,206,65,254,69,170,203,59,66,44,86,145,33,128,29,190,79,171,28,146,25,201,148,232,74,156,145,189,156,55,150,65,168,253,5,27,168,51,101,119,74,230,97,64,29,13,241,182,159,235,20,143,16,40,130,220,114,52,234,185,76,66,150,94,118,190,245,111,226,168,159,188,122,206,64,54,1,2,237,113,130,88,16,68,25,63,213,155,139,1,177,231,137,108,47,142,206,131,68,133,178,148,138,246,219,81,30,223,145,211,217,128,169,122,93,187,198,249,58,9,4,234,38,91,199,122,104,217,26,37,203,20,180,171,131,146,3,44,27,57,125,64,155,140,222,159,0,118,251,215,179,19,107,12,66,26,159,17,203,188,130,183,129,187,178,181,180,218,118,150,111,57,80,150,66,169,153,12,104,185,13,41,215,145,31,97,136,238,245,85,77,61,173,210,81,251,4,106,48,61,191,107,234,194,175,9,20,72,11,102,153,239,141,172,36,99,189,149,55,87,55,37,98,93,165,96,97,150,184,231,10,170,246,182,114,75,242
 ,66,248,149,95,240,165,232,8,136,186,206,78,238,241,175,14,254,213,152,11,185,134,91,99,35,171,29,143,247,117,128,204,209,184,71,71,212,33,189,221,194,113,163,201,35,165,224,125,159,162,25,121,103,61,226,98,102,21,238,188,127,107,215,238,187,149,33,68,63,156,249,158,131,161,33,127,119,218,167,208,41,206,39,169,120,76,71,52,118,86,221,94,121,39,208,15,5,115,0,235,111,127,4,21,236,92,171,52,177,80,182,97,234,8,232,100,202,234,67,191,83,197,181,84,232,15,229,89,217,5,57,51,56,10,137,5,129,54,11,200,98,93,43,235,10,44,239,26,69,171,21,220,152,183,29,190,38,239,232,223,205,80,232,139,97,121,113,213,19,228,245,235,229,157,122,198,104,189,229,113,185,208,202,162,124,251,101,99,54,28,174,202,140,89,21,228,110,201,86,91,242,78,248,16,141,215,15,226,159,244,221,85,171,79,85,93,154,22,13,238,4,110,240,166,35,245,11,154,83,80,175,86,243,75,62,38,196,104,170,74,50,135,100,60,80,37,20,245,11,127,186,195,12,52,248,215,179,77,4,172,251,114,243,171,12,27,169,164,192,166,205,176,229,90,12,195
 ,63,184,159,46,239,218,212,12,225,240,72,97,64,115,60,142,73,76,235,45,165,57,196,92,42,222,255,217,5,178,46,252,124,195,17,108,147,228,15,224,50,28,125,172,26,96,206,227,14,176,148,41,123,4,4,206,194,53,110,217,71,64,161,31,105,1,65,230,20,3,69,224,187,217,193,227,84,98,37,0,158,176,208,41,56,150,5,20,132,67,203,68,36,236,234,158,252,195,152,131,215,106,166,213,7,91,223,152,85,138,112,120,113,187,211,192,26,231,172,95,146,248,230,98,227,11,15,136,246,202,166,250,124,93,147,83,50,144,213,107,99,44,8,131,127,17,227,131,138,161,166,152,102,212,82,19,67,6,169,119,37,224,242,112,52,129,84,146,100,245,202,252,107,183,98,97,1,172,38,16,58,157,84,140,175,64,85,208,188,40,36,225,210,20,245,29,156,221,231,185,140,226,195,5,219,196,149,24,57,253,110,147,35,111,255,130,150,97,59,72,18,48,130,123,62,22,105,1,221,254,127,107,140,175,101,239,223,182,207,37,244,164,48,109,76,79,32,102,60,151,150,85,158,106,51,102,33,121,175,24,119,198,51,179,174,228,166,148,65,251,18,199,236,102,138,87,241
 ,162,165,172,179,136,52,177,108,40,47,48,133,78,189,155,73,89,248,39,99,197,164,13,98,21,215,189,12,233,76,161,213,200,143,94,67,78,79,221,218,120,119,150,234,1,227,24,80,141,37,190,2,103,227,5,57,221,154,160,1,12,187,143,133,12,192,137,231,66,118,110,85,203,136,20,134,218,62,215,72,17,33,64,165,53,71,41,121,202,27,49,182,199,162,77,179,98,78,238,105,251,179,116,102,179,226,141,2,62,135,219,178,2,138,41,81,109,234,12,191,23,176,1,81,69,134,239,76,157,252,18,157,252,77,248,231,56,173,90,126,22,112,236,21,168,7,23,120,79,110,33,217,89,248,6,197,85,18,236,255,208,115,140,128,125,228,221,97,236,126,232,205,174,153,84,86,148,117,108,229,225,71,230,96,130,76,2,65,228,147,134,54,226,97,74,8,91,20,11,33,58,13,181,94,246,37,147,200,11,217,107,121,7,9,40,38,107,31,239,165,146,147,141,177,198,111,239,88,167,225,50,235,173,87,192,162,111,188,8,141,66,219,235,202,180,122,130,110,223,3,36,150,189,142,171,155,152,38,174,85,210,144,230,137,243,164,89,77,231,39,116,100,130,49,126,23,2,79,196
 ,188,247,130,91,102,12,75,169,192,193,85,81,45,141,15,62,232,146,1,159,201,160,213,120,89,228,237,59,4,181,166,209,186,72,112,115,128,18,60,231,197,228,121,143,132,124,180,67,146,184,102,70,6,99,159,32,156,1,74,227,190,137,50,72,6,33,21,131,49,162,57,239,20,216,151,245,250,234,74,235,172,88,5,113,246,80,212,34,252,0,84,192,14,68,43,196,158,154,86,237,186,60,184,19,22,158,31,166,84,28,230,206,218,11,117,4,186,89,118,196,14,206,181,219,230,81,140,29,171,71,93,122,35,134,98,209,216,174,154,37,137,101,119,182,134,65,89,208,240,208,199,187,180,146,71,88,84,33,164,123,245,54,65,62,247,248,178,66,42,254,210,238,230,200,19,150,250,14,225,117,240,244,180,106,201,198,2,121,255,16,47,26,74,29,42,134,41,132,55,29,156,226,200,88,199,110,245,98,185,105,66,29,119,93,216,229,167,208,243,117,130,156,210,173,82,21,120,149,97,189,244,53,38,171,62,242,35,130,69,10,180,244,182,27,177,80,225,154,46,255,145,49,83,35,101,107,204,109,160,4,240,96,252,21,188,49,55,121,252,15,230,169,82,72,77,230,249,
 19,135,89,122,254,24,71,89,228,195,82,146,108,243,68,42,231,19,170,200,39,28,44,37,46,43,78,193,118,42,118,169,208,17,215,238,224,255,166,158,106,10,139,121,74,12,80,77,142,162,61,24,83,93,190,61,53,255,88,188,36,121,206,26,121,102,93,129,160,122,196,27,18,125,149,72,122,97,199,36,135,195,143,70,34,41,34,164,82,207,214,156,48,227,240,244,69,131,94,177,172,7,215,226,181,194,155,74,25,69,253,223,193,143,105,0,50,241,115,156,49,41,72,157,1,49,101,77,111,169,170,123,43,210,238,100,227,216,94,240,185,53,47,236,210,13,195,158,151,235,19,90,10,185,10,59,145,106,63,113,213,133,13,164,248,107,91,87,78,76,43,180,82,137,32,253,215,23,151,164,164,130,138,12,177,114,48,237,167,20,30,238,200,243,53,75,78,193,132,148,15,14,72,109,250,56,98,98,208,39,254,79,108,18,227,125,204,198,130,41,89,160,210,92,113,223,116,76,46,57,94,179,43,28,232,210,71,216,0,32,230,95,103,232,59,123,133,246,160,5,115,215,188,96,49,133,90,131,142,170,219,94,207,1,177,111,159,138,72,239,30,177,49,137,183,60,97,41,35,
 74,18,153,118,219,212,147,179,53,20,179,250,13,198,237,60,3,189,21,243,245,21,162,46,60,128,81,5,131,226,134,255,43,40,177,137,62,187,96,58,136,71,60,210,86,38,51,151,124,27,92,102,122,154,184,167,179,106,236,190,232,215,73,68,158,156,109,197,54,186,155,33,175,236,231,243,64,13,35,182,244,205,191,228,148,224,88,245,244,131,165,97,7,187,186,126,179,204,138,144,232,139,0,248,134,10,254,34,126,239,229,86,152,138,59,35,133,210,149,123,198,246,71,167,213,104,163,179,95,43,125,142,37,37,238,215,124,184,175,249,223,171,45,182,173,40,40,232,223,89,51,141,146,10,11,226,101,240,48,8,5,149,143,151,187,225,26,92,228,141,13,165,233,42,175,158,232,11,12,247,221,18,58,215,252,52,160,26,2,64,97,141,244,199,234,132,217,238,223,107,157,234,119,206,48,55,218,72,31,204,156,216,36,61,250,184,48,221,240,39,60,50,252,194,46,204,91,20,9,105,229,192,233,209,169,231,197,84,37,7,81,152,99,243,68,121,15,116,4,186,119,141,239,181,204,27,148,121,106,234,51,69,65,42,33,154,191,57,110,231,17,176,3,73,255,1
 69,97,217,255,245,84,4,228,20,247,8,149,124,89,156,245,248,130,32,103,104,43,154,171,39,57,66,92,56,241,99,164,168,150,64,81,91,161,101,94,169,232,211,239,215,108,89,95,182,162,215,41,170,201,59,120,8,223,84,41,88,170,106,172,216,208,120,54,253,20,152,205,161,105,56,29,163,155,33,178,42,201,71,65,252,183,8,182,76,10,77,201,41,177,210,244,201,198,49,11,154,216,159,166,146,125,154,73,222,221,79,111,158,39,124,190,35,154,198,172,29,47,60,223,165,230,144,185,168,110,232,86,10,59,181,57,77,129,245,72,112,235,232,80,50,68,126,109,166,249,178,64,122,79,28,84,13,115,240,45,187,130,12,83,21,81,143,216,204,252,65,199,172,10,113,208,19,0,143,175,34,19,66,36,157,54,95,72,212,38,240,122,144,33,179,145,172,39,220,229,74,252,243,25,104,34,12,22,142,1,23,156,162,12,91,107,4,139,164,39,106,89,218,39,167,106,188,137,79,165,150,242,130,126,243,205,80,242,161,63,116,97,143,34,88,195,134,128,39,119,199,246,137,61,212,39,37,24,225,164,176,238,129,92,15,70,148,161,219,134,101,121,134,54,137,80,60,
 79,137,98,228,111,124,75,210,252,50,10,55,202,171,96,246,129,62,245,7,5,193,122,87,34,212,114,174,49,8,113,4,201,187,25,189,105,62,245,65,231,58,98,7,153,176,56,74,150,70,184,198,247,195,157,234,19,97,186,211,64,114,20,9,88,223,147,55,44,53,212,251,84,57,104,77,225,78,142,78,19,75,253,126,181,165,42,226,94,104,77,129,106,2,135,80,79,64,219,113,161,169,139,189,177,101,88,144,52,41,113,200,56,7,204,150,83,20,66,234,142,76,254,141,136,140,146,59,160,204,169,210,159,175,159,135,232,177,186,112,2,168,195,207,116,132,209,176,213,23,192,157,154,160,17,8,73,73,87,125,45,152,1,222,209,178,102,120,199,4,181,121,164,171,222,215,93,134,44,91,20,85,83,39,16,248,85,5,144,242,140,171,171,138,80,49,137,63,115,250,96,0,117,173,225,199,167,42,169,127,198,16,210,182,103,53,191,66,205,244,154,236,241,251,235,241,83,115,118,48,145,21,245,244,186,173,49,191,10,78,254,5,150,157,126,42,39,37,109,160,54,208,24,178,26,84,171,162,169,110,240,145,116,42,88,223,237,101,112,133,187,85,50,76,119,0,167,138
 ,90,178,104,183,239,244,249,241,120,243,168,203,108,228,207,35,176,210,29,72,98,68,84,204,122,36,52,150,214,125,150,96,30,153,162,21,143,204,66,75,7,201,167,181,105,185,78,116,2,37,122,0,25,252,221,227,66,230,6,81,22,50,184,64,155,223,205,52,220,84,138,80,243,238,87,109,130,148,130,161,206,217,165,44,65,112,246,116,230,192,227,247,69,224,126,47,118,186,33,116,171,42,16,42,106,241,233,153,194,37,25,222,208,254,238,191,205,126,156,5,22,86,17,45,124,122,88,236,37,248,152,201,209,197,38,65,185,40,6,125,143,44,118,128,164,174,235,174,175,18,177,80,215,22,57,204,86,32,96,225,101,50,101,40,216,221,80,186,152,176,91,138,178,99,141,179,38,197,23,84,98,252,15,232,99,84,221,7,46,112,150,222,230,150,15,100,216,177,46,254,110,184,221,182,187,9,180,213,199,40,62,74,38,123,169,4,233,177,215,50,230,191,181,49,64,94,153,110,241,51,88,11,72,109,15,185,18,126,3,210,193,246,251,119,26,197,99,61,210,7,138,10,224,53,220,223,38,218,67,88,202,230,122,72,13,178,0,217,87,78,162,12,55,201,235,141,241,
 165,86,65,51,206,141,154,147,230,160,58,89,71,239,117,170,45,232,199,34,3,44,123,154,204,38,133,85,3,117,244,154,154,247,79,167,206,41,193,53,25,150,143,40,20,103,117,77,133,173,184,74,127,32,72,44,58,129,93,68,126,206,11,138,145,46,33,131,81,79,137,138,9,204,54,140,118,154,146,52,222,44,138,234,34,92,17,237,185,66,87,97,166,98,45,229,194,124,162,147,159,21,245,162,251,63,213,21,222,227,210,228,104,190,98,106,251,127,14,225,68,232,166,255,126,172,101,84,230,63,21,63,146,230,230,113,51,173,244,99,175,183,76,143,114,171,60,198,168,58,35,195,232,75,144,188,18,111,15,244,218,146,124,151,2,226,140,10,175,165,81,115,101,65,157,28,156,81,36,126,44,142,13,192,69,209,71,33,179,62,50,176,133,193,245,144,175,104,94,15,77,98,142,41,169,4,129,173,174,133,68,88,115,24,74,69,162,101,169,133,214,129,16,140,149,3,118,253,133,204,148,72,97,207,214,97,149,213,73,123,49,58,61,220,25,147,222,10,105,217,28,32,70,212,210,233,200,1,80,203,157,171,58,120,61,118,172,156,109,13,45,22,111,171,55,4,120,
 91,39,220,218,118,30,130,108,194,48,38,117,1,253,149,28,19,78,239,201,204,53,193,177,97,96,3,88,23,81,244,208,46,248,176,184,171,48,10,2,111,47,86,249,223,36,34,86,165,116,163,97,1,56,237,97,170,233,205,196,177,22,24,52,111,113,225,45,53,119,237,211,171,240,249,140,167,244,203,117,221,124,216,63,26,129,63,225,90,206,52,12,99,72,219,14,249,88,51,220,140,161,178,100,184,115,153,134,187,134,75,61,125,149,135,16,104,24,133,111,225,163,237,168,162,16,125,39,173,44,190,46,202,36,20,252,177,154,40,114,170,147,250,228,165,36,67,252,39,103,112,189,178,119,1,226,54,182,209,16,81,201,151,119,218,3,26,80,251,235,249,184,43,52,211,223,45,38,195,42,143,104,137,140,20,233,66,123,242,112,129,143,1,240,156,214,81,69,6,27,95,217,202,212,103,4,47,162,144,23,83,113,229,9,73,244,150,153,126,242,129,210,66,151,255,177,251,91,59,93,12,157,114,131,110,32,71,15,27,209,155,241,90,233,246,252,114,94,174,203,75,238,4,222,154,10,98,105,107,218,239,94,192,101,196,41,148,69,255,115,124,222,29,241,91,75,35
 ,93,8,175,252,195,234,172,141,126,1,76,250,28,200,176,38,30,234,89,51,90,242,30,112,10,96,108,56,133,153,55,244,43,186,54,147,174,10,21,189,167,46,132,2,251,82,64,31,12,8,100,42,238,251,70,106,57,204,201,210,254,10,225,29,140,93,173,14,232,35,168,115,15,8,102,15,215,181,109,184,95,163,254,28,130,135,71,13,93,76,212,180,234,114,247,111,65,74,213,68,79,124,173,180,108,172,131,193,117,220,186,61,2,181,145,163,254,13,240,20,45,135,234,114,134,69,153,58,132,103,147,67,129,245,108,188,92,40,101,95,123,242,250,133,92,217,92,207,104,205,62,28,21,114,69,250,86,20,37,200,83,169,211,0,44,50,177,191,33,237,229,26,173,208,103,161,102,80,12,55,97,39,172,248,156,243,181,45,96,226,216,35,244,108,15,48,109,32,80,71,225,62,102,230,17,218,13,210,213,184,196,160,46,155,224,188,2,193,194,37,11,93,181,41,250,109,202,60,167,79,7,58,87,151,34,180,17,136,244,249,128,234,220,33,163,49,84,254,57,162,157,136,40,26,35,22,172,75,140,34,131,61,162,206,111,28,106,145,37,247,188,41,157,8,240,169,65,246,61,1
 31,190,32,236,120,76,208,234,136,152,237,239,17,204,255,128,31,37,89,210,33,153,252,230,77,51,67,8,152,143,143,43,114,227,197,130,193,129,32,111,122,26,1,40,146,252,50,244,172,213,214,123,124,191,111,57,35,205,242,181,151,202,120,209,193,244,172,239,62,20,214,241,130,108,181,253,204,50,211,27,4,84,152,132,171,225,182,231,228,205,189,10,147,26,253,144,250,21,183,49,52,60,122,58,237,25,121,36,247,187,89,165,247,40,245,93,138,4,145,223,162,19,33,131,242,24,116,49,57,148,21,122,122,48,192,44,45,30,71,44,3,153,195,216,72,28,150,12,33,18,92,203,195,237,0,8,121,113,162,74,173,85,35,214,244,132,172,187,139,207,179,115,35,50,30,227,86,38,57,87,121,224,183,77,150,72,146,47,96,110,72,43,47,180,37,201,36,136,160,24,198,241,221,183,234,96,108,225,197,132,113,191,207,123,88,76,103,184,209,37,122,176,38,139,119,99,78,247,177,33,35,55,126,51,141,147,22,0,212,31,29,138,55,212,223,170,168,163,62,34,109,5,20,20,111,144,192,31,100,188,4,37,46,63,233,206,135,197,36,168,14,41,84,32,115,240,164,10
 9,102,68,213,245,109,208,171,242,194,60,197,158,2,13,168,155,39,67,228,50,164,43,94,187,218,193,247,118,52,53,164,129,90,2,130,176,251,229,125,69,131,91,212,29,210,58,106,149,239,221,209,190,65,79,122,208,237,244,37,202,155,156,53,221,14,142,168,82,187,93,62,170,227,8,173,200,156,65,142,124,21,43,44,141,80,121,17,70,208,116,211,222,94,73,141,236,176,13,0,65,105,85,179,174,202,20,9,22,171,186,161,230,8,142,216,191,60,186,6,165,78,128,74,13,95,253,95,246,218,75,92,231,97,241,15,210,187,19,223,122,14,117,88,243,119,48,81,70,181,171,97,218,120,171,71,122,195,85,195,180,62,76,177,24,108,188,178,102,219,92,22,125,32,209,183,4,131,173,28,113,9,64,201,103,89,136,131,232,23,132,251,145,93,101,63,41,116,97,157,14,238,176,253,133,233,192,176,32,246,244,201,135,139,72,78,33,31,13,37,156,54,168,249,187,72,208,73,177,143,68,132,35,75,78,176,142,196,68,162,2,156,218,161,165,139,161,132,51,62,25,5,191,234,38,139,113,113,194,7,224,217,255,167,177,121,222,163,176,124,197,95,86,174,171,92,165,
 18,142,110,61,235,72,141,100,238,22,86,66,154,38,85,187,60,87,178,244,70,79,250,39,143,202,64,183,74,168,65,69,76,79,26,81,165,33,12,84,181,187,13,113,109,66,51,156,211,118,0,79,105,18,188,229,29,63,112,27,228,125,184,191,8,110,21,170,231,99,248,165,114,10,243,89,174,247,92,159,199,229,80,170,162,116,152,136,92,105,253,172,125,206,252,192,9,205,211,146,22,235,210,82,53,140,26,33,47,129,220,250,124,140,44,167,81,38,192,238,157,213,104,153,226,19,41,85,114,214,255,236,224,1,201,107,234,83,131,184,206,71,157,74,134,42,120,94,49,135,216,26,186,134,77,27,79,69,220,187,229,251,170,6,26,231,60,64,250,174,153,84,36,226,67,159,250,8,151,216,28,6,148,53,181,126,26,15,111,252,98,62,214,111,246,169,166,122,104,12,98,145,7,223,45,141,179,161,35,42,214,150,15,181,158,164,182,151,104,163,169,125,98,244,21,235,50,53,187,113,75,227,210,95,141,239,39,70,116,208,241,92,46,209,184,111,171,17,41,218,221,192,184,157,53,153,37,44,56,69,38,246,109,251,238,94,43,189,213,2,93,184,224,31,49,202,176,84
 ,247,112,34,14,86,141,154,43,158,106,82,223,199,79,215,230,43,101,215,61,89,76,60,19,104,51,115,253,86,167,201,170,238,50,94,79,22,189,32,134,205,195,11,218,158,192,200,202,155,225,159,227,184,217,51,227,89,151,55,177,158,146,128,9,63,174,87,108,44,110,155,174,35,170,58,95,169,84,177,211,93,67,121,167,31,211,228,239,128,222,25,122,70,203,255,132,123,32,91,123,96,231,73,60,56,70,178,254,231,193,121,56,133,242,156,8,215,6,66,124,91,35,209,144,52,71,234,126,41,250,61,148,155,198,23,33,89,76,183,11,232,64,207,167,218,61,10,137,252,130,107,26,78,133,162,122,113,191,117,12,116,188,225,254,2,156,189,136,154,201,112,13,236,59,22,199,236,121,193,194,213,100,197,119,254,60,142,104,198,150,123,152,236,73,172,92,116,251,214,51,241,209,35,185,251,207,22,229,156,193,121,189,146,200,10,80,105,152,112,136,114,245,23,93,189,17,40,197,189,20,156,190,34,241,155,107,10,155,113,192,88,35,22,99,3,40,166,17,110,64,227,46,38,144,5,50,27,66,180,73,161,19,78,214,43,56,28,245,17,85,222,245,37,203,250,
 170,237,76,105,4,88,120,188,69,248,255,101,13,168,193,251,18,208,17,70,215,159,9,99,233,54,54,110,245,149,174,176,176,21,65,206,140,211,46,229,4,55,98,170,43,38,164,228,100,215,226,138,233,84,144,195,49,222,153,33,190,33,67,64,223,6,45,148,227,228,162,53,85,70,107,151,21,45,15,47,36,5,157,58,240,241,219,174,67,202,248,13,140,139,218,218,170,106,213,53,210,166,176,22,21,101,217,209,68,87,250,155,34,37,134,6,102,181,77,5,5,114,159,63,191,169,160,221,183,84,56,8,241,216,69,226,125,117,95,171,133,56,209,187,241,254,3,217,24,157,212,249,4,145,113,121,168,249,223,224,41,228,85,250,126,225,242,255,95,191,56,202,89,97,123,186,53,78,138,100,58,151,116,252,121,191,132,87,142,230,144,105,197,202,54,184,30,179,145,47,120,98,172,193,156,211,134,120,127,120,5,112,6,74,100,1,211,23,166,197,17,43,197,144,195,243,25,203,131,253,239,13,171,92,84,195,31,240,1,13,143,186,90,191,148,96,236,167,191,133,226,127,7,53,215,146,182,75,36,127,35,119,186,44,131,109,243,104,26,140,78,24,161,241,19,221,73
 ,97,79,231,38,15,54,249,85,164,205,44,252,243,158,144,145,250,106,16,22,23,104,102,113,195,119,66,72,128,185,241,140,18,19,235,65,99,21,225,209,154,242,203,106,244,125,210,217,42,215,122,112,113,232,118,180,27,190,121,18,52,33,45,169,26,181,237,58,180,93,72,65,52,165,20,44,25,34,24,57,122,109,36,18,247,140,215,15,19,221,132,59,68,229,146,220,29,172,159,190,217,77,96,64,52,9,215,193,61,190,41,18,32,213,143,11,145,129,152,99,127,32,239,3,212,88,225,97,7,226,5,56,189,108,252,74,93,99,63,152,167,26,169,26,45,73,68,28,251,37,13,92,126,130,24,252,6,222,21,165,153,77,127,49,67,9,112,162,114,214,22,187,201,247,86,231,243,41,55,8,120,81,129,163,14,48,151,203,23,175,35,164,139,117,210,121,219,255,190,249,106,120,217,14,77,13,203,150,100,221,154,23,87,232,193,31,62,202,205,30,178,18,52,118,151,178,89,249,80,240,105,212,152,127,250,217,229,253,37,22,81,53,26,12,76,162,215,68,171,193,124,146,223,152,110,100,133,142,225,139,99,93,107,220,250,35,242,148,188,134,196,153,107,88,34,53,176,182
 ,200,185,11,189,8,50,222,34,45,54,173,92,14,69,181,108,150,37,178,58,235,137,252,200,116,253,56,177,50,36,203,92,113,98,233,207,196,130,93,106,195,240,95,83,138,68,254,186,123,205,129,198,250,123,144,165,124,16,107,16,25,78,220,192,16,138,192,151,122,114,188,200,38,245,34,186,174,227,32,144,88,177,37,38,78,9,164,84,63,122,192,243,127,228,54,31,128,219,244,123,31,164,206,175,7,14,90,41,223,104,211,252,240,233,239,163,71,82,255,59,168,22,100,200,126,35,192,139,198,127,129,183,229,91,82,108,21,119,253,44,192,89,219,223,244,255,223,75,98,100,44,115,87,36,54,246,213,96,208,67,152,59,96,221,95,252,182,122,55,216,47,154,44,86,245,124,121,229,182,39,61,131,211,237,189,248,71,207,250,32,157,230,43,79,78,156,119,192,235,135,40,212,95,170,28,176,69,157,208,150,24,167,130,205,110,84,130,142,0,159,251,26,238,37,248,9,182,97,118,185,56,74,47,5,9,130,100,209,192,162,65,62,244,174,230,67,154,217,211,179,173,122,252,230,141,81,94,1,124,184,202,42,162,31,103,248,250,104,71,5,164,134,237,158,1
 76,80,144,173,37,32,15,231,126,131,179,160,83,107,14,172,129,209,193,69,150,114,224,235,22,120,203,112,87,199,5,43,219,250,188,127,222,243,41,119,154,93,36,170,176,223,28,22,240,196,45,146,136,62,206,231,10,191,159,13,21,149,231,102,255,130,125,167,182,30,199,25,255,130,55,148,172,47,248,175,153,200,160,94,152,228,28,222,56,246,208,64,108,110,192,210,218,210,147,23,27,170,150,99,83,36,71,23,231,169,208,28,111,68,83,250,114,232,96,101,19,188,26,137,47,232,172,184,154,27,213,61,74,150,170,41,152,34,200,165,116,60,1,47,135,44,243,173,61,130,227,89,76,227,217,73,67,236,109,17,174,251,132,160,16,158,31,11,161,85,77,131,158,0,82,201,230,187,167,209,119,225,72,12,83,122,24,51,81,70,179,232,209,175,191,45,45,48,150,49,52,22,21,92,177,186,163,72,164,212,5,54,240,18,132,189,163,148,147,132,14,102,199,52,9,173,66,6,118,140,217,35,122,246,212,19,15,173,218,146,137,141,8,211,68,196,74,216,123,39,192,93,206,92,204,10,30,32,81,102,166,213,154,112,195,150,7,84,78,137,181,146,217,111,68,3,4,
 62,85,43,247,125,56,138,95,248,45,50,117,248,11,132,10,66,221,226,142,52,113,134,45,129,180,124,166,195,104,143,5,72,100,45,72,118,164,176,123,34,89,212,241,29,53,48,137,34,219,22,172,111,4,79,201,177,86,93,92,12,251,216,227,90,242,171,32,55,174,252,161,94,255,227,213,124,221,193,247,118,17,94,91,164,26,151,67,148,112,30,196,157,196,53,113,239,140,42,67,242,44,98,113,133,30,64,205,204,77,121,247,69,62,230,147,165,96,110,53,49,112,12,93,141,252,158,118,242,133,80,251,161,7,244,168,239,246,233,170,119,197,197,229,187,139,144,70,174,71,27,76,137,130,241,180,171,102,56,125,151,141,51,36,102,26,14,122,187,102,109,201,12,156,255,26,70,245,177,53,26,114,49,87,5,173,33,176,13,114,230,219,135,119,109,96,141,141,17,90,108,36,239,91,52,134,51,164,25,217,199,79,2,81,202,84,239,94,167,164,129,58,82,107,32,58,15,118,151,69,64,167,234,224,96,47,18,178,53,7,216,110,218,234,138,122,11,43,124,79,113,180,72,171,53,222,102,191,182,19,155,205,74,153,82,213,213,73,3,82,130,6,42,139,35,204,81,212,
 254,64,80,249,117,65,103,35,77,102,6,103,137,236,109,231,238,87,243,143,87,39,232,176,47,5,14,234,234,250,187,194,57,208,196,185,139,5,188,128,202,33,69,77,188,13,64,79,48,14,56,170,106,208,226,236,104,155,9,81,173,140,25,129,45,44,138,38,53,40,70,180,136,203,185,0,124,0,101,115,42,114,76,33,56,168,198,74,153,149,229,180,101,109,74,2,49,42,33,8,166,56,78,143,175,85,183,128,181,238,78,33,198,121,67,44,39,11,77,141,156,216,232,129,96,74,215,111,110,99,213,201,147,214,62,45,23,94,153,41,162,118,195,187,66,191,61,161,247,177,205,138,239,110,55,163,226,247,2,82,202,189,118,103,151,90,79,229,45,140,92,105,109,85,115,202,167,208,77,185,71,223,37,30,190,182,202,6,56,47,213,138,134,161,88,157,217,173,70,173,136,159,131,41,113,227,52,141,108,131,156,162,145,55,216,14,55,126,160,74,212,130,19,93,246,241,234,222,134,236,57,231,137,134,21,75,95,38,88,182,116,172,126,64,182,111,196,175,31,125,135,252,25,86,207,184,140,73,73,95,206,227,94,74,23,234,145,25,37,146,232,105,249,25,17,96,49,194
 ,255,231,131,64,203,212,190,110,225,92,108,102,196,231,214,141,110,178,157,210,236,42,30,193,174,90,49,131,172,200,110,8,199,240,214,194,27,189,24,64,83,111,46,225,145,93,245,240,176,244,183,242,112,4,169,128,129,208,153,21,233,173,244,247,244,249,72,155,5,255,101,98,140,194,215,219,183,229,10,127,130,216,227,99,1,22,128,226,203,178,183,53,4,21,94,58,47,55,107,189,251,108,104,23,247,235,31,198,233,40,9,216,75,79,105,130,255,54,81,97,99,248,194,202,27,186,92,132,30,82,36,195,175,229,202,17,199,52,178,73,30,247,178,25,49,188,71,147,151,107,28,63,205,184,98,116,127,72,64,228,4,37,216,155,202,45,255,160,228,96,131,164,169,36,23,130,58,250,48,131,247,80,179,30,65,69,124,147,33,191,56,138,201,42,232,97,162,171,82,110,158,234,234,139,157,139,107,134,239,133,195,2,218,202,88,199,166,140,89,29,110,241,235,140,145,102,96,188,153,33,200,40,202,120,60,255,141,38,130,47,106,3,217,197,167,54,107,120,202,105,7,34,211,2,14,238,251,246,220,237,21,138,232,146,75,204,254,44,150,117,185,36,40,1
 41,149,215,43,231,86,243,225,93,233,167,38,193,248,118,152,42,194,175,139,187,172,111,118,167,225,99,70,226,16,25,249,28,192,224,209,143,106,99,2,122,189,87,241,136,225,158,66,14,135,103,197,205,27,202,218,231,174,128,112,199,243,47,226,130,86,107,218,118,62,97,184,142,245,78,82,67,225,5,255,57,48,50,212,115,108,87,245,20,172,121,16,236,210,91,56,116,22,153,134,119,251,225,43,13,255,253,206,187,3,22,0,113,38,230,79,249,138,140,34,254,72,0,215,205,83,152,10,94,197,38,54,50,244,104,147,132,57,210,57,79,218,20,44,114,223,151,201,251,231,24,80,100,178,112,234,153,153,241,9,32,210,214,106,76,243,206,88,78,213,150,163,59,200,196,184,225,184,104,202,214,191,205,200,94,101,61,208,219,89,160,71,146,173,133,103,125,96,119,153,242,152,129,228,3,205,47,45,45,224,110,130,188,183,43,157,5,117,52,122,36,246,118,181,228,100,76,228,157,181,18,114,178,106,250,164,209,83,68,22,3,12,43,14,124,36,150,221,161,123,153,107,161,14,223,86,27,252,88,246,189,203,120,129,249,173,146,81,174,44,82,139,11,
 201,150,21,250,17,163,222,184,219,87,91,246,179,139,75,59,63,45,244,248,222,20,37,166,122,31,213,107,164,28,173,95,203,144,205,99,220,184,159,54,24,222,189,165,159,200,187,179,77,153,243,72,71,192,55,83,83,152,81,48,233,69,37,8,247,164,94,60,33,44,254,175,177,120,191,233,115,127,97,97,129,231,158,125,43,242,121,106,55,170,102,224,31,218,226,128,152,130,171,24,235,79,34,94,34,222,110,207,198,75,22,99,3,5,210,232,38,107,42,91,196,69,62,244,154,28,76,133,102,143,190,87,143,59,23,130,133,101,169,98,208,157,182,69,120,178,191,198,236,246,205,77,77,11,78,25,29,168,81,26,5,245,238,178,189,230,103,28,39,86,170,78,204,183,139,106,166,125,210,154,128,55,69,236,241,20,88,214,248,191,41,107,71,140,65,128,141,230,9,94,109,20,125,69,77,23,7,236,95,98,222,218,37,147,182,217,96,105,223,161,122,113,152,42,14,79,183,31,254,234,146,204,106,118,99,78,52,158,198,104,134,221,70,49,241,71,84,107,3,207,116,7,169,188,164,46,147,208,112,41,34,168,184,250,11,24,107,52,48,169,251,251,247,30,100,35,204,
 214,109,114,179,44,92,3,58,244,8,145,166,64,217,144,38,30,52,2,156,244,188,25,112,11,215,63,21,116,22,115,86,113,78,184,228,69,16,129,224,180,205,218,26,224,74,216,198,51,255,81,170,44,79,126,139,254,12,180,184,3,67,219,54,14,39,154,186,66,234,27,59,205,248,9,92,127,66,184,43,32,245,177,185,173,206,240,85,148,250,131,108,178,175,80,216,136,29,246,158,128,236,218,188,126,161,144,122,10,231,178,111,116,170,192,151,181,92,188,27,65,73,54,3,56,168,139,132,11,103,98,121,240,128,117,167,169,104,0,195,9,114,248,220,195,123,4,51,142,75,31,101,234,255,98,141,158,21,47,42,44,64,135,145,186,102,51,108,140,39,16,69,207,151,46,133,244,222,175,118,21,40,97,110,177,80,132,67,198,186,52,30,52,63,135,249,177,112,169,20,190,43,105,246,52,165,106,191,234,155,175,101,24,113,64,252,251,95,84,118,162,20,53,219,245,238,113,218,132,183,152,210,137,170,108,127,110,124,198,54,96,60,136,0,211,236,111,254,205,136,98,162,209,234,173,237,220,133,28,172,146,190,208,76,247,37,7,213,71,184,48,8,130,170,52,1
 34,10,74,174,87,61,255,217,27,249,101,254,81,218,87,68,68,247,233,109,58,114,84,46,4,212,97,163,87,148,179,161,4,245,18,39,101,10,130,156,250,174,40,87,92,72,156,252,167,159,198,193,170,126,236,12,5,210,107,233,201,179,197,137,134,205,221,50,169,255,4,216,254,4,64,198,157,155,221,152,140,61,77,182,176,10,50,254,84,65,161,88,114,148,208,122,226,240,212,178,26,183,41,95,144,3,28,180,132,228,134,187,218,91,107,185,164,226,99,59,20,233,136,92,73,221,20,125,44,153,202,42,106,245,89,197,184,28,26,4,196,83,30,239,142,138,144,169,155,230,236,236,53,182,81,202,152,229,151,72,75,49,29,0,104,224,21,116,158,234,215,240,112,91,241,216,157,99,198,68,124,54,162,92,79,167,204,197,96,71,160,199,235,93,52,46,151,71,65,97,224,156,133,134,244,241,108,18,151,126,134,227,137,97,147,15,125,84,166,9,234,136,233,216,189,225,102,130,133,239,224,50,141,236,89,187,131,105,242,121,170,150,87,127,179,125,52,114,163,38,81,112,160,198,220,169,12,65,70,216,84,134,236,186,80,101,194,130,126,29,101,115,102,45
 ,92,55,20,121,186,135,101,10,36,203,108,165,150,39,14,135,163,15,88,207,202,23,128,181,24,202,39,136,239,77,248,242,194,234,203,248,82,69,191,232,155,47,242,98,64,211,243,234,196,45,147,64,203,33,221,118,0,90,242,182,208,92,22,239,217,5,54,77,62,71,218,52,139,107,105,154,42,152,91,64,155,35,131,66,7,179,42,145,144,6,40,63,117,175,14,13,226,121,253,9,151,23,93,10,187,90,224,135,123,56,193,142,79,34,36,68,24,52,169,129,35,195,254,61,157,30,202,43,168,254,13,188,76,209,176,116,207,14,217,111,106,210,202,97,92,97,77,128,98,11,182,153,177,175,30,120,77,92,6,183,148,166,185,169,176,105,176,236,90,56,149,161,122,15,158,228,118,50,140,138,209,75,246,105,97,41,68,125,83,56,195,21,196,110,156,37,122,103,76,12,58,248,128,137,254,193,156,20,208,137,111,78,210,116,231,163,123,229,220,12,16,42,183,124,123,106,102,249,197,124,106,97,125,157,188,200,224,134,148,46,213,95,74,73,23,247,146,185,83,133,82,195,132,33,59,98,8,211,190,49,170,125,200,54,27,184,49,75,205,106,43,33,148,202,60,13,221,
 145,55,151,180,82,159,181,194,147,22,48,231,90,60,71,146,242,222,185,204,49,16,39,251,87,30,74,5,216,99,99,153,219,247,244,199,80,72,224,205,16,185,130,116,20,52,127,64,213,191,186,63,3,174,194,171,37,126,47,185,7,65,248,169,182,237,155,175,3,6,237,137,242,173,150,139,148,7,118,105,27,190,55,110,75,225,194,68,40,177,126,131,14,247,64,77,172,16,255,103,88,87,111,197,196,124,130,28,176,207,191,34,217,121,24,52,204,167,210,244,226,96,206,180,207,144,37,117,124,180,208,80,205,172,146,123,255,73,71,235,140,60,231,26,245,200,7,182,42,147,88,36,28,180,145,88,219,118,203,4,100,82,23,212,196,255,251,168,108,190,172,225,158,48,171,153,4,37,186,40,168,183,209,23,161,48,122,201,254,208,244,136,55,133,126,195,249,155,17,81,11,255,4,247,184,174,105,44,58,226,252,68,245,75,202,175,177,86,86,35,205,26,242,137,12,68,223,210,232,235,187,116,116,111,52,59,237,86,244,248,69,129,62,15,107,21,195,11,200,189,201,255,68,8,206,138,108,57,129,223,178,37,210,238,42,138,58,156,43,240,114,25,96,106,168,
 30,89,165,197,205,74,6,188,197,0,100,23,146,253,185,6,62,146,128,57,78,224,110,113,121,211,137,207,111,159,157,34,253,26,114,142,97,6,191,139,236,7,173,66,200,175,113,166,59,79,152,217,40,38,67,157,221,195,235,204,142,21,247,187,26,14,19,226,18,44,61,182,91,119,190,69,81,159,211,236,216,159,178,43,75,219,178,139,117,119,211,212,132,253,13,77,35,183,27,206,241,192,172,20,247,80,35,83,100,206,243,32,85,120,87,52,164,55,135,63,238,185,170,84,254,246,203,84,52,217,120,131,39,179,203,77,166,83,103,25,182,178,233,170,207,245,254,221,121,66,5,0,46,30,14,42,66,185,217,75,70,222,249,17,212,104,247,193,212,13,14,7,166,255,254,42,224,100,88,16,160,80,169,63,225,19,173,48,121,101,224,38,18,235,158,199,120,255,97,254,218,243,196,248,64,106,18,189,6,172,182,51,89,230,123,68,161,75,66,130,162,140,122,26,112,247,211,193,163,218,101,96,240,18,85,236,190,72,240,168,70,111,234,154,30,37,26,62,144,217,211,68,134,135,232,168,140,129,22,13,35,187,68,139,111,44,48,106,19,70,233,162,254,5,13,58,54,
 253,91,47,125,89,251,167,150,109,167,253,14,84,221,27,53,41,61,167,86,248,138,29,108,224,223,98,42,77,1,70,73,70,122,253,138,62,235,226,241,146,165,189,77,41,245,238,75,30,193,197,107,249,149,38,171,128,14,142,44,89,78,234,119,1,154,143,248,4,217,68,183,255,121,180,51,219,87,210,209,223,220,131,124,127,42,233,53,151,34,39,39,149,66,4,198,17,179,19,244,171,175,152,115,102,7,13,236,160,24,254,49,238,7,181,200,207,171,213,46,236,199,229,231,41,189,136,159,203,154,190,242,75,227,217,15,189,128,102,168,181,255,195,236,217,193,57,8,79,104,19,183,215,1,104,22,161,106,180,91,186,149,171,60,123,200,54,204,29,145,242,90,115,244,59,131,70,57,1,0,149,124,238,18,228,118,53,146,10,70,112,234,17,113,253,217,166,84,201,165,29,5,68,112,190,55,55,96,137,91,194,124,188,90,195,173,119,53,97,236,137,36,160,249,29,55,158,5,157,23,102,231,65,65,60,22,173,34,205,85,12,16,32,224,100,217,100,4,218,143,122,155,24,126,136,247,5,25,252,152,211,92,46,45,23,165,179,247,85,178,119,130,223,222,87,236,128,17
 7,157,139,30,123,133,43,11,50,108,196,120,233,21,24,11,157,116,241,40,49,132,59,249,209,160,26,134,103,164,73,242,187,56,249,58,240,124,138,169,203,5,161,201,152,147,71,101,124,39,95,162,184,170,82,90,55,89,169,79,95,39,98,188,114,181,71,153,131,175,53,142,84,193,64,28,105,47,252,205,240,176,30,249,219,112,8,30,249,29,70,127,39,181,242,208,162,216,137,11,196,47,183,164,212,147,242,211,66,25,26,229,50,44,230,234,33,134,22,151,173,149,254,13,181,19,63,208,11,150,34,129,212,59,136,106,122,48,229,152,236,244,105,141,147,153,63,7,252,187,162,112,160,174,177,222,223,25,46,151,205,243,203,100,136,106,253,250,64,169,238,42,91,118,238,245,44,235,11,38,118,155,59,247,151,252,242,226,166,151,65,120,213,158,116,147,137,114,11,133,141,118,13,148,85,7,98,135,251,170,247,146,146,115,44,8,199,15,111,123,0,46,204,176,28,248,246,239,158,239,36,12,255,41,187,243,96,63,106,62,254,98,40,217,62,69,130,222,184,195,220,255,6,86,234,213,173,115,250,104,77,96,164,21,83,3,201,7,108,72,22,126,2,202,253
 ,12,160,80,171,118,154,159,136,114,253,124,5,220,244,137,141,115,244,40,59,208,168,107,213,195,145,173,88,73,236,104,144,199,38,104,0,41,102,142,158,166,192,140,127,227,139,13,17,0,132,190,206,47,134,191,162,142,176,65,46,82,8,52,129,252,226,231,180,91,66,32,71,169,160,38,51,145,121,94,111,21,11,203,143,102,213,51,168,148,194,96,234,142,28,158,63,119,152,39,253,241,118,113,99,120,241,232,176,132,181,200,135,157,192,209,199,136,105,152,142,118,80,227,20,201,91,2,236,189,65,188,122,32,70,73,53,31,98,64,220,74,48,180,21,4,70,25,45,228,174,69,202,106,32,14,75,136,12,192,219,228,68,190,162,119,170,247,238,68,87,52,182,172,1,39,242,137,27,201,241,175,86,167,169,170,79,99,232,201,36,59,139,147,61,75,209,175,35,182,253,29,41,240,129,188,47,151,112,153,137,152,249,133,0,99,238,50,20,112,19,209,65,225,27,62,245,210,168,152,244,49,119,65,17,216,124,132,158,249,198,87,191,190,158,90,23,99,187,13,39,35,250,219,238,199,51,138,85,147,150,79,119,151,219,249,187,143,179,201,65,196,217,20,28,
 30,190,109,15,242,0,180,205,81,171,98,243,37,41,64,217,27,138,216,43,95,64,65,218,129,155,81,88,196,175,3,40,154,75,4,139,214,183,78,56,125,64,32,199,37,191,76,33,138,23,33,202,82,132,210,191,232,158,205,113,26,238,26,57,75,68,204,78,199,47,218,9,249,60,76,38,119,98,243,178,180,36,203,218,0,223,187,243,70,118,226,72,161,190,202,147,254,80,169,36,7,250,3,223,98,231,209,78,232,7,127,75,150,236,35,105,51,62,44,110,43,34,199,51,42,250,62,38,78,183,232,160,126,227,46,135,56,246,171,38,83,19,233,32,126,60,225,38,244,117,254,104,50,139,92,211,239,209,42,121,118,182,161,255,183,137,132,15,57,54,165,28,104,202,166,204,204,6,49,224,82,190,196,131,84,207,147,181,77,97,102,71,212,155,157,134,43,208,101,230,207,218,239,57,194,165,170,214,23,153,42,72,223,216,254,187,80,28,246,118,44,221,237,85,239,22,18,167,0,133,169,225,113,104,147,67,3,86,173,164,210,216,156,133,55,6,112,170,27,14,72,242,74,81,188,225,31,220,71,4,8,173,217,156,157,103,98,232,16,251,147,145,88,56,45,165,232,80,103,30,13
 0,169,45,194,37,164,3,178,36,83,173,206,130,242,122,81,79,178,60,218,247,66,126,245,144,129,80,61,29,164,146,155,183,110,68,63,93,233,32,0,177,21,227,217,85,148,28,221,36,54,157,108,150,191,163,164,249,81,63,239,35,187,171,54,103,7,162,143,235,152,91,88,170,146,126,113,228,110,36,177,15,155,132,241,202,184,7,116,124,22,119,243,206,143,107,182,140,72,82,47,130,46,150,204,198,110,12,246,112,42,175,209,27,245,251,235,65,48,39,107,153,249,48,229,110,79,91,121,47,52,210,243,250,48,61,2,36,176,111,143,4,235,184,110,32,138,128,230,53,203,96,29,17,169,165,187,32,155,48,244,225,127,143,140,215,15,103,218,124,9,166,152,225,138,69,87,208,226,108,8,36,156,172,249,253,166,214,99,213,101,250,57,112,210,170,171,74,130,130,77,253,138,251,115,135,124,182,213,158,174,199,141,58,201,102,76,220,183,95,162,1,44,2,3,206,83,36,245,117,119,169,15,162,194,5,197,116,132,235,163,28,179,67,135,179,197,92,102,49,40,158,74,241,215,76,255,167,146,158,149,30,186,34,213,142,15,255,241,34,215,216,130,109,92,
 48,115,139,162,159,135,64,224,38,6,133,58,231,104,69,78,84,203,221,129,72,235,208,134,245,46,197,102,78,114,166,144,141,244,122,138,95,208,31,42,203,162,225,83,107,144,144,6,201,125,212,232,92,215,134,22,108,240,179,40,227,160,138,136,181,188,59,189,193,24,148,71,120,228,113,57,160,254,197,158,34,158,196,76,255,86,209,91,89,103,181,238,128,164,44,156,143,21,30,68,208,32,0,83,9,229,52,58,232,190,52,120,172,188,22,55,29,234,126,178,92,248,114,74,69,89,19,65,119,157,59,111,249,249,250,93,196,251,72,253,194,196,78,195,17,247,45,210,198,151,219,152,225,243,188,184,180,26,76,57,64,130,203,250,193,226,131,143,199,0,9,9,51,121,31,144,73,72,100,83,149,128,39,12,247,229,20,144,46,118,60,166,28,180,124,162,161,94,211,123,217,48,53,78,224,173,84,16,207,190,249,109,165,143,167,166,54,234,122,185,74,84,243,210,241,48,199,200,48,122,113,170,36,156,48,211,10,60,20,86,43,0,123,191,22,253,212,121,0,105,25,242,135,142,215,227,223,6,237,26,130,241,75,234,250,31,169,217,215,10,39,51,110,131,100,
 14,242,106,9,89,144,44,163,180,128,220,180,132,107,128,41,187,161,183,23,157,234,86,29,241,114,99,219,102,25,142,145,33,88,171,138,108,70,11,69,78,180,2,236,187,151,224,203,59,174,131,37,188,160,244,126,200,213,184,54,24,196,148,77,18,247,21,206,151,92,163,112,140,254,194,73,90,101,247,150,138,62,49,33,24,4,250,10,174,17,253,117,121,101,63,154,109,143,73,219,138,81,163,251,144,106,1,183,78,175,207,234,214,156,196,173,143,49,140,116,149,30,7,209,52,189,122,184,148,96,107,187,230,93,195,12,24,181,94,254,199,76,223,203,201,223,66,121,38,149,252,84,80,19,133,117,172,47,198,145,110,181,238,14,207,132,218,60,108,193,228,11,194,202,87,1,97,123,50,144,23,158,223,81,201,219,182,79,131,123,148,178,221,69,133,34,22,35,58,111,25,19,166,28,46,141,231,22,6,150,115,217,50,75,108,23,163,69,190,219,28,104,73,3,120,31,191,143,116,60,210,104,183,36,150,166,182,124,155,30,160,225,240,219,29,71,98,78,206,185,120,139,55,83,211,170,136,88,17,220,55,209,164,70,21,36,9,104,63,57,253,184,199,113,51,2
 1,99,216,73,87,180,59,60,71,235,76,168,185,185,201,249,40,82,60,162,107,98,187,252,178,109,232,208,89,128,115,8,69,75,172,115,193,107,235,151,201,193,124,221,88,133,147,171,199,216,132,104,155,246,101,101,11,234,150,104,170,187,23,99,181,132,205,238,243,227,249,168,139,127,43,237,212,187,255,134,14,0,54,140,192,100,95,209,49,30,85,188,246,37,86,31,23,193,45,41,211,177,173,175,211,10,78,190,102,154,137,172,111,235,137,150,116,52,252,83,244,99,27,68,83,254,25,216,156,173,26,16,160,42,28,124,230,157,180,94,185,74,165,245,18,14,12,203,163,66,224,176,125,164,239,54,39,133,153,151,16,161,232,60,164,66,0,173,146,104,148,123,90,158,177,158,166,168,228,232,151,66,157,36,127,143,206,205,202,0,176,187,28,101,209,60,248,158,253,143,30,178,38,171,96,199,240,169,227,84,171,193,204,63,168,114,249,54,36,124,68,151,173,2,12,22,20,114,103,143,167,177,253,133,152,125,61,116,35,96,213,135,180,184,87,114,46,206,99,166,24,156,176,152,27,129,3,133,83,188,119,117,118,172,121,246,115,199,70,28,24,69
 ,110,74,52,165,170,159,193,15,6,114,214,30,20,93,19,179,210,199,178,255,23,65,98,20,10,12,79,238,58,59,149,87,210,91,169,48,69,194,54,56,70,85,172,156,147,190,115,170,213,76,41,112,120,96,237,116,177,31,26,129,146,176,174,60,124,152,207,21,241,173,69,7,114,99,110,64,9,233,189,10,170,250,242,84,14,195,207,119,212,233,102,195,126,140,207,158,148,64,105,98,171,201,201,35,154,47,34,130,144,172,97,157,99,122,252,207,174,255,222,117,25,30,181,60,167,156,166,26,158,105,131,211,46,204,15,241,167,93,177,152,89,21,76,234,0,91,32,157,235,68,13,207,84,128,27,176,96,112,115,69,240,16,228,246,2,250,147,199,61,167,80,138,249,73,200,176,159,100,109,55,81,191,203,92,200,224,153,10,174,210,30,238,134,239,108,34,198,19,255,77,230,141,168,107,58,151,128,191,192,126,89,174,108,24,238,164,32,101,159,12,38,177,131,151,125,178,29,233,225,163,80,194,180,45,195,26,111,49,62,119,230,103,15,118,244,208,154,64,141,151,177,206,83,170,8,242,51,239,126,103,21,190,8,231,191,178,81,19,45,52,164,61,166,97,116
 ,18,15,105,15,34,167,10,130,206,179,126,77,43,138,53,73,198,237,16,119,35,184,125,163,150,147,41,253,210,217,88,5,62,105,102,216,172,97,69,93,87,22,27,5,251,189,133,2,7,48,122,54,36,44,89,188,111,166,188,178,254,90,4,209,185,239,249,44,155,140,196,107,230,109,52,150,17,33,203,25,103,27,228,72,53,50,212,7,122,190,127,157,203,13,131,88,118,80,249,93,64,71,97,212,233,216,116,190,145,245,30,163,3,31,192,197,161,212,83,188,93,231,226,22,67,93,15,97,214,251,141,121,146,13,85,222,112,62,35,232,196,32,96,50,161,108,34,175,135,105,98,63,166,202,235,12,207,73,25,8,5,15,185,119,34,182,169,207,68,38,199,167,56,113,73,95,64,171,5,199,249,198,92,226,10,154,143,62,147,20,254,65,218,14,207,81,249,106,98,105,2,13,206,52,16,32,103,200,94,142,31,71,108,121,10,23,91,149,9,184,132,148,143,87,102,167,45,70,71,191,136,130,21,60,242,137,226,201,189,246,133,214,130,186,157,106,222,70,194,8,95,175,16,108,68,126,188,86,215,175,61,105,209,136,95,199,239,142,186,226,151,17,121,141,77,2,41,229,252,135,16
 0,157,44,43,74,10,77,3,162,95,70,60,27,201,164,44,54,79,23,117,56,190,45,110,220,235,161,207,207,66,36,109,247,123,154,67,158,4,221,190,207,13,27,56,22,140,31,240,68,7,194,70,18,236,4,21,28,101,54,65,206,51,151,47,225,179,10,80,56,30,124,143,213,2,45,243,30,113,54,217,180,35,61,186,9,179,75,157,69,153,149,69,115,202,226,131,240,17,23,207,196,222,25,237,215,24,196,171,184,53,111,85,79,3,100,201,111,6,8,34,49,200,107,209,184,235,108,246,215,212,138,180,45,196,145,40,211,82,174,190,61,207,125,103,18,53,78,48,79,250,156,236,194,69,89,121,31,153,91,128,157,75,180,249,51,129,57,43,169,92,108,117,57,112,216,125,209,17,20,152,100,157,38,249,250,36,51,220,8,108,215,12,53,216,32,243,254,228,200,187,169,226,100,179,94,208,46,120,37,158,160,227,134,116,64,58,48,134,48,246,48,129,30,149,34,171,75,53,41,16,56,45,164,133,182,129,135,176,78,194,113,19,186,24,235,223,128,101,178,147,117,161,10,32,160,248,75,51,233,70,188,19,147,31,77,23,177,29,11,121,30,117,205,147,137,87,232,130,236,141,68,
 128,38,89,26,210,47,142,227,145,177,151,152,144,135,115,227,10,57,104,248,154,104,155,223,23,252,246,40,213,206,49,30,7,159,186,229,172,38,89,210,101,125,51,105,69,169,187,254,35,36,28,144,249,251,73,16,199,100,238,178,93,106,50,137,168,191,59,152,143,107,124,195,188,118,206,88,83,207,7,116,91,11,48,101,47,105,113,245,255,212,232,30,7,153,191,243,24,94,127,24,54,9,20,121,27,52,83,254,93,240,41,232,123,220,175,31,208,170,243,183,92,175,94,123,160,54,221,158,227,179,73,230,170,168,227,123,125,140,116,9,238,221,56,175,217,117,229,59,69,151,202,85,185,252,101,208,217,79,143,61,18,106,160,57,33,64,193,252,122,167,91,128,131,93,186,59,69,37,173,25,135,251,58,209,126,122,118,214,175,166,97,249,222,146,148,139,188,231,243,79,166,193,27,31,132,185,211,220,160,130,51,248,232,90,171,9,15,103,195,242,206,74,72,249,37,231,15,75,200,56,58,139,182,156,137,181,230,36,176,159,101,176,213,102,227,47,83,199,40,150,140,158,217,119,180,113,234,77,203,59,139,213,102,8,66,22,181,29,89,76,241,119,2
 06,24,133,204,236,84,93,114,96,78,28,144,182,90,11,22,140,152,53,53,1,3,200,124,201,31,72,104,127,128,184,22,248,167,162,124,161,138,246,135,33,42,221,82,144,28,89,154,78,206,223,50,76,15,213,90,173,232,152,94,161,250,194,107,17,0,135,116,113,123,240,222,166,238,113,153,89,224,119,77,231,166,12,57,127,128,209,220,15,72,182,244,218,8,14,246,173,103,218,253,76,90,126,63,31,83,248,107,90,143,200,132,207,141,175,213,96,151,245,198,174,130,229,120,20,104,250,54,116,75,203,21,78,156,157,215,143,0,236,193,133,85,41,119,145,178,191,185,5,160,216,53,221,175,137,171,226,85,135,77,170,120,66,157,251,141,236,251,37,210,192,127,0,138,202,251,77,27,16,68,107,183,122,148,212,217,192,198,126,243,93,204,81,225,96,205,157,98,202,230,168,212,121,73,133,143,87,30,65,4,139,213,24,226,98,22,35,60,202,142,14,199,16,57,106,41,183,115,156,242,156,232,19,31,89,120,2,17,146,50,157,168,135,50,34,11,137,201,239,218,49,75,131,233,195,4,236,153,223,253,222,94,202,206,146,163,157,180,139,86,166,94,222,160,
 188,220,79,55,181,190,21,49,107,103,221,131,194,142,78,252,184,207,231,87,209,34,194,61,147,133,159,247,60,55,48,241,201,185,218,175,185,182,203,61,70,89,157,226,30,161,51,61,116,156,138,62,236,110,97,242,119,248,43,168,8,91,110,4,52,166,0,1,250,87,46,252,120,197,27,241,195,79,232,240,99,61,42,221,153,101,217,184,191,51,192,51,151,20,93,53,21,71,42,247,165,109,184,16,124,111,129,223,89,215,64,55,249,120,152,167,150,169,159,93,182,144,190,102,158,70,163,52,160,133,147,33,158,147,246,28,32,38,141,21,229,246,58,145,75,235,245,53,21,13,32,229,63,181,131,226,143,229,220,249,152,229,187,52,162,123,92,20,106,211,54,66,92,186,206,28,184,190,212,249,16,208,25,220,92,122,147,193,104,113,225,24,214,52,74,20,228,65,204,2,188,158,248,243,127,123,113,116,131,15,196,251,199,224,225,5,205,6,138,168,12,179,92,204,105,19,254,137,122,215,56,137,250,252,122,186,193,231,253,107,71,124,29,153,127,159,233,147,78,109,191,26,88,76,248,31,183,109,160,124,245,109,200,197,150,112,143,151,45,239,58,24,6
 3,13,42,231,0,137,193,30,217,38,58,230,102,103,120,168,215,231,175,219,6,188,167,38,30,50,250,128,58,120,114,167,212,240,139,115,86,244,107,93,94,100,205,137,171,31,108,221,119,24,180,68,30,241,254,133,65,2,222,49,197,115,71,202,170,107,40,150,212,192,202,34,81,1,84,133,109,144,210,175,72,61,243,30,254,112,179,218,189,15,254,107,95,165,83,46,148,75,72,68,215,79,83,53,71,66,176,97,59,124,66,103,120,246,107,6,253,5,70,19,192,81,160,121,108,75,39,223,13,21,234,8,118,221,228,145,181,48,157,220,60,52,24,34,37,77,216,182,94,82,232,160,187,239,246,153,8,211,221,46,61,131,67,83,205,53,245,209,190,27,7,159,142,82,114,18,213,140,32,80,121,181,146,81,25,172,108,29,44,255,111,182,7,161,238,136,44,200,67,40,129,88,36,156,19,122,76,66,151,61,211,182,61,172,148,98,130,38,71,247,220,30,178,168,168,50,49,142,44,182,67,50,233,101,27,53,67,44,191,24,145,7,42,20,227,132,64,83,127,233,92,224,31,108,59,37,230,253,207,42,235,145,104,179,137,149,157,153,64,167,121,149,121,80,156,95,93,128,221,52,18
 ,241,92,82,234,175,169,90,42,87,51,84,130,205,114,45,102,195,45,31,184,12,184,248,202,147,211,71,221,242,228,34,65,16,107,102,0,125,118,162,133,81,184,182,113,238,193,53,59,192,194,249,86,208,255,162,28,38,141,39,109,70,171,163,175,217,80,208,32,42,134,175,216,56,135,70,168,107,5,4,196,61,206,249,96,217,174,187,97,34,238,195,133,62,115,238,99,240,166,62,77,241,169,205,53,246,181,175,203,98,152,178,240,87,127,235,122,104,137,2,115,183,72,111,199,144,164,98,239,26,193,69,225,138,225,251,203,42,189,57,82,183,41,42,23,46,197,32,193,213,78,66,9,166,145,161,59,25,187,248,196,132,235,88,161,242,51,171,12,119,247,218,48,19,243,84,239,35,152,223,13,132,159,214,30,36,138,104,120,218,224,30,16,229,117,91,102,163,59,159,2,112,57,213,182,143,175,72,49,26,197,183,148,244,197,96,33,200,71,234,140,237,19,111,79,79,25,195,200,56,203,251,114,244,245,199,37,41,43,249,225,88,152,174,70,90,246,129,80,137,216,209,31,44,254,151,97,6,12,242,195,56,190,9,181,228,79,171,147,141,43,0,76,242,238,228,5,
 123,5,26,2,163,114,27,119,197,169,209,9,215,241,249,146,118,103,243,106,39,223,75,118,174,204,140,20,101,91,177,106,6,76,148,218,63,212,137,170,83,245,38,49,108,12,23,167,85,73,191,39,233,110,10,77,231,40,61,126,87,93,175,17,9,102,213,211,236,2,46,19,80,32,227,171,82,8,43,38,103,20,94,223,91,225,193,246,198,8,189,22,64,179,228,237,193,232,90,18,137,152,74,19,46,189,4,18,208,149,55,125,193,174,213,192,250,14,160,117,197,130,113,122,5,234,123,234,9,180,184,85,135,249,12,80,104,176,137,201,78,25,196,90,187,63,31,81,253,136,242,106,122,105,115,116,46,205,126,26,102,41,233,200,94,184,102,217,28,87,223,201,95,113,13,77,174,218,3,88,205,63,173,183,142,2,74,38,126,27,188,58,198,192,120,24,6,229,138,186,51,94,41,32,147,114,192,163,25,170,12,67,173,88,136,122,92,25,194,222,56,172,163,46,115,99,78,182,128,164,238,119,208,42,29,206,140,102,151,25,113,6,126,81,208,95,210,210,132,236,37,5,245,85,99,187,186,239,115,252,1,174,216,9,37,107,234,213,91,28,107,196,35,255,179,78,176,106,66,14,80
 ,124,79,109,185,207,82,60,5,208,121,47,58,151,26,237,239,186,107,67,68,25,159,77,77,51,81,206,113,22,216,78,135,105,2,222,119,21,153,174,30,217,41,249,20,4,158,16,221,61,6,124,211,174,25,55,182,120,158,88,6,214,39,222,76,215,10,108,66,168,48,44,28,170,110,154,250,77,18,2,123,231,165,150,25,116,210,145,219,255,133,1,219,82,157,20,58,247,179,232,250,143,179,71,56,170,151,141,211,41,177,86,224,17,117,36,35,38,170,188,181,199,154,47,45,119,215,8,159,58,58,215,166,112,3,62,178,14,24,4,58,170,66,67,7,223,90,184,129,50,187,83,220,12,147,11,38,110,35,181,133,136,141,181,187,216,152,97,141,198,50,4,176,40,96,203,120,86,24,197,95,112,122,80,212,197,199,70,223,107,147,170,225,112,149,49,103,129,173,137,22,195,60,223,63,206,22,134,13,128,10,152,154,213,185,141,74,61,68,110,83,181,195,148,225,121,196,249,7,70,62,242,131,51,95,27,85,97,38,43,117,134,253,206,176,17,192,163,80,247,70,50,173,192,239,208,84,165,108,163,109,117,227,192,56,141,4,169,54,41,249,0,212,45,165,70,245,58,191,10,218,4
 ,112,65,8,27,129,216,244,90,178,255,182,255,29,186,158,152,70,9,186,55,79,70,23,207,61,196,43,224,218,1,92,129,25,104,59,118,251,66,54,131,180,117,111,89,114,119,33,63,55,167,228,160,20,243,110,230,153,32,226,8,12,63,203,142,99,121,72,73,80,120,45,175,69,156,82,128,40,51,59,32,62,229,73,15,62,92,17,95,47,206,194,242,29,58,127,230,230,128,120,170,188,102,122,17,64,112,135,170,171,59,253,224,28,223,64,252,68,118,23,40,39,97,213,41,107,48,46,224,93,188,190,21,167,73,234,49,49,141,198,45,43,165,208,72,133,142,104,180,225,155,236,142,40,141,55,147,159,250,102,199,214,141,168,119,24,246,9,144,129,33,232,249,18,149,117,122,221,233,156,253,112,161,187,120,228,97,118,192,245,154,174,239,236,190,251,57,222,113,243,95,216,200,162,20,251,224,4,111,253,243,214,82,126,185,120,92,95,228,51,141,208,177,217,84,216,116,93,200,19,180,102,14,11,138,79,196,97,214,179,175,205,231,48,66,198,76,245,226,177,108,41,17,215,89,60,110,96,247,223,9,66,169,246,78,130,163,161,53,104,5,174,32,186,158,159,51
 ,200,98,75,50,61,226,20,240,248,240,238,58,104,134,99,51,249,48,23,92,171,42,60,225,36,220,32,5,189,226,188,187,245,194,245,159,29,82,174,130,217,30,31,43,44,36,166,59,126,223,29,254,98,140,42,69,189,120,236,8,209,40,203,81,120,105,213,171,202,103,61,80,208,141,130,213,42,14,215,145,245,90,94,239,114,51,228,246,54,208,96,221,35,203,206,219,12,189,227,96,195,34,148,99,57,84,68,241,65,22,6,200,79,152,54,236,124,168,72,154,34,139,72,10,237,28,191,107,135,222,236,145,233,106,124,24,42,166,38,135,248,131,25,138,123,134,92,69,47,177,129,60,9,51,208,55,178,111,15,220,192,51,9,10,223,59,71,9,5,151,209,247,25,29,52,251,67,242,251,238,146,107,37,6,41,222,201,193,228,165,70,174,179,60,128,51,209,194,51,246,240,237,200,33,158,42,198,36,98,31,215,141,56,201,151,149,41,240,187,50,68,108,224,93,88,27,203,88,160,207,243,1,251,127,85,160,196,244,63,215,155,197,45,3,8,16,100,190,20,142,123,231,173,58,249,147,134,178,16,71,186,86,127,53,239,216,44,102,122,178,24,128,95,87,147,74,193,23,139,29,
 97,214,191,39,106,61,190,93,248,219,228,179,36,91,38,84,193,142,171,28,236,80,62,16,203,78,125,2,66,58,224,9,247,47,11,126,105,117,171,153,53,110,233,36,136,225,252,38,64,43,230,0,191,75,74,4,206,145,198,105,159,29,241,38,104,163,33,242,95,216,179,152,62,147,255,69,205,143,165,85,192,44,54,235,86,132,115,183,57,18,246,212,30,145,165,235,90,99,153,179,17,45,89,39,74,234,202,175,248,169,188,239,119,243,32,245,228,229,138,26,249,210,229,6,101,122,53,64,35,92,42,216,115,103,172,49,7,113,250,27,201,33,210,192,238,46,219,141,194,245,55,183,154,97,14,9,20,157,193,24,53,50,131,136,123,245,202,147,91,97,165,148,156,246,17,135,53,221,29,63,253,204,228,144,8,134,247,45,101,146,77,154,10,66,56,59,75,203,25,66,55,215,147,255,48,124,235,143,79,246,86,255,163,224,133,230,192,84,40,197,125,116,70,253,2,164,99,71,23,147,9,254,119,87,170,78,34,210,207,58,9,230,223,157,225,160,150,169,215,197,197,47,116,212,136,74,64,248,212,51,142,119,116,146,74,40,40,110,25,249,118,61,245,71,12,50,33,123,243
 ,169,13,168,252,180,211,176,95,27,20,245,198,20,42,16,17,102,232,140,96,118,51,170,143,122,6,97,245,241,155,247,193,146,66,206,29,113,158,164,1,205,102,253,36,171,205,197,191,165,166,41,156,191,208,215,34,63,42,94,210,54,170,29,223,134,126,245,180,184,40,20,174,224,111,223,15,106,130,35,86,224,19,169,234,208,69,219,59,83,98,44,25,14,128,80,152,139,23,69,167,41,215,178,8,156,182,134,3,124,36,218,67,236,242,144,162,99,196,223,18,248,217,250,34,137,81,87,201,61,189,18,55,161,207,222,11,237,95,36,82,128,234,60,83,208,51,13,182,154,11,196,206,88,38,88,58,19,100,216,209,120,154,243,201,59,74,84,127,104,87,174,160,21,207,161,23,150,22,222,148,63,65,165,204,162,73,190,37,52,61,114,221,45,168,213,64,30,134,112,150,43,127,236,63,33,239,27,51,54,215,51,109,126,35,176,113,90,122,134,215,49,55,46,182,3,36,210,9,242,54,199,25,83,248,228,126,87,137,185,89,207,70,35,86,51,65,207,237,95,193,82,79,233,130,151,234,198,180,92,62,14,189,191,118,113,54,207,112,57,5,170,8,115,178,87,46,43,99,99,15
 6,21,173,109,24,109,104,111,120,41,170,130,221,49,15,153,27,85,77,131,246,63,8,178,10,50,154,74,243,88,19,195,196,221,226,44,204,38,189,110,98,188,127,242,54,105,17,240,128,250,237,86,251,9,186,6,18,154,216,235,152,124,59,246,144,231,30,181,214,200,15,37,75,228,210,14,176,239,187,89,87,14,89,9,178,4,79,147,79,80,181,64,143,119,216,214,220,212,113,94,141,153,27,72,196,95,77,243,183,187,245,100,164,210,28,78,125,23,114,175,54,109,139,46,168,45,134,40,28,2,209,73,232,203,149,92,70,232,42,241,25,133,206,139,81,46,213,173,158,255,134,121,106,186,140,192,118,81,192,195,135,240,247,170,86,85,82,173,195,133,69,201,159,182,9,22,3,216,175,65,166,78,229,165,177,29,210,143,95,91,5,24,37,94,233,139,169,226,224,202,79,71,252,130,103,111,98,1,15,165,14,213,168,24,151,234,55,30,246,251,160,119,2,240,175,170,10,243,163,152,123,108,187,32,171,135,90,124,118,42,113,47,241,130,49,182,206,137,28,148,181,180,99,92,187,164,89,232,124,140,228,57,153,252,193,167,139,101,97,0,155,218,235,245,203,34,1
 00,124,195,247,58,91,48,85,193,160,190,234,30,158,55,214,164,96,242,199,80,119,90,27,215,248,246,172,162,6,244,25,103,104,72,159,190,81,155,90,136,51,192,181,95,114,77,103,198,252,26,15,154,52,68,1,23,1,53,103,252,211,28,58,216,246,230,57,37,73,5,73,111,133,8,86,148,183,55,158,197,159,10,116,120,78,91,37,172,0,71,213,253,98,54,89,249,231,132,202,32,224,200,58,36,237,51,17,250,214,95,255,67,221,169,97,74,180,214,180,72,150,87,95,119,236,235,38,185,70,156,117,78,39,175,62,222,140,133,50,222,183,124,69,58,62,240,76,27,175,58,75,182,22,194,106,52,183,227,243,48,146,95,53,133,1,163,226,214,58,63,112,73,24,131,166,70,232,133,160,104,125,10,156,71,163,42,115,103,28,171,156,221,25,51,236,12,179,14,125,250,217,180,254,31,31,164,221,75,250,28,36,225,140,7,83,38,195,16,187,151,67,197,250,156,54,199,152,51,168,142,85,170,122,250,40,106,42,32,246,252,172,64,53,149,68,28,128,22,90,167,172,157,126,189,37,153,228,69,204,78,69,67,181,66,55,110,73,120,185,190,38,161,196,167,235,4,90,219,237,1
 92,229,3,105,134,254,87,148,7,251,28,120,17,66,105,165,122,140,134,228,255,67,251,221,192,157,29,150,73,198,127,140,252,7,242,72,143,245,115,56,120,190,77,233,222,73,222,71,169,169,81,152,83,255,179,228,14,214,236,203,229,36,116,94,20,171,41,133,120,200,156,97,175,238,246,192,40,34,99,254,252,56,242,59,9,166,80,27,194,86,179,147,102,169,43,67,122,83,228,194,13,22,48,30,221,69,133,147,217,32,211,194,117,197,195,22,117,177,209,227,252,11,21,73,230,141,34,247,183,20,227,128,107,14,132,78,188,254,229,147,126,249,173,17,10,1,54,163,100,237,183,130,79,162,248,149,182,146,144,184,156,14,14,243,118,196,10,40,78,239,4,108,134,9,5,21,215,113,83,121,171,165,124,136,96,243,15,208,3,150,2,90,123,27,7,40,117,53,155,253,55,46,5,73,39,6,172,239,151,79,67,158,48,94,148,156,119,134,181,218,5,127,34,22,51,155,238,36,35,66,11,252,247,213,147,69,34,205,116,135,79,218,189,248,246,151,33,203,24,151,168,212,95,172,194,171,139,215,212,135,141,141,243,203,243,57,244,40,83,224,58,101,200,233,160,148,2
 28,190,235,104,91,4,251,155,219,148,95,136,243,203,229,64,112,195,0,161,204,223,139,78,94,88,194,47,202,30,188,230,161,160,202,174,11,113,94,77,82,233,208,150,198,79,12,196,39,189,154,100,28,100,130,170,42,201,82,169,49,137,180,83,224,232,158,137,168,223,94,149,48,59,17,42,12,181,167,172,90,76,88,218,194,69,153,1,157,136,248,91,133,247,79,225,18,76,41,94,153,143,103,10,93,232,193,233,154,202,253,91,103,106,166,187,192,228,240,148,52,120,140,34,64,111,38,13,25,254,253,210,102,105,175,47,119,177,23,17,190,80,83,164,62,28,38,100,245,225,36,97,249,134,172,199,153,246,153,162,127,27,88,34,23,234,124,18,188,217,199,231,91,22,250,9,32,241,52,66,253,233,242,244,34,113,3,122,24,111,142,184,252,116,221,184,254,30,171,203,61,130,56,75,108,224,72,210,180,12,121,125,207,134,56,104,137,144,147,162,199,33,136,151,25,158,220,135,63,177,57,223,36,133,161,10,114,160,232,238,168,147,253,104,81,12,130,183,139,52,190,162,10,223,133,101,118,117,122,144,164,108,197,158,91,247,173,48,202,208,211,20
 2,21,18,247,212,95,94,95,91,90,101,69,0,249,232,164,158,211,145,118,233,222,25,187,143,24,100,163,204,178,164,137,95,175,172,146,248,218,116,164,14,18,123,213,189,167,151,62,86,201,248,201,173,180,194,241,236,238,30,161,110,195,15,19,225,103,143,59,151,220,156,211,178,130,16,100,213,173,84,250,176,64,151,110,52,241,159,225,94,244,66,15,100,93,82,223,2,132,183,235,177,138,56,247,217,29,133,88,161,40,151,63,185,85,135,25,25,230,184,9,244,158,99,251,196,141,96,15,164,103,59,243,173,255,21,107,255,28,106,163,93,201,69,47,77,204,55,167,221,225,239,71,42,35,50,197,241,132,39,119,2,219,154,120,187,132,220,150,50,191,206,135,95,116,76,10,168,201,18,83,36,1,63,20,192,135,105,188,190,179,28,180,123,13,77,221,127,90,96,203,62,101,124,239,111,99,178,174,43,99,193,204,248,211,227,216,104,27,209,36,80,83,59,200,211,12,208,52,44,190,36,145,2,65,235,31,180,158,156,26,160,208,35,81,158,249,137,131,96,124,1,170,69,60,20,155,21,200,157,4,193,89,201,62,163,158,146,204,11,57,28,3,164,111,117,170
 ,24,117,165,235,135,148,219,255,143,134,122,84,15,62,78,53,216,36,130,107,9,17,213,3,133,156,252,13,108,49,50,87,161,173,26,94,202,135,32,131,42,157,92,7,255,80,75,24,245,236,6,138,78,126,103,212,142,52,203,7,215,92,52,238,119,228,8,5,71,77,1,245,106,163,11,109,73,127,213,129,15,244,221,179,192,72,216,164,179,210,224,169,253,164,29,188,223,188,235,207,25,217,3,252,94,35,21,52,145,183,172,159,90,217,172,189,191,173,81,124,154,23,196,52,218,125,81,150,105,114,233,128,53,251,102,160,160,188,29,148,66,64,4,67,174,45,247,21,111,118,35,57,86,140,197,210,187,63,252,103,107,82,3,132,149,118,235,121,40,33,123,44,38,29,141,153,130,204,223,254,221,48,5,18,123,12,181,48,76,47,167,85,11,86,91,254,201,102,83,157,104,124,242,245,112,145,32,130,56,158,74,80,249,220,90,118,249,74,196,236,152,69,77,198,180,255,210,54,138,36,254,147,239,222,21,190,50,194,187,128,232,70,88,0,95,144,141,105,209,107,165,117,131,144,229,187,75,174,237,118,229,249,142,120,119,103,177,248,38,39,130,0,113,136,223,107
 ,150,57,67,83,230,183,66,191,182,47,214,249,158,119,207,198,144,222,145,89,118,78,189,185,29,147,50,43,236,45,233,58,28,50,15,151,49,166,20,111,50,59,89,183,62,65,49,21,40,54,236,184,51,35,206,138,35,50,183,12,174,236,226,46,16,217,213,77,110,138,41,152,17,230,212,48,135,167,103,164,214,122,134,131,207,63,108,117,230,243,225,6,248,61,185,108,95,35,66,176,237,189,69,62,45,149,151,241,81,51,46,117,60,144,209,189,84,38,80,88,181,198,189,33,20,161,214,61,73,150,24,163,139,79,85,41,88,203,165,216,60,51,50,108,248,23,122,93,14,217,173,160,56,94,203,52,134,164,41,156,185,238,90,176,165,144,17,16,236,26,2,157,163,66,93,63,44,85,142,127,73,223,174,252,203,83,161,188,67,63,86,109,85,183,35,57,197,91,173,137,75,194,47,54,66,63,242,54,87,5,103,114,92,226,8,161,222,68,61,73,198,5,141,12,203,120,211,213,12,136,144,161,204,50,218,110,2,47,246,187,249,43,215,117,136,234,229,140,240,26,23,231,200,38,192,73,100,247,231,76,253,159,182,190,87,93,83,209,223,147,17,101,1,209,0,25,144,240,5,99,24,
 66,37,34,210,209,75,249,61,24,71,159,198,129,200,194,247,245,31,150,5,87,156,156,0,85,202,156,221,93,227,207,134,49,102,168,170,50,242,36,142,119,217,78,152,239,175,111,81,79,11,21,103,76,86,113,198,116,4,196,227,113,133,91,61,1,39,145,234,103,121,226,87,5,62,11,193,80,208,159,9,174,104,193,196,198,86,49,132,54,144,157,117,165,25,202,6,129,17,2,243,244,202,235,138,155,245,154,11,241,133,45,189,216,194,142,193,84,102,132,144,238,76,72,31,69,99,239,46,218,124,13,221,24,200,173,62,215,119,23,24,184,120,85,78,3,25,54,236,117,112,83,113,39,180,111,123,169,166,159,27,74,91,62,244,10,217,162,236,250,228,174,204,178,75,230,165,146,84,155,173,229,38,254,155,237,137,107,218,160,239,160,7,254,250,137,108,160,179,88,38,220,36,18,98,230,32,59,238,162,117,172,114,208,237,251,155,78,198,188,223,167,50,102,194,209,42,126,142,30,67,68,152,206,76,42,218,57,147,61,252,89,129,231,192,115,61,229,147,41,183,125,127,182,28,101,179,200,127,216,152,170,235,147,138,84,97,12,123,158,131,152,238,73,167
 ,227,139,141,46,207,100,38,63,112,33,82,27,29,74,112,241,24,174,18,32,5,166,68,206,206,174,229,154,66,194,199,188,108,170,154,221,140,218,77,52,76,186,109,180,73,181,222,148,143,164,198,0,36,218,135,129,251,199,212,63,167,177,161,94,214,101,73,135,228,103,40,64,56,23,163,57,74,64,120,166,227,222,224,63,155,242,135,106,120,25,194,125,103,152,25,214,89,38,246,176,129,56,162,40,145,152,213,115,242,188,198,70,166,221,149,113,186,148,60,99,45,77,238,185,16,136,89,165,132,145,149,199,113,184,57,232,85,64,34,198,18,5,159,167,176,161,219,171,213,99,174,95,91,171,184,9,21,18,45,48,199,55,146,60,26,210,251,21,17,216,186,105,8,152,148,203,53,148,68,210,87,154,224,209,79,117,125,100,135,2,128,201,111,16,45,38,18,51,29,206,48,8,243,125,93,254,162,195,17,210,159,182,229,206,4,141,39,4,132,118,198,175,228,60,106,166,86,248,18,119,144,230,8,94,148,128,95,156,81,200,27,85,245,145,245,192,231,89,123,231,108,250,21,78,217,156,137,106,58,17,224,211,98,200,38,13,26,34,141,99,132,63,91,8,213,44,5
 0,184,24,209,162,6,26,71,119,15,61,83,100,59,14,196,32,240,238,225,40,71,169,195,252,173,94,249,52,4,45,192,87,173,229,133,188,207,108,168,45,40,73,52,8,16,14,187,55,76,137,166,39,100,243,15,125,122,104,192,76,22,39,122,76,190,14,43,61,150,114,70,35,149,225,95,89,148,72,99,247,234,14,52,136,214,236,253,136,105,119,62,27,108,156,230,47,83,23,197,63,128,249,78,252,87,23,197,132,182,8,208,73,39,119,249,173,132,125,163,48,195,66,185,59,179,108,229,110,18,186,133,181,198,86,89,76,101,85,9,143,220,166,113,169,78,193,110,48,178,188,195,209,46,149,177,32,95,113,21,209,207,0,140,220,59,212,135,134,42,135,191,223,217,177,203,142,40,171,13,200,52,180,17,74,0,159,19,187,228,196,33,230,35,21,118,54,42,181,203,191,63,95,156,144,115,103,27,95,0,254,203,213,76,96,195,221,44,208,206,21,146,120,88,141,216,184,0,98,191,0,168,117,70,3,105,28,170,33,222,180,169,103,29,38,200,70,142,233,112,176,79,187,18,193,132,39,27,249,243,104,9,19,140,74,5,190,59,154,79,98,216,216,24,199,46,214,116,129,69,211
 ,67,222,252,79,174,171,164,82,250,38,238,220,196,218,40,241,116,29,175,121,148,84,82,129,111,122,5,46,132,128,180,236,152,177,154,175,12,242,163,221,111,63,182,7,236,77,210,7,57,127,94,66,214,3,189,106,107,226,167,4,41,18,76,202,184,113,225,42,93,1,54,194,17,190,195,129,176,167,73,232,155,128,5,139,59,64,189,185,163,108,97,224,75,226,73,245,92,221,253,144,101,199,202,246,49,161,89,23,134,81,163,100,209,167,31,7,174,122,104,87,151,68,231,133,197,110,82,222,215,133,91,229,103,58,170,220,231,213,99,105,141,184,176,80,175,136,147,200,143,203,211,94,252,247,154,47,203,105,191,254,94,182,162,107,74,135,117,136,138,188,136,216,70,18,144,140,53,182,174,252,12,85,170,157,105,148,215,169,72,33,0,123,70,142,186,158,28,100,200,139,73,70,20,167,33,114,112,189,200,114,246,242,234,103,165,119,138,231,93,171,11,224,110,68,188,98,27,144,241,117,117,154,45,146,19,19,86,237,11,211,227,154,47,123,74,58,30,4,252,176,209,73,15,5,108,198,228,108,167,187,164,8,194,65,230,183,236,180,249,251,181,64,
 39,93,137,36,92,217,204,144,193,230,198,252,82,153,210,255,204,69,219,22,239,114,197,14,30,64,216,5,121,203,141,165,150,117,191,76,197,57,41,79,194,30,117,172,10,77,23,68,211,243,42,246,139,122,231,24,104,100,178,22,207,99,75,221,253,184,74,9,244,35,61,178,168,129,84,51,97,50,86,203,165,103,39,24,26,203,88,211,155,71,30,252,145,224,45,69,180,169,110,35,37,251,210,195,81,146,107,92,40,133,97,56,142,176,157,204,114,141,250,103,8,63,134,189,133,63,230,17,1,1,94,179,221,79,162,75,147,157,215,127,62,115,88,28,136,97,51,6,81,209,61,147,114,216,8,153,236,231,250,87,213,235,126,63,141,160,79,30,98,193,104,59,120,189,131,76,206,101,163,47,215,41,39,167,44,215,164,1,145,152,216,223,204,29,189,131,222,180,62,42,12,200,86,84,210,156,222,189,241,85,179,239,58,237,175,153,128,0,198,155,112,141,35,169,90,131,30,191,127,215,80,208,64,160,195,79,195,117,237,45,109,25,3,233,236,84,180,197,103,155,25,223,54,98,177,45,12,193,188,45,25,200,36,161,197,200,35,183,28,168,187,201,56,114,90,136,149,1
 24,246,87,50,213,202,147,35,9,84,212,139,140,20,171,150,232,43,167,94,199,74,215,212,62,144,250,69,20,155,91,205,24,165,89,25,151,0,198,90,168,192,37,142,46,115,246,25,59,84,182,0,133,51,232,232,112,122,7,93,129,20,20,106,136,126,234,145,98,45,0,5,226,41,202,137,128,170,142,80,79,237,185,231,121,128,167,45,182,60,47,119,167,139,152,7,141,156,35,2,2,231,220,188,98,209,38,94,165,76,101,66,45,149,67,89,49,203,235,250,2,50,85,190,205,131,163,224,228,152,10,113,24,83,0,73,21,108,56,59,35,144,131,215,65,94,42,178,139,98,222,58,32,182,71,227,159,201,197,66,0,129,189,34,160,64,174,98,17,193,136,70,233,7,79,90,83,186,106,142,131,249,154,157,72,13,6,101,48,224,244,64,249,196,59,1,253,186,141,115,184,203,135,192,77,70,65,0,93,213,152,56,26,168,104,29,137,202,113,232,108,115,110,69,240,48,190,48,252,18,170,173,206,113,58,99,170,245,63,180,59,90,54,240,119,157,140,212,23,26,116,152,57,241,18,64,228,58,70,100,194,224,113,27,98,128,13,108,89,16,166,246,65,158,109,172,29,17,255,28,156,245,2
 33,86,222,149,64,88,219,63,214,127,93,250,87,233,56,151,26,119,112,118,36,30,149,70,75,242,57,228,69,0,187,153,83,241,24,175,76,98,29,196,67,106,205,192,58,232,231,107,168,169,229,180,103,194,29,228,231,245,92,198,177,218,188,94,4,77,0,251,254,111,241,159,24,1,22,203,199,35,129,69,69,205,208,139,8,77,59,87,49,109,88,220,110,225,149,253,65,156,85,214,37,190,167,129,212,104,198,241,233,241,5,251,137,144,142,180,134,109,103,164,3,142,125,94,86,236,55,105,80,195,228,183,209,231,50,232,143,254,233,28,102,15,4,206,15,68,27,200,131,30,141,50,212,13,162,71,233,87,16,37,143,66,172,37,9,52,12,249,124,190,82,95,26,204,197,222,24,87,120,143,9,254,227,20,216,27,41,201,165,137,186,156,190,250,15,32,199,163,214,218,29,195,122,244,51,126,227,77,218,24,49,20,183,67,34,113,106,103,220,204,8,193,43,208,219,223,129,229,153,192,194,197,230,142,134,255,130,251,77,188,197,179,162,180,35,213,205,35,115,31,9,27,120,60,234,174,3,121,170,159,64,147,40,126,161,36,77,172,2,160,197,145,171,255,205,193,20
 9,84,130,241,206,29,67,7,208,63,4,210,250,140,12,179,77,37,30,143,228,161,58,199,94,95,233,237,157,80,166,243,227,133,222,33,125,63,172,27,16,215,73,186,102,222,176,116,163,95,242,3,234,72,253,50,159,233,56,167,195,140,30,170,33,75,33,91,199,244,226,92,131,156,83,43,208,229,227,49,73,185,57,132,203,74,51,174,165,43,18,135,253,190,87,175,21,209,139,210,17,237,84,255,212,83,8,105,47,58,158,106,58,55,149,239,243,119,47,34,103,70,90,217,100,13,106,206,221,88,139,155,139,63,170,45,221,56,115,14,84,217,174,176,79,152,98,191,128,120,218,207,17,113,179,243,182,41,3,168,237,223,54,217,171,170,71,27,205,57,65,250,71,0,79,127,26,26,122,101,64,204,67,31,168,100,100,201,87,234,99,231,199,249,146,217,200,243,97,244,57,199,46,137,115,212,103,77,154,19,171,245,129,59,188,11,13,67,125,87,80,190,133,49,38,118,198,228,19,113,175,29,39,227,90,123,169,212,47,136,86,192,167,107,193,17,23,148,134,84,190,125,54,132,136,104,127,18,220,3,47,34,19,35,45,45,204,145,142,53,253,95,153,3,139,167,189,133,7
 2,122,38,8,173,220,188,220,135,87,75,6,191,203,39,95,59,105,128,254,222,114,196,188,162,228,177,156,15,224,177,103,81,134,117,7,228,143,58,27,250,104,25,207,49,231,62,147,12,212,254,71,0,182,213,166,41,49,87,243,219,14,121,132,176,19,78,55,14,175,147,177,112,139,219,111,23,17,219,233,125,119,250,185,249,91,57,195,20,196,240,114,73,114,27,5,19,134,93,240,84,199,22,15,155,108,34,24,255,75,27,130,31,103,215,97,52,35,171,70,33,51,190,217,196,23,218,223,137,127,28,96,246,18,59,163,98,179,23,23,192,199,226,227,67,145,103,179,122,129,123,188,204,24,42,154,214,13,128,173,89,166,32,239,111,235,28,214,187,112,220,143,167,210,191,168,216,212,33,37,86,154,242,128,8,117,97,126,248,143,73,220,118,77,133,114,24,123,119,127,52,163,143,148,221,18,59,105,4,60,245,220,96,133,4,200,84,82,34,155,188,10,160,245,36,37,175,64,234,145,215,194,114,197,190,137,139,206,65,61,230,114,1,46,57,45,6,22,190,101,251,184,226,36,71,234,178,85,82,142,142,253,67,58,164,182,183,18,200,85,80,91,104,23,68,174,181,5
 2,198,186,185,2,177,30,55,253,198,166,229,170,231,52,250,157,96,221,11,165,15,253,175,227,201,223,84,207,33,133,147,218,104,121,66,42,215,209,129,6,164,64,193,222,98,109,252,234,214,24,11,27,196,230,56,31,51,236,144,183,105,218,130,191,78,20,89,48,108,191,165,200,186,126,138,119,176,41,143,164,69,166,53,93,246,122,153,198,147,161,83,131,175,45,100,204,248,236,52,140,236,64,125,179,24,176,72,114,0,45,173,60,60,44,128,229,14,36,140,143,143,31,175,196,157,218,133,25,56,89,61,238,90,84,187,206,64,95,67,14,96,182,217,243,21,45,192,142,106,98,95,191,37,68,172,10,60,42,228,36,27,122,154,35,6,89,158,137,225,112,112,57,104,223,175,88,182,133,51,201,136,176,170,224,250,67,40,88,174,182,86,71,97,241,201,167,187,89,84,155,109,183,208,130,224,128,183,53,19,213,92,244,17,105,246,187,131,10,242,5,170,50,184,114,137,35,154,66,197,146,32,187,185,216,62,219,253,95,137,41,191,105,164,240,211,214,66,254,91,54,230,198,181,146,231,5,50,200,24,157,136,219,6,249,53,91,71,202,68,185,20,51,189,161,19
 5,32,56,147,117,73,61,173,159,70,50,114,158,11,110,136,57,149,141,158,40,215,236,140,62,189,67,142,214,222,117,80,237,52,88,252,224,207,186,117,24,178,224,111,17,135,44,232,250,143,34,222,15,254,16,113,62,237,66,204,181,69,114,185,127,106,184,194,94,27,72,188,46,122,72,107,170,186,19,22,127,129,237,90,169,189,45,250,12,244,152,214,202,171,172,244,218,81,88,102,134,151,81,164,179,12,11,136,238,129,23,50,70,33,67,86,34,113,255,42,61,140,104,167,35,223,222,104,198,84,162,65,179,105,124,92,228,156,219,241,2,63,9,77,117,12,156,17,51,231,86,11,119,28,10,217,245,207,53,92,177,193,152,142,169,172,86,172,201,232,142,163,114,118,59,67,8,230,218,121,69,95,175,214,137,201,32,37,11,77,37,19,50,213,83,68,28,61,142,181,105,38,33,208,219,103,17,150,240,29,221,37,111,155,255,12,173,33,248,255,11,112,180,46,235,243,40,166,112,239,156,235,70,91,240,171,177,212,0,53,223,229,163,197,161,37,9,180,159,97,104,67,18,223,255,15,19,247,50,167,120,85,213,115,190,7,11,122,213,87,70,97,187,176,122,159,39
 ,56,253,218,172,224,93,222,194,21,72,6,155,207,239,9,253,174,156,148,19,247,187,106,180,253,40,116,212,16,208,159,32,175,224,92,0,136,11,12,105,13,186,61,173,230,79,160,36,249,104,64,200,206,125,118,86,34,212,209,245,76,170,138,243,100,18,51,78,172,227,118,194,80,232,128,52,104,54,211,105,134,118,167,127,5,89,195,217,103,233,253,22,27,33,92,243,18,64,18,208,32,188,15,135,56,145,36,181,42,5,104,224,2,101,175,67,22,26,22,251,54,13,224,16,77,136,52,252,153,85,49,169,188,203,243,128,70,134,53,69,226,144,217,8,202,168,194,178,113,79,98,91,73,146,9,104,255,174,34,87,95,100,96,116,27,102,128,241,222,64,181,227,200,173,131,30,230,249,130,98,117,152,203,192,62,109,201,253,32,154,238,118,244,226,69,230,197,187,19,228,164,193,209,0,42,196,93,162,24,67,179,11,54,161,46,53,146,94,185,56,232,116,170,186,168,85,31,102,41,213,222,173,35,148,147,209,192,73,206,89,159,127,132,81,239,159,188,62,118,55,12,132,49,166,121,92,84,169,159,246,247,103,207,246,196,63,108,134,221,189,51,57,161,199,23,2
 4,213,154,179,197,210,130,251,181,217,223,91,175,224,73,232,17,66,188,107,30,102,143,208,224,54,90,10,37,247,197,197,88,123,91,200,197,16,206,8,61,170,66,115,59,53,171,79,79,41,139,206,253,116,218,150,249,119,194,86,123,139,80,123,110,187,255,185,151,219,180,114,196,146,119,152,94,14,202,191,117,65,137,160,114,67,69,238,22,68,204,105,112,193,98,70,50,116,114,51,48,179,11,8,124,81,241,57,120,49,249,49,126,65,184,218,215,199,123,70,9,129,142,80,148,108,236,252,219,110,207,134,168,5,254,3,39,154,6,100,86,216,165,48,80,148,37,255,20,147,157,165,59,203,125,56,147,103,102,66,93,149,206,206,88,213,170,124,32,145,248,30,123,43,222,57,238,118,68,29,115,176,117,41,108,164,115,140,88,26,18,63,69,78,82,190,186,138,139,205,211,76,192,173,89,253,111,45,76,11,31,68,25,172,171,7,83,123,113,6,234,155,158,185,84,3,173,149,118,217,221,68,70,69,212,201,14,129,13,132,245,114,39,239,60,239,197,29,204,254,91,99,228,37,239,167,124,188,5,184,101,96,136,233,152,115,17,217,200,143,174,167,116,121,227,
 86,23,21,109,160,113,43,204,245,238,132,79,157,205,77,119,149,184,151,145,109,33,39,28,165,71,191,6,51,180,217,32,225,248,255,157,125,208,82,117,98,106,134,132,193,202,136,222,197,109,74,142,17,165,195,6,213,131,102,215,23,30,201,14,74,3,16,169,63,120,178,173,122,65,232,56,236,10,66,69,167,105,75,1,196,90,0,191,130,94,160,42,58,3,220,81,216,30,48,76,152,92,56,228,164,0,146,209,247,138,228,150,117,15,148,249,143,16,141,207,7,204,59,12,89,148,120,81,208,70,235,150,153,207,92,81,2,51,225,17,71,88,206,34,226,86,194,161,63,95,242,214,116,182,164,230,71,9,98,235,114,33,201,227,47,61,236,243,147,79,213,99,133,47,71,7,2,29,189,87,30,255,85,205,96,85,158,138,181,110,4,14,233,61,232,29,190,136,83,155,181,99,27,131,38,120,156,115,100,93,87,252,86,154,97,53,228,24,23,18,187,69,193,60,144,101,56,131,33,23,164,132,13,163,251,44,167,155,116,163,212,0,242,182,190,30,189,191,172,22,7,126,163,41,124,42,165,115,26,198,237,4,92,183,195,70,106,3,91,103,136,49,137,160,226,16,235,241,167,252,120,1
 23,149,102,181,31,131,57,99,53,69,159,7,253,11,2,233,163,92,128,127,218,254,22,162,243,23,245,24,30,183,174,128,4,67,213,153,240,88,49,76,88,7,127,96,221,74,100,94,228,9,39,164,168,178,37,55,47,168,254,53,200,250,254,230,206,10,33,3,233,74,204,183,203,169,62,1,60,103,108,79,9,11,230,47,212,25,181,97,195,147,154,206,81,133,128,128,117,2,78,62,175,222,111,132,153,86,168,218,76,60,232,17,231,247,59,159,75,63,181,224,17,243,245,172,237,250,48,147,99,221,161,124,47,110,7,4,101,249,71,247,153,51,28,31,126,175,85,213,20,114,127,94,86,146,105,205,239,31,66,205,157,122,22,32,129,229,109,174,158,42,16,119,5,81,67,181,34,219,169,254,34,105,125,9,19,67,142,219,158,25,173,36,56,78,134,114,232,10,163,55,5,195,225,64,191,91,98,193,141,59,211,86,29,156,135,217,181,117,157,13,156,217,124,187,136,213,35,182,225,48,163,116,18,31,119,113,6,238,191,23,2,161,148,81,41,230,22,245,175,224,155,198,53,243,37,164,107,82,149,184,114,71,175,135,160,103,127,56,152,64,61,254,0,248,93,236,220,191,176,184,1
 24,81,44,77,164,86,60,27,95,136,226,234,108,12,195,49,121,11,96,150,139,78,59,19,58,200,122,36,46,132,176,118,82,171,202,223,111,154,187,68,252,250,87,248,154,121,207,22,203,38,152,151,167,170,66,29,244,222,221,3,89,130,131,44,126,146,121,231,11,245,1,231,71,48,13,114,182,26,206,90,44,20,190,127,119,210,106,47,95,105,171,115,118,15,169,197,6,80,56,139,69,86,235,62,213,85,139,104,70,33,80,52,227,207,68,211,236,104,148,44,199,142,72,110,52,99,100,158,76,68,231,90,203,33,193,99,164,15,109,166,123,120,193,52,94,117,237,228,236,131,119,71,228,252,193,247,190,83,69,232,31,45,65,161,132,10,60,27,134,135,175,164,127,83,205,120,222,162,20,233,84,35,227,60,11,38,222,20,61,60,231,247,158,9,69,203,91,37,204,47,157,131,4,42,225,124,20,208,238,143,170,96,31,125,159,146,17,253,25,135,150,240,165,5,133,74,9,135,183,90,141,42,226,171,219,121,236,230,243,242,172,159,112,220,123,92,132,155,50,86,9,185,6,31,148,61,254,67,52,106,4,68,203,132,244,10,120,182,53,129,224,137,129,21,206,114,73,194,20
 2,106,213,24,127,190,216,108,176,250,87,223,197,61,20,184,31,89,205,190,252,178,32,217,110,47,90,38,223,110,247,244,141,255,98,199,101,67,107,89,159,236,114,131,183,206,88,157,231,45,227,141,138,136,47,10,202,17,135,162,84,177,68,108,226,188,131,60,77,225,20,165,85,66,160,174,232,224,11,24,153,182,120,38,0,149,92,237,164,165,118,114,41,65,205,4,0,134,1,222,147,27,141,18,165,190,107,45,72,93,38,107,210,132,54,191,42,254,236,58,138,89,47,115,122,227,170,127,239,107,5,2,147,241,46,150,68,248,153,212,17,240,202,88,34,92,38,7,16,128,69,1,49,146,5,100,254,26,191,117,93,162,222,154,118,106,204,213,8,204,2,99,108,107,107,194,134,179,127,7,53,84,72,254,189,197,138,122,121,214,82,128,147,245,209,237,156,92,31,38,208,164,179,200,235,41,115,207,172,21,225,61,65,113,132,213,118,147,142,46,127,238,106,194,252,84,221,133,6,4,60,67,153,140,19,124,44,28,17,241,140,186,114,174,73,36,18,181,211,148,172,220,49,90,108,168,37,213,50,212,12,226,108,71,129,163,237,198,150,248,89,105,234,171,225,177
 ,132,128,106,248,216,245,6,16,1,171,251,252,106,156,224,63,19,223,138,195,4,57,107,21,179,248,12,99,44,85,3,13,141,210,8,17,1,65,190,174,107,183,116,197,59,180,87,245,149,126,177,76,253,45,185,14,51,15,28,99,169,9,11,132,42,178,222,128,235,220,23,130,214,233,83,130,166,127,186,159,60,47,14,86,136,40,245,126,192,42,219,112,98,183,19,168,129,65,169,226,165,127,202,35,146,17,48,34,163,198,193,232,203,131,84,50,8,157,90,166,206,170,4,112,69,195,75,96,65,251,98,220,20,228,246,104,60,158,46,37,143,229,201,120,192,238,235,125,205,243,249,158,113,118,20,76,84,237,196,116,193,110,24,122,7,85,228,130,27,252,120,209,150,46,184,223,58,228,170,219,32,51,2,198,38,25,23,205,133,93,127,113,88,175,102,252,151,193,213,167,132,29,107,73,255,91,138,255,83,128,89,209,187,218,150,169,135,192,246,134,50,45,246,200,13,116,145,140,74,219,144,224,245,208,138,255,49,66,119,59,22,167,3,250,92,19,75,178,195,96,177,54,181,46,100,92,37,95,167,235,20,175,25,210,0,192,219,46,1,97,220,123,250,42,51,176,16,71
 ,12,39,85,171,44,95,241,42,154,65,218,209,101,175,9,125,138,33,46,96,2,33,86,139,174,152,61,248,32,193,164,160,90,11,249,250,228,148,56,5,253,60,216,198,8,231,195,232,134,105,41,72,155,122,254,90,187,65,209,174,21,192,193,23,52,30,78,94,172,177,1,154,8,85,32,206,115,93,243,61,171,218,5,108,236,130,77,79,126,64,120,248,131,92,193,3,2,164,200,173,81,105,26,241,80,20,112,84,249,80,10,217,164,57,97,146,208,140,118,76,38,35,237,41,50,78,97,92,254,130,111,227,112,49,115,216,38,56,185,90,206,189,55,206,40,40,227,68,60,31,61,25,79,181,137,253,151,50,92,224,118,103,167,30,116,91,229,191,123,243,78,214,49,57,64,133,224,185,178,134,109,1,21,77,254,193,76,190,66,126,41,166,214,226,43,102,54,76,202,201,136,156,242,128,248,230,183,67,93,4,217,253,135,204,205,215,130,166,193,54,206,216,49,2,90,184,214,220,142,176,5,125,161,108,235,19,30,93,60,62,173,17,203,63,120,122,35,113,85,8,166,192,226,27,198,227,87,217,222,95,240,201,243,250,62,141,240,74,236,95,253,8,127,136,98,15,71,243,40,139,19,1
 46,113,161,179,3,139,95,107,205,237,177,137,207,119,149,3,160,172,112,237,30,131,108,119,160,214,211,47,216,236,92,37,249,141,208,205,70,100,117,55,18,222,9,181,131,205,144,71,32,9,42,97,151,82,62,149,57,43,196,191,143,134,164,74,156,187,253,23,43,108,194,163,183,34,53,3,134,135,52,119,232,9,176,114,203,13,141,1,49,82,12,103,101,66,161,94,218,80,21,117,71,196,80,23,233,84,126,113,86,137,17,204,104,181,201,156,42,145,214,137,10,237,51,122,110,83,194,251,30,177,21,249,156,3,22,20,208,55,197,99,150,230,53,40,250,68,59,12,170,20,254,98,78,237,166,148,86,179,236,26,48,55,60,182,135,193,206,213,211,64,174,211,11,202,157,154,199,226,176,75,95,229,149,115,206,21,156,172,81,174,133,157,209,195,35,31,134,230,187,110,244,103,43,32,200,17,102,139,254,4,5,135,24,209,116,253,147,86,36,229,178,240,218,12,16,75,20,143,131,220,71,1,76,2,50,202,93,96,238,170,0,119,78,87,65,209,138,174,242,30,82,9,113,185,215,140,57,5,23,123,182,84,168,216,96,48,150,85,225,105,66,187,182,58,52,35,237,68,67,148
 ,75,231,93,5,190,160,95,77,60,244,11,197,172,90,255,48,228,225,68,227,54,222,153,78,117,193,39,116,209,165,228,38,207,60,32,247,105,46,98,17,51,117,185,250,153,88,113,48,195,97,235,78,229,209,175,103,245,197,108,0,87,125,75,137,11,89,251,121,207,156,159,183,8,79,196,124,216,196,175,71,158,184,206,202,31,151,152,252,70,177,40,47,16,186,242,87,59,104,121,149,206,91,150,124,205,143,236,126,185,121,63,254,197,228,13,160,5,51,57,87,250,0,240,172,85,216,117,76,177,172,224,155,80,239,132,1,167,173,113,103,60,187,108,80,51,26,126,162,72,25,39,190,59,60,104,222,87,150,111,48,202,81,66,182,50,239,228,40,143,139,87,150,233,183,147,213,181,16,132,171,139,58,103,123,232,203,136,152,37,1,32,116,203,28,251,72,146,164,119,28,134,177,196,102,89,171,225,151,128,143,140,191,80,211,112,166,201,185,179,172,114,19,39,44,190,98,211,145,62,154,209,112,163,12,125,244,87,154,104,26,187,176,109,185,81,51,9,66,179,69,22,248,224,223,234,113,150,173,190,122,80,180,66,30,134,246,110,135,65,35,179,167,62,4
 1,73,216,171,59,147,33,238,148,109,49,180,96,78,183,184,26,61,194,218,32,226,217,79,223,253,66,101,25,64,17,127,171,65,43,240,182,88,190,23,128,5,187,231,121,242,208,59,138,96,252,148,12,9,139,124,181,28,24,188,100,93,232,207,62,69,55,205,142,200,51,188,22,243,106,87,160,178,212,172,82,230,211,66,121,199,203,55,139,206,90,84,248,227,135,73,3,60,39,17,175,215,223,92,16,103,178,149,161,64,19,87,235,76,71,158,163,213,130,217,148,152,23,185,200,24,199,196,13,249,212,48,99,223,119,244,130,28,194,16,123,6,2,113,78,130,12,153,28,90,32,45,75,212,105,234,244,138,128,11,191,228,90,4,138,242,245,21,23,237,156,158,61,151,213,207,0,40,40,24,38,9,175,236,117,101,26,155,147,32,162,114,133,50,50,152,64,1,56,133,169,130,224,4,105,29,238,218,132,196,109,189,60,102,85,210,9,162,203,21,100,170,109,194,226,169,78,222,242,89,109,141,127,177,163,232,74,240,232,216,127,200,128,38,10,56,105,139,160,126,63,92,133,14,126,177,54,130,243,100,113,22,181,1,145,104,71,237,180,251,160,233,244,225,249,70,17,
 57,15,249,105,143,65,240,13,42,62,201,21,171,29,160,100,6,74,138,142,210,40,237,2,67,120,84,118,242,144,147,136,100,183,155,153,254,168,15,124,253,187,197,74,186,234,166,224,15,62,225,234,37,113,109,202,221,255,69,178,178,15,101,161,18,107,111,160,168,229,164,23,52,90,202,76,160,189,200,143,177,100,82,139,171,178,6,44,52,52,239,173,110,223,173,25,188,23,16,40,208,17,123,138,128,139,239,193,207,70,55,13,177,62,86,85,218,18,165,221,30,91,117,148,19,216,181,35,234,219,10,181,172,240,211,205,170,34,85,155,238,46,176,46,133,85,66,235,109,191,39,239,11,184,64,72,95,132,109,47,227,180,38,61,224,145,158,167,35,3,57,68,186,52,207,232,34,30,83,64,193,10,219,116,188,181,75,220,254,205,155,211,119,168,15,47,198,193,138,80,179,186,234,166,77,65,74,111,233,96,68,196,224,232,224,240,26,187,83,196,153,194,109,3,176,148,66,164,37,171,222,49,59,124,136,65,157,70,167,130,3,95,18,33,171,224,206,186,21,180,18,115,59,199,99,233,74,135,174,40,9,109,148,74,18,219,33,19,119,195,139,45,43,13,104,45,6
 3,99,8,52,219,152,242,235,195,148,214,188,74,249,28,106,58,13,127,75,214,200,252,21,95,226,164,237,133,73,147,123,145,109,111,111,19,148,184,19,205,217,230,207,10,132,30,171,48,156,239,107,7,92,212,30,143,8,214,182,186,73,142,250,191,99,11,69,30,250,196,65,142,77,76,89,23,120,87,21,132,10,204,86,12,15,86,23,160,227,201,164,154,81,160,5,208,185,9,70,123,14,252,158,147,102,65,129,246,153,145,119,136,208,17,35,34,117,191,227,167,253,215,3,198,36,199,248,231,171,183,4,0,129,11,29,22,182,7,187,32,169,116,50,14,13,146,35,195,99,152,225,126,105,138,169,155,103,140,150,65,192,236,26,66,0,240,54,216,226,172,252,95,173,6,150,45,95,227,23,163,203,35,143,249,42,19,225,73,7,152,66,71,62,146,29,89,213,246,217,87,190,57,154,233,44,207,0,234,128,161,173,185,68,126,100,115,19,65,204,41,130,84,142,61,143,247,131,90,61,226,81,45,0,17,254,31,244,47,55,137,220,211,5,186,216,24,48,25,182,105,148,163,128,232,101,103,76,61,48,36,218,102,167,244,233,92,130,227,255,131,155,69,224,225,129,186,248,253,
 84,72,132,111,48,15,127,30,42,197,182,45,88,208,93,183,218,110,0,199,93,224,248,237,99,114,0,115,38,146,152,254,242,146,29,201,215,189,18,12,112,241,242,95,68,192,237,83,10,239,191,215,70,119,90,122,21,13,30,186,208,77,3,59,145,35,74,142,0,93,133,103,72,3,144,57,219,73,230,202,58,192,211,98,28,210,239,56,207,132,43,218,199,41,154,252,88,207,197,0,102,206,246,112,120,67,137,68,1,45,67,36,6,228,101,63,14,73,213,14,60,6,90,135,199,82,33,224,131,95,243,138,244,148,63,5,106,191,19,139,93,205,248,194,76,18,228,215,212,81,148,225,169,255,225,176,122,7,160,249,120,102,103,125,19,197,121,2,127,114,251,132,165,152,0,86,178,236,37,212,243,181,39,129,84,112,246,194,201,216,229,239,228,123,37,18,135,149,39,52,91,198,50,148,132,92,72,135,95,134,65,60,100,34,97,77,128,126,22,158,9,139,220,71,101,10,217,222,57,184,192,2,221,30,248,183,170,193,62,213,155,238,20,179,172,33,27,13,52,45,124,45,31,69,178,54,122,99,80,55,20,17,58,99,247,110,98,94,195,195,40,159,12,165,87,132,136,227,26,45,38,39,2
 23,43,224,10,169,46,110,24,87,99,135,218,3,110,81,1,203,242,193,53,200,65,93,83,108,167,126,148,182,26,13,223,19,195,202,54,190,74,203,38,72,82,90,174,11,17,86,230,231,168,164,170,229,147,126,101,225,75,242,183,140,114,61,154,200,104,93,69,175,107,155,250,214,122,70,98,155,72,113,107,245,87,166,228,130,35,71,90,193,135,249,129,207,34,79,215,196,157,23,209,22,196,2,102,243,182,240,147,78,170,16,232,6,177,79,159,193,128,112,76,192,43,255,68,255,173,27,29,195,161,238,43,3,140,200,218,97,159,112,158,240,126,84,31,165,217,126,11,1,192,218,31,89,5,119,60,114,121,152,127,116,43,142,161,129,108,114,193,221,78,42,207,11,201,81,36,211,30,193,240,157,34,9,0,105,52,53,81,144,139,101,165,181,147,0,65,232,118,145,66,245,198,118,153,238,125,160,97,223,7,201,225,145,59,212,248,87,157,113,72,49,62,225,192,133,171,27,251,43,189,184,105,216,217,181,48,15,46,99,249,249,253,91,253,146,153,231,235,46,117,170,142,217,251,1,164,29,118,23,151,166,26,79,152,31,233,38,74,25,62,169,143,53,25,224,105,12
 8,197,108,172,13,149,4,71,139,149,214,108,76,243,236,115,50,21,173,42,112,71,24,10,131,3,246,170,244,64,237,23,156,31,141,141,91,221,179,188,132,68,172,82,138,77,137,22,177,201,231,45,157,62,255,145,35,212,132,46,249,92,172,55,162,231,13,19,196,227,113,48,63,14,76,199,172,223,22,134,75,137,60,129,23,62,28,40,247,114,9,109,248,202,13,170,45,244,215,109,27,63,172,26,129,75,168,183,111,219,222,191,227,23,135,38,135,133,109,171,77,39,189,54,234,69,68,221,236,5,49,236,201,52,235,173,228,156,121,192,58,183,92,2,54,53,102,53,201,228,163,170,216,32,136,15,225,163,58,140,199,162,82,195,129,245,128,155,57,20,205,207,255,151,234,159,3,147,45,213,115,63,44,112,195,131,142,80,118,182,174,125,207,38,161,20,220,179,10,1,191,135,137,95,0,102,252,20,74,74,93,179,57,246,217,88,80,242,73,69,165,143,205,228,166,182,41,184,197,86,107,89,221,197,134,239,145,18,162,244,122,148,99,151,129,199,116,158,45,208,110,158,167,35,82,126,235,239,104,118,220,21,78,223,178,39,201,214,125,1,114,155,63,46,243,3
 0,109,97,234,138,16,170,170,78,178,191,144,209,40,99,252,71,78,224,168,99,154,127,92,251,80,1,124,41,160,255,249,111,44,92,31,171,246,36,8,25,48,10,37,161,40,140,219,75,73,237,186,33,132,52,143,173,182,93,33,89,95,149,172,103,35,94,122,40,105,46,23,111,156,173,75,247,20,46,205,96,18,31,239,50,150,230,0,226,17,71,88,48,58,222,212,113,238,239,96,46,45,185,227,208,96,239,124,171,68,188,169,4,55,120,57,72,203,31,68,121,107,155,209,244,210,245,39,230,112,193,132,228,43,147,94,54,228,123,251,63,241,238,255,83,143,119,66,173,78,237,26,50,252,154,231,144,188,225,228,179,45,82,230,248,53,164,41,100,52,167,180,54,187,153,176,167,118,113,238,93,68,200,48,139,140,48,108,28,221,153,62,235,39,143,134,252,76,245,50,200,249,108,25,175,192,70,47,117,114,73,211,174,58,56,150,33,119,107,132,46,245,225,5,160,89,196,119,88,189,179,165,138,27,34,215,139,233,213,195,14,53,204,136,174,238,27,218,59,128,248,34,243,36,137,205,210,226,168,208,170,161,54,254,121,171,230,163,255,35,112,209,166,134,116,1
 68,156,73,19,13,138,146,190,211,104,184,30,229,64,158,239,38,87,107,105,191,116,76,99,22,204,46,251,100,207,55,246,30,138,154,126,198,118,159,205,64,120,228,112,116,85,106,109,224,229,32,75,182,12,213,233,74,124,8,236,1,0,128,149,6,250,237,216,170,156,29,49,84,144,57,171,228,99,196,173,108,4,206,221,199,206,215,167,7,179,129,52,80,156,146,123,112,254,140,44,178,99,48,20,106,55,189,124,249,136,7,231,136,63,175,78,162,239,163,83,79,5,42,113,150,167,173,161,104,170,94,21,95,183,143,104,92,172,228,78,1,63,222,229,28,244,22,104,98,249,30,29,152,30,157,143,174,180,228,82,80,234,117,234,95,114,208,204,65,92,61,25,37,13,120,185,123,99,150,11,4,19,22,196,108,208,204,18,134,45,187,234,235,70,163,118,228,192,175,207,26,249,190,64,95,131,173,111,20,172,183,190,107,33,123,71,0,248,37,145,89,182,152,30,73,207,37,220,179,181,85,177,238,14,33,158,5,29,72,134,222,112,64,168,201,12,59,26,210,185,72,224,109,180,225,73,20,244,104,44,251,109,100,153,249,177,152,165,41,223,16,152,214,238,123,194,
 81,151,73,133,178,124,11,76,135,48,80,25,186,235,93,226,170,140,69,60,105,139,81,108,58,211,1,201,26,109,51,209,88,85,151,160,165,63,212,246,217,127,60,66,173,199,53,161,242,98,235,198,224,1,226,32,234,150,36,154,234,252,162,127,9,52,9,41,220,187,71,31,93,248,146,53,117,163,152,16,187,239,112,248,189,104,155,47,1,158,231,245,199,207,228,244,234,231,246,190,87,10,144,68,146,9,93,168,76,176,10,128,247,170,56,48,199,17,128,196,79,154,157,248,109,235,226,156,132,173,150,137,74,26,95,131,48,192,246,213,165,228,143,241,255,69,162,225,166,179,116,182,51,1,87,113,139,159,212,253,90,184,251,124,228,61,168,89,184,51,41,228,47,78,46,76,134,60,160,77,48,53,29,102,19,249,172,185,224,71,89,117,38,250,230,165,188,42,242,253,149,150,25,135,26,238,3,89,52,139,187,53,157,195,66,207,193,78,99,120,179,2,170,85,198,43,87,169,53,41,80,20,248,14,183,1,20,222,175,116,233,42,221,36,21,142,8,208,6,180,151,91,60,134,217,141,28,154,43,93,61,175,53,11,208,109,129,157,243,162,162,154,13,119,124,3,68,151,
 189,135,115,93,207,34,184,5,26,231,8,133,159,218,35,11,180,126,252,46,4,98,51,182,228,144,163,115,165,2,217,125,36,39,184,152,253,58,154,227,49,132,195,226,106,10,67,121,67,173,41,188,172,69,110,121,222,164,114,244,91,193,114,132,61,183,226,21,106,102,245,155,178,92,205,48,150,246,21,13,100,135,223,114,112,150,113,237,191,139,135,48,9,17,62,82,147,64,67,103,196,50,245,112,138,33,157,138,135,140,40,179,188,225,55,42,92,23,170,134,217,12,12,253,214,129,221,36,58,56,78,183,189,13,64,131,31,79,245,199,210,216,135,77,80,132,175,129,64,156,125,64,228,227,5,144,216,1,106,33,163,48,110,128,239,106,157,104,80,39,149,252,145,106,86,63,101,145,112,112,131,99,79,31,107,12,56,42,130,156,162,38,122,48,15,167,87,190,120,170,188,198,143,130,135,167,23,29,216,19,199,76,208,119,7,252,118,42,136,130,184,27,24,249,51,76,77,90,97,222,84,250,90,123,207,96,57,219,83,192,225,29,128,253,103,49,170,79,9,122,162,93,151,10,141,169,84,113,55,39,234,119,225,128,181,172,59,27,46,9,237,123,180,77,218,189,2
 15,36,58,49,123,154,72,141,133,2,28,136,215,66,187,137,39,165,15,64,46,79,237,123,219,21,36,127,237,80,95,55,95,70,216,214,112,151,49,132,103,88,198,112,249,151,227,152,62,107,236,14,70,111,76,72,11,249,198,51,225,40,92,198,158,229,233,193,96,98,209,5,129,181,0,167,182,235,243,43,248,245,24,118,124,2,25,16,191,215,206,152,130,77,63,69,36,100,15,60,2,88,204,77,56,255,133,238,233,206,130,123,228,86,62,188,167,163,194,205,186,158,140,24,195,33,163,84,245,72,207,156,41,229,253,48,67,60,64,50,35,227,100,97,185,95,207,219,43,42,138,185,18,12,182,166,99,242,110,167,95,25,161,169,109,98,165,157,208,26,210,32,211,44,231,19,54,194,113,96,130,55,238,215,69,236,73,181,47,15,210,221,185,167,104,38,26,162,135,64,219,53,97,199,171,24,158,57,207,55,63,185,29,221,166,220,25,173,95,113,231,113,45,43,61,59,72,54,139,130,190,54,100,104,215,85,227,114,30,54,2,145,245,72,75,29,25,31,140,156,180,125,226,32,92,107,166,106,31,138,200,204,54,181,59,243,51,143,113,70,77,79,249,165,194,226,85,106,224,6
 8,168,139,170,233,206,218,255,187,175,172,152,177,2,165,226,115,167,32,253,179,107,190,61,44,225,135,104,221,49,74,132,142,30,87,252,36,144,87,84,182,1,24,238,173,6,238,10,63,126,129,167,154,7,223,223,126,13,50,37,26,31,57,36,144,104,216,1,195,104,224,245,231,203,119,36,40,67,107,85,182,83,151,115,176,103,113,5,145,255,155,60,56,21,135,237,224,79,183,240,138,176,65,124,113,74,109,209,1,156,182,108,83,93,213,218,209,7,125,20,94,220,127,87,7,67,104,30,206,134,118,39,240,146,142,63,212,148,238,207,141,135,52,205,214,234,208,228,120,42,189,7,6,5,87,125,221,195,103,21,153,229,93,85,47,233,146,1,23,100,203,83,14,92,40,84,206,189,198,17,20,255,183,79,159,171,84,118,101,188,223,90,44,192,45,197,156,160,186,54,100,154,149,165,62,102,26,236,157,105,161,83,233,182,192,17,109,233,137,145,43,128,65,176,248,86,229,109,20,186,24,239,56,39,108,222,142,14,191,14,196,107,221,151,233,229,95,134,188,138,180,216,167,88,171,75,126,61,72,87,234,42,152,223,9,218,252,27,128,155,122,40,234,178,128,55
 ,82,43,117,108,156,20,117,227,125,101,190,161,110,165,197,184,20,80,46,28,78,182,173,234,215,251,100,36,129,31,88,63,105,204,245,79,173,210,119,129,31,145,138,82,181,201,250,2,86,212,80,68,197,137,93,84,246,220,198,57,66,185,138,187,146,130,165,47,245,241,21,119,50,199,200,182,76,84,43,76,127,252,222,119,177,85,56,65,98,2,247,159,186,79,84,52,156,216,183,177,131,140,97,5,69,197,202,181,116,184,145,25,220,35,91,78,249,32,235,67,180,113,154,15,246,26,177,10,159,251,136,6,93,213,109,63,200,134,131,178,0,77,204,186,24,182,151,27,27,115,240,14,242,88,111,168,139,145,57,169,212,42,193,235,163,35,66,152,20,47,242,57,230,131,123,162,167,68,89,225,127,123,222,192,240,232,154,110,181,92,102,122,195,197,253,199,14,96,61,219,4,63,173,132,194,227,75,175,25,104,31,228,216,62,163,6,132,233,16,23,65,79,185,131,223,47,104,96,107,165,32,207,94,126,207,30,58,186,244,225,200,205,249,178,74,46,185,224,192,75,138,144,24,65,47,242,67,72,196,111,120,45,71,104,48,246,141,34,230,163,35,145,113,132,92
 ,221,21,32,208,5,127,83,214,96,31,158,161,45,94,96,94,187,204,97,128,147,160,171,113,193,85,79,89,117,190,76,33,150,115,57,209,189,149,218,17,85,255,128,78,154,220,65,105,47,144,143,167,68,20,209,50,75,65,217,157,18,227,35,46,184,180,167,226,79,16,86,98,22,86,68,158,162,13,25,134,81,234,212,53,172,21,153,245,7,180,228,154,151,108,112,103,144,166,100,171,13,246,153,116,230,3,145,149,2,84,50,127,155,116,94,225,83,62,20,188,143,1,151,168,220,229,147,145,153,177,203,78,35,161,10,97,61,17,246,24,69,214,86,10,113,126,163,231,52,43,170,182,115,129,77,71,163,130,106,216,42,114,186,126,96,80,177,54,92,133,25,38,27,210,22,89,241,164,180,190,30,126,33,190,101,163,164,76,120,218,249,244,250,88,109,147,14,61,246,56,102,58,125,73,157,242,51,226,20,252,105,47,208,203,103,248,51,119,118,22,114,193,228,176,56,176,241,90,242,14,76,113,33,13,157,156,56,135,218,45,212,137,43,78,227,158,151,52,169,186,127,233,176,8,190,144,51,180,126,7,226,158,233,130,166,248,155,55,137,167,104,238,238,21,76,118
 ,109,24,146,224,235,184,239,133,200,101,237,137,24,174,188,156,79,202,155,147,52,116,177,88,134,66,97,88,41,70,109,157,143,76,217,81,14,96,133,123,90,185,163,88,91,253,217,192,18,231,172,157,236,211,57,229,5,106,237,130,142,30,134,225,162,67,66,133,198,116,17,234,8,110,0,102,46,191,162,253,198,218,74,6,56,250,79,23,235,191,115,61,171,18,16,118,67,211,15,97,167,213,45,231,102,181,62,210,254,119,113,21,240,73,143,194,128,20,160,221,132,85,245,59,174,21,183,142,138,214,76,176,30,94,101,86,181,55,27,18,205,103,109,250,254,239,126,206,213,141,194,104,72,18,61,6,3,193,221,224,146,54,74,255,147,14,212,10,195,14,204,23,82,79,154,33,243,221,174,12,46,85,205,113,143,143,82,175,9,184,226,54,219,162,15,162,130,21,166,86,253,220,254,71,61,212,253,205,91,237,63,104,5,195,138,163,145,99,54,105,107,62,82,96,19,105,36,151,137,76,188,124,198,50,92,34,120,244,36,128,176,130,174,3,219,154,243,249,132,235,181,69,222,244,57,85,111,53,243,52,72,17,31,133,133,130,82,81,100,112,32,132,190,159,172,95
 ,53,94,237,148,170,128,0,4,210,92,82,12,156,250,189,248,102,122,114,102,29,38,194,208,2,96,6,204,122,91,81,117,65,172,176,224,31,106,192,57,48,136,30,87,84,61,152,139,113,68,160,46,236,164,148,111,62,253,94,70,227,127,48,49,25,133,219,215,185,69,197,109,39,62,203,54,161,190,110,12,65,83,5,185,226,10,18,97,35,208,95,11,204,62,4,254,254,91,115,41,191,162,217,230,252,249,238,164,213,18,134,106,147,225,48,25,82,187,140,198,164,185,143,214,201,42,237,6,213,35,134,124,159,24,69,19,186,107,42,117,12,131,239,56,29,233,47,217,178,230,169,190,81,209,194,135,142,52,73,211,251,208,144,37,74,160,19,62,181,237,121,31,12,213,122,163,201,23,75,166,59,201,17,147,23,31,6,154,86,210,97,33,5,69,96,127,142,195,146,44,167,60,16,157,37,126,213,79,148,117,253,68,3,153,168,9,137,33,235,215,160,205,115,195,76,86,182,90,33,47,186,78,104,93,115,193,244,20,15,231,144,235,245,90,220,248,134,121,209,195,90,68,130,57,79,231,178,45,122,195,77,6,215,20,34,60,193,110,238,16,25,201,45,182,10,81,82,139,101,186,
 129,80,182,244,86,74,238,14,43,103,172,106,0,159,29,1,21,239,10,41,190,167,239,80,92,134,62,88,79,101,53,166,31,245,57,226,61,180,245,162,17,91,57,14,171,249,82,167,226,228,124,71,146,136,132,113,179,17,26,134,76,153,48,7,40,4,6,178,182,161,30,160,38,74,212,108,223,2,19,165,83,44,123,62,165,205,243,191,115,12,224,254,54,185,160,4,14,90,14,144,236,24,80,209,41,56,196,132,235,67,191,234,95,88,117,236,166,235,157,195,43,53,166,19,113,32,155,34,10,226,147,208,216,136,96,250,84,205,92,68,158,219,75,203,172,180,190,223,172,208,198,157,7,98,27,251,88,170,66,56,206,75,149,170,4,140,242,46,153,143,85,78,63,154,27,66,219,107,206,153,61,33,176,4,62,11,61,34,244,227,95,176,214,97,57,83,122,95,25,229,163,153,131,131,158,106,189,35,103,5,245,245,206,126,168,190,67,246,142,23,125,178,40,220,243,184,156,69,238,233,228,153,198,166,51,67,166,239,31,166,65,56,184,172,67,37,54,202,22,75,23,46,84,158,174,105,17,235,148,114,20,245,238,81,188,93,110,194,119,147,33,3,170,116,67,50,35,250,56,149,30,
 123,120,150,90,235,250,80,57,77,90,12,51,237,165,206,202,83,27,141,102,218,24,101,177,151,60,242,153,105,156,75,203,182,64,63,112,170,90,239,12,223,106,165,63,8,71,33,196,118,222,212,136,19,237,69,247,84,106,1,199,36,59,96,205,75,51,151,22,222,123,251,20,213,176,118,242,33,250,245,63,140,42,209,130,84,200,114,8,152,141,72,124,216,100,57,49,118,237,116,96,129,104,203,73,14,14,227,74,65,228,6,68,201,172,111,45,158,169,68,236,216,78,38,20,24,180,220,135,87,79,250,124,44,76,10,128,14,141,131,54,119,88,151,110,116,161,42,81,14,146,25,223,187,43,174,56,90,211,79,227,194,133,181,187,219,62,206,236,77,251,17,26,233,254,60,154,199,133,103,207,23,88,177,154,21,45,172,32,48,24,32,219,34,199,1,142,188,8,142,241,144,240,157,55,64,66,199,98,46,202,237,199,43,255,116,63,7,210,56,99,108,58,94,101,241,197,199,94,82,106,177,119,182,205,174,232,73,170,157,88,69,120,164,109,108,6,91,40,21,221,123,226,211,242,129,160,177,195,5,244,177,201,234,217,28,109,238,66,155,214,199,132,45,13,163,113,9,196
 ,212,117,127,59,238,65,87,124,238,171,239,23,138,182,64,85,210,61,202,182,136,120,222,70,199,60,229,224,83,252,218,31,24,98,18,137,178,14,165,20,129,14,40,255,148,129,195,122,245,74,243,18,105,169,25,38,45,224,190,168,202,117,23,24,1,74,178,139,189,23,162,21,114,205,167,81,218,196,85,225,139,254,188,125,72,78,24,128,237,11,19,101,179,118,27,58,18,102,235,52,68,167,142,213,101,139,188,22,234,21,44,147,232,134,231,103,68,77,135,6,52,101,99,220,83,85,113,71,247,48,216,73,224,16,108,251,43,199,207,242,233,224,102,68,210,10,173,216,161,130,186,179,64,216,76,96,76,139,179,211,200,125,122,61,36,68,57,124,13,23,195,111,140,181,107,92,109,145,204,60,92,63,18,58,234,22,138,87,216,8,26,177,127,91,20,236,3,143,16,243,233,37,4,86,255,94,133,249,171,94,214,192,187,68,179,243,4,220,210,187,151,138,49,38,73,225,227,16,20,7,88,113,88,161,209,94,0,25,202,196,49,57,121,77,194,86,217,239,229,241,168,59,200,177,57,169,94,222,65,211,93,166,16,104,91,251,153,186,242,174,68,115,100,178,209,146,83,2
 13,210,221,36,190,225,58,200,212,135,114,218,30,49,155,124,55,230,5,121,58,96,56,250,231,109,10,151,17,37,102,188,225,1,246,89,170,54,99,216,20,246,190,203,163,26,43,234,74,88,78,197,93,55,97,50,127,11,88,193,50,65,87,190,248,73,110,143,97,53,152,174,30,21,182,186,60,104,217,128,213,187,222,109,45,199,246,193,10,167,73,83,194,51,255,40,211,140,29,205,120,100,36,179,226,187,51,150,233,243,74,33,77,155,123,161,205,224,91,84,9,203,99,103,51,210,226,34,252,70,61,55,10,118,51,95,38,115,80,238,51,131,167,173,10,59,252,82,73,87,154,1,10,92,206,177,173,157,176,110,30,138,86,140,71,40,148,17,197,125,111,244,127,115,149,46,162,134,232,15,120,25,62,21,124,28,1,211,55,144,223,157,104,23,141,252,89,132,250,65,131,59,54,19,17,18,170,97,244,125,106,127,142,188,132,226,182,80,0,168,210,213,102,98,187,41,202,156,172,88,45,67,254,95,202,147,65,253,13,135,211,104,207,212,209,117,10,143,166,125,88,212,14,200,229,178,143,146,30,232,158,221,129,167,152,95,172,91,240,163,244,128,192,55,45,254,97,1
 69,187,50,211,12,28,161,119,7,77,108,151,75,42,223,221,203,98,228,148,7,5,172,204,253,62,4,56,27,25,42,245,36,184,248,27,137,188,192,182,183,2,6,95,107,175,123,34,69,187,73,67,97,118,11,217,187,149,1,182,254,203,147,132,55,201,111,71,0,225,53,129,13,203,52,230,33,137,58,60,222,34,89,141,217,174,94,249,164,166,109,46,171,234,127,51,115,74,179,150,198,71,245,49,24,149,224,219,87,49,251,0,155,6,120,121,177,153,199,108,83,30,34,86,163,37,74,67,157,51,7,47,81,155,6,248,63,170,63,70,60,202,103,209,106,64,184,80,28,193,203,153,100,60,84,252,206,172,203,31,11,133,226,134,185,115,177,107,217,197,144,213,3,147,4,3,114,142,70,131,5,254,139,122,187,247,40,139,168,124,72,17,12,80,84,187,93,234,122,59,154,208,43,115,27,146,136,50,81,137,231,126,130,2,42,67,11,208,86,115,5,125,45,207,255,228,95,204,239,210,249,198,126,251,164,118,233,70,124,63,64,59,111,192,0,115,151,114,226,193,186,112,23,93,197,143,161,220,22,137,180,235,255,129,8,100,186,222,46,95,188,58,215,92,220,130,237,184,202,126,1
 81,164,66,36,9,46,52,141,1,146,13,28,98,22,121,62,10,239,75,163,54,81,81,166,255,231,2,45,121,66,235,178,149,112,160,195,113,149,211,195,242,179,185,42,115,108,166,103,185,195,205,164,157,43,137,113,155,145,198,157,40,60,122,186,68,99,217,153,236,197,97,118,86,21,194,75,54,22,9,98,189,128,225,136,142,234,111,123,37,159,167,7,75,251,58,8,212,62,10,111,143,55,162,137,110,68,83,215,203,15,173,95,123,136,29,94,159,218,61,173,19,83,247,24,185,28,7,211,192,89,234,113,204,64,71,2,192,212,125,186,167,200,142,22,64,7,14,3,219,5,214,252,206,87,202,247,173,48,57,228,80,144,92,215,47,40,103,224,101,108,72,166,135,255,41,13,108,79,133,85,20,79,152,188,23,200,18,101,175,6,11,10,107,126,5,43,78,57,46,96,129,194,182,8,104,53,30,205,139,150,89,185,191,111,167,2,225,218,42,78,5,208,95,255,69,108,141,17,35,61,149,92,221,53,154,156,29,174,225,103,77,180,215,150,247,61,151,202,230,198,131,143,42,156,203,162,198,40,37,231,207,231,235,54,154,195,215,253,82,42,93,187,204,36,20,249,204,150,189,184,2
 39,147,106,177,203,200,195,153,17,165,220,43,198,65,139,31,14,60,187,150,121,152,196,88,79,36,108,198,46,43,236,78,57,138,11,187,19,124,140,60,125,44,116,93,221,44,161,13,203,117,239,103,206,252,137,42,9,165,54,127,57,118,40,149,216,191,136,85,97,144,171,253,194,8,157,240,248,140,153,19,247,67,253,36,242,249,191,137,231,120,135,123,78,185,90,254,47,67,159,200,171,239,130,177,173,75,17,156,226,159,113,224,2,39,167,221,89,93,234,224,142,47,8,199,121,120,100,177,43,255,161,60,10,118,30,255,85,149,1,92,52,125,31,3,170,30,113,182,109,187,116,169,149,58,131,250,51,231,93,102,244,43,211,28,247,117,91,215,154,24,190,227,44,64,24,115,67,37,102,155,225,6,226,129,221,171,12,221,5,47,1,145,121,199,80,186,242,145,192,163,242,207,205,154,151,116,87,163,51,92,146,69,89,35,10,185,245,190,40,46,144,131,96,80,245,13,252,106,44,208,103,85,186,33,52,66,214,112,162,205,247,164,41,221,62,220,245,121,67,57,117,113,64,229,177,20,182,149,69,50,136,123,207,108,240,145,14,33,145,169,74,22,33,238,50,10
 6,199,241,7,205,131,181,105,222,163,118,194,169,22,12,213,3,250,124,46,134,28,18,186,69,177,109,110,79,231,123,15,42,95,76,113,17,182,216,205,132,187,7,111,28,41,157,125,50,133,151,164,237,246,8,139,7,121,92,107,58,190,63,128,223,198,224,174,219,75,170,130,14,19,190,233,104,220,179,137,33,102,154,129,177,253,29,32,108,223,37,147,115,220,22,81,247,240,91,137,249,101,203,181,31,147,130,107,121,59,82,143,215,132,74,127,112,13,71,92,35,100,199,89,84,162,238,100,157,230,50,70,88,230,133,76,147,138,51,110,250,143,113,187,128,218,86,179,179,121,71,238,83,122,104,95,59,91,74,100,116,217,25,107,91,245,133,224,172,107,211,115,70,119,73,226,225,61,188,165,148,147,239,249,244,211,76,38,157,213,251,99,246,116,144,8,107,129,33,33,9,208,168,46,26,119,53,20,14,142,238,34,43,194,71,174,170,177,100,248,6,225,201,161,119,247,72,241,226,188,236,203,79,87,183,196,234,133,94,185,190,79,127,215,66,228,99,219,97,234,157,89,58,43,0,30,212,168,75,17,201,149,133,135,198,209,169,62,62,184,63,84,195,73,
 84,172,153,92,137,213,144,174,179,0,73,226,129,130,233,149,121,106,75,50,83,59,222,203,186,215,168,31,220,154,161,36,173,145,33,10,90,126,235,218,213,32,149,121,133,204,122,229,109,150,232,243,143,220,12,57,41,38,0,228,232,216,213,82,90,185,248,107,29,77,171,40,249,71,49,93,224,25,22,138,220,96,129,92,10,83,84,77,129,44,244,239,99,4,244,85,244,76,3,82,118,195,135,210,173,36,2,76,180,212,134,10,38,131,221,194,162,21,118,67,31,32,166,79,43,228,1,66,221,235,1,195,73,207,8,122,104,32,182,214,228,80,45,44,106,92,129,92,200,76,207,34,98,140,135,164,214,121,66,240,214,3,114,214,109,167,206,87,71,11,109,142,78,231,151,220,223,184,181,131,121,232,46,121,94,230,135,196,5,243,240,131,52,77,62,213,103,226,249,57,44,49,220,179,146,15,33,23,204,175,143,160,46,213,200,65,95,69,22,151,69,231,253,9,148,91,94,64,102,14,15,27,72,139,212,71,242,38,79,104,197,213,219,197,39,172,172,10,214,53,131,7,62,59,233,39,221,67,19,92,13,2,123,244,124,95,223,11,183,121,70,45,251,198,194,45,51,37,49,168,254,
 213,1,219,126,103,42,71,198,237,182,247,161,116,150,167,197,75,217,235,85,85,81,227,91,29,197,243,135,35,93,136,224,64,233,67,31,13,159,250,200,197,7,164,86,88,84,51,147,152,228,189,10,244,251,124,241,201,90,249,100,224,95,232,146,11,131,214,70,147,240,148,103,52,120,124,13,176,71,131,211,227,164,129,6,107,87,59,249,174,74,111,7,102,9,36,241,195,125,151,196,51,206,252,29,253,124,30,147,102,172,56,207,99,252,214,30,149,46,232,60,201,98,240,24,70,205,192,239,26,36,109,228,212,226,146,219,212,150,123,124,93,62,76,26,175,240,179,242,162,45,138,87,103,206,10,247,140,231,185,174,72,130,201,105,136,60,140,239,53,26,183,132,212,111,58,21,201,27,159,18,224,138,191,170,193,66,153,241,59,192,30,229,209,114,41,220,13,234,78,188,9,174,62,24,78,115,30,148,238,213,89,89,175,135,98,198,156,58,160,137,140,248,151,174,138,226,238,122,243,137,127,71,212,60,63,248,139,74,249,33,91,4,6,30,219,79,100,94,170,2,229,186,250,47,90,86,179,18,195,180,116,134,159,64,26,119,125,176,212,156,6,237,244,23,0
 ,28,120,100,23,47,209,180,248,37,79,29,51,29,254,202,43,131,93,46,28,216,172,76,145,233,63,185,214,82,94,84,55,55,113,154,81,26,188,183,6,2,198,237,28,109,38,55,167,138,164,175,37,229,236,56,215,185,113,27,148,137,107,249,194,238,3,46,255,17,82,123,156,159,92,166,102,106,145,96,23,238,66,49,235,184,105,13,212,57,219,179,241,13,6,58,124,96,49,86,243,241,49,65,158,112,212,97,212,248,253,213,168,208,236,83,19,156,112,125,44,218,120,202,209,46,104,8,179,16,225,121,39,126,148,217,245,185,247,84,251,150,32,122,138,196,61,58,74,60,155,105,82,244,156,67,141,38,10,65,57,75,158,219,136,130,35,217,128,219,43,57,93,9,47,52,22,59,80,167,181,145,121,252,161,133,185,166,157,51,146,5,151,238,194,15,56,225,222,122,177,20,171,67,15,172,230,192,121,97,146,141,39,248,140,195,229,163,85,64,163,111,12,28,51,151,140,49,106,43,253,221,45,60,47,160,135,136,74,84,134,188,195,124,21,155,206,85,146,194,75,47,255,117,195,230,200,134,140,164,75,223,84,158,204,23,199,57,112,205,50,241,85,135,237,32,59,224
 ,16,9,25,12,54,55,57,132,75,75,189,188,113,118,195,140,208,40,25,187,180,230,101,135,40,218,141,188,47,82,147,50,125,251,109,54,108,60,96,152,138,113,203,28,52,61,77,125,135,186,80,53,117,231,169,118,147,163,159,12,118,173,197,49,100,141,0,253,99,99,168,58,231,92,248,190,45,100,44,211,58,16,136,93,213,211,220,242,153,61,37,220,64,219,201,207,65,83,220,203,50,219,39,68,65,190,3,214,210,219,156,233,57,60,155,90,126,191,252,186,214,113,175,168,157,108,203,213,207,73,112,96,61,5,159,43,98,155,161,79,174,144,89,188,77,26,88,53,49,94,209,166,252,209,58,77,173,100,100,26,247,124,157,35,115,35,246,181,150,78,38,254,121,211,137,101,29,149,190,109,239,250,215,179,190,160,33,72,227,95,51,224,74,140,47,160,224,113,220,42,188,216,1,124,82,151,221,249,5,121,4,253,39,182,152,216,211,118,39,1,55,234,129,163,233,247,105,249,110,134,55,112,241,168,183,70,142,75,28,193,126,186,134,130,103,151,112,128,147,16,188,56,135,114,218,132,79,162,30,96,224,50,77,50,137,4,232,208,81,146,85,32,192,66,157,
 53,119,243,227,104,255,155,150,7,211,174,57,87,173,158,176,38,187,234,57,224,249,14,121,73,16,16,183,152,160,10,252,249,17,224,245,245,42,204,152,37,179,215,84,152,114,60,181,73,158,125,156,112,224,77,247,171,142,235,190,109,204,39,86,238,88,77,228,81,106,0,95,124,20,0,53,84,204,125,167,22,117,163,50,6,71,70,95,151,224,131,46,234,111,242,45,249,162,153,194,126,8,124,154,87,201,200,17,97,163,47,28,156,94,111,20,13,61,23,248,66,185,218,0,51,51,24,31,194,124,146,192,53,193,197,77,75,116,251,73,161,24,146,158,210,27,79,64,228,178,208,108,54,214,178,35,46,236,92,213,73,30,81,72,194,213,244,1,80,103,42,94,86,83,187,120,112,19,255,17,111,174,154,236,101,66,57,139,168,200,98,177,19,139,64,101,109,241,215,250,8,22,198,159,48,182,176,38,211,30,204,168,111,19,216,237,193,202,198,139,75,210,48,122,87,32,206,24,67,29,143,140,3,12,178,233,231,85,26,253,2,240,158,164,45,219,171,112,192,7,55,146,117,146,95,249,144,55,36,201,1,227,178,250,195,255,85,135,5,205,153,201,56,169,150,164,227,231,6
 2,232,93,19,97,52,244,211,6,33,158,60,10,69,250,19,230,142,165,46,171,242,184,213,10,241,20,157,130,198,218,151,109,56,122,182,252,255,67,229,78,213,74,88,2,172,121,198,21,9,65,151,15,116,93,58,225,29,219,219,194,26,100,240,177,150,232,240,141,98,248,248,57,242,145,152,118,139,184,222,246,185,96,208,184,32,57,95,254,51,57,113,56,124,230,58,186,159,110,213,46,245,100,97,203,57,176,214,109,229,34,136,170,27,172,246,215,128,230,1,108,130,192,70,138,244,143,104,215,137,177,250,46,124,158,22,205,142,227,187,5,164,209,13,240,204,147,165,5,234,136,222,224,223,104,159,98,24,46,149,96,114,218,207,79,27,148,242,184,176,204,173,170,17,180,42,145,133,170,183,213,61,53,23,241,131,137,227,37,158,105,170,114,47,234,5,7,134,189,54,179,89,124,215,213,201,109,1,27,86,55,226,127,235,22,158,51,187,67,236,36,76,92,85,82,138,217,76,126,64,152,87,204,106,228,112,19,8,213,73,226,219,34,80,157,218,148,188,56,136,160,149,208,50,168,26,226,163,105,58,115,137,94,64,229,209,182,244,69,116,206,89,173,221
 ,0,106,226,46,4,249,235,120,73,169,111,223,155,237,31,154,117,68,139,176,113,136,107,177,235,155,224,216,197,127,108,125,8,37,210,18,184,150,177,250,18,59,124,90,195,27,101,231,200,71,252,125,67,33,174,146,41,14,57,151,29,111,209,67,225,218,234,208,1,104,122,135,38,110,30,154,65,153,232,14,98,60,149,29,162,242,236,186,227,107,85,148,47,92,72,26,195,175,157,246,207,182,234,205,139,62,11,67,240,135,75,145,236,130,177,174,139,6,140,225,11,157,38,194,182,233,246,219,125,122,254,0,98,90,175,50,58,56,210,79,199,82,59,12,143,230,49,60,189,178,59,178,157,142,140,242,174,236,132,77,242,69,182,85,102,45,136,46,180,160,211,53,160,211,178,44,65,231,114,191,232,222,156,28,78,6,135,212,106,158,13,224,177,203,101,145,233,237,171,245,72,168,245,98,87,42,159,248,83,75,14,81,94,97,46,41,9,251,7,66,132,20,155,58,57,79,168,131,86,203,128,81,100,224,126,184,102,138,137,227,210,163,167,153,188,184,3,235,186,182,71,205,212,244,180,42,180,48,9,184,183,240,255,66,43,224,40,159,43,141,248,132,222,157
 ,38,131,127,174,129,194,218,238,171,169,90,172,124,221,13,30,176,230,23,232,175,213,232,38,120,182,183,15,102,224,166,175,153,48,56,76,25,238,191,154,141,32,229,122,118,108,188,8,24,250,12,250,203,228,126,7,43,194,59,219,251,81,110,191,218,19,147,226,89,245,104,0,69,161,213,57,213,13,175,86,106,35,245,119,108,87,104,96,113,12,30,239,63,96,251,173,237,151,64,177,176,72,74,243,228,43,186,58,201,137,211,37,83,230,200,5,169,249,66,138,181,219,143,255,27,62,204,38,149,42,102,77,21,102,168,102,247,240,165,8,18,194,158,170,9,111,59,103,109,114,251,89,126,58,170,238,101,136,216,32,146,233,234,161,57,157,220,72,40,59,68,169,10,153,223,62,98,122,91,108,63,168,8,13,62,105,153,237,54,56,16,57,148,37,47,27,249,39,25,61,140,217,153,84,2,112,203,125,97,84,150,47,144,26,94,1,206,166,207,50,87,74,59,4,21,135,36,187,113,139,47,123,52,161,203,106,90,65,82,128,61,82,32,15,198,217,13,163,250,140,227,28,45,3,193,180,82,215,24,50,228,79,54,39,243,215,72,45,119,138,247,21,174,43,96,79,1,173,110,254
 ,192,196,100,136,76,191,193,98,17,134,52,15,124,62,48,125,159,171,92,216,106,114,115,59,76,150,18,25,54,34,133,234,102,174,128,25,248,74,43,105,156,90,251,245,197,173,98,50,38,110,251,55,106,224,15,155,136,131,175,157,182,80,107,154,215,232,110,32,8,123,97,7,30,46,245,58,224,242,190,203,80,234,145,198,2,169,116,82,105,250,74,126,206,99,208,139,208,229,161,72,33,91,94,124,116,242,239,249,151,55,10,226,28,254,33,239,172,251,154,31,227,83,175,41,185,12,144,100,51,155,219,23,172,169,25,108,70,159,65,92,64,149,233,26,71,197,60,25,217,149,234,246,168,94,71,131,138,32,81,206,222,139,118,154,110,207,82,55,54,178,39,64,45,48,51,69,143,183,207,251,143,37,76,170,184,239,234,17,251,192,69,113,230,58,92,143,8,91,37,5,82,225,239,163,180,224,139,172,129,99,166,243,199,220,86,89,238,104,124,223,16,36,105,42,170,246,244,114,54,241,165,49,63,75,120,131,155,228,73,197,180,43,164,106,119,64,249,108,46,251,219,85,25,14,170,96,112,141,28,172,116,68,186,229,49,237,228,251,154,21,57,179,183,156,26,
 124,19,101,211,79,250,149,177,152,171,205,196,180,251,63,110,37,75,222,105,150,53,205,94,127,51,198,120,55,190,196,239,91,240,16,64,109,97,131,27,108,57,239,76,243,121,13,82,210,3,79,150,5,234,63,134,229,224,221,75,206,10,138,55,113,212,158,191,81,18,135,106,248,202,233,28,65,78,139,121,127,0,68,154,154,187,232,60,154,113,66,244,11,183,20,249,13,112,128,233,255,40,27,143,99,108,2,71,229,245,127,205,214,16,211,240,236,150,180,69,154,74,91,143,50,122,89,184,61,57,135,235,115,253,2,183,249,23,230,221,176,58,142,238,4,213,247,56,228,111,70,154,243,150,109,134,17,46,171,9,18,34,36,106,102,228,128,127,133,208,195,115,82,178,203,91,127,29,76,151,156,36,200,66,236,69,102,149,246,233,116,67,77,20,88,53,156,181,102,235,2,110,15,182,103,108,59,142,169,27,247,71,121,3,134,205,215,36,180,141,192,211,31,148,241,222,188,42,194,145,8,223,215,101,143,176,158,91,59,23,225,81,105,250,171,212,1,244,233,114,250,179,99,240,190,230,14,23,163,198,204,140,65,131,58,32,122,171,248,72,197,150,47,26,11
 4,204,169,76,74,124,211,66,240,69,193,105,114,179,13,98,130,194,150,51,96,220,150,97,210,89,68,13,28,94,46,233,115,62,239,3,92,217,175,98,227,136,52,222,162,92,111,159,164,164,235,203,120,191,63,251,128,19,40,24,147,32,107,173,112,11,68,111,50,160,27,230,243,150,250,56,71,192,224,126,194,29,21,44,27,1,208,220,150,144,42,96,157,40,228,244,214,135,89,5,144,28,0,251,53,13,102,224,41,66,110,25,219,183,147,166,42,108,49,119,190,11,15,146,173,115,42,169,109,3,2,16,77,105,220,145,52,5,188,190,12,161,17,133,160,203,148,12,106,135,134,202,140,131,22,94,204,157,172,77,196,226,207,164,215,31,128,64,25,219,236,217,221,142,201,121,197,231,137,51,106,57,114,40,27,14,103,123,174,33,231,77,49,141,199,105,155,208,61,61,2,81,103,222,193,248,211,189,146,0,51,135,6,81,90,189,108,165,36,21,254,10,49,73,62,194,2,51,4,208,91,228,184,28,250,193,141,30,39,189,87,44,230,183,123,209,195,91,36,172,59,192,239,174,44,106,115,211,116,87,29,71,18,225,245,211,215,212,176,158,107,222,203,233,237,190,188,188,
 207,105,126,57,164,196,191,152,16,202,53,27,194,199,238,1,5,170,237,43,108,231,93,95,56,168,242,119,146,219,168,68,126,214,192,203,172,42,113,91,30,9,183,1,102,73,5,220,61,125,214,24,190,118,45,45,100,34,35,245,47,123,141,122,246,1,196,243,166,177,237,54,164,1,23,92,38,80,109,70,194,23,248,40,238,193,167,233,193,98,35,6,238,230,156,173,242,186,99,6,169,112,194,136,183,47,205,155,204,183,166,141,188,115,16,132,70,81,65,28,212,68,182,15,172,164,97,83,94,230,139,117,227,182,216,182,181,0,19,90,172,149,210,165,146,178,208,186,155,198,174,145,239,9,0,42,123,241,95,99,118,200,35,134,136,180,156,34,103,211,176,220,109,117,96,163,204,72,38,235,145,200,59,32,238,7,122,7,30,235,76,139,217,60,47,93,99,250,211,201,225,42,218,211,53,99,189,153,69,161,29,125,243,162,229,199,27,109,36,116,127,25,13,163,126,62,21,2,185,14,87,43,79,28,56,251,112,144,81,1,40,136,27,102,237,34,132,215,129,34,13,88,14,12,57,31,77,19,4,21,105,204,213,231,252,45,142,220,123,97,164,3,15,170,104,15,38,72,152,9,92,1
 92,19,128,65,180,215,0,159,216,96,110,88,1,17,194,228,248,240,5,116,37,13,199,87,143,113,252,70,133,169,150,134,47,231,37,240,217,171,179,162,113,108,182,157,202,118,218,177,127,6,149,246,79,112,154,186,255,202,217,201,101,65,45,101,218,3,225,228,182,245,178,95,36,96,206,155,168,225,105,94,156,28,20,196,152,181,0,47,172,121,19,121,232,166,35,241,136,181,92,165,24,53,157,193,86,43,148,32,49,232,99,16,62,96,9,71,11,178,131,186,204,145,210,90,240,187,49,142,194,119,232,18,101,29,44,155,240,181,167,145,133,51,180,24,75,81,16,205,203,173,58,162,43,191,80,220,37,177,1,2,60,161,180,223,152,251,99,230,213,132,9,0,238,177,108,66,242,97,38,25,152,49,31,212,70,235,164,17,150,30,51,239,198,199,26,234,200,136,170,72,105,227,153,144,187,44,95,9,12,31,29,1,74,118,155,26,33,103,142,190,81,70,4,246,223,24,137,186,207,224,44,144,246,153,7,42,73,120,52,247,8,71,113,82,8,247,210,243,136,85,131,53,40,254,4,174,77,142,228,222,91,153,75,132,130,204,200,50,198,105,228,67,32,20,76,147,105,195,141,12
 8,84,192,133,198,237,254,169,252,0,234,172,46,167,27,29,97,235,154,24,238,222,202,228,76,159,73,164,144,130,243,116,209,76,34,44,110,59,136,7,24,237,154,198,243,233,156,11,86,119,174,82,68,80,185,38,66,24,127,44,139,83,244,93,193,252,39,154,101,240,121,151,227,79,187,9,212,114,65,96,58,34,64,91,30,127,29,178,133,9,13,195,166,166,90,111,43,245,99,64,49,223,130,175,177,97,15,212,40,164,164,4,43,79,41,37,120,232,37,139,61,56,196,126,168,214,61,75,163,30,75,85,58,181,17,172,181,123,4,1,176,236,231,250,253,253,36,164,209,20,234,128,37,214,62,32,157,191,92,77,78,74,50,250,14,157,169,132,183,89,130,214,167,198,35,174,18,239,167,195,128,247,174,10,210,53,65,85,167,116,100,8,232,107,136,100,184,145,243,239,190,66,19,14,99,117,224,90,72,162,238,111,103,173,16,253,38,118,165,191,16,184,207,5,6,26,90,140,146,205,113,80,51,71,68,219,244,102,234,128,226,212,192,110,141,219,80,103,181,103,50,172,238,71,146,62,183,212,234,193,33,44,208,138,55,17,136,113,71,229,11,135,239,177,117,236,161,118
 ,195,26,243,3,19,216,163,156,164,157,13,139,19,87,65,30,39,242,2,139,145,239,168,207,18,34,150,230,162,15,137,251,207,5,64,90,195,255,232,224,74,41,244,5,226,196,227,68,2,110,254,233,156,123,62,85,94,222,5,152,192,46,132,110,235,128,57,160,138,32,129,160,27,80,8,118,165,189,240,120,132,244,125,88,239,6,46,246,161,215,195,38,187,68,241,185,166,6,34,58,51,250,255,212,253,99,120,240,157,238,107,74,84,189,227,89,58,79,182,133,8,152,86,64,80,103,173,21,98,133,81,73,255,81,143,170,63,92,127,11,191,61,185,63,146,172,44,208,224,147,222,16,165,56,60,206,114,248,186,16,255,13,150,40,247,148,113,181,41,91,120,24,162,165,94,2,254,47,69,208,143,184,168,221,230,32,5,100,125,241,139,139,103,191,185,208,2,92,174,45,231,210,3,192,105,139,169,95,112,174,64,214,18,209,221,92,172,103,88,33,156,113,229,151,173,91,108,46,24,174,7,171,245,202,25,4,149,235,10,45,176,89,192,107,180,74,189,106,119,203,242,45,115,228,192,164,14,202,220,224,128,203,66,170,217,20,107,255,156,70,204,253,83,229,192,24,252
 ,52,213,56,107,24,211,39,174,43,115,136,219,98,230,9,41,206,116,145,253,52,242,33,29,72,115,162,27,209,28,157,183,22,214,7,92,124,200,71,148,197,50,172,145,48,186,39,231,72,21,191,250,210,198,135,94,26,124,157,126,151,48,141,15,155,212,77,66,76,162,159,123,123,234,253,52,117,36,176,239,255,97,12,218,77,93,106,184,187,201,208,12,126,210,244,146,75,185,106,64,113,126,35,118,38,41,33,166,23,101,42,129,216,105,213,160,200,173,203,80,48,82,249,88,209,152,73,34,125,68,84,112,214,253,48,219,188,12,197,116,149,77,50,130,104,234,153,16,125,96,78,193,167,164,185,218,236,197,67,135,185,103,9,12,68,95,226,152,244,109,253,107,82,232,108,186,126,86,71,84,4,196,50,157,174,130,226,39,254,190,252,76,158,217,21,94,71,144,250,80,139,183,229,47,79,27,185,102,175,73,107,177,107,224,38,177,206,73,180,153,178,208,19,119,88,252,58,12,149,88,124,47,53,247,75,42,139,149,119,125,246,40,240,230,181,62,186,151,138,203,221,96,111,13,149,165,54,242,195,242,239,107,47,11,114,105,147,71,186,181,220,189,70,2
 07,2,158,11,149,132,169,69,150,116,27,176,106,155,158,107,88,191,189,106,121,118,247,131,171,94,118,89,163,209,46,180,77,223,20,188,32,197,195,46,240,24,176,194,233,118,117,130,149,165,200,206,223,12,56,117,87,252,122,176,5,242,159,241,38,134,44,231,31,200,37,213,243,80,96,30,242,198,178,143,241,170,237,181,176,237,225,5,165,218,181,152,246,171,137,40,113,65,209,66,237,22,124,131,67,81,61,32,214,15,255,155,105,210,182,173,226,61,136,42,91,231,232,233,219,63,199,80,245,91,79,16,3,47,98,78,180,149,233,84,80,19,229,20,43,232,166,230,18,218,148,246,139,19,112,155,134,124,41,226,113,151,163,218,138,67,182,202,219,131,80,4,194,96,247,222,5,121,124,164,207,97,234,85,124,130,115,233,16,117,252,218,112,138,164,117,70,146,124,230,117,199,128,119,160,92,174,44,128,221,29,47,240,118,138,209,22,253,216,113,170,186,5,153,69,12,140,44,249,143,120,192,157,190,126,97,93,95,107,158,11,142,37,122,51,178,190,108,111,137,169,32,64,183,30,23,22,21,118,186,244,47,238,197,243,242,255,45,18,149,205,
 219,200,58,244,149,207,196,48,123,215,87,232,113,218,10,105,84,192,62,229,198,222,29,144,182,201,211,185,130,76,98,22,194,93,246,56,217,225,38,109,96,54,249,174,99,235,132,228,103,167,137,19,41,221,111,25,240,183,7,72,115,24,108,247,132,237,23,98,236,32,51,238,109,143,89,107,234,82,81,180,172,117,86,78,50,174,55,47,200,100,109,71,52,36,15,42,108,110,166,254,27,164,133,194,211,60,59,246,169,156,116,29,196,68,218,192,215,221,251,117,53,212,64,95,60,175,133,166,161,120,78,80,10,54,245,27,249,68,86,119,70,136,248,148,243,162,135,213,116,40,172,227,56,235,50,190,60,56,201,45,191,52,70,54,166,229,193,54,136,143,182,118,175,147,58,17,44,98,28,95,180,9,96,253,182,43,100,220,121,181,14,129,82,219,192,194,49,217,79,68,85,254,4,55,34,146,58,176,62,133,211,57,142,23,234,192,90,251,250,114,48,235,227,15,99,112,47,189,190,85,232,211,175,222,27,197,107,84,118,147,151,104,202,172,14,151,139,223,0,244,214,228,255,182,117,100,77,71,35,133,163,175,141,116,23,210,74,44,4,122,197,185,94,4,129,12
 2,149,31,175,161,190,145,208,90,108,150,160,245,103,5,98,36,87,88,25,210,236,121,166,181,196,32,101,199,135,173,241,22,228,26,81,179,150,37,34,245,152,55,45,205,45,124,205,19,72,144,205,24,177,100,207,28,96,74,138,7,36,188,2,125,8,207,101,42,241,163,176,135,8,242,35,89,153,196,248,161,20,115,74,113,108,237,233,206,119,246,117,26,7,80,111,208,104,209,86,32,249,104,5,137,103,30,145,230,84,184,177,192,211,209,8,199,36,125,34,60,55,211,64,246,127,98,61,49,219,36,180,122,118,143,169,183,248,208,181,132,147,220,50,255,50,97,213,170,30,124,197,15,211,54,136,118,106,171,110,136,218,74,237,193,193,71,39,175,211,241,253,55,229,220,139,209,41,75,105,231,26,13,162,53,51,134,98,183,10,55,253,105,71,211,157,248,134,74,234,73,178,49,229,204,43,89,129,232,57,36,174,202,15,34,139,132,139,17,108,210,147,42,184,170,106,7,52,231,74,207,226,69,131,235,126,201,224,33,24,164,113,245,213,55,172,101,111,149,21,167,222,177,161,107,214,69,48,243,235,27,206,195,85,124,180,47,149,255,229,188,110,154,219
 ,181,178,169,155,128,91,200,232,100,55,20,149,55,71,62,87,72,14,227,151,49,0,28,251,29,157,31,52,100,29,254,173,241,67,206,143,93,3,228,139,42,79,82,230,56,206,223,84,248,150,103,92,155,249,74,245,17,63,91,177,218,197,184,178,246,231,42,73,62,5,86,26,117,35,47,43,152,53,199,35,182,2,89,87,81,217,17,109,88,53,231,173,84,48,166,59,194,92,70,147,133,189,140,184,29,149,22,99,243,146,220,141,206,12,231,224,38,255,176,70,183,39,103,116,60,148,93,73,46,12,217,113,21,229,191,166,151,43,133,131,216,98,12,113,146,190,206,109,19,130,254,171,38,254,49,202,207,178,208,131,119,179,131,0,77,24,172,130,242,185,238,93,194,234,172,245,109,219,101,64,194,138,4,50,218,9,156,145,58,65,32,206,187,141,112,136,141,42,43,1,67,247,15,2,103,65,171,88,87,6,151,78,216,114,12,146,9,115,140,250,97,22,215,123,216,78,36,71,199,81,248,246,125,69,128,218,24,185,111,249,37,20,203,53,44,220,163,90,247,171,42,80,212,239,39,218,243,193,180,229,4,168,124,129,239,147,19,88,219,121,228,190,157,57,34,161,91,200,234,1
 44,43,8,251,254,236,188,16,104,139,94,137,138,39,242,1,231,194,208,90,40,68,166,230,84,176,137,126,139,22,79,24,214,205,14,68,152,89,194,28,149,214,201,93,240,245,123,22,149,224,31,251,156,98,127,191,145,247,25,50,30,32,166,48,57,205,34,161,221,13,25,148,27,215,74,227,246,175,14,68,208,250,235,231,211,238,69,215,248,118,23,193,190,255,60,142,211,179,61,68,107,103,33,192,245,235,113,170,15,145,55,226,125,26,89,193,49,48,128,117,185,133,122,228,102,124,181,134,95,164,61,85,167,178,220,253,119,71,18,201,16,128,153,20,23,119,13,173,108,34,46,197,171,146,228,169,51,214,72,6,207,33,239,202,31,80,85,36,88,224,30,249,59,247,173,214,253,168,205,202,191,180,160,173,85,202,145,45,148,39,223,250,131,195,219,131,15,209,42,245,251,63,233,102,246,168,150,225,41,18,161,4,163,34,38,68,103,233,148,86,250,91,236,43,149,70,228,59,164,146,38,143,224,120,152,170,58,205,117,226,61,82,11,196,212,84,60,228,168,198,113,185,215,205,95,131,69,64,207,103,231,122,241,212,156,203,59,32,248,249,220,115,255
 ,218,86,54,248,105,58,190,146,60,250,226,54,22,135,20,187,21,67,128,229,120,127,81,41,133,144,161,61,57,23,101,188,169,194,77,226,251,190,170,231,204,137,86,105,163,33,32,220,251,200,56,138,16,105,130,252,31,158,228,174,128,255,63,175,190,189,166,33,58,56,94,136,10,254,64,233,120,5,192,205,236,117,201,96,187,231,231,227,240,134,75,137,47,68,27,35,70,192,195,145,113,82,50,172,149,113,34,8,151,41,183,191,239,86,185,37,179,134,249,111,231,184,42,91,158,100,128,98,198,247,36,113,193,132,181,254,5,176,104,92,221,252,165,246,12,162,254,176,83,155,43,240,2,194,131,4,166,238,178,16,48,173,147,82,246,218,137,140,21,140,206,236,233,183,17,19,25,28,92,57,125,14,33,53,210,27,38,45,244,144,69,187,185,125,92,104,255,132,8,240,98,1,73,72,129,116,15,145,164,105,219,95,81,240,180,253,34,38,172,206,247,76,61,57,152,96,72,174,36,28,71,57,41,27,5,200,198,26,185,114,139,109,70,133,36,143,125,204,162,219,112,49,243,98,29,213,84,145,52,147,111,67,249,162,94,18,86,251,86,168,222,199,208,252,8,26,17
 5,69,62,215,121,114,66,15,165,123,58,195,240,156,77,152,147,226,183,50,227,197,78,236,32,115,78,172,206,13,247,146,79,112,166,127,183,233,230,127,213,186,104,212,135,13,237,228,210,135,251,63,78,172,227,171,198,40,185,170,82,138,231,150,115,143,108,164,182,151,3,72,61,130,168,160,203,98,41,195,189,36,97,215,48,83,104,103,180,117,17,238,207,90,230,4,130,253,65,62,170,53,193,1,221,211,1,96,163,191,116,253,24,0,83,101,185,163,14,208,212,234,222,197,104,92,81,206,224,197,8,213,55,123,168,242,113,238,4,94,66,109,82,124,157,196,99,154,50,189,8,145,116,81,101,246,72,175,63,1,63,109,41,34,106,4,193,132,185,146,183,99,226,15,71,33,19,34,177,239,183,67,89,79,140,248,20,104,163,215,160,115,80,72,254,44,229,70,60,144,72,168,200,27,207,225,251,153,144,178,210,254,176,202,150,151,52,47,37,77,74,104,41,225,160,91,230,215,94,158,135,2,188,112,117,138,52,117,229,50,246,154,247,202,25,235,238,177,101,253,133,56,69,241,14,51,78,5,239,104,212,35,164,90,221,79,14,200,43,55,173,247,184,90,169,74,
 236,143,227,221,222,69,190,165,168,75,149,163,189,123,177,193,255,192,200,0,139,193,114,32,148,70,195,216,192,233,194,75,207,214,96,160,89,218,178,177,151,44,122,67,53,54,233,104,75,183,141,134,250,88,19,28,54,91,19,75,155,42,198,245,100,32,252,196,130,142,20,227,246,128,128,33,34,253,28,104,40,68,245,4,251,17,248,237,152,103,134,43,123,205,83,217,236,191,111,52,134,140,19,76,56,58,128,24,207,13,170,30,26,224,228,140,116,229,222,222,215,197,64,29,152,120,122,242,227,6,34,73,25,34,185,35,107,135,18,157,125,125,168,236,174,17,178,195,209,238,248,107,207,135,122,45,93,63,53,208,55,22,222,133,241,45,202,190,169,119,66,122,75,10,248,88,185,105,129,77,26,229,205,214,174,144,187,68,178,235,241,173,103,72,47,241,101,141,105,240,74,172,7,175,61,19,125,23,113,54,185,72,91,67,80,159,52,25,120,29,123,61,221,168,134,232,134,132,125,247,167,58,145,29,207,10,245,69,39,172,144,30,117,100,228,42,92,41,133,217,191,152,90,223,11,186,173,222,166,96,156,51,161,151,97,160,205,49,175,146,63,170,23
 5,175,105,209,79,168,77,216,123,230,224,158,82,56,156,138,44,187,54,60,11,102,161,8,173,42,189,16,159,73,69,190,129,84,115,201,110,146,78,230,146,226,250,74,248,183,0,6,238,144,107,20,245,41,94,202,172,218,220,95,33,97,150,233,206,186,38,106,108,20,205,75,48,134,49,186,225,122,236,179,163,21,97,196,46,217,185,100,162,11,106,220,110,213,42,189,99,14,160,50,159,3,49,228,199,31,126,45,204,210,77,191,154,159,59,102,98,151,107,83,187,164,13,88,3,42,4,202,130,121,127,250,233,170,165,81,212,122,137,210,193,149,170,216,44,177,155,22,28,246,238,9,2,172,23,11,55,201,2,96,50,126,246,139,13,207,211,183,144,209,53,245,141,193,78,15,205,147,176,102,31,128,137,79,13,190,124,190,83,227,23,245,35,234,232,124,110,72,133,80,69,148,35,56,162,60,211,98,214,248,63,212,77,13,245,66,77,179,40,163,77,193,136,28,83,234,41,52,70,135,24,230,20,151,162,127,222,252,110,133,13,164,151,143,199,254,154,236,178,212,4,217,20,30,80,175,59,221,65,176,193,80,15,184,105,52,43,114,114,186,106,126,106,241,129,83,11
 3,205,58,180,76,46,129,34,222,190,78,202,190,8,101,120,96,72,141,239,197,62,4,73,93,67,24,61,232,153,6,80,32,234,153,105,125,241,76,44,117,252,183,6,107,130,221,147,111,132,33,83,223,148,170,4,43,176,131,220,174,153,110,164,232,86,93,165,181,63,122,229,192,143,15,108,113,223,208,1,119,146,206,60,103,166,188,3,1,181,136,27,73,255,81,23,12,38,172,64,18,247,241,22,156,201,169,250,122,100,88,196,70,212,100,166,73,50,44,13,91,18,205,60,98,158,241,171,61,240,147,74,53,100,59,74,219,161,16,108,101,113,85,126,114,220,173,36,40,219,66,240,122,102,245,167,18,0,214,128,128,132,95,53,222,129,143,24,63,23,180,120,245,217,60,223,6,142,241,33,38,109,97,82,229,117,166,195,78,94,181,4,85,208,57,135,230,90,52,81,26,198,205,110,102,134,171,229,250,42,20,151,18,255,24,160,142,98,187,196,118,49,169,158,44,101,69,200,140,48,159,15,167,126,7,179,33,171,145,190,189,61,21,193,98,38,74,111,249,56,18,31,172,9,92,185,220,88,28,35,5,139,16,249,133,76,97,193,238,139,188,204,87,161,66,100,127,58,161,49,14
 1,108,76,151,252,13,151,251,234,32,73,129,56,157,150,228,244,29,100,127,159,36,191,252,88,82,61,131,51,220,23,137,109,226,199,94,67,198,142,198,216,146,128,124,154,24,108,16,161,202,185,1,183,182,203,161,35,182,58,53,210,100,42,233,94,99,2,44,133,185,70,98,128,225,200,245,171,108,103,124,79,159,134,55,178,133,163,146,71,174,242,41,171,111,124,211,201,232,205,205,183,131,0,19,68,220,174,248,26,25,229,174,139,190,42,153,110,88,114,5,170,43,159,36,119,41,42,184,16,20,7,112,150,51,225,228,23,251,223,115,35,183,77,2,244,5,233,128,74,129,238,173,215,70,102,130,103,99,237,41,251,64,20,184,106,33,109,86,187,101,123,77,243,60,169,23,133,167,58,63,229,109,225,227,199,34,75,64,218,63,249,125,226,82,233,8,149,237,133,166,24,168,144,22,41,151,170,14,238,81,211,16,23,80,122,246,92,253,137,131,23,13,0,59,17,194,131,38,183,44,197,130,103,49,50,10,11,77,156,10,88,15,67,22,155,140,22,96,247,90,51,5,56,188,210,81,137,233,41,183,76,87,163,179,75,103,51,216,153,248,196,61,245,212,184,200,155,222
 ,149,42,197,112,7,180,34,173,157,209,240,15,127,10,103,137,172,158,72,102,107,23,15,49,135,146,198,72,245,166,33,183,215,20,124,13,165,41,133,26,36,14,117,69,38,220,14,183,41,7,244,201,149,214,20,50,208,23,118,33,20,216,32,80,159,98,167,36,152,137,202,209,126,90,155,255,236,241,184,255,36,237,102,0,7,84,244,105,230,34,228,33,255,4,210,102,41,32,5,246,8,134,39,33,104,179,195,124,109,47,78,195,91,159,89,239,58,205,185,65,117,110,75,205,67,138,157,133,95,149,24,75,216,254,72,172,137,171,188,131,89,176,194,89,43,92,121,134,167,46,49,237,216,125,3,13,209,213,118,162,40,254,123,128,115,138,50,115,1,2,42,170,42,209,223,237,254,112,55,84,198,254,183,35,37,129,73,94,58,153,108,79,205,73,109,165,223,75,194,0,253,46,32,233,69,236,227,191,232,69,108,242,94,88,16,111,103,5,74,80,90,120,176,25,180,253,195,72,138,147,152,3,56,64,255,122,218,4,120,166,131,151,138,156,223,172,90,195,143,149,240,254,213,159,246,69,90,141,81,212,19,47,87,117,239,24,178,247,82,170,227,242,137,227,173,74,39,82,5
 2,5,203,94,84,242,196,95,88,224,121,82,36,47,3,248,165,64,61,151,206,109,245,164,239,218,46,76,7,95,190,81,59,237,159,5,26,35,34,110,136,51,9,210,9,237,158,88,3,139,164,163,43,202,204,33,128,44,160,18,0,136,33,45,242,102,48,158,235,129,181,91,88,15,202,35,75,248,155,16,106,220,82,51,38,190,223,193,126,49,81,241,135,116,34,95,255,91,218,29,110,185,100,228,4,215,130,96,96,47,10,124,73,200,166,90,74,134,22,144,224,21,67,204,212,32,26,47,133,237,173,32,148,206,226,41,225,174,63,148,211,145,163,71,240,212,75,108,177,48,98,48,22,198,132,67,9,177,255,70,222,199,162,151,248,67,151,58,92,238,120,96,165,190,116,242,74,196,80,0,20,61,252,62,165,108,42,161,6,125,84,167,8,150,195,156,17,42,159,242,47,58,192,29,17,210,115,58,147,127,149,91,3,73,107,195,131,52,54,57,159,15,151,117,33,33,88,93,114,235,111,47,178,178,124,150,10,10,165,164,80,89,89,141,187,101,228,222,229,170,137,121,173,200,62,48,204,49,244,87,31,79,247,246,148,173,183,138,11,92,85,238,56,14,117,241,245,114,193,54,184,143,12
 ,71,208,80,181,22,176,49,108,133,88,80,231,85,71,26,144,187,185,168,16,25,118,15,183,42,40,157,173,62,211,242,241,240,245,211,60,235,207,188,33,136,19,38,247,131,144,15,177,142,15,157,85,18,107,198,144,207,94,115,138,253,204,175,190,7,136,118,121,216,91,220,120,145,123,228,47,97,167,58,199,31,66,142,154,136,27,211,105,90,140,148,80,248,219,171,156,129,29,14,132,230,241,210,43,248,8,71,254,30,82,131,63,2,43,105,21,131,5,52,13,63,75,68,23,142,77,231,41,55,211,152,99,201,194,220,144,86,21,89,64,210,111,42,200,156,254,52,114,172,111,113,206,93,212,56,12,168,154,64,131,21,115,227,140,137,224,238,45,60,243,197,203,148,59,118,230,207,49,231,115,170,191,167,63,1,95,28,91,241,131,150,95,27,4,47,46,193,12,149,226,204,165,97,192,70,200,245,172,60,99,58,12,42,51,40,127,156,84,113,243,109,214,179,249,246,219,150,150,14,238,229,66,229,128,247,242,70,199,128,28,72,249,156,195,112,78,200,203,23,4,106,110,86,210,38,181,90,15,14,67,80,32,138,140,161,174,62,35,60,107,37,68,246,28,135,125,121,2
 42,85,40,48,189,103,150,239,153,78,178,150,146,115,160,137,44,70,208,215,44,178,41,207,134,117,20,174,159,195,179,106,185,135,241,127,112,84,71,183,233,5,15,173,215,173,2,216,231,228,157,180,236,171,175,63,113,97,64,154,63,137,212,187,110,222,107,139,154,92,239,182,211,31,103,199,242,140,100,193,236,34,157,79,85,96,250,129,46,252,128,66,70,248,46,149,240,180,191,108,235,143,168,77,65,54,120,1,149,170,124,145,76,193,212,101,189,161,171,184,89,77,125,3,225,142,66,188,96,153,64,246,244,66,159,111,223,165,72,144,164,106,227,31,0,251,214,161,52,78,190,166,161,20,94,225,155,163,190,189,95,74,128,58,234,198,60,73,80,154,55,253,10,181,227,12,41,123,97,95,178,234,233,162,7,207,29,89,173,163,201,150,26,212,165,170,143,30,18,127,137,255,173,187,186,30,230,78,164,248,162,148,59,67,119,16,83,179,229,194,203,165,196,21,194,200,17,202,23,227,112,28,242,132,127,46,244,202,44,9,92,199,155,108,21,214,157,95,207,29,223,242,132,224,177,231,164,138,1,243,59,150,72,26,215,191,200,147,18,65,191,3,
 212,168,222,104,207,157,247,104,198,48,84,194,8,15,251,172,65,36,141,169,160,74,108,36,136,126,104,68,140,110,211,163,195,97,15,19,75,199,108,218,163,86,239,78,61,31,105,64,67,234,46,70,145,9,28,211,144,245,51,62,12,232,123,151,46,168,142,228,173,208,202,173,245,238,235,32,235,21,58,173,38,185,177,235,119,6,162,167,80,72,19,165,77,106,36,200,87,86,132,58,241,122,69,39,120,33,100,41,123,58,69,48,242,213,214,37,225,10,70,104,179,180,204,233,102,148,150,201,146,82,214,11,13,38,224,151,235,26,216,238,27,26,139,244,43,158,52,104,131,204,69,94,136,0,148,8,84,139,141,173,79,194,226,120,28,65,199,197,9,87,26,117,244,60,136,121,115,185,208,24,29,249,70,186,223,86,50,0,59,97,0,3,48,232,30,53,86,254,122,105,208,242,242,72,68,19,190,80,38,189,44,67,13,254,61,241,161,195,185,239,129,4,231,41,226,4,111,43,164,12,120,91,31,195,173,250,125,116,235,175,232,53,248,83,101,9,4,248,190,254,214,237,209,43,254,98,111,137,0,63,154,232,101,106,54,6,39,204,56,56,80,68,110,60,92,4,214,195,60,79,107,10
 8,171,203,62,168,16,197,16,205,197,192,193,130,41,77,29,141,63,34,46,244,97,96,226,172,139,232,145,193,145,1,32,147,233,3,63,234,222,247,94,99,175,4,250,208,91,135,91,90,194,188,207,62,54,162,77,159,180,113,13,228,239,130,73,62,97,87,122,16,43,102,146,56,41,201,150,20,55,108,24,23,254,52,181,162,8,27,42,158,250,228,64,76,15,55,160,92,88,160,100,82,118,84,159,52,18,131,188,101,0,37,101,18,65,227,55,107,241,38,155,183,59,125,253,195,186,183,216,129,73,150,252,212,133,225,239,128,248,53,128,37,44,188,7,155,107,247,213,126,169,37,134,103,62,204,165,181,204,93,129,92,234,24,45,122,241,57,239,241,18,127,199,0,116,120,111,111,249,127,105,250,124,181,109,151,180,249,55,122,146,88,174,197,181,102,164,66,26,79,60,248,204,208,109,12,23,161,75,92,90,159,240,162,6,137,128,31,140,193,132,110,86,187,177,186,158,181,101,179,241,89,246,238,232,117,45,11,56,70,22,244,149,175,44,220,61,60,253,125,123,193,244,90,116,178,3,216,149,212,0,222,146,116,58,207,153,151,200,195,93,51,101,119,228,222,68
 ,245,107,76,81,81,52,198,215,123,174,237,119,96,30,157,47,176,23,121,37,113,61,114,42,148,190,92,71,63,137,147,145,144,191,19,175,24,186,46,108,226,142,139,35,142,25,221,27,154,171,229,231,214,102,13,32,133,109,241,3,167,238,202,223,160,182,224,104,215,128,32,82,65,115,31,137,175,200,45,105,187,182,164,119,244,240,98,148,184,239,37,141,233,158,162,68,2,190,16,39,76,41,55,119,100,2,181,32,228,219,254,190,163,219,30,32,230,81,26,34,42,176,229,248,173,81,148,131,172,13,101,152,114,236,37,166,64,15,252,234,254,180,248,144,180,80,109,141,232,86,59,229,58,173,204,47,249,205,83,176,44,39,135,92,254,118,61,93,240,139,252,143,9,230,150,48,188,12,217,104,160,255,244,216,200,74,199,92,189,223,143,67,53,235,92,46,161,43,75,190,218,87,188,0,22,245,103,54,43,24,51,154,136,101,218,153,10,123,247,93,147,78,65,211,13,112,137,12,94,128,127,141,104,213,157,153,76,195,25,250,22,83,125,108,72,118,89,14,164,191,188,177,173,147,199,177,118,223,45,157,174,207,140,32,247,176,92,233,136,100,185,132,1
 91,85,35,36,180,48,147,142,48,226,115,70,151,37,100,60,69,42,38,216,214,135,135,203,132,231,250,164,188,250,242,155,246,226,86,122,230,46,41,171,19,219,133,61,232,203,180,37,162,238,113,35,226,73,106,18,33,159,255,48,208,115,33,94,172,78,202,133,171,17,204,118,92,182,41,143,224,184,88,108,95,199,165,25,178,216,235,52,216,226,52,145,49,13,51,87,99,250,255,92,179,193,82,74,236,78,72,158,41,24,135,222,34,15,60,39,88,18,206,120,108,80,147,247,97,120,209,53,102,92,235,105,142,153,166,105,97,138,216,42,183,247,50,33,74,137,92,141,153,187,153,150,76,229,191,213,231,224,75,187,178,16,225,84,153,173,10,27,235,64,171,255,49,104,132,216,7,243,12,176,51,101,94,155,222,67,5,97,228,248,31,251,216,185,17,70,23,186,117,107,246,129,249,50,109,175,96,31,103,209,192,218,250,28,49,121,22,253,182,128,66,238,103,104,165,155,194,171,218,224,118,26,126,12,158,151,172,70,174,171,138,150,169,158,79,241,70,144,137,240,73,217,214,188,182,51,142,9,100,164,23,30,127,94,62,141,187,145,185,42,4,90,173,208,
 136,74,24,196,216,98,20,99,110,197,166,126,94,110,238,46,51,213,10,210,153,127,229,113,238,41,165,5,65,129,55,202,222,112,249,206,9,47,108,15,32,167,90,21,57,239,173,33,208,95,17,12,78,146,107,116,148,219,211,54,191,5,241,86,79,15,147,241,108,187,61,14,200,18,119,4,211,179,113,180,83,66,192,74,21,146,225,177,139,9,60,32,135,144,166,65,76,16,220,120,78,227,249,7,235,33,64,124,105,135,225,63,48,234,86,35,248,87,219,205,92,38,165,62,156,204,179,215,225,28,70,166,126,148,195,195,255,247,209,2,103,64,249,143,140,134,96,160,184,43,250,67,229,228,205,91,62,182,237,63,209,82,100,37,121,198,148,109,230,208,70,180,131,68,137,247,18,143,64,7,57,151,150,75,154,31,194,185,80,196,5,0,38,38,30,171,194,37,89,72,151,33,2,98,80,4,20,15,41,144,60,67,51,78,120,225,247,11,174,164,71,249,176,237,55,114,243,29,229,173,58,250,157,155,229,35,53,20,177,181,252,72,131,8,62,43,145,137,117,110,238,138,106,131,155,191,134,73,72,89,61,113,181,177,29,208,18,115,250,138,235,118,70,232,96,84,114,11,255,10,22
 9,246,179,96,146,75,76,156,53,212,155,177,65,147,244,153,59,156,177,227,224,193,183,27,82,117,162,31,149,17,98,154,132,225,125,84,184,207,55,201,209,19,81,178,56,207,39,172,131,44,179,6,125,29,28,217,177,115,41,60,156,217,124,175,68,185,194,38,53,25,117,241,175,187,160,98,216,122,171,182,60,97,192,91,188,178,215,25,46,162,13,152,203,232,184,73,26,6,20,255,197,15,142,117,138,56,250,37,180,51,107,118,229,92,50,39,106,204,201,201,245,87,117,154,205,158,251,12,52,231,144,63,199,112,105,37,105,126,92,101,12,143,129,31,124,106,39,67,6,181,44,69,50,47,176,10,94,63,218,197,200,66,218,207,223,122,220,255,106,132,233,224,58,178,122,33,5,59,59,82,91,236,158,93,87,185,96,57,214,133,245,169,12,80,14,17,193,175,144,223,160,194,111,204,198,27,211,117,151,229,225,228,17,18,141,215,208,16,145,190,231,6,133,31,158,48,127,51,252,132,177,73,211,97,250,167,157,6,160,136,99,180,11,243,169,230,243,62,103,85,176,185,30,155,131,70,191,72,232,245,246,2,213,21,111,211,74,139,49,72,253,233,254,240,113,
 77,113,1,57,61,183,212,226,173,27,65,32,68,119,170,105,29,169,238,112,156,119,157,197,37,114,37,250,60,174,134,66,37,157,164,138,150,18,50,27,130,93,254,159,68,176,100,180,110,89,184,209,129,233,86,206,208,8,16,211,106,140,228,16,30,163,237,165,127,40,167,197,173,248,154,215,235,115,124,71,63,62,236,215,253,29,173,56,43,144,142,110,57,128,176,108,4,210,245,21,148,92,24,50,40,16,53,143,62,165,143,37,81,223,206,75,76,214,63,144,103,240,92,132,134,178,118,50,95,63,254,59,0,16,128,103,159,45,185,180,56,215,31,243,142,111,195,138,88,54,224,235,252,125,132,69,155,148,154,141,27,73,114,109,151,22,72,64,106,110,203,44,169,198,241,166,193,48,59,164,162,92,210,166,30,250,213,104,189,66,16,219,252,252,225,33,88,47,205,5,90,69,9,140,28,82,51,106,122,230,64,127,235,110,237,198,221,179,133,119,108,239,193,38,65,14,248,66,183,62,25,115,29,210,1,41,22,98,55,49,83,187,110,102,142,240,28,74,80,242,128,132,15,97,73,65,8,177,215,0,254,8,188,173,255,78,21,239,125,63,40,134,5,164,236,19,172,29,15
 1,118,168,104,224,23,235,37,104,104,51,147,208,201,187,42,88,187,84,135,99,136,192,52,137,218,12,199,148,68,120,75,55,1,88,240,97,114,8,49,78,70,104,35,209,196,179,14,218,210,34,109,190,12,73,43,39,10,95,250,185,12,73,90,145,85,18,245,1,84,11,242,14,59,212,231,42,94,209,29,160,5,194,228,66,12,79,226,178,20,57,83,34,96,248,150,113,80,205,183,30,15,62,100,163,115,236,219,213,170,254,242,61,112,253,139,41,145,17,34,239,10,232,198,227,63,52,194,200,100,95,89,57,106,59,55,182,191,108,162,131,55,190,52,183,216,90,104,20,240,60,11,50,137,132,41,59,45,227,148,230,67,47,250,136,5,160,233,40,29,96,204,226,76,148,133,104,200,188,185,149,238,126,147,247,191,26,160,240,105,181,7,10,127,56,235,170,242,161,151,251,140,192,14,68,79,41,113,248,82,247,132,108,160,72,4,144,196,238,103,62,47,188,217,187,235,48,107,206,233,223,249,200,194,82,65,133,30,224,124,64,230,86,58,123,142,150,252,67,179,0,134,63,243,238,150,173,200,236,109,212,201,105,252,190,163,61,149,40,179,129,44,10,181,11,61,65,230,
 51,25,130,204,49,192,245,104,161,15,184,51,104,94,226,108,176,57,96,235,134,29,233,146,78,9,174,92,3,67,233,37,66,238,216,69,113,216,174,35,156,105,88,214,90,141,0,134,43,183,203,120,129,21,178,124,55,55,34,122,56,138,94,59,192,22,30,255,112,219,31,123,187,59,190,183,202,227,201,160,1,113,187,51,144,125,14,147,202,159,254,73,206,99,198,24,246,74,102,106,6,137,2,218,150,121,57,229,154,129,74,14,83,228,41,35,141,227,64,93,217,115,250,193,50,250,51,229,229,117,99,32,131,79,121,19,24,198,232,72,254,170,212,253,214,85,129,137,200,7,244,235,22,92,106,190,249,39,204,85,119,58,110,23,110,157,103,168,3,116,24,56,153,79,87,127,138,159,114,226,8,224,50,10,152,52,251,54,171,157,159,133,204,51,144,80,51,164,125,15,99,166,9,15,120,62,75,234,140,96,15,82,118,225,107,45,171,10,232,177,223,141,228,180,158,179,167,96,196,229,216,22,134,98,92,205,160,253,17,22,243,88,127,1,147,99,224,79,140,239,215,214,53,188,240,189,138,69,48,195,24,164,24,183,133,28,209,135,217,64,74,73,127,187,106,158,106,1
 66,182,94,66,102,119,62,84,118,112,146,139,97,84,20,178,76,20,222,104,176,7,233,64,160,103,251,222,26,230,149,127,74,52,88,183,138,28,199,202,180,177,206,89,107,174,54,177,110,197,202,87,252,76,195,77,162,99,92,231,82,3,4,40,59,82,211,154,246,18,211,251,107,81,76,205,25,13,37,58,144,32,220,162,205,170,169,85,178,67,82,235,21,254,189,252,232,18,148,217,40,15,38,41,3,164,76,117,92,206,123,151,71,51,76,109,148,91,222,115,137,91,236,95,86,89,135,6,5,85,45,97,124,116,177,239,92,34,24,68,56,192,3,51,245,89,113,118,91,250,182,82,17,122,222,56,152,204,101,49,148,3,76,114,155,26,170,38,219,199,202,246,88,176,93,126,204,65,81,185,67,53,221,45,235,83,17,91,11,65,58,203,92,6,70,191,91,83,251,126,233,222,30,71,105,72,153,205,78,74,94,143,35,111,166,111,197,187,58,176,162,168,46,74,203,56,14,184,253,202,189,83,109,200,129,38,3,200,253,190,56,86,209,105,61,108,119,171,17,44,199,133,162,233,6,152,46,82,28,113,73,115,196,248,0,170,72,158,243,45,174,229,110,34,8,30,29,238,67,133,80,66,222,79,
 166,130,94,251,151,118,110,91,138,174,215,157,152,245,158,67,255,114,45,250,226,217,254,88,232,68,155,181,188,24,189,180,60,90,241,188,29,179,128,230,66,118,235,115,165,213,162,52,248,254,3,86,210,207,205,22,49,107,37,141,150,209,216,9,142,234,230,212,90,119,37,141,40,249,62,36,99,111,119,49,111,25,53,70,216,101,39,44,52,75,154,22,99,6,55,153,232,143,169,242,107,75,154,119,245,114,32,156,73,166,128,109,88,65,228,36,53,211,50,53,227,96,156,126,21,31,96,163,19,16,148,123,81,226,69,160,218,144,7,33,201,237,110,53,72,146,249,1,31,87,4,178,19,12,205,37,228,162,214,121,230,168,155,231,184,43,94,164,17,198,1,251,240,122,52,97,251,153,162,212,95,157,117,238,117,235,31,222,199,61,65,41,21,130,134,73,233,27,204,255,254,153,249,138,59,123,124,57,226,205,190,166,102,14,21,76,111,163,9,222,49,109,176,179,245,46,126,251,232,136,188,241,232,77,111,240,216,246,165,96,201,210,129,254,168,35,74,86,52,77,213,44,93,68,188,134,21,248,154,147,144,141,22,243,242,92,110,63,158,69,34,72,34,198,73,11
 1,171,189,130,85,107,180,100,244,175,47,236,34,226,66,199,220,210,33,168,190,40,144,88,70,33,132,143,207,83,57,93,162,59,99,219,119,92,228,97,210,33,164,199,91,15,141,119,89,207,191,193,6,154,51,14,112,175,243,109,25,23,250,247,240,64,173,146,231,139,177,241,253,182,170,224,236,13,128,244,93,50,11,58,151,227,35,56,181,22,186,77,251,6,25,189,146,137,221,233,233,15,53,59,13,1,217,196,192,164,155,107,108,86,128,192,27,185,225,161,208,101,177,186,242,33,188,171,148,103,67,159,128,190,66,1,58,18,196,90,152,119,43,126,143,3,8,46,182,148,192,16,47,81,87,226,215,132,242,248,39,92,223,163,80,67,243,44,56,45,249,181,199,171,6,255,190,8,36,145,24,245,194,151,21,100,29,206,101,141,105,67,19,207,178,221,59,69,223,248,41,22,6,153,30,159,167,232,108,163,69,71,48,87,195,85,47,173,107,88,112,243,93,252,147,177,21,117,9,77,178,220,109,173,89,121,35,179,178,44,228,126,50,173,102,14,188,160,0,128,57,114,37,134,163,12,218,162,26,140,200,108,116,173,152,126,234,64,172,72,192,245,112,48,234,169,16
 9,100,213,205,227,66,193,255,41,249,78,1,143,111,20,12,200,0,152,67,125,234,12,121,56,15,1,88,144,230,32,2,56,170,203,90,98,187,196,21,74,10,195,54,27,179,220,61,85,124,226,88,11,181,50,245,166,58,14,217,119,31,198,94,114,205,125,141,75,162,120,184,133,27,114,86,81,118,252,72,183,13,36,216,148,218,62,132,199,155,109,198,117,98,23,55,135,175,219,137,173,114,171,7,8,220,196,196,7,45,244,72,22,93,129,171,165,8,104,174,230,226,124,10,169,63,225,60,77,156,90,150,173,29,135,103,67,246,98,158,157,229,71,190,166,24,234,148,123,54,148,121,59,8,112,169,152,66,29,48,238,172,5,11,248,236,73,157,57,84,254,66,115,80,22,109,209,58,41,28,189,56,198,143,77,84,119,148,148,45,202,124,206,47,56,125,15,94,236,175,211,83,76,70,93,6,73,112,136,150,95,254,104,78,125,235,5,243,114,10,52,242,80,228,228,42,69,10,149,251,103,11,121,181,76,191,254,197,178,211,131,45,104,88,202,146,16,236,240,21,53,222,153,221,190,45,53,47,95,53,255,131,110,112,218,70,251,189,180,205,225,18,117,215,22,37,87,176,111,91,9,
 249,4,126,152,114,225,165,125,3,106,32,164,214,201,89,43,194,99,40,161,248,167,35,97,253,9,160,195,56,42,163,47,34,157,167,236,230,130,226,48,32,52,76,237,203,48,128,78,45,85,149,237,166,91,226,120,74,8,226,64,67,76,236,173,173,87,178,39,96,66,155,242,199,218,149,82,42,123,203,248,37,171,66,6,8,153,145,169,58,55,217,165,91,194,39,29,127,228,47,104,110,241,123,217,97,118,120,87,78,112,228,82,169,26,101,106,244,9,145,29,231,125,127,153,146,142,71,220,104,158,40,59,71,27,142,158,250,37,91,14,144,6,8,115,65,134,39,249,26,223,203,162,223,244,184,222,215,144,253,45,192,184,147,143,90,165,196,206,44,43,240,180,67,68,15,160,242,224,158,57,9,124,48,194,218,193,105,151,195,199,233,161,110,133,226,141,97,229,47,201,231,163,103,60,43,226,155,167,131,246,156,150,239,127,63,144,154,137,68,215,58,134,14,118,135,198,165,57,97,22,83,208,242,183,194,209,92,102,189,24,215,70,71,17,215,85,163,154,54,136,165,100,102,115,7,239,217,138,53,115,110,109,196,222,33,15,222,86,112,255,186,118,39,7,196,2
 9,206,85,181,140,227,128,89,69,66,24,1,181,166,165,181,74,225,168,176,197,3,28,6,216,232,74,210,94,194,239,141,179,166,126,17,216,195,38,110,123,44,148,186,124,84,164,196,210,2,208,180,20,165,92,93,178,80,146,157,77,45,63,185,202,91,246,154,81,26,189,23,84,151,15,157,85,201,213,169,252,127,57,194,72,117,189,51,234,132,164,241,165,184,84,206,133,2,21,90,6,214,28,94,165,26,76,189,114,112,1,198,88,109,227,6,87,239,204,242,193,140,22,167,195,161,53,181,225,4,132,47,100,93,87,63,7,4,9,165,153,91,68,248,176,51,68,249,85,168,205,188,189,68,65,136,235,221,186,158,105,202,38,138,246,237,67,14,44,39,25,70,70,217,232,171,234,223,190,177,248,230,238,55,81,179,236,55,172,103,10,114,94,216,193,178,169,216,183,227,10,106,65,226,141,43,28,98,242,238,94,224,56,16,226,117,121,248,236,167,119,7,217,71,121,93,0,131,174,12,13,22,250,112,109,200,195,169,38,157,54,45,103,215,180,16,119,210,198,19,173,120,180,143,105,30,230,89,143,66,125,99,142,32,11,214,171,6,140,102,61,135,175,103,169,149,149,75,
 110,255,133,29,249,123,100,69,81,102,230,205,90,111,21,131,216,202,57,209,103,202,54,1,28,173,83,28,208,22,162,74,54,238,51,2,162,66,87,200,194,179,126,247,12,25,168,52,58,75,50,35,121,143,159,159,234,186,124,125,157,86,128,179,89,230,40,5,137,181,252,37,178,133,59,99,121,2,109,47,45,179,166,48,91,112,177,114,73,24,44,236,230,9,160,199,224,84,223,131,37,181,254,2,251,26,136,55,65,116,188,100,212,91,124,128,53,110,211,32,119,69,60,236,221,216,156,162,115,203,44,186,36,253,20,72,251,180,173,51,137,181,163,120,11,97,158,20,241,18,79,93,35,118,242,27,249,159,210,48,88,205,104,128,49,185,162,55,174,175,59,32,13,196,237,206,158,203,98,69,120,73,88,105,119,179,234,122,154,191,93,179,125,61,212,37,0,237,201,40,248,128,3,54,29,161,248,131,169,97,158,16,158,57,131,172,43,90,242,171,182,131,23,230,90,199,163,106,170,80,179,137,210,207,62,225,160,153,20,145,218,220,65,137,206,254,15,148,132,233,128,40,224,61,51,118,171,115,118,73,205,140,56,80,110,41,54,41,159,43,139,57,38,138,251,161,1
 77,148,68,159,87,35,15,161,180,68,89,60,121,26,249,78,140,163,255,110,216,82,96,102,210,92,21,249,245,90,190,188,198,190,192,14,70,116,18,215,237,100,195,192,55,15,112,239,162,217,194,86,143,38,17,62,248,211,194,100,55,204,114,85,146,160,39,224,18,244,96,190,166,195,129,236,189,68,184,150,76,159,54,70,1,221,7,227,98,65,196,208,128,184,46,176,111,132,106,143,73,42,108,217,132,100,215,220,16,43,137,226,104,56,89,154,223,198,126,222,85,189,31,192,176,169,248,137,100,246,198,10,51,44,68,70,240,191,79,176,85,97,97,43,106,31,250,175,115,104,43,2,83,244,134,106,210,41,0,144,163,98,180,146,143,44,248,140,112,146,87,159,24,176,255,48,168,208,241,80,241,235,37,88,67,189,247,16,88,178,110,231,6,214,110,200,94,254,32,121,77,196,88,163,243,150,33,6,106,147,67,250,136,88,83,141,32,10,176,85,192,48,207,240,129,58,175,167,61,154,43,61,19,227,201,133,58,172,156,45,50,75,86,11,215,9,97,212,208,98,193,56,231,244,3,10,248,247,237,83,125,6,215,118,123,76,222,38,159,169,235,160,67,250,253,174,152
 ,179,15,137,18,233,179,49,209,221,42,31,110,246,28,37,59,197,147,38,7,81,57,187,190,111,36,243,49,163,115,144,216,39,33,245,74,54,216,67,89,222,107,98,230,34,64,246,140,139,178,211,60,183,156,181,16,140,139,154,54,189,148,207,202,173,231,12,214,189,249,112,64,226,129,162,215,194,155,91,129,223,117,144,129,71,118,87,251,48,95,205,169,143,150,19,117,218,173,202,185,201,175,52,194,74,195,50,50,9,16,254,63,223,107,204,170,195,0,169,118,30,78,92,66,161,192,138,189,56,27,137,213,222,110,17,104,243,93,240,126,74,93,92,105,172,137,246,224,106,28,78,63,104,180,144,247,212,122,8,114,71,238,162,182,61,61,246,140,123,185,48,15,177,92,248,115,44,111,196,202,183,6,107,89,7,173,107,28,52,27,226,145,28,158,32,241,204,213,194,251,154,39,38,153,109,73,141,150,33,104,44,94,105,94,133,122,180,54,160,210,27,101,231,206,214,141,132,8,21,157,244,209,96,102,250,214,96,70,167,74,56,117,147,74,46,114,41,35,54,15,103,21,203,211,253,181,106,175,137,255,67,169,128,242,171,82,123,116,80,242,57,141,116,47
 ,246,133,48,108,64,176,52,18,227,75,173,149,2,226,144,91,18,17,162,63,45,51,61,129,107,146,123,169,61,162,94,180,149,209,221,55,132,188,35,50,140,233,41,97,111,54,163,45,184,33,151,255,209,244,46,56,15,191,189,226,229,100,176,215,222,240,121,114,119,242,154,77,164,101,6,87,221,109,177,24,2,166,75,74,125,30,52,53,94,226,185,172,99,41,135,12,113,71,190,93,185,224,179,8,162,31,97,212,119,76,129,170,32,212,197,153,189,74,62,143,85,197,40,246,248,48,200,59,10,47,152,171,192,134,112,234,67,201,4,54,193,68,94,8,0,67,113,205,75,68,181,52,246,69,86,42,105,53,249,140,138,83,7,93,251,215,68,211,103,91,151,0,53,30,86,194,148,32,201,233,91,2,12,122,192,236,18,58,226,229,245,50,228,213,172,247,89,220,249,246,80,22,52,38,13,130,97,190,206,162,3,178,81,39,182,153,252,235,113,125,215,175,194,170,174,214,158,214,109,64,218,243,96,196,61,54,110,211,70,24,158,16,110,14,215,115,116,102,71,218,77,179,202,36,104,149,183,147,34,3,98,155,236,218,138,47,90,46,60,68,184,73,198,67,186,53,120,222,72,219
 ,236,65,129,152,196,226,182,117,254,76,182,74,57,94,205,58,238,92,116,127,155,158,219,61,101,45,199,217,168,160,147,121,9,78,89,207,204,243,180,3,41,48,20,32,95,31,96,114,200,81,210,46,198,159,249,210,229,15,226,81,54,73,38,113,255,71,220,69,6,165,5,123,49,253,107,138,23,244,128,102,124,84,202,92,115,185,160,7,201,113,224,167,167,93,197,58,47,106,58,253,76,239,141,249,161,234,128,110,228,144,37,25,69,5,168,193,34,71,225,100,105,55,43,13,214,101,254,67,85,118,233,144,46,56,2,50,97,7,144,156,58,170,118,203,112,2,207,46,45,60,131,120,76,117,178,183,34,79,178,169,122,121,245,8,255,24,88,192,216,41,83,184,206,101,239,188,143,117,197,19,243,77,53,86,230,96,172,59,82,73,169,241,215,63,47,145,57,248,131,30,158,132,37,52,55,147,168,121,221,151,6,126,130,161,203,189,220,131,176,139,238,43,41,71,91,48,183,105,52,136,218,76,244,199,28,63,156,241,134,188,171,23,147,75,185,167,3,98,86,146,249,184,5,182,52,68,211,205,105,83,127,206,42,254,78,91,46,205,151,177,23,216,37,34,252,254,86,126,40
 ,24,123,82,137,251,164,210,226,62,116,186,77,51,214,116,230,199,120,116,224,16,201,175,46,123,181,68,93,22,176,6,212,160,166,207,88,166,185,42,18,80,124,112,207,122,113,97,57,81,39,39,110,244,207,192,6,166,180,55,114,168,58,210,8,223,101,73,29,55,127,226,70,211,24,47,25,193,133,138,123,211,239,160,24,66,103,160,17,100,124,27,151,191,51,23,50,108,202,186,47,188,239,217,154,92,76,209,171,176,165,156,57,135,217,167,228,55,135,215,253,44,51,227,130,98,200,129,13,211,23,15,239,212,153,128,164,72,203,159,47,164,102,170,202,116,133,88,96,230,177,112,199,128,136,169,131,108,196,143,54,66,0,255,128,224,173,218,112,85,68,204,238,2,144,192,106,202,198,144,98,239,239,192,96,155,164,147,218,207,115,178,194,71,106,177,90,77,14,114,254,232,62,153,58,246,133,170,161,217,243,111,71,174,99,126,186,208,210,182,131,66,2,72,208,181,162,120,196,79,132,120,95,202,183,229,193,130,122,148,98,20,55,248,173,252,70,194,240,82,24,216,96,22,2,162,8,111,37,150,110,60,223,242,57,61,73,169,242,157,228,199,8
 9,190,7,89,92,104,80,239,94,151,227,25,222,212,1,61,145,167,219,8,86,89,188,140,187,149,217,116,182,154,138,18,8,70,186,118,143,184,153,176,200,169,182,171,28,231,46,58,210,166,59,207,151,139,166,65,204,138,107,66,173,237,250,105,107,11,115,198,178,84,118,230,83,49,146,239,134,238,99,70,132,177,240,94,83,220,27,35,11,201,249,29,195,133,118,129,110,93,199,10,43,52,119,10,3,204,164,226,45,105,63,136,69,79,214,247,225,54,61,44,230,51,222,99,25,40,76,177,149,56,18,46,36,99,105,4,49,4,254,5,226,17,70,119,247,208,33,149,150,71,214,113,156,116,34,212,114,134,250,168,98,170,139,199,39,20,43,207,78,26,171,169,143,191,157,204,100,178,127,241,29,34,210,89,243,168,39,135,48,92,108,230,103,93,144,20,183,46,31,170,57,245,222,250,217,143,123,189,69,147,76,140,37,135,10,68,66,116,189,250,201,181,60,230,137,224,240,122,162,37,107,57,212,213,85,253,121,16,207,199,124,152,56,13,152,154,130,237,72,232,13,13,63,175,68,157,156,107,102,131,177,88,115,184,81,108,160,231,118,60,85,103,238,137,20,143
 ,224,57,220,221,206,96,146,138,234,178,112,253,144,116,227,130,176,181,65,181,19,104,20,4,182,198,191,100,220,110,192,5,249,212,173,244,231,54,255,30,217,215,35,136,83,135,2,136,105,78,217,90,1,126,200,124,30,127,1,185,20,250,23,177,190,189,191,194,113,149,16,230,197,185,166,223,191,237,99,17,220,205,235,158,98,16,156,36,42,188,197,255,75,219,160,52,191,254,68,139,66,185,217,148,119,183,142,1,64,176,70,219,207,216,90,10,109,59,36,69,161,182,196,64,87,1,24,228,139,55,128,99,101,214,38,67,119,7,231,22,36,50,229,44,252,33,106,18,219,238,166,162,151,63,171,79,207,139,152,206,215,245,60,54,157,44,209,130,89,208,132,239,82,79,208,70,0,211,37,88,239,211,172,254,47,29,174,94,73,179,180,53,65,161,95,146,191,107,240,34,114,174,201,50,4,235,239,176,175,80,138,219,228,59,43,190,186,88,144,203,250,176,192,62,181,63,238,234,222,190,161,37,41,110,179,253,172,209,183,207,184,53,23,84,184,63,235,54,245,31,62,179,214,32,242,77,250,63,12,78,193,86,191,242,80,109,248,248,204,76,170,215,50,25,19
 2,127,154,79,104,108,31,129,175,86,127,156,35,233,162,59,251,216,172,146,40,59,16,154,8,217,155,221,37,158,106,74,98,189,2,6,206,135,53,250,223,195,40,45,14,112,156,84,209,129,155,177,70,37,19,160,22,226,46,160,248,25,42,71,176,73,90,190,206,131,201,20,115,173,180,55,120,41,11,123,64,237,243,74,140,171,194,254,141,247,46,123,236,63,36,100,123,59,114,67,240,65,94,109,222,248,114,65,214,218,178,139,69,77,133,226,244,120,160,31,4,55,107,200,78,45,8,60,174,143,253,139,63,22,77,193,184,166,186,155,78,149,154,132,182,8,49,160,173,117,134,129,154,238,21,0,111,56,209,70,165,255,46,5,8,231,32,236,250,72,118,208,69,106,217,215,39,206,249,35,51,182,98,87,190,48,137,99,104,57,167,55,99,144,102,10,253,130,129,28,77,72,174,65,133,64,96,233,134,56,38,229,66,64,62,7,77,60,86,228,71,31,49,161,94,114,28,154,202,11,63,226,9,214,192,48,252,72,22,222,0,149,245,222,225,127,29,207,145,57,54,208,126,42,125,178,39,23,100,224,198,2,116,178,161,10,242,54,54,217,235,101,114,35,184,255,155,224,124,136,1
 18,157,149,0,163,37,109,69,42,222,30,241,198,233,177,186,243,189,34,79,169,207,233,93,173,185,48,68,55,145,61,225,187,238,210,186,180,118,244,189,32,91,220,62,209,143,232,112,231,49,232,80,44,104,180,165,34,79,210,170,231,239,18,188,201,107,207,124,0,96,140,155,12,180,15,160,234,177,210,153,144,1,240,27,155,71,222,80,10,30,15,50,203,182,98,255,231,32,223,235,164,105,153,164,91,192,76,247,133,236,24,63,191,245,135,184,34,116,102,113,196,35,239,6,5,195,172,27,14,166,130,188,30,73,12,72,82,181,219,80,93,8,160,192,73,54,8,167,81,48,205,253,224,85,199,166,230,116,32,159,123,209,66,80,71,70,42,0,18,185,37,187,122,123,201,127,12,17,225,179,122,41,79,68,143,34,249,36,13,181,31,184,201,62,147,205,216,167,221,175,116,221,86,79,26,204,161,60,115,27,134,137,183,225,90,254,226,198,177,151,210,118,144,119,68,19,189,217,128,113,234,22,240,228,224,217,199,234,156,102,111,228,91,92,102,45,43,204,1,103,130,50,69,163,5,162,241,56,74,228,72,138,59,3,110,119,28,148,177,112,34,16,47,246,116,148,2
 39,194,75,11,74,50,229,197,164,16,69,173,188,98,156,22,49,160,226,49,190,224,170,76,193,188,242,110,175,201,102,192,222,21,134,14,193,62,123,230,160,181,152,157,6,78,97,81,85,23,109,233,121,43,156,160,114,121,171,49,173,122,192,53,220,210,118,138,37,107,83,156,25,131,50,204,32,80,208,229,116,123,200,92,211,175,88,47,53,136,35,173,234,150,49,207,237,56,97,55,136,114,87,28,120,244,27,61,159,124,108,90,27,67,105,111,136,187,158,36,51,40,252,29,202,38,5,113,202,230,179,73,121,108,148,34,8,176,47,120,1,58,152,112,250,73,159,219,148,15,241,69,6,222,143,192,164,64,53,232,255,115,170,200,19,157,12,184,195,60,49,37,136,93,170,234,207,252,179,178,179,100,100,224,182,50,65,77,198,253,132,112,1,204,64,77,16,250,225,188,189,98,180,8,126,172,85,179,193,175,3,182,96,189,73,120,13,23,63,17,53,53,130,96,235,176,206,6,11,35,94,203,236,139,5,219,196,43,7,82,189,210,99,78,101,165,229,208,10,102,158,229,57,95,226,27,160,165,75,104,91,21,114,187,169,23,2,45,177,148,108,234,3,15,241,236,103,243,35
 ,32,222,43,67,81,11,102,25,121,156,7,199,65,164,166,133,91,122,174,172,232,132,243,53,246,116,89,67,231,41,160,53,28,7,14,58,136,157,248,252,175,56,49,222,64,80,207,243,73,250,186,5,60,96,134,89,91,79,106,9,19,130,154,98,31,11,165,5,34,91,230,180,148,178,208,27,47,238,30,54,224,219,224,129,19,90,68,53,61,30,21,22,54,137,205,40,153,175,32,153,33,12,182,42,10,80,38,7,194,54,185,185,234,15,191,196,192,65,165,182,105,102,195,94,240,188,202,129,24,205,42,41,24,73,254,169,23,185,162,134,145,137,210,135,146,223,138,231,62,226,80,157,211,4,44,79,79,149,228,117,105,214,32,8,203,115,252,176,184,66,184,254,190,141,226,185,214,212,138,171,234,135,58,32,36,235,154,33,176,201,232,62,174,53,26,39,84,117,254,196,81,237,89,199,143,108,63,17,90,19,199,41,52,109,172,249,3,154,104,231,118,191,186,25,173,245,152,249,83,213,117,101,124,205,209,48,86,74,133,165,70,137,43,23,240,25,32,186,46,3,1,212,21,73,36,199,101,63,169,117,233,240,188,177,251,14,141,242,92,1,188,19,32,70,98,84,247,237,70,186,52
 ,29,144,27,173,63,178,70,43,27,58,79,70,152,102,82,1,22,16,136,73,184,176,115,109,141,219,25,104,194,4,52,247,171,168,113,138,58,94,236,35,44,74,221,70,174,61,139,136,152,145,78,2,246,171,134,213,40,109,139,31,122,140,106,221,218,197,244,143,111,197,31,190,222,30,221,123,243,95,20,146,178,102,44,0,139,221,151,139,251,140,247,219,148,197,46,118,170,115,95,217,177,21,130,113,118,149,105,35,164,232,249,79,148,118,195,0,98,220,234,230,216,225,254,58,171,121,19,145,14,0,232,254,2,125,98,166,48,77,228,134,59,150,220,79,50,93,57,250,12,42,132,23,25,30,134,172,250,238,6,48,82,62,91,54,90,50,51,129,37,147,160,214,182,181,206,159,194,18,204,236,111,38,110,51,169,20,251,56,167,70,176,188,61,75,184,185,56,103,154,165,159,42,231,79,175,67,45,104,121,81,180,105,28,180,210,208,134,253,72,107,58,75,58,174,78,77,202,124,248,241,189,143,15,206,234,186,8,245,4,7,4,199,55,58,127,41,104,97,123,235,93,123,53,67,131,241,144,215,169,129,128,216,86,95,103,41,172,238,205,194,246,99,40,47,35,85,104,24
 5,232,245,111,40,100,1,126,64,95,105,153,234,136,102,184,55,235,109,141,7,163,27,128,252,35,235,166,73,245,121,74,173,38,173,236,130,240,230,61,206,45,134,175,187,172,112,116,225,214,166,166,211,19,50,235,106,73,98,103,37,211,59,130,161,22,230,233,32,64,15,251,80,37,183,223,215,169,238,171,138,182,6,56,210,218,33,226,31,55,46,21,32,89,243,126,132,84,148,114,168,171,87,139,182,20,228,19,17,221,83,201,65,0,238,129,237,229,23,39,169,57,177,8,216,71,196,28,61,43,36,0,32,139,48,85,227,233,234,7,84,36,141,43,163,175,71,38,233,172,102,64,91,252,99,32,92,97,138,59,35,51,150,31,36,214,248,4,106,161,31,234,16,32,141,5,191,171,121,52,40,133,135,66,71,132,30,22,89,84,51,56,191,152,190,10,128,115,21,234,111,98,228,42,242,15,50,199,73,132,197,157,62,194,25,164,77,184,90,240,251,151,10,178,238,42,204,48,93,117,68,47,201,157,31,196,54,214,235,112,129,70,107,39,120,4,254,81,91,118,232,29,23,69,26,210,81,169,177,77,246,244,137,190,212,81,231,208,51,214,181,212,155,248,0,115,240,137,13,203,78,
 101,235,114,98,118,100,212,117,70,218,179,95,103,182,32,146,27,247,164,162,83,233,232,13,211,24,111,74,220,17,143,246,135,68,45,1,15,79,226,206,26,254,80,7,65,188,17,36,6,0,240,99,38,121,81,254,226,155,207,185,9,94,16,46,191,192,117,149,86,5,255,92,58,138,239,53,57,118,63,147,186,49,120,98,81,246,83,96,106,92,76,201,247,64,121,65,166,221,46,58,228,147,41,142,16,80,23,242,236,54,247,142,124,78,108,10,107,86,240,238,236,76,9,82,252,164,51,169,45,246,215,89,220,201,37,82,75,35,109,12,195,7,76,20,109,156,45,19,52,207,183,237,215,78,113,251,69,241,181,85,115,117,148,32,157,196,142,65,211,168,16,163,176,1,221,241,149,2,155,196,5,170,202,194,126,250,174,139,122,180,217,71,118,221,240,28,128,6,229,221,176,235,216,60,82,234,218,201,73,221,207,99,67,59,14,78,220,25,102,40,148,4,174,30,39,213,142,97,215,182,85,161,11,216,45,45,217,121,192,125,229,97,85,55,190,59,210,191,12,183,194,230,238,152,205,185,75,92,42,169,176,64,116,252,213,206,96,100,177,164,182,231,205,63,68,86,29,7,41,198,95
 ,167,39,13,3,94,195,9,109,223,162,222,161,223,78,119,138,243,139,69,237,9,97,179,47,121,9,110,87,95,175,152,167,23,66,82,96,149,125,171,175,62,202,19,10,102,35,202,218,254,49,86,191,211,70,153,20,99,125,122,27,238,9,11,41,66,178,107,88,198,38,124,24,179,157,187,11,45,47,159,144,186,2,160,192,122,16,21,222,184,180,179,105,66,162,32,177,23,187,241,104,69,79,236,159,136,73,13,0,4,26,207,45,41,204,37,21,203,43,209,221,231,123,205,91,177,214,54,78,186,250,207,219,158,216,195,173,43,24,104,68,168,1,229,157,136,197,204,19,193,78,76,116,79,151,222,176,165,254,106,75,164,88,218,32,69,36,217,196,122,250,110,87,251,136,64,5,26,142,250,166,185,149,47,119,132,20,119,182,45,223,24,117,152,24,203,133,33,38,151,225,60,187,72,186,60,37,218,214,69,40,194,200,25,114,72,218,59,184,107,94,43,213,85,82,238,28,119,73,168,244,165,182,55,156,206,196,13,169,141,52,120,197,250,194,240,6,192,93,146,147,211,1,232,133,133,104,143,62,196,212,120,139,82,231,212,173,209,176,203,175,67,187,18,158,112,157,167
 ,254,236,252,32,4,147,129,83,113,5,83,196,224,207,51,165,162,198,162,46,56,33,165,222,97,226,68,174,254,245,165,22,18,109,191,80,80,147,203,193,17,217,112,128,3,112,29,208,41,224,109,177,42,183,151,186,73,118,58,114,83,182,188,22,64,147,126,8,222,164,41,221,19,86,152,241,5,37,124,126,2,104,120,177,75,224,46,195,173,88,34,29,27,118,248,145,235,15,142,212,69,178,112,249,167,166,79,160,154,218,242,14,182,9,128,2,199,119,195,101,132,248,232,86,198,197,194,225,74,133,220,114,250,162,12,6,219,87,36,239,179,13,57,21,210,132,209,56,159,151,94,204,69,244,3,243,235,17,72,27,27,90,40,117,142,227,1,218,159,171,169,78,13,201,122,144,235,77,215,140,108,133,241,203,127,175,155,127,244,234,92,45,59,140,234,152,61,222,176,186,128,189,126,37,13,255,202,33,33,227,197,11,144,27,42,246,145,173,11,30,127,85,130,174,206,4,95,35,78,245,180,20,170,227,15,215,124,135,245,5,130,152,250,99,119,13,34,30,158,105,171,106,59,248,52,233,155,23,71,215,214,48,145,30,183,185,10,108,5,211,111,246,29,222,134,215
 ,246,109,230,53,99,139,129,18,16,30,225,242,209,1,48,4,205,154,205,80,220,29,77,118,194,160,252,238,218,83,15,145,146,120,109,199,18,247,33,66,233,105,18,201,217,136,224,69,241,153,143,190,229,112,100,103,144,153,168,214,154,147,51,212,2,82,14,180,8,183,75,58,154,24,135,122,16,142,170,189,247,113,118,4,177,150,90,238,83,50,250,7,38,181,32,8,0,139,133,198,184,213,135,144,4,85,222,247,172,146,119,162,110,94,49,183,22,126,250,219,48,250,190,79,181,68,109,60,114,99,96,72,103,107,51,120,4,223,55,241,94,110,68,16,72,181,203,49,11,228,209,185,215,222,134,67,247,149,174,100,76,134,108,181,243,185,168,125,79,112,8,231,42,209,36,217,21,48,135,152,141,28,213,120,253,24,160,72,68,56,114,182,174,64,15,28,130,49,60,153,166,94,192,62,59,50,222,9,87,201,102,71,199,249,71,4,215,222,169,163,93,128,244,101,192,108,250,154,218,133,156,111,174,96,122,30,238,107,152,31,173,137,150,163,125,187,104,67,224,129,82,218,92,41,245,174,31,225,41,145,118,138,240,168,65,90,121,222,158,211,170,89,243,181,53
 ,137,134,44,225,102,202,103,113,195,84,229,148,100,126,172,162,112,60,117,204,42,3,214,84,176,89,41,175,139,6,213,251,235,193,189,18,3,42,82,228,179,70,166,111,150,208,155,166,141,66,54,154,9,118,66,53,221,172,50,112,195,75,14,77,249,73,206,129,79,119,212,216,242,132,190,204,110,223,168,189,209,100,236,171,166,208,86,72,154,141,173,197,144,86,218,22,242,18,158,121,16,8,79,206,59,14,77,215,73,48,14,122,139,123,227,166,194,237,68,99,52,154,24,121,73,78,164,255,51,144,196,194,150,191,99,61,110,6,85,231,124,39,247,94,254,149,3,188,211,130,52,109,29,182,149,61,100,103,89,25,251,65,104,196,62,244,12,66,104,232,123,227,89,131,239,221,141,103,187,12,36,82,169,15,170,177,73,228,168,86,80,57,139,166,195,18,117,218,95,201,219,61,56,47,154,124,41,239,143,237,131,22,47,52,117,87,21,167,212,154,129,135,182,48,176,57,215,145,123,176,148,11,16,77,55,68,96,122,251,199,83,155,108,28,239,0,129,233,158,157,135,231,41,134,123,244,155,51,146,92,104,249,114,250,117,34,83,166,17,189,227,110,239,33,
 212,210,56,124,183,219,80,251,221,143,185,250,184,51,161,178,54,72,3,162,128,173,15,192,243,216,173,231,215,244,81,119,200,252,106,56,145,109,69,221,205,168,7,3,8,56,33,229,212,252,87,42,107,107,168,246,66,15,242,84,90,74,201,135,23,67,66,155,232,192,99,80,68,32,205,30,212,163,98,204,113,129,73,152,152,67,195,84,46,60,205,139,140,167,116,3,164,96,33,141,6,171,226,233,239,240,237,77,73,171,196,23,90,171,188,113,221,225,221,237,149,239,97,223,241,226,28,240,70,63,35,18,67,223,62,112,225,218,165,135,140,110,38,190,4,8,113,115,245,58,109,239,23,231,153,54,70,150,185,75,163,56,126,225,9,224,104,115,18,140,187,229,217,158,39,60,68,31,117,150,211,148,231,181,34,153,185,137,56,36,161,245,111,39,71,109,129,249,194,246,172,126,87,222,154,38,176,248,48,121,122,137,210,126,38,118,82,99,207,206,49,253,116,0,100,210,56,139,104,225,217,238,160,252,113,112,95,183,120,196,134,227,65,90,136,98,150,46,194,172,114,47,7,184,153,35,49,181,91,164,182,144,28,200,6,120,61,175,149,149,149,8,95,75,138
 ,234,57,144,227,231,199,234,0,243,39,166,24,97,218,63,118,58,32,203,194,132,143,161,199,66,46,47,87,112,4,39,13,39,194,144,209,167,101,217,252,44,9,216,203,125,3,221,247,92,168,192,219,246,100,69,73,11,159,19,246,6,180,133,158,245,196,51,7,232,201,234,25,218,64,41,162,233,98,68,50,232,213,157,107,245,102,139,159,166,249,227,173,210,4,55,7,206,61,194,215,88,214,219,22,146,130,217,7,126,167,111,90,23,1,227,158,226,107,153,219,12,229,148,99,119,230,225,224,99,120,101,6,99,27,160,8,74,221,80,131,119,178,31,196,74,125,150,212,223,139,201,249,31,54,87,196,207,213,25,231,136,137,120,184,143,72,128,101,83,152,161,88,117,65,105,2,181,100,18,6,199,52,10,76,239,195,93,18,224,146,65,49,241,210,86,116,213,112,236,71,19,68,136,240,206,154,200,57,111,138,8,57,129,237,221,209,42,194,154,147,153,212,56,170,76,11,100,96,53,112,128,194,26,20,218,43,200,89,128,119,157,83,47,229,227,77,48,184,180,162,140,93,170,167,44,227,2,227,147,73,129,252,250,187,14,104,17,244,218,99,94,188,72,186,136,215,24
 9,255,95,195,102,35,72,0,116,223,34,160,65,239,12,62,58,162,196,37,62,159,236,99,216,125,193,190,121,241,139,122,20,30,155,229,116,63,248,95,36,161,120,83,123,83,206,248,204,49,175,12,90,20,196,123,46,43,27,128,96,157,115,144,41,111,71,188,5,186,102,44,18,163,80,211,169,242,214,126,27,160,49,70,201,36,83,55,162,13,36,202,253,135,182,156,75,238,25,119,172,253,92,125,41,148,155,158,104,22,61,239,139,153,127,147,76,18,75,197,203,228,192,192,212,134,7,111,52,70,26,134,110,44,96,56,251,37,93,173,68,111,32,153,187,103,202,50,148,139,61,77,250,144,208,255,110,29,10,239,37,65,125,82,121,239,87,172,159,245,123,216,101,5,207,66,222,172,127,67,199,15,164,62,69,149,220,224,94,101,101,159,162,132,91,159,221,222,254,238,173,69,7,62,157,49,234,122,179,19,154,67,127,237,139,126,88,98,118,109,242,141,128,233,98,70,141,77,74,95,78,81,148,248,41,194,84,128,246,146,13,251,200,190,77,16,114,127,179,228,148,62,118,77,138,134,119,111,55,95,14,95,15,7,170,205,96,43,208,205,23,216,81,204,118,238,96,
 31,20,154,170,130,17,38,138,232,46,112,78,128,75,175,104,91,125,160,193,154,35,118,137,126,126,121,131,251,157,20,5,104,29,9,17,167,68,222,87,219,87,184,194,215,37,37,166,141,172,91,80,161,48,7,179,149,143,204,186,152,167,159,147,249,101,21,183,25,95,201,182,54,34,149,5,93,181,130,40,212,19,93,92,141,243,178,187,32,88,98,73,162,203,47,94,37,207,134,126,78,60,212,169,157,21,61,235,102,80,100,3,68,216,77,166,19,161,140,167,171,38,151,23,88,134,84,91,223,73,222,77,249,172,80,146,196,109,162,178,114,11,237,177,171,81,197,53,108,200,123,198,223,226,100,112,254,235,4,81,144,28,251,237,78,111,72,224,52,156,192,84,210,93,63,120,97,29,237,133,246,149,180,72,135,229,64,78,173,203,155,93,6,196,88,35,99,26,22,1,74,148,234,182,175,149,227,213,69,141,148,132,106,85,159,67,100,47,215,61,85,170,57,32,57,67,99,31,98,91,128,86,83,168,87,34,109,10,214,0,238,247,123,183,39,211,253,211,113,14,71,95,142,126,123,5,254,178,241,39,150,194,169,157,213,81,49,102,145,123,176,53,0,112,175,204,158,231,24
 4,130,164,157,245,93,127,121,150,148,153,167,59,167,215,138,39,139,37,64,255,103,240,180,178,254,102,22,182,154,224,14,214,88,254,60,152,135,97,35,209,178,140,133,114,127,171,126,181,55,20,159,103,156,159,15,161,48,224,11,133,89,10,210,30,170,67,90,226,196,213,46,1,51,115,224,36,246,132,137,28,19,130,117,230,8,31,129,206,23,133,176,24,141,169,103,239,209,59,10,46,109,142,147,100,199,58,50,217,208,248,164,126,121,225,12,140,105,142,196,29,66,37,99,59,215,99,103,241,211,86,215,6,74,51,54,29,92,61,209,49,53,110,151,222,92,227,36,197,213,179,94,49,221,19,147,132,25,138,176,90,63,47,184,190,62,228,202,243,208,0,249,245,18,48,135,24,25,185,16,197,164,205,220,45,201,57,180,176,253,222,194,169,131,114,83,37,210,149,38,243,163,208,28,108,179,85,186,7,233,194,193,68,252,90,44,244,200,173,141,2,131,22,66,17,99,87,136,230,146,157,96,161,78,129,109,18,207,117,17,182,177,127,94,200,20,179,83,198,199,254,199,246,70,194,73,45,88,110,0,239,247,205,232,195,137,79,206,0,150,217,212,92,144,155,
 154,175,77,205,41,1,186,186,149,229,124,212,59,1,107,50,87,104,123,40,221,139,86,231,99,173,227,59,118,234,160,144,150,87,42,100,181,147,59,81,192,146,198,52,96,215,250,194,247,121,67,63,222,177,53,150,188,157,165,77,40,87,208,210,250,197,25,50,16,194,154,191,143,230,197,245,149,190,103,87,250,202,82,188,74,137,55,104,178,24,83,99,219,121,104,2,234,27,224,199,225,154,192,3,201,146,199,250,27,162,147,167,81,107,123,249,76,230,104,251,225,246,64,44,159,166,216,25,114,66,229,57,141,110,88,175,215,5,41,255,184,36,125,104,171,244,187,86,60,30,95,159,62,35,195,70,39,169,131,232,173,236,139,163,122,252,180,227,166,38,204,100,56,192,210,167,240,216,6,169,236,29,133,54,69,204,15,124,24,171,146,67,131,252,155,191,97,70,172,20,148,120,176,138,180,250,46,235,93,206,196,126,17,75,42,157,156,3,0,179,219,82,94,81,29,194,124,162,144,20,152,3,42,188,69,204,160,46,121,87,129,10,79,18,152,216,0,221,97,19,84,211,135,107,113,1,225,20,243,192,156,14,114,94,75,220,93,168,109,246,11,67,152,252,27,1
 ,223,38,208,241,147,183,250,104,156,112,173,66,53,201,112,225,181,56,255,91,247,210,186,109,26,130,34,203,57,227,41,169,63,114,4,177,221,186,51,22,91,133,153,119,55,229,51,176,97,152,31,238,177,117,199,167,108,72,254,148,177,109,47,129,169,0,161,195,189,149,183,189,115,131,41,147,181,18,80,107,113,16,243,25,215,176,22,102,50,247,107,11,10,211,231,231,188,26,161,66,61,84,168,246,86,180,231,69,157,243,37,7,203,76,176,147,72,240,116,31,172,185,65,217,42,248,72,72,11,125,147,209,207,92,118,1,144,108,84,83,188,94,58,24,169,236,107,4,166,15,39,166,207,170,70,59,71,168,10,75,185,44,11,76,34,102,215,251,12,116,51,163,246,237,18,185,15,16,82,147,246,99,101,47,173,64,149,41,178,14,69,189,161,128,241,164,61,35,6,96,51,169,196,228,197,57,240,26,21,23,16,212,23,133,178,38,150,2,151,31,240,17,254,193,62,188,27,121,143,192,180,120,87,186,51,33,72,9,71,61,230,93,101,122,144,77,218,90,109,24,39,139,132,200,236,100,80,44,196,207,234,187,34,6,113,93,119,138,105,119,118,48,95,222,151,7,155,238,
 52,47,157,174,42,114,198,85,99,137,97,150,76,173,176,204,177,159,109,120,105,173,183,106,103,156,240,26,183,111,147,241,188,239,122,151,117,81,27,153,66,217,125,167,68,229,161,112,156,63,219,11,1,145,167,130,24,217,143,86,145,86,207,36,135,177,79,64,156,139,167,31,88,91,85,205,202,241,115,30,25,219,192,240,180,239,254,230,99,66,85,81,157,166,36,124,63,147,100,18,58,222,8,185,200,176,167,202,70,113,27,176,95,152,14,204,6,204,182,236,161,144,86,15,98,203,76,228,241,77,31,167,140,70,187,85,46,165,157,168,31,146,154,69,177,184,29,246,88,175,245,104,165,238,29,185,177,195,35,34,198,196,182,78,62,203,37,106,79,31,190,115,251,244,225,234,190,239,211,125,82,59,69,140,160,144,75,27,123,103,205,16,69,81,181,251,163,43,87,94,143,8,230,33,152,68,83,239,160,164,227,50,226,215,19,159,210,230,68,174,247,61,159,204,9,102,24,39,196,144,119,147,149,231,24,9,143,152,230,130,63,40,204,158,248,100,85,203,127,78,141,206,196,28,145,105,25,238,73,102,121,39,73,239,52,46,32,68,85,39,22,120,140,147,3
 4,173,254,56,255,225,57,131,135,250,121,232,126,123,236,215,110,33,126,227,99,232,170,49,50,17,244,100,94,200,241,183,240,173,115,194,88,231,54,123,58,125,248,157,76,104,178,88,130,157,69,20,149,97,81,108,110,246,104,93,50,35,150,4,213,59,79,229,200,43,116,55,80,198,61,153,57,231,178,248,73,184,174,97,132,54,9,174,248,196,177,68,160,61,182,73,14,181,198,182,161,15,107,244,158,212,203,178,225,196,178,57,85,185,151,99,29,94,95,208,38,153,238,208,243,186,190,217,240,160,192,203,38,192,248,250,90,196,140,34,241,243,216,199,23,199,243,154,178,52,30,240,134,129,210,45,220,190,95,232,195,146,88,94,182,196,37,72,88,237,102,224,125,186,31,244,217,91,131,122,177,52,203,161,60,26,134,162,210,31,0,76,109,69,146,190,196,113,172,194,94,59,201,195,63,97,42,68,234,100,86,96,122,86,168,119,40,131,37,44,18,150,82,192,165,143,115,197,236,38,208,72,215,23,143,8,206,8,41,30,154,144,64,248,223,50,215,242,145,202,216,132,194,119,125,24,90,245,133,155,238,250,212,119,210,111,98,204,54,215,136,142,0
 ,24,182,187,37,176,159,204,211,126,230,16,6,220,140,209,95,164,136,114,182,207,99,34,62,254,152,110,250,207,253,75,205,30,45,213,27,229,177,155,100,15,10,251,117,235,55,252,193,235,46,150,125,168,203,151,7,83,142,76,226,147,218,66,172,112,205,31,95,244,165,98,92,227,18,133,196,237,50,73,238,248,60,45,49,56,252,13,74,158,84,14,171,199,59,98,202,137,218,179,157,243,68,107,106,1,207,95,113,171,26,124,37,89,163,244,129,54,196,73,207,102,226,214,78,166,1,127,156,85,96,195,124,47,12,243,230,71,196,47,185,33,22,100,197,185,175,47,249,240,100,199,4,131,73,61,143,42,142,36,107,201,20,149,236,137,64,126,58,240,253,143,166,105,56,30,10,156,94,172,117,105,199,251,73,114,129,174,128,162,203,152,145,96,154,120,98,246,95,99,159,102,101,240,28,159,3,103,25,84,77,67,181,212,47,93,80,116,133,29,240,226,76,60,89,47,66,195,123,125,29,143,204,173,153,168,54,85,112,111,137,5,92,240,84,10,37,88,148,186,145,190,83,198,10,40,192,80,148,230,154,122,73,191,46,1,213,164,149,152,52,133,76,68,236,10,166,
 215,22,95,232,207,229,171,121,177,68,230,173,22,204,93,215,28,192,153,153,222,120,48,91,101,42,41,133,125,134,5,193,246,249,230,43,165,156,63,189,200,242,31,16,30,65,191,171,207,249,41,47,250,23,72,172,133,89,253,230,199,143,245,231,155,152,91,137,17,238,36,18,127,61,237,167,190,184,5,28,87,118,238,206,12,48,208,6,128,25,200,128,88,171,231,169,224,217,22,80,88,201,57,195,190,0,209,60,253,108,173,75,83,222,215,66,130,114,121,221,89,18,2,108,174,194,144,124,16,169,28,135,249,158,123,107,107,250,226,230,100,139,83,152,139,26,16,112,3,19,44,149,2,245,41,161,42,248,63,20,137,36,166,98,195,7,223,27,169,125,36,200,214,94,6,147,136,205,218,109,8,230,24,228,134,48,1,133,28,73,130,237,152,200,4,240,169,53,208,141,149,58,91,139,150,86,117,51,252,152,159,45,73,165,166,178,97,83,141,39,43,165,230,137,51,109,136,162,71,202,34,23,10,86,144,63,127,32,87,75,243,45,164,16,146,160,42,167,171,9,228,78,1,196,68,163,142,58,21,56,177,137,179,66,222,39,160,193,235,142,45,29,167,91,183,77,83,61,56,1
 02,186,27,36,163,222,223,169,43,33,41,170,104,203,64,244,176,209,140,207,127,121,55,111,91,200,3,120,228,160,79,8,23,50,73,8,84,167,229,195,38,243,253,123,100,77,186,104,247,105,75,225,223,64,210,219,209,248,251,164,88,105,240,67,195,8,157,176,26,169,195,221,9,111,31,34,143,10,157,19,70,71,107,71,164,234,148,89,59,55,253,34,67,148,116,77,44,238,153,186,225,52,60,243,68,201,241,162,114,61,104,216,117,85,204,226,177,71,148,237,42,116,137,79,241,137,239,69,196,52,0,210,238,125,228,80,133,94,92,240,21,42,124,71,154,129,5,225,112,237,143,239,140,23,151,228,108,205,31,137,218,39,173,107,234,113,11,184,84,109,115,190,136,208,62,229,125,32,112,240,188,198,3,205,153,241,120,128,253,227,87,108,219,213,202,43,21,150,40,210,253,20,190,210,130,13,107,158,210,2,35,75,109,243,250,181,238,188,78,148,237,34,161,1,229,204,107,230,186,68,139,101,10,90,52,148,130,127,164,88,14,185,24,160,42,44,173,188,169,246,203,134,229,40,207,8,59,29,133,43,245,245,45,222,62,133,118,128,254,112,150,61,121,32,
 178,243,196,235,156,87,100,233,27,121,120,130,102,75,242,22,237,74,75,223,206,37,36,229,15,234,188,235,24,33,159,121,216,196,114,75,241,108,5,177,135,212,214,133,235,43,43,150,146,182,125,18,49,144,86,238,15,211,85,213,129,123,104,199,113,126,147,57,225,240,239,95,180,154,233,71,80,69,140,119,17,195,247,143,61,174,209,111,53,11,65,95,22,176,203,247,231,159,170,255,18,52,82,105,106,79,253,170,182,144,50,38,67,24,211,121,91,151,211,90,145,98,141,10,214,130,210,8,188,205,109,223,140,145,6,71,43,66,77,152,61,169,117,180,107,108,234,214,170,199,10,136,154,94,6,172,54,95,102,58,17,25,92,178,153,27,121,6,65,169,149,30,5,51,169,211,237,190,124,82,208,109,255,242,52,176,185,13,26,123,29,29,69,228,139,94,30,234,15,205,183,194,167,164,215,34,133,77,104,113,81,109,81,52,60,207,26,226,134,72,88,143,165,129,9,47,224,5,204,181,120,8,27,93,234,65,60,165,127,41,64,52,81,138,196,64,149,182,176,180,76,39,251,100,22,66,6,33,199,27,253,222,4,61,201,5,129,215,213,136,236,207,7,188,180,166,110,18,
 83,67,144,11,230,231,1,63,205,226,94,214,47,115,158,207,176,62,80,245,205,133,96,112,50,3,174,39,37,178,63,30,18,86,53,117,35,78,229,199,110,231,14,150,87,37,69,23,187,150,95,12,135,216,130,130,115,219,164,118,176,145,102,35,118,58,94,28,125,133,50,192,232,163,182,217,90,0,44,247,129,129,102,215,168,201,251,232,245,233,92,199,254,51,90,157,127,108,46,64,97,240,195,170,76,29,60,240,19,97,2,38,164,162,137,172,78,15,45,54,90,217,186,11,4,102,140,240,99,77,50,7,48,146,216,28,173,190,242,244,186,158,98,16,247,179,255,107,131,223,207,92,168,253,74,138,165,90,180,236,88,246,161,52,19,225,224,177,169,253,88,19,162,113,177,239,5,34,186,23,198,50,39,17,56,112,28,239,53,37,89,188,84,214,30,104,54,16,54,70,127,172,184,131,6,84,16,210,134,28,159,232,111,68,203,67,101,53,118,161,119,154,4,184,71,143,247,248,252,227,90,218,24,70,212,158,190,254,40,20,192,155,198,88,48,153,148,115,88,40,120,15,183,140,249,173,83,57,229,131,175,153,125,25,134,254,184,253,45,210,99,170,9,246,27,206,162,26,114
 ,18,192,86,235,97,72,160,250,191,182,33,75,190,78,112,214,235,165,51,237,0,82,220,168,212,128,155,198,86,48,78,217,232,119,249,106,40,96,170,93,203,207,160,54,25,89,220,101,80,207,32,208,119,15,67,224,102,234,43,41,102,83,20,125,224,106,43,20,56,219,58,77,87,121,142,104,120,35,1,12,117,4,0,31,204,161,219,34,181,135,140,149,226,90,31,73,127,56,1,84,109,42,86,109,127,194,49,171,75,154,37,43,180,193,119,17,25,94,191,103,174,47,234,73,146,248,249,95,209,21,203,56,230,74,101,121,23,233,156,101,212,48,89,169,214,16,240,161,52,244,139,118,63,221,200,238,71,50,80,15,156,226,228,216,136,152,176,32,129,60,149,27,214,43,114,123,173,161,100,17,240,127,155,33,116,245,76,226,162,155,247,195,135,234,38,223,188,51,21,94,246,49,197,68,220,5,255,189,7,92,82,147,69,212,212,81,218,226,210,237,13,137,134,90,110,30,28,127,93,134,219,1,211,203,104,209,118,167,4,232,191,153,9,125,195,192,212,175,218,199,18,23,42,123,205,159,223,194,184,0,218,57,236,144,5,3,203,84,146,201,33,125,141,224,6,6,107,161,
 66,199,0,44,39,144,72,12,165,75,174,222,124,77,146,40,32,233,241,240,32,71,81,8,63,39,212,48,193,103,151,13,46,254,93,130,171,27,2,1,205,246,109,29,132,165,39,123,146,217,84,138,229,201,188,141,189,28,4,43,42,52,92,186,73,137,157,167,107,194,197,199,84,116,195,166,174,85,208,76,189,89,184,233,48,210,219,61,42,104,232,150,69,196,227,17,203,250,239,208,150,25,46,206,51,251,107,216,69,101,197,163,59,209,171,251,165,186,140,203,72,89,237,40,87,52,175,148,48,156,181,4,51,13,69,126,69,80,241,159,85,222,72,166,4,67,15,20,62,62,28,70,19,220,204,253,177,81,133,206,183,58,240,125,251,8,179,26,124,173,227,2,205,86,255,111,156,147,61,53,147,126,127,48,129,120,203,18,9,150,165,253,76,255,112,3,177,238,178,183,204,66,79,62,138,247,243,185,195,98,37,35,44,195,82,49,8,3,186,128,101,248,207,190,49,80,138,196,80,199,121,19,161,16,239,137,96,65,102,12,28,155,123,212,140,159,8,75,33,244,147,126,158,100,67,70,105,116,250,30,225,165,232,53,138,57,252,26,33,197,16,86,192,206,85,172,204,176,235,186
 ,124,5,254,95,84,227,41,85,242,105,174,245,126,50,210,202,138,16,14,132,52,193,217,202,89,61,139,143,9,85,196,75,102,221,16,230,209,142,97,221,138,114,152,144,163,75,54,250,86,199,189,60,254,157,62,58,162,180,177,156,133,98,137,226,143,167,236,49,113,207,164,142,225,74,37,83,2,154,136,113,130,10,159,168,215,84,245,13,215,23,14,219,33,70,58,140,175,56,182,27,143,125,49,243,140,90,179,96,122,39,49,82,41,93,54,49,15,21,34,53,247,251,118,245,210,65,19,13,180,84,0,49,25,105,134,255,178,98,161,71,5,58,20,152,70,142,81,205,157,248,143,2,248,63,166,44,130,232,67,119,145,181,184,241,71,1,216,111,193,54,190,13,31,112,185,253,110,67,156,100,8,26,246,109,2,159,85,176,202,233,19,41,182,57,29,201,10,238,72,189,124,115,203,96,101,39,233,139,244,172,173,221,78,235,163,169,23,165,29,115,214,167,81,7,33,111,58,3,163,102,121,98,29,146,119,4,212,31,96,185,176,51,20,4,24,1,209,237,137,106,181,3,0,252,243,61,121,96,195,227,154,241,44,148,85,150,163,231,252,97,111,8,234,141,124,175,63,138,126,93,2
 45,166,88,210,235,13,10,0,88,148,86,28,250,124,28,93,110,241,168,141,64,153,34,186,167,81,229,96,236,16,146,2,150,241,152,127,214,18,93,151,52,211,40,50,22,208,7,25,190,122,37,174,60,45,92,236,183,90,29,154,64,141,201,202,164,150,193,48,60,195,71,217,158,25,27,84,239,32,183,107,103,242,25,25,253,112,118,131,54,154,110,142,40,122,101,14,197,208,229,94,188,4,186,189,118,205,85,243,164,89,163,70,88,69,80,0,110,177,64,219,4,238,205,204,156,44,174,53,156,98,104,76,81,4,143,53,44,12,197,30,243,127,242,112,8,119,242,199,21,180,75,5,64,228,202,251,249,213,0,215,93,217,254,150,212,92,223,165,118,189,28,236,19,173,254,140,103,14,108,16,201,45,69,222,200,59,133,35,153,178,198,187,29,64,167,253,120,57,56,82,30,111,85,94,111,146,85,129,94,106,237,248,244,163,94,61,100,81,57,65,116,183,5,33,1,221,226,75,69,9,160,116,108,178,55,155,144,114,104,219,74,89,241,74,197,19,79,151,165,223,68,155,159,25,250,197,22,221,116,40,145,82,26,107,118,255,94,106,213,26,153,100,107,232,67,100,127,118,67,105
 ,113,74,140,155,183,71,245,228,237,188,237,131,2,192,201,225,151,105,8,16,218,103,92,174,156,177,159,5,107,227,118,238,70,228,104,41,59,221,112,242,207,252,237,40,193,199,17,60,191,4,71,32,148,106,45,37,136,54,228,81,68,93,25,217,66,63,20,206,136,113,202,16,81,101,80,176,85,56,76,152,182,234,41,29,91,67,53,216,130,233,245,187,98,146,233,0,185,25,15,124,57,66,147,232,164,244,49,35,75,101,153,137,85,147,154,136,38,132,238,176,2,21,68,176,221,16,111,228,31,73,27,126,183,176,53,23,159,244,222,131,88,200,147,139,25,230,214,164,183,47,81,238,246,212,234,223,7,26,16,109,231,63,81,242,78,122,77,112,177,82,68,70,27,12,159,26,97,29,209,78,118,42,40,170,114,116,183,82,40,34,170,130,123,16,123,61,66,139,5,208,160,7,44,187,146,150,123,121,58,101,100,215,52,179,169,67,74,139,194,176,129,46,196,92,231,55,201,118,4,27,123,213,107,248,15,129,238,151,178,17,47,136,233,93,33,93,238,114,37,136,110,69,198,213,135,228,103,53,158,216,172,196,134,65,26,227,14,66,242,30,194,230,12,186,222,19,226,105
 ,4,158,15,197,248,108,187,200,147,134,140,29,86,142,158,21,43,91,244,200,181,150,76,218,38,6,61,181,234,208,46,60,172,251,152,223,23,251,137,80,223,15,145,117,134,214,221,155,80,78,230,73,1,75,229,74,99,15,250,61,181,187,196,60,233,236,226,165,66,204,252,94,239,95,189,57,156,135,215,125,202,181,120,218,126,203,121,29,150,40,88,26,188,187,176,9,51,173,45,229,22,241,56,0,13,104,54,48,35,229,45,152,242,39,229,188,151,241,203,216,220,228,178,250,219,21,216,85,187,71,157,99,49,144,124,68,62,178,23,6,38,172,102,241,110,52,86,94,53,100,75,163,96,128,45,181,57,24,247,206,226,135,87,27,105,15,38,89,79,27,168,193,148,134,0,71,86,13,75,26,217,55,27,61,217,73,147,111,108,212,81,85,47,178,4,146,158,189,227,255,22,156,47,147,208,36,102,255,65,7,54,155,38,198,228,25,10,137,163,202,3,155,193,156,142,73,186,171,73,131,182,97,15,208,40,231,253,83,96,252,217,154,82,120,140,179,139,10,99,202,247,132,99,203,224,194,98,24,139,93,27,83,137,236,56,58,223,204,97,234,244,79,118,93,208,201,87,37,216,1
 9,161,74,97,223,17,24,123,35,154,92,8,48,156,124,12,171,204,87,38,208,6,15,155,138,200,228,180,175,242,230,164,171,84,28,200,38,94,215,229,169,67,210,95,216,29,154,6,57,66,53,95,1,67,148,165,6,123,61,167,114,120,170,8,201,20,172,18,158,17,63,39,19,48,156,13,59,105,223,53,46,255,240,247,3,212,212,188,56,115,67,80,9,107,240,255,22,135,92,94,137,2,13,202,216,104,195,133,173,141,239,238,150,244,101,228,24,240,92,27,124,163,54,58,101,88,171,8,216,8,41,236,50,165,73,64,76,137,74,94,99,103,177,49,184,50,240,118,221,151,160,159,127,116,216,46,113,114,88,236,192,49,34,205,113,3,33,214,199,103,7,25,42,224,207,237,199,181,174,213,1,154,65,125,235,228,147,29,146,11,233,172,128,4,63,86,65,203,102,206,45,138,27,67,10,242,235,33,26,140,162,8,84,43,5,47,251,91,196,190,245,165,115,15,39,155,212,94,176,255,255,30,23,143,248,111,192,172,158,170,246,147,154,205,199,60,175,234,248,48,183,23,120,65,185,206,7,162,167,74,76,120,5,93,191,119,154,240,186,139,5,2,180,185,244,50,68,191,34,190,156,141,1
 88,156,159,206,116,41,61,137,21,227,137,233,130,174,143,36,104,39,224,204,237,109,31,55,145,200,35,46,38,118,185,103,209,107,251,18,114,87,25,157,104,156,20,165,151,44,63,126,242,224,142,111,81,50,191,29,74,229,94,56,175,18,219,166,216,155,118,151,100,252,34,202,25,163,34,45,57,155,133,11,118,139,148,40,204,11,38,241,45,92,217,166,22,239,183,240,99,215,154,200,12,188,232,126,145,143,246,47,105,213,83,152,125,249,188,80,117,117,244,220,60,148,86,164,254,202,182,100,81,10,209,111,126,43,110,70,221,85,182,10,78,214,25,235,200,49,45,249,13,155,48,102,160,31,182,57,218,187,242,192,59,238,43,112,219,87,111,224,10,20,124,80,250,156,22,29,135,154,0,96,73,15,138,191,20,48,61,129,121,69,48,171,37,54,133,74,128,122,161,120,119,67,196,28,110,12,199,231,19,231,212,189,152,101,230,239,200,194,241,248,70,171,147,247,89,27,48,13,183,231,7,139,30,246,242,152,217,93,243,218,9,233,23,87,84,141,51,104,16,209,197,64,231,69,133,61,165,187,243,66,191,125,99,254,187,94,40,12,12,118,166,246,57,254,1
 19,6,182,69,117,192,43,16,119,20,61,111,23,211,109,152,62,166,34,59,34,121,84,114,134,96,49,20,162,74,223,206,106,44,229,179,194,161,98,32,235,121,157,119,140,239,60,48,187,38,27,77,16,248,27,13,165,236,192,99,232,214,167,74,222,142,92,114,216,39,58,109,242,8,45,182,6,129,192,172,98,183,90,20,253,151,227,84,72,70,176,183,197,205,171,19,188,131,166,198,192,161,75,236,47,253,159,0,245,127,253,69,126,146,189,197,227,126,170,55,52,249,77,74,12,80,243,82,217,79,14,150,170,8,15,218,148,183,218,96,118,182,223,157,107,241,12,49,21,27,15,90,102,73,56,238,123,161,186,25,115,174,88,81,244,147,138,141,194,110,46,215,126,162,33,64,177,51,87,152,43,231,170,51,63,143,199,147,167,219,255,48,154,52,245,89,47,235,13,112,207,85,46,102,163,153,58,5,68,76,118,118,133,17,9,160,234,145,30,83,95,197,134,242,140,94,27,138,18,13,95,171,116,94,36,233,191,73,86,252,77,98,124,202,125,175,24,170,113,65,82,85,35,34,15,7,89,61,131,172,28,28,6,211,180,189,154,230,184,30,46,99,237,47,169,232,213,121,119,89,1
 33,94,50,67,190,172,133,1,136,174,118,228,221,167,163,65,144,18,84,64,64,241,157,247,18,67,220,192,174,23,144,116,177,43,227,190,207,245,166,76,203,43,246,127,236,115,140,46,128,199,40,22,242,82,69,16,230,204,47,202,138,26,68,35,60,49,85,128,201,6,162,29,78,211,102,156,122,134,60,151,181,93,86,217,86,115,159,90,245,140,100,188,145,177,101,10,188,157,133,45,140,180,248,242,14,55,221,176,79,252,170,69,64,103,91,235,148,238,27,95,19,50,56,239,157,102,189,146,120,80,111,232,162,170,189,237,238,106,60,225,233,141,51,56,206,94,1,184,28,104,31,233,124,85,156,66,118,101,8,45,127,101,172,187,127,48,216,194,132,17,219,120,50,192,100,40,242,209,153,192,150,237,174,156,123,36,77,48,171,206,75,29,178,169,9,208,197,61,41,119,105,1,172,228,16,56,23,177,191,131,28,15,103,91,178,143,132,195,124,24,231,2,248,52,133,59,187,61,116,97,209,17,37,4,217,35,206,249,154,100,45,181,81,223,24,61,74,18,69,98,90,65,215,46,5,213,70,68,67,217,113,87,180,184,130,64,221,73,187,81,99,199,213,68,189,219,57,3,1
 74,202,112,85,207,168,182,190,19,122,128,24,226,185,32,228,115,107,199,49,148,17,29,205,143,88,249,123,10,5,196,142,72,254,51,44,166,59,161,206,16,138,232,204,204,19,149,187,170,157,98,90,109,68,160,147,121,219,159,186,97,46,146,145,200,194,234,243,153,14,29,45,123,255,174,236,60,83,237,204,133,156,219,254,199,28,49,97,53,254,59,40,40,68,52,138,95,60,119,175,15,122,193,225,32,139,58,77,161,230,171,183,98,254,221,108,6,165,65,95,187,70,230,47,1,236,130,211,224,144,21,196,235,140,98,155,73,159,46,80,231,95,3,108,167,150,136,89,177,130,192,105,33,123,94,23,236,42,59,55,167,244,125,232,196,215,28,83,25,45,155,79,89,227,147,248,240,189,7,16,11,174,82,172,5,170,67,205,69,50,241,30,15,20,40,232,70,127,0,20,56,148,56,141,92,237,101,137,91,5,139,54,207,97,38,113,48,19,170,253,71,146,42,133,111,116,163,159,184,27,54,208,233,80,252,47,58,63,115,201,18,241,143,173,72,63,212,107,36,142,249,70,128,207,51,215,34,140,38,56,99,31,91,213,242,11,199,249,115,242,35,42,253,176,217,120,150,241,17
 0,137,47,6,163,17,132,205,10,225,30,46,16,208,251,213,59,32,52,53,16,51,20,174,156,164,240,3,166,132,243,41,222,104,22,41,213,80,212,102,44,197,79,23,249,42,238,103,186,193,156,19,109,177,187,97,237,188,224,195,43,26,122,53,32,75,165,203,137,182,212,191,138,10,76,237,108,209,89,28,187,16,60,60,46,185,22,195,232,16,115,99,187,218,91,193,183,27,34,220,108,44,207,85,204,53,81,206,97,27,213,228,241,108,14,79,8,106,255,85,112,50,57,202,215,107,51,46,221,83,238,247,119,55,189,251,167,96,192,211,229,31,84,161,140,30,199,140,30,118,188,255,209,162,166,251,213,198,155,179,32,165,16,100,232,135,184,55,44,99,183,59,55,150,216,181,166,159,203,46,129,83,204,73,246,190,82,178,79,146,197,101,34,221,188,200,108,224,25,20,54,196,121,232,209,190,126,24,210,207,211,99,187,248,201,95,61,130,215,253,114,69,155,255,76,182,125,32,231,247,32,18,182,133,199,225,219,110,82,39,50,209,45,49,22,102,166,237,29,184,78,114,44,7,139,81,136,44,101,153,236,25,238,209,221,38,43,108,8,139,213,86,182,201,191,194
 ,192,246,203,254,74,42,127,26,31,118,228,83,119,170,31,190,2,147,128,115,244,46,222,2,149,255,139,230,67,92,30,52,228,64,121,118,185,212,210,233,98,53,48,197,110,226,205,187,111,20,67,162,48,205,63,125,90,144,227,91,130,82,24,26,41,65,206,120,227,113,58,68,66,75,107,37,135,145,132,31,97,145,117,215,231,59,118,29,193,73,205,25,77,47,161,188,101,211,63,178,193,25,239,194,156,248,22,103,200,61,88,181,118,132,111,176,231,232,214,167,196,22,74,102,2,199,189,30,69,218,146,204,185,41,200,21,229,124,154,103,185,137,228,243,174,66,64,241,82,133,125,91,207,34,126,185,79,56,41,41,49,53,98,186,156,205,202,76,159,117,170,187,120,19,136,213,87,127,186,176,57,254,45,162,44,236,48,68,34,11,213,229,162,254,80,246,61,236,61,136,113,142,103,171,32,50,18,96,12,180,1,211,57,158,60,172,128,229,87,57,154,75,163,233,74,184,92,108,186,252,35,166,31,117,172,158,143,99,143,55,15,153,151,35,222,135,39,52,178,225,231,155,21,200,240,250,211,68,114,240,89,81,4,251,131,137,128,191,26,172,41,195,97,183,192,
 28,166,125,193,25,23,183,61,30,67,40,139,140,152,35,103,195,231,68,228,107,180,7,147,195,111,104,75,132,3,87,143,28,18,57,78,49,170,220,147,166,30,28,6,169,185,35,19,85,60,252,92,172,216,149,25,197,162,98,38,84,189,91,12,209,232,111,234,46,15,12,200,101,123,246,252,160,72,87,12,64,253,74,157,20,240,42,247,78,89,102,159,81,254,53,238,223,202,224,64,207,253,69,98,229,52,41,97,207,177,253,243,60,183,50,231,146,191,48,75,135,36,227,183,234,19,250,69,11,212,224,148,14,135,70,99,9,93,99,244,184,25,6,1,173,173,205,25,117,75,174,229,102,14,175,173,239,104,219,169,8,206,4,127,213,166,219,76,48,239,236,142,137,200,60,222,235,69,193,92,126,91,137,112,55,193,5,91,97,179,250,73,0,2,237,154,150,252,130,23,70,37,9,11,197,165,115,155,138,207,60,203,17,147,35,120,141,201,62,215,232,148,215,137,173,248,169,101,91,193,219,79,236,17,204,241,133,87,230,132,98,123,116,46,68,239,189,15,199,67,124,160,170,159,4,48,140,255,163,4,22,212,229,128,7,118,134,231,149,52,198,212,36,23,133,220,81,201,68,15,
 1,74,156,164,201,138,130,243,232,202,250,179,11,167,33,144,53,21,50,121,161,55,108,50,33,232,48,219,75,235,206,115,51,16,225,191,145,192,3,2,145,222,98,162,114,219,15,252,205,38,171,99,53,184,192,246,144,205,98,110,47,50,195,165,80,59,130,3,174,3,29,231,182,246,173,43,136,142,254,40,162,186,82,194,175,82,38,166,213,8,67,143,110,80,236,126,42,186,17,216,82,182,63,61,152,245,181,176,153,15,229,120,186,33,173,168,74,150,34,13,145,173,30,15,87,2,112,28,173,39,144,27,41,210,55,96,174,5,67,66,202,212,239,87,79,94,185,253,115,94,7,154,124,179,154,144,69,65,221,30,10,205,45,22,76,111,68,120,175,152,91,16,140,95,161,254,108,55,238,113,141,67,172,175,22,8,90,116,134,196,207,178,194,109,181,96,248,41,162,77,75,95,174,75,248,157,203,69,185,213,113,99,169,120,17,158,80,252,88,77,154,56,107,195,13,10,39,195,14,88,85,44,243,231,132,94,135,35,191,0,13,116,255,174,204,123,31,49,22,6,252,150,214,223,170,211,69,160,145,198,250,0,182,7,178,212,173,90,45,88,175,124,180,199,224,127,149,197,215,3,
 195,125,33,119,188,150,179,181,198,145,46,208,103,10,191,7,162,142,238,200,131,14,217,137,140,109,187,41,177,10,184,55,238,43,68,219,9,86,254,109,105,92,201,163,120,125,218,197,3,144,192,98,54,160,220,43,237,169,17,150,28,228,67,69,97,191,230,230,9,70,102,178,150,219,141,93,81,130,226,222,14,9,174,244,108,171,91,65,169,33,231,230,229,101,41,180,27,165,39,67,171,228,243,64,65,225,168,74,223,178,184,224,114,139,184,159,94,69,45,207,88,90,136,132,198,226,243,18,157,176,142,222,86,106,71,218,95,22,240,173,116,157,15,26,162,189,98,4,18,135,34,218,252,227,75,117,202,63,177,239,7,74,156,141,1,180,50,205,49,227,205,200,248,107,98,126,129,87,247,157,115,166,23,76,62,135,148,177,214,51,93,222,140,214,177,246,183,82,160,166,19,101,80,159,144,231,218,155,79,140,224,183,80,14,62,19,125,217,215,34,45,231,244,47,33,23,160,145,119,96,180,10,72,73,227,204,175,208,90,159,16,250,179,117,80,253,149,173,245,31,234,252,64,226,141,65,37,103,71,243,39,248,240,205,91,26,61,140,105,107,141,125,30,38,
 112,38,251,255,242,205,122,118,29,214,5,219,132,225,130,10,129,23,53,239,205,176,215,178,57,108,178,238,233,103,245,201,173,130,12,239,208,180,75,163,224,16,48,215,199,9,242,84,137,221,235,202,254,158,150,241,17,234,171,141,18,219,79,89,134,186,18,253,224,53,248,167,37,108,229,73,15,66,66,102,169,165,199,195,155,74,172,112,185,178,46,76,166,250,2,203,255,247,193,58,87,147,207,137,72,247,63,92,22,29,244,191,129,157,248,149,252,3,244,118,22,16,255,126,199,92,222,204,193,42,144,240,69,37,177,229,72,34,189,125,33,227,134,180,86,218,240,255,35,104,3,248,127,219,123,247,24,163,181,184,111,41,31,81,197,238,68,55,40,216,144,193,82,178,217,85,107,98,127,32,108,82,28,223,105,98,228,93,13,194,15,242,164,45,155,45,197,245,168,163,165,70,48,20,127,222,100,215,27,223,19,143,200,23,222,163,82,224,133,155,42,108,153,255,18,137,29,244,215,119,218,50,120,75,47,97,200,67,3,252,231,111,123,194,36,133,106,172,44,31,194,8,26,229,109,133,167,24,199,118,194,180,146,194,132,69,1,129,56,195,193,189,1
 10,34,102,48,152,117,83,81,144,167,59,100,234,73,245,81,148,97,101,128,120,236,53,225,195,3,84,26,192,216,77,58,163,47,255,198,118,239,186,168,220,255,5,59,50,100,135,86,106,66,124,193,252,89,63,102,206,134,22,79,241,216,34,149,100,67,186,99,24,58,201,76,19,87,112,243,249,81,201,166,2,106,198,115,252,58,233,112,35,63,60,161,238,178,173,180,10,85,15,1,150,41,222,185,59,234,165,235,240,34,81,139,25,141,205,26,157,145,49,163,196,24,239,96,39,187,40,227,151,113,108,92,69,179,133,15,33,198,233,44,186,153,168,55,68,51,76,142,110,151,238,134,29,137,246,90,199,255,98,131,92,135,144,75,7,133,109,242,229,225,225,249,170,163,143,3,154,194,95,156,4,128,49,42,12,35,9,7,219,165,98,203,136,223,254,103,236,116,167,205,37,147,137,134,76,54,142,239,196,151,65,90,60,225,243,181,53,206,79,101,36,109,201,72,147,223,137,175,254,241,47,115,92,132,30,111,136,192,217,146,93,228,98,228,51,73,68,35,108,156,43,144,251,79,107,149,44,186,98,22,52,238,173,132,229,180,194,15,206,230,242,189,145,0,25,121,20
 1,207,130,120,107,59,128,7,113,214,36,158,243,37,147,88,185,185,105,50,176,171,230,163,181,112,46,31,167,2,167,97,224,153,73,239,180,150,111,86,195,78,198,27,37,138,140,226,47,80,244,202,40,73,234,251,101,42,120,36,49,139,72,213,227,171,178,128,216,5,90,205,140,7,62,255,24,27,93,229,68,238,2,122,147,217,51,89,114,181,60,174,210,254,55,221,132,59,180,248,140,89,244,134,210,15,201,125,150,78,203,43,148,122,232,35,224,252,112,94,142,62,251,240,125,242,174,45,1,158,94,52,178,84,148,215,82,69,76,66,132,170,125,150,105,180,7,125,153,70,236,44,204,149,48,162,234,210,219,31,161,221,62,130,69,0,34,13,92,161,117,110,12,155,71,172,232,104,145,93,173,37,53,251,40,148,69,212,254,63,180,8,132,45,180,228,133,126,223,227,217,16,51,194,206,169,166,106,64,99,210,57,226,253,89,63,178,205,235,193,22,242,52,60,224,158,243,10,115,248,8,177,75,252,252,37,144,195,32,167,196,9,213,237,99,52,244,13,101,94,169,26,128,103,7,115,14,7,93,162,243,51,74,118,62,245,125,116,235,177,136,114,99,212,197,43,83,2
 37,222,211,187,7,49,120,137,54,15,189,135,65,32,254,99,249,70,146,7,13,194,183,221,193,131,151,207,202,96,201,98,114,107,1,201,92,246,53,249,39,120,68,22,20,93,17,3,247,233,90,215,2,140,82,71,58,183,150,199,120,124,213,217,86,0,4,80,44,206,33,67,143,46,188,133,108,255,226,123,160,64,84,54,237,32,249,152,116,120,221,101,147,73,79,174,111,73,169,161,32,189,214,143,218,77,229,248,67,191,87,102,73,64,64,79,128,177,80,168,227,54,20,253,125,104,211,25,39,187,75,217,16,50,54,223,217,82,88,17,123,68,194,152,247,51,188,184,27,182,196,100,211,254,173,28,26,219,246,241,156,231,133,208,218,18,148,78,243,111,178,163,208,70,56,218,232,139,27,110,200,4,121,1,37,122,155,42,191,27,73,64,58,185,114,34,8,187,5,116,159,162,67,42,222,208,93,252,82,145,98,108,3,88,245,212,232,191,193,158,0,131,138,17,95,98,180,128,108,233,50,90,124,120,124,38,53,84,244,51,226,245,92,108,220,151,41,246,70,107,215,49,77,179,122,85,173,36,157,172,109,36,229,39,91,28,130,196,156,108,11,141,79,144,132,38,47,74,86,102,
 9,137,73,153,96,169,175,2,208,188,168,85,208,181,246,112,205,119,219,8,240,215,173,43,93,114,163,118,250,86,1,133,127,35,128,44,206,106,146,145,220,148,213,0,181,86,117,87,133,215,253,56,126,20,195,71,122,173,185,188,211,221,129,129,206,113,37,81,181,168,251,141,223,50,6,83,7,137,23,93,232,119,88,155,131,87,250,241,55,188,121,110,80,123,67,11,231,162,121,201,66,82,35,23,97,228,107,192,71,246,10,30,116,195,238,109,14,176,143,41,50,160,209,34,155,180,214,68,40,150,196,54,140,187,87,226,193,149,127,123,13,103,204,218,38,163,52,132,120,139,151,195,90,104,91,147,152,192,121,26,136,210,154,8,1,103,176,123,230,30,10,141,205,82,51,205,179,83,18,179,216,34,175,135,241,102,188,121,34,159,237,4,25,210,1,136,9,200,28,174,30,159,158,147,80,151,38,235,113,226,184,106,201,179,242,118,116,140,70,181,170,132,172,228,151,33,208,48,149,162,76,164,53,68,79,155,71,183,168,13,84,25,78,113,5,93,92,220,103,0,49,208,130,17,235,241,65,112,142,2,31,72,253,234,111,79,38,120,252,144,224,116,251,28,122,9
 0,93,146,91,74,3,58,137,81,59,93,243,218,74,248,179,247,208,15,186,182,52,246,74,16,79,84,219,48,210,133,88,108,255,178,130,112,9,108,221,83,37,215,73,154,150,135,19,20,77,90,163,82,191,151,14,233,235,109,163,228,142,194,190,153,132,146,217,200,241,91,217,2,141,70,85,54,90,176,196,206,188,180,196,205,19,214,185,98,222,33,120,252,40,23,242,14,225,200,159,159,230,186,44,167,162,27,60,120,116,230,153,26,37,132,133,120,84,141,244,72,124,71,236,149,23,102,148,225,201,26,202,177,52,97,139,3,149,110,116,132,161,244,169,250,57,223,77,66,15,26,50,80,2,245,142,8,235,203,223,148,41,91,53,159,101,121,254,198,26,127,74,143,71,166,126,132,149,69,78,45,148,95,40,178,255,28,45,251,226,215,7,181,214,192,159,32,44,192,185,146,64,48,229,86,14,177,22,56,19,69,251,100,195,254,228,214,144,124,212,219,254,204,193,123,40,234,9,151,254,66,46,161,223,163,90,4,251,12,128,228,244,72,28,186,36,174,151,191,6,146,152,17,131,173,229,112,20,225,96,183,166,158,207,179,109,246,230,240,81,12,23,49,157,106,173,
 236,45,63,70,48,127,255,211,154,88,143,187,128,150,69,242,209,19,254,184,41,181,176,192,237,12,37,188,48,138,16,109,12,223,192,190,143,18,197,79,127,221,148,171,219,202,170,203,60,100,152,151,64,87,152,152,229,147,240,247,141,55,247,119,123,166,79,140,219,170,201,246,67,62,210,176,226,83,44,76,89,105,20,174,127,191,197,43,110,179,225,233,41,172,217,202,213,242,98,180,234,26,175,162,244,117,126,212,7,85,139,77,62,239,202,11,238,197,232,152,54,198,55,144,82,90,247,50,47,68,253,47,164,232,227,161,250,90,194,106,85,39,241,19,143,43,127,245,7,208,149,205,202,191,100,4,23,219,38,250,50,31,83,38,4,53,224,139,123,229,110,217,144,109,64,182,124,100,175,242,177,111,81,116,190,247,70,182,214,194,92,237,199,73,62,98,193,228,218,180,104,109,220,192,15,80,21,89,75,159,40,65,215,11,119,160,158,59,143,197,246,39,65,221,80,237,136,231,15,96,99,160,191,224,70,137,53,227,121,145,235,194,239,95,50,164,232,92,132,89,50,51,10,1,14,177,104,205,16,132,89,175,237,91,17,45,153,99,217,216,103,194,69,9
 9,73,210,75,130,57,201,84,160,71,90,68,88,164,8,120,129,73,203,146,61,170,179,62,89,145,221,49,43,57,132,192,201,93,122,205,117,181,131,79,47,236,0,94,255,251,81,122,166,52,171,36,131,171,188,202,163,248,176,59,3,252,12,57,252,128,218,230,164,176,200,52,40,240,157,210,140,225,37,41,252,146,63,179,246,25,162,87,53,123,29,78,75,51,47,167,143,165,181,124,162,237,91,126,42,0,29,121,154,183,168,255,225,106,115,116,196,51,205,141,247,123,92,35,191,48,150,8,47,237,164,48,3,201,56,197,112,52,84,222,197,54,69,86,85,131,10,65,245,82,251,81,25,80,30,136,12,192,224,242,255,2,17,239,13,46,32,188,189,140,138,80,219,104,4,229,106,233,166,226,18,54,25,202,39,96,105,86,185,188,192,134,99,239,165,195,122,78,58,127,36,177,16,177,218,90,102,249,206,251,116,241,243,165,26,142,252,138,193,116,105,220,105,164,48,53,125,109,186,35,34,122,205,152,127,79,116,214,24,206,192,178,255,226,39,60,4,179,87,59,204,169,59,230,89,195,95,121,72,195,148,82,216,220,2,164,130,12,200,48,127,201,126,129,110,191,143,
 25,73,158,39,4,84,115,236,126,106,174,18,97,192,252,117,162,62,253,87,241,207,48,254,7,19,242,164,192,71,27,50,67,243,26,216,36,32,223,118,122,75,35,255,62,33,116,124,119,86,178,2,181,125,227,227,32,69,140,54,142,186,245,34,30,217,56,205,76,126,30,48,211,12,46,251,188,192,206,94,15,93,177,165,16,184,164,28,10,10,211,114,44,29,140,3,89,56,125,152,120,147,102,154,254,64,145,157,112,119,216,204,72,136,72,56,140,36,19,93,15,234,42,90,239,55,64,12,68,180,63,227,125,5,189,8,34,166,0,242,107,154,123,47,105,175,141,162,240,203,206,202,233,171,17,246,249,50,115,190,234,142,201,87,64,114,44,200,193,173,142,175,22,61,242,84,153,22,50,62,86,240,16,208,238,163,219,166,243,152,3,79,98,89,173,171,139,117,225,75,94,125,161,197,237,71,77,235,81,93,214,166,131,190,157,144,135,82,187,109,94,61,52,18,197,249,188,161,227,84,154,250,22,82,202,160,82,233,43,64,89,216,71,198,117,106,213,76,147,77,158,23,66,171,39,244,51,107,110,176,153,242,150,46,206,127,197,132,109,192,4,101,76,171,182,42,209,222,
 228,150,191,120,73,140,85,212,65,103,60,249,17,88,220,157,186,220,24,94,32,174,206,177,3,18,75,27,130,150,233,221,229,146,77,66,233,32,44,169,46,51,36,61,84,51,167,4,6,143,130,106,207,42,179,45,87,232,201,54,158,59,211,121,192,211,83,146,94,186,159,203,124,162,178,89,152,61,96,127,107,212,132,77,255,19,16,115,27,117,8,137,97,75,226,155,239,14,215,5,170,254,87,21,74,52,118,253,7,98,191,13,129,168,149,2,130,83,41,246,220,130,166,117,140,131,85,151,39,201,149,129,61,94,225,7,90,194,119,104,160,15,169,130,12,157,135,55,187,199,4,237,247,87,15,32,110,223,46,188,145,167,81,183,181,98,28,33,76,48,163,135,164,83,178,106,186,237,47,123,239,246,67,211,225,43,38,166,127,197,87,156,239,244,125,75,142,177,67,205,37,97,107,250,168,157,41,158,35,218,191,132,171,220,109,28,116,173,103,46,150,36,241,225,32,232,74,220,175,97,77,114,6,120,200,63,229,189,229,24,204,110,88,19,170,50,76,184,195,53,179,173,39,233,141,154,171,138,183,86,147,215,181,209,210,2,37,57,237,153,141,131,11,173,29,231,164,
 184,215,31,155,33,63,87,178,139,75,241,254,82,210,246,225,110,242,230,195,144,132,100,77,60,130,52,1,207,156,84,112,135,200,128,84,12,15,203,242,13,149,6,90,134,133,57,15,33,139,10,62,7,26,104,35,196,253,178,254,70,230,77,248,203,160,222,144,246,207,182,186,146,28,185,115,180,218,180,87,67,211,179,99,127,179,208,43,227,208,139,64,189,204,49,114,223,196,119,28,139,205,234,26,189,145,227,198,155,225,9,119,184,160,219,189,31,53,4,221,137,88,210,243,62,217,61,92,1,120,71,25,210,184,20,44,247,5,208,76,18,70,31,233,169,68,155,49,211,244,171,47,254,67,226,1,134,248,162,8,116,231,53,175,5,63,216,41,255,37,104,220,143,225,107,40,82,59,207,209,206,56,232,205,157,159,95,141,32,97,198,65,134,17,167,52,243,196,104,49,98,214,12,151,143,52,79,236,41,142,196,249,138,186,55,225,40,238,62,88,101,88,187,46,68,103,123,243,125,204,55,10,241,37,102,71,214,234,217,214,119,97,154,7,78,62,22,105,110,26,84,150,245,68,148,98,222,153,168,106,202,157,194,173,14,15,214,66,90,149,138,191,177,203,168,99,32
 ,144,124,66,194,128,68,21,139,25,119,131,77,48,193,123,16,156,71,174,104,93,70,99,255,196,190,116,113,238,247,41,76,94,29,10,15,196,24,48,55,155,177,153,174,162,4,48,74,213,235,244,44,232,253,168,96,174,11,203,114,184,41,55,131,216,215,253,238,62,120,0,28,225,223,207,33,69,142,134,101,246,38,70,12,56,82,173,158,91,253,13,110,234,207,113,90,205,44,119,139,185,245,87,148,112,253,51,69,179,70,48,173,10,216,9,200,115,124,161,143,193,39,179,92,45,181,0,46,163,140,164,241,189,101,217,44,194,244,143,18,196,2,240,208,83,124,27,115,197,198,163,174,235,144,251,62,40,221,144,115,164,207,160,149,211,228,145,247,108,200,93,155,216,96,126,170,197,59,143,132,93,90,78,83,205,126,20,50,125,160,23,13,182,133,137,190,126,180,94,164,157,136,146,26,116,218,209,55,120,196,30,52,182,97,94,80,214,204,61,203,118,123,47,118,191,5,175,28,227,160,230,177,57,96,72,98,68,60,232,117,107,175,90,223,105,217,13,188,226,158,52,115,175,195,89,22,12,128,0,75,154,211,229,85,207,36,182,1,231,247,179,108,5,101,101
 ,82,136,188,170,111,113,239,193,210,175,127,237,242,143,209,0,85,237,28,205,76,120,225,64,158,114,39,69,138,36,115,118,75,207,52,34,38,218,51,90,63,49,205,149,23,107,177,60,51,60,159,21,212,72,34,25,223,18,112,104,228,149,87,157,195,208,26,211,204,232,88,42,10,113,173,244,175,119,169,113,227,151,186,164,150,100,216,117,1,227,64,252,173,167,79,231,124,51,150,221,168,243,182,68,103,216,79,168,215,183,108,16,161,115,20,175,202,127,131,96,131,199,129,160,57,34,142,147,110,155,132,8,19,242,102,230,218,178,1,56,202,111,218,57,79,52,163,147,218,183,7,239,139,42,213,245,31,20,93,211,198,78,243,189,200,190,186,174,40,123,179,39,197,213,208,78,80,152,35,250,187,94,183,11,187,248,235,46,215,216,57,81,61,48,129,117,223,42,82,130,71,205,52,150,253,218,0,13,129,93,82,152,175,166,42,96,154,15,187,74,186,216,118,51,76,172,115,96,81,206,200,188,65,224,118,125,139,68,189,60,212,179,224,182,26,162,155,247,108,35,168,83,175,162,70,92,206,163,246,63,236,70,70,252,84,177,93,144,141,157,57,57,138,
 237,110,227,143,80,91,21,197,242,191,71,107,196,126,143,154,148,146,244,16,39,238,143,85,143,148,248,133,117,25,197,183,121,110,103,31,38,215,14,124,50,11,153,101,84,220,163,197,40,232,24,230,57,135,151,163,93,41,13,199,166,28,141,232,228,209,198,116,34,58,107,212,31,148,241,252,165,52,139,31,54,227,172,24,107,234,128,227,255,16,253,227,107,29,130,237,26,23,48,127,123,222,46,162,218,58,193,241,88,83,249,13,91,55,178,187,161,107,196,182,199,151,107,85,228,127,102,96,75,218,240,2,237,8,241,237,26,250,83,216,147,113,19,254,29,156,241,46,50,237,142,41,131,115,42,36,58,135,203,58,254,159,62,230,222,150,8,196,47,170,58,83,209,220,235,194,28,194,127,227,57,126,135,165,165,152,67,34,65,95,87,107,178,53,243,141,99,52,93,185,190,41,180,82,57,50,96,137,231,48,100,111,25,100,38,239,0,243,113,33,136,61,169,202,200,170,30,81,80,140,193,234,230,38,93,92,91,21,241,26,245,149,146,207,232,25,108,2,82,39,41,156,224,101,128,87,163,169,39,51,215,33,134,32,48,119,109,162,203,126,20,218,146,81,145
 ,88,9,238,2,1,48,141,132,207,57,151,205,102,181,88,240,74,77,128,154,31,199,52,94,127,206,122,59,30,89,106,41,188,18,110,206,110,65,249,103,63,109,231,181,107,169,181,71,91,52,159,172,169,46,60,16,129,38,224,62,43,43,62,179,15,153,158,255,234,154,212,96,175,135,206,93,246,42,32,203,49,46,28,23,125,224,82,46,37,197,120,42,109,103,75,105,165,209,132,93,34,59,178,85,166,239,100,117,106,84,161,103,153,8,182,147,229,97,82,35,204,119,141,101,236,148,229,31,146,235,146,255,133,90,54,171,56,207,147,184,193,34,112,183,73,241,201,51,185,155,245,222,46,246,62,150,143,25,29,209,191,233,246,123,61,246,177,157,163,116,84,127,124,141,170,42,140,103,235,201,190,107,120,152,252,32,1,32,248,74,36,213,103,49,241,239,90,125,115,142,207,205,10,25,60,33,190,104,73,165,141,116,87,207,106,51,57,200,156,178,58,233,150,131,255,63,250,8,81,200,57,154,50,68,193,59,174,178,91,169,234,230,65,81,90,37,122,104,90,10,171,235,238,129,30,234,10,169,37,58,199,155,105,152,144,224,52,216,255,78,27,6,192,26,24,40
 ,247,222,157,98,144,35,53,10,221,48,168,225,51,34,107,188,26,164,193,4,42,136,99,0,191,2,133,146,37,6,21,222,141,73,195,201,189,153,219,146,69,21,160,204,73,24,182,73,14,132,128,19,50,88,166,64,93,196,220,17,122,243,2,181,254,184,90,183,121,220,138,56,80,9,162,136,50,33,65,84,61,34,60,169,222,184,209,137,42,240,9,237,38,216,64,195,228,93,61,112,216,11,203,103,121,246,112,0,104,14,1,16,57,57,52,41,70,165,16,150,128,104,171,122,128,238,61,75,137,0,173,97,154,102,148,78,219,33,117,27,244,60,108,114,169,249,54,187,22,176,13,228,102,135,89,11,3,26,129,101,5,218,99,11,117,27,0,57,136,252,225,117,67,238,53,86,155,121,85,106,45,98,33,26,94,243,50,74,208,141,27,9,82,34,220,100,247,34,94,170,216,130,112,232,140,167,157,233,19,57,60,145,86,81,38,39,10,129,106,107,47,39,74,62,28,156,71,191,32,128,144,248,80,200,121,81,43,78,223,128,27,220,17,238,186,113,2,175,217,15,192,49,88,190,94,131,236,238,15,94,220,182,78,163,87,113,111,203,169,211,232,11,56,224,135,127,44,170,78,143,160,52,25,57,
 207,179,111,215,173,234,54,186,234,16,205,231,70,170,100,13,76,213,156,25,182,142,227,255,19,85,196,13,213,8,6,253,164,19,21,226,101,52,152,194,177,216,140,145,18,163,119,103,179,238,10,5,188,171,200,12,220,250,76,48,120,9,205,86,150,7,40,130,102,209,68,3,160,62,163,149,98,22,59,33,254,101,86,230,93,58,58,135,227,172,41,159,205,125,127,142,80,225,178,162,26,171,18,234,114,140,164,20,121,33,32,47,81,228,238,173,12,119,192,209,111,232,249,63,248,62,132,251,164,93,38,30,65,201,130,128,255,155,146,82,162,178,142,170,0,189,183,61,60,97,32,80,93,218,205,8,212,143,191,8,25,181,95,178,201,133,80,62,86,192,33,253,133,65,82,85,42,250,130,11,75,72,68,80,177,31,95,39,141,44,54,39,216,137,65,10,64,50,47,15,240,206,182,19,201,251,130,55,110,237,63,33,26,233,44,234,0,233,193,45,156,59,40,66,179,133,148,133,123,40,37,27,193,247,142,170,71,7,9,64,31,40,72,70,168,162,207,205,27,76,43,96,91,29,199,233,70,187,162,192,21,87,116,168,151,138,115,37,58,84,127,238,0,206,228,136,157,27,189,196,141,22
 1,120,239,248,188,27,177,252,8,8,52,17,169,90,43,143,19,232,153,220,53,129,125,194,140,111,198,23,229,97,181,226,183,7,138,60,18,158,111,31,150,193,118,170,13,143,22,201,236,167,81,236,0,94,71,173,21,18,152,7,207,163,51,222,87,199,31,9,137,179,136,29,73,242,246,173,174,40,85,47,244,86,210,71,103,153,191,160,154,76,179,144,185,240,41,122,135,208,5,238,147,85,166,192,77,247,185,78,34,115,164,231,82,66,238,166,180,37,230,158,59,228,78,215,117,13,178,21,138,65,161,115,133,177,196,74,33,246,59,167,158,92,109,215,37,34,85,184,141,230,45,47,149,129,9,94,232,32,248,176,36,248,137,183,95,55,114,51,150,198,19,137,253,184,26,36,209,191,71,244,35,187,138,115,66,253,126,104,204,126,164,237,140,112,146,129,175,241,76,109,77,78,168,59,150,107,223,251,27,33,190,65,88,131,245,162,191,252,44,181,127,116,58,141,192,66,24,224,113,179,53,162,141,103,145,93,72,149,234,71,113,191,107,19,130,206,254,67,8,126,234,109,112,162,48,255,188,71,90,95,205,11,214,40,147,209,156,19,248,139,231,238,43,122,147
 ,135,104,225,29,5,193,86,55,130,219,234,100,82,138,163,250,200,119,47,171,13,95,183,199,109,193,20,67,191,37,228,24,127,14,215,106,131,200,153,250,158,110,81,150,24,97,236,69,227,245,180,124,54,236,112,53,40,102,207,157,199,226,125,37,224,234,96,126,137,107,236,179,195,196,132,243,189,241,134,162,218,50,109,82,241,56,52,60,86,121,137,10,244,225,175,186,99,165,78,220,149,26,85,231,63,69,105,87,231,18,155,85,81,184,210,171,106,168,234,104,228,64,220,66,24,52,9,243,232,136,34,134,67,180,187,106,54,133,71,244,11,3,130,87,154,166,53,217,47,159,241,69,37,215,102,72,197,172,201,44,178,206,19,118,245,252,219,73,56,207,111,223,130,92,24,114,223,20,130,99,166,222,127,45,48,8,10,164,55,13,115,114,147,237,20,240,156,58,194,85,227,69,210,56,155,54,255,30,244,39,130,180,59,2,161,24,193,179,20,255,44,155,223,246,67,236,85,102,212,179,227,193,108,81,17,179,106,46,210,89,78,61,171,122,170,135,240,209,36,219,171,97,227,195,210,129,28,205,160,159,165,138,19,45,45,75,212,32,10,172,204,163,249,3
 ,12,171,57,115,17,156,179,94,43,130,62,224,33,180,25,113,37,248,77,188,21,63,195,210,201,174,219,47,112,120,47,224,19,250,225,39,98,225,248,30,228,229,160,247,131,98,157,119,117,45,107,123,30,109,110,35,34,1,46,5,116,174,21,214,60,184,151,86,104,57,117,42,17,165,96,180,18,101,75,49,138,56,11,64,158,47,203,144,68,227,154,94,62,103,145,131,171,27,224,9,173,94,233,68,224,245,121,40,31,205,97,80,175,31,231,188,133,40,54,3,14,111,108,109,77,35,64,16,250,131,124,205,77,44,48,43,112,74,33,117,209,143,152,145,192,202,72,48,106,206,123,174,186,127,36,196,157,95,49,229,208,3,180,204,3,21,69,219,172,160,150,141,251,228,179,172,157,60,95,223,12,212,27,77,143,202,151,188,90,65,75,201,21,58,24,102,14,207,226,178,49,246,79,166,242,56,218,13,240,88,217,127,168,175,9,183,160,83,116,45,49,16,39,125,20,8,125,10,230,205,223,139,120,193,240,18,228,59,80,78,25,188,157,28,109,226,64,255,237,201,166,196,210,55,40,91,65,79,152,139,235,212,191,81,7,167,136,7,138,227,68,169,213,156,115,254,26,73,55,11
 ,216,211,34,99,216,73,88,4,78,33,2,239,197,186,27,239,167,177,53,113,122,125,63,8,221,105,150,20,27,255,132,128,112,103,110,41,92,55,85,23,62,213,30,181,245,1,140,163,75,117,20,108,213,177,147,118,122,11,56,141,109,198,1,195,83,57,253,46,120,20,250,120,109,23,27,233,201,148,248,135,123,161,135,213,226,99,165,19,61,200,141,12,112,65,213,85,1,143,241,150,15,191,253,155,34,117,142,85,204,129,207,251,187,216,237,123,249,236,76,68,149,104,226,192,50,220,12,57,4,241,203,38,178,40,36,155,69,175,156,194,210,185,25,78,135,216,107,23,195,189,222,40,231,84,179,109,169,183,112,28,190,125,25,149,216,228,41,212,128,233,230,68,162,124,143,239,86,34,81,78,201,192,109,180,70,45,11,158,227,88,129,0,78,159,242,63,164,175,166,133,67,179,132,90,184,200,131,222,146,7,202,191,101,203,23,246,187,2,241,111,45,185,16,34,251,115,73,44,94,232,196,135,37,66,64,83,193,26,204,156,4,146,166,64,138,207,44,53,229,204,137,32,198,210,196,128,226,131,161,79,78,130,239,169,55,236,99,21,218,203,50,44,25,232,67,9,
 80,150,168,15,25,45,110,65,8,251,176,159,127,14,103,170,68,135,46,94,117,67,20,21,246,20,134,79,87,247,137,158,121,189,70,37,100,200,44,182,118,43,133,37,102,88,184,48,85,216,217,49,176,232,194,159,35,113,57,186,209,248,112,154,162,91,183,124,162,128,202,248,213,97,191,80,243,44,185,78,151,107,57,203,116,175,137,218,105,137,112,183,114,28,17,110,253,87,219,64,121,251,160,99,138,29,82,215,77,25,173,179,229,200,109,72,199,189,144,191,169,59,186,144,116,182,90,109,18,113,78,41,91,44,209,159,110,247,22,250,239,72,246,129,129,175,160,164,110,244,212,23,122,124,242,183,192,240,114,65,42,8,251,239,157,234,73,230,248,169,147,157,80,110,208,19,63,65,218,231,71,106,235,216,135,184,18,97,61,142,57,124,120,124,246,93,41,132,132,135,51,248,219,227,253,65,255,224,209,58,98,80,34,71,229,92,45,165,15,153,23,204,140,142,251,116,145,9,198,165,45,224,174,156,107,234,168,181,187,170,92,49,98,33,62,228,170,45,61,101,157,149,72,44,6,201,242,143,84,173,167,19,10,186,229,205,228,144,136,21,11,145,1
 71,14,68,253,215,219,57,236,250,155,34,2,20,130,135,132,225,181,226,32,233,114,212,15,3,193,49,81,102,131,226,143,191,181,189,120,172,72,229,235,236,78,91,112,56,241,85,182,183,77,164,129,108,47,44,102,85,117,244,172,30,109,131,188,254,101,164,79,6,250,228,229,125,37,145,6,114,138,41,211,110,60,140,158,36,30,129,170,108,76,94,12,82,245,171,167,252,110,219,217,30,11,164,154,243,15,145,0,123,61,11,89,83,214,27,130,55,118,99,17,192,142,75,204,44,174,218,166,47,134,130,65,73,29,92,253,168,212,81,95,167,88,48,93,113,67,150,73,97,158,14,237,93,247,11,45,235,87,214,37,145,119,91,178,168,192,33,100,235,157,207,1,11,133,94,55,205,99,77,137,188,238,150,165,107,235,44,246,81,28,199,186,106,26,250,130,162,145,163,206,209,126,19,205,141,42,123,235,40,29,171,155,171,13,105,173,182,27,24,141,250,27,46,176,143,69,123,121,70,38,208,164,190,148,53,234,13,135,89,192,72,10,210,62,8,74,209,119,39,143,198,189,64,162,231,114,111,254,168,167,45,73,178,70,207,67,255,113,34,218,1,217,52,8,28,107,186,
 172,221,215,75,231,44,166,77,94,152,126,146,188,12,33,97,170,63,40,239,78,211,235,58,115,141,237,111,15,46,101,77,218,187,203,120,178,40,196,52,144,19,78,71,99,190,128,36,59,117,52,176,140,246,144,112,214,196,201,56,122,231,45,50,29,109,6,14,109,21,125,122,109,142,235,116,222,97,190,146,204,242,56,68,188,182,77,101,183,213,227,154,135,54,106,108,146,235,119,166,150,247,107,173,2,193,207,9,14,182,195,237,237,66,84,77,99,213,218,67,76,239,74,114,45,95,52,96,140,5,109,22,167,31,255,172,205,113,71,130,109,119,53,53,254,164,6,190,67,207,14,115,30,171,37,218,246,17,113,228,243,4,53,188,35,98,110,26,215,112,181,134,255,3,175,92,51,154,209,92,15,40,203,237,28,154,202,32,14,199,152,106,63,20,234,110,74,74,44,216,136,130,208,63,27,30,253,221,96,185,42,140,203,38,187,181,19,175,21,55,89,68,89,170,79,92,246,173,157,84,59,104,198,96,29,178,247,147,101,249,144,148,217,231,166,149,112,92,221,37,52,167,1,241,126,201,12,129,68,233,200,13,163,169,25,26,149,151,144,15,199,191,237,166,136,16,38
 ,108,148,149,110,76,128,18,238,134,45,12,81,72,78,56,57,28,221,25,5,8,106,212,157,129,78,33,29,29,90,180,112,26,132,35,211,67,62,32,11,144,180,27,47,234,251,18,164,68,60,184,97,31,42,72,138,155,104,211,48,4,249,52,105,252,236,174,127,39,216,89,17,225,61,87,95,65,35,81,28,249,90,206,245,17,193,137,225,215,79,40,156,124,153,234,231,94,208,159,83,141,187,43,194,223,138,247,42,202,6,90,181,116,222,144,163,90,79,149,228,141,114,32,109,52,26,200,168,42,177,94,59,50,143,216,86,247,152,166,125,67,33,17,172,29,70,61,239,177,146,98,72,114,183,217,65,104,97,195,211,138,146,110,253,252,111,145,200,245,127,10,36,219,134,155,63,249,183,32,214,183,58,235,33,204,30,162,153,74,5,8,185,124,19,117,191,240,255,45,38,4,94,240,159,114,7,228,169,138,25,166,48,62,134,146,101,36,67,67,235,41,197,0,29,190,127,182,209,247,201,84,25,20,246,140,32,65,15,47,142,66,223,89,101,71,211,20,7,19,179,247,231,55,110,95,167,15,49,95,107,7,234,87,64,192,184,121,45,14,105,6,138,197,34,42,46,120,23,197,36,3,136,144,
 178,103,85,95,1,51,191,46,11,113,150,169,182,255,110,189,47,108,125,109,52,130,124,217,62,190,141,137,7,171,248,219,74,52,43,37,218,118,101,179,199,197,127,151,41,93,98,64,251,199,31,59,170,139,180,250,21,223,22,195,202,84,107,186,189,152,252,204,229,30,66,49,173,150,44,49,14,67,230,73,29,13,223,83,9,137,246,69,240,33,7,254,87,3,241,56,226,101,14,235,1,214,103,112,124,202,249,69,5,71,109,49,53,224,213,112,34,209,7,8,212,241,84,152,250,60,129,166,235,81,239,152,6,178,67,157,22,232,52,35,181,255,168,125,121,225,94,197,71,208,38,10,10,146,209,11,45,0,68,71,104,95,135,93,154,62,118,20,111,1,73,168,111,31,108,144,105,13,23,29,58,119,230,251,33,91,131,177,124,254,250,197,44,102,242,7,203,119,41,91,205,126,140,180,127,67,175,47,93,41,77,191,128,91,53,90,148,247,109,44,21,50,131,130,198,174,4,188,37,123,162,136,9,41,60,113,47,142,92,58,70,249,121,35,21,87,172,184,107,125,126,124,28,176,221,157,45,74,66,184,92,218,246,109,8,29,135,205,187,142,141,101,194,97,7,2,29,98,32,201,82,73,98,
 161,122,23,195,100,4,136,162,84,46,17,245,66,211,212,37,175,119,203,110,195,200,202,7,80,65,205,36,0,27,23,127,244,247,15,180,33,184,165,167,207,152,152,4,57,100,210,8,34,155,15,107,134,201,1,20,127,128,147,40,248,96,222,183,121,216,203,162,214,189,65,90,30,233,73,215,102,196,135,173,228,215,239,208,132,2,126,64,255,3,43,76,93,217,235,5,79,62,78,220,50,33,238,231,122,231,129,26,216,143,222,201,253,121,118,41,41,39,37,148,184,40,202,243,76,121,64,153,234,147,250,22,242,86,35,144,24,189,24,111,175,144,252,76,89,180,226,100,56,14,178,148,223,237,6,124,198,116,108,145,36,214,169,179,234,36,218,136,90,157,147,1,1,78,15,132,14,91,187,215,84,71,150,167,167,192,11,101,241,54,113,161,51,214,112,36,142,243,70,191,46,170,31,148,16,248,213,50,248,183,185,110,15,63,232,9,205,53,189,138,82,17,243,36,18,119,96,170,54,210,127,38,249,166,153,159,111,63,187,198,227,162,160,145,53,26,142,51,239,144,170,15,225,224,106,169,107,96,59,174,77,74,6,38,186,119,204,120,85,75,118,119,93,198,90,145,111,
 0,90,96,238,75,143,120,220,252,21,244,219,193,184,108,197,159,40,73,163,161,239,58,109,253,138,241,133,144,235,86,69,138,72,215,30,196,212,11,28,160,157,165,80,67,179,230,178,250,236,57,121,2,170,234,30,156,156,66,147,39,77,220,59,249,72,35,24,19,211,208,116,9,108,26,241,74,103,66,111,224,121,102,115,97,74,98,156,109,165,51,189,77,208,5,186,181,95,116,253,170,54,180,92,42,25,198,168,231,121,103,106,163,19,75,29,184,139,112,186,182,42,188,73,159,97,133,99,12,100,200,78,123,46,72,18,68,58,218,156,22,56,148,120,232,135,196,35,170,141,6,231,108,131,8,101,168,72,97,129,159,72,86,158,203,146,71,174,0,140,102,235,162,237,216,103,107,79,40,179,225,39,182,30,40,55,74,140,83,140,114,232,168,168,153,246,136,105,8,9,34,112,18,162,193,165,204,155,137,161,231,159,2,246,8,14,39,230,144,226,59,7,212,162,35,151,151,65,234,95,152,58,233,68,191,175,39,105,124,212,59,44,105,85,15,137,93,130,31,163,208,175,239,87,156,31,165,157,104,202,155,81,241,191,232,87,79,226,11,135,121,3,96,177,126,127,167
 ,173,172,123,40,207,174,126,134,207,45,74,109,144,65,35,189,65,97,214,251,183,106,45,232,126,134,32,3,49,251,252,114,61,154,117,154,245,91,100,137,49,255,91,140,198,58,77,172,219,45,243,104,84,87,232,57,131,190,133,156,130,125,15,173,191,83,205,201,152,95,18,95,136,173,149,212,186,182,93,209,225,58,97,105,224,27,205,149,142,106,40,182,140,245,49,226,189,232,48,115,96,212,172,191,102,34,87,3,116,90,254,72,232,242,160,179,87,8,137,15,206,168,156,175,72,21,252,255,193,212,211,190,3,60,14,71,224,5,53,243,12,227,33,23,36,130,152,40,237,79,172,252,212,128,195,101,107,61,202,0,160,10,214,30,120,111,53,53,40,231,50,79,215,41,108,7,36,178,2,96,216,90,255,157,68,73,187,35,205,200,76,218,25,3,11,152,226,201,29,28,31,62,144,73,100,179,121,1,186,15,42,99,128,176,4,89,35,29,150,108,239,204,6,4,114,242,139,224,102,29,254,151,90,166,201,215,234,59,114,212,160,54,12,111,2,245,245,145,167,4,113,182,146,137,124,58,77,109,113,31,169,176,80,236,100,141,29,51,174,203,217,188,118,97,235,111,200,27
 ,18,33,96,246,223,177,14,203,147,92,17,95,248,216,105,252,186,57,1,223,47,185,142,28,120,163,107,227,154,130,129,244,72,240,140,226,231,49,116,22,128,169,20,38,39,186,124,51,78,46,46,137,179,225,74,123,155,35,172,153,83,139,7,21,68,226,65,185,24,230,106,184,112,46,69,3,140,59,9,52,178,65,100,63,191,68,61,201,13,166,63,239,191,73,1,116,108,253,170,72,221,116,115,220,58,167,164,43,189,180,100,68,82,234,170,46,211,237,175,187,232,23,38,193,58,235,71,222,166,60,65,3,195,229,169,42,46,1,137,140,192,176,48,196,193,203,190,196,108,141,217,36,157,47,244,186,36,178,45,70,192,188,189,30,98,132,225,132,124,49,33,244,53,145,28,211,76,123,186,224,153,87,199,214,175,247,215,238,71,45,143,81,230,59,165,2,230,83,240,25,143,62,245,2,53,153,111,45,249,132,58,124,119,18,243,131,109,64,207,58,171,105,116,17,253,73,190,83,60,210,159,196,112,156,232,129,167,175,10,199,153,33,86,93,146,145,4,98,50,129,196,232,178,24,47,166,41,145,192,141,76,70,85,55,224,178,213,186,89,215,110,6,102,64,133,69,61,26
 ,203,85,172,230,6,118,185,153,36,134,44,172,94,103,181,115,186,82,143,65,191,0,145,172,137,20,211,162,174,203,240,88,223,218,170,255,217,241,47,62,134,113,175,168,56,202,243,224,156,16,72,185,88,145,93,145,3,17,187,107,81,108,146,2,234,136,173,101,83,26,0,80,216,246,218,93,146,110,238,194,1,22,153,204,159,68,200,75,51,226,121,154,203,153,71,131,239,123,38,67,247,97,68,104,136,54,189,90,174,59,124,189,29,160,213,80,207,184,162,195,238,118,34,31,232,120,162,232,207,192,135,4,187,154,61,19,148,18,185,246,231,68,133,195,59,88,78,102,93,180,18,75,11,22,252,181,236,168,79,158,147,17,74,141,244,238,69,21,143,26,78,145,19,225,240,213,211,241,59,73,247,125,160,17,63,232,123,19,210,245,214,100,209,229,149,215,254,23,44,78,194,53,110,57,33,1,211,188,162,213,83,164,248,253,155,197,104,168,1,194,123,232,113,58,245,221,253,214,244,101,8,53,191,58,220,95,226,204,72,254,135,60,10,136,160,71,51,29,120,136,64,83,250,41,75,203,36,36,140,131,205,19,190,204,182,125,221,229,143,53,211,66,4,185,43
 ,44,3,39,92,85,143,106,45,194,164,131,150,100,138,224,155,73,150,167,148,83,252,232,43,139,23,145,32,201,62,32,40,245,133,175,125,72,196,134,35,87,108,227,229,248,161,188,87,68,217,192,70,35,84,232,205,228,130,2,167,187,120,95,208,192,167,16,239,225,208,71,89,149,185,208,62,66,233,125,78,97,151,210,239,20,43,224,53,157,154,249,200,41,189,209,151,35,150,106,174,9,137,174,86,111,29,174,246,154,251,158,151,208,83,72,56,231,61,33,4,179,227,230,77,47,6,29,57,119,63,174,28,28,242,224,176,1,60,158,32,194,104,5,57,210,163,230,167,100,132,151,10,228,249,145,31,85,162,151,187,187,197,18,122,75,116,233,121,176,21,105,2,130,164,76,154,119,170,111,11,203,85,41,230,1,202,185,107,67,210,172,153,152,170,26,12,159,160,231,134,113,189,53,230,17,81,162,162,13,158,133,206,227,194,183,77,51,89,183,174,177,197,168,217,133,8,115,233,226,184,129,68,92,25,0,44,7,141,54,0,207,240,157,202,36,168,37,183,231,222,208,125,251,98,184,75,199,16,11,27,137,92,237,89,203,67,137,22,43,83,125,45,100,51,92,195,29
 ,121,229,94,175,45,236,231,116,233,177,232,109,99,105,47,59,105,156,12,23,193,130,237,89,254,102,110,133,170,236,156,201,41,21,193,188,55,75,180,138,57,72,230,137,246,91,47,143,135,62,197,144,139,34,222,77,242,3,79,11,240,5,82,100,188,224,178,153,142,204,71,38,65,179,118,171,119,74,216,54,179,222,128,83,199,65,173,160,145,101,158,164,154,43,155,38,213,236,171,195,85,246,23,86,112,10,80,229,84,211,150,134,193,62,169,107,30,64,232,117,48,41,89,149,198,54,148,192,221,70,22,100,78,3,169,235,100,181,107,55,199,14,75,207,144,68,136,25,232,170,7,155,138,88,152,29,152,191,148,82,63,144,242,40,86,177,66,217,113,87,241,210,120,84,33,214,46,55,79,97,227,220,56,198,96,134,190,114,164,239,162,83,85,230,121,138,95,110,181,94,20,81,10,221,162,163,149,198,235,227,145,255,179,67,155,138,152,104,204,248,52,1,145,5,23,160,5,211,161,80,1,172,147,249,100,2,180,187,168,179,212,20,235,71,54,247,14,9,69,117,209,83,241,190,67,4,140,250,147,232,58,129,22,203,98,100,107,213,253,4,212,97,136,108,18,124
 ,96,101,208,36,4,42,149,25,234,72,56,216,255,179,159,214,37,7,166,208,105,66,87,231,252,127,220,237,93,155,255,80,187,96,222,204,148,6,166,113,22,214,240,227,12,52,229,183,66,49,67,191,162,9,152,15,113,136,192,67,63,85,22,63,87,112,202,166,2,213,120,152,255,181,134,137,66,247,232,234,218,169,127,5,73,141,151,225,154,105,164,185,107,210,178,166,252,86,10,235,139,120,114,80,146,94,32,163,186,70,155,61,158,252,105,236,30,204,171,119,248,41,136,44,207,238,97,31,34,141,8,118,12,5,12,40,127,10,229,209,250,44,139,106,81,133,183,250,27,32,197,254,151,197,198,172,209,248,178,231,185,222,107,28,225,248,189,143,112,213,78,192,158,214,62,163,99,12,30,1,121,219,221,66,155,139,24,140,195,179,143,66,215,155,7,83,238,237,75,240,154,201,85,139,205,233,199,122,254,101,132,17,190,94,73,235,191,100,57,104,164,126,218,68,89,66,157,253,226,112,176,80,226,2,253,38,196,203,229,163,193,188,38,7,249,115,83,216,89,233,190,146,82,112,222,175,181,141,84,160,130,52,247,197,206,94,64,238,27,65,38,2,205,21
 9,79,181,176,119,1,165,225,176,96,242,18,50,85,239,239,246,176,206,91,221,80,102,224,27,200,103,85,96,114,225,232,70,119,187,230,174,79,252,191,215,122,85,95,200,244,186,46,19,157,191,41,73,121,65,227,80,214,166,123,86,109,109,209,195,123,247,169,103,65,55,157,218,164,175,239,149,181,74,236,112,8,109,64,3,155,247,151,56,156,94,94,216,210,113,155,147,50,147,54,20,167,43,157,149,141,181,184,152,63,71,176,84,72,28,139,252,238,13,151,33,177,114,228,166,106,63,158,198,139,236,119,39,69,160,64,201,160,187,52,141,138,234,12,127,198,122,87,180,17,167,16,90,156,89,248,227,220,20,31,198,82,251,223,230,105,53,207,81,117,111,215,31,75,52,253,149,236,128,216,233,10,156,243,54,131,73,103,142,48,147,167,182,253,67,214,6,145,45,131,21,250,27,87,59,210,123,197,227,219,147,176,117,41,251,232,15,223,212,44,127,143,251,37,58,16,18,212,141,29,178,72,67,227,115,143,156,81,136,8,155,30,197,83,235,161,49,51,91,113,142,73,20,5,140,138,18,133,225,206,148,72,203,3,227,43,19,42,191,180,27,213,144,91,40
 ,178,156,221,25,15,106,16,120,164,22,67,36,107,102,207,82,176,40,49,54,106,119,231,33,94,42,138,31,137,176,136,30,131,193,191,198,232,121,245,184,243,61,60,172,166,152,26,130,38,33,60,17,168,116,255,75,205,133,132,124,207,162,20,116,39,10,125,84,47,192,54,178,22,98,160,206,172,21,71,20,97,107,214,230,45,148,193,66,37,55,154,173,214,196,214,84,18,181,81,60,122,75,189,173,142,204,30,73,127,203,200,35,255,212,138,152,115,170,148,222,126,222,194,251,151,152,87,164,128,147,237,235,49,120,89,152,31,85,226,65,224,213,59,249,119,183,120,226,237,167,80,182,112,183,197,146,210,105,132,208,158,136,102,79,249,27,46,124,139,2,122,240,232,57,191,171,203,90,85,66,1,214,97,215,15,211,186,132,196,201,180,24,233,52,172,189,250,203,115,159,168,129,38,86,149,254,22,35,31,200,135,150,63,171,62,202,101,133,57,131,245,221,140,168,125,73,85,22,158,172,208,222,101,131,112,78,132,116,55,95,27,6,208,77,132,30,109,41,86,10,169,93,238,229,204,72,180,150,165,47,243,117,93,118,177,255,251,201,147,177,192,
 255,138,94,124,11,91,229,169,130,187,106,241,156,210,100,219,156,106,64,89,70,223,173,31,0,103,110,250,145,237,198,175,30,145,10,44,135,255,191,161,164,68,16,163,144,209,231,190,12,169,240,93,175,143,23,221,118,30,228,147,141,90,233,234,170,47,231,123,12,137,99,16,115,236,59,94,149,58,64,166,184,226,29,121,54,145,104,1,202,113,69,151,226,80,163,139,214,254,124,254,238,253,130,246,33,89,28,31,84,67,185,191,132,86,193,11,236,177,250,178,147,239,25,206,11,89,23,131,126,123,188,219,172,104,118,5,145,84,255,50,242,7,155,85,6,110,61,3,89,103,217,247,66,26,35,238,106,205,134,232,251,64,4,171,23,170,146,164,131,104,172,188,122,1,14,52,53,179,120,9,25,182,4,78,2,171,117,231,188,112,17,185,54,136,35,113,111,177,38,9,192,237,175,166,161,154,91,75,30,107,171,42,34,14,220,33,42,38,97,12,102,80,73,164,126,120,178,222,3,232,13,180,20,1,254,23,185,190,251,141,220,8,194,20,137,183,60,67,222,192,2,145,166,48,98,98,235,77,165,175,139,233,183,102,62,62,231,213,193,157,11,224,243,190,100,191,13,
 33,255,27,228,11,97,74,132,28,247,16,197,43,41,187,177,181,251,126,175,244,184,76,224,38,6,101,156,76,18,68,188,120,80,157,228,39,13,83,208,45,124,11,169,204,19,196,184,115,89,167,101,236,198,255,119,72,116,14,26,124,72,20,55,183,171,235,4,155,254,64,92,80,116,167,224,255,130,251,235,24,185,51,152,52,86,154,232,2,55,17,53,246,226,163,126,118,48,228,161,14,28,57,24,20,236,81,58,118,58,64,88,173,139,62,201,244,225,145,168,206,123,240,214,114,15,128,72,210,245,110,203,194,105,1,94,152,255,61,204,184,53,193,69,125,29,58,173,130,233,55,185,46,100,76,224,91,172,91,225,60,89,3,21,227,58,125,168,55,15,55,222,8,89,138,83,10,167,147,51,92,177,116,76,178,214,153,100,148,119,15,216,199,64,198,176,221,42,17,158,169,96,151,165,39,225,255,38,61,188,162,99,105,185,87,88,212,134,240,128,215,237,198,182,67,249,71,251,96,19,110,1,84,38,182,153,229,246,254,31,130,138,145,148,150,166,237,17,182,122,135,218,217,0,95,10,10,14,220,179,55,125,162,83,41,58,153,232,79,216,181,217,194,238,66,29,186,41,
 45,240,221,10,224,2,24,132,206,197,35,124,92,38,235,39,156,48,181,4,180,159,28,12,196,238,49,63,163,205,254,139,11,203,133,80,189,225,214,104,23,186,200,124,113,221,179,128,107,89,159,22,200,51,81,224,225,225,199,234,63,39,205,197,163,35,161,179,15,6,193,208,245,238,84,222,28,95,229,98,94,18,154,128,241,218,125,31,130,96,105,90,160,33,20,66,131,224,34,210,123,66,74,198,115,191,33,68,43,154,155,5,185,250,231,48,154,182,41,48,201,168,115,14,149,105,14,57,209,126,216,13,92,122,255,154,127,88,116,5,255,207,150,79,37,72,119,189,56,246,173,125,78,6,13,255,193,198,162,98,149,39,123,127,20,165,49,87,100,228,48,146,186,168,216,70,254,43,122,66,9,253,190,97,62,3,173,87,223,241,78,209,144,204,110,111,11,105,247,163,36,106,244,104,231,64,74,201,250,89,33,60,199,128,254,141,174,90,125,199,103,115,218,84,60,13,239,83,66,124,105,231,165,61,209,5,124,64,100,25,100,197,92,239,224,226,219,67,148,2,146,11,124,197,69,192,189,59,119,43,176,149,198,141,148,82,35,210,26,133,4,221,14,63,202,254,117
 ,41,2,92,253,80,138,120,89,29,61,228,242,45,89,246,157,109,82,66,152,235,161,227,70,18,154,109,194,91,179,151,132,202,86,190,162,101,253,253,162,77,209,155,77,183,224,215,22,252,223,140,235,115,157,129,89,73,108,132,4,130,137,110,78,205,54,166,96,4,102,83,230,174,66,225,52,217,117,27,211,170,214,180,1,169,126,187,43,227,110,122,199,66,97,83,27,201,125,197,18,51,21,237,203,64,51,139,158,107,7,10,9,12,217,224,32,142,115,106,163,130,132,233,175,82,141,0,45,84,210,93,11,175,174,70,16,33,12,203,233,34,223,176,28,235,84,53,246,168,80,151,134,201,22,15,65,42,242,21,113,254,69,46,208,195,131,44,53,90,32,227,40,82,206,127,236,24,160,63,245,153,223,243,86,129,196,65,115,109,42,93,133,186,221,143,6,231,102,184,5,91,176,241,219,255,184,44,184,159,118,229,100,193,142,92,244,164,114,32,202,30,70,102,117,168,214,201,100,231,47,121,21,185,150,103,124,119,217,114,30,199,249,4,84,155,18,120,98,146,201,98,90,20,95,22,60,133,211,106,146,76,190,62,165,192,162,190,145,76,240,76,20,87,33,86,0,203,
 154,87,219,221,65,61,206,108,209,244,44,234,23,169,8,185,121,204,180,37,64,192,189,162,238,14,5,78,179,215,121,253,182,74,75,133,42,123,101,211,156,215,50,163,52,45,166,238,19,238,20,215,241,137,140,67,189,135,206,116,198,104,196,210,28,231,231,23,221,72,78,171,81,232,68,214,130,11,164,81,130,85,90,94,160,252,169,62,102,237,222,170,77,131,242,9,91,195,115,166,4,18,185,198,175,53,138,27,244,139,185,226,158,24,113,101,152,113,4,72,9,5,157,174,245,215,243,251,49,196,97,154,48,152,133,15,237,250,101,6,18,164,222,15,236,76,201,176,52,46,3,1,204,174,51,1,46,125,110,126,137,111,183,84,76,58,54,156,128,1,49,171,78,47,89,183,146,48,157,31,241,79,111,206,23,44,204,124,114,55,2,50,82,83,46,134,165,83,84,112,141,121,73,250,36,224,89,249,78,172,113,24,34,210,22,114,251,60,142,145,141,185,41,216,87,130,15,100,110,91,59,235,150,211,102,79,9,161,10,169,130,122,29,47,182,11,3,217,106,194,233,54,14,93,78,34,216,72,163,81,56,233,254,39,34,52,42,59,29,144,69,201,23,49,42,89,87,35,248,6,88,21,14
 8,108,102,38,139,58,170,51,158,31,89,20,101,11,145,80,207,184,159,99,217,75,6,53,166,121,81,164,162,72,64,119,16,1,23,177,150,196,181,40,185,90,61,172,204,208,83,88,159,143,102,241,29,204,243,212,202,120,214,135,243,216,117,33,185,99,104,33,132,131,26,10,147,254,191,52,113,11,110,216,126,42,174,227,172,74,184,101,177,213,74,18,88,44,232,71,130,228,55,254,22,123,225,5,188,129,87,129,69,154,94,170,150,68,126,106,255,93,150,199,104,236,31,169,225,136,67,87,212,218,198,60,64,125,79,86,182,15,46,52,206,104,38,146,70,22,178,204,42,177,68,130,125,244,234,209,217,187,127,198,231,100,196,44,244,164,45,36,187,219,113,132,52,8,102,48,121,201,101,37,183,52,54,184,5,90,190,141,90,71,76,222,63,103,56,35,100,115,12,147,75,230,28,31,78,20,71,98,22,54,153,72,12,34,58,108,205,215,152,62,90,185,141,128,91,155,255,213,41,189,2,237,77,14,177,62,250,160,50,100,250,25,199,240,233,196,87,121,54,107,29,102,206,164,102,21,209,91,155,17,161,71,89,99,227,79,201,105,161,64,135,138,59,146,239,176,31,107,
 227,238,92,92,46,67,66,233,28,230,177,83,48,214,159,106,66,55,28,241,150,142,8,130,149,117,180,89,169,157,17,141,30,227,137,33,204,216,63,219,134,212,205,94,227,240,102,152,43,192,59,229,11,116,160,146,169,56,141,15,181,211,0,29,43,176,176,150,39,154,8,14,133,234,228,115,140,237,16,59,204,191,54,154,199,87,85,230,180,71,24,82,38,217,233,16,150,154,180,126,193,161,0,90,115,56,122,44,39,125,198,148,81,128,159,103,237,71,91,2,22,137,55,141,133,65,35,210,178,54,181,4,87,244,115,138,28,142,77,108,189,86,235,24,122,21,250,75,123,99,139,32,140,244,73,123,18,43,124,100,222,178,116,60,191,186,253,20,247,94,8,132,69,111,234,184,207,251,119,60,12,223,104,251,131,166,65,93,214,149,124,224,201,84,51,251,93,22,54,71,105,156,160,6,87,40,47,34,137,127,96,205,31,22,231,177,130,0,243,1,29,93,36,104,243,202,59,193,232,137,181,76,213,35,138,26,92,8,114,190,154,226,139,247,87,213,14,78,86,167,139,182,119,220,95,182,252,107,195,93,103,231,206,223,69,28,122,11,207,78,201,190,236,254,69,229,120,195
 ,35,247,48,125,73,109,72,88,70,136,219,215,201,61,219,44,134,248,139,207,250,204,141,92,158,135,244,33,120,83,71,59,123,35,157,108,19,247,146,4,237,36,192,119,73,119,69,178,184,10,102,121,102,248,246,165,211,210,226,181,32,235,200,92,47,14,207,236,123,51,40,173,240,93,38,187,38,175,91,35,27,108,217,153,171,11,174,65,255,152,150,164,192,151,249,69,231,70,166,64,46,15,107,64,88,143,47,131,253,120,193,26,92,99,4,135,52,253,229,160,123,172,6,114,226,33,194,187,125,150,68,36,69,90,35,83,97,22,0,186,201,110,235,171,220,244,115,202,45,231,196,70,99,8,98,231,67,22,134,174,65,51,133,235,123,24,157,89,107,24,79,105,97,198,131,33,29,189,231,188,155,137,127,216,7,111,198,231,225,130,249,82,158,243,137,164,95,188,177,85,51,81,174,32,22,0,8,158,37,242,30,215,182,84,129,162,83,152,108,60,136,190,226,222,113,244,118,161,161,71,55,247,61,185,251,211,170,181,128,161,241,145,172,101,46,19,124,217,177,99,113,188,122,56,133,236,199,214,87,99,82,13,0,119,136,93,17,183,225,87,233,18,149,244,61,221
 ,243,153,119,77,81,48,172,59,22,133,81,23,55,95,238,216,15,93,194,70,121,231,208,151,158,161,211,172,91,35,65,213,30,154,112,70,237,182,217,44,223,115,216,154,6,34,108,188,146,100,15,118,207,150,160,108,79,54,3,26,49,238,253,62,35,253,255,216,62,184,244,123,107,216,48,87,75,114,254,136,150,20,72,239,126,195,9,49,119,85,215,31,109,83,171,80,24,192,151,103,123,154,188,157,18,24,37,167,120,120,13,176,169,28,189,206,129,45,206,1,16,229,185,125,220,113,55,89,111,225,207,164,73,51,182,115,225,255,132,205,241,2,53,6,187,141,23,94,178,218,59,130,119,87,250,29,224,208,46,163,153,32,29,212,111,242,157,35,192,209,168,107,176,204,43,244,126,187,8,182,236,106,155,235,89,89,120,77,19,15,20,92,15,52,67,210,32,150,194,32,230,215,70,248,178,176,31,212,105,152,169,120,67,55,157,36,63,129,29,38,25,238,203,229,144,149,243,173,78,194,97,60,132,35,177,147,39,40,62,152,115,52,101,184,188,50,6,204,201,220,213,2,255,212,218,124,102,164,24,131,26,255,165,57,26,203,252,255,203,130,142,18,206,59,236,21
 2,18,201,238,1,249,182,46,214,111,47,223,230,100,228,112,29,220,165,64,98,50,167,45,44,41,27,26,136,62,68,196,49,133,82,153,0,157,51,110,28,215,194,26,23,190,3,201,164,131,223,23,143,21,132,46,169,225,240,130,234,232,8,97,245,3,15,160,135,143,158,165,50,168,77,121,16,91,133,161,231,6,169,151,204,105,85,234,5,140,210,66,122,194,163,250,196,101,48,81,1,53,87,62,48,234,5,60,190,115,9,49,140,152,48,187,128,87,26,198,216,159,98,17,178,5,232,9,33,130,240,90,161,125,57,88,127,183,3,217,118,92,51,70,238,97,27,165,237,226,157,209,191,132,150,221,58,68,212,93,114,72,168,169,139,83,234,232,94,154,240,201,29,31,145,105,236,149,55,9,178,94,255,184,168,253,137,10,113,104,63,181,31,203,205,34,251,53,180,162,144,150,139,140,6,121,245,37,44,120,28,35,233,196,195,215,193,64,55,23,230,213,206,84,16,184,154,153,92,69,49,156,138,76,197,112,197,165,150,48,117,136,97,124,139,142,88,75,61,231,0,58,188,16,249,192,82,132,100,54,12,226,222,98,147,64,0,57,151,193,211,125,147,52,40,249,56,15,175,213,221
 ,108,246,254,46,126,155,107,44,45,62,154,20,144,199,231,63,30,128,188,149,218,212,233,255,4,132,74,242,216,205,182,68,121,171,104,79,202,107,31,124,179,0,229,100,30,239,141,41,24,98,107,113,117,63,123,140,113,72,46,183,164,177,23,176,196,22,242,156,164,39,206,6,161,55,201,20,222,35,91,145,6,248,13,86,59,184,159,89,185,126,223,104,86,179,121,88,102,94,240,163,136,130,15,37,162,140,204,162,68,43,83,225,192,196,238,208,155,63,114,6,239,61,90,92,231,206,193,199,168,220,5,186,60,164,245,239,58,142,149,225,3,156,250,88,211,115,139,140,28,16,219,105,89,21,14,208,86,90,168,81,203,229,175,23,170,249,102,176,109,233,57,206,253,107,21,132,163,96,211,190,195,240,186,11,76,253,154,171,79,25,163,239,19,61,65,2,4,215,38,105,101,229,251,140,50,43,127,68,15,88,130,144,152,71,115,109,61,106,208,181,236,178,120,217,242,215,230,213,67,131,209,153,250,114,87,80,137,18,252,108,67,115,156,171,234,100,232,130,210,18,224,139,27,92,177,253,101,231,109,163,104,217,54,76,21,154,233,66,201,67,24,61,234,
 48,161,35,209,126,168,177,127,144,9,164,24,235,116,153,228,211,110,53,175,154,210,233,207,5,244,248,213,197,38,113,131,187,70,69,28,24,37,250,71,49,77,68,65,7,10,71,210,59,151,21,248,181,103,168,131,64,174,49,80,49,140,166,201,197,82,92,40,85,79,132,231,222,155,217,142,17,1,160,255,43,48,6,109,160,130,232,75,10,15,3,251,167,37,126,245,130,18,119,131,118,78,115,45,124,65,215,37,147,94,226,37,77,196,160,154,50,203,217,141,222,102,90,188,211,12,102,60,142,181,39,8,60,176,87,72,193,82,238,120,244,9,14,25,142,85,97,121,177,142,203,196,5,247,119,198,238,85,80,236,189,181,115,129,35,117,112,81,16,185,29,180,249,227,3,122,159,238,65,184,136,32,105,130,13,73,108,69,138,198,249,49,206,113,130,169,28,25,27,8,57,5,148,221,125,86,167,110,226,46,224,186,226,59,45,214,224,11,121,163,54,203,191,71,249,144,240,22,203,207,143,8,109,162,60,84,208,235,255,214,217,196,202,236,49,214,109,108,111,174,119,84,30,143,169,248,73,148,152,161,63,41,137,133,3,71,210,245,20,163,133,52,46,155,116,97,57,236
 ,42,224,182,250,67,76,60,246,129,112,213,203,222,152,145,185,226,56,216,154,200,6,69,197,98,23,23,60,51,33,8,99,119,189,216,89,44,223,52,168,27,82,241,166,195,210,125,160,80,16,70,172,63,148,40,230,230,95,224,120,234,26,17,77,58,228,215,209,139,55,100,66,117,120,72,32,172,158,67,180,231,23,222,245,128,219,149,209,7,40,35,219,41,35,247,230,0,85,42,42,136,193,91,232,144,254,205,169,253,143,254,185,22,1,36,55,80,141,197,128,113,150,84,181,183,223,41,127,164,252,42,112,246,224,166,171,208,135,80,162,195,180,222,152,197,189,254,8,211,230,11,171,16,6,186,129,6,118,87,25,195,97,130,130,196,160,10,93,161,55,22,69,131,182,177,132,143,248,3,16,69,62,82,221,134,176,69,52,157,80,200,215,182,212,207,85,111,70,12,41,92,150,249,231,204,247,129,41,163,189,99,174,165,34,164,66,28,9,44,16,210,110,57,10,140,76,253,151,69,71,96,0,18,123,181,82,57,203,25,165,25,77,244,182,26,97,8,157,109,79,197,116,13,232,96,169,199,160,208,118,110,246,158,22,191,64,70,154,166,178,81,205,254,121,50,255,37,59,195
 ,122,93,205,236,154,11,26,114,39,67,216,132,59,164,108,79,100,0,31,253,78,9,180,155,222,118,126,9,151,85,106,38,190,150,114,79,125,175,70,187,50,214,144,240,75,35,221,73,53,66,171,135,129,217,249,105,189,113,79,35,251,123,97,60,160,109,94,4,118,51,161,112,149,149,236,218,119,93,142,247,166,86,172,253,157,40,119,58,198,140,253,49,116,189,254,51,196,222,197,181,33,212,250,66,56,124,170,26,159,247,159,9,62,165,96,212,18,125,195,93,198,253,10,73,69,240,172,249,65,27,240,157,232,153,47,167,86,121,16,118,244,83,60,103,101,205,112,175,28,1,248,150,78,167,121,169,50,200,188,57,16,14,236,175,169,122,231,70,89,123,68,179,33,175,250,24,177,76,118,171,219,115,225,81,18,59,94,124,135,90,178,108,169,8,73,176,173,130,238,227,79,155,182,160,144,71,101,204,34,212,38,238,224,245,115,42,64,231,146,167,31,165,212,64,2,169,111,197,34,152,43,242,133,125,195,124,221,145,154,103,190,137,253,182,148,30,79,13,149,39,45,181,48,14,204,65,216,91,58,98,160,193,183,74,50,166,77,102,202,25,183,209,36,107,1
 62,199,92,53,163,225,187,152,232,187,131,190,169,33,254,79,135,129,32,174,64,101,212,42,216,62,63,171,152,92,67,64,104,252,231,80,225,31,50,193,185,120,28,183,195,249,11,129,86,157,65,29,51,169,252,37,242,34,138,44,95,255,51,219,156,220,14,43,79,231,18,227,141,25,43,101,163,188,62,164,148,109,57,157,114,184,13,125,142,133,143,99,221,178,114,29,118,50,45,191,218,184,55,179,217,137,206,173,63,24,222,18,49,59,80,1,23,156,92,47,103,134,55,164,105,80,222,172,225,147,247,192,2,106,230,217,59,34,76,151,177,85,22,144,98,226,0,228,246,34,245,36,38,22,69,227,129,59,246,1,56,230,215,159,177,90,207,81,97,203,32,234,4,10,222,129,32,164,14,229,113,241,209,137,223,17,184,153,138,159,229,190,182,204,168,63,80,213,67,158,64,229,3,227,238,249,159,182,129,52,6,171,128,222,254,86,218,29,196,194,230,50,6,133,129,31,0,240,0,102,23,220,84,236,227,62,26,138,234,253,185,84,217,71,114,58,117,164,57,216,182,118,212,18,220,182,199,138,118,238,97,206,172,133,85,18,203,186,110,176,219,203,17,83,50,94,191
 ,201,247,101,37,94,186,94,96,143,6,223,23,58,72,66,25,132,31,221,169,241,78,114,57,209,137,173,152,28,151,203,107,65,91,133,59,165,96,24,15,215,13,31,207,52,30,48,214,75,28,96,66,135,204,106,50,229,124,186,142,254,219,237,254,207,93,224,216,180,51,147,125,9,137,151,40,188,180,229,232,0,144,213,248,242,169,34,130,44,87,158,48,83,16,3,92,56,44,233,197,58,14,10,153,75,237,167,210,170,8,3,168,52,117,157,15,151,131,233,140,130,213,218,120,196,108,255,202,164,7,105,218,174,158,175,51,120,153,69,172,161,37,95,209,58,251,49,55,106,88,9,33,127,77,220,170,83,76,200,77,197,137,196,150,144,187,102,238,243,242,150,130,236,42,248,215,186,242,98,225,190,182,38,48,193,184,206,89,227,65,44,107,94,29,22,236,76,45,108,225,16,184,18,52,149,156,42,69,228,101,136,76,143,37,150,31,202,19,208,123,78,80,180,59,38,106,165,230,150,231,56,95,53,223,249,51,42,63,206,47,15,166,181,79,109,184,120,197,8,191,27,152,123,208,65,147,153,2,253,158,62,196,243,198,104,181,166,67,178,181,192,202,31,178,160,227,49,
 209,150,144,208,191,47,232,197,183,184,247,108,73,248,253,31,245,153,143,83,251,145,199,21,138,202,253,71,64,101,184,6,31,55,250,103,154,119,218,89,25,8,233,213,22,2,130,81,161,60,23,108,97,121,219,13,106,143,219,219,63,167,42,106,229,121,234,3,190,251,58,229,135,38,82,39,140,101,97,69,25,200,20,68,30,115,113,33,172,57,9,175,230,244,185,1,163,247,254,80,26,59,95,61,161,68,102,188,139,249,253,102,156,141,82,23,157,59,149,201,249,47,121,79,51,178,118,221,193,227,125,20,143,59,38,238,145,86,203,130,123,53,98,56,88,250,134,71,29,116,67,73,235,18,3,64,37,125,68,223,131,164,129,234,100,150,70,136,234,51,252,36,3,91,16,175,190,5,215,15,164,100,76,238,235,53,9,196,33,200,80,250,181,55,192,13,5,196,255,147,89,202,13,59,59,100,22,137,202,152,199,242,63,76,165,23,230,220,43,240,55,149,31,20,32,30,58,65,240,248,246,245,117,164,188,87,107,142,221,5,213,16,243,96,54,114,171,44,199,126,85,163,42,51,254,144,50,249,110,181,106,106,207,215,246,233,253,255,8,131,147,122,140,129,43,204,82,139,2
 01,95,67,123,152,49,92,247,225,170,189,115,28,178,42,244,63,55,128,105,238,101,197,59,84,252,144,7,254,98,250,0,113,212,93,147,85,149,189,209,170,74,181,123,118,20,63,0,240,140,151,121,204,115,238,201,95,204,101,199,211,67,202,56,152,113,249,15,86,236,90,180,186,146,64,216,124,147,35,79,125,146,132,234,119,111,158,113,193,119,97,29,228,21,132,152,182,187,199,115,112,123,122,251,18,197,7,158,253,185,207,117,112,130,200,118,4,101,198,111,30,64,91,181,10,109,223,206,146,60,11,107,171,138,172,212,116,200,34,83,161,133,73,111,79,190,108,145,252,186,51,157,31,62,71,106,160,190,220,77,222,219,137,195,88,221,7,199,249,38,208,127,255,178,249,103,49,77,33,38,157,165,112,173,144,211,115,185,248,151,60,139,145,34,76,51,1,3,99,237,228,158,151,62,73,242,135,211,43,107,40,132,72,184,85,0,192,208,104,97,83,196,196,20,94,167,107,165,133,167,68,81,107,5,238,236,210,249,80,96,162,10,34,253,57,33,249,73,71,170,190,156,150,238,194,235,245,35,111,81,215,152,85,88,17,238,152,159,183,206,20,60,131,
 1,187,51,165,9,131,182,190,62,62,35,7,86,135,152,157,71,5,114,217,3,43,29,155,104,213,252,254,100,29,117,70,10,190,73,105,206,157,200,166,21,104,117,140,229,217,93,164,162,253,235,85,240,17,125,48,232,146,189,13,14,188,186,0,249,203,85,59,218,100,184,96,121,96,111,16,38,163,50,91,101,216,145,41,123,101,79,163,82,157,205,103,209,95,140,152,11,201,108,31,196,67,105,135,117,31,38,189,142,157,65,117,72,112,29,26,96,55,64,55,236,0,16,231,181,74,251,64,254,12,204,201,76,5,129,235,152,171,157,135,142,99,240,214,236,155,156,8,123,47,182,19,192,158,225,75,180,252,44,40,23,163,234,189,93,212,226,11,191,246,5,233,154,89,236,2,211,17,117,47,245,227,31,33,118,221,9,87,98,155,84,143,32,237,110,2,141,202,50,189,32,9,227,137,157,163,111,164,122,29,164,199,134,222,178,34,78,77,178,80,234,192,168,49,233,9,19,102,194,52,183,164,40,68,142,24,97,92,79,140,244,33,52,205,143,153,67,59,238,57,211,238,65,217,85,26,11,4,2,235,23,230,29,182,145,17,23,239,118,32,125,86,111,103,250,192,65,149,74,161,63,
 125,93,177,245,159,228,123,2,173,74,58,9,99,22,159,180,6,242,4,80,108,246,65,242,35,49,53,201,4,192,103,155,43,94,241,123,116,209,171,175,143,133,40,185,81,154,115,142,66,66,200,125,72,248,133,236,35,59,183,210,162,120,133,86,23,143,35,221,2,236,208,150,151,161,153,89,42,183,54,228,87,61,104,116,51,61,170,206,217,8,211,189,8,75,181,2,107,77,26,149,120,68,56,156,171,231,156,31,8,205,143,213,131,82,138,247,201,182,129,177,34,139,38,168,15,61,249,147,129,113,37,125,24,169,210,131,237,255,67,147,23,72,245,3,99,52,38,18,31,58,73,174,65,177,133,217,164,98,102,238,154,254,31,163,20,220,192,196,155,210,97,13,122,31,151,197,15,129,113,220,240,93,115,51,79,232,22,51,229,13,130,51,252,113,139,4,197,61,1,229,101,32,101,125,9,117,113,49,2,172,3,54,247,251,160,230,29,69,253,166,191,146,176,200,14,98,71,228,20,45,120,35,253,209,78,0,63,137,98,34,150,112,3,247,196,139,138,164,19,27,118,91,240,252,240,252,34,184,186,31,108,225,85,31,43,221,146,69,69,13,190,169,103,21,26,211,172,130,140,120,2
 31,127,206,12,182,75,137,13,193,165,216,102,185,235,43,33,222,206,133,19,27,10,177,186,102,241,157,48,84,102,22,82,146,95,219,132,74,160,250,63,242,34,62,156,242,82,206,195,39,206,145,37,91,113,82,194,249,228,143,133,209,35,194,122,222,241,134,186,11,115,210,216,60,47,63,238,242,84,159,120,190,204,21,103,209,180,102,106,92,255,99,73,237,251,25,59,145,239,248,187,209,3,162,136,202,255,167,46,106,109,60,33,92,101,241,22,228,58,11,22,99,236,11,135,197,154,104,72,73,59,6,228,37,132,141,159,8,209,32,78,98,32,207,81,65,70,97,42,203,97,51,44,189,127,213,240,88,198,250,235,79,138,125,202,228,39,32,179,97,8,241,225,90,185,33,7,73,223,74,201,124,82,163,91,205,8,217,134,71,170,203,109,216,77,101,115,213,38,84,42,0,146,233,85,126,33,149,7,112,2,223,255,145,21,174,48,5,47,182,214,199,15,156,199,75,125,162,95,210,166,23,91,226,45,223,81,242,195,61,255,177,99,186,210,84,200,188,85,115,1,83,205,6,126,74,110,89,191,157,52,75,161,202,78,156,16,131,157,119,82,25,90,112,253,141,208,17,204,155,2
 15,28,198,185,207,77,54,10,233,84,102,113,234,48,45,185,25,164,152,98,1,185,7,186,235,44,16,93,111,199,225,253,76,2,211,7,71,166,14,60,230,209,133,254,2,88,86,218,223,170,160,70,112,255,106,5,19,183,167,199,234,71,80,41,189,179,235,3,84,169,128,114,58,68,128,12,214,238,255,107,37,116,220,40,159,35,85,8,209,169,117,158,47,196,161,112,107,85,209,119,210,9,114,125,61,236,166,160,162,71,105,118,108,196,242,9,173,17,234,176,62,62,215,65,241,217,103,83,252,3,58,182,69,18,37,4,187,155,58,139,220,87,153,197,36,42,143,220,18,145,151,200,179,119,128,17,51,125,105,37,199,45,31,233,134,244,90,137,169,214,178,190,252,114,50,7,98,149,103,12,128,43,107,154,195,4,193,235,12,26,2,229,103,52,37,163,243,68,48,209,168,212,231,200,138,148,27,182,175,17,136,64,75,104,191,109,162,108,57,251,38,51,61,181,125,117,54,157,35,92,69,233,135,221,204,152,57,210,76,51,101,175,119,179,199,204,112,243,243,69,222,25,189,153,99,100,213,144,142,98,237,241,78,145,148,241,168,253,175,117,153,153,254,94,37,188,150
 ,115,240,245,135,105,14,122,10,185,84,181,146,100,4,168,2,61,100,18,177,141,233,243,67,78,35,160,223,0,110,198,173,208,169,228,19,42,152,142,86,11,93,97,58,223,111,253,79,247,105,120,230,100,196,212,5,158,168,232,182,121,173,160,142,239,28,234,149,160,126,40,120,149,150,156,115,211,66,105,167,148,49,128,45,97,235,216,114,36,77,176,144,120,92,47,250,175,200,15,32,123,92,182,15,248,182,197,86,193,250,73,199,136,163,253,184,176,197,15,230,252,115,138,105,175,101,113,132,97,205,29,62,67,139,14,70,236,232,162,74,157,93,98,225,252,37,17,12,183,126,129,11,5,131,12,217,4,146,33,161,79,247,32,9,77,63,70,86,124,55,100,94,9,0,47,159,62,43,23,112,79,10,209,214,46,131,203,71,35,3,253,172,179,3,213,175,189,184,50,198,21,79,151,51,113,42,205,220,202,167,157,108,247,166,90,187,90,131,11,148,24,48,204,13,159,196,191,163,98,54,72,82,240,250,123,238,234,67,192,70,236,153,184,141,186,217,97,110,19,93,23,98,116,171,140,167,32,179,86,159,82,83,177,30,210,157,45,26,219,20,110,178,60,119,214,0,100,
 12,140,210,90,60,68,208,147,36,156,45,243,53,130,83,51,140,251,155,79,76,19,7,246,96,91,9,242,109,29,61,112,114,58,149,254,250,223,6,186,68,114,79,130,60,49,85,0,237,97,81,180,90,221,163,192,100,250,226,208,180,121,137,92,140,48,135,118,172,107,253,56,208,78,241,243,178,243,124,8,117,20,161,223,154,27,63,74,140,107,120,217,84,23,203,81,59,118,236,33,103,206,28,233,213,145,47,158,108,227,39,160,155,136,124,36,121,67,60,93,95,88,205,246,134,15,134,171,120,206,207,189,254,61,57,228,111,105,65,108,198,103,7,22,66,255,1,122,235,65,141,23,237,41,226,114,43,182,135,182,101,248,28,177,124,105,134,198,43,209,182,31,221,136,253,222,149,167,151,30,62,85,180,6,250,174,242,160,246,143,145,131,244,138,165,202,16,2,184,235,95,246,32,235,146,109,147,241,10,37,165,117,102,94,53,58,199,70,201,173,84,171,145,132,189,222,39,34,216,71,171,189,133,129,205,1,237,106,121,186,213,107,165,10,55,74,72,196,254,160,161,31,11,141,40,2,52,182,4,254,52,8,50,43,60,74,37,20,237,3,157,193,94,48,47,111,241,214
 ,180,242,213,225,11,233,61,100,166,205,181,183,1,64,166,143,70,63,130,161,12,106,151,220,38,108,35,201,56,91,81,133,84,203,203,199,23,229,141,104,125,182,62,145,71,84,168,239,93,88,75,235,186,52,219,60,77,93,136,55,132,81,112,96,79,171,142,210,157,131,145,136,216,62,149,93,27,167,85,41,153,144,99,235,147,145,108,180,134,38,102,146,111,11,253,254,222,61,168,223,44,28,161,153,90,88,215,202,239,195,25,153,108,69,125,66,19,214,10,211,121,166,139,42,37,195,224,184,110,2,126,66,113,100,11,204,69,5,85,156,15,231,31,160,161,122,239,177,202,87,185,223,234,176,55,53,148,177,229,245,231,35,179,233,109,196,108,205,189,128,4,204,14,8,118,59,9,14,148,154,224,70,84,195,75,49,65,130,172,119,112,126,212,81,24,158,62,112,234,166,25,200,200,158,85,40,147,159,245,0,245,17,100,201,205,37,112,164,87,163,76,33,1,254,65,210,250,113,144,26,14,136,79,17,33,255,120,70,246,7,232,0,49,239,251,138,34,60,91,230,171,247,17,87,38,248,28,159,58,192,145,214,35,123,59,155,78,246,107,172,73,165,218,162,138,181,
 139,73,0,49,184,59,85,26,229,95,12,19,62,247,243,203,248,96,254,240,190,199,252,130,232,4,76,155,114,159,220,198,214,122,122,131,96,213,63,94,41,199,181,10,97,27,9,21,149,49,54,213,53,139,123,19,228,17,56,74,45,150,142,141,251,77,120,178,202,249,1,180,15,255,132,133,29,187,130,163,34,79,223,153,120,136,144,138,211,137,59,167,14,43,155,58,212,129,126,241,239,214,239,181,248,139,95,206,199,230,152,136,196,128,88,8,103,246,31,186,15,93,100,88,178,30,41,84,199,228,29,56,226,143,148,231,38,42,135,70,192,63,22,176,97,71,22,12,90,64,114,180,32,144,91,6,218,154,81,148,120,134,173,103,173,92,30,161,19,67,28,142,18,220,93,22,143,45,16,210,221,51,249,249,247,197,67,82,59,100,172,75,81,183,202,64,5,73,191,44,13,72,234,86,65,175,50,143,245,184,174,125,71,192,186,70,86,109,83,39,218,98,173,105,52,70,245,84,117,15,5,217,129,46,174,112,222,242,105,114,116,14,195,253,96,141,35,76,191,114,176,51,233,110,18,238,80,153,3,120,147,151,0,108,198,44,105,169,44,103,124,84,58,29,93,72,53,164,27,121,2
 55,242,82,75,108,221,103,120,214,105,250,116,242,206,41,85,134,122,71,242,47,207,247,36,196,90,101,234,82,138,65,145,199,152,144,250,67,235,74,160,88,197,239,100,181,187,135,204,234,179,170,161,112,221,110,202,216,198,159,247,206,221,76,138,232,100,151,70,233,181,132,161,129,122,51,32,4,219,50,68,140,121,206,228,236,147,41,46,0,77,10,246,237,142,138,120,50,236,127,76,111,90,22,26,191,146,30,182,124,91,226,223,254,167,95,148,82,252,60,84,230,51,99,50,21,196,233,23,243,13,199,213,223,171,221,200,116,108,7,255,31,149,42,249,181,138,144,193,88,151,188,119,237,182,217,234,1,48,247,199,199,13,90,45,109,163,37,195,217,203,155,58,113,51,198,88,81,214,4,68,124,73,32,54,55,219,112,205,170,88,14,237,155,235,35,203,61,118,125,103,240,80,79,58,225,172,138,168,156,44,122,246,216,140,228,80,101,3,37,179,88,209,128,105,4,36,211,33,127,190,77,198,75,197,147,160,132,139,82,181,112,159,204,84,201,5,104,241,160,215,202,198,114,210,99,202,13,5,199,91,211,128,225,230,242,158,83,57,10,250,33,192,2
 47,63,195,225,152,209,35,219,22,116,71,51,134,50,200,173,137,79,68,239,5,142,24,133,241,151,225,62,120,52,66,94,188,167,247,237,33,63,129,180,140,201,9,20,164,97,206,28,142,125,190,161,77,164,0,71,131,49,112,114,45,47,228,52,17,206,112,228,28,124,246,81,22,25,88,91,34,121,103,199,226,181,10,218,136,142,137,32,135,34,110,117,45,203,104,242,43,25,122,240,104,159,196,160,181,163,76,197,197,149,209,225,242,134,163,2,227,177,8,84,8,245,45,113,56,3,242,172,252,71,161,230,163,134,161,232,116,188,36,209,173,209,181,47,56,126,197,53,29,172,124,163,33,227,56,125,117,182,234,79,222,251,83,76,110,26,70,233,34,43,58,41,231,242,81,102,250,139,102,116,96,80,243,62,212,200,174,4,245,206,113,47,100,73,118,208,38,180,163,181,168,14,203,57,4,246,58,70,86,233,178,47,159,48,229,82,71,140,151,163,142,53,188,22,241,137,216,61,158,253,99,113,161,148,202,140,134,122,61,79,212,9,14,138,139,146,72,189,83,159,191,67,195,97,109,62,177,19,245,39,25,19,117,158,99,130,160,204,38,105,214,205,11,109,211,117,
 64,208,206,73,131,62,211,34,44,222,121,250,32,68,97,218,200,245,225,70,182,129,117,22,87,214,109,169,91,133,232,89,122,117,18,147,254,239,239,240,25,22,252,17,210,132,126,100,88,151,57,76,46,50,224,4,104,37,25,143,96,247,163,82,49,73,200,181,145,124,77,215,12,223,240,214,214,14,15,104,119,30,38,168,200,245,221,70,90,179,216,220,2,131,114,206,219,3,64,169,101,58,112,219,26,164,4,105,54,183,99,25,97,8,153,177,41,31,142,23,121,77,151,74,144,247,124,247,22,7,115,20,220,94,222,173,127,2,128,172,51,79,152,230,25,131,103,189,243,250,6,142,197,204,68,63,198,123,82,55,176,67,192,30,102,51,167,53,72,124,245,221,3,75,190,124,89,135,143,214,207,22,100,231,54,21,230,187,133,4,255,51,231,248,170,194,225,135,105,38,192,215,123,106,159,73,135,236,159,194,63,39,159,173,148,91,142,190,186,127,211,48,233,84,237,189,34,129,229,82,38,41,171,191,58,59,246,157,241,9,140,230,207,204,81,31,21,74,245,46,226,132,39,249,91,30,147,140,89,116,181,93,104,30,77,91,237,37,217,247,186,125,64,5,86,45,140,182,
 23,212,27,230,221,100,198,233,116,48,120,86,35,213,174,240,209,232,255,217,251,24,36,26,73,40,119,38,198,90,202,9,154,70,145,198,48,221,71,43,117,200,43,236,153,253,86,212,109,215,145,143,85,79,55,125,167,12,201,142,84,24,42,99,29,17,80,90,101,121,211,23,209,50,76,61,240,182,18,41,133,163,250,195,128,249,138,100,191,181,163,101,164,100,240,215,112,40,141,150,162,239,67,4,106,25,170,151,190,8,23,76,176,103,200,44,137,169,213,248,238,114,90,32,188,210,90,202,115,191,169,31,139,249,255,152,132,13,226,192,194,185,123,165,23,126,26,80,20,235,131,118,222,250,120,242,44,244,85,100,236,192,104,59,147,119,104,172,215,107,102,62,79,27,139,33,253,200,105,107,12,213,106,74,73,0,3,172,7,183,77,114,82,144,181,0,122,229,114,78,221,32,119,188,248,118,7,9,223,196,57,205,216,112,31,30,15,12,49,107,23,33,222,222,63,190,137,115,3,253,36,173,116,156,216,101,35,11,67,53,144,197,5,97,196,237,47,49,173,206,181,99,209,85,205,131,193,228,133,103,177,145,158,255,216,1,91,240,29,203,64,58,237,172,223,1
 70,97,42,186,41,135,94,48,22,31,154,47,45,227,93,122,193,10,200,116,74,104,41,32,207,149,200,150,23,52,170,212,225,66,104,222,160,169,255,145,158,5,13,54,166,206,99,239,188,127,139,126,163,36,97,241,180,62,111,87,105,12,102,70,193,164,61,49,178,86,31,84,45,150,87,212,19,84,83,101,236,227,91,124,158,71,31,40,163,190,70,119,27,11,149,46,220,158,22,74,247,214,36,196,40,178,169,47,200,131,142,255,43,6,235,190,165,211,152,161,151,16,193,237,212,206,226,4,57,179,223,183,164,51,209,78,68,43,124,68,193,139,185,57,249,175,126,193,250,252,145,48,97,5,27,135,59,168,45,212,125,234,109,60,111,119,175,115,88,107,151,41,109,68,76,229,171,46,5,114,53,223,68,192,83,232,70,189,187,202,126,75,221,233,33,77,142,40,224,201,227,62,232,150,180,217,213,167,157,135,29,246,117,186,124,235,58,249,100,176,186,177,224,225,237,40,239,166,145,179,188,215,62,42,35,97,207,118,88,134,80,237,219,193,36,203,30,4,71,157,208,229,36,67,8,114,45,191,148,78,157,208,40,28,212,190,99,153,106,5,126,248,124,235,23,134,
 133,209,111,2,205,164,58,224,168,81,11,111,254,80,208,28,52,53,95,248,7,170,110,230,125,122,225,80,150,197,148,40,252,86,140,150,169,119,245,183,19,141,86,201,146,195,99,43,212,113,199,93,152,85,107,209,114,209,0,223,121,158,129,225,71,188,78,79,101,237,102,244,35,214,167,214,52,122,91,215,169,127,86,230,87,152,119,161,102,0,0,219,227,220,0,255,33,245,251,229,128,79,176,76,19,215,55,163,230,123,166,171,228,25,37,59,67,1,98,38,126,46,207,90,104,28,162,135,72,8,119,12,3,140,68,17,246,228,231,200,68,51,182,170,42,205,227,100,0,221,128,65,231,229,115,247,251,2,32,36,245,67,193,27,221,113,231,27,228,80,221,155,229,221,83,12,108,104,51,202,12,136,125,187,3,12,156,30,113,77,153,36,61,174,93,187,77,252,180,49,167,167,90,178,54,154,196,181,83,69,162,24,27,27,7,37,46,19,11,158,162,152,203,5,33,200,197,219,94,127,169,64,84,210,213,142,201,72,206,21,24,192,102,87,234,12,214,229,6,3,106,245,228,173,0,79,12,125,37,39,35,169,156,197,168,29,14,193,52,162,190,41,88,139,219,15,214,95,151,159,
 161,170,211,80,76,48,136,102,194,49,149,190,99,124,177,221,144,169,255,190,181,120,56,163,195,156,3,126,127,250,251,250,66,22,108,169,240,46,47,136,246,245,227,89,195,209,109,111,235,77,23,93,47,25,155,61,74,2,153,110,92,59,158,98,20,11,66,153,15,234,62,203,42,49,148,176,73,35,207,93,40,105,163,171,183,152,185,185,44,187,155,116,246,23,18,56,49,198,233,100,188,147,33,169,72,100,221,57,40,56,71,14,7,145,76,171,170,197,216,225,69,201,233,72,1,56,53,118,25,73,28,191,217,103,95,98,112,141,118,245,198,57,130,51,181,45,71,144,89,37,187,63,239,255,72,2,168,143,42,30,2,182,200,138,54,6,188,107,124,154,226,232,29,11,12,107,202,211,184,58,90,176,66,147,240,116,104,170,53,204,11,36,144,128,53,115,104,96,71,119,244,224,214,37,52,9,100,169,24,218,74,202,154,143,167,255,196,225,139,188,250,253,167,255,184,127,114,15,174,122,158,203,58,111,107,103,239,118,76,211,144,94,72,110,234,132,79,191,65,191,173,62,233,69,148,102,92,21,130,187,16,205,156,176,104,227,45,179,138,251,6,103,255,76,38,149
 ,193,19,103,89,122,8,253,91,103,248,76,235,137,119,146,237,45,218,162,69,167,69,156,67,194,42,113,27,1,210,62,71,17,132,74,89,211,35,250,153,227,236,3,9,201,181,254,253,51,56,72,9,234,48,86,238,208,184,156,175,250,92,68,188,80,219,100,98,206,204,112,28,154,242,116,128,242,221,254,243,149,247,76,162,91,93,54,41,81,84,46,85,28,6,44,218,26,6,105,121,192,67,110,6,169,72,147,163,224,7,238,198,129,251,126,190,219,47,64,90,10,237,75,131,209,119,251,129,102,160,194,243,85,236,249,96,55,115,167,205,243,123,135,142,87,22,3,240,61,159,143,246,87,198,59,113,218,180,152,1,197,141,162,213,86,179,48,12,138,161,4,51,4,184,170,105,214,124,91,34,136,130,183,223,117,145,178,46,148,48,91,112,184,101,55,179,177,27,77,103,219,247,188,226,90,13,156,238,211,44,176,144,193,119,100,182,53,166,238,139,208,1,86,156,16,49,92,13,159,73,238,91,120,142,116,133,29,153,140,217,236,3,39,168,133,192,231,97,155,178,47,165,127,87,202,18,121,248,26,8,249,109,147,89,66,120,232,208,211,132,148,84,110,163,59,23,0,44
 ,75,47,109,64,142,100,7,127,202,57,216,15,22,125,138,126,93,249,87,52,127,148,179,34,35,40,81,15,154,211,41,224,16,191,210,122,93,179,227,162,158,100,45,10,224,112,171,91,61,84,255,142,57,26,212,226,72,53,41,117,38,233,90,191,208,24,113,246,124,19,61,142,4,250,132,54,207,107,16,20,183,38,252,69,23,65,254,36,47,71,218,236,151,166,209,49,116,78,123,54,122,136,120,152,140,114,131,248,190,160,180,115,36,198,188,236,213,206,81,119,35,214,144,83,159,172,183,142,171,178,113,120,56,182,252,244,158,87,124,103,127,216,204,11,168,118,121,235,144,149,210,220,74,49,127,153,25,65,207,44,15,78,142,161,13,2,83,57,20,65,19,127,91,184,134,3,249,188,19,118,81,102,253,48,92,185,200,95,210,253,46,110,52,80,66,108,117,202,211,102,86,129,118,79,179,124,56,179,139,240,93,197,21,228,16,25,42,83,59,195,112,91,33,116,176,208,83,140,11,245,111,46,245,29,152,38,119,162,211,165,64,112,177,219,220,133,178,89,196,86,78,169,157,162,175,249,159,145,172,92,26,134,144,182,156,148,41,240,186,147,123,123,144,142
 ,195,121,13,213,185,20,92,137,130,134,171,37,28,245,166,74,130,74,68,221,205,130,68,27,76,214,178,71,230,76,46,82,131,217,122,102,45,235,110,172,115,253,237,133,194,60,25,36,148,59,227,3,75,14,185,235,21,182,178,206,233,39,53,17,180,59,126,93,55,91,75,2,190,232,104,183,20,42,10,211,48,103,205,26,57,19,36,221,110,118,23,10,40,158,13,16,44,59,106,196,158,27,255,17,229,240,152,242,0,209,76,104,113,137,104,193,50,50,203,184,65,166,73,219,53,102,214,217,203,188,54,152,199,37,4,135,121,62,219,174,36,13,191,180,183,37,137,15,119,168,113,128,175,68,173,63,254,97,9,129,65,45,90,85,9,75,55,128,61,235,137,232,39,248,39,184,204,71,221,154,135,30,78,219,47,129,186,188,99,209,78,200,160,82,192,186,190,144,162,229,223,228,43,64,235,216,22,143,107,21,209,195,74,245,228,69,76,200,247,64,126,217,161,65,85,65,103,150,75,151,91,223,163,32,77,57,96,240,137,160,44,180,41,91,23,18,204,250,47,55,3,104,102,3,23,163,97,137,231,236,54,44,171,49,221,218,77,126,229,170,38,221,117,78,165,32,120,16,129,97
 ,185,132,204,50,247,173,67,163,168,235,235,175,13,74,34,225,248,19,6,35,130,166,146,220,229,36,67,143,234,72,223,79,56,89,141,175,172,165,151,129,228,160,233,62,170,16,140,111,27,121,240,192,148,112,133,90,130,19,118,251,32,65,158,67,177,78,228,18,86,177,195,90,163,33,84,180,81,83,155,10,236,155,53,4,232,207,131,207,53,152,203,88,151,22,49,179,222,161,153,251,143,148,2,182,221,139,222,5,239,132,220,140,135,211,43,149,9,97,170,173,48,153,83,237,51,46,127,173,133,157,76,18,91,30,138,235,105,130,4,127,136,127,37,142,51,207,201,21,45,239,195,105,64,73,122,71,119,138,128,66,28,8,224,57,217,45,179,85,126,94,118,125,189,7,64,5,27,163,203,41,142,187,106,37,148,9,39,17,110,196,204,23,14,106,78,112,166,158,188,65,36,216,194,99,220,20,242,89,77,19,190,65,204,41,28,119,145,13,95,167,119,42,145,16,4,192,100,169,4,63,157,130,62,119,14,189,128,250,123,28,35,133,161,119,140,188,245,250,73,129,223,11,142,76,114,175,26,144,115,158,2,174,165,247,112,183,220,161,200,141,241,12,218,35,133,223,16
 4,232,145,10,128,156,75,111,187,0,42,232,173,54,26,9,98,78,164,81,158,218,210,158,101,145,123,244,17,232,16,242,6,74,175,218,216,33,18,80,25,180,220,37,159,26,89,252,14,78,189,105,110,15,84,144,134,73,53,146,39,120,64,42,128,193,221,11,171,43,56,123,192,186,158,152,59,231,11,188,50,122,199,119,195,242,161,81,47,14,102,149,39,13,206,11,64,180,31,109,20,244,71,151,152,254,176,149,53,2,147,245,233,94,169,54,14,35,75,232,16,145,242,68,212,151,16,133,218,221,210,99,82,199,189,215,203,215,127,87,52,241,138,124,87,56,83,25,181,220,242,147,191,159,246,89,29,41,210,40,255,34,22,223,134,73,101,116,186,117,238,123,96,118,109,86,10,70,94,192,246,169,205,79,75,198,148,188,77,21,91,28,124,17,4,36,32,155,4,55,69,139,179,83,146,180,252,124,157,18,103,73,227,18,97,91,87,187,110,42,84,141,77,83,168,128,185,243,137,54,59,41,244,141,98,159,238,155,228,73,92,248,192,139,94,131,78,185,200,217,250,191,88,239,248,195,76,109,106,40,193,173,214,219,51,158,140,143,223,91,65,69,240,65,127,193,74,161,10
 5,166,10,118,143,0,115,184,40,85,102,18,165,93,162,143,14,166,182,226,26,226,243,132,9,229,160,76,160,105,164,123,30,118,153,56,100,72,130,233,94,131,79,81,117,50,208,162,5,74,104,222,61,145,91,54,186,66,34,212,53,47,186,237,207,164,212,84,62,146,246,152,203,207,168,38,3,7,213,18,33,251,65,46,215,106,0,158,134,69,63,26,67,40,61,107,0,62,58,239,143,105,71,167,110,91,100,20,25,8,239,222,11,52,197,144,84,13,63,161,64,67,144,233,120,97,50,18,233,117,92,137,160,224,87,222,70,154,245,99,112,90,2,61,37,213,20,7,181,38,183,88,247,13,64,29,112,204,15,53,59,32,105,238,214,43,200,185,105,123,84,151,146,161,98,19,197,6,22,234,14,160,145,198,140,227,174,31,126,137,135,242,7,146,178,189,109,179,197,18,109,92,214,133,123,7,37,16,199,191,125,128,241,76,173,188,209,235,16,61,247,183,124,60,152,58,21,151,87,214,63,149,156,135,163,102,100,156,88,68,123,249,123,187,3,232,28,128,19,190,116,8,22,0,171,61,16,212,60,131,166,82,101,8,57,245,137,210,226,105,130,216,206,50,176,159,130,209,104,98,199,6
 7,170,240,35,221,96,21,52,113,226,39,0,68,86,216,197,237,81,235,199,21,7,238,13,211,96,118,142,195,59,170,235,45,218,139,243,245,0,59,48,106,215,227,47,135,169,195,101,93,114,31,255,250,43,119,65,151,203,132,214,134,110,138,20,18,13,252,7,106,0,135,247,33,146,192,176,135,33,178,196,27,45,107,170,84,239,233,153,102,87,193,68,122,173,216,102,133,248,114,211,181,211,12,75,205,254,23,246,203,83,175,145,23,67,60,119,17,141,19,48,120,88,80,67,164,53,46,240,146,178,112,2,224,181,235,192,50,16,62,105,21,75,23,179,155,110,115,39,193,0,143,110,66,219,8,170,213,40,152,18,149,43,160,105,255,129,102,110,140,21,131,6,37,32,121,105,244,198,69,218,131,151,80,10,172,38,100,224,73,157,187,108,98,114,240,122,123,166,7,80,163,174,154,201,174,107,100,90,29,159,245,69,210,203,107,236,16,57,0,203,162,137,208,148,108,65,13,74,76,138,89,86,187,96,232,28,177,83,56,26,117,184,173,130,126,212,69,158,93,76,94,0,212,181,1,200,115,85,230,166,86,255,3,37,231,2,143,238,237,11,114,41,249,122,246,20,241,182,2
 49,56,173,158,100,79,52,19,252,62,100,153,154,149,163,205,138,91,36,196,139,248,110,177,243,53,248,112,130,117,197,50,132,234,3,243,127,168,181,246,58,22,231,162,243,196,86,84,115,23,184,184,243,130,83,252,154,176,131,236,230,104,13,208,148,210,191,221,147,155,249,143,122,185,57,26,179,137,173,245,50,202,129,0,36,92,157,34,216,193,173,113,97,115,5,172,147,78,71,252,70,242,253,170,112,38,144,219,32,87,100,214,198,219,91,90,232,238,68,188,29,203,233,16,139,141,98,154,179,225,17,55,169,49,176,243,45,97,27,239,222,158,62,152,161,92,19,4,37,147,175,230,46,135,92,156,140,247,33,210,204,17,228,26,197,177,183,64,135,245,88,198,231,164,64,227,105,23,97,217,213,226,254,133,210,113,54,206,171,241,197,250,3,175,105,245,194,96,163,43,229,241,76,247,35,34,26,53,173,62,21,132,38,2,103,132,190,162,41,37,27,115,191,31,87,246,174,111,114,199,45,159,102,181,21,138,6,118,193,10,220,227,56,130,209,203,223,202,235,28,229,16,217,112,1,217,102,182,145,215,56,218,202,253,192,73,201,197,175,157,46,17
 7,189,155,31,10,211,168,5,179,46,233,182,39,128,14,24,159,80,135,220,74,34,254,68,172,73,73,122,60,70,16,217,191,83,71,34,110,92,154,128,198,220,214,129,75,180,238,11,13,245,207,148,116,118,5,74,80,173,226,64,128,99,40,69,119,197,198,55,11,1,202,125,171,198,20,65,63,15,232,46,119,240,104,226,34,221,162,167,65,87,188,238,167,204,43,197,203,222,201,126,133,103,92,175,34,11,175,28,82,212,114,190,48,3,243,10,36,229,195,203,87,106,187,238,25,127,181,241,214,174,0,164,149,166,5,198,218,91,190,152,183,97,53,83,203,174,126,97,133,71,32,99,219,75,254,216,27,81,198,31,163,160,29,122,9,100,189,95,84,12,131,170,224,78,241,122,73,162,197,145,162,164,140,15,54,254,69,203,35,133,69,85,166,24,125,28,17,41,105,134,207,239,66,185,39,248,36,82,85,252,235,129,43,152,211,14,61,187,116,42,95,76,252,75,1,167,151,41,72,178,251,229,143,236,177,136,132,127,199,74,244,107,177,198,78,221,104,216,173,235,218,83,63,47,67,81,157,39,168,28,234,242,138,182,218,162,167,243,246,102,225,233,234,123,83,164,19,2
 29,193,247,28,124,2,238,132,15,211,152,154,31,57,122,51,121,64,129,197,254,194,206,171,186,3,212,231,242,52,34,188,166,196,135,127,228,108,78,27,86,77,8,177,114,116,160,110,15,47,10,193,19,205,253,181,183,182,155,182,160,88,222,234,102,102,246,87,85,230,53,47,185,112,111,6,88,81,3,157,35,60,90,218,64,232,20,107,148,201,129,118,58,81,161,171,116,158,245,160,167,222,60,51,96,35,108,175,103,45,201,160,249,82,63,194,68,65,160,188,183,76,102,78,35,82,13,36,56,35,199,69,77,192,151,53,252,107,180,65,49,66,127,95,242,178,90,169,185,163,47,21,254,19,69,137,170,74,240,156,147,165,182,222,196,179,174,148,232,176,105,249,58,252,37,63,158,87,224,167,88,126,68,131,71,184,156,243,153,51,243,21,169,218,40,29,44,23,104,19,105,206,72,187,162,157,180,112,126,131,215,109,114,91,110,87,69,115,45,93,136,141,89,203,76,142,85,112,180,254,75,94,159,97,5,116,48,201,91,199,237,54,49,62,57,225,71,28,113,42,156,115,230,188,225,217,197,82,28,59,85,135,225,162,12,97,255,160,219,156,232,8,118,17,140,163,7,
 59,142,197,76,114,201,22,66,109,158,11,28,132,235,190,253,77,114,234,251,89,200,215,225,154,116,165,104,54,68,16,44,210,209,37,4,171,254,75,137,240,96,196,209,195,140,4,255,214,117,9,40,186,176,124,22,185,52,158,68,5,54,213,190,90,138,105,201,52,119,146,125,129,86,169,233,222,203,87,201,189,153,56,237,153,199,194,2,248,253,48,71,248,97,161,158,27,100,146,41,128,32,185,69,83,235,57,46,188,38,141,126,35,37,1,143,101,24,112,68,133,235,53,43,214,188,207,158,9,193,160,155,219,224,70,35,217,144,224,163,140,185,79,86,221,175,12,255,56,149,21,74,125,153,67,4,105,126,239,158,227,141,103,63,198,47,190,43,246,103,14,153,63,78,97,157,108,50,67,148,123,4,198,52,11,175,178,161,207,224,150,110,180,52,109,19,154,224,140,92,9,132,91,166,249,182,145,218,158,148,241,202,34,157,245,222,57,111,6,12,170,240,38,152,225,193,85,80,151,67,191,12,88,178,84,146,201,204,66,136,18,251,102,135,4,54,68,165,166,149,241,22,12,24,203,8,91,95,133,105,245,36,146,233,150,26,237,47,11,199,139,246,44,118,118,154,1
 22,36,67,106,118,95,150,169,226,230,212,137,93,149,167,152,235,43,136,245,16,184,76,231,164,175,186,56,112,109,7,54,48,172,148,90,252,26,107,36,199,69,216,77,54,52,98,242,189,239,107,117,7,160,211,99,22,160,129,127,198,122,90,119,167,114,115,103,255,142,150,72,170,75,104,245,119,165,26,24,182,187,245,216,104,177,231,40,142,226,172,43,159,127,195,237,128,38,101,24,49,89,211,84,55,132,104,158,209,66,61,139,112,255,23,151,160,191,182,41,108,2,124,104,58,174,42,16,10,184,165,45,129,44,33,18,28,17,160,14,74,119,138,169,178,192,152,24,61,74,182,106,139,39,171,83,247,1,60,35,81,200,245,212,14,194,185,75,139,245,9,203,172,89,19,94,19,18,189,165,53,168,2,218,98,145,65,25,153,212,207,199,216,206,70,220,212,31,186,193,152,151,5,233,186,104,38,247,93,225,206,192,172,145,148,6,74,148,50,191,67,145,125,228,235,70,237,79,199,113,140,107,233,150,119,94,7,19,25,245,172,38,106,213,86,195,112,230,219,158,76,148,89,94,184,199,156,134,203,193,228,103,5,81,19,169,97,206,63,238,98,109,118,21,106,1
 59,164,6,141,221,202,26,51,181,15,58,185,146,51,134,125,25,177,109,105,174,1,55,119,96,96,213,174,249,118,210,140,23,133,88,100,95,50,162,98,50,108,125,219,186,204,35,15,63,33,228,150,30,253,88,167,247,49,224,42,126,59,211,128,70,86,105,7,140,249,130,62,171,253,213,202,20,152,157,132,152,197,100,239,159,167,165,225,188,100,239,251,132,10,117,69,48,115,127,50,8,82,212,118,19,118,211,147,94,86,242,103,74,105,141,123,216,120,110,192,75,78,118,191,119,250,56,10,178,37,140,123,169,109,104,78,168,135,205,65,236,113,171,90,197,155,99,96,214,99,109,164,248,1,207,148,154,179,250,101,123,228,157,111,188,169,227,19,250,209,31,182,107,228,49,170,130,234,142,7,170,150,238,141,82,244,219,29,47,12,142,232,196,254,162,183,22,87,255,141,124,216,202,253,148,63,98,218,108,168,225,124,33,75,28,244,201,223,145,111,74,220,99,36,135,55,220,44,99,250,11,123,73,168,85,11,219,71,114,205,185,88,126,79,241,219,0,66,32,134,187,3,92,77,112,249,234,106,50,197,203,23,170,201,4,70,228,161,61,107,151,31,31,1
 31,58,115,19,115,188,201,24,60,222,233,227,2,75,217,249,189,158,53,29,184,169,234,143,153,140,135,85,48,99,43,111,135,123,186,177,41,19,125,202,49,33,106,136,139,100,4,143,110,193,32,121,219,232,13,151,86,99,40,148,130,166,214,138,208,43,147,8,140,54,35,95,156,177,38,182,45,2,67,84,136,238,183,44,137,126,14,156,17,136,45,192,156,104,15,250,36,145,61,213,81,196,59,195,44,27,37,99,207,64,254,200,39,107,203,8,177,32,186,158,8,62,99,240,100,118,74,97,115,175,14,93,20,163,237,165,255,176,149,155,21,217,121,160,245,107,15,133,188,253,34,168,176,233,46,211,107,42,124,79,113,177,230,38,20,45,28,134,191,169,54,102,239,182,108,203,144,179,68,66,154,154,177,87,172,194,198,248,63,87,164,219,53,81,205,85,114,36,37,42,89,113,52,50,219,104,172,76,79,205,110,26,156,137,119,58,254,148,42,230,134,180,50,152,112,40,96,45,232,76,36,224,48,131,246,198,154,22,38,105,19,242,228,208,240,62,240,178,243,70,14,16,182,29,91,174,251,19,12,218,158,78,75,175,241,166,181,169,130,91,161,26,200,122,152,89,19
 8,239,5,70,236,81,44,226,144,83,110,199,51,144,174,204,184,78,12,113,71,26,227,68,223,73,241,69,209,228,209,37,209,133,205,117,211,51,116,28,75,75,35,101,0,151,205,92,47,2,224,189,231,69,197,18,33,100,108,129,46,131,168,110,255,197,6,222,74,40,38,119,150,88,189,74,35,79,121,0,103,178,214,48,111,194,199,5,222,121,79,8,100,44,65,248,22,202,234,180,186,185,39,207,85,232,228,4,221,27,199,128,61,177,167,113,239,174,19,28,230,2,186,75,62,216,198,83,52,223,137,58,95,147,135,75,142,208,79,145,27,225,224,173,0,142,220,182,47,125,191,51,220,26,37,43,185,226,114,47,218,231,212,156,23,155,142,88,93,165,66,131,152,164,105,6,129,226,117,37,175,240,10,133,244,137,169,1,242,223,138,52,189,71,60,249,252,194,34,226,194,188,132,175,89,6,2,203,179,25,245,41,196,28,72,190,154,18,106,107,68,100,22,151,201,143,113,211,158,196,71,178,145,172,45,73,2,72,91,86,57,17,192,168,87,61,220,240,108,13,160,167,186,120,240,191,118,59,216,1,57,43,143,105,166,22,106,162,224,175,132,119,24,145,188,195,221,243,19
 6,245,255,130,29,71,145,5,254,127,124,101,118,240,19,253,175,49,41,184,125,28,119,4,239,74,117,240,219,2,167,245,109,71,245,80,66,113,95,239,11,53,215,176,76,54,181,248,132,204,1,158,222,106,48,51,81,173,79,219,50,106,253,212,156,68,200,120,139,149,76,98,80,55,69,0,32,135,11,117,172,188,113,224,52,10,126,228,194,12,39,171,143,226,135,219,98,106,119,166,105,37,32,167,43,79,53,204,78,54,107,152,171,226,190,131,240,9,127,51,127,98,37,32,192,88,77,100,60,70,212,138,37,120,85,159,65,137,32,185,138,131,81,189,189,87,135,100,155,227,206,157,146,247,99,98,77,45,201,85,190,123,84,141,139,217,69,83,126,65,240,121,35,233,215,162,113,119,67,215,153,190,202,56,89,184,192,119,74,64,133,21,133,36,198,68,103,135,178,217,111,115,109,217,188,139,195,10,65,238,108,14,229,117,89,34,236,247,136,42,165,10,242,83,153,128,130,87,206,10,198,212,13,223,25,188,235,17,27,192,207,233,91,252,15,179,169,17,238,61,201,168,160,161,159,85,245,242,133,94,154,113,232,30,191,49,99,24,66,206,70,20,236,124,99,209
 ,4,50,69,91,206,171,202,15,200,30,96,204,43,233,124,254,85,145,103,101,166,243,223,40,173,182,114,46,46,90,246,126,187,234,153,38,147,166,20,112,179,17,153,111,44,57,9,246,48,242,209,46,83,42,195,73,194,21,230,162,244,135,154,62,83,229,47,137,12,189,31,145,172,179,178,70,152,54,150,130,142,6,232,103,38,202,106,172,131,240,103,141,20,228,47,28,112,14,135,116,210,50,229,255,205,33,97,49,165,121,145,122,17,6,138,137,20,128,28,118,84,20,91,44,52,236,193,251,70,172,214,135,7,87,95,36,123,130,223,214,31,204,173,76,88,63,122,22,227,96,186,58,154,176,8,252,188,142,177,22,107,192,52,10,236,133,234,40,132,87,155,41,19,184,223,254,181,107,241,190,103,203,225,90,96,102,56,211,82,58,164,233,57,69,165,89,50,138,150,17,12,83,146,56,177,120,249,0,93,136,71,120,128,69,117,241,145,240,134,17,138,44,32,92,217,190,50,166,52,224,42,7,191,31,98,122,208,208,31,137,108,10,62,186,255,82,44,240,234,168,108,87,167,28,113,30,40,180,76,83,191,88,204,191,132,153,235,1,212,90,207,185,154,58,133,234,156,23
 7,180,203,172,3,40,200,69,48,3,249,150,136,124,63,24,83,141,11,198,66,108,28,124,162,29,76,160,242,179,5,160,174,83,176,89,160,182,144,147,119,76,123,232,162,154,222,206,221,188,21,190,254,230,207,206,244,129,37,60,123,90,27,185,250,58,117,125,14,231,221,54,192,59,227,220,108,91,106,106,142,229,41,32,154,128,186,160,59,18,181,57,97,220,108,213,117,235,61,167,146,58,163,91,33,212,133,126,68,221,43,43,245,166,5,130,196,102,87,54,209,2,52,8,36,89,131,64,165,35,167,194,181,29,81,240,142,132,203,137,150,20,69,31,96,165,186,117,71,250,69,17,32,87,65,135,86,88,195,133,2,52,96,170,220,74,14,53,96,15,156,244,154,57,67,76,15,187,180,245,101,180,48,216,99,99,233,54,93,192,106,142,240,203,90,114,141,170,184,144,46,252,23,66,123,166,253,55,138,52,252,242,67,6,113,61,123,194,141,59,70,235,225,74,231,106,152,195,221,219,40,235,132,137,180,168,29,72,194,158,140,216,147,72,123,141,255,187,50,190,43,217,220,193,0,66,203,59,2,26,75,193,132,142,89,172,217,242,20,163,1,72,6,127,6,60,212,0,154,19
 7,208,112,122,147,30,228,211,173,61,11,124,240,43,124,234,143,207,243,29,38,247,171,75,142,12,56,42,67,68,0,159,239,237,95,103,103,224,81,130,40,74,34,28,232,10,66,127,80,66,208,125,193,111,115,141,228,102,226,56,85,99,202,84,158,199,85,76,151,193,41,124,87,6,229,52,67,114,155,202,30,107,83,158,173,228,238,59,19,206,189,207,209,248,158,144,131,18,195,49,153,230,239,19,42,151,72,170,173,57,52,3,55,108,149,124,199,157,92,155,241,164,85,37,109,170,136,91,203,159,99,248,73,28,225,105,22,66,80,16,243,33,247,105,17,175,164,122,10,105,110,31,84,77,72,111,111,15,128,41,146,5,100,214,250,131,139,120,83,158,243,186,128,120,128,84,141,248,173,73,29,31,232,255,18,156,14,51,76,194,3,106,244,217,62,184,148,1,141,140,63,173,233,130,181,63,255,230,98,16,60,191,207,73,149,188,203,110,67,80,224,98,33,108,226,143,106,94,223,128,6,144,79,34,12,227,229,229,185,117,111,84,1,91,168,72,212,136,46,70,42,207,43,74,102,248,225,173,114,98,170,125,170,238,70,91,59,210,102,148,215,49,90,202,221,127,25,20
 9,191,227,217,140,225,90,230,69,161,217,171,227,67,57,251,26,232,146,86,50,6,33,136,203,140,173,27,163,181,46,192,230,251,118,165,46,49,120,132,122,143,0,175,209,30,103,208,206,182,105,249,212,107,4,72,128,54,149,25,183,55,49,231,200,27,55,196,164,230,158,30,221,98,18,82,4,96,87,159,92,123,54,91,139,28,18,16,37,40,111,198,170,59,166,171,253,93,220,129,33,176,155,134,29,25,174,222,13,163,55,148,60,129,54,177,42,177,155,253,183,105,114,80,33,184,109,224,253,128,182,64,208,222,247,185,30,113,17,253,194,115,95,87,202,179,76,63,73,141,13,63,0,155,33,247,147,97,117,210,134,159,201,197,255,20,197,185,123,234,30,19,206,185,236,64,211,65,255,166,43,90,174,239,31,172,139,202,124,64,166,66,57,148,79,11,161,2,241,238,172,135,93,127,239,45,160,172,223,98,77,214,109,18,77,242,249,199,180,19,49,81,133,139,207,247,127,130,21,5,95,219,58,89,168,141,236,46,118,69,241,212,164,119,137,247,238,184,98,88,31,181,87,81,8,166,247,52,250,127,127,165,12,187,236,14,134,102,9,74,136,185,161,123,218,140,
 7,0,82,30,94,91,133,239,240,17,58,147,43,178,40,121,222,32,73,225,106,224,243,40,25,82,40,184,91,82,247,58,6,121,1,52,218,84,201,147,193,12,250,222,229,54,164,241,144,28,126,11,157,183,175,65,148,187,13,194,95,132,30,51,23,14,12,90,212,111,216,156,140,205,115,146,131,146,243,243,63,24,70,17,118,181,190,209,214,252,155,4,125,114,99,154,248,193,1,129,198,21,157,145,227,130,160,175,98,217,80,59,42,140,12,45,16,19,128,197,99,89,91,161,58,151,2,53,188,116,37,104,222,85,56,85,38,92,55,160,1,48,46,83,196,193,216,228,104,27,209,86,74,64,188,200,26,173,199,104,227,33,32,213,169,207,55,58,201,211,254,0,148,70,46,162,254,66,122,226,136,220,252,29,184,0,52,182,143,194,192,185,234,77,178,44,209,67,79,1,167,211,9,77,5,247,82,197,88,242,133,189,235,205,61,114,250,41,215,131,57,196,95,168,161,241,181,21,29,47,16,171,42,27,84,15,105,23,69,49,248,224,5,228,208,2,213,220,114,146,22,151,113,197,66,40,161,136,194,140,237,26,31,9,146,221,231,164,112,157,100,136,47,187,193,49,150,206,148,227,224,1
 21,139,106,192,21,221,111,151,60,44,21,39,240,109,78,247,70,108,119,233,6,142,79,109,23,6,56,11,142,17,212,243,225,10,121,239,162,68,73,213,221,130,51,78,114,135,216,43,226,211,162,253,131,16,245,35,15,88,234,235,118,2,170,196,71,166,187,118,29,138,17,166,216,219,53,40,188,172,234,91,225,151,242,235,74,30,254,177,0,56,127,57,68,229,122,4,217,130,126,99,238,213,112,81,84,1,189,50,80,10,209,8,41,170,148,103,189,68,198,14,49,75,221,115,118,184,45,216,23,104,66,6,37,163,96,235,59,16,247,171,66,133,173,229,138,231,225,41,224,103,174,49,32,189,146,33,58,101,196,80,62,76,131,163,63,233,82,56,95,166,249,159,72,96,253,74,222,199,126,66,197,83,24,244,192,25,130,166,226,141,63,119,28,49,123,194,187,194,255,191,77,187,161,99,92,241,105,229,231,138,78,167,153,93,87,67,222,6,45,124,43,168,219,64,224,170,218,225,85,64,252,163,243,200,142,59,5,95,34,229,33,27,23,224,95,170,46,163,25,50,120,212,43,47,208,193,34,220,70,197,218,90,207,152,13,70,122,228,139,19,62,115,4,252,26,219,189,153,206,12
 1,156,236,161,153,87,202,220,130,110,50,107,18,117,13,171,109,11,219,218,134,247,33,200,40,65,94,226,157,130,163,94,48,196,139,65,171,208,78,219,75,61,0,3,49,225,216,245,222,92,210,78,164,119,82,91,178,115,130,0,176,136,145,112,243,23,43,221,110,19,16,99,136,138,195,136,37,138,17,227,138,186,55,63,239,114,253,48,103,211,32,28,181,52,52,108,68,120,8,0,135,18,143,118,154,164,82,145,10,126,246,132,154,83,113,81,86,36,165,252,195,219,161,35,18,198,185,68,199,90,147,85,27,114,193,20,28,225,244,57,95,111,85,89,147,84,50,8,43,95,34,64,201,42,129,191,173,3,128,169,7,81,77,188,11,182,56,255,67,245,214,233,206,243,192,119,80,190,185,220,22,101,20,179,244,89,56,107,216,57,107,181,96,186,4,127,47,26,203,141,170,37,62,105,151,15,187,201,253,24,214,119,33,76,142,45,3,61,135,151,8,182,6,112,160,193,149,220,1,51,176,53,89,196,55,123,58,183,249,78,59,74,210,239,147,186,171,144,3,96,243,39,155,0,118,137,171,203,227,15,100,52,231,184,68,89,166,208,189,249,123,179,132,252,189,187,25,245,150,86,
 183,87,3,176,238,183,147,230,107,198,198,26,75,65,247,216,229,109,23,54,228,118,214,141,237,216,226,220,6,168,149,248,106,14,199,56,122,177,93,253,25,204,133,69,212,154,39,166,69,96,13,114,52,74,143,5,107,181,199,222,218,91,181,123,204,78,104,167,156,40,122,6,80,161,211,231,170,2,123,108,226,79,145,254,92,74,4,68,146,131,101,50,63,67,62,148,241,73,6,80,98,185,103,60,125,203,80,88,103,88,154,91,111,33,173,57,36,68,92,155,124,217,154,79,186,213,88,191,229,113,16,82,240,19,194,84,221,91,37,76,163,195,43,248,45,79,216,243,204,184,227,205,180,148,110,167,99,195,127,118,132,145,46,18,225,147,37,225,255,64,178,67,182,65,168,107,235,75,62,15,28,168,191,155,78,187,253,250,202,118,29,7,202,35,109,216,183,6,228,139,118,11,239,192,112,134,70,74,217,52,32,33,176,141,158,138,209,187,203,141,131,43,221,99,252,38,12,130,243,51,124,85,55,46,55,121,117,9,236,122,112,176,253,5,164,250,255,26,235,34,162,65,99,190,140,17,202,187,28,152,57,223,118,182,183,183,162,82,124,211,9,2,150,45,167,6,115,1
 19,41,76,206,103,92,176,225,149,188,20,236,141,175,135,246,102,65,246,130,51,106,175,75,199,43,110,241,174,168,227,134,238,142,222,154,172,181,27,56,170,126,11,122,82,245,129,213,60,188,124,12,183,31,182,75,195,2,8,147,80,30,102,53,149,190,251,49,175,205,14,250,40,95,18,240,212,164,7,86,176,14,206,220,173,1,97,74,190,157,28,139,134,9,219,243,24,41,233,191,154,249,161,196,223,56,144,124,232,137,246,122,113,255,123,88,79,154,64,242,104,231,206,174,219,20,28,132,55,47,6,227,188,36,31,240,67,64,206,151,187,218,172,68,19,147,83,137,19,140,114,89,44,205,160,35,10,195,181,12,34,86,107,142,173,90,54,160,42,195,7,52,74,7,247,66,76,140,139,4,113,96,84,251,163,51,254,217,43,212,34,228,234,24,10,204,101,141,247,43,120,24,192,24,162,145,144,192,165,254,62,44,156,28,142,237,231,137,51,100,110,214,99,198,13,102,109,33,210,53,221,123,226,188,16,215,100,217,87,213,149,201,251,142,185,254,157,128,208,75,173,138,80,215,233,80,46,29,180,178,17,180,183,72,34,6,168,56,22,80,25,9,74,224,71,39,54,7
 6,31,100,127,205,86,118,191,132,173,75,204,117,79,69,172,128,191,233,177,231,54,11,221,195,121,134,201,135,127,237,106,29,94,88,137,28,86,182,13,54,59,219,38,134,82,138,58,241,7,175,228,193,12,95,173,125,215,106,53,47,197,223,201,48,40,92,167,15,222,106,16,2,139,79,69,30,134,40,101,198,37,43,31,54,182,148,178,107,172,77,148,67,103,129,8,128,23,200,91,22,56,240,109,87,187,105,155,181,191,64,137,254,228,99,232,36,215,110,180,11,34,166,166,78,134,105,130,225,184,81,216,254,46,172,141,192,118,236,44,195,206,132,212,65,117,219,84,244,159,135,39,120,252,183,129,144,141,113,83,235,97,71,184,231,53,211,75,176,120,113,55,57,61,14,152,62,221,170,34,102,49,243,84,141,48,143,22,253,142,44,234,5,112,57,112,124,223,191,140,195,218,152,83,87,39,218,80,180,191,174,82,235,251,71,66,61,70,200,241,47,185,71,82,50,151,148,130,224,61,233,31,75,135,230,46,136,41,127,119,195,107,86,168,150,204,218,231,103,38,35,126,117,196,55,185,252,15,236,164,238,207,127,226,209,198,132,29,33,166,210,183,188,244
 ,142,236,42,98,11,33,122,202,87,62,80,158,123,210,8,101,58,19,27,91,33,66,43,69,110,124,225,180,98,96,77,214,46,105,37,6,99,129,50,94,174,248,35,84,124,124,157,33,156,196,219,80,194,200,37,123,44,7,24,165,185,216,112,196,211,157,217,68,82,154,153,234,172,121,89,91,212,135,47,124,229,125,97,189,40,70,24,94,177,205,161,198,156,21,166,185,191,21,68,2,103,70,196,142,92,54,102,95,55,143,130,196,228,17,32,177,203,240,19,91,110,59,239,42,10,15,172,193,66,163,155,15,42,221,57,84,14,22,220,2,78,41,177,52,43,139,12,34,36,48,252,40,76,26,40,197,34,222,117,9,194,200,124,211,250,132,103,18,212,53,16,106,252,19,175,104,228,170,101,205,243,197,120,40,110,5,109,17,119,212,240,97,20,198,49,30,15,62,206,74,13,255,150,243,147,3,147,195,117,97,153,56,68,239,140,181,88,152,86,103,222,51,36,51,77,35,121,43,31,170,123,153,71,31,109,79,45,249,3,62,127,253,117,84,163,113,128,109,64,163,89,40,222,211,134,157,90,58,28,162,88,52,143,11,20,117,120,138,31,48,222,7,98,28,221,206,155,105,131,235,116,204,11
 4,134,155,86,34,230,229,50,50,121,203,171,206,255,49,216,49,68,24,22,190,48,252,234,94,84,133,111,97,210,106,235,162,186,53,92,149,176,113,176,49,55,234,62,123,242,98,75,213,1,209,63,170,23,55,29,242,71,108,111,155,48,126,129,111,93,69,188,195,65,45,31,224,15,48,85,197,67,154,108,167,63,198,241,119,54,146,82,31,129,209,220,145,166,103,151,229,71,134,250,197,255,141,153,199,99,141,120,45,40,54,173,192,209,11,131,246,66,115,108,68,159,143,78,19,124,154,42,83,233,111,8,90,47,231,12,90,217,166,55,227,9,185,70,71,35,146,86,181,223,69,251,245,145,206,192,86,1,28,154,162,112,54,48,29,203,21,4,221,102,233,88,198,81,130,97,45,251,164,219,49,153,142,28,160,94,213,2,121,177,121,164,104,167,168,8,198,150,17,246,135,211,92,98,230,153,121,162,77,199,44,146,7,255,179,121,205,112,207,95,149,225,6,74,25,233,29,69,27,70,218,48,89,168,62,132,226,189,182,156,155,53,254,84,83,68,203,218,195,192,64,192,210,143,212,248,147,71,244,139,106,72,88,2,145,224,10,90,21,202,84,173,83,194,203,210,233,4,225
 ,245,38,36,112,183,116,112,153,218,189,82,100,255,58,232,139,138,170,33,13,56,131,62,172,139,154,219,31,75,32,244,177,12,38,62,48,84,68,209,171,235,39,197,94,247,52,222,213,86,77,67,225,140,198,254,39,209,75,20,93,0,209,125,215,87,218,227,215,119,94,42,38,59,64,27,250,98,81,71,178,54,239,118,124,124,20,232,179,138,15,237,232,120,35,175,217,108,109,70,15,78,247,69,183,33,71,158,51,84,153,56,117,76,181,55,114,211,240,83,225,93,150,229,215,81,80,176,64,136,176,106,222,173,185,84,167,27,246,179,130,124,182,40,27,116,63,126,155,236,9,133,32,51,195,60,131,8,159,5,3,20,45,154,104,254,249,27,160,163,102,128,250,16,249,73,222,98,52,21,21,61,193,77,222,192,160,164,72,66,37,194,11,96,19,46,160,246,90,239,254,169,27,149,220,254,247,235,140,71,125,233,12,40,48,231,172,22,240,131,175,167,131,50,48,219,131,126,239,57,46,183,148,183,169,19,8,126,100,152,178,160,97,81,229,44,40,232,0,146,75,70,77,56,35,81,24,223,171,229,89,156,149,21,81,125,167,175,249,245,57,69,182,235,95,96,251,209,205,116
 ,148,68,249,193,87,50,217,99,53,144,200,2,113,209,41,167,170,212,238,85,196,198,215,123,3,165,230,254,191,228,163,140,113,136,224,160,53,215,53,158,125,143,145,231,177,178,208,167,144,175,196,36,237,210,248,227,49,188,141,13,161,28,225,246,16,216,177,170,172,49,228,59,250,219,120,204,152,146,119,143,109,1,177,112,21,240,247,112,96,198,230,72,92,25,36,147,10,239,186,142,67,83,119,116,50,17,255,52,249,21,56,115,87,67,142,201,254,100,42,114,110,17,251,18,97,106,212,212,193,243,255,15,163,127,57,162,188,115,252,178,137,230,12,5,170,150,229,218,91,181,73,17,126,121,107,215,7,221,227,166,201,126,186,127,243,3,105,41,19,21,158,200,127,149,172,200,123,222,198,180,178,192,78,127,106,180,239,74,103,134,212,61,29,9,195,143,159,2,72,214,189,0,227,208,90,42,42,246,40,102,192,210,131,5,17,75,77,215,254,158,233,224,139,124,60,0,27,251,168,86,99,95,125,36,68,154,118,16,110,174,89,173,206,115,126,174,141,68,175,103,125,218,12,57,253,13,180,60,44,91,39,183,247,147,240,133,133,248,94,56,101,36
 ,67,204,104,70,239,111,49,239,101,201,78,111,172,120,250,172,74,232,224,0,197,55,181,43,159,119,29,219,169,188,242,247,12,52,153,169,144,204,178,38,22,105,47,251,55,19,253,2,190,105,154,57,234,56,102,212,150,96,205,133,36,177,221,2,155,153,213,237,225,33,30,58,98,136,99,28,249,77,227,227,203,180,15,6,101,149,121,128,131,40,35,148,237,18,126,118,4,95,182,222,22,99,68,254,16,10,129,70,47,142,222,33,211,51,254,42,226,163,126,202,234,1,217,67,162,59,154,149,78,192,71,177,36,10,217,255,126,105,218,163,178,61,67,140,42,126,95,23,15,244,204,203,127,23,211,202,116,171,187,171,43,14,70,254,223,79,123,205,22,96,81,209,207,236,154,143,24,182,33,68,115,111,172,190,245,215,13,226,209,175,27,211,36,113,189,142,137,51,183,233,196,135,83,189,62,204,186,183,212,54,203,130,41,35,47,186,235,27,116,24,92,43,249,103,207,37,242,197,203,44,25,222,10,243,120,50,82,131,84,141,76,228,140,129,195,197,195,96,31,224,219,243,199,181,203,102,220,130,52,77,161,80,214,76,238,102,99,105,148,137,171,182,51,64
 ,104,131,210,71,117,54,155,43,144,196,197,42,84,147,113,99,9,147,206,76,169,175,181,204,124,122,48,123,93,138,244,140,194,43,203,102,94,76,196,158,211,141,46,20,254,209,40,170,17,224,1,106,110,50,243,6,18,34,204,93,34,87,79,18,37,235,156,122,223,194,38,14,167,110,228,212,58,180,242,40,236,20,97,98,105,74,187,169,219,200,10,24,73,49,136,66,239,213,212,121,199,47,214,179,14,172,162,52,79,163,122,189,247,63,191,56,15,249,114,41,64,231,95,171,11,194,109,213,107,232,218,3,3,106,120,143,31,43,49,181,18,168,103,130,120,189,141,97,201,145,203,181,40,215,75,150,197,244,252,249,147,41,160,141,212,193,16,236,189,88,235,248,215,103,137,34,120,183,110,12,143,207,0,195,213,171,170,36,37,205,242,102,82,6,204,152,175,133,14,4,75,228,222,80,49,253,109,4,250,67,3,235,2,217,220,202,170,195,202,9,61,175,236,142,154,31,247,109,54,218,155,94,210,97,3,191,166,12,166,221,230,169,193,5,138,17,102,57,229,115,221,143,178,108,54,164,219,71,67,75,226,251,156,186,84,84,239,17,63,28,24,182,54,51,57,50,129
 ,123,192,105,196,163,92,136,204,67,96,154,132,126,149,181,174,139,238,50,254,59,165,23,72,165,34,124,125,12,255,54,191,165,118,147,124,199,102,158,210,180,131,160,52,28,41,98,169,204,240,155,97,80,234,194,60,46,108,194,137,66,164,239,223,175,79,65,74,245,122,91,121,245,242,129,129,164,128,18,81,35,227,39,10,89,118,170,238,71,61,168,83,133,101,24,166,205,92,125,179,33,235,93,115,153,255,200,88,199,48,33,225,58,78,233,211,178,117,155,156,80,9,139,188,49,146,81,220,33,18,81,178,253,251,57,193,208,188,1,154,186,180,201,234,92,20,134,106,142,1,192,104,130,71,180,14,117,159,37,137,66,137,135,18,171,16,252,191,242,118,30,70,9,85,149,129,64,98,17,240,173,249,89,62,20,239,167,228,225,231,59,107,31,171,217,18,223,145,251,209,170,112,15,154,163,45,72,230,180,148,97,86,104,145,143,72,13,62,119,95,17,115,47,223,28,28,32,146,217,11,23,163,177,101,121,115,76,254,23,87,221,11,241,44,218,194,166,1,210,98,222,26,108,146,186,131,149,229,164,224,45,203,249,78,114,44,144,139,31,42,91,149,6,6,24,
 41,208,143,64,129,20,252,123,57,122,178,151,32,9,151,234,190,205,39,78,176,210,8,3,67,123,117,95,12,101,251,28,81,102,140,49,244,180,35,10,71,154,222,169,119,64,100,142,146,118,166,8,184,183,133,235,172,56,241,219,206,147,125,152,171,233,244,58,152,27,68,193,203,178,205,225,105,236,147,16,22,221,11,47,169,145,144,204,145,3,230,96,163,113,254,193,213,144,128,234,211,106,211,120,46,34,99,191,12,174,85,93,127,119,84,202,27,18,63,74,154,7,63,43,241,154,228,206,186,235,27,126,118,28,21,181,178,3,5,168,147,6,162,148,148,162,61,192,220,118,219,198,215,35,40,104,249,145,167,124,252,131,81,86,231,184,144,128,130,237,176,231,121,164,123,193,43,140,242,139,188,45,189,192,242,22,231,231,241,227,49,179,214,143,228,174,12,72,107,91,5,107,64,214,107,2,1,9,81,1,132,10,200,212,113,125,232,186,175,149,177,87,125,225,191,238,40,11,243,192,77,226,235,46,177,80,24,106,127,121,175,29,29,50,163,6,34,219,102,140,78,99,219,227,27,201,193,82,43,145,4,44,181,248,9,126,182,180,185,68,71,140,151,2,210,1
 31,132,134,191,151,162,6,172,43,194,161,58,236,211,102,78,138,236,32,56,101,136,96,84,185,107,104,223,38,206,246,138,236,55,4,158,2,166,48,28,69,224,219,115,201,187,238,93,134,112,96,107,198,69,213,192,133,147,139,200,228,252,185,189,18,90,120,45,217,197,20,144,61,69,22,44,112,60,236,53,201,133,175,169,57,206,73,45,178,146,104,139,29,127,119,189,75,61,184,175,253,229,119,145,234,147,87,219,106,84,45,165,36,206,90,64,216,106,139,154,133,27,54,123,8,83,195,238,106,99,75,254,62,10,247,76,91,206,73,163,189,170,75,2,79,199,45,172,157,176,247,148,110,121,129,187,154,131,56,242,250,58,81,209,43,214,231,113,188,14,106,239,219,158,223,227,107,38,157,161,63,90,212,28,31,143,141,185,123,57,175,28,253,80,149,228,34,202,116,111,55,227,178,169,163,183,102,208,97,111,255,23,228,179,163,174,142,130,4,218,56,229,93,140,201,32,22,42,115,238,127,208,126,60,255,226,10,115,48,204,133,75,7,189,249,237,198,103,214,222,201,147,40,232,130,108,125,64,111,42,134,14,184,225,163,73,58,14,246,30,14,205,1
 87,200,31,70,85,207,30,2,197,22,196,75,154,254,61,166,222,159,119,46,148,177,117,26,129,67,113,113,132,179,205,104,197,68,249,244,172,83,53,40,199,81,185,6,250,33,109,24,0,242,16,125,46,55,81,96,98,229,21,40,226,248,197,1,223,45,106,99,107,132,206,37,249,9,188,104,78,36,199,17,82,5,82,220,58,184,23,213,51,248,106,68,122,165,213,86,71,213,210,10,223,4,146,65,3,247,177,226,185,82,164,106,232,172,156,138,217,64,61,45,35,176,30,54,148,96,147,43,78,78,37,59,103,82,20,200,195,233,113,143,14,237,71,73,19,92,179,241,63,153,61,213,35,31,33,47,247,190,220,158,33,87,78,184,70,231,255,97,111,102,251,23,2,18,226,58,153,47,107,160,217,189,229,43,132,126,171,28,0,240,122,53,147,223,106,218,31,148,223,176,153,187,146,98,208,73,240,12,186,202,101,141,229,25,140,161,85,1,77,209,204,145,112,204,184,33,52,43,170,133,254,130,166,195,232,12,253,198,56,246,175,176,219,235,207,167,190,214,227,22,34,43,130,90,81,187,243,120,72,201,69,25,99,3,2,122,32,72,96,22,95,146,128,0,60,124,9,215,254,117,122,78
 ,169,43,211,114,18,222,152,131,99,249,88,187,229,22,159,152,192,229,153,135,51,146,209,88,35,207,61,235,124,18,206,155,106,98,5,238,99,7,41,46,188,110,7,116,191,123,142,216,131,135,247,83,130,202,45,53,55,208,20,131,176,12,215,71,78,252,249,185,141,54,129,232,131,40,0,178,87,157,58,76,113,37,9,203,35,245,162,57,123,232,224,226,42,228,235,24,31,75,95,132,26,91,227,29,31,42,170,185,157,8,186,60,158,59,207,113,52,135,244,91,39,69,32,24,99,212,171,177,53,10,73,155,221,118,204,143,6,245,116,214,58,122,236,163,141,184,16,101,12,64,19,223,33,184,20,222,85,221,43,135,143,45,169,149,221,94,181,80,56,20,16,225,241,169,248,153,232,38,83,222,18,183,149,141,214,86,210,147,144,235,155,92,116,73,17,187,222,13,4,155,177,30,150,45,147,23,28,97,123,232,250,242,236,229,59,95,89,209,175,50,156,252,117,205,78,40,77,66,245,225,15,79,35,245,135,3,86,67,163,78,214,7,138,113,176,254,20,101,63,67,76,192,4,229,239,252,126,71,45,45,109,130,104,101,252,250,53,92,183,72,157,246,152,24,159,215,70,216,215,
 89,175,45,201,155,11,167,164,95,81,128,166,47,146,175,54,178,123,89,147,106,235,57,233,76,46,184,36,49,9,34,147,137,73,20,135,172,193,253,129,39,250,152,141,95,126,3,130,162,128,239,80,97,147,165,80,141,139,87,217,56,225,69,231,60,50,188,112,193,156,114,222,149,196,119,145,83,3,139,11,102,114,141,179,63,62,53,171,20,192,196,205,103,55,223,142,116,117,109,20,129,42,57,51,82,56,170,235,111,79,206,197,140,184,175,149,144,47,251,48,185,225,171,42,39,173,200,49,28,19,179,51,122,116,108,170,234,51,121,90,151,245,218,243,12,109,84,67,1,132,139,157,1,65,113,234,176,130,107,70,34,75,178,112,185,226,116,229,242,115,174,250,188,122,19,40,143,151,250,25,46,118,188,181,198,19,237,242,48,84,164,6,70,199,234,254,239,5,163,224,48,250,167,238,74,27,157,84,82,3,227,61,200,199,63,11,29,113,87,139,85,38,108,25,52,3,169,155,0,205,167,19,238,221,38,123,32,3,201,13,55,154,101,170,14,33,94,139,7,159,191,220,131,65,248,51,173,169,121,97,62,251,132,95,202,33,190,170,255,220,66,12,65,35,11,87,72,7,217
 ,161,146,59,42,202,214,253,184,75,76,248,145,27,88,218,27,9,74,153,176,201,163,28,91,251,27,23,153,166,240,133,239,204,144,4,135,5,136,19,25,194,62,209,186,117,156,113,14,53,203,44,154,196,237,126,60,155,61,205,179,221,166,10,11,255,172,33,229,213,181,198,155,97,198,79,252,126,233,124,120,133,209,156,211,87,210,59,198,246,63,167,120,76,18,38,13,23,242,179,93,9,181,122,137,87,150,144,8,214,204,185,22,238,8,8,138,148,75,125,227,193,13,72,23,138,26,190,59,23,5,66,251,35,123,225,105,16,171,231,16,72,95,153,243,99,192,227,161,121,23,41,164,81,4,231,236,65,19,222,107,63,127,14,163,147,254,106,99,18,97,120,81,5,217,229,85,251,81,32,226,128,145,110,164,87,52,47,252,165,93,10,252,68,40,211,224,112,87,171,104,207,212,73,62,102,99,254,56,245,189,228,93,28,163,200,24,36,78,36,212,123,195,103,231,155,195,185,200,72,117,117,117,207,140,240,158,185,200,138,186,52,200,8,136,146,73,73,7,9,246,76,160,232,76,184,5,165,222,174,146,118,102,253,115,162,210,185,120,96,62,199,126,28,36,106,92,220,7
 6,152,135,215,245,77,48,159,89,253,75,138,114,222,200,43,55,245,218,105,175,233,92,172,15,42,191,255,33,110,49,111,126,24,151,208,0,148,197,214,66,17,175,204,157,3,188,161,173,25,66,178,13,142,176,180,75,10,132,207,39,247,227,123,231,122,99,47,51,59,162,191,129,118,11,224,200,135,70,232,7,32,159,121,210,103,108,155,127,51,62,23,239,236,239,111,230,187,181,12,212,206,60,244,197,79,186,29,246,107,25,43,74,223,60,187,135,20,254,245,179,8,134,169,79,104,11,6,214,109,145,72,241,43,16,57,185,194,54,215,231,133,91,145,10,41,244,159,15,252,91,79,222,192,126,159,79,23,143,243,52,70,8,172,62,158,89,17,215,107,10,128,80,35,27,208,244,236,53,7,8,153,22,235,18,237,158,64,237,30,173,208,7,250,197,17,162,124,148,136,65,225,157,108,137,10,38,3,108,75,192,31,156,38,156,234,66,137,8,49,134,121,174,132,220,112,141,174,107,246,127,22,123,172,107,137,171,71,247,99,67,159,90,229,29,62,104,39,133,96,86,250,61,18,190,212,155,152,194,70,174,158,87,104,168,211,125,174,50,66,156,32,243,160,252,17,178,
 214,48,204,250,226,237,70,197,45,208,179,224,45,242,39,43,69,149,143,178,245,82,44,210,192,125,150,150,99,4,117,90,253,167,134,9,15,65,68,173,236,19,47,145,155,254,154,244,199,166,186,42,39,246,241,138,173,59,111,123,184,225,194,206,247,128,41,62,155,206,220,252,214,13,83,156,248,43,14,94,211,123,27,156,219,196,108,22,253,216,246,153,244,32,192,115,144,204,156,22,190,71,0,118,183,55,145,145,27,72,200,221,39,180,28,226,248,113,2,109,200,14,68,48,140,75,166,194,111,13,198,65,253,192,225,231,103,89,87,163,106,83,177,131,96,24,221,29,65,148,250,253,99,172,8,173,100,49,87,74,200,44,127,207,109,82,42,125,56,175,232,34,168,236,59,15,156,185,93,222,29,80,128,189,183,138,48,207,146,175,9,111,83,247,254,20,210,172,233,170,80,70,145,54,70,61,200,192,235,247,191,66,212,166,226,189,135,96,200,127,220,198,106,125,19,2,59,194,121,113,22,247,85,14,134,110,237,92,155,214,106,75,105,211,232,244,203,167,113,161,219,65,67,2,5,126,93,48,150,152,14,103,107,145,189,233,12,195,72,109,138,182,178,8,
 95,249,167,55,87,27,11,194,209,69,45,137,135,36,44,59,8,159,72,85,182,82,120,116,251,47,210,77,5,179,61,1,33,67,65,36,67,175,185,144,108,154,100,78,11,211,137,45,125,117,173,36,158,99,31,103,65,155,26,28,75,33,204,88,86,244,139,79,161,82,48,251,50,19,20,43,231,148,104,123,17,65,98,105,227,114,145,68,23,130,251,241,252,126,209,130,1,50,66,232,151,54,176,152,149,46,251,166,187,38,128,149,247,229,116,59,31,184,150,227,187,130,53,239,119,118,66,246,239,62,59,233,129,5,253,134,213,53,116,217,251,178,152,11,135,242,238,177,235,199,212,61,225,233,89,74,253,231,157,13,204,166,194,41,154,13,169,131,118,79,87,54,144,3,101,61,70,89,142,238,11,155,149,38,137,231,36,210,16,204,209,103,77,238,88,28,199,62,24,110,180,86,168,111,61,223,153,250,130,52,196,59,17,202,157,39,199,194,15,64,99,124,175,42,160,177,49,102,172,209,232,62,47,195,88,187,191,166,133,63,108,37,190,4,28,46,146,97,116,102,28,85,113,245,137,23,72,230,18,199,150,126,60,240,215,109,95,62,151,119,72,152,99,114,231,80,229,210,1
 31,175,68,239,91,163,205,157,80,14,51,110,89,228,113,60,76,56,99,79,249,28,28,162,179,21,253,57,238,78,160,40,160,43,241,236,214,185,173,204,36,9,47,249,79,68,221,203,216,71,232,169,206,143,251,19,252,246,56,101,41,161,87,67,22,75,144,252,127,15,252,246,39,89,186,171,112,243,178,17,218,198,137,224,161,106,12,52,187,123,142,59,252,41,187,72,60,135,115,28,120,153,202,226,179,142,73,206,224,167,163,244,114,179,149,184,231,17,36,246,208,154,219,231,81,190,247,177,96,115,122,128,199,85,88,66,197,68,69,122,155,250,154,134,202,203,41,183,236,254,56,240,90,51,88,136,137,1,201,128,50,116,219,5,193,32,110,110,58,157,248,65,100,38,120,219,114,211,63,225,52,152,133,65,239,233,113,79,240,140,88,229,211,238,33,168,133,241,175,182,195,246,153,81,9,130,220,216,67,137,110,164,147,97,137,145,175,131,3,68,185,248,68,24,70,33,120,157,57,86,247,116,233,221,89,110,105,93,1,245,99,227,170,126,29,145,5,47,109,59,37,107,86,214,221,140,89,9,171,163,68,139,27,182,156,195,108,234,251,220,28,144,125,67,
 43,244,178,190,45,86,175,73,213,215,246,13,74,223,148,210,15,27,97,158,181,189,250,10,189,35,138,145,94,121,38,63,190,48,26,56,183,88,81,200,112,24,188,178,14,203,73,46,215,159,164,176,157,77,62,112,142,213,38,182,184,23,229,170,135,204,48,40,16,107,36,247,161,22,86,159,234,175,50,86,41,98,73,226,115,56,249,165,159,248,172,45,90,74,73,144,84,87,63,16,122,97,207,60,1,39,252,93,154,150,248,50,216,100,37,58,115,122,216,173,156,48,227,32,197,12,223,39,34,241,54,30,221,119,216,189,182,90,158,231,249,243,249,238,13,129,142,99,235,78,167,185,235,26,84,41,24,12,138,87,214,169,173,103,212,177,44,151,140,84,20,149,125,66,119,30,200,72,204,220,240,209,164,178,137,33,111,14,72,51,97,42,120,141,231,186,120,85,66,18,208,101,81,75,200,164,216,208,144,48,12,189,129,62,229,41,129,46,189,168,96,102,134,140,8,177,90,240,3,225,162,113,44,117,67,144,169,230,190,97,62,70,197,237,4,109,121,21,73,110,91,231,205,170,131,147,167,201,82,225,46,181,11,189,163,209,4,204,1,254,193,158,98,51,149,27,187,70
 ,51,147,126,94,46,172,59,235,221,189,181,37,254,178,90,8,57,173,138,29,143,27,1,248,89,185,130,216,100,94,145,132,67,157,222,184,216,187,166,21,73,13,244,165,47,50,251,246,55,155,108,67,138,134,230,139,222,32,251,117,116,34,197,133,48,87,145,203,250,176,123,152,202,142,41,127,67,255,161,226,160,68,204,136,192,74,217,143,52,109,31,177,220,44,206,75,205,73,151,160,24,93,42,182,15,71,124,225,102,71,89,66,49,195,24,246,64,78,106,190,0,243,76,126,25,56,209,139,252,213,105,3,62,66,236,145,29,94,96,2,167,8,204,100,168,103,234,206,10,28,173,47,47,239,92,97,255,239,88,244,200,160,85,63,121,120,225,143,66,147,179,30,255,176,167,255,77,177,100,153,252,48,30,103,24,199,133,213,140,60,57,192,106,161,85,107,138,80,156,38,97,50,58,146,100,133,231,0,173,144,99,21,27,84,113,65,203,221,146,129,93,184,136,204,122,161,6,120,35,136,197,244,195,217,23,141,48,215,116,148,121,107,29,147,86,137,188,210,24,255,32,254,152,59,213,20,165,120,7,243,99,95,42,136,107,86,90,44,153,176,21,51,199,76,142,191,7
 3,62,134,56,95,189,6,167,249,67,224,169,220,242,221,181,230,15,255,54,59,122,56,142,222,254,115,53,199,56,114,17,118,140,220,187,88,91,74,151,5,24,225,54,28,102,132,195,248,84,10,161,10,216,232,105,242,106,156,60,208,183,131,166,146,77,144,131,199,226,180,6,251,107,103,28,122,87,14,124,187,161,160,163,223,237,192,88,57,82,20,48,253,155,125,129,173,46,56,211,151,238,247,105,217,248,171,75,156,181,222,247,95,35,199,102,1,249,13,165,118,183,243,114,193,129,23,84,85,206,45,38,159,254,52,129,114,147,94,67,224,70,209,232,200,125,239,61,4,212,118,35,88,179,37,236,167,191,170,86,218,230,97,171,103,172,141,160,108,248,170,171,105,189,41,157,74,105,229,186,88,60,170,230,163,35,183,170,131,19,129,186,83,76,227,44,196,71,104,98,157,178,91,213,137,52,102,44,74,52,220,7,189,7,88,164,28,189,182,189,57,144,40,220,177,149,95,104,247,197,236,24,200,174,173,225,201,97,240,98,222,114,168,93,64,250,215,227,16,228,27,38,29,80,228,170,180,171,30,64,110,209,214,134,104,115,253,233,128,159,123,197,2
 18,47,114,51,148,75,114,179,103,21,157,196,164,54,234,221,146,150,30,129,114,249,128,151,221,254,165,141,84,227,250,125,98,251,137,246,214,15,101,229,197,89,252,253,76,99,75,251,230,233,207,49,50,104,233,79,22,146,46,229,145,130,43,174,176,118,150,125,137,62,33,176,155,173,232,89,248,61,211,13,127,99,96,209,133,196,223,11,78,100,123,114,187,132,194,95,43,93,209,255,49,137,120,119,60,189,255,108,204,92,92,214,29,16,91,23,141,7,231,211,49,154,179,201,98,108,239,176,191,222,34,240,223,51,3,152,18,26,76,60,85,243,85,211,244,26,201,147,147,68,149,186,202,174,211,159,152,114,83,197,40,241,244,235,16,21,45,42,123,40,19,132,119,168,195,167,0,210,230,109,233,168,107,204,178,45,116,200,94,71,38,61,149,20,238,152,171,110,251,215,247,102,13,187,110,105,12,159,148,177,64,47,200,152,203,81,175,33,191,47,175,67,38,242,62,45,31,14,70,11,44,220,109,17,143,118,65,43,6,8,114,158,212,123,56,233,138,253,96,108,45,239,193,111,239,214,72,183,26,23,104,73,21,134,238,138,197,38,15,165,103,6,17,143,1
 23,11,32,121,8,62,151,134,220,8,33,64,94,138,88,253,204,140,255,249,84,216,150,83,58,31,246,134,255,218,163,32,193,170,188,167,198,10,90,14,66,181,24,185,96,84,118,128,147,153,151,36,110,155,187,87,152,0,85,160,213,107,74,14,126,90,22,94,36,7,208,2,124,157,100,164,193,153,25,157,43,159,29,102,176,28,93,138,218,179,109,40,51,135,62,1,186,192,65,228,131,221,45,211,166,157,67,170,170,117,66,148,172,143,213,41,145,97,172,214,19,80,6,111,246,228,86,170,176,62,225,4,231,39,4,113,235,10,140,27,190,119,182,233,30,29,222,150,67,35,234,202,213,39,28,248,214,181,1,251,64,41,125,181,181,205,131,30,42,219,3,216,66,28,168,39,134,172,58,93,188,35,128,111,120,194,30,105,106,190,101,231,173,1,63,109,251,111,165,139,161,119,82,118,136,248,216,64,164,15,143,173,201,130,33,237,101,184,180,243,181,64,14,237,170,213,26,252,231,161,121,102,101,190,192,200,230,57,68,145,28,78,223,80,14,212,197,152,109,209,191,118,222,20,44,30,213,218,176,232,25,20,8,106,114,225,126,35,182,32,88,190,9,21,203,225,16,
 26,237,55,241,204,248,53,52,193,203,74,32,203,88,96,237,181,52,88,96,217,90,116,79,226,171,198,93,50,166,141,188,140,138,255,229,6,57,179,221,30,22,220,106,209,234,54,207,190,92,85,64,200,108,123,215,90,8,204,11,168,57,228,40,92,24,177,59,156,19,132,49,20,144,92,145,62,49,132,55,136,188,216,96,190,92,90,115,224,181,196,131,17,112,240,63,99,194,230,51,129,211,219,199,171,206,25,51,157,104,215,154,7,227,32,149,188,201,216,239,246,113,179,176,167,224,43,145,244,160,92,42,69,75,225,15,198,52,5,45,144,209,141,55,61,181,141,35,194,247,246,127,152,74,233,111,34,26,153,136,44,83,1,212,175,73,141,82,101,164,169,110,195,229,228,143,253,171,141,117,225,169,144,9,81,152,115,226,140,173,223,32,239,180,124,9,76,191,232,187,238,183,234,11,101,49,216,63,105,186,20,32,196,6,80,247,42,45,244,161,5,210,201,183,99,207,144,208,162,27,154,55,111,184,208,191,53,7,168,207,184,198,216,129,107,181,20,29,107,102,93,46,32,193,73,29,195,5,29,40,43,122,141,96,92,191,148,217,78,166,4,128,134,91,6,53,226,2
 12,95,2,150,241,122,206,217,97,187,194,151,20,18,189,63,242,145,159,210,94,46,74,101,161,14,2,198,207,178,203,255,111,240,219,166,46,232,22,250,90,183,221,228,253,140,233,20,116,241,3,174,145,147,129,115,208,228,237,227,218,117,144,124,144,196,171,170,214,31,130,254,47,100,225,235,224,220,192,108,102,59,144,254,26,178,49,116,49,85,118,179,145,11,109,52,85,99,192,255,232,134,172,90,31,9,254,28,86,14,66,148,166,79,167,210,156,165,162,30,18,88,139,162,80,250,236,147,156,247,48,144,110,184,171,117,74,200,9,108,175,45,128,58,89,248,250,165,195,76,234,176,177,13,18,35,13,155,112,67,24,118,13,150,0,102,62,74,235,36,39,183,228,139,220,55,177,181,137,92,159,39,212,81,160,244,195,35,33,53,214,199,201,64,79,53,158,194,29,89,10,0,220,84,167,218,32,80,171,6,220,103,55,182,63,107,242,110,53,101,248,76,17,107,147,38,203,228,39,186,140,187,62,61,66,194,52,229,44,168,30,48,101,55,156,124,232,5,74,209,221,73,15,55,102,250,51,173,50,174,202,165,60,26,64,122,69,165,39,197,236,35,72,130,219,0,17
 2,14,61,152,5,58,128,8,48,88,237,189,193,12,149,88,5,93,64,128,43,251,224,6,224,9,253,128,108,48,241,84,135,64,38,12,91,1,53,11,1,78,179,243,106,165,200,76,62,64,71,81,212,61,184,236,120,174,224,77,218,128,74,241,254,82,75,141,62,197,158,225,219,18,85,17,201,155,183,162,49,218,162,157,84,32,22,146,117,0,226,224,226,248,129,130,8,223,201,198,192,95,200,230,203,59,249,154,133,61,170,144,75,225,20,209,25,79,105,79,6,140,248,107,170,79,50,213,66,252,6,220,203,30,141,85,243,96,42,152,205,65,32,74,150,28,77,36,219,144,77,120,190,189,255,18,9,89,91,80,41,231,44,12,57,18,236,104,199,93,225,179,205,228,131,210,106,252,200,175,116,122,65,145,34,101,194,122,248,227,110,9,13,128,68,138,169,210,78,21,117,44,114,94,12,222,159,71,97,44,147,157,137,4,174,53,245,218,144,114,78,152,148,240,102,69,195,106,7,77,177,86,230,178,40,151,99,12,221,204,68,125,152,154,145,87,87,251,197,53,194,252,124,218,240,12,242,66,149,90,187,225,47,188,117,241,241,26,203,193,175,33,123,251,238,224,93,133,124,205,2
 23,54,24,59,140,191,224,163,91,216,7,38,85,240,150,43,134,25,5,183,2,22,148,33,32,252,96,175,221,5,223,48,166,237,2,180,127,112,125,23,92,91,105,175,133,254,242,214,128,152,40,51,211,171,128,225,192,16,27,209,125,235,211,161,185,126,169,136,38,44,38,73,132,210,96,51,249,203,185,32,17,175,95,252,224,49,236,62,87,103,107,154,31,10,115,74,249,208,193,43,7,151,81,236,96,79,93,204,26,121,208,143,207,117,130,139,102,85,116,39,197,89,211,100,51,186,152,144,233,4,7,122,87,114,129,131,104,21,196,236,204,67,199,4,45,137,56,122,43,68,163,60,37,5,8,51,26,217,118,114,130,142,27,14,13,152,77,125,227,147,42,211,115,209,183,103,136,31,52,144,88,187,29,25,75,2,144,110,51,230,208,121,220,201,168,241,218,32,77,117,10,91,3,255,212,123,87,234,211,135,37,105,35,61,22,197,126,152,252,5,236,111,129,191,238,253,128,211,117,10,27,103,29,178,25,231,114,223,110,240,59,200,158,82,160,254,42,47,90,25,39,190,25,37,89,38,240,184,96,104,7,84,213,86,135,101,104,11,42,218,240,28,74,90,101,241,236,238,20,193,2
 32,132,247,58,72,253,247,201,221,195,236,3,19,104,140,139,224,115,230,177,77,8,9,186,12,3,66,91,90,0,230,116,8,86,112,246,202,238,108,12,164,156,192,6,62,185,68,210,1,189,87,219,195,173,76,120,250,101,136,86,43,111,202,8,57,47,21,190,140,163,66,24,105,66,251,245,137,113,3,99,242,196,47,184,69,191,29,179,113,125,88,186,104,4,186,133,83,192,75,141,14,15,27,31,251,26,3,42,179,47,132,114,132,50,212,140,181,44,166,142,171,43,169,99,196,218,172,246,211,89,43,198,126,208,53,244,125,211,30,199,143,253,233,66,76,100,70,235,82,115,141,20,188,10,91,215,242,173,248,187,65,190,227,58,109,135,104,248,60,45,224,199,81,107,234,61,100,179,220,132,65,38,129,160,120,104,40,150,177,100,10,186,50,121,103,197,85,194,153,238,212,18,173,166,16,250,179,248,205,133,64,36,92,187,203,42,192,249,90,21,32,36,81,107,179,253,223,15,16,2,9,134,59,11,104,144,157,44,143,57,125,90,67,182,40,94,243,78,37,224,19,197,203,39,52,233,33,128,106,33,35,3,121,77,176,35,148,172,213,85,55,19,89,206,141,18,231,90,96,112,1
 49,138,1,112,54,212,90,47,237,144,201,182,129,114,1,159,100,110,72,72,138,123,187,173,124,140,73,225,17,177,169,74,167,44,135,172,84,207,182,55,179,78,245,91,26,149,187,103,126,50,225,89,30,163,47,224,39,175,125,130,153,91,125,65,151,169,190,205,206,149,201,207,67,206,145,69,41,128,203,217,2,8,132,246,156,230,38,85,48,73,188,28,87,119,217,53,188,151,36,206,25,153,131,109,104,241,214,216,71,8,112,132,28,34,247,22,65,121,79,162,92,80,1,152,102,122,248,76,160,33,246,95,215,168,255,142,193,165,68,194,195,106,169,129,91,48,20,93,208,48,86,12,151,148,207,208,103,50,213,178,11,180,228,98,64,153,39,234,130,41,20,56,187,254,101,125,18,175,132,186,188,191,38,1,49,23,189,252,238,117,44,79,208,25,0,223,136,75,218,181,179,202,96,162,158,125,83,135,212,90,58,206,87,23,216,184,236,122,117,177,225,95,71,159,74,199,127,240,4,158,96,65,214,104,202,65,103,176,213,83,24,43,144,50,2,233,153,227,248,213,159,20,26,143,56,68,230,70,69,203,48,150,38,253,70,182,70,59,106,190,82,144,57,253,145,81,19,1
 0,236,48,149,244,216,104,69,49,239,72,86,146,128,114,24,188,201,11,17,56,30,74,51,186,93,111,132,79,122,101,67,179,126,140,29,169,160,225,207,48,81,48,169,92,144,25,88,232,13,32,15,91,246,248,179,199,19,77,250,51,212,110,186,82,235,224,62,116,31,163,230,165,115,234,217,85,237,144,100,137,109,226,195,54,160,222,154,93,181,251,176,141,117,124,116,166,163,67,25,138,81,114,158,58,194,63,20,219,155,7,10,118,141,100,83,151,17,144,10,155,144,70,64,96,186,147,18,13,125,95,233,15,88,211,157,229,20,125,114,15,244,43,141,220,59,222,1,210,149,129,32,208,45,189,153,197,167,178,201,35,87,89,215,133,100,172,177,49,136,243,187,178,233,180,152,113,119,158,28,242,235,36,8,148,232,177,16,190,207,142,33,250,81,54,221,48,158,3,236,97,110,139,69,73,69,71,65,16,104,193,184,0,218,3,187,35,227,223,168,132,17,90,46,181,253,114,53,50,127,213,166,51,13,129,252,179,246,95,76,249,235,216,5,77,227,236,196,7,221,93,74,60,153,130,86,205,177,193,15,95,108,228,29,72,36,5,210,48,77,104,247,231,182,153,80,60,24
 3,179,145,254,137,255,107,39,19,59,232,140,6,212,68,92,33,158,243,8,243,238,140,156,16,45,182,99,131,195,249,189,172,155,8,101,221,7,77,176,141,253,18,219,129,35,222,218,10,24,60,185,20,45,149,32,216,65,195,73,18,12,61,114,117,4,91,111,248,71,172,44,42,128,61,227,169,28,206,86,176,80,53,139,3,5,237,17,181,205,224,74,125,172,190,173,234,174,15,12,89,49,61,203,178,169,41,122,27,194,195,72,108,14,240,186,96,28,236,188,24,131,38,5,201,67,174,116,21,175,229,223,144,175,151,77,227,189,240,0,148,189,87,82,138,163,177,226,2,121,184,29,228,39,198,43,107,129,126,10,38,154,9,69,247,207,13,116,41,225,181,106,195,255,252,71,15,198,1,229,64,77,210,176,16,90,113,244,107,148,29,142,4,126,237,90,205,49,101,26,249,159,85,26,124,253,149,129,68,254,132,164,211,44,73,106,12,245,53,75,50,17,27,17,150,94,100,186,91,134,94,245,252,2,124,205,185,186,198,48,210,223,160,23,24,104,114,232,98,70,147,110,253,13,138,151,202,35,105,113,239,147,146,235,248,140,228,210,232,241,165,29,115,64,32,87,62,236,206,
 159,36,49,71,158,243,48,121,37,200,219,210,114,217,121,5,12,31,250,31,80,16,200,18,125,107,218,21,42,95,52,90,42,55,9,150,213,87,137,186,28,49,80,15,3,71,227,111,162,43,34,242,70,11,248,115,183,225,150,237,92,168,195,68,209,168,27,68,139,127,204,194,8,103,8,125,26,134,168,53,225,4,97,46,70,214,43,62,249,34,213,63,58,120,180,11,125,227,189,82,180,123,162,76,93,150,101,247,27,147,28,251,153,42,106,155,134,13,5,73,161,217,207,130,62,119,199,126,217,44,123,87,128,184,8,185,101,217,229,197,205,82,41,109,104,168,157,38,15,231,221,56,48,214,205,55,164,107,182,162,167,82,40,191,194,48,129,124,233,176,188,173,213,51,63,89,152,11,128,221,34,73,179,34,56,88,59,194,209,103,140,123,114,153,43,7,20,113,45,245,169,66,177,218,106,50,110,220,124,144,190,35,224,172,65,188,62,236,115,65,64,28,62,172,110,199,30,36,193,248,243,77,237,186,111,79,133,168,75,101,200,103,61,52,167,173,93,70,209,174,213,159,210,250,137,117,33,104,86,174,21,87,23,12,120,238,69,39,73,81,36,203,106,51,79,13,187,162,74,1
 63,73,20,60,82,77,186,254,241,155,172,189,232,222,196,91,6,196,114,227,116,170,228,250,134,93,116,40,185,63,131,151,79,175,226,197,25,54,10,79,254,57,30,31,120,188,216,251,204,167,110,111,42,130,62,208,195,145,114,253,17,83,248,206,28,118,29,47,70,23,66,163,69,149,220,55,36,161,122,254,15,40,126,241,31,100,49,241,209,223,244,135,213,215,131,145,223,89,98,154,217,235,183,183,189,129,145,76,111,133,17,245,239,71,194,134,173,122,251,40,166,27,22,208,175,66,146,52,107,60,218,194,176,176,100,220,108,224,253,101,11,32,24,28,45,237,145,137,10,78,63,94,106,212,190,77,134,237,243,208,240,238,227,108,215,28,178,58,251,134,69,22,226,192,27,148,23,48,39,249,147,196,222,234,174,210,96,88,193,152,255,110,246,188,4,6,13,96,35,54,11,13,214,126,11,240,149,5,183,163,77,58,244,247,154,151,129,236,244,107,7,93,57,220,71,134,40,33,198,109,56,79,152,237,0,101,128,204,227,69,87,39,62,178,129,168,105,141,252,128,20,245,71,173,227,207,155,153,145,181,68,193,103,72,130,56,153,131,139,38,221,10,80,240
 ,160,4,181,237,145,107,167,128,222,29,71,37,13,193,236,191,174,252,192,159,98,64,134,56,115,249,242,108,44,112,41,60,116,46,138,191,68,236,95,169,0,164,74,87,153,121,25,153,177,125,106,216,249,143,220,89,142,100,77,86,163,199,86,75,129,231,118,68,250,184,251,117,107,196,47,93,28,33,32,241,55,21,194,16,146,240,178,161,33,175,199,241,94,153,200,215,53,157,22,192,191,156,166,110,71,237,187,134,115,237,23,204,118,9,184,181,81,178,81,33,98,33,71,207,112,252,181,93,150,238,133,203,56,168,195,246,151,189,191,125,149,71,241,88,160,105,251,9,156,108,238,79,58,83,104,208,227,238,42,47,221,56,141,135,69,50,0,87,236,159,57,148,14,158,195,211,222,103,13,168,89,229,79,204,28,144,111,29,45,204,78,41,159,64,235,167,217,30,107,78,64,100,83,229,17,83,226,143,199,87,76,136,169,252,78,181,252,255,103,182,18,237,169,9,164,15,119,198,204,121,141,14,103,199,161,207,82,104,177,141,81,78,31,68,138,108,53,219,238,4,76,54,233,146,46,98,165,18,245,197,98,18,113,115,213,60,153,24,117,57,53,108,169,2,74,
 39,74,89,247,254,178,225,63,1,166,229,133,175,191,5,210,18,116,71,201,124,173,229,165,228,221,222,46,196,66,214,222,6,38,87,224,215,202,96,138,191,180,45,166,102,215,132,82,183,192,168,145,5,217,231,157,141,220,46,43,142,165,28,86,95,19,84,181,12,78,95,249,182,158,75,171,110,5,64,128,70,162,129,115,194,240,252,158,201,10,73,182,252,123,188,165,151,236,86,103,221,223,231,67,80,129,129,240,223,29,224,95,217,246,147,88,158,121,113,214,169,115,249,123,101,251,155,241,118,95,110,49,77,227,169,35,208,226,25,123,185,227,51,226,155,198,48,27,91,9,117,150,249,204,141,164,76,210,120,75,125,211,71,93,180,110,131,211,53,210,171,3,220,5,135,94,239,96,165,158,50,244,189,16,107,191,128,16,199,142,8,181,177,62,244,68,174,35,92,133,97,224,13,211,85,176,205,61,141,248,226,140,181,38,173,167,247,228,69,36,173,129,62,40,38,178,167,97,173,131,65,239,93,52,111,19,86,33,255,248,252,33,81,3,25,29,80,241,43,17,3,117,50,15,23,167,231,244,161,222,199,253,171,129,132,67,117,197,173,25,210,110,128,48,11
 9,128,92,183,100,56,75,177,146,176,226,202,110,33,115,134,63,165,255,247,231,1,161,181,37,38,203,59,130,166,80,85,185,115,114,165,76,118,200,41,61,52,228,203,36,195,193,21,232,38,147,240,173,104,95,29,182,223,108,26,217,241,213,101,122,224,216,234,14,12,96,249,80,255,146,237,113,249,116,166,195,62,121,225,230,177,218,84,74,184,138,74,250,221,49,223,77,31,114,29,43,63,4,213,29,213,175,93,187,14,212,173,211,92,167,43,7,233,144,200,211,18,136,70,220,33,193,65,201,228,98,206,235,93,181,86,154,98,38,125,113,209,27,204,208,65,57,181,8,82,144,224,170,138,148,254,120,22,160,208,165,99,75,233,224,188,170,130,152,31,163,71,228,202,125,61,10,180,63,52,200,181,117,203,22,125,88,43,167,231,11,183,154,105,122,241,69,81,23,223,255,63,74,229,39,109,198,81,152,244,216,89,250,61,31,242,52,99,44,161,167,187,39,228,132,217,33,202,59,32,42,59,179,50,119,216,208,28,111,143,140,96,88,80,107,215,167,103,140,6,2,3,254,186,17,203,1,125,54,65,184,172,111,255,198,115,105,100,206,207,44,121,222,184,142,
 255,247,35,124,23,170,107,115,191,126,182,88,81,188,225,183,86,209,45,1,3,16,12,80,215,175,224,235,51,108,164,72,87,104,218,3,176,166,156,152,218,253,65,133,120,117,187,26,112,38,88,136,128,27,79,20,226,247,95,120,175,244,228,197,82,208,232,149,123,6,107,62,199,78,73,182,174,144,241,243,199,12,63,103,237,149,185,13,168,47,251,77,225,67,228,176,213,97,40,137,3,28,83,234,111,242,41,81,242,63,76,219,182,8,31,49,252,91,153,187,4,62,182,55,167,1,188,157,177,165,31,39,144,41,228,22,104,0,15,238,192,80,65,183,182,48,191,15,148,201,252,166,231,93,55,33,136,182,255,197,208,145,148,89,94,116,42,204,78,131,21,58,39,42,111,210,51,100,119,114,1,91,220,69,65,231,149,156,252,51,166,229,28,119,93,198,51,42,166,100,240,17,13,252,66,237,54,142,188,53,76,175,185,149,77,65,79,35,168,12,147,227,181,95,170,83,75,183,91,36,34,52,211,41,9,108,4,249,75,180,215,167,151,162,237,27,77,213,81,108,128,94,35,131,27,223,231,53,101,181,41,142,198,215,177,169,158,221,97,231,94,71,14,8,231,128,62,20,234,164,7
 5,78,200,114,215,213,10,215,126,214,192,83,252,13,111,200,148,94,150,89,214,100,96,152,181,104,199,49,143,185,51,233,35,23,22,247,92,144,223,125,61,247,76,141,238,115,211,2,52,180,251,2,162,67,105,119,65,203,3,206,18,202,189,26,131,36,64,236,244,174,170,25,47,20,118,130,238,224,117,202,71,188,10,41,208,211,48,38,235,102,107,101,242,68,105,33,89,101,76,65,30,166,57,112,160,198,143,31,238,115,7,179,228,96,108,145,147,189,102,165,190,66,123,194,208,138,99,132,249,172,152,110,62,37,146,159,18,133,81,48,162,60,105,179,147,154,17,177,64,86,11,103,19,83,185,239,135,122,10,151,190,182,4,82,146,59,44,227,248,250,234,138,185,132,134,102,230,174,70,178,150,120,179,45,124,204,197,206,157,164,136,145,244,122,48,238,241,195,87,162,219,250,130,43,177,3,81,134,102,204,135,46,193,10,154,59,15,94,252,13,225,254,137,159,130,29,139,22,231,21,97,146,60,194,159,18,192,52,254,179,135,198,229,206,226,223,210,77,110,165,78,64,57,243,143,167,44,185,113,149,254,59,252,98,44,20,90,105,215,116,216,232,2
 27,25,64,1,109,242,83,52,166,134,115,179,209,90,99,118,153,37,248,252,247,159,251,125,8,175,69,79,57,5,110,151,133,31,135,100,196,238,185,19,151,126,152,162,110,218,100,26,47,49,164,249,168,113,142,234,208,129,213,156,2,203,241,58,79,243,87,60,208,255,171,42,234,238,140,63,167,13,159,19,167,137,168,158,197,57,199,63,137,91,209,224,128,124,144,99,202,246,79,87,128,60,61,65,28,206,187,5,120,164,101,123,142,227,195,58,65,113,202,139,100,6,70,110,210,228,38,13,99,167,101,191,51,157,136,82,95,208,23,114,12,24,180,247,225,139,158,103,230,44,84,94,116,179,36,56,65,90,142,129,62,142,38,123,189,13,126,117,68,252,52,99,115,199,111,31,107,162,139,114,202,44,54,41,116,215,188,200,240,110,251,16,96,226,186,69,69,36,148,113,230,100,14,3,226,68,155,13,179,37,72,39,249,208,210,161,247,153,227,93,50,108,223,64,191,141,238,136,2,52,103,199,172,232,85,63,138,238,235,186,237,249,182,36,122,254,68,193,46,143,41,64,72,81,167,130,239,95,0,203,242,30,190,118,135,253,132,189,60,239,62,146,185,50,178
 ,240,19,248,175,244,99,78,229,188,111,52,138,78,251,42,51,191,35,112,204,18,125,146,154,134,36,165,192,226,101,84,255,103,106,87,125,233,64,81,35,71,156,209,157,67,37,160,12,51,235,255,165,77,205,214,16,238,103,230,221,254,195,228,130,130,83,237,37,50,149,161,17,234,82,60,162,48,219,125,205,197,201,176,159,170,174,18,38,187,222,224,110,252,32,255,42,109,9,227,72,2,187,51,67,129,13,234,71,143,203,98,72,133,63,82,245,228,188,213,166,204,217,112,118,80,212,10,174,188,242,247,77,87,62,186,216,81,3,75,113,27,37,93,51,135,244,14,103,75,3,128,27,56,231,245,5,126,32,182,108,210,164,32,9,60,102,51,123,141,97,91,82,126,105,128,15,20,68,46,77,53,146,225,121,88,36,70,208,124,17,121,75,95,166,165,249,124,167,169,93,28,53,202,118,185,13,27,200,123,127,200,221,123,108,162,137,243,22,176,107,240,237,62,207,169,206,190,63,36,8,159,32,222,15,115,241,190,245,87,224,89,14,127,82,94,124,142,21,153,248,199,224,136,39,48,160,26,244,220,83,27,252,134,96,231,57,235,96,174,180,223,194,129,212,108,33,
 170,235,251,91,107,243,147,204,207,29,123,229,67,242,255,74,118,103,34,79,96,92,111,197,107,247,7,174,250,29,4,237,247,39,53,3,70,69,68,0,109,138,174,213,224,164,17,139,105,159,90,188,221,214,159,24,201,149,29,20,81,93,45,20,3,31,134,79,110,115,32,154,143,125,43,15,30,180,30,187,115,127,232,247,234,44,104,60,124,55,181,131,186,250,167,173,129,57,238,235,240,97,229,117,46,218,231,42,109,112,120,64,35,102,36,23,223,29,251,198,89,224,168,138,55,98,201,164,249,189,155,84,124,162,231,70,97,5,122,155,188,73,106,96,181,86,86,111,15,226,80,145,156,79,70,154,138,205,18,36,233,0,118,15,165,169,211,115,146,237,229,7,154,64,74,29,222,226,167,213,95,192,209,134,139,6,22,121,25,110,110,1,247,117,102,69,143,188,244,96,164,168,231,193,177,40,157,234,0,14,162,121,135,30,57,29,205,181,118,152,159,245,244,50,184,44,170,106,238,116,245,53,25,170,44,45,232,150,41,68,67,185,132,148,112,242,160,237,56,153,111,84,103,15,20,158,22,244,195,230,147,34,34,197,190,217,206,96,110,73,3,68,229,147,8,151,18
 0,4,143,244,228,69,153,140,183,68,248,56,238,171,59,168,128,84,239,76,216,170,44,228,65,111,127,94,238,134,79,161,55,141,54,97,131,23,218,19,111,101,84,160,233,124,149,87,239,134,180,26,232,95,82,78,31,208,182,241,138,92,29,208,80,222,235,79,11,142,108,132,221,230,0,47,9,13,44,54,249,150,45,212,138,235,217,80,182,14,60,87,11,89,122,236,213,10,148,216,3,95,14,200,90,179,248,222,205,170,82,224,114,79,135,87,98,68,53,108,50,88,175,227,211,200,250,131,55,41,155,168,25,185,133,245,58,192,234,254,124,69,194,217,153,86,65,46,241,93,131,117,75,13,100,155,123,177,206,214,125,162,243,88,173,107,192,106,18,172,63,32,117,30,156,170,18,120,108,51,127,188,4,80,218,17,221,82,225,178,78,33,81,91,189,146,202,6,33,130,36,179,61,254,48,2,57,243,122,69,95,204,187,66,250,167,67,206,223,86,158,74,241,18,220,80,197,221,239,111,232,70,219,113,48,161,124,175,167,52,69,149,139,152,112,83,210,206,123,104,10,60,150,227,141,12,205,138,41,22,161,58,103,173,189,44,19,147,85,125,46,163,184,95,230,182,134,1
 45,232,175,116,93,66,89,186,184,165,223,96,144,139,69,95,214,104,51,254,67,72,45,77,133,201,107,142,100,53,176,108,28,209,183,236,67,61,161,51,226,217,165,227,15,113,75,60,102,141,0,40,111,110,89,245,106,100,96,221,78,84,215,176,100,147,48,59,51,216,163,10,78,77,96,169,22,41,129,163,165,241,210,95,248,195,21,241,233,202,116,214,206,138,37,138,184,234,10,48,221,92,32,247,211,208,38,170,67,109,25,155,148,85,188,20,250,176,189,116,25,27,240,124,165,73,54,59,162,167,8,175,29,241,42,67,149,56,199,224,148,25,244,18,234,112,130,173,103,222,34,232,223,214,233,110,167,61,179,173,106,98,200,202,34,165,7,124,66,68,201,195,226,135,126,30,169,228,110,135,192,153,229,39,2,255,25,156,143,156,132,1,14,127,199,105,53,208,163,182,108,142,135,211,160,100,130,169,46,199,200,164,127,224,136,248,183,102,123,60,137,160,63,162,79,171,123,91,0,155,124,207,201,224,39,244,201,181,23,41,68,90,73,118,228,69,52,136,158,186,235,16,59,127,51,246,93,30,113,215,35,71,1,10,188,35,159,153,69,112,136,123,143,24
 1,32,172,152,55,104,135,156,130,15,39,10,117,222,176,13,96,185,202,102,101,5,253,70,205,74,118,221,250,130,94,39,43,16,134,62,108,140,108,165,231,11,132,174,2,7,52,250,160,71,187,137,230,174,95,133,34,100,101,233,222,20,153,250,104,206,110,76,175,16,37,1,117,183,141,196,22,171,176,15,120,7,30,113,18,0,116,92,208,52,103,237,23,193,146,146,228,245,208,179,97,222,152,119,187,65,245,93,198,72,97,76,38,132,8,201,140,15,98,250,11,212,135,42,70,17,178,170,238,101,72,153,93,168,71,112,155,214,13,186,125,226,118,147,51,78,75,181,245,64,223,143,128,116,212,67,47,170,31,54,63,134,218,203,11,140,11,142,211,170,42,84,126,57,254,101,171,104,212,129,40,134,45,4,179,115,79,35,153,182,127,165,139,13,86,149,154,81,197,45,203,131,110,74,139,27,246,56,25,213,59,57,29,210,136,112,192,121,148,191,187,116,15,30,188,206,245,114,134,168,89,96,148,26,55,69,121,168,91,112,21,224,50,9,249,17,247,6,112,202,180,66,56,177,22,39,34,138,207,0,181,36,7,166,145,208,248,69,85,174,100,7,249,127,144,75,36,123,11
 6,149,189,12,237,33,244,33,25,213,184,85,189,106,235,144,17,234,106,33,155,86,225,210,1,7,92,53,85,28,45,126,145,245,240,37,126,197,11,247,243,224,74,220,57,149,85,57,12,172,57,21,121,141,8,81,194,121,252,108,14,49,179,38,201,195,88,171,32,135,182,173,124,31,146,128,217,44,138,50,67,176,191,16,127,31,7,64,135,67,62,44,186,19,231,187,78,47,232,8,9,49,161,91,168,25,20,195,160,109,133,21,47,130,194,135,121,176,195,217,210,232,33,211,181,201,23,199,49,6,93,170,96,160,118,227,245,88,255,20,151,186,87,122,148,149,216,89,223,163,144,249,30,80,102,17,48,249,127,195,75,205,192,140,123,39,179,10,213,19,18,28,6,147,75,27,198,171,250,93,190,125,132,32,82,42,85,170,103,165,159,101,178,208,42,202,67,106,249,159,39,239,239,93,239,120,141,154,213,231,60,211,166,146,178,13,252,197,212,150,186,99,200,151,22,133,121,222,125,125,226,154,130,98,246,124,31,162,228,54,13,184,61,193,21,102,15,83,98,177,44,6,225,38,187,48,41,70,248,152,16,154,247,31,63,199,222,143,253,113,222,80,21,177,254,76,234,20
 4,217,155,37,26,194,63,123,56,47,119,252,95,224,163,163,118,158,211,159,227,44,30,96,52,230,188,65,18,183,183,85,215,57,67,116,70,183,116,24,195,167,194,160,229,72,192,195,57,197,231,140,231,207,194,224,221,98,74,175,200,230,2,14,26,142,158,76,93,124,121,138,42,21,97,255,145,214,178,122,3,6,74,132,177,222,253,167,173,65,233,248,2,240,46,64,195,27,163,195,226,148,70,133,168,7,151,49,203,222,174,239,196,187,203,234,227,17,32,62,246,178,218,17,174,204,212,86,121,162,1,1,36,193,17,196,117,70,23,148,201,17,26,167,111,117,149,34,22,2,147,5,243,25,79,75,108,165,178,93,57,173,246,20,3,205,184,56,70,12,15,141,25,244,206,177,76,200,56,37,148,201,162,135,246,175,40,143,134,4,52,132,17,217,248,141,144,62,127,98,87,57,45,226,44,235,230,130,184,33,75,241,208,200,253,38,142,211,103,185,36,82,91,27,97,124,209,25,73,244,207,126,41,66,32,170,154,144,201,200,160,73,63,55,135,122,56,118,188,202,242,138,21,175,145,61,78,2,157,31,214,63,207,27,173,95,119,165,221,98,164,71,189,223,16,118,90,46,88,
 144,178,40,9,181,32,56,141,202,0,102,212,22,230,78,30,45,23,113,136,27,194,188,238,117,239,56,7,218,231,236,137,193,10,125,29,17,81,110,235,121,27,198,217,54,88,164,184,85,15,9,106,29,195,1,253,192,169,119,107,108,190,103,48,140,46,247,240,38,214,191,18,249,212,247,143,112,234,208,61,117,2,160,98,139,108,10,159,153,141,7,218,168,107,186,212,52,212,73,179,112,6,70,221,74,9,141,133,146,149,182,163,48,138,210,241,121,114,126,135,176,126,93,4,114,205,115,117,173,81,250,169,183,82,81,113,175,48,72,205,15,52,64,244,37,250,190,117,199,247,226,134,45,250,251,7,144,8,114,167,94,195,128,110,129,201,38,117,5,176,230,39,227,202,148,245,143,167,135,126,103,93,177,83,177,231,231,189,220,132,224,55,228,134,97,51,95,95,200,26,68,79,160,55,168,198,250,66,227,204,47,143,46,168,248,119,47,217,215,127,30,140,170,4,211,240,243,102,28,238,61,14,147,165,172,37,163,181,9,136,39,198,29,220,73,92,92,162,91,125,234,0,212,137,122,84,235,179,168,104,147,127,195,69,99,3,189,5,241,230,10,6,81,75,68,227,70
 ,90,38,66,5,132,215,134,135,51,254,77,157,44,165,236,121,230,78,165,85,2,10,197,59,206,244,251,19,190,87,68,91,11,195,131,192,61,246,51,84,3,252,60,243,163,78,144,11,239,201,41,127,168,108,107,62,191,124,21,4,2,36,48,101,56,224,226,27,247,219,49,176,152,145,123,6,165,189,128,66,243,180,238,38,22,101,22,152,128,38,18,183,248,220,113,18,39,105,55,40,18,226,33,254,209,105,159,3,46,0,172,138,42,92,11,110,14,113,230,98,211,174,254,117,4,66,53,202,135,128,111,51,239,176,202,9,154,13,93,64,179,246,176,90,35,214,18,105,83,28,237,47,230,108,36,135,101,118,140,79,34,246,130,108,148,154,255,89,112,157,9,65,89,77,70,192,240,238,188,2,215,90,234,10,78,21,212,209,240,89,234,73,137,58,27,233,97,38,74,15,167,41,179,85,212,29,78,35,234,129,132,238,51,195,107,142,141,204,152,62,130,224,232,164,171,191,25,113,252,200,164,139,119,109,172,157,113,194,36,48,162,49,32,33,235,114,132,132,38,231,71,134,214,104,145,51,76,178,89,179,39,254,99,169,164,138,83,240,21,60,230,119,190,16,29,132,183,16,90,10
 6,12,176,7,5,171,144,165,186,48,82,254,222,25,82,105,146,88,79,37,39,182,105,213,179,40,227,166,0,87,237,255,230,21,204,82,28,152,239,64,187,174,68,247,177,89,2,193,103,126,68,219,218,115,198,37,100,175,92,179,71,113,59,68,203,113,229,222,143,147,123,93,64,153,11,238,135,167,109,90,98,139,102,10,44,89,9,133,115,89,183,80,85,29,81,194,127,178,207,250,27,232,5,34,163,34,45,240,28,122,35,117,74,106,198,136,102,106,229,35,212,204,30,254,75,155,120,124,213,183,96,6,180,11,203,179,209,137,184,90,165,233,108,125,5,199,75,179,164,109,40,41,28,206,35,154,230,175,195,35,112,201,126,160,206,128,218,61,215,202,36,148,181,198,74,126,116,111,61,230,217,198,124,163,76,23,155,178,35,75,44,99,74,82,47,242,201,107,226,78,103,100,117,45,93,183,216,103,118,194,160,21,8,27,110,82,199,133,200,237,183,132,10,231,111,214,160,158,113,57,92,153,122,119,168,48,145,211,68,76,33,78,93,144,205,140,217,164,41,50,244,124,203,145,109,133,224,144,85,179,10,241,217,88,126,74,48,181,145,186,38,76,19,77,175,52,
 10,74,188,24,122,240,106,57,38,116,148,98,28,41,240,132,209,59,213,225,208,235,62,141,96,44,220,183,123,10,127,193,202,192,172,77,64,117,15,173,47,79,146,133,216,199,103,24,3,171,164,187,213,220,132,196,86,61,187,205,85,209,125,152,133,206,17,44,138,241,4,93,23,205,187,41,158,230,124,173,124,10,95,192,196,62,6,143,229,238,169,45,42,5,243,211,45,131,44,181,125,202,56,123,177,244,237,163,233,56,227,96,94,227,206,163,220,58,142,148,251,188,157,211,70,121,23,134,206,24,9,82,52,191,126,84,239,255,91,130,47,101,137,56,148,209,103,141,228,165,40,5,255,39,178,40,223,3,59,136,198,78,249,5,228,65,13,189,157,199,59,0,77,217,155,209,199,61,230,139,80,155,222,203,216,129,153,76,157,86,73,255,234,225,48,193,197,153,124,133,15,85,77,11,213,7,252,125,90,116,202,105,130,245,203,44,62,127,188,14,162,103,223,208,76,218,127,175,40,212,92,243,155,90,222,209,194,171,7,217,61,141,61,116,238,218,4,43,4,102,153,255,95,84,209,213,245,5,203,12,158,9,107,10,198,62,103,32,225,189,64,47,30,92,207,44,144,
 223,35,254,106,2,176,79,103,1,243,246,127,150,97,229,82,103,208,143,245,225,31,255,246,250,61,159,108,114,168,199,54,195,124,119,16,69,36,76,184,21,241,249,127,230,26,134,222,229,44,38,67,242,156,9,196,139,103,57,187,11,164,46,29,26,178,229,135,215,34,230,165,186,115,73,244,247,29,213,215,117,46,8,246,253,191,90,106,115,194,101,31,85,125,96,210,94,53,174,189,188,21,37,61,79,21,223,216,254,136,133,167,157,125,223,72,222,203,143,4,219,72,53,52,77,96,101,215,18,57,81,84,135,26,153,40,82,167,255,20,68,188,226,110,43,108,168,214,49,36,164,41,140,158,221,87,79,80,140,81,220,175,158,103,110,252,151,39,208,189,99,88,81,92,222,63,35,34,32,248,220,171,5,8,161,46,167,215,218,111,191,130,178,210,129,18,196,241,235,151,239,157,235,191,177,33,118,32,178,53,246,175,255,72,3,121,184,40,2,47,74,217,247,141,243,140,118,176,115,138,250,251,205,28,106,64,208,34,120,146,164,126,175,105,129,102,253,143,91,32,26,49,167,243,80,203,219,2,72,57,67,154,190,36,254,63,28,229,152,76,82,12,184,203,220,220
 ,6,118,167,13,137,19,139,173,44,69,36,204,6,174,193,191,215,171,140,157,78,51,164,123,101,239,50,150,240,178,19,35,63,82,140,254,203,236,157,26,111,241,77,123,135,125,116,230,220,168,190,100,90,64,75,194,129,117,56,77,36,194,206,102,166,244,238,189,161,17,194,143,189,109,2,45,16,19,69,213,140,113,89,220,148,248,76,219,83,50,207,200,201,226,18,183,45,111,34,75,245,191,95,54,64,103,226,143,177,52,43,145,143,107,249,34,167,203,140,70,115,129,68,106,219,219,135,81,37,223,216,253,108,150,183,177,77,194,139,169,165,207,166,103,99,141,56,119,40,152,203,26,110,240,91,246,49,0,217,78,172,201,179,111,105,154,135,185,186,46,42,122,33,163,241,227,213,168,42,158,105,74,42,58,191,92,214,25,208,225,194,15,217,85,139,8,222,38,121,236,138,209,97,18,200,104,120,172,244,93,12,194,40,108,68,86,133,65,152,144,144,107,38,141,27,123,243,109,124,21,176,96,60,188,251,251,83,160,36,93,1,213,131,113,154,226,148,107,249,164,219,255,21,203,206,129,39,151,215,229,78,184,203,6,160,221,170,124,99,88,232,65
 ,217,246,51,62,170,34,229,56,147,120,152,27,216,250,120,134,99,53,114,89,61,126,222,106,206,226,205,247,182,178,229,38,123,5,139,70,7,1,179,103,63,224,12,185,213,253,94,179,30,18,125,197,150,221,234,68,97,148,85,42,233,204,253,217,145,244,131,240,32,161,6,31,214,191,112,27,10,37,215,84,200,214,63,76,175,23,97,214,111,40,46,192,154,145,196,158,91,207,29,219,159,159,22,92,43,171,52,234,242,5,202,149,13,7,118,250,137,193,123,193,247,24,177,48,229,93,77,41,177,254,234,152,166,116,162,103,32,158,184,193,224,80,49,224,143,27,187,28,45,211,24,139,94,175,182,89,151,18,26,132,205,186,7,25,64,217,22,221,96,150,218,251,69,150,170,2,120,222,186,169,179,60,90,43,35,95,42,88,51,4,63,106,241,72,171,186,210,242,71,65,190,195,239,189,166,172,22,35,227,104,8,94,60,129,229,192,107,226,163,19,227,100,115,134,85,108,167,219,34,253,11,67,139,88,162,69,120,10,237,116,75,204,127,79,133,23,244,163,19,155,170,222,222,194,135,181,123,32,108,117,34,226,215,205,231,3,205,1,9,49,160,205,218,42,213,164,15
 0,22,225,173,196,30,222,184,200,62,95,132,236,14,38,52,20,137,197,73,47,229,146,227,31,113,108,23,104,153,74,49,130,184,197,25,210,139,68,255,75,230,139,126,84,59,249,162,216,134,127,133,69,68,234,229,245,166,129,110,172,120,106,100,210,207,43,236,43,118,227,165,63,9,254,63,178,129,91,209,179,124,145,111,113,51,48,209,197,196,233,36,182,68,210,216,192,224,32,115,160,222,4,81,218,106,152,47,197,125,80,209,161,46,208,28,164,52,245,250,117,91,142,41,173,6,134,25,77,17,197,161,233,176,173,50,95,90,213,176,55,15,3,49,240,181,172,218,161,100,84,169,6,239,3,149,131,154,49,121,151,26,49,97,202,68,91,35,196,43,36,252,218,128,78,240,192,252,68,204,214,202,138,10,166,210,150,33,229,41,118,7,0,102,157,209,146,32,67,58,211,185,2,185,25,192,182,117,176,57,195,193,250,235,103,20,25,129,205,190,72,165,171,243,29,152,242,229,12,39,216,71,128,58,96,217,249,116,119,166,104,17,18,195,149,140,66,220,41,37,135,55,36,56,196,3,81,73,81,95,7,22,68,15,131,169,225,167,54,198,12,62,102,13,206,165,195,2
 29,102,76,142,143,226,40,131,190,111,50,201,18,238,222,197,77,164,168,37,61,93,236,205,68,223,219,162,62,183,228,111,7,226,230,36,86,216,20,177,133,119,61,175,40,135,97,190,188,225,85,226,38,90,137,114,76,6,188,239,57,17,200,178,71,141,124,112,224,16,133,233,251,38,63,11,187,174,179,233,73,88,101,234,141,214,19,68,4,192,21,140,252,116,46,131,71,213,203,146,57,133,117,166,236,209,153,199,82,83,181,61,29,226,91,218,77,150,34,88,195,65,12,134,164,139,47,16,36,236,39,131,117,14,103,249,82,159,177,98,31,224,250,44,218,106,7,233,103,230,25,100,93,174,153,53,253,86,88,116,53,8,144,85,28,155,242,255,103,113,111,33,75,189,126,110,123,110,86,5,193,97,221,126,173,124,24,64,45,178,110,185,173,81,76,134,100,158,41,93,128,105,124,182,181,128,136,1,197,183,101,86,150,11,35,24,0,72,26,4,20,222,224,179,75,189,178,211,237,168,41,211,52,92,169,21,191,23,47,44,101,32,104,182,167,27,196,156,204,255,15,92,186,150,101,140,50,89,73,245,67,145,252,72,62,91,6,3,243,180,45,95,224,102,47,228,237,101,18
 2,254,161,56,197,84,94,54,86,67,117,105,44,39,126,136,36,101,249,52,243,165,61,90,223,181,20,153,41,58,248,228,196,247,187,71,79,31,130,183,43,119,87,202,145,115,83,184,13,252,76,221,245,6,234,82,179,85,201,30,203,27,128,143,16,163,187,15,228,85,115,98,161,218,63,116,28,144,166,121,22,18,210,155,34,142,116,137,58,116,217,153,8,33,44,21,71,3,7,214,85,36,177,196,4,125,76,166,186,135,172,120,83,210,95,239,104,42,19,10,10,208,183,74,128,51,207,19,20,41,66,160,174,1,52,221,181,194,253,222,79,59,205,241,17,147,52,124,209,139,90,120,244,85,20,148,44,44,215,65,129,41,112,163,143,185,240,187,142,129,119,31,5,76,192,12,235,27,103,135,23,220,187,54,13,177,61,164,226,161,86,73,52,67,169,0,189,15,243,100,108,95,221,90,237,216,86,60,170,75,84,206,60,250,200,194,248,248,239,203,238,194,117,152,43,110,100,30,131,105,88,236,200,76,23,44,47,165,53,63,22,184,78,231,17,105,110,61,175,57,195,211,89,137,230,133,139,153,194,251,238,46,206,219,182,245,94,19,243,118,246,149,180,100,31,200,191,147,12
 0,42,194,176,252,51,0,81,36,29,25,71,140,236,202,75,180,102,156,116,167,224,121,94,97,204,235,242,91,56,64,182,39,251,112,241,110,154,161,165,147,54,196,118,123,68,241,99,251,216,124,222,121,6,128,249,54,104,63,15,40,241,113,14,156,224,5,68,165,54,240,67,151,224,139,4,208,81,159,221,202,45,76,46,180,52,213,243,34,126,187,189,48,47,137,97,79,161,69,122,108,180,18,133,29,115,217,88,197,135,45,74,141,57,2,37,129,210,149,224,93,25,131,56,8,78,184,2,132,193,240,8,108,217,34,188,152,52,41,220,167,238,101,202,47,210,69,174,145,232,210,84,39,213,239,109,22,215,33,153,23,10,91,74,208,83,27,0,36,251,229,36,2,220,18,181,93,88,40,96,48,231,92,82,131,237,223,229,125,197,218,138,129,79,92,4,195,205,75,171,64,17,81,161,89,134,219,66,43,2,102,50,30,54,215,149,48,129,55,249,245,254,206,168,247,69,36,197,230,157,174,203,88,142,211,25,236,164,118,106,156,110,62,0,9,233,149,61,71,67,21,202,113,41,101,205,241,253,144,90,14,176,95,211,55,206,22,145,233,77,129,56,209,253,210,120,192,49,50,92,208,2
 30,31,135,180,185,200,106,113,94,238,112,223,62,5,225,164,201,23,205,157,80,16,115,158,102,134,65,35,203,0,28,3,254,116,174,70,14,72,234,180,174,251,83,43,17,87,94,15,177,230,231,117,116,96,60,33,118,171,137,198,228,124,49,31,48,91,227,222,162,169,68,186,246,142,70,68,86,254,41,70,206,13,32,53,9,47,253,250,36,30,239,175,84,151,115,21,42,238,161,10,232,3,194,219,125,149,247,117,155,115,173,208,98,198,218,0,82,193,14,168,83,33,171,213,60,30,24,67,68,209,91,59,28,115,62,150,165,218,13,79,131,153,162,156,145,13,140,228,149,96,27,155,147,89,212,117,164,219,2,246,227,154,116,45,244,220,56,242,89,121,207,222,97,226,109,236,247,85,77,198,164,173,178,34,128,100,64,211,110,199,232,229,47,222,156,145,23,17,89,204,101,228,188,156,170,26,117,208,56,50,210,161,36,29,67,8,99,102,51,12,178,197,28,67,82,13,94,141,34,83,123,176,124,47,215,223,77,13,119,84,39,155,62,214,164,224,7,245,170,67,16,143,28,35,123,227,154,5,115,192,75,93,173,150,75,193,174,14,175,249,16,144,106,103,86,49,187,67,91,21
 3,240,238,170,226,195,251,136,147,96,204,226,3,230,21,68,103,161,176,55,185,189,48,93,6,30,203,219,139,191,74,6,43,188,112,198,41,91,164,210,85,37,2,114,202,26,128,50,56,236,51,54,4,149,166,77,200,97,145,15,85,196,219,6,38,139,155,254,220,220,177,188,230,12,95,37,156,121,112,123,87,245,12,240,27,186,107,32,192,206,194,13,85,161,69,77,41,65,107,70,69,28,185,111,87,133,165,238,41,2,67,86,66,136,18,81,167,49,1,13,99,232,246,46,26,58,161,177,129,118,122,100,185,12,180,56,54,226,51,206,1,100,24,207,124,27,141,99,106,225,16,239,198,35,39,97,56,37,239,153,201,42,46,193,130,9,1,221,112,45,102,23,134,87,48,63,186,216,85,178,218,177,0,187,142,249,171,229,111,96,13,234,140,217,28,12,254,235,66,30,191,182,75,148,76,245,232,66,252,219,143,132,88,206,94,35,40,90,139,179,195,50,165,119,62,12,174,24,206,0,35,137,33,237,59,1,185,106,202,73,210,91,148,140,216,60,39,66,45,145,45,147,212,97,158,33,211,31,139,213,104,125,136,192,215,28,163,133,97,245,63,229,195,119,123,187,146,198,24,167,240,148
 ,30,168,67,112,24,169,132,187,134,162,105,251,255,182,12,153,43,178,223,34,240,48,66,189,40,104,250,152,78,217,63,109,182,37,107,89,179,121,198,236,164,218,46,85,23,43,83,42,205,115,195,53,106,179,254,48,92,174,165,132,54,53,123,217,144,51,181,22,104,172,46,168,165,113,217,114,21,218,200,167,199,196,189,98,224,152,112,173,183,213,4,136,176,233,150,171,212,118,234,47,70,124,164,35,188,166,167,70,109,224,193,136,70,141,117,78,168,74,43,7,95,7,216,93,182,155,123,42,204,224,180,154,0,168,86,136,191,8,254,34,199,234,42,246,188,35,9,118,186,3,98,106,138,56,98,15,195,12,210,138,85,99,51,43,150,173,156,121,124,255,1,72,106,176,246,29,244,168,75,42,246,207,252,156,67,14,188,130,190,165,215,124,47,74,172,71,232,60,153,168,220,43,71,95,172,183,241,223,189,207,19,248,25,238,81,189,184,6,54,51,147,214,228,107,83,62,144,26,76,226,157,210,77,4,17,55,25,120,132,223,140,236,99,81,145,234,216,206,171,69,97,35,213,111,62,217,136,105,110,140,185,223,111,220,225,55,34,74,212,81,189,160,227,101,2
 02,226,105,67,184,165,117,139,234,52,119,74,190,7,224,76,135,216,82,10,131,249,226,142,28,25,201,113,90,183,109,59,159,23,221,203,6,199,117,9,131,48,9,150,66,178,18,101,207,200,65,129,222,72,171,86,169,200,199,81,86,128,160,4,85,97,230,48,172,182,217,4,22,65,211,23,197,227,139,149,147,224,53,98,226,206,192,117,1,64,72,107,89,159,124,87,94,29,44,17,35,145,71,251,72,197,147,47,212,92,228,84,238,173,182,35,166,44,236,112,221,65,235,154,199,146,16,93,221,122,11,0,6,136,13,88,86,42,34,11,107,181,252,124,40,95,94,76,96,171,42,138,0,235,221,255,226,252,94,206,11,122,185,70,228,46,0,217,165,222,5,247,116,57,234,55,77,139,97,46,202,106,49,154,4,19,30,151,184,48,11,68,160,49,101,17,214,14,214,48,135,160,206,4,71,46,58,149,218,171,203,88,46,193,15,48,168,12,95,26,213,68,67,240,183,93,168,2,42,55,147,98,209,2,77,230,11,90,65,194,85,198,207,236,221,151,4,200,94,74,110,93,186,182,79,23,98,57,46,6,124,247,108,167,154,180,181,160,30,3,132,65,219,37,94,223,113,209,35,52,164,38,190,155,123,20
 ,205,50,226,222,255,23,80,209,87,154,130,80,140,26,66,70,93,119,239,251,18,221,153,215,184,65,2,93,194,85,24,222,130,14,150,156,140,46,108,151,218,153,72,250,208,5,152,116,188,243,33,196,244,74,49,120,134,99,207,229,155,131,4,29,83,187,210,172,75,214,101,107,97,58,225,100,1,240,61,95,136,214,104,174,148,184,184,120,221,104,252,85,57,93,212,38,69,108,195,45,61,244,11,21,229,41,187,93,49,64,63,50,112,96,72,43,93,240,54,186,222,132,102,24,21,46,153,108,235,248,204,144,245,90,14,127,116,83,105,248,74,253,55,112,181,209,245,212,57,103,23,191,172,108,225,102,39,226,174,157,181,116,23,226,26,203,14,197,51,57,2,210,220,84,129,66,28,223,205,240,108,216,228,63,4,251,138,63,238,251,142,32,147,61,24,69,199,60,178,72,113,95,153,194,102,195,131,223,185,198,51,99,226,246,165,225,104,202,215,143,83,248,57,164,30,234,71,250,113,100,185,154,235,118,216,248,241,169,193,242,130,176,178,212,79,218,11,152,110,220,123,178,189,117,211,239,32,106,134,154,139,88,203,121,157,167,81,154,136,139,149,45,
 147,53,194,130,174,67,210,89,81,170,18,202,222,199,221,11,194,84,5,31,202,189,255,93,39,215,236,104,237,148,167,254,69,252,93,2,253,236,19,207,169,188,208,218,105,108,163,245,58,101,126,67,176,64,13,205,222,127,48,233,203,209,137,87,120,98,16,227,251,238,124,202,73,119,9,15,148,177,140,42,118,202,127,64,127,124,251,3,242,7,90,244,144,222,219,178,11,105,180,255,130,215,170,110,106,83,154,62,117,203,173,71,58,184,128,20,51,22,177,204,118,118,85,242,10,67,148,234,8,205,23,169,47,4,228,127,178,178,234,165,96,37,9,99,203,206,71,152,161,221,57,213,190,245,214,139,231,56,247,67,170,113,160,55,234,73,185,92,188,87,81,204,65,175,40,208,31,96,64,150,162,226,173,27,172,116,13,251,187,98,6,101,113,113,103,26,82,222,141,177,4,107,222,83,174,139,217,80,238,38,181,106,143,8,181,226,42,35,47,120,194,24,106,56,100,113,34,16,237,83,194,201,83,147,226,213,218,17,39,14,46,132,209,187,147,83,52,68,63,102,94,24,128,11,73,28,133,88,190,42,193,41,49,164,23,43,96,102,248,97,74,132,33,195,41,209,147,
 93,218,230,223,193,122,174,79,229,163,172,151,240,245,19,93,4,50,145,159,246,116,117,160,71,107,161,4,195,46,85,30,150,34,32,98,180,39,116,68,194,68,21,125,193,235,150,127,131,98,250,179,0,3,134,17,64,32,189,7,103,88,185,72,227,53,118,227,216,188,69,241,241,42,143,214,86,171,101,163,110,183,222,85,81,22,151,18,187,18,228,189,90,224,242,87,210,242,76,4,69,178,64,60,145,209,147,123,209,138,32,82,11,175,19,135,180,39,82,63,105,251,54,190,143,252,192,81,110,160,90,82,76,77,207,154,72,246,148,56,90,113,0,114,253,169,153,254,132,161,31,52,188,116,117,238,227,67,8,196,13,40,160,89,205,15,148,181,27,244,23,53,26,228,97,63,113,153,85,22,80,166,223,84,149,127,165,93,105,3,199,75,66,202,92,115,163,240,118,187,95,118,34,167,253,47,123,34,126,230,126,139,20,162,227,255,83,228,174,218,41,243,118,52,117,241,211,169,130,31,61,198,137,189,199,35,206,78,76,52,130,255,38,186,129,72,95,46,134,63,230,154,124,124,245,65,123,3,32,172,26,161,67,34,113,90,49,244,184,216,110,51,32,79,203,176,92,214,1
 51,135,41,47,239,119,87,159,134,239,74,182,186,88,167,91,225,193,194,208,249,219,84,25,204,59,109,31,36,26,73,201,131,88,30,93,175,241,108,18,81,30,225,73,53,119,86,113,70,57,31,208,151,91,188,191,51,35,99,133,110,149,79,225,139,90,160,228,229,169,76,94,83,193,174,63,109,98,167,130,150,223,100,104,210,16,24,22,158,242,87,21,80,120,217,145,92,3,215,98,198,142,186,191,144,21,32,171,170,193,98,99,105,242,184,97,210,24,159,186,237,18,88,71,33,252,8,81,80,137,2,58,209,249,47,30,14,50,129,225,213,231,156,157,113,152,174,13,71,66,50,46,88,19,156,151,85,23,176,42,163,32,26,54,2,107,51,175,78,67,85,207,206,139,156,178,203,139,223,141,128,102,21,192,6,11,13,111,48,64,63,113,150,25,131,104,149,82,79,126,168,18,52,187,202,218,29,177,171,110,58,185,29,179,75,226,79,23,231,124,138,170,106,103,167,16,147,46,240,114,42,215,2,131,112,237,125,155,16,85,98,128,126,25,95,228,67,22,72,69,166,40,232,29,112,104,140,74,230,140,212,48,227,149,12,85,210,171,130,47,248,41,149,30,244,209,228,98,66,133,
 255,197,215,246,191,161,43,104,119,136,221,61,32,99,179,153,183,121,215,188,154,3,38,205,97,214,142,251,79,140,26,94,18,193,66,177,247,17,107,94,211,218,181,58,29,152,214,71,172,181,89,107,238,254,3,51,85,52,66,1,24,132,114,184,70,222,10,167,249,13,231,171,81,80,68,129,86,195,110,199,23,78,146,123,205,235,203,16,216,17,8,72,44,193,8,32,194,66,181,249,233,185,82,94,10,64,69,91,141,215,144,27,157,214,239,163,16,161,83,22,79,52,122,105,248,215,104,38,206,147,134,9,50,49,109,246,62,198,59,136,241,83,242,146,222,241,224,173,140,174,80,167,112,235,182,41,80,49,163,225,138,128,72,32,253,16,99,151,155,176,238,94,213,210,231,40,44,245,1,80,227,199,244,162,120,46,186,1,55,221,234,237,158,209,152,157,235,25,124,211,22,34,4,97,190,237,38,160,95,86,40,81,4,218,36,33,222,167,239,111,199,92,193,84,28,198,53,109,84,209,14,71,245,125,111,25,63,169,30,62,254,92,223,26,240,169,17,33,168,233,240,154,117,4,197,151,51,88,12,108,232,16,161,225,5,102,172,1,234,199,255,234,131,59,237,102,28,209,107,
 48,110,58,229,139,167,180,224,0,225,201,200,31,72,116,168,14,63,23,58,104,44,44,166,63,239,13,254,129,231,16,189,85,77,203,86,23,3,104,89,98,174,218,221,47,43,132,240,133,228,28,123,133,237,130,41,87,155,143,81,255,190,140,130,197,239,90,242,151,242,156,7,81,110,91,244,78,72,214,57,244,209,88,81,60,172,152,195,20,118,138,65,44,181,147,177,172,21,214,51,201,161,58,237,112,239,98,156,173,128,226,241,115,237,190,190,84,156,67,77,236,219,234,172,129,234,7,213,247,25,10,27,221,78,78,218,129,22,22,128,117,92,199,228,112,86,119,127,97,212,150,135,32,224,201,163,208,222,113,37,140,112,201,197,44,6,9,175,188,77,116,231,149,248,49,226,135,178,209,191,134,6,162,231,225,196,87,59,74,185,69,8,213,108,38,62,31,18,15,8,172,194,181,61,253,238,234,91,13,204,54,69,164,246,158,134,24,74,13,23,15,162,22,242,59,133,52,229,243,82,133,56,85,201,166,141,207,183,14,194,169,24,185,34,5,151,136,9,168,21,165,10,142,45,116,112,57,227,129,178,131,18,157,182,116,31,31,117,160,143,203,121,172,6,85,217,141,
 132,154,15,79,179,78,14,190,244,198,240,218,91,234,137,144,230,248,209,173,42,197,48,123,18,28,109,217,82,226,190,179,39,237,75,182,35,99,162,13,228,199,29,241,232,35,144,89,97,226,34,95,169,60,114,40,11,219,193,184,99,226,173,106,197,44,136,103,127,110,182,28,12,219,44,201,186,131,119,126,63,250,95,24,239,220,3,126,244,65,20,237,192,200,250,140,57,26,169,237,164,91,177,35,141,98,156,195,255,172,120,254,41,116,143,78,65,136,254,181,217,228,250,248,226,141,175,206,40,150,137,49,166,246,157,13,207,253,149,68,165,101,148,39,36,103,92,211,99,117,154,182,217,71,4,62,13,44,248,114,245,234,50,116,131,16,215,36,9,26,145,50,147,246,174,8,253,65,46,188,142,127,242,137,242,29,52,211,137,1,196,202,232,26,165,67,85,0,43,39,39,149,242,139,41,254,197,4,185,11,16,4,178,158,5,68,50,252,113,255,247,37,200,251,252,76,13,91,32,70,137,240,208,39,234,11,28,80,187,104,116,217,240,182,119,174,125,154,224,198,181,98,121,214,169,152,220,23,10,7,8,171,208,20,147,163,112,204,24,96,229,186,50,225,147,12
 4,247,218,209,153,255,20,217,37,55,214,84,235,248,115,154,162,26,65,255,141,197,117,163,223,132,130,158,124,23,3,202,69,207,187,39,48,225,186,120,166,44,241,82,116,252,25,122,117,147,101,252,120,160,248,88,198,168,229,75,167,218,110,162,130,156,232,1,218,168,221,194,165,99,5,93,143,170,111,240,42,87,86,195,32,14,119,197,213,219,227,232,164,215,65,33,97,177,67,254,68,133,0,143,170,35,77,154,63,254,50,197,138,71,37,117,133,237,178,137,239,35,191,205,186,121,51,198,40,220,119,237,158,147,57,29,38,205,166,71,221,107,184,71,100,140,196,103,174,245,221,229,194,236,86,241,238,94,87,182,27,184,12,74,99,57,174,194,227,69,77,126,192,152,242,201,204,34,27,27,255,117,147,107,238,207,92,52,38,187,46,214,182,83,30,129,9,102,87,136,8,235,114,133,108,198,18,160,232,233,60,209,166,187,162,234,231,69,234,90,93,133,135,228,50,208,4,137,145,223,47,198,135,14,62,219,197,63,15,107,18,108,53,140,214,236,114,225,120,27,198,136,123,52,108,252,4,219,48,7,158,228,97,158,79,186,127,122,191,221,250,160,
 197,158,54,254,135,131,242,120,220,186,175,161,218,254,244,255,89,95,86,202,66,185,41,2,26,23,61,71,254,161,244,212,230,122,89,149,158,190,1,223,170,158,112,173,139,12,114,223,36,24,72,174,254,197,254,32,96,29,150,228,144,65,27,63,203,163,59,12,194,147,178,179,152,15,234,79,192,7,213,64,74,144,15,22,246,19,103,173,225,43,230,104,92,202,63,125,47,100,251,229,162,201,30,60,125,144,190,64,22,218,253,163,113,165,204,68,209,34,18,118,44,143,214,157,79,45,168,33,164,60,218,158,199,254,149,155,47,150,214,232,112,151,166,239,158,2,141,10,31,75,62,205,36,97,112,198,36,77,141,252,171,218,103,72,44,21,94,173,170,147,203,2,183,25,201,125,60,133,129,120,154,122,11,238,197,96,252,58,82,202,231,80,117,110,152,229,248,60,148,116,216,137,246,221,39,52,232,195,192,154,111,110,90,192,123,187,50,171,50,72,63,195,173,2,157,114,221,147,47,193,254,196,188,32,46,16,128,248,201,137,148,107,106,170,139,90,9,235,71,49,145,230,232,33,10,225,92,178,182,79,22,242,17,253,207,186,28,56,53,125,74,214,179,18
 7,170,138,218,5,100,77,64,229,207,184,250,243,242,102,58,189,199,40,12,206,97,175,167,174,51,4,174,103,124,192,102,238,102,153,238,107,207,27,96,152,83,185,81,80,255,138,170,122,140,7,179,53,168,113,43,213,45,167,227,179,50,151,119,10,84,28,254,66,234,214,76,220,207,17,36,159,46,25,153,217,202,173,30,191,244,61,13,129,253,193,43,127,168,66,218,227,82,182,43,19,28,106,131,58,75,58,137,229,103,44,236,224,49,88,53,16,174,67,82,4,102,123,208,5,16,238,109,242,46,101,234,80,163,45,91,22,187,0,180,239,203,134,252,177,191,174,24,81,21,19,67,91,153,222,115,139,11,137,101,1,26,90,243,31,12,189,148,242,162,222,74,43,255,48,234,190,238,203,56,63,199,65,66,85,15,224,159,176,21,112,159,248,146,38,167,109,231,48,149,70,120,103,219,173,19,87,9,239,31,220,227,161,131,128,180,107,102,162,16,205,223,152,193,250,207,9,130,20,30,198,23,19,32,175,21,47,194,118,181,24,77,33,82,18,122,242,148,17,154,62,150,116,156,214,190,21,182,210,169,173,99,186,94,125,116,145,243,74,214,89,116,40,245,55,102,220,
 224,104,120,243,168,3,111,91,202,175,172,243,19,40,141,44,175,16,156,173,128,169,36,79,61,214,40,239,243,124,215,208,171,181,206,45,222,51,24,143,145,51,143,14,84,154,198,70,69,210,212,53,90,218,164,235,69,10,196,253,83,208,30,155,202,82,21,82,27,140,46,46,23,232,126,200,131,0,79,166,233,153,108,71,242,187,147,170,125,65,252,39,156,229,231,163,251,159,60,253,17,150,54,128,134,128,28,62,118,208,145,32,81,245,185,104,205,0,85,101,252,112,117,182,251,140,113,77,20,207,118,180,92,93,24,148,174,62,168,164,171,255,116,44,121,202,224,181,73,36,154,148,132,31,152,187,228,18,201,155,21,198,95,169,19,2,64,93,22,15,38,159,245,110,57,45,239,235,23,142,126,224,24,55,103,247,78,122,126,167,192,154,157,189,154,158,239,61,42,38,212,226,89,196,237,59,159,149,199,179,172,157,60,36,137,59,149,154,224,23,56,232,247,20,13,206,55,89,43,135,203,234,33,43,211,44,131,78,28,92,182,41,71,97,36,102,106,224,86,97,23,42,23,130,185,118,112,203,155,29,239,83,108,118,54,82,182,38,94,9,7,10,246,173,238,126,1
 00,84,23,107,250,218,37,204,215,224,238,113,216,158,248,236,78,58,202,105,2,106,101,234,180,7,90,66,4,154,223,74,233,40,80,195,114,149,135,70,197,105,183,58,72,34,137,84,5,99,180,239,78,96,33,87,240,139,1,231,213,201,186,82,133,106,176,251,13,217,197,170,208,110,61,150,81,102,196,236,75,116,185,13,149,185,39,31,207,147,38,230,164,236,204,195,26,167,223,21,112,45,132,206,234,13,234,232,160,127,151,168,123,67,220,80,82,209,136,93,109,11,16,159,237,168,158,92,100,157,66,48,250,167,236,32,216,119,112,73,56,178,40,173,89,132,126,158,140,10,92,43,80,167,26,244,1,70,157,51,136,194,194,160,63,21,49,222,88,52,52,50,48,20,8,113,202,91,216,255,161,7,161,128,166,128,252,35,175,144,238,85,188,194,20,27,148,222,55,224,163,229,9,80,113,67,237,97,196,128,36,167,142,27,126,141,245,29,122,227,64,174,232,131,2,158,96,103,97,15,93,120,115,81,208,240,120,54,19,186,107,34,237,109,99,32,28,163,10,85,13,163,254,74,232,252,147,94,124,106,176,182,155,137,93,160,24,169,250,64,175,253,102,92,73,175,167
 ,199,35,110,193,104,93,8,210,112,60,157,67,248,216,44,81,247,36,103,235,114,123,218,105,1,46,200,97,224,108,103,35,46,103,113,139,238,145,66,179,102,195,202,78,243,229,202,149,91,243,6,200,198,33,113,70,112,57,230,70,44,52,176,139,244,218,68,17,5,147,164,3,154,239,125,147,88,209,217,183,172,7,52,69,42,201,203,106,212,19,5,245,16,216,180,75,34,156,235,112,137,64,207,229,242,64,127,222,206,2,56,141,109,174,253,149,227,38,208,173,27,84,223,126,124,18,212,26,167,92,182,253,106,171,26,224,137,16,21,90,128,173,12,193,68,235,230,47,76,74,215,228,254,243,184,225,59,125,209,20,186,18,98,115,118,237,131,225,96,180,32,48,219,126,139,10,182,170,7,87,201,155,39,242,222,81,213,62,162,57,38,32,59,85,185,155,129,169,194,15,114,1,29,126,30,182,53,229,104,154,195,226,92,239,23,131,195,46,79,146,181,15,203,88,209,126,235,17,57,136,73,233,164,41,142,184,191,100,38,3,86,35,88,24,20,59,223,207,16,20,76,5,238,87,157,131,114,197,184,17,95,110,4,151,106,216,99,227,165,185,99,182,144,81,104,195,77,18
 4,26,245,217,122,34,28,120,94,121,255,36,42,22,6,143,44,169,210,8,35,18,195,164,54,2,216,171,61,171,28,211,0,204,250,69,80,142,223,222,172,53,209,156,230,201,213,138,152,173,228,230,89,39,199,162,206,190,32,154,2,79,79,180,251,30,166,245,69,245,212,168,157,72,34,239,136,5,155,180,69,109,138,35,151,178,21,147,178,151,88,212,193,202,92,158,17,96,113,147,39,215,27,49,151,65,124,239,220,195,44,104,242,143,4,82,142,221,172,191,107,11,199,245,155,0,181,90,19,223,144,52,26,129,123,183,249,122,130,156,132,38,1,247,54,92,245,84,238,128,89,184,195,253,87,0,63,206,101,168,17,108,187,67,167,220,125,10,83,72,93,131,29,191,71,127,28,134,61,53,65,190,86,222,177,122,121,210,251,77,170,1,7,17,231,14,174,205,40,191,46,179,243,168,39,249,82,120,59,117,190,244,113,69,129,153,182,84,58,116,184,163,157,79,156,153,214,98,150,91,219,36,116,167,57,58,231,244,39,238,155,49,161,168,191,59,173,81,208,133,114,96,35,214,138,182,246,246,30,156,221,159,110,22,234,213,154,6,14,13,2,37,49,202,41,241,162,103,
 159,254,141,45,26,87,134,41,195,189,245,101,144,161,15,20,30,250,93,251,226,84,229,93,51,135,145,163,229,102,179,24,49,91,152,25,217,36,127,200,103,59,134,140,218,76,253,190,191,70,109,179,144,1,208,48,152,151,227,167,86,69,230,226,196,206,64,121,189,89,210,97,160,99,16,108,100,80,61,193,90,93,127,85,151,3,29,19,232,37,58,169,23,187,78,207,10,119,81,155,196,49,78,66,29,63,189,138,50,39,9,75,186,16,160,219,164,14,255,204,47,230,0,6,131,206,48,114,186,76,105,249,199,137,68,241,36,178,38,123,50,33,122,164,17,110,80,231,117,234,223,240,44,98,67,210,40,168,249,19,242,105,127,55,146,30,228,232,84,114,143,32,213,23,105,60,116,119,30,153,228,42,242,184,10,2,75,73,124,76,235,153,96,67,72,19,179,129,241,15,5,32,223,12,140,117,142,169,139,250,235,106,204,73,155,96,232,103,28,218,236,239,203,162,90,32,176,132,148,28,199,138,3,201,33,91,222,74,247,239,198,135,19,1,78,117,79,198,118,49,42,33,27,124,23,141,234,79,82,50,248,62,130,208,47,242,76,15,131,148,94,223,210,115,237,101,162,229,241,
 46,242,255,232,133,103,117,172,169,2,165,75,69,178,159,82,155,63,165,109,83,171,130,178,151,6,157,155,28,57,128,165,227,98,130,248,200,197,9,191,217,88,159,94,22,157,96,26,209,149,79,191,6,29,173,209,139,66,192,3,21,246,118,237,187,16,223,187,145,21,134,102,188,8,153,215,31,247,233,125,62,112,223,62,227,33,244,104,21,226,108,138,210,82,23,77,23,157,140,226,153,40,146,61,141,65,241,155,201,22,99,105,31,39,252,226,172,156,61,228,199,64,198,234,66,211,250,106,130,251,227,18,46,192,34,52,133,157,207,89,222,129,62,126,113,105,25,252,255,30,25,121,124,189,12,189,68,64,255,14,235,240,108,208,219,64,23,60,210,242,91,69,180,228,109,91,99,59,130,24,234,120,122,229,89,197,193,164,22,4,82,62,106,139,237,139,215,2,215,179,255,97,147,235,117,4,39,156,96,244,218,114,238,206,6,206,120,216,142,71,184,84,139,49,254,228,27,242,136,104,20,84,139,254,64,3,202,138,113,210,218,230,194,76,83,142,184,119,73,213,110,75,86,95,14,136,150,105,251,8,204,213,71,213,47,11,59,125,191,224,180,131,107,103,52,
 143,209,89,227,72,29,23,165,81,134,101,201,133,64,201,112,178,99,97,65,223,193,127,174,124,201,198,63,243,175,216,149,8,202,98,144,250,45,111,71,154,1,192,31,84,234,22,58,10,97,52,140,11,220,127,235,93,200,21,190,154,194,167,162,91,161,84,186,76,136,229,212,143,30,224,121,225,141,91,139,165,68,144,215,56,74,111,211,164,217,57,70,73,148,223,40,3,222,50,36,210,235,116,162,47,98,164,143,192,250,223,48,246,209,202,188,221,23,232,241,98,121,247,42,124,4,69,103,96,70,115,77,126,160,196,8,0,177,24,122,59,141,125,114,228,171,233,30,112,66,87,11,19,206,32,11,119,165,118,249,222,154,239,252,140,145,56,107,123,107,142,249,19,243,201,139,227,66,184,127,48,184,222,132,181,232,94,210,145,9,118,52,93,93,189,21,85,30,21,76,204,3,235,143,145,163,243,154,97,217,30,77,160,120,108,144,84,81,111,140,212,192,25,171,213,166,49,72,117,242,211,66,216,7,31,229,243,179,214,175,136,237,191,238,245,235,44,127,248,49,239,200,226,82,170,207,233,40,226,46,35,96,98,77,80,30,232,141,237,119,15,200,124,171,21
 9,190,184,166,229,52,50,64,158,216,175,60,29,240,237,94,60,204,20,66,227,136,17,0,222,239,82,123,238,215,131,30,160,204,87,93,40,38,118,43,122,6,206,19,116,70,47,231,205,32,25,1,21,146,205,15,47,79,180,91,27,120,227,212,203,215,241,229,187,172,218,111,147,140,118,140,37,7,235,129,219,115,110,190,112,5,109,44,156,212,61,203,215,172,167,244,56,221,229,102,245,9,71,227,205,134,104,229,165,182,130,3,67,5,125,2,210,81,253,168,240,253,12,138,3,119,210,46,241,197,91,246,82,104,225,85,7,218,219,23,6,186,248,68,110,27,163,245,83,249,161,114,110,35,198,94,117,248,57,52,172,40,26,113,254,171,185,125,163,48,161,121,253,74,155,114,147,255,25,134,96,169,179,102,126,42,10,171,154,131,199,145,176,210,144,123,36,30,192,247,83,131,11,3,35,19,206,231,77,15,244,91,188,158,215,155,148,148,48,160,93,149,228,95,228,29,46,224,157,46,28,156,120,62,176,184,230,20,52,252,197,166,113,210,222,166,241,109,54,22,28,9,217,40,189,39,81,194,115,148,181,168,27,130,176,41,66,226,149,53,76,129,99,200,50,25,8,75
 ,93,106,249,193,142,244,77,188,219,241,23,93,231,114,233,50,4,213,160,244,21,227,100,154,114,97,96,133,96,22,137,183,50,17,119,244,9,70,204,246,78,37,73,165,202,167,233,219,158,96,186,93,0,86,255,168,236,16,59,107,136,75,160,112,252,146,246,39,210,255,149,48,1,95,230,61,179,237,140,89,102,46,217,188,115,193,58,76,247,111,185,101,99,62,11,138,226,4,150,133,252,70,47,195,170,105,213,156,115,54,10,105,145,108,85,169,0,92,196,185,196,119,215,104,97,53,136,26,164,238,218,60,225,196,108,98,222,141,60,67,131,254,221,242,22,19,198,61,108,47,62,117,123,210,162,95,172,166,159,244,95,13,35,41,100,179,90,32,248,89,215,17,226,175,41,115,134,164,4,210,16,73,75,135,229,71,213,238,53,117,1,220,205,155,216,250,21,105,192,8,32,171,115,18,34,116,0,136,147,161,24,130,42,151,196,162,49,5,38,238,229,17,132,185,246,112,54,86,10,224,127,118,89,109,226,162,209,172,159,40,65,253,102,100,235,120,209,6,74,144,88,214,81,67,20,144,245,237,79,207,147,242,208,171,250,12,238,24,147,0,251,175,245,204,219,137
 ,126,249,107,146,119,97,146,255,1,144,150,115,11,11,186,210,217,97,43,15,155,156,79,75,88,87,119,152,12,120,39,166,197,148,69,242,229,248,150,147,166,14,234,36,161,24,157,174,195,185,174,125,85,38,81,51,126,99,45,120,211,232,117,49,115,172,206,179,81,212,57,0,156,151,40,223,68,171,138,73,236,83,6,1,33,168,172,71,192,200,121,249,179,178,240,160,62,192,153,166,64,125,44,251,58,37,52,58,215,119,145,202,223,96,149,6,73,82,212,81,116,80,193,30,168,17,73,249,103,157,33,239,217,10,2,118,75,75,85,103,189,98,112,200,79,87,181,93,14,24,103,39,199,253,157,143,0,249,137,174,19,170,41,250,84,133,236,117,25,47,92,124,124,238,76,26,233,221,57,39,139,131,219,208,212,14,217,155,169,240,202,160,84,193,11,246,67,65,243,5,177,156,21,247,253,160,38,216,227,75,14,79,62,169,61,136,96,160,42,198,236,63,31,16,115,88,127,218,131,199,212,29,75,68,108,200,13,31,30,164,74,69,150,43,242,71,55,228,11,54,202,232,30,161,41,173,22,127,233,30,22,179,190,241,226,48,183,50,6,200,63,131,204,143,100,78,50,82,153,
 214,60,52,158,47,219,12,136,3,193,248,239,119,63,110,20,39,3,138,64,146,163,173,95,63,161,43,7,153,199,175,2,144,69,211,23,202,176,105,138,44,92,25,83,204,226,254,136,148,248,150,205,141,27,170,59,175,155,72,3,147,146,5,85,0,226,49,157,233,3,9,5,188,152,188,3,45,47,118,6,175,47,88,71,183,199,150,155,174,1,126,217,210,158,230,102,201,255,93,26,144,34,198,149,41,200,20,107,249,211,9,160,31,62,80,186,88,84,87,186,12,199,177,8,46,76,94,158,238,112,199,112,126,157,180,145,229,207,255,86,185,108,12,139,27,215,233,201,230,164,184,133,127,119,49,102,223,85,3,36,106,248,125,43,47,12,129,27,72,7,126,144,207,83,170,212,62,182,158,172,204,138,226,159,92,94,182,142,81,189,179,158,201,36,241,164,146,203,168,237,42,73,35,68,241,129,48,86,152,1,228,60,251,99,186,30,91,112,63,199,241,79,62,40,132,207,145,69,179,213,89,34,52,214,36,18,205,71,193,205,54,208,107,51,0,30,179,26,234,236,111,62,75,165,218,105,69,95,22,73,143,194,130,74,153,106,146,2,12,158,16,73,191,205,241,70,198,36,62,36,240,12,
 41,1,108,133,119,54,97,213,181,166,84,56,56,229,73,249,96,159,39,255,148,21,107,71,115,94,57,10,154,56,96,247,95,173,128,70,124,249,9,171,2,211,49,113,42,66,54,233,203,244,79,114,43,232,43,99,141,77,150,255,116,219,158,66,54,128,237,254,15,3,211,47,86,201,126,218,130,117,246,61,247,58,254,109,112,29,140,116,197,149,149,250,98,107,201,246,24,224,109,104,108,120,51,183,22,26,169,44,255,142,21,226,84,59,107,220,198,176,101,70,123,162,33,176,96,10,167,108,138,0,254,21,251,251,139,186,59,153,208,100,126,142,25,72,214,103,36,33,66,91,73,188,242,63,224,241,66,5,2,19,232,236,18,62,75,55,2,157,181,102,6,172,81,123,133,81,206,118,25,37,83,124,101,190,94,242,44,254,202,30,106,61,247,155,123,246,18,149,79,42,215,100,155,214,188,122,132,191,246,54,154,2,243,80,28,46,198,141,30,41,62,11,66,60,168,19,136,7,188,11,163,136,72,159,9,14,52,214,63,218,97,145,95,136,17,88,57,38,66,88,183,204,125,162,231,220,23,197,237,246,233,51,198,153,78,186,6,253,55,91,58,66,152,217,124,229,79,234,2,146,245,1
 1,148,106,226,52,15,10,238,225,222,6,121,132,170,99,228,125,234,42,31,199,122,5,188,108,124,163,254,136,104,104,252,83,122,113,246,92,182,19,225,4,89,203,58,54,122,168,151,127,94,172,109,2,142,119,96,250,92,134,44,201,164,233,9,83,196,96,63,54,59,67,80,118,104,123,247,249,76,151,214,148,76,13,252,237,15,185,0,86,238,149,131,115,75,109,141,187,74,123,247,184,201,52,87,136,19,23,210,107,206,7,115,144,3,121,69,135,8,54,35,75,174,182,60,127,62,212,162,168,40,92,69,103,242,52,169,18,211,73,76,14,22,19,60,188,240,110,105,188,57,178,120,13,154,254,88,120,207,69,224,190,74,150,127,72,161,208,41,31,136,100,209,56,164,181,8,103,132,134,11,93,246,62,169,251,243,65,47,3,207,53,100,104,21,183,248,58,42,70,240,236,158,165,33,30,47,155,8,237,40,233,158,113,40,187,138,158,136,195,69,85,163,142,172,83,177,73,163,132,229,8,207,138,100,138,74,142,166,36,80,241,128,228,58,233,108,152,9,169,183,68,186,58,66,2,159,118,27,216,206,222,213,135,252,44,79,75,142,247,4,104,55,170,239,104,27,79,173,107,
 29,48,238,247,126,50,158,217,56,111,56,29,156,97,230,143,148,45,240,31,44,45,96,183,156,249,141,1,41,235,135,194,181,73,236,151,102,110,18,99,18,79,169,220,225,80,234,45,127,252,134,39,233,123,254,51,217,75,186,123,147,196,52,67,72,150,243,87,244,242,178,50,202,143,75,244,35,75,104,213,46,210,82,251,179,136,85,219,152,240,156,197,82,81,59,209,79,12,188,218,196,103,55,6,180,253,14,110,244,175,210,182,216,203,72,24,223,22,155,226,217,252,119,30,141,216,177,48,253,247,176,106,67,18,3,187,243,47,190,218,106,31,112,16,93,185,92,48,244,216,128,166,50,120,251,210,71,134,80,181,99,125,117,143,220,94,21,112,131,128,50,5,239,153,184,137,231,185,30,13,97,151,19,67,58,178,23,214,166,68,43,246,81,83,139,235,4,240,106,169,66,39,205,9,85,194,219,252,45,113,67,200,14,203,216,123,135,107,108,57,133,229,237,185,154,136,58,16,192,195,174,42,162,9,166,88,200,108,47,65,108,23,30,56,201,175,192,18,179,227,203,45,206,54,254,36,46,189,164,148,197,108,201,124,32,154,112,188,155,4,56,66,251,80,51,11,
 82,12,204,83,87,34,111,170,107,235,20,127,221,33,44,210,122,221,68,34,195,174,67,129,225,85,155,79,168,152,206,81,187,217,165,21,97,9,13,221,236,88,163,122,183,80,160,230,250,116,75,41,2,107,72,123,126,127,19,71,168,173,72,223,14,217,18,220,39,151,190,176,45,237,121,187,88,163,141,191,236,153,188,226,147,215,252,117,213,214,33,16,176,96,196,193,52,152,185,41,173,205,119,114,59,82,214,100,178,184,104,52,254,130,17,183,84,104,201,185,249,252,39,185,57,179,72,83,241,204,60,252,172,162,81,207,117,230,221,116,2,111,100,138,107,11,90,82,48,202,237,181,176,75,67,132,102,26,149,101,28,7,189,77,162,227,114,1,69,88,179,51,4,53,95,14,63,182,49,33,70,4,150,69,109,239,71,153,184,62,190,232,133,17,142,211,12,147,162,204,94,95,78,187,130,198,82,120,85,93,109,147,16,137,255,133,207,15,100,172,143,20,193,4,34,185,240,54,120,24,94,87,149,103,166,50,55,38,185,194,199,144,130,7,230,84,62,187,134,163,136,59,21,105,24,110,150,68,46,74,79,88,72,212,159,191,2,119,6,4,238,75,34,233,167,192,2,138,19,
 49,68,7,109,130,228,66,226,52,252,249,103,102,38,156,93,152,228,10,114,142,213,140,69,132,134,14,9,135,112,187,245,120,239,227,145,134,110,95,31,212,1,168,7,227,170,177,171,22,102,170,191,80,160,82,205,188,97,173,208,142,197,65,121,241,205,96,67,55,115,46,163,196,6,8,154,4,217,87,218,233,93,123,196,145,147,196,132,73,102,34,115,130,79,200,22,89,209,96,114,191,52,213,223,33,186,17,46,149,123,192,45,99,23,183,22,139,97,170,243,28,196,93,202,119,241,59,147,245,183,225,140,97,118,87,196,198,161,156,231,75,143,37,89,112,159,16,137,80,199,122,144,118,220,175,5,12,112,165,95,220,132,163,255,187,172,246,100,51,42,156,138,254,112,2,33,44,215,80,160,229,94,39,47,38,217,162,131,207,160,91,204,29,238,126,156,147,240,43,204,50,127,247,123,183,114,246,191,225,142,31,169,32,10,159,165,172,191,41,69,168,134,10,7,226,138,104,236,229,174,217,245,221,52,181,169,138,49,32,83,232,180,54,135,217,67,170,104,26,44,165,52,139,104,217,155,64,145,66,227,252,163,88,249,214,129,130,248,192,37,95,27,135,
 15,206,176,155,92,27,28,152,148,95,179,115,39,209,54,2,188,188,35,8,180,179,94,184,56,34,60,150,194,131,64,236,31,147,64,179,198,183,117,127,51,13,186,9,250,129,182,10,19,137,39,72,24,62,187,50,70,252,221,176,234,42,171,127,14,33,61,101,250,251,140,36,157,97,185,125,52,219,27,64,82,166,125,36,182,113,199,106,113,244,11,43,90,254,198,156,193,190,106,33,17,183,127,228,204,242,254,127,58,243,210,144,173,97,143,238,36,219,77,172,226,53,139,123,34,78,17,176,175,140,64,165,113,42,177,254,46,118,250,150,146,225,190,63,133,5,30,160,97,17,24,9,60,43,28,56,77,84,69,245,86,238,248,119,43,161,147,100,52,173,50,38,33,93,35,186,251,37,171,132,141,239,193,54,140,167,183,135,161,230,188,230,170,133,249,29,22,202,29,90,217,213,177,60,54,153,184,223,16,36,52,250,133,193,223,137,15,228,108,165,15,231,251,189,117,102,26,127,179,19,83,249,99,90,92,185,166,76,157,187,202,213,213,244,78,226,213,198,196,219,138,224,147,191,111,60,19,136,27,218,121,33,27,101,172,114,163,171,229,218,5,114,9,37,145,14
 4,202,99,1,25,83,98,3,227,90,76,66,4,168,122,178,150,1,179,107,123,180,117,70,40,218,0,228,28,99,20,43,246,211,200,166,76,218,70,128,17,144,222,112,75,212,1,174,9,178,198,40,150,201,50,103,135,231,158,75,174,237,29,89,173,118,74,187,190,217,40,61,83,206,188,156,88,132,235,6,163,82,169,139,94,77,64,238,39,128,54,100,138,194,117,12,212,26,137,66,124,7,77,161,16,138,25,81,119,217,63,207,253,13,253,38,128,189,24,106,135,189,222,198,175,77,1,37,90,64,75,9,33,203,3,39,159,129,107,171,156,78,84,211,225,6,134,183,192,217,165,81,214,223,87,132,228,114,126,159,166,49,42,147,130,128,163,233,113,198,73,78,7,110,2,193,54,182,105,250,73,240,168,3,241,104,149,27,178,226,73,143,192,218,191,86,202,138,149,218,113,7,169,169,200,45,239,21,69,205,61,112,232,189,129,4,102,215,100,20,100,62,106,222,137,12,39,19,210,107,77,26,237,151,151,42,17,141,101,93,81,219,252,212,163,201,125,69,231,177,104,237,208,163,173,94,22,48,165,71,123,128,115,255,168,99,5,215,97,214,231,217,63,88,128,207,145,37,110,13
 9,184,244,150,100,107,211,142,114,121,181,248,117,8,193,148,25,31,3,245,181,250,27,179,23,70,107,48,130,255,34,62,231,212,77,229,83,58,52,47,58,155,136,207,179,182,14,79,104,23,117,77,182,242,200,24,57,44,94,115,150,49,237,25,120,148,126,169,114,201,153,156,155,104,123,20,18,226,111,31,127,194,255,92,91,9,190,185,166,13,221,142,102,84,193,62,161,12,0,220,145,86,138,3,97,4,98,27,169,230,85,132,89,7,15,183,73,222,108,138,88,141,59,144,91,217,189,10,49,215,197,44,101,193,96,82,92,33,187,97,52,198,90,66,128,137,71,68,121,149,96,252,75,238,159,65,203,1,206,130,137,96,244,160,190,214,177,56,229,128,113,58,189,5,155,41,243,211,153,153,71,125,98,187,112,31,211,73,6,200,150,54,218,227,234,192,94,172,89,222,200,186,217,255,89,234,19,89,70,191,207,19,28,182,28,239,253,143,61,175,81,71,135,96,38,103,186,77,87,20,105,239,36,20,121,215,130,235,0,105,231,34,130,89,78,51,50,45,185,123,198,181,243,73,148,31,254,125,193,42,242,115,169,190,130,30,43,166,244,224,195,26,233,166,25,52,220,112,242
 ,39,111,172,161,250,230,78,22,175,95,111,221,14,166,15,14,183,199,118,255,89,137,214,99,238,155,174,222,87,137,91,134,104,176,230,128,37,40,209,225,21,47,224,3,37,157,36,206,115,95,48,20,223,250,112,219,162,30,165,233,95,196,71,15,190,188,194,5,60,248,62,216,121,103,0,151,165,87,120,243,112,20,148,189,145,29,102,173,208,10,80,136,218,83,201,121,229,29,55,47,233,32,56,86,176,239,190,194,76,149,65,169,22,7,33,149,37,32,16,94,89,231,151,29,254,174,239,172,168,169,5,242,39,180,47,208,47,196,24,67,191,203,199,219,229,169,200,84,171,72,218,23,1,19,84,82,126,200,83,21,91,180,140,220,132,93,65,1,210,248,223,169,88,211,191,210,41,153,191,166,117,181,29,111,107,1,34,227,149,184,80,226,81,212,159,13,216,51,253,1,118,59,211,84,27,40,120,17,34,183,118,160,238,242,98,180,159,158,151,81,213,180,254,10,176,39,215,251,231,193,75,72,251,75,207,0,165,148,12,162,208,245,60,187,0,95,158,80,103,124,213,253,50,242,53,252,85,156,119,201,125,9,143,111,42,4,235,254,224,29,71,229,48,10,67,14,22,95,66,
 173,168,139,35,213,231,87,19,130,29,50,177,8,61,181,166,159,177,12,127,24,9,248,27,229,240,24,171,46,39,134,131,131,10,152,107,42,69,220,13,53,231,243,167,232,92,188,230,164,25,87,131,88,207,181,10,121,158,211,237,249,158,3,84,245,13,6,79,6,248,203,236,142,203,56,198,152,47,155,67,200,34,55,171,193,110,4,250,176,194,42,84,15,99,245,141,64,25,231,166,161,140,218,172,9,245,211,177,150,99,200,14,41,147,36,86,146,19,22,177,64,83,39,208,188,198,28,32,181,171,145,58,6,221,214,111,18,195,47,50,60,250,198,130,128,6,204,229,207,180,123,153,252,14,60,88,76,193,36,236,59,0,30,66,122,119,63,15,4,47,138,109,17,159,151,99,231,175,197,57,174,55,3,115,80,118,82,157,18,13,171,154,76,217,249,9,42,16,101,43,108,128,205,175,138,144,78,121,73,159,228,1,157,91,130,149,218,74,20,116,84,56,247,177,223,188,113,83,125,141,137,242,85,162,122,206,127,99,74,3,34,108,66,132,134,208,33,163,128,193,162,83,172,204,24,166,132,71,4,155,17,172,7,106,76,125,113,217,165,79,119,209,199,65,107,129,73,197,60,131,10
 4,77,107,134,230,37,213,98,152,176,34,203,30,146,25,208,165,3,220,251,184,241,17,129,184,196,107,66,207,125,52,177,254,237,20,240,49,148,247,69,235,119,243,186,6,150,91,146,121,60,28,195,159,31,209,40,102,2,175,237,53,68,52,1,54,88,168,73,209,148,65,251,221,60,67,59,231,148,71,177,188,136,43,61,58,185,162,118,89,60,23,39,220,181,26,164,153,28,47,189,89,16,98,169,93,148,32,183,250,121,202,246,96,27,132,145,116,187,161,119,96,65,15,22,108,28,6,101,51,140,75,184,97,60,157,69,18,145,205,4,131,167,64,142,247,185,46,4,31,244,162,28,3,82,120,139,102,88,52,2,149,252,80,102,102,241,106,32,67,84,136,188,214,240,241,131,29,147,235,236,30,211,55,224,91,191,4,157,66,252,18,250,123,104,187,47,78,226,178,9,229,76,77,76,64,2,82,7,248,163,89,208,69,47,174,62,32,230,150,217,141,63,255,29,1,125,88,55,29,99,125,236,58,216,11,140,114,241,110,239,216,39,121,115,223,247,205,109,116,207,171,93,19,82,217,41,115,176,120,232,15,111,62,187,175,62,214,215,189,147,48,7,201,147,173,126,225,74,22,184,7,147
 ,188,91,158,30,205,204,87,87,179,97,49,100,92,103,182,254,235,43,208,216,228,185,163,141,234,43,133,140,111,27,87,21,190,76,90,79,151,86,56,83,48,124,58,80,167,115,159,198,175,22,78,110,251,40,119,197,105,38,223,162,140,217,95,168,241,173,218,65,157,43,11,41,199,233,206,6,3,5,207,149,60,118,62,238,87,216,13,43,47,53,215,29,32,84,199,59,163,190,70,242,211,155,139,61,189,52,35,32,158,194,178,138,90,189,67,16,220,65,39,105,0,48,37,102,159,225,246,28,136,203,130,39,87,160,67,33,31,137,196,189,168,33,158,239,157,197,186,204,125,62,30,67,232,245,42,107,36,227,44,63,173,37,100,64,179,202,90,193,192,153,95,218,192,82,153,70,31,178,226,209,175,182,70,244,9,79,127,190,201,165,104,76,202,249,82,17,207,67,64,228,254,158,195,180,55,148,134,141,30,210,108,166,163,161,123,38,254,110,84,139,138,108,176,43,208,223,81,224,195,71,233,97,91,59,147,187,165,102,196,140,82,170,244,248,233,240,10,109,120,142,145,82,63,68,87,20,73,252,74,255,61,29,181,249,153,203,171,45,131,6,229,127,211,5,220,218,8
 3,137,59,22,12,136,116,179,109,39,67,166,233,219,254,101,110,21,135,145,24,31,26,11,181,171,205,98,124,95,189,146,77,207,208,213,200,46,4,210,55,135,89,44,182,141,91,91,255,96,103,137,33,183,44,241,0,96,159,156,25,40,106,78,166,96,178,140,233,178,4,79,184,49,110,89,166,118,28,35,161,89,177,216,236,204,95,89,132,72,243,136,126,240,157,14,107,88,175,217,49,128,236,14,116,201,61,136,235,4,29,149,230,19,240,194,238,149,201,81,167,190,141,19,14,138,237,144,240,209,239,100,192,186,0,153,135,58,27,67,73,8,202,97,126,62,228,185,128,248,3,68,230,10,89,39,175,209,145,185,28,136,209,124,81,167,32,166,18,196,186,250,64,149,9,78,109,227,128,140,28,65,226,40,187,194,124,136,235,155,133,154,58,182,190,130,151,111,99,67,71,237,232,52,63,9,135,220,164,46,211,217,172,9,26,20,217,20,174,26,140,196,112,96,58,5,245,192,189,133,195,82,122,152,207,174,160,4,112,69,253,49,57,231,175,106,244,48,85,25,237,118,163,83,162,172,222,92,14,223,186,78,221,203,33,91,207,17,226,138,87,9,79,78,159,191,46,55,19
 3,243,176,226,29,143,24,76,217,19,234,76,183,170,90,182,4,75,77,20,139,28,169,192,153,88,223,64,152,100,45,170,154,157,20,209,11,5,110,27,15,209,8,121,89,102,106,81,198,97,231,192,65,201,250,147,49,161,77,224,207,93,164,111,140,40,14,55,187,128,70,233,223,230,178,175,206,1,207,221,18,181,25,233,17,137,13,95,150,5,203,82,111,190,106,136,110,8,226,67,98,18,44,151,78,176,168,99,161,207,15,195,119,85,237,70,178,84,179,108,106,60,19,175,111,25,78,180,165,233,63,235,118,204,209,230,26,168,160,163,95,209,163,93,73,252,242,216,134,70,92,238,200,16,173,105,207,215,208,85,18,177,49,223,107,76,223,74,37,49,11,124,202,243,159,30,249,185,124,15,202,32,137,14,17,35,65,229,232,92,159,165,118,34,191,15,255,233,234,41,195,4,237,21,0,255,47,8,206,44,53,175,54,255,77,60,126,168,50,248,30,202,201,204,129,41,36,198,130,254,189,220,62,48,47,253,33,70,211,195,66,90,197,8,85,220,65,132,125,65,175,231,146,221,20,226,165,130,20,243,194,11,249,124,226,252,184,32,65,195,112,201,176,100,26,69,75,118,161
 ,223,137,181,152,10,143,97,66,7,134,93,203,160,136,121,179,124,179,90,123,228,116,188,92,157,148,28,248,171,68,75,69,11,15,241,109,21,154,85,91,34,15,43,241,74,177,114,14,224,228,253,97,42,89,134,134,103,36,170,61,197,48,163,107,184,166,171,36,57,244,222,49,133,67,182,114,142,236,181,26,166,60,209,129,117,139,78,29,64,153,126,56,70,61,45,37,114,206,86,113,216,80,214,79,196,6,180,227,95,60,81,106,196,225,82,166,11,221,57,59,171,218,16,117,123,150,216,144,64,190,220,35,190,69,221,21,56,153,240,141,228,232,204,136,241,13,1,234,119,50,139,229,221,58,174,44,59,90,122,90,63,17,211,159,99,221,3,126,145,165,107,138,134,168,210,1,198,182,145,166,181,244,69,157,128,166,230,201,176,93,44,17,221,178,39,112,52,162,194,103,155,95,88,81,33,220,128,158,183,248,145,52,228,103,139,113,73,72,46,179,86,239,157,235,186,76,43,86,75,10,164,50,20,65,91,198,247,131,134,132,101,117,141,26,227,239,239,139,179,63,61,54,168,44,188,151,114,219,56,72,138,160,238,57,111,242,2,229,71,158,161,185,70,22,3,192
 ,27,185,144,10,195,163,164,34,116,183,16,66,15,10,63,13,245,54,8,101,56,125,131,164,58,255,115,17,76,173,16,143,17,192,196,149,89,232,167,200,116,203,3,112,196,199,205,223,65,15,129,73,98,106,74,220,30,176,76,216,231,192,223,43,104,238,234,91,55,208,61,208,146,112,145,179,60,93,230,251,238,39,60,134,217,42,162,63,14,107,22,71,111,197,25,251,51,143,59,232,13,223,23,240,140,219,191,135,59,128,241,187,104,78,150,134,92,233,110,163,238,202,104,23,3,88,94,242,118,52,222,42,246,167,108,68,78,194,108,56,232,42,228,98,216,152,161,86,227,134,164,119,176,55,154,195,202,118,127,54,173,23,166,93,42,10,78,233,152,122,14,16,79,234,183,48,124,123,211,216,221,4,118,0,133,60,68,72,127,218,238,14,237,191,141,251,202,21,230,114,89,71,250,227,135,249,53,223,239,31,155,115,169,136,74,226,101,77,42,77,157,234,77,3,25,135,55,83,11,199,91,151,255,165,255,25,171,131,119,17,138,29,215,197,20,190,6,144,236,143,25,38,60,11,80,179,53,130,18,104,188,94,54,127,90,245,222,201,4,74,172,51,125,207,41,79,84,2
 49,215,123,29,209,95,184,242,82,109,189,248,220,165,62,221,217,80,48,18,209,112,171,58,100,101,166,86,31,218,195,176,156,135,41,155,74,212,160,222,84,174,107,126,214,119,53,68,167,66,240,3,183,171,87,2,157,216,242,93,214,215,251,114,115,253,90,180,44,68,156,54,143,19,22,158,225,75,39,222,131,172,154,47,89,233,234,121,59,226,75,32,4,30,184,192,77,145,146,47,0,160,172,110,133,171,133,92,243,250,192,163,216,173,77,94,175,224,117,35,197,45,194,203,244,50,34,117,224,219,201,68,41,25,191,178,228,241,15,42,24,33,110,125,5,254,112,16,229,203,205,207,85,105,222,4,100,160,188,209,129,63,223,63,74,47,254,98,154,102,57,177,234,130,7,219,159,32,147,250,71,183,244,66,27,91,231,233,169,242,65,71,246,51,207,205,153,76,180,213,207,28,233,146,6,47,80,239,114,85,219,161,114,68,224,230,123,223,159,62,158,249,202,249,41,111,102,10,87,64,254,113,235,128,33,19,184,225,138,86,196,165,64,18,22,34,215,163,61,174,197,51,61,161,90,136,121,205,23,22,148,240,145,105,37,165,101,175,137,21,101,133,208,211,
 176,16,201,166,19,119,40,210,252,106,215,118,133,187,55,177,137,6,40,185,61,10,174,22,126,20,173,253,224,68,55,182,217,90,53,40,105,28,102,167,241,180,136,19,252,198,67,103,26,116,70,4,36,10,213,195,128,205,47,200,0,191,198,79,180,114,198,182,71,69,11,211,59,115,102,48,117,15,206,131,214,64,187,35,7,153,130,2,224,144,87,196,56,11,18,115,254,54,192,140,51,69,253,105,62,207,26,110,40,108,134,132,182,25,145,78,41,165,35,94,98,135,241,185,175,27,137,134,169,54,193,160,91,106,4,190,112,63,137,31,138,240,155,212,156,32,156,146,70,57,35,21,150,246,241,131,206,144,59,107,172,221,111,62,158,191,156,204,246,174,203,206,214,141,71,239,106,81,72,87,196,16,172,2,198,55,104,157,187,94,13,67,25,0,225,64,252,15,8,181,142,167,7,43,195,30,76,207,39,180,209,191,175,248,129,248,140,159,22,239,13,69,35,144,56,128,121,28,175,12,42,233,145,250,75,124,187,38,86,239,87,182,204,29,248,94,243,138,113,106,189,18,249,102,145,148,218,251,167,1,204,112,50,160,65,64,147,107,206,145,240,106,68,113,228,186,2
 9,243,85,62,45,174,129,31,164,235,64,190,14,178,251,136,183,196,195,6,18,209,219,77,123,180,60,232,150,0,156,5,5,66,152,232,136,69,14,232,131,101,152,19,93,71,41,137,113,153,99,206,225,173,101,155,208,162,29,36,150,47,95,169,112,245,175,238,147,38,62,170,232,83,88,29,87,71,47,10,106,155,211,148,107,235,73,244,83,242,196,92,139,235,252,249,11,251,61,181,63,45,87,91,14,172,147,251,16,206,16,120,37,78,169,68,196,106,104,232,53,77,89,211,118,151,61,108,250,2,249,97,253,242,37,184,124,165,76,160,33,213,202,16,93,82,165,45,34,64,98,250,240,91,252,238,50,46,123,180,40,70,207,105,156,81,20,66,174,56,75,108,46,172,171,90,90,69,73,156,70,203,84,191,30,58,13,174,41,13,5,152,210,236,204,167,12,155,117,82,190,197,179,249,20,236,142,158,140,80,95,91,22,129,252,147,6,233,97,226,107,232,45,10,237,94,19,85,1,42,10,146,166,95,116,155,32,180,211,255,98,139,123,168,202,19,78,14,137,92,169,137,3,72,58,32,176,114,79,220,128,187,31,251,46,217,209,1,113,96,138,94,200,164,194,190,212,69,240,53,13,15
 3,120,2,239,41,15,241,88,22,73,243,134,153,33,42,253,55,164,144,127,13,66,71,154,35,231,166,162,21,49,130,215,213,185,218,112,168,54,53,179,189,118,101,155,159,190,175,178,116,50,49,106,208,162,164,12,165,250,129,121,25,156,176,133,82,211,208,84,34,187,229,200,153,76,141,32,190,160,198,246,54,105,250,69,198,4,41,203,201,165,5,166,106,228,105,2,64,86,33,25,130,54,143,118,236,32,127,197,68,1,115,172,185,159,186,158,99,32,35,79,29,62,31,88,76,93,15,138,93,149,129,158,24,46,1,202,10,39,157,34,101,100,102,175,51,215,85,241,174,50,1,66,227,203,48,160,233,148,39,35,113,171,68,102,245,147,227,147,235,20,119,130,130,41,108,23,145,92,164,26,81,250,207,205,62,200,113,206,187,223,209,231,92,207,54,254,47,47,2,48,179,158,44,86,191,235,241,103,71,161,16,166,19,145,52,47,50,188,232,55,52,48,236,149,62,96,2,3,204,128,64,117,26,81,5,88,244,247,34,252,42,43,232,89,26,192,205,55,75,221,41,86,23,101,163,142,195,212,73,145,107,76,245,255,6,170,215,55,207,89,55,200,12,137,209,165,85,48,241,64,114
 ,171,197,63,213,191,222,27,29,251,10,196,19,129,239,53,102,224,154,72,252,225,184,169,43,215,146,113,8,205,101,254,4,230,115,28,0,226,34,95,108,125,148,157,213,233,34,200,49,231,226,116,191,83,229,253,19,213,66,6,54,18,243,211,188,186,132,118,112,88,190,143,62,152,147,231,217,8,183,2,166,134,48,162,99,60,239,110,26,176,59,156,62,162,242,99,0,202,95,224,74,213,35,204,137,250,172,43,5,97,175,249,57,207,120,90,170,14,97,239,79,192,7,123,254,117,251,110,60,109,2,175,62,1,17,188,253,239,10,232,227,99,122,108,180,130,147,138,97,152,193,80,214,216,59,52,131,56,192,213,79,48,205,20,99,16,100,137,6,171,127,197,250,20,205,95,64,220,168,43,111,204,40,0,105,33,55,160,78,217,147,65,193,236,48,61,48,33,44,37,76,144,148,1,47,253,213,82,20,248,210,46,190,37,187,167,158,50,80,124,29,63,0,235,148,55,73,172,147,6,152,124,23,216,36,246,170,245,247,242,17,63,131,206,146,214,245,223,77,121,121,168,96,122,83,107,36,226,173,20,45,202,138,2,210,42,28,255,110,46,107,233,99,22,158,252,11,125,70,169,30
 ,178,19,108,123,53,66,46,83,7,224,115,171,163,181,19,72,150,234,67,57,221,82,13,167,222,123,240,93,158,254,106,252,176,139,184,219,82,74,34,40,200,251,95,31,35,130,170,110,4,109,70,141,32,87,189,77,124,137,144,200,80,154,182,251,22,170,146,15,112,36,68,187,155,169,46,64,185,167,22,251,189,158,234,107,183,67,25,175,71,66,167,234,174,6,21,61,31,89,192,53,5,243,27,224,166,101,198,105,136,178,164,105,131,132,250,235,31,30,78,58,73,187,4,199,91,155,84,210,71,31,218,208,30,79,100,239,56,14,157,98,1,228,126,102,64,242,180,143,156,78,118,130,50,104,68,182,24,154,17,234,44,96,203,234,94,197,129,63,45,65,94,89,120,145,166,131,167,167,221,125,162,137,220,248,195,249,248,225,45,131,86,211,51,87,197,68,17,203,115,249,49,103,133,182,192,113,169,80,244,195,139,101,55,146,6,254,72,154,125,203,225,71,17,150,239,119,212,255,100,151,49,170,204,164,255,172,107,132,182,176,34,216,48,53,208,233,86,76,221,83,234,110,11,178,34,60,123,144,77,190,181,58,100,169,204,46,254,56,34,221,131,115,225,190,43
 ,196,30,85,173,24,71,215,74,195,98,143,126,108,248,33,127,171,129,9,144,66,160,144,70,196,252,58,46,151,191,116,93,30,102,88,161,102,61,187,234,83,55,110,232,48,37,147,93,22,200,83,131,125,208,237,93,162,170,14,255,207,174,149,158,206,177,89,245,1,188,147,170,134,100,72,107,45,174,194,250,31,66,20,9,155,101,166,106,242,224,92,13,166,239,250,97,219,103,241,206,216,232,175,211,184,100,249,21,18,60,12,48,243,190,154,191,136,162,183,144,215,164,107,5,100,53,234,223,74,103,102,179,11,80,175,185,199,191,207,230,221,37,153,209,17,180,3,249,98,162,56,250,14,63,166,245,156,4,82,107,155,121,195,206,29,71,79,193,54,24,63,108,93,60,174,197,127,118,137,95,119,57,213,20,130,9,228,104,80,17,11,109,205,105,84,76,194,183,36,68,255,146,186,171,188,231,110,42,1,149,108,44,149,237,22,177,209,225,126,163,79,82,232,252,182,94,15,235,200,14,208,149,152,255,197,46,244,186,79,16,46,162,132,28,30,106,213,128,231,235,184,164,133,142,191,68,130,182,112,171,165,84,214,78,127,229,203,143,131,48,126,108,1
 73,51,91,87,235,128,49,57,216,148,45,72,82,255,196,126,250,142,161,230,28,132,164,65,171,48,69,8,254,120,80,92,214,146,182,202,17,46,47,19,221,178,39,153,49,116,133,176,76,151,77,139,117,248,239,244,46,202,224,105,151,1,32,220,86,177,50,2,114,123,253,118,9,51,183,195,97,154,30,24,6,47,18,136,195,229,10,115,81,208,76,162,189,69,26,34,201,231,151,25,194,2,216,221,244,198,84,96,148,112,100,235,221,109,226,140,165,235,167,223,68,104,15,59,98,231,114,233,54,202,44,250,12,66,174,45,66,139,150,251,211,96,41,183,13,164,167,217,22,223,60,112,210,193,60,254,238,4,243,73,210,162,35,175,124,252,135,53,40,87,78,54,52,100,143,49,97,201,170,83,220,108,192,19,145,102,167,210,17,173,77,93,254,78,216,11,14,163,187,61,165,64,45,171,145,91,44,52,8,83,136,9,88,127,162,106,188,181,53,22,77,98,64,22,143,232,151,104,1,247,20,107,203,28,198,105,174,23,42,46,69,21,227,173,4,31,140,175,228,25,196,108,227,106,17,184,246,95,109,132,207,190,33,173,208,10,109,117,94,2,26,247,33,22,113,132,61,238,16,253,40
 ,59,51,216,117,23,182,78,11,160,15,86,203,222,237,87,12,64,36,70,4,247,173,129,108,130,85,244,231,191,48,116,74,187,73,189,239,193,194,32,102,32,41,25,111,189,241,6,155,166,54,36,189,194,179,157,71,172,169,244,129,210,192,180,132,71,95,95,146,3,213,238,144,126,137,19,87,20,34,185,105,251,9,64,69,177,15,188,133,160,103,183,181,195,99,49,26,130,116,131,89,136,249,67,62,31,230,5,121,80,128,27,65,65,163,155,203,67,118,84,135,16,163,230,142,197,73,230,219,157,191,232,108,230,148,232,192,109,65,121,35,224,81,7,4,114,223,66,64,36,150,60,228,16,16,179,120,65,192,251,149,14,246,56,222,174,205,67,92,30,132,22,37,226,56,155,39,145,120,151,185,162,208,253,218,218,71,38,71,110,93,241,135,224,208,91,201,137,11,36,56,3,49,15,236,218,9,192,93,241,157,205,209,7,189,207,37,126,118,215,184,164,20,195,158,100,19,193,63,110,82,224,36,127,117,78,14,81,150,101,40,185,110,108,128,139,247,217,207,165,172,240,8,218,18,129,236,131,246,21,218,110,120,155,32,33,104,104,108,176,11,199,83,155,113,52,157,1
 67,40,89,211,116,231,92,5,161,56,137,80,217,21,87,59,109,224,199,225,106,43,92,171,145,51,233,66,176,60,231,100,11,116,134,33,134,187,18,23,95,160,32,178,233,120,18,211,72,197,66,97,65,103,120,168,240,141,140,47,47,164,72,234,163,231,92,12,51,118,78,94,65,192,188,132,99,56,25,187,231,36,164,140,184,221,162,101,72,102,118,13,203,48,27,63,151,247,55,136,211,99,118,168,233,245,117,39,133,68,126,14,105,193,68,44,30,0,26,132,45,180,31,54,209,73,128,179,165,37,187,184,198,244,132,124,251,41,232,160,164,231,196,239,132,151,24,164,151,213,79,155,18,65,191,176,54,23,206,172,69,253,1,101,106,233,151,145,68,44,168,141,36,118,104,172,102,35,61,31,214,176,173,134,104,51,28,222,5,46,113,35,55,66,215,71,75,220,29,240,153,124,237,221,180,178,115,43,29,214,125,200,63,205,31,26,51,204,169,66,43,245,158,243,92,199,108,245,226,218,62,85,88,41,129,32,199,59,17,46,48,20,149,204,148,240,164,191,103,32,110,216,72,124,208,219,195,49,232,91,208,38,125,125,23,106,166,245,137,110,40,237,17,217,38,84,12
 8,138,73,155,69,191,253,84,196,231,36,68,41,120,243,79,92,66,245,110,236,217,141,197,207,88,6,81,250,128,226,92,46,134,84,35,93,166,226,112,245,46,212,219,126,85,201,145,172,207,158,186,7,84,199,85,88,22,221,142,145,24,7,240,14,238,178,133,100,69,122,252,175,216,215,227,113,71,167,121,213,112,159,129,141,213,68,234,86,138,0,0,252,105,245,100,249,89,125,0,36,205,99,123,2,160,164,96,173,187,61,25,127,251,71,93,235,43,93,19,228,177,157,245,240,205,96,33,217,205,116,129,10,46,241,230,49,142,4,84,156,244,65,66,140,158,134,20,174,216,207,193,205,63,42,125,35,122,112,116,175,120,113,238,136,196,53,149,174,190,41,82,216,18,99,162,156,66,153,64,74,59,206,141,241,36,18,26,148,142,73,88,145,190,134,22,112,122,120,177,78,198,247,65,247,186,19,116,98,129,110,85,11,68,251,22,137,163,15,75,14,200,250,13,67,114,85,17,248,230,237,135,59,159,172,71,169,80,204,97,151,108,37,177,1,225,223,198,194,239,67,169,115,234,70,51,7,97,217,110,236,124,116,126,100,195,20,74,25,50,153,227,178,58,207,136,13
 2,211,177,223,243,140,161,164,69,20,45,123,59,205,41,2,13,22,255,141,191,255,187,44,160,21,199,94,0,155,146,59,159,52,230,244,204,122,159,5,32,29,182,29,112,45,90,31,108,113,5,227,123,114,142,13,253,141,218,246,215,42,71,35,71,193,205,62,213,98,199,229,196,254,103,130,194,31,112,10,88,75,103,122,66,142,158,67,1,175,167,5,18,253,250,31,60,133,70,101,71,34,242,161,29,43,26,109,15,50,121,102,165,72,219,6,54,161,240,85,208,133,178,137,187,163,243,68,25,138,134,250,56,93,155,145,227,47,128,93,138,77,82,129,25,143,117,5,221,21,120,108,25,83,190,161,13,202,7,194,87,131,43,178,202,104,171,111,242,131,71,103,166,15,106,66,23,58,54,193,219,4,153,157,102,201,176,94,116,215,100,33,21,229,96,34,103,36,155,237,14,232,77,27,36,160,23,157,181,203,93,185,252,234,100,228,233,29,72,24,160,71,122,148,247,124,69,227,210,249,93,251,87,252,194,246,195,154,210,146,253,166,13,70,166,165,175,19,158,246,178,19,145,175,198,101,213,217,76,190,227,176,29,125,212,136,103,9,54,149,134,50,209,219,86,85,194,
 0,146,131,228,48,205,188,221,218,18,171,211,0,48,170,195,130,250,24,98,23,230,113,124,80,2,248,147,198,231,111,181,255,0,29,147,76,92,139,99,111,153,106,183,230,213,201,119,166,81,165,10,194,170,24,149,252,212,227,145,66,237,171,43,5,188,217,239,78,135,147,251,95,163,239,69,175,68,208,14,162,201,243,139,181,36,56,53,176,142,199,120,249,93,76,133,92,210,138,234,155,156,191,8,50,137,205,237,123,73,156,42,212,223,147,27,118,79,250,133,154,54,32,162,148,206,107,74,171,244,190,62,97,190,125,230,38,242,182,83,171,137,0,209,221,140,63,39,81,206,127,173,122,139,183,44,225,12,250,242,12,232,145,120,196,214,11,78,33,108,247,163,81,5,249,209,251,106,236,191,43,14,226,117,175,204,119,74,197,166,101,236,154,184,194,107,5,130,39,243,118,15,202,130,28,107,178,31,46,37,144,14,72,165,152,150,165,86,232,239,128,145,19,255,5,178,213,237,104,154,235,83,84,236,50,85,13,71,151,43,29,46,235,125,147,235,5,202,166,214,94,125,220,36,173,224,8,121,82,37,167,228,136,153,244,55,242,165,179,222,144,191,2
 15,241,90,236,139,99,166,99,166,121,254,240,197,142,254,199,57,164,174,203,166,39,148,146,208,212,96,193,95,235,39,82,86,172,215,208,89,94,136,174,50,145,20,237,252,206,194,19,109,11,197,18,98,77,250,188,255,161,96,207,103,58,200,132,28,90,83,99,13,53,169,174,76,251,26,30,176,172,213,148,178,7,214,24,128,203,102,121,217,48,32,200,251,232,141,98,63,192,138,145,203,103,13,147,30,176,83,246,3,110,155,239,149,73,132,165,205,171,46,139,181,224,126,229,0,54,218,224,154,141,133,101,109,21,113,10,54,253,1,82,58,210,177,115,44,222,2,18,94,10,84,32,91,96,108,57,107,17,241,164,227,252,102,155,99,71,210,197,71,235,149,4,126,215,118,181,184,122,179,217,34,76,34,223,80,129,110,101,36,6,62,72,40,73,204,3,33,46,196,68,145,140,237,166,139,241,195,78,185,221,206,52,138,41,6,129,42,168,59,107,187,94,228,51,191,217,241,8,126,204,197,104,180,223,189,53,124,112,189,158,82,213,165,18,10,188,119,171,197,138,73,166,182,160,113,52,202,241,45,85,156,0,212,136,119,191,0,25,15,164,110,205,194,177,180,12
 8,222,102,125,215,91,130,41,242,237,82,13,164,217,162,140,174,144,201,251,164,89,141,186,197,11,71,8,125,209,224,70,16,235,153,5,136,20,178,155,42,26,47,63,175,163,156,123,42,197,129,19,254,238,164,253,253,1,61,44,175,235,175,219,74,160,161,166,233,79,43,152,247,200,72,147,5,23,236,241,130,209,5,121,31,130,69,103,247,6,127,181,46,188,111,124,193,84,200,117,31,130,143,83,168,213,63,236,153,138,218,52,159,152,159,219,192,126,57,188,105,252,181,193,5,71,159,8,169,248,241,44,93,7,15,39,225,63,79,103,60,27,188,115,12,97,151,255,154,77,123,48,146,21,54,99,234,234,166,210,214,241,178,196,62,154,241,115,17,120,131,73,200,120,51,144,226,169,73,208,64,79,36,214,111,66,125,249,199,160,86,48,128,82,99,171,54,65,176,49,203,72,65,123,54,31,180,174,135,240,159,3,166,102,180,62,121,2,9,148,137,236,46,172,75,237,240,203,88,199,9,6,82,64,206,227,88,228,250,94,134,11,71,157,66,179,113,213,221,6,64,124,70,0,187,113,195,19,52,230,186,145,114,59,85,210,187,185,255,27,183,72,247,165,95,155,174,69,
 253,21,31,1,65,78,131,115,248,164,80,46,57,224,201,165,86,49,125,199,69,185,104,130,5,67,138,35,109,134,72,92,240,244,90,216,121,79,77,220,123,182,224,177,228,196,211,170,58,123,47,118,192,71,248,189,154,154,247,248,245,207,47,72,56,217,149,180,44,84,230,181,250,117,101,141,203,90,92,38,59,226,88,105,91,90,231,134,131,239,114,222,232,233,139,19,156,132,58,98,151,4,100,255,32,89,93,128,148,206,73,172,169,28,206,69,23,12,176,100,76,234,2,5,255,2,23,72,254,133,200,199,219,148,249,155,76,155,150,73,139,88,23,31,47,27,15,183,215,209,9,113,86,150,132,108,127,153,62,209,195,75,42,228,112,159,75,119,199,178,139,120,97,57,133,118,236,175,100,227,104,147,83,21,136,196,146,248,102,223,243,30,25,58,55,26,123,48,71,246,177,205,53,85,253,52,214,13,55,120,52,125,150,244,178,246,130,116,32,149,182,63,179,179,63,212,194,118,146,197,170,239,60,79,15,52,233,150,231,122,0,151,145,77,66,185,177,206,197,201,183,225,158,113,190,24,112,200,140,191,96,57,155,39,57,66,226,12,209,96,227,106,165,92,99,
 6,179,106,96,245,70,232,29,145,228,204,98,113,52,91,176,60,26,12,207,97,165,136,230,72,85,50,23,209,247,134,249,46,116,181,239,237,33,58,184,240,192,133,189,65,204,46,228,96,49,51,217,95,36,202,186,103,137,182,47,153,251,254,34,142,74,187,171,16,74,50,84,41,71,93,60,171,104,150,216,87,50,101,65,5,223,66,185,162,137,155,150,115,172,121,30,227,189,143,154,48,68,201,46,229,104,162,178,104,140,6,11,111,80,203,66,196,76,190,103,162,21,226,153,72,5,227,127,168,255,144,90,43,236,174,118,46,183,188,238,28,173,27,0,207,103,148,169,29,95,249,130,242,104,103,5,105,108,254,222,161,6,170,125,21,122,152,49,192,157,183,115,215,31,110,161,225,245,104,127,141,83,1,76,11,241,106,239,69,244,24,158,62,225,5,147,43,222,219,153,253,158,205,42,187,113,32,127,5,152,181,158,192,251,226,28,144,59,221,143,196,166,198,176,144,129,72,55,175,135,122,101,150,238,85,11,69,236,200,234,22,235,95,195,45,234,57,34,17,142,35,113,118,110,54,220,71,35,105,124,209,81,217,39,216,0,199,6,53,66,149,180,6,108,73,100,1
 95,88,74,239,48,128,68,136,178,142,241,133,251,83,68,199,160,88,178,85,104,251,25,234,85,21,77,147,151,94,100,105,32,4,106,125,122,151,235,195,17,158,213,234,208,51,249,70,253,158,123,112,0,198,142,219,103,220,239,24,101,207,206,46,222,64,92,197,234,213,144,98,226,96,124,89,159,179,173,20,94,129,76,102,206,26,28,250,190,130,96,15,169,67,111,165,2,143,52,197,117,134,60,18,94,241,120,254,218,60,252,108,6,100,53,232,175,84,33,247,86,15,143,200,223,2,186,159,61,222,28,147,145,71,128,70,49,113,34,42,184,233,223,67,36,85,44,182,136,189,176,200,94,238,247,219,169,198,64,38,251,55,81,69,73,25,15,149,253,26,57,112,92,230,211,181,73,132,89,235,148,38,150,0,34,211,141,82,118,76,193,1,223,47,121,142,108,87,74,17,212,251,177,29,197,7,12,69,122,209,42,122,181,203,203,218,44,48,63,98,236,60,235,250,206,99,206,42,66,72,60,242,110,109,252,243,98,72,209,84,7,117,242,11,134,8,139,205,11,193,81,249,237,57,223,115,7,23,116,223,171,186,94,153,121,112,54,114,222,39,204,172,23,73,232,34,12,187,222,
 139,14,4,188,27,47,72,238,199,191,238,209,53,202,99,33,100,162,81,45,125,240,253,52,129,215,129,46,92,245,35,56,79,193,115,145,135,163,211,144,226,83,56,105,198,224,100,56,230,231,208,58,68,128,175,134,86,0,234,121,134,158,26,17,151,113,128,16,193,177,130,174,170,98,88,243,143,117,69,32,190,230,228,47,47,67,232,158,164,213,100,72,185,48,11,212,126,202,77,171,48,171,84,91,99,227,150,139,189,135,162,11,161,55,187,219,134,194,15,102,48,247,158,123,84,224,122,197,10,224,205,125,35,235,4,237,150,13,249,185,117,155,205,66,196,201,158,197,251,116,196,152,237,50,99,37,34,103,40,179,238,24,75,143,48,69,126,165,75,146,147,78,114,42,233,8,65,31,66,40,127,127,153,231,37,246,47,79,16,87,198,183,81,82,167,55,36,112,197,100,69,66,200,54,229,102,15,112,139,93,229,160,165,252,45,200,101,35,64,65,254,110,28,249,119,137,235,92,141,218,118,211,21,83,201,49,104,129,62,101,95,64,202,200,13,197,151,97,107,176,92,7,64,61,212,110,100,31,69,47,228,205,211,40,88,214,146,98,129,42,237,20,171,72,165,208
 ,212,187,166,50,64,4,138,34,156,162,115,85,122,239,147,50,129,247,51,84,76,226,73,17,141,250,219,130,237,43,167,190,76,83,162,101,160,102,159,12,125,64,191,73,75,140,88,187,222,220,139,106,216,148,193,14,142,191,186,168,40,63,152,87,173,74,70,140,31,141,235,190,129,61,188,4,218,227,74,2,213,62,255,67,1,195,197,64,122,196,223,202,65,12,67,60,16,22,183,245,74,52,7,194,97,138,140,14,95,116,202,225,31,218,115,225,158,6,23,251,255,132,138,59,37,180,13,182,53,210,187,183,98,97,56,97,110,151,178,151,66,38,86,13,175,76,121,125,44,218,17,121,96,92,214,19,142,224,113,231,67,136,185,164,187,51,96,18,146,200,200,97,23,109,163,176,2,96,97,126,101,128,215,120,107,196,160,89,190,6,14,216,139,51,40,152,174,1,107,36,111,159,227,207,114,198,166,255,11,236,203,135,29,125,46,67,166,149,128,45,89,190,86,35,42,200,181,220,137,239,151,219,121,97,193,210,128,152,211,105,71,97,135,22,196,24,199,150,40,192,223,14,238,174,202,157,203,212,63,88,224,74,83,48,104,122,22,78,191,114,74,195,152,166,60,150,2
 25,91,145,106,10,10,21,237,38,122,45,237,143,73,26,58,103,121,103,210,97,117,91,84,158,207,249,158,194,142,33,188,45,145,160,0,37,130,152,42,151,232,145,141,246,242,123,157,44,140,239,33,75,74,93,170,210,51,218,183,45,243,66,74,99,64,127,175,152,110,91,19,76,98,235,210,169,255,239,57,95,248,159,14,130,181,152,194,186,37,124,107,231,34,98,6,178,206,22,80,144,215,4,12,122,48,113,119,243,11,51,174,189,180,99,178,124,197,180,115,218,196,3,249,112,216,94,110,88,13,83,56,46,243,145,210,59,205,112,154,88,5,90,225,203,51,151,55,78,51,247,91,13,211,118,84,14,161,17,123,79,186,126,163,193,220,217,65,90,36,214,72,21,238,195,242,83,89,185,209,43,145,27,220,60,238,41,97,133,72,143,52,169,254,215,245,176,150,73,162,143,54,100,105,197,65,78,99,93,68,110,16,32,222,8,153,184,88,236,242,41,86,239,102,183,113,101,203,89,133,131,210,192,21,235,2,139,146,19,71,219,82,170,154,66,118,89,123,220,92,36,181,172,250,194,103,195,8,243,95,61,74,206,59,178,232,49,145,225,110,78,102,174,202,107,53,127,153
 ,168,159,243,242,173,80,139,4,151,62,43,97,239,174,146,11,4,154,174,252,209,70,71,166,151,151,162,198,109,207,238,14,125,80,171,141,217,173,56,186,223,143,194,214,196,7,227,33,169,17,190,168,18,143,75,248,37,254,229,79,240,21,99,70,155,174,173,184,244,64,229,200,201,178,222,198,208,163,21,206,7,157,245,84,225,225,141,201,59,57,89,33,8,138,114,62,24,143,165,60,250,106,214,42,236,39,201,215,27,159,248,66,11,88,3,83,229,229,130,14,40,135,34,54,217,55,225,150,114,46,225,116,12,50,86,243,205,188,165,193,169,64,61,47,107,238,97,157,250,209,224,171,82,26,44,70,218,219,250,101,195,108,220,227,129,253,211,199,80,119,249,126,147,121,192,212,52,241,217,155,251,167,85,48,196,164,20,209,120,135,134,169,28,23,167,192,60,31,73,197,99,199,200,253,102,73,236,69,217,3,41,131,111,94,60,12,69,197,45,234,176,115,228,26,147,75,127,135,105,189,46,36,30,52,68,79,85,248,29,20,216,174,84,195,164,27,105,29,207,126,178,49,45,152,39,110,53,234,166,60,136,19,41,181,127,182,119,116,152,168,34,197,151,141,
 140,39,92,242,153,145,168,119,64,163,36,201,77,64,158,211,221,195,1,13,47,165,123,187,206,138,165,26,53,13,94,103,181,52,156,183,145,170,13,190,59,231,79,21,50,221,48,188,132,113,24,149,17,107,31,112,57,64,80,238,31,240,254,251,100,160,192,108,31,217,192,235,230,127,200,196,213,103,7,118,51,192,244,142,200,234,142,88,35,70,153,146,3,239,167,84,141,105,197,163,25,196,186,104,47,164,199,72,80,30,249,169,29,95,135,93,182,143,198,43,137,77,187,239,93,182,78,23,199,204,86,88,96,98,148,112,22,13,88,181,179,155,22,100,240,207,220,64,9,222,97,247,245,31,36,115,200,29,250,111,162,61,91,161,211,229,183,32,16,145,31,90,53,138,165,23,237,51,33,84,188,204,47,185,132,253,16,180,194,97,180,114,172,159,204,12,82,160,63,199,36,24,28,30,169,133,134,39,181,46,248,8,76,82,105,85,16,35,123,151,204,185,60,59,243,47,44,99,252,142,177,146,143,127,67,253,21,230,11,135,104,159,70,167,50,81,236,105,198,105,74,192,49,39,124,165,18,252,45,10,86,146,216,218,0,245,229,33,187,55,84,179,27,75,247,1,92,40,13
 6,222,67,181,33,109,55,26,55,16,244,203,108,79,248,229,168,111,73,208,62,245,98,146,111,120,4,216,188,226,138,231,25,6,18,228,169,171,224,48,226,1,42,96,130,17,50,10,15,190,192,14,16,3,107,137,158,205,60,249,161,54,253,40,62,245,62,21,47,159,24,239,39,178,111,144,214,229,248,58,46,76,74,59,110,146,253,40,49,150,225,231,217,125,2,121,205,126,154,141,129,227,142,163,54,25,80,45,120,165,164,138,113,126,144,216,25,76,176,240,26,189,108,57,229,151,86,105,155,183,215,130,149,104,78,76,129,174,253,90,110,130,130,218,22,142,237,227,104,26,68,222,234,1,151,241,54,21,104,142,145,177,79,8,228,138,109,228,209,141,3,184,103,112,186,111,171,134,118,57,9,81,178,174,238,14,39,115,95,204,86,182,59,60,216,59,145,9,23,78,129,100,160,17,143,229,79,216,49,75,249,60,244,48,81,37,209,190,170,243,116,237,88,174,115,105,32,114,76,34,137,89,93,157,197,29,173,129,16,65,106,186,37,164,83,107,51,93,20,233,180,96,0,252,18,67,83,128,61,173,215,163,169,13,239,154,242,172,195,250,72,165,133,189,171,145,15,2
 54,56,22,194,236,236,241,114,19,194,245,174,40,32,112,32,192,126,162,77,155,181,251,238,127,199,78,120,31,186,192,27,139,65,52,250,3,41,67,151,223,143,28,119,237,174,159,123,129,110,72,167,19,238,68,149,156,100,72,178,109,177,156,23,37,226,102,201,45,235,4,179,53,223,15,247,188,67,69,27,137,195,75,127,136,55,253,148,104,34,185,218,65,151,70,6,183,170,146,9,197,252,228,203,241,78,80,92,152,153,133,231,140,170,205,134,228,28,249,130,44,248,225,42,141,23,186,59,183,165,55,105,110,146,97,223,47,105,233,141,254,248,228,13,164,231,64,107,79,89,189,26,241,217,91,73,156,0,167,240,48,115,129,187,216,92,8,39,17,35,142,201,109,220,204,244,252,252,152,141,78,228,47,57,230,216,60,162,55,32,91,147,138,211,228,78,46,162,234,244,95,237,142,239,24,230,169,161,188,110,187,23,24,231,196,38,170,222,190,56,16,93,91,230,161,10,24,6,110,76,156,201,126,167,50,67,163,192,197,245,76,242,51,232,213,111,128,131,158,121,114,51,215,44,250,251,163,100,90,80,108,173,16,51,169,178,172,234,42,220,162,242,148
 ,85,7,134,120,120,196,122,158,32,95,15,73,203,57,42,255,131,123,171,197,45,221,112,37,149,199,214,181,152,78,68,182,75,196,231,196,249,136,157,237,92,203,252,87,243,128,217,37,144,14,58,125,248,178,152,35,43,254,187,221,40,123,101,141,7,236,86,165,166,33,170,79,131,156,1,133,187,222,84,95,47,239,0,235,137,145,30,182,40,9,196,131,238,15,132,66,71,191,143,214,17,131,158,113,93,125,176,247,8,160,229,82,94,11,124,116,37,67,132,219,255,95,122,120,81,224,20,40,101,245,88,175,246,166,73,145,141,196,86,240,18,134,240,97,127,204,214,186,31,128,139,7,52,251,27,43,187,133,76,37,126,64,203,184,25,73,89,13,94,91,220,166,242,242,167,64,92,88,106,79,109,44,179,138,90,6,186,192,115,217,102,187,109,129,246,188,140,253,247,44,188,143,30,100,139,143,212,28,12,160,241,28,82,96,90,104,48,137,7,105,94,35,39,188,137,69,155,17,33,62,233,243,238,175,79,114,67,124,239,26,20,169,119,84,95,43,244,52,78,48,156,7,218,101,68,162,43,237,143,112,32,183,118,40,252,10,132,215,224,12,13,137,106,48,124,245,239,
 77,148,225,162,112,118,32,207,255,155,159,163,90,209,150,198,31,34,122,134,155,79,158,231,2,126,193,195,123,241,125,56,14,129,158,110,128,12,245,54,217,113,198,118,184,56,7,133,89,138,210,191,1,96,11,133,29,184,140,240,89,99,116,18,68,21,13,130,159,40,94,25,211,118,101,18,51,31,16,49,160,152,86,135,59,196,98,131,241,62,231,237,54,41,50,230,175,197,148,5,118,171,24,206,220,94,246,129,99,148,236,251,196,144,73,36,188,1,224,141,124,97,45,38,104,177,175,97,84,115,200,23,250,167,127,213,2,84,64,72,11,201,57,33,100,174,59,94,165,16,1,213,249,205,58,79,111,184,133,227,54,145,236,171,235,72,243,75,217,89,4,196,37,124,245,50,214,118,208,61,189,10,254,231,22,106,246,216,234,194,247,158,178,120,150,16,9,192,243,124,161,161,21,89,62,35,138,108,130,212,97,157,239,144,86,178,172,220,232,210,135,174,218,33,98,73,112,198,209,167,201,40,9,235,79,143,0,147,180,54,149,108,23,127,90,79,250,133,211,179,183,210,70,8,117,25,170,87,168,46,232,144,156,250,16,81,158,129,241,18,150,232,60,126,174,16,1
 93,43,66,48,141,95,92,72,160,209,161,85,154,195,56,104,242,63,115,223,56,229,47,188,8,176,254,57,219,151,18,168,114,98,27,89,101,99,114,78,89,237,164,142,22,133,212,126,85,219,143,73,43,239,145,253,95,255,210,2,154,197,188,148,90,107,141,132,6,154,89,214,130,237,70,222,177,226,82,168,190,61,7,253,41,242,168,163,7,252,5,122,86,5,78,60,56,198,227,116,171,6,201,84,200,66,147,244,177,156,141,110,165,25,188,6,221,144,55,155,207,212,67,107,247,159,86,245,172,140,183,75,150,146,216,34,141,219,153,36,202,85,149,184,125,218,32,95,123,179,246,0,62,122,46,119,225,43,43,203,236,125,225,224,206,59,238,160,15,136,98,59,227,186,205,135,197,74,77,117,248,91,113,3,227,156,164,199,214,125,217,34,176,21,229,186,4,5,110,157,186,211,167,38,173,177,68,173,177,24,83,68,3,248,44,209,207,120,233,85,149,39,102,113,148,132,215,219,132,154,14,158,180,242,248,158,101,103,94,36,6,62,77,220,46,18,52,26,31,43,94,3,122,110,113,86,209,240,183,184,112,198,8,180,8,44,37,23,94,83,204,176,177,79,209,58,25,58,126
 ,211,153,165,98,63,71,39,200,51,61,233,212,168,67,231,44,227,44,63,74,210,119,109,5,245,200,161,39,164,31,91,138,99,83,199,80,132,105,187,233,155,4,89,110,194,73,205,239,13,201,192,222,158,227,89,138,210,22,227,172,76,202,141,219,183,241,114,25,137,214,8,68,34,220,183,151,86,113,223,101,89,177,221,85,189,118,81,202,107,114,221,5,145,142,11,141,26,33,100,88,153,152,28,220,64,85,91,38,2,62,252,243,118,156,249,91,46,65,67,78,237,182,153,12,51,137,179,18,159,111,36,149,205,19,209,163,205,155,7,212,166,246,11,66,255,200,143,188,191,209,170,41,177,91,13,151,192,25,113,107,200,79,1,175,40,29,242,70,20,243,63,29,62,239,212,208,234,42,168,202,194,240,183,177,61,95,79,74,6,165,58,72,201,64,125,229,193,70,163,6,106,79,111,112,239,9,244,189,4,165,235,19,254,241,126,115,152,247,100,127,192,180,95,120,114,145,26,33,222,91,50,114,175,46,25,127,97,165,214,90,48,252,192,68,116,61,240,104,161,111,32,118,129,75,129,117,245,133,112,19,172,134,215,164,81,174,243,173,224,129,51,36,134,234,182,190
 ,251,97,43,95,133,2,182,134,251,124,99,82,226,229,243,81,222,132,133,222,157,12,179,109,251,177,20,248,119,158,47,64,155,23,97,105,13,193,0,183,50,11,219,49,235,61,109,230,56,90,33,105,32,195,139,51,183,69,117,39,166,73,40,245,86,230,127,253,18,118,106,34,247,64,110,86,159,236,169,172,252,85,131,216,224,188,164,204,130,194,219,20,122,176,23,3,156,207,59,233,244,95,116,232,247,193,11,188,171,213,228,37,63,215,112,140,42,106,152,233,92,43,198,117,175,63,189,134,140,253,18,147,193,237,116,230,76,6,154,84,108,157,112,118,157,51,238,146,210,238,48,52,154,215,225,231,130,212,37,53,15,31,174,250,211,209,183,196,41,130,175,191,52,204,38,136,168,189,52,90,175,95,174,90,143,44,45,221,179,193,225,34,53,208,155,94,33,234,117,68,224,111,137,26,163,94,179,140,3,220,122,154,106,32,87,128,214,41,227,175,58,50,24,111,165,189,83,21,1,122,112,33,56,8,74,149,32,107,77,58,63,10,158,61,90,170,155,55,229,41,170,160,237,73,11,245,118,27,184,200,111,19,75,9,119,73,31,35,45,36,139,132,192,131,59,67,4
 8,10,40,234,147,193,74,203,242,53,92,213,243,134,88,139,210,128,149,57,142,23,105,214,79,119,210,149,251,137,94,154,96,2,68,118,73,150,88,167,201,71,141,70,157,198,120,29,141,210,148,15,57,104,172,13,175,5,193,19,106,99,120,89,232,66,146,61,247,54,164,228,122,138,31,100,246,90,134,101,251,22,188,125,27,195,104,45,128,60,56,44,14,163,46,8,16,160,142,229,144,40,212,203,170,213,84,2,249,200,130,43,113,90,48,180,231,22,143,105,60,81,226,239,68,166,185,4,177,245,203,250,220,108,100,21,22,51,26,184,119,219,1,96,152,241,144,177,144,213,44,54,193,167,57,158,190,229,117,2,65,43,177,174,48,228,85,19,36,74,80,61,137,219,183,176,179,85,252,213,164,135,91,29,108,23,4,127,202,97,243,196,27,100,4,246,65,219,179,151,225,218,116,204,133,202,134,52,214,18,221,207,158,3,131,37,161,115,45,82,8,248,253,106,184,160,244,58,236,79,150,68,42,122,253,254,74,132,220,69,118,99,239,24,222,60,44,17,176,242,17,253,45,218,118,34,177,213,83,189,247,188,45,225,221,85,99,209,82,127,230,14,247,131,182,177,185,
 59,171,95,26,53,186,37,96,60,234,30,181,12,159,205,191,162,82,13,54,57,29,11,97,194,195,2,134,179,184,97,51,107,46,9,115,40,53,154,136,174,99,198,123,168,253,227,138,121,158,151,0,99,162,172,105,77,204,254,177,218,77,103,243,46,209,136,174,205,211,245,78,87,206,212,13,57,90,14,25,157,227,223,160,207,156,135,114,192,241,136,153,80,140,158,83,214,21,193,254,2,179,162,131,153,4,12,100,183,143,154,154,249,134,147,74,166,113,60,108,192,228,222,68,224,242,220,59,227,97,244,161,134,133,75,69,188,134,59,90,146,66,94,117,45,85,184,50,223,119,0,137,211,83,61,38,73,220,221,120,157,161,157,84,255,203,120,246,243,101,147,88,231,177,16,10,250,185,40,140,190,143,111,19,148,37,132,209,207,176,60,188,171,170,69,101,127,27,114,83,191,215,207,214,60,95,249,198,246,12,217,45,216,63,3,245,217,139,220,177,29,138,30,110,87,171,61,125,218,190,49,20,236,197,44,30,254,159,221,246,186,229,55,36,93,120,106,97,129,172,82,195,163,164,254,235,147,130,45,14,182,238,91,152,240,247,42,233,137,218,167,152,97,
 10,105,66,133,149,135,86,216,88,204,62,129,173,139,154,40,194,172,22,105,137,171,79,7,144,230,47,36,48,16,163,123,218,142,193,116,254,73,251,84,33,173,99,38,7,42,91,156,30,72,97,55,214,19,61,212,113,110,182,33,180,148,243,244,247,8,106,33,207,143,249,144,75,174,177,38,79,119,48,171,158,120,164,186,130,81,220,39,179,117,101,53,96,111,62,28,29,182,245,175,47,222,123,75,81,32,244,31,247,106,23,240,93,245,75,216,215,6,53,181,75,24,230,148,212,180,226,188,0,150,4,97,12,76,95,80,91,248,234,135,46,182,100,17,228,219,233,169,153,78,23,234,137,213,87,115,57,24,35,254,212,25,46,37,207,115,231,49,160,251,180,93,157,124,215,209,18,174,79,240,15,225,98,119,12,23,141,248,140,99,4,61,141,30,89,83,176,74,45,171,94,244,131,6,71,230,153,115,218,139,54,131,255,74,24,156,92,5,86,117,193,158,53,23,124,40,165,237,185,218,110,97,38,119,203,11,48,142,184,88,107,205,154,149,204,137,106,241,48,108,115,157,108,97,212,138,240,159,15,125,64,51,127,74,24,26,20,199,160,202,175,233,55,3,10,75,176,21,67,20,
 129,157,48,247,190,97,159,49,126,212,218,194,146,174,187,161,132,247,196,71,112,246,150,0,76,6,82,77,21,37,240,2,124,197,127,107,137,148,94,179,37,61,107,93,130,72,192,49,167,8,63,126,115,210,211,124,112,169,111,123,35,81,10,187,126,78,172,39,130,129,204,124,183,192,203,203,14,21,19,115,177,142,109,152,132,238,71,230,52,142,100,2,42,196,123,124,168,131,85,34,203,94,138,43,71,111,167,230,24,162,82,244,229,164,236,211,253,234,168,34,87,186,104,1,178,245,54,247,202,39,216,180,151,110,25,106,71,153,85,41,26,228,97,181,166,204,13,173,241,84,158,200,60,242,133,104,120,112,177,81,227,166,137,9,85,175,125,22,142,203,185,206,245,232,32,200,174,230,221,104,0,138,206,132,198,243,249,56,3,244,243,254,33,2,241,99,232,57,69,133,61,232,26,242,106,244,112,132,9,242,78,177,71,19,247,26,3,49,33,38,119,244,173,250,85,153,232,141,169,174,27,175,228,213,58,30,214,124,164,182,25,118,145,77,56,12,38,179,143,213,98,147,112,129,218,212,223,205,238,218,239,2,221,207,245,150,135,32,73,200,165,65,194,2
 0,202,27,75,111,224,8,17,195,184,195,207,166,105,193,106,221,210,146,81,75,95,56,139,89,32,126,91,254,161,10,185,88,87,199,40,202,104,216,222,27,5,161,13,35,5,128,58,193,227,188,209,219,49,137,6,198,203,228,216,93,29,140,174,87,108,117,89,119,28,177,187,166,13,169,94,54,144,16,17,144,76,33,19,148,10,170,136,218,207,223,179,202,64,55,23,197,16,8,189,211,183,183,130,140,6,159,166,250,139,76,216,218,205,107,2,201,52,181,219,153,138,173,176,228,50,249,236,55,182,91,48,53,39,60,184,139,244,118,228,132,87,66,241,203,44,60,109,107,139,199,54,52,190,191,9,125,49,175,51,105,21,43,45,130,72,160,7,197,22,97,106,5,10,180,1,52,14,153,75,3,252,119,54,27,11,54,160,172,43,118,154,252,170,2,93,9,8,206,233,95,70,124,81,135,176,8,84,241,204,236,20,49,247,88,142,1,8,178,250,214,135,249,110,48,87,57,14,139,44,228,200,115,177,101,12,63,98,77,27,120,108,124,120,124,10,212,94,38,4,74,75,230,24,148,218,37,208,219,90,47,175,85,24,24,145,95,35,19,2,185,109,215,189,77,104,29,191,12,199,54,178,166,110,1
 31,237,202,180,211,124,183,93,72,18,239,17,96,46,153,89,161,161,235,208,144,3,155,88,249,45,204,108,171,249,244,83,2,192,112,123,168,84,110,204,224,150,10,84,44,142,186,158,96,153,37,80,239,217,244,163,96,17,254,144,162,101,134,241,41,3,131,182,120,94,69,74,246,59,234,192,13,57,77,1,17,112,139,31,63,14,117,205,116,80,77,51,32,95,32,58,29,88,87,0,229,195,199,129,38,27,172,192,250,177,10,50,147,35,204,191,245,197,151,181,253,40,229,247,86,18,103,193,84,24,230,216,93,56,133,114,18,206,168,29,213,143,20,36,240,70,245,43,42,192,93,62,7,14,49,199,72,127,99,206,166,148,251,49,210,144,56,90,116,59,3,182,31,177,90,114,232,71,99,91,49,226,190,253,23,126,43,14,128,157,139,144,173,81,150,109,84,27,244,115,151,114,13,119,8,165,18,55,144,116,68,41,106,233,98,0,160,217,205,157,23,129,232,236,125,156,99,219,231,36,152,188,151,201,139,174,172,204,89,80,225,217,82,51,125,254,205,188,27,246,219,198,58,214,11,96,52,29,133,161,217,140,62,86,236,231,22,35,241,247,152,187,70,128,88,42,51,207,247,1
 35,37,45,164,231,179,74,75,5,251,36,166,159,222,133,84,222,209,184,140,254,208,215,112,157,202,202,169,156,103,126,238,255,139,245,95,159,54,146,105,88,85,175,211,27,23,116,119,53,203,109,219,229,13,230,154,34,78,77,123,129,88,27,198,0,60,22,35,245,116,143,13,111,140,71,113,128,72,146,183,138,184,90,200,66,255,108,32,105,126,156,209,60,45,67,1,210,180,68,172,69,109,78,78,176,210,3,185,99,118,219,162,173,214,219,101,207,91,69,160,162,38,205,163,127,208,214,116,232,47,9,224,114,89,164,178,255,218,207,188,200,238,65,223,12,55,131,204,106,66,113,101,37,122,37,239,198,242,170,177,185,214,124,125,102,33,165,35,128,125,5,104,70,230,136,23,53,164,137,26,126,214,15,10,196,187,221,54,118,172,235,242,177,170,103,202,67,72,244,11,68,199,252,236,45,0,237,8,201,56,24,56,145,195,231,163,91,37,236,197,179,95,72,8,189,36,6,232,197,23,27,178,134,204,130,191,134,13,232,231,188,221,73,250,40,86,205,21,44,218,155,67,202,103,37,228,179,163,124,33,36,237,56,238,235,134,224,123,189,197,179,86,199,4
 ,252,88,60,148,70,50,233,110,245,187,140,53,36,190,117,159,27,41,179,102,137,47,103,172,202,40,233,30,193,225,161,61,109,148,222,23,77,117,128,189,23,80,200,128,130,42,155,3,52,72,219,206,144,70,177,80,132,89,46,163,229,37,195,166,187,204,158,3,7,6,55,55,182,223,206,23,143,185,138,15,142,244,9,13,51,214,196,137,173,42,163,25,74,0,94,50,187,135,40,43,107,205,84,98,40,7,91,155,49,28,111,107,218,126,159,239,91,25,170,123,160,95,241,109,160,248,90,185,8,228,186,32,129,91,86,211,132,89,115,155,120,126,238,196,215,30,235,219,226,205,122,73,240,31,215,224,65,146,35,70,173,141,52,106,162,136,17,46,128,130,118,195,149,122,166,67,254,192,181,48,224,80,26,12,200,42,2,25,203,77,244,14,17,115,32,176,249,215,212,96,60,67,199,64,173,54,104,228,153,54,234,78,44,145,94,46,219,149,134,241,39,92,192,47,92,229,84,137,175,138,96,40,69,93,114,253,178,247,77,212,80,67,101,232,202,148,141,221,88,19,70,234,134,107,124,205,163,37,21,252,219,50,88,41,253,49,122,207,243,21,36,19,45,157,7,238,71,80,104,
 166,195,87,0,181,246,101,136,117,232,133,120,31,174,33,204,125,109,42,198,167,225,63,157,47,149,81,24,236,130,66,227,13,165,225,137,173,68,99,242,106,209,42,215,10,65,144,57,87,240,62,59,5,151,24,139,7,173,93,248,159,81,116,200,217,229,222,248,202,9,238,197,56,183,146,253,232,109,69,134,91,246,218,31,153,227,236,193,40,43,160,248,187,62,206,124,148,213,79,200,151,84,197,200,79,51,75,129,98,172,2,41,207,56,8,91,13,160,36,199,94,74,65,27,30,68,2,141,122,126,153,41,0,126,133,60,228,228,21,73,33,162,43,50,208,162,86,58,143,22,178,241,62,52,173,51,65,33,156,216,105,62,249,68,111,56,211,74,250,49,218,56,11,163,52,17,147,55,60,6,212,228,20,160,169,252,175,204,179,149,12,78,96,254,170,24,107,123,221,23,34,197,168,58,78,147,22,116,24,53,251,20,242,189,96,29,74,82,191,124,223,85,194,84,140,66,204,127,40,226,218,153,65,45,230,2,194,237,53,243,231,127,148,217,117,35,42,125,185,160,123,88,87,62,182,123,7,234,148,58,53,141,61,106,229,211,22,40,16,254,62,229,157,84,177,155,124,103,225,83,1
 84,229,84,131,175,61,209,122,59,61,32,160,171,104,45,240,43,80,5,128,62,187,117,140,203,82,177,224,164,177,53,129,98,28,104,206,4,81,51,213,100,66,249,65,66,233,10,199,191,180,150,254,119,17,135,160,36,237,46,62,145,105,229,37,152,47,0,16,8,165,29,221,28,236,28,96,131,159,77,58,91,216,100,73,251,189,44,202,97,253,89,190,22,226,226,102,44,160,92,123,34,50,127,66,137,134,86,107,24,73,54,196,237,133,131,101,75,128,202,195,119,136,236,37,160,232,69,252,66,214,120,236,22,34,66,103,177,196,183,182,92,234,158,45,166,55,37,253,16,164,87,84,193,10,21,164,119,243,231,121,51,108,61,172,64,219,69,142,207,130,215,238,58,139,217,167,100,92,198,193,142,88,20,239,8,238,75,181,176,0,33,112,35,193,230,225,150,116,155,175,164,240,76,28,209,173,113,27,223,153,89,114,231,163,29,35,228,219,77,249,74,174,232,204,168,158,250,21,51,173,95,16,62,143,118,154,194,218,3,21,154,135,199,225,114,126,179,79,38,64,102,15,88,197,39,208,228,77,25,158,65,196,209,225,203,25,169,134,255,146,106,41,224,37,216,60,8
 2,229,39,125,235,235,173,240,207,69,153,56,225,157,31,20,49,35,24,138,173,97,177,165,196,125,205,96,81,68,98,93,232,161,10,238,142,51,100,47,15,88,180,55,236,6,54,25,154,243,226,116,56,174,13,177,239,78,148,109,241,83,134,139,224,112,245,239,134,52,59,110,22,90,255,109,163,72,14,3,84,127,234,42,196,67,241,254,10,243,165,110,207,240,163,164,215,198,36,73,154,146,20,92,101,206,173,19,244,244,244,171,37,114,100,201,143,4,163,14,252,17,181,197,78,117,252,27,1,232,139,142,173,174,120,126,135,221,239,129,176,139,219,253,224,108,162,226,141,144,140,34,236,240,175,215,160,54,76,116,191,64,76,65,245,0,1,49,121,18,155,6,199,69,129,230,213,59,176,71,192,185,196,13,197,0,49,203,193,219,63,2,104,152,33,184,202,101,36,112,244,127,243,113,165,12,248,4,144,22,244,70,210,85,199,236,25,90,207,4,131,155,80,203,120,129,34,74,25,38,36,176,59,225,240,189,244,226,105,215,144,85,83,118,31,78,93,196,67,102,164,86,207,87,142,4,86,60,130,210,248,39,116,228,182,209,91,9,172,51,8,57,174,253,179,169,76,1
 27,183,21,49,108,98,127,65,196,62,228,30,163,139,111,153,77,77,54,179,196,210,105,3,197,205,185,102,171,109,134,110,223,211,2,91,203,119,221,136,134,220,180,244,183,151,10,30,51,11,176,224,179,226,185,239,124,128,116,166,190,240,163,62,98,192,116,214,240,168,164,102,229,182,230,173,200,185,182,130,72,108,56,168,195,157,205,48,139,146,160,186,53,98,107,111,36,65,242,144,218,62,214,109,183,139,156,113,50,89,34,205,185,21,151,249,212,78,3,113,142,18,38,30,167,233,75,18,180,245,243,1,250,171,215,4,110,101,177,240,26,89,140,254,190,199,151,237,54,28,33,79,56,159,116,228,33,21,146,33,120,50,218,188,52,222,80,47,229,236,25,200,89,225,33,100,8,228,178,251,220,18,131,104,150,43,134,55,38,29,186,39,58,159,49,216,118,147,102,24,37,169,154,224,209,95,106,142,187,32,53,177,0,117,165,205,181,97,87,88,181,66,48,156,125,103,225,215,154,181,220,56,19,67,66,27,191,18,202,16,238,54,249,104,196,210,177,55,220,210,176,231,40,219,214,162,245,132,239,35,199,114,144,221,3,198,84,233,78,99,204,65,42
 ,248,140,0,133,60,48,201,197,114,237,247,164,138,42,208,252,145,218,40,155,138,171,201,123,17,49,255,194,25,250,205,144,18,202,241,244,114,32,222,75,3,69,169,70,243,148,141,125,9,136,50,73,189,152,144,154,142,247,78,204,232,24,182,10,130,88,50,185,195,71,199,101,50,200,205,16,63,3,148,137,75,148,123,114,71,77,17,240,165,241,219,250,173,75,86,72,240,204,221,212,68,95,222,51,215,108,225,42,185,182,37,226,245,23,247,219,209,92,39,73,248,55,197,196,82,178,190,193,45,229,123,43,14,161,232,252,43,125,53,192,9,134,223,82,173,97,127,48,97,219,171,249,44,194,161,251,168,162,139,33,245,184,221,58,58,101,130,167,139,123,166,52,178,14,236,248,44,160,180,132,132,31,207,176,4,200,153,25,203,250,45,193,135,102,23,119,216,123,167,5,223,230,131,54,157,221,240,229,3,137,202,51,247,240,50,202,214,202,100,89,0,236,59,147,187,52,36,20,225,145,13,43,156,40,229,229,74,17,36,162,187,223,57,3,155,229,220,23,203,207,101,74,82,161,158,106,154,19,96,126,151,24,231,81,137,131,123,40,212,190,52,235,155,2
 23,60,138,35,235,166,155,171,222,213,122,209,236,86,248,223,156,146,193,125,144,60,104,36,170,252,77,119,229,47,79,243,251,120,224,197,98,115,68,208,191,255,51,49,180,42,57,97,64,107,226,173,208,44,252,24,160,0,230,172,12,163,51,180,33,122,65,119,162,227,224,144,102,157,58,234,116,25,8,181,134,32,232,177,59,134,232,160,14,215,59,85,37,51,185,80,233,41,40,142,250,56,208,5,53,14,107,112,134,31,212,73,133,83,35,231,151,168,59,121,132,206,204,86,236,128,19,123,50,199,8,229,237,70,146,1,153,251,30,151,45,206,253,47,248,254,185,236,21,207,101,177,193,47,34,152,82,76,25,129,123,79,81,160,43,152,45,169,147,146,199,48,167,195,146,255,81,122,65,100,153,192,18,131,159,28,120,249,152,83,164,98,172,227,32,120,212,172,44,97,6,204,196,94,17,144,120,92,109,123,44,171,118,83,5,211,156,122,130,235,58,116,75,129,36,128,146,21,64,21,154,232,217,57,147,106,250,73,153,196,193,152,240,163,159,211,37,131,90,106,173,174,73,121,203,93,148,194,204,102,20,235,215,166,168,55,178,86,54,55,159,80,20,185,9
 6,251,185,176,136,5,253,253,207,150,139,246,112,91,24,97,63,240,88,218,239,147,193,150,12,188,234,221,30,235,17,21,141,46,155,197,120,229,208,227,54,52,29,11,201,47,55,186,136,53,182,253,192,239,53,201,171,134,114,117,19,171,11,224,58,10,215,211,240,200,117,161,251,102,148,249,162,129,18,32,160,46,238,130,89,197,95,11,211,128,81,88,147,253,35,70,104,206,193,17,161,35,167,15,164,180,116,120,140,19,141,52,121,129,51,14,100,218,160,151,21,157,14,75,45,49,141,17,4,4,219,186,125,236,5,138,174,93,67,214,199,52,49,210,83,47,184,46,243,14,147,162,225,172,227,187,168,227,32,33,91,71,55,237,225,127,143,73,32,239,173,140,57,242,149,25,198,113,83,83,218,87,22,170,218,34,137,14,192,168,160,211,4,189,106,92,55,212,220,107,126,239,57,216,223,179,90,251,5,36,149,26,125,104,75,243,247,146,143,41,171,11,57,179,27,238,154,191,160,152,202,199,231,139,93,253,216,194,249,162,140,139,121,72,253,162,125,51,242,30,12,192,126,140,32,195,70,155,101,65,60,229,204,236,44,184,181,172,115,34,208,18,22,151
 ,248,255,201,214,237,171,113,32,64,117,221,206,188,82,38,253,233,47,149,140,79,61,73,179,49,69,125,138,248,117,8,237,78,98,70,117,199,63,229,246,181,162,58,32,20,185,102,135,78,223,210,218,64,208,38,158,166,142,250,252,121,203,200,0,36,111,101,152,199,163,37,53,3,140,92,174,25,140,247,63,109,110,115,107,72,107,11,50,34,247,189,154,125,151,253,243,249,180,102,250,57,254,122,159,43,5,142,124,142,88,205,56,227,223,64,155,130,132,53,39,47,107,63,20,165,57,34,130,137,106,134,207,36,186,206,14,120,211,244,108,109,29,154,225,119,165,169,229,252,220,231,2,141,245,128,145,133,251,208,188,116,89,149,93,146,255,26,241,112,163,242,61,119,156,171,248,28,5,152,224,61,149,185,73,154,9,191,81,98,134,134,203,233,78,211,151,37,70,123,161,174,251,215,152,215,10,122,80,70,74,136,211,203,173,231,158,15,0,118,174,14,217,27,14,201,218,80,139,131,118,210,75,251,162,19,81,240,91,86,59,87,74,188,103,95,225,88,48,167,148,228,2,76,76,135,183,182,88,5,165,82,146,232,240,252,58,87,148,26,165,185,54,38,99
 ,210,205,69,254,80,116,14,255,111,243,35,0,63,224,151,175,86,131,227,244,212,119,168,6,20,155,47,167,76,85,61,80,252,193,233,40,74,113,45,245,249,75,132,204,186,215,66,155,64,51,64,59,32,193,141,104,1,10,88,104,209,145,136,40,72,176,92,120,45,124,54,154,193,174,207,54,179,33,215,166,245,162,2,201,16,206,157,176,138,105,243,124,227,141,132,13,106,167,150,128,2,227,162,14,206,89,148,47,65,176,106,163,210,87,202,52,102,178,8,66,11,18,201,182,87,35,149,36,1,191,114,12,61,130,90,165,57,127,214,115,79,169,63,71,60,106,117,165,76,220,4,4,190,120,213,135,254,42,233,118,62,97,229,114,1,147,194,89,110,244,228,3,208,35,2,223,210,33,122,23,68,8,52,109,208,201,137,188,175,156,211,46,80,25,214,166,192,11,160,37,178,243,148,98,74,190,101,194,149,167,197,146,59,16,237,105,126,251,78,38,70,70,84,213,4,38,155,249,239,10,119,222,86,120,187,173,218,16,7,20,71,107,206,125,233,173,201,250,144,202,135,48,197,79,212,98,189,118,175,86,14,74,86,222,151,240,235,226,122,216,9,22,173,110,10,173,48,252,4
 8,36,237,192,149,73,82,155,95,143,163,87,135,63,16,133,73,185,143,139,242,202,242,34,38,201,131,17,24,5,194,32,64,65,168,27,122,195,11,249,67,38,58,38,50,149,139,41,125,69,225,157,88,93,222,239,206,52,205,240,170,90,243,93,34,206,217,18,82,196,222,83,150,153,197,214,87,244,140,238,237,255,12,172,36,72,112,245,193,4,182,75,189,4,245,116,187,229,150,113,157,219,203,13,167,16,238,199,102,109,115,68,48,71,36,18,208,152,157,15,48,254,41,78,94,201,177,140,173,18,209,103,223,115,112,36,82,133,143,33,137,41,203,219,244,52,12,220,64,218,127,201,193,171,190,180,190,82,85,81,196,254,72,206,207,97,126,58,202,32,251,154,225,131,89,121,140,229,187,180,58,198,173,167,198,40,120,42,210,67,147,95,114,179,166,101,55,136,184,96,250,231,117,18,115,202,195,17,53,32,141,175,48,3,236,218,192,154,5,44,202,92,152,251,113,196,81,9,115,227,158,93,55,10,98,150,61,154,97,156,201,7,97,69,227,5,135,86,220,249,12,216,101,61,85,173,140,114,135,78,76,85,212,124,154,219,10,247,246,125,123,74,147,89,56,111,34,
 138,124,130,157,139,174,112,122,40,184,96,118,174,140,32,255,137,34,36,97,187,216,47,219,107,204,248,134,178,193,105,253,101,18,168,198,239,42,106,41,139,69,96,146,197,227,35,146,132,141,226,78,237,188,176,178,226,137,114,220,119,0,244,43,157,21,54,28,238,190,221,111,176,203,242,243,253,178,14,221,24,97,111,55,121,195,43,136,189,155,124,25,130,252,245,71,88,106,48,149,163,126,78,114,192,166,73,198,228,12,189,75,250,94,253,8,77,239,19,127,165,237,39,58,246,30,88,190,34,174,208,3,118,166,140,48,130,250,168,104,105,195,223,29,241,112,182,193,99,17,34,52,148,191,196,102,143,175,92,82,136,41,206,162,97,194,242,217,136,99,42,194,134,6,75,2,240,6,83,215,131,136,255,179,36,197,185,73,205,96,172,200,92,62,128,120,175,45,72,106,171,178,253,78,96,120,31,92,50,53,111,184,202,48,231,68,166,198,154,134,47,190,211,10,128,162,250,43,136,111,188,23,55,82,50,135,168,44,99,148,55,87,71,85,78,106,227,253,210,216,5,175,27,71,156,213,187,134,146,71,129,238,186,143,51,209,13,200,119,73,155,212,150
 ,190,229,133,50,72,74,252,70,216,203,138,46,60,190,36,120,215,15,96,220,70,129,157,33,250,121,44,90,102,44,204,22,121,170,28,1,65,255,14,102,124,229,175,82,179,49,145,190,68,245,40,51,64,185,93,152,221,172,212,40,253,133,120,126,193,143,39,68,78,4,187,164,207,185,215,101,103,103,45,153,17,172,219,74,57,216,192,186,74,157,59,220,74,54,9,107,99,44,15,118,57,13,99,95,221,72,69,181,68,47,78,136,70,60,127,151,196,60,104,111,180,238,195,254,67,19,45,32,129,119,8,209,132,40,129,142,93,15,159,237,61,38,164,202,82,224,207,26,122,89,201,128,206,97,20,240,227,33,118,51,68,182,131,50,94,61,221,51,218,53,2,231,81,195,140,152,94,205,97,212,126,128,232,182,205,166,28,151,38,35,21,91,213,188,4,220,92,34,123,126,38,176,156,116,81,43,40,174,98,83,123,58,216,18,86,154,171,191,78,15,214,139,218,176,177,140,229,194,17,174,124,224,181,210,50,32,241,116,247,200,235,114,132,53,17,233,239,90,235,158,91,227,190,44,158,21,64,170,41,55,140,108,80,56,236,94,235,34,249,53,148,16,8,61,197,166,0,236,37,106
 ,208,130,161,66,120,79,48,25,166,202,108,226,20,16,28,207,111,199,69,199,19,254,120,189,245,204,148,20,157,68,145,46,88,124,243,157,174,85,250,235,6,110,234,56,116,234,5,71,0,186,130,42,228,82,16,12,204,133,111,115,115,33,114,82,86,14,65,39,228,225,31,163,231,57,205,211,208,99,3,101,2,245,30,178,199,86,128,139,223,173,34,214,130,176,123,110,207,128,218,213,20,0,84,206,198,56,35,184,9,217,129,117,90,174,242,231,202,60,156,19,102,235,194,103,3,32,52,254,67,161,228,98,20,207,250,238,250,50,29,229,102,82,197,59,238,131,206,222,103,10,91,253,47,96,54,163,86,52,16,224,67,74,254,239,27,21,47,159,173,212,61,207,121,76,19,189,21,82,139,138,101,62,105,147,171,198,207,63,91,16,223,164,83,149,24,34,203,163,94,174,215,117,124,143,81,95,241,106,242,229,73,11,1,20,61,40,104,86,12,156,228,57,215,171,193,211,98,123,160,220,245,221,91,171,136,30,135,215,91,42,222,162,247,149,222,115,56,245,241,121,117,132,239,90,14,168,251,224,54,11,17,187,203,0,132,134,222,77,12,242,10,159,69,145,53,20,241,8
 7,203,76,0,206,38,24,108,92,254,84,105,49,71,19,34,150,135,64,19,118,125,115,154,57,43,123,116,121,80,231,247,59,161,110,66,152,97,3,155,228,140,228,28,22,170,44,188,119,119,238,118,210,112,234,121,177,172,233,226,178,40,158,98,59,150,106,221,32,31,120,142,142,151,84,64,91,31,12,98,198,107,167,163,212,247,74,224,234,38,190,184,210,81,175,255,3,76,83,13,245,105,119,46,204,86,161,221,169,86,137,194,150,20,6,96,247,158,69,96,232,88,38,104,123,40,145,95,94,116,70,60,216,65,1,241,219,179,93,8,240,143,142,37,255,128,191,6,223,16,74,138,195,189,207,70,155,14,38,233,177,99,187,90,229,78,184,82,183,156,193,207,130,255,214,51,224,253,243,100,146,159,251,148,151,55,152,194,210,245,192,102,234,86,155,104,138,200,56,105,49,14,217,41,186,229,182,50,85,255,192,30,120,200,60,244,60,149,249,198,7,91,148,16,244,20,140,166,249,64,111,227,111,202,124,77,234,38,150,125,254,119,193,42,89,23,35,30,15,32,55,232,56,109,61,200,191,174,2,207,140,53,174,245,78,93,226,240,255,20,18,62,22,169,17,135,217,
 1,242,185,220,129,60,201,32,200,104,133,21,45,4,201,173,19,62,129,147,150,43,79,140,81,24,96,112,220,244,196,186,4,221,3,178,160,144,96,236,111,122,176,19,157,35,168,190,100,143,81,243,186,42,123,101,82,126,39,146,188,203,254,102,123,137,176,221,178,127,168,229,133,201,51,75,81,131,70,10,184,9,13,123,143,169,93,31,160,16,23,140,207,145,22,118,74,4,10,74,137,147,57,187,25,223,97,181,28,83,232,179,211,59,169,234,48,44,67,6,71,210,182,7,93,127,71,195,7,156,142,254,13,184,4,69,195,69,28,172,120,243,48,198,212,69,252,37,40,123,174,129,121,137,245,13,183,78,98,125,217,30,248,237,230,202,79,166,144,245,16,195,212,80,68,180,230,28,110,230,61,172,101,148,65,245,236,218,54,149,113,206,230,159,232,205,145,38,213,235,97,186,212,156,126,156,81,2,48,105,16,230,83,110,107,122,244,195,126,68,46,59,81,108,62,199,243,48,164,8,60,136,178,133,151,179,82,76,15,155,100,41,133,77,209,130,0,69,28,165,82,73,37,174,246,198,166,236,88,233,99,244,62,175,230,23,172,213,198,154,202,129,160,39,32,209,75,2
 2,107,209,106,130,40,237,242,144,3,52,12,169,230,118,175,58,251,196,200,151,254,67,138,114,218,14,33,223,130,247,18,175,124,30,210,38,236,135,50,81,151,182,4,75,238,38,45,67,54,197,58,87,77,158,18,49,134,45,55,89,79,118,25,35,37,92,1,3,243,232,41,131,77,33,180,3,191,68,101,109,92,67,88,130,158,57,222,36,30,175,152,142,57,37,61,125,95,140,230,29,225,104,175,1,78,98,25,80,104,16,11,162,165,118,121,222,158,45,206,18,115,70,124,113,29,183,17,185,54,92,222,164,249,104,169,102,54,16,249,254,57,254,138,111,248,36,21,49,253,138,202,29,196,93,170,81,241,185,14,237,117,31,98,222,149,32,23,53,48,226,92,242,92,32,6,202,127,80,96,202,47,135,110,216,215,245,2,41,202,96,103,234,91,241,44,137,56,66,223,19,216,174,230,175,211,249,114,102,35,209,55,186,153,198,53,42,17,134,88,154,174,99,186,187,38,140,156,9,55,111,79,79,88,25,162,42,107,154,65,144,191,190,172,235,94,85,255,34,185,190,1,169,27,85,220,4,91,99,155,95,82,144,216,19,133,159,181,60,31,34,129,142,88,110,116,225,162,77,196,241,47,135
 ,9,51,88,207,17,219,130,173,84,67,40,112,17,167,121,170,4,19,119,185,140,143,32,65,135,56,3,1,80,75,28,74,31,100,55,242,115,228,168,249,201,62,169,187,134,111,255,116,17,231,72,181,228,18,31,18,164,97,60,207,176,235,241,201,6,182,121,153,106,10,38,134,138,236,31,6,114,137,209,251,78,89,106,29,176,16,219,58,184,66,178,171,172,18,176,108,172,140,161,167,189,214,97,192,224,141,202,147,7,209,92,155,130,137,236,44,96,30,44,87,124,250,38,137,9,67,232,180,117,104,199,5,160,171,110,117,229,93,187,208,170,174,172,49,92,4,230,123,148,252,6,25,141,223,201,72,210,183,85,240,210,228,70,64,59,181,50,157,166,163,34,190,23,69,112,31,63,167,49,206,187,203,109,225,217,120,67,178,133,237,199,254,203,59,167,89,150,221,190,162,93,150,94,206,221,61,110,195,174,182,243,56,39,125,24,55,147,167,214,138,149,54,247,184,50,96,197,157,56,232,102,47,57,143,3,71,135,75,176,85,31,199,60,172,38,37,7,197,130,44,168,225,212,251,105,89,142,210,203,29,230,141,253,75,163,84,190,47,75,31,197,3,197,252,23,168,123,
 235,151,84,198,47,34,13,39,156,65,102,48,103,76,209,189,177,246,156,173,130,144,1,224,164,57,109,14,247,231,98,106,1,131,52,7,9,110,18,123,178,85,34,76,254,129,34,138,234,0,129,171,88,206,211,125,92,46,239,142,207,92,246,55,72,102,50,29,247,99,38,8,230,150,211,235,58,68,198,104,34,195,200,89,9,34,158,174,202,189,174,211,126,78,177,169,249,224,245,15,4,170,30,243,134,220,239,114,73,234,235,72,203,72,69,210,88,12,160,37,253,254,226,112,109,196,36,91,255,127,32,164,76,73,248,160,237,12,157,31,125,121,206,234,98,190,90,236,215,120,138,93,132,26,45,101,36,232,199,107,77,75,203,26,71,173,138,33,235,113,36,127,146,110,169,47,133,34,252,242,58,62,69,10,225,151,96,17,117,104,160,119,197,52,201,245,245,245,249,118,3,67,170,206,199,86,88,201,24,80,187,124,161,206,200,194,193,239,62,80,116,70,185,202,104,230,170,104,35,58,173,133,63,168,238,147,81,18,172,59,154,119,80,125,107,89,236,251,196,47,73,52,109,228,118,131,144,218,13,34,139,3,224,10,23,179,44,40,120,5,203,55,63,98,183,74,193,12
 2,65,63,124,22,54,45,112,160,51,126,93,40,137,238,69,216,160,90,68,102,185,55,188,151,242,155,238,171,146,95,110,101,84,12,110,159,168,117,53,14,128,97,250,221,150,121,71,65,103,201,116,110,162,122,219,176,127,166,74,85,96,60,154,212,132,156,39,5,117,43,233,234,88,79,120,89,47,119,76,182,65,30,0,62,11,207,235,208,234,65,182,150,65,15,164,222,159,117,232,241,204,32,211,166,138,217,109,42,213,179,212,39,149,207,121,192,51,222,53,142,186,106,21,76,150,49,158,242,90,149,150,79,59,150,200,26,197,253,253,240,42,114,134,235,109,90,224,208,35,51,188,103,174,126,197,252,80,132,159,47,39,12,162,0,244,229,203,98,167,171,14,42,110,182,251,90,135,119,128,205,245,145,124,162,68,114,182,156,95,82,114,211,43,73,131,136,12,254,253,133,164,72,89,55,55,219,192,173,218,232,113,252,115,138,77,230,75,52,26,238,202,227,224,179,210,203,29,242,239,121,121,4,160,6,136,179,166,28,193,138,240,54,128,196,144,23,166,219,100,76,140,145,107,117,9,27,250,202,88,37,243,19,243,9,1,217,233,206,93,169,224,222,4
 3,137,211,33,46,115,36,114,149,171,116,106,89,40,79,185,18,240,131,28,179,98,6,171,166,141,151,194,59,107,46,232,103,84,135,169,43,89,157,34,151,42,192,102,251,166,197,245,5,152,69,19,251,246,152,39,71,214,109,101,39,207,241,251,37,29,45,247,135,47,28,242,55,104,203,46,170,250,215,204,68,97,254,178,129,75,187,135,94,210,81,124,34,115,237,152,219,254,45,190,185,67,221,201,207,177,239,122,190,128,0,115,14,93,156,174,236,192,46,249,191,7,227,112,74,241,14,126,28,11,206,65,86,15,120,184,132,0,27,4,54,194,46,43,176,111,162,229,7,148,122,155,127,138,124,28,57,25,25,247,91,112,84,71,168,127,171,146,58,8,207,140,106,105,246,146,229,97,60,166,39,64,208,89,15,66,154,110,42,95,190,187,205,117,147,95,109,63,162,239,6,98,150,208,130,117,59,25,104,99,46,49,18,166,66,221,107,99,50,120,11,202,158,69,9,46,12,154,105,125,110,131,40,19,51,74,31,82,55,200,138,158,111,233,115,57,22,58,97,206,225,111,0,182,111,74,207,202,107,115,33,247,125,243,203,77,161,150,39,203,210,201,68,117,169,104,170,142,
 5,146,252,40,103,215,216,170,226,8,128,161,155,56,247,118,68,74,116,122,107,218,110,116,74,82,139,35,213,0,38,237,70,150,126,19,32,234,164,39,71,26,175,210,53,150,96,243,34,143,90,99,250,72,41,154,40,203,69,107,97,170,197,177,36,224,237,163,226,125,172,231,55,160,28,172,142,68,12,4,248,254,138,149,69,152,56,226,199,84,75,178,102,241,20,203,181,168,111,36,192,245,71,172,55,143,247,95,154,90,74,87,53,245,131,63,161,208,176,142,124,160,206,158,90,9,248,189,163,222,68,192,189,206,186,97,51,255,7,227,17,36,78,66,102,183,255,53,195,250,11,133,204,68,129,144,68,190,18,42,16,144,227,149,15,168,192,222,72,14,242,159,91,236,211,110,25,4,171,255,137,186,54,172,14,186,199,245,28,21,107,3,4,235,5,37,186,156,145,76,20,219,89,167,130,222,183,196,75,91,225,195,194,14,120,59,110,189,231,240,222,245,28,136,101,38,165,38,169,102,215,61,229,14,138,20,247,99,231,66,101,97,119,141,164,77,89,179,242,186,45,29,48,183,46,75,202,12,140,143,215,81,126,70,14,163,10,250,201,67,86,84,226,39,125,28,196,16
 6,92,101,154,98,180,222,204,144,48,81,248,23,18,76,96,35,71,163,191,188,163,115,96,12,50,156,148,165,153,115,172,13,115,83,179,20,75,54,181,248,184,148,187,221,223,244,236,233,110,251,238,37,186,153,18,61,133,112,199,23,7,90,250,104,62,60,133,16,105,97,162,182,57,123,186,51,85,143,35,155,135,204,34,216,135,165,206,182,18,189,234,249,24,156,205,31,20,100,244,192,178,30,38,150,110,68,226,185,253,162,58,26,53,221,0,131,93,96,58,22,174,172,24,217,14,24,38,196,232,82,255,49,244,190,147,146,180,194,102,124,57,178,160,163,155,83,121,159,126,99,120,174,219,165,128,46,152,15,169,9,6,35,47,182,124,167,146,209,225,26,193,185,218,155,81,81,133,244,229,181,69,112,186,56,41,132,26,233,62,14,191,49,57,187,190,70,216,66,89,78,146,247,157,71,53,200,156,18,187,127,145,133,4,212,239,180,92,130,198,22,194,93,222,99,206,167,201,81,224,218,98,148,157,75,243,75,161,78,180,127,239,122,198,126,38,147,215,58,233,81,129,43,107,49,19,247,120,70,176,179,110,10,99,131,171,245,124,156,82,106,145,197,92,17
 9,124,167,185,9,21,237,184,31,91,87,31,73,200,190,86,227,85,224,36,193,227,1,135,185,26,41,65,112,1,178,13,50,40,152,62,187,190,98,210,187,19,145,156,15,105,36,144,70,33,23,128,48,182,205,100,175,96,20,35,230,20,56,230,26,195,146,15,22,165,30,98,83,225,175,57,254,25,87,122,170,162,182,83,156,78,178,157,239,45,13,36,255,20,199,250,132,195,223,188,170,144,128,143,155,19,63,47,95,34,224,255,70,179,216,220,240,77,168,241,111,57,193,94,193,38,153,214,14,64,39,92,84,202,101,116,50,236,252,40,31,133,140,35,58,89,7,155,1,77,243,0,146,4,233,85,69,68,88,178,72,67,154,53,134,139,216,232,252,73,11,95,20,235,235,216,61,66,47,129,222,166,183,14,2,253,209,152,92,188,170,74,23,193,83,90,182,107,174,14,18,88,161,231,90,194,129,2,69,17,157,23,90,9,14,240,175,76,253,15,170,152,109,75,255,65,248,172,49,43,173,22,16,187,109,156,219,107,92,62,207,88,46,41,170,240,182,126,39,199,92,89,174,206,16,234,214,100,162,139,225,99,90,253,157,206,32,209,147,184,189,4,174,15,30,157,85,87,82,147,77,73,14,172,
 221,206,105,162,10,11,153,121,176,80,39,57,195,197,52,94,111,90,202,52,172,48,255,162,21,230,76,21,152,11,6,26,123,172,35,40,41,147,92,49,108,89,101,165,229,206,94,118,49,170,76,218,245,91,224,160,133,248,9,115,33,232,134,237,19,176,234,251,19,228,242,20,12,53,211,239,156,0,185,181,139,111,142,119,53,150,97,43,233,92,13,165,29,204,210,164,247,230,133,143,247,107,144,38,234,13,216,186,21,229,23,7,151,202,22,209,236,54,35,133,18,14,222,66,123,237,235,103,168,255,255,61,235,120,117,42,202,114,45,217,180,238,19,5,27,31,202,118,199,201,192,156,182,203,133,194,163,155,184,73,54,10,247,222,225,213,145,204,247,14,117,1,196,145,63,222,238,37,150,3,55,155,95,125,46,114,134,0,243,25,184,98,181,25,65,151,247,100,48,44,54,89,220,126,231,175,79,253,11,87,207,79,254,214,48,71,135,73,30,13,246,101,110,46,98,72,107,144,101,111,221,130,127,89,91,231,177,253,91,173,217,172,21,67,82,6,132,110,253,34,42,229,147,147,151,202,144,68,29,58,239,36,154,204,4,57,254,167,72,122,84,22,89,227,22,136,196,2
 28,180,5,185,114,16,225,94,164,51,3,246,166,177,26,117,98,136,150,123,138,230,57,172,91,64,219,252,31,179,29,27,164,69,109,231,49,28,18,9,204,45,19,194,187,196,184,203,121,98,55,135,75,134,109,37,59,102,129,77,107,105,20,198,61,186,154,81,30,155,45,171,56,103,0,63,167,65,125,62,109,197,132,119,38,31,34,124,226,139,255,226,16,82,176,87,158,11,125,222,200,164,162,130,60,205,97,119,171,17,235,126,141,50,47,252,108,180,119,113,68,242,211,73,46,82,112,161,241,236,182,244,91,10,217,253,53,225,80,206,157,192,51,35,79,111,126,18,211,180,128,142,214,234,40,50,170,6,226,236,184,153,130,181,124,87,110,8,118,198,216,136,41,143,205,43,41,66,68,24,232,18,24,237,71,162,139,244,211,199,19,250,44,31,114,17,189,65,79,109,120,28,73,122,26,20,36,14,82,111,74,120,68,35,190,43,204,7,103,38,77,52,61,50,40,229,13,183,154,174,134,83,88,175,97,55,71,14,59,255,97,21,94,47,249,116,99,164,142,37,92,126,200,57,100,151,154,108,36,138,215,81,133,228,204,223,194,70,243,94,49,45,149,225,33,64,222,41,104,200,
 31,128,220,93,194,99,81,118,46,19,50,105,18,201,46,8,221,181,187,99,119,163,12,166,73,106,38,106,167,69,210,84,74,124,134,79,54,57,90,188,106,55,38,168,181,119,88,45,223,41,39,67,25,250,182,199,163,0,154,175,150,224,76,219,221,203,122,125,30,81,74,185,225,102,107,87,42,66,16,31,125,179,48,201,255,219,155,215,4,242,178,112,186,101,220,148,189,45,241,188,62,201,162,117,242,186,19,252,204,231,110,16,84,3,241,211,125,67,138,78,148,179,209,158,103,76,161,104,157,21,199,80,12,242,236,41,81,20,111,106,28,174,227,70,224,34,71,94,243,67,13,197,70,249,235,93,233,126,27,186,124,219,45,53,134,207,203,205,243,1,173,154,74,233,168,17,201,119,9,91,165,53,220,196,56,127,141,100,136,10,138,107,155,119,57,52,75,5,243,101,218,191,201,114,227,47,82,10,0,152,2,174,31,208,81,95,7,88,62,24,59,130,11,8,183,196,34,161,18,164,239,19,50,128,110,161,235,87,147,71,219,12,136,39,36,196,249,253,178,64,248,202,1,17,121,65,234,181,140,186,214,100,135,98,95,19,245,50,132,191,61,2,173,32,11,81,218,132,244,1,2
 29,225,25,252,248,18,172,163,197,139,173,92,237,13,27,115,136,59,49,135,83,175,93,172,188,14,131,236,51,43,202,219,15,37,44,230,12,243,225,29,128,19,29,143,138,19,199,82,163,25,97,215,186,17,228,147,150,152,185,2,150,25,46,130,87,185,194,54,186,88,48,180,181,203,140,5,85,241,235,77,49,34,113,117,31,46,236,77,219,237,155,72,221,35,169,196,1,85,160,163,175,223,209,117,40,172,115,50,245,210,186,89,212,68,143,182,227,242,61,179,88,35,121,56,29,175,188,87,182,211,98,62,218,109,147,219,167,53,133,104,151,85,223,144,59,227,96,200,64,247,2,152,43,247,69,23,12,210,157,240,187,163,225,231,22,183,211,165,212,156,194,192,65,2,129,101,135,145,171,10,2,80,248,194,121,13,163,92,60,164,99,250,220,251,221,181,247,36,96,113,101,6,89,95,60,221,121,163,144,170,246,149,87,236,132,174,190,185,74,196,228,88,225,211,239,119,3,211,165,124,237,10,180,35,217,8,252,186,9,137,88,88,11,105,225,223,194,1,100,162,10,233,196,251,225,8,169,161,1,32,42,248,192,94,242,192,49,54,111,173,169,153,23,161,187,155,1
 66,94,191,239,160,56,134,22,75,143,68,1,132,97,216,211,49,242,148,187,179,167,146,254,204,190,60,19,131,191,228,54,177,200,154,48,132,245,235,19,206,120,15,19,20,86,18,173,199,117,88,92,206,198,11,57,81,139,152,209,161,206,28,27,91,171,5,120,195,69,51,132,198,12,185,79,36,110,24,193,47,81,202,64,199,0,234,116,0,11,208,63,114,117,129,92,225,252,94,21,73,95,2,250,178,55,164,11,189,5,56,116,144,58,231,115,240,223,64,172,75,177,168,231,113,196,72,32,254,55,76,192,109,125,247,164,160,57,4,22,128,45,61,149,112,224,20,74,99,47,46,141,215,177,42,245,54,157,87,220,255,56,123,79,38,142,72,160,76,81,103,176,114,28,54,251,93,170,133,216,80,196,228,138,170,86,167,186,201,13,204,190,179,182,190,163,169,174,217,249,182,114,133,189,240,22,109,58,184,5,246,236,192,251,41,242,30,171,168,39,209,148,117,217,132,24,35,186,92,117,154,136,87,232,42,85,159,205,86,79,51,248,65,130,21,187,113,19,192,121,23,113,0,19,173,202,209,197,143,226,2,228,163,71,204,57,199,165,58,55,195,166,149,136,23,255,27,11
 5,44,10,39,118,248,146,115,142,98,143,83,122,25,222,110,95,124,246,255,182,108,55,126,177,155,128,25,196,40,93,80,154,120,58,115,35,200,77,82,138,27,34,25,174,207,220,72,177,168,110,105,108,56,33,116,178,126,26,246,202,157,204,182,236,48,51,202,194,77,203,97,74,56,108,96,181,133,149,47,224,52,177,146,123,168,243,84,155,19,199,2,129,104,230,19,143,195,57,122,101,161,196,86,183,125,245,39,181,246,189,182,251,168,193,216,116,211,119,252,138,235,180,110,111,8,209,82,87,187,114,207,58,247,201,82,229,59,251,113,245,255,215,104,149,128,219,140,41,30,117,80,13,187,212,67,95,172,97,122,65,252,128,40,25,168,148,48,211,72,175,143,27,84,163,139,141,120,223,56,224,36,174,130,156,235,251,65,69,28,91,149,29,130,77,52,242,124,119,117,241,92,171,69,174,177,139,228,97,185,52,118,14,247,73,73,198,115,135,140,148,148,6,179,115,38,1,69,128,133,167,6,118,117,67,111,148,172,129,211,100,56,165,75,178,184,156,54,186,246,153,52,97,28,145,63,35,21,161,123,84,23,33,213,81,74,59,192,159,67,246,185,158,2
 03,219,187,43,138,145,23,142,158,18,44,95,234,94,200,167,194,51,74,99,202,174,25,25,206,170,140,21,167,182,37,194,64,113,104,196,153,124,95,101,126,143,221,245,187,151,99,102,90,64,139,10,89,4,65,226,145,159,238,209,122,110,127,168,47,204,148,136,205,123,94,229,174,136,67,15,237,123,71,238,126,198,143,200,219,204,175,129,84,221,255,41,230,80,201,9,225,89,18,234,42,105,191,52,227,77,209,136,38,247,168,173,21,3,180,150,44,23,212,56,30,65,119,208,248,22,78,200,91,176,47,63,147,173,147,118,46,189,206,139,56,19,159,118,178,187,59,210,252,205,62,0,176,48,86,136,164,64,144,44,36,100,213,58,210,196,248,107,4,105,155,104,1,60,91,45,119,8,34,79,47,132,152,144,96,53,233,131,38,148,102,174,200,237,195,16,206,123,161,22,119,48,241,168,153,109,68,19,10,7,207,190,161,189,118,169,209,112,50,73,254,240,173,183,235,164,37,24,92,194,240,16,133,243,66,203,71,171,94,182,130,219,137,89,140,208,216,12,139,52,29,192,197,12,252,204,205,14,221,140,205,80,178,142,38,100,57,175,96,26,114,35,45,188,180,
 25,202,216,207,44,122,6,11,241,205,82,17,78,224,32,71,93,255,183,96,63,2,214,132,148,134,91,207,19,248,219,219,250,238,102,198,57,143,226,126,177,215,37,53,156,244,66,17,210,99,252,199,192,177,226,57,244,112,28,60,156,245,247,9,141,194,102,105,24,201,160,76,65,84,19,171,140,84,248,89,87,117,251,69,195,92,255,116,152,0,50,9,194,1,139,145,32,46,144,5,75,57,195,186,204,112,243,21,169,5,191,173,86,149,219,82,22,229,250,32,63,87,25,244,10,18,98,199,90,191,78,111,10,236,165,185,253,86,177,101,18,71,93,117,81,57,20,193,239,114,171,131,143,203,227,82,81,232,10,225,148,173,144,57,17,244,204,154,86,103,20,0,116,2,19,41,239,181,156,35,134,99,109,64,148,253,77,138,5,109,12,82,9,254,30,79,62,19,212,92,7,192,40,249,190,175,215,244,255,44,17,78,59,113,14,240,19,39,81,159,70,88,24,74,96,40,189,32,164,81,97,71,102,210,169,109,28,20,76,120,179,222,150,204,123,26,52,151,149,238,207,80,6,251,234,17,188,48,78,147,56,49,10,211,12,211,22,48,142,166,159,2,66,69,158,172,115,101,234,20,42,184,52,250,
 235,43,41,166,171,244,44,188,28,108,123,75,37,97,88,232,217,163,208,231,227,35,65,196,62,36,151,215,18,222,16,227,109,219,5,187,42,36,205,71,55,236,215,211,229,252,146,236,152,76,12,104,83,45,218,228,87,92,92,212,150,202,147,236,20,0,247,114,218,71,155,64,239,208,15,193,36,20,154,117,138,11,81,7,69,176,50,1,159,79,210,159,67,32,210,152,62,50,238,25,154,236,247,217,242,162,148,158,204,201,47,220,222,60,34,111,39,125,154,152,101,241,95,221,146,25,116,86,87,8,70,128,21,39,235,196,171,109,123,78,221,126,184,232,236,14,44,250,241,44,207,252,11,130,234,3,70,254,43,102,189,229,176,103,48,118,87,241,64,74,51,52,111,244,19,78,71,130,225,91,208,50,5,136,52,21,56,79,73,193,252,57,147,101,66,4,212,45,44,231,18,140,183,39,180,9,76,41,133,163,133,181,147,155,143,163,145,120,150,105,49,96,181,104,179,107,109,70,68,249,111,77,175,6,103,152,219,77,235,180,37,205,246,133,61,228,198,180,14,233,111,222,97,123,236,42,137,10,132,164,191,149,207,205,210,196,107,236,83,23,176,135,15,45,95,224,28,21
 7,112,28,201,227,198,10,1,101,75,223,198,3,87,15,205,134,21,130,197,255,142,79,33,147,19,56,252,76,190,121,39,172,5,234,177,52,205,76,152,179,7,5,139,58,24,198,94,38,208,5,103,247,44,244,170,231,106,60,245,223,60,18,176,48,110,39,89,53,56,96,74,159,98,104,48,26,132,101,204,189,193,148,225,142,105,188,251,41,96,153,158,19,8,163,89,134,155,195,229,141,0,60,135,246,227,139,34,18,143,178,48,236,244,29,173,144,186,154,233,14,237,94,165,178,137,95,236,192,133,1,105,163,75,153,136,170,106,226,216,21,154,76,119,244,25,18,134,201,7,236,24,166,243,242,163,181,68,114,39,33,196,10,80,137,66,216,58,16,34,173,186,76,91,211,210,169,218,199,30,234,243,193,229,166,44,142,92,25,182,193,244,91,165,50,148,238,158,231,177,142,39,94,188,83,128,182,101,139,132,213,140,213,139,125,79,54,237,49,51,57,15,39,97,209,161,61,129,61,82,136,145,250,214,75,213,170,188,89,149,236,145,146,89,116,157,229,109,41,236,156,36,21,184,87,154,253,193,207,173,126,58,23,138,82,235,188,83,93,112,86,173,219,14,58,20,148,
 121,177,41,182,73,96,25,162,208,245,152,100,163,6,61,162,8,185,140,39,223,96,100,134,193,164,214,41,68,132,212,244,113,136,245,142,95,10,105,132,98,163,226,231,161,248,244,128,73,68,34,19,94,15,109,92,57,196,48,193,210,9,155,196,253,243,234,111,138,251,205,55,10,117,14,30,162,141,72,97,106,87,184,59,80,194,248,239,78,33,56,8,187,2,173,64,61,225,214,88,93,32,72,136,74,139,80,234,19,17,43,179,25,212,147,173,141,234,54,207,128,208,76,213,142,60,155,2,218,149,85,170,127,48,248,77,156,152,188,43,111,109,209,86,15,28,136,248,109,58,168,156,37,188,39,81,107,48,44,140,204,222,73,6,13,82,4,232,201,184,18,220,0,30,244,23,54,38,52,80,233,3,78,215,247,179,91,83,78,186,243,18,59,22,162,218,53,247,221,70,126,15,153,215,201,81,68,195,75,22,111,153,23,200,31,204,198,89,211,52,116,6,241,15,161,65,98,70,217,179,116,77,24,251,140,215,178,26,61,165,71,195,76,144,81,113,221,144,132,63,38,6,60,31,144,230,119,109,196,213,44,71,240,254,56,211,47,140,192,80,248,123,21,111,25,65,109,224,84,73,209,68,
 118,254,92,35,116,43,225,86,251,186,252,168,234,204,226,112,102,206,229,164,2,249,52,230,72,116,132,144,242,197,68,45,17,118,176,229,72,43,75,108,80,105,150,145,76,231,120,24,84,22,44,191,245,87,50,135,143,24,62,11,244,78,95,108,218,59,224,54,215,148,88,63,59,187,43,213,173,60,172,24,255,10,178,160,130,57,1,255,189,96,158,164,235,77,47,171,206,106,38,220,18,231,84,243,56,101,225,196,78,158,49,52,156,92,181,227,12,108,115,71,202,206,11,8,59,218,161,127,236,185,14,138,201,107,207,201,58,206,233,28,136,244,215,163,113,57,38,43,53,16,106,172,95,37,41,224,148,201,156,126,104,217,23,128,106,47,207,180,252,153,24,10,146,234,190,48,109,8,15,137,61,149,87,17,37,249,71,218,169,15,180,181,235,79,245,33,15,210,201,57,187,220,14,20,80,1,23,126,140,96,252,29,62,69,21,66,118,206,14,238,168,58,97,229,246,161,120,140,169,121,115,127,183,103,3,148,91,30,129,36,96,169,19,61,16,145,11,167,199,228,111,62,49,101,147,67,255,218,152,43,154,102,252,194,121,1,199,223,99,239,73,140,22,121,93,144,153,6
 6,19,203,133,125,11,178,82,172,8,235,142,231,149,57,206,128,29,190,88,64,152,39,61,87,161,197,3,178,136,168,222,94,69,122,130,124,201,19,110,249,4,9,77,159,231,92,106,105,144,203,233,222,169,65,52,220,172,206,104,213,29,252,2,243,12,200,246,183,46,20,177,180,175,157,215,84,221,181,83,69,245,33,181,253,104,233,209,127,129,74,10,224,13,110,37,66,247,63,254,111,82,104,150,228,111,246,48,128,242,40,39,250,64,24,169,108,111,160,97,227,145,148,214,71,204,183,236,134,137,45,33,224,228,152,102,224,128,155,9,218,245,227,234,158,136,10,90,170,14,170,225,236,76,69,207,28,214,212,236,219,199,172,124,13,101,23,8,128,76,214,23,150,102,210,59,196,18,71,127,103,230,79,150,170,162,43,245,104,79,183,183,39,248,21,22,55,29,32,235,27,239,74,126,3,181,192,38,211,91,65,232,237,115,125,56,48,254,214,30,42,14,91,84,115,60,140,206,179,0,22,29,203,168,113,173,90,43,54,208,100,103,185,120,244,139,125,97,227,55,216,95,56,119,18,118,139,62,175,82,85,82,55,198,19,217,214,230,2,128,79,178,250,17,161,93,19
 7,148,59,63,67,164,10,14,118,45,15,116,165,171,110,151,124,75,243,37,60,187,140,175,88,174,108,104,8,97,241,50,125,118,186,54,17,174,152,70,127,213,205,181,86,21,25,111,224,95,144,210,113,112,35,221,43,76,31,36,208,239,12,119,225,41,176,148,80,191,181,124,75,43,2,96,107,232,10,67,158,197,103,139,72,77,150,32,124,43,12,61,49,91,197,28,85,51,245,176,131,113,148,10,223,33,34,84,42,197,129,34,112,112,139,145,31,173,103,76,218,49,201,14,167,194,187,130,85,122,252,156,54,217,24,173,52,148,167,237,38,120,131,235,173,23,206,76,168,224,49,188,23,145,254,88,183,192,239,170,135,233,31,245,205,83,248,150,42,161,147,46,169,93,252,39,129,32,63,191,233,9,53,69,230,65,207,139,164,63,207,235,46,41,55,174,170,145,41,52,33,172,226,201,132,221,38,89,68,81,155,221,36,98,240,145,73,247,148,189,94,0,133,116,78,181,108,37,153,145,215,141,102,234,153,236,112,249,50,40,230,198,4,182,171,52,101,242,24,137,121,117,61,46,180,225,148,0,208,173,53,73,196,91,203,125,236,207,98,150,75,141,65,105,155,240,242
 ,22,48,80,110,80,30,42,203,52,144,219,83,85,121,39,70,236,22,72,187,236,68,164,118,122,51,132,113,84,137,0,199,150,118,210,36,170,209,128,224,204,27,177,69,197,150,25,42,43,249,179,93,222,205,163,22,15,33,106,14,4,250,207,190,142,79,36,200,204,25,24,0,23,224,168,81,78,39,124,148,238,250,252,121,188,86,204,93,246,204,75,162,135,192,194,156,197,189,11,240,96,91,192,115,210,35,8,69,22,214,98,137,245,129,108,227,149,201,80,103,167,1,208,174,95,198,5,15,58,76,64,54,169,213,232,216,98,113,87,139,238,97,17,224,70,44,42,119,84,141,242,82,134,220,94,181,242,108,130,31,205,66,246,9,161,8,208,115,250,51,153,165,73,252,10,208,222,181,241,204,187,9,114,44,90,185,181,226,193,146,171,26,136,54,137,230,227,99,23,74,193,218,91,180,192,71,151,53,64,61,124,225,188,63,187,62,235,101,39,40,151,108,107,126,143,133,17,129,13,200,244,244,206,145,70,95,111,28,206,0,45,109,141,69,94,201,251,167,111,216,48,235,131,165,214,246,163,232,108,219,33,135,149,59,210,254,87,238,219,227,52,139,8,141,205,19,109
 ,41,253,72,7,58,188,162,104,253,192,165,201,58,99,249,218,242,191,43,110,65,222,177,172,46,172,128,238,97,80,8,145,110,183,28,158,32,218,77,80,10,62,60,156,91,213,213,79,144,84,204,151,20,175,102,254,45,150,173,2,147,64,242,2,20,151,16,212,13,125,49,83,243,87,140,211,189,142,8,213,58,5,202,230,62,69,108,91,42,207,8,69,25,146,127,188,181,91,134,250,162,150,198,230,185,178,65,65,33,1,18,24,134,223,238,82,59,166,197,154,239,222,178,125,46,177,2,205,44,224,161,168,151,238,228,233,212,117,188,217,226,194,2,189,153,102,70,136,98,17,22,45,107,30,182,117,150,213,188,237,56,59,178,229,5,170,25,148,250,225,249,8,212,13,215,130,163,53,104,58,189,252,132,243,156,228,216,66,18,8,48,231,139,91,114,199,245,238,250,233,61,95,157,37,234,19,80,182,3,243,63,24,154,147,176,153,53,202,13,232,80,167,151,53,209,36,216,10,230,192,5,137,14,127,133,4,51,142,83,18,193,114,219,112,120,127,148,253,80,43,157,12,235,189,34,7,14,199,42,132,82,22,62,217,160,70,114,218,15,236,185,35,194,87,135,143,140,204,73
 ,223,87,166,184,16,210,172,89,9,71,54,163,118,105,129,151,233,192,9,195,93,81,125,105,202,42,239,106,84,149,22,250,39,114,82,39,63,50,167,91,81,141,243,127,120,244,161,162,194,43,156,114,176,167,133,206,145,51,17,61,77,133,217,33,25,99,181,111,110,191,81,140,88,48,25,49,26,248,85,36,98,55,175,126,206,17,245,39,207,10,124,16,43,206,67,35,98,153,111,23,81,174,218,140,57,59,47,59,55,64,111,63,116,15,60,162,229,115,82,23,180,159,243,177,142,212,111,237,3,24,214,69,228,148,54,1,77,191,162,107,29,26,243,129,182,217,216,131,173,230,15,18,182,230,171,218,220,29,173,170,250,95,196,174,240,100,42,208,198,10,230,166,239,163,153,220,184,145,202,117,42,255,186,73,222,42,21,15,194,177,9,32,171,137,121,165,146,82,104,69,171,232,161,161,149,248,113,248,208,67,250,129,14,219,19,167,142,179,62,236,73,255,56,107,196,146,140,186,162,200,213,195,119,55,105,97,51,38,112,243,202,132,168,128,226,112,24,132,183,62,93,244,79,58,96,197,102,73,246,236,224,71,202,122,153,219,124,228,30,122,23,188,102,24
 2,54,161,214,104,247,67,70,192,246,252,90,119,105,142,132,182,14,80,94,52,137,164,110,70,92,159,212,86,141,115,226,97,63,134,166,34,147,223,57,186,94,78,40,167,56,171,224,67,174,199,230,89,13,191,64,42,173,114,147,186,129,3,138,219,249,9,42,101,235,14,88,2,215,56,146,0,159,20,113,211,124,92,24,84,95,109,229,231,222,229,151,200,141,234,18,245,182,60,121,155,115,46,18,124,112,155,59,54,176,36,130,147,14,22,246,81,211,58,238,39,237,37,250,234,52,91,188,76,29,24,155,177,42,79,252,244,145,169,205,150,244,115,2,200,188,196,4,252,215,20,111,71,176,246,115,207,193,183,178,67,129,118,245,212,44,187,63,101,185,220,42,162,150,75,69,3,28,239,16,198,182,5,24,63,201,97,218,174,137,56,106,58,181,108,39,15,251,128,253,20,5,242,141,218,222,232,164,10,95,218,65,66,8,222,98,92,205,6,227,221,183,198,212,61,250,251,242,243,55,7,253,75,216,139,71,55,6,161,98,145,150,194,29,96,216,201,138,24,235,142,250,201,135,130,255,125,30,98,103,121,193,71,112,62,253,215,74,87,91,138,95,180,63,99,104,157,172,1
 93,157,242,202,176,31,207,129,189,209,177,57,62,172,253,165,101,244,17,169,182,121,21,251,104,60,255,114,10,235,38,239,37,115,19,212,176,94,133,226,118,26,162,5,220,111,108,252,150,96,203,192,115,23,4,39,82,247,140,12,106,146,228,197,120,174,8,154,240,226,237,225,77,81,148,144,178,79,110,101,108,241,105,36,61,14,88,226,222,191,163,156,82,34,136,86,227,238,85,161,7,108,198,30,156,209,67,224,202,158,81,250,249,93,72,14,16,159,134,226,130,223,104,9,188,27,99,5,184,67,190,69,202,143,152,166,224,102,7,69,14,84,163,165,95,16,172,217,245,175,46,253,174,73,239,26,133,175,18,249,78,210,254,230,151,38,254,190,160,218,118,135,230,181,208,46,162,225,75,24,62,44,76,144,244,69,235,52,91,227,63,62,117,44,167,28,37,172,223,245,148,218,77,162,7,232,249,159,244,35,47,129,21,51,164,172,198,98,142,158,107,184,187,239,106,115,87,57,151,194,41,75,254,234,129,73,24,69,175,67,51,201,30,139,38,225,251,10,55,223,120,14,156,215,250,80,28,37,241,117,87,72,245,149,37,22,231,41,97,60,44,67,247,198,91,235
 ,72,38,114,249,220,249,70,114,216,157,169,217,58,199,31,48,220,179,122,54,144,67,91,39,177,178,94,228,151,98,3,21,212,252,209,196,33,135,205,177,19,81,127,18,59,156,21,78,189,71,110,174,22,40,127,222,211,141,187,20,245,99,254,24,213,105,81,4,214,220,240,250,134,176,183,30,122,110,119,188,168,83,60,133,237,96,145,192,219,77,106,68,184,44,41,249,240,106,156,150,239,55,210,183,126,235,5,184,108,72,220,229,135,165,168,186,34,45,15,178,27,108,216,15,243,161,123,193,133,241,143,244,40,60,114,220,204,168,119,85,103,98,253,0,144,199,102,24,117,74,143,23,89,225,247,197,197,13,137,35,105,215,9,208,184,249,244,187,0,113,142,104,219,2,119,173,36,108,47,19,245,185,90,197,125,14,160,27,183,63,121,55,216,124,154,56,157,54,162,163,142,23,151,56,92,171,163,122,85,24,203,189,204,195,119,125,239,144,70,235,210,224,161,231,48,94,211,77,51,109,131,227,99,163,13,20,163,128,39,28,60,70,219,124,225,197,212,250,247,166,221,177,245,201,92,18,87,152,55,2,193,153,249,173,51,155,201,87,123,149,227,239,1
 39,127,161,87,149,246,37,174,214,82,53,198,56,18,159,77,190,24,66,106,58,198,179,119,153,16,166,184,156,239,210,249,82,27,141,242,74,159,167,98,210,94,140,174,134,66,249,118,79,56,194,6,109,241,197,56,148,154,237,20,35,17,229,137,36,8,37,203,69,237,169,172,155,200,74,101,161,20,1,187,24,239,62,4,52,182,208,140,39,182,136,60,144,110,231,26,101,90,215,117,82,224,194,205,16,179,192,89,179,105,49,176,252,99,99,235,81,38,162,71,175,128,81,7,160,141,142,61,156,157,176,141,111,216,74,169,90,155,151,235,189,139,106,127,117,227,28,118,132,0,212,219,228,230,213,38,193,115,212,115,188,6,219,164,123,95,122,214,228,125,151,10,9,18,45,179,95,169,62,187,174,192,210,121,113,129,126,89,255,164,250,13,126,250,38,15,184,124,17,47,150,32,251,65,218,108,250,124,6,173,124,38,230,193,90,105,120,20,73,1,248,38,96,112,140,224,156,193,127,58,21,4,243,34,88,142,254,161,184,248,43,41,226,204,125,106,215,82,169,86,0,210,79,104,82,248,168,91,216,90,230,162,6,122,60,79,174,198,246,255,245,196,228,180,45,1
 32,83,95,53,247,2,249,139,149,61,234,72,254,123,84,104,163,38,197,240,169,85,141,250,76,45,79,17,217,80,186,102,33,45,33,36,187,236,30,225,130,158,236,199,218,34,90,142,70,139,4,164,232,236,187,65,199,145,224,171,50,81,186,205,1,26,26,115,34,118,158,6,228,179,91,106,248,203,156,193,78,111,66,97,250,170,225,227,10,99,20,97,120,152,195,5,241,53,155,203,40,195,14,161,251,39,54,153,223,156,13,185,121,135,76,184,123,13,134,19,2,24,191,128,126,129,107,118,42,6,145,131,21,23,140,172,138,40,56,177,179,24,134,230,35,19,225,71,253,165,58,87,68,220,99,202,81,97,91,38,153,92,56,101,66,22,135,96,72,35,159,36,19,174,248,165,255,65,195,109,121,58,102,170,44,146,121,144,185,132,90,157,53,203,197,9,49,216,25,164,171,7,206,82,62,155,114,95,188,196,243,94,171,85,222,107,179,160,21,74,201,227,184,160,68,208,79,243,95,162,115,201,235,25,123,162,158,150,218,179,170,144,45,69,134,123,167,59,103,201,50,6,112,37,1,118,167,25,44,77,9,217,230,116,119,0,108,68,231,232,244,142,76,69,111,142,188,212,68,8
 5,56,6,120,87,176,5,157,170,227,191,232,227,19,227,120,89,99,57,177,166,56,113,139,205,22,87,105,34,11,154,223,87,96,129,89,127,244,122,108,224,44,185,184,179,254,23,161,248,69,53,101,208,194,214,149,72,62,231,68,92,152,2,0,235,94,93,255,236,215,22,155,85,136,179,16,213,173,156,127,200,86,63,102,189,62,202,216,188,239,200,86,153,107,31,131,183,34,195,175,108,230,209,147,17,16,128,237,67,24,223,139,171,75,21,124,13,240,78,254,188,203,57,104,108,116,145,91,35,243,10,165,111,7,24,152,60,37,196,244,90,4,136,57,79,10,159,103,120,206,181,117,170,101,248,48,13,115,80,8,76,70,109,171,11,184,87,23,108,79,111,72,19,78,125,32,201,68,4,104,228,115,34,182,185,105,40,54,240,167,78,190,149,214,161,152,30,66,170,242,18,76,196,62,17,140,17,21,189,113,247,143,205,230,215,43,139,78,35,75,202,162,141,199,148,89,56,199,209,80,164,167,80,187,221,152,105,42,69,83,156,175,247,212,189,213,111,28,94,198,61,60,209,244,24,209,144,59,198,0,139,248,2,38,112,32,175,181,78,215,7,34,160,187,0,144,111,66,72,
 245,247,205,162,165,33,171,223,216,14,14,79,161,52,246,244,32,69,63,186,224,184,77,58,197,17,76,26,179,185,185,105,53,22,240,141,198,36,169,62,242,76,60,141,212,65,193,184,139,170,52,100,1,8,245,95,202,147,30,54,192,21,79,221,190,71,29,50,119,30,76,112,244,165,108,186,72,238,165,201,176,90,27,96,209,232,165,169,52,73,9,137,4,53,73,137,83,172,137,158,150,124,66,7,28,63,34,130,110,64,172,171,20,175,250,5,232,48,53,161,238,218,249,186,221,65,17,106,45,66,123,153,23,16,168,21,14,191,234,77,208,251,200,8,3,241,101,104,51,192,181,168,242,166,248,162,152,198,89,220,146,90,18,28,42,219,236,95,75,215,141,94,10,91,188,93,123,154,160,92,166,69,22,181,122,246,177,155,15,242,136,92,4,150,7,80,77,123,4,22,3,96,106,249,242,33,0,42,252,244,129,184,246,26,143,63,106,50,101,240,96,233,244,96,203,196,203,192,84,160,67,84,185,127,175,228,143,190,22,123,129,193,206,4,79,126,47,94,8,131,252,201,102,41,185,195,221,7,23,15,78,198,116,80,199,255,167,32,123,58,9,113,98,248,125,48,254,156,220,2,212,54
 ,222,40,145,123,86,106,124,32,170,14,215,127,4,249,105,125,150,128,251,158,38,208,186,24,229,123,175,222,187,158,180,164,206,201,166,1,92,45,223,71,19,183,209,250,94,87,127,170,158,69,135,67,222,11,94,18,20,183,7,241,24,236,79,219,189,135,175,39,183,112,23,137,50,217,115,255,27,203,35,187,224,71,88,131,85,7,133,9,148,10,77,83,165,148,109,234,205,88,158,59,41,4,66,137,67,7,213,190,221,52,46,242,231,42,2,1,16,209,182,73,237,121,220,40,6,123,105,81,167,242,240,94,126,64,255,118,106,83,43,18,120,248,152,247,66,222,27,72,23,208,139,68,135,220,60,122,115,169,109,75,87,136,124,127,69,211,211,72,206,200,16,178,10,123,18,248,25,251,151,22,238,129,191,188,226,238,78,69,91,67,147,49,149,69,110,108,187,129,216,189,87,233,90,103,9,254,194,158,34,221,11,29,53,42,76,168,129,163,232,212,100,58,24,54,48,26,38,231,13,59,190,35,113,51,173,69,192,101,124,52,123,37,6,187,145,233,200,88,40,50,133,163,132,151,135,168,58,158,27,51,16,107,114,239,92,255,132,215,49,29,95,148,252,227,235,143,130,173,1
 06,137,152,46,176,155,199,203,200,115,30,166,184,33,184,37,195,141,105,5,73,233,219,33,124,85,184,214,175,71,1,74,222,252,240,135,102,194,177,233,212,135,139,176,204,255,30,160,10,158,161,119,30,229,253,30,43,197,186,214,123,88,209,40,85,226,22,178,110,16,126,229,157,216,79,27,40,167,108,85,58,112,45,78,122,9,137,60,212,169,84,184,133,60,10,42,12,16,41,79,32,70,50,71,170,1,188,3,173,147,234,76,240,101,99,154,61,159,69,116,101,219,166,133,215,160,116,22,222,18,122,78,132,139,59,117,30,116,3,232,147,243,161,55,152,166,33,118,76,135,42,151,84,253,85,237,0,85,107,245,140,155,225,86,153,152,156,21,60,81,136,67,255,160,91,231,223,168,212,214,212,69,141,179,180,141,97,211,147,232,137,101,97,231,26,230,77,33,84,147,157,227,152,250,137,200,33,192,197,226,79,1,101,131,107,215,223,178,41,6,230,1,33,218,164,172,169,143,115,222,104,34,18,15,110,18,230,30,139,243,153,0,230,58,199,16,237,168,51,35,4,180,237,187,190,71,82,55,32,214,125,69,225,169,155,154,33,125,138,168,88,126,207,228,177,34
 ,21,29,208,126,215,41,126,192,61,154,9,224,123,220,109,1,137,170,136,52,19,36,233,228,255,107,169,65,218,87,129,210,0,118,215,191,131,56,157,130,204,159,59,208,157,20,180,169,52,7,242,80,57,240,187,130,186,75,27,8,137,90,171,63,57,31,206,214,106,34,8,27,245,230,7,126,24,150,67,159,141,91,120,159,106,13,3,43,171,249,26,145,248,180,231,164,146,2,250,29,131,94,249,188,50,47,107,215,100,175,109,26,146,90,64,103,207,239,111,173,227,255,103,26,166,15,235,216,171,46,6,48,63,204,5,56,34,47,93,191,74,209,196,175,211,22,10,32,131,40,199,254,148,213,197,174,115,20,84,38,105,111,183,96,100,179,66,46,202,83,247,46,146,0,65,222,90,146,120,156,175,117,84,163,98,93,23,53,172,118,82,52,122,65,190,180,207,147,215,143,12,82,71,92,193,102,221,148,158,181,215,218,246,39,158,166,31,131,177,51,253,76,116,190,157,131,204,82,223,167,240,172,11,127,211,250,21,120,77,250,21,235,160,185,91,18,25,10,217,208,222,75,147,6,36,27,40,136,225,66,83,180,84,45,40,253,251,156,233,88,197,208,194,175,78,17,240,51,
 143,114,83,201,116,209,105,223,31,43,94,85,208,52,175,170,183,132,68,170,45,241,93,117,194,4,50,147,39,203,221,169,16,55,144,240,63,30,14,118,46,99,90,149,138,159,51,50,48,60,208,113,86,226,17,28,108,218,69,243,101,62,179,164,240,88,146,238,66,240,187,30,38,10,28,81,180,141,144,74,58,63,197,251,142,157,73,165,198,128,178,176,129,59,75,162,65,218,117,104,240,0,153,168,232,122,228,246,111,80,196,242,100,8,240,85,80,233,231,249,234,159,231,99,183,53,234,63,107,190,188,102,70,23,207,65,102,207,221,115,224,18,133,58,96,168,172,199,59,54,216,163,170,214,241,128,40,80,210,53,162,102,62,162,179,107,144,58,181,2,127,66,197,195,179,218,12,101,137,225,220,250,137,232,50,134,66,144,189,212,124,76,92,116,146,173,161,231,22,150,145,201,100,190,23,127,34,81,18,241,139,203,53,171,135,4,151,169,45,3,28,107,221,141,227,190,82,0,55,51,168,110,12,134,11,54,74,50,20,23,86,130,48,52,161,119,165,238,175,52,149,8,8,48,211,21,55,47,4,134,225,110,41,228,121,41,201,68,121,27,59,191,236,24,181,211,77,1
 92,87,130,1,113,96,228,201,166,61,89,89,93,152,195,101,130,152,202,151,39,103,22,189,148,249,198,159,15,167,126,36,161,77,1,157,20,70,37,81,48,105,191,132,133,97,45,128,49,121,22,250,78,57,4,186,125,61,60,56,104,44,152,193,214,68,203,197,218,104,198,207,137,168,211,32,211,101,195,78,170,118,51,101,121,192,53,180,214,39,52,196,114,96,175,233,123,35,53,200,218,149,87,36,229,82,119,136,60,103,51,81,5,82,132,110,219,41,230,113,191,17,135,140,223,207,236,37,241,186,52,223,182,169,150,202,52,26,179,150,40,247,235,132,119,162,18,38,247,11,105,237,87,205,74,97,23,188,2,123,1,44,184,25,103,77,73,84,179,82,80,146,149,85,191,9,39,231,80,145,119,167,36,3,85,179,37,240,86,100,109,60,156,89,113,243,39,116,17,245,18,166,62,243,249,176,77,26,203,25,7,167,42,4,97,169,97,143,213,51,42,223,94,22,59,11,3,46,254,83,227,13,123,221,100,99,212,61,146,155,171,88,132,15,251,18,57,211,193,181,167,120,236,113,190,131,68,229,32,105,83,101,120,97,194,146,191,86,129,72,85,25,33,215,36,223,232,14,248,152,1
 57,184,206,230,225,119,161,175,210,4,242,25,86,59,199,52,202,85,108,230,4,251,143,209,104,216,168,149,240,255,111,81,73,96,26,195,189,58,232,103,160,246,37,216,246,205,40,214,201,207,103,214,155,126,105,194,182,65,176,82,101,194,14,209,107,70,175,224,158,229,104,210,183,36,107,3,148,86,85,45,207,123,45,166,166,151,233,32,222,124,163,109,97,92,211,133,89,129,157,203,223,200,100,211,190,181,161,67,123,202,128,146,241,138,184,28,23,2,178,107,97,45,10,85,83,151,245,161,251,243,68,110,83,200,66,172,169,27,229,188,14,15,142,51,205,208,231,187,213,45,34,59,54,138,5,232,95,198,153,116,20,151,65,134,178,232,57,61,73,138,62,87,164,9,51,191,84,177,8,148,158,10,154,124,189,43,60,246,127,89,57,12,171,39,143,183,158,137,61,224,228,152,13,222,175,226,20,82,134,136,230,228,173,84,9,204,162,218,180,17,226,57,248,40,64,39,240,198,105,215,166,18,243,98,95,201,64,162,229,184,181,201,43,119,127,255,21,92,232,226,41,205,222,16,18,74,126,241,84,3,249,103,197,95,249,99,20,104,142,109,229,155,20,21,
 203,133,38,237,89,243,148,154,33,61,124,77,207,173,44,248,179,242,196,151,125,246,188,132,193,110,184,95,33,252,170,176,100,168,154,47,95,85,133,219,121,253,194,230,170,74,21,249,44,142,168,14,65,69,247,23,42,127,232,131,231,161,65,254,13,203,31,229,243,81,89,155,110,187,185,183,143,233,195,159,219,242,37,109,169,236,116,77,68,97,192,135,216,156,122,251,67,208,38,43,60,235,177,159,179,110,100,25,215,72,8,55,172,242,94,162,60,66,40,122,68,31,116,182,141,63,108,33,116,105,46,75,152,198,35,151,97,31,12,96,34,222,13,140,8,241,132,74,26,90,44,228,216,110,121,124,238,81,198,116,138,147,250,252,130,72,172,117,119,61,88,244,216,118,243,227,163,118,61,42,202,25,94,57,222,109,173,59,141,141,94,130,27,104,156,95,13,57,113,183,186,109,141,13,89,177,49,60,69,96,106,222,154,237,233,227,212,19,197,21,103,111,11,63,20,142,111,132,116,126,8,60,204,191,60,72,185,156,180,137,115,167,242,235,18,70,176,106,168,157,208,58,139,101,173,242,251,82,28,236,103,66,168,229,225,175,139,216,67,127,63,63,2
 24,16,32,145,198,131,28,153,246,248,119,96,7,185,252,25,250,220,46,138,121,91,217,248,83,85,117,181,156,107,239,11,142,5,157,84,17,49,187,244,89,239,206,103,33,35,248,62,124,217,250,118,210,127,230,227,199,106,146,70,114,45,4,106,202,237,78,116,154,44,193,39,127,58,98,61,72,92,169,98,247,244,154,149,88,223,28,250,52,183,147,68,239,190,212,219,81,52,2,17,176,186,178,116,125,57,46,9,157,86,52,176,94,232,144,75,168,191,114,128,149,73,204,19,144,245,37,188,69,83,41,246,22,203,241,166,30,49,167,202,114,26,205,233,190,168,96,165,29,0,171,99,241,151,138,171,156,135,227,35,25,252,30,209,115,206,12,104,220,49,90,104,32,75,244,87,198,97,22,103,10,46,113,65,57,51,71,104,240,49,155,221,83,129,119,118,198,180,85,102,83,5,184,177,213,242,99,46,225,235,105,98,217,165,55,155,237,204,125,28,64,118,5,137,180,181,47,63,168,130,114,141,67,84,100,30,34,186,144,66,30,174,151,224,127,97,14,246,223,160,65,147,221,163,232,3,136,78,188,85,174,214,196,65,130,12,190,16,29,194,221,195,191,10,79,88,178,1
 5,190,107,139,172,243,194,249,137,81,25,31,152,231,246,57,9,181,253,102,247,139,76,229,42,228,151,103,108,200,197,139,35,69,253,67,84,122,205,129,205,223,198,61,97,169,199,145,86,158,246,86,72,135,18,48,166,65,179,230,45,189,106,124,232,84,63,241,54,176,98,26,143,137,164,87,186,157,83,41,105,3,92,239,208,36,213,223,73,39,52,52,182,141,218,55,236,58,203,176,139,27,46,233,12,87,216,29,120,71,221,170,111,29,183,201,66,6,220,228,210,199,21,206,254,116,111,13,20,30,132,150,197,56,182,119,203,191,110,156,120,109,66,156,66,119,105,68,167,129,66,72,169,102,39,14,210,42,151,120,136,63,107,48,107,198,69,50,17,204,6,219,155,206,210,95,211,223,79,92,149,47,175,134,240,34,121,241,202,83,104,250,255,58,167,252,125,181,32,29,92,212,4,41,97,50,76,57,134,156,229,85,160,7,31,92,106,54,189,56,115,28,2,227,18,220,156,245,85,91,110,174,33,176,44,13,20,127,4,57,245,54,200,212,11,27,253,223,208,224,127,253,33,77,248,56,168,36,188,145,130,85,66,29,163,241,210,15,66,195,49,234,171,27,33,207,67,141,1
 84,129,230,78,86,252,19,235,32,50,220,252,132,156,214,71,0,121,63,219,129,219,39,31,218,126,231,46,96,13,99,96,193,225,35,224,110,103,243,99,147,82,47,235,14,88,119,166,154,71,217,216,42,54,203,118,155,101,118,104,205,172,223,71,130,62,27,246,122,35,154,192,21,3,176,106,211,91,181,49,80,106,50,54,194,53,225,200,49,148,198,131,206,23,73,255,230,222,215,136,66,58,178,64,227,146,1,150,253,95,129,167,156,132,160,13,96,253,137,16,11,126,245,180,215,247,105,150,174,116,89,39,34,56,212,228,239,109,100,100,86,41,252,48,123,32,138,207,62,43,167,201,244,65,88,46,62,162,249,21,62,249,239,84,106,75,226,101,255,12,156,133,86,14,146,6,229,70,161,198,250,71,46,9,124,20,55,109,71,25,2,20,221,116,208,227,106,226,155,137,98,128,170,218,173,243,223,57,245,197,124,66,199,172,204,5,187,0,140,101,124,193,46,39,237,165,166,240,87,159,134,61,167,40,26,14,189,107,126,230,97,65,74,183,5,32,181,90,172,233,88,191,173,236,193,71,46,216,253,24,219,70,68,70,232,172,121,6,197,134,209,29,233,200,230,159,158
 ,79,212,189,218,14,176,214,219,96,97,180,42,132,27,152,56,217,90,232,150,193,176,114,50,144,50,192,182,223,183,168,46,8,133,95,127,234,175,146,51,140,83,145,43,146,50,31,50,91,104,181,218,62,222,125,206,174,225,147,79,190,228,183,179,70,70,193,210,213,109,254,74,200,228,139,79,217,80,49,25,208,67,82,53,234,204,20,81,243,54,50,195,80,167,134,98,217,190,18,243,161,9,76,240,152,245,44,5,125,131,47,11,169,178,214,152,253,200,241,78,32,219,120,143,55,142,96,241,225,77,36,17,117,225,246,137,236,108,75,115,51,0,110,153,96,148,195,23,98,140,75,145,102,101,188,220,12,2,72,159,125,97,216,45,224,38,51,225,33,148,190,104,110,212,194,109,27,52,106,129,44,186,8,16,74,159,144,190,236,134,249,195,27,168,19,89,2,235,98,68,1,97,86,93,68,174,67,240,28,48,95,10,139,86,112,153,143,93,235,103,232,49,141,170,15,144,190,59,30,154,118,100,72,225,239,243,191,73,137,95,83,18,33,65,136,210,2,210,79,171,48,152,214,250,250,10,118,215,119,134,66,231,160,255,222,218,92,255,147,241,113,246,174,238,29,139,11
 9,169,163,162,76,110,173,166,89,218,245,210,163,87,78,252,157,87,162,40,15,131,1,220,226,24,214,47,134,109,223,56,1,47,215,127,182,220,35,67,250,153,131,50,122,222,23,208,191,22,129,50,22,64,219,246,83,244,60,220,42,176,152,164,202,203,114,126,206,28,145,149,89,239,166,19,84,51,252,38,119,82,216,36,2,151,165,90,85,132,75,121,22,66,8,5,138,67,208,171,153,170,204,110,243,181,20,13,10,211,74,239,58,229,169,185,183,103,246,147,216,230,202,241,212,86,145,155,196,230,130,3,11,157,63,156,78,239,68,33,182,224,210,240,119,125,2,180,246,98,21,102,209,152,135,44,39,118,34,154,160,213,205,184,145,73,64,222,204,232,82,170,63,131,23,46,156,44,242,54,100,31,55,138,156,23,221,196,238,112,222,171,48,183,157,179,33,28,38,49,147,210,253,58,18,53,42,133,129,94,91,235,92,8,30,82,116,108,99,220,13,50,101,69,86,208,226,66,60,230,239,37,0,134,98,82,158,176,172,245,251,94,37,254,128,249,62,152,9,133,13,252,173,39,27,19,132,185,247,150,96,158,98,11,96,179,152,199,33,2,73,75,151,73,6,19,175,193,143,16
 9,61,78,67,48,98,93,128,143,237,239,231,182,132,194,117,30,21,163,126,84,66,252,224,120,4,22,19,190,151,176,139,184,195,181,109,169,173,65,30,140,251,36,103,173,11,141,100,102,89,25,54,227,219,183,251,147,129,232,97,238,190,212,130,172,148,209,221,248,95,209,117,244,181,44,61,24,58,232,80,94,127,201,52,144,232,178,235,94,4,109,15,154,224,145,68,246,73,82,124,47,253,246,209,109,169,188,37,23,121,59,239,25,110,205,132,174,188,42,175,226,129,156,245,110,13,225,71,29,117,110,29,185,38,234,69,207,251,197,167,199,55,195,108,139,246,233,195,158,218,91,102,147,240,58,26,221,50,7,63,236,176,171,224,20,153,208,94,217,89,135,82,50,166,90,253,191,110,5,7,7,171,179,92,84,167,13,206,167,106,191,56,131,83,177,66,29,248,208,96,69,169,124,164,177,147,177,208,173,125,132,142,164,99,184,84,207,124,122,142,109,217,186,87,70,242,92,96,154,152,50,164,131,86,116,48,29,23,193,185,178,142,255,196,82,211,41,177,251,103,63,126,169,43,185,134,208,43,115,73,243,249,209,208,193,100,10,53,141,209,190,178,
 151,11,53,241,30,185,6,168,110,41,138,201,80,179,200,74,7,173,11,100,204,48,88,234,6,162,109,73,96,178,180,47,156,30,96,196,187,13,241,163,225,76,217,78,73,0,25,184,122,143,114,162,122,140,14,110,243,101,44,243,100,55,32,188,37,240,252,20,193,222,161,218,87,247,123,3,203,238,44,108,88,208,110,161,68,98,172,49,174,119,223,250,149,214,183,29,66,65,77,169,152,163,46,196,108,112,101,182,7,170,46,251,216,222,86,59,184,252,196,195,126,106,54,201,151,172,129,50,184,24,54,89,196,114,140,185,113,141,208,25,200,77,72,118,62,107,206,190,31,86,215,81,114,97,241,159,72,158,139,110,132,193,142,107,181,149,129,220,119,156,40,86,65,109,118,195,136,240,32,249,12,175,189,148,14,177,255,211,225,189,15,228,127,232,116,139,104,23,70,254,15,29,64,119,191,69,214,250,111,112,17,165,245,158,97,15,224,100,106,109,250,242,159,187,102,60,122,144,24,112,116,191,126,152,242,58,141,36,55,99,233,207,47,25,41,89,118,86,107,137,155,108,172,253,231,38,17,176,43,94,154,254,19,83,22,122,12,2,127,47,6,12,230,141
 ,166,56,19,251,120,194,75,9,31,214,247,139,174,239,148,79,45,16,137,141,217,191,107,63,8,96,199,206,132,68,113,61,110,114,219,135,105,207,87,136,92,8,125,11,150,59,157,229,165,126,186,150,41,228,147,80,197,127,78,254,102,166,30,81,142,241,171,56,117,83,23,246,109,196,103,35,123,201,71,27,186,38,238,67,124,132,221,235,69,198,24,85,121,115,219,201,82,138,189,31,118,200,83,98,32,27,42,213,184,254,109,233,49,0,254,36,226,223,128,177,56,83,88,53,0,7,67,93,99,128,9,49,179,215,132,75,247,162,175,161,151,200,120,252,194,201,161,122,93,114,177,25,85,228,176,85,63,104,123,87,228,149,191,232,165,15,13,216,62,118,85,213,14,252,4,223,224,109,220,197,32,14,55,27,244,155,196,233,173,130,54,68,28,173,181,29,97,161,115,127,161,140,139,139,113,234,37,203,192,249,100,4,120,116,36,166,123,248,208,248,204,132,30,195,247,186,117,55,105,3,163,232,54,241,13,190,95,207,55,225,220,50,183,104,91,108,45,190,137,222,183,89,135,15,90,186,175,3,175,208,168,116,112,126,120,27,72,68,125,169,105,242,240,253,
 22,254,97,22,38,229,38,218,59,101,193,148,123,18,110,9,95,236,41,116,118,150,250,77,238,251,232,38,246,79,147,113,230,116,228,46,86,73,180,222,20,75,137,137,30,44,46,240,124,184,113,210,195,168,15,198,191,128,223,99,31,19,82,172,102,129,22,178,31,199,35,222,249,32,57,238,52,219,17,189,71,207,158,92,120,65,47,166,189,118,159,124,13,53,65,184,208,170,196,196,130,181,174,124,106,49,2,138,138,29,219,57,235,33,102,45,182,65,152,237,94,183,253,196,23,216,62,36,149,208,225,81,245,221,182,188,215,90,151,145,101,106,220,141,198,178,223,83,62,66,56,13,228,107,71,225,81,9,177,21,44,175,174,109,101,10,170,66,196,97,150,58,107,249,155,139,198,103,117,172,214,36,116,93,132,233,84,30,137,123,116,232,154,68,244,58,119,107,88,167,78,129,8,151,92,103,120,111,77,215,22,51,76,108,167,161,253,183,90,81,51,20,220,76,8,147,216,33,48,38,44,116,204,17,113,61,122,52,54,16,70,31,13,135,225,137,110,183,67,103,246,244,23,31,67,150,171,248,117,91,73,11,28,162,60,231,238,155,105,165,197,222,106,32,95,141,
 144,118,214,82,222,15,251,147,84,136,101,126,10,35,230,117,226,171,36,251,199,229,48,103,223,3,1,107,82,241,221,127,229,229,172,152,248,87,59,152,52,215,235,103,211,174,168,38,195,211,68,197,164,167,92,139,197,80,114,211,55,50,1,134,96,43,220,165,231,143,77,211,24,104,156,228,45,15,23,64,177,168,60,82,145,74,205,0,150,187,232,186,37,125,16,166,55,124,243,170,20,18,21,212,65,248,139,149,227,244,73,77,190,155,91,151,154,110,85,211,24,104,48,148,145,150,200,13,129,121,4,85,219,159,153,14,4,11,94,58,18,10,39,216,242,106,210,119,255,250,191,40,84,65,116,93,100,38,47,185,219,0,6,73,166,244,249,144,150,32,224,206,9,99,139,101,160,93,190,35,93,121,46,130,54,81,246,18,97,90,172,192,112,54,156,65,181,22,95,209,213,50,203,59,218,29,172,70,218,180,115,52,188,68,134,150,40,7,97,44,230,247,88,248,45,198,128,128,167,81,94,86,94,226,166,176,147,169,32,224,9,115,8,167,15,189,48,33,152,194,68,200,181,172,160,127,1,0,187,105,225,100,130,169,173,112,106,141,114,238,82,56,104,11,95,161,232,5,195
 ,72,102,80,73,7,82,92,111,222,16,200,97,108,21,238,203,208,58,223,128,110,98,84,127,73,55,122,237,218,247,203,247,226,42,239,166,170,122,129,244,240,254,196,4,137,233,41,21,181,148,210,148,113,213,82,97,31,81,157,62,93,106,79,20,0,221,61,213,57,42,72,158,188,195,10,1,248,82,198,122,217,225,179,30,64,159,33,110,118,26,47,130,236,210,215,118,95,91,93,49,61,77,207,156,109,71,255,94,52,110,186,189,60,188,204,146,78,19,48,138,205,232,114,205,199,159,161,218,143,202,29,4,16,248,98,143,173,13,110,21,164,162,231,214,200,10,128,225,0,212,242,94,8,18,201,57,85,240,6,199,142,230,64,149,98,233,239,161,119,183,76,37,217,126,186,199,87,130,189,58,248,73,153,112,63,166,242,80,195,134,175,11,22,17,43,22,121,199,107,75,134,198,245,57,121,61,59,35,183,83,59,245,235,44,181,254,29,186,250,186,78,181,62,130,207,136,88,135,45,101,126,163,49,194,88,23,174,2,172,135,135,138,156,243,211,65,151,231,14,25,38,55,203,35,84,200,37,0,220,99,86,125,223,226,245,146,226,100,51,206,176,88,106,221,138,209,19,1
 91,122,2,200,168,121,176,48,87,92,51,63,98,236,205,74,123,2,211,159,86,55,27,39,54,194,81,131,198,106,63,78,21,166,224,38,28,160,227,244,12,23,220,108,125,19,203,98,6,147,148,113,45,170,12,203,43,243,233,45,100,210,249,48,235,226,237,244,208,103,199,161,149,157,214,90,62,136,243,167,119,43,39,200,240,39,200,62,251,31,109,126,29,254,51,72,9,132,129,124,156,169,55,179,211,153,172,128,222,82,63,143,210,203,194,172,232,123,169,25,11,133,156,185,225,84,35,229,134,184,151,140,57,157,231,26,240,188,141,181,231,234,147,83,185,15,181,220,203,90,237,141,45,133,17,249,61,239,64,163,192,5,187,142,122,153,218,92,92,27,214,69,205,204,75,88,55,138,54,54,129,209,164,180,197,218,67,84,129,34,97,165,77,24,191,88,213,121,99,54,20,211,63,131,27,60,14,186,138,194,171,147,235,130,64,233,194,100,231,165,245,227,88,210,211,62,120,69,160,83,148,130,246,225,54,13,88,213,35,222,212,43,53,71,89,119,188,72,248,36,166,156,57,253,14,94,145,139,95,203,100,127,111,116,115,167,75,237,231,6,9,100,117,85,134,2
 22,27,75,51,17,238,148,28,33,38,153,135,48,16,220,182,241,88,190,132,54,133,72,2,191,82,57,51,234,176,30,227,200,177,210,11,137,192,45,88,16,66,222,28,109,239,95,84,178,17,88,171,31,202,194,90,242,58,1,42,123,58,13,173,138,109,158,133,183,48,139,186,66,165,67,72,164,174,98,150,163,97,180,102,71,3,238,87,49,117,27,151,236,193,36,211,215,188,162,173,144,218,230,21,226,156,17,34,151,238,255,151,72,45,133,242,210,64,238,160,8,105,84,234,62,203,158,51,6,183,131,57,45,173,125,249,190,0,250,149,73,250,56,130,14,242,140,117,38,128,206,231,95,7,102,53,116,77,39,220,149,129,32,237,248,228,166,5,87,1,238,191,76,90,158,197,100,152,131,118,40,206,221,243,115,128,130,217,109,133,243,72,66,228,70,253,226,182,209,95,59,146,115,117,138,100,218,51,118,28,85,227,241,5,167,11,22,233,61,252,215,56,46,13,38,46,209,239,85,78,125,178,176,149,26,139,52,200,123,104,34,249,62,20,160,0,106,189,174,233,28,115,131,17,95,132,10,219,202,23,98,98,95,224,139,142,121,186,185,31,215,138,239,94,39,14,218,37,1,6
 0,250,44,111,43,30,206,169,83,164,152,14,178,253,13,231,178,33,196,193,228,163,132,91,227,46,195,4,115,130,155,101,123,222,165,244,199,62,175,127,238,237,54,168,89,146,16,36,72,215,51,15,26,72,95,96,82,116,207,61,242,83,50,120,2,187,2,91,111,119,8,44,183,191,96,239,77,148,191,40,167,66,63,130,81,237,202,15,222,249,115,157,193,79,37,110,106,144,86,98,157,18,45,31,52,27,92,129,218,85,90,206,188,59,47,213,174,69,221,22,44,218,112,121,43,250,9,47,57,219,229,53,202,44,86,220,154,133,164,196,64,124,129,20,144,211,37,141,126,123,65,219,107,111,140,182,202,120,54,0,90,21,20,215,22,175,184,232,86,101,12,131,167,187,136,27,25,41,184,227,213,121,172,13,156,14,227,121,43,180,183,138,208,115,225,129,179,10,156,21,152,44,25,172,189,52,5,49,8,17,155,120,40,130,68,125,155,143,182,191,201,238,154,182,116,45,60,70,125,73,125,144,107,178,224,21,46,7,57,114,176,38,140,237,39,83,214,216,219,163,177,33,0,0,24,44,164,78,175,27,22,90,112,34,216,119,251,85,123,161,82,109,227,45,84,92,80,203,159,49,1
 55,56,74,170,95,197,95,65,118,237,107,132,179,102,25,167,250,121,50,6,203,202,73,91,26,30,185,66,67,196,219,196,235,213,234,128,205,190,106,221,215,252,242,222,25,8,18,40,190,229,23,20,134,245,214,176,74,127,62,192,244,125,234,11,158,244,17,59,166,224,146,32,7,210,59,5,199,201,3,123,58,252,193,20,255,65,217,30,172,121,145,231,203,137,183,103,86,106,18,92,161,240,32,106,235,10,66,60,30,202,3,185,188,160,254,186,34,158,27,27,18,125,156,92,41,234,92,3,198,153,81,242,86,139,198,230,133,177,66,61,230,72,31,136,187,189,192,163,221,31,60,156,77,75,28,213,93,99,255,17,145,38,123,8,207,242,176,32,154,139,63,170,43,0,90,92,26,66,175,33,233,93,186,152,54,143,249,51,153,233,29,105,197,188,217,47,45,118,90,140,138,42,150,35,80,103,92,207,254,39,62,197,141,223,107,11,43,115,242,93,251,158,75,151,246,142,35,122,69,59,159,93,62,116,58,185,163,222,28,247,190,73,186,220,68,249,198,239,95,97,189,114,164,29,68,72,1,234,229,37,198,240,24,246,252,162,154,67,169,68,126,229,19,73,13,6,173,100,22,14
 7,114,135,5,246,1,194,56,197,141,211,144,117,185,16,159,243,194,212,192,166,245,173,174,250,248,115,203,42,31,78,154,35,1,130,207,220,160,182,66,47,232,185,177,243,49,180,152,48,249,225,210,68,101,186,247,180,92,114,3,86,92,76,174,221,106,43,200,139,192,251,9,249,104,164,74,52,251,70,25,97,235,130,58,215,242,118,13,215,220,101,214,168,165,163,134,88,206,177,252,171,70,134,233,158,114,132,12,234,95,101,56,217,28,131,210,102,217,165,168,116,151,147,93,118,244,167,244,255,204,159,40,61,113,153,192,96,7,7,80,0,201,187,160,90,115,72,82,204,7,125,217,203,211,94,255,227,10,10,36,114,117,84,179,224,210,106,159,28,186,37,110,166,121,53,4,36,237,80,90,91,32,11,45,58,88,218,230,190,224,185,62,227,31,54,17,125,199,25,32,171,137,141,255,31,63,177,106,116,171,203,226,86,60,248,165,205,253,59,161,136,77,137,164,156,242,173,27,5,123,19,207,216,140,212,173,230,186,175,178,254,58,151,159,49,149,8,98,110,58,190,204,46,31,183,41,38,122,30,151,116,88,180,254,103,144,68,161,37,124,236,22,96,53,10
 3,93,165,115,152,162,216,220,231,185,76,44,219,124,117,45,121,75,97,105,124,215,11,46,48,117,141,115,147,65,156,143,161,28,191,177,128,83,250,191,198,29,74,134,217,146,38,146,4,27,188,134,223,36,99,157,232,188,121,80,222,186,251,206,235,137,9,214,54,203,143,39,86,162,68,163,6,251,141,176,61,189,28,190,57,43,193,113,108,110,88,231,22,27,147,187,150,240,66,142,191,96,60,250,51,174,60,108,15,225,36,21,203,45,43,148,99,183,110,151,228,155,208,136,121,224,144,120,67,63,195,246,36,244,59,110,203,161,98,124,12,27,229,254,99,108,191,41,118,38,39,71,230,221,89,234,240,157,101,185,184,127,25,110,62,252,132,56,54,191,87,237,226,86,81,24,2,37,206,38,34,176,42,204,63,162,76,237,215,225,2,220,164,34,191,96,115,125,166,83,167,31,62,151,82,247,71,42,23,29,168,189,115,91,116,32,20,108,105,216,10,2,14,10,25,71,239,173,48,130,115,91,29,195,6,16,187,161,4,187,183,189,9,79,240,181,183,43,46,29,247,207,113,255,56,20,47,183,235,16,215,127,9,56,63,142,251,24,174,104,179,33,222,185,89,73,55,19,202,1
 95,183,162,248,90,179,156,125,220,205,98,211,117,73,239,43,93,77,161,50,59,106,214,188,190,42,140,50,58,162,200,147,78,224,20,121,41,73,67,250,183,41,213,79,242,151,37,159,65,102,25,0,250,64,42,147,115,161,107,227,218,175,2,148,48,37,186,236,43,9,145,225,222,57,178,213,169,174,75,68,201,110,31,85,166,244,11,149,155,87,41,250,114,212,50,143,167,74,14,249,37,51,143,32,70,152,36,92,240,94,100,125,86,116,138,23,40,4,79,191,37,20,16,23,1,79,74,103,20,155,182,156,188,245,173,11,239,251,229,41,225,236,18,6,138,251,90,226,165,10,5,133,120,23,216,113,65,103,117,210,25,7,158,80,192,19,98,244,212,233,192,47,4,33,218,100,82,110,179,211,188,222,48,200,168,40,57,188,160,248,201,43,250,9,165,15,199,79,24,203,236,225,80,17,179,69,161,135,118,168,68,222,67,61,128,170,117,136,122,237,92,192,56,87,219,125,17,108,251,0,133,29,102,38,219,251,71,149,3,246,217,6,38,142,86,224,22,213,247,193,89,96,70,210,183,216,81,73,134,214,104,211,150,54,214,232,61,151,79,216,135,17,215,117,250,41,219,130,142,83
 ,143,177,31,56,173,60,5,188,130,97,199,27,232,124,200,220,45,143,187,230,254,12,207,178,221,5,50,65,189,227,193,150,27,240,143,180,61,136,154,226,253,11,224,52,213,95,248,210,64,241,183,87,110,98,94,228,136,123,237,249,38,223,83,9,77,134,89,58,214,32,80,11,17,176,197,86,65,198,39,82,44,61,103,74,203,187,207,160,27,161,142,193,145,38,63,99,26,224,218,47,217,192,203,179,49,191,127,69,64,181,34,109,82,39,242,150,205,76,72,217,196,90,77,234,162,147,102,98,67,146,90,151,101,121,224,3,156,219,159,225,136,218,56,251,221,77,98,11,72,47,66,156,215,152,37,74,82,29,26,225,240,179,74,35,166,174,255,119,158,142,152,43,101,140,127,26,181,232,237,148,95,16,218,212,183,77,117,72,149,38,179,253,107,45,156,18,22,47,97,205,215,5,203,236,119,229,202,52,235,192,59,247,32,47,1,166,47,166,61,42,14,242,181,115,217,198,242,62,167,54,142,22,5,77,191,137,150,184,143,169,252,119,210,246,226,224,7,182,95,222,202,16,148,147,255,104,38,119,163,213,159,222,146,201,115,151,54,157,7,253,235,35,87,148,130,99,
 45,197,134,172,199,207,29,99,140,113,118,195,116,178,208,62,165,155,73,185,165,37,73,199,177,106,129,185,179,48,125,248,231,217,113,14,231,181,198,131,201,100,76,49,18,144,9,100,249,113,71,69,199,25,74,49,142,126,39,133,72,28,70,50,31,120,22,17,191,8,158,82,106,153,251,184,108,187,99,196,120,240,134,99,252,162,236,126,180,178,74,175,44,156,15,81,175,112,75,63,48,71,16,137,68,93,195,124,6,139,101,67,80,83,253,162,194,24,13,11,6,62,12,189,182,173,46,194,239,78,94,74,21,45,72,140,91,80,119,137,69,116,118,235,92,14,139,74,151,92,192,155,92,96,50,91,98,78,161,170,186,168,175,241,183,99,107,245,160,237,193,165,163,100,160,149,58,3,5,248,132,140,128,240,138,35,200,52,18,216,156,200,62,22,60,145,35,245,124,86,247,251,139,106,80,72,226,109,130,44,127,105,52,177,65,14,23,226,175,95,34,56,128,242,165,79,44,138,128,124,63,24,84,166,68,2,54,138,56,96,95,75,64,49,12,92,192,229,129,244,163,127,105,156,71,23,112,250,177,254,75,197,137,168,210,205,186,118,186,151,125,89,40,126,216,148,35,124
 ,132,247,125,182,180,12,16,99,124,234,162,115,66,25,77,169,242,42,113,179,194,252,83,200,20,119,63,10,43,112,75,198,180,132,193,101,117,96,130,38,143,169,127,93,95,166,16,151,177,150,58,60,45,126,184,66,19,10,177,102,206,110,155,115,238,21,217,28,108,125,241,176,148,182,144,38,110,24,183,183,22,162,145,116,99,84,107,74,215,14,236,42,47,1,223,214,82,235,78,203,54,182,171,37,52,78,235,222,202,96,3,248,189,16,98,179,192,124,163,237,232,49,153,140,97,33,86,102,79,147,231,72,238,47,14,111,47,81,2,49,231,46,99,17,175,31,58,230,37,203,99,244,85,217,204,91,8,52,146,16,174,192,134,32,35,204,101,229,89,225,208,250,82,102,245,89,164,7,116,99,177,134,165,77,234,68,248,21,127,69,91,166,159,231,6,184,142,126,53,71,82,234,126,198,91,132,61,193,31,232,24,192,255,227,2,46,104,203,150,127,252,150,26,3,181,166,201,41,89,43,12,218,170,41,13,96,161,163,216,43,115,75,59,189,156,51,40,210,196,199,201,210,220,129,176,28,86,44,237,1,143,192,203,191,248,219,255,79,62,177,114,198,49,225,158,99,49,204,
 76,19,42,1,218,78,3,63,221,190,233,19,142,48,233,138,46,86,90,149,41,250,96,189,145,113,195,69,151,25,153,212,31,67,74,170,161,35,111,99,176,178,24,46,24,189,57,3,16,34,60,85,25,76,61,139,175,222,197,205,109,79,153,35,129,88,31,154,239,125,2,88,249,147,225,128,119,222,219,149,89,64,18,175,64,200,98,80,111,89,205,171,124,169,29,140,237,102,153,157,139,217,88,144,137,191,154,40,181,55,148,198,7,33,73,247,245,45,210,222,5,31,242,116,156,29,22,194,78,169,16,49,77,230,231,251,34,227,164,224,87,15,2,74,33,31,159,212,134,170,92,161,195,149,195,66,220,93,150,34,139,235,108,238,198,3,143,74,108,184,120,154,220,87,38,211,177,96,132,244,4,211,208,78,88,72,121,150,112,172,152,154,101,16,223,139,169,115,173,17,110,46,229,216,189,208,178,173,182,136,180,26,203,18,55,52,232,212,165,53,152,197,164,153,37,120,159,212,236,17,2,128,119,127,65,225,41,246,35,229,99,208,84,56,188,147,51,23,141,223,164,26,212,173,97,230,187,42,79,142,116,36,146,89,1,19,71,235,135,213,16,111,19,109,159,12,54,148,15
 1,171,213,92,40,172,240,172,187,183,200,137,127,223,253,27,69,53,27,112,152,177,62,255,190,167,126,71,237,61,233,70,107,236,47,233,32,28,202,93,83,59,170,232,153,247,108,70,238,222,76,7,229,146,147,15,196,46,14,134,149,251,138,208,89,126,87,144,129,123,8,65,186,226,78,92,17,160,30,182,206,216,18,225,33,14,212,121,70,199,240,181,116,119,117,225,211,203,29,34,0,4,193,36,150,107,30,202,165,80,6,222,149,8,18,21,251,73,45,83,56,7,86,62,24,161,232,253,13,135,177,67,154,28,100,172,186,118,106,58,136,102,102,193,49,96,26,246,73,132,211,93,126,41,79,231,248,76,155,197,178,114,132,39,223,36,220,128,253,115,76,176,24,168,66,69,148,246,202,44,192,215,38,17,6,100,111,232,84,64,25,1,175,68,167,135,228,13,51,170,167,70,166,83,226,92,80,214,6,248,178,125,122,75,59,253,69,114,132,123,50,86,38,57,134,152,169,102,79,200,56,151,102,165,192,70,202,170,151,72,218,254,179,39,160,243,49,195,141,7,144,94,172,135,217,55,141,39,182,229,152,231,119,226,114,60,123,212,10,183,239,58,103,149,194,202,100,1
 40,18,201,154,179,160,157,95,0,210,93,222,80,62,22,182,115,64,188,210,210,86,174,53,4,187,106,20,8,24,120,83,170,202,255,76,49,247,141,79,205,12,128,76,247,17,141,33,95,191,134,119,20,146,74,97,92,204,80,95,160,95,237,119,220,43,226,112,223,72,141,187,215,104,57,211,162,23,188,77,3,189,95,10,115,24,182,26,228,190,147,95,172,242,0,33,62,243,238,36,21,221,115,138,143,233,239,154,167,90,212,59,182,93,81,144,84,100,35,240,34,100,14,10,42,64,177,155,138,229,105,205,82,27,224,86,152,53,10,95,129,249,72,37,120,114,130,57,62,221,191,61,53,230,134,148,133,250,183,149,130,10,51,168,46,181,246,132,165,126,129,4,19,116,153,97,65,43,118,7,32,134,164,51,223,163,87,97,132,138,127,111,173,55,91,94,137,210,247,122,74,28,192,207,97,91,102,250,198,12,118,185,111,115,210,72,18,196,66,212,176,240,87,114,68,225,203,159,91,245,25,214,56,39,110,46,221,245,193,253,164,32,39,234,3,195,111,63,244,83,185,228,234,108,144,169,134,31,163,104,136,213,97,36,160,107,134,152,1,69,127,163,249,239,141,128,144,7
 4,81,120,204,20,238,27,138,212,24,227,171,239,198,232,58,242,42,101,157,216,70,84,232,127,244,105,120,168,245,77,15,160,6,123,86,173,190,65,187,148,179,93,139,242,42,79,122,147,224,183,61,238,201,97,65,159,198,206,53,54,181,123,223,83,154,184,146,145,198,76,229,60,251,78,253,144,219,26,65,24,136,124,164,228,136,106,39,34,254,182,231,109,148,210,191,115,59,99,194,209,113,243,231,29,88,36,178,223,142,212,129,82,26,21,209,146,112,35,107,61,5,118,191,131,219,84,182,225,12,165,99,218,205,173,18,162,8,108,19,101,110,230,43,134,202,90,79,166,15,96,24,127,34,167,179,193,240,197,62,169,83,202,87,169,137,144,207,234,182,203,245,140,62,9,61,28,156,57,251,45,58,132,59,198,98,233,122,188,210,5,112,206,216,45,16,55,90,49,35,219,73,95,46,129,160,64,194,216,105,106,110,76,25,227,100,231,27,148,179,231,108,89,160,12,39,28,58,152,24,104,171,115,140,248,74,149,177,138,158,9,55,112,209,159,37,231,164,25,85,132,171,203,167,2,155,164,2,158,5,243,162,69,196,62,66,17,2,60,206,52,18,223,144,98,189,1
 71,249,53,223,247,150,117,194,248,186,99,184,11,134,95,161,114,111,147,19,133,70,90,83,241,112,254,219,178,210,22,109,33,31,98,31,188,43,203,198,156,201,212,172,99,28,191,46,245,132,237,126,6,228,10,214,29,108,201,41,138,236,106,249,8,73,114,149,48,99,4,234,36,170,7,174,145,6,78,247,135,62,227,88,210,195,187,119,155,247,152,57,138,120,241,211,55,185,98,41,210,215,41,61,98,201,6,94,87,178,74,94,93,218,179,51,74,39,19,132,144,251,215,136,156,3,123,204,131,128,22,25,82,139,196,0,183,113,128,195,142,56,107,172,42,201,128,223,250,4,102,65,115,132,228,171,119,212,12,186,38,73,57,239,32,255,255,211,247,121,148,35,178,253,226,146,136,220,69,132,120,106,152,80,13,99,35,94,34,66,211,18,79,154,135,162,96,194,62,123,122,81,17,129,185,13,117,237,64,23,200,213,149,157,48,97,97,60,28,221,61,235,31,199,204,97,57,124,183,61,137,60,184,68,36,215,99,136,103,131,32,109,90,204,100,80,197,140,4,114,196,124,244,68,50,142,117,110,77,136,147,61,193,250,113,188,82,200,177,84,98,71,144,197,156,67,236,
 208,117,48,52,203,4,226,181,137,55,154,50,207,40,220,8,118,35,156,59,138,65,254,147,234,238,155,73,254,208,229,35,79,227,136,36,63,18,180,153,254,90,111,187,230,201,32,193,98,91,193,34,24,214,228,226,208,63,118,197,23,144,74,24,236,245,34,235,14,18,156,134,127,70,155,83,168,212,7,36,32,71,197,214,233,194,191,35,135,36,168,11,72,106,31,106,29,54,168,112,80,9,91,62,84,8,134,140,108,81,250,125,217,187,143,76,193,32,27,2,200,39,70,174,244,1,123,74,134,210,47,35,182,135,203,16,124,46,253,143,153,88,227,219,81,139,142,113,42,136,78,153,13,85,132,68,72,233,117,157,195,91,98,47,179,223,70,192,185,64,217,247,216,136,188,186,115,247,138,207,250,167,91,148,143,60,146,31,209,197,19,97,152,13,162,64,210,4,192,61,91,157,82,123,132,246,110,218,107,255,7,89,106,2,224,225,223,228,100,230,191,117,230,71,193,209,59,123,2,226,179,58,208,186,236,14,155,148,128,130,191,94,172,103,15,216,41,233,4,236,60,4,242,137,136,117,7,70,146,9,157,227,35,165,155,4,227,120,204,171,155,72,244,73,68,42,77,109,27
 ,120,51,27,230,98,213,101,71,190,98,156,252,232,67,60,202,172,74,128,203,19,140,13,242,116,18,131,247,246,10,168,129,97,26,50,126,252,103,114,65,236,74,223,163,160,92,158,213,225,23,28,143,63,82,232,206,123,63,227,21,211,119,230,208,48,246,85,0,35,64,196,220,216,12,99,194,0,167,101,227,154,94,91,170,125,197,19,135,136,21,28,75,1,138,130,131,231,223,189,163,163,248,223,27,120,122,190,150,202,66,30,192,26,38,163,209,74,162,56,168,84,113,65,204,38,219,6,122,219,189,12,202,47,92,144,71,196,46,153,33,179,6,30,123,99,110,44,219,158,86,10,30,223,111,103,51,91,200,31,210,74,207,42,52,94,116,196,56,161,223,113,176,4,53,203,110,150,46,249,201,43,8,99,105,162,197,12,92,189,159,199,82,66,14,205,103,108,122,48,92,233,36,53,221,214,147,60,105,26,175,238,41,15,110,156,73,245,42,83,118,189,138,83,207,56,26,224,88,175,28,134,71,177,139,175,125,103,165,9,115,110,95,121,61,199,60,227,238,239,241,113,71,136,30,187,160,115,137,135,66,171,157,166,228,164,108,157,88,238,103,18,237,216,8,143,63,67,
 49,224,91,13,29,193,64,228,29,64,215,247,17,41,2,145,234,203,209,167,190,41,157,206,51,49,153,37,143,199,187,77,212,210,101,77,242,251,39,26,137,40,71,116,145,87,234,51,120,246,208,203,176,135,46,125,163,3,24,190,127,78,7,118,141,57,34,37,109,154,75,96,255,185,254,183,191,241,243,89,189,154,3,114,156,82,98,69,168,18,38,219,186,172,32,32,22,76,67,90,244,113,43,115,178,251,235,243,136,230,47,121,57,193,85,90,238,125,175,227,42,246,3,19,203,241,128,221,65,15,147,185,119,14,16,5,229,228,50,226,77,144,24,146,3,111,58,175,133,215,126,29,171,48,197,205,155,166,180,16,91,23,209,208,19,224,149,125,32,2,156,89,117,95,220,209,251,72,163,178,252,160,5,12,83,81,177,40,209,252,65,114,250,228,194,242,244,22,229,37,147,71,103,128,72,137,101,127,120,170,167,154,190,204,86,227,56,69,65,143,53,190,223,226,1,228,153,158,36,145,15,29,95,21,62,186,18,37,184,113,96,148,145,131,35,165,105,168,179,213,111,241,87,84,56,107,167,81,171,119,137,194,197,244,35,108,194,151,247,177,238,147,190,79,52,117,17
 4,186,46,135,207,157,97,152,237,171,202,234,78,190,185,134,159,254,241,36,172,218,74,242,223,146,154,19,102,215,105,3,195,79,73,209,225,9,2,234,31,139,36,51,189,230,14,216,52,77,191,102,150,87,145,93,21,145,84,23,11,7,238,25,118,57,218,50,104,143,33,181,206,134,50,187,21,101,115,144,194,239,214,161,68,69,225,88,141,153,220,172,66,59,210,217,90,153,230,222,123,31,55,90,247,243,103,208,179,111,234,45,68,73,62,88,191,209,34,32,24,172,62,214,157,100,106,179,44,125,108,231,30,208,148,3,251,103,155,240,54,110,204,113,128,101,95,76,100,195,95,72,95,122,120,229,120,194,239,251,58,184,59,50,201,31,168,165,115,107,187,31,211,52,201,227,113,136,52,220,97,214,29,169,38,212,68,25,39,98,201,235,84,123,217,131,120,86,132,93,5,249,50,155,60,63,130,243,40,188,175,251,73,5,203,226,56,105,250,79,133,192,185,53,118,137,87,2,41,204,79,215,113,23,115,54,197,29,214,126,252,2,15,151,238,238,4,52,198,103,247,100,51,129,83,220,33,54,152,250,88,29,2,44,91,116,34,16,60,132,74,250,58,82,239,176,97,129,8
 9,42,186,173,89,59,232,122,24,148,53,164,101,196,213,49,160,134,233,106,144,71,253,254,34,99,49,80,227,126,244,164,106,106,182,201,248,142,87,102,36,165,247,160,121,198,50,44,101,184,58,189,158,88,222,25,81,73,105,159,125,91,72,117,102,63,225,95,103,27,193,2,159,71,78,76,143,69,229,91,98,189,126,8,241,187,54,114,208,7,47,158,251,246,238,200,163,229,235,80,198,191,130,180,147,228,78,159,211,195,207,93,104,31,5,52,58,137,107,105,144,158,203,61,136,132,171,52,87,243,30,246,92,235,177,5,29,244,3,153,37,61,94,71,195,36,30,112,228,35,251,228,213,214,203,247,34,108,252,231,182,71,73,250,104,118,107,114,106,227,220,235,88,80,178,44,25,113,186,100,206,177,118,45,38,99,58,255,69,117,61,215,114,23,76,67,107,120,214,49,150,0,163,26,22,130,234,253,22,205,199,252,10,215,14,43,245,214,242,17,4,151,73,190,15,45,68,129,164,90,131,121,74,175,221,233,65,194,64,184,148,172,245,11,195,215,248,206,91,62,76,109,151,163,226,222,105,93,61,244,48,136,225,165,27,92,97,22,228,104,106,148,161,35,57,180,
 208,208,255,170,83,38,214,64,77,114,41,136,167,240,249,5,138,124,112,74,233,246,189,27,134,117,104,68,11,103,127,229,91,189,2,110,77,96,229,100,29,193,96,178,212,213,162,26,172,67,10,216,151,203,118,170,65,70,165,190,165,64,85,144,9,200,90,181,99,28,139,26,135,120,206,209,193,185,45,201,77,21,180,237,23,55,250,113,84,187,198,61,78,26,221,126,111,186,222,113,144,216,249,250,173,138,251,61,244,23,190,175,0,79,164,117,167,188,207,103,73,78,227,42,230,135,211,46,144,136,10,243,77,128,105,20,59,172,75,46,212,63,101,224,148,163,243,187,167,94,98,78,168,228,232,12,93,13,176,85,107,55,132,166,242,122,38,149,25,180,63,37,137,181,146,55,190,33,139,161,119,251,83,231,197,93,13,248,75,163,146,0,149,189,137,193,35,47,221,206,123,84,172,185,215,236,237,140,184,61,246,11,233,156,246,207,2,194,148,61,163,155,44,231,4,5,243,164,65,20,217,187,179,213,211,203,122,170,112,147,99,248,158,248,90,33,149,159,236,221,12,23,153,148,86,144,87,62,245,43,251,178,20,5,251,236,76,232,229,205,41,100,71,103
 ,205,42,204,56,181,29,88,39,23,194,100,63,47,141,251,114,105,8,172,13,226,70,145,126,69,38,101,153,58,53,117,134,18,143,194,17,235,166,29,84,243,35,213,87,234,71,147,200,54,246,50,53,124,74,37,4,144,142,94,69,36,243,24,127,111,23,158,250,198,209,21,172,192,237,113,66,146,219,247,8,7,35,175,153,79,223,236,229,51,18,9,130,84,87,12,216,159,41,163,71,198,255,130,151,197,94,52,55,182,136,189,7,218,147,105,118,134,80,239,232,150,233,150,206,162,98,156,157,59,148,136,20,173,142,43,99,14,66,231,16,128,93,221,9,210,226,105,103,73,74,0,53,182,152,235,162,131,111,98,245,137,92,240,123,32,184,158,97,186,100,232,97,182,64,171,230,89,188,248,105,98,184,199,224,30,226,207,74,183,58,18,177,172,182,128,127,113,69,36,203,193,104,2,42,198,15,116,254,51,71,11,191,80,46,150,229,188,225,82,91,58,156,110,145,78,185,174,74,119,182,120,9,120,9,125,116,237,161,181,21,232,141,103,129,151,129,74,18,58,104,125,116,207,152,220,228,99,191,168,42,75,115,125,119,83,49,140,215,209,72,160,80,140,215,213,73,23
 ,80,171,173,8,12,161,251,27,109,177,194,5,188,61,173,226,100,10,223,249,168,12,206,245,29,32,49,98,244,44,59,168,123,81,57,233,101,158,243,92,64,228,8,151,20,154,89,252,245,71,52,11,229,254,141,14,29,218,248,187,1,30,65,177,121,155,124,4,71,2,249,255,96,93,168,58,123,186,180,149,17,173,53,228,240,164,73,251,86,76,118,196,92,169,195,185,242,76,225,179,167,37,244,195,62,185,159,250,8,132,234,145,66,79,130,30,182,15,193,13,51,198,69,211,77,207,25,38,228,17,10,68,24,192,2,96,65,201,169,38,146,152,189,246,92,31,158,247,26,219,250,214,86,199,23,156,16,11,206,190,243,67,136,35,163,116,234,162,28,7,159,31,25,43,77,119,93,246,250,204,165,169,235,81,195,222,33,217,63,200,246,83,145,135,86,71,98,94,0,38,179,55,219,221,19,248,255,128,205,193,158,1,127,87,202,207,140,239,18,149,39,237,92,7,134,76,138,61,132,30,10,92,83,34,249,213,164,188,181,79,43,73,162,46,45,215,171,120,20,45,40,37,177,172,97,237,118,195,155,52,59,91,90,162,120,165,37,12,229,180,137,232,209,82,120,131,155,46,166,123,79
 ,125,26,240,177,132,253,181,130,237,61,140,244,225,5,23,80,50,46,103,4,77,20,77,34,109,39,160,83,31,82,219,193,228,234,84,169,122,107,79,26,238,253,64,146,202,136,44,243,13,12,187,180,122,146,23,176,20,152,87,171,83,2,109,43,249,54,26,62,35,120,145,185,89,225,112,27,222,178,130,10,146,225,194,210,99,250,35,106,164,1,4,239,224,207,65,197,131,169,24,69,198,228,233,195,12,220,253,234,201,3,152,142,123,78,122,174,83,207,201,243,164,225,112,241,150,218,222,199,142,157,32,215,13,138,123,166,252,67,72,185,8,131,139,177,247,235,206,153,91,184,23,69,191,124,199,13,117,171,91,50,12,25,228,73,57,122,33,93,134,85,164,251,112,228,53,215,6,35,146,21,92,102,207,145,13,30,109,241,165,174,10,46,63,147,185,61,224,163,166,185,13,143,57,72,133,189,191,28,159,129,147,74,93,82,23,113,10,205,94,104,145,209,75,61,255,55,215,81,148,124,189,3,210,48,160,129,181,107,227,211,45,122,50,144,66,251,22,242,187,185,87,109,217,248,200,183,25,207,57,44,93,87,153,138,174,151,168,29,226,178,97,251,158,156,120,2
 27,124,117,146,147,186,60,147,10,170,1,107,142,18,241,245,50,176,8,169,61,234,224,191,161,184,204,12,47,106,127,227,58,95,118,171,178,1,214,110,146,47,125,156,145,164,125,227,102,78,5,200,227,90,57,79,176,124,113,216,11,98,170,181,139,211,62,120,6,55,74,146,124,50,68,58,120,166,115,84,252,91,161,254,25,72,31,37,8,73,75,150,249,110,193,130,96,63,37,221,244,127,124,195,125,207,154,118,89,152,18,244,228,147,70,205,23,182,165,153,66,132,143,167,250,235,17,18,146,236,130,17,71,108,226,172,77,24,111,192,131,92,197,19,87,24,21,184,139,249,215,236,166,60,96,50,56,201,193,191,2,246,158,255,152,251,206,163,171,176,36,172,0,29,165,93,76,12,68,42,99,73,11,129,77,180,27,239,214,69,59,186,55,221,92,21,114,192,42,51,255,215,187,107,63,244,47,104,119,12,50,75,13,166,217,203,103,220,136,8,19,42,115,17,58,0,148,197,193,74,39,112,109,7,241,205,130,122,41,237,191,40,114,247,56,187,50,210,210,176,85,210,223,185,191,161,31,202,45,112,200,45,43,14,155,198,115,99,211,58,5,138,225,33,235,148,27,90,5
 5,242,110,209,57,115,141,117,58,124,223,113,40,248,189,43,15,58,207,4,120,164,224,26,32,158,39,17,140,108,226,223,69,36,47,245,93,207,175,59,104,90,220,63,15,45,254,223,139,165,221,172,134,196,243,248,156,221,3,101,90,157,69,238,94,88,79,147,174,84,134,137,172,32,228,119,236,86,77,46,152,150,44,155,158,191,173,178,123,129,50,164,26,129,174,206,86,205,112,77,140,134,166,94,52,248,66,122,118,190,105,50,215,148,232,153,137,39,160,141,107,252,45,227,181,220,91,69,143,195,140,180,123,240,13,31,229,4,2,223,174,152,85,108,251,243,170,25,155,73,195,168,194,213,45,244,152,95,81,67,35,126,19,34,196,23,208,19,176,161,62,59,59,98,117,66,18,126,143,78,233,46,219,224,144,35,157,85,231,40,17,148,141,140,201,123,68,161,155,214,241,182,194,135,121,35,60,53,250,171,54,185,135,229,215,127,164,156,102,92,64,45,187,49,34,252,55,213,254,112,72,4,80,39,221,208,8,191,82,245,0,34,176,213,224,154,63,104,138,19,24,201,16,185,94,213,55,168,41,21,202,110,92,1,8,0,146,198,142,108,25,193,249,125,82,120,54
 ,241,17,206,9,224,93,24,249,88,107,239,98,13,203,231,85,74,164,220,8,69,72,99,190,233,53,255,173,214,84,47,107,250,22,11,42,124,129,167,133,73,184,173,154,139,176,142,143,235,235,229,49,70,202,32,120,15,104,7,218,199,224,112,228,80,246,97,25,168,254,64,79,211,75,229,107,30,72,0,243,43,111,136,162,213,120,161,124,246,188,17,151,222,249,95,171,237,203,102,31,163,26,202,23,135,200,132,168,221,101,204,69,228,134,218,177,98,63,34,9,111,41,163,230,119,231,104,84,32,144,82,220,53,56,85,31,181,136,135,106,76,109,190,85,201,226,48,12,134,91,27,86,238,150,163,64,159,207,209,210,130,45,229,72,240,187,243,1,94,231,75,157,40,252,190,185,74,38,92,36,111,151,96,113,102,174,36,27,131,197,60,182,194,151,52,241,134,137,226,8,214,221,38,179,47,17,46,40,163,255,239,64,223,113,49,125,238,185,227,21,56,137,38,164,9,37,236,194,59,140,151,109,211,197,239,22,56,122,208,123,166,62,134,154,139,176,222,85,105,233,251,172,139,246,148,160,247,135,32,247,112,198,189,240,1,99,179,156,128,51,45,97,204,5,18,
 76,186,229,75,42,229,2,240,248,80,180,142,243,189,76,249,184,45,179,76,214,172,162,225,31,166,41,24,14,173,31,76,74,168,183,2,11,210,191,37,80,26,23,149,181,57,39,82,241,198,45,149,106,136,234,247,17,108,179,124,221,121,107,31,167,8,3,213,187,234,90,30,194,166,193,141,36,49,135,20,238,251,201,214,145,37,193,26,169,82,143,4,106,216,249,191,212,79,224,189,243,153,231,104,196,74,15,117,34,162,27,110,111,193,25,52,22,89,170,126,126,156,213,233,66,249,81,67,41,239,1,160,37,7,32,100,146,25,100,112,57,167,150,223,149,67,235,191,109,158,156,76,73,124,236,170,57,42,105,93,12,196,215,28,88,238,164,128,5,202,87,110,24,120,212,36,40,90,220,114,106,134,109,168,155,147,11,89,244,107,194,134,216,115,15,163,29,155,117,136,22,35,74,155,164,232,68,102,180,41,246,217,52,108,218,90,99,192,56,163,178,76,198,49,239,28,18,105,254,20,62,41,16,16,110,189,6,199,102,123,161,255,183,6,4,172,191,242,226,194,241,90,146,79,205,245,204,219,219,7,11,200,44,26,194,223,225,161,33,215,82,179,100,44,47,76,229,5
 2,241,104,247,151,158,211,214,173,181,34,255,195,200,101,198,82,216,246,242,99,44,210,204,21,89,122,19,145,173,135,87,21,49,196,252,182,42,137,208,221,221,192,114,214,79,138,170,225,180,169,191,167,111,218,4,102,103,246,83,152,248,55,214,104,21,112,49,24,84,180,127,27,185,230,111,239,183,156,130,180,153,234,69,41,71,129,179,247,137,35,33,163,166,254,94,239,229,44,18,148,158,168,137,144,78,29,62,97,138,207,247,225,204,183,80,103,78,53,10,112,119,40,174,208,157,216,197,19,109,141,168,152,163,56,90,218,113,210,182,137,24,24,36,77,110,127,106,59,214,164,43,81,140,239,29,110,193,135,137,116,106,113,40,153,115,106,129,6,54,84,84,155,77,225,77,184,158,201,86,131,19,35,200,119,9,153,56,143,217,125,248,151,143,203,158,58,32,207,159,189,52,37,46,68,10,152,200,109,175,101,247,84,97,96,245,196,231,122,161,89,127,219,21,156,137,243,150,189,185,175,76,88,225,164,52,163,116,145,152,31,69,110,123,203,36,149,63,214,44,166,232,238,45,23,17,182,29,253,170,144,57,86,162,122,71,110,150,35,207,63
 ,36,92,41,88,92,169,135,249,32,93,132,244,26,3,255,204,175,150,146,216,192,43,206,153,137,28,240,131,203,42,105,44,118,255,67,114,77,29,248,134,217,21,229,9,114,87,88,145,101,128,205,125,189,196,187,242,37,232,79,232,55,27,125,241,180,66,238,111,169,252,250,170,36,173,67,240,92,21,3,202,161,66,151,36,222,112,199,80,133,177,72,89,101,220,181,52,12,214,23,137,186,211,55,194,17,89,231,228,29,28,137,36,73,142,80,140,27,60,170,72,96,210,121,93,156,234,37,75,165,48,115,20,93,109,249,172,90,188,64,32,15,146,148,184,218,196,186,88,58,76,208,177,253,186,157,182,103,213,243,42,173,212,157,55,131,55,163,38,59,22,166,253,45,84,231,86,254,142,107,138,63,31,113,68,198,247,48,125,134,192,217,170,175,244,55,93,87,26,39,34,4,211,230,133,217,114,27,191,201,72,128,36,125,198,28,60,118,216,31,20,106,21,159,240,19,5,74,164,51,3,231,214,192,202,150,183,109,78,30,233,44,61,36,102,31,138,44,158,156,20,35,224,52,5,14,83,97,251,138,10,128,186,26,79,163,6,150,219,210,109,203,66,88,180,184,195,137,227,
 243,127,115,87,133,89,129,35,148,128,183,253,199,118,245,183,178,158,200,111,78,177,227,183,242,106,73,248,214,8,172,100,78,74,123,86,249,32,52,8,159,65,226,15,241,255,188,14,108,175,86,204,114,108,206,45,187,12,225,87,202,248,136,136,60,58,3,250,88,93,209,142,79,62,135,47,201,58,10,191,211,66,201,254,152,80,205,81,147,56,70,112,212,237,175,55,188,39,97,30,10,99,95,242,103,242,117,82,216,236,191,198,190,230,24,122,132,241,56,108,8,168,124,169,93,171,25,148,162,238,74,171,218,40,15,124,190,23,141,100,113,177,113,209,183,122,108,133,138,140,148,205,32,196,21,27,39,6,29,186,115,35,191,29,9,147,207,18,153,92,35,201,186,25,92,34,200,206,19,48,42,47,242,84,140,5,255,72,197,81,7,13,50,201,231,251,20,191,3,250,151,191,223,73,24,211,33,68,205,248,1,249,136,90,234,154,220,209,4,182,94,41,79,137,26,56,226,5,12,35,9,135,53,234,45,136,93,171,113,222,176,218,136,101,15,20,94,39,115,2,96,227,84,213,14,95,45,167,109,5,6,20,68,108,158,55,194,134,142,53,94,119,239,6,144,144,11,69,220,243,11,5
 1,53,118,244,19,163,93,147,6,152,79,128,175,125,254,158,39,244,68,139,69,174,9,52,225,28,70,138,249,103,36,134,40,104,169,48,173,148,100,74,98,18,75,59,99,53,197,223,101,81,227,38,151,141,192,62,220,125,150,172,235,176,166,162,56,173,164,101,54,143,71,34,107,60,99,4,21,2,156,206,21,22,7,243,65,205,141,237,62,116,203,109,208,145,249,202,201,59,118,171,138,97,174,124,32,64,133,118,130,107,212,148,20,159,114,105,141,62,64,9,253,47,79,199,61,20,124,10,227,9,183,31,197,246,138,159,78,99,159,130,158,162,110,196,183,45,71,15,194,162,226,9,37,233,150,192,120,77,202,95,94,106,186,150,229,241,192,22,33,144,195,145,72,198,198,209,250,189,2,113,223,196,216,82,23,194,166,135,103,227,102,100,208,210,188,93,37,38,232,230,98,154,82,7,220,190,206,171,206,73,240,186,192,138,225,138,112,1,182,3,224,204,54,227,126,179,164,59,53,151,27,243,152,134,11,123,70,207,18,117,132,37,202,2,209,138,12,98,5,54,123,74,188,57,222,176,23,1,216,248,91,182,135,180,120,37,37,243,41,47,5,66,252,35,202,6,76,24,56,
 85,34,149,230,82,69,229,55,18,196,28,252,112,217,208,192,117,177,196,136,246,36,247,170,222,9,229,52,228,197,204,208,157,222,55,253,105,108,99,176,189,131,156,241,239,97,34,54,248,107,102,47,19,58,84,36,50,86,136,155,43,177,236,239,135,228,108,90,62,122,138,187,146,201,196,57,226,152,201,141,178,134,86,202,22,63,22,56,75,1,117,3,105,247,169,175,3,51,52,136,171,121,92,11,111,189,177,17,98,87,96,234,26,174,163,26,189,134,14,95,190,86,228,182,33,77,251,22,17,128,135,13,104,0,138,77,167,237,175,181,222,173,188,41,220,66,74,13,65,218,23,237,132,120,211,94,116,166,46,78,102,254,174,69,48,21,136,124,185,194,81,144,170,71,243,117,68,89,95,21,180,80,120,62,162,168,240,12,196,174,77,161,163,9,31,130,233,72,199,184,80,96,39,85,140,52,167,233,54,209,179,222,123,230,86,54,225,149,92,111,224,11,242,89,148,33,3,72,76,35,209,50,102,188,99,197,151,79,202,208,144,194,60,250,175,221,141,43,47,42,250,78,205,136,100,223,109,186,9,5,180,107,198,0,58,20,64,27,73,99,81,210,218,30,98,158,194,107,137
 ,120,30,173,26,214,117,230,50,40,148,28,93,207,80,226,172,115,245,55,154,129,143,65,104,249,32,202,51,40,83,111,72,90,213,26,99,215,72,153,164,84,218,184,189,184,57,38,17,145,150,178,170,68,0,30,148,62,236,95,190,90,169,220,85,198,230,122,115,17,37,180,166,234,41,27,7,24,59,70,55,87,149,145,153,86,173,162,251,132,233,190,177,2,239,34,166,80,247,225,48,117,6,163,51,2,233,115,147,174,115,105,39,72,192,41,33,71,188,21,122,84,126,236,207,79,189,9,68,167,62,38,65,219,49,120,251,39,125,55,37,81,122,102,46,115,156,176,14,108,178,249,84,61,59,12,131,157,240,43,169,65,11,90,161,14,160,12,43,188,190,254,167,73,140,67,140,189,18,85,241,254,63,237,41,72,139,171,140,52,175,138,82,152,3,109,150,117,62,103,133,13,180,187,63,219,20,231,119,73,164,170,73,155,149,112,196,64,153,247,217,38,141,90,148,135,49,67,178,56,45,177,70,182,63,49,0,135,215,203,90,86,130,121,43,147,10,218,230,22,216,185,252,3,140,200,43,235,64,96,158,142,101,64,37,24,165,136,229,192,79,55,194,36,98,119,90,247,76,170,29,5
 6,47,16,158,228,8,68,117,47,241,137,162,244,84,206,46,61,92,105,208,169,189,205,54,55,241,27,109,144,91,228,231,167,152,199,89,15,43,252,198,245,214,246,169,173,6,58,98,31,211,201,96,220,103,203,117,118,137,34,9,249,22,141,55,210,7,182,144,59,61,136,174,141,176,111,153,60,9,242,121,252,139,64,134,173,222,25,168,229,91,70,166,11,229,9,234,151,107,160,98,158,116,179,141,54,188,57,96,100,30,28,173,159,74,131,230,15,166,45,255,125,157,182,35,237,132,66,152,29,99,20,28,225,44,50,104,170,67,5,18,95,252,10,108,110,21,127,183,246,82,110,76,92,255,255,143,101,25,11,18,21,64,33,24,104,84,17,87,230,23,0,250,67,103,234,7,159,118,250,169,253,238,190,214,48,24,10,150,232,107,129,134,57,218,46,249,183,166,95,58,143,169,28,47,158,128,77,231,252,41,2,24,233,71,123,167,28,232,158,109,34,54,156,103,6,234,52,51,6,191,162,227,13,116,184,247,0,87,123,104,115,19,59,176,33,252,182,59,169,102,180,108,55,25,135,101,249,21,178,159,167,233,51,79,103,106,22,163,201,56,104,41,225,238,212,86,222,48,33,9,7
 6,204,88,151,141,66,148,242,28,17,214,49,53,245,89,168,24,35,159,65,25,132,163,221,226,106,171,176,112,16,101,93,71,221,91,180,187,166,162,241,93,156,183,186,30,60,199,135,3,48,105,5,132,233,122,17,66,48,63,157,156,67,73,173,76,148,77,95,201,106,8,146,60,37,134,147,131,218,14,211,148,229,12,183,140,184,122,7,119,169,202,54,209,221,188,233,90,132,159,215,207,24,105,75,195,117,130,170,148,72,177,34,92,235,79,247,203,166,119,70,126,50,129,132,103,169,21,172,107,130,101,241,88,22,98,165,245,69,140,162,162,227,67,128,220,174,217,180,138,184,73,58,246,162,204,36,152,238,128,227,28,145,53,118,59,232,181,197,50,243,190,210,253,248,118,115,194,134,146,209,109,102,217,51,94,4,99,10,104,246,147,216,239,8,158,93,115,163,157,97,123,114,160,86,48,228,191,34,189,255,170,147,242,192,10,44,65,26,171,142,181,253,92,187,53,62,164,157,145,234,254,113,114,242,153,185,242,99,127,22,14,77,35,214,4,122,176,84,6,156,16,75,6,121,97,237,165,17,250,189,59,229,255,64,53,124,193,99,75,202,238,228,60,147,
 17,181,250,163,239,86,143,197,235,103,203,161,94,130,48,4,180,222,157,182,39,240,25,89,218,209,71,228,144,136,234,89,112,134,64,7,197,198,172,9,182,10,98,255,153,209,255,12,149,178,197,44,224,80,172,161,76,96,253,20,175,246,246,47,2,18,247,162,22,59,215,57,206,144,81,115,252,96,218,160,103,228,86,248,253,18,7,47,148,195,130,47,145,205,146,149,94,211,180,78,235,110,106,168,163,160,15,5,158,177,163,86,20,42,80,15,182,215,111,49,159,203,2,75,171,188,68,150,196,255,43,34,255,136,130,14,227,167,244,253,99,243,230,170,58,169,117,195,146,220,232,54,249,204,33,119,214,156,177,101,74,97,71,147,87,199,187,10,146,78,117,223,10,210,210,216,216,31,255,172,144,65,233,97,239,176,69,182,57,15,28,101,129,173,129,189,16,100,114,9,91,142,246,59,141,48,216,150,32,83,6,225,29,152,230,211,210,144,253,82,29,132,249,10,153,155,111,191,0,13,212,116,229,156,94,144,113,21,216,154,226,122,152,13,163,254,30,144,127,71,37,57,248,108,228,209,79,153,148,111,28,58,175,141,202,182,111,44,2,183,132,19,149,11,
 150,228,61,77,56,67,102,22,238,200,107,13,152,135,175,234,36,100,35,168,46,122,220,17,86,223,41,80,124,177,231,212,235,139,222,176,97,20,204,148,38,91,174,172,141,9,63,32,170,130,98,177,193,70,170,30,114,120,126,78,8,181,124,88,244,86,201,66,95,12,172,187,155,151,54,96,178,75,85,114,208,196,252,52,82,148,73,243,189,227,234,17,177,76,104,234,80,16,156,173,42,228,17,41,197,133,140,87,119,205,189,253,0,92,219,219,239,32,9,224,7,205,44,249,187,62,146,150,6,187,103,224,39,116,61,31,76,163,124,193,155,35,64,187,195,204,104,121,90,209,85,170,185,219,179,64,58,210,183,173,115,73,96,89,235,15,98,65,34,134,147,186,64,205,5,118,208,188,54,69,121,137,159,56,161,126,147,72,63,51,130,58,196,155,216,83,186,128,170,12,16,113,64,47,39,17,61,204,97,18,244,74,6,157,255,162,254,200,36,184,186,189,210,129,56,254,214,81,97,28,147,86,161,28,96,106,0,226,25,85,123,184,158,94,130,59,122,98,6,117,161,61,108,213,222,16,103,134,219,77,62,169,195,166,232,120,17,208,135,4,34,15,217,252,62,227,235,136,1,7
 ,11,165,26,178,252,131,142,54,146,51,100,67,14,117,141,174,12,87,31,145,69,68,41,188,252,110,226,67,93,237,240,47,99,157,135,114,9,26,146,242,32,122,100,14,228,228,220,108,63,221,117,147,67,93,0,208,60,15,1,33,68,151,179,203,160,217,235,238,56,19,127,145,27,30,110,156,205,202,7,125,240,116,141,130,68,244,138,124,135,160,100,136,67,198,81,116,151,187,80,9,140,64,255,155,22,150,151,188,121,71,35,228,237,150,154,147,37,12,138,19,195,140,166,48,141,6,46,149,88,248,114,80,243,216,178,7,8,58,32,215,142,80,85,236,253,7,136,30,132,81,202,98,208,147,212,158,27,244,51,74,126,183,64,146,67,228,102,142,221,206,113,44,96,137,29,133,36,141,201,236,145,55,222,189,43,30,16,119,139,100,158,172,144,201,71,186,165,189,0,28,190,43,73,184,41,32,143,21,76,214,75,152,225,200,86,70,94,169,136,27,25,189,172,58,220,188,137,36,112,42,131,169,51,83,65,73,59,252,12,193,249,201,171,93,212,56,221,225,41,73,117,154,222,97,86,79,151,243,218,230,85,90,180,13,207,106,93,243,234,197,30,12,95,117,173,127,243,21
 2,115,247,136,233,24,119,204,185,213,97,91,25,237,198,128,48,241,30,247,137,140,182,253,75,252,12,73,158,161,89,67,148,223,26,187,82,154,117,249,2,145,249,199,230,53,186,120,144,101,217,32,145,131,41,80,202,122,105,49,217,255,158,150,78,239,205,18,205,186,185,59,119,77,253,116,59,53,177,80,94,251,92,66,213,47,21,173,134,137,148,12,239,243,229,244,82,181,180,176,74,131,205,63,66,159,24,186,178,129,150,213,119,18,238,47,231,184,245,95,94,96,187,169,233,61,194,58,240,137,208,162,180,112,136,72,5,189,153,74,0,110,2,121,149,9,244,172,108,206,136,99,184,70,17,68,69,3,172,39,240,226,64,1,255,99,58,197,239,95,167,229,86,159,41,162,110,235,153,43,210,193,243,33,158,176,19,168,170,10,225,124,88,137,235,142,96,65,66,94,52,138,245,38,148,201,218,89,29,66,50,165,111,94,10,68,9,114,31,171,179,253,202,185,84,253,241,124,45,126,229,58,134,136,150,176,7,207,64,61,174,116,39,33,66,167,201,48,212,109,192,101,186,255,163,73,101,54,234,90,13,3,174,187,131,166,29,241,137,109,145,90,178,218,122,46
 ,39,130,21,76,120,157,131,109,162,227,196,139,108,88,42,71,180,205,240,33,213,156,145,177,208,230,71,40,100,82,214,206,218,232,151,215,113,14,209,188,46,198,207,128,137,248,97,81,172,242,177,29,63,144,24,156,174,156,25,110,52,231,103,141,111,28,255,221,172,107,34,177,18,97,147,225,186,197,57,107,11,222,176,165,165,68,229,46,171,235,125,195,164,202,200,79,135,126,37,80,7,112,152,168,87,188,34,165,137,129,237,204,248,193,120,248,24,48,229,241,32,63,6,175,84,218,44,19,25,86,187,52,139,90,107,165,95,37,196,255,124,175,236,167,115,211,167,248,29,74,30,104,35,207,96,126,176,231,75,254,121,192,202,252,11,88,2,164,76,255,66,9,141,254,81,145,38,70,45,248,222,254,164,47,31,40,110,159,238,197,73,96,138,143,89,212,62,9,89,244,210,218,155,198,57,16,62,255,123,16,48,76,240,73,242,136,5,62,165,65,121,175,198,191,32,84,100,222,116,234,172,54,119,68,126,228,158,140,207,231,218,48,218,44,93,152,102,82,89,35,64,248,111,107,145,167,65,182,58,145,130,24,184,65,131,150,57,253,39,37,3,10,123,248,1
 67,106,11,78,73,134,91,62,125,159,249,72,229,39,76,30,173,165,221,248,206,226,229,105,42,184,59,68,23,36,8,142,136,144,66,250,137,180,241,109,124,180,56,86,96,57,166,227,170,74,195,165,98,250,155,83,125,228,157,105,113,193,199,143,230,188,222,13,252,127,221,238,137,67,154,163,20,42,178,220,183,230,128,44,206,219,173,5,214,161,69,0,164,49,215,191,121,246,193,85,164,98,78,120,176,169,26,233,132,131,87,89,11,253,39,179,143,240,58,87,91,12,211,61,199,151,210,93,246,127,219,9,12,160,230,166,55,65,153,139,193,146,108,80,93,162,92,72,108,95,216,7,168,51,82,79,90,51,22,143,37,44,236,172,94,51,161,29,188,200,232,255,241,160,197,101,2,53,135,211,103,122,10,8,53,203,156,71,168,162,197,214,164,230,4,232,79,203,204,240,236,36,168,128,76,247,178,165,26,157,27,125,151,124,194,15,189,61,110,26,185,93,35,133,51,224,44,52,212,159,84,61,137,97,133,32,89,64,161,141,118,71,197,63,194,206,220,130,1,84,143,67,142,71,63,94,93,180,95,139,87,86,215,45,48,23,185,189,159,118,0,14,154,14,148,52,1,224,15
 3,36,138,111,176,246,28,165,61,62,225,53,175,147,68,68,134,136,186,46,11,192,14,116,191,111,189,235,4,159,105,95,68,120,173,63,135,148,132,21,92,48,18,30,0,224,57,119,53,35,61,226,51,239,75,88,33,176,19,200,155,118,157,79,125,163,176,189,226,186,236,252,246,115,100,52,196,183,92,61,194,197,144,179,175,51,190,25,182,81,101,90,51,20,215,252,167,84,3,56,47,213,109,226,207,13,52,167,146,9,67,147,199,104,226,137,176,172,33,148,52,120,177,116,179,159,187,230,141,64,7,210,185,117,14,27,170,201,233,240,152,111,11,214,215,1,80,147,38,80,128,52,74,243,203,246,110,120,157,146,52,77,162,125,147,186,172,231,92,34,1,173,248,90,239,70,5,74,55,188,158,66,111,186,6,67,102,51,24,48,188,222,163,64,126,242,161,97,75,233,215,230,25,23,133,88,230,236,221,126,80,151,188,74,96,6,241,133,120,117,152,206,222,64,18,127,102,89,240,210,24,80,239,95,176,195,73,222,46,222,151,84,197,110,0,175,85,24,165,207,237,223,15,193,159,137,213,22,213,240,121,194,164,95,112,255,4,170,7,128,205,203,87,30,35,45,91,140,
 41,69,26,45,142,246,42,205,61,136,234,210,78,149,151,182,184,83,39,131,154,191,169,134,93,104,145,21,116,2,136,218,170,252,128,68,161,11,58,41,137,203,88,179,40,101,25,45,157,55,87,206,181,56,147,74,2,143,94,14,71,71,34,197,68,59,56,150,246,111,60,129,234,93,223,95,209,57,127,204,223,25,153,247,77,42,230,210,171,37,74,223,88,158,29,87,48,128,252,23,111,6,252,219,154,184,254,133,158,1,131,69,155,3,122,8,7,111,114,137,122,100,7,22,133,241,116,136,114,75,2,230,178,135,175,70,192,40,123,106,176,98,34,51,146,250,115,31,177,164,183,194,172,20,138,146,75,34,77,174,206,56,61,89,164,128,26,36,144,145,202,224,251,47,170,237,59,141,75,98,210,210,111,8,58,225,6,158,105,108,199,220,141,8,76,125,111,117,80,122,2,203,183,117,64,180,62,204,82,143,185,243,253,247,157,1,234,214,220,226,71,56,34,53,140,153,247,49,207,254,167,84,243,91,249,20,44,225,184,181,233,41,213,251,190,252,185,96,95,229,114,223,131,148,231,133,202,31,235,238,66,63,149,197,211,139,53,191,237,123,18,231,115,187,3,83,44,201
 ,14,203,144,46,251,105,29,49,24,20,123,182,85,115,43,199,214,146,57,147,167,215,244,8,182,169,5,109,212,145,223,135,135,1,244,115,190,44,40,25,26,151,19,182,6,2,184,235,17,154,13,145,28,194,55,247,140,175,167,91,103,225,117,141,250,234,120,176,252,52,55,94,149,68,107,47,29,254,158,128,250,1,241,27,236,29,165,35,229,188,163,22,248,71,187,75,224,3,240,189,97,25,211,157,34,205,56,134,227,190,84,20,191,146,217,19,215,220,118,132,247,181,234,159,197,103,210,195,117,228,226,16,175,252,82,173,172,112,42,99,102,214,161,8,213,179,178,142,5,82,130,129,98,81,133,49,254,199,238,140,151,85,255,137,26,40,214,205,29,96,205,17,183,231,197,125,100,194,196,173,45,21,91,217,174,56,73,214,233,127,68,44,12,112,85,128,124,162,8,6,186,211,121,201,211,174,7,64,136,88,97,6,0,236,229,8,175,36,79,109,9,18,250,20,118,53,82,178,184,40,229,40,160,129,139,116,53,36,178,135,48,178,219,144,244,186,123,203,136,226,139,171,68,69,136,72,111,15,29,169,93,153,124,223,160,239,241,222,134,210,17,240,132,162,113,25
 2,252,188,136,102,124,109,154,152,130,126,249,205,171,127,249,145,181,241,141,205,80,241,73,144,102,201,119,246,191,66,75,212,44,89,171,10,91,233,154,150,20,165,235,80,254,50,60,0,223,74,14,182,115,7,98,187,224,36,243,27,86,214,12,166,176,92,163,219,230,28,248,240,211,29,186,77,176,83,39,147,241,125,240,166,103,46,81,38,169,230,168,64,90,184,17,227,5,76,18,88,148,172,109,106,104,144,7,59,102,134,147,38,238,9,161,153,154,38,199,75,46,224,99,121,70,141,21,35,126,59,158,123,254,220,205,37,236,183,162,36,57,75,6,161,199,26,105,124,235,28,126,140,117,114,24,111,123,147,117,242,16,91,112,207,169,2,96,183,89,24,12,15,89,202,210,80,0,22,174,172,144,69,196,122,18,3,59,149,122,112,232,82,218,119,113,157,224,30,47,178,141,186,120,253,54,184,180,219,36,185,29,76,39,33,215,109,249,217,233,163,176,150,73,213,69,97,120,233,146,115,174,49,173,177,238,236,52,160,223,112,169,140,215,237,36,130,173,187,8,60,145,111,163,10,154,53,173,165,121,63,92,101,223,116,17,96,161,157,7,10,191,116,185,155,
 93,116,98,224,125,73,245,146,202,6,211,188,13,29,61,235,21,45,135,226,5,140,39,244,212,110,233,167,245,137,132,107,180,194,37,119,182,2,211,61,154,29,138,121,69,91,152,255,150,104,28,76,48,99,96,174,207,63,218,248,181,84,176,169,15,51,180,123,205,245,217,38,77,76,112,234,99,142,237,221,137,3,166,250,13,232,5,12,98,229,81,18,61,75,165,204,17,137,85,100,27,81,247,170,143,51,130,140,173,102,76,161,130,199,123,34,132,138,33,222,235,215,110,149,27,157,126,64,23,215,46,82,179,16,142,27,114,239,142,14,110,123,178,221,238,79,150,4,166,201,251,138,222,38,244,102,243,226,205,157,156,71,150,70,73,156,167,161,108,207,88,14,187,237,5,75,51,217,79,29,58,85,212,17,71,58,122,26,71,55,180,7,253,23,26,160,159,117,172,206,31,66,205,151,152,133,207,31,121,221,157,6,126,150,48,98,250,45,139,245,225,64,150,27,148,123,116,211,156,202,177,27,35,5,82,181,150,32,220,201,241,83,121,217,5,229,120,16,124,69,204,102,123,154,80,196,80,242,5,60,214,154,194,79,185,67,99,24,132,98,108,80,109,45,88,224,127,18
 4,111,17,116,228,65,4,208,194,93,138,165,200,204,9,73,139,141,24,74,211,196,224,229,222,210,154,82,55,172,87,184,222,184,22,12,9,185,134,186,102,115,106,90,77,10,29,155,100,70,78,61,195,91,225,252,232,200,131,2,88,17,52,229,135,251,92,59,90,150,124,110,7,73,11,220,18,149,25,45,110,88,117,132,119,4,183,177,193,34,218,13,161,233,164,54,89,119,226,10,66,105,126,171,175,89,182,72,183,247,58,83,99,78,225,44,13,155,107,33,221,252,35,234,146,71,24,203,98,12,202,129,17,184,75,205,155,40,2,184,132,178,141,205,211,173,252,70,147,99,156,114,98,187,125,47,247,246,199,143,76,164,117,133,60,238,55,68,115,130,109,144,43,144,161,201,58,203,114,222,84,3,102,196,70,16,228,69,153,148,252,213,4,48,227,97,137,73,39,206,20,140,46,152,197,100,38,4,46,109,89,62,17,7,116,210,212,144,60,133,59,90,82,66,205,117,205,88,161,148,233,112,144,26,129,92,6,191,137,17,43,163,60,49,184,13,22,73,126,220,126,156,179,121,138,217,106,211,41,147,96,16,156,179,15,101,236,253,5,127,53,116,151,64,156,77,182,62,138,222
 ,154,14,139,128,74,205,190,88,224,118,125,165,119,14,123,74,199,19,206,22,126,228,139,210,210,18,192,81,182,236,67,16,254,29,154,20,40,24,0,218,7,254,26,93,195,31,229,172,228,200,176,67,137,197,100,173,181,250,27,11,106,62,40,249,75,53,151,146,44,152,168,91,44,239,89,127,185,78,249,58,88,31,22,23,129,89,48,220,131,240,150,147,250,152,19,242,179,247,200,100,57,162,92,220,155,251,154,129,209,197,75,209,113,165,84,209,110,110,49,77,53,16,80,228,39,87,223,1,33,76,206,93,219,128,155,51,140,63,236,102,89,9,171,203,7,7,60,186,88,75,40,178,15,145,166,145,164,58,195,174,123,103,204,124,116,95,156,17,151,195,92,151,228,215,245,229,206,207,240,136,155,191,59,158,123,249,11,229,34,41,186,163,160,47,213,141,3,149,165,212,199,91,245,240,79,221,46,14,118,59,218,192,171,103,143,215,200,247,167,118,94,219,148,145,40,27,3,155,20,195,231,180,140,9,212,147,114,170,163,19,171,207,70,152,221,8,234,149,233,205,89,7,58,161,7,240,101,69,121,193,200,171,228,18,140,165,130,76,50,86,72,93,36,102,65,58,
 72,169,135,135,205,189,149,69,8,60,136,224,234,69,161,154,69,57,80,105,195,143,33,161,197,95,26,82,226,241,173,188,90,43,185,183,185,114,11,227,167,222,22,121,89,8,210,125,174,105,175,38,24,217,105,173,240,20,26,251,98,33,20,55,16,2,36,209,207,186,117,136,20,200,5,120,202,108,54,207,192,114,79,46,155,42,104,116,194,40,179,113,22,176,242,183,216,163,231,254,241,118,84,184,61,132,168,115,32,248,15,129,132,87,139,99,90,47,237,73,223,103,245,146,70,90,22,61,253,70,53,45,133,8,40,98,4,148,99,249,73,152,0,214,242,110,79,204,212,99,16,32,245,111,221,176,230,57,91,224,178,36,101,48,153,28,245,254,75,43,98,16,203,47,125,166,166,171,46,76,117,23,4,238,103,180,179,54,244,254,9,53,36,190,77,64,143,101,141,92,248,100,232,253,24,166,111,50,250,137,49,18,209,232,54,166,3,228,65,226,38,16,196,43,106,58,216,150,51,244,253,29,250,39,131,241,43,150,98,215,238,215,28,134,187,218,49,185,138,179,14,80,4,172,168,203,216,149,148,0,161,98,128,228,9,55,231,255,225,0,225,244,170,85,222,143,7,236,187,2
 52,231,234,82,229,17,194,135,45,50,158,57,17,4,74,65,143,185,134,85,39,97,51,127,29,162,167,59,172,81,34,149,194,218,106,35,8,203,214,83,139,31,79,176,83,86,188,31,110,249,37,204,80,95,179,0,4,133,106,12,241,26,20,56,37,109,198,247,253,5,175,113,63,0,208,204,116,84,122,161,211,149,114,91,19,67,81,98,244,117,12,204,117,165,252,231,240,69,28,134,144,8,19,111,120,41,85,75,194,253,81,1,158,199,121,34,159,27,67,138,17,78,50,93,88,5,38,245,40,120,245,208,221,67,217,93,251,22,69,214,12,228,219,204,179,140,66,108,40,231,73,142,253,17,214,157,2,228,2,78,205,162,121,204,150,200,148,90,150,25,241,31,204,192,59,249,10,189,37,210,4,76,254,152,163,65,243,211,107,13,246,6,4,86,237,252,213,172,88,205,38,91,72,247,205,153,116,144,0,192,163,156,143,209,206,215,1,29,39,220,119,225,241,48,144,70,37,40,182,92,102,156,181,136,47,61,14,118,64,146,70,204,219,149,10,40,72,27,161,2,51,212,77,54,96,36,67,43,188,29,198,147,185,119,36,173,61,121,163,4,182,133,68,57,57,39,144,251,236,20,73,74,65,79,80,11
 7,96,245,174,73,1,187,76,224,184,150,123,42,206,246,181,36,182,239,31,36,244,203,12,32,9,175,64,133,174,172,77,218,108,116,250,99,44,140,185,211,238,47,241,166,236,240,17,187,111,216,208,53,1,210,134,155,238,21,228,186,187,76,12,212,216,212,45,55,87,214,103,202,12,155,210,65,4,133,240,189,238,167,97,17,70,46,39,98,127,136,50,122,145,114,49,3,15,135,107,137,194,131,210,237,199,50,143,166,104,147,131,240,39,241,28,210,205,78,209,113,2,89,112,6,49,103,66,7,71,75,241,169,31,191,16,133,101,137,112,78,226,178,41,243,78,68,127,185,216,161,170,156,164,6,13,73,123,1,96,156,237,197,76,108,105,241,120,59,244,206,96,180,240,130,77,124,205,150,171,217,232,30,144,23,121,80,188,217,147,89,236,30,234,150,94,185,144,44,199,65,82,10,54,40,107,251,66,53,60,77,5,90,55,223,191,27,63,208,58,222,140,15,1,114,24,49,149,97,213,95,34,58,148,199,25,24,250,18,173,0,43,3,174,214,175,15,160,117,68,240,180,207,125,110,22,96,248,154,96,61,49,51,182,206,96,44,17,78,244,195,128,47,246,221,89,23,82,142,8,166,
 7,19,153,116,120,138,191,6,146,19,160,131,116,160,161,59,48,83,168,74,57,3,70,26,198,167,192,80,75,240,219,105,121,213,85,129,219,199,93,112,209,179,185,198,13,152,36,25,120,192,247,207,252,25,55,81,249,9,10,124,86,253,184,21,246,27,117,179,252,41,86,99,80,90,94,194,164,103,22,92,131,25,44,67,18,56,45,117,8,160,78,240,43,163,84,48,238,34,105,223,209,42,240,149,241,108,69,191,50,229,239,10,208,184,120,10,114,110,151,85,117,122,198,193,240,211,197,146,24,32,99,178,248,42,27,253,148,50,210,39,105,51,54,43,248,255,82,138,6,160,75,70,234,98,184,31,66,79,36,70,180,45,134,32,233,15,104,179,31,241,35,92,230,109,93,123,215,54,140,67,180,106,111,178,111,78,162,53,108,134,49,91,149,152,201,165,30,149,209,243,78,235,88,25,25,152,43,31,254,38,255,50,18,111,69,160,126,34,26,204,165,194,164,196,139,75,39,208,1,118,172,252,42,190,141,13,162,86,187,219,206,128,62,134,243,139,21,133,164,177,130,79,179,193,142,67,198,77,41,96,226,65,156,164,93,207,99,132,28,211,248,127,32,174,89,127,47,165,104
 ,161,46,217,32,230,250,37,1,219,47,43,88,138,88,122,140,174,5,225,22,231,61,134,204,155,21,205,226,1,253,90,204,133,102,0,223,191,206,249,168,189,120,55,193,26,61,32,244,194,162,135,29,240,0,200,32,43,55,243,71,56,243,134,156,31,116,25,43,82,25,202,237,224,131,100,225,202,107,208,217,141,11,90,157,181,2,115,153,124,208,44,54,108,197,168,150,199,100,96,109,106,69,31,177,236,123,177,34,238,108,2,69,132,242,56,189,62,236,236,164,87,45,66,227,231,218,211,57,101,203,88,241,201,234,252,226,228,98,138,109,96,89,239,61,72,132,254,201,197,155,100,171,87,36,63,23,50,161,28,82,26,53,241,24,45,171,83,250,206,59,104,125,206,208,226,201,3,141,143,247,37,123,48,165,189,221,114,144,200,247,145,142,193,83,160,58,90,155,205,158,92,42,118,171,114,91,115,62,80,231,3,27,64,49,28,107,238,13,17,35,46,187,231,113,46,15,156,65,220,236,232,100,234,162,219,253,221,159,101,209,250,209,169,217,4,142,75,202,65,91,114,25,194,226,78,68,58,188,241,5,195,128,225,255,76,119,1,77,252,30,209,68,191,135,77,186,1
 77,135,221,22,23,127,182,116,57,195,208,198,40,210,156,174,135,52,237,170,135,157,52,112,189,224,234,76,76,38,82,93,96,195,222,138,140,167,209,176,103,169,158,143,31,169,150,215,106,240,147,37,25,115,64,98,202,246,107,87,65,226,227,245,161,23,177,159,198,156,10,65,136,253,97,64,109,160,125,35,220,172,159,137,210,81,216,228,55,11,9,61,213,243,254,232,155,222,246,170,234,255,187,196,107,99,85,251,19,83,197,204,86,243,85,231,118,0,13,168,117,18,222,24,234,44,61,207,3,124,250,184,249,176,55,72,84,132,248,191,194,3,238,158,136,238,143,247,5,180,66,191,223,80,108,244,106,231,205,63,20,46,84,149,125,25,0,100,180,39,173,135,248,40,255,10,104,155,33,245,228,163,130,174,142,227,38,59,166,199,233,238,10,211,170,67,9,15,166,22,3,121,117,73,97,130,51,9,133,185,226,6,55,158,243,179,178,83,230,217,134,206,199,67,131,79,159,182,3,122,156,127,68,140,202,169,120,188,141,137,146,145,111,46,30,171,80,8,91,252,171,6,147,243,131,249,112,146,17,84,50,251,171,37,86,76,43,48,46,133,78,220,32,202,75,
 103,99,64,54,39,77,111,235,149,127,215,198,57,187,127,97,125,1,151,184,139,167,200,228,61,94,1,9,110,119,28,76,238,217,25,77,187,225,70,147,33,233,207,50,243,4,230,46,105,135,231,196,103,209,224,168,52,218,247,170,168,81,80,89,155,198,60,2,205,255,237,223,4,128,181,199,51,18,54,46,224,154,143,111,138,94,137,77,31,39,128,182,111,34,36,24,4,138,173,20,29,120,21,47,139,74,37,141,55,241,80,221,167,80,87,148,23,79,194,24,244,3,167,207,158,86,95,226,24,130,247,154,235,205,18,206,54,27,33,230,109,175,62,6,241,151,219,243,39,233,19,82,96,45,5,117,200,78,62,45,169,227,67,61,49,174,111,49,243,18,182,240,207,85,24,22,84,248,158,121,192,112,222,48,164,65,148,125,173,52,75,248,126,46,22,167,23,123,93,200,46,249,164,170,190,60,50,52,232,21,144,85,222,203,146,153,178,217,233,189,89,168,40,185,11,31,87,245,173,66,175,119,79,80,103,65,144,23,45,138,93,223,91,213,213,78,136,16,88,90,144,249,27,59,13,58,92,127,242,223,195,15,106,141,248,222,177,144,23,37,138,53,139,183,142,240,211,233,48,209,9
 4,161,83,250,53,92,0,156,186,74,236,96,121,60,88,139,201,35,232,226,106,42,213,197,6,249,153,131,47,155,62,0,227,126,117,241,62,160,51,231,55,0,170,172,233,203,134,245,159,244,78,26,219,237,209,158,34,226,136,230,241,206,37,77,7,201,59,75,125,152,117,155,252,225,208,12,110,40,22,41,203,0,158,89,120,147,214,211,50,147,196,123,157,171,70,79,53,51,54,205,88,75,29,9,148,63,199,123,49,91,34,117,44,237,252,212,95,177,107,180,183,32,106,221,52,218,205,68,147,163,183,74,59,247,8,138,50,131,234,58,197,27,30,239,27,120,21,241,178,121,207,110,229,219,138,67,21,250,45,42,85,11,17,252,191,100,111,15,123,49,194,165,135,46,78,19,3,246,81,33,93,128,59,218,136,163,136,6,110,104,110,155,74,126,64,37,34,72,114,185,58,192,5,154,220,242,198,229,131,240,35,190,164,7,125,122,80,53,159,49,139,141,156,63,33,164,59,45,122,201,118,23,83,27,35,5,94,80,29,160,228,158,217,214,160,63,132,33,244,102,140,112,3,194,133,234,177,93,252,192,236,184,170,167,213,186,229,226,128,242,235,49,154,140,232,35,204,143,5
 2,45,236,243,105,224,42,219,191,159,73,122,167,189,155,106,103,159,61,214,145,150,164,56,64,116,87,181,116,120,224,123,42,10,124,110,78,230,229,233,224,46,219,196,156,16,245,104,39,230,241,252,35,21,55,112,108,106,207,253,88,117,50,43,69,192,128,152,73,149,144,45,253,166,174,206,103,182,21,25,99,74,86,224,95,58,131,186,90,172,122,178,88,176,55,254,3,58,110,35,211,37,143,34,100,243,223,189,161,106,73,128,22,31,149,32,72,53,62,177,155,228,79,248,45,91,236,109,102,75,196,111,106,255,123,212,255,64,249,222,97,15,241,147,217,236,219,219,141,27,68,137,161,149,1,243,167,16,97,141,89,38,146,34,194,148,43,12,173,24,163,145,246,99,162,228,202,6,248,209,31,149,53,155,59,152,194,195,123,188,175,40,214,237,96,141,68,65,171,242,252,101,244,117,49,124,170,30,217,197,170,89,228,128,121,72,16,133,30,23,118,192,242,171,186,176,233,48,145,215,227,177,186,145,13,12,66,108,48,197,137,112,73,129,20,28,74,215,210,59,135,164,222,118,207,226,211,144,107,146,181,180,59,7,108,41,104,100,211,144,18,156
 ,99,206,89,96,145,105,241,136,212,154,180,46,108,33,222,160,238,49,97,181,64,101,39,177,205,167,156,170,123,72,117,108,231,243,249,180,170,64,92,1,108,54,173,220,175,126,37,208,0,65,92,157,142,119,235,198,236,87,110,82,139,163,56,13,124,252,141,66,165,87,18,179,222,165,149,215,168,68,90,28,44,3,207,130,136,160,185,238,119,235,74,1,4,23,75,78,117,6,212,138,8,17,251,154,234,109,202,224,138,3,184,86,98,132,52,0,252,166,200,207,247,172,98,62,239,112,192,236,40,208,49,206,186,23,204,245,155,230,191,156,138,71,108,118,189,82,136,121,9,143,23,46,107,125,168,234,1,47,4,148,215,72,11,84,216,44,16,26,241,133,48,64,79,196,21,122,119,3,172,171,195,173,182,137,208,60,178,137,11,26,24,242,233,4,27,248,35,107,93,252,128,87,132,114,111,139,90,100,75,200,103,174,47,63,32,130,0,124,96,240,175,180,238,37,122,105,46,23,75,231,165,190,238,106,174,6,136,202,213,61,181,210,216,137,221,252,182,158,198,108,180,255,82,130,105,249,165,157,146,180,60,248,17,45,97,42,148,99,190,22,41,72,253,72,67,19,103
 ,68,76,183,230,223,66,255,34,178,25,143,20,28,157,25,219,233,21,34,239,94,23,250,82,156,133,217,6,56,38,46,142,105,161,100,140,178,163,30,234,96,139,134,115,169,246,7,2,63,96,62,109,15,31,11,34,184,58,230,177,0,122,205,34,94,114,176,49,60,250,245,96,59,154,243,53,114,23,42,227,59,157,154,19,50,124,18,16,153,174,248,219,231,45,250,154,234,234,251,6,208,144,8,71,176,225,255,239,134,124,25,64,121,243,9,77,0,108,118,87,73,250,181,192,172,23,190,125,189,18,182,61,23,120,140,112,214,167,51,170,71,123,92,188,98,161,131,158,247,70,182,86,216,55,52,125,83,113,25,205,136,152,184,244,240,75,5,32,5,14,142,42,4,77,110,249,35,86,197,192,7,203,235,162,40,209,44,67,112,112,88,184,209,167,241,89,86,165,0,228,199,116,39,228,209,29,180,12,106,14,27,2,65,131,10,28,6,43,55,67,192,75,164,202,120,152,34,130,143,235,104,150,247,255,139,148,62,1,176,250,6,197,122,114,212,253,55,148,218,246,106,158,185,69,246,98,94,118,53,87,198,170,15,24,238,90,43,140,39,11,216,79,126,203,14,181,250,80,31,51,59,80,2
 42,59,232,154,163,36,120,14,75,222,164,35,214,173,223,242,150,63,90,229,16,222,68,201,242,120,175,135,93,7,15,36,15,10,248,110,27,156,118,101,21,150,197,147,181,30,0,37,120,248,178,168,103,196,45,158,246,56,224,24,252,151,49,208,160,178,128,132,222,97,5,211,57,56,47,222,198,184,254,214,140,72,109,66,112,189,220,198,249,164,81,104,247,235,127,204,140,73,116,103,200,62,190,185,40,101,226,55,228,216,124,219,208,211,241,67,194,31,132,58,0,89,148,1,94,185,223,232,52,169,124,231,188,208,221,99,31,249,223,123,190,110,121,122,74,194,124,216,25,169,105,25,224,82,57,204,196,203,117,216,250,186,10,52,189,243,186,238,143,234,203,90,99,89,163,242,255,164,168,23,238,32,207,183,1,53,58,212,122,195,28,119,208,96,196,118,151,34,183,84,185,74,147,150,226,7,190,204,254,134,116,158,29,218,49,156,255,206,79,229,193,33,181,134,99,92,79,129,86,159,183,114,86,66,162,153,76,135,240,78,9,76,246,113,170,77,75,128,123,6,159,254,195,23,196,16,4,134,19,174,12,9,126,189,0,74,6,177,124,171,92,217,193,176,2
 39,82,219,63,15,63,141,27,234,160,58,211,248,34,150,212,161,152,199,181,168,202,15,167,171,68,65,236,111,148,139,9,44,120,189,32,159,152,55,10,246,195,68,103,224,113,7,188,103,109,148,26,177,109,44,184,189,100,121,222,150,226,200,18,215,46,225,59,43,55,211,9,71,80,127,207,89,19,246,166,129,61,147,118,27,63,228,200,138,203,217,184,173,37,94,129,65,181,225,254,69,53,80,106,43,97,125,29,41,40,60,212,71,235,181,220,154,230,235,91,1,138,172,223,176,161,140,237,202,79,161,212,235,94,79,53,227,104,237,78,152,118,93,169,146,147,25,119,99,22,234,211,154,183,31,118,1,93,230,98,105,87,209,172,34,220,221,203,47,196,34,106,2,244,129,139,2,38,102,52,12,57,63,126,180,178,160,187,163,123,209,4,64,7,14,50,41,217,142,35,89,141,98,153,181,167,52,195,185,5,138,110,1,167,83,235,193,48,132,241,206,34,29,181,43,155,85,14,146,104,175,55,120,236,117,17,195,52,236,58,210,140,136,222,83,123,39,127,126,216,22,160,196,4,178,202,40,74,28,110,7,4,175,6,77,78,113,185,67,143,46,252,48,153,139,31,19,227,3,15
 6,238,162,131,233,147,207,15,172,241,37,50,17,196,236,121,66,65,213,85,225,167,176,124,240,210,115,5,203,127,167,98,65,86,23,201,68,139,68,54,117,115,94,118,166,196,82,214,60,103,160,37,141,50,138,128,77,136,231,96,170,44,118,114,181,129,216,112,108,33,126,135,67,97,43,237,79,104,54,37,229,161,106,180,62,152,90,206,44,70,73,229,50,77,254,202,134,27,169,13,51,203,204,206,214,132,228,10,73,185,194,246,226,243,39,58,111,243,214,17,227,124,237,67,219,111,10,8,122,131,214,7,48,120,136,178,202,65,233,2,152,172,129,216,190,142,156,196,200,69,29,28,159,80,112,13,78,72,111,31,79,51,165,203,254,147,63,32,35,245,39,50,44,52,206,30,176,90,18,60,1,65,93,203,200,231,18,221,238,208,91,68,126,109,30,168,185,75,226,177,172,30,89,59,230,31,149,27,162,178,46,189,187,46,191,56,88,171,64,16,173,239,235,134,213,73,91,42,24,205,89,26,192,148,13,82,248,250,229,174,155,172,24,226,251,116,231,144,52,182,164,254,208,219,187,25,160,25,211,26,255,232,42,220,36,57,21,144,69,87,225,30,139,96,86,139,51,217
 ,178,238,53,232,111,47,70,117,19,156,55,75,26,32,59,246,207,116,137,17,233,50,208,180,99,220,36,234,137,126,23,59,147,90,79,103,238,171,35,162,7,45,69,161,79,29,54,54,186,41,189,169,211,221,94,160,244,239,251,221,18,121,206,87,184,9,70,252,113,128,202,179,91,243,132,247,104,229,240,120,128,208,229,149,107,255,243,237,230,222,250,223,196,158,3,75,88,164,109,115,120,0,118,106,107,15,161,175,44,155,1,240,253,10,242,64,157,58,109,111,151,51,39,134,151,145,210,57,128,252,61,189,122,53,127,226,137,142,26,92,162,237,97,196,167,85,173,155,215,49,4,30,70,232,253,141,6,123,159,147,77,79,207,165,33,67,241,141,49,238,238,144,70,33,32,19,14,36,198,60,9,248,4,225,179,182,55,147,132,241,161,111,82,224,246,165,7,238,56,210,143,215,212,172,103,48,172,157,11,22,77,140,79,234,60,155,187,109,154,240,165,173,206,233,64,222,197,219,137,254,237,221,16,216,83,226,219,26,123,71,113,174,175,188,152,32,146,136,234,218,2,87,86,174,56,128,237,135,190,92,220,219,171,85,66,209,149,232,44,62,95,77,37,193,1
 27,164,79,11,196,245,109,222,147,8,135,37,94,73,32,90,220,42,211,76,211,215,6,9,176,101,13,198,120,212,170,106,79,67,231,147,28,53,202,27,213,57,136,253,236,231,65,142,244,164,7,42,65,235,72,82,67,120,43,135,181,143,30,130,30,32,29,41,178,56,173,170,108,4,33,21,135,187,152,244,97,206,26,116,40,162,176,175,49,164,234,100,228,237,165,254,133,242,184,52,92,70,183,170,29,184,202,122,227,51,158,14,62,248,204,51,157,237,65,219,79,191,87,247,99,175,24,74,93,138,158,213,74,221,75,144,150,208,68,87,98,33,215,202,164,178,198,197,25,164,212,49,34,20,139,184,79,161,105,102,14,145,7,183,168,79,39,157,34,214,195,157,118,243,81,109,54,144,104,19,10,73,225,54,217,122,167,18,26,185,90,220,169,82,57,166,220,196,231,40,228,48,133,66,195,240,115,168,143,110,12,232,156,64,24,109,117,225,203,116,241,189,65,242,63,86,122,152,235,0,42,11,186,91,114,242,207,194,245,213,16,71,181,94,251,163,29,203,189,12,129,171,2,29,8,218,209,234,21,189,93,85,9,231,122,100,219,46,56,246,12,126,156,182,97,180,129,149
 ,17,8,143,243,7,189,190,158,247,89,145,247,51,2,0,229,49,187,1,93,30,116,190,210,185,139,49,81,13,196,205,134,54,202,245,39,147,230,236,159,76,11,109,102,54,35,233,229,108,91,232,205,175,27,164,41,196,235,143,125,129,215,139,48,81,184,101,243,0,218,245,217,213,8,233,33,85,202,118,229,14,207,221,190,238,14,122,204,229,70,224,150,32,174,142,215,224,162,49,55,209,134,108,212,110,252,157,151,165,169,194,77,234,169,169,237,98,177,202,55,60,48,187,48,120,56,113,23,72,189,166,197,28,114,117,6,34,178,175,189,142,240,54,30,90,214,154,235,247,38,55,148,27,70,213,218,117,250,83,145,178,187,110,198,236,254,197,4,208,33,171,171,90,20,237,81,223,171,172,52,109,101,77,131,185,3,177,218,93,222,29,194,26,83,88,40,183,147,156,153,158,205,243,199,198,36,211,207,104,55,148,96,19,136,140,126,39,20,77,108,46,244,132,31,0,198,104,44,100,221,158,107,219,159,246,92,213,127,254,85,124,143,23,135,99,36,142,144,157,233,246,83,178,222,41,65,61,110,23,146,174,185,194,23,10,80,1,198,215,211,0,185,147,124,
 251,204,211,29,41,184,37,169,41,30,109,62,67,161,195,255,37,239,54,8,213,81,206,245,132,164,76,209,76,235,242,2,74,79,118,194,36,40,240,136,22,46,71,225,198,252,70,88,184,214,9,205,215,131,141,160,32,227,189,96,189,229,145,126,110,201,189,127,164,137,62,176,48,139,242,238,226,19,113,77,238,69,71,229,171,142,130,12,252,247,50,85,166,184,126,232,7,135,222,182,171,75,78,71,87,118,172,72,190,188,130,127,139,235,15,13,194,118,177,122,135,97,255,243,98,26,219,230,191,220,71,251,155,188,152,21,247,94,131,247,185,43,100,131,228,214,117,182,247,162,136,99,195,43,32,246,56,201,189,229,7,174,47,165,54,58,32,183,129,166,167,139,84,25,152,175,159,71,120,154,171,200,21,248,235,113,33,6,201,129,47,174,160,109,34,204,123,21,154,232,171,31,69,56,255,53,108,109,236,154,214,157,77,234,169,209,106,74,120,38,7,151,210,231,199,247,49,231,158,92,25,66,88,73,125,48,84,215,124,129,227,123,242,87,228,237,164,6,174,15,106,208,166,130,34,168,199,226,222,183,1,112,232,98,207,169,166,0,77,236,215,195,207
 ,236,78,55,143,43,91,61,23,226,147,127,250,94,43,69,227,47,216,79,21,63,42,203,97,239,7,218,241,142,67,58,28,143,235,97,244,122,244,229,64,166,3,135,127,37,195,231,110,36,201,215,235,145,103,194,189,189,71,181,169,226,223,18,55,199,171,94,27,226,134,54,203,237,213,89,186,170,130,35,117,9,188,154,161,37,179,50,172,8,123,82,242,50,197,0,211,229,246,73,43,155,74,169,52,4,181,80,22,170,239,133,208,88,160,192,89,253,146,17,221,195,177,166,78,82,254,33,116,107,228,193,86,151,121,123,25,80,78,184,210,224,64,16,64,246,55,36,132,147,88,7,180,235,247,63,125,81,88,122,154,189,117,98,134,221,120,235,124,83,186,125,187,119,149,48,125,213,192,97,225,125,98,1,236,132,68,20,251,209,15,39,154,139,198,56,21,140,194,137,33,204,176,103,145,43,126,73,182,251,218,241,253,10,242,176,121,73,195,125,32,196,83,5,73,182,0,220,35,210,255,82,91,43,214,181,117,235,251,227,57,145,81,97,183,200,168,138,62,70,167,197,111,33,218,182,205,118,165,190,177,225,107,166,62,101,52,105,79,247,39,75,121,204,115,199,9
 2,6,142,209,20,175,246,7,37,251,166,198,62,68,68,230,164,12,239,213,177,81,120,59,235,147,212,169,100,64,139,168,215,187,103,142,241,61,213,81,243,116,156,114,254,98,59,124,119,213,181,166,218,206,191,180,177,63,133,126,194,123,83,118,125,142,183,126,83,95,127,115,149,101,32,127,235,200,238,115,45,134,10,237,147,203,121,77,62,65,223,185,158,90,51,190,91,13,158,42,15,184,109,84,154,146,207,167,213,218,152,126,2,216,166,31,71,80,41,42,122,143,203,26,1,207,196,35,91,210,10,88,27,163,125,138,136,60,112,80,170,185,66,38,85,176,254,109,46,80,97,103,187,58,30,58,246,253,75,177,124,1,162,166,130,18,3,132,107,21,2,243,80,139,78,142,146,137,25,240,53,119,105,92,202,213,173,164,128,37,58,201,126,177,6,180,48,175,74,177,43,203,109,42,54,119,136,240,4,83,151,177,104,85,196,96,115,248,65,237,162,244,180,239,163,9,27,226,189,101,222,163,141,22,35,110,139,181,186,141,52,61,30,227,159,63,14,142,120,180,218,6,0,85,138,161,247,139,8,107,200,26,228,113,74,230,82,135,210,239,132,227,135,106,213,
 32,121,132,188,92,87,90,123,241,203,230,155,206,79,89,47,223,68,181,148,229,118,26,223,86,22,183,204,22,81,241,52,25,135,95,245,188,194,38,163,95,41,231,146,25,66,109,7,152,226,158,71,221,244,174,196,112,55,22,207,32,156,123,180,139,101,164,152,207,194,211,18,100,18,128,48,224,88,97,161,143,113,172,115,87,167,223,22,138,229,209,5,36,45,127,25,82,179,152,154,201,86,115,240,84,131,6,56,245,206,247,185,14,249,223,215,85,13,199,215,197,187,237,89,1,223,125,245,202,3,84,97,115,96,176,185,2,56,251,239,78,7,166,30,216,167,112,147,126,250,85,27,33,177,20,68,18,184,214,26,237,70,201,38,196,175,4,31,21,11,151,36,186,64,72,113,208,175,9,38,54,5,15,199,208,244,219,82,155,41,10,185,161,5,103,93,12,13,254,60,219,255,182,220,45,191,133,29,217,51,168,246,205,244,247,0,38,97,191,72,159,208,221,78,195,149,187,156,214,123,59,55,16,216,64,98,191,164,60,250,180,227,183,163,107,201,124,27,22,123,253,184,3,68,217,226,43,152,154,133,16,104,185,229,220,193,42,50,170,231,252,109,96,157,200,208,55,177
 ,15,144,219,218,211,238,22,52,67,123,192,21,38,216,172,126,49,248,62,226,154,229,47,248,125,179,120,88,58,71,135,126,241,214,240,253,207,55,108,93,134,28,14,177,119,68,249,169,44,57,49,254,163,200,220,225,177,16,240,201,36,217,136,11,236,2,220,17,157,134,94,52,68,111,155,6,50,60,150,215,51,247,250,188,118,30,147,214,116,126,27,20,69,214,1,68,219,140,191,41,25,196,229,96,214,90,220,190,208,60,52,226,248,253,197,255,218,92,22,86,236,101,159,117,37,169,9,187,157,215,198,28,7,65,69,27,31,195,134,4,237,201,104,236,93,243,140,69,71,121,58,249,72,150,56,107,138,22,171,187,252,14,246,107,32,86,15,216,164,75,151,94,253,72,163,129,44,141,120,194,184,253,187,64,220,130,216,39,122,157,232,124,121,52,156,188,86,19,234,171,81,208,19,107,175,132,56,67,205,16,231,1,173,218,165,166,152,114,42,1,227,99,184,9,15,129,160,248,170,185,14,216,108,194,251,7,108,137,2,5,250,182,75,159,73,39,253,19,243,190,217,220,244,149,42,239,61,84,49,149,115,86,89,154,41,197,8,244,36,76,51,44,91,113,10,252,50,96,
 200,233,33,118,103,210,56,130,93,70,112,27,106,181,203,188,214,50,148,233,220,164,83,181,58,44,143,246,46,72,255,180,107,130,245,92,112,222,240,173,205,144,201,121,80,37,153,249,200,36,16,122,33,160,195,169,91,84,58,124,45,69,175,13,254,30,236,252,193,111,240,83,168,10,97,50,227,184,130,174,85,13,109,110,85,146,45,11,150,189,212,16,36,249,133,161,152,171,62,208,209,242,64,254,219,16,67,5,147,95,5,36,196,95,152,109,197,218,79,63,117,149,201,62,226,186,213,182,164,255,94,23,158,181,211,185,119,80,151,249,197,100,224,142,205,148,225,65,222,147,82,212,158,103,157,43,67,254,139,69,130,184,200,222,33,28,202,11,20,230,42,137,183,213,87,156,104,15,150,241,190,40,74,134,168,204,164,225,80,59,29,69,49,202,220,122,33,53,177,16,61,79,202,221,223,159,201,17,237,79,130,16,232,147,111,232,144,17,23,155,247,205,31,183,247,128,159,75,66,224,136,200,92,234,249,8,211,180,225,253,30,202,62,206,178,83,90,53,217,142,83,216,218,47,241,75,93,191,167,214,46,176,155,18,78,243,108,8,30,88,151,74,149,1
 58,137,65,242,165,116,139,193,78,97,93,153,37,65,99,162,13,61,78,109,128,99,53,236,189,22,185,113,110,212,85,143,176,225,4,112,131,127,226,49,174,54,135,162,5,164,75,19,111,145,203,247,150,94,158,148,71,186,205,12,128,118,41,155,116,248,42,37,251,239,87,35,159,250,102,181,13,229,111,95,128,89,66,44,130,124,4,106,19,214,228,192,73,81,201,115,138,215,194,16,47,163,9,240,173,6,198,96,102,18,184,136,235,124,35,111,83,28,13,157,198,167,83,29,236,248,39,14,211,108,196,239,199,29,11,251,56,184,131,51,40,205,205,17,222,253,20,77,150,242,39,186,83,175,226,25,142,185,24,85,139,60,75,72,215,35,178,173,202,94,142,211,161,8,202,48,31,116,190,197,63,198,247,50,109,65,193,153,82,194,236,36,64,61,75,167,57,207,169,218,230,167,54,211,74,94,34,180,62,87,138,18,29,138,116,121,234,83,25,48,25,218,252,31,95,124,38,111,89,52,161,170,140,242,143,116,170,231,51,37,20,112,16,206,243,68,119,231,142,131,149,226,247,65,221,78,230,125,216,253,176,77,180,238,178,75,195,12,157,222,13,231,232,166,111,70,14
 0,137,249,62,217,246,225,49,226,146,23,248,183,141,218,144,91,176,165,208,0,222,171,100,41,55,182,92,240,251,157,109,234,197,19,141,250,236,172,149,25,152,47,112,80,133,40,129,207,106,83,202,160,51,193,91,51,130,91,203,177,230,84,125,86,44,245,87,232,183,12,148,171,92,217,172,190,68,234,163,123,168,2,121,233,12,228,41,217,227,26,61,141,71,139,237,75,83,15,251,105,33,248,152,145,42,164,233,247,42,185,42,38,255,216,161,224,117,104,173,44,197,71,80,34,19,12,141,88,1,143,117,38,159,205,114,24,144,137,152,225,241,5,217,90,104,173,244,252,125,151,19,223,213,251,222,228,13,23,130,143,72,78,112,50,70,41,149,241,47,202,209,99,121,52,85,55,185,61,33,112,70,77,200,94,13,163,249,6,85,120,223,245,228,47,249,11,42,185,120,38,225,199,51,183,214,143,246,207,196,142,117,237,254,59,64,8,116,215,203,10,44,105,74,153,110,216,123,191,165,236,94,111,231,85,87,124,96,110,155,121,40,244,249,237,123,228,178,90,33,44,63,255,60,119,241,23,128,92,216,69,245,121,217,160,246,78,236,150,9,41,176,3,186,226
 ,10,150,28,67,90,146,244,84,248,38,205,174,100,60,220,109,253,117,46,40,76,194,171,225,12,115,184,45,150,26,252,30,130,247,20,233,9,104,25,65,98,38,74,136,1,123,242,61,231,58,165,229,14,15,22,230,189,22,2,95,17,10,253,135,31,20,14,204,198,4,166,172,119,131,137,200,199,15,132,58,160,19,162,31,145,37,85,222,69,32,104,64,253,117,116,34,220,49,2,158,5,124,237,182,235,24,145,74,182,244,98,54,34,204,76,215,119,128,159,123,170,231,66,60,178,154,165,197,57,254,220,233,217,133,122,75,155,68,100,11,97,136,143,214,65,113,157,113,137,159,237,117,19,95,165,33,33,207,171,173,149,16,63,58,46,126,76,239,64,254,38,50,88,175,220,169,192,172,40,90,191,170,121,164,156,19,186,144,114,247,18,141,232,159,20,10,53,83,212,137,198,15,196,44,205,47,105,7,84,211,159,80,73,67,39,101,235,51,86,33,253,149,111,106,104,167,182,236,140,206,131,204,156,16,74,6,7,24,7,12,30,206,235,111,19,144,152,82,27,222,32,229,30,230,56,92,207,108,170,95,240,138,74,83,146,64,78,120,150,61,28,231,47,182,231,139,193,191,70,21
 9,226,11,202,126,205,206,232,210,10,84,41,30,126,26,100,215,141,181,20,19,210,123,177,31,101,176,184,67,131,175,193,129,71,111,177,149,132,200,227,206,229,4,4,8,119,120,95,97,67,79,201,178,173,94,119,142,242,226,55,225,164,63,48,112,83,114,64,165,70,163,158,241,209,225,200,131,122,62,117,247,136,2,120,151,10,228,133,138,197,94,200,185,128,80,138,13,253,177,131,160,116,52,155,5,100,131,137,116,82,86,87,242,146,95,254,97,129,216,95,122,46,171,109,16,60,96,162,230,51,94,198,96,200,191,9,136,131,207,41,227,254,80,79,83,2,17,144,70,208,128,29,26,208,40,250,4,68,228,215,149,148,148,134,100,99,186,155,223,157,223,97,189,99,118,201,133,126,155,35,209,78,200,163,53,177,62,218,163,152,117,25,167,231,53,232,99,205,236,43,219,92,45,41,144,13,22,56,62,23,107,2,103,169,125,178,29,157,46,138,248,229,241,27,150,223,57,246,0,25,125,39,144,51,96,56,43,173,161,232,75,76,164,236,119,213,57,244,83,240,93,118,5,73,192,165,169,96,54,149,6,228,135,11,181,252,195,241,218,56,32,30,70,56,17,53,23,209,
 209,237,213,35,194,26,209,76,83,63,215,174,5,56,226,61,107,59,182,250,189,135,165,191,8,7,124,59,131,73,185,191,17,170,158,87,122,26,5,16,252,6,55,110,199,58,168,74,150,122,242,207,252,38,250,228,143,246,63,249,62,133,78,39,98,171,94,196,239,7,125,165,36,69,2,45,220,71,230,61,69,230,62,163,65,154,237,8,64,34,167,35,29,6,174,214,162,164,225,115,213,45,109,38,217,83,203,209,177,20,211,111,233,148,13,36,107,252,141,67,35,204,180,233,126,127,240,244,226,242,55,156,60,166,213,176,86,186,3,97,71,186,139,89,211,221,110,198,58,162,42,248,174,196,7,188,243,172,45,188,92,110,86,0,233,59,10,92,35,229,27,6,227,14,19,39,185,200,52,243,62,149,238,114,240,107,246,147,136,8,69,220,99,112,104,153,89,191,249,171,9,78,222,112,246,154,91,97,45,152,235,148,48,19,192,218,71,239,127,166,183,137,201,237,212,146,109,10,158,184,34,31,241,173,244,107,82,185,131,182,182,7,171,57,41,121,33,66,60,126,153,101,241,228,88,146,163,7,221,116,15,149,121,22,53,236,149,158,22,175,129,42,84,164,14,250,13,204,127,
 116,8,124,119,77,198,159,30,100,81,43,249,54,48,25,14,9,53,35,84,85,122,191,115,213,63,1,255,117,50,243,155,9,4,233,38,212,22,48,186,32,217,103,231,251,134,182,66,94,140,139,82,43,124,99,103,79,210,107,181,76,250,88,225,220,177,56,130,0,217,51,13,191,172,159,223,45,155,61,91,8,230,95,36,143,82,125,49,2,202,101,226,233,10,204,72,139,168,33,108,143,38,113,140,43,65,134,2,40,71,112,10,248,224,43,162,242,165,243,100,14,217,169,31,200,200,50,75,69,119,16,93,140,214,133,83,237,66,102,2,131,210,98,10,249,43,42,145,166,11,175,184,55,55,101,11,191,87,234,188,10,26,240,44,171,189,40,112,21,190,170,47,61,69,31,112,153,168,21,148,106,55,91,126,16,247,39,68,145,227,150,192,186,89,214,5,9,129,20,134,89,64,112,88,7,11,153,58,5,70,184,78,241,203,203,207,117,187,172,108,46,64,18,161,97,235,174,191,48,21,109,26,89,81,177,22,101,45,254,237,157,31,123,122,199,158,189,116,227,119,240,145,30,112,87,181,94,242,148,40,235,214,183,83,77,159,121,120,208,96,98,197,226,40,52,143,84,116,124,145,166,134,
 43,112,243,17,151,233,11,115,209,13,157,95,247,52,247,59,1,166,92,54,9,59,156,149,65,41,247,195,72,23,185,153,122,144,34,46,124,165,134,79,244,44,123,103,94,144,9,83,102,210,42,193,173,33,51,193,176,38,144,164,179,31,238,155,43,6,131,245,75,240,47,173,123,122,26,152,249,33,239,35,66,93,241,227,25,231,226,209,156,80,224,226,231,53,38,140,79,174,160,158,30,106,234,170,106,31,21,35,251,136,160,245,213,172,247,92,16,160,244,97,224,119,70,6,135,186,152,48,231,189,218,196,230,178,117,187,22,20,0,214,185,176,227,244,66,2,6,75,36,164,210,208,123,191,238,146,224,94,81,207,5,134,71,244,51,148,37,211,74,189,126,57,94,171,98,67,64,182,200,220,241,111,189,161,234,38,250,196,32,241,229,132,222,173,39,167,172,170,107,202,110,11,64,6,86,42,19,86,244,120,139,135,138,104,165,254,123,175,119,78,173,96,217,65,119,70,94,239,225,12,224,13,184,58,135,83,148,58,23,169,144,72,19,157,128,181,197,0,2,137,88,136,38,34,115,31,70,190,18,128,62,197,25,231,48,177,165,232,166,155,231,196,159,96,149,207,15,2
 25,237,183,68,73,163,219,40,151,228,8,22,94,227,189,4,160,22,142,204,148,221,154,126,193,198,192,164,235,71,16,204,171,44,206,123,109,90,32,36,32,20,10,38,230,23,173,235,218,204,62,118,150,219,10,49,10,156,60,91,111,79,105,232,204,197,243,48,115,197,191,171,30,253,202,131,79,110,240,244,189,186,7,110,73,92,189,255,79,7,51,134,235,149,214,123,68,245,160,211,187,242,124,3,241,1,29,124,205,41,41,94,214,17,126,82,91,61,22,89,159,104,74,15,140,10,124,127,216,107,234,158,28,188,71,18,123,255,165,56,158,47,201,253,117,230,125,250,38,46,172,139,148,7,56,6,236,174,254,150,158,3,246,80,156,25,219,203,220,77,127,84,203,61,143,4,81,55,230,140,138,12,176,174,163,134,132,177,58,123,61,60,10,214,24,24,34,93,30,40,184,157,64,118,229,80,108,108,73,129,159,37,172,134,19,239,30,208,173,52,240,121,15,242,24,191,248,223,82,246,207,238,14,178,188,200,156,249,102,38,120,38,217,195,59,227,68,239,45,33,121,176,167,158,147,28,255,183,59,78,208,34,67,49,252,129,190,64,34,26,128,204,168,126,169,184,243
 ,142,248,153,218,153,150,181,149,98,101,216,121,129,11,0,116,118,31,29,182,110,180,173,212,228,249,112,220,49,83,253,121,80,243,117,169,30,76,117,164,26,15,14,236,15,242,174,192,180,173,201,121,14,192,101,115,123,150,167,181,78,97,185,122,240,0,216,44,14,79,86,65,249,220,154,103,230,170,140,172,205,94,220,69,199,2,244,253,57,166,3,78,78,173,101,35,38,231,108,44,211,230,225,239,168,63,133,242,35,114,154,10,58,62,254,252,121,222,13,202,67,224,132,42,42,185,2,136,130,126,105,39,12,22,150,129,101,152,138,148,169,217,235,166,140,250,172,30,130,187,132,33,5,9,241,110,106,201,103,10,174,90,86,165,104,148,89,35,56,96,231,108,72,132,112,111,139,62,98,88,250,114,59,203,147,146,226,229,169,212,6,64,221,216,185,7,148,194,220,89,161,241,146,104,151,81,121,249,84,195,10,150,247,86,142,238,22,17,10,215,183,31,103,207,16,61,122,199,226,15,82,233,44,115,237,81,182,151,39,167,208,153,89,205,226,186,125,19,48,194,121,202,7,107,146,132,106,158,245,13,234,37,57,98,145,183,160,230,165,252,73,137,
 147,79,59,182,24,217,95,79,13,251,210,0,182,139,103,202,48,36,39,9,120,174,87,26,130,136,241,234,148,59,31,198,192,190,255,19,27,5,10,155,188,178,171,15,164,79,157,79,112,6,88,56,226,5,188,21,69,150,5,82,142,50,143,70,108,21,24,235,196,25,34,203,119,46,11,25,150,220,92,237,86,6,164,234,85,98,161,89,17,12,119,181,55,249,216,7,52,183,231,230,122,182,48,103,254,229,180,200,10,249,189,64,205,27,35,36,22,124,187,1,104,124,84,243,69,187,105,212,113,15,46,103,216,133,203,236,110,179,219,187,2,19,88,116,85,233,231,9,132,63,150,139,81,90,74,27,157,139,242,246,114,39,48,127,52,159,231,40,232,33,86,86,18,188,84,56,247,182,151,246,25,53,95,81,75,29,16,193,211,44,41,59,35,66,51,142,62,56,193,126,52,102,140,64,142,49,105,142,247,66,24,143,65,55,106,110,56,107,21,203,106,157,221,214,59,126,98,198,16,213,19,205,243,123,245,253,222,240,138,204,207,148,37,108,145,171,238,3,108,158,103,46,174,102,232,43,81,252,160,26,228,32,115,31,46,57,157,142,213,143,226,22,78,62,99,153,179,212,73,82,183,73,
 154,67,2,112,121,231,180,85,23,63,16,112,43,92,86,10,89,254,26,109,247,90,24,222,111,52,65,135,216,33,234,103,219,65,7,90,4,38,16,51,36,58,178,81,97,241,213,203,192,242,156,100,3,243,123,170,182,22,236,43,110,12,156,138,106,43,213,166,13,9,160,132,141,145,125,7,75,66,58,43,248,117,9,151,132,185,209,8,223,209,71,166,252,142,74,211,176,31,176,79,6,89,109,203,40,88,217,81,247,139,29,126,77,156,72,46,189,227,145,110,48,23,230,180,66,135,156,251,106,206,24,112,18,226,84,4,48,189,187,160,28,197,177,96,30,35,215,231,137,228,209,191,155,122,240,102,50,238,54,132,105,23,38,156,135,190,10,247,228,93,198,94,211,124,138,138,249,31,253,228,97,130,241,201,68,227,130,226,253,114,39,128,148,180,135,212,84,246,80,99,188,252,103,131,145,50,65,146,78,52,168,247,227,246,134,187,190,197,41,88,146,135,62,71,143,224,234,74,38,122,36,214,163,67,90,149,73,202,251,141,29,254,62,119,239,198,217,41,55,54,227,78,130,118,190,181,63,84,218,17,43,171,248,220,220,23,22,48,190,215,166,34,191,138,155,62,17,14
 8,109,36,173,41,45,232,244,143,188,165,204,75,136,116,90,37,15,209,32,130,77,53,253,119,191,92,25,47,251,22,213,203,132,158,242,106,36,76,14,20,233,31,70,99,94,47,192,212,32,228,215,169,204,240,85,137,113,99,252,2,199,26,38,85,84,120,31,95,51,154,134,83,52,7,124,160,133,147,44,155,99,198,15,24,16,121,67,173,41,179,133,206,211,127,194,75,111,91,138,128,146,242,29,209,13,41,145,236,211,130,167,14,52,199,114,25,166,178,207,147,25,17,113,108,98,141,193,150,20,80,7,112,205,177,255,27,72,183,178,115,166,234,110,46,232,32,190,148,227,254,94,70,203,84,152,131,191,225,220,132,84,24,205,162,61,23,194,223,33,159,33,143,246,166,147,168,70,41,47,187,127,138,164,33,116,158,3,146,111,236,224,78,77,151,139,96,59,241,245,191,211,229,195,148,66,56,116,201,240,169,35,245,158,249,46,4,187,125,231,84,146,25,23,179,122,245,150,82,217,124,73,170,37,82,132,1,74,245,20,55,36,92,193,194,109,208,39,77,113,21,193,6,48,199,151,177,216,151,229,244,100,216,1,114,174,130,187,6,56,248,132,6,217,133,66,118,6
 ,83,171,178,223,22,247,201,134,151,254,141,139,159,6,176,230,176,180,85,252,115,33,21,207,119,68,97,245,186,227,253,151,100,28,181,187,143,108,60,116,190,240,243,17,235,86,98,13,250,50,19,96,166,175,31,42,80,97,192,162,9,75,180,84,173,195,33,130,150,73,75,112,36,140,244,75,190,62,196,2,184,75,243,172,40,84,32,65,26,134,21,214,161,193,20,180,138,214,120,72,224,55,126,169,34,131,32,52,121,129,216,238,241,242,180,216,25,251,84,200,145,33,54,15,114,30,42,131,200,112,252,148,221,61,205,60,10,162,201,130,70,118,154,226,76,135,237,253,252,92,149,157,214,94,60,20,132,60,155,47,155,49,27,11,220,202,13,226,185,226,224,252,159,68,133,7,50,123,142,65,51,209,47,201,221,145,131,246,146,81,15,162,150,210,17,140,199,92,77,242,78,39,1,122,172,44,69,17,159,58,76,124,141,147,20,24,176,209,185,150,25,66,90,231,28,76,69,140,82,42,51,130,174,148,230,154,243,228,145,1,77,127,15,134,75,176,232,185,80,236,208,216,218,116,246,220,234,48,198,216,0,26,152,64,143,147,53,48,196,17,9,201,168,68,172,130,15
 8,80,117,233,19,144,17,250,107,201,129,207,120,213,81,242,135,113,185,94,142,122,12,4,207,182,245,64,144,31,30,1,148,112,33,29,43,27,119,130,224,224,236,245,95,133,190,144,246,212,144,119,33,62,166,205,211,148,60,37,83,186,254,159,187,79,147,242,56,33,160,81,99,225,75,214,37,217,33,178,78,105,142,183,255,1,243,215,240,51,195,147,158,173,10,118,114,225,127,124,87,236,170,87,184,199,156,155,96,246,140,168,36,112,198,14,125,97,28,187,66,208,56,238,46,247,76,104,6,170,193,38,76,89,135,244,10,26,123,246,95,179,13,221,3,219,157,138,184,151,143,77,126,113,251,38,144,158,103,119,225,161,144,175,232,87,106,212,200,194,175,151,249,220,86,224,114,247,11,182,59,25,226,247,234,186,82,238,212,95,22,193,83,41,213,181,22,195,225,108,122,170,131,145,144,160,165,174,23,112,185,102,29,200,181,69,219,155,178,2,96,13,84,221,51,167,60,119,22,246,80,172,197,119,21,255,140,124,108,207,39,239,65,122,223,145,24,92,142,97,89,181,205,27,39,166,41,5,92,114,173,232,212,136,17,156,98,106,241,194,133,117,2
 27,108,6,23,213,32,156,71,102,143,79,154,178,246,30,79,189,79,39,219,223,227,170,193,10,91,185,148,237,120,162,30,116,198,187,113,133,162,57,96,117,104,186,242,85,30,119,44,1,90,173,156,225,98,126,19,185,221,122,236,17,227,175,17,132,40,150,208,203,49,113,50,104,27,133,75,49,54,103,186,185,33,219,195,193,150,218,235,108,16,164,235,68,35,72,0,1,244,244,57,58,166,87,81,216,74,176,255,128,48,26,222,16,158,82,131,151,238,3,250,232,60,216,95,170,25,75,148,212,75,225,97,44,67,141,80,158,120,112,119,198,68,174,8,55,83,185,126,16,128,41,168,215,253,54,233,216,166,95,135,121,236,26,44,157,216,13,94,85,136,139,214,174,131,204,83,149,187,52,92,10,90,36,5,50,80,171,127,176,232,161,113,183,132,27,15,139,142,230,237,34,72,156,64,13,19,201,226,80,14,5,181,185,113,158,140,80,61,152,191,171,124,154,11,133,198,104,170,72,24,230,156,167,103,18,44,202,83,133,54,159,228,42,231,236,136,10,175,81,96,14,29,7,223,192,96,211,211,134,185,186,117,67,166,112,135,192,92,13,187,60,108,9,154,93,93,27,210,1
 3,174,70,234,103,30,22,0,253,214,54,103,172,214,68,207,231,222,195,77,60,93,161,174,71,95,236,43,202,7,229,223,167,77,158,56,162,76,118,214,14,191,14,46,150,246,40,71,193,204,242,226,95,182,255,230,135,181,229,95,83,38,135,91,122,169,32,3,226,128,230,90,43,226,13,136,79,220,55,60,156,78,146,202,244,193,128,124,175,3,110,103,147,65,53,138,77,131,70,9,157,79,49,11,79,247,86,9,120,65,79,211,91,31,168,0,98,54,234,133,185,7,211,197,42,116,93,116,14,97,115,191,90,215,21,72,221,127,228,250,196,60,10,209,240,164,39,209,220,82,52,91,53,33,43,29,181,63,50,28,109,2,126,215,230,204,111,211,80,194,218,212,87,158,230,251,152,111,26,232,160,138,0,49,195,221,75,63,132,181,197,174,246,55,36,81,176,72,178,226,241,225,131,170,73,72,204,131,216,41,10,99,14,58,10,232,206,116,220,50,109,204,123,67,218,100,140,48,71,100,7,87,91,131,10,160,156,170,39,239,233,178,225,36,20,9,156,168,244,5,215,138,141,28,160,118,103,224,237,175,112,227,85,104,217,236,53,88,142,15,139,246,78,206,63,26,121,16,244,162,2
 06,170,66,52,222,93,184,226,31,184,124,19,107,59,160,240,8,163,46,9,91,183,135,39,56,232,83,158,224,207,68,36,186,143,255,132,213,23,242,138,224,92,128,178,137,59,119,36,142,69,51,29,22,241,36,232,171,233,42,183,72,188,177,29,238,193,215,78,37,131,213,216,132,117,167,164,95,229,235,218,217,63,30,169,148,104,174,205,205,92,201,192,248,103,80,214,251,183,146,37,179,15,119,227,79,100,38,176,33,1,224,36,51,176,223,26,198,221,89,216,126,21,81,249,89,64,197,122,150,54,122,241,152,15,59,9,26,193,15,14,209,11,198,200,127,172,138,117,27,153,139,193,245,122,162,166,96,112,112,101,168,5,89,188,23,33,51,223,82,26,229,255,235,198,228,25,232,88,209,1,245,80,108,198,155,240,192,204,13,194,102,112,175,89,220,80,110,48,30,211,167,191,139,189,44,236,164,77,42,12,150,141,193,201,125,59,148,25,233,68,190,54,140,170,133,16,102,255,92,104,127,49,90,79,13,216,10,162,23,92,140,37,87,170,8,157,48,37,84,147,54,139,184,217,121,4,164,74,142,47,149,47,135,110,23,171,113,5,203,255,251,185,23,117,4,242,10
 0,85,129,174,45,112,57,228,82,93,77,40,126,9,96,160,34,248,13,115,194,138,225,66,247,155,24,221,241,9,188,149,242,186,129,20,196,26,41,246,207,25,76,14,41,211,198,246,23,195,64,231,194,217,1,75,6,0,30,48,152,25,38,2,72,35,208,71,186,186,26,74,169,168,134,181,79,100,193,216,110,93,239,182,134,87,88,128,167,202,221,178,202,152,40,101,222,157,115,19,158,129,107,218,183,247,126,55,74,165,71,20,232,163,147,117,194,13,227,204,44,172,51,82,202,199,74,252,64,48,38,72,218,58,202,228,68,235,238,93,169,172,166,124,66,139,72,159,130,143,18,16,202,21,74,168,128,85,133,99,61,56,209,214,137,146,217,132,212,83,58,199,0,166,183,97,193,34,143,143,135,187,144,208,36,9,154,134,240,28,182,130,249,224,223,138,201,116,218,3,126,204,238,22,30,41,77,210,101,25,184,111,140,255,187,25,199,188,9,201,89,133,47,183,145,5,12,187,82,182,79,46,164,53,184,135,30,234,226,164,71,197,250,35,223,6,207,144,103,225,84,187,191,66,209,20,240,200,206,244,154,115,27,125,161,97,172,92,100,199,94,32,53,183,199,114,93,21
 0,79,177,244,171,24,91,69,13,172,9,162,1,40,211,27,96,230,143,149,17,40,117,254,170,112,88,124,206,237,122,149,184,10,129,255,254,132,253,207,14,2,80,22,243,125,2,123,33,126,174,195,76,241,181,196,186,249,227,60,166,0,76,232,134,192,146,180,164,159,71,110,205,125,189,52,139,74,42,98,167,123,82,35,190,1,199,204,151,67,126,181,76,18,156,196,135,206,37,64,46,66,193,205,181,158,239,183,164,155,109,17,178,91,195,117,115,203,68,124,217,113,88,141,192,64,32,51,202,197,212,126,189,163,40,164,41,208,33,72,192,66,89,22,93,4,113,209,139,191,116,0,110,189,6,19,208,162,205,148,194,214,11,107,163,128,14,127,71,210,102,1,53,78,116,40,100,159,2,72,184,181,61,80,250,81,80,65,66,62,245,75,42,97,217,196,228,40,95,184,253,114,102,204,188,155,15,254,234,122,79,57,56,44,35,144,1,157,166,199,139,58,15,164,247,190,238,221,56,253,10,192,220,241,80,60,144,128,27,2,9,224,121,255,53,203,143,33,97,27,78,51,176,99,27,185,145,78,88,226,49,178,104,88,49,115,83,184,228,233,50,241,124,71,133,143,40,29,132,16
 8,192,27,56,186,225,230,84,228,116,170,76,151,180,84,197,9,243,61,118,0,79,52,5,251,200,142,183,217,85,79,209,133,126,50,7,140,203,49,194,172,37,195,148,145,183,47,44,234,108,63,241,103,185,15,156,48,183,68,112,126,183,11,98,13,112,220,41,219,200,49,146,70,246,206,138,14,195,150,109,176,39,190,190,19,208,227,131,249,119,185,246,147,173,237,81,133,0,248,130,239,106,235,77,143,251,208,226,224,240,67,198,135,53,156,245,157,20,243,131,83,177,19,97,95,146,239,122,193,38,126,84,227,254,183,146,181,166,242,117,60,71,101,0,215,208,71,88,59,192,142,246,119,205,103,218,0,17,206,222,218,174,192,190,85,71,166,225,153,16,198,244,181,38,149,9,82,78,39,254,79,91,82,94,139,137,84,23,235,233,87,144,128,7,74,162,211,5,70,102,73,94,201,76,252,195,55,63,21,131,74,237,96,164,70,43,234,205,39,165,71,101,4,55,96,204,15,11,110,198,197,201,46,184,24,240,92,210,4,232,242,148,220,107,101,31,139,59,255,83,89,7,148,99,254,131,181,81,110,29,94,26,54,44,197,68,78,59,233,253,45,126,229,248,181,23,164,61,13
 9,118,206,34,194,201,213,119,41,232,86,87,22,169,225,93,42,26,212,229,191,162,155,25,66,203,15,11,194,159,206,235,1,7,234,240,173,184,236,31,37,5,78,123,173,30,212,247,132,71,122,173,41,223,31,8,105,148,158,224,171,123,212,7,137,72,18,0,195,50,248,157,204,2,101,88,27,152,99,168,146,184,130,54,20,147,48,113,124,231,108,84,80,102,224,49,218,79,195,53,133,249,53,220,223,44,151,200,90,117,29,9,243,82,24,206,85,87,140,139,153,236,83,38,224,127,164,59,128,196,77,34,247,204,149,56,38,37,7,1,59,56,69,224,105,214,162,82,200,49,28,37,47,38,188,54,210,41,106,157,95,162,69,132,120,1,187,110,153,14,80,43,105,153,168,142,29,204,76,166,11,137,238,27,72,156,166,12,21,40,227,63,104,141,101,29,4,92,242,139,100,182,237,7,233,229,147,67,181,212,154,131,192,100,132,3,206,21,67,184,236,226,145,159,1,145,147,122,255,123,235,187,138,237,244,165,193,65,115,173,215,20,192,10,169,247,157,11,244,35,119,198,78,98,242,102,86,130,61,193,174,58,34,159,97,12,98,36,11,64,246,29,95,214,22,240,198,33,212,131,2
 14,82,69,211,165,77,40,184,162,235,120,168,131,96,243,14,63,170,194,26,96,105,121,98,9,9,72,69,123,71,190,55,45,153,21,1,102,172,40,173,203,195,128,216,170,193,220,141,106,7,43,149,81,145,122,218,149,157,10,25,135,168,10,163,223,23,53,226,223,134,184,170,57,144,163,217,105,156,241,34,17,0,39,243,150,208,246,165,62,146,58,217,37,65,205,166,184,231,160,162,45,223,190,231,34,92,202,2,214,143,112,64,46,178,115,209,151,228,16,11,194,75,134,125,94,209,19,199,41,68,49,233,150,199,94,181,210,250,14,238,215,236,231,252,75,39,16,118,13,193,4,58,72,206,37,120,247,143,126,185,150,64,4,208,59,168,213,16,76,32,241,41,131,30,50,165,179,98,73,30,111,49,241,111,177,157,76,231,240,121,3,199,70,214,183,79,55,215,84,135,56,32,219,100,50,161,125,41,215,180,219,216,216,239,195,29,162,91,243,217,153,104,251,19,248,229,119,44,69,250,205,98,30,216,153,216,201,154,229,66,165,168,250,108,242,103,141,210,105,5,123,23,154,114,153,209,0,62,139,163,136,247,116,132,73,218,117,144,106,21,163,41,150,0,103,10
 8,214,71,211,169,148,9,140,23,149,65,19,35,36,102,151,4,57,103,252,157,133,226,11,250,195,14,77,191,51,241,178,167,199,187,184,148,195,193,118,104,164,174,22,2,25,201,179,56,164,33,175,208,10,162,158,169,205,32,251,250,161,198,254,187,157,6,50,78,31,97,12,115,162,68,170,65,20,13,194,28,1,232,244,236,113,2,215,35,233,96,59,132,246,225,78,112,6,204,151,253,239,150,189,182,159,30,130,117,228,224,10,202,18,55,202,192,213,239,90,84,53,212,149,38,31,137,28,184,253,251,167,206,72,16,109,140,135,70,105,250,138,189,252,27,136,205,223,56,47,109,134,203,92,112,148,109,155,145,139,170,204,239,192,223,42,18,48,175,28,164,243,207,73,149,132,2,54,220,75,79,84,78,1,113,155,117,203,1,152,197,100,128,80,175,9,192,10,185,205,50,183,112,81,48,133,65,217,227,248,201,148,181,245,56,123,52,87,208,107,189,182,198,213,205,90,247,23,216,57,244,1,172,32,129,79,143,0,226,10,85,240,187,180,23,101,215,32,87,255,225,163,96,160,252,192,53,166,70,180,234,39,170,88,253,201,210,15,2,150,64,172,49,103,59,154,2
 7,31,5,161,101,60,3,137,141,17,119,71,25,163,197,250,31,59,206,28,87,37,173,181,45,46,204,163,243,186,32,73,195,112,3,249,240,5,38,193,127,39,71,149,73,150,82,95,3,2,15,132,105,111,240,132,53,112,60,226,139,54,3,66,200,139,223,115,154,138,202,72,83,17,49,58,12,174,91,149,147,164,168,86,198,124,25,238,54,132,107,139,105,81,3,251,236,15,37,107,104,203,63,220,157,240,127,18,180,212,148,249,122,182,64,167,12,44,219,41,216,132,222,228,235,113,195,108,8,104,175,163,222,234,83,39,151,36,220,238,23,242,25,248,174,177,205,233,85,104,63,139,27,2,208,71,202,177,45,194,33,12,26,19,37,244,143,232,246,104,118,6,72,236,11,177,63,199,12,54,142,123,152,90,237,28,203,43,6,34,233,14,183,157,63,169,253,25,147,94,136,119,147,155,149,178,238,245,243,255,112,163,179,134,191,35,137,11,41,21,87,29,152,187,77,82,52,65,112,143,62,1,107,28,148,78,195,142,124,108,93,27,224,60,176,7,111,52,107,30,84,204,64,168,133,21,32,201,157,196,206,199,11,204,35,236,252,184,213,167,172,162,162,79,113,120,219,158,207,
 170,124,57,244,209,58,11,187,225,64,93,195,145,164,81,74,149,11,241,208,63,60,45,13,236,26,33,175,211,162,51,56,47,37,120,255,123,133,94,103,144,84,166,156,39,227,158,164,214,149,237,36,77,54,119,142,179,69,76,205,77,85,219,85,36,5,175,15,155,111,29,21,40,208,244,81,36,63,194,42,206,28,191,31,68,209,52,253,198,250,187,136,122,111,194,31,128,142,83,208,158,80,13,220,241,27,104,22,197,121,77,160,211,210,187,58,200,172,46,72,153,33,130,41,152,104,118,154,149,81,70,244,140,193,142,158,185,202,142,173,120,70,238,138,83,199,151,115,128,93,154,23,33,151,2,191,149,68,254,32,175,51,227,33,143,203,183,251,218,109,132,218,127,207,218,130,123,60,23,227,148,165,84,208,54,92,69,187,213,173,233,146,244,27,117,89,60,93,206,106,225,201,231,196,220,100,18,222,10,62,93,156,148,44,237,223,0,74,240,168,151,107,85,84,6,2,22,140,185,204,87,100,39,5,3,52,77,84,248,225,21,202,171,161,187,100,120,37,74,60,189,131,12,122,114,10,197,169,179,169,23,191,136,105,225,79,68,237,16,227,216,225,0,147,32,133,7
 6,209,230,89,135,7,39,178,174,219,152,97,34,23,180,67,247,185,228,17,152,125,243,67,110,228,218,57,193,41,159,199,93,235,229,172,175,71,156,210,10,175,159,30,70,21,146,253,159,51,5,205,7,142,146,169,26,230,155,28,225,217,136,139,175,71,221,67,142,225,99,144,252,135,53,195,15,63,53,142,225,49,102,97,215,28,209,47,24,209,6,29,147,217,146,54,34,226,149,121,162,212,48,175,3,154,170,246,84,217,46,9,37,163,83,174,198,214,73,96,248,76,52,144,165,161,56,144,102,217,181,186,196,10,68,185,96,247,210,240,255,212,158,206,189,228,115,251,92,251,75,83,137,50,228,145,51,44,171,148,28,19,218,158,29,21,222,174,250,153,22,97,182,226,70,190,78,193,74,204,2,142,198,254,160,100,171,168,109,24,104,254,232,248,106,165,81,81,250,218,185,125,110,65,253,58,231,129,127,153,52,230,221,27,1,214,198,52,133,60,184,250,25,84,121,156,113,98,4,142,185,5,179,116,14,184,164,145,11,239,173,54,111,224,181,155,159,183,101,74,113,11,34,219,50,54,77,38,254,240,150,205,109,52,4,181,177,80,192,35,213,31,45,80,196,228
 ,145,250,104,38,141,195,44,52,160,225,64,162,41,135,64,245,83,63,117,61,9,218,216,153,73,190,15,178,35,169,254,168,55,247,17,187,213,32,246,57,28,170,202,69,8,174,119,72,161,141,208,120,44,79,106,28,21,69,85,251,196,22,244,25,55,154,35,12,207,227,56,29,109,197,53,151,81,193,57,148,182,149,212,177,208,151,200,38,27,147,60,28,219,237,248,188,83,130,234,77,121,214,223,203,182,205,236,162,174,25,17,142,222,150,122,51,116,31,15,2,87,21,41,216,96,129,114,139,75,23,186,134,204,172,185,161,59,225,164,5,23,120,189,51,85,62,225,99,38,97,94,218,114,89,161,27,116,218,218,245,53,180,140,235,76,246,224,132,208,228,212,202,141,38,159,101,27,250,239,212,187,103,214,84,122,48,225,202,170,127,95,196,18,207,72,195,134,92,209,176,145,176,90,102,175,128,169,82,49,103,95,150,5,191,251,112,150,196,115,193,12,131,224,180,90,127,143,173,126,170,83,18,120,156,90,239,119,21,171,96,235,34,159,73,51,26,253,135,226,129,100,56,10,105,165,10,250,16,235,127,103,237,51,153,161,72,140,65,20,37,208,19,37,229,1
 5,6,191,151,212,226,83,47,134,178,166,171,9,229,88,25,199,89,204,179,187,157,217,254,176,222,175,216,164,252,1,159,221,238,218,76,245,119,230,90,156,137,113,223,19,166,129,116,209,158,163,28,217,189,184,248,12,128,1,174,185,222,108,21,172,132,162,41,130,15,32,24,43,231,98,216,109,190,187,147,28,85,206,27,242,17,99,152,91,239,189,53,82,35,100,215,163,129,38,11,167,23,43,221,216,24,192,162,54,236,104,236,24,155,75,207,130,69,140,149,226,8,69,31,1,217,200,102,212,175,254,14,230,223,116,221,91,112,149,96,228,3,241,228,215,167,213,165,38,7,198,88,86,215,46,74,115,126,46,254,172,22,128,212,55,205,122,243,167,3,209,59,69,102,67,65,176,116,168,111,237,133,49,179,156,68,28,131,155,46,0,11,166,174,126,51,11,70,246,67,145,182,198,164,170,95,60,147,106,10,94,18,13,207,231,153,69,57,52,48,182,172,88,238,11,98,55,206,204,70,171,232,240,168,168,14,91,13,230,50,84,58,195,218,114,64,18,196,128,34,193,206,121,193,241,128,53,59,6,125,214,42,210,217,245,133,133,92,183,7,164,173,114,13,159,21,21
 2,19,207,178,72,38,252,80,46,180,152,18,22,26,14,92,49,97,15,133,97,240,55,62,31,71,44,230,250,61,32,59,106,253,49,188,244,114,117,80,143,154,252,10,68,107,115,247,112,250,190,139,152,182,121,235,122,63,184,109,191,30,39,179,31,152,49,80,206,239,85,212,178,117,30,85,18,18,92,18,195,164,168,178,35,241,196,199,63,174,147,225,215,138,43,224,145,65,104,105,159,173,15,247,44,92,7,87,176,183,226,184,64,50,127,69,0,212,207,37,235,194,8,96,38,156,57,210,47,19,250,76,194,217,46,114,126,216,66,76,23,86,105,140,131,98,16,253,125,30,176,109,18,77,76,122,119,14,167,57,229,94,51,170,241,11,52,169,33,90,38,173,177,4,161,154,202,234,68,170,105,228,255,203,40,247,125,87,38,91,185,124,179,102,34,244,66,91,113,152,116,129,201,173,101,22,77,227,33,235,227,240,181,220,108,66,171,198,187,177,86,220,213,141,154,176,99,91,195,37,169,203,133,147,8,120,210,55,92,233,61,224,85,21,54,136,226,161,127,254,29,206,120,98,21,56,228,35,8,140,29,92,75,144,99,175,223,28,22,60,106,250,231,225,239,234,161,10,251
 ,240,220,146,94,72,1,219,248,244,192,34,241,20,55,26,166,105,244,108,204,132,176,45,247,139,7,200,83,57,238,94,98,90,222,138,18,163,146,46,82,183,120,187,143,228,211,122,40,16,140,78,95,56,17,75,242,6,142,109,231,180,145,9,8,214,27,249,55,59,105,13,214,171,245,231,93,74,245,153,91,84,195,12,214,49,9,164,196,87,188,242,186,61,218,55,139,226,41,3,225,116,134,249,227,172,76,54,203,51,40,136,197,155,68,46,215,231,117,72,209,236,95,108,66,10,121,126,124,92,82,193,150,72,153,251,18,205,234,151,128,247,9,70,189,96,33,193,155,80,35,243,22,156,215,215,158,169,152,46,88,235,108,125,188,68,30,3,197,194,179,133,73,57,82,16,4,185,108,151,49,189,184,110,62,121,178,18,131,199,97,202,16,158,18,61,234,21,44,230,190,97,103,14,91,185,215,132,31,84,53,95,225,121,111,35,63,200,8,142,12,170,57,202,21,11,67,188,202,105,35,101,47,168,73,20,67,148,22,19,74,161,39,180,35,194,175,212,227,79,180,91,250,30,167,128,149,44,173,89,98,13,115,56,173,29,2,149,191,179,136,130,37,204,94,61,190,5,217,164,53,49,4
 5,116,54,67,203,64,202,203,115,127,242,174,255,254,75,165,118,103,223,216,107,41,179,7,144,10,228,19,203,250,46,178,132,191,83,163,97,151,47,219,21,124,231,115,83,94,175,253,26,136,177,120,179,21,139,213,184,107,19,235,166,20,189,123,168,150,55,185,95,3,176,140,151,251,96,6,54,115,86,242,46,113,126,42,255,160,90,87,133,208,184,211,20,141,211,200,111,152,175,196,217,160,82,243,58,136,44,17,100,161,239,35,222,30,15,138,103,155,85,173,154,160,48,186,195,199,168,242,152,17,144,221,192,201,82,200,188,75,46,184,168,9,98,124,98,154,7,190,51,196,41,151,158,76,224,72,12,88,255,15,64,219,13,162,175,69,229,255,35,153,170,50,228,211,136,1,2,71,126,222,20,195,192,71,96,110,166,250,79,86,51,81,149,200,180,11,84,153,12,39,230,176,127,26,37,189,134,228,114,99,119,194,75,226,131,234,228,233,67,195,72,73,62,25,28,243,133,115,150,199,124,63,157,211,214,172,98,148,201,106,134,137,118,196,107,33,142,175,23,67,192,110,226,251,233,7,61,161,47,25,154,86,195,31,142,206,148,124,215,218,122,59,77,25,2
 32,74,74,13,240,211,158,41,102,177,52,32,33,30,153,170,41,206,27,111,185,64,251,13,62,207,247,211,172,192,10,29,8,20,209,213,130,10,71,118,157,155,132,101,234,27,83,1,129,201,74,135,138,221,92,95,16,54,111,70,79,120,51,67,112,85,189,153,120,30,123,117,246,222,53,63,19,161,15,93,9,197,107,198,234,146,62,176,134,177,181,175,137,143,105,174,48,235,254,72,69,14,234,242,255,175,98,193,229,170,36,161,154,245,199,133,12,114,29,193,228,193,69,100,43,177,70,200,94,31,122,251,188,12,110,19,9,41,255,158,87,216,25,222,197,167,10,173,56,116,172,234,23,61,46,37,168,87,219,1,235,125,198,165,125,117,112,235,234,208,218,122,246,64,59,74,145,42,121,43,0,154,12,87,253,163,174,34,145,2,204,114,248,201,18,192,3,10,219,37,163,70,184,228,144,255,50,237,220,184,140,239,73,39,39,220,175,243,129,161,4,10,214,244,112,227,150,218,31,71,186,24,173,31,45,64,61,176,153,69,170,16,38,164,144,196,92,45,248,248,99,157,4,138,152,112,72,183,47,236,135,54,78,1,25,173,128,109,88,8,156,39,186,195,63,192,27,255,45,
 18,8,43,67,122,9,74,16,160,112,213,199,217,34,103,92,183,243,231,144,110,234,131,243,168,122,8,163,109,210,17,116,147,186,12,35,60,204,19,59,30,222,164,201,230,86,58,20,96,32,182,149,28,71,121,249,229,10,76,32,61,172,206,113,231,49,143,116,13,134,104,129,234,47,53,177,100,149,241,44,27,83,53,174,51,249,13,254,185,38,223,13,250,237,80,181,25,23,179,241,78,174,169,176,51,45,59,56,219,31,221,179,28,167,84,234,121,51,24,51,222,234,186,187,195,75,38,152,3,112,60,204,137,119,29,51,73,110,22,108,150,228,134,174,18,13,125,16,155,119,46,227,73,182,113,177,209,217,202,223,30,225,185,246,254,186,106,208,52,178,228,249,143,68,49,48,81,72,246,136,79,162,5,186,151,177,243,48,46,34,199,66,120,139,162,111,49,248,77,112,43,28,201,98,220,56,23,249,195,6,3,112,109,134,108,209,218,121,237,39,16,153,106,15,11,137,26,156,26,128,252,119,158,237,138,73,205,104,151,217,145,232,117,240,40,106,80,115,181,60,49,56,43,206,138,156,111,195,187,31,231,17,112,176,193,104,124,204,129,31,82,17,35,84,164,128,9
 7,106,196,40,155,14,8,30,106,135,234,50,198,194,93,22,173,238,6,176,51,19,255,86,57,104,207,228,184,15,187,199,100,180,46,192,177,100,169,24,177,48,236,76,114,152,119,225,229,126,245,60,187,217,177,56,4,33,239,74,199,80,148,95,218,214,103,160,202,113,165,31,79,118,207,108,244,125,130,240,157,85,29,174,199,24,215,218,208,116,162,119,175,184,89,48,132,222,203,1,222,130,6,19,6,99,218,64,29,24,196,126,34,219,59,209,175,72,170,156,110,194,121,94,69,242,171,210,101,14,102,40,120,253,71,237,249,187,52,246,196,154,61,143,84,228,159,113,108,40,215,82,252,218,25,241,64,164,143,250,219,137,79,83,208,130,23,12,171,56,80,131,141,21,155,54,101,46,101,70,200,135,129,142,123,16,7,226,99,68,185,102,253,162,138,145,115,28,105,251,37,201,157,153,213,58,188,145,24,188,92,255,208,38,8,190,64,49,120,3,151,8,254,132,29,28,63,243,168,64,47,251,8,158,85,245,188,209,240,250,129,224,183,158,206,71,100,175,160,95,243,82,65,111,76,57,181,186,209,132,129,99,255,142,8,135,18,170,251,122,106,35,77,46,181,2
 18,67,240,112,31,172,184,9,139,36,39,6,221,60,28,225,61,63,250,244,148,74,156,232,188,90,243,168,209,79,176,49,213,184,170,162,188,99,161,1,28,104,220,157,129,16,55,9,230,207,86,211,64,91,243,89,185,110,67,18,66,179,14,190,85,48,65,50,140,194,205,138,166,173,26,17,215,162,110,174,187,89,144,0,219,249,77,235,240,109,111,32,75,41,175,77,22,37,67,179,53,99,188,245,191,1,157,81,146,239,95,46,172,236,71,116,0,156,165,160,147,196,209,56,171,223,70,101,94,0,131,159,38,89,150,180,81,188,194,116,10,126,26,22,83,26,130,135,180,42,169,175,72,134,244,220,30,218,96,98,223,31,82,223,9,26,210,64,143,246,196,45,161,126,129,190,37,208,170,196,250,140,146,71,26,102,120,134,20,147,147,197,35,50,54,213,117,241,1,63,230,140,21,83,64,54,38,208,54,163,111,200,106,162,9,85,163,115,73,74,237,209,166,80,72,156,31,197,66,219,96,6,122,204,237,175,11,27,70,198,23,46,133,90,6,4,100,66,36,228,35,116,25,90,165,207,62,228,21,218,98,222,222,69,126,90,137,86,60,238,106,235,127,220,210,153,135,196,139,65,109,2
 32,219,127,43,57,127,47,129,65,75,46,137,42,76,206,177,61,116,88,14,190,229,186,217,191,67,179,216,102,80,213,218,134,117,185,206,104,208,65,62,122,107,122,73,156,247,2,173,18,240,193,89,68,200,18,110,10,165,222,253,72,216,98,222,51,123,242,8,24,121,149,252,246,247,206,35,102,65,43,45,124,92,3,159,238,138,87,161,57,157,78,157,180,215,18,147,15,217,236,210,133,48,166,250,122,209,241,177,69,213,126,236,232,133,239,233,5,124,64,25,146,206,65,152,24,118,223,173,30,229,214,117,195,208,98,246,29,53,35,48,161,124,186,180,159,240,39,167,206,92,3,136,245,243,93,131,48,104,195,161,145,221,42,190,12,29,248,12,57,33,219,105,8,122,246,198,61,145,62,182,76,9,249,51,251,173,120,19,88,232,99,4,66,121,156,104,69,211,139,202,240,37,19,33,153,22,140,22,214,48,78,135,224,94,248,212,172,69,181,149,168,226,225,218,60,83,149,159,29,108,36,238,179,27,90,13,210,37,187,83,57,118,5,191,41,191,227,108,25,36,102,33,245,6,66,5,10,47,58,241,9,67,15,226,9,199,76,97,236,20,250,118,8,182,186,69,177,141,14,19
 4,125,94,99,77,208,217,201,95,218,58,52,128,14,6,182,227,107,162,209,131,183,149,164,193,28,113,5,175,98,66,126,70,89,75,43,188,188,136,56,23,85,63,128,32,62,37,149,87,14,252,211,170,6,150,9,94,119,184,125,93,58,3,249,255,230,147,57,69,230,205,147,252,181,83,118,135,129,248,42,115,58,224,155,99,161,54,178,38,19,118,81,118,245,222,33,156,171,216,100,5,80,56,187,147,102,42,184,117,149,41,251,127,99,83,184,203,7,254,51,33,98,29,249,157,129,188,224,40,152,116,163,211,249,80,154,172,133,126,175,51,203,2,73,117,151,130,111,135,241,25,12,227,195,91,238,113,147,0,114,29,90,69,181,17,248,184,156,62,145,25,4,103,58,251,86,35,236,178,114,252,193,218,123,109,103,24,184,174,73,150,154,58,222,206,243,70,111,41,21,27,116,210,191,242,176,42,251,86,66,203,21,87,108,244,5,29,138,207,202,22,234,156,216,106,170,242,130,73,128,27,181,176,100,111,58,176,48,75,106,154,154,149,115,127,5,196,158,77,13,174,4,234,62,86,103,236,16,76,223,76,139,243,2,169,240,10,208,248,67,197,192,196,21,15,66,121,229,1
 2,81,235,234,145,112,221,64,163,10,158,68,213,14,45,116,212,208,205,232,89,149,255,127,30,145,242,63,106,253,219,251,253,91,169,140,81,51,221,41,246,96,10,200,105,222,238,14,159,2,12,99,83,222,121,47,1,12,150,231,158,93,251,64,212,161,146,183,102,23,15,169,54,189,169,8,115,123,128,135,148,216,144,187,212,19,98,12,133,225,187,158,119,29,36,0,167,241,18,196,70,151,135,107,13,171,112,66,201,142,167,184,35,110,163,201,90,66,17,19,107,48,129,54,142,172,222,205,172,93,128,174,93,90,84,159,23,192,35,24,162,72,106,3,159,173,2,1,35,184,43,236,55,94,67,132,82,149,174,164,218,141,18,26,227,126,174,155,60,171,195,97,128,63,100,170,238,74,189,18,130,231,5,170,70,227,129,233,11,78,10,173,227,132,39,61,32,22,101,24,241,136,47,59,183,159,169,27,220,101,10,182,159,211,62,118,84,187,14,254,55,177,248,250,182,145,199,180,149,199,89,116,134,119,158,113,78,13,99,51,132,183,18,118,251,68,38,145,245,120,211,17,83,233,152,137,179,33,77,15,41,213,124,166,52,143,8,89,179,187,104,56,146,247,243,162,14
 ,39,193,81,101,82,219,202,100,69,76,156,112,200,147,168,151,25,144,251,72,9,92,21,120,146,239,44,5,141,174,161,227,229,240,51,123,99,227,51,61,117,80,113,158,94,117,80,43,83,140,1,193,194,20,139,76,16,118,130,159,130,220,213,186,202,88,92,236,35,34,206,232,230,163,236,67,178,177,137,13,133,55,166,154,68,112,225,53,25,186,113,160,13,115,215,155,49,109,65,140,27,207,35,15,179,181,156,168,44,143,95,13,208,228,248,214,226,89,130,81,248,80,95,105,32,97,144,172,103,84,237,208,87,147,183,199,128,142,73,244,150,89,191,46,229,159,141,236,174,25,78,17,49,4,31,217,151,51,169,211,131,209,98,10,182,206,182,142,49,93,241,115,225,253,149,106,24,2,36,162,170,217,86,204,242,219,4,47,108,228,195,55,113,5,232,245,220,186,158,80,116,15,228,225,202,9,137,109,238,46,146,126,181,42,200,243,181,108,215,2,90,7,188,48,137,81,251,36,73,244,15,140,173,160,198,243,255,120,102,83,47,181,219,110,102,117,170,4,185,1,243,119,160,116,243,54,169,196,22,46,229,162,176,148,29,165,130,117,30,244,54,254,159,167,2
 24,67,167,211,154,35,86,110,198,42,43,247,217,51,104,100,252,61,83,182,158,38,205,162,222,184,12,42,218,39,117,159,29,30,94,222,121,114,101,190,7,90,245,246,118,80,87,124,65,201,119,230,6,121,211,130,153,156,120,220,220,145,152,40,134,121,116,188,84,4,218,87,20,224,102,99,30,157,30,180,163,39,93,172,107,57,78,226,208,176,186,157,191,233,98,220,34,65,42,90,26,167,146,218,76,2,139,86,169,108,153,194,88,23,16,75,196,91,189,239,175,13,91,40,4,150,5,187,96,158,175,111,238,97,207,53,21,131,23,79,24,129,49,131,95,83,180,93,76,147,46,62,4,255,58,186,236,243,173,2,233,155,124,68,207,108,20,60,159,193,92,232,230,137,25,157,206,96,146,69,71,156,151,60,228,56,235,253,104,158,220,100,223,72,129,224,148,47,89,165,18,151,172,121,133,162,165,97,123,182,73,243,119,168,94,49,250,251,144,112,111,170,2,205,87,53,224,159,133,102,90,206,53,133,4,238,7,34,135,58,85,250,246,135,204,2,12,175,151,116,59,72,177,234,249,78,142,77,12,146,154,246,23,232,210,60,29,207,72,81,243,120,247,10,128,246,200,7,44
 ,250,197,38,64,74,70,94,20,98,29,52,201,160,31,18,65,249,110,4,35,80,233,177,99,8,198,123,177,7,244,19,224,74,29,242,208,194,56,37,97,122,34,33,80,134,26,87,175,16,98,90,178,58,7,44,226,75,29,128,185,115,176,2,198,251,136,213,97,144,124,139,96,208,213,44,73,63,216,28,118,124,70,181,253,92,66,209,108,146,9,183,213,137,167,236,210,17,140,233,82,173,146,191,167,183,117,224,226,80,112,186,4,40,186,40,40,68,116,132,86,176,125,207,230,162,29,188,88,159,41,22,127,28,148,73,180,180,17,18,117,234,173,107,23,195,126,212,12,197,185,155,119,82,164,97,75,204,127,84,11,101,207,24,5,156,15,15,31,51,187,57,116,69,217,236,132,36,188,16,75,145,158,202,156,201,110,177,46,140,225,191,235,158,124,50,131,4,38,202,51,121,202,17,14,53,229,230,85,4,144,223,32,42,29,43,84,82,81,82,122,168,132,15,158,28,75,19,73,176,207,186,148,5,187,133,72,64,185,161,7,103,249,248,187,44,153,94,50,180,181,234,66,234,3,63,233,134,66,147,250,200,145,69,93,169,236,74,173,84,21,234,124,162,212,133,71,43,14,40,35,173,111,
 230,2,126,32,234,225,226,236,64,123,230,63,33,203,77,107,50,122,68,38,114,104,170,155,195,42,37,249,195,121,57,249,80,55,162,125,18,68,253,218,170,128,228,155,253,115,75,159,161,162,153,193,182,236,202,127,137,239,49,203,187,210,97,198,198,162,250,111,202,224,26,170,125,3,199,243,65,123,179,205,95,135,120,30,15,98,229,59,228,91,209,119,30,253,77,23,195,136,100,117,30,171,148,37,220,241,218,34,144,170,188,12,87,121,138,4,124,77,254,1,188,75,217,198,107,13,155,221,88,203,176,75,153,185,18,172,98,239,251,237,105,81,179,32,221,253,120,126,151,213,173,53,209,131,241,115,104,245,115,6,193,88,219,31,193,166,22,105,54,212,98,22,138,188,68,201,25,140,16,64,109,119,161,66,170,75,187,126,195,228,223,216,238,127,214,254,136,46,157,165,251,80,212,181,81,36,92,75,77,143,109,184,190,217,204,202,167,57,161,179,97,214,205,55,63,145,60,20,135,121,123,142,206,95,201,53,227,237,82,123,182,176,194,160,12,135,173,18,45,178,129,130,96,7,225,181,1,25,216,250,178,68,199,5,111,149,78,147,218,61,200,1
 00,2,222,246,78,249,106,56,153,120,31,32,168,92,11,98,102,154,152,254,31,90,4,69,193,247,16,118,97,0,145,130,166,173,223,182,189,63,202,146,86,62,119,66,48,29,125,44,188,67,6,44,7,175,19,59,132,121,65,129,247,161,127,197,223,217,26,169,4,19,172,46,190,184,61,201,209,156,12,108,216,209,116,159,132,107,61,169,120,219,88,31,214,169,47,168,129,138,202,161,13,14,85,32,81,32,59,4,83,173,246,170,73,177,219,12,206,40,27,172,122,130,205,234,84,32,149,117,31,98,141,248,58,61,116,209,156,38,229,172,11,11,65,79,64,29,74,66,118,20,200,185,127,219,151,68,141,208,161,20,146,79,40,39,162,96,38,48,45,44,43,24,43,34,100,46,117,70,209,65,10,185,39,59,168,51,120,67,27,165,35,234,100,122,36,227,101,99,254,120,205,112,254,72,12,43,96,58,75,60,24,59,98,240,56,138,168,172,193,71,43,247,117,113,33,94,242,84,91,5,111,120,157,166,226,26,29,79,76,132,7,74,44,66,5,143,245,171,61,187,194,226,118,22,164,12,238,107,187,206,155,0,160,64,88,82,97,99,220,18,69,251,38,131,35,237,194,35,139,212,158,145,61,154,1
 03,145,35,160,52,45,135,65,38,254,73,31,35,243,206,162,207,155,180,231,6,31,0,23,254,91,153,22,60,210,31,47,13,173,147,158,137,27,33,27,233,61,246,39,136,60,225,144,85,72,183,12,201,241,243,237,85,213,150,252,2,125,37,215,235,8,221,201,28,19,31,141,61,155,126,244,19,135,192,136,240,143,165,241,253,80,114,40,109,78,104,16,103,223,133,15,39,148,188,76,11,191,0,25,133,14,13,161,77,188,54,83,176,124,246,200,222,106,98,74,59,16,166,169,245,128,28,89,217,200,177,159,24,201,184,29,102,242,245,77,66,228,163,57,72,181,13,249,84,77,109,72,47,58,7,178,188,153,34,199,29,61,201,52,135,76,69,253,149,239,135,84,125,162,175,140,139,176,209,182,79,128,8,202,26,224,163,180,13,184,192,155,109,56,69,206,147,130,78,228,62,107,165,140,247,16,178,178,252,59,156,129,208,221,235,228,232,219,105,239,202,5,180,215,31,136,193,136,176,135,185,187,91,205,25,253,205,204,151,55,123,148,9,231,54,247,129,23,107,224,27,200,155,223,169,50,163,75,73,13,26,112,222,200,214,204,97,127,213,10,32,139,7,214,228,76,51
 ,246,26,30,112,6,98,132,234,113,52,182,163,61,187,105,119,171,5,117,104,57,107,14,12,59,165,207,18,95,11,22,179,7,217,170,108,4,42,212,30,203,31,101,152,55,199,254,83,230,167,186,226,23,206,80,135,64,84,131,24,109,109,189,102,76,224,17,10,172,2,46,208,164,237,220,100,184,26,88,226,119,223,104,247,101,103,7,137,145,31,156,117,104,103,219,101,134,211,179,224,3,79,100,77,35,83,162,151,24,7,56,155,160,99,43,82,61,131,23,234,227,39,132,52,97,66,72,146,162,186,46,10,9,38,245,209,139,163,233,119,191,65,219,174,136,176,14,18,203,182,36,0,158,222,128,188,25,203,201,152,38,201,202,72,137,253,45,96,195,85,121,242,128,21,218,28,161,220,9,101,77,91,232,25,192,21,198,242,210,120,129,102,97,148,71,162,224,100,231,110,24,60,8,161,94,190,245,131,174,159,79,99,155,26,252,21,252,117,10,192,93,67,216,46,172,145,219,77,138,76,113,172,227,171,189,70,227,238,11,129,223,150,105,173,157,186,236,108,224,96,152,155,83,10,234,57,234,149,213,254,22,214,188,248,62,93,94,41,165,69,196,23,27,228,218,219,19
 0,76,195,177,78,194,116,160,156,115,2,121,171,71,117,248,171,171,179,148,124,64,248,225,175,198,7,173,202,54,239,197,73,44,156,82,56,121,167,119,115,217,255,128,102,92,147,163,160,16,131,2,24,250,178,207,67,232,167,69,187,159,71,113,42,65,122,88,234,177,148,34,23,146,162,42,129,177,143,167,98,44,133,112,146,42,221,155,221,223,45,26,212,215,59,170,85,41,115,176,101,158,130,80,13,56,85,52,96,11,106,154,155,88,127,95,251,230,213,41,232,236,54,37,33,98,99,4,119,210,114,44,37,216,146,20,232,22,157,154,83,253,67,24,21,109,9,26,158,118,222,225,33,159,200,166,193,190,203,100,114,49,134,195,129,225,143,201,115,26,67,54,33,207,186,51,66,72,193,142,219,206,172,214,20,117,32,6,82,87,62,160,108,85,226,122,111,252,144,121,92,228,123,49,124,110,180,249,79,143,154,143,88,85,41,7,143,31,181,177,55,51,187,135,168,252,105,96,152,143,5,123,32,96,33,226,114,211,98,2,76,34,191,15,109,206,146,199,22,156,94,207,86,249,84,117,205,22,23,121,193,190,96,167,5,155,127,250,77,162,216,59,224,73,241,115,12
 6,140,180,223,175,239,94,125,187,17,83,104,243,126,17,38,62,182,131,70,153,31,188,120,208,93,16,143,181,170,184,20,176,131,14,230,199,190,251,107,237,161,224,238,112,220,250,148,32,167,217,236,189,200,72,127,239,246,253,79,241,187,36,96,25,3,208,149,97,43,23,74,107,223,187,249,58,237,104,73,20,80,211,242,191,148,207,235,247,83,243,2,193,249,210,83,85,70,157,84,96,57,88,66,44,167,62,31,219,166,143,200,125,130,47,172,226,91,103,87,167,219,140,31,49,88,100,212,89,34,187,104,20,246,162,37,143,227,75,181,133,140,78,226,71,74,36,255,239,120,209,133,225,8,246,15,35,100,91,183,25,26,186,46,248,80,122,102,27,214,176,18,185,71,162,101,201,199,7,254,135,99,69,21,80,151,89,41,164,44,101,134,53,43,221,149,47,44,3,102,82,209,159,108,14,26,178,128,50,79,50,27,208,201,184,175,225,2,128,224,25,200,37,138,166,119,193,117,182,105,186,36,119,225,28,216,253,188,97,80,198,18,182,203,8,204,253,206,193,88,76,76,87,218,180,60,77,50,128,175,209,80,82,217,5,253,252,200,234,30,191,218,188,255,111,211,1
 93,107,76,245,68,42,93,185,171,186,11,59,68,86,120,223,49,209,135,148,105,242,255,198,143,16,11,21,137,47,22,79,142,105,141,183,79,86,66,68,97,89,117,50,129,206,248,220,8,113,208,210,224,39,2,178,4,112,20,159,91,130,96,88,108,155,19,181,148,99,90,226,11,157,200,64,184,16,219,84,210,30,75,185,169,118,201,64,185,12,35,143,69,142,185,158,103,88,152,46,72,28,211,16,63,103,214,153,98,215,239,8,89,43,112,26,87,152,102,172,132,243,230,158,112,115,218,58,150,86,104,251,105,41,206,11,251,128,24,30,69,79,202,171,15,92,184,53,220,126,231,88,78,167,147,188,220,105,80,192,109,28,237,147,243,21,175,147,39,84,242,203,40,247,79,95,145,38,253,83,37,66,238,85,123,11,152,39,86,50,199,14,48,196,145,151,52,15,255,205,27,28,252,214,76,41,89,243,9,123,56,50,242,192,147,111,99,89,123,107,50,7,178,101,194,211,57,70,12,143,254,159,29,158,2,157,58,54,209,86,23,16,49,58,18,69,119,94,247,187,169,204,199,38,129,121,208,182,190,41,72,122,234,28,76,206,239,65,206,48,249,242,252,218,251,16,99,165,108,228,24
 8,209,167,149,248,172,42,254,192,228,196,92,107,208,217,28,47,27,140,101,189,51,119,251,216,89,151,114,225,127,182,231,71,87,47,93,77,237,141,118,39,70,9,227,105,145,16,88,220,230,232,24,34,250,230,211,171,101,231,229,68,90,89,246,182,54,189,233,22,245,129,104,241,28,11,86,42,68,218,136,2,201,177,208,104,132,219,157,139,116,11,158,197,191,106,132,54,133,222,195,181,120,207,37,8,233,234,41,184,191,147,246,3,77,165,254,124,168,239,143,117,245,250,119,29,110,101,25,36,97,230,18,93,119,150,104,182,58,176,63,250,136,176,49,139,7,143,219,125,201,64,251,192,203,250,36,160,95,254,50,133,37,101,145,37,103,143,44,162,220,166,79,93,223,44,68,220,150,175,185,178,88,185,71,106,2,95,31,43,14,36,8,165,253,90,108,203,91,244,120,240,43,139,2,11,152,110,91,54,153,154,169,147,20,115,112,15,255,176,52,8,207,86,145,189,28,132,152,134,244,238,143,150,140,140,171,131,136,59,121,214,107,131,243,244,175,73,106,15,3,14,236,167,135,26,241,243,23,202,119,60,197,118,227,222,31,135,241,217,135,16,49,75,9
 5,95,132,203,125,195,195,26,110,226,32,223,253,168,153,173,234,51,107,147,105,69,69,116,47,15,6,197,228,166,100,225,50,128,82,94,130,67,220,9,155,92,13,182,67,180,255,203,224,200,81,107,176,80,95,225,13,101,109,29,217,72,2,151,204,24,100,155,142,122,237,10,123,7,50,255,72,209,130,132,246,134,83,80,90,103,41,198,161,242,5,149,176,151,84,121,83,134,52,219,156,188,114,70,124,132,45,30,48,135,74,25,163,91,166,199,222,234,222,148,10,109,117,79,119,81,86,177,198,47,132,120,121,26,150,41,237,46,204,70,88,133,156,201,168,175,171,40,209,228,234,39,152,148,244,234,107,178,52,253,11,76,103,161,121,86,42,189,3,162,233,48,224,180,25,202,205,48,181,135,146,139,185,213,194,77,149,169,48,64,27,197,215,102,57,180,6,66,98,12,228,128,156,175,3,43,201,37,152,143,164,204,151,119,11,207,170,245,230,187,156,55,102,173,158,170,27,41,148,222,29,119,52,113,197,30,140,6,22,198,126,146,148,124,11,197,222,223,199,132,2,31,105,26,227,123,47,207,192,145,37,239,232,73,233,48,168,156,13,137,243,68,209,57,50
 ,49,179,68,171,53,238,192,129,95,3,135,137,55,221,130,255,145,85,84,14,143,239,252,231,199,200,169,8,122,84,162,28,113,180,33,128,84,220,38,63,41,124,94,209,211,172,186,210,10,251,147,120,128,151,35,63,59,90,183,0,198,174,154,236,116,44,55,178,174,97,4,230,140,56,13,127,49,253,10,240,211,10,126,1,218,151,78,247,91,30,214,60,159,178,123,249,42,63,103,181,131,126,100,229,129,209,82,151,208,34,204,67,46,245,223,90,203,210,45,13,137,199,240,248,25,146,143,56,89,37,8,164,198,8,155,235,245,17,118,4,95,251,85,235,14,72,139,176,197,191,121,15,160,212,193,157,68,129,57,104,57,35,2,196,117,17,213,156,37,114,87,229,171,41,141,211,18,107,10,227,13,22,127,150,33,209,238,224,217,181,44,100,147,119,14,79,229,68,22,190,240,4,16,17,217,46,138,161,245,222,188,222,247,168,210,8,209,165,221,131,58,68,37,39,231,191,148,174,112,194,54,146,223,196,72,5,239,249,13,87,160,116,208,169,45,121,100,86,175,243,196,160,6,46,169,192,141,48,255,161,205,155,248,178,62,149,239,185,133,11,178,75,79,211,44,0,31
 ,114,223,149,218,68,116,34,207,104,240,93,251,222,51,58,189,116,173,192,167,2,157,67,232,8,219,178,164,15,222,91,25,93,105,158,232,246,215,108,190,5,212,40,149,189,243,22,86,89,63,174,115,33,122,218,87,48,126,191,7,177,68,252,214,93,157,106,5,44,101,57,87,3,144,126,201,154,152,214,16,128,254,16,192,92,46,10,63,164,132,141,103,54,109,250,141,163,113,34,62,108,67,231,143,173,136,81,146,62,171,54,229,154,153,56,234,121,12,23,76,77,123,102,254,167,38,52,87,218,60,165,25,36,148,251,14,218,249,1,27,240,214,52,175,144,129,179,89,104,118,189,217,169,202,170,134,79,118,175,94,116,83,36,158,118,23,80,179,103,74,217,132,132,0,246,32,60,35,100,78,71,227,195,31,10,173,17,166,151,57,39,103,228,14,61,170,157,254,199,231,71,250,160,184,246,100,162,189,20,110,151,48,191,105,253,73,92,123,252,81,233,50,203,40,121,37,60,152,245,248,185,34,129,104,67,188,33,76,205,3,28,72,144,7,128,33,10,249,2,65,142,167,38,129,62,116,173,127,159,168,100,175,182,170,43,195,51,159,114,191,107,135,178,186,43,31,7
 3,15,11,92,32,48,107,227,41,173,5,229,247,236,238,38,154,231,230,88,174,83,72,130,47,137,190,162,161,156,35,39,254,214,158,180,49,172,76,236,70,246,105,156,237,45,128,72,226,183,19,72,196,47,40,128,169,86,77,63,193,87,167,207,171,232,183,88,66,132,90,58,20,68,64,197,99,109,16,106,179,235,221,199,177,174,114,150,106,194,166,134,105,223,195,50,239,210,252,214,147,95,41,73,120,144,206,8,28,64,142,249,228,110,112,114,194,169,12,129,86,137,139,195,250,119,29,25,248,228,71,10,189,204,125,22,181,166,120,158,172,151,130,231,177,3,129,71,194,146,89,1,2,96,208,99,19,67,1,76,172,204,133,88,215,44,19,193,3,79,8,227,28,156,230,245,229,77,8,252,199,11,46,140,252,132,187,177,2,67,87,59,161,92,68,184,93,74,128,152,205,1,12,201,215,173,171,72,227,87,171,102,206,111,157,37,34,215,80,86,221,67,75,58,160,12,226,251,226,153,170,50,129,26,171,40,24,238,142,42,45,255,161,151,14,165,144,236,68,78,122,76,122,10,86,178,90,212,218,223,10,153,133,42,163,174,70,213,64,165,146,234,94,219,78,105,44,136,12
 8,17,40,72,50,84,115,132,52,97,213,44,141,183,247,177,241,99,154,73,22,169,165,123,188,18,217,227,133,109,53,143,253,206,167,213,59,86,116,77,171,85,0,140,213,250,213,104,47,53,46,218,61,246,31,146,1,44,244,213,15,137,65,19,239,77,175,98,65,191,146,184,80,29,144,228,114,40,216,154,217,65,36,241,192,244,249,34,172,229,30,77,129,202,95,4,191,87,234,214,236,77,60,188,208,186,110,107,228,158,118,133,104,231,54,26,228,56,178,174,168,231,209,242,106,168,113,202,145,69,21,73,6,213,8,248,37,16,6,5,187,131,51,245,78,29,210,104,53,245,32,82,248,158,250,226,45,138,202,12,66,186,151,236,161,12,148,218,235,138,92,220,29,69,81,0,229,205,148,103,25,5,35,224,53,122,248,235,38,158,186,216,57,54,85,202,45,80,57,116,144,169,79,144,105,161,62,159,95,155,33,80,89,231,232,42,102,244,169,69,73,208,195,153,90,167,183,151,47,60,54,182,116,210,247,13,220,121,13,213,136,180,49,58,142,70,201,168,88,235,163,200,230,150,120,81,177,191,22,182,110,80,28,23,52,225,152,142,228,244,195,45,171,202,234,84,56,18
 7,139,9,28,189,69,115,10,205,226,49,37,96,59,87,16,148,196,100,55,1,154,220,240,15,234,131,53,86,164,116,168,4,21,68,181,234,72,166,172,34,18,193,112,93,122,204,245,254,254,168,183,155,74,85,84,250,168,158,144,153,160,118,86,221,134,238,19,216,99,149,189,6,64,90,165,59,60,186,202,134,68,4,53,70,171,251,30,184,198,87,103,56,53,117,146,33,103,163,24,20,18,128,215,248,50,254,69,45,62,132,24,25,134,238,7,92,237,200,46,137,13,239,32,197,187,73,71,52,179,255,65,209,113,170,111,106,235,219,158,96,56,24,112,175,125,255,227,174,122,250,7,245,193,156,251,210,84,146,19,89,167,188,67,241,140,227,179,168,171,121,230,236,39,202,216,168,128,198,11,144,29,221,223,88,188,177,90,205,236,28,182,183,116,109,159,55,15,52,186,1,208,131,226,248,108,54,231,118,185,148,129,42,22,150,20,110,4,91,228,66,244,172,56,168,203,124,86,12,240,108,213,110,97,219,77,18,30,86,15,244,41,73,83,167,251,196,119,57,56,52,27,28,151,0,136,74,253,164,210,186,71,174,101,160,208,91,244,173,244,187,7,125,212,69,222,149,22
 4,60,168,187,119,181,89,49,15,216,193,194,216,89,208,26,9,181,224,230,39,39,195,6,97,166,35,207,237,194,90,196,23,213,61,158,152,156,245,171,101,57,117,65,108,67,197,175,123,140,130,239,191,223,3,83,105,67,240,152,219,183,56,213,107,7,48,92,66,157,10,173,245,146,195,178,204,25,17,120,181,32,35,152,163,69,151,117,7,240,165,235,41,218,139,48,59,91,22,90,177,134,214,177,172,58,38,238,99,159,203,75,161,142,136,82,90,30,162,109,242,40,109,55,75,73,149,70,138,102,67,50,181,70,70,108,126,161,120,248,130,74,247,213,178,37,132,100,120,60,170,52,19,237,147,208,129,123,160,191,27,98,246,246,139,2,78,217,89,27,76,181,25,153,120,121,121,70,167,48,120,225,75,73,148,168,164,197,111,35,250,174,60,188,199,169,122,239,131,234,224,103,84,243,51,92,191,80,153,168,179,91,223,150,76,230,79,219,52,77,85,243,198,52,21,154,7,37,112,116,25,42,233,130,57,141,247,186,127,81,155,166,153,151,194,85,166,236,161,10,253,127,33,25,153,186,219,190,152,218,42,41,118,174,78,78,163,115,84,206,175,142,22,171,85,3
 ,36,69,65,254,164,52,211,46,118,14,210,212,38,72,152,171,98,105,178,132,35,85,253,244,78,148,51,146,167,128,60,157,101,88,61,236,49,125,71,135,135,73,84,81,34,111,19,0,64,41,197,67,14,38,42,161,15,68,45,46,114,119,220,99,162,93,221,5,55,26,31,16,196,221,134,30,158,20,146,155,171,168,208,18,193,76,21,19,229,3,175,144,202,153,88,149,99,236,159,253,125,75,101,117,207,50,126,31,162,49,54,235,150,84,96,83,128,60,82,49,251,130,160,126,192,79,77,49,195,177,148,74,112,4,21,172,61,130,142,36,119,96,46,228,114,95,67,127,118,152,151,185,37,208,5,164,106,67,249,93,217,156,158,215,129,165,104,145,111,117,195,231,143,118,207,246,199,115,71,82,152,229,104,246,75,126,211,86,239,133,200,73,99,165,40,54,44,58,73,43,179,234,236,46,204,249,107,20,50,126,230,209,180,26,51,54,34,151,196,22,234,85,67,126,215,192,232,12,223,70,140,81,246,191,248,213,149,89,49,151,188,111,253,128,113,75,60,199,87,80,181,232,17,15,26,60,143,63,161,32,124,18,112,171,222,171,11,47,247,19,17,105,53,181,85,212,135,17,211
 ,32,7,178,180,224,213,111,33,158,163,105,236,40,121,158,126,86,32,89,2,206,254,228,16,167,156,228,209,182,164,120,159,98,246,220,230,17,78,202,43,222,166,125,91,41,183,172,176,20,122,58,176,133,74,70,0,83,46,224,195,96,100,92,157,132,254,12,130,204,131,10,228,54,64,191,254,20,208,29,103,6,42,130,13,109,82,6,146,240,162,69,39,53,175,206,168,48,101,228,120,71,117,19,133,6,223,28,233,91,143,184,251,147,46,129,168,45,180,131,40,68,131,212,152,75,204,220,245,127,142,175,122,114,197,125,26,71,116,45,7,157,245,71,90,6,76,52,192,76,148,152,228,80,174,232,125,253,157,70,25,153,3,197,31,238,13,0,123,227,51,213,226,20,92,124,20,175,28,81,137,76,205,85,202,202,249,112,166,143,175,65,118,52,134,210,142,97,91,158,12,13,208,86,54,125,48,137,224,16,106,162,18,210,96,109,208,42,188,111,98,165,166,190,117,71,187,69,237,180,113,99,96,227,157,54,166,190,184,203,227,137,146,220,171,195,196,175,252,216,61,209,110,168,151,184,96,26,84,159,189,193,178,139,101,83,94,196,224,59,65,254,110,90,95,34,13
 9,1,19,17,78,239,45,133,226,199,84,162,92,34,122,77,106,172,46,160,198,178,147,68,102,189,16,108,165,214,62,213,31,184,66,96,202,44,97,127,75,183,192,176,41,236,16,207,110,198,232,0,138,22,158,242,35,43,240,45,124,248,4,247,234,44,90,68,40,191,149,207,134,106,99,77,145,210,79,144,52,28,28,198,128,203,151,15,62,161,143,108,5,72,236,62,216,117,111,207,3,225,37,77,49,189,197,217,216,20,234,184,167,35,226,200,92,123,34,248,189,159,130,83,32,13,118,211,10,146,228,66,202,35,144,231,19,118,60,63,203,223,198,56,255,70,24,169,136,253,113,73,145,102,64,161,231,235,249,83,37,8,125,217,164,31,215,167,143,4,113,166,231,10,166,75,210,112,15,59,151,82,219,5,97,82,161,49,25,90,200,63,124,183,11,73,20,32,90,254,234,26,218,111,222,16,119,243,72,78,76,139,129,3,13,62,20,49,222,46,88,137,9,104,145,223,204,143,151,204,255,185,86,31,51,11,14,238,152,220,97,62,52,207,178,179,133,25,131,146,17,71,168,44,221,252,249,13,78,153,141,5,141,238,94,109,126,105,0,30,17,224,108,72,223,212,183,152,88,10,59,1
 61,26,2,118,192,205,21,67,185,251,79,18,142,77,219,200,184,136,249,248,37,53,183,80,131,178,141,231,30,104,60,229,19,174,248,222,196,63,131,64,198,53,57,0,210,147,192,85,160,34,207,158,46,60,15,136,3,46,176,168,238,74,128,126,79,195,151,90,169,80,13,245,153,199,222,62,191,166,215,235,61,31,200,245,169,202,150,93,129,7,22,251,222,49,254,198,21,73,86,227,240,181,202,72,206,31,145,142,140,252,56,168,117,102,115,138,224,151,77,12,38,251,126,144,176,126,164,215,69,21,29,78,177,120,8,105,117,246,161,190,112,33,33,30,84,228,43,171,85,5,41,41,225,224,152,54,230,245,192,170,242,214,134,78,73,176,238,203,26,90,26,234,153,20,204,212,97,234,151,157,99,113,186,137,67,196,111,56,47,191,215,209,131,248,72,80,80,114,183,3,248,253,247,86,207,129,135,4,43,199,40,154,119,178,42,50,168,199,158,235,147,96,196,152,165,157,72,41,144,52,61,46,129,71,208,186,84,245,235,5,221,179,147,10,169,128,28,146,118,149,76,47,206,69,43,251,198,134,216,176,115,42,146,145,73,220,148,87,56,122,75,161,89,111,135,25
 2,73,126,26,105,198,250,18,74,137,165,44,73,248,126,50,94,231,16,211,206,54,43,248,235,4,213,37,105,251,61,164,199,131,98,6,219,26,4,197,244,162,119,77,161,134,102,182,221,217,3,187,31,90,73,127,190,228,249,58,190,34,238,26,224,100,125,145,105,44,157,19,95,65,254,209,137,67,244,30,34,70,57,182,37,108,74,138,24,56,3,169,24,137,14,229,136,80,161,140,100,104,240,57,179,38,45,31,104,92,60,244,113,61,223,165,148,70,107,22,214,138,150,221,44,187,24,30,54,186,232,61,97,95,86,245,26,213,23,144,134,112,175,80,57,133,102,49,65,242,203,221,99,32,108,35,2,51,152,220,13,12,130,112,173,90,75,69,247,118,158,254,43,143,83,98,119,251,98,157,229,187,27,185,26,189,115,204,57,56,91,37,104,134,195,85,211,178,16,29,25,12,202,186,204,148,66,220,12,179,22,88,130,115,200,86,6,237,136,248,89,11,41,164,119,56,24,96,70,57,241,253,99,127,208,24,44,225,20,129,184,21,42,227,179,197,115,66,213,223,169,87,242,153,249,24,205,175,150,40,202,214,137,251,3,143,174,13,211,75,10,132,13,232,40,225,178,88,198,13,14
 2,2,187,98,18,76,188,117,207,91,146,118,41,237,180,222,94,11,248,133,213,39,4,116,122,77,84,105,116,135,243,217,249,240,239,36,112,204,26,120,36,195,63,8,145,234,180,243,226,90,202,210,105,203,39,88,204,191,99,109,77,12,22,163,154,217,16,58,24,84,233,62,167,243,251,13,233,38,195,62,112,233,201,191,181,188,59,10,54,150,253,51,39,66,85,252,126,18,50,235,193,87,178,3,192,157,86,115,27,194,185,124,169,237,73,121,156,211,200,171,163,234,132,211,17,66,53,181,99,67,189,23,127,5,147,32,227,5,97,242,14,46,178,48,10,182,161,155,180,192,187,246,87,222,253,58,46,27,113,22,79,40,93,182,41,59,47,226,84,218,97,88,43,86,197,51,111,56,114,182,22,168,240,179,20,28,167,42,172,219,44,51,40,119,71,46,75,42,218,118,171,224,99,19,189,240,189,48,122,21,193,104,59,178,77,166,9,243,85,96,6,45,152,245,192,45,5,65,142,217,17,220,168,200,82,200,28,196,255,28,247,163,77,49,34,62,29,108,229,45,233,29,150,118,55,103,201,208,250,158,251,25,110,161,72,227,3,218,226,150,161,154,121,99,238,72,1,126,16,87,142,1
 68,229,195,88,71,86,107,151,56,158,31,196,223,230,126,126,92,141,221,255,53,105,62,253,198,18,249,54,89,174,98,125,231,199,190,212,182,64,113,187,252,101,221,125,37,252,34,111,18,241,38,12,206,230,42,88,5,181,86,50,197,195,202,224,229,156,132,12,249,66,108,209,141,151,140,146,35,122,173,154,209,6,88,215,68,78,87,233,61,71,60,56,1,31,98,134,4,245,136,158,161,90,169,178,173,212,45,110,226,146,109,38,177,0,252,28,127,187,85,33,75,188,102,202,176,64,1,90,86,201,194,207,242,201,18,179,18,220,34,5,220,201,55,147,178,214,120,254,19,189,6,171,48,78,249,71,237,77,172,23,46,23,188,43,100,144,234,97,82,238,109,69,51,211,27,49,70,134,166,221,64,39,102,143,87,97,53,54,57,46,198,23,243,125,84,153,209,208,37,109,170,43,127,197,151,167,190,176,113,247,56,91,179,16,160,155,219,107,95,12,59,127,248,182,137,255,48,36,120,189,126,132,55,99,151,251,76,15,22,60,200,25,238,147,232,156,122,40,186,106,90,179,115,244,78,182,209,166,157,96,78,142,140,95,211,185,9,59,235,98,128,202,64,219,16,124,172,12
 0,235,171,26,114,78,149,25,41,84,184,167,162,157,64,149,91,142,52,110,137,46,111,169,176,101,150,140,57,157,43,17,54,220,106,97,78,89,130,177,187,231,26,152,112,198,39,91,164,249,166,197,1,83,217,227,62,237,16,40,121,88,51,102,184,213,132,58,46,252,63,150,106,146,111,246,249,112,66,234,195,188,80,205,92,0,92,253,79,42,110,12,160,25,114,209,162,233,242,158,114,109,152,111,191,181,179,93,132,68,241,128,33,99,94,108,31,102,41,132,5,199,194,129,189,170,55,150,188,88,66,219,23,26,129,42,100,173,252,62,13,21,0,213,64,32,218,107,43,165,180,85,238,122,180,122,137,159,246,15,86,23,89,190,93,226,230,36,62,37,57,13,218,238,200,50,203,152,94,180,239,181,71,16,65,213,1,136,170,8,216,25,185,38,55,83,249,117,201,36,102,177,9,125,10,162,0,166,4,194,173,208,66,47,91,53,181,188,236,5,109,166,6,165,61,48,83,72,64,37,241,181,178,40,146,119,103,53,62,89,166,53,46,125,185,157,155,184,59,4,28,63,253,103,22,130,201,201,158,15,76,193,172,82,1,71,121,252,75,31,38,235,10,3,206,93,90,133,10,133,50,210,
 201,106,248,186,224,130,130,101,173,191,230,59,172,138,75,211,29,55,209,244,6,156,158,250,8,28,138,124,180,181,24,131,191,251,159,110,148,125,163,32,66,64,22,251,219,137,241,1,220,50,193,12,66,145,7,68,178,138,241,6,193,235,89,179,151,222,169,98,251,99,10,73,185,205,161,90,36,123,255,98,65,22,145,253,58,166,16,173,116,185,145,11,31,137,120,148,93,48,156,28,43,66,241,1,0,156,97,8,82,215,107,248,134,40,133,174,134,67,226,165,85,108,43,222,211,39,38,30,243,183,30,232,151,254,220,214,166,134,167,2,255,155,164,192,25,179,79,197,216,71,230,243,59,136,227,185,165,109,254,175,27,18,219,101,86,211,35,223,69,175,98,135,111,111,61,171,67,89,211,97,109,38,78,86,44,209,26,46,123,224,13,82,71,233,233,120,86,243,17,160,87,51,119,78,120,57,135,153,42,177,232,98,149,173,73,59,174,205,105,243,124,207,120,171,115,104,111,150,230,210,252,99,80,205,47,169,74,127,103,151,164,24,241,172,155,121,243,140,154,179,230,66,211,9,120,102,193,33,221,61,178,207,159,192,67,98,204,179,179,73,10,194,47,158,71
 ,93,154,123,182,202,222,6,97,84,42,250,131,217,110,67,118,108,130,127,245,97,83,222,213,230,198,11,32,142,123,116,220,15,152,22,210,119,44,199,31,223,10,53,249,24,87,236,166,182,3,122,213,175,234,153,198,36,207,145,3,240,47,153,177,245,175,51,255,226,161,105,20,52,11,184,30,225,127,237,138,247,217,225,176,239,120,149,15,147,135,36,2,109,181,218,194,171,232,247,182,138,189,100,156,25,159,254,24,0,232,9,244,86,78,61,189,47,97,155,97,52,248,235,247,48,184,148,190,245,125,191,135,203,44,37,204,239,242,34,40,74,37,20,83,8,54,191,69,234,211,172,39,130,1,100,182,63,204,132,27,132,127,26,162,6,6,18,26,34,198,223,74,244,25,178,92,189,68,242,7,61,184,80,6,142,166,243,154,155,55,161,1,100,200,159,222,123,254,69,67,155,24,64,50,53,101,50,223,86,169,102,244,203,0,192,84,239,80,109,141,104,209,141,181,87,4,96,91,121,109,148,139,64,193,13,210,137,126,213,57,236,224,176,157,104,47,112,4,69,21,227,20,36,229,233,135,42,99,52,223,233,36,239,22,199,210,250,218,62,212,79,39,14,125,247,35,243,209
 ,4,189,92,243,74,54,214,172,167,193,162,14,19,147,183,142,40,62,110,186,159,212,61,235,58,234,229,150,57,245,218,71,58,120,241,37,27,105,78,217,31,95,179,102,136,195,221,39,252,212,57,99,43,177,71,178,42,226,142,209,1,90,52,44,139,221,2,150,209,119,230,169,72,39,157,50,80,145,112,244,194,32,61,132,12,63,123,126,154,231,15,24,231,15,23,10,64,108,84,26,181,244,203,223,107,102,116,59,175,163,120,97,247,136,240,95,29,168,15,146,64,40,187,64,63,77,219,130,191,193,73,26,60,46,242,197,9,232,112,161,232,241,199,67,179,203,115,184,100,95,46,234,15,39,157,72,169,29,4,185,182,118,45,104,12,64,211,6,145,238,44,212,57,225,26,54,112,154,138,45,94,90,69,46,37,63,155,42,37,106,136,92,233,65,97,59,174,107,112,73,232,56,39,186,18,142,245,181,183,220,183,66,180,4,50,126,121,159,235,210,55,46,215,78,227,101,152,178,249,87,208,204,11,211,13,204,248,10,12,47,143,111,238,96,176,219,90,100,49,238,101,120,68,253,104,243,167,142,239,131,131,247,184,237,147,236,218,39,150,6,104,48,102,56,98,39,101,9,4
 ,8,142,183,47,202,180,53,23,138,0,7,162,184,17,145,122,180,181,166,228,22,102,140,101,229,85,233,127,134,135,217,150,183,114,60,183,172,111,225,77,57,50,14,112,17,170,68,200,13,33,189,231,197,215,189,1,185,178,117,50,103,14,217,44,167,238,253,152,168,240,113,61,156,19,247,12,251,119,5,135,41,22,81,143,255,117,230,84,229,72,176,216,250,217,9,94,13,53,254,123,103,17,151,140,148,81,154,64,165,62,226,138,206,85,142,239,46,58,74,60,243,159,95,216,169,92,135,38,119,43,147,178,135,102,247,93,148,223,26,121,96,22,206,17,197,47,244,133,58,129,234,30,12,82,59,61,91,133,60,145,58,253,211,41,156,232,73,172,47,69,132,14,158,88,24,141,244,2,23,88,221,53,240,54,185,122,44,200,212,9,137,27,91,161,204,199,218,39,7,179,80,128,123,34,193,96,151,212,246,80,192,4,192,209,69,69,115,249,120,231,47,24,13,199,215,222,141,148,23,96,27,163,151,159,83,76,248,181,65,59,12,188,71,240,176,70,71,158,193,99,152,62,254,211,195,225,92,3,202,198,243,17,181,196,53,167,213,171,133,222,241,144,119,199,156,164,14,
 239,79,23,17,190,77,120,159,14,250,246,127,216,159,1,57,8,217,103,179,109,81,69,9,220,18,145,27,160,211,37,8,172,110,3,233,56,29,40,212,173,177,207,59,247,121,120,168,193,241,126,145,26,32,199,192,54,127,74,41,83,94,82,19,28,104,49,200,96,28,160,234,165,211,12,168,36,212,207,5,237,18,90,45,17,93,38,32,183,208,112,189,192,48,76,222,221,187,103,115,97,229,117,144,69,41,255,28,222,7,166,157,142,231,243,93,35,186,126,19,12,5,15,221,2,207,36,126,242,160,173,190,45,79,251,82,189,12,226,131,86,202,216,158,87,208,128,109,224,61,112,204,174,44,166,138,106,114,132,114,25,137,123,74,98,255,194,113,120,87,131,196,79,125,102,23,87,244,24,104,189,134,64,126,130,78,28,65,26,60,104,192,38,157,165,33,138,214,50,148,245,188,82,40,136,68,7,76,34,190,232,198,84,169,118,252,40,246,86,43,51,187,197,255,194,161,99,204,95,70,55,96,170,38,41,137,27,77,159,26,110,3,77,188,48,195,90,123,114,238,35,25,75,64,130,220,150,198,250,36,123,12,126,252,193,163,0,26,207,95,76,106,233,179,43,253,7,141,194,199,19
 1,78,95,180,89,179,248,6,30,134,152,107,214,138,210,177,217,131,143,184,67,174,13,56,72,194,226,140,254,166,201,185,230,194,250,84,32,151,251,28,48,110,46,121,22,165,230,238,70,227,52,117,192,4,10,245,183,26,22,18,202,131,16,92,93,98,172,54,141,26,132,220,232,195,29,222,12,204,107,137,1,240,170,189,37,198,109,159,33,83,53,196,51,147,3,12,23,60,172,23,20,161,241,62,27,63,4,201,231,226,214,27,74,21,105,236,127,247,250,138,67,127,159,4,137,192,59,228,231,146,122,57,228,93,76,54,28,194,103,207,37,44,123,207,239,35,102,50,200,180,108,4,228,46,135,227,126,182,146,190,191,62,96,191,143,220,148,196,182,8,176,148,117,208,83,71,96,196,44,65,255,111,98,191,236,210,116,28,74,163,119,238,208,223,72,14,85,70,189,140,41,255,3,83,168,149,76,126,241,230,74,196,135,200,13,206,207,125,246,200,152,139,214,227,217,152,246,225,108,45,149,251,36,35,38,114,46,191,152,235,62,43,118,19,74,243,191,172,55,250,190,200,110,158,192,3,248,1,83,150,245,151,96,189,143,182,74,26,167,61,36,55,168,60,218,107,12
 7,166,116,188,225,80,93,156,162,221,175,117,225,147,201,202,107,105,180,160,8,6,243,125,9,179,135,237,230,25,142,36,70,71,137,226,101,92,239,196,161,253,64,107,93,48,101,205,230,144,150,37,131,91,101,176,237,226,35,174,65,223,45,7,195,31,227,46,182,224,172,213,162,3,126,0,194,65,147,59,18,245,88,139,87,111,196,248,191,196,250,163,56,126,69,137,227,167,151,193,109,226,209,88,184,89,39,254,161,236,143,21,255,136,195,82,40,81,45,78,4,167,104,34,169,7,98,144,204,142,99,17,166,100,52,61,215,22,106,202,198,191,65,164,97,150,213,201,205,212,162,136,165,109,245,45,225,172,208,101,120,0,152,16,14,123,10,147,40,146,15,213,2,91,26,181,19,20,23,154,189,87,5,236,45,163,97,88,202,255,51,3,126,78,155,165,211,165,20,116,90,78,214,17,146,14,190,69,228,192,120,142,141,148,96,94,249,211,230,226,8,215,163,185,233,62,24,240,28,84,244,217,166,33,237,6,202,195,19,88,46,148,235,231,104,110,216,88,116,118,155,238,137,122,178,15,211,12,88,45,179,244,196,149,134,175,219,153,88,201,161,219,147,209,248,
 36,245,254,6,210,173,48,8,163,185,61,120,131,9,13,218,59,30,56,45,11,254,170,185,20,250,251,250,69,48,189,176,207,143,160,192,58,6,247,164,174,151,26,105,56,184,151,130,104,38,146,120,136,118,161,185,69,61,45,221,190,143,79,114,156,71,83,140,155,252,96,70,169,114,43,169,142,37,173,84,153,241,196,31,109,42,47,70,18,238,241,98,201,51,230,100,8,105,192,172,41,0,207,229,225,199,185,104,162,102,119,45,161,217,58,65,93,121,60,170,208,72,216,154,182,21,47,20,26,77,14,138,174,151,13,169,245,209,42,202,37,149,158,81,44,82,244,245,168,196,115,12,29,94,27,154,35,140,136,235,99,71,239,176,148,251,38,146,143,112,54,132,186,3,185,52,10,179,237,91,236,254,90,169,226,252,57,166,77,48,157,16,19,134,122,91,13,50,63,212,30,20,75,71,189,219,66,186,216,63,152,61,36,254,215,112,77,78,45,65,37,67,150,122,175,184,115,0,65,163,149,168,134,154,203,58,38,12,203,84,116,229,231,219,146,109,129,88,112,56,50,195,156,23,51,159,114,188,16,217,216,49,108,174,250,69,8,10,63,252,115,208,67,139,177,87,214,141,1
 29,116,226,85,99,245,81,122,20,175,121,149,44,32,126,93,189,200,223,131,249,184,120,168,223,191,94,174,115,119,137,188,71,11,155,199,87,22,234,184,144,176,58,8,191,195,72,96,63,58,165,243,202,79,211,137,73,162,234,75,226,199,159,134,237,137,53,190,67,36,225,199,67,155,206,166,86,130,195,24,28,211,58,45,49,177,174,9,135,41,91,43,92,35,113,84,11,187,155,71,218,223,182,4,157,189,220,33,18,21,168,252,57,9,101,125,219,22,198,4,55,113,185,236,190,5,52,237,151,89,47,144,218,169,29,182,183,173,182,158,217,243,208,203,223,219,229,134,238,167,147,86,108,92,206,93,192,110,236,212,58,229,113,214,237,219,123,63,60,173,218,251,194,165,186,155,187,71,142,255,77,213,116,214,55,246,111,19,86,152,123,212,208,129,198,41,253,96,166,224,214,86,121,205,94,5,202,29,122,193,10,17,145,202,47,89,179,148,76,40,42,5,177,5,28,154,172,254,39,197,116,29,64,25,122,237,67,73,113,153,200,34,47,128,121,194,16,106,73,116,208,217,226,40,103,94,189,91,53,11,106,36,227,54,42,230,136,199,31,250,96,25,171,94,222,22
 9,157,95,229,210,68,252,150,170,208,163,103,60,168,179,180,173,247,47,129,11,39,16,144,35,187,96,238,20,234,82,122,197,187,238,20,68,84,243,143,42,198,193,169,107,110,111,191,131,208,151,51,93,25,229,75,15,97,41,103,153,105,50,219,179,77,126,134,95,137,216,93,118,49,29,16,210,225,32,86,122,183,131,60,51,121,237,210,170,177,73,9,1,229,23,70,181,166,233,219,248,163,40,45,46,158,122,218,210,85,115,72,13,37,197,133,53,66,130,161,94,156,126,80,103,71,168,103,57,199,227,87,161,105,242,200,75,129,121,209,180,120,175,21,242,108,175,9,111,147,6,126,104,68,241,215,44,139,36,103,83,29,127,42,102,239,12,4,10,255,96,17,62,179,161,53,76,148,108,253,98,161,187,209,91,149,57,246,251,187,193,253,94,73,208,195,118,27,252,51,185,186,246,6,211,193,18,168,234,219,205,115,98,221,170,59,68,61,38,104,171,51,185,172,70,66,217,71,174,253,135,124,16,142,95,13,252,190,216,168,254,222,149,89,177,173,60,100,183,49,56,24,232,98,196,158,110,222,132,231,80,105,114,239,185,70,221,215,248,99,208,50,175,181,15
 6,167,45,228,139,60,75,241,24,43,255,143,191,76,17,100,244,133,4,108,240,120,97,134,243,135,42,254,235,22,100,56,132,197,118,206,217,128,118,0,159,145,95,191,118,115,80,189,71,142,77,224,143,74,122,50,124,9,215,218,31,107,187,114,56,195,82,74,94,46,150,59,224,201,130,172,91,232,222,204,177,170,193,23,66,101,193,30,25,222,117,21,147,4,3,139,58,2,114,201,207,145,0,15,189,24,223,69,11,249,188,175,9,149,177,145,95,1,175,200,245,86,240,63,105,88,217,165,182,172,216,213,131,232,155,238,114,162,111,240,21,82,229,88,185,226,137,254,207,143,116,228,106,20,158,184,245,190,119,254,103,192,237,141,83,10,169,41,1,140,190,168,248,102,165,232,182,140,188,68,230,107,147,13,30,56,214,225,62,253,110,166,83,211,123,80,80,19,246,103,38,169,232,126,247,7,63,252,115,3,7,137,126,73,112,29,7,148,44,88,179,203,216,23,241,99,111,225,80,178,70,104,94,225,174,4,75,230,247,137,187,243,196,189,159,87,2,14,14,216,168,25,84,60,7,98,226,144,238,1,223,53,111,40,122,160,234,103,148,140,6,106,170,191,53,239,29
 ,140,69,22,183,203,236,143,169,177,8,189,99,202,194,171,170,52,44,227,244,180,169,178,49,101,56,82,125,73,112,93,11,10,239,50,209,233,88,168,40,92,165,121,124,255,48,218,151,133,91,97,24,74,193,105,117,2,39,83,201,30,205,95,83,102,233,124,108,202,78,12,224,207,50,248,104,6,229,119,170,125,103,151,199,136,151,10,125,56,109,76,236,23,71,2,5,187,239,196,215,0,47,2,107,149,143,140,111,81,198,192,152,193,47,45,4,200,183,252,144,147,201,54,34,76,53,56,133,65,13,165,35,55,248,107,181,131,180,111,109,1,145,208,142,197,216,180,142,157,116,109,72,113,61,127,182,76,219,179,230,53,3,107,132,174,152,109,57,89,194,135,93,134,7,76,111,250,207,53,244,205,163,169,77,26,166,143,155,82,31,104,48,55,127,3,219,194,77,186,203,110,81,154,133,20,23,74,69,85,78,27,243,165,16,132,77,85,135,2,99,129,239,167,169,246,22,177,164,3,47,3,1,167,3,26,82,101,180,80,39,67,244,114,216,41,145,223,222,102,246,154,210,132,234,65,82,54,32,44,82,172,143,204,1,202,84,190,212,2,17,133,110,186,43,48,196,198,129,199,240
 ,39,22,85,43,239,48,167,226,127,155,128,238,43,164,94,44,59,103,222,87,12,242,125,104,138,32,171,76,213,251,122,119,245,151,38,168,58,155,23,231,175,152,108,12,130,168,19,229,196,255,92,234,114,108,122,179,100,34,153,84,117,196,240,5,44,137,119,142,238,59,163,68,161,226,215,145,208,168,147,81,131,125,188,107,98,69,6,163,117,108,141,85,190,95,145,244,5,5,202,43,17,115,77,72,50,253,119,94,153,229,22,191,214,226,182,236,43,6,212,37,150,72,204,101,145,209,31,85,225,133,146,181,4,102,196,119,220,79,71,3,57,101,108,83,50,155,126,10,109,16,115,101,85,6,89,248,65,22,233,69,116,99,111,49,75,121,209,225,98,153,69,167,43,88,14,64,47,154,184,75,24,205,128,26,16,139,95,40,199,156,45,153,37,250,227,27,99,238,62,56,46,218,61,80,122,247,165,184,242,61,161,194,242,211,48,99,65,185,117,68,250,9,107,207,114,215,60,60,141,119,159,169,210,120,93,246,87,183,199,131,198,158,195,121,155,47,183,17,59,190,117,187,141,151,60,7,64,128,226,140,35,167,198,192,102,183,222,1,229,108,126,109,178,38,40,212,8
 2,52,17,31,1,70,30,159,130,22,229,187,135,22,89,135,182,182,220,58,31,137,160,171,73,160,93,38,210,32,253,180,118,167,19,224,110,138,71,174,127,153,249,165,73,208,76,22,31,164,233,114,153,87,164,249,241,146,37,181,233,219,217,54,172,21,207,173,11,51,166,50,77,32,24,30,43,220,10,105,10,47,151,3,248,206,14,27,182,81,15,217,176,205,39,254,14,98,251,48,216,164,33,156,212,42,106,176,54,62,198,9,131,57,189,180,150,166,19,254,135,89,197,155,183,91,113,112,30,196,100,52,154,185,93,105,175,191,215,70,227,55,234,94,59,78,77,62,117,161,141,170,192,4,133,188,174,179,167,174,172,175,236,83,141,33,68,116,112,12,214,247,242,122,248,237,247,11,57,198,27,120,251,77,28,215,110,127,25,147,174,156,201,59,64,36,78,107,12,196,139,160,102,35,144,57,160,29,64,55,137,241,52,64,200,156,119,239,199,69,205,75,164,238,242,245,145,20,188,67,133,145,113,115,70,182,208,247,131,32,227,117,89,29,22,2,252,21,65,65,44,92,161,157,149,18,255,246,73,96,174,33,207,57,29,122,162,226,47,51,153,158,197,122,44,145,66,
 242,25,144,136,209,82,160,129,35,109,196,78,217,108,136,191,196,142,14,179,88,103,212,206,45,89,73,153,16,11,200,231,156,53,161,208,47,20,238,58,126,97,123,139,17,41,41,240,198,172,164,43,120,68,184,48,37,185,125,11,191,194,52,119,105,2,52,158,227,251,88,58,185,121,240,45,180,94,42,211,232,2,7,29,78,33,77,76,210,121,131,4,210,145,45,229,117,224,243,187,230,231,247,35,49,197,206,241,212,102,49,108,25,48,145,145,28,22,173,240,197,33,125,52,91,98,235,115,235,108,5,132,55,13,159,196,244,253,62,178,29,63,117,235,30,247,248,9,23,150,218,36,156,147,201,53,203,251,246,161,55,223,0,48,210,127,154,241,132,54,157,60,86,61,158,50,66,232,126,46,39,241,216,149,112,95,57,191,205,237,132,188,109,50,89,16,195,138,250,246,250,93,139,106,8,208,230,239,222,122,127,7,99,125,32,125,141,146,22,86,247,12,33,64,104,106,252,144,114,64,61,52,244,204,156,59,49,149,75,186,76,76,192,172,164,88,83,239,143,231,92,47,236,20,44,115,244,55,118,55,146,105,106,238,86,125,138,248,182,102,172,167,35,225,125,73,14
 7,151,67,135,96,189,175,34,59,217,27,84,201,237,81,49,200,33,99,239,254,81,161,50,52,102,162,109,101,191,152,251,98,61,184,84,12,230,233,221,134,63,247,251,172,79,123,158,248,168,134,77,145,50,7,236,103,32,136,49,180,123,247,50,25,49,219,65,35,9,167,34,5,147,157,124,30,79,174,82,103,231,181,53,156,91,167,72,62,250,71,129,246,82,207,61,82,87,130,111,125,242,251,240,80,240,23,248,62,182,219,157,189,32,135,88,114,224,117,113,140,183,107,240,197,104,18,178,102,50,139,47,76,152,168,47,86,186,139,243,129,72,139,219,12,101,173,111,154,128,193,67,114,227,160,67,255,174,71,19,173,165,31,217,174,119,241,43,35,104,2,87,231,196,159,174,214,46,161,167,23,221,185,116,32,7,30,46,17,123,161,176,144,37,244,21,183,186,39,48,233,177,231,83,182,222,151,180,135,146,64,3,125,230,133,40,32,14,225,194,221,190,53,232,52,184,90,193,49,147,57,100,141,55,217,180,49,222,175,111,15,60,113,98,120,42,108,29,139,138,219,2,24,11,90,116,208,224,159,38,18,16,77,105,98,76,101,243,172,73,111,221,185,235,217,123,
 127,154,90,123,124,167,240,82,128,107,125,212,168,27,216,114,45,165,232,194,102,229,61,124,26,87,81,86,191,199,224,163,102,218,52,199,123,142,246,203,185,18,253,111,230,166,38,7,109,125,182,192,10,73,73,133,122,132,46,84,155,45,187,245,113,35,236,26,88,72,157,187,39,51,151,109,235,108,163,97,159,132,242,142,51,6,162,62,193,95,64,89,4,94,254,187,178,216,211,112,233,102,113,199,214,31,82,154,61,200,102,75,133,178,133,86,78,82,111,197,241,4,181,195,21,40,97,40,43,200,197,230,17,198,171,114,61,69,201,68,122,25,27,148,245,193,164,204,221,120,170,177,205,214,173,12,161,150,11,45,51,33,101,170,123,165,108,235,217,121,69,157,164,87,99,98,212,221,106,82,24,48,20,92,102,14,32,237,155,151,202,102,174,53,192,59,34,80,192,91,167,242,48,65,215,160,119,27,136,83,201,215,232,116,158,238,159,180,122,177,11,168,128,250,145,28,223,6,121,184,224,120,218,232,230,151,75,84,147,56,63,57,160,54,149,197,248,149,62,205,160,21,28,16,207,136,64,23,108,32,31,222,7,207,180,39,239,108,168,7,40,68,181,26,8
 9,49,175,182,250,97,177,209,31,167,40,147,77,155,103,15,100,45,102,165,221,151,54,224,128,252,222,95,177,52,39,214,8,187,209,95,188,167,89,236,238,22,30,53,139,23,24,1,11,198,226,171,98,137,222,98,199,135,28,207,118,12,82,39,45,159,217,198,221,49,191,75,108,46,185,154,121,113,96,81,231,172,163,201,48,128,182,9,115,37,21,203,26,201,219,221,90,221,102,168,15,247,175,4,48,52,2,81,139,45,6,197,232,40,223,216,159,17,216,44,89,238,97,0,117,125,132,155,237,130,130,153,17,88,162,20,43,108,156,101,4,166,192,104,36,233,31,174,150,168,119,34,245,63,190,223,163,222,60,5,74,223,134,138,164,49,213,110,104,25,248,95,37,31,132,231,98,175,190,223,65,177,36,64,94,226,240,164,7,90,104,204,168,108,179,150,103,211,4,25,15,82,210,207,110,155,197,180,88,54,187,157,196,129,254,18,214,89,190,242,101,37,104,43,95,153,115,107,101,146,249,95,184,72,136,94,106,131,182,173,223,232,216,116,47,132,159,52,12,73,152,169,113,250,19,146,138,181,148,177,255,50,53,188,24,183,158,252,136,39,136,227,24,183,222,155
 ,55,177,123,99,222,239,129,100,89,125,62,245,4,114,159,50,37,236,0,106,237,124,222,77,190,182,182,57,160,172,234,72,122,99,94,81,191,93,97,166,115,81,161,92,131,145,64,220,5,180,20,185,211,145,53,158,143,25,208,200,186,133,1,245,202,185,26,210,98,132,100,167,183,201,226,149,137,37,167,44,7,60,253,175,117,97,70,163,157,230,210,199,227,211,113,170,73,35,193,113,211,123,46,243,204,25,157,74,3,173,202,36,121,32,153,249,69,139,31,165,66,250,119,143,99,200,93,253,28,231,207,115,132,173,49,36,123,81,153,53,185,49,226,116,207,147,183,177,92,170,213,105,151,88,236,69,6,137,85,43,72,244,164,121,165,224,205,123,215,0,126,140,101,228,63,206,56,228,88,245,205,48,139,87,31,186,156,167,135,98,102,1,107,60,171,80,131,182,130,55,11,192,147,58,193,7,116,18,175,210,167,242,101,232,95,89,78,89,152,184,185,135,69,55,222,115,72,14,120,190,239,15,251,229,58,225,250,209,35,255,195,197,139,254,139,196,83,37,173,197,146,113,94,207,5,245,16,128,255,98,214,70,223,49,6,149,247,235,175,28,210,89,194,60,2
 22,175,45,27,47,80,10,108,61,117,85,130,8,157,137,151,145,231,14,50,1,151,176,211,228,135,220,203,94,162,249,173,22,61,31,9,105,18,67,47,39,52,249,50,107,137,29,2,66,75,157,17,252,177,53,236,249,21,8,55,74,126,226,80,196,132,164,218,67,168,203,202,121,23,183,142,63,222,4,227,153,171,157,174,74,158,27,161,151,160,206,153,112,209,181,194,98,178,97,255,95,107,9,165,124,232,41,32,222,58,55,227,34,90,225,127,79,190,12,235,95,23,180,29,134,182,191,156,57,147,36,134,102,249,64,221,181,225,82,131,113,119,213,187,58,161,143,225,37,34,227,165,82,186,103,233,127,159,33,236,223,149,248,195,119,232,45,183,43,51,173,252,246,18,18,226,216,149,117,205,16,120,117,87,43,0,144,28,139,185,158,234,65,40,16,226,35,3,49,234,89,121,141,17,39,151,121,25,139,86,113,172,136,35,104,208,128,25,226,179,241,119,109,104,124,150,33,64,145,75,141,32,83,183,55,193,206,248,175,218,83,23,149,227,174,235,42,240,38,193,140,238,158,97,126,250,153,134,243,28,216,163,145,250,178,163,42,171,246,57,87,66,166,87,201,19
 7,146,157,92,100,201,144,192,141,230,246,143,209,127,244,249,140,219,18,47,66,178,11,83,158,93,92,82,225,254,176,28,181,29,28,172,148,124,95,24,96,106,35,67,10,73,111,17,213,48,237,67,1,222,161,29,177,201,153,254,228,67,133,98,23,204,88,240,150,208,166,135,35,242,60,128,228,54,228,245,33,11,8,103,157,225,173,246,235,121,47,87,17,255,12,56,53,62,24,61,128,141,218,60,251,94,23,34,109,237,73,83,221,240,99,148,228,180,70,187,135,254,255,5,81,159,49,68,252,11,245,223,103,34,225,49,25,52,234,159,47,9,91,237,59,200,186,183,209,41,198,110,71,26,224,124,114,187,149,125,38,68,201,201,157,119,111,222,33,54,218,177,128,234,249,252,125,71,135,161,237,204,134,120,239,66,108,42,222,124,59,112,104,162,142,67,166,84,30,106,81,47,60,68,237,161,197,168,38,164,56,127,143,203,2,177,44,127,184,73,42,231,36,169,139,197,220,196,121,235,74,242,104,165,94,108,194,201,109,162,139,160,7,28,119,74,89,237,58,205,53,86,33,136,92,235,153,94,168,68,3,205,47,196,107,3,188,76,244,27,235,130,207,8,245,66,213,6
 9,39,172,222,155,95,135,247,255,155,144,225,9,235,121,17,198,24,207,143,36,223,32,62,233,201,110,9,213,95,105,65,158,80,140,38,203,175,178,244,154,110,24,35,90,150,53,191,22,97,242,236,118,221,199,140,106,244,237,115,140,106,17,111,124,194,33,122,107,102,47,64,152,68,53,167,183,229,107,33,210,38,85,235,165,181,114,78,228,175,9,101,56,112,225,108,8,206,189,118,107,117,75,99,31,41,24,193,146,10,237,75,224,125,137,172,23,223,38,158,80,126,234,228,47,78,108,182,43,202,76,83,225,116,44,209,0,137,83,120,182,112,116,155,10,111,149,228,126,82,228,133,104,184,133,175,70,14,127,79,84,44,55,35,107,29,13,110,221,36,246,89,47,174,165,49,83,231,159,4,107,168,71,18,134,197,232,248,69,225,208,247,170,227,112,186,1,208,234,165,153,23,19,45,80,43,103,52,8,197,213,191,217,167,245,214,180,95,121,227,56,10,102,255,120,204,187,59,120,207,25,138,26,206,253,159,162,216,186,98,96,84,28,40,214,151,71,72,13,217,177,208,41,122,68,213,33,211,103,48,187,222,198,104,144,224,133,195,36,241,173,245,146,142,
 5,77,135,54,32,223,100,46,193,124,135,71,27,56,251,143,28,164,139,54,19,245,207,62,91,175,179,167,79,105,72,44,138,188,90,107,253,80,109,19,30,67,213,5,172,64,138,25,60,184,241,228,128,8,121,172,231,210,5,253,149,68,204,62,138,161,252,21,30,77,137,32,173,134,93,71,194,221,150,174,210,167,82,49,11,37,69,53,11,95,33,122,83,45,73,245,246,6,57,134,129,243,240,224,180,42,209,241,18,212,178,2,141,173,163,60,129,136,252,47,106,199,69,170,7,201,207,70,116,157,229,31,33,166,74,89,105,64,105,96,33,119,201,215,234,152,187,56,123,91,154,76,169,140,240,7,171,207,252,250,204,114,40,229,129,122,102,99,159,183,226,80,88,175,184,198,237,19,5,183,130,243,82,32,253,91,44,162,32,192,97,5,237,215,41,78,76,199,186,40,122,176,146,86,143,71,227,103,4,241,248,219,155,113,139,76,182,91,193,41,109,162,78,150,159,72,3,52,137,178,101,234,37,103,224,69,11,164,127,244,247,132,17,105,250,81,97,79,203,11,49,182,239,42,253,21,0,246,197,54,140,163,3,76,159,82,36,247,195,65,123,151,194,125,118,177,247,139,54,2
 49,217,195,157,61,167,194,247,203,46,175,103,227,128,193,18,210,64,35,115,19,209,73,143,13,218,138,129,46,130,29,133,219,243,224,184,72,167,188,99,249,152,42,95,31,88,56,131,38,90,128,108,83,23,201,161,16,176,106,137,184,244,216,91,216,15,105,230,204,159,17,62,209,19,2,113,67,49,40,187,68,51,111,47,198,7,65,89,185,139,5,50,173,12,188,116,2,183,158,11,212,91,11,153,106,8,72,181,103,189,87,200,114,219,59,61,55,82,253,229,49,128,25,130,134,102,152,219,26,68,204,34,196,116,45,172,209,186,117,16,221,16,44,162,44,131,166,68,230,122,112,129,194,223,18,51,250,141,10,130,95,60,11,223,167,227,183,12,13,61,55,108,247,79,203,181,66,22,180,240,143,98,170,65,231,34,114,100,24,40,62,139,44,70,78,192,235,119,155,36,99,179,128,15,77,207,41,95,165,94,2,87,213,182,77,228,95,39,56,17,50,116,156,255,228,0,90,9,33,240,111,76,150,75,215,114,58,106,222,113,231,135,243,152,169,78,160,231,255,10,85,99,46,242,253,100,219,207,218,69,86,204,19,51,147,142,233,217,207,145,132,107,145,123,33,89,163,239,115
 ,250,17,227,31,149,183,19,25,141,202,94,107,13,120,235,138,234,66,165,169,48,28,134,223,147,222,62,88,25,102,106,156,129,78,18,39,105,55,195,133,135,61,20,21,37,176,173,15,45,94,29,13,1,194,224,228,133,185,111,198,242,229,119,7,186,150,217,93,210,248,125,4,191,171,8,184,244,93,129,67,4,25,203,156,211,100,187,193,245,21,198,170,56,223,167,207,240,144,214,13,80,193,148,6,122,22,109,27,1,68,197,85,2,168,135,21,35,97,107,66,54,251,218,214,62,56,148,98,58,22,230,121,109,64,42,239,184,60,181,96,89,47,62,232,115,147,90,71,129,217,138,229,4,36,73,200,41,239,93,136,67,138,151,58,68,37,27,224,26,152,30,214,185,81,149,65,141,47,216,219,173,122,72,190,56,158,25,121,240,46,188,134,5,46,209,102,193,52,99,183,72,208,254,89,29,36,142,165,32,217,64,96,153,59,107,247,76,19,204,27,89,226,203,109,23,154,99,235,139,218,101,193,202,147,186,191,6,24,69,161,55,111,17,35,99,76,104,135,172,48,82,132,203,21,71,85,191,38,124,194,241,91,138,11,210,87,1,161,248,160,9,230,79,223,36,195,3,196,80,241,130,15
 2,232,150,100,211,81,12,125,103,157,13,240,175,230,218,67,213,44,191,140,90,82,54,164,40,210,20,249,142,119,118,79,142,60,173,129,172,84,129,159,192,126,22,121,177,191,72,71,92,34,117,153,34,154,234,230,161,78,171,138,23,238,156,4,219,239,80,99,120,165,57,209,134,41,235,30,104,254,66,31,61,246,254,161,136,64,46,234,100,203,183,222,8,129,94,185,127,94,26,139,6,139,249,159,218,136,238,41,171,82,15,43,73,4,125,91,60,21,251,101,47,82,164,38,144,10,61,11,29,148,52,211,180,17,229,40,212,109,201,225,129,235,154,221,222,161,197,131,25,249,178,253,207,125,112,247,156,242,226,153,176,55,167,38,232,59,210,147,163,143,64,224,127,120,39,52,161,146,210,34,188,229,182,21,41,61,103,218,42,146,20,53,211,61,234,129,72,112,115,198,109,112,109,141,224,142,235,97,149,185,203,99,114,134,10,35,175,234,2,11,48,83,130,204,189,230,40,86,121,84,127,127,235,97,231,181,5,82,147,186,25,45,19,148,189,128,32,55,204,20,198,23,58,209,144,148,252,238,157,215,172,231,195,89,97,87,243,34,213,111,32,168,116,48,2
 21,203,32,18,65,4,172,53,175,169,70,181,80,95,138,35,255,154,113,200,53,74,216,131,32,33,62,201,252,254,119,108,103,29,54,159,41,37,0,127,159,15,26,207,129,186,204,167,37,32,197,227,61,80,210,7,40,35,210,92,12,184,206,166,56,250,116,210,121,10,52,21,43,155,17,119,235,85,179,48,34,208,58,20,166,141,111,48,101,75,238,34,148,10,79,90,60,179,191,36,151,220,150,44,74,144,226,172,204,40,16,193,156,74,222,212,42,177,121,6,77,1,216,12,226,36,130,45,55,37,115,82,136,124,135,135,146,194,69,150,173,211,16,14,156,138,211,149,189,38,170,213,239,214,176,81,135,222,56,6,255,67,175,22,137,34,169,55,104,29,212,201,85,219,41,52,230,75,152,217,32,71,166,150,143,179,199,196,52,39,137,154,104,122,39,32,160,5,85,133,57,197,65,171,170,83,180,165,156,181,40,178,182,186,44,229,255,177,146,212,124,181,34,27,65,152,110,86,227,86,233,71,94,177,183,60,77,142,85,136,221,181,4,93,179,250,245,196,47,227,135,176,132,188,87,130,204,249,137,129,57,170,175,50,71,185,37,80,248,181,155,213,169,191,119,151,22,38,
 93,125,112,98,51,11,165,234,192,222,242,123,83,81,145,247,41,51,63,52,56,169,171,215,230,156,4,203,131,75,68,84,163,122,71,158,41,15,224,239,117,181,91,131,121,96,211,248,191,166,245,163,139,7,247,69,87,83,211,144,153,46,200,31,206,43,84,83,65,52,97,21,15,31,111,133,157,157,47,82,23,1,136,234,229,162,41,195,11,230,123,82,248,86,204,227,105,220,191,85,1,201,247,178,216,156,31,124,28,9,199,106,150,73,83,140,85,171,199,74,19,187,180,208,96,171,163,179,202,92,127,229,17,18,105,112,219,24,42,170,93,94,74,167,78,182,0,94,228,124,62,75,35,71,6,26,227,217,219,51,85,240,72,161,7,217,214,24,3,8,48,76,38,229,90,230,141,230,161,83,103,231,11,251,105,143,150,57,59,26,242,152,190,202,38,138,231,232,17,98,37,227,251,13,18,234,238,136,122,248,153,41,252,23,47,184,252,60,183,195,124,100,38,252,154,195,112,215,145,112,163,8,199,245,208,97,101,131,209,60,105,238,232,62,89,102,182,29,140,152,182,253,110,28,255,2,72,213,161,249,79,98,148,121,222,143,251,108,114,166,86,63,216,4,111,17,240,72,155,
 188,217,166,62,95,173,93,140,172,123,98,12,103,197,249,159,255,226,71,9,162,228,64,135,19,34,87,239,4,180,104,34,164,236,143,189,53,65,76,249,80,179,20,88,171,26,47,107,243,181,55,254,170,137,213,1,236,191,11,163,141,218,126,186,9,206,85,224,8,119,26,196,100,252,243,160,166,7,123,163,187,208,74,64,194,14,90,8,50,39,27,84,248,131,127,61,54,128,191,150,177,122,204,193,163,85,195,19,54,2,19,174,220,80,171,17,147,182,49,118,113,193,101,6,211,135,255,66,102,0,28,176,80,255,103,248,111,27,56,73,77,92,31,206,184,248,59,245,66,86,25,22,38,125,119,240,145,176,11,211,145,226,37,167,6,24,76,231,126,105,109,254,54,134,89,83,10,161,17,83,88,127,101,37,237,28,244,170,4,58,85,60,103,222,131,198,219,61,127,168,41,154,58,8,90,127,210,55,102,9,43,67,191,121,149,114,49,160,19,242,98,15,21,99,179,178,8,206,19,187,62,45,153,64,26,147,18,239,4,36,81,62,40,214,168,16,54,173,235,143,58,41,146,146,1,25,150,187,121,156,83,74,76,145,88,69,114,38,128,182,36,70,189,56,252,89,121,13,134,248,63,137,160,50
 ,137,125,113,123,17,21,0,191,65,15,95,126,138,176,202,106,7,49,26,124,153,132,4,52,240,68,34,154,191,143,187,141,232,143,46,48,168,160,152,102,239,175,89,241,128,247,87,152,103,170,151,60,91,1,68,59,79,99,131,51,19,224,121,16,0,75,61,221,44,11,37,187,114,62,208,163,145,190,210,180,40,251,77,218,32,98,50,100,55,170,217,46,173,211,250,32,54,100,236,98,225,166,42,116,188,201,152,86,133,158,248,144,14,153,119,136,152,199,103,135,183,193,233,233,252,30,165,83,209,164,47,140,170,145,244,60,229,145,43,104,206,56,90,245,65,121,186,44,4,239,121,75,37,123,54,79,151,237,20,254,50,46,128,58,86,150,115,208,39,11,157,204,255,119,83,106,218,171,167,198,19,231,39,19,34,126,143,248,111,216,50,90,237,87,27,240,220,225,249,30,201,6,250,28,64,115,32,188,108,59,110,108,173,194,50,67,172,221,161,0,196,243,239,202,57,215,238,28,46,53,143,109,107,193,142,254,122,2,129,64,169,206,66,255,167,228,38,222,196,155,72,12,245,172,219,191,144,68,98,181,212,214,27,80,104,104,202,76,91,99,128,130,241,94,92,87
 ,53,49,204,22,173,244,171,60,134,64,19,246,50,132,149,67,189,169,251,42,241,230,185,203,210,145,44,30,119,102,198,92,195,5,56,74,124,141,219,65,104,248,249,185,206,39,232,163,135,48,155,225,115,55,108,6,109,230,68,72,44,159,59,22,90,231,9,148,120,170,141,124,148,141,164,36,212,199,53,200,159,89,0,86,144,6,105,149,54,159,224,163,11,185,81,44,106,176,81,49,88,8,47,236,19,128,11,208,48,173,202,28,131,144,131,203,42,79,183,169,154,173,193,197,198,199,238,190,103,133,175,238,109,151,177,23,60,146,206,29,106,171,193,124,245,234,84,44,114,79,110,87,110,53,252,101,247,67,11,9,57,173,4,238,18,177,217,68,245,217,162,118,235,120,205,199,114,13,88,253,27,190,20,176,112,38,192,233,72,139,176,6,74,15,100,170,18,123,159,113,214,196,36,51,191,169,142,244,60,210,124,69,48,146,30,124,25,223,199,33,70,253,210,86,172,64,35,228,119,32,78,122,79,232,63,121,155,195,242,202,26,127,179,69,36,18,202,69,187,69,86,187,21,13,169,203,120,244,95,205,239,185,158,1,233,101,28,32,240,26,252,184,126,152,110,5
 3,15,0,255,130,104,111,24,181,131,60,57,225,226,47,251,62,45,131,97,69,156,93,93,213,209,1,101,101,108,8,87,104,91,67,53,93,233,80,159,40,128,140,33,26,135,210,236,32,176,21,218,107,72,177,48,74,20,26,182,25,20,102,178,147,206,193,152,102,62,186,46,65,140,205,243,88,155,148,24,10,156,229,13,50,124,251,105,46,186,93,3,80,117,184,57,236,105,218,153,129,188,212,246,212,112,239,74,166,171,53,87,128,195,33,186,94,77,7,119,213,169,84,195,41,9,219,72,212,110,229,73,116,169,159,66,17,184,91,55,54,225,183,115,138,221,92,187,108,63,33,47,127,48,181,153,35,98,56,7,186,174,184,227,224,133,130,53,185,51,53,79,13,83,73,193,238,85,150,165,97,123,1,216,74,174,67,193,102,123,180,1,222,130,254,97,31,90,63,94,81,30,1,21,81,172,225,61,124,47,26,105,186,29,247,35,217,40,37,212,160,192,65,40,62,190,174,28,37,205,126,129,26,150,218,198,40,55,137,229,135,41,209,163,13,251,126,225,32,69,130,134,172,165,25,93,44,202,34,196,55,234,120,132,140,235,159,202,167,131,100,6,199,59,99,180,168,50,207,6,70,95,
 195,190,184,153,101,104,88,252,176,107,36,119,156,194,113,232,126,15,15,61,187,51,36,150,67,211,183,215,172,134,154,203,38,151,48,245,242,91,18,82,148,193,54,249,176,238,179,170,251,171,51,35,152,177,90,65,48,244,207,247,68,125,99,119,195,112,157,42,131,195,34,134,104,90,21,151,248,211,94,248,40,118,92,248,39,242,245,5,81,120,120,89,142,107,160,117,57,178,191,160,64,30,198,210,106,163,41,123,61,124,161,162,57,87,209,248,209,67,23,233,221,186,80,64,3,6,136,39,137,151,129,130,170,95,8,163,28,167,161,243,148,108,80,147,204,67,90,119,235,127,96,77,45,86,44,251,99,144,199,46,229,61,159,195,215,78,6,204,128,11,153,224,185,173,214,112,188,166,99,134,161,93,56,161,171,222,10,23,213,104,141,231,198,15,9,239,148,0,60,50,1,112,7,43,162,70,171,37,234,146,125,151,157,135,147,39,183,51,242,207,138,80,139,1,27,142,104,130,125,6,233,43,93,142,96,32,248,81,36,99,118,120,207,69,19,251,149,238,6,90,57,19,25,135,182,159,89,122,119,254,131,36,210,159,22,96,128,17,134,55,49,154,15,227,235,205,101
 ,184,214,33,124,65,177,173,213,191,226,49,152,49,114,120,16,118,72,140,103,47,174,224,176,228,74,103,28,126,115,224,100,217,66,179,224,88,149,234,95,116,12,251,238,235,241,234,81,222,177,208,179,214,115,243,143,23,162,204,188,152,216,147,216,139,100,89,162,199,14,101,130,62,212,146,118,189,210,230,37,240,152,119,112,181,74,180,249,41,179,122,115,37,37,205,20,187,126,136,248,173,39,232,9,188,229,41,109,157,215,4,44,36,198,250,181,98,241,182,78,16,48,166,83,255,59,68,67,166,161,246,136,116,29,208,224,20,12,169,250,112,2,238,211,246,6,207,246,222,113,81,43,103,6,225,76,252,118,40,179,230,200,74,239,211,92,242,103,131,128,82,218,69,14,192,155,209,51,235,148,168,104,101,103,243,251,33,31,246,65,128,127,253,121,12,20,234,239,234,1,79,31,241,125,200,86,79,92,11,87,199,94,124,105,167,52,143,142,16,54,66,245,202,141,224,57,6,94,69,103,30,221,173,218,253,163,21,252,92,43,40,145,30,72,31,197,88,18,5,153,198,152,184,33,34,52,233,249,67,84,132,30,228,88,202,102,107,199,186,128,141,225,10
 1,67,228,12,31,213,70,95,35,249,67,116,33,234,121,31,109,108,95,112,153,143,175,165,223,186,2,231,202,49,44,58,33,187,60,4,108,134,206,63,51,61,253,243,83,140,112,171,79,52,91,178,36,112,195,242,217,249,249,133,57,22,7,151,131,53,10,134,130,34,98,117,30,20,98,231,101,97,21,60,44,89,241,242,72,113,91,150,15,64,190,187,62,250,62,152,21,94,221,168,79,187,153,121,135,198,84,135,190,136,215,62,163,89,66,218,228,165,235,92,76,15,111,0,13,224,211,222,249,30,168,205,152,91,205,61,240,43,238,16,243,197,148,152,134,48,87,248,85,127,70,62,72,135,24,208,70,96,158,19,29,229,199,155,214,192,71,83,17,28,115,255,67,67,231,154,238,220,153,47,103,200,109,23,187,161,234,198,126,85,48,1,167,69,224,187,30,46,203,62,108,53,115,30,199,216,252,163,0,114,158,54,60,15,208,81,36,227,28,254,16,190,32,145,166,214,186,170,106,244,225,53,56,41,33,145,125,26,37,254,61,125,243,140,24,218,192,248,227,127,138,118,200,33,114,171,144,187,231,211,154,254,74,253,254,0,96,101,175,85,213,200,253,188,123,232,183,170
 ,38,169,216,3,21,5,162,111,144,188,77,77,128,158,112,221,118,20,43,203,193,180,18,32,184,128,163,149,115,153,183,157,86,171,134,74,192,110,114,248,186,226,250,214,60,70,187,0,178,208,74,5,162,209,13,143,178,13,110,244,194,126,40,108,139,83,196,65,65,87,62,168,155,212,58,148,255,97,44,183,121,153,196,167,161,38,3,172,97,102,39,23,0,93,50,58,42,207,91,159,83,68,221,199,113,180,189,2,207,138,169,31,129,83,104,59,196,175,135,226,90,138,165,159,2,71,243,203,50,184,211,41,146,9,28,73,254,171,86,13,40,183,57,126,96,62,189,89,134,184,230,137,139,90,196,188,117,113,33,77,243,45,157,130,99,37,243,3,90,117,250,96,111,153,107,75,203,45,158,155,176,185,180,125,158,142,169,42,214,250,13,172,3,137,163,255,191,198,24,24,29,175,101,223,41,81,122,116,25,51,26,232,129,33,215,104,90,205,203,16,8,209,174,14,22,134,73,134,141,86,174,163,178,116,206,194,236,40,240,96,106,208,169,53,118,9,52,244,106,27,31,178,120,179,27,78,120,71,135,226,246,87,245,119,72,243,77,167,50,15,18,39,245,17,74,232,242,17
 1,0,159,68,149,202,170,139,121,121,20,127,124,140,141,185,143,138,59,128,167,251,58,62,230,7,206,69,58,234,124,135,146,125,104,6,85,10,95,216,196,127,250,146,156,163,69,13,209,49,217,33,197,140,182,54,6,107,170,25,173,185,12,45,16,188,174,210,251,85,42,74,121,169,31,194,174,63,85,148,84,49,42,54,113,80,215,144,68,183,183,73,220,32,235,44,181,228,29,153,162,208,77,141,120,173,33,125,237,96,171,54,130,109,248,7,23,52,92,246,68,151,112,221,13,129,136,17,27,191,127,233,161,60,247,253,182,150,221,171,75,132,73,166,79,185,121,25,242,100,119,111,64,235,53,104,122,77,54,126,22,139,50,32,85,133,189,226,125,249,118,105,197,206,241,153,175,50,9,41,95,144,171,157,137,113,60,91,8,38,46,191,29,221,12,255,9,95,78,105,222,243,229,179,122,176,159,61,223,12,62,164,163,149,242,64,114,126,45,159,110,155,238,210,216,12,84,2,115,172,247,183,203,20,110,130,249,22,220,45,74,192,248,55,174,92,5,167,70,161,159,74,224,46,247,38,124,81,252,151,38,211,48,246,219,118,170,249,32,7,212,218,9,56,121,184,149
 ,130,59,102,138,14,228,245,2,17,54,211,229,132,149,94,123,97,49,67,89,236,235,104,9,44,145,112,227,206,252,157,242,195,64,161,56,126,40,35,80,25,197,91,99,111,150,109,208,196,34,87,51,84,10,60,129,106,150,218,30,239,82,39,72,73,29,108,70,34,175,203,172,113,142,143,178,132,178,205,30,110,78,222,72,81,219,158,49,218,129,156,205,55,145,79,222,141,118,113,128,11,7,30,48,75,0,242,173,71,144,51,50,47,86,170,133,190,230,203,25,185,4,128,213,214,67,10,244,228,188,127,252,193,254,244,132,101,47,220,3,190,125,114,221,101,234,43,181,118,56,160,135,231,71,190,203,80,131,15,112,183,2,76,36,98,56,187,90,178,3,167,87,213,104,252,194,36,15,121,244,77,249,252,165,235,32,63,151,116,61,6,176,113,249,48,212,45,69,13,16,132,53,251,113,94,227,17,210,128,81,130,174,255,141,181,116,37,224,18,127,2,181,46,32,237,236,173,195,22,99,214,170,55,2,177,34,59,62,159,150,26,141,35,254,197,106,112,139,181,133,21,31,20,83,214,208,188,222,52,76,217,37,193,49,88,244,23,9,67,4,238,96,67,70,54,20,171,56,46,15,212
 ,7,232,202,177,35,0,147,18,34,110,193,189,233,86,10,31,63,187,193,228,242,35,227,243,56,4,212,40,203,54,177,79,63,189,124,117,205,96,209,205,225,129,122,61,80,10,113,244,8,165,206,103,90,249,22,121,13,208,145,161,25,50,127,118,200,130,59,117,24,219,101,110,62,142,25,14,154,23,25,175,249,82,222,156,252,172,100,117,23,2,138,229,64,19,172,193,18,17,141,233,239,130,178,155,229,62,11,110,93,82,87,99,198,65,226,44,79,34,65,127,16,252,56,243,204,12,57,20,137,178,209,125,88,205,20,135,207,74,44,29,73,184,42,15,143,103,106,14,164,226,100,201,174,147,56,192,67,55,72,95,0,246,44,160,160,105,217,69,72,139,223,52,139,149,195,84,19,104,16,219,182,77,75,120,252,240,238,238,235,124,185,252,90,31,136,134,184,68,227,142,143,183,147,7,82,13,219,110,70,94,0,169,111,208,204,250,0,90,61,250,66,209,125,230,250,26,7,207,43,186,222,134,1,191,155,101,11,247,121,160,122,102,89,208,169,193,192,36,72,105,78,234,255,216,173,33,68,217,253,98,233,2,65,111,229,4,90,168,156,179,94,31,213,26,253,218,209,44,15
 ,74,184,110,53,21,240,249,158,137,148,82,205,180,228,13,135,15,200,215,226,175,199,165,112,108,73,145,209,180,248,254,169,37,160,25,77,101,249,16,77,234,88,192,20,173,102,133,187,225,24,254,180,187,77,103,183,184,41,254,135,221,158,88,159,89,251,51,33,20,30,9,241,198,121,191,103,95,9,76,211,158,150,158,210,184,149,121,167,142,22,61,10,3,240,116,158,105,214,253,123,46,25,61,78,82,126,90,232,31,225,130,14,90,106,110,162,167,100,65,150,88,217,77,238,198,170,199,143,69,134,82,199,240,206,155,34,119,117,92,94,150,47,19,22,23,181,205,222,107,100,221,189,7,124,144,51,58,46,194,231,86,183,132,53,20,20,27,154,220,53,140,135,147,42,73,114,210,142,158,2,58,165,183,248,69,88,165,133,113,2,178,55,39,77,222,33,18,204,93,140,178,106,9,194,210,111,132,69,149,187,185,213,219,55,240,189,163,127,91,166,55,91,74,169,73,126,133,111,119,80,177,198,60,255,239,91,131,55,93,20,68,212,230,24,193,32,69,54,26,138,63,197,221,211,37,157,194,174,244,51,117,131,133,98,32,55,160,22,161,254,198,196,48,23,52,
 213,121,177,135,74,126,31,89,153,159,149,43,211,102,81,122,68,46,3,178,182,240,93,96,240,140,154,155,238,12,52,195,164,142,38,162,71,62,33,124,252,113,174,43,177,38,26,123,4,20,1,207,178,40,16,41,186,157,253,170,239,14,217,219,24,207,93,106,203,55,249,232,240,105,145,19,107,131,42,83,61,31,231,166,25,63,20,149,85,68,60,209,139,69,218,192,96,225,71,224,201,101,38,217,57,185,8,183,235,126,213,68,44,193,204,219,60,139,151,113,182,1,72,179,245,64,76,71,30,154,73,109,192,210,26,137,222,13,168,42,166,205,59,78,254,188,205,10,37,46,142,68,47,0,200,238,15,38,18,120,214,117,69,218,130,8,129,196,110,157,79,93,15,133,76,177,239,208,182,167,0,106,103,12,132,239,238,113,86,161,244,63,180,108,103,127,229,87,56,103,115,99,202,193,191,39,153,75,207,155,217,138,168,53,238,235,237,4,29,94,223,63,19,47,239,90,20,102,255,75,97,72,205,17,154,124,232,114,145,103,13,134,40,176,85,118,243,184,252,162,144,193,156,187,84,4,161,3,38,241,188,23,187,114,142,30,51,34,172,220,173,53,23,227,150,208,96,12,1
 95,196,196,64,9,248,168,144,155,201,178,92,143,95,143,232,41,58,230,107,244,53,87,4,246,111,127,194,39,233,248,109,25,132,56,235,46,123,206,187,141,9,12,143,110,26,73,212,202,49,182,119,148,178,135,18,155,186,122,247,97,177,173,171,188,30,201,54,91,104,57,6,95,194,29,45,201,87,148,134,148,53,39,213,72,239,207,153,158,129,122,46,212,14,55,64,20,106,210,149,24,202,194,211,55,36,240,125,175,193,246,149,84,220,237,230,99,248,248,94,68,159,191,171,221,100,35,53,199,131,164,41,85,252,87,77,34,143,46,236,30,241,145,226,5,145,105,122,167,144,174,228,210,31,221,31,224,204,158,101,50,137,135,255,141,93,185,86,6,6,198,222,13,193,138,60,146,142,228,46,177,177,153,127,181,71,191,248,99,20,114,239,176,242,229,226,38,58,123,208,251,57,79,131,204,114,201,17,167,149,131,134,11,27,17,210,25,168,124,210,89,59,33,210,127,113,122,251,220,108,92,210,49,83,223,49,80,71,149,119,174,19,207,165,164,37,3,69,48,176,186,149,149,73,29,55,234,162,7,22,238,53,120,233,170,5,17,55,136,206,210,99,148,95,98,11
 1,111,81,181,64,132,139,188,167,111,172,216,155,218,144,189,170,92,64,88,139,90,124,134,104,160,156,170,170,139,103,122,128,136,240,182,91,201,198,162,187,224,33,209,204,30,18,244,30,75,189,90,116,106,6,147,175,155,125,129,182,81,31,161,243,248,48,192,21,42,7,251,148,242,60,128,150,243,254,16,62,64,86,234,6,194,175,165,230,60,152,161,202,160,216,110,222,164,33,0,221,229,235,81,107,12,74,146,206,115,104,201,60,134,227,255,213,35,177,134,41,239,52,34,221,232,124,171,70,61,11,220,186,203,228,190,70,131,218,247,234,30,0,28,35,182,222,49,202,142,190,42,28,204,39,162,218,176,48,183,113,32,197,138,56,124,147,237,56,191,55,230,126,83,51,113,71,202,252,77,145,240,191,245,152,221,163,229,126,14,85,35,213,212,121,102,222,8,112,75,237,166,237,37,106,232,117,136,194,157,31,115,78,195,133,158,178,6,38,99,137,58,224,82,171,230,134,102,234,227,12,90,234,234,83,43,142,223,118,68,21,41,67,194,114,101,26,76,196,125,191,126,198,82,219,181,28,239,100,209,228,88,229,174,127,27,147,208,150,97,43,7
 4,228,51,59,121,100,74,218,76,248,173,179,193,193,50,165,9,101,234,184,47,129,223,161,103,67,159,203,181,161,64,210,131,24,76,109,80,37,109,25,200,80,95,171,161,135,208,50,64,234,43,234,137,20,60,45,220,228,38,152,31,197,52,198,208,164,15,24,66,57,134,241,115,219,180,205,179,81,227,192,70,121,48,116,62,218,222,4,106,214,190,241,172,119,140,133,229,227,140,225,146,125,8,29,2,142,62,68,50,49,14,34,11,165,7,81,242,201,72,83,100,146,32,218,140,122,102,168,53,52,219,50,165,211,255,122,188,10,109,174,99,103,154,203,226,142,219,55,179,190,6,50,87,41,218,190,191,135,38,237,50,105,248,100,150,221,4,189,32,36,14,182,174,94,83,51,81,128,150,205,110,159,204,102,6,162,103,233,201,24,161,233,50,81,139,144,66,144,118,231,92,223,228,200,53,186,193,252,75,54,146,102,254,117,41,162,172,88,68,3,109,224,134,234,192,50,167,174,209,149,240,56,70,28,95,53,126,70,201,94,246,104,225,157,222,171,68,230,252,184,160,28,133,160,204,213,36,107,183,110,51,33,170,161,251,246,211,212,174,194,253,136,201,67,
 51,180,86,155,22,29,149,152,189,157,118,181,28,220,67,236,71,74,136,100,146,193,68,31,178,8,142,4,186,30,67,186,132,9,248,195,126,138,56,74,206,247,238,172,49,90,248,150,203,164,120,69,102,76,196,121,38,162,135,160,240,247,219,186,147,233,139,181,72,255,58,62,50,181,225,35,206,57,102,74,140,13,92,200,25,252,70,210,230,40,41,13,127,202,38,74,193,109,226,182,1,236,167,198,65,239,244,186,162,148,90,101,144,185,36,23,31,52,15,90,134,46,67,142,254,93,21,56,220,153,210,183,81,25,233,3,55,148,157,164,203,254,213,112,171,185,161,95,61,54,213,96,186,192,180,50,137,51,74,139,131,161,206,96,169,229,145,146,216,123,99,152,22,208,150,91,113,44,53,121,245,1,222,80,131,1,158,169,37,5,114,105,230,207,128,171,217,108,154,33,56,109,168,154,94,253,33,52,52,91,78,88,28,104,68,229,198,164,149,192,69,92,12,111,188,22,231,76,228,118,64,99,112,205,24,229,61,189,244,153,251,150,14,51,156,102,59,66,177,75,10,213,35,143,124,226,206,36,179,28,237,21,211,232,201,167,108,231,144,211,183,148,239,94,191,16
 2,139,15,142,209,71,3,51,39,29,60,18,107,185,28,0,127,125,142,141,68,118,126,25,52,240,175,177,58,136,39,81,210,253,10,83,227,115,59,78,36,159,185,28,103,117,201,211,46,4,163,62,84,61,95,167,206,142,142,244,81,196,202,170,127,39,36,39,80,133,10,56,59,152,220,20,130,222,129,192,100,105,80,170,251,243,136,92,182,47,247,228,252,119,161,20,30,87,253,207,94,31,186,20,182,134,1,101,134,53,128,165,56,144,53,73,29,27,53,30,247,108,9,177,107,116,18,202,21,233,203,129,144,185,151,189,57,164,255,184,129,105,21,141,30,108,159,92,171,196,55,191,88,157,143,148,240,19,47,223,222,17,53,114,51,163,160,38,251,152,133,173,110,126,132,142,249,18,166,93,231,140,193,40,125,110,165,225,17,119,59,202,47,128,111,187,245,91,78,243,122,17,250,248,121,121,222,19,55,130,66,28,20,217,171,82,5,177,178,134,242,57,34,192,4,50,233,103,14,101,173,207,59,64,141,91,65,187,171,90,91,109,188,196,218,141,149,146,237,83,51,5,3,7,236,146,184,56,131,183,213,127,87,107,126,48,7,229,145,153,122,116,50,74,44,87,158,203,
 146,11,221,117,239,160,138,207,213,7,17,137,0,169,54,158,54,74,153,49,155,135,233,185,18,220,220,230,116,65,160,244,82,199,142,195,120,80,232,26,33,125,62,23,74,215,4,177,62,141,130,127,152,188,36,8,59,61,81,91,233,229,250,252,76,249,169,96,87,191,23,228,9,12,89,133,1,102,251,179,228,252,44,211,139,66,29,38,179,189,178,112,154,35,63,122,1,228,19,13,70,73,61,136,79,218,37,102,251,232,249,47,85,94,130,120,24,205,173,228,18,189,215,108,194,118,252,112,105,168,63,249,202,184,231,179,8,102,195,188,16,127,228,153,33,203,245,37,106,43,29,110,167,83,219,42,13,185,27,159,162,136,156,15,128,203,36,240,20,193,85,240,188,178,167,145,141,199,161,123,138,86,12,67,194,142,152,177,204,192,120,51,60,219,225,18,75,55,82,83,129,205,222,88,167,64,42,6,73,142,226,66,221,220,54,79,129,98,87,240,252,229,223,203,35,245,24,11,19,18,50,85,70,37,194,176,201,237,114,79,229,149,94,174,178,153,200,160,41,248,89,199,106,2,16,101,32,198,155,139,185,185,84,22,20,16,159,163,215,70,231,18,4,11,182,137,144,249
 ,209,157,18,100,209,34,113,107,2,62,162,28,214,118,42,179,43,83,225,37,175,92,223,129,131,161,99,187,159,5,211,68,223,6,168,73,120,84,144,123,38,79,168,55,162,250,27,67,255,138,238,184,65,6,82,83,5,216,169,117,161,168,169,245,192,41,30,13,233,141,126,106,60,188,55,127,159,245,153,2,200,206,183,97,133,170,142,222,51,199,229,140,251,133,86,123,27,9,195,62,82,197,169,63,190,197,193,112,66,208,222,104,205,77,11,199,46,62,61,190,221,113,175,112,215,126,117,192,215,154,67,233,129,3,117,67,198,15,169,180,148,74,246,218,185,58,43,22,132,170,37,147,55,83,35,148,42,222,8,214,120,139,229,253,152,125,235,151,164,96,202,152,30,36,197,88,137,175,203,107,97,38,226,97,173,204,237,38,56,55,49,253,245,86,210,92,159,180,239,144,255,62,117,153,29,163,43,57,207,26,81,119,44,112,179,233,94,73,19,37,73,203,235,5,203,201,255,131,104,146,169,32,204,186,187,246,18,199,197,200,122,248,68,92,73,105,82,18,31,136,14,111,128,74,229,19,111,172,47,182,153,12,46,79,191,87,216,21,6,243,253,23,199,160,43,197,1
 13,192,203,5,222,252,251,214,202,33,37,247,4,93,160,68,130,58,140,156,171,15,168,106,107,18,59,255,210,110,20,211,231,84,149,157,17,164,216,31,206,248,115,21,36,74,100,45,91,245,114,132,142,50,148,98,47,23,93,49,73,185,161,190,78,107,159,128,30,156,213,197,13,114,197,173,191,193,36,161,236,216,143,153,125,158,132,13,226,84,133,112,138,175,37,206,200,45,148,156,198,149,138,220,118,7,76,208,105,96,204,85,135,74,253,10,77,25,63,219,70,160,135,35,151,141,29,132,216,148,93,171,169,223,50,211,108,43,18,180,121,22,39,165,199,211,38,72,12,35,138,209,251,240,51,235,164,22,175,207,148,103,131,90,120,240,195,37,19,192,130,224,225,221,1,237,116,232,107,88,5,102,53,50,162,240,80,124,46,208,50,119,14,15,90,189,3,28,215,67,116,255,236,21,230,93,142,38,84,178,217,170,95,110,184,173,154,125,111,209,65,111,51,2,84,95,140,72,66,190,17,33,249,136,173,108,128,201,184,145,127,232,186,94,244,1,176,221,71,252,97,62,214,231,205,181,124,149,190,235,5,118,168,85,13,114,140,212,93,21,20,243,92,131,108,
 147,38,250,153,42,99,84,163,74,112,85,224,61,35,25,250,41,184,72,250,156,253,143,162,72,105,51,145,152,37,203,174,118,212,240,118,211,32,134,201,49,241,66,99,209,176,33,244,178,186,174,23,230,212,101,75,226,255,68,202,251,61,65,88,64,199,170,90,102,37,67,47,182,253,128,128,52,149,232,244,255,158,177,169,0,1,253,249,219,149,253,191,9,137,217,18,96,171,27,0,78,134,127,28,84,218,234,122,36,49,58,248,17,178,197,147,67,143,151,32,138,74,89,8,94,219,148,175,95,141,185,48,177,211,139,251,48,209,212,146,183,244,121,1,129,182,198,241,53,145,68,94,72,57,64,127,76,13,180,189,63,222,18,142,119,243,66,180,242,213,46,218,75,152,119,9,80,101,199,168,43,151,160,149,232,175,129,80,124,142,23,70,160,101,81,4,166,221,187,243,25,56,14,168,171,235,246,202,249,139,161,249,189,145,125,38,195,34,60,136,186,74,176,198,253,219,60,22,239,219,53,241,65,10,110,26,151,90,19,107,61,27,173,86,122,49,208,83,135,187,68,213,14,15,119,219,196,13,127,143,198,44,10,174,236,126,68,86,168,161,168,21,202,120,153,23
 2,209,42,201,109,28,115,140,144,9,241,23,172,114,249,248,187,210,79,0,176,178,126,195,90,9,76,51,19,81,183,229,124,229,255,127,87,46,236,229,141,119,134,173,54,43,235,36,60,48,179,189,115,7,93,250,247,4,142,130,221,141,170,45,90,228,210,130,122,143,79,151,175,100,198,207,246,166,200,97,204,148,190,243,126,241,4,118,223,81,75,124,134,213,28,168,18,53,93,87,58,48,239,107,183,183,207,204,212,161,11,182,59,89,24,169,95,251,90,203,29,44,216,229,180,220,26,208,227,55,241,244,230,68,71,206,75,13,179,78,107,142,240,46,120,251,30,177,69,82,193,226,31,230,36,92,162,107,166,103,32,23,115,222,242,118,42,12,16,9,1,126,186,69,78,44,77,4,222,24,137,217,122,177,126,15,18,130,181,101,23,81,135,92,130,112,58,178,27,117,174,199,251,207,240,181,20,9,120,133,189,209,225,29,119,251,0,26,27,30,25,146,13,85,64,61,117,210,73,183,195,82,244,113,220,72,121,216,21,121,38,1,237,0,100,112,25,223,203,213,63,80,176,85,141,51,39,28,126,71,179,178,87,207,74,239,210,132,110,57,166,178,201,128,1,161,55,33,107,
 146,24,196,125,1,226,208,150,252,197,107,0,150,173,116,244,182,157,230,150,48,227,9,24,99,207,10,3,63,229,26,43,160,18,208,16,84,254,106,202,112,129,119,195,45,99,33,189,9,111,30,22,106,212,184,176,241,149,146,54,62,63,55,214,198,23,231,73,77,83,33,30,115,237,21,20,168,44,3,184,183,229,111,28,192,215,117,227,22,88,240,215,148,204,232,103,71,146,92,44,238,126,45,6,236,153,71,74,243,195,185,17,4,58,243,168,109,99,223,141,152,187,214,159,222,125,142,246,146,59,29,203,73,243,50,207,165,250,42,136,149,3,90,115,140,102,67,102,194,172,19,238,181,232,129,115,137,130,126,162,47,76,121,146,108,190,74,200,202,196,194,86,231,175,114,120,197,50,230,168,63,248,227,118,83,41,179,135,199,74,213,89,196,122,155,192,10,136,67,114,219,40,192,11,188,168,227,32,35,52,96,56,123,184,9,58,194,56,116,236,132,20,14,99,99,199,15,46,128,6,109,103,157,38,225,222,244,3,221,188,240,162,2,16,249,42,181,229,23,125,30,55,185,28,29,241,243,88,96,162,36,216,38,35,134,150,171,5,21,101,172,173,29,157,136,22,13,24
 8,101,250,86,75,215,223,101,57,193,79,226,131,91,47,67,203,42,209,44,119,129,245,51,160,196,139,14,146,138,29,197,182,188,145,87,211,183,241,41,241,9,146,21,188,97,173,237,81,136,39,104,78,131,48,150,50,177,233,67,150,6,238,119,67,143,73,60,145,49,245,130,106,161,217,64,114,67,8,42,16,44,246,165,4,241,221,177,112,211,250,188,23,239,143,247,226,76,183,20,51,179,20,24,224,179,139,154,128,73,238,14,38,165,222,130,99,109,85,244,200,65,111,147,28,11,187,143,216,68,248,223,16,188,227,199,160,9,21,15,246,29,229,90,132,95,177,199,172,48,165,144,46,178,233,171,95,28,68,15,127,240,145,221,181,183,200,146,247,78,61,233,113,6,226,158,154,26,105,15,235,212,181,176,139,251,189,104,32,180,192,82,253,127,57,87,76,205,59,19,57,147,39,43,194,44,138,247,56,165,23,43,159,244,121,179,209,55,156,234,11,235,143,153,250,80,110,216,164,232,63,62,6,173,65,188,214,158,68,236,218,155,233,71,178,7,134,216,48,33,64,65,79,12,93,95,20,250,108,236,251,220,38,193,95,49,87,103,206,122,58,133,64,232,111,217,50
 ,75,54,8,55,141,197,77,216,31,244,72,200,118,94,23,202,210,176,183,248,239,159,49,86,92,20,148,241,247,128,33,147,233,196,125,105,80,24,182,99,254,78,57,161,137,158,56,37,76,183,118,69,91,96,23,121,219,176,235,149,63,218,85,50,77,224,163,99,24,111,173,182,138,172,7,165,20,215,221,203,209,4,105,13,45,221,93,81,102,123,81,162,220,25,101,33,83,48,179,193,53,122,86,147,108,187,25,249,40,34,183,60,43,122,54,78,154,168,113,146,176,147,139,246,250,251,158,64,119,31,67,61,224,205,84,176,58,232,23,109,9,103,31,160,127,187,90,199,87,83,255,77,129,104,112,223,145,51,47,186,39,117,92,87,189,250,137,234,202,250,81,254,225,22,234,99,245,149,68,82,104,32,137,40,126,7,89,19,184,114,248,54,4,159,5,44,89,183,206,75,72,151,154,254,53,18,197,242,59,14,219,168,62,254,131,73,108,194,81,191,163,213,38,137,101,191,186,81,183,19,99,23,219,158,50,225,116,158,39,148,179,16,213,128,77,164,118,29,198,129,170,94,41,211,131,49,84,3,50,33,29,38,119,80,231,140,251,88,48,194,166,234,182,143,60,170,230,63,12,
 203,167,78,98,131,142,119,134,124,157,87,197,25,222,192,7,154,136,73,133,134,10,8,93,137,247,68,90,17,192,188,199,194,200,38,75,243,124,124,230,201,214,84,134,249,159,173,179,249,237,239,228,63,53,175,134,245,125,208,219,162,86,117,227,168,95,7,2,131,252,28,248,255,44,102,140,201,45,232,166,107,14,223,97,114,169,220,163,108,92,186,23,243,210,123,239,199,17,169,187,181,168,176,35,117,147,87,161,150,79,0,33,17,48,176,81,24,40,140,79,110,95,6,180,82,110,184,172,163,90,214,102,41,225,113,138,111,60,30,171,20,47,67,99,91,97,97,219,14,64,244,193,83,217,238,185,52,150,3,98,87,180,45,18,181,92,124,116,170,158,12,199,88,232,66,208,49,46,211,10,110,47,220,24,36,139,123,128,234,169,225,2,108,91,77,71,222,250,206,200,238,49,20,43,187,205,76,215,159,36,71,227,114,162,221,180,144,79,31,229,137,67,220,148,236,172,183,57,246,35,79,19,101,132,49,147,140,230,100,52,57,176,157,77,67,4,230,169,64,114,234,163,47,182,100,254,171,124,45,114,72,140,110,165,51,35,138,36,233,180,179,15,136,243,188,29
 ,208,244,79,141,107,224,62,140,98,248,90,73,50,18,122,218,227,160,8,120,101,17,209,195,85,47,255,1,125,157,44,20,50,205,220,183,100,73,211,156,218,248,193,158,45,250,60,236,7,73,220,83,91,209,255,185,191,94,209,190,160,87,167,89,69,52,138,48,113,190,87,96,44,127,91,52,137,67,207,74,91,109,26,226,233,47,91,151,127,154,248,174,92,33,64,137,37,56,139,157,236,236,236,81,116,149,201,74,209,30,140,66,255,44,53,145,83,47,249,8,58,133,98,219,205,34,139,226,182,150,138,10,201,214,128,208,105,104,111,51,191,42,250,244,187,190,205,147,93,87,111,77,10,206,213,248,0,123,157,146,239,170,7,145,74,148,145,101,185,106,40,157,61,40,73,247,14,176,213,78,43,31,105,84,42,164,74,190,46,215,116,130,88,157,155,103,242,68,97,78,116,176,146,99,253,238,132,211,187,113,91,231,30,70,247,22,126,227,153,95,82,42,247,38,159,69,51,237,101,165,120,250,72,60,227,27,96,101,78,152,138,125,44,68,93,204,21,4,122,247,112,208,144,28,190,92,251,184,248,77,118,195,119,69,152,70,227,85,196,220,207,2,114,42,128,167,10,
 237,27,93,115,174,138,230,214,120,53,213,187,211,42,117,101,196,203,139,203,150,182,195,79,195,49,68,37,198,225,168,226,7,154,216,149,227,63,149,79,47,97,198,119,240,28,69,143,119,80,83,214,54,119,2,143,199,211,182,185,81,149,5,112,224,67,23,25,104,163,253,137,233,214,139,52,110,27,172,18,91,136,169,254,179,22,85,145,70,231,210,175,189,163,227,141,179,241,199,218,172,17,197,115,155,205,67,130,249,97,86,88,169,81,120,159,39,84,238,144,125,101,205,56,69,170,64,126,179,157,84,91,242,126,1,209,128,132,151,251,239,158,34,157,133,232,163,146,161,117,70,2,226,14,125,11,138,64,183,103,127,89,211,251,55,118,57,4,160,171,94,206,44,244,194,215,249,225,209,241,191,244,116,35,232,123,18,216,84,89,79,18,95,140,18,245,155,72,137,50,11,113,187,222,236,228,59,118,157,78,237,116,110,139,4,240,28,23,161,8,91,17,63,13,120,246,125,6,158,134,149,141,30,104,199,241,212,18,168,93,38,12,118,204,46,233,133,3,108,243,41,5,178,235,230,135,175,79,53,226,127,4,238,240,30,14,73,33,170,139,181,165,13,187,1
 69,189,228,21,12,42,252,8,12,60,129,87,67,216,248,169,22,211,252,133,157,172,119,77,32,57,99,248,244,164,83,184,170,146,67,217,236,43,85,182,30,3,54,24,75,105,170,100,29,188,213,109,65,149,173,40,236,85,104,182,112,77,153,152,152,109,238,115,153,137,141,139,68,55,149,48,213,240,205,115,39,39,119,120,188,31,21,152,122,147,115,86,249,164,93,67,73,108,170,123,110,68,130,18,147,111,63,43,30,76,25,90,77,116,44,10,37,153,66,106,111,13,191,220,247,19,15,211,147,253,171,57,53,58,66,238,160,222,145,137,39,194,121,77,199,163,73,191,127,54,235,61,46,76,249,3,58,249,65,121,156,202,88,99,120,235,28,20,90,235,29,202,165,156,244,248,122,98,27,45,15,103,111,64,222,154,25,157,243,114,190,195,55,161,154,204,204,111,144,107,92,21,205,217,170,202,211,25,240,142,231,29,77,172,159,94,245,255,239,210,70,11,255,22,71,60,245,105,113,248,138,104,240,177,227,30,187,173,74,215,248,185,224,145,176,199,209,47,82,153,177,136,215,247,35,246,206,84,150,145,134,39,155,195,153,54,244,170,70,91,31,4,227,220,20
 4,170,186,96,188,212,11,89,247,93,181,45,234,116,50,12,79,124,149,52,238,175,44,42,211,160,218,223,255,103,92,20,245,201,113,230,250,236,11,192,237,18,55,75,222,97,80,126,75,233,40,162,157,92,4,207,177,18,225,226,71,198,119,157,137,138,241,41,249,27,111,74,219,224,122,199,252,223,204,27,23,221,150,104,92,147,111,70,193,139,174,10,147,94,20,134,59,213,232,161,52,105,185,73,186,13,248,210,125,24,38,248,151,103,139,147,40,0,226,67,173,4,169,215,76,128,229,80,105,136,143,208,117,36,210,6,149,55,205,2,204,197,97,166,119,121,182,61,170,86,29,211,200,85,202,152,178,132,42,182,231,200,152,135,8,52,7,27,158,213,246,117,19,242,154,236,249,42,185,112,84,120,86,21,78,44,115,226,121,63,213,190,23,163,229,158,103,64,223,13,75,114,75,178,23,59,158,150,9,108,228,234,14,223,201,212,87,209,146,155,76,153,96,73,212,34,175,187,190,8,32,88,61,187,20,201,4,249,85,51,87,214,100,89,101,50,234,130,182,91,249,111,175,168,63,69,161,160,93,106,51,40,123,225,110,112,196,145,23,56,215,244,25,90,104,10,19
 6,233,111,92,113,89,109,145,149,20,91,128,2,194,5,36,198,43,170,19,247,230,22,46,89,24,175,51,166,246,87,191,94,171,228,72,31,190,207,187,92,31,79,252,15,201,227,119,96,198,48,183,29,249,195,132,38,37,153,150,69,173,180,132,224,35,104,167,57,74,191,46,173,60,42,56,29,71,188,109,239,182,153,15,131,88,215,50,31,88,109,23,209,69,159,164,238,130,157,104,210,88,164,211,51,228,27,193,103,91,53,176,70,56,139,85,71,252,247,78,169,65,74,2,138,35,51,238,140,4,1,173,246,149,10,60,200,216,189,87,3,172,235,48,10,92,35,219,145,209,226,205,139,139,123,77,129,226,17,167,113,55,193,4,2,151,140,5,243,7,158,84,117,33,209,113,148,125,182,227,69,130,139,207,90,118,172,222,208,48,18,169,93,120,12,166,72,177,57,128,238,75,81,32,42,237,138,90,39,69,126,121,44,103,219,63,57,176,72,130,250,16,111,11,73,71,12,10,239,222,225,116,38,213,112,60,151,219,155,79,157,201,110,73,144,114,72,189,112,33,87,85,23,73,31,92,56,67,233,173,214,176,104,226,42,74,49,178,215,41,64,7,192,225,140,247,15,73,57,144,65,253,1
 46,199,134,208,25,171,106,91,245,123,65,211,41,245,210,159,108,176,26,159,200,154,74,32,52,148,36,42,250,216,240,44,42,198,201,125,172,105,141,141,106,164,89,225,244,15,3,196,58,169,127,7,85,86,155,4,5,61,86,68,99,116,214,125,121,5,145,0,175,155,233,174,198,123,150,83,204,68,7,177,68,205,162,160,1,115,223,136,196,39,17,161,206,68,211,117,104,76,125,183,238,46,162,54,1,170,109,224,251,235,168,80,218,251,123,212,145,155,203,160,38,128,120,122,84,38,81,130,251,252,212,246,5,16,172,100,215,127,105,169,44,90,230,236,229,203,182,113,68,81,227,204,78,73,142,15,185,182,217,153,90,52,144,24,59,122,23,214,220,120,156,49,85,60,57,46,186,201,211,11,82,91,66,162,158,124,211,164,239,22,145,242,42,108,58,65,115,27,62,61,77,207,4,251,29,72,231,189,12,46,227,195,223,197,133,173,11,49,12,49,229,84,130,146,64,218,100,99,189,175,67,226,15,17,49,183,177,249,119,66,104,96,183,217,154,73,254,248,214,211,210,147,155,157,215,64,93,16,15,246,28,216,78,4,138,176,185,246,159,0,208,235,136,240,54,167,72
 ,189,149,188,214,250,154,211,46,21,245,228,161,39,198,143,132,215,83,156,232,196,240,75,87,92,59,11,131,47,0,169,170,222,115,53,111,207,138,60,251,61,168,245,157,28,188,253,152,112,169,246,196,55,246,94,102,108,94,187,34,80,108,219,246,162,44,226,206,173,12,234,62,51,35,34,72,221,175,75,175,72,149,88,20,145,153,204,17,48,165,121,244,91,165,172,41,194,183,70,235,27,197,124,174,64,32,84,198,52,136,3,197,6,132,148,75,225,181,114,104,173,105,54,96,110,243,62,211,233,8,48,167,250,79,43,232,189,145,249,94,181,54,157,50,54,253,206,36,163,111,11,89,122,255,172,60,105,165,6,165,56,185,157,12,79,159,243,128,68,168,240,53,68,244,33,98,125,183,17,114,150,113,223,98,11,111,98,63,193,5,176,130,123,93,1,176,114,144,221,52,218,113,65,74,54,46,166,54,195,79,128,16,203,183,111,55,156,90,161,70,186,222,40,144,232,72,95,52,195,97,150,20,191,222,31,197,198,235,58,204,25,54,147,175,92,233,67,54,215,21,142,233,7,117,216,14,7,35,186,216,240,58,179,86,178,192,108,64,179,24,125,211,218,9,57,180,49,13
 6,24,234,132,28,185,175,110,240,204,175,243,16,11,104,26,111,89,39,29,15,250,123,250,239,212,21,61,148,88,149,103,94,219,129,248,229,58,64,76,99,75,33,27,4,152,238,179,242,130,89,111,184,136,53,160,232,152,219,252,60,11,244,4,26,227,87,166,29,188,235,127,101,145,5,218,180,112,81,185,178,153,121,22,111,204,94,128,81,158,205,83,111,150,205,26,142,197,66,104,114,233,141,124,126,166,80,187,147,144,161,15,176,115,90,179,173,98,171,14,194,42,173,247,130,155,125,54,41,189,111,98,111,39,134,100,150,250,9,109,108,129,217,78,176,252,122,150,52,44,64,66,120,255,90,54,172,250,94,214,107,204,137,2,135,4,148,179,89,68,76,168,143,30,86,195,95,48,21,229,104,177,17,102,81,188,251,84,164,208,160,74,96,162,197,152,197,44,129,30,20,81,245,229,158,208,162,185,255,252,4,238,56,148,228,106,159,240,21,168,33,182,119,214,232,188,228,3,57,115,169,126,79,101,251,149,3,9,226,190,120,21,22,202,233,121,28,222,69,114,250,52,42,15,252,171,36,142,69,120,86,50,176,17,181,183,169,54,25,32,131,66,33,166,229,20
 8,180,184,136,117,30,102,152,179,142,184,26,61,47,113,210,189,96,180,147,115,5,57,123,233,31,53,110,208,177,231,42,3,25,47,169,5,254,223,239,32,6,84,178,75,212,200,68,232,178,187,235,117,3,18,141,121,234,58,19,127,237,150,113,121,144,120,125,171,44,137,94,109,176,13,134,126,79,30,116,67,152,253,40,156,229,123,17,244,175,147,44,237,191,11,220,5,214,32,110,129,26,213,222,33,237,29,150,70,199,199,3,242,79,140,19,78,79,167,198,135,87,126,7,240,233,124,48,179,186,26,4,205,73,25,61,128,71,90,109,98,2,225,191,88,196,66,47,161,93,73,6,219,170,37,10,192,140,66,141,112,140,180,237,30,46,78,96,11,246,94,7,99,132,48,140,217,162,87,115,161,76,170,162,138,134,80,127,1,234,128,4,251,62,29,196,57,53,141,145,22,228,170,202,206,101,54,0,72,215,140,123,148,192,168,174,170,62,189,173,28,187,76,204,78,206,254,123,126,94,109,174,127,142,143,90,44,144,156,211,98,104,254,151,246,91,200,201,102,217,45,255,5,79,51,86,139,74,92,36,132,229,191,103,153,150,246,68,133,206,90,251,60,134,53,78,212,180,113,
 48,51,82,200,54,85,64,115,26,98,245,157,137,53,228,155,239,89,151,65,239,241,150,125,107,241,119,53,190,83,53,84,216,69,79,193,37,195,253,165,95,3,94,36,129,11,130,164,239,21,187,233,25,91,180,42,8,56,133,127,211,70,173,180,66,197,168,13,131,237,241,31,179,77,152,99,133,139,81,54,249,19,190,187,225,15,142,169,76,178,34,49,3,161,214,94,148,228,155,113,68,107,187,220,173,206,147,136,78,7,129,15,107,118,80,125,72,138,192,35,72,86,213,187,123,42,199,116,213,251,71,255,141,37,49,114,115,251,144,206,136,253,175,116,62,203,130,177,129,243,70,187,15,184,37,135,37,137,144,76,127,13,176,144,29,165,222,85,171,7,21,207,59,203,140,39,67,98,174,107,67,35,230,55,245,170,241,52,242,86,218,1,82,184,198,73,131,216,151,118,177,37,175,141,91,218,103,169,3,118,109,6,140,169,165,202,20,128,95,31,105,101,154,28,118,26,215,149,217,235,101,178,96,9,192,205,35,31,18,47,168,103,217,225,14,70,170,62,223,242,231,109,244,200,131,210,32,16,115,97,98,30,195,232,254,44,243,138,14,224,95,229,52,195,14,241,13
 3,223,50,21,246,42,43,107,123,102,238,200,61,233,126,96,11,90,49,217,239,153,35,187,103,57,125,148,36,169,185,130,255,181,187,182,15,118,125,36,5,52,240,241,97,214,47,219,208,219,14,250,250,212,217,48,62,13,39,242,227,21,69,235,240,231,77,197,101,35,191,95,92,34,69,235,104,252,241,163,123,220,46,79,75,64,13,179,241,234,182,32,178,52,187,216,35,179,156,27,17,174,164,244,106,37,38,161,245,179,3,242,27,206,55,193,10,141,105,36,55,255,150,84,86,19,112,99,5,233,104,58,51,26,196,230,161,55,49,2,242,3,60,138,182,202,242,101,160,141,210,248,249,250,72,71,138,55,224,184,48,238,39,44,104,188,168,203,161,26,64,94,49,48,5,133,39,96,87,46,160,230,111,118,103,196,186,130,44,94,13,68,138,81,76,240,250,187,29,198,180,94,185,67,207,70,129,2,250,48,41,12,97,244,156,59,208,26,231,151,201,187,111,249,177,67,115,48,125,247,25,4,116,104,242,146,42,115,148,133,245,246,131,114,155,64,190,94,231,154,122,165,233,87,25,25,151,158,129,249,225,167,16,113,25,39,10,74,216,80,62,46,52,157,93,19,141,228,160
 ,78,129,246,171,182,230,168,126,78,63,221,235,8,122,236,20,22,49,49,119,245,70,27,237,148,100,217,132,19,20,161,38,33,23,15,205,107,138,183,136,177,119,208,19,121,147,222,144,128,204,210,14,94,163,50,62,64,137,64,80,82,209,186,69,162,114,106,221,9,86,180,70,126,184,38,194,128,115,129,32,230,123,68,158,225,50,41,72,17,98,44,69,224,161,114,54,165,200,62,179,3,21,152,50,90,197,240,130,36,28,138,78,86,185,57,89,180,4,179,220,104,238,169,53,155,6,71,162,166,189,236,62,24,240,229,203,213,101,134,247,38,175,0,71,80,31,247,187,44,10,208,47,125,72,124,63,119,139,107,192,181,245,68,116,220,139,135,11,134,41,192,149,1,23,22,240,141,66,11,33,92,19,15,85,228,89,118,248,37,170,97,237,200,157,89,77,176,247,65,171,106,205,76,126,130,136,215,135,222,77,31,160,166,225,176,125,245,65,165,93,111,88,160,72,114,168,12,80,225,200,157,194,129,181,217,202,45,122,136,220,192,46,215,145,44,125,223,150,28,189,104,21,110,56,112,243,246,46,23,91,133,57,149,131,192,54,168,64,21,34,123,236,34,253,116,161,9
 7,67,98,84,89,160,90,220,177,237,63,238,186,156,38,11,132,145,244,29,144,79,126,3,115,12,248,50,178,0,227,93,128,223,37,10,67,126,92,42,169,248,250,147,198,85,0,142,75,10,205,79,132,57,120,191,17,41,35,223,186,1,121,158,68,149,73,206,26,122,83,6,127,148,141,235,174,85,26,166,250,185,174,12,122,188,43,149,172,237,180,120,3,183,223,53,61,19,131,1,47,36,218,23,191,11,243,149,141,12,210,83,233,119,41,219,238,244,144,41,75,155,138,20,53,207,113,150,150,73,8,163,18,12,131,21,127,162,143,142,223,125,94,178,16,141,77,180,148,173,95,4,108,185,28,144,220,0,123,178,0,33,232,22,87,181,119,84,244,190,165,201,3,160,140,186,248,180,111,103,190,200,217,92,109,123,10,206,179,101,126,186,57,229,186,231,228,159,39,131,239,19,75,143,186,24,147,174,211,164,229,102,50,130,72,167,193,194,183,216,91,231,125,111,190,39,188,160,234,14,134,83,21,170,112,43,174,176,1,64,247,191,246,42,33,175,154,117,27,217,141,239,191,108,213,73,239,26,90,51,213,176,134,248,59,166,174,47,127,187,53,89,89,57,210,61,50,9
 3,38,10,244,12,48,12,167,30,136,133,108,211,106,103,39,100,212,215,27,15,75,255,38,131,219,111,66,106,247,25,150,242,6,168,255,129,68,139,189,254,237,139,8,126,162,91,12,246,70,74,245,191,224,144,207,124,187,105,223,183,101,100,233,145,73,135,214,184,203,95,10,242,8,54,107,207,136,221,60,118,229,52,26,96,214,57,149,13,232,32,245,109,64,252,229,165,254,75,71,169,144,126,69,209,59,147,41,244,209,225,250,184,41,3,49,72,183,77,185,61,56,206,53,151,23,87,113,96,141,67,215,11,249,91,176,108,25,30,120,210,228,179,207,89,233,168,91,177,85,98,219,60,231,12,146,129,245,96,185,109,1,90,127,63,24,126,233,225,216,244,198,2,17,168,202,119,217,16,61,243,207,178,177,74,146,199,102,138,201,235,36,86,175,207,1,107,140,8,154,14,47,119,165,97,228,92,188,215,44,237,85,81,38,14,29,71,98,100,108,83,139,65,156,254,95,182,146,16,11,131,7,59,49,74,160,190,71,216,155,133,195,213,14,94,215,75,248,37,95,77,110,6,118,29,121,226,255,164,121,48,126,116,187,158,17,242,205,138,199,42,29,40,78,232,176,105,34,
 200,209,233,24,123,169,140,143,114,237,109,237,223,182,186,110,45,150,207,251,15,82,147,98,184,220,194,101,213,180,88,110,35,208,150,3,13,85,147,92,241,94,21,159,104,186,213,32,181,45,132,241,224,51,58,112,53,225,31,14,246,49,51,188,197,223,97,77,76,73,252,21,133,86,131,165,217,166,29,17,95,60,85,55,158,13,61,168,46,92,128,92,133,40,111,237,28,221,193,98,80,123,86,63,167,64,54,189,64,30,71,191,98,197,227,142,127,157,31,186,22,77,31,238,32,212,113,223,236,186,223,65,29,184,234,200,233,155,80,132,40,233,0,193,51,136,94,253,61,193,216,2,129,14,67,181,249,81,118,207,193,135,44,174,220,199,151,151,79,33,234,85,217,98,251,106,55,208,17,98,222,135,43,184,2,84,244,143,224,10,56,70,180,180,29,141,137,171,81,46,20,242,185,215,72,18,171,133,46,18,131,8,236,36,195,153,99,3,143,38,129,165,243,38,99,236,3,141,170,26,155,203,91,5,228,22,10,24,6,98,90,246,111,41,181,170,172,164,16,61,157,66,14,46,225,65,247,224,0,173,135,153,154,118,252,58,143,18,118,204,218,4,30,57,243,118,166,123,98,109,5
 9,236,149,130,243,234,154,165,221,124,83,54,24,4,2,232,127,28,173,61,111,88,161,144,67,33,27,93,172,143,227,33,21,41,181,31,94,174,248,144,195,110,178,70,70,49,206,243,87,136,205,159,142,108,175,139,91,102,220,122,132,219,229,250,86,142,172,68,149,151,17,220,149,166,237,81,62,3,149,225,106,117,169,25,183,225,213,160,37,229,178,182,135,203,7,23,201,125,192,161,214,97,43,251,30,105,134,117,170,133,34,200,122,250,124,246,186,128,172,159,241,92,127,75,64,139,3,18,131,216,202,119,216,8,68,206,130,179,68,11,144,177,138,120,135,242,240,109,80,200,140,172,108,64,7,30,240,70,91,173,29,30,30,7,42,54,117,95,223,239,4,124,42,84,145,202,91,154,134,63,74,61,129,122,229,13,14,14,106,23,45,213,29,246,246,156,156,193,93,69,245,119,172,2,193,130,66,135,233,144,122,32,71,155,169,87,176,88,42,149,172,154,123,12,224,104,186,99,201,147,77,98,123,207,225,53,134,243,192,67,57,11,39,62,134,140,111,249,171,172,21,27,43,110,146,143,118,142,241,163,23,231,149,213,199,8,37,55,68,48,237,196,64,70,73,114,
 185,24,15,144,143,189,230,158,69,33,104,9,160,128,163,146,220,159,149,192,240,209,192,175,107,197,216,97,99,3,210,136,169,228,135,195,119,148,23,158,73,42,4,61,31,240,183,233,56,85,103,170,192,5,34,166,65,82,72,209,88,90,193,114,54,186,6,129,38,60,93,147,150,175,225,171,81,45,163,180,122,145,52,237,232,65,126,192,171,84,219,67,133,186,63,102,169,187,89,22,103,254,94,184,34,223,151,48,251,42,105,6,164,239,126,57,180,237,192,59,187,229,125,12,77,37,65,179,31,143,185,251,90,68,123,162,119,234,108,206,1,69,15,87,14,129,226,74,62,48,20,245,63,36,234,66,229,221,56,83,190,191,112,54,228,10,21,207,240,78,60,237,239,23,183,236,39,189,153,8,17,229,233,224,201,167,71,108,53,216,214,135,173,75,54,191,255,169,142,53,231,2,138,227,186,41,240,152,203,156,112,255,101,9,34,155,90,220,121,145,17,190,55,121,84,170,181,154,1,226,3,82,216,1,57,116,116,52,252,138,59,187,87,224,169,90,113,233,168,44,64,94,108,156,144,158,171,84,239,188,99,226,0,232,20,69,86,248,67,56,203,250,169,251,69,11,244,248,
 10,18,148,234,99,84,241,91,74,71,41,227,236,103,141,202,95,134,197,10,120,176,195,45,160,79,12,42,77,239,44,80,247,136,223,142,42,252,195,243,18,150,136,188,73,100,18,110,106,24,32,140,103,106,102,154,248,93,108,7,76,13,211,230,42,56,173,144,51,84,87,185,98,165,87,223,27,44,43,171,205,160,79,206,106,243,144,72,246,108,240,192,13,213,200,80,180,74,95,122,147,205,71,227,7,239,147,48,169,56,105,123,164,202,71,145,63,8,146,239,197,231,40,142,178,227,77,143,81,34,9,155,17,46,48,226,74,135,230,168,51,234,18,130,189,184,34,98,144,42,4,233,248,179,247,236,240,176,220,182,230,21,217,127,246,189,217,53,214,194,190,57,201,34,241,177,153,171,215,213,32,43,122,150,231,74,125,174,114,31,0,133,228,187,35,17,26,172,88,225,22,5,27,43,87,203,41,142,175,176,62,160,54,60,164,206,213,243,68,136,143,230,230,151,140,189,131,28,212,108,159,251,178,3,228,79,4,158,236,167,17,38,140,85,17,202,5,242,147,40,127,26,243,197,90,204,206,78,255,83,118,149,1,30,242,226,98,43,140,60,1,61,252,82,118,101,122,102
 ,209,194,239,209,95,174,226,34,146,72,222,254,157,14,156,41,216,35,194,253,46,185,155,246,207,201,176,6,35,111,195,161,75,144,28,163,242,251,99,252,0,234,201,73,203,223,163,81,121,36,141,164,106,182,124,160,229,132,114,204,48,166,31,92,188,102,154,51,23,52,132,71,169,121,2,39,167,198,59,240,85,87,11,108,59,134,158,174,211,169,31,26,54,12,23,175,21,156,231,176,224,85,22,16,134,162,12,229,6,208,201,2,214,152,245,87,142,57,174,118,118,207,230,32,42,84,248,163,38,54,246,149,239,33,100,42,150,101,131,68,146,248,29,47,143,132,136,241,213,24,138,156,13,247,35,97,15,246,5,53,209,173,200,144,188,170,27,48,112,244,46,162,191,248,208,0,32,74,110,125,150,48,210,103,225,198,26,26,246,22,202,111,27,4,155,131,210,217,166,79,193,83,182,225,110,211,80,121,124,88,215,29,39,58,174,106,4,199,42,242,105,38,62,16,51,109,9,25,1,5,220,116,24,11,219,134,84,103,65,158,87,115,78,202,239,176,11,89,99,168,71,52,185,216,24,228,77,39,124,252,242,161,4,107,207,181,210,224,107,31,42,94,243,177,96,59,246,104
 ,189,52,125,64,127,240,158,198,25,208,154,19,6,158,171,41,173,194,117,42,218,130,227,190,156,89,136,131,92,110,84,250,41,234,61,69,57,56,182,199,164,111,148,48,111,119,148,140,86,124,168,206,4,95,194,125,168,173,69,84,130,40,178,79,28,245,232,2,15,131,195,105,49,251,252,247,65,44,166,224,56,169,73,69,165,16,244,100,243,76,149,77,201,68,117,139,10,118,106,241,244,135,45,39,199,103,116,71,218,56,91,244,218,121,162,80,129,21,201,173,25,161,165,241,42,179,171,39,95,31,24,9,73,178,126,128,217,78,8,250,41,19,146,115,236,42,96,159,124,132,189,18,18,75,61,152,255,60,35,54,75,190,190,30,176,70,55,122,18,89,222,107,210,155,5,33,112,164,75,37,136,154,98,25,94,52,61,7,145,149,219,186,163,128,144,174,193,41,140,239,129,206,66,23,142,247,224,75,4,25,90,124,245,157,223,14,249,134,187,174,106,34,249,60,218,45,131,231,165,216,106,174,230,199,155,118,59,95,239,29,228,208,73,253,100,47,255,239,73,194,48,55,20,23,12,246,212,129,173,12,211,222,63,179,54,40,133,195,208,9,108,98,252,253,29,109,237
 ,191,156,209,69,36,220,94,121,61,116,196,169,96,86,189,122,33,178,225,222,59,76,236,178,8,74,100,93,164,146,52,213,180,237,187,108,50,32,136,95,162,87,70,166,124,221,200,195,210,91,112,124,109,11,70,84,97,70,125,33,23,106,77,96,131,24,93,147,52,178,16,149,217,184,51,71,195,46,33,177,171,158,87,204,197,25,61,21,253,89,89,180,107,110,83,236,95,17,134,105,50,204,43,62,164,91,123,153,237,110,75,123,6,230,16,120,126,180,178,139,83,68,247,161,118,232,204,62,102,101,84,59,63,13,131,26,243,22,8,196,14,131,135,233,213,229,198,206,204,134,108,136,116,76,184,107,129,229,95,4,145,137,181,162,97,45,60,62,151,254,230,180,131,60,144,26,67,247,66,246,109,87,140,2,121,98,75,216,74,144,73,209,145,241,34,42,21,177,165,104,167,174,251,54,21,56,61,140,234,229,239,140,16,226,163,41,26,162,242,178,6,19,150,73,220,51,224,164,157,175,213,56,144,202,177,70,244,157,158,125,206,154,19,116,122,64,225,12,9,198,78,72,235,107,15,140,230,147,0,154,42,150,127,6,135,94,124,19,67,171,4,165,119,106,41,13,168,14
 3,253,45,247,142,225,128,154,8,3,147,251,153,13,132,110,54,233,215,98,187,157,65,26,20,251,5,179,28,58,24,196,213,243,87,165,195,245,4,5,146,72,89,147,223,40,133,158,199,237,49,120,247,120,199,46,185,124,156,70,137,19,55,76,211,153,173,176,100,146,103,179,53,36,232,189,116,247,20,5,124,181,190,68,40,53,30,81,182,49,77,234,76,194,142,100,103,114,21,18,158,44,81,144,196,204,106,167,175,2,212,170,132,195,188,41,227,67,121,111,57,137,76,102,217,65,206,50,45,244,96,226,17,19,133,221,30,97,149,90,85,244,126,171,72,25,161,77,233,24,110,110,78,216,183,12,116,139,2,20,40,152,203,216,33,165,1,204,220,154,51,204,160,135,34,69,238,204,44,122,66,203,68,88,194,255,6,251,181,64,139,126,251,248,67,160,172,27,90,217,54,232,52,116,6,40,224,248,40,74,51,57,135,190,233,16,131,241,101,123,75,89,66,196,185,2,152,91,171,149,177,1,227,158,11,37,253,112,233,58,198,204,191,18,201,215,81,71,127,245,185,204,74,119,229,177,220,172,237,251,213,52,46,132,36,184,198,188,137,6,144,94,15,183,130,194,209,47,3
 3,66,243,130,95,56,155,233,232,188,46,87,85,140,150,1,88,83,134,41,23,55,220,100,61,140,151,85,125,96,119,229,183,101,178,215,42,96,237,104,123,61,127,241,202,214,224,47,164,152,39,116,217,217,101,100,62,68,76,82,190,139,216,96,202,205,138,228,212,192,202,85,86,14,66,222,23,194,57,119,99,93,67,169,160,117,234,225,4,226,197,123,185,87,104,109,148,107,111,252,7,108,164,232,235,113,60,25,1,120,233,43,176,148,111,56,187,143,128,159,228,213,32,230,57,82,18,124,244,107,16,251,205,104,168,104,155,114,91,211,28,119,76,29,175,5,160,201,226,4,175,83,189,58,249,57,206,7,133,1,176,225,49,39,30,161,106,38,170,60,86,227,122,33,241,60,35,103,138,246,75,229,255,168,116,253,251,196,50,14,67,246,162,67,47,13,0,23,188,11,43,21,15,178,53,6,80,114,197,40,26,53,180,23,17,223,53,152,139,161,5,227,111,42,200,174,80,234,159,1,125,238,142,134,142,114,45,42,183,69,202,17,53,162,196,191,12,79,79,252,219,125,218,110,51,22,84,225,64,116,41,209,220,39,113,219,89,5,17,202,75,156,159,134,210,153,191,109,132
 ,66,132,184,70,250,31,44,101,250,149,0,126,219,254,195,207,71,91,115,184,200,135,151,226,163,88,206,226,202,101,82,77,136,36,54,240,189,119,143,250,194,195,194,39,103,168,236,215,43,255,107,77,20,155,215,101,89,70,90,41,204,74,61,172,75,76,54,248,111,199,144,155,136,224,72,78,183,2,238,59,77,43,29,245,102,150,133,122,229,154,193,105,214,108,209,240,237,212,66,195,203,41,193,231,9,165,204,18,161,160,187,128,216,119,24,7,93,223,192,93,147,168,240,41,78,189,52,195,131,55,182,128,191,89,56,246,250,104,98,79,133,59,63,153,53,170,248,4,253,110,36,236,202,128,34,120,227,108,104,34,70,98,185,127,29,23,56,186,192,48,215,99,21,162,84,59,248,232,76,126,150,246,31,107,217,207,204,231,155,201,253,128,164,165,71,61,197,235,105,226,144,169,128,235,65,102,55,183,89,76,196,233,164,136,6,214,27,212,96,172,146,70,253,251,170,22,14,70,233,139,231,174,254,139,209,85,253,73,57,8,147,220,140,188,226,49,97,97,73,235,59,8,71,71,144,183,250,198,198,27,145,203,216,216,145,117,72,108,51,204,48,226,178,
 109,143,241,99,240,113,130,4,91,252,80,52,82,138,5,219,8,14,128,92,239,197,116,234,6,154,31,195,239,25,49,116,131,190,193,248,116,42,206,49,24,137,64,51,113,194,176,205,251,222,3,183,220,147,23,168,74,94,189,126,47,133,72,118,112,217,0,67,137,221,32,0,5,1,25,194,251,16,104,201,69,161,28,163,253,28,96,106,148,125,236,61,174,22,213,20,204,1,97,239,194,6,227,206,172,201,181,148,109,119,175,84,205,88,184,178,11,128,210,119,48,208,210,8,231,170,85,137,126,237,70,86,211,191,167,185,11,25,246,24,43,73,47,9,183,128,120,204,127,219,198,180,229,162,131,30,210,6,229,219,5,153,91,145,30,252,0,183,92,68,117,225,155,253,240,245,44,135,227,66,20,230,97,193,250,110,132,246,37,200,122,123,173,186,121,210,215,90,127,164,150,228,165,122,245,78,179,13,196,149,246,217,163,108,121,170,88,81,98,69,153,211,160,220,204,123,21,13,58,114,100,182,11,219,234,221,56,104,204,235,65,163,168,231,23,241,246,145,222,161,219,232,31,156,181,113,188,31,94,228,183,236,156,67,26,161,224,138,51,216,14,250,235,89,20
 8,72,101,183,199,246,35,229,188,252,35,126,255,232,85,39,213,33,196,150,209,31,44,17,66,130,169,90,33,143,185,208,159,239,170,241,165,80,77,251,73,132,13,37,203,173,49,89,17,199,114,51,70,2,123,236,137,169,77,133,66,43,169,45,149,174,232,243,158,14,105,28,191,169,98,1,108,70,70,191,240,48,26,227,194,171,163,219,87,228,108,190,199,83,39,81,106,249,72,240,72,43,254,6,59,177,146,104,38,148,82,67,205,24,251,97,54,50,179,130,5,70,235,12,196,45,156,143,119,108,172,123,120,236,18,228,235,157,69,65,36,224,138,140,63,112,102,169,189,179,128,75,131,204,103,2,210,163,97,38,130,42,175,86,105,237,150,214,33,76,214,253,101,197,41,11,46,198,34,200,124,168,207,2,113,177,63,194,115,120,132,105,199,52,119,216,171,84,36,48,174,177,154,106,161,144,88,127,154,57,67,26,9,142,201,45,136,179,28,140,126,112,152,102,121,118,200,149,81,108,103,149,229,70,85,67,87,52,123,15,157,41,136,206,102,70,167,42,144,100,177,2,153,40,241,218,126,248,118,29,221,53,133,2,104,235,114,190,227,10,51,251,191,12,1,5,153
 ,218,217,53,108,181,142,244,89,71,143,219,252,99,134,98,75,165,188,224,103,184,155,18,131,140,223,203,97,73,102,112,240,53,172,203,186,103,18,51,186,142,12,22,145,54,12,59,4,184,179,135,220,172,55,90,115,12,56,16,208,83,124,29,4,230,62,194,24,77,6,54,17,237,190,217,23,77,67,140,255,143,105,62,62,241,135,201,211,91,238,81,30,63,239,204,39,84,127,74,207,66,189,49,29,110,243,188,112,176,216,232,64,63,236,93,234,31,145,64,225,53,52,254,177,133,58,28,75,48,114,34,95,73,123,118,183,75,67,196,55,61,100,172,17,9,20,195,46,247,36,192,174,21,101,133,253,101,147,61,232,222,222,169,78,233,125,30,209,76,135,206,220,72,205,33,57,2,179,165,208,222,179,112,12,99,228,129,61,98,61,194,1,236,18,44,188,17,226,150,80,194,252,214,9,38,167,21,97,106,27,234,95,232,85,82,239,56,150,202,101,135,148,219,101,251,66,211,165,195,253,202,87,81,55,43,147,77,191,2,156,162,76,27,61,88,41,37,72,248,237,137,29,183,9,96,93,90,164,170,130,251,205,32,230,217,26,22,119,161,244,238,255,90,173,136,97,216,2,252,226,2
 7,45,70,77,197,161,19,196,45,26,40,164,80,178,8,131,206,70,125,201,166,120,214,145,144,114,35,189,247,69,82,3,212,203,195,27,36,241,187,94,248,158,51,234,87,96,250,209,122,220,125,232,65,208,223,25,45,247,149,149,176,206,63,165,207,212,212,27,242,133,216,239,229,17,141,9,148,203,83,245,32,200,101,81,180,10,202,170,254,90,33,40,188,252,88,172,153,78,70,163,143,190,50,85,90,158,163,241,215,186,166,28,32,5,64,127,161,125,194,134,229,247,161,141,72,48,135,62,16,69,193,30,20,31,190,81,137,252,164,17,56,149,93,64,114,7,228,198,204,180,168,174,194,44,74,146,23,242,94,111,44,134,239,124,199,82,173,226,156,38,34,40,12,79,20,68,150,176,212,78,223,219,97,26,32,164,33,236,215,213,173,233,4,11,74,222,146,46,193,121,211,75,52,195,137,43,16,231,61,224,120,241,22,170,55,17,171,39,192,26,134,16,102,30,188,149,140,201,85,126,145,165,186,41,144,191,2,161,137,127,75,193,10,208,83,17,198,124,182,104,36,199,73,162,6,185,180,185,199,253,239,204,193,157,228,68,118,194,27,39,38,32,218,36,170,102,27,
 5,146,75,196,114,98,148,239,232,37,146,147,68,21,159,180,60,38,28,236,158,86,57,115,81,211,238,218,61,22,203,176,76,7,56,252,142,47,34,178,149,106,46,249,106,179,143,72,124,210,29,131,166,17,190,144,228,37,46,132,163,19,228,41,213,106,110,79,113,94,233,111,122,186,161,235,45,27,131,91,200,166,209,223,212,207,248,82,91,249,140,143,188,216,27,8,253,206,80,73,240,248,45,39,157,234,30,2,74,68,87,70,23,103,240,175,129,171,29,150,233,182,160,54,209,138,48,102,225,215,193,38,216,102,67,149,46,113,143,129,239,92,69,186,105,144,156,156,37,165,202,121,2,229,242,84,65,242,7,157,81,230,60,176,131,218,145,137,167,219,64,73,189,128,135,113,229,254,183,90,206,156,123,243,126,185,155,225,78,241,129,228,59,67,231,145,255,77,62,119,239,254,48,57,234,103,253,59,254,137,85,83,71,154,6,139,104,200,71,53,130,195,233,220,155,87,222,95,173,230,78,188,161,30,221,255,218,193,116,75,68,126,56,170,29,142,110,135,74,44,93,56,93,198,235,144,174,197,130,46,227,172,253,111,177,184,218,25,144,159,187,202,12
 7,224,92,71,97,25,180,238,1,27,113,169,212,121,222,235,204,163,198,137,112,49,90,166,163,147,84,61,218,93,184,55,46,42,165,31,118,226,141,17,171,116,18,54,244,169,193,128,143,229,7,176,173,79,220,175,179,63,47,54,249,63,57,63,91,116,242,135,212,244,144,87,199,97,171,167,75,64,62,67,209,66,1,192,232,211,230,166,16,62,122,101,43,132,218,69,219,90,182,94,227,209,40,137,163,100,204,171,9,240,35,220,241,233,157,221,115,210,93,130,58,235,197,218,196,221,57,39,69,186,54,30,212,159,133,244,53,251,47,174,137,56,255,186,103,48,199,224,201,19,129,208,122,164,234,165,255,119,123,202,220,175,208,203,251,41,53,229,82,180,53,66,189,40,5,160,66,204,223,42,175,75,9,234,180,231,180,195,68,92,11,57,105,78,92,176,171,139,69,228,255,159,42,28,254,249,8,132,143,247,140,97,126,205,248,17,78,28,83,48,93,194,131,4,152,119,107,250,89,101,215,125,122,87,240,143,130,23,96,74,156,163,51,153,246,99,169,208,215,175,7,177,245,84,199,79,72,40,131,144,245,146,35,209,39,129,112,129,241,131,88,221,117,174,104,
 235,14,33,118,224,20,111,143,162,75,232,178,197,231,198,248,227,101,211,208,84,47,60,227,173,179,203,213,191,175,139,118,134,160,8,162,158,186,114,209,148,6,191,100,14,3,188,153,41,29,89,238,185,182,88,191,107,212,202,21,82,164,99,101,111,60,172,221,122,195,183,242,156,119,5,77,82,204,86,21,89,246,70,217,29,9,150,206,234,91,38,87,103,155,214,127,144,221,239,89,138,192,113,1,25,148,97,202,7,28,164,178,183,120,240,217,36,76,253,170,57,173,105,200,175,163,3,115,120,123,48,164,128,25,98,174,150,143,233,69,41,188,170,126,36,176,189,186,55,48,205,2,28,208,30,95,99,213,121,139,85,42,115,142,62,67,65,182,159,196,172,161,165,90,138,230,213,65,111,156,180,246,148,68,132,83,133,45,59,165,177,63,168,118,166,15,179,88,26,225,124,221,85,10,46,13,101,252,99,144,220,220,39,88,66,102,164,161,161,148,233,213,79,30,190,209,216,127,164,160,126,98,207,163,78,145,105,101,239,244,206,179,148,54,4,146,135,86,172,244,211,245,172,151,56,56,68,98,203,196,116,79,116,175,193,217,0,49,175,29,184,248,138,
 161,146,30,227,173,151,172,118,250,166,180,110,226,138,90,249,246,19,113,206,218,186,123,29,89,85,199,245,225,72,189,21,96,255,55,94,78,133,212,135,219,54,180,55,84,188,94,118,199,141,146,205,50,206,82,152,228,249,75,90,12,250,90,144,188,25,143,184,216,48,132,55,216,189,84,134,210,64,43,196,56,221,4,64,10,84,180,171,184,251,33,140,244,51,63,107,11,101,209,78,186,222,6,41,215,64,19,241,151,240,52,128,20,201,109,8,70,46,139,198,161,51,140,245,153,8,190,217,169,20,253,233,202,75,101,37,54,139,181,76,132,110,52,145,98,54,135,100,89,232,157,239,105,62,107,121,16,29,127,104,45,156,100,212,203,216,90,244,117,7,0,79,183,121,146,241,137,168,40,68,145,149,240,110,153,232,126,102,221,255,205,11,148,246,247,135,46,0,55,166,206,44,183,83,143,11,226,177,77,42,149,197,206,218,198,158,52,133,116,196,242,16,106,232,8,85,241,205,72,213,178,205,43,53,213,31,140,107,35,183,227,55,153,10,77,243,16,200,108,127,6,90,34,41,63,104,167,128,16,196,31,58,169,99,4,127,40,22,158,204,181,102,144,53,211,20
 2,74,214,155,159,67,75,33,124,133,226,147,169,145,113,137,197,199,250,210,208,74,208,86,227,2,250,216,189,120,155,49,207,188,243,99,205,86,251,60,54,111,10,228,94,59,223,29,139,187,153,241,212,17,255,41,132,153,164,30,73,159,127,74,17,191,30,221,55,227,71,30,135,63,171,18,9,25,103,23,16,53,228,132,58,225,84,232,142,254,77,89,228,248,87,148,189,131,141,91,160,104,138,204,82,247,19,109,28,128,17,210,104,75,105,223,32,114,106,77,18,24,218,68,225,60,137,139,110,230,20,227,89,144,29,76,168,251,137,10,52,218,141,44,0,255,34,143,222,209,183,64,240,137,167,56,120,61,93,23,131,18,221,229,234,183,71,234,65,111,236,81,208,124,76,215,196,242,76,244,218,201,49,84,54,17,253,158,166,94,105,101,236,45,112,195,140,215,220,14,107,189,37,195,175,31,6,222,147,243,172,6,51,209,14,211,93,160,252,200,207,35,215,77,121,99,82,113,194,39,220,179,151,135,94,74,123,13,63,248,240,104,175,86,67,204,192,226,160,152,231,59,12,203,6,152,184,101,240,16,16,80,38,184,126,35,187,85,132,204,239,98,212,23,42,111,
 212,123,255,59,136,114,42,226,25,55,29,15,3,109,46,111,84,125,131,255,86,60,81,158,210,47,148,7,231,140,202,170,211,240,245,11,253,8,10,38,105,223,231,210,97,58,73,54,18,95,50,130,6,65,37,60,175,162,110,105,201,207,220,43,114,68,139,24,132,50,251,182,223,80,235,163,207,138,130,106,229,25,167,191,128,125,18,224,65,198,59,53,25,214,90,218,183,132,196,220,74,110,127,205,250,141,246,196,97,224,176,5,207,112,38,26,245,156,137,165,117,239,95,114,58,2,200,43,22,237,170,154,119,32,210,56,155,215,167,235,41,253,249,241,214,211,98,150,231,182,210,205,34,14,189,101,182,238,24,51,37,110,166,179,199,32,137,31,255,198,111,107,39,44,175,4,7,72,13,58,150,101,27,183,93,168,193,123,87,212,22,196,140,76,116,71,183,203,176,53,58,173,209,254,108,195,67,208,198,26,253,112,51,104,159,127,177,55,33,32,242,64,233,56,9,129,186,64,79,130,26,124,208,115,154,82,230,79,223,54,30,21,133,118,95,178,81,122,199,155,98,0,117,221,183,97,215,235,91,102,177,12,0,241,61,7,99,48,244,45,134,135,254,136,2,246,68,177
 ,238,61,243,190,20,157,90,234,58,38,38,255,156,165,51,244,5,69,214,104,181,242,236,82,165,33,37,169,74,120,234,159,122,30,84,108,130,142,106,182,120,232,181,146,16,131,177,154,24,127,105,70,203,70,145,151,176,124,173,205,44,163,234,185,243,31,114,160,128,174,9,9,1,184,252,8,44,255,42,63,179,87,143,10,121,84,40,24,1,32,29,227,237,221,76,40,53,212,163,126,144,254,49,35,217,30,179,207,110,230,107,216,238,14,91,43,37,181,118,67,118,207,116,169,27,226,110,128,5,59,159,68,190,19,52,154,149,188,2,140,118,208,94,182,61,40,189,246,15,183,52,169,36,70,215,253,242,64,24,11,180,113,91,80,85,141,49,171,189,49,3,22,24,159,30,25,72,86,244,191,19,29,141,112,138,58,197,67,182,250,77,69,207,116,109,70,16,59,183,18,142,68,61,167,175,238,174,47,199,53,97,71,156,69,78,199,178,130,167,153,158,232,91,82,108,4,236,209,111,17,218,40,254,111,221,13,26,85,97,164,49,197,12,26,196,25,199,253,22,47,114,226,202,195,2,128,188,32,76,146,208,228,61,198,190,197,103,85,161,114,31,173,34,85,160,103,21,136,108,7
 8,243,96,16,194,130,226,216,24,151,191,178,10,233,55,169,104,92,53,19,87,31,195,252,114,114,198,229,161,167,235,20,199,181,107,37,0,160,5,24,4,251,64,246,7,91,150,126,159,0,142,26,15,10,52,253,203,41,9,86,193,121,136,149,208,202,47,92,100,149,43,161,45,89,85,98,170,171,241,255,200,231,34,70,2,178,150,119,55,84,252,170,56,169,201,213,3,29,121,165,61,214,168,125,238,31,185,134,236,190,100,105,101,57,20,116,108,209,2,77,254,135,7,172,2,243,171,44,99,57,135,236,220,225,148,151,140,121,144,9,247,212,141,165,95,239,22,31,239,76,196,230,173,255,101,34,115,91,131,98,95,16,238,211,195,76,174,44,172,193,159,205,44,146,18,84,246,2,98,70,154,109,226,184,237,49,110,251,45,118,86,65,197,252,168,179,23,144,49,133,137,250,121,109,9,19,21,243,251,251,234,126,193,80,0,44,93,190,52,169,131,187,104,185,96,130,188,227,233,54,28,164,166,107,107,227,110,46,97,239,42,117,203,144,166,21,247,154,107,218,117,170,167,154,190,163,64,155,205,74,251,187,234,234,130,14,170,240,220,180,30,139,238,228,150,15
 8,198,206,88,10,235,223,235,152,235,175,50,64,196,171,1,234,134,99,10,245,199,42,42,153,38,162,5,43,9,140,50,19,244,251,43,238,13,0,5,177,0,62,219,228,140,159,33,183,61,11,69,174,91,67,104,148,227,186,151,97,93,172,209,212,93,174,50,96,111,96,170,210,136,48,10,34,214,135,238,179,240,100,112,88,32,71,235,116,245,224,199,237,98,176,107,48,124,51,110,137,253,65,187,3,240,181,200,68,105,42,217,247,25,212,187,65,125,167,111,18,41,178,247,64,132,220,94,128,83,255,195,75,255,144,78,176,91,204,91,30,82,130,67,29,17,63,111,211,66,123,234,68,237,162,31,94,33,251,56,123,233,243,94,226,235,127,72,150,199,100,204,44,156,105,99,101,168,178,185,0,39,91,18,121,222,52,233,78,27,179,182,211,84,254,53,208,234,23,8,148,131,210,34,132,208,18,213,142,28,241,228,184,183,250,185,92,254,134,201,192,237,68,10,226,199,91,141,64,36,75,97,25,23,156,144,7,40,59,166,232,96,141,150,153,60,87,121,92,52,6,210,20,188,9,207,165,81,155,36,18,124,89,245,88,204,73,70,87,57,201,200,114,38,202,170,125,4,249,1,115,1
 90,49,57,137,82,7,202,107,75,135,62,9,25,205,81,112,201,202,12,94,149,67,12,80,25,228,230,42,67,193,110,98,126,162,195,16,231,180,198,118,222,201,10,24,25,222,235,179,192,137,168,9,171,97,112,140,128,105,80,159,68,55,157,229,127,239,111,25,217,39,153,51,81,172,135,5,149,226,121,27,105,11,181,3,161,11,173,251,57,64,185,98,172,22,48,115,89,224,16,232,109,217,204,159,43,82,134,59,14,156,75,108,190,37,13,112,242,13,147,67,125,136,233,144,175,212,119,32,75,190,237,31,32,86,159,151,24,176,102,168,83,4,32,33,225,29,195,109,127,29,202,95,63,71,160,77,204,223,66,222,37,227,148,30,54,144,16,114,188,17,13,204,217,226,203,135,207,30,156,78,4,91,74,166,148,202,159,57,225,53,49,6,64,155,107,84,17,236,109,189,6,87,53,121,232,48,143,152,191,247,234,193,146,195,118,4,71,117,74,53,71,150,171,134,114,27,224,109,28,48,142,52,109,33,21,103,109,206,110,24,128,138,176,190,111,142,229,62,58,246,135,179,23,186,118,123,53,239,180,196,147,120,108,45,137,188,200,63,100,241,40,251,229,51,238,19,137,224,
 107,141,5,185,212,175,140,27,104,82,11,135,80,43,23,52,126,114,63,215,177,163,168,152,197,12,186,233,52,114,151,141,242,117,219,226,37,79,237,209,191,220,56,114,48,118,9,96,160,22,48,158,149,123,220,65,117,59,127,237,120,215,52,73,152,55,236,191,171,215,185,200,164,8,112,9,37,41,218,241,216,105,48,9,3,143,123,215,97,31,121,195,215,81,108,16,53,59,230,191,83,108,112,34,119,228,247,15,42,57,5,103,101,36,140,20,189,240,23,45,94,89,97,33,68,69,173,215,187,49,85,14,252,132,85,230,122,94,60,108,71,148,44,2,231,187,232,212,128,155,133,36,99,169,247,147,244,240,50,206,132,47,140,246,153,3,115,117,105,229,94,58,230,197,201,23,254,165,157,205,140,62,159,177,203,137,177,12,47,36,229,5,149,254,223,135,66,135,195,71,86,56,167,244,249,199,208,99,211,38,17,240,74,68,66,48,135,77,217,241,99,125,80,120,17,241,145,219,192,27,120,221,42,164,101,181,185,15,3,51,195,213,109,132,141,248,232,135,32,188,227,113,10,193,61,149,232,100,86,183,158,205,135,156,41,11,111,236,11,121,16,231,36,77,132,118,2
 14,56,104,230,239,209,240,39,229,146,248,76,152,47,242,133,251,16,199,31,58,211,249,104,69,65,149,205,45,71,213,22,76,75,251,42,125,212,26,211,248,32,217,217,49,221,235,155,60,68,166,93,166,191,103,164,118,218,195,240,141,198,123,106,96,90,71,108,98,218,252,112,52,192,198,96,202,59,242,55,106,4,172,154,59,152,121,7,58,144,238,212,161,107,34,212,3,94,188,140,40,246,88,198,216,225,2,79,120,86,41,164,65,46,137,159,181,58,92,121,160,217,87,20,212,8,195,59,235,182,104,1,237,77,109,147,34,72,100,137,250,111,252,8,173,127,174,8,223,101,90,204,129,198,161,19,227,60,57,86,177,184,152,95,203,35,41,197,190,224,93,178,10,126,169,200,73,17,106,218,195,220,106,120,137,242,40,26,4,115,195,181,164,84,133,223,118,169,177,188,73,0,7,150,41,61,126,18,71,21,105,76,43,141,119,253,149,240,62,92,76,217,225,170,134,41,51,157,174,233,68,197,45,208,148,206,43,177,131,134,85,253,91,163,117,122,242,91,31,205,16,144,18,173,22,173,30,14,15,24,142,17,44,191,244,163,209,6,110,49,190,247,102,85,83,10,41,146
 ,29,83,118,127,85,190,27,194,162,202,104,168,245,165,148,107,78,218,40,234,50,233,153,99,33,0,242,226,116,242,63,106,58,239,128,246,9,129,176,55,89,236,245,182,93,67,136,192,250,132,196,248,134,54,35,136,14,114,137,25,59,237,134,200,190,6,158,141,171,180,195,101,26,244,42,43,27,103,189,121,19,57,139,143,88,109,145,57,81,160,99,120,115,214,78,157,12,232,168,24,57,191,0,220,218,201,42,70,186,4,49,138,170,47,255,158,33,199,179,229,113,111,42,187,218,27,243,95,83,145,254,24,247,105,10,170,193,178,181,177,53,228,246,86,116,141,251,182,44,109,15,97,38,232,84,91,27,112,168,143,140,108,216,146,61,11,201,190,92,36,231,168,77,88,57,81,75,158,129,88,227,20,248,52,3,45,17,65,186,216,124,171,50,215,52,23,3,180,9,0,252,115,187,58,93,227,151,49,124,59,158,132,153,81,101,107,74,197,66,223,75,64,202,132,217,251,17,36,120,199,248,213,9,161,131,189,239,6,148,102,83,107,84,119,73,54,59,162,153,44,236,190,47,3,172,13,142,159,108,170,77,218,25,193,246,79,232,51,164,99,0,130,152,180,172,18,94,229,
 19,240,101,249,45,76,22,17,53,193,0,182,37,203,65,72,215,55,84,99,245,92,57,10,250,102,89,154,188,243,72,204,221,101,68,73,193,76,100,247,46,244,181,163,44,71,148,174,251,199,77,168,176,221,29,240,124,182,88,55,83,151,234,94,126,114,153,144,12,160,113,6,43,114,63,184,174,31,184,172,80,131,223,147,127,122,12,218,211,198,128,36,252,212,249,52,199,202,158,226,62,102,226,251,96,221,241,247,73,78,172,44,163,89,153,32,100,59,217,18,92,98,0,136,172,37,12,140,161,162,95,137,7,111,41,90,44,114,27,183,125,136,128,137,107,222,225,146,250,5,103,47,89,244,113,221,187,148,211,234,102,75,20,220,234,49,29,219,209,52,236,229,147,105,171,174,203,69,144,78,135,159,180,53,211,23,192,227,5,33,89,253,30,11,77,9,178,100,228,158,83,82,35,103,49,158,236,21,93,143,13,161,189,174,131,159,86,205,237,73,32,77,184,255,11,89,198,177,204,116,90,237,11,50,75,61,203,238,161,136,86,159,5,109,106,148,139,151,195,49,97,192,182,126,209,216,108,148,212,192,234,204,33,88,10,136,162,106,181,157,81,47,105,161,76,164
 ,125,20,187,82,253,170,99,172,73,166,209,71,255,92,16,126,26,2,112,221,250,1,104,125,221,230,224,72,82,99,70,219,137,251,79,143,129,107,87,176,175,155,147,6,92,201,171,59,178,60,147,121,142,122,70,39,15,171,180,28,54,14,23,108,42,26,210,141,11,162,170,60,140,145,87,208,160,168,193,107,108,193,217,57,157,98,44,17,169,84,30,248,231,162,47,242,40,28,98,12,155,132,122,115,21,80,83,110,73,204,14,6,246,202,54,158,153,82,81,55,81,146,249,253,115,156,217,204,55,246,19,195,100,185,23,139,154,216,56,24,26,140,35,241,160,232,103,134,183,198,34,229,92,24,28,227,153,93,134,113,122,164,51,15,158,190,248,66,147,251,88,109,126,84,69,24,141,250,152,242,199,219,173,239,102,204,135,212,29,217,124,85,24,109,132,210,101,2,252,35,243,92,156,184,47,132,248,86,138,45,191,58,201,221,86,31,116,124,192,14,37,26,164,45,109,169,142,120,17,221,139,178,17,88,189,226,57,65,117,53,103,139,172,194,0,199,124,117,184,241,157,14,22,227,80,227,16,64,215,230,28,110,128,165,45,28,61,60,135,63,218,182,28,190,46,136
 ,123,105,45,47,23,64,244,16,102,182,44,190,191,158,40,173,22,231,32,51,69,227,172,57,103,35,219,195,119,39,130,216,166,4,103,31,20,154,146,172,140,114,109,81,89,12,208,62,176,102,254,99,100,134,123,19,45,225,163,96,73,101,125,199,25,48,211,60,202,131,100,187,135,166,195,166,143,211,35,214,16,184,181,92,98,247,69,12,172,68,168,15,4,175,147,49,101,251,152,190,70,145,240,146,80,102,178,200,149,206,199,233,53,96,116,209,78,235,64,12,235,143,116,96,121,149,68,202,162,79,181,181,113,18,186,164,16,25,176,122,107,25,131,188,10,173,18,71,44,233,188,55,187,191,136,62,166,185,12,7,206,244,245,10,185,56,93,188,76,47,62,247,79,122,185,73,169,121,7,254,211,161,84,63,123,225,59,10,117,56,11,127,220,235,151,18,140,6,24,58,26,139,46,98,8,192,224,156,252,211,223,235,133,131,163,231,108,121,80,198,81,124,147,31,75,67,124,131,150,85,190,165,133,48,224,63,97,105,66,89,13,167,119,217,141,214,220,228,253,76,253,192,179,98,253,236,34,143,115,156,251,76,119,39,106,27,98,8,118,253,40,70,193,120,12,13
 9,55,151,146,136,187,96,184,12,63,165,166,26,252,153,24,144,177,153,74,117,224,233,186,189,32,80,175,25,0,243,43,106,243,90,118,187,83,202,85,138,255,76,36,183,138,109,37,94,233,206,248,43,37,2,166,251,100,210,228,106,35,164,194,185,132,107,24,95,124,195,87,96,124,110,106,140,234,59,211,55,223,167,3,81,82,210,4,38,123,179,155,194,236,176,254,181,194,193,120,121,194,128,65,117,86,107,99,137,160,235,25,208,50,230,107,118,116,191,50,138,80,191,123,126,24,147,47,156,190,12,171,214,8,106,248,184,194,3,200,171,23,230,27,146,18,162,50,180,75,238,41,228,54,107,191,17,65,182,235,92,234,228,127,98,35,234,114,146,252,137,216,108,70,252,25,196,46,147,63,66,107,195,83,11,40,115,145,67,82,56,185,43,4,42,18,200,70,240,13,31,164,50,216,21,223,221,79,15,100,189,187,115,138,133,253,196,237,164,75,236,236,45,115,98,232,239,156,215,248,108,218,138,127,64,215,219,129,29,25,52,210,124,3,251,88,86,50,164,88,172,159,143,17,60,89,35,191,134,157,166,183,5,64,75,64,59,151,27,55,132,160,14,136,211,247,
 101,150,185,143,202,197,199,61,37,219,19,166,163,92,32,250,13,87,80,109,224,42,103,79,161,154,136,182,18,167,34,247,221,39,190,173,111,88,125,93,176,221,171,232,210,147,163,227,249,208,37,121,154,99,184,246,22,171,141,48,82,223,200,182,254,176,67,160,239,23,135,71,11,191,252,112,161,159,181,186,96,75,217,209,189,248,247,172,205,115,253,213,108,163,53,203,145,108,109,245,84,66,157,213,118,241,21,118,231,161,210,79,14,53,129,78,146,4,148,167,146,167,35,191,241,14,148,248,54,220,186,70,84,52,198,104,38,65,245,47,10,245,55,167,90,30,75,233,124,145,54,172,152,253,21,95,253,241,115,204,170,120,236,155,173,61,8,193,36,162,172,208,27,141,247,180,101,210,253,157,42,169,100,162,1,3,24,11,41,61,150,110,104,193,43,85,13,197,17,212,191,73,88,190,85,30,5,76,239,94,102,195,251,5,29,87,108,12,176,246,253,75,162,120,123,221,127,33,118,148,19,37,190,154,124,99,59,132,244,109,69,247,198,175,83,59,47,35,148,250,225,183,85,9,62,199,121,55,228,137,41,93,232,14,25,155,181,249,29,222,69,169,104,173
 ,44,245,25,52,250,202,250,220,144,241,60,149,57,244,186,197,244,252,106,15,130,219,220,60,145,209,159,54,254,102,83,132,162,251,183,192,52,37,18,172,179,55,213,77,102,127,56,6,15,165,167,204,0,224,240,158,107,166,244,228,164,70,216,96,232,182,128,246,97,228,112,2,105,234,235,130,225,188,212,182,32,253,94,74,200,199,187,120,196,195,25,13,185,242,70,86,65,53,94,18,95,200,3,149,60,1,225,241,21,69,63,52,174,3,237,154,33,18,240,90,167,83,109,124,120,131,3,183,129,86,26,46,74,195,189,71,244,181,217,124,85,238,132,241,25,92,229,214,185,44,135,195,10,137,21,245,123,49,25,253,34,221,100,16,246,190,128,13,59,187,5,244,219,225,241,114,250,129,32,176,192,237,99,64,58,8,94,59,155,102,156,165,23,198,205,219,201,125,254,56,200,114,245,42,107,72,71,167,211,254,10,103,106,166,103,2,213,101,61,70,215,254,65,69,26,156,232,166,239,128,235,241,231,232,40,255,85,207,180,60,82,33,249,250,152,201,133,31,247,81,153,33,62,18,7,136,4,72,43,226,109,223,255,171,230,60,32,2,1,194,108,175,117,82,39,19,1,2
 29,136,225,110,70,62,232,166,115,0,59,236,56,200,220,196,246,92,130,58,250,117,108,9,163,84,148,159,75,52,163,41,60,185,229,115,98,240,93,201,125,17,161,235,96,190,73,97,43,111,227,199,112,19,249,197,196,194,95,206,52,144,205,203,182,82,17,121,185,230,25,106,167,221,49,163,0,13,234,109,125,120,179,236,252,165,155,169,92,200,52,41,124,73,49,181,23,44,51,38,110,116,167,18,10,55,4,242,70,153,116,84,142,228,113,204,240,247,86,87,137,24,14,239,19,8,178,220,205,226,3,60,219,168,159,197,58,205,211,114,101,73,231,15,60,223,179,141,117,80,44,178,168,73,146,154,35,80,157,193,34,131,21,73,217,217,79,246,38,162,93,152,237,197,216,169,224,92,136,49,100,255,205,254,88,103,20,131,47,6,128,61,115,222,70,13,220,95,105,74,124,45,157,72,59,127,112,124,239,79,167,128,183,74,182,32,88,75,26,242,110,230,236,106,250,224,34,90,239,130,185,132,75,234,15,29,3,225,86,6,226,215,247,102,156,127,114,93,55,235,105,243,207,119,22,141,201,3,190,115,12,115,204,26,134,69,200,109,251,116,214,134,38,152,212,20,
 147,141,93,42,34,89,95,159,185,174,55,238,133,71,27,255,19,198,2,177,121,80,150,27,92,208,121,143,5,57,237,36,45,120,26,56,104,189,235,132,252,166,101,51,11,240,104,98,206,73,101,218,96,226,41,224,58,137,153,43,205,15,62,185,238,215,38,39,114,180,231,115,64,157,125,20,100,127,222,200,63,190,99,84,110,167,106,230,181,20,48,193,6,178,106,185,215,111,201,63,189,72,236,221,97,198,30,14,47,11,193,177,13,179,10,30,186,154,127,235,46,90,17,26,129,120,67,247,122,154,227,44,148,252,179,68,199,148,113,63,29,82,21,10,19,134,20,21,204,233,166,180,61,233,102,184,46,208,228,142,112,48,242,174,141,9,177,44,47,240,141,109,30,123,206,9,173,168,238,231,16,241,127,109,48,137,10,65,62,70,18,206,12,122,216,173,25,113,15,57,215,13,120,195,94,93,216,94,131,139,188,250,70,39,68,183,86,71,43,126,2,26,224,168,224,202,149,70,17,16,166,230,64,139,229,6,29,118,181,253,196,158,187,52,10,111,198,187,130,29,49,0,20,224,45,130,201,32,107,212,34,250,248,142,150,83,136,131,52,33,184,204,190,228,232,248,28,87,
 140,186,254,222,65,167,62,112,103,167,200,248,208,117,217,112,254,151,66,6,2,193,183,223,5,198,125,147,53,59,108,84,227,117,10,247,233,1,54,2,203,121,214,173,9,232,169,178,126,173,138,228,14,145,20,171,153,238,94,83,65,37,14,254,56,181,16,101,20,141,103,13,226,135,136,31,240,123,98,78,46,231,120,103,78,104,113,143,91,141,30,241,111,19,166,247,174,241,239,140,33,39,15,196,251,174,124,200,204,91,212,182,156,41,219,102,252,117,237,180,172,146,58,39,135,127,130,16,112,199,239,1,129,166,90,154,22,220,148,168,68,198,92,158,106,28,233,194,44,53,140,97,186,177,3,212,158,154,216,155,133,6,157,21,22,182,144,132,250,205,85,249,44,150,84,4,123,48,88,175,118,10,85,245,204,14,91,229,117,205,233,74,215,188,67,201,1,180,159,195,31,224,91,168,123,61,156,67,44,229,99,102,137,208,237,31,131,214,162,156,74,40,23,46,146,161,233,218,68,202,240,98,68,56,11,90,251,72,161,0,157,97,167,132,33,251,97,140,221,28,238,63,235,26,177,207,56,140,75,128,112,136,222,202,235,140,148,25,107,164,80,85,169,247,29
 ,26,217,91,76,242,155,219,168,5,138,183,27,28,166,235,231,66,172,166,148,9,82,84,121,193,8,1,109,24,242,173,8,145,96,87,205,109,5,21,139,101,247,149,227,16,52,52,168,15,184,121,92,214,198,178,253,141,177,177,235,201,231,222,147,162,95,142,186,61,255,51,81,228,8,70,38,244,168,137,190,45,99,248,155,6,43,164,68,71,87,193,30,175,83,36,190,115,78,81,77,218,69,76,107,29,141,197,236,12,15,197,115,70,31,33,246,225,175,84,58,244,193,29,100,87,136,78,127,54,67,34,68,194,67,1,168,209,110,225,207,218,30,145,11,6,100,188,98,59,158,94,164,71,95,248,162,221,106,206,91,11,228,215,71,148,171,16,191,237,117,28,56,242,58,14,228,131,249,242,69,116,10,177,147,11,51,112,56,20,17,1,207,33,27,173,190,83,79,33,70,5,229,60,126,95,167,210,80,215,102,96,202,238,46,100,198,57,15,105,38,143,123,146,241,149,41,153,10,5,139,235,213,8,78,27,174,203,2,178,59,50,219,63,95,190,147,108,92,219,245,69,89,190,241,9,131,90,183,40,42,6,191,49,13,233,201,222,169,52,205,155,55,197,33,1,227,227,31,8,254,55,83,114,32,22
 7,1,77,234,12,118,94,246,122,205,49,100,76,75,9,232,51,17,108,99,88,69,102,154,147,228,214,106,79,247,187,27,76,244,175,98,169,133,201,186,99,16,239,111,104,190,74,232,240,147,22,73,58,44,152,116,131,115,92,246,120,63,49,113,44,160,7,210,145,205,118,48,229,168,252,185,151,255,242,83,93,131,94,224,75,55,43,43,193,17,49,88,109,235,148,83,23,18,124,142,101,104,255,171,41,70,124,85,127,204,20,181,229,134,188,248,244,227,97,17,165,64,202,183,3,27,198,109,237,200,41,87,238,247,1,55,132,131,217,18,15,123,220,180,244,42,239,5,73,38,78,14,79,199,141,71,147,14,167,192,123,170,237,38,117,178,52,144,157,80,0,94,70,196,236,246,240,109,181,135,55,93,230,133,30,104,188,233,50,183,42,1,214,228,171,156,153,142,113,138,158,103,52,131,121,254,164,249,5,84,46,222,47,36,11,176,84,44,119,10,198,113,74,69,138,125,189,170,64,213,28,49,32,14,171,157,210,131,148,0,89,30,191,128,8,146,97,63,236,225,137,139,84,34,182,162,187,153,232,96,19,254,204,151,114,0,191,113,126,229,95,127,115,194,254,142,194,46,
 112,214,61,5,12,56,141,115,121,45,213,142,44,241,213,85,159,223,97,25,202,222,70,178,149,107,130,59,239,159,243,23,15,11,21,154,205,1,180,45,99,5,25,21,118,171,24,110,22,68,51,140,157,146,9,94,146,150,48,92,233,246,41,53,105,147,209,112,17,206,158,229,226,38,74,181,56,19,82,157,8,48,255,20,78,151,38,196,185,25,100,192,180,37,70,102,44,178,164,0,145,42,255,248,106,209,171,115,143,194,96,214,92,133,101,250,168,45,118,214,55,134,56,243,16,8,81,119,192,73,236,56,55,30,34,255,234,217,198,253,37,144,172,118,39,170,63,44,38,113,229,209,61,108,247,231,117,143,211,124,68,184,119,119,8,102,200,157,232,136,166,83,186,29,107,112,235,184,82,45,184,97,173,79,137,48,34,193,81,20,240,249,31,216,214,74,112,146,152,163,91,231,232,107,185,201,78,151,170,177,5,160,143,174,253,169,63,23,167,106,212,229,246,79,34,187,251,90,87,146,10,224,12,99,16,97,90,7,123,220,38,55,71,14,13,140,159,200,10,99,251,49,24,104,242,254,7,119,81,117,80,58,160,38,237,162,15,102,42,232,171,26,144,187,102,212,86,150,160
 ,103,216,255,212,131,93,91,6,40,138,120,247,146,58,137,124,68,81,137,145,187,79,225,159,184,239,137,88,161,51,239,157,119,210,230,186,142,52,173,57,157,45,170,159,13,158,194,221,61,21,1,218,245,208,170,238,204,76,61,211,204,81,21,228,217,106,234,228,112,30,8,208,219,164,200,163,131,28,180,38,179,67,107,134,60,142,154,11,86,174,80,149,5,76,41,197,118,223,30,130,117,67,129,254,199,22,12,239,91,87,143,30,155,223,185,11,209,60,45,32,143,12,83,235,133,189,248,80,176,119,100,228,67,12,171,250,217,0,213,203,172,181,209,175,143,34,88,254,50,157,109,180,68,23,207,73,58,52,160,9,130,248,27,23,158,162,193,7,3,163,86,153,249,228,6,42,215,186,211,10,182,47,7,238,154,81,192,117,25,236,197,210,10,226,57,54,152,171,167,97,75,31,192,204,236,213,145,136,178,225,254,119,43,246,137,101,24,211,124,220,20,188,201,195,153,217,193,51,65,178,232,208,22,164,202,122,76,229,111,119,89,19,20,100,205,163,28,85,13,207,140,117,207,204,7,54,249,181,147,182,13,65,196,250,253,20,143,35,125,252,5,155,164,215,6
 9,191,134,78,106,244,245,160,15,122,138,80,20,79,191,193,184,166,228,227,11,223,249,99,222,67,107,225,120,142,216,44,217,131,149,198,38,39,97,151,211,43,195,189,212,64,106,236,166,65,2,19,26,66,46,97,164,31,32,123,150,192,111,14,13,200,49,170,127,154,127,123,58,241,119,145,187,119,221,214,141,205,64,169,47,229,161,100,147,81,195,129,130,96,112,58,144,209,72,71,194,208,240,212,185,163,172,77,144,50,124,162,235,56,51,131,221,224,236,109,101,214,217,69,197,20,25,48,26,206,62,202,125,240,146,17,254,80,60,20,112,43,219,3,108,96,46,207,38,82,154,157,146,29,221,77,33,25,133,250,99,95,55,188,213,160,139,23,208,248,231,44,150,231,157,238,145,27,216,158,31,17,99,156,188,82,232,149,158,203,218,108,222,204,53,250,17,139,87,173,30,60,113,226,207,112,85,125,8,212,245,79,174,120,167,154,164,53,191,205,201,208,151,45,230,161,226,209,115,73,117,252,87,15,242,176,230,20,124,97,14,127,236,196,227,155,247,58,37,21,72,173,252,114,26,239,96,145,87,124,72,186,165,102,36,13,208,192,84,1,182,177,150
 ,20,130,56,147,41,119,155,63,42,109,207,133,249,162,147,108,53,20,3,104,81,15,72,173,122,254,252,229,65,243,206,130,121,81,184,158,208,132,90,109,46,220,56,37,180,19,75,79,22,104,49,238,15,6,65,118,252,121,29,186,6,197,63,154,39,170,76,26,237,162,119,63,132,120,146,86,118,196,192,52,25,180,254,50,41,81,101,33,45,42,51,138,210,195,116,246,196,69,180,223,136,119,99,203,11,9,238,191,152,23,181,62,202,9,100,110,90,228,197,198,181,255,126,226,228,99,177,165,239,17,53,138,130,202,241,64,92,138,102,88,73,39,36,191,161,157,102,157,65,222,18,218,168,87,129,24,17,55,197,113,191,50,103,210,55,3,238,166,49,144,116,201,129,26,166,98,182,246,132,110,175,188,11,25,160,170,142,22,72,240,41,47,164,65,172,238,87,104,172,166,195,46,157,74,177,97,119,127,1,210,15,124,255,63,75,159,220,105,181,168,204,176,237,18,202,88,100,60,201,205,240,225,127,114,172,128,50,50,188,254,170,75,52,228,224,240,240,249,44,109,245,206,21,109,224,97,74,112,58,41,1,249,96,93,199,251,42,40,169,95,116,194,197,140,69,32
 ,72,39,242,141,230,173,67,14,161,253,22,207,104,129,191,125,47,82,223,193,118,213,94,81,19,37,67,105,237,201,166,130,170,217,60,175,74,207,62,177,148,230,140,210,164,18,252,85,191,177,68,32,64,127,78,103,92,228,15,215,183,15,54,91,41,10,134,75,87,96,105,97,159,212,131,25,119,77,35,162,170,170,197,9,54,215,192,245,151,53,202,215,184,61,191,56,135,208,218,167,188,27,224,8,193,160,250,159,47,14,88,73,21,35,177,18,22,24,246,33,51,89,221,0,198,239,11,207,174,95,223,138,33,149,95,16,206,78,182,88,122,238,182,142,136,41,55,13,75,3,40,142,139,225,209,74,77,110,29,127,80,146,252,157,224,0,106,197,156,158,18,5,249,121,230,142,70,53,188,255,255,227,42,133,27,217,223,25,193,18,22,233,81,51,194,43,66,133,238,74,251,69,177,168,77,62,149,140,130,68,203,238,40,184,223,175,26,36,209,2,7,22,226,162,71,250,29,193,106,144,82,69,104,216,126,154,209,48,198,121,86,250,174,70,33,169,111,145,11,25,189,239,27,39,253,120,105,60,115,206,17,92,158,228,103,62,209,247,162,146,143,15,107,17,12,18,124,127,1
 16,33,200,244,53,122,201,65,14,58,188,155,90,57,136,32,114,201,174,172,1,96,92,42,209,102,220,33,73,52,103,174,140,252,14,170,132,116,32,92,10,123,0,9,250,125,52,127,14,49,160,90,12,36,202,30,119,163,194,80,179,26,63,212,213,163,254,132,253,121,126,110,208,241,11,107,20,176,136,62,251,241,137,111,73,128,244,121,17,174,16,205,82,160,220,71,166,0,77,53,200,208,185,165,127,228,209,163,122,63,76,73,249,11,246,65,47,26,85,118,105,16,11,79,247,138,170,73,197,30,87,211,190,180,92,219,255,203,130,7,217,204,65,223,81,193,105,29,210,39,104,26,237,47,69,121,199,30,67,152,100,176,70,212,140,26,150,219,122,66,131,233,124,82,45,25,1,141,18,166,23,179,147,156,162,132,166,33,20,121,211,179,171,228,5,59,47,113,229,21,108,181,103,112,108,177,226,135,126,204,36,224,133,30,23,77,105,27,116,79,222,59,50,44,152,92,20,5,0,37,124,252,21,247,243,102,10,31,173,9,62,2,43,31,233,210,96,197,67,30,43,147,64,36,179,93,26,31,103,116,139,118,47,119,86,187,183,107,132,200,5,67,240,172,193,114,87,62,200,49,23
 5,214,99,133,26,223,19,149,66,121,47,150,231,245,35,250,212,31,63,82,59,73,117,93,221,98,93,150,109,14,159,95,218,251,108,86,112,22,117,134,222,79,81,17,77,14,41,178,192,5,156,121,122,171,212,224,85,55,205,191,57,188,198,188,234,159,66,6,93,220,2,174,37,51,230,5,154,246,74,63,124,96,151,57,171,43,138,3,48,197,4,145,49,111,195,203,148,108,79,159,139,227,43,230,112,248,67,154,40,37,209,109,7,227,28,193,127,41,139,93,197,189,162,254,18,136,38,142,195,210,115,5,144,255,246,36,107,28,135,141,147,189,158,210,132,249,65,114,122,209,181,236,248,221,33,145,216,117,174,212,127,240,136,98,91,82,119,147,48,137,35,135,41,70,9,18,110,189,2,110,108,9,228,190,121,162,194,116,63,121,16,101,88,69,23,177,92,203,54,113,205,143,185,234,37,134,221,18,93,185,204,254,211,97,139,39,223,137,75,39,199,1,45,112,52,49,217,97,75,29,187,131,186,100,155,195,10,80,103,232,86,243,16,10,227,49,63,5,117,235,133,107,202,244,164,63,248,13,95,113,233,154,53,66,153,204,120,43,193,145,100,117,10,49,136,252,240,184,
 230,142,144,241,162,143,231,86,177,90,22,88,64,41,113,30,125,107,163,7,0,86,157,138,158,102,74,123,199,95,229,32,231,162,18,40,130,251,187,223,41,221,223,118,243,201,235,38,196,165,19,249,25,97,99,3,189,89,26,29,194,14,233,244,229,67,190,214,72,8,6,45,254,123,168,255,126,214,38,240,49,245,96,42,156,34,134,158,196,119,28,235,203,43,219,223,75,28,200,48,185,153,114,233,82,84,156,190,84,6,90,236,93,92,30,176,215,147,225,106,64,200,250,232,112,100,252,21,226,200,224,48,93,156,34,62,179,31,65,11,71,138,64,221,53,234,125,127,41,56,190,105,81,158,108,204,220,98,150,5,81,164,143,100,47,123,142,12,60,73,147,161,249,204,236,45,192,57,254,29,122,129,72,127,15,167,200,9,50,82,58,223,67,186,78,246,221,12,243,113,197,31,113,45,104,170,178,239,79,240,223,88,148,164,40,210,225,44,168,148,240,82,176,133,28,79,242,63,163,115,94,179,179,211,173,8,159,215,77,106,251,79,235,217,24,147,178,40,28,162,71,13,164,41,237,202,118,120,190,169,154,227,15,102,240,234,56,115,151,138,66,79,5,236,254,217,184
 ,111,216,248,55,140,189,200,174,103,82,1,213,195,93,247,104,137,78,191,48,37,181,94,223,197,87,40,34,240,33,164,195,3,150,229,231,49,57,177,53,15,165,121,67,43,187,174,10,216,158,18,249,83,37,231,252,176,115,154,76,93,198,8,247,232,54,17,207,141,248,82,120,78,218,78,107,159,202,216,9,67,219,104,53,218,79,146,86,10,89,40,21,184,241,75,221,19,96,135,140,94,248,19,196,26,174,234,252,115,110,224,67,209,164,40,156,252,56,100,237,195,213,73,252,192,41,120,5,74,250,36,243,14,179,101,83,43,183,120,93,167,1,223,134,207,239,96,207,189,6,102,66,198,91,199,58,146,93,173,140,245,57,231,74,112,182,53,187,168,39,228,166,95,163,44,28,60,203,101,194,45,241,154,123,13,5,237,235,6,91,132,105,66,204,129,204,227,251,196,178,211,39,227,72,55,219,216,134,168,108,154,67,250,215,174,25,22,69,170,211,150,163,36,94,191,160,181,58,69,105,173,185,6,62,125,143,168,255,58,158,203,77,211,169,148,5,203,206,190,26,55,164,111,248,117,147,182,58,217,95,107,223,156,25,31,61,162,37,220,197,204,156,79,41,30,243,2
 09,156,76,64,234,160,150,186,127,78,240,31,215,250,104,29,136,246,5,166,200,90,195,167,220,85,105,119,94,108,1,241,219,153,222,19,133,97,227,164,42,67,60,150,107,119,241,121,7,174,149,35,0,253,26,17,157,10,187,52,144,107,66,144,179,145,129,125,107,41,97,100,235,235,217,92,205,185,212,36,182,119,252,83,212,180,6,165,214,210,108,55,250,39,60,222,80,87,76,126,234,56,198,18,213,119,240,102,53,156,172,17,101,186,196,37,17,87,34,93,248,158,133,86,109,6,26,171,77,120,120,32,22,175,190,119,193,12,139,236,110,91,131,102,189,134,140,181,82,25,16,41,80,124,65,97,200,10,148,186,204,173,220,246,95,75,237,166,170,17,66,175,149,140,144,6,45,18,230,55,89,92,133,82,93,6,188,197,25,249,13,28,5,79,162,221,5,47,61,107,149,27,212,37,27,235,5,40,6,191,12,16,107,152,117,97,169,238,76,89,30,253,228,115,192,23,46,17,28,85,245,156,0,148,75,70,234,21,167,134,88,181,158,43,203,241,136,101,251,14,157,247,240,253,223,144,173,158,184,195,138,154,170,25,236,114,185,42,241,60,135,46,173,72,41,233,116,89,72,
 49,255,107,33,38,74,15,96,159,108,143,177,123,105,17,163,99,31,5,100,37,112,35,13,214,53,141,167,71,154,117,99,88,235,203,147,170,16,219,85,171,118,75,6,219,63,78,16,192,223,57,129,197,119,246,84,103,98,243,22,113,151,218,154,202,177,41,120,157,171,196,65,228,44,8,227,250,171,196,85,138,71,12,119,225,8,112,134,68,168,189,118,89,23,54,252,153,236,43,115,41,229,177,246,33,92,123,127,124,112,178,252,25,233,60,117,239,164,45,56,14,45,38,206,208,80,218,139,137,45,200,201,105,54,181,84,242,246,2,208,26,204,47,16,194,238,71,66,119,112,233,16,56,170,192,157,77,239,241,67,107,5,231,98,145,112,243,3,127,46,64,143,163,230,88,210,72,231,52,171,143,125,158,249,69,24,6,47,49,122,178,250,117,214,39,76,251,95,84,92,58,186,225,166,87,83,56,97,127,111,40,246,155,225,62,126,46,54,34,160,224,182,58,125,51,176,9,116,23,207,179,210,118,136,239,29,28,145,52,47,194,141,111,62,226,75,8,158,182,144,35,52,215,42,200,168,37,105,209,87,40,31,43,54,48,162,196,203,226,143,65,62,142,242,57,251,146,20,252,1
 70,112,165,18,186,138,50,21,70,71,158,99,39,135,192,171,219,148,156,209,30,33,198,245,21,146,163,117,150,53,166,208,150,159,29,70,83,167,130,154,174,132,28,214,162,115,21,193,232,78,78,70,119,106,180,238,65,204,230,209,84,179,195,68,90,146,249,169,183,106,196,3,191,238,191,94,224,108,91,23,177,97,127,218,237,76,157,122,5,40,228,66,183,13,224,4,212,77,138,167,233,134,4,152,160,51,157,33,94,123,2,235,56,176,132,216,179,88,234,107,170,77,77,178,85,185,234,251,187,234,147,228,209,146,20,150,39,195,229,82,97,241,32,138,30,181,31,2,190,15,39,104,46,222,225,182,149,98,230,248,116,114,36,245,246,70,243,23,59,172,196,2,26,94,252,19,6,178,169,189,51,108,94,49,33,88,114,149,221,93,57,17,172,70,95,25,204,190,150,10,205,129,235,102,2,57,106,252,197,89,80,68,96,57,14,240,12,167,214,3,165,139,165,184,218,6,73,164,22,131,128,195,36,124,85,200,106,210,65,54,60,31,35,227,219,12,152,36,95,172,185,126,26,139,101,56,193,94,200,201,149,197,28,177,174,33,13,136,26,142,164,172,69,116,72,18,242,21,1
 20,41,248,179,204,190,127,2,133,62,190,2,237,55,138,200,12,122,246,221,52,241,91,23,243,144,183,183,205,27,32,117,226,44,239,0,113,76,176,44,200,126,69,42,162,54,84,228,253,177,154,107,190,25,113,98,237,161,135,140,98,238,91,83,191,110,43,100,144,72,116,125,230,63,252,140,39,166,88,90,172,133,91,173,254,4,27,187,217,240,125,98,210,17,143,92,206,113,242,45,156,100,84,245,182,217,74,241,8,174,45,66,160,244,206,23,98,25,65,102,224,246,82,152,86,90,72,247,233,161,115,202,32,91,115,43,72,222,97,216,180,67,62,99,250,133,243,1,6,57,197,185,16,176,93,174,37,151,200,131,65,166,240,8,15,28,219,183,110,206,123,12,135,82,75,88,120,119,51,58,94,25,20,225,112,140,83,2,12,7,100,174,79,15,207,176,217,113,186,168,31,53,100,194,125,229,9,116,183,24,239,181,243,226,248,236,213,20,161,104,231,71,190,142,16,193,169,122,2,74,45,10,210,235,169,249,141,88,105,215,100,241,64,45,144,209,164,210,21,211,140,173,220,235,140,142,229,152,192,154,210,226,117,250,110,206,18,34,92,217,37,166,105,122,202,125,
 81,54,193,224,189,19,149,51,178,45,235,60,120,110,139,178,5,109,122,182,127,148,176,63,66,244,216,22,124,187,196,16,18,11,45,244,65,96,138,103,166,24,38,88,139,234,174,96,220,64,86,199,198,35,184,210,218,14,27,99,74,177,211,145,163,19,88,197,11,248,66,96,209,154,141,173,213,2,15,0,188,89,220,192,183,34,64,157,131,10,112,120,232,221,173,149,160,211,164,237,181,182,86,226,225,156,151,66,76,106,129,29,63,165,2,123,205,125,207,209,186,180,181,67,203,194,28,178,157,149,20,76,58,153,7,37,220,235,157,162,66,59,172,141,13,104,61,47,199,43,200,204,123,151,40,69,221,255,27,102,113,97,137,126,198,35,32,187,108,159,80,65,87,110,160,99,181,155,115,100,182,103,39,239,173,88,204,175,225,40,212,73,249,93,100,49,53,154,75,58,229,8,143,35,184,66,184,183,250,80,76,99,157,239,121,110,227,170,225,229,245,17,182,50,115,81,78,129,227,40,2,82,53,249,28,47,116,48,110,117,122,116,231,248,87,194,98,178,161,29,93,126,91,62,57,56,92,179,155,61,67,69,213,208,254,255,207,142,15,168,21,90,227,171,74,116,8,
 222,23,223,52,160,230,155,78,36,249,125,51,49,151,20,42,238,118,211,235,237,229,56,167,238,186,175,116,62,120,37,210,104,190,117,136,108,125,126,177,221,161,20,93,218,198,89,55,171,204,165,180,170,125,198,121,86,48,74,80,180,2,186,175,95,78,95,124,160,215,198,118,144,201,228,117,78,132,227,219,156,137,240,76,189,3,48,53,241,45,156,120,80,34,151,173,5,115,208,39,53,50,84,17,106,0,52,168,149,116,170,218,201,247,134,73,57,197,14,233,180,33,215,5,56,60,179,182,72,109,198,147,37,76,165,246,140,231,115,61,53,213,153,63,207,158,51,107,14,111,67,218,146,83,21,190,109,29,239,235,54,105,164,49,157,148,77,2,63,151,202,239,126,221,214,119,123,37,117,172,93,30,62,102,58,162,29,192,41,120,231,91,156,78,234,73,86,235,158,39,139,75,4,91,131,179,164,80,12,223,67,208,176,157,55,248,91,79,94,228,245,186,8,152,193,198,250,42,20,214,90,171,68,194,112,222,17,155,42,247,226,57,65,19,38,133,199,153,30,160,17,73,3,255,182,108,140,81,0,211,221,192,93,219,150,13,95,183,182,226,170,139,192,111,78,255,3
 5,128,207,242,107,88,6,232,56,60,250,128,62,207,59,164,3,47,235,31,133,247,163,212,209,181,37,128,2,44,210,94,98,32,119,4,58,114,81,141,64,105,246,188,202,181,5,149,165,130,128,32,90,242,200,110,214,43,96,122,47,92,50,213,149,197,8,3,129,204,171,0,200,145,186,112,92,243,79,126,74,119,242,49,146,194,78,227,58,98,17,196,190,24,154,160,71,88,166,217,238,157,58,26,159,39,231,111,53,105,226,247,153,152,148,83,45,235,23,18,135,137,229,32,230,242,146,121,182,117,85,116,120,140,244,124,178,27,87,108,1,110,145,194,137,40,202,131,80,139,11,238,104,226,45,174,27,28,227,122,46,55,229,69,231,227,57,231,11,228,50,105,171,130,8,112,133,53,174,187,126,138,185,136,138,48,134,37,169,207,17,180,62,136,158,87,47,49,231,37,6,91,156,118,200,114,37,13,126,2,71,209,183,80,214,1,111,227,101,214,101,95,62,125,32,100,195,247,226,158,129,3,77,149,18,172,103,26,162,172,143,85,13,89,90,88,193,70,250,153,213,107,80,232,14,218,233,54,129,68,3,151,105,168,26,14,166,193,147,168,118,187,10,179,129,89,122,126,
 206,104,199,65,23,241,137,78,156,71,23,20,86,237,193,169,245,98,96,150,142,254,158,151,55,52,100,153,17,229,168,68,228,132,214,87,214,216,3,112,128,39,48,141,71,233,91,249,255,40,31,27,144,237,62,147,92,105,26,159,131,243,178,13,194,59,214,117,250,212,147,232,92,143,17,3,249,194,230,112,228,80,206,208,125,107,113,197,127,44,31,65,90,85,84,187,232,72,206,216,216,187,3,119,127,33,71,78,171,141,142,209,206,37,142,127,70,165,89,79,228,121,191,242,164,40,107,211,116,36,63,41,119,47,17,23,41,123,42,45,160,85,199,230,203,228,122,47,232,239,36,92,70,242,198,174,182,40,84,91,207,41,130,42,166,166,94,222,24,97,219,118,98,80,156,189,49,242,46,121,111,156,164,114,181,18,42,191,58,228,123,196,190,93,76,54,144,101,122,12,182,226,227,122,242,28,144,150,62,71,193,51,66,255,31,181,68,239,138,132,174,115,113,100,43,189,195,136,35,124,247,102,37,186,4,50,0,111,194,222,137,227,171,237,208,81,60,216,175,125,134,150,171,88,230,241,38,6,56,144,22,0,11,129,240,175,217,216,95,225,139,111,232,144,47,
 222,145,103,19,119,173,40,137,84,45,106,86,83,8,122,91,115,3,79,102,45,238,214,201,24,198,119,38,4,213,129,34,183,248,166,97,211,12,10,253,37,1,77,210,42,128,236,164,143,196,137,164,155,123,246,122,64,97,94,64,70,235,145,53,93,6,191,103,169,36,85,233,14,127,115,208,42,199,86,6,81,52,60,26,170,107,176,224,77,245,71,181,120,70,149,22,178,113,132,23,181,223,253,234,78,102,69,244,40,242,15,190,162,68,165,130,171,16,211,23,220,96,188,197,83,217,121,230,253,34,182,89,74,243,121,67,47,51,78,227,155,13,17,42,180,131,91,87,137,114,108,167,145,178,195,204,4,40,104,241,218,133,161,249,209,194,215,155,214,250,198,99,29,35,93,64,37,123,130,76,177,136,184,13,85,75,154,178,64,83,120,134,243,13,6,82,154,69,218,141,208,212,162,54,151,219,221,122,12,239,165,133,217,155,38,146,8,108,163,147,223,145,98,204,251,71,212,151,227,43,26,174,89,80,86,117,137,53,22,247,70,171,78,255,5,73,85,83,225,16,133,155,144,233,36,128,89,189,155,116,189,248,134,85,124,56,23,193,10,112,166,133,69,169,145,30,2,127,2
 47,34,72,231,155,154,150,226,30,31,164,138,133,70,180,31,154,94,96,177,82,135,87,97,41,13,60,198,2,132,255,113,163,40,219,1,47,217,123,196,249,255,61,226,92,141,44,34,153,61,142,235,71,235,174,156,51,16,13,7,26,198,128,70,45,152,207,137,212,94,131,208,22,36,108,64,5,254,108,252,115,151,133,120,80,82,13,125,134,178,50,228,14,229,46,196,196,97,34,128,99,177,235,195,5,214,243,171,179,176,193,54,158,105,144,22,193,51,197,166,59,63,186,95,117,193,101,196,147,21,114,83,119,145,88,44,254,148,122,108,148,126,0,57,24,41,74,82,90,143,187,225,226,204,44,107,138,47,99,146,254,180,13,167,71,234,194,43,54,90,26,165,190,71,111,103,49,40,153,248,105,77,115,226,179,63,75,203,84,121,40,175,25,244,221,231,183,232,14,41,156,179,250,67,206,167,72,69,39,251,130,96,186,102,166,25,208,232,7,188,180,117,242,69,80,20,27,38,30,162,1,56,25,159,129,218,67,8,90,192,49,1,101,114,216,245,84,36,45,13,120,129,218,111,246,254,4,231,8,28,195,246,60,85,2,118,97,19,182,235,117,54,209,165,36,132,108,156,84,205,21
 3,206,54,107,77,20,50,72,64,248,110,51,26,231,162,95,96,67,29,6,22,224,65,173,151,113,16,55,28,41,225,95,156,215,130,17,202,69,181,177,77,112,156,135,209,71,116,234,9,30,113,173,215,189,72,108,146,55,199,225,185,115,243,119,243,83,81,201,71,88,133,99,3,140,113,41,3,218,69,182,6,129,179,195,192,26,88,5,54,119,22,61,99,27,36,163,162,69,223,204,149,253,235,9,227,254,118,82,158,69,56,109,208,171,157,220,183,157,12,110,237,248,190,35,129,86,33,189,199,153,133,68,3,96,33,100,87,9,72,43,162,146,51,80,31,60,18,216,222,224,164,152,27,182,246,151,48,105,92,167,59,90,175,46,92,51,241,89,55,193,254,161,101,239,31,65,58,4,151,97,229,229,220,73,220,166,65,244,47,243,63,82,168,21,122,72,107,171,139,67,100,146,195,199,143,193,88,103,81,143,222,84,39,193,76,115,156,25,35,249,217,104,123,51,9,170,224,253,82,129,8,182,196,37,116,121,66,155,246,99,146,38,247,111,104,37,213,61,180,208,2,23,206,16,136,20,76,84,11,54,110,24,143,106,225,140,208,219,193,87,82,75,8,37,134,146,219,211,181,78,169,110,2
 0,234,148,42,59,25,57,33,148,14,170,133,171,62,214,184,240,152,164,119,61,237,223,236,96,145,82,117,152,90,10,232,51,53,1,148,185,133,116,255,6,211,222,140,212,221,114,185,85,61,214,135,3,60,115,220,80,218,105,139,23,221,42,41,227,155,240,146,146,108,44,37,216,175,226,90,128,188,64,205,159,139,140,169,105,11,222,241,50,61,48,213,70,217,58,86,37,203,15,214,236,234,138,141,0,227,221,103,253,68,163,11,35,248,111,159,144,220,70,169,59,227,200,212,55,162,33,212,225,247,169,154,45,10,209,130,14,233,100,142,252,190,127,109,126,109,59,191,172,167,184,48,141,234,251,87,15,49,29,229,197,223,51,212,97,173,157,168,125,197,52,128,115,153,61,132,193,70,88,194,172,107,80,47,138,22,195,162,3,98,125,38,28,41,185,129,149,145,251,115,84,23,52,251,121,186,168,215,242,27,193,75,113,243,193,177,33,244,154,171,237,241,201,152,32,93,251,57,211,217,221,112,118,199,84,196,82,102,220,90,20,60,164,96,238,165,181,227,175,108,160,174,238,48,55,189,16,40,199,103,238,9,189,13,175,12,37,6,105,186,99,172,217
 ,8,204,214,212,157,192,158,79,93,30,184,14,238,248,29,218,219,161,160,106,245,27,88,84,239,4,0,88,96,70,164,222,217,166,166,4,153,113,14,136,129,133,135,160,166,144,210,28,225,197,181,21,11,123,153,131,171,249,168,21,181,248,54,172,86,20,209,36,91,41,20,70,152,60,106,244,103,83,115,235,151,176,179,122,174,95,202,40,183,44,96,73,148,100,14,164,112,241,252,116,117,171,0,156,48,188,168,120,141,136,21,93,116,171,250,217,205,168,187,51,180,195,113,97,8,228,247,65,61,237,119,119,61,157,126,88,180,159,171,254,137,124,223,227,80,14,37,108,76,235,248,208,156,118,36,0,63,139,180,15,252,136,153,158,193,244,156,101,237,17,220,219,45,45,141,141,60,230,41,71,65,121,145,36,84,25,65,210,63,36,21,130,4,136,41,184,129,218,248,12,190,206,65,229,34,219,6,57,145,229,242,244,71,57,102,71,122,29,12,111,181,6,96,18,58,244,193,24,207,197,31,66,70,240,208,218,88,147,62,50,61,178,145,128,243,118,162,88,59,161,3,7,36,148,110,13,24,97,150,133,33,185,245,31,172,253,30,183,158,19,62,217,249,125,122,53,103
 ,115,83,113,69,12,60,64,208,250,234,93,225,133,216,103,69,215,147,11,124,255,15,173,97,140,110,148,31,0,72,160,35,204,99,50,110,216,14,106,207,60,78,172,166,175,159,68,200,245,36,228,55,176,1,163,139,0,228,14,60,126,183,73,155,37,208,212,34,188,240,115,112,239,6,244,30,114,42,128,167,68,49,203,79,1,155,170,5,167,176,80,223,79,249,35,117,208,211,81,243,233,197,76,30,149,115,195,130,3,174,126,94,244,31,33,19,131,46,32,159,240,114,159,75,92,172,253,119,200,96,47,138,90,134,146,137,25,192,252,135,88,94,104,28,67,125,30,230,26,200,124,51,153,167,171,22,57,252,157,2,187,194,37,169,68,54,140,88,33,129,2,68,141,155,63,53,205,32,6,196,87,123,116,109,69,159,232,10,17,11,130,147,12,184,121,173,228,182,89,75,141,139,231,61,147,193,7,62,112,118,67,206,150,180,216,182,77,74,218,12,255,124,169,140,7,44,141,39,147,147,208,190,85,113,116,32,108,70,188,243,226,217,135,254,243,204,252,190,9,46,201,97,115,45,194,173,189,71,131,200,6,110,3,17,243,153,121,225,44,217,72,180,64,56,34,60,19,173,243,
 139,56,116,72,6,146,12,49,50,111,193,220,131,28,8,110,21,77,89,6,245,153,62,1,122,181,4,187,71,169,116,112,193,199,130,168,19,72,139,221,135,78,193,251,209,111,67,33,231,241,76,89,232,4,109,134,138,200,80,249,92,253,247,13,166,45,156,84,200,85,12,5,177,37,13,142,41,217,45,176,68,169,138,1,161,7,172,139,239,18,184,73,151,253,150,250,33,182,210,249,206,12,7,110,56,132,4,210,191,123,99,124,176,227,132,227,83,102,98,205,23,99,219,97,69,95,50,144,142,67,111,158,226,31,211,196,22,181,231,22,224,134,240,50,76,229,46,206,173,224,125,84,64,134,151,122,49,94,109,86,48,111,112,44,139,102,145,190,22,104,128,138,79,4,9,51,166,150,152,148,103,22,59,169,37,122,203,49,2,82,197,29,188,17,96,144,42,81,59,78,70,193,196,98,76,64,54,166,130,228,81,200,181,191,115,238,234,76,123,71,58,118,9,190,136,30,143,179,243,147,99,245,235,80,207,95,104,22,168,132,125,223,81,249,238,10,137,8,168,219,179,56,251,223,31,130,35,99,7,190,95,30,196,216,153,192,40,68,125,202,225,50,76,214,186,123,6,221,75,151,180,2
 40,84,43,56,50,220,123,39,53,187,74,74,66,227,224,243,88,253,238,93,79,59,250,179,125,228,225,194,115,249,41,68,25,44,38,50,68,210,195,78,248,59,199,161,158,96,133,92,77,224,211,237,63,90,42,51,116,199,153,106,80,239,14,98,129,11,164,232,107,219,97,177,142,125,112,224,8,110,140,166,227,172,203,192,158,160,244,51,30,201,142,233,51,94,4,62,37,100,172,102,116,91,98,94,201,249,227,50,246,119,187,1,235,169,84,100,19,183,29,79,149,164,101,171,181,75,145,89,205,123,31,107,111,140,68,224,231,91,11,24,229,218,209,232,67,157,53,205,197,30,112,203,169,124,64,3,0,78,183,216,255,170,49,148,190,201,175,66,188,175,19,22,132,206,77,75,147,166,164,65,108,216,234,119,124,186,155,188,225,139,17,182,69,96,182,44,153,22,53,238,172,200,137,9,84,89,177,175,127,220,105,110,253,217,80,244,192,154,128,214,134,20,172,11,197,217,161,89,229,5,14,227,79,36,242,24,75,195,183,84,194,69,154,200,241,24,197,245,17,198,159,160,216,217,146,49,123,204,70,239,129,223,189,13,72,211,89,65,245,96,48,188,31,185,44,98
 ,143,101,213,240,217,75,117,65,32,7,112,146,210,61,105,154,55,244,254,103,196,189,41,141,57,136,244,3,195,161,5,243,217,223,169,226,254,112,150,156,39,214,246,60,161,76,183,63,240,250,242,241,177,88,184,80,82,55,113,245,197,231,209,5,66,133,46,132,57,15,87,47,135,223,92,139,56,53,153,238,229,11,212,247,249,93,113,115,134,215,148,3,147,212,47,100,113,56,115,5,114,4,220,3,188,160,26,122,79,46,160,24,128,97,109,110,202,156,198,213,98,211,40,103,171,53,232,201,146,76,157,11,62,3,105,58,196,221,45,151,92,164,163,181,53,165,165,193,28,34,222,198,232,181,125,76,16,129,53,190,138,217,69,212,88,181,83,77,83,239,212,17,241,164,127,7,203,206,51,227,132,22,239,138,113,154,73,98,157,23,201,46,229,113,30,234,11,22,198,34,236,110,173,27,198,151,222,137,23,216,23,161,226,61,150,202,17,100,24,105,45,54,239,254,213,132,117,57,171,24,101,16,173,92,70,69,23,144,221,230,181,79,122,157,25,43,210,129,124,217,146,247,159,56,115,100,90,32,47,243,241,140,107,53,100,57,153,138,186,42,194,165,7,29,249,
 194,102,114,25,6,179,129,31,185,228,93,152,190,152,184,162,238,172,160,102,32,239,211,100,151,190,156,158,136,141,29,123,110,113,211,48,133,53,11,214,203,130,167,6,123,203,87,61,109,186,71,230,101,148,61,31,137,109,21,28,95,83,238,93,4,4,165,232,58,17,178,226,135,227,22,75,23,84,3,174,238,71,42,179,169,24,180,142,63,223,11,177,121,44,229,52,231,196,235,17,255,155,69,61,207,113,197,122,166,222,172,253,78,87,102,250,235,241,119,221,50,14,197,19,197,244,138,91,61,199,66,147,16,161,141,113,37,8,94,12,66,111,102,107,36,37,71,3,61,5,38,192,8,123,227,161,214,146,185,232,179,178,65,53,195,160,24,89,10,60,47,205,134,139,80,21,242,22,220,122,113,81,182,113,116,148,169,46,250,15,29,107,164,12,19,51,43,218,71,211,209,198,174,168,219,37,115,84,204,9,249,127,186,35,28,12,130,97,220,22,232,63,247,201,91,7,239,102,125,47,179,89,131,90,198,116,2,134,143,213,16,248,214,143,64,246,72,60,96,72,15,63,80,73,101,129,214,171,84,25,46,70,229,152,245,30,221,89,222,42,12,237,93,61,128,237,195,11,69,27
 ,84,114,155,170,186,213,140,213,38,37,136,162,63,23,19,248,82,97,89,92,93,214,218,245,137,54,104,156,29,180,139,42,250,188,17,9,20,189,14,233,187,37,152,93,149,207,58,181,41,111,101,162,131,86,112,217,118,144,129,129,213,81,211,14,79,167,178,160,144,47,102,37,98,4,2,54,173,188,1,188,161,170,89,77,111,169,194,57,196,156,109,250,95,196,95,245,89,141,3,225,0,177,89,222,220,25,209,146,170,32,222,27,66,44,220,51,201,15,64,123,244,45,222,8,4,2,95,26,225,156,194,171,221,215,55,123,93,210,119,203,168,205,67,184,219,118,156,18,105,184,78,231,111,67,97,105,156,43,201,202,84,216,67,246,204,14,172,240,60,194,30,78,20,0,152,178,221,129,153,61,37,151,168,36,115,24,50,94,3,223,74,32,127,48,74,9,157,19,63,136,157,41,44,233,7,95,10,164,53,97,109,119,72,230,147,235,11,216,70,74,192,152,151,65,184,18,241,253,187,115,210,209,118,232,99,10,33,127,192,246,52,147,123,123,65,34,3,148,229,166,147,128,43,40,38,159,41,108,186,240,201,40,203,113,133,27,50,140,23,64,76,85,129,224,38,17,48,143,232,212,81
 ,165,174,170,51,197,23,66,134,19,78,204,240,175,221,136,174,98,218,106,221,81,146,94,80,241,39,37,39,10,108,32,67,33,184,42,199,99,46,28,47,210,219,128,18,163,17,35,154,172,23,221,107,249,10,148,46,124,231,185,187,18,139,218,100,146,24,53,164,54,92,99,163,101,73,0,62,177,49,123,142,255,237,241,110,174,59,19,102,119,230,94,106,74,126,77,237,209,57,237,159,14,174,16,79,57,60,242,189,43,73,117,198,251,104,40,247,42,201,49,7,239,180,70,217,183,101,142,235,34,10,143,80,35,43,88,162,162,79,147,9,151,215,217,73,102,49,136,107,215,241,180,230,26,35,31,187,67,76,114,32,89,241,180,161,216,62,138,169,143,151,244,163,42,72,246,211,164,219,15,66,184,141,175,189,73,228,91,45,134,110,32,10,238,174,33,224,91,163,51,134,15,8,61,27,241,193,141,12,107,202,70,255,137,134,31,145,198,246,77,241,251,245,127,74,140,59,162,7,228,96,116,80,111,100,211,45,128,117,61,169,235,199,177,40,100,156,136,228,243,62,192,73,165,87,120,222,169,50,16,180,242,22,151,172,38,118,166,186,35,91,108,228,100,74,39,180,3
 4,16,158,209,142,73,9,64,200,140,155,165,66,8,78,122,94,104,78,89,132,225,31,71,243,158,195,8,174,169,213,7,39,90,129,146,128,241,13,81,198,160,119,93,161,113,127,244,25,46,135,164,237,240,240,1,174,76,142,216,49,67,60,61,5,100,58,60,105,204,56,137,246,174,13,3,251,158,14,210,164,0,134,77,7,98,100,78,237,133,114,149,36,40,185,212,88,242,179,62,169,103,69,252,108,210,141,245,40,222,200,192,14,188,110,52,201,41,64,165,162,63,73,124,147,137,214,211,36,144,243,138,6,74,115,179,175,56,161,207,6,141,226,95,55,89,111,228,16,23,66,130,232,76,199,211,231,113,98,6,37,25,115,236,28,59,50,142,80,145,255,227,27,41,36,20,238,189,127,76,188,100,65,147,242,194,127,104,89,34,10,140,27,20,96,228,68,169,55,121,246,235,19,253,9,128,168,221,104,141,196,10,222,26,255,120,232,43,251,240,166,221,148,94,77,173,155,32,27,140,139,91,19,194,19,241,142,205,234,29,58,244,22,180,63,45,127,19,113,96,226,121,132,51,253,239,63,39,216,144,135,151,121,32,48,168,174,232,100,23,176,116,125,234,8,60,103,55,135,18
 ,106,68,226,44,198,41,100,132,196,55,165,71,94,185,37,193,111,43,220,63,119,186,137,41,247,109,163,167,138,27,201,234,3,166,130,141,20,218,244,13,86,130,99,234,173,124,75,18,231,68,32,238,137,11,130,149,204,142,116,185,42,112,93,250,137,214,17,64,52,171,120,138,184,53,227,96,42,92,20,106,222,90,83,211,229,162,163,121,88,120,40,207,154,67,73,242,145,170,21,250,187,223,210,98,178,255,127,31,119,126,114,209,60,82,254,202,185,242,248,75,221,61,102,10,215,103,36,143,20,150,69,186,108,58,125,100,220,35,223,147,223,21,92,114,40,174,66,191,7,214,62,177,69,180,170,218,10,98,53,107,141,81,5,169,29,76,122,107,252,0,105,70,231,94,70,171,232,198,75,209,170,224,224,212,119,78,84,251,18,253,201,208,39,241,153,176,245,124,186,89,158,217,33,112,55,80,7,122,236,141,81,140,74,36,36,250,95,248,163,74,205,30,150,21,3,120,75,183,92,85,253,144,120,206,104,153,18,76,141,29,140,215,161,74,243,184,197,220,182,235,251,187,77,2,238,106,189,207,84,175,127,101,89,148,27,69,97,50,227,232,34,62,144,43,83,4
 7,88,33,36,26,197,230,24,247,11,200,94,170,7,0,34,177,11,33,221,108,64,175,82,5,82,0,253,104,73,163,100,135,210,62,175,39,72,44,98,107,24,211,85,213,176,249,255,86,65,186,57,65,119,82,242,119,216,175,60,244,54,240,171,140,201,152,125,89,6,182,30,40,191,177,193,32,243,12,129,244,46,66,11,66,245,75,1,126,128,88,252,79,130,197,236,251,209,119,92,173,98,197,22,167,56,84,98,27,233,190,114,103,214,238,186,242,227,143,110,93,127,179,219,153,148,38,29,196,44,150,84,39,199,63,32,6,137,5,47,38,30,57,154,73,163,68,178,204,17,75,253,23,163,38,49,43,190,168,209,202,184,59,103,59,117,52,192,23,118,214,152,244,191,180,76,205,130,176,109,125,83,117,2,195,97,156,174,73,152,43,18,104,194,211,123,127,249,211,189,164,187,225,102,179,63,180,168,183,215,148,50,108,209,79,124,213,178,166,232,109,176,173,231,181,223,18,97,212,156,160,150,169,62,121,59,123,75,233,215,83,237,200,21,208,202,151,122,176,122,249,48,209,166,213,52,153,163,142,199,105,7,108,36,3,81,56,144,176,44,218,75,89,210,73,81,102,14
 7,49,47,11,172,138,16,146,130,8,59,173,231,202,14,196,108,9,250,133,225,250,201,157,233,144,122,179,193,7,254,140,100,83,108,112,55,201,190,84,8,153,223,126,149,81,240,24,228,180,34,60,186,150,48,57,16,119,36,243,21,228,3,209,139,6,242,121,160,82,149,181,228,120,116,6,230,1,127,245,255,220,183,197,65,146,62,237,64,218,130,167,246,100,10,80,150,118,245,114,65,158,190,63,121,134,72,178,163,253,179,43,197,210,24,115,114,192,131,108,217,66,203,66,131,15,54,175,126,54,110,175,147,205,232,185,223,152,196,205,27,170,140,86,119,61,221,173,152,240,199,40,42,226,13,179,84,12,2,239,111,222,42,188,57,26,84,88,192,96,56,18,197,135,111,195,138,42,36,82,161,76,79,179,74,54,244,226,175,82,132,63,117,31,123,47,34,183,4,17,76,255,84,44,221,211,101,244,8,138,29,56,181,202,188,240,23,136,62,36,36,241,58,117,59,125,167,2,37,28,47,21,229,221,179,249,17,19,97,198,140,128,154,68,168,167,14,44,192,160,50,14,67,149,41,227,96,76,192,75,121,58,219,208,94,36,44,35,173,42,201,185,176,97,62,236,22,220,110
 ,221,109,202,119,235,104,64,209,75,102,1,48,243,26,69,143,10,234,61,123,91,191,224,67,35,237,159,69,195,53,195,254,96,247,79,179,217,237,6,33,100,63,77,182,240,140,66,184,155,184,251,172,38,132,12,186,131,238,194,120,226,253,132,23,160,208,133,66,124,118,186,123,250,168,206,178,46,25,233,97,96,223,16,217,124,93,49,141,52,111,121,35,213,125,178,44,213,253,197,173,224,63,23,235,150,122,109,0,180,145,55,189,85,25,140,123,115,180,70,76,144,18,246,208,79,135,129,102,50,109,133,244,173,23,111,178,150,184,107,84,85,206,40,8,11,15,68,230,32,98,250,56,152,0,243,178,177,216,24,68,41,87,45,208,136,226,113,255,165,234,91,202,130,108,73,239,94,134,32,100,222,107,39,38,168,246,52,205,9,98,74,102,128,179,46,196,76,27,181,31,146,183,94,214,25,143,130,63,25,136,90,233,99,9,163,4,106,85,124,127,74,189,141,52,170,150,234,165,202,111,229,251,219,59,40,103,176,109,10,166,210,223,122,3,249,184,96,46,65,90,72,157,69,5,172,141,137,231,91,22,233,39,29,166,116,189,178,33,248,59,184,210,188,56,59,148,
 134,155,222,232,175,144,146,225,42,76,63,93,232,223,34,75,157,181,126,238,15,87,100,232,22,136,133,255,250,222,43,103,224,137,142,37,199,93,147,175,125,77,49,152,11,134,109,229,122,27,200,120,86,93,1,44,97,47,163,43,42,158,38,52,121,126,128,246,11,237,38,191,156,120,165,196,145,32,31,63,21,251,127,63,11,171,198,6,111,255,212,92,14,14,174,111,86,18,189,110,102,173,230,206,228,20,66,114,133,121,252,182,105,27,63,88,205,240,139,190,137,133,100,106,225,23,128,132,102,79,248,225,180,7,19,74,103,106,71,201,43,103,111,35,249,89,236,49,201,21,209,173,54,72,213,37,46,19,212,201,137,68,220,89,205,183,89,164,41,180,151,127,140,54,196,41,221,162,41,171,131,45,151,136,213,91,21,72,27,57,182,84,212,158,214,230,142,233,9,64,92,217,231,18,206,113,151,151,96,186,254,233,235,211,201,50,124,92,40,222,237,210,23,126,96,87,158,175,84,235,170,222,208,80,71,51,4,174,82,34,143,93,148,4,243,111,124,52,153,116,188,122,67,140,79,55,38,118,25,159,52,190,33,2,232,154,219,190,250,233,97,67,171,21,44,227,
 25,159,160,206,84,67,70,99,59,161,115,112,243,217,148,46,231,73,74,4,124,48,76,137,217,158,138,200,180,89,174,149,208,252,118,105,79,226,226,68,216,214,152,87,247,44,194,35,193,91,179,173,149,182,163,128,93,25,51,1,182,239,65,57,12,166,241,221,3,76,32,175,250,41,205,153,169,250,231,125,91,67,36,184,221,43,235,55,111,249,173,48,72,245,155,2,159,154,33,50,49,51,92,173,3,98,161,26,247,238,61,47,162,132,221,85,4,44,123,13,117,151,45,245,29,12,41,160,186,18,33,133,128,8,101,243,229,14,255,103,90,76,233,133,113,41,16,48,203,159,104,171,64,11,45,124,180,71,197,189,209,94,183,245,57,214,72,207,145,60,244,255,110,137,56,62,47,95,233,106,151,166,225,223,200,204,249,116,28,255,84,140,12,163,152,237,234,252,191,194,57,151,220,230,96,188,125,79,247,184,55,9,181,212,137,216,251,141,44,98,125,255,58,147,88,186,66,108,236,23,76,0,51,183,40,192,193,107,46,228,248,195,241,252,48,117,35,212,174,67,206,31,178,64,249,158,135,213,234,47,96,27,251,241,108,235,91,109,38,74,36,18,200,44,225,36,184,8
 5,145,203,233,245,45,145,110,95,192,40,152,228,160,135,187,239,166,100,110,113,142,140,4,62,26,5,158,49,161,234,255,40,76,244,254,83,137,213,93,11,180,222,170,220,144,173,129,62,147,249,77,210,42,66,111,230,84,2,132,190,4,33,46,75,244,207,40,16,27,94,181,204,27,76,56,184,13,40,220,213,114,182,173,179,193,46,11,79,40,102,133,67,96,29,154,27,45,71,180,125,68,68,8,171,229,86,245,210,43,101,243,76,242,60,164,232,103,23,27,158,161,6,190,206,225,187,186,33,5,16,220,177,91,246,243,1,149,0,87,60,197,53,104,171,114,81,69,180,73,5,198,8,50,75,97,242,161,163,107,132,129,74,168,221,7,139,159,60,217,230,133,84,126,130,30,5,44,91,199,117,49,166,134,52,241,8,136,115,226,40,57,213,46,48,164,238,8,124,112,2,42,148,12,157,103,230,227,121,64,182,126,31,90,58,17,75,39,130,209,78,158,149,255,157,52,16,44,4,174,188,20,214,150,204,227,11,146,215,148,135,171,247,30,125,146,19,132,47,21,233,207,116,78,132,86,117,102,186,94,5,254,15,247,145,178,164,151,119,160,66,75,173,249,80,12,215,147,61,63,83,115
 ,253,151,213,27,183,103,101,219,34,213,56,137,84,110,210,49,243,36,60,1,107,111,127,255,39,146,207,107,134,141,255,115,62,229,46,208,192,110,120,219,124,77,169,207,163,178,218,86,186,75,184,7,196,253,181,191,39,194,150,234,1,229,117,43,78,69,184,39,198,161,11,203,60,221,51,175,9,254,136,47,8,59,188,113,139,10,11,166,203,232,150,92,252,199,122,27,251,253,163,182,97,207,195,120,171,150,30,231,104,226,175,115,236,39,75,212,195,132,16,83,163,152,186,21,38,113,165,89,107,117,116,246,118,59,13,42,123,216,169,26,201,212,255,106,2,151,91,222,238,52,54,55,188,70,98,224,152,37,143,137,28,127,149,97,17,182,198,127,23,16,54,150,28,138,227,190,166,176,65,192,50,125,72,6,50,130,199,217,10,29,98,26,201,188,188,29,76,115,206,105,198,156,220,235,70,203,190,216,86,92,170,105,215,23,112,42,159,72,83,252,93,73,50,28,32,179,87,226,56,6,246,255,122,99,218,47,57,43,175,155,28,107,243,13,117,141,54,253,62,102,137,185,115,138,102,209,101,135,87,26,246,173,193,174,157,10,226,61,63,120,215,178,221,95,
 138,219,81,109,199,27,59,125,14,179,48,46,206,199,164,251,158,193,6,74,244,5,110,69,251,181,189,95,237,103,33,183,43,212,104,245,84,33,142,202,201,122,35,141,129,105,144,61,44,223,204,175,217,104,138,190,93,149,81,230,25,57,154,118,252,189,71,143,105,17,219,158,53,22,32,99,140,109,191,15,136,198,9,168,46,59,13,144,214,167,54,214,11,124,235,191,15,189,46,29,159,115,123,80,170,102,250,231,159,225,4,106,175,226,190,69,49,41,245,174,226,120,165,91,129,44,172,15,8,250,157,102,135,146,69,60,103,242,148,168,176,178,31,74,145,93,31,59,83,76,38,152,219,113,165,218,204,37,99,83,228,163,160,151,42,242,28,219,64,79,117,253,88,185,213,15,145,39,188,112,67,64,196,106,186,75,95,72,49,81,61,169,25,234,27,135,174,111,48,224,193,217,198,200,80,135,33,27,96,220,37,147,197,48,96,113,31,124,184,137,241,101,155,118,161,103,122,255,45,139,243,23,126,76,212,154,254,68,216,177,21,220,167,127,140,249,228,165,121,217,122,55,129,52,195,134,20,204,105,105,94,71,72,213,164,73,228,81,134,103,178,102,8,115
 ,222,183,116,74,224,18,6,91,92,18,14,185,12,185,47,130,188,232,98,154,170,234,139,250,248,184,44,32,143,227,23,27,134,240,165,207,151,3,242,64,105,155,77,6,33,43,19,72,99,17,52,49,166,167,151,5,100,146,167,114,74,147,12,207,177,48,121,44,198,43,15,44,204,221,75,253,118,219,243,247,180,145,234,242,157,155,249,71,194,115,87,66,89,155,140,199,179,109,175,196,177,11,244,198,140,165,123,122,146,8,73,203,48,228,191,238,31,86,252,240,24,147,138,189,60,253,111,124,74,100,12,56,194,143,63,54,195,175,16,31,132,96,83,245,247,39,22,122,127,31,177,158,74,109,249,212,56,228,61,99,131,76,43,247,111,24,103,31,48,73,133,223,111,242,135,220,36,128,199,32,158,81,196,59,21,126,128,154,56,231,13,140,33,0,178,62,220,95,131,72,224,48,137,137,246,190,218,22,124,105,134,27,144,122,45,25,7,67,106,54,237,71,239,254,234,131,171,28,101,195,55,180,121,79,214,248,110,74,129,93,70,217,231,38,42,203,165,95,116,170,10,79,67,132,229,174,93,146,107,43,17,85,179,72,30,228,179,203,166,70,201,196,115,43,115,68,18
 7,97,114,188,100,252,32,253,137,218,32,109,25,183,145,226,250,15,190,165,196,104,128,215,153,148,65,21,137,35,99,21,187,89,16,133,209,157,32,51,61,180,52,76,3,30,223,211,2,23,146,33,165,94,44,29,175,247,80,16,133,235,247,29,1,20,84,147,67,131,177,213,108,172,123,160,199,165,5,40,105,138,180,108,194,90,120,204,84,137,29,60,68,155,218,204,154,100,8,54,239,144,225,231,17,60,182,186,252,134,94,225,93,99,190,108,183,236,249,235,68,200,143,178,111,15,136,112,254,26,61,200,177,164,43,242,39,137,252,1,104,231,176,182,220,132,69,102,156,3,254,126,183,190,154,189,232,55,106,217,103,225,223,249,55,196,171,32,224,46,160,63,241,241,130,63,29,113,7,243,171,226,250,194,15,230,34,158,120,214,126,137,33,61,209,109,51,184,6,38,229,2,184,26,122,137,44,206,161,152,87,110,189,234,254,220,152,219,68,51,155,242,176,60,203,166,216,18,142,93,92,237,197,137,139,78,159,233,48,139,115,116,157,27,85,199,169,48,235,224,224,108,133,69,144,153,5,68,165,71,242,213,131,166,47,41,38,201,134,214,152,244,229,74
 ,89,164,198,161,111,179,17,7,29,218,118,241,93,152,58,137,66,26,185,228,253,213,230,203,84,158,182,64,154,129,253,220,61,154,220,23,103,151,218,115,62,107,21,169,24,193,126,32,40,182,117,148,155,93,64,44,66,157,148,76,130,215,223,147,129,14,200,42,160,122,210,224,223,140,182,237,111,16,165,191,114,162,197,125,204,119,28,120,149,70,240,9,184,84,199,145,172,25,209,36,74,39,101,19,109,102,91,234,111,24,45,98,112,43,86,37,119,104,27,4,26,11,142,35,69,232,67,245,71,29,251,180,206,49,30,95,32,138,4,252,81,16,43,215,112,53,174,225,5,198,42,230,197,247,23,115,195,173,66,19,102,22,43,30,59,139,153,68,223,102,84,221,176,95,176,89,192,132,11,38,95,87,41,212,141,70,79,68,178,197,112,185,77,246,72,134,133,174,138,93,149,252,151,172,174,152,227,56,210,146,203,36,63,24,245,53,11,63,59,102,104,61,186,96,119,184,51,25,98,189,63,103,12,213,174,158,69,245,178,198,174,64,136,32,228,24,83,243,82,237,64,79,220,35,38,197,100,250,35,255,92,192,156,213,195,94,45,17,103,169,31,202,211,121,251,65,123,
 99,104,148,240,195,102,164,67,175,19,188,174,251,119,233,87,23,65,95,89,64,174,40,75,10,222,58,165,227,209,166,208,230,104,58,47,42,233,229,225,126,133,206,252,110,160,159,80,93,95,30,67,0,47,49,238,164,2,147,190,23,228,101,72,234,101,79,243,68,34,234,234,172,219,212,139,213,110,223,209,54,143,106,143,206,222,13,139,245,88,193,103,196,155,50,175,52,222,125,162,16,244,242,139,236,37,94,167,35,80,59,90,166,239,14,46,28,185,92,241,44,65,3,75,203,14,90,223,108,6,251,37,246,146,253,55,244,22,222,137,80,35,162,199,59,77,9,193,152,2,71,118,238,113,238,128,43,66,169,116,54,105,60,1,236,228,169,159,231,98,178,212,92,0,151,200,111,78,87,194,238,206,30,208,86,0,158,91,35,12,219,99,28,122,29,179,76,204,105,97,208,25,186,192,251,234,112,183,20,90,211,204,134,137,115,112,161,204,222,111,95,143,211,9,176,191,242,133,73,119,113,89,198,51,106,116,119,137,220,94,64,100,174,253,147,115,69,20,111,61,244,18,166,167,133,210,167,128,156,182,62,106,207,23,197,87,115,14,57,229,86,171,45,139,27,193,3
 2,192,186,247,170,45,130,118,203,60,189,81,112,78,74,116,147,95,199,14,161,205,192,178,70,67,44,169,54,220,102,190,160,167,58,212,134,62,74,65,4,63,154,141,47,180,206,238,181,100,11,250,241,87,153,92,99,168,202,227,104,80,229,170,7,207,135,106,96,208,37,74,141,35,162,96,237,129,45,91,152,198,202,73,211,148,239,187,241,16,167,93,153,42,117,233,179,185,66,28,105,128,200,101,242,15,74,226,215,177,222,251,242,36,132,156,69,63,129,250,173,232,78,165,107,121,213,196,155,142,25,73,97,210,73,71,87,126,187,66,20,101,185,142,128,212,68,252,51,154,243,182,19,117,198,100,251,60,75,163,97,49,0,136,222,221,161,180,254,86,106,179,97,46,23,50,127,253,183,174,237,92,220,5,22,93,0,177,164,162,65,173,43,240,221,34,188,30,67,166,117,21,120,96,228,249,28,7,127,99,40,136,81,88,133,23,39,119,232,117,71,143,244,150,92,195,211,50,188,166,24,131,209,233,192,121,221,17,5,36,210,176,87,192,96,173,12,215,210,152,212,117,143,122,231,37,96,124,37,242,241,106,139,13,183,138,3,0,165,174,159,199,7,67,1,1,4,1
 68,195,101,74,250,104,186,86,46,4,177,184,0,6,10,46,15,37,206,12,39,226,139,43,191,73,69,194,11,255,248,204,237,230,240,199,28,59,196,251,53,189,42,58,222,75,116,117,171,2,226,73,155,77,121,121,11,103,252,250,93,12,15,247,106,27,186,175,29,238,18,158,91,68,51,132,186,161,105,194,10,166,41,154,130,76,251,112,136,91,170,96,33,209,154,173,250,53,23,161,205,48,175,57,132,135,52,78,70,151,182,235,148,20,89,135,92,88,185,221,241,55,109,151,116,220,246,230,43,175,113,163,167,244,8,11,92,208,224,129,79,189,139,45,66,95,40,239,132,147,60,16,189,87,126,220,31,184,29,129,16,59,137,211,146,170,255,68,89,218,42,226,52,232,140,207,55,24,147,121,90,252,177,200,155,232,212,25,104,245,103,29,92,46,34,61,209,95,21,130,188,216,94,142,121,234,159,102,158,254,34,203,180,158,197,145,160,245,72,242,58,202,78,170,25,83,12,130,228,184,242,99,61,242,113,200,14,85,227,212,134,179,122,217,104,116,31,180,154,102,247,146,23,55,216,41,132,36,198,245,114,217,163,7,172,11,61,161,151,209,240,177,43,48,227,8,
 188,87,72,242,153,5,125,213,220,85,176,224,31,137,97,243,115,173,143,85,252,86,35,96,197,106,47,18,172,148,154,12,142,221,98,96,212,115,89,85,117,82,167,4,229,36,240,158,254,60,237,62,215,74,183,148,222,23,38,81,8,189,100,173,79,96,7,111,116,108,254,232,83,39,44,254,222,66,192,230,205,53,70,113,196,32,61,84,180,90,107,206,59,246,47,16,122,147,144,244,161,28,112,208,89,149,113,152,16,87,133,85,143,41,51,125,105,145,85,217,156,61,92,55,128,20,182,6,27,157,164,245,40,249,187,133,83,50,64,74,197,52,60,254,102,150,63,115,105,51,180,20,65,62,161,17,18,157,207,210,241,211,19,154,198,207,55,82,237,13,166,20,127,201,219,228,61,1,229,198,67,236,31,235,189,49,188,175,41,132,152,63,57,151,41,31,226,25,92,164,250,198,210,234,238,239,100,63,92,252,86,58,15,29,22,158,242,168,225,30,241,115,236,148,13,33,198,244,100,140,16,4,231,230,122,53,202,191,205,182,245,235,185,13,69,161,60,200,98,227,69,196,92,197,188,240,231,64,3,165,119,59,181,160,66,80,209,241,176,207,53,99,188,72,58,252,156,185,2
 33,89,31,169,158,216,123,183,187,74,238,43,12,110,81,176,180,37,199,44,108,116,114,115,108,43,17,132,86,101,45,153,153,224,43,243,103,57,200,105,59,149,70,254,229,175,57,84,151,131,116,128,99,91,244,98,69,225,190,86,173,97,156,52,105,199,173,179,79,48,197,134,194,108,177,78,70,100,127,138,91,118,138,241,17,203,226,177,114,58,25,189,181,180,227,74,179,64,83,67,229,34,171,214,46,116,218,224,182,236,152,252,171,184,149,66,248,177,203,111,220,127,171,144,12,25,6,228,191,157,108,212,145,253,193,228,246,107,200,24,175,248,7,204,237,53,28,48,53,91,128,50,86,227,47,76,127,195,133,185,247,48,121,255,94,51,175,3,121,35,62,68,69,8,224,100,68,252,50,198,85,165,37,236,88,128,15,250,94,28,18,99,190,18,142,43,77,172,113,159,201,84,151,239,190,231,184,254,207,131,138,224,159,147,53,21,163,9,61,97,142,57,110,98,208,96,251,203,177,218,101,202,55,219,145,111,199,152,4,208,158,72,91,241,135,108,208,227,75,210,136,108,49,114,59,36,123,106,237,90,218,158,126,203,113,184,117,182,99,155,76,183,187,
 3,9,60,123,117,155,85,76,233,225,33,75,186,235,64,185,13,50,153,156,237,228,76,137,2,194,204,10,167,106,21,233,197,161,159,239,124,74,192,11,84,25,181,120,251,245,75,41,237,51,20,76,2,37,35,89,0,31,136,94,57,193,17,177,54,205,157,218,52,31,213,73,76,174,73,210,122,162,222,10,136,237,125,197,138,100,198,234,192,39,245,66,69,93,173,195,224,208,215,201,28,244,198,115,242,127,78,134,170,63,98,38,13,81,59,55,87,189,249,147,188,127,135,197,224,95,237,141,59,46,238,20,81,156,57,198,129,25,29,174,128,225,65,160,15,105,248,249,58,113,80,28,68,56,155,112,141,86,252,208,202,152,41,47,135,53,152,33,135,161,12,96,101,120,50,248,173,81,20,183,164,107,103,11,224,89,98,223,216,122,25,238,20,154,26,112,3,184,74,189,183,46,20,18,165,68,218,164,216,191,19,35,127,181,218,59,7,70,147,150,211,65,132,22,177,86,136,214,253,55,62,139,122,37,38,81,128,252,172,129,225,187,112,16,142,216,128,250,232,195,16,243,174,28,246,203,204,156,83,27,32,152,21,241,193,107,135,227,172,219,128,13,212,123,216,166,243
 ,105,29,33,130,155,8,76,221,65,14,107,18,84,62,134,148,24,205,27,5,73,64,28,114,85,117,252,175,112,188,11,118,202,26,31,151,254,80,171,98,38,49,51,69,66,250,93,28,123,47,208,243,71,38,210,72,160,73,179,169,70,21,29,218,66,242,26,115,227,63,219,177,208,139,229,240,92,60,204,118,193,246,176,164,55,78,53,112,173,186,5,79,158,35,11,31,204,186,72,47,187,160,128,40,80,233,248,43,4,10,198,210,70,174,181,39,187,132,129,47,29,234,233,75,38,114,22,153,176,48,175,116,169,91,24,30,7,229,251,95,206,202,208,204,164,61,233,17,58,76,173,244,141,138,35,147,126,192,135,13,49,173,225,48,10,35,122,27,47,195,220,60,142,219,163,81,50,216,149,140,187,118,158,174,76,89,111,30,90,32,237,102,5,66,58,52,218,112,53,185,140,114,77,101,53,6,6,241,32,228,126,232,223,232,254,140,213,82,22,8,70,47,123,155,188,214,242,10,69,103,38,42,219,67,137,39,183,205,161,230,232,188,252,70,114,194,5,44,201,149,241,114,91,44,247,181,56,225,121,135,130,152,9,152,226,93,202,76,13,8,245,112,181,248,249,239,39,164,187,85,80,
 238,223,8,180,111,125,61,47,174,170,97,240,92,164,176,184,249,230,134,60,172,74,41,152,175,127,3,3,95,129,164,178,12,165,220,157,11,236,112,61,64,128,240,214,169,245,151,59,136,186,163,196,51,59,4,170,94,33,170,52,73,77,94,238,74,109,111,22,155,123,71,167,50,160,163,173,226,255,75,251,164,2,176,25,19,215,250,74,1,227,144,123,7,182,121,49,78,179,20,251,159,105,94,204,26,45,64,79,184,224,89,253,94,0,100,203,210,38,77,2,141,2,186,206,196,62,175,188,27,189,116,176,247,167,240,112,236,115,194,119,254,16,143,228,33,124,201,123,106,135,48,97,246,160,227,77,252,17,92,108,62,20,165,180,12,172,37,20,110,164,111,36,83,49,95,12,142,66,180,25,56,244,131,150,63,78,118,105,233,93,235,64,57,93,49,40,3,169,10,8,119,175,45,135,113,104,172,198,96,249,137,204,162,54,242,80,185,48,187,96,201,178,216,114,235,61,188,143,15,107,198,138,249,13,193,22,132,177,69,164,221,247,205,45,211,223,215,26,106,34,101,59,139,232,227,245,98,248,57,60,73,185,138,175,169,247,90,121,4,80,114,97,107,100,129,75,85,139
 ,73,250,74,132,113,215,132,137,41,190,19,162,89,33,36,67,212,22,140,119,49,142,178,238,71,233,0,201,206,253,49,16,55,43,133,48,167,13,81,52,164,174,0,219,129,234,137,216,184,196,245,90,28,187,58,251,181,153,159,203,251,90,100,162,109,150,147,26,28,85,219,95,135,78,100,253,108,134,109,224,94,146,189,218,48,182,252,252,103,225,64,174,29,108,49,103,163,37,75,237,233,128,214,184,220,11,21,103,151,12,6,128,185,125,214,120,183,164,67,188,245,135,190,99,154,242,174,82,35,100,78,240,249,221,109,8,162,209,53,173,190,254,73,122,244,210,198,11,122,43,157,197,169,238,15,35,33,95,238,20,95,2,208,76,206,44,119,188,93,44,32,154,126,187,248,183,53,219,16,233,77,245,0,41,104,69,56,164,215,141,110,197,216,189,255,184,162,61,176,6,85,251,32,48,129,109,14,172,246,114,153,238,171,63,17,173,64,190,253,82,24,214,38,81,31,218,145,216,161,253,26,110,144,173,203,229,250,196,57,62,126,247,234,45,85,78,105,202,29,230,255,220,105,87,36,253,133,44,125,139,105,112,97,195,160,204,175,67,28,129,231,181,102,
 37,243,218,31,48,217,107,225,67,77,84,58,28,191,155,35,86,197,226,55,114,164,218,35,217,26,234,240,242,98,46,249,211,38,9,203,186,170,193,72,235,254,191,182,193,199,235,132,18,150,88,145,61,58,247,210,170,52,82,192,18,49,117,207,20,0,166,34,245,123,186,236,145,188,150,239,233,80,38,151,156,20,205,165,27,215,241,142,207,151,163,189,80,255,173,12,181,1,38,69,162,72,87,45,126,170,130,230,206,21,61,98,168,72,111,125,10,138,190,74,182,226,26,1,112,238,105,55,17,111,73,236,82,104,4,202,231,19,104,86,174,162,221,142,2,0,172,108,154,44,7,127,165,228,159,224,242,130,12,166,91,200,164,12,60,223,230,7,49,55,150,1,208,196,195,207,76,60,17,169,212,206,139,113,42,29,26,171,202,94,85,125,99,180,4,155,156,111,202,152,207,41,149,104,131,115,69,52,126,73,138,166,221,236,88,7,89,214,91,53,189,24,203,91,20,45,22,97,44,114,217,153,250,99,84,97,214,63,118,61,181,185,189,136,61,62,13,199,132,136,159,194,126,36,7,219,113,14,176,76,172,161,15,28,166,253,53,222,163,47,10,40,183,161,24,84,145,19,174,2
 5,242,202,93,101,245,194,118,172,59,196,119,196,91,3,174,182,64,115,92,165,234,156,160,210,204,37,219,130,10,241,80,49,127,210,103,202,206,170,212,218,142,112,100,166,181,81,183,22,94,141,245,1,198,185,214,99,9,227,112,17,198,56,139,1,68,148,43,158,185,94,188,102,234,245,32,83,164,17,46,73,115,141,11,40,243,125,123,9,28,210,130,82,243,26,55,131,220,32,46,165,141,36,227,210,20,119,148,235,124,247,83,178,116,77,175,198,71,13,165,66,16,236,96,169,170,72,185,60,189,60,244,65,37,72,191,26,185,109,58,48,123,250,129,141,230,194,3,249,43,51,118,98,144,195,26,18,0,237,176,161,34,60,226,254,190,97,253,237,115,221,219,17,238,175,212,81,205,178,107,114,178,133,255,3,161,72,210,30,19,187,207,136,16,110,50,99,124,247,131,193,92,62,188,245,127,134,216,134,171,107,6,24,211,75,111,165,133,219,29,56,18,10,134,90,226,102,129,251,77,12,38,88,20,12,67,126,196,42,201,234,61,148,145,194,139,61,208,192,94,238,138,215,213,11,124,45,204,145,114,247,129,193,211,248,241,79,14,212,76,15,193,19,125,70,12
 8,64,231,177,93,219,75,108,57,246,208,153,69,23,140,231,232,2,193,119,249,242,56,60,96,47,96,176,224,1,228,100,248,143,105,126,4,228,242,130,187,72,47,247,226,214,139,167,26,161,169,53,132,131,50,4,162,198,96,60,1,185,169,37,39,211,208,254,179,33,145,165,183,195,172,200,143,0,118,146,101,139,217,194,111,150,96,35,79,28,1,236,121,208,223,137,168,143,97,215,171,207,10,57,25,227,26,251,22,123,155,78,118,7,99,114,243,57,219,238,155,74,22,138,49,204,4,206,218,251,16,201,204,22,70,123,119,105,241,106,167,22,89,16,98,55,136,218,43,128,20,252,200,230,150,42,169,228,215,20,145,97,111,217,32,110,71,97,103,169,118,168,250,116,61,236,92,197,89,82,17,107,226,219,127,23,23,176,202,1,221,31,53,142,154,43,61,21,188,145,79,186,240,140,143,55,107,142,31,107,5,21,7,35,49,82,206,252,229,140,1,42,58,109,68,217,182,222,48,141,153,181,230,48,8,4,51,12,173,140,120,4,11,127,104,142,176,217,234,186,204,13,157,67,79,163,16,62,58,204,83,145,7,173,191,72,230,201,16,178,111,118,187,119,219,33,184,199,11,
 136,35,249,80,33,121,180,127,244,246,98,25,250,157,231,150,91,155,244,33,7,130,252,147,24,135,48,162,79,153,33,94,99,113,247,16,165,30,208,220,242,67,200,230,168,0,84,133,239,68,32,21,237,250,58,46,238,166,187,198,123,29,128,120,63,91,96,64,54,105,212,179,115,147,182,159,56,102,170,157,110,90,151,151,41,138,55,153,97,200,28,77,249,216,73,202,105,116,25,240,181,3,51,95,111,37,230,83,72,156,107,68,40,245,124,57,29,176,10,168,69,236,203,24,212,109,199,10,198,143,23,37,177,120,81,172,65,55,45,155,101,104,2,99,76,174,78,95,58,182,38,173,30,67,33,162,237,43,35,52,78,243,29,120,133,0,91,134,217,88,95,52,201,86,107,138,149,12,241,163,204,99,200,131,225,213,249,135,180,167,9,201,224,212,65,133,191,81,131,92,136,7,198,161,7,95,243,13,247,162,92,232,128,25,91,16,50,225,54,200,11,129,251,53,155,92,26,129,219,190,0,96,235,232,97,157,100,127,53,215,40,198,149,119,249,135,99,129,74,249,139,102,150,207,206,67,202,176,184,156,1,50,123,225,16,213,111,99,179,36,32,144,80,36,28,238,239,112,84,2
 19,200,188,2,160,86,160,90,246,64,169,245,209,26,194,232,129,95,133,178,154,186,29,114,214,54,78,60,211,162,4,77,49,23,188,217,173,64,9,79,52,193,58,224,132,15,140,170,222,69,224,211,218,94,107,123,144,121,191,12,92,79,194,11,239,82,94,135,186,210,55,124,160,189,11,147,160,202,38,66,214,168,110,156,52,94,68,3,153,62,243,42,142,244,135,3,40,84,202,239,190,104,242,247,246,99,132,216,71,149,114,244,71,214,240,62,71,95,231,65,180,207,97,90,6,136,85,8,240,198,139,186,27,86,243,130,172,95,146,238,227,35,195,80,89,234,95,172,77,151,202,28,163,133,90,182,122,65,123,134,201,134,150,86,110,41,111,30,58,223,193,148,105,246,10,3,11,92,142,179,54,132,4,151,12,202,85,154,97,1,10,43,95,233,146,216,9,35,19,200,81,20,221,86,36,47,19,211,209,219,82,140,112,169,178,70,162,238,191,220,105,82,199,188,40,96,219,255,169,74,125,202,212,175,245,119,42,84,217,13,122,115,157,41,200,80,23,176,90,86,92,182,223,233,9,161,164,232,42,31,155,172,167,67,55,59,160,155,129,240,24,41,186,163,55,221,179,247,35,1
 43,173,214,158,189,250,117,247,212,222,245,45,151,106,248,111,255,156,86,149,92,210,152,44,35,87,46,190,55,117,28,27,81,59,49,187,26,68,215,130,208,251,218,153,118,229,107,225,233,141,45,32,200,144,4,34,14,84,20,72,175,10,36,248,187,248,186,186,86,215,115,1,180,38,246,60,221,85,33,197,210,73,229,91,160,173,91,88,44,210,16,158,146,54,156,22,255,220,126,250,23,23,166,228,196,43,88,50,186,18,75,213,186,29,122,108,185,74,205,4,62,204,189,52,87,204,204,192,73,199,124,101,179,111,193,213,188,247,196,216,120,192,99,182,182,180,171,65,63,2,243,67,87,30,76,127,83,42,64,253,68,226,165,117,115,155,3,11,169,208,143,172,200,74,64,194,12,188,124,132,102,213,166,101,47,57,180,91,236,42,32,91,32,146,249,45,145,23,186,187,37,255,197,176,83,239,128,146,123,193,240,73,205,88,43,31,28,52,170,115,55,183,61,169,147,210,69,188,33,69,115,236,189,120,3,49,102,222,110,239,100,251,149,139,50,159,5,129,229,116,99,94,86,57,129,239,197,102,162,20,63,133,187,123,54,92,1,68,70,242,163,220,74,226,159,107,42
 ,158,79,190,17,232,83,138,206,198,220,241,127,10,0,110,247,113,79,217,2,2,181,253,149,254,243,138,48,61,118,221,10,171,196,83,126,57,193,194,167,14,59,220,54,156,3,1,35,179,172,255,205,118,142,238,13,66,179,115,137,232,73,6,127,22,136,116,63,33,31,125,236,92,222,157,178,160,131,212,63,169,160,110,53,199,70,67,228,112,27,247,154,67,124,78,93,7,170,135,224,71,29,141,152,218,84,231,203,116,249,84,198,211,37,234,112,224,246,188,49,58,60,199,139,70,68,221,240,11,195,161,54,27,147,157,120,153,198,118,125,118,48,188,252,28,60,185,34,73,115,127,229,24,4,158,46,22,4,207,184,203,191,63,135,117,235,43,98,19,172,15,214,215,178,251,46,155,106,240,187,185,140,121,41,192,31,144,100,193,13,243,39,55,169,207,204,255,168,84,121,237,190,41,194,27,62,40,179,81,140,253,201,19,218,1,227,43,21,84,206,240,156,238,101,167,210,86,95,227,118,5,27,55,143,55,164,165,250,216,127,38,227,117,172,91,80,244,139,208,116,123,184,202,28,62,191,74,209,178,19,3,237,175,25,25,37,148,118,100,155,14,29,218,53,31,36,
 128,192,132,153,149,105,158,252,137,177,2,200,98,187,46,17,235,100,58,149,221,153,236,72,187,145,33,100,95,59,15,18,21,2,224,239,243,232,160,94,163,92,222,130,155,156,213,3,9,249,33,66,37,18,253,209,4,255,212,79,108,17,105,76,137,255,6,102,105,29,74,210,61,0,120,185,227,49,207,207,89,190,13,34,60,233,71,57,139,35,39,226,2,174,100,80,246,2,103,203,68,27,226,69,82,126,10,219,203,75,140,27,88,116,46,90,154,63,237,17,130,174,95,24,151,30,84,100,160,220,92,75,80,82,119,53,131,138,103,37,251,129,64,184,36,13,86,238,158,173,33,69,160,121,124,105,138,152,201,248,117,248,112,29,241,118,141,202,177,11,117,34,205,54,30,188,235,39,193,249,141,146,46,190,46,139,137,156,168,215,45,73,79,162,177,136,6,136,215,83,3,140,25,170,204,45,6,221,46,134,88,229,171,137,113,90,193,245,145,143,92,158,3,46,34,201,185,26,142,31,69,121,208,118,99,83,103,95,187,166,250,114,154,218,199,79,30,107,159,224,178,86,58,218,188,107,134,153,70,7,120,27,183,199,164,183,58,211,68,49,10,56,22,58,115,84,160,235,246,8,
 228,232,68,158,121,55,198,2,216,226,212,57,234,18,119,135,18,112,184,92,70,62,245,40,239,165,148,103,196,110,97,230,246,206,34,21,195,220,21,47,26,52,226,103,201,63,77,113,128,210,90,204,57,72,57,16,174,198,88,115,181,67,72,185,239,124,126,185,35,149,41,114,188,194,118,103,58,163,3,177,146,1,45,14,63,80,35,109,20,103,219,30,14,64,85,60,239,129,77,237,232,251,89,28,34,81,108,131,131,83,222,183,19,234,121,236,142,175,117,85,16,180,174,9,128,169,187,244,19,63,184,23,199,99,239,166,30,127,183,82,251,141,11,205,151,182,125,132,87,151,33,187,6,200,23,31,186,165,136,214,56,51,93,174,125,4,37,28,138,209,194,228,151,0,157,100,226,55,141,9,175,139,128,20,97,110,115,173,186,247,199,172,84,16,100,98,123,219,40,239,23,197,89,52,188,76,40,114,130,150,105,231,172,120,67,225,205,146,206,79,102,229,182,70,189,97,175,129,37,37,129,136,79,192,59,150,22,187,52,121,229,145,16,35,39,75,237,9,27,247,213,161,32,109,123,105,226,156,62,240,183,243,72,216,83,112,111,93,70,255,67,158,73,177,53,93,86,19
 ,219,68,156,147,142,0,71,234,206,183,230,54,72,89,83,50,95,57,92,141,92,160,42,60,183,18,88,34,9,252,169,220,184,79,70,98,62,109,208,21,138,40,204,242,171,183,229,149,114,250,164,234,98,170,82,136,109,37,102,249,197,57,54,249,13,138,128,86,173,76,177,31,12,184,107,43,150,26,187,135,157,241,190,81,127,229,178,96,175,241,238,191,220,103,1,147,203,248,106,64,94,112,84,74,2,162,178,180,145,36,225,232,36,160,196,231,79,10,152,97,11,191,162,106,98,44,22,100,18,145,6,94,234,243,183,12,203,73,95,230,8,157,41,95,31,63,28,34,21,114,209,193,230,109,74,241,29,18,148,122,207,241,49,129,24,60,248,10,141,33,218,80,64,42,199,238,95,191,61,121,60,161,195,230,24,151,142,228,179,146,191,127,249,169,151,35,15,99,183,112,153,166,33,215,135,105,56,142,194,147,186,98,28,211,14,22,6,172,244,19,16,86,126,4,48,113,47,150,251,226,150,210,29,109,61,93,173,71,6,222,13,3,38,99,155,94,110,251,118,113,173,139,9,193,228,114,17,69,180,181,98,19,140,207,3,185,121,168,162,185,167,247,174,124,62,40,95,212,150,1
 87,44,75,32,245,223,75,146,202,35,62,124,230,150,6,145,124,241,199,116,53,107,121,208,46,81,93,142,36,57,234,44,99,147,124,46,12,50,96,133,230,126,200,201,148,116,181,232,107,136,57,249,162,53,74,77,150,231,39,229,100,124,164,103,170,43,114,101,129,209,135,250,20,182,233,149,49,0,186,200,214,133,140,104,14,123,76,214,231,130,132,96,66,7,202,87,234,210,131,227,9,99,210,171,69,172,87,185,204,80,52,117,175,224,141,208,162,126,185,178,14,231,118,119,87,166,253,228,160,90,98,189,176,83,185,140,127,94,253,169,162,252,239,63,61,7,4,228,35,132,223,104,155,220,193,3,183,121,109,13,208,146,89,128,249,72,177,63,146,147,175,247,158,30,15,127,236,229,83,109,36,140,206,236,201,181,144,98,50,209,188,145,2,6,60,112,19,206,28,18,155,156,35,178,160,248,204,255,236,32,109,36,136,76,159,160,7,203,83,25,153,52,83,7,52,148,59,29,93,0,105,78,229,189,247,178,228,52,109,206,50,39,73,166,89,68,172,190,21,178,18,43,230,111,171,40,59,207,201,219,220,98,50,141,179,61,183,93,178,116,66,56,93,222,125,5,85
 ,200,181,75,205,16,113,127,245,231,73,192,242,112,6,49,50,194,44,2,226,50,110,79,173,27,44,167,32,233,173,217,55,255,129,113,161,46,225,59,201,81,209,136,127,238,243,91,193,156,70,128,90,15,33,100,102,28,45,10,249,45,26,131,222,105,183,157,223,46,194,2,209,97,200,252,35,117,175,70,4,194,20,34,159,93,103,216,99,44,176,229,194,219,237,206,95,160,211,147,180,69,30,74,108,245,223,171,214,18,136,20,212,7,137,233,243,207,133,248,114,158,68,223,223,48,218,234,224,2,66,246,253,127,233,234,211,207,99,101,0,153,98,82,221,234,215,238,143,29,122,120,199,44,227,184,140,164,126,90,134,52,230,201,35,119,61,62,52,120,46,144,137,68,102,228,76,227,158,108,249,121,167,66,60,253,210,163,225,6,84,248,99,169,236,231,173,182,202,140,10,3,157,84,138,150,238,113,50,253,157,103,5,155,16,17,155,37,213,162,78,86,205,108,54,219,186,98,16,202,37,135,190,150,147,104,236,156,54,246,134,175,63,147,79,36,227,212,2,245,159,238,156,45,99,93,86,154,124,106,21,167,148,50,1,212,116,235,142,248,152,193,122,3,95,2,
 117,153,145,60,44,248,88,162,79,22,69,210,93,3,76,218,238,87,250,63,94,6,143,35,42,115,111,152,247,204,166,149,99,89,146,237,4,210,65,93,120,168,131,23,5,11,75,118,38,193,83,234,3,234,220,74,52,161,214,98,80,190,3,99,116,131,34,187,132,39,231,151,63,152,12,203,114,226,37,113,155,105,179,50,8,186,147,199,110,232,190,20,221,250,40,202,160,41,8,0,215,250,125,107,41,46,188,90,220,164,29,41,101,182,225,101,237,12,204,214,43,109,44,123,86,192,238,61,39,59,148,22,176,46,231,24,83,166,214,64,36,212,203,246,70,13,62,243,123,169,37,35,145,101,127,111,210,31,90,255,2,44,231,182,140,245,167,12,58,216,239,122,211,42,136,6,201,218,196,129,140,199,95,74,137,232,38,48,131,216,21,249,71,52,67,188,146,197,75,146,204,100,78,98,124,249,97,109,147,120,146,37,73,180,182,231,11,137,115,152,185,233,82,79,138,97,194,229,207,102,29,177,143,89,0,123,143,209,22,36,219,192,127,147,86,131,189,139,91,119,61,250,62,242,238,202,134,85,63,128,205,90,88,208,128,87,142,130,81,118,0,14,240,77,177,124,107,142,25
 0,120,84,132,161,90,104,84,30,118,116,125,161,119,160,168,126,96,138,96,186,252,245,187,139,65,21,157,58,176,28,34,118,28,226,10,25,194,235,156,229,149,24,117,1,237,152,79,229,93,54,127,39,62,39,80,249,34,74,143,40,157,117,191,243,188,153,234,151,39,228,84,28,58,141,70,8,28,66,31,13,0,188,82,188,255,152,12,16,218,92,55,229,44,67,63,156,238,114,253,193,140,88,46,61,179,252,12,154,14,118,226,98,48,53,128,2,112,210,193,64,130,114,185,220,195,97,111,55,188,235,81,38,61,163,63,162,197,138,146,125,138,88,131,247,175,204,137,192,163,30,67,173,243,143,164,233,87,9,34,238,85,234,142,28,80,119,217,134,10,214,243,90,209,18,66,63,21,110,106,30,39,9,118,204,20,219,226,151,139,164,161,180,108,214,98,43,110,230,51,43,154,93,61,229,234,213,172,153,133,83,131,11,209,23,221,38,64,15,220,87,96,191,187,90,80,187,231,137,144,253,25,159,27,226,123,29,15,36,100,20,128,127,143,38,244,47,208,234,50,144,22,182,34,9,185,107,22,36,44,159,13,225,29,107,29,152,53,90,63,159,229,182,1,194,39,10,94,132,24,2
 53,141,4,72,102,44,95,185,216,100,126,222,255,47,27,201,112,40,156,126,165,214,247,225,199,58,138,3,120,75,251,221,29,243,176,110,83,106,43,12,215,80,140,125,87,229,115,10,34,116,134,179,64,229,73,105,40,226,117,194,196,152,16,213,187,13,143,251,161,202,10,139,122,232,234,180,166,105,236,126,98,207,58,200,2,239,250,170,46,25,112,166,69,91,250,126,91,116,140,114,104,78,156,255,176,113,103,192,170,185,232,122,47,194,99,180,112,244,103,191,246,161,79,21,228,50,243,89,137,57,205,165,133,39,246,26,209,227,189,27,38,14,72,250,196,116,144,123,50,182,164,66,115,216,0,94,116,35,148,122,84,110,115,1,15,152,213,49,218,151,87,190,102,42,7,110,94,17,5,99,195,15,210,139,161,175,122,4,61,87,79,51,71,103,204,94,22,101,212,167,115,241,158,220,36,85,18,125,241,77,123,207,71,2,104,247,153,193,168,11,190,214,152,125,28,225,61,207,200,85,34,145,215,249,216,37,239,133,224,21,146,94,97,84,47,47,130,215,221,167,69,55,160,190,63,238,42,117,41,2,29,251,176,125,165,118,172,103,219,91,1,231,154,252,62,
 163,150,90,41,76,37,16,229,107,231,192,164,103,170,223,64,103,124,99,14,49,27,232,28,140,133,244,156,223,239,212,31,199,24,241,64,27,0,128,32,214,21,160,204,60,125,125,65,166,233,11,221,98,19,136,155,222,232,6,216,139,253,138,112,110,100,203,16,168,91,130,194,141,12,76,247,238,24,71,81,153,139,83,159,154,53,63,203,94,144,99,30,48,56,117,203,253,23,179,66,187,235,165,75,65,94,26,110,243,124,101,23,63,172,34,158,11,113,95,56,243,169,120,218,220,122,214,128,54,250,213,59,10,209,14,190,229,16,80,179,60,241,61,152,252,181,192,153,132,155,18,8,195,101,178,45,81,122,216,50,86,27,12,227,217,205,132,218,226,207,12,198,169,96,96,25,67,67,128,33,195,111,158,153,36,161,37,154,164,75,89,194,84,177,115,67,224,31,178,81,219,198,167,128,111,6,79,248,165,135,105,78,168,136,248,116,245,100,219,102,11,235,186,68,198,84,95,126,182,38,101,68,177,175,116,199,172,158,58,31,78,172,97,125,221,148,147,138,83,47,39,121,89,217,41,50,44,166,157,141,27,6,67,32,100,204,189,38,235,188,149,103,245,127,252,1
 49,37,228,19,166,138,93,104,161,15,12,191,175,84,227,158,80,2,147,146,102,249,198,193,131,106,40,252,22,25,65,150,69,80,232,140,197,47,165,66,88,226,172,229,138,0,237,57,97,236,237,253,201,40,65,201,228,64,182,204,215,122,46,140,192,135,80,51,63,95,16,26,15,242,20,208,214,210,67,38,31,142,15,102,82,128,171,31,32,66,205,233,248,206,74,247,155,156,75,124,24,159,16,33,30,186,253,21,136,6,122,125,99,9,92,248,125,164,124,239,209,235,224,142,50,5,247,3,90,208,123,165,85,236,135,38,105,46,113,87,26,109,43,214,72,112,241,159,39,192,253,42,192,123,70,159,235,102,13,154,98,50,118,238,53,157,195,197,252,145,91,26,114,214,27,117,39,255,30,241,181,9,95,28,71,158,226,214,113,177,91,74,245,138,43,202,104,231,183,152,212,113,35,3,193,154,0,203,2,236,239,203,124,46,59,174,159,147,138,139,148,123,149,79,221,92,17,70,39,51,113,120,144,98,82,37,137,24,132,241,130,80,206,103,27,42,159,53,158,222,23,131,56,218,103,163,175,218,147,192,227,8,199,228,152,97,240,65,222,36,133,213,186,47,216,186,161,1
 30,214,51,228,102,3,158,14,182,143,11,189,141,128,52,251,253,185,18,212,104,46,77,147,144,100,81,65,56,209,125,50,177,50,202,186,94,183,200,4,149,24,155,161,14,234,121,8,117,165,208,15,31,251,133,183,151,200,2,218,247,226,118,216,154,71,202,39,78,171,100,190,37,166,82,95,110,93,236,111,7,165,32,8,104,49,22,141,7,144,249,247,65,105,132,133,141,21,210,6,71,117,163,63,205,144,172,66,113,182,27,103,16,103,249,92,208,69,96,30,151,117,171,254,28,76,221,201,171,36,43,98,108,202,182,177,201,73,185,114,4,222,242,166,153,138,25,45,126,192,176,18,241,126,65,82,211,151,19,30,60,172,164,107,46,125,8,101,154,169,254,73,97,241,214,29,59,154,179,56,12,67,109,215,134,90,228,149,140,7,103,166,11,111,127,71,28,162,61,230,147,57,180,9,105,218,26,70,52,121,7,165,126,186,132,139,141,153,21,186,116,3,245,141,7,83,158,182,23,137,167,206,28,235,145,173,115,155,23,225,244,37,15,32,79,76,222,31,90,206,192,172,169,107,169,188,197,123,110,147,49,28,228,54,22,7,126,178,185,118,75,16,187,111,57,80,71,57,1
 54,68,181,64,117,225,125,10,185,254,1,207,146,99,16,133,146,155,143,86,240,170,108,234,190,98,82,123,67,142,32,168,81,167,30,169,113,231,117,12,154,22,12,240,133,111,211,92,150,69,185,85,59,125,167,193,211,217,141,255,140,17,231,63,224,110,111,5,116,252,241,180,45,192,146,232,114,110,54,233,17,61,71,99,201,29,103,17,85,47,202,235,118,14,170,8,150,156,62,33,162,133,210,57,172,12,179,40,122,7,204,201,143,100,17,201,160,200,106,203,228,8,255,49,39,19,54,118,195,99,87,158,13,136,156,234,20,59,83,38,202,87,195,237,2,105,225,51,238,138,243,21,193,117,127,50,16,157,182,185,153,162,170,82,170,117,117,128,179,107,69,71,136,227,217,150,176,124,72,88,108,205,184,179,216,173,49,37,246,137,187,233,78,138,169,9,183,182,133,64,248,171,226,133,22,77,79,129,199,183,152,209,179,71,118,215,22,155,235,252,65,13,204,48,123,195,218,178,191,154,135,201,126,232,97,91,202,9,215,6,93,201,219,239,71,143,152,45,20,196,90,89,63,207,100,33,38,168,206,41,108,135,139,208,196,63,41,111,63,30,189,37,130,28,1
 93,214,158,137,213,134,93,7,125,17,183,174,125,61,254,77,219,176,143,6,202,221,20,189,216,110,11,145,80,61,136,164,183,18,61,18,94,19,181,222,100,15,31,49,220,76,87,112,24,104,6,128,158,45,198,99,106,39,29,232,173,14,133,15,159,16,74,130,241,179,96,3,254,22,106,238,109,197,173,139,107,24,219,2,209,116,152,213,212,43,172,159,43,0,192,117,60,93,140,232,156,172,166,99,17,71,244,220,217,244,228,31,173,238,36,2,221,180,14,99,171,234,24,170,78,123,173,140,8,86,235,7,168,114,160,27,15,76,136,227,86,165,10,58,17,200,152,194,9,90,215,106,119,141,229,149,9,27,87,141,239,27,116,255,111,129,131,115,6,58,41,123,11,184,27,196,82,32,53,230,198,72,90,200,240,7,68,90,199,122,245,7,153,72,45,182,122,220,80,228,3,55,246,168,56,74,154,190,183,139,239,231,148,80,76,208,221,158,38,8,209,52,108,4,80,245,52,36,11,135,59,68,184,191,189,54,195,16,242,191,225,229,39,12,153,63,2,85,188,68,125,158,129,11,96,9,245,187,21,139,130,9,13,209,34,175,74,119,174,78,19,244,169,40,240,249,227,149,242,82,137,178,3
 5,128,173,171,111,14,200,47,121,150,125,10,29,155,204,2,218,219,42,120,128,173,252,253,207,28,65,144,207,67,226,82,242,56,204,238,102,119,67,250,148,94,237,44,189,247,221,48,42,235,141,5,91,109,126,156,120,177,150,113,96,96,49,131,139,54,79,124,109,230,43,214,0,108,236,255,207,238,117,220,157,187,215,236,164,93,243,127,189,33,113,119,91,163,230,190,166,221,196,254,139,222,220,89,245,152,8,217,52,40,125,137,230,45,222,128,222,243,204,82,166,21,166,246,153,198,153,105,37,82,157,169,31,252,106,130,5,53,208,86,90,231,80,47,84,29,158,189,156,135,176,119,119,130,138,39,58,238,87,144,108,221,133,74,116,171,98,62,90,148,135,110,21,66,236,171,226,132,200,86,43,164,73,201,117,143,40,49,211,109,218,157,89,45,39,89,84,69,121,88,106,37,146,4,173,44,21,227,55,177,170,183,226,37,158,251,120,46,228,131,1,184,140,245,208,237,78,22,248,214,77,5,3,201,142,251,47,142,106,125,199,114,76,31,116,208,141,220,163,228,126,27,234,35,129,103,50,118,219,12,78,26,134,48,122,149,180,98,246,19,220,57,226,1
 91,195,171,228,46,185,218,33,171,122,223,207,11,8,127,88,235,68,25,82,7,193,240,138,3,233,78,76,135,57,160,152,11,214,178,74,24,67,159,161,20,240,47,51,76,141,38,116,153,90,58,51,134,85,124,104,15,174,122,22,116,182,186,187,153,222,96,21,78,227,114,50,85,182,182,89,2,212,7,108,63,56,176,211,241,136,245,233,128,174,118,175,6,110,31,104,32,250,80,146,128,68,19,174,104,224,191,226,157,213,103,134,3,114,212,228,222,78,75,144,3,131,47,222,6,148,152,143,170,161,135,4,94,42,155,149,115,245,136,196,124,102,89,73,95,203,75,30,195,189,40,202,21,167,4,220,35,152,121,100,33,254,94,64,17,229,41,157,109,88,90,216,62,56,227,133,231,4,151,34,219,238,121,73,154,153,146,140,173,70,39,102,131,77,246,118,4,84,51,18,171,88,100,179,28,195,238,106,49,253,244,166,111,132,249,176,174,74,7,106,32,63,107,84,60,86,244,251,126,145,249,89,106,186,167,134,164,140,41,231,111,221,243,38,156,180,152,211,204,153,247,17,100,204,141,245,12,25,121,27,249,211,238,180,10,221,22,42,147,46,249,221,39,76,139,174,153,
 41,206,124,36,120,193,34,86,65,63,20,244,174,23,196,48,126,122,52,175,85,245,135,64,23,219,26,31,211,151,98,167,226,154,160,220,116,140,243,153,201,67,136,59,151,159,73,254,13,190,42,190,129,22,218,179,73,231,135,70,109,116,215,20,152,42,89,10,128,36,177,31,68,254,116,252,82,248,180,20,39,175,64,212,6,31,231,80,7,27,235,49,74,32,1,169,156,117,117,217,135,8,30,10,99,228,251,152,152,43,103,102,84,87,225,249,36,32,234,10,47,47,99,56,69,99,199,217,2,27,199,218,124,70,97,184,43,233,170,26,148,89,224,101,106,128,138,125,94,201,161,60,88,246,174,84,148,118,174,174,113,251,197,213,124,64,172,68,207,171,139,170,185,53,40,218,249,33,170,145,175,24,40,20,103,192,26,86,246,80,203,154,89,33,204,6,216,138,43,208,66,134,26,59,39,140,4,94,60,45,140,54,195,137,145,73,44,103,7,83,130,174,197,184,210,174,127,153,22,165,31,172,44,125,227,96,82,235,125,248,26,229,219,217,93,137,40,161,67,208,167,170,114,244,255,10,32,255,218,183,87,177,99,69,26,239,178,43,147,172,177,173,161,8,237,103,15,9,209,2
 05,70,37,182,20,32,6,186,109,232,130,217,223,194,196,174,186,33,151,4,189,229,16,107,244,57,13,58,177,197,231,111,229,239,19,194,81,7,228,128,135,163,247,152,222,48,208,122,96,236,235,197,137,228,117,48,244,161,102,26,147,76,21,152,77,19,190,70,3,207,121,139,154,133,151,251,228,228,226,180,137,73,54,214,11,233,75,55,145,14,232,202,221,126,147,248,44,81,100,48,223,220,180,235,54,247,111,183,181,167,11,111,227,24,241,84,2,95,1,84,37,111,28,139,87,101,253,235,242,228,8,175,227,221,110,168,144,218,252,81,84,49,84,218,161,113,170,34,167,35,165,96,243,163,250,233,151,18,114,148,233,85,40,122,163,143,192,75,190,92,52,189,62,152,48,1,210,153,96,23,123,0,36,204,255,134,72,50,55,93,70,190,232,211,183,143,4,4,141,183,31,186,250,72,82,106,12,107,93,64,208,245,192,45,217,73,238,6,199,44,92,64,190,24,163,241,9,101,42,80,66,57,161,155,133,192,254,11,165,67,228,203,199,221,124,15,131,113,63,162,177,38,78,129,76,142,96,215,232,140,2,50,207,51,125,205,134,174,9,175,170,26,213,145,71,241,222,4
 2,101,42,234,205,111,119,146,247,171,94,175,13,12,12,176,1,23,168,115,79,54,25,160,90,95,132,123,31,77,20,52,62,184,219,178,59,5,231,254,75,89,92,236,6,228,250,176,29,21,41,9,136,58,60,185,180,145,25,169,138,64,242,201,170,143,152,131,182,59,45,87,207,66,209,126,144,82,162,160,150,24,200,163,126,124,125,204,43,255,51,83,251,150,86,71,125,120,123,155,0,14,149,43,63,46,1,77,141,88,15,11,233,121,134,152,69,177,106,88,192,84,4,216,194,224,187,194,46,178,85,123,150,180,212,214,108,243,251,73,215,103,30,85,239,129,128,57,37,227,211,251,248,145,130,58,243,20,138,62,133,158,222,191,201,190,5,92,192,93,188,89,90,1,231,248,68,0,222,61,114,43,22,12,148,10,40,231,126,230,217,211,63,95,103,207,233,61,243,19,212,11,57,72,145,12,46,177,170,143,165,47,145,139,199,104,6,106,52,67,51,226,83,137,16,61,163,141,182,100,156,83,172,58,159,253,143,165,187,200,94,92,102,151,138,90,143,184,108,253,91,43,96,198,233,85,53,104,218,237,50,240,62,90,93,86,51,192,72,42,159,202,60,119,126,154,118,121,208,18
 4,26,182,206,225,84,240,223,202,20,253,137,142,25,116,99,42,230,98,211,209,174,244,241,230,225,153,7,59,193,91,126,227,28,241,8,191,37,70,208,186,217,161,108,7,226,147,157,23,203,251,96,174,114,243,38,203,156,116,72,172,59,100,100,165,253,42,9,82,20,102,145,229,91,239,55,246,143,146,217,105,115,213,149,182,211,175,115,236,235,62,40,102,192,125,236,68,162,54,98,110,246,255,8,173,91,203,160,214,34,9,30,48,205,91,222,86,39,15,94,252,164,11,17,199,36,37,208,141,97,159,226,105,56,184,107,204,49,120,136,142,164,197,59,120,45,25,165,42,68,150,137,103,31,143,45,126,14,123,239,142,35,186,244,249,93,92,172,213,58,58,133,64,128,109,185,129,205,2,101,68,30,238,54,143,118,156,176,235,65,196,29,34,241,198,34,90,243,186,52,60,217,202,197,138,74,237,250,239,188,133,167,145,180,23,182,206,46,24,248,53,172,29,19,205,132,224,250,72,23,184,188,199,56,2,112,144,97,89,109,178,161,134,46,104,49,75,99,73,154,166,114,227,196,132,255,247,147,191,101,57,105,155,158,136,217,10,117,97,98,80,214,188,134,
 21,95,13,19,215,158,114,145,81,110,115,39,242,25,1,23,2,202,201,16,228,93,214,118,90,176,6,215,52,151,127,44,245,171,125,87,203,136,255,182,64,208,236,194,176,150,189,214,69,168,197,125,172,38,160,136,252,241,6,140,241,251,8,167,165,187,205,214,4,184,187,129,122,78,162,119,33,29,23,42,96,73,163,127,178,232,219,201,134,95,216,132,78,139,133,35,107,154,60,195,159,179,118,149,28,248,5,93,231,143,203,229,130,19,19,145,147,140,161,69,28,245,87,84,203,182,72,188,167,36,138,153,147,184,96,32,245,72,177,129,142,202,74,217,219,92,81,50,134,193,190,46,168,218,211,166,212,190,12,7,131,84,124,148,229,49,64,217,12,206,238,107,32,135,250,51,213,157,85,175,61,222,68,146,21,188,204,202,172,233,148,102,50,90,49,24,230,157,233,26,248,182,164,228,78,169,51,97,119,210,213,187,35,142,142,140,33,19,45,147,72,15,185,49,39,77,60,85,0,113,199,150,17,86,65,51,37,193,92,22,160,218,15,68,236,247,215,41,245,143,198,170,207,216,24,255,19,243,40,28,171,204,38,184,232,9,141,172,182,148,149,199,79,235,60,63
 ,5,161,85,156,96,250,61,37,212,147,73,38,176,127,164,215,124,6,53,107,236,65,12,166,219,252,183,26,192,181,230,161,178,139,209,35,237,178,77,229,2,47,47,195,135,198,209,163,232,4,209,66,129,200,155,193,67,74,8,237,230,19,127,161,201,15,181,181,124,165,56,134,98,210,109,77,164,146,135,151,206,167,96,173,27,64,162,36,148,195,179,74,191,226,24,106,164,125,7,24,164,85,2,110,55,183,164,74,101,64,20,46,247,237,167,95,148,38,191,184,185,29,176,14,92,113,203,28,153,31,152,97,41,147,250,148,233,147,15,153,61,177,145,44,208,156,142,89,113,246,164,98,187,213,44,21,76,209,3,163,86,181,219,226,238,42,79,138,151,15,139,47,124,208,21,123,67,53,168,131,105,26,179,204,75,105,61,255,199,28,170,177,151,209,125,230,202,205,0,108,124,78,71,82,172,129,196,202,65,182,99,14,131,130,156,228,197,87,27,112,224,165,186,26,66,118,2,0,203,164,13,147,136,211,85,117,174,76,49,212,143,41,147,54,136,98,112,106,152,142,123,108,173,193,238,158,34,199,252,57,117,182,173,66,252,224,50,91,120,169,251,49,189,101,6
 ,234,16,188,141,167,184,104,189,40,6,234,232,119,110,10,123,236,27,223,1,199,47,72,243,61,117,222,168,43,141,240,205,240,149,227,13,74,12,180,154,93,31,174,42,6,94,212,78,72,184,41,34,223,46,14,2,49,49,68,101,213,57,119,87,217,196,74,114,238,127,197,155,184,12,9,126,122,168,171,77,232,4,151,222,128,240,129,124,231,113,24,152,89,178,144,94,246,3,150,227,103,207,13,43,38,244,90,127,160,105,197,109,182,66,123,211,221,244,3,195,223,49,53,240,57,97,82,196,150,48,224,1,144,71,133,104,219,169,159,113,105,131,131,143,28,74,98,202,221,78,139,121,26,26,183,231,150,191,0,77,152,70,226,159,32,47,127,247,63,39,232,74,157,220,205,187,2,222,23,189,208,160,90,91,55,171,213,9,84,161,65,63,251,73,14,71,69,212,32,223,147,249,81,4,230,2,169,20,59,157,134,98,252,89,87,109,145,244,74,174,62,53,202,148,56,155,194,25,91,121,140,83,16,213,166,134,126,232,228,233,31,148,254,89,175,242,110,247,199,41,91,36,49,122,70,48,117,250,161,43,111,118,90,220,71,74,157,235,22,156,218,172,210,234,169,113,84,229,1
 43,156,103,46,19,97,166,86,79,86,238,170,85,33,55,188,251,210,1,193,189,98,170,13,198,129,51,99,254,74,28,26,139,194,107,167,163,18,154,252,44,101,35,209,250,127,180,29,156,176,215,23,19,216,84,37,5,127,52,189,140,33,171,112,232,247,161,148,199,109,220,185,57,251,192,165,145,22,56,192,33,75,174,172,22,51,126,154,226,44,101,183,131,213,176,212,71,225,228,99,123,14,188,43,19,19,45,132,197,240,90,148,164,235,101,120,12,241,52,232,171,229,126,234,84,84,12,247,104,222,106,62,70,159,123,0,203,211,46,138,234,115,160,102,184,203,205,10,145,170,135,250,81,78,217,14,92,250,203,158,124,48,121,225,215,46,64,39,62,46,176,220,34,105,232,191,35,215,244,250,119,170,81,53,252,144,141,49,184,178,102,88,11,233,185,205,136,15,34,7,241,151,11,43,137,188,145,142,16,240,126,124,227,215,152,89,68,215,251,27,117,206,209,167,138,89,20,209,124,57,174,196,122,192,132,25,131,210,194,253,105,54,54,127,98,191,35,30,54,151,123,237,84,40,59,236,67,77,191,106,209,44,167,83,57,132,18,11,8,227,118,93,103,114,6
 ,32,253,242,37,77,253,104,160,132,241,193,26,124,176,111,15,119,134,198,58,253,160,214,121,122,97,143,35,13,200,105,236,101,109,245,182,40,244,71,115,212,190,59,152,72,63,68,71,245,125,171,83,96,29,177,208,255,218,164,203,54,123,74,205,186,239,248,56,41,62,156,192,66,43,148,207,81,13,30,189,1,80,135,11,52,127,152,103,61,62,179,234,19,4,160,218,142,235,8,90,11,225,92,86,89,24,39,55,34,64,140,124,253,221,115,147,4,251,174,81,23,22,252,40,153,31,161,57,121,170,139,120,0,248,59,10,168,152,71,52,11,89,197,189,162,196,147,172,224,95,97,120,52,141,146,69,249,62,17,152,82,56,188,117,183,134,141,247,243,101,151,252,160,62,21,205,146,107,218,166,182,58,164,95,210,99,233,252,201,131,71,202,204,83,250,145,237,213,8,150,32,100,118,205,43,227,192,61,47,89,207,41,17,36,106,80,165,57,58,105,244,149,140,189,63,239,183,92,226,8,117,24,129,31,118,173,27,247,246,130,74,20,237,113,118,80,160,46,139,255,189,171,127,140,189,192,247,96,24,52,135,155,251,80,41,116,77,78,67,186,131,40,55,69,105,22,20
 4,150,27,82,207,77,88,76,74,70,63,215,255,4,141,183,114,140,183,195,166,28,86,187,168,27,164,164,65,100,91,134,48,7,26,85,197,157,10,194,205,24,199,249,175,233,52,182,229,88,35,240,234,105,254,204,188,130,59,101,221,139,178,134,164,6,152,26,38,88,11,157,209,147,92,12,11,75,241,211,198,157,78,41,161,126,143,195,42,23,190,214,95,26,89,110,39,120,41,80,179,201,170,54,202,254,176,247,118,70,127,223,116,26,80,29,51,39,1,231,186,62,205,197,73,189,80,92,176,118,193,121,66,32,183,177,60,152,255,200,255,114,191,103,229,221,214,37,56,230,181,23,30,218,9,9,150,100,113,34,100,32,77,25,64,221,171,43,78,0,19,89,247,254,96,29,247,3,26,66,125,210,23,252,111,83,190,18,87,191,190,47,36,68,195,233,153,190,51,153,142,57,110,167,98,126,65,167,156,39,137,2,216,105,152,31,113,18,108,178,77,191,229,135,33,205,164,12,117,23,38,83,11,111,97,82,142,26,224,111,230,239,251,144,97,155,72,171,42,64,226,146,207,26,98,74,233,252,224,172,29,177,230,60,71,85,21,125,41,139,169,249,14,187,247,46,5,240,188,136,1
 14,106,13,171,5,105,95,238,16,141,255,43,184,102,48,223,219,178,52,1,131,188,239,255,247,217,207,190,230,195,166,34,149,15,41,193,56,61,47,163,72,65,205,208,209,53,78,159,244,42,93,180,158,18,145,35,9,239,47,143,192,238,251,38,167,173,196,22,250,136,40,60,45,8,150,115,100,92,38,102,239,153,205,183,216,101,147,38,167,124,166,77,178,46,241,227,16,44,255,144,28,220,226,168,126,203,179,185,88,209,98,240,37,189,243,183,30,37,226,109,152,117,165,232,50,203,210,106,183,92,11,135,245,66,25,183,61,113,26,124,104,222,73,112,236,44,75,42,23,70,91,184,152,45,202,138,115,116,49,53,188,23,133,14,49,93,167,70,253,210,60,192,234,40,51,239,183,136,170,223,150,242,213,127,170,42,110,191,118,223,109,27,138,94,238,33,105,194,253,227,226,173,227,184,8,222,126,84,47,23,48,129,77,170,11,187,114,201,9,91,237,80,93,198,185,171,33,237,216,20,109,123,185,245,75,124,217,16,105,245,205,150,254,250,109,101,11,67,5,122,200,58,147,166,66,153,32,80,63,94,84,65,138,199,150,156,52,111,166,155,250,200,246,157,
 70,161,178,111,232,80,3,88,202,50,198,170,205,204,18,155,170,217,181,233,97,192,92,13,224,142,114,192,215,171,146,143,181,49,175,109,52,218,91,189,96,16,7,201,249,45,93,76,70,155,9,53,12,216,87,3,107,87,205,77,193,127,26,41,69,227,141,79,13,95,66,249,211,164,48,182,136,149,57,198,95,11,214,14,79,199,15,152,133,28,184,141,105,96,235,164,45,229,130,163,218,153,155,121,83,56,55,59,113,160,38,111,203,12,140,246,50,77,48,181,255,240,49,168,185,2,23,139,199,237,16,15,232,107,192,50,83,161,170,162,42,89,74,142,27,145,121,31,96,6,12,28,226,245,38,113,29,149,77,182,245,169,151,142,24,62,151,23,68,193,27,49,196,133,13,47,35,23,114,58,8,98,69,45,0,51,176,200,46,60,99,59,235,237,157,204,149,224,144,88,6,251,130,52,27,185,102,65,210,125,105,18,6,73,225,252,69,142,11,250,53,29,205,168,138,165,189,66,171,115,183,82,22,153,86,205,245,240,234,73,133,95,100,38,137,59,40,111,165,129,162,206,41,168,167,158,0,157,102,233,73,11,13,115,28,122,205,122,221,109,19,221,40,24,99,49,211,165,78,212,128,1
 9,246,146,177,110,162,224,167,86,60,100,145,3,77,54,27,190,79,188,54,188,170,245,204,253,21,155,216,42,111,177,3,189,69,252,116,34,180,104,102,93,73,78,142,90,195,165,20,13,76,135,100,76,187,15,225,66,105,122,165,186,97,109,171,170,170,28,206,101,39,118,103,42,178,78,0,151,83,157,141,145,174,250,208,192,67,57,32,198,83,130,172,56,99,32,194,28,162,109,147,66,251,154,198,154,219,182,99,102,101,91,77,68,71,5,201,119,147,82,214,0,63,188,112,99,84,233,17,204,56,149,57,93,166,37,116,238,232,174,195,197,237,125,170,4,6,150,121,89,190,151,97,243,216,174,72,157,119,74,253,14,16,189,137,248,7,87,24,153,168,58,43,126,38,96,219,33,191,143,106,45,220,51,106,70,155,60,35,141,139,110,189,247,7,19,168,81,2,19,187,113,188,71,1,235,37,143,28,131,171,107,132,50,172,240,30,211,9,153,7,21,159,189,138,243,64,180,184,159,167,166,1,222,142,35,143,110,183,45,60,129,224,133,167,194,24,255,213,11,209,202,145,164,44,244,177,46,100,13,235,202,221,62,191,61,72,174,210,62,21,51,178,208,15,186,67,252,18,18
 2,237,188,205,230,31,133,112,2,9,145,142,114,118,108,18,111,237,93,136,239,155,142,210,148,147,95,161,80,6,156,187,95,60,12,93,180,87,214,206,116,233,232,26,37,210,222,73,66,86,94,177,134,224,223,35,164,228,9,229,126,51,177,191,90,64,80,249,138,21,145,80,204,222,53,250,208,200,90,25,58,172,178,227,210,244,166,169,113,62,209,41,67,227,13,160,14,42,176,217,149,30,223,72,248,100,161,209,50,157,118,220,239,115,93,231,179,73,12,7,254,111,40,75,201,178,98,74,209,101,57,193,154,44,145,109,236,200,146,59,151,231,3,180,72,33,235,57,222,134,50,189,116,176,254,126,201,172,191,99,2,73,37,225,232,49,116,243,99,107,229,255,112,60,164,101,159,154,29,22,62,11,238,127,29,21,221,183,191,236,41,182,49,155,101,131,27,116,234,225,25,194,183,193,186,225,129,140,139,9,60,20,12,217,59,0,171,122,234,152,130,133,112,34,61,173,35,107,157,178,62,229,250,127,151,188,243,166,60,34,39,233,57,9,227,180,64,254,217,19,37,7,229,243,125,175,200,255,98,72,129,30,15,93,65,234,136,145,236,178,48,251,20,190,40,66,
 252,214,49,74,36,170,187,153,146,10,236,247,42,131,89,22,94,224,20,84,246,237,56,198,153,221,89,214,238,43,20,182,221,198,98,100,76,30,24,46,126,55,158,210,197,241,244,94,197,172,226,232,90,214,2,177,240,47,255,7,74,77,82,117,186,244,105,89,132,119,30,165,241,161,255,166,84,23,251,154,98,242,217,2,217,28,161,151,89,206,219,246,217,173,182,14,124,74,125,55,57,183,46,205,155,90,224,106,47,3,16,108,139,207,177,178,135,128,209,47,167,217,80,50,46,50,117,115,32,109,52,148,184,107,229,15,96,178,55,9,245,98,93,142,7,29,228,101,82,12,195,52,83,24,43,0,178,229,16,250,174,202,142,85,213,8,94,46,182,226,237,127,81,39,88,206,227,199,13,169,92,190,104,217,194,30,161,184,93,96,31,205,108,99,254,213,37,46,185,22,251,188,57,122,100,128,57,25,221,163,35,140,250,4,64,35,105,76,17,71,220,223,81,193,206,211,75,126,222,122,75,185,62,128,219,0,235,99,148,76,161,68,184,176,108,85,44,46,166,162,214,126,192,166,156,78,254,155,111,94,100,216,96,3,165,177,172,85,183,246,227,245,72,115,92,147,172,125,2
 2,253,206,14,137,155,198,86,40,209,6,179,230,19,116,50,103,135,124,14,198,114,198,170,123,44,64,205,72,5,62,60,28,101,25,42,49,62,251,8,211,74,171,87,204,193,20,103,222,196,145,96,6,122,205,215,103,38,202,49,240,53,17,216,158,250,83,53,99,139,249,40,203,80,168,126,157,238,246,114,56,87,245,54,178,225,61,13,251,71,189,113,152,197,0,95,83,174,196,194,172,99,166,159,116,140,126,0,33,230,169,62,41,120,139,234,235,232,229,117,43,238,80,209,249,64,49,250,249,90,100,160,159,142,201,46,186,160,17,79,12,110,240,118,179,198,7,127,247,141,195,132,78,53,202,200,203,240,245,17,170,207,247,30,197,101,39,75,118,247,174,82,170,186,36,14,183,147,55,162,70,87,192,47,48,188,83,245,124,78,235,209,123,59,221,96,33,233,187,214,75,241,50,157,13,10,221,119,101,81,126,227,177,123,104,61,196,3,127,88,62,82,9,206,64,232,12,250,191,155,240,63,5,245,80,151,5,152,205,145,152,2,125,106,168,119,64,142,19,155,152,127,10,175,87,157,173,203,90,184,74,57,119,125,49,201,62,182,171,85,242,172,184,13,203,87,74,18
 6,52,211,151,167,146,20,177,128,20,136,226,128,27,227,194,133,43,51,175,128,179,123,106,228,131,192,59,94,15,124,142,245,213,92,138,158,111,68,26,20,231,62,76,152,149,133,53,105,42,230,104,100,131,51,249,9,193,156,26,204,149,145,81,194,149,130,235,198,222,84,154,118,73,85,82,212,207,196,224,195,129,190,228,179,71,245,7,140,114,175,225,224,149,3,187,174,205,108,237,16,47,185,30,115,216,150,237,115,253,180,48,111,105,113,102,133,40,8,121,98,45,240,175,197,37,22,20,235,239,124,122,147,201,83,160,14,209,104,169,95,246,55,190,144,98,56,210,124,244,64,128,146,239,20,61,221,31,22,162,141,174,146,1,157,237,227,251,164,88,74,172,191,226,214,162,170,153,115,117,247,221,18,46,120,255,151,108,136,86,27,56,236,233,140,6,30,109,167,18,15,254,64,78,146,222,245,229,130,18,161,199,96,24,86,169,50,35,4,127,204,223,16,99,154,184,253,73,250,238,142,245,244,9,96,83,197,185,122,125,23,119,112,177,4,2,238,108,150,185,47,36,15,154,44,21,250,99,55,12,70,182,6,13,248,155,43,109,251,97,39,247,229,195,
 30,91,210,121,8,36,10,100,4,224,122,17,113,27,184,41,30,253,159,67,62,185,64,135,135,233,112,52,234,211,253,157,221,74,41,202,199,152,27,214,140,53,59,132,75,155,29,161,18,176,191,235,43,45,72,61,175,82,43,109,206,3,174,125,35,161,21,217,181,69,196,138,109,254,90,221,139,53,92,108,229,229,252,21,40,3,252,51,22,183,212,128,128,250,230,77,234,97,126,253,43,87,91,205,251,126,199,105,220,218,137,144,186,44,246,97,188,142,96,119,16,202,142,128,136,89,160,30,249,93,41,211,130,173,243,19,80,3,130,140,63,120,29,83,235,44,69,69,165,113,237,9,104,96,155,174,152,161,4,183,211,128,16,112,109,8,188,3,177,246,8,239,250,65,196,104,147,124,119,86,131,207,151,168,39,111,36,65,241,209,233,209,202,221,37,97,198,48,72,50,83,166,239,136,177,214,111,202,164,237,226,245,98,193,55,134,41,174,205,245,73,37,93,72,25,96,39,160,161,67,145,202,64,72,67,111,104,195,112,112,245,70,142,29,238,62,184,211,82,143,126,136,179,118,253,85,157,188,45,226,131,161,71,124,167,165,161,229,19,187,54,118,168,241,100,24
 0,220,146,82,26,126,37,211,59,243,160,106,112,107,108,92,147,180,171,65,175,157,160,10,33,101,235,236,1,3,25,49,3,177,254,65,43,112,225,197,41,59,117,157,182,199,176,19,208,9,6,80,194,192,57,219,45,207,51,221,198,211,41,185,64,98,105,5,88,186,81,118,226,167,19,141,139,103,44,57,23,49,214,217,186,87,205,58,31,6,163,134,141,9,101,236,7,90,15,221,83,27,149,57,105,172,10,234,63,3,207,235,250,161,242,204,129,107,142,93,24,205,49,135,167,87,156,115,39,248,246,60,43,155,108,166,77,125,71,168,12,192,30,111,228,85,148,113,120,61,78,215,175,127,207,186,6,25,209,240,223,76,136,163,173,228,10,38,216,226,55,151,115,29,237,162,223,138,12,115,15,98,171,138,212,239,99,143,225,126,51,131,241,131,244,130,147,215,102,110,122,39,241,227,248,71,254,94,78,174,183,20,168,211,170,72,155,193,174,107,61,213,132,234,205,183,149,148,95,232,219,58,74,153,117,111,209,123,253,239,238,12,147,3,86,204,85,165,203,88,241,146,254,46,55,78,20,42,249,136,161,227,54,152,71,128,213,9,133,124,5,202,175,167,130,110,
 34,172,92,53,20,35,104,31,194,30,81,118,152,11,1,57,86,123,93,64,193,102,136,207,25,232,37,89,132,127,132,39,1,142,255,204,52,175,255,46,198,45,85,41,104,183,234,212,184,119,55,23,20,13,159,197,65,230,248,160,151,174,66,104,153,88,170,150,183,13,50,192,67,146,146,25,108,3,3,51,214,78,132,197,166,118,81,106,31,191,33,74,184,118,106,217,229,218,122,237,80,95,61,218,140,237,157,14,138,5,154,158,233,155,36,189,223,26,96,110,139,224,226,58,105,90,150,145,81,129,114,47,71,200,5,152,19,28,0,104,57,132,223,233,196,121,212,233,51,53,109,50,152,111,89,228,175,146,254,84,87,19,234,37,98,43,156,222,232,208,55,150,198,77,180,117,226,212,151,188,196,102,250,200,19,11,204,184,156,54,192,206,137,130,177,214,198,153,227,101,5,243,194,136,170,123,44,63,243,228,49,31,81,176,106,215,9,216,22,58,242,230,217,181,201,84,89,250,117,112,61,85,216,153,3,137,140,210,104,253,22,133,57,30,234,192,117,91,216,77,37,187,65,16,163,248,160,249,48,88,26,31,146,126,119,3,206,131,31,225,30,3,98,179,47,191,120,1
 64,162,28,59,32,143,168,141,51,89,11,91,248,25,207,225,136,209,154,79,178,242,103,211,170,141,27,250,34,38,61,115,45,119,35,193,11,72,229,221,211,160,241,123,91,159,135,147,106,38,217,47,166,64,41,86,158,177,230,196,40,46,219,32,204,29,106,229,195,130,37,172,221,207,120,232,103,216,151,173,209,216,164,233,208,141,234,225,191,253,204,145,172,44,146,253,223,238,117,218,178,65,164,128,42,58,128,182,97,38,254,213,65,18,120,47,79,137,43,216,182,241,219,224,47,208,67,136,170,243,166,170,211,193,234,51,227,159,212,252,224,97,235,228,54,204,11,20,138,240,135,21,117,11,33,158,38,62,23,134,119,81,85,67,28,197,239,86,35,47,196,188,96,207,33,214,155,236,226,119,12,126,163,46,170,151,136,114,43,86,28,129,70,79,243,63,11,207,206,62,112,10,7,177,81,35,246,44,157,85,209,12,171,248,43,138,243,29,91,99,24,130,182,90,35,201,0,152,64,143,73,130,145,226,219,196,91,84,194,56,36,112,5,177,31,121,74,177,220,252,10,148,60,164,129,254,197,42,124,243,98,220,78,83,78,134,101,218,37,125,238,61,161,70,41
 ,19,108,114,73,220,197,253,245,3,196,239,193,245,49,139,227,136,22,217,146,126,252,179,253,42,111,198,185,249,173,7,249,166,64,251,241,244,16,155,110,31,209,187,39,35,187,11,104,202,128,71,141,162,238,75,1,7,168,69,214,53,252,182,139,235,225,133,67,140,166,206,229,160,210,156,89,91,240,228,89,166,223,34,130,67,207,236,62,176,128,175,60,140,139,47,139,26,165,133,193,227,130,168,38,187,140,145,244,220,239,27,82,32,104,67,5,233,209,152,107,114,97,68,157,236,144,16,46,171,158,215,107,184,189,99,197,33,225,180,238,108,235,156,254,134,190,184,213,26,196,101,205,85,40,118,40,228,179,37,26,215,171,247,44,236,150,30,191,198,31,100,115,91,63,123,171,57,116,41,6,135,127,210,184,156,195,145,181,238,94,119,232,82,161,48,19,86,144,152,196,211,133,118,41,109,93,183,154,201,147,117,190,46,137,31,84,86,178,212,251,51,165,5,1,190,97,135,234,173,48,98,228,23,96,231,97,101,33,239,198,227,42,131,36,235,221,56,53,173,231,212,178,9,89,76,155,36,204,63,212,159,249,225,86,163,84,249,183,196,134,210,
 132,163,53,16,136,255,196,12,68,82,66,157,229,252,250,56,71,41,183,106,65,153,73,74,113,173,237,166,86,164,228,196,244,58,21,161,186,136,129,10,44,153,233,175,135,128,211,154,157,163,139,232,147,27,0,56,110,165,2,185,42,136,19,16,80,51,129,24,212,181,80,133,238,171,205,173,183,41,7,16,36,224,46,59,96,57,135,29,244,72,14,0,32,255,180,126,81,192,91,189,97,223,71,8,204,6,239,41,102,126,143,57,219,33,135,237,100,55,134,250,31,113,208,44,144,171,93,144,85,165,92,25,204,255,231,66,14,18,63,209,130,65,78,40,188,172,204,36,43,159,72,184,134,123,113,171,128,243,148,224,184,69,10,171,49,20,112,244,250,230,16,10,14,219,102,161,15,166,99,94,101,216,44,227,41,159,216,118,127,15,147,17,70,80,29,190,180,45,39,106,195,41,123,97,233,210,87,190,237,22,233,101,96,145,72,175,139,217,161,180,192,66,130,84,33,79,124,185,72,218,245,164,170,11,160,207,25,21,109,60,242,151,175,114,161,199,61,115,248,218,107,52,86,121,60,125,191,171,9,129,207,158,9,78,223,214,72,35,63,116,47,83,227,243,164,175,58,161
 ,247,95,164,235,53,52,68,185,9,193,23,203,224,25,228,91,65,13,112,65,104,56,18,49,84,131,219,40,156,111,110,101,182,204,187,67,68,183,253,233,225,148,49,212,155,194,228,208,117,169,173,150,50,84,36,54,101,84,173,83,215,72,61,113,111,150,86,36,42,185,176,117,85,19,109,242,208,76,148,188,189,229,152,189,170,79,140,166,143,250,215,190,42,154,49,48,42,38,196,11,208,41,82,189,42,229,191,11,82,147,137,129,142,39,81,132,50,58,221,129,151,163,196,218,154,227,183,110,251,221,75,26,214,7,123,180,83,11,212,137,240,53,245,72,36,152,212,151,56,228,251,20,16,45,168,73,131,207,190,83,48,225,194,20,13,208,75,156,218,178,93,254,211,60,111,51,115,235,205,173,239,253,152,163,130,126,182,240,101,166,49,222,253,70,241,142,171,97,174,121,10,181,249,224,74,7,26,177,53,211,35,254,128,85,141,108,45,105,246,243,106,167,204,166,252,114,128,127,222,252,4,4,149,84,105,143,119,10,166,124,34,45,152,18,37,221,4,40,125,169,233,89,17,169,73,255,138,208,74,183,8,95,224,92,190,58,118,157,122,108,145,30,3,173,2
 22,131,184,165,124,167,163,47,28,225,118,142,101,18,216,72,223,44,199,198,48,16,163,83,188,156,250,39,151,224,97,29,45,113,115,167,199,142,102,236,206,132,240,141,64,113,209,155,104,34,125,184,86,193,168,130,15,120,36,252,140,231,35,93,240,217,238,206,118,211,209,91,117,230,52,160,221,53,138,237,189,117,192,246,57,177,163,153,41,204,228,56,46,254,5,163,87,29,184,6,149,69,11,251,12,89,143,108,43,184,242,27,118,160,15,112,233,201,126,227,239,171,8,14,87,79,134,138,215,167,26,206,151,152,243,128,204,55,54,241,33,250,165,22,243,118,144,72,96,127,7,241,226,176,178,55,183,3,181,106,244,138,61,230,98,213,239,10,146,25,184,170,170,104,84,40,136,213,2,116,66,202,14,163,185,90,112,177,38,12,182,231,137,87,136,234,23,197,48,33,54,248,196,75,153,38,110,164,56,182,67,226,107,208,84,90,183,244,79,164,250,133,21,23,142,180,139,184,33,63,25,211,43,6,127,219,136,223,14,87,205,249,110,215,240,125,60,23,219,159,13,26,112,81,6,150,223,113,89,155,255,78,9,63,236,168,46,106,177,242,170,49,92,173,
 160,122,254,100,238,39,94,20,150,54,4,81,109,90,226,144,31,208,188,243,23,71,10,168,60,39,237,248,199,111,135,119,128,244,91,64,82,112,168,128,104,16,109,166,5,163,158,37,5,207,12,245,29,134,191,207,48,166,9,48,110,123,63,34,138,39,6,192,232,148,145,97,156,218,83,112,178,193,70,80,131,43,114,91,195,83,87,46,72,75,6,73,199,213,147,127,159,69,0,119,184,187,96,89,42,27,102,44,98,183,101,153,13,223,201,171,217,220,100,58,158,163,171,215,196,158,16,128,186,253,30,70,104,111,51,207,54,60,244,176,25,114,201,76,7,150,229,11,84,178,51,15,156,246,37,57,173,8,146,209,123,120,191,214,65,150,136,217,25,201,126,235,72,13,196,242,102,12,36,184,85,9,47,134,136,11,27,82,29,55,148,66,237,68,169,203,53,223,73,160,204,14,234,209,131,178,103,70,153,150,221,86,134,176,189,154,108,133,77,52,65,31,213,2,39,61,68,253,233,17,248,140,254,155,106,253,246,213,203,95,41,112,208,212,109,242,205,168,239,138,94,139,165,161,166,81,14,84,203,137,36,101,188,16,249,165,66,175,175,221,54,20,56,130,100,253,170,19
 3,100,58,113,103,154,202,118,168,186,213,146,181,58,81,192,4,169,166,97,179,228,202,180,183,167,181,109,175,20,134,141,155,106,190,239,235,3,200,114,92,96,169,35,168,126,247,96,255,25,12,25,130,8,168,62,85,44,203,245,35,75,151,205,201,148,197,123,218,79,26,70,98,88,155,253,254,73,46,234,105,173,23,148,159,238,147,106,76,181,50,194,159,74,35,13,254,186,80,116,212,162,19,140,232,71,96,229,223,182,66,103,192,193,180,171,129,140,80,72,202,221,0,164,93,52,253,154,74,16,190,128,173,5,234,155,74,47,14,80,23,209,207,55,49,152,36,135,87,159,1,167,242,71,68,124,106,253,130,156,12,179,168,110,254,34,53,30,199,152,120,130,92,201,46,104,200,107,29,235,4,202,205,223,205,78,42,138,107,12,253,228,114,88,124,18,254,71,204,188,219,1,127,21,4,208,166,110,149,23,204,93,172,217,135,72,212,28,230,33,156,228,201,180,209,29,94,182,27,50,98,111,131,251,154,164,59,116,209,34,1,180,221,43,19,203,168,20,107,230,76,71,141,183,197,98,14,249,37,233,178,9,233,173,38,108,237,248,179,43,191,210,1,124,123,234
 ,121,97,248,197,182,246,0,214,248,142,120,204,20,89,249,153,65,249,155,249,226,2,33,49,240,246,80,98,245,149,58,14,100,0,135,184,175,244,241,47,123,46,120,251,75,59,21,73,229,226,11,42,222,211,161,163,223,170,112,160,136,11,152,131,146,243,224,206,86,210,6,176,156,193,221,68,85,157,149,246,199,124,241,203,136,72,93,167,250,135,237,46,203,59,241,29,177,129,88,179,119,188,8,41,66,34,66,228,152,137,3,58,65,140,67,208,168,144,213,81,246,64,23,180,255,196,189,162,37,204,44,240,134,66,126,117,107,3,180,171,109,153,160,255,221,141,191,48,111,62,158,27,242,193,137,121,181,36,5,191,22,5,37,52,68,228,10,244,90,206,86,177,80,187,234,217,237,105,196,30,200,62,84,211,15,26,123,139,17,28,145,181,17,101,173,38,156,152,117,142,180,154,73,121,232,33,209,240,62,135,109,183,220,155,184,244,7,21,153,99,47,247,190,40,228,239,210,146,149,1,236,90,22,102,123,182,42,153,113,6,148,12,197,124,66,238,13,252,28,232,220,133,226,37,64,0,135,45,228,103,71,220,60,145,76,235,104,149,194,25,44,228,250,80,245
 ,112,236,106,121,48,187,222,237,184,213,26,123,71,97,33,76,68,178,93,72,244,44,187,128,208,96,135,214,9,15,17,214,102,66,65,192,100,102,191,101,200,60,4,152,206,149,38,136,35,198,55,34,60,93,193,152,241,19,48,4,80,171,130,25,61,27,71,46,42,106,168,142,213,93,180,108,229,18,246,194,150,210,228,123,58,87,29,215,122,18,150,165,140,76,167,18,145,41,253,28,126,92,29,51,27,5,89,82,97,173,195,71,15,167,148,9,200,46,200,0,14,186,7,109,42,10,138,112,57,73,155,182,118,100,186,205,107,79,51,191,181,52,205,8,241,62,231,212,162,193,230,246,97,221,46,202,130,28,75,71,222,130,77,150,230,57,112,189,34,16,181,67,192,13,125,54,197,140,144,251,189,209,220,44,166,124,46,93,76,188,142,230,228,223,43,9,62,171,132,183,133,204,208,68,20,85,70,49,109,143,47,177,125,231,103,245,206,162,194,91,107,138,20,45,130,212,167,89,100,254,30,28,148,216,17,101,221,94,43,141,247,20,194,12,26,185,35,1,103,166,178,212,166,187,63,69,61,147,163,133,95,5,107,38,107,97,69,95,183,90,150,73,237,181,154,70,204,148,111,78
 ,139,63,233,133,141,21,228,202,67,232,69,121,212,116,148,131,148,187,159,119,97,22,109,243,112,49,118,154,200,16,33,142,93,99,174,254,63,159,162,220,246,244,168,157,234,130,105,245,1,171,231,238,3,92,56,173,87,188,238,65,56,143,74,69,234,116,198,63,255,36,227,186,133,153,165,183,112,244,242,121,89,185,50,223,22,250,187,81,248,39,172,223,82,211,201,120,92,23,254,152,236,126,192,17,149,53,61,172,218,176,177,104,9,220,179,137,165,252,207,214,241,12,100,188,58,254,72,81,48,167,169,101,178,47,182,71,130,140,133,104,80,30,151,59,145,182,13,247,172,172,118,170,49,205,50,112,139,85,228,9,44,58,156,232,222,175,9,200,223,108,227,49,70,255,110,214,22,152,137,47,144,210,26,188,226,115,5,146,65,101,214,246,127,243,240,60,239,206,75,85,129,140,119,62,29,83,10,234,54,223,228,159,72,255,1,131,92,3,12,161,32,101,42,153,124,163,131,117,20,27,72,155,251,136,29,17,17,9,168,96,21,183,254,22,233,126,107,41,123,73,23,217,247,157,247,66,113,180,160,71,118,182,129,196,207,149,154,138,71,251,190,145,
 233,23,98,85,185,30,227,77,98,235,156,21,165,138,78,180,192,41,193,206,72,27,192,177,34,236,71,180,90,136,189,126,150,27,205,58,32,41,222,4,240,216,199,16,99,107,83,188,122,37,43,171,118,154,199,87,159,75,61,46,2,137,121,47,136,202,2,111,181,206,215,244,1,118,88,42,193,50,237,1,15,34,247,10,119,56,157,242,134,28,28,208,57,157,247,48,77,19,38,37,4,254,207,131,172,157,147,80,63,87,219,16,174,70,170,5,99,125,110,76,248,255,225,21,156,127,233,158,221,22,58,55,82,42,191,141,244,131,71,223,234,85,183,125,214,164,5,179,188,97,14,51,110,193,71,145,15,85,195,231,127,151,254,230,64,132,169,115,195,66,184,195,33,113,157,221,204,155,60,240,166,215,31,188,78,94,117,92,22,67,226,190,46,210,235,219,25,10,70,238,213,255,38,157,82,195,5,250,157,194,66,23,129,107,102,124,67,69,195,229,246,113,147,249,77,152,129,201,123,45,94,192,196,220,104,161,255,238,43,76,67,49,211,37,0,69,213,38,220,252,132,137,16,187,172,255,214,251,246,204,66,143,168,79,211,174,198,164,230,196,109,10,114,191,109,168,226
 ,116,154,93,44,178,205,136,239,54,236,50,143,42,213,133,24,64,119,149,159,114,230,39,189,243,109,181,30,76,75,27,101,88,213,239,109,90,232,130,53,20,160,17,113,13,121,241,178,27,210,146,31,26,142,18,130,176,41,186,6,139,222,32,76,233,237,140,54,84,204,58,215,122,167,72,175,111,192,215,222,90,242,54,197,41,243,251,115,171,9,91,141,40,59,110,215,220,183,194,216,218,211,198,164,217,183,43,26,32,193,42,61,30,24,93,109,20,186,214,180,248,137,89,56,194,142,39,35,253,98,98,234,82,75,155,186,213,7,30,26,125,99,63,145,171,215,170,238,39,1,185,13,27,96,254,209,84,83,33,222,25,129,198,119,246,46,116,117,146,190,90,81,142,235,69,214,4,66,176,54,31,56,165,233,252,144,134,173,37,56,103,227,114,186,203,40,218,201,4,240,245,129,136,42,133,250,24,251,107,178,37,148,200,132,209,81,217,139,163,56,197,239,153,253,5,207,7,73,90,59,148,42,75,250,254,128,183,225,99,112,96,250,59,151,3,165,149,81,84,33,203,67,90,19,104,145,100,228,145,35,221,61,122,20,153,84,84,13,133,203,71,59,150,96,102,10,31,31,
 111,196,243,118,131,230,173,241,156,196,127,194,74,82,132,245,224,81,199,83,59,105,101,222,155,201,152,254,200,106,130,117,225,98,155,45,104,194,175,253,249,75,165,170,187,171,33,118,46,142,196,174,39,118,106,220,170,44,17,114,88,41,181,113,156,25,203,118,245,67,7,203,139,60,133,81,61,249,69,247,109,226,166,15,75,237,222,160,227,51,63,224,101,108,167,45,215,170,198,245,182,222,249,150,51,206,37,110,136,158,149,175,160,147,41,160,195,139,163,237,105,206,129,42,89,156,122,147,87,241,206,2,232,89,73,181,42,132,85,110,168,95,147,18,114,103,56,93,112,67,28,74,251,244,194,138,161,186,252,123,109,90,226,72,98,222,77,197,48,243,43,133,28,86,120,213,201,28,61,242,128,215,210,111,152,146,212,54,223,199,202,199,17,138,156,4,244,24,82,10,249,185,125,88,137,171,68,102,38,37,167,203,245,234,184,227,151,29,222,26,136,120,23,151,106,107,30,45,164,66,138,100,255,252,174,207,23,167,168,157,110,8,69,50,174,144,169,52,20,126,205,72,182,162,140,59,171,131,32,170,196,69,4,214,36,108,212,164,232,6
 5,59,167,198,110,182,159,213,5,222,116,129,158,66,20,104,192,154,4,193,65,127,10,15,215,127,239,14,79,250,24,85,192,99,214,161,206,236,10,158,243,112,22,254,94,42,219,254,19,90,235,99,226,88,179,80,112,110,105,222,62,80,132,54,204,253,217,118,183,95,94,46,41,240,98,247,165,129,100,44,186,152,187,247,12,233,238,174,197,236,199,70,48,119,74,170,144,25,138,133,34,45,157,205,127,104,179,16,50,31,156,74,32,112,150,20,46,107,27,148,51,120,81,97,7,14,234,46,180,59,42,250,121,130,105,156,196,15,193,173,16,30,247,34,183,132,174,51,126,226,149,83,115,227,81,138,20,181,152,189,90,105,68,47,109,72,154,63,183,78,156,68,232,99,202,229,125,238,190,251,204,36,83,110,95,98,246,38,49,116,157,12,59,189,44,1,145,72,243,51,149,49,102,42,170,233,221,204,85,240,60,193,202,92,210,56,165,94,207,113,212,48,197,98,71,183,3,238,124,227,134,146,148,255,104,85,177,249,123,29,139,74,129,69,167,232,1,86,25,233,233,109,237,111,51,230,64,60,144,12,233,41,54,162,131,73,123,205,52,203,213,47,102,158,165,104,22
 7,42,17,12,222,150,133,171,99,231,246,192,73,221,108,66,165,102,105,23,56,196,124,172,26,240,217,190,176,193,255,120,139,59,223,55,146,96,204,52,28,143,80,169,34,245,149,44,191,149,77,174,24,28,79,162,128,19,166,234,75,95,95,205,55,237,21,15,88,124,174,78,248,35,43,248,241,6,237,159,95,122,235,254,155,178,134,85,84,100,244,180,82,245,213,40,171,231,138,234,78,143,178,78,7,210,203,146,237,235,249,14,251,226,20,189,190,76,185,35,183,171,164,0,154,26,53,142,227,4,68,110,123,120,47,159,147,183,34,29,28,69,162,152,179,82,144,106,213,190,176,105,92,187,37,165,3,38,13,11,255,56,168,253,224,42,1,87,66,66,175,230,241,131,136,245,156,53,67,235,128,218,53,144,108,51,150,171,180,97,66,61,179,33,15,85,133,93,150,211,114,74,155,54,184,230,249,136,112,133,1,162,86,244,91,9,196,42,80,234,185,157,49,149,22,96,17,131,155,175,97,34,83,190,202,197,156,249,233,91,108,208,74,150,72,83,193,64,229,82,171,198,107,188,163,220,212,51,61,246,91,247,155,81,214,178,247,153,83,72,186,249,168,181,0,253,145
 ,110,39,0,142,70,66,125,17,17,59,234,134,67,130,38,133,121,190,188,210,207,228,2,187,255,88,176,180,229,102,40,247,118,148,244,52,147,51,246,149,67,114,59,114,114,91,235,133,4,25,192,118,32,104,205,45,30,224,233,147,88,51,106,169,192,193,18,11,93,175,57,204,241,175,115,30,235,9,163,182,65,127,124,96,87,177,220,248,207,103,133,126,52,114,37,158,251,204,62,62,230,222,137,13,236,8,213,244,141,55,7,194,77,70,145,162,25,117,51,79,20,82,162,215,84,160,142,10,237,188,223,38,136,76,202,118,212,78,177,139,161,101,58,186,160,127,5,239,51,63,0,180,57,69,223,225,210,33,186,52,88,182,104,141,243,113,239,149,202,154,46,146,2,143,68,254,160,11,186,105,226,174,103,60,16,46,192,162,78,196,91,55,42,215,236,238,195,230,151,101,239,66,181,128,172,113,21,221,138,98,134,236,166,113,96,250,147,39,11,131,25,164,81,83,93,150,75,182,70,38,205,247,243,176,141,225,206,209,158,164,44,26,43,78,165,172,131,132,17,163,59,64,218,38,99,219,232,39,38,63,158,130,51,183,248,24,141,51,69,6,95,248,67,71,94,186,14
 7,70,151,235,29,44,23,217,115,221,152,156,247,100,38,62,131,75,220,186,231,187,132,96,145,191,132,98,31,156,188,158,63,104,107,3,151,2,167,6,4,144,115,237,50,136,123,80,19,234,92,145,154,44,220,78,233,108,159,172,255,104,250,80,177,32,229,119,161,61,122,99,20,115,167,58,242,149,233,194,83,139,39,223,135,252,9,145,210,120,55,14,175,10,111,205,159,4,242,99,123,200,238,204,130,248,150,3,59,83,131,31,25,164,13,66,121,3,242,143,20,158,5,107,120,163,226,134,203,136,31,167,119,25,203,33,237,141,82,145,131,99,216,219,177,122,21,155,9,250,178,216,135,83,90,85,250,247,62,253,75,75,158,158,167,133,189,252,6,77,218,252,207,49,178,49,37,108,52,135,204,116,11,223,70,69,139,182,142,135,20,24,144,108,80,210,149,31,103,24,70,57,17,148,136,70,172,106,174,73,12,113,250,139,21,66,143,243,192,48,222,116,115,60,72,191,154,187,232,168,8,242,19,241,237,63,20,77,114,245,106,181,167,100,254,110,135,7,43,242,26,248,46,236,241,199,84,95,148,90,10,203,73,166,166,51,133,60,95,111,4,39,105,138,76,144,68,1
 87,160,15,145,156,26,67,4,19,22,57,33,153,163,85,51,77,234,72,40,109,106,251,20,203,91,69,63,182,74,148,128,171,107,133,14,132,76,38,200,230,83,143,35,233,45,134,4,87,73,192,104,57,178,148,179,189,104,125,155,83,28,96,160,206,114,10,57,211,110,4,42,176,194,252,112,222,34,19,84,255,117,187,6,186,27,240,179,127,150,160,106,126,3,112,149,35,117,115,179,222,216,126,97,3,175,65,153,12,9,240,193,119,207,152,203,182,175,223,122,206,170,227,46,225,129,232,33,3,161,177,247,126,220,92,192,15,73,85,142,209,94,211,35,255,245,88,129,89,165,238,21,42,42,171,173,188,131,2,30,196,16,64,159,125,1,241,154,43,117,176,26,190,226,212,241,234,254,182,3,9,29,116,83,65,105,181,5,35,193,10,248,82,254,107,23,40,212,55,253,163,140,68,34,215,228,32,229,236,38,58,149,222,83,21,240,232,219,87,165,198,254,173,46,107,129,207,231,113,146,20,90,78,63,147,195,237,185,187,163,4,2,146,174,47,237,94,213,237,40,129,78,31,23,187,30,250,31,27,163,126,137,60,20,21,219,62,63,53,120,106,75,94,214,240,35,130,113,241,22
 3,39,217,225,187,191,179,184,194,98,170,80,52,1,219,101,221,21,211,112,49,129,221,194,49,125,234,129,67,219,151,102,51,102,4,72,128,8,50,71,98,196,89,36,72,253,92,223,98,89,227,165,55,63,198,29,61,16,253,206,151,209,89,86,206,116,142,15,155,224,251,39,53,26,49,34,6,252,39,109,136,109,162,22,24,22,248,43,252,109,69,185,155,210,144,89,14,202,68,196,237,22,140,189,126,86,166,106,241,212,55,3,224,167,185,47,235,214,169,112,182,247,228,219,99,137,35,94,72,125,82,4,246,116,147,115,103,41,183,206,70,4,40,71,66,18,135,53,150,163,186,168,153,161,219,161,255,204,33,153,105,17,1,78,63,87,61,151,18,92,178,27,242,251,104,175,51,17,71,15,203,95,83,2,223,240,116,165,59,254,237,56,226,188,146,13,197,223,125,235,247,78,48,100,178,205,55,183,157,26,52,163,152,226,75,77,24,148,60,41,177,64,99,145,201,114,100,243,217,145,43,224,211,217,188,201,101,160,45,150,113,141,33,228,199,40,229,146,201,15,77,170,207,64,205,3,244,27,234,241,188,75,208,114,107,255,231,252,98,99,229,158,51,234,82,249,9,158,2
 44,232,35,83,136,62,157,173,201,141,110,88,60,35,177,217,66,36,208,201,9,186,40,3,141,7,225,35,38,137,95,77,212,82,155,49,211,255,238,254,234,239,218,74,147,153,32,213,163,4,69,65,122,233,236,218,51,23,109,46,23,34,158,180,235,203,53,152,48,141,135,33,63,107,136,39,44,152,117,219,43,20,11,208,247,195,68,219,154,221,94,39,123,226,106,73,55,249,64,171,200,110,1,16,202,161,53,1,118,57,28,217,208,130,177,71,29,23,229,139,238,209,243,97,235,218,136,98,123,117,68,77,6,184,225,75,15,215,8,200,2,193,103,200,247,43,111,130,92,157,147,175,172,8,220,195,106,229,97,152,195,140,113,118,29,255,23,194,14,78,102,183,123,7,215,156,216,43,172,66,91,222,30,192,224,67,98,45,191,76,186,136,205,21,181,190,145,59,120,83,249,180,152,25,49,200,40,232,185,39,227,254,147,110,166,211,248,119,250,198,14,57,195,14,95,245,172,49,211,127,47,215,29,212,231,35,29,5,152,47,38,212,240,135,123,238,90,204,105,202,9,221,195,76,91,19,117,55,71,184,247,198,171,200,168,228,40,175,24,23,174,29,224,120,204,196,15,194,
 247,87,75,106,56,0,111,216,68,92,237,146,167,181,109,143,14,84,62,112,128,1,177,166,74,106,120,245,231,158,166,46,224,38,133,66,35,135,9,49,57,238,147,24,239,38,86,64,147,49,110,73,117,209,75,159,130,216,62,22,53,76,42,151,85,199,69,185,176,235,129,2,172,69,6,27,237,117,162,114,11,111,82,170,116,84,165,214,209,146,63,134,167,196,39,42,132,226,146,20,237,55,222,94,123,193,137,197,219,101,44,109,121,63,19,240,246,187,200,173,83,156,109,163,99,216,191,231,124,241,69,253,161,159,4,56,111,183,156,127,113,141,191,240,235,213,78,99,220,179,91,253,22,216,100,191,165,105,49,188,194,251,236,230,20,156,229,211,43,196,82,231,78,195,112,144,97,78,166,82,234,11,207,74,60,207,207,51,126,183,143,37,84,31,164,66,6,32,234,174,54,107,222,104,13,4,114,201,52,119,7,254,97,53,15,174,234,198,36,142,22,162,35,210,20,192,197,143,230,166,190,219,168,224,163,161,225,4,100,152,175,60,186,54,43,74,29,242,214,210,89,89,183,44,209,33,3,44,249,61,78,246,94,248,195,158,124,180,235,214,128,79,110,15,137,232,
 107,82,138,214,126,97,156,2,18,42,208,85,133,7,240,91,23,98,161,152,159,189,64,57,17,172,21,150,121,81,29,209,106,68,174,246,109,77,2,144,214,7,45,89,202,18,70,193,41,51,79,132,50,234,42,10,70,167,91,163,208,177,73,137,240,42,82,65,138,183,100,185,104,211,95,24,16,150,186,148,149,39,79,82,29,139,166,46,200,34,217,96,222,121,126,32,15,123,196,80,110,45,95,201,252,188,82,48,172,116,4,55,108,78,235,169,26,120,33,209,183,151,158,138,99,98,107,154,68,153,243,101,102,134,66,178,154,50,43,218,173,218,155,40,254,155,0,204,152,128,188,142,216,155,85,24,183,117,173,103,142,61,99,251,99,72,90,214,211,0,87,106,74,46,15,255,168,65,132,179,90,93,88,182,13,6,171,141,246,246,64,173,162,252,134,167,117,161,64,225,105,45,173,245,192,31,33,152,23,173,237,117,227,1,23,196,47,71,248,250,144,87,158,97,25,247,7,183,48,254,241,126,89,63,33,106,23,42,177,125,135,132,196,141,130,120,239,83,176,26,91,170,215,199,85,98,144,102,175,173,244,225,171,87,32,201,146,187,213,0,57,225,25,193,106,249,38,123,166
 ,3,242,10,61,20,17,70,222,26,0,89,118,132,91,43,15,51,166,152,146,155,216,47,33,38,152,249,35,22,92,157,97,190,139,118,240,54,201,77,19,252,96,174,210,120,50,152,42,110,22,232,140,133,228,211,69,135,192,79,59,51,135,34,162,29,184,93,113,50,27,140,96,53,70,212,11,104,54,88,47,186,66,160,231,132,7,217,166,199,210,209,119,142,153,104,202,203,44,231,96,95,221,130,221,173,126,104,132,228,46,240,161,212,124,151,93,181,225,114,146,181,212,166,248,113,133,184,228,144,28,1,38,240,209,179,39,120,156,200,150,232,215,152,201,13,174,193,244,163,142,107,55,237,56,235,181,14,188,24,24,150,47,123,245,165,98,93,77,94,148,149,6,29,161,40,83,243,41,60,56,46,36,7,237,217,230,233,133,145,51,8,126,21,187,45,185,52,211,76,177,228,218,10,141,215,51,241,53,51,220,125,47,132,113,52,74,43,151,83,48,205,217,103,171,180,50,37,204,155,87,220,150,237,105,84,122,6,7,176,10,182,254,22,150,87,213,108,186,120,241,215,83,94,63,4,161,230,28,146,172,182,255,133,191,127,221,52,129,12,202,36,49,44,42,115,0,34,78,1
 62,231,120,119,247,40,112,181,73,106,107,174,57,156,123,106,49,79,36,136,243,166,137,152,176,41,189,220,192,2,7,49,159,186,57,238,1,24,135,95,178,198,48,223,238,195,108,14,2,17,94,247,231,46,34,99,112,49,221,163,1,41,128,179,72,64,110,229,138,190,63,46,9,252,100,211,166,87,64,162,190,127,171,245,155,235,24,26,53,12,228,206,211,196,126,193,239,231,126,243,12,117,160,157,75,227,114,189,2,112,155,5,30,103,58,247,98,174,149,191,71,89,34,231,91,99,147,236,48,114,220,254,116,194,227,188,109,63,203,18,101,151,129,95,10,102,197,92,17,123,245,163,33,58,17,249,107,33,172,56,207,26,153,242,126,192,228,193,214,192,61,68,116,95,123,134,168,228,107,219,208,128,66,232,72,66,47,165,104,0,74,227,87,243,8,99,164,159,213,194,111,233,147,244,84,67,110,105,75,141,135,50,48,148,167,252,107,180,247,178,204,112,125,46,255,134,224,64,154,235,137,197,34,66,49,53,31,75,167,248,137,163,233,98,39,186,238,44,244,42,20,31,169,193,17,62,104,220,204,20,22,117,80,126,222,101,28,185,250,80,162,25,92,149,146,1
 90,53,41,122,85,108,130,208,96,210,71,81,216,145,147,188,226,178,210,137,19,152,92,131,229,126,148,171,141,122,165,134,232,219,194,73,127,196,219,132,113,144,69,76,142,157,178,37,69,66,153,128,151,124,143,17,39,171,110,250,23,145,60,203,64,21,96,225,44,113,186,64,102,151,72,155,238,191,135,8,131,93,37,130,69,56,253,185,53,88,219,51,10,163,144,180,155,137,125,42,79,114,74,169,206,150,105,218,162,29,206,46,21,65,74,137,160,114,95,142,140,135,178,90,201,200,45,154,149,84,192,220,178,98,161,165,165,145,102,105,104,246,19,161,81,230,34,197,8,195,92,179,56,175,167,110,162,238,66,130,58,14,238,96,193,48,67,66,83,4,240,200,94,230,146,182,4,183,1,123,28,17,27,157,251,197,85,121,46,2,244,79,199,27,23,86,253,201,235,164,213,118,158,42,53,108,248,17,137,183,56,194,38,20,109,8,159,239,119,73,41,85,249,181,111,35,176,75,82,244,68,181,231,197,187,69,14,163,155,192,238,104,156,210,177,217,90,125,145,145,129,161,225,23,146,221,69,249,162,87,86,114,113,152,33,57,136,85,163,204,36,114,106,132,
 228,88,123,44,117,166,223,93,233,239,7,138,188,254,57,22,117,120,78,127,138,17,200,80,79,148,178,179,140,178,130,112,133,165,233,94,169,91,187,13,118,14,63,116,55,101,237,53,31,112,58,78,4,227,70,46,75,41,110,44,233,25,109,58,23,97,58,92,110,235,114,69,42,22,33,235,181,113,130,194,92,201,186,234,166,28,207,196,64,224,60,222,181,163,36,119,236,153,167,82,75,87,84,27,181,94,238,196,44,144,53,58,240,228,136,174,120,126,50,229,5,254,233,96,158,158,164,100,180,154,22,117,3,203,105,35,52,61,157,222,163,15,37,243,190,140,235,225,214,68,209,32,201,160,181,229,212,129,246,240,118,232,178,95,120,79,29,55,109,221,123,127,159,131,18,134,129,42,116,3,152,62,169,132,42,69,191,16,164,203,55,125,71,199,23,82,244,142,183,91,26,198,192,12,32,81,162,91,18,100,28,66,198,133,67,61,103,213,192,247,191,255,94,122,223,165,73,110,132,54,113,168,0,23,57,239,5,231,193,92,174,93,57,153,192,180,233,2,117,180,0,219,214,64,229,126,167,153,255,161,11,141,30,201,189,78,40,133,5,113,128,158,176,227,54,184,21
 0,116,244,53,13,160,207,66,249,11,56,156,199,79,117,212,114,15,201,226,200,229,119,232,15,25,178,172,139,168,40,251,129,26,208,35,6,162,80,24,177,72,13,63,29,229,106,79,93,239,67,8,218,152,177,97,46,153,102,130,20,95,254,113,234,83,207,124,251,7,97,98,229,34,220,143,13,101,89,81,225,54,188,224,134,100,240,59,225,109,156,58,240,212,28,175,82,4,161,229,246,148,192,12,90,159,157,139,65,141,237,54,106,99,13,196,24,248,56,132,99,51,193,11,145,45,198,248,51,53,222,171,34,16,141,245,195,74,91,61,100,78,4,37,30,69,134,115,64,205,165,49,207,147,206,21,89,48,188,213,37,39,56,218,135,135,9,79,20,135,113,101,182,184,211,141,224,209,63,128,211,81,2,178,19,119,216,30,166,173,187,185,196,230,22,102,152,105,112,19,199,110,110,152,10,172,217,147,123,98,49,26,103,66,190,40,19,235,203,224,30,180,178,217,28,229,18,20,97,125,26,205,142,208,98,221,228,230,237,44,160,14,210,46,177,31,42,13,198,131,27,174,68,201,56,105,133,95,178,70,72,203,195,162,221,188,234,254,156,5,139,101,81,96,198,47,215,175,
 127,223,156,201,42,133,234,132,241,98,23,69,240,57,87,169,249,44,228,190,32,58,109,221,78,193,88,88,183,211,31,236,232,237,78,174,111,168,229,32,218,67,128,80,19,193,235,142,205,115,120,205,205,172,245,224,198,28,190,27,114,15,94,67,231,136,28,188,149,158,67,142,165,113,230,72,173,167,47,222,190,225,32,188,81,4,137,179,35,130,206,48,212,250,79,233,98,9,76,243,174,184,249,214,130,86,181,92,141,82,141,251,137,222,10,106,136,122,53,212,60,39,61,148,122,20,4,50,42,112,243,220,177,34,65,172,63,27,114,218,175,117,24,127,172,17,6,213,41,2,237,12,19,149,191,155,47,134,173,235,95,238,13,146,149,110,115,205,164,67,148,131,97,133,190,207,192,163,67,0,14,216,227,162,178,236,88,134,195,39,228,23,98,20,9,84,119,77,174,154,135,152,45,14,36,203,112,134,187,121,206,135,62,113,209,173,242,63,234,142,83,3,208,39,63,53,167,64,104,108,12,10,246,253,146,151,45,141,12,55,186,119,88,250,149,23,139,209,214,17,97,179,175,70,75,193,72,163,191,176,218,157,120,28,109,67,229,32,210,52,193,183,208,241,49,
 11,74,148,15,83,134,110,249,185,219,16,186,186,93,8,199,48,112,190,225,29,113,213,231,120,197,219,95,139,23,155,105,124,17,99,128,230,198,215,51,6,231,119,198,142,192,239,89,70,108,184,212,219,217,21,208,217,224,107,226,42,240,209,244,199,5,33,157,171,180,30,180,60,164,55,188,178,65,100,158,119,28,34,2,48,170,252,202,146,94,14,111,109,221,108,159,161,180,131,152,89,34,70,220,187,83,74,155,181,106,43,107,88,25,109,191,195,127,111,115,192,1,68,60,208,211,21,47,52,24,123,59,27,37,245,79,198,213,139,95,12,107,87,15,57,38,154,181,225,148,41,217,233,163,240,77,126,245,205,131,30,164,65,142,171,83,3,86,238,234,182,192,20,46,243,24,41,27,164,247,76,84,22,22,31,254,142,51,122,238,107,110,154,177,107,175,103,176,110,64,26,73,66,2,77,15,169,13,116,58,162,234,205,97,5,182,208,234,94,97,192,65,29,103,253,87,14,200,221,108,36,0,27,126,188,6,226,167,16,33,51,146,162,64,43,23,205,62,77,191,165,242,31,185,32,246,107,57,6,20,105,74,186,19,225,155,98,155,212,220,117,120,71,180,22,117,30,216,14
 4,127,183,115,25,49,79,76,139,74,175,96,116,56,31,174,51,62,176,210,125,117,197,112,187,223,223,73,4,46,142,45,116,147,207,225,76,42,97,213,97,142,130,0,233,215,22,17,131,226,192,220,39,91,166,39,56,244,191,219,81,241,42,136,184,101,216,7,41,25,52,232,57,177,202,250,85,77,234,101,148,224,43,206,2,73,72,249,203,16,252,126,80,54,135,70,115,111,13,109,31,113,46,65,253,12,143,221,209,194,162,255,80,197,103,34,84,155,151,5,6,199,33,101,79,159,170,158,246,163,112,198,55,41,103,184,125,47,169,137,108,131,228,52,42,179,105,221,52,144,228,212,200,138,30,86,53,231,121,245,84,234,247,83,136,254,114,224,126,105,222,69,56,153,252,106,50,34,82,187,12,208,41,167,18,148,41,126,94,188,112,172,244,127,43,112,154,186,75,13,217,128,106,94,52,159,236,229,221,242,217,213,34,66,202,192,199,43,235,232,190,250,188,132,251,29,10,160,97,158,218,78,190,140,63,170,60,217,103,179,73,77,38,36,65,149,59,91,241,184,121,192,6,159,82,64,63,45,112,16,158,84,62,67,222,179,162,16,74,23,79,117,87,158,247,164,77,3
 7,215,212,8,160,157,159,212,66,171,157,111,41,235,233,137,53,161,230,4,5,218,33,212,47,209,50,186,18,246,127,148,74,0,92,249,193,251,38,242,144,126,131,14,137,53,39,88,213,208,55,56,149,217,117,102,61,124,6,248,21,101,92,216,32,110,119,228,73,241,38,25,100,21,159,227,193,211,102,8,31,18,181,47,113,110,238,6,186,87,158,40,121,2,124,119,66,173,175,41,214,237,173,58,87,200,36,132,239,10,63,112,128,209,234,181,70,154,165,205,22,25,42,119,50,151,34,11,63,199,230,55,185,60,56,120,141,55,114,142,71,35,75,187,246,62,222,78,251,204,66,7,111,171,120,122,215,114,125,141,183,134,150,86,73,206,165,70,255,140,109,133,245,134,109,164,136,226,240,69,19,115,27,125,159,59,73,32,160,111,148,47,0,117,184,100,159,78,34,5,81,215,222,157,180,220,117,127,91,239,213,117,135,245,152,153,145,172,135,82,39,70,195,142,13,184,120,67,73,240,169,90,215,129,205,219,103,197,139,156,124,239,58,17,242,1,10,225,60,155,68,76,73,121,183,3,205,212,161,68,15,56,53,67,153,104,173,81,123,11,140,223,64,64,108,109,157,
 114,134,79,46,191,189,174,3,139,191,162,189,242,0,86,75,196,7,191,19,105,72,242,214,46,138,133,108,40,121,124,221,69,172,139,96,111,90,79,130,42,148,91,245,68,188,135,85,100,82,156,51,30,175,184,181,172,192,249,225,90,194,218,186,188,134,65,162,5,83,88,164,124,86,254,247,219,187,61,189,230,226,147,10,170,32,40,227,245,108,129,220,185,77,102,8,165,11,86,223,48,70,198,250,93,119,159,59,110,108,240,55,91,251,187,182,51,206,206,230,40,216,99,148,117,39,169,214,190,17,215,104,133,146,58,195,191,176,14,129,30,209,127,61,128,146,186,150,206,43,18,151,124,250,0,150,52,132,171,157,77,229,238,172,41,254,252,230,31,43,144,226,100,105,108,136,244,45,174,10,122,128,147,155,131,255,52,211,157,161,210,177,175,224,52,204,228,44,114,194,147,238,37,86,200,155,99,74,222,44,7,181,232,240,71,43,154,39,233,69,66,57,219,176,236,191,246,84,212,148,119,163,138,114,9,75,1,154,7,218,161,0,69,191,123,55,38,222,165,245,46,193,67,92,131,4,209,120,204,174,93,78,82,162,109,178,190,183,24,112,57,168,11,144,
 75,179,70,4,93,97,198,92,142,191,177,115,123,144,238,97,172,51,228,244,85,18,86,140,110,211,224,196,29,102,172,221,170,160,119,150,85,28,2,150,90,149,38,242,177,4,213,83,202,242,255,41,203,122,16,130,19,56,239,108,179,80,130,155,217,62,21,185,198,37,24,215,58,82,131,215,245,67,93,225,155,226,171,53,91,25,34,185,173,154,54,95,78,252,173,6,192,11,187,43,15,186,129,86,56,52,130,237,190,69,125,223,139,253,123,178,32,108,225,60,53,142,31,145,144,8,23,80,60,48,250,228,65,121,107,36,227,124,210,244,111,112,175,109,110,25,167,32,57,219,225,236,8,40,141,251,187,91,13,86,207,179,196,14,111,130,189,162,47,142,74,233,253,217,174,115,110,163,118,162,136,115,112,249,218,167,231,67,51,89,100,202,179,66,160,156,185,232,65,9,86,65,210,197,68,34,42,77,164,33,54,17,118,117,69,3,158,16,56,100,57,29,87,214,56,221,137,23,3,177,98,173,93,124,185,82,162,102,191,255,213,134,152,7,89,179,206,2,125,183,17,251,218,111,136,218,99,189,13,161,31,211,150,183,162,233,15,190,241,186,30,81,236,139,27,167,238,
 135,171,186,3,68,61,23,94,1,142,240,197,179,2,12,121,109,119,25,19,110,180,251,242,102,163,199,129,30,196,108,172,11,160,87,174,8,49,171,152,52,16,47,230,123,59,0,212,217,27,233,88,92,34,194,151,65,116,230,55,65,90,170,82,31,183,113,34,112,12,119,195,240,193,130,91,134,11,160,109,197,196,41,7,170,60,68,71,93,107,36,17,35,88,117,198,149,80,121,207,98,37,145,179,49,185,173,155,133,146,55,240,222,74,180,230,68,136,249,177,93,79,150,42,241,216,206,59,237,157,227,17,48,64,38,183,31,245,193,171,174,22,19,109,22,26,15,237,56,145,37,241,162,67,74,89,174,97,128,233,24,22,208,176,147,112,54,226,138,113,156,55,250,47,9,70,247,186,4,195,202,242,206,10,167,113,139,111,97,86,96,226,83,225,19,88,120,200,168,91,226,83,223,204,105,105,8,91,45,108,128,145,143,143,152,251,208,238,182,231,181,221,190,50,32,79,159,230,128,95,224,213,68,220,134,144,126,168,121,211,10,33,77,243,122,36,212,143,53,125,159,181,44,68,111,53,254,53,197,138,109,216,230,244,110,170,83,0,33,13,56,66,57,221,12,157,195,176,
 130,245,184,227,89,102,88,77,53,31,120,215,96,49,119,80,150,192,148,250,1,201,214,101,39,230,208,232,152,112,37,37,194,43,199,43,155,33,210,231,14,200,224,213,85,16,251,145,180,19,102,74,94,221,219,111,134,179,46,223,236,128,105,142,53,75,23,33,192,14,247,28,202,91,222,79,12,175,18,170,204,133,76,124,227,85,156,77,0,221,68,177,140,223,53,22,196,43,165,240,74,19,85,38,161,247,172,1,7,183,192,107,149,6,224,112,122,183,155,42,46,136,255,138,205,115,167,153,134,67,252,30,133,91,145,65,227,204,199,177,99,5,216,93,174,82,234,35,183,40,99,83,118,10,206,70,168,207,137,225,166,133,96,186,39,180,139,205,162,236,226,57,245,146,0,72,227,135,221,64,186,222,29,25,56,107,115,185,180,110,234,212,43,23,142,131,125,64,67,179,253,105,240,107,76,200,49,0,247,48,179,114,78,243,254,91,46,65,173,209,28,95,38,172,21,25,59,76,64,89,119,7,95,103,81,52,0,197,50,148,28,88,28,182,151,214,20,10,107,127,17,254,157,247,117,122,212,140,249,252,44,81,5,187,49,225,104,133,243,128,32,73,119,207,231,75,177,61,2
 9,66,52,54,82,133,78,76,88,80,121,24,242,188,1,174,4,182,23,7,206,231,55,184,213,25,238,192,10,9,35,10,160,200,89,22,207,15,218,201,196,136,172,239,74,250,200,109,241,86,17,26,249,132,168,47,136,125,12,85,12,42,100,92,189,184,123,123,145,174,111,143,190,190,241,216,203,118,72,223,73,155,102,69,13,193,84,123,213,91,188,108,16,7,99,192,251,85,37,29,212,74,140,119,45,93,132,244,62,238,162,216,44,184,173,189,38,223,158,73,228,140,193,221,145,235,23,66,198,250,170,226,187,97,18,56,181,153,65,57,96,196,246,226,213,31,125,20,107,80,115,201,80,139,176,208,166,54,166,74,68,109,40,89,233,11,199,22,167,255,234,191,238,54,177,33,248,9,200,211,224,12,167,131,38,213,28,129,135,249,223,47,200,5,50,218,240,142,168,103,255,34,85,55,26,108,146,7,215,240,93,139,141,212,219,184,136,121,106,58,138,82,224,64,150,95,147,154,76,137,155,249,233,212,177,203,73,126,191,35,28,251,142,159,54,123,185,132,172,223,219,79,170,58,132,64,68,104,231,44,149,197,217,41,108,56,91,130,217,147,3,124,212,228,118,75,
 248,173,241,231,241,189,24,161,210,208,100,123,74,61,207,47,252,201,3,48,95,234,64,57,205,186,10,26,23,31,255,239,156,186,56,157,172,168,242,37,187,233,177,121,178,129,158,136,195,195,60,79,15,16,47,253,60,101,147,59,14,45,12,165,243,254,145,121,43,199,66,127,14,138,223,137,22,212,120,147,17,157,95,147,3,154,79,132,20,77,182,174,195,147,40,43,211,187,241,39,9,240,3,166,227,15,245,174,99,118,123,3,93,142,138,91,125,8,121,248,216,132,29,104,12,113,70,194,170,249,83,107,29,12,56,91,244,45,221,49,25,211,173,253,178,218,29,113,129,112,190,70,171,80,0,219,102,11,223,171,102,158,209,57,221,201,38,31,159,38,164,175,176,9,192,47,201,188,36,147,89,147,87,94,226,89,104,127,54,33,221,157,232,85,104,108,200,140,35,3,70,62,63,110,202,79,233,75,34,159,150,187,204,186,118,88,22,206,153,210,23,90,120,86,246,199,149,175,42,78,36,178,147,193,65,42,29,191,243,28,184,42,229,128,254,36,165,162,170,30,194,46,164,4,108,63,151,44,185,185,218,75,226,84,3,226,51,167,206,203,149,31,240,181,228,150,202,
 183,70,24,35,179,94,83,118,41,75,85,144,187,14,70,9,14,94,223,96,246,169,176,2,126,106,208,255,129,157,180,140,81,84,137,229,159,86,173,50,141,173,46,216,0,235,103,252,50,171,15,0,136,85,132,252,0,118,89,233,36,190,93,81,115,80,15,15,173,134,154,130,116,206,245,174,163,219,253,61,69,213,83,238,217,129,125,189,151,43,25,172,63,216,76,84,72,8,17,67,242,220,218,76,99,230,167,118,120,96,97,194,186,9,20,101,38,119,21,102,214,198,7,219,191,17,15,34,154,101,131,119,123,6,46,54,222,229,8,109,104,101,255,102,141,58,198,50,205,214,186,202,4,218,168,27,163,241,60,167,156,156,22,179,230,21,167,194,13,7,222,206,209,91,69,7,168,119,167,157,17,211,64,73,231,111,82,102,208,142,29,160,102,144,151,74,21,193,233,31,104,58,14,74,215,64,247,145,207,198,226,244,48,181,187,238,130,102,195,105,25,126,132,228,219,160,241,228,197,41,12,67,183,212,222,150,51,21,58,242,168,21,38,207,8,226,136,76,219,102,185,254,144,218,185,118,43,26,164,130,172,139,255,158,205,23,198,16,62,78,23,61,3,150,49,254,66,9,8,
 23,53,104,162,192,188,216,98,45,131,228,167,175,172,16,91,246,36,80,46,74,254,51,149,136,82,204,252,164,192,65,111,33,62,218,176,80,160,185,196,152,108,42,153,36,113,137,205,175,78,11,162,60,215,61,104,115,75,65,223,120,137,39,69,117,169,254,139,255,118,45,187,121,237,248,126,29,220,70,184,25,156,148,200,16,52,52,144,193,234,123,185,188,93,174,232,254,4,235,202,152,188,253,67,127,188,95,255,248,47,121,131,229,26,177,62,28,83,60,246,7,27,144,45,151,247,43,64,105,150,35,237,239,163,62,101,229,231,197,56,118,8,234,201,31,2,70,137,10,184,246,96,216,143,161,120,57,62,93,135,139,236,9,215,225,254,183,11,198,178,127,47,161,145,244,175,177,160,211,207,37,234,80,149,165,226,54,99,9,32,31,175,21,124,238,106,23,203,117,105,249,231,50,152,197,183,94,33,175,136,188,79,164,203,150,153,185,34,163,213,9,227,61,244,121,101,81,3,141,146,205,149,86,27,139,181,157,4,70,32,186,227,241,80,37,21,54,114,201,176,56,215,116,186,157,246,46,69,112,128,178,69,46,95,250,113,124,211,221,86,201,133,49,22,1
 71,94,7,243,140,156,159,78,252,133,194,217,19,44,187,202,106,23,148,211,149,250,52,151,90,253,97,30,18,231,139,248,145,74,133,77,146,105,79,187,187,30,147,109,204,186,29,174,38,98,25,86,18,155,52,172,218,248,186,9,211,137,37,29,116,138,242,34,241,96,58,88,125,209,70,56,202,152,174,122,127,181,203,146,39,210,180,149,46,168,152,78,90,8,7,25,135,101,18,94,65,177,33,211,115,200,123,138,210,138,177,93,99,28,183,242,183,65,225,3,213,71,118,251,68,179,77,219,16,165,150,141,204,36,122,214,44,142,102,148,92,230,95,238,72,85,238,44,79,215,147,23,174,250,117,73,174,46,214,237,192,59,94,85,174,87,226,211,227,99,211,148,120,153,60,84,165,46,195,74,158,242,51,197,143,33,32,94,234,223,34,20,106,183,107,192,6,220,66,234,208,147,147,74,158,192,187,44,83,199,242,7,93,194,88,187,96,178,167,233,179,194,117,174,179,52,106,169,33,24,86,174,38,77,187,144,198,105,2,131,216,49,26,65,202,71,236,8,82,212,249,133,193,151,170,152,178,204,217,79,203,244,217,73,244,223,144,3,109,84,10,61,18,208,4,222,249,
 156,184,160,104,239,86,92,34,252,0,81,154,71,223,42,224,121,24,93,245,198,12,139,227,129,83,79,185,98,212,116,101,130,21,78,206,81,14,126,99,74,47,239,97,199,25,71,82,73,100,71,226,61,249,28,62,144,105,175,75,178,24,176,236,86,28,226,241,221,195,186,46,255,153,103,1,169,7,146,217,42,115,105,19,138,216,224,89,204,220,135,137,122,43,65,24,246,8,163,183,31,135,153,150,131,248,124,162,68,219,161,220,223,38,142,44,207,41,33,198,83,101,210,145,222,54,252,36,146,3,178,225,168,1,100,14,129,169,70,193,41,48,233,1,239,57,231,197,237,183,190,21,145,78,203,166,131,119,203,180,213,135,160,176,125,50,18,248,109,84,53,148,103,179,102,244,88,136,224,231,97,218,84,219,216,117,240,28,254,122,155,219,243,86,115,66,61,117,99,79,199,180,111,201,20,180,226,188,37,111,85,15,213,202,15,101,10,234,250,145,216,112,252,21,26,190,102,103,5,218,185,7,72,73,182,218,152,213,151,37,72,86,108,215,169,217,121,109,145,177,231,230,74,29,159,218,22,148,138,152,127,172,111,179,37,185,189,157,173,82,122,97,176,98
 ,70,192,202,164,57,199,223,49,39,189,179,241,233,62,38,228,233,162,78,128,170,43,234,61,242,90,47,175,161,44,202,251,198,89,61,97,35,129,27,147,140,201,221,16,153,70,128,136,37,165,202,108,33,6,124,75,222,134,59,208,189,106,78,34,44,136,3,210,83,146,30,24,84,35,236,219,253,127,27,105,51,197,101,128,152,157,142,234,181,151,104,244,123,118,91,132,129,254,164,101,77,174,230,155,245,201,150,152,105,248,147,220,196,131,227,203,159,124,234,77,21,35,190,209,239,108,139,22,156,220,195,240,154,177,125,229,60,63,149,121,68,161,43,68,57,183,35,65,144,192,40,227,96,121,153,93,73,49,124,198,127,58,199,85,14,65,34,151,88,121,143,82,147,133,128,40,73,148,189,89,105,3,122,73,103,237,19,234,165,161,241,192,141,82,8,6,15,7,19,88,230,156,232,4,244,91,134,245,231,214,68,189,116,239,113,50,123,151,198,149,198,60,35,78,4,196,13,245,230,224,90,91,149,108,77,20,236,129,56,0,115,160,255,205,158,199,38,130,249,227,41,48,159,224,34,65,67,210,49,179,81,17,152,57,17,169,173,195,13,135,79,123,191,118,2,1
 52,11,24,50,58,172,79,190,210,139,62,93,191,115,179,53,61,141,208,181,9,55,90,183,37,201,37,209,212,16,242,248,24,44,216,86,181,135,79,69,218,237,173,10,166,11,165,160,46,204,192,154,127,83,224,42,47,107,99,18,50,174,37,45,130,174,67,2,103,9,234,80,144,182,56,232,54,23,200,28,34,115,30,238,17,111,131,116,136,150,20,146,238,77,214,210,6,203,129,101,31,136,216,189,93,90,226,148,158,4,150,0,8,5,37,176,231,64,227,106,151,213,119,252,10,210,250,78,32,63,245,64,64,176,99,6,119,46,148,104,105,239,30,13,145,205,21,52,186,142,8,237,96,55,82,174,7,193,217,239,212,170,242,128,60,103,227,241,105,166,228,103,4,92,0,110,210,91,148,249,198,109,252,95,168,189,181,33,136,62,26,117,72,72,152,59,201,71,114,8,102,64,9,16,86,241,101,46,43,206,9,248,63,240,224,59,190,193,162,0,64,155,165,104,215,13,17,187,196,51,65,159,5,223,233,127,1,134,149,131,220,51,243,13,37,132,184,17,106,18,58,117,101,11,233,15,137,179,243,203,76,108,217,245,144,115,151,79,167,11,214,126,190,78,191,135,10,179,133,80,226,70
 ,254,199,156,251,211,185,67,145,232,244,12,9,113,88,239,32,127,49,71,239,30,27,172,89,162,80,194,227,105,173,53,103,77,173,150,12,44,214,153,188,238,230,233,134,213,10,10,158,13,11,193,106,158,184,58,212,9,218,203,12,201,91,119,166,102,43,221,132,251,16,220,241,27,125,124,35,122,74,78,106,133,141,181,255,39,64,17,69,28,81,42,27,159,254,160,18,219,93,242,111,2,252,254,211,198,137,22,219,206,254,222,235,226,54,223,157,171,189,121,61,95,88,229,102,198,170,96,128,47,92,88,128,211,158,253,112,134,145,224,139,163,227,47,215,91,194,138,115,115,185,37,143,90,150,173,137,84,197,208,235,27,106,43,182,255,218,92,253,237,44,156,64,10,56,185,53,253,244,134,158,189,194,129,217,248,75,241,9,20,47,115,239,206,231,160,196,12,244,73,92,79,188,177,221,105,128,142,142,94,212,179,45,245,18,108,69,184,209,50,100,155,88,199,162,66,141,132,0,222,148,50,3,44,68,187,70,212,16,136,125,232,25,177,97,210,28,134,117,148,252,159,196,125,72,235,242,219,92,209,144,58,39,191,9,175,205,194,124,18,240,234,2,87
 ,190,241,192,164,5,102,123,131,47,219,186,243,9,226,146,218,232,82,183,156,219,92,90,96,58,4,74,157,9,206,38,146,54,93,36,57,86,120,43,41,233,180,227,101,200,42,63,122,116,120,141,216,67,152,126,46,196,219,238,100,32,25,164,129,26,194,79,11,172,254,51,55,23,102,10,193,253,8,179,61,246,237,172,131,117,226,165,12,179,219,123,175,148,243,126,210,71,189,204,158,76,155,113,112,197,222,63,64,181,205,164,128,161,218,169,166,135,155,63,200,122,188,180,187,177,33,0,30,146,117,76,78,126,0,115,67,105,219,77,109,56,74,165,70,162,31,23,251,217,165,138,218,170,125,89,193,29,150,170,231,89,112,200,168,170,119,38,181,138,24,36,246,62,110,220,46,41,151,35,54,244,50,252,168,20,61,12,41,200,102,222,3,93,112,136,78,245,205,111,212,34,53,50,246,138,231,169,98,140,53,7,45,133,210,24,7,119,206,88,175,178,155,136,135,56,252,138,127,214,150,3,75,191,110,193,134,82,67,58,154,146,187,230,185,180,180,64,210,27,3,229,247,28,242,87,38,165,81,217,79,58,150,194,210,27,11,159,54,58,61,249,240,123,83,139,175
 ,138,52,188,131,187,33,163,189,127,70,191,117,212,21,207,117,12,198,127,103,90,172,19,160,238,152,102,201,132,200,31,155,97,226,102,69,251,246,73,247,0,117,169,89,40,184,206,248,152,15,197,183,184,105,250,11,134,88,221,222,92,52,123,181,65,95,58,159,99,168,190,114,85,99,113,11,133,30,219,178,126,43,121,148,99,249,93,75,155,247,242,227,236,15,162,134,58,36,152,126,204,123,103,10,11,78,219,223,209,7,204,35,7,130,223,72,170,106,188,38,133,188,249,126,199,223,139,194,159,224,171,137,229,239,37,67,183,37,60,41,1,115,154,209,170,126,107,245,25,24,164,231,5,161,199,48,222,41,199,70,129,222,3,238,97,183,190,170,216,22,125,127,177,40,148,23,6,157,99,22,252,84,149,158,11,84,0,8,34,99,228,157,134,149,215,207,221,42,41,199,236,157,117,106,215,191,74,101,24,14,41,54,181,209,82,200,151,209,28,248,0,0,169,90,188,159,175,229,83,196,204,37,54,39,208,254,80,198,121,149,85,159,243,234,51,225,230,174,172,16,148,141,169,188,53,34,97,20,8,155,77,219,68,47,211,22,244,14,249,10,140,252,214,195,254,
 44,233,202,44,22,122,176,139,59,108,252,34,156,183,246,25,18,253,210,228,105,19,191,225,111,223,226,159,244,209,69,16,191,129,220,64,48,182,153,45,226,145,76,152,32,63,77,244,225,1,86,19,193,29,61,183,223,123,220,13,144,200,5,63,251,85,19,42,30,49,61,24,208,30,14,130,172,10,80,139,192,243,79,150,149,129,95,154,5,56,174,38,94,232,185,18,40,103,97,175,181,131,150,190,37,12,173,166,68,110,181,14,46,92,41,115,45,50,55,157,248,112,111,207,188,179,47,198,19,161,248,6,221,216,236,190,137,45,221,139,112,71,99,11,33,211,37,44,207,199,202,30,72,93,161,137,160,98,168,174,7,10,191,99,168,179,55,11,35,248,61,192,91,240,23,220,173,34,8,185,95,209,197,130,153,185,64,202,37,108,137,84,137,247,93,170,8,33,212,154,118,70,189,203,92,163,165,216,191,212,167,59,243,197,124,134,107,104,184,31,120,23,0,20,222,212,116,250,163,189,246,234,195,84,197,51,80,155,106,78,134,184,75,63,176,12,107,200,40,250,234,253,62,211,186,91,43,26,240,25,66,8,218,206,64,186,212,204,3,55,237,245,143,78,128,107,254,141,
 217,201,33,177,240,12,196,34,2,116,79,184,180,165,105,12,141,215,43,177,112,104,203,250,155,123,221,203,123,236,10,13,130,221,203,249,51,119,93,105,220,77,217,27,198,18,248,56,243,233,196,92,246,55,84,75,155,98,27,214,143,103,135,110,196,95,209,104,130,172,59,173,153,122,217,19,10,68,52,28,73,130,12,13,7,144,86,0,141,12,210,45,116,231,136,101,36,135,192,202,35,255,60,85,239,176,87,12,181,61,60,102,168,176,91,173,51,122,175,206,106,254,60,160,51,26,157,53,253,50,119,64,48,182,172,145,117,11,18,61,136,97,147,56,77,122,199,134,173,182,156,138,64,254,12,245,16,134,57,197,69,236,145,64,163,7,222,134,243,64,15,224,187,51,64,223,174,12,130,97,247,87,99,225,31,195,208,152,30,212,187,103,202,124,90,234,99,159,63,25,189,48,213,243,208,210,130,106,177,93,26,206,141,248,99,10,63,147,179,223,9,13,80,156,253,208,126,79,230,171,118,238,150,11,19,245,70,4,149,42,26,29,213,212,179,176,44,52,208,47,134,81,150,251,237,120,4,69,152,175,133,82,211,68,66,182,20,65,138,119,99,135,216,22,136,61,185
 ,30,204,45,32,81,79,76,98,116,205,40,245,6,60,131,69,3,159,244,78,223,84,134,90,42,174,206,139,112,162,17,89,5,203,79,158,82,21,134,242,4,6,135,137,14,228,12,90,103,139,79,58,162,39,24,135,52,3,221,44,81,209,87,217,5,77,249,149,168,164,99,77,236,36,73,79,246,112,197,60,99,148,75,50,113,241,210,8,217,87,143,243,72,76,52,158,163,226,165,108,59,127,64,133,26,32,122,54,105,214,208,182,195,123,107,200,198,91,239,36,137,0,161,103,174,228,212,148,92,76,31,56,127,34,181,237,248,149,251,140,116,252,212,167,28,174,167,77,96,143,97,99,9,235,14,192,126,49,226,250,254,74,7,217,185,121,227,32,53,4,31,20,195,24,115,28,253,65,121,71,122,104,163,0,18,119,166,60,215,141,16,132,36,33,13,95,225,140,179,184,218,198,199,224,149,244,148,111,132,215,138,105,253,246,42,174,164,85,209,183,84,177,219,2,209,202,46,247,122,81,29,45,110,26,118,40,106,219,128,40,237,182,193,161,219,59,20,118,138,91,152,230,233,22,149,70,10,188,243,96,253,6,59,9,130,111,215,31,255,188,153,111,169,138,62,126,226,82,215,56,5
 0,190,186,189,42,103,55,125,131,141,200,187,221,132,23,61,227,51,2,185,93,87,121,38,205,44,183,22,134,119,107,158,9,66,231,101,156,34,10,50,51,52,47,178,127,208,192,27,149,156,25,80,212,188,224,170,143,113,19,118,112,44,211,195,251,200,185,253,19,201,70,223,96,199,148,129,241,93,21,214,80,24,131,77,98,189,123,149,83,18,144,66,42,84,101,30,209,200,87,67,160,36,144,145,143,253,4,103,230,17,177,224,203,222,237,103,12,91,80,199,188,18,36,190,193,108,174,210,111,235,183,225,175,137,46,48,230,141,31,234,124,175,43,129,17,161,145,141,58,162,151,169,35,50,95,205,246,110,175,175,139,46,157,114,107,98,20,26,237,31,141,195,92,186,224,147,151,56,155,227,198,68,72,184,216,114,88,98,225,236,25,107,113,25,138,138,181,44,193,193,145,121,143,185,219,63,120,130,2,80,228,232,209,48,34,36,41,40,243,172,12,35,217,89,197,120,224,138,230,14,219,228,18,6,42,44,48,95,222,12,158,1,213,183,155,2,145,135,251,138,224,250,133,223,147,36,106,159,112,249,214,52,236,42,17,76,232,144,225,39,233,100,170,131,1
 78,4,163,244,199,206,115,112,144,52,227,177,151,173,19,11,185,27,233,10,209,216,246,17,33,204,181,108,123,67,100,217,201,12,167,184,202,135,22,79,100,73,36,208,215,191,149,184,244,81,57,73,162,2,134,61,7,159,247,150,8,118,163,190,74,32,90,232,142,219,176,151,69,7,211,22,133,81,210,105,128,59,96,239,85,61,88,244,73,20,233,86,179,183,126,232,18,123,139,166,34,138,69,164,132,156,40,161,73,209,179,104,217,79,87,33,210,71,35,231,31,249,147,99,12,170,189,5,186,68,71,237,4,255,160,209,6,253,63,73,225,160,244,237,228,106,254,56,48,140,119,175,203,237,5,147,0,37,168,10,35,6,85,75,145,3,237,170,111,210,41,143,152,97,244,187,4,126,187,44,241,37,122,105,15,117,198,18,76,61,31,84,14,72,141,231,207,118,84,107,4,89,161,81,62,72,105,62,218,110,227,64,170,178,160,139,238,150,96,92,71,143,57,106,118,46,42,69,154,251,3,23,88,254,168,249,34,211,105,67,82,108,161,242,227,232,61,249,35,14,94,189,247,58,119,40,190,71,31,248,192,233,142,207,200,47,29,142,152,23,78,218,131,55,174,251,4,170,151,43,11
 3,46,10,193,83,209,242,43,157,207,124,0,216,93,54,197,227,102,171,104,172,142,163,213,14,91,127,18,132,92,102,157,90,224,225,38,203,43,203,192,78,62,236,235,252,90,108,94,208,166,74,24,48,10,89,103,93,55,239,84,156,241,131,0,117,134,39,32,219,241,53,36,120,20,23,152,190,136,225,38,112,218,92,101,52,184,165,60,200,88,143,21,199,237,171,187,155,151,212,47,184,159,139,103,31,219,1,246,26,44,170,216,41,174,177,3,161,85,47,132,198,15,75,214,116,70,102,235,179,18,194,31,216,42,113,227,54,168,25,22,222,113,232,89,235,151,8,250,105,37,38,76,155,126,39,252,249,149,247,174,251,29,177,100,117,117,27,52,213,116,234,82,199,76,66,152,47,210,15,198,28,215,152,44,248,150,148,228,249,35,103,12,118,205,248,4,251,121,155,137,77,170,7,36,131,105,157,59,206,184,78,62,150,101,236,155,112,96,36,169,209,79,103,184,118,125,43,255,230,2,214,211,229,70,167,151,68,211,119,36,56,28,2,128,41,240,227,98,52,56,244,13,211,215,226,239,181,29,110,198,168,76,103,84,192,165,119,184,68,155,213,144,168,178,170,37
 ,179,1,201,155,208,55,167,173,84,99,90,223,141,107,140,103,13,135,184,220,135,211,210,71,51,158,117,211,111,13,11,155,1,210,62,194,131,51,154,225,61,163,15,220,101,87,203,19,22,249,138,163,80,76,159,164,124,30,4,49,9,84,235,173,235,169,27,65,17,237,2,194,193,159,15,130,151,218,185,210,51,71,126,245,163,208,2,249,0,77,173,253,20,25,36,9,44,213,206,208,248,12,77,191,37,159,141,130,1,90,187,220,79,12,25,147,154,255,115,11,133,188,229,229,81,217,131,205,217,55,128,123,135,226,111,85,200,151,120,227,232,250,227,96,4,57,104,14,93,100,160,96,205,228,174,20,237,254,189,70,249,43,55,56,206,121,193,247,221,234,174,107,221,212,137,101,252,28,17,24,45,114,135,50,133,186,220,84,161,168,86,28,175,162,37,73,81,70,240,232,236,198,240,219,218,31,89,12,117,19,74,5,212,125,1,210,174,164,25,184,99,251,145,68,65,172,86,251,4,17,180,172,210,93,25,232,22,87,31,65,142,127,126,85,77,104,181,82,59,217,217,138,126,139,126,12,55,147,129,1,74,164,47,116,192,131,239,212,2,69,231,65,100,253,105,102,154,91
 ,177,111,143,130,142,75,134,141,85,88,16,230,15,171,23,84,184,181,236,224,90,8,3,46,47,252,175,207,200,155,22,181,42,198,108,59,62,5,166,123,247,129,251,166,33,176,23,32,116,107,60,112,114,240,55,69,1,229,109,142,245,143,195,20,220,247,56,81,17,196,221,35,226,46,104,149,65,22,126,145,92,77,202,137,91,253,247,64,104,168,171,50,211,164,178,39,209,24,193,135,141,0,57,133,144,27,4,39,1,212,211,254,41,90,208,156,124,46,185,37,53,193,52,70,70,25,208,35,147,218,145,45,137,86,70,180,174,249,233,175,110,208,177,175,182,251,121,53,137,92,180,26,199,156,213,55,123,193,136,55,147,157,13,102,2,196,139,90,255,110,185,70,154,23,203,112,133,182,230,165,4,111,228,9,71,21,6,193,126,215,40,155,223,84,214,238,44,76,61,254,11,248,2,240,38,124,104,91,170,28,130,207,137,78,131,240,110,179,168,13,91,199,135,4,218,9,164,49,88,229,194,192,233,146,68,180,147,8,109,162,44,225,8,86,218,2,61,195,50,205,205,7,42,197,21,164,231,188,48,30,12,174,44,7,14,134,38,208,47,201,43,39,158,61,229,176,249,44,201,126,
 166,121,123,56,197,87,55,64,238,225,54,174,183,145,62,107,130,188,66,218,30,186,191,205,112,8,87,97,157,242,191,7,7,180,123,232,20,28,114,148,176,165,182,246,22,171,5,175,244,172,201,192,73,148,236,173,178,202,192,138,177,253,6,114,48,77,48,250,152,191,46,30,10,7,79,169,100,204,150,117,184,126,105,110,17,251,5,25,228,161,12,8,183,220,189,215,239,30,93,189,33,121,87,102,181,134,96,109,32,118,130,161,129,213,178,67,86,195,210,179,71,22,125,202,134,100,203,67,30,47,180,228,17,93,149,67,10,227,17,136,226,128,134,217,4,160,5,1,140,82,76,204,242,55,181,192,39,73,231,208,129,36,70,37,178,148,49,230,124,201,154,22,217,62,193,84,157,227,161,97,236,191,199,214,40,187,101,255,88,65,205,92,55,95,200,143,168,149,202,84,136,27,208,203,139,39,167,253,169,74,181,200,148,173,214,234,69,41,39,104,137,54,52,97,88,108,220,195,193,208,248,43,28,93,180,121,179,169,211,183,71,145,191,90,160,74,111,54,118,201,242,59,44,60,9,109,205,13,130,195,100,238,227,28,212,89,81,67,77,232,81,81,179,191,62,90,7
 9,247,189,92,255,45,105,69,209,46,148,206,109,215,199,21,66,9,35,222,62,109,48,211,34,232,159,164,57,141,241,109,127,79,251,7,199,47,37,132,0,138,51,137,239,17,235,4,25,231,137,58,74,111,72,173,236,193,220,106,239,227,55,229,227,224,42,249,144,60,46,144,197,3,80,90,139,27,52,173,196,62,87,94,172,50,213,179,250,171,66,117,0,211,48,152,181,86,219,244,26,10,175,56,125,85,42,78,27,153,249,221,19,6,49,140,11,81,251,223,249,193,255,54,63,18,232,226,186,183,34,214,113,201,197,175,179,239,93,95,21,229,77,160,245,176,69,131,237,91,251,26,233,155,158,125,169,70,169,153,13,117,238,250,201,68,96,160,55,167,215,18,45,27,24,238,80,108,119,181,47,55,12,144,110,32,155,174,120,181,160,77,63,244,164,71,80,233,26,214,77,250,152,188,204,110,40,169,251,166,88,236,169,252,36,241,7,93,180,249,152,151,93,136,116,168,61,46,196,7,199,27,163,24,195,153,116,28,36,213,82,136,111,231,253,32,0,249,76,58,163,234,146,236,235,25,145,13,206,130,78,127,243,241,71,76,121,41,127,61,237,56,25,159,206,226,114,219,
 177,108,138,209,119,195,242,121,157,173,181,183,227,82,141,216,93,186,141,24,27,39,236,215,214,200,3,129,211,214,92,140,206,155,78,244,26,177,112,233,176,2,227,252,110,198,132,16,153,16,51,192,165,38,113,189,67,203,146,71,83,22,238,46,235,22,183,87,60,197,42,100,81,162,213,90,97,222,224,202,195,154,206,231,109,118,242,126,252,172,95,213,136,189,22,98,137,80,47,48,32,104,92,134,128,253,181,48,93,228,238,139,255,126,197,40,108,82,179,184,53,244,50,186,230,245,54,155,2,59,157,96,95,32,29,30,65,201,159,96,73,41,233,16,126,44,237,146,226,108,228,36,116,145,144,110,32,244,217,205,31,228,245,169,76,223,67,194,128,194,171,8,111,78,227,163,153,37,190,232,192,51,208,190,231,173,159,91,94,26,72,106,117,98,123,11,50,29,152,0,158,42,104,84,105,84,152,48,171,159,18,221,144,4,49,48,178,172,192,72,175,190,64,48,3,250,172,128,98,220,75,16,194,54,109,14,54,220,125,233,155,135,4,60,123,36,117,189,70,159,158,77,85,53,154,9,21,188,203,21,203,81,49,80,163,238,164,243,6,32,54,169,188,178,235,45,17
 3,131,95,122,33,216,234,193,176,206,207,33,182,229,3,9,180,194,4,5,76,164,220,66,12,236,124,185,185,58,54,186,121,182,234,46,198,164,112,60,246,44,123,178,32,5,30,173,50,83,195,152,115,242,248,170,80,112,21,55,177,185,203,89,149,236,212,132,117,150,72,30,121,100,202,137,51,27,17,222,65,132,94,59,15,73,247,158,29,191,173,166,104,78,9,111,232,241,122,215,73,199,174,71,56,130,241,75,52,13,128,204,78,187,51,70,11,202,236,189,213,30,24,255,115,195,2,171,9,6,94,239,168,181,13,98,189,196,191,76,15,202,82,163,161,238,208,58,72,25,119,224,42,10,223,24,149,94,63,50,109,106,154,86,99,194,0,143,91,95,95,143,228,96,170,164,193,234,64,225,46,181,230,48,237,125,126,14,89,232,128,15,221,122,91,24,123,227,237,98,73,127,113,229,157,65,209,87,224,10,199,138,243,88,120,233,160,84,218,189,108,97,70,31,185,30,126,32,130,9,248,19,114,185,191,199,245,164,158,248,43,153,168,169,104,34,203,96,155,74,143,191,78,248,110,237,59,175,80,188,62,224,233,56,171,29,33,27,89,254,139,30,209,108,192,176,237,98,1
 45,98,140,147,63,129,61,44,15,232,242,72,81,165,100,131,210,145,178,143,243,181,47,100,235,12,190,1,213,22,128,35,210,211,11,83,12,47,220,165,208,228,201,233,248,222,160,67,62,182,181,158,30,29,229,243,7,182,248,231,153,206,15,210,85,223,205,118,74,220,32,181,154,85,237,117,91,68,204,28,4,86,164,179,37,171,8,79,247,60,45,178,155,155,148,239,211,67,64,37,240,148,83,116,224,117,104,194,149,104,17,232,113,46,101,248,53,244,246,23,189,110,152,87,118,150,45,149,189,4,170,153,145,123,48,222,84,49,223,31,44,88,2,225,16,64,117,38,167,138,192,97,176,76,249,184,100,6,141,199,163,243,156,13,248,76,108,2,97,243,120,73,148,235,177,200,200,156,167,194,108,124,153,48,38,87,42,40,105,189,92,250,234,13,27,179,166,135,130,231,37,103,151,33,224,82,226,88,14,222,69,28,201,111,135,206,166,95,29,226,159,157,141,92,224,127,197,34,191,63,182,253,255,12,5,236,169,0,125,186,119,24,170,118,183,83,131,1,234,15,203,254,255,33,30,164,175,16,91,35,240,93,240,232,24,126,225,169,178,60,102,245,244,12,167,98
 ,215,46,112,249,225,101,232,119,33,249,110,101,30,205,83,102,190,43,90,1,205,19,245,152,21,215,247,69,111,228,42,223,55,62,159,167,226,182,127,170,193,185,250,90,242,37,153,29,145,60,97,237,163,41,204,181,93,216,5,75,88,165,144,100,120,177,199,247,252,200,92,52,30,241,205,202,253,222,195,82,111,242,19,65,37,69,176,231,85,241,127,85,182,135,234,31,251,163,193,102,118,119,153,175,181,125,114,42,2,249,143,191,105,232,140,238,252,129,217,172,109,91,75,168,90,240,37,186,30,171,199,11,2,148,32,157,80,72,135,13,42,101,75,122,110,173,15,141,210,179,1,87,106,232,75,240,91,57,137,113,3,148,80,136,138,182,50,165,163,181,185,22,166,233,63,201,254,16,122,242,93,129,59,186,45,106,103,241,72,125,103,228,173,70,65,239,178,125,247,136,213,190,84,188,49,38,52,97,85,238,119,72,74,68,208,85,190,252,23,35,75,100,139,81,218,52,11,41,3,176,19,203,6,232,160,175,66,54,51,243,219,180,143,135,218,124,238,204,131,54,133,61,210,1,21,142,80,160,111,118,96,223,78,28,238,147,80,182,199,97,249,90,170,51,77,
 11,172,242,186,236,143,132,220,104,228,138,17,234,108,118,90,160,245,195,68,28,2,239,10,115,182,203,152,122,139,145,229,182,232,157,199,29,35,12,9,80,35,240,18,176,61,158,180,151,144,47,62,81,206,254,122,178,140,174,152,54,131,201,117,4,232,182,82,246,123,201,78,96,59,14,218,245,62,132,238,132,235,54,62,13,106,227,97,188,189,237,143,174,67,55,92,176,153,13,197,221,62,41,170,140,42,72,23,247,134,87,233,20,161,158,147,41,110,82,45,218,242,71,195,231,30,224,155,147,126,9,54,47,48,227,72,46,164,156,57,136,71,179,240,107,131,233,145,160,230,62,44,249,222,207,205,202,40,76,107,213,33,92,222,104,9,233,67,66,188,14,37,227,94,94,144,12,151,130,225,18,178,95,216,222,215,239,247,90,94,243,79,112,181,168,183,14,242,29,249,22,17,214,217,99,80,39,237,163,133,105,108,147,194,193,223,254,8,223,110,83,247,204,87,88,105,128,60,179,74,189,215,171,210,73,228,250,146,134,185,56,196,64,107,245,92,64,222,211,249,176,89,140,105,200,59,213,49,251,203,231,123,137,203,5,84,196,170,253,198,255,104,11,1
 59,27,142,91,225,239,83,60,123,214,51,123,87,56,32,101,11,141,127,37,24,246,35,40,185,8,174,6,5,190,239,159,180,88,168,36,175,108,218,253,199,221,95,233,215,6,23,108,141,233,155,52,107,150,39,219,171,2,19,101,29,193,189,88,170,244,73,120,120,39,194,33,64,12,76,40,178,72,2,178,14,198,228,85,105,25,36,79,242,122,111,219,217,57,190,223,96,196,151,91,196,157,66,240,149,222,155,108,172,169,205,127,168,41,117,37,223,232,230,130,115,87,214,174,115,213,202,2,170,181,186,65,239,118,148,169,200,226,189,59,86,96,133,255,163,8,168,6,115,232,27,96,28,16,174,66,78,11,195,13,226,85,193,176,245,128,36,28,226,155,136,0,135,178,37,193,208,246,131,214,92,233,153,70,73,104,243,202,73,65,67,164,185,227,65,51,246,39,236,193,108,208,172,214,71,83,224,179,54,192,234,253,94,26,31,76,254,14,104,211,147,246,55,96,153,81,82,253,55,219,227,191,185,71,15,199,102,209,15,230,54,236,135,1,6,118,42,125,15,231,71,139,53,21,37,81,234,84,141,227,11,204,133,121,57,117,175,72,128,28,234,94,27,183,87,226,243,23,9,
 111,125,182,135,119,218,91,128,4,29,0,61,255,56,17,248,59,238,121,212,28,139,76,208,193,173,236,129,181,193,111,231,142,20,78,97,103,243,251,81,54,251,177,45,152,255,150,172,230,221,114,215,206,182,107,225,89,193,213,248,195,97,235,245,94,67,3,233,227,225,111,94,139,43,225,221,48,89,234,183,21,187,166,210,192,209,19,120,64,237,115,128,49,62,46,140,97,212,186,19,134,170,53,73,37,138,102,135,25,22,123,213,69,165,86,32,254,119,200,140,48,81,243,238,102,111,184,223,129,119,59,231,103,72,82,5,89,249,141,160,192,120,236,208,133,243,52,240,97,104,231,137,79,7,182,146,229,247,161,202,15,163,33,243,141,255,109,6,87,13,46,119,126,238,38,117,9,18,53,61,91,10,139,19,240,167,1,22,82,154,212,238,120,248,107,249,2,26,183,33,190,211,81,95,193,177,232,14,70,102,90,0,229,145,8,159,186,56,212,31,38,76,32,44,55,110,39,230,242,99,249,226,233,160,25,72,108,56,238,213,52,83,126,126,206,57,104,227,24,158,27,218,93,136,191,219,14,248,70,87,57,86,66,227,186,247,22,211,236,34,93,24,203,175,211,48,73,4
 ,3,1,62,38,109,28,231,180,14,169,16,37,231,89,22,107,183,86,209,106,157,152,207,63,229,163,253,73,110,188,197,22,28,52,121,34,44,172,125,141,145,254,109,197,151,28,237,192,229,205,28,65,104,159,130,151,207,196,188,23,183,125,163,13,247,56,37,97,230,133,11,20,86,167,69,170,52,81,221,107,144,161,11,1,49,72,82,228,215,157,124,2,81,231,215,255,143,96,31,138,32,40,14,161,25,77,210,118,210,187,14,93,72,255,101,182,249,161,56,181,97,44,22,249,135,248,121,13,179,12,247,96,198,134,234,235,175,105,24,239,131,234,230,255,221,135,14,8,218,195,95,166,48,32,135,47,10,20,15,49,83,166,157,55,168,200,35,202,15,179,202,181,23,71,86,57,103,218,56,120,252,81,227,21,70,59,209,242,6,231,190,75,246,222,74,161,19,105,140,211,44,198,12,134,99,179,113,52,12,39,3,218,38,209,1,250,92,245,111,111,188,158,103,166,52,158,56,118,218,80,222,98,158,73,33,106,107,153,148,106,127,149,28,71,173,25,97,182,39,196,180,173,143,73,180,37,201,85,34,223,130,20,61,1,200,212,119,114,83,80,28,20,64,41,9,76,164,177,56,100
 ,52,243,61,5,119,164,51,135,140,13,15,195,156,214,100,163,54,50,53,168,246,62,48,103,137,159,190,241,143,127,105,219,87,101,143,243,122,195,79,176,28,35,7,55,78,232,70,116,254,149,206,144,201,167,26,172,192,229,128,26,4,227,132,96,171,143,46,148,112,149,240,62,19,162,61,222,59,221,148,22,137,28,172,139,6,163,143,227,183,119,176,187,22,106,234,95,99,233,134,116,145,239,7,17,253,93,161,73,230,71,32,106,54,241,206,231,88,65,243,119,254,182,46,128,110,50,29,219,100,51,210,102,106,157,122,221,194,34,132,242,91,214,85,25,12,240,246,141,36,162,136,95,164,105,9,233,219,177,87,239,96,94,141,164,155,241,95,54,42,4,158,159,55,214,211,191,100,87,166,220,5,188,153,68,177,111,140,159,46,227,78,142,124,181,57,160,228,245,236,22,93,209,135,84,46,252,9,99,16,140,41,57,191,143,44,213,130,146,148,237,163,163,53,189,226,56,39,84,99,185,45,4,246,199,12,24,9,150,178,7,163,238,204,242,189,78,92,22,197,31,104,176,89,134,144,143,45,209,195,124,70,104,21,238,34,127,40,131,91,150,42,30,114,182,59,74,9
 7,152,48,43,206,71,241,146,224,83,174,127,248,37,212,56,41,202,171,136,115,224,149,57,119,200,97,147,133,93,91,194,222,232,126,48,115,213,158,158,222,105,186,113,108,81,185,203,206,202,244,61,152,39,149,192,15,82,235,184,93,254,208,233,91,152,59,60,156,113,1,23,64,116,101,103,212,220,59,201,45,245,129,211,166,213,172,121,20,241,166,249,14,32,185,4,202,106,132,183,0,210,160,152,99,192,217,208,13,175,132,155,157,202,160,7,123,176,55,218,0,89,93,81,139,246,208,186,204,252,22,100,87,116,246,185,144,74,63,228,116,32,126,103,202,162,238,215,64,18,197,57,135,35,117,88,124,210,59,98,53,21,209,27,95,93,231,202,144,214,136,79,78,227,249,49,51,214,168,11,89,73,131,218,149,72,135,209,108,191,213,119,246,247,148,35,198,244,14,120,58,132,207,39,115,165,54,41,237,229,217,56,62,149,164,144,46,139,89,225,164,20,187,244,106,32,132,225,42,229,162,247,229,36,82,121,136,114,70,137,198,35,84,252,215,224,87,85,53,102,103,1,168,239,54,160,152,50,34,121,107,247,57,116,167,43,46,116,200,207,63,248,50
 ,249,211,220,51,207,97,221,250,133,218,104,133,175,72,234,83,227,210,233,126,90,102,162,139,122,253,3,160,173,255,9,6,44,156,234,59,24,2,143,119,87,178,25,171,132,29,130,86,189,1,163,79,51,80,191,255,151,238,68,176,137,58,228,79,132,53,9,146,131,49,102,88,5,56,60,255,44,134,67,91,215,52,72,120,185,219,66,149,138,132,234,76,233,48,206,138,126,168,137,50,220,72,12,238,209,142,69,172,232,212,54,188,9,210,203,195,57,200,17,86,249,248,128,6,102,198,160,209,247,183,112,236,11,11,23,19,81,234,93,174,107,225,195,26,126,89,71,13,184,201,9,151,138,70,39,3,10,226,55,227,71,174,131,13,152,246,160,55,193,182,154,131,17,69,158,176,10,181,9,170,240,47,81,192,250,251,106,181,124,37,247,14,60,232,48,17,109,140,216,102,131,100,173,187,47,229,145,35,11,130,163,237,229,3,58,147,8,131,202,224,136,135,196,16,197,251,173,193,47,245,124,0,216,174,31,242,88,233,186,29,147,167,73,223,116,87,47,76,239,106,57,153,86,160,137,37,207,174,129,3,221,109,239,122,136,131,73,67,202,77,113,183,12,207,244,248,14
 4,247,195,184,12,199,166,189,2,152,120,109,217,190,195,152,135,57,119,112,123,83,82,219,124,182,115,215,145,1,12,126,11,173,153,65,253,33,157,163,147,135,208,154,165,3,230,98,84,128,242,245,187,97,98,10,179,155,106,162,246,80,73,169,127,157,254,12,233,28,18,18,37,61,28,233,20,9,183,9,91,120,52,138,200,29,12,228,24,214,138,238,45,16,158,197,195,2,6,181,254,239,41,108,57,171,173,68,100,128,140,181,19,221,98,184,153,31,28,186,165,153,163,153,223,77,55,110,172,145,165,211,233,113,179,94,149,116,170,50,29,126,96,104,186,187,3,248,80,71,161,66,45,0,253,211,247,252,100,203,237,164,8,241,192,98,96,239,134,160,166,83,65,224,152,99,24,218,99,177,136,169,21,61,203,212,112,34,228,3,251,71,58,31,33,164,223,31,79,99,146,119,28,78,35,201,222,141,102,103,238,10,77,111,132,61,139,12,226,147,165,18,158,232,4,172,222,233,210,7,50,223,125,199,21,91,245,50,45,108,123,225,130,99,225,78,140,70,59,139,153,140,156,170,80,231,49,183,209,47,139,17,126,96,146,28,102,2,6,121,5,56,53,22,164,154,129,9,85,
 55,126,123,193,154,6,70,149,205,226,131,184,180,53,233,55,238,98,48,134,133,46,119,144,45,67,240,107,200,222,253,190,255,139,14,137,46,247,3,197,82,240,204,189,220,214,246,220,47,131,82,136,161,144,20,163,157,18,222,181,178,187,252,146,225,64,173,194,57,182,167,164,199,139,183,169,224,144,103,107,205,27,207,145,1,201,17,81,76,251,161,123,44,245,8,91,217,234,2,80,2,210,106,14,215,170,18,117,250,100,87,104,88,230,53,38,92,153,77,42,164,17,130,170,24,164,121,7,166,10,219,22,136,233,120,156,147,96,106,12,116,238,77,193,232,117,136,65,92,49,116,48,205,150,116,133,140,212,153,238,131,9,194,68,74,12,91,69,18,151,4,35,60,178,43,13,146,161,119,61,101,199,122,155,109,151,245,250,81,251,54,73,65,82,38,197,89,212,2,25,218,131,209,247,59,220,27,248,210,126,240,61,188,245,112,227,193,192,4,59,108,32,156,93,163,45,58,7,194,227,252,254,64,101,114,36,133,17,44,52,154,26,0,39,68,245,221,64,129,18,90,75,61,100,60,145,28,194,189,69,48,51,104,163,23,100,226,249,78,150,174,79,110,208,97,208,184,1
 79,55,205,39,111,136,127,144,99,108,177,207,44,186,197,84,172,130,63,136,186,63,66,50,2,235,70,135,10,90,72,148,108,70,16,104,5,215,113,112,92,36,115,188,228,132,67,40,111,63,167,55,174,69,184,125,41,103,129,175,172,151,213,181,125,244,80,2,183,252,228,194,68,219,47,230,54,197,159,243,126,183,110,195,131,71,234,79,248,86,130,134,21,83,171,141,246,136,62,82,238,228,114,147,19,157,17,194,171,89,185,144,229,239,27,222,224,237,89,13,191,91,165,240,4,81,68,101,66,202,57,115,240,168,135,65,98,200,143,145,56,54,70,81,125,45,148,251,226,150,246,175,63,106,128,222,142,197,233,216,221,149,203,10,6,5,32,97,155,166,241,81,153,174,98,44,203,121,79,89,89,160,81,63,113,77,209,127,216,66,227,231,25,133,133,123,55,38,164,239,182,127,76,172,59,210,137,224,8,191,14,70,70,186,117,132,131,243,106,124,137,198,215,206,253,224,243,148,156,203,226,222,1,33,93,84,187,111,194,37,143,137,37,198,96,28,64,87,249,169,149,142,196,134,110,163,8,141,206,252,255,154,82,103,41,139,27,160,82,138,117,144,184,176
 ,122,114,248,200,254,64,199,87,174,172,69,145,3,102,142,156,194,215,22,28,242,22,55,86,63,120,229,34,250,180,11,164,32,237,172,197,25,206,89,162,217,46,192,250,156,63,192,54,194,169,65,64,76,16,84,58,63,210,68,0,208,39,146,45,165,122,96,44,126,200,225,123,250,169,163,18,213,20,16,113,206,88,22,43,30,109,178,169,74,71,90,104,166,142,41,46,158,80,186,132,218,14,133,71,104,69,108,223,176,186,59,5,43,149,255,153,203,216,198,229,117,220,86,140,55,62,139,39,69,74,137,186,134,142,199,93,166,236,128,35,166,106,115,105,212,29,83,115,133,45,163,52,23,215,198,221,67,223,65,127,107,61,113,30,3,73,124,18,81,129,188,155,79,194,67,47,83,24,9,19,191,193,73,36,103,94,124,233,45,2,177,130,37,221,56,48,221,209,0,176,198,170,173,47,217,213,163,190,132,93,131,2,26,33,172,137,59,210,220,5,179,232,34,135,238,13,132,52,227,42,209,1,231,191,163,116,69,81,42,212,6,171,230,124,179,247,69,169,20,157,89,199,250,26,105,86,141,29,93,244,11,120,81,59,169,1,17,184,46,204,51,86,28,205,112,174,1,89,42,73,226,
 134,121,36,148,100,117,61,7,201,13,240,26,144,145,56,104,132,46,13,170,118,211,223,190,177,159,210,54,103,217,163,125,254,89,141,20,70,84,237,125,211,74,1,249,121,36,35,139,254,171,239,194,33,8,5,233,172,73,20,210,156,209,34,108,45,16,77,85,122,194,200,94,30,123,71,215,161,246,222,205,148,122,189,92,47,6,156,134,40,43,211,238,120,133,143,227,1,57,234,127,237,127,92,60,100,81,147,210,65,24,66,207,208,184,29,34,40,247,162,57,180,13,76,72,182,224,27,158,114,96,25,135,143,143,55,192,212,1,26,105,108,165,161,219,80,49,18,168,224,173,92,216,179,239,192,46,177,125,209,134,136,79,176,159,52,159,218,137,169,128,5,68,158,90,119,249,172,79,83,5,17,28,141,83,101,78,42,250,209,94,54,27,18,228,122,124,132,150,202,112,25,14,226,140,67,132,112,6,33,174,140,144,109,89,120,80,183,248,183,216,123,107,40,191,49,212,228,159,237,56,136,220,108,2,203,151,251,245,234,188,180,17,99,149,6,104,81,55,91,151,224,106,121,61,100,96,255,103,114,193,192,60,215,34,249,227,186,242,52,38,27,77,6,103,187,125,31
 ,30,209,33,157,224,168,148,68,100,142,159,116,135,28,138,213,136,253,200,58,76,103,250,95,165,242,155,188,40,215,210,36,184,13,161,26,14,49,93,180,221,196,220,229,174,75,187,252,162,176,3,52,145,77,139,96,106,68,135,178,89,196,29,101,223,153,95,139,17,245,221,176,191,183,230,250,234,34,206,228,139,32,204,248,158,166,246,187,178,58,105,25,59,0,5,133,156,164,91,200,12,201,48,246,9,52,101,246,247,251,147,129,168,120,137,157,4,117,91,118,121,253,125,145,154,231,156,213,174,97,203,159,39,159,47,245,170,148,153,56,137,149,14,169,106,170,138,165,154,73,157,238,151,147,149,64,101,123,160,136,248,16,44,151,101,162,177,34,55,129,202,78,16,247,87,139,12,126,16,148,237,105,189,78,90,35,163,254,131,231,150,194,12,1,193,75,192,99,105,197,70,250,36,117,158,136,88,90,175,19,109,150,97,237,87,101,199,104,152,126,96,214,15,247,2,123,108,200,19,80,26,198,82,129,88,79,96,90,206,12,118,111,14,14,70,245,22,102,248,220,218,188,87,83,180,239,19,38,66,29,214,181,140,115,33,171,48,32,233,198,167,167,
 182,31,114,253,213,118,210,81,151,81,193,49,185,186,135,27,99,104,119,95,10,11,175,186,94,102,136,43,75,41,138,120,65,223,49,103,77,253,118,16,159,72,106,235,73,148,172,160,9,200,8,202,176,227,150,183,141,72,213,232,152,84,73,99,212,19,213,83,196,79,236,76,7,243,47,121,12,232,132,87,228,208,229,202,36,253,178,150,205,175,198,171,235,118,253,189,172,14,75,159,243,27,250,117,228,180,141,118,89,245,70,131,138,16,228,79,66,130,49,35,57,208,131,62,228,37,129,79,118,225,127,169,70,116,191,28,121,128,178,45,140,207,220,232,239,57,246,190,65,137,70,155,155,173,1,72,177,174,114,55,250,210,144,121,204,151,43,27,76,254,76,160,146,241,206,37,184,230,152,238,174,232,44,30,79,34,69,144,131,163,202,194,172,208,117,215,156,60,2,159,57,44,153,1,45,224,74,125,199,63,123,233,27,94,75,193,120,42,156,12,38,6,79,32,138,172,110,146,247,6,132,152,177,93,121,126,35,136,27,43,94,159,69,135,36,140,92,174,214,169,97,50,47,200,111,166,79,70,128,177,38,135,233,94,147,214,227,173,9,206,123,140,130,119,148
 ,254,123,107,2,241,161,175,58,156,227,215,199,253,114,210,189,61,243,42,212,155,6,51,5,77,231,184,239,115,153,6,177,30,3,91,83,146,40,77,85,16,241,115,116,194,229,208,104,25,35,68,213,46,46,224,132,254,36,2,190,174,129,97,163,187,80,127,58,219,228,184,156,8,208,164,243,76,121,149,159,205,229,43,0,32,68,246,32,228,241,143,170,242,166,69,236,227,63,186,122,137,59,30,99,1,124,74,206,149,15,175,12,78,66,70,138,113,201,91,174,234,249,134,197,89,61,104,128,191,123,254,149,99,162,172,203,123,39,177,131,191,25,99,164,154,184,43,174,52,225,226,85,44,71,193,120,161,3,103,188,177,131,42,223,250,134,50,196,51,46,5,214,240,149,135,207,63,250,41,202,177,161,134,155,197,190,218,255,49,156,43,162,72,173,39,57,131,251,183,123,210,36,27,54,199,250,13,133,125,35,154,156,88,181,1,8,182,148,143,204,119,252,11,168,146,18,196,53,250,46,28,136,74,233,34,65,59,221,21,121,157,46,145,19,221,165,102,251,181,45,0,157,117,213,192,74,196,208,95,23,19,118,19,137,12,171,84,103,27,118,105,85,96,109,41,59,228
 ,159,19,141,12,110,171,21,125,227,78,61,191,134,73,15,125,25,0,39,228,158,166,206,117,124,30,7,11,58,15,2,253,10,8,7,74,201,116,252,252,122,255,21,253,193,2,138,188,92,229,15,38,29,240,245,116,198,200,117,31,190,9,33,203,130,78,39,102,183,64,220,160,226,128,53,73,27,41,136,28,9,228,45,207,89,155,18,147,79,241,56,72,164,193,103,155,222,117,57,251,100,229,48,157,24,24,138,44,133,187,82,148,126,198,153,212,107,100,30,242,226,188,235,143,50,184,233,223,10,252,47,164,75,230,155,177,66,60,28,224,43,222,6,79,95,163,68,248,37,41,95,9,169,238,79,252,208,176,64,171,215,182,187,246,97,194,49,160,65,239,51,46,143,33,104,45,182,226,181,244,52,83,48,247,5,44,90,109,184,4,180,48,227,57,160,100,243,232,28,155,170,0,214,38,35,117,9,87,156,64,89,77,50,136,14,191,233,6,186,46,145,234,136,17,118,4,163,227,112,94,48,82,110,10,130,71,79,69,74,63,102,172,183,108,10,182,94,73,81,156,5,19,149,56,101,146,2,130,123,151,26,170,34,164,223,0,22,7,4,77,118,169,110,115,135,252,128,186,180,60,104,73,94,155,
 5,60,32,109,237,212,218,22,94,41,172,44,79,174,85,109,174,220,125,184,34,12,155,142,161,41,97,213,219,42,169,75,3,108,91,102,239,21,75,18,42,66,218,124,211,153,83,154,83,90,80,143,74,24,251,161,206,164,41,219,51,150,23,38,3,40,35,234,217,104,107,121,248,154,62,204,48,72,169,142,185,30,76,200,147,44,187,227,214,196,80,239,56,76,193,183,20,101,240,115,20,30,224,218,141,175,76,228,191,253,182,183,135,192,55,243,88,153,52,48,249,8,110,114,224,216,184,96,161,4,2,210,14,192,21,105,155,168,50,144,188,15,136,163,37,30,124,102,185,38,28,246,85,137,81,243,175,52,199,64,246,39,142,122,97,169,167,13,98,71,148,218,81,199,174,76,129,141,160,5,121,114,165,29,65,17,192,48,3,168,252,125,180,252,140,96,200,201,239,156,82,201,27,95,208,64,75,174,106,45,80,94,64,108,227,54,160,113,189,83,50,46,238,190,209,170,31,96,161,103,150,27,179,190,96,27,123,46,158,35,24,188,143,177,114,129,54,79,226,225,109,206,22,147,103,97,122,75,167,117,141,255,46,232,36,163,255,147,162,82,162,90,220,16,6,101,54,99,16
 8,62,11,190,84,68,70,94,43,49,17,97,27,15,41,10,246,222,105,218,232,19,15,231,228,151,19,110,0,15,90,238,208,126,232,107,50,14,241,6,16,14,145,155,212,227,96,170,178,198,83,173,194,26,49,107,202,156,161,184,229,225,100,0,209,113,1,66,158,156,49,187,51,202,216,17,96,126,163,248,211,127,221,72,175,23,198,103,228,6,119,242,186,172,64,167,78,108,211,164,69,246,70,232,61,220,11,7,29,121,79,96,214,134,227,225,199,27,161,12,171,141,209,249,136,175,161,208,226,129,218,203,216,165,78,151,110,250,13,74,206,36,251,13,143,26,22,153,254,208,95,236,202,40,250,69,144,84,39,222,185,5,185,224,176,169,112,112,85,158,59,157,166,77,206,201,175,189,226,151,210,178,187,147,62,66,169,172,167,6,12,200,42,195,100,176,212,124,1,242,208,5,250,175,10,138,34,144,109,206,127,96,60,80,169,171,249,123,166,101,105,74,47,243,232,217,75,127,154,197,225,132,145,186,38,116,194,182,26,80,56,113,102,107,151,156,90,81,185,173,226,27,224,250,252,201,66,199,234,246,216,12,102,160,5,73,50,171,180,112,190,12,223,172,1
 64,151,78,51,95,155,200,174,134,205,243,4,41,180,234,22,66,192,197,113,250,131,6,39,229,175,106,4,253,123,65,1,17,126,131,184,233,190,56,124,19,56,9,245,246,233,223,111,181,58,60,173,168,37,1,52,74,207,202,117,177,249,47,215,110,201,221,84,58,18,183,9,224,54,50,92,171,1,227,146,81,45,120,255,75,254,22,160,215,127,69,108,36,80,33,185,132,87,95,254,202,192,59,184,162,249,245,228,65,237,99,124,249,245,46,215,146,36,169,29,54,43,35,214,102,248,117,252,103,94,2,172,75,90,130,40,168,220,121,210,27,98,9,95,169,138,64,223,21,189,23,153,119,241,148,156,32,89,208,114,17,65,164,70,183,0,68,126,39,31,52,119,102,84,201,24,84,127,150,162,62,219,68,255,111,69,253,84,233,47,219,234,4,66,150,249,19,213,112,177,175,66,163,217,92,138,32,216,47,129,68,137,144,163,183,115,74,221,105,228,244,241,132,215,226,77,132,65,131,255,55,220,138,180,15,216,109,133,112,7,24,154,243,183,164,176,168,16,112,252,27,211,164,177,34,243,158,131,2,242,18,246,222,14,46,180,77,196,146,46,60,156,89,142,179,244,140,28,
 223,169,78,131,166,199,137,64,27,171,254,167,229,23,76,147,148,58,24,146,222,185,79,192,23,248,190,157,38,151,5,202,240,105,72,126,109,20,242,241,110,153,242,106,78,94,162,56,55,58,106,201,229,138,188,40,91,239,238,75,137,14,143,39,119,215,160,90,250,136,79,207,60,125,123,55,112,194,3,60,24,172,80,38,100,201,187,161,93,245,104,163,36,100,190,52,78,80,222,53,16,156,84,33,247,80,12,114,236,74,142,82,173,164,196,136,30,192,147,255,206,205,191,101,64,104,118,44,147,130,232,197,17,109,155,192,109,72,135,130,85,249,97,210,5,29,125,18,221,1,147,118,60,14,24,169,53,79,29,198,200,97,79,36,10,137,120,249,231,75,100,2,246,194,124,217,107,199,56,139,17,233,201,180,246,132,70,0,63,116,102,26,57,36,39,51,101,33,58,95,148,141,91,135,56,93,178,171,37,241,42,246,15,89,30,166,138,135,118,224,110,1,60,4,17,73,136,201,46,236,139,193,193,163,14,54,10,186,203,173,103,127,241,117,205,96,125,197,106,181,191,149,32,5,211,91,185,149,164,23,76,206,217,222,29,27,164,37,110,108,198,195,251,46,48,25,142,
 171,113,98,77,196,131,230,64,37,60,235,228,202,131,128,92,106,121,232,251,194,111,39,232,2,248,82,57,149,164,214,121,20,109,238,38,84,134,161,90,70,52,9,170,140,143,154,1,68,83,223,239,14,24,195,220,207,108,179,10,122,226,165,184,36,251,88,158,165,28,86,76,219,219,204,133,236,148,90,60,6,203,99,72,51,150,148,24,72,101,220,36,61,62,155,115,56,131,253,184,114,56,92,113,229,253,208,87,42,115,238,221,128,18,33,130,157,125,194,68,160,20,104,174,132,152,10,194,239,86,189,219,225,240,36,181,175,72,27,202,160,121,154,124,180,231,119,142,172,206,108,216,209,211,231,168,151,218,177,216,218,140,190,184,50,235,21,126,209,240,150,197,121,115,134,247,86,47,109,179,157,115,98,243,65,250,155,43,153,120,1,95,206,87,125,60,23,25,67,0,237,119,5,74,143,11,193,227,158,22,93,172,240,215,5,79,205,237,243,112,169,31,182,28,8,196,113,237,25,3,1,200,36,234,248,225,76,155,5,132,248,66,1,232,134,233,26,214,187,250,207,200,229,144,64,57,229,78,90,92,232,196,5,71,219,190,250,239,243,62,74,181,35,145,205,
 87,85,62,87,16,37,158,8,176,114,73,31,99,101,50,238,118,92,90,237,104,5,87,185,37,178,89,146,234,199,246,191,130,237,9,55,42,95,228,239,75,93,162,0,219,50,114,28,234,91,97,136,191,130,44,157,114,142,83,128,41,113,47,28,197,254,103,199,113,92,251,175,245,102,133,37,34,224,255,104,204,80,186,97,172,195,53,157,87,187,134,67,108,236,233,138,179,38,231,122,25,4,77,205,233,247,120,98,227,205,189,102,30,229,54,176,122,196,110,57,44,179,155,138,212,198,195,163,216,81,71,163,207,243,120,201,148,218,56,14,139,90,120,182,89,203,35,212,181,237,57,192,194,113,86,150,45,80,12,147,118,220,180,253,162,104,221,154,66,196,3,181,203,5,214,20,71,220,72,171,94,37,81,26,72,28,218,79,54,229,211,145,136,82,114,60,101,234,46,83,158,162,130,90,230,172,85,118,136,0,193,148,19,76,125,154,132,218,225,242,193,122,246,229,200,204,56,176,234,105,12,71,178,87,97,3,96,36,38,216,205,53,65,154,114,221,153,4,199,48,81,165,224,122,69,118,71,96,53,82,2,204,101,62,66,205,127,116,207,210,240,210,112,61,8,155,207,34
 ,204,39,55,98,86,151,253,82,140,107,171,4,84,143,22,103,168,141,175,216,101,60,220,4,46,223,67,218,97,249,204,217,227,85,113,54,123,131,219,151,206,75,145,76,21,252,12,10,5,126,246,62,11,194,74,27,182,252,207,76,91,50,246,25,33,226,211,56,108,66,68,254,211,37,99,159,33,133,171,248,222,199,42,114,88,88,250,215,62,126,219,26,53,143,186,249,188,158,79,38,192,73,240,222,106,151,186,62,115,101,42,0,242,125,4,55,184,196,11,35,56,255,123,27,27,160,94,205,165,192,12,198,71,171,160,147,231,206,75,128,155,251,188,40,118,119,116,25,212,191,254,72,91,194,225,94,195,145,128,127,16,215,199,100,39,193,223,157,54,17,117,163,177,132,203,29,49,129,88,114,29,63,170,210,164,217,147,35,218,132,89,251,155,172,195,54,213,246,246,84,227,127,182,212,217,97,154,103,235,199,210,129,50,29,112,241,121,164,58,223,253,253,0,182,219,229,217,237,211,54,211,28,239,111,156,129,190,98,14,9,221,254,106,230,85,73,164,50,18,98,136,45,133,14,85,199,18,199,79,182,251,31,90,15,170,29,147,95,33,196,218,207,38,14,128,
 23,182,56,56,168,62,228,225,193,115,214,59,21,28,238,73,150,183,220,149,183,242,146,99,111,218,16,16,237,51,245,48,176,59,223,16,107,243,222,174,119,153,97,153,21,51,222,44,109,27,53,63,93,145,122,105,228,61,113,160,252,202,210,196,8,50,80,251,124,140,252,180,147,29,38,190,198,174,62,114,217,82,56,86,227,40,44,33,28,103,95,114,207,86,88,44,222,54,233,244,86,185,210,170,97,71,70,24,33,66,68,27,237,45,142,58,165,185,179,7,83,5,58,182,169,65,213,212,16,207,109,26,46,84,187,9,201,240,81,169,68,95,31,218,110,149,18,98,193,45,57,150,5,33,107,192,196,191,200,161,32,2,155,14,91,65,206,217,217,194,184,42,252,140,36,132,79,253,240,237,91,232,35,187,142,7,25,29,46,212,50,199,26,124,173,63,180,205,193,233,3,71,171,232,1,245,222,214,225,96,249,215,105,216,229,87,166,91,78,97,130,100,254,26,129,65,208,99,189,46,211,187,153,121,50,213,103,49,165,25,50,69,68,146,170,199,60,16,69,145,126,98,232,100,183,174,88,133,95,94,12,57,233,180,203,138,226,140,57,250,93,164,207,206,74,181,178,136,20,140
 ,165,77,35,38,126,135,239,187,186,66,124,22,231,210,121,181,115,77,6,90,165,204,42,64,43,33,244,125,45,115,156,65,128,21,204,130,197,230,125,10,124,3,216,231,209,205,40,105,156,146,191,96,54,189,110,250,229,181,209,211,132,26,227,215,80,175,72,254,1,16,110,191,172,31,43,53,85,146,34,254,159,114,103,186,249,237,127,229,231,177,183,231,140,99,176,129,30,59,20,188,59,56,135,190,31,205,75,36,88,49,190,153,140,4,84,124,75,146,140,101,180,114,96,29,91,111,5,197,45,75,8,131,228,248,211,163,79,249,192,27,115,191,112,90,231,88,153,122,71,100,59,59,189,84,142,17,201,248,166,180,14,204,191,205,156,182,139,223,249,218,86,43,26,31,117,190,198,160,125,160,232,81,234,45,56,77,133,211,229,19,10,10,255,224,175,27,126,27,188,105,183,233,98,107,248,207,194,105,10,96,166,72,121,175,85,237,196,107,198,148,135,169,184,225,88,106,43,180,110,231,84,38,48,101,218,113,73,65,166,193,155,138,76,160,82,212,134,163,12,158,147,54,253,112,180,90,218,235,1,10,46,53,251,1,38,18,135,107,159,66,127,175,22,147,
 224,82,199,78,8,178,41,134,28,40,19,162,63,183,153,181,19,93,79,58,49,50,113,232,185,24,27,140,85,131,90,125,21,3,159,218,235,64,192,214,228,28,50,82,43,86,166,201,151,209,161,176,13,79,231,102,155,175,137,137,5,155,196,164,154,87,102,201,185,132,60,141,81,87,75,72,20,151,238,1,232,100,187,37,85,250,197,41,55,48,200,213,135,208,179,189,120,49,22,217,98,137,31,77,93,96,109,222,204,163,216,20,181,161,59,236,239,136,6,153,247,187,17,134,128,218,145,44,208,71,206,26,7,223,43,111,217,180,100,174,88,205,161,255,150,70,89,252,24,173,80,234,198,19,199,202,179,112,25,165,47,21,140,114,191,107,4,104,181,166,68,233,80,1,82,43,155,99,204,149,141,127,180,130,171,31,134,218,61,229,52,148,55,134,110,202,134,162,48,238,181,245,211,180,14,0,225,214,109,165,196,167,138,202,212,90,210,40,80,93,246,184,166,69,165,53,168,57,109,36,198,109,87,104,174,18,184,236,204,126,9,77,17,128,191,50,104,23,136,72,9,200,255,101,78,66,2,75,67,124,84,185,204,181,25,222,183,124,34,218,65,210,155,217,97,186,234,2
 07,196,114,154,226,108,8,78,17,104,130,212,40,217,203,155,238,5,76,118,169,158,57,31,44,144,78,208,179,199,53,7,212,251,56,4,112,130,76,50,60,88,198,247,26,114,176,220,106,83,105,82,235,52,245,249,218,35,203,69,244,219,100,210,109,178,140,228,111,190,204,69,22,67,226,194,151,110,119,77,251,109,167,47,73,170,147,130,73,184,202,125,134,132,164,21,214,115,220,47,74,70,20,131,89,140,19,18,175,135,58,85,25,205,244,174,223,67,192,74,38,13,55,255,126,6,226,142,254,87,35,142,93,145,188,126,58,2,183,147,208,35,56,123,122,64,163,83,30,29,91,55,107,25,68,115,44,190,196,8,14,200,208,162,127,212,118,26,253,78,252,77,88,97,123,31,86,251,131,220,135,209,166,202,212,67,10,225,108,16,116,178,69,144,63,63,159,102,168,66,171,144,58,80,161,212,23,202,161,193,50,159,124,72,244,103,84,198,157,54,53,242,28,152,112,243,113,185,224,209,84,99,34,180,133,159,205,233,195,43,70,106,103,196,155,70,81,130,151,107,153,198,138,207,105,145,253,246,202,218,240,137,140,215,248,117,131,177,247,109,25,92,240,204
 ,25,6,159,44,209,22,185,43,232,250,95,35,130,253,253,222,9,155,241,142,88,149,55,251,25,241,132,91,124,162,41,169,76,5,160,128,182,39,32,66,159,179,1,50,90,204,227,117,85,21,9,90,178,171,229,141,247,239,214,91,95,152,171,63,89,58,167,65,65,191,21,120,10,188,252,39,224,195,46,16,177,249,238,116,4,186,14,2,25,186,241,142,14,154,190,121,34,62,214,166,199,158,40,187,79,117,198,129,158,182,216,159,221,255,180,80,114,36,103,3,75,19,160,34,113,38,97,8,73,110,21,59,89,210,202,118,248,164,217,139,60,178,47,107,242,12,247,0,214,48,65,86,44,9,200,16,238,176,98,230,180,215,104,62,144,250,247,179,243,174,127,0,110,207,18,218,26,24,112,43,16,47,92,147,1,7,235,218,121,61,69,42,243,196,27,193,5,55,116,145,112,214,37,58,205,210,251,217,179,120,50,192,52,146,72,97,117,216,2,224,96,144,230,171,82,58,71,150,118,60,9,238,91,51,21,57,162,46,84,196,45,62,220,31,99,113,255,80,189,17,31,213,182,145,82,70,49,209,193,44,94,136,226,75,44,62,43,244,187,195,156,150,154,79,132,166,154,241,108,45,225,108,2
 34,97,167,33,251,182,196,131,244,41,130,145,209,51,158,72,85,66,231,106,236,101,41,220,173,25,129,36,67,5,71,200,93,151,114,65,89,255,53,124,74,6,172,122,221,156,119,225,209,82,147,15,8,199,27,78,15,243,109,160,60,177,83,95,204,17,216,209,97,75,97,70,46,220,243,71,139,157,0,15,133,246,45,213,181,196,1,85,45,119,160,127,91,241,206,22,62,44,134,69,214,22,39,155,5,142,114,174,99,48,106,101,251,222,206,167,238,119,187,62,38,170,69,186,4,137,130,1,173,104,220,250,217,245,37,251,151,142,115,154,153,89,195,114,36,158,207,59,177,217,65,88,182,200,224,149,118,210,203,76,132,212,155,171,50,195,68,63,212,181,53,2,55,240,59,101,224,24,10,87,129,39,130,157,29,82,207,210,248,139,104,131,63,140,189,93,198,218,59,95,208,38,89,54,241,240,145,140,175,234,255,158,240,119,71,219,85,94,27,148,67,227,82,147,25,184,248,33,206,23,169,98,78,224,247,119,173,165,228,189,151,107,122,191,5,218,124,107,56,203,153,224,159,36,120,214,86,206,185,145,10,176,120,131,1,89,0,176,91,61,212,40,174,170,79,30,37,15
 6,126,23,252,32,179,120,44,125,158,178,19,236,54,237,88,97,175,166,3,116,177,230,2,182,138,37,89,230,80,48,26,124,23,175,69,179,22,181,194,13,191,2,122,193,0,103,42,251,38,144,136,19,168,55,245,92,137,192,84,177,208,218,222,221,173,203,240,45,189,156,69,1,159,151,142,80,156,144,212,23,188,201,13,65,248,11,76,81,130,106,54,49,59,3,175,48,151,74,169,41,120,230,44,185,249,125,49,99,109,133,29,49,81,249,207,255,98,181,93,216,144,85,6,101,198,102,147,72,248,53,154,77,7,32,32,193,240,211,162,215,107,231,44,83,6,100,225,117,37,140,255,9,243,19,134,191,73,63,251,225,151,136,134,21,248,252,216,154,50,144,86,35,189,126,95,182,146,141,231,165,66,0,103,11,36,13,121,217,53,61,117,229,81,7,72,211,66,114,38,214,164,113,204,165,57,12,10,12,214,136,71,178,255,72,90,212,69,225,156,143,38,179,138,219,46,139,255,207,195,185,143,187,8,116,232,5,123,235,15,196,90,162,252,114,100,147,68,75,70,63,233,192,45,248,82,171,44,145,163,91,142,91,79,215,200,149,7,96,178,116,109,38,71,230,106,249,129,12,58,
 211,158,55,87,223,62,160,3,147,138,169,101,211,187,30,35,50,1,77,244,129,185,108,53,187,150,233,116,146,122,51,93,47,202,188,182,18,175,147,7,145,164,9,110,77,183,234,32,41,239,108,55,53,23,181,51,59,147,166,183,103,84,135,43,49,165,222,18,245,91,134,12,193,64,145,140,71,118,99,221,151,253,187,98,133,115,110,131,112,195,3,109,165,111,3,150,87,13,187,175,132,205,212,168,98,43,166,245,183,238,231,62,9,219,48,20,101,29,176,145,162,178,107,228,183,47,93,121,211,241,62,123,57,191,129,65,86,192,100,27,246,109,191,220,171,100,165,244,37,134,171,79,16,150,139,188,250,19,228,138,128,22,147,108,62,124,213,207,117,68,116,74,124,33,124,85,167,166,98,157,63,227,140,195,17,56,195,188,177,85,23,156,180,107,148,53,57,154,204,144,199,2,157,109,20,45,58,27,24,209,160,162,212,62,255,208,128,5,44,18,183,118,166,132,101,218,122,140,166,111,204,82,148,158,39,162,17,219,100,165,47,251,173,189,114,165,88,188,36,102,169,157,44,175,207,96,214,26,248,9,222,162,81,180,101,43,76,248,202,165,45,112,179,2
 1,221,160,83,57,210,4,65,218,24,155,239,183,48,70,252,249,17,118,176,197,226,240,118,21,98,11,125,217,94,241,150,249,238,57,175,194,83,252,115,71,162,110,53,42,249,167,237,38,23,196,70,106,178,21,117,207,89,48,101,253,198,152,187,77,229,18,242,255,91,168,205,121,46,135,170,14,6,164,147,56,185,145,97,193,214,128,44,176,36,107,97,94,242,227,35,143,49,16,190,66,41,124,175,174,115,34,71,1,180,3,159,108,186,59,200,251,99,200,24,228,156,243,14,136,126,186,154,20,201,164,150,169,98,238,175,224,96,97,221,74,149,137,200,16,164,47,219,10,20,18,86,229,82,192,119,90,129,197,113,94,250,176,226,125,179,40,28,177,162,122,32,65,120,215,112,23,181,49,212,169,96,62,117,160,222,124,143,57,205,75,232,13,166,103,234,253,192,71,120,198,177,75,201,160,241,60,7,222,78,66,187,175,35,212,247,74,225,20,186,251,33,54,207,179,239,125,240,146,11,231,16,188,166,212,216,182,38,32,5,75,255,152,157,175,75,209,211,192,68,107,136,9,113,65,233,126,2,201,33,47,1,89,113,87,170,0,159,253,11,29,80,35,28,198,73,154,
 51,206,172,2,144,60,170,212,18,175,228,18,81,89,146,191,239,56,102,0,30,38,162,28,60,93,164,242,214,161,149,44,84,144,66,130,177,32,154,87,16,23,54,211,117,58,99,238,224,187,219,155,248,139,73,238,196,231,8,154,240,163,160,201,88,240,227,132,211,145,129,147,95,234,35,126,33,233,184,64,223,135,208,47,231,213,212,101,113,29,254,120,21,154,154,163,181,43,201,64,166,127,55,81,66,168,55,101,34,160,169,181,198,106,188,19,152,48,27,77,21,11,254,50,147,82,246,174,161,254,33,83,41,122,126,157,41,218,233,240,73,140,96,8,248,36,33,227,227,68,45,216,128,54,242,170,20,233,88,116,127,111,123,156,53,250,19,85,202,131,15,215,60,142,25,155,161,83,226,90,27,120,203,134,181,172,10,67,188,217,200,79,208,117,130,36,115,176,186,98,188,17,90,182,19,165,66,110,130,182,245,166,131,27,30,172,184,131,186,62,218,172,44,172,230,118,67,102,252,138,196,240,244,163,48,147,3,57,53,79,254,15,254,216,192,229,195,217,79,205,110,195,1,65,163,33,187,28,40,48,20,217,1,60,217,136,92,144,135,209,82,150,29,34,138,12
 ,161,132,88,174,123,140,73,90,37,83,187,10,30,104,152,223,51,228,255,158,182,157,27,195,113,134,47,101,79,140,236,150,161,233,112,5,251,138,253,25,26,115,90,151,197,128,68,158,52,110,191,73,234,123,239,244,214,157,219,200,187,231,244,1,163,203,91,136,163,91,55,78,105,154,119,76,52,211,107,6,64,159,68,241,244,122,47,143,98,154,246,99,42,219,150,31,79,135,149,148,233,135,144,149,228,211,74,239,204,205,97,109,77,156,68,236,96,254,160,94,149,74,75,144,81,16,42,34,173,54,6,243,121,215,111,251,90,209,208,225,88,119,170,231,86,40,186,70,173,164,2,106,53,165,43,110,112,75,88,67,52,183,100,206,201,78,17,162,43,221,179,176,68,164,220,192,14,57,178,100,193,78,111,144,8,72,44,234,29,132,92,219,17,86,27,116,226,83,184,136,8,106,119,83,227,191,193,155,210,229,188,56,204,6,226,158,188,193,173,246,33,196,191,157,90,79,114,49,95,252,23,153,63,158,121,85,16,231,147,16,212,217,5,183,20,250,166,32,109,20,180,198,180,16,77,78,48,137,184,239,20,139,118,148,180,124,153,165,35,211,220,198,98,146,10
 4,243,188,120,21,180,165,84,107,64,17,56,16,247,147,252,231,172,207,179,59,80,113,210,195,226,84,103,56,166,78,1,51,151,203,100,66,121,24,215,174,84,18,8,28,244,147,22,49,249,206,152,160,7,155,114,215,70,130,114,61,248,9,152,83,58,13,46,30,241,54,160,102,199,105,30,225,0,103,127,187,23,53,90,232,222,114,93,47,154,198,123,210,35,136,177,51,102,117,136,88,160,225,95,173,7,26,191,250,133,140,39,93,120,210,51,68,85,104,225,125,204,137,209,6,127,120,89,140,103,133,146,158,226,85,170,251,51,208,155,34,98,164,122,145,1,173,196,58,219,0,37,45,49,240,191,128,115,36,32,214,83,74,71,3,251,53,94,36,174,219,210,157,242,76,165,102,201,64,166,174,41,164,84,110,251,43,74,127,102,229,162,230,117,186,199,235,63,61,250,135,223,43,103,30,197,17,77,111,140,109,40,22,162,93,196,26,132,203,149,131,76,135,115,238,4,0,215,22,54,12,248,33,203,135,252,183,216,70,161,48,177,119,217,113,185,227,9,30,173,187,241,191,126,51,52,223,89,249,44,5,31,2,97,242,105,44,19,190,198,226,35,25,20,76,135,115,45,147,21
 1,175,5,162,175,251,136,160,96,62,254,74,5,219,14,75,48,239,207,137,133,127,210,172,10,97,200,245,8,175,30,46,138,34,109,70,51,119,152,237,245,116,137,7,42,210,254,206,239,73,196,189,145,236,170,92,91,87,237,191,7,252,128,114,30,247,11,115,90,46,128,166,137,184,103,143,219,27,249,42,5,47,198,243,69,33,218,225,3,35,196,199,93,25,103,208,110,124,187,22,12,149,75,25,116,227,143,240,3,74,0,73,28,111,77,22,226,8,67,79,9,173,106,137,150,67,159,97,119,119,30,33,96,166,90,140,245,104,114,221,250,236,45,119,25,152,44,89,115,159,252,6,55,120,177,44,77,37,50,72,18,157,175,112,24,219,192,98,226,176,40,58,140,117,81,197,66,94,194,27,179,52,230,232,55,59,253,122,128,100,148,126,3,47,198,182,189,130,27,24,237,82,49,62,25,114,168,241,11,166,251,177,230,120,98,130,132,22,112,205,173,79,251,114,149,124,197,243,40,105,39,31,68,251,132,138,31,142,236,3,154,106,59,10,249,247,79,250,244,133,45,212,229,19,25,115,161,154,81,60,95,90,120,54,162,124,9,144,150,61,17,3,206,117,167,96,99,97,0,123,197,18
 6,110,240,207,48,16,253,113,23,143,125,162,209,58,25,170,35,27,164,14,21,247,107,31,60,100,1,36,232,236,113,180,117,202,27,45,93,124,61,224,153,11,82,241,176,76,127,97,213,150,239,83,179,245,202,33,84,206,195,92,218,0,66,42,236,87,18,196,187,51,44,53,152,166,22,234,35,242,62,71,33,161,179,186,166,168,14,162,107,133,178,84,90,205,220,156,207,132,226,113,10,231,210,1,57,199,73,244,28,118,52,78,212,223,182,216,143,57,123,54,69,139,112,29,192,18,190,242,140,217,177,212,234,24,142,169,192,177,193,78,106,63,199,143,240,130,70,154,67,112,182,103,167,85,213,189,132,103,159,14,207,165,158,147,216,150,180,178,55,206,94,136,77,161,57,132,41,6,20,101,8,64,155,100,136,42,122,122,1,157,35,43,251,250,134,130,141,247,247,18,199,199,230,219,93,235,126,254,221,22,14,8,135,207,142,126,237,4,165,174,37,78,71,139,51,119,101,224,43,73,254,47,59,54,103,185,100,99,181,65,206,97,158,77,156,251,138,65,60,13,23,116,80,11,129,32,174,18,76,213,111,4,247,80,219,241,42,29,64,83,28,192,86,159,84,174,154,75
 ,22,69,126,172,65,161,106,148,204,109,0,0,139,66,111,13,105,242,49,120,17,254,169,149,151,141,215,163,45,103,72,237,193,32,49,211,190,1,9,47,126,244,26,218,48,212,78,212,37,161,98,148,133,116,239,212,231,226,250,234,112,115,125,95,193,162,121,83,108,167,40,229,70,239,105,67,13,151,7,244,70,165,72,254,124,0,184,226,183,105,213,216,94,61,183,101,203,97,102,115,160,34,223,166,43,244,52,193,149,15,27,74,201,36,101,204,67,229,59,244,19,132,193,178,178,169,20,13,80,208,113,96,172,8,21,185,233,115,104,9,162,51,99,217,179,6,35,66,151,114,84,161,145,70,142,117,171,6,146,90,35,70,187,254,212,235,96,11,253,13,113,98,252,97,65,83,17,179,17,117,195,64,119,132,11,235,226,4,34,144,201,191,177,234,219,0,183,73,208,210,17,77,178,146,229,14,231,99,85,207,228,253,38,208,96,255,129,177,36,185,232,112,203,10,232,162,229,217,11,137,225,241,234,195,211,29,119,87,201,225,12,27,224,92,247,250,201,119,136,59,187,35,152,51,78,132,40,240,229,232,225,191,23,144,50,64,69,121,85,150,177,11,164,13,92,156,1
 3,162,70,93,231,183,28,69,146,188,188,16,93,16,218,11,12,201,53,61,159,25,158,159,0,111,1,32,27,136,22,214,241,40,128,191,6,26,222,29,216,117,81,2,139,47,36,128,254,7,212,47,78,46,99,235,63,143,232,80,111,181,81,178,111,134,212,73,171,74,183,170,51,10,30,139,38,43,128,219,248,43,107,20,171,194,187,33,98,110,113,135,186,66,238,161,66,115,209,234,157,120,247,73,177,251,15,131,11,124,240,128,37,129,11,139,39,68,44,172,212,76,69,204,39,199,89,242,31,243,153,245,147,98,48,114,23,101,106,157,115,141,6,7,116,205,10,249,210,152,105,176,117,254,242,65,108,20,253,196,251,49,60,55,252,144,211,144,144,236,170,186,54,8,230,124,29,13,100,65,20,109,71,38,227,124,0,66,194,144,37,96,207,137,95,58,177,15,218,137,124,2,146,91,173,209,74,45,161,249,42,38,48,151,95,113,244,0,160,179,2,115,16,245,173,87,132,62,151,66,188,148,134,194,76,131,167,203,237,32,194,178,169,85,83,76,203,81,64,33,84,139,196,139,76,140,3,199,121,25,91,218,195,150,65,149,56,143,225,31,33,231,145,225,57,252,189,100,129,98,91
 ,89,17,101,172,234,93,162,236,239,172,171,181,30,85,80,104,74,60,193,5,120,249,182,109,150,77,35,218,121,222,14,171,195,27,36,214,89,117,118,102,121,201,0,232,48,200,8,113,185,246,109,70,237,55,108,11,199,74,122,142,57,250,195,51,170,223,75,45,52,56,87,206,32,5,115,9,62,116,247,104,172,109,254,127,1,38,95,77,78,16,10,21,35,117,179,92,69,112,150,68,23,48,9,56,91,137,143,137,90,47,219,157,177,132,47,29,142,178,190,249,141,41,99,75,219,31,144,7,0,157,129,137,174,231,109,155,41,217,113,44,247,88,46,96,14,4,251,106,181,235,38,4,133,232,107,192,15,43,169,199,197,230,240,119,174,59,106,130,232,137,42,253,117,48,104,155,77,74,48,6,207,33,163,180,3,244,54,96,168,193,80,36,73,31,131,161,43,12,254,152,74,44,194,204,202,164,7,129,156,169,16,17,210,170,199,93,101,228,22,129,40,54,86,91,24,77,71,238,104,69,177,69,226,101,6,106,27,41,167,92,72,157,150,40,99,129,118,46,159,240,5,20,86,114,86,250,156,125,101,40,207,187,141,57,59,170,223,156,6,93,89,218,39,80,163,14,187,236,29,61,46,10,142,49
 ,220,155,56,113,89,41,197,236,71,205,233,44,215,150,63,67,69,2,255,92,183,186,207,194,131,164,203,205,156,80,214,116,64,22,15,189,47,84,146,161,135,194,55,29,229,10,231,118,41,31,171,8,198,61,178,199,29,21,207,237,208,54,147,248,30,228,221,27,252,32,29,240,220,37,186,186,180,155,248,81,59,152,103,151,39,83,159,29,96,234,167,56,212,97,37,130,30,67,98,225,36,237,8,252,60,21,29,249,6,60,185,66,163,29,214,10,200,220,3,167,129,226,98,203,221,181,154,34,20,191,198,44,76,61,123,187,88,234,49,91,84,227,247,120,234,32,236,115,139,159,153,96,114,198,101,53,116,153,246,31,100,116,174,58,169,238,78,44,18,168,41,68,80,7,167,72,167,5,102,0,180,183,204,148,107,30,114,136,106,173,127,86,189,208,4,42,99,134,227,242,108,147,127,48,178,235,182,112,44,195,193,114,215,110,22,1,223,43,66,109,112,67,108,10,230,198,245,44,101,247,209,14,164,147,195,168,210,165,91,87,220,126,51,120,134,6,114,67,179,66,24,71,11,99,189,159,41,4,94,90,195,45,148,151,166,249,145,217,236,18,169,39,71,114,21,7,146,211,187
 ,107,204,29,154,230,224,178,88,197,193,243,210,89,107,118,210,186,69,209,69,178,5,102,2,82,1,13,155,195,70,42,216,112,199,152,229,131,19,145,60,112,51,109,107,164,171,52,190,213,112,38,83,214,24,87,158,120,219,136,223,201,220,17,92,171,104,145,1,237,156,206,84,237,80,215,69,210,115,84,168,68,205,86,71,70,131,97,214,86,111,232,196,37,142,222,38,170,135,48,218,162,6,118,60,111,207,38,5,139,80,130,90,44,151,111,189,19,193,2,218,255,240,67,238,104,121,196,53,133,128,174,253,131,24,53,167,211,62,220,208,64,11,125,133,218,238,62,231,171,32,20,67,80,184,55,14,18,245,241,212,48,154,173,157,249,59,98,183,243,25,222,5,43,38,86,229,46,167,26,102,224,130,36,85,147,161,59,163,37,150,224,219,123,208,220,25,252,159,171,28,163,186,86,150,66,215,219,143,194,84,172,255,228,178,166,182,51,116,87,145,91,28,147,252,74,91,186,181,164,70,106,53,134,254,91,21,219,222,132,137,141,0,219,132,225,234,157,0,68,122,141,181,92,56,31,198,62,70,30,71,154,101,180,3,13,120,158,103,17,205,161,241,111,245,7,60,
 0,42,173,146,202,77,14,150,3,218,198,69,206,134,200,17,51,127,198,18,201,229,183,7,1,217,73,185,94,248,107,63,71,186,55,163,52,219,220,10,242,171,16,186,151,27,212,78,68,28,126,67,94,40,103,96,111,147,215,196,12,231,135,170,9,90,112,195,47,111,42,9,123,42,126,71,12,226,92,173,178,134,111,2,43,100,134,178,78,211,208,69,72,77,214,147,157,231,188,212,197,19,203,25,204,175,212,128,31,149,72,247,202,11,194,54,237,248,237,32,94,241,10,129,140,210,94,217,23,30,101,37,41,84,159,117,212,225,26,137,192,21,194,162,212,10,164,12,111,216,175,151,11,148,57,160,211,176,20,64,177,95,185,205,65,230,61,29,193,193,170,145,181,213,173,20,44,160,62,217,228,217,79,38,198,174,118,202,159,124,98,154,242,96,25,243,208,85,66,190,75,99,34,38,195,93,225,80,183,193,243,126,80,86,89,41,2,133,92,131,89,185,174,111,119,54,118,109,174,175,213,76,41,106,6,193,82,71,21,152,109,214,94,79,52,38,238,230,33,239,104,172,196,131,41,160,56,148,108,164,252,42,113,115,181,160,236,50,139,249,148,98,120,20,220,39,117,21
 7,144,126,138,139,167,137,230,20,138,80,144,253,122,127,199,20,77,230,106,42,219,128,123,126,232,1,159,195,235,231,66,87,246,32,30,36,171,5,36,218,136,93,133,203,1,205,153,44,208,201,58,15,194,192,96,236,200,240,177,199,145,0,171,182,7,27,23,22,208,65,234,74,200,224,5,224,202,52,46,183,192,91,175,254,215,238,94,67,88,173,122,42,146,91,107,194,3,158,167,246,219,56,220,8,54,255,140,40,169,110,13,95,38,102,217,188,8,96,1,60,103,107,184,181,214,101,26,125,199,218,2,69,149,26,43,131,241,68,122,45,74,232,102,30,181,85,68,211,60,228,14,127,190,119,92,93,239,111,107,23,170,107,57,108,204,194,187,30,240,37,99,83,83,34,117,211,185,17,168,56,239,134,104,77,146,156,159,104,86,69,231,39,164,180,52,185,67,50,5,17,45,93,156,87,172,1,177,115,245,54,52,245,18,158,137,124,122,197,185,240,196,143,238,71,144,37,54,31,217,186,85,216,194,8,192,1,112,114,0,215,52,156,7,128,228,48,106,120,14,39,108,81,225,193,35,57,64,210,140,246,57,198,210,159,181,146,250,177,212,37,229,161,27,64,136,114,249,155,2
 03,94,160,33,118,216,144,178,99,173,22,233,210,120,206,221,111,8,142,98,133,239,124,195,105,189,142,36,195,228,140,22,201,117,192,136,118,209,84,44,59,55,254,253,6,62,53,196,151,187,81,114,25,153,199,136,209,82,236,39,187,153,250,21,89,22,202,115,33,206,118,223,144,192,73,24,88,147,86,81,232,173,129,125,112,45,210,45,110,157,49,96,103,128,117,217,41,73,249,13,101,3,104,7,85,6,35,214,156,176,46,229,177,36,238,250,60,55,236,149,163,10,153,133,62,49,159,50,42,87,120,40,253,122,149,248,231,38,249,228,147,192,177,121,139,137,64,128,64,79,6,161,78,192,172,27,24,190,244,117,201,75,117,138,168,219,140,38,120,91,171,75,106,184,239,236,178,210,99,143,27,171,217,144,88,0,240,204,63,224,116,147,127,117,162,115,108,71,70,21,86,150,135,80,61,255,226,244,99,5,50,56,150,41,160,197,51,83,59,121,136,164,155,40,4,15,18,219,121,13,187,5,127,5,4,68,22,122,244,73,246,71,1,216,104,170,162,141,153,86,52,208,210,137,141,189,153,152,123,160,134,44,92,204,124,237,63,200,164,81,160,193,245,234,19,37,71
 ,245,238,150,9,95,250,31,233,194,223,99,76,246,69,44,225,83,106,25,242,102,161,186,129,165,58,220,104,72,85,227,138,172,82,113,255,112,128,65,205,154,252,43,150,172,51,139,90,36,177,242,69,186,229,185,3,119,108,47,25,248,131,206,191,156,112,48,79,78,217,118,217,168,37,188,175,224,211,39,22,107,176,87,2,33,121,24,103,39,211,38,12,203,23,190,8,49,22,221,137,42,23,151,68,71,127,235,56,44,255,36,3,143,83,110,220,80,207,84,231,133,198,237,235,64,42,2,149,130,140,235,185,99,203,105,36,83,42,128,49,41,117,206,221,9,66,101,101,67,93,108,88,22,79,152,157,102,167,196,116,69,84,171,48,156,43,200,128,239,236,62,135,192,56,164,134,94,30,88,165,191,231,52,190,164,6,144,254,20,235,154,128,239,28,78,30,90,100,144,30,209,209,119,163,137,181,190,132,33,4,186,216,117,243,10,215,222,129,67,206,19,202,245,145,14,75,215,175,164,205,36,234,68,17,56,152,76,187,143,135,248,65,14,134,203,206,134,107,32,243,138,226,20,84,199,245,211,58,98,136,224,104,199,139,129,207,67,237,65,85,102,1,44,204,140,159,1
 52,177,64,178,94,58,42,143,242,233,21,212,83,154,240,208,13,16,14,68,114,27,243,216,5,191,69,154,201,241,48,188,164,45,70,186,89,0,221,182,61,8,200,26,12,202,179,207,39,152,28,52,70,96,169,9,101,50,182,213,83,11,70,169,59,93,64,132,12,126,177,13,156,30,126,93,120,229,0,254,86,76,56,202,219,132,218,91,156,90,147,245,169,211,98,116,247,169,204,37,255,147,214,122,247,231,50,12,109,26,180,250,229,115,162,228,94,242,175,107,252,246,115,185,57,52,117,62,7,67,196,95,68,94,225,38,229,234,248,76,4,198,130,39,29,186,80,197,250,163,205,106,6,85,81,59,143,156,22,31,16,111,195,226,45,96,164,241,2,183,144,17,196,73,136,36,1,214,160,101,224,221,220,185,111,187,205,16,188,163,36,182,98,66,23,192,6,16,26,75,8,243,13,191,184,153,186,191,6,36,149,167,177,209,133,65,21,153,37,169,209,190,208,183,153,169,9,185,55,140,175,223,218,76,82,81,48,195,12,9,107,77,19,42,78,119,130,198,87,112,146,0,134,66,74,223,71,127,82,206,251,55,159,234,174,23,115,30,21,79,124,73,94,59,45,148,115,178,217,154,104,40,1
 70,67,51,14,65,219,96,35,118,52,242,249,76,159,171,186,197,156,195,191,244,184,122,38,244,230,149,221,140,159,83,204,49,103,229,205,72,47,131,209,185,146,14,112,238,106,95,86,165,94,60,245,228,12,141,52,229,156,112,141,9,226,38,143,102,253,147,105,40,154,132,16,28,61,88,31,38,17,204,68,3,175,9,167,243,60,37,157,214,123,236,38,68,181,224,231,204,78,42,37,94,241,211,187,27,178,112,234,166,158,75,5,58,5,118,174,36,251,36,71,87,68,20,163,97,19,0,48,133,156,175,175,95,115,218,129,33,226,75,247,43,253,204,207,180,155,211,68,252,16,161,205,176,153,162,251,45,36,105,182,168,221,186,66,192,254,191,239,101,92,102,106,113,181,177,167,134,77,39,105,64,230,121,34,1,25,121,50,232,152,107,41,176,255,185,55,130,238,157,81,0,245,88,38,168,231,26,15,93,61,205,43,17,136,54,81,182,138,44,132,73,7,211,224,164,195,106,100,73,164,50,82,247,228,154,107,59,130,183,36,24,158,61,8,180,116,64,252,38,27,72,172,44,254,64,89,104,152,111,227,84,29,37,72,165,157,222,234,81,121,27,185,4,159,252,48,226,123,93
 ,11,160,156,156,145,111,166,134,37,75,160,30,57,38,126,69,23,41,64,24,126,108,137,12,29,76,113,159,243,151,13,70,136,73,11,138,29,48,14,218,207,166,89,177,9,225,79,103,122,132,9,122,170,197,119,238,217,169,18,18,79,79,0,88,157,32,92,11,252,158,139,156,132,28,82,10,190,145,120,181,142,202,240,207,48,66,124,149,101,3,158,24,221,84,196,28,155,35,245,173,221,176,220,177,82,157,60,0,185,133,15,104,126,74,108,32,252,49,106,42,141,44,195,154,8,209,72,224,87,181,224,5,34,9,140,175,182,220,217,112,251,101,25,87,67,63,224,36,30,13,243,18,213,160,163,31,159,81,25,45,91,212,81,165,248,29,237,55,135,68,24,15,68,254,130,0,63,246,28,42,3,25,70,119,206,140,222,234,10,88,31,107,177,158,34,143,246,113,21,45,93,179,148,199,161,2,4,124,2,104,246,136,8,33,98,97,249,27,93,130,190,205,81,138,191,7,13,54,22,152,68,97,49,253,159,138,10,74,199,121,31,251,100,144,182,113,224,240,205,183,128,172,173,16,223,141,136,103,40,216,121,10,111,139,160,146,44,207,233,165,44,174,215,138,71,186,183,48,97,128,38,1
 5,225,209,83,65,144,66,166,139,1,172,225,240,194,55,253,24,170,66,2,21,107,120,198,202,180,22,230,72,177,246,124,239,165,228,19,99,228,240,155,243,107,79,3,233,110,153,150,68,152,66,43,2,251,253,220,171,198,27,244,132,86,165,115,40,46,69,224,90,41,36,145,243,226,0,118,226,120,217,207,34,24,1,221,74,191,249,159,212,108,210,235,7,122,140,68,215,207,231,189,228,137,89,149,86,230,179,217,160,114,66,202,183,201,176,163,150,193,236,210,124,164,146,13,200,225,234,124,55,97,127,249,206,217,127,86,140,53,27,236,10,131,107,132,152,10,240,226,147,89,107,47,124,59,114,133,224,146,186,27,53,82,186,142,185,41,18,208,85,60,166,119,188,84,226,14,210,181,160,219,212,200,237,34,157,24,141,49,196,67,223,223,62,176,201,114,186,138,218,20,212,127,63,253,210,149,103,167,151,10,90,27,200,38,52,206,219,156,35,219,221,252,57,124,226,49,255,228,143,147,79,195,102,51,40,143,90,236,203,159,90,97,125,119,143,142,61,74,115,143,244,24,20,69,112,241,35,156,142,127,153,59,66,95,235,175,73,62,185,111,76,46,2
 27,246,180,58,121,214,202,244,233,13,110,178,91,195,94,175,17,187,178,2,25,65,95,223,44,219,85,85,101,155,180,139,246,54,66,151,250,203,213,35,88,128,210,0,153,69,191,150,250,41,196,18,240,20,175,168,187,178,129,191,88,3,157,40,201,173,168,248,221,206,14,75,142,33,160,241,246,144,35,128,5,78,221,48,195,99,140,85,178,132,115,214,231,43,24,235,113,1,141,126,121,48,232,168,96,97,251,188,133,214,204,96,36,28,157,212,158,41,81,177,156,76,229,25,10,57,100,104,252,23,119,46,48,182,209,248,60,214,196,130,111,213,3,48,150,64,153,107,42,210,203,193,83,189,204,19,0,200,5,244,149,177,195,201,234,109,138,95,4,136,107,206,3,153,144,134,20,223,221,253,245,42,202,219,238,144,16,186,15,229,149,9,177,83,12,56,52,101,165,15,108,210,75,173,114,181,242,60,228,247,19,79,240,60,245,102,219,232,212,93,94,1,153,228,16,34,42,249,241,49,176,27,229,33,225,132,245,225,187,36,45,208,87,78,104,59,112,4,53,52,221,7,139,237,127,231,203,83,4,52,133,2,62,176,16,32,7,172,136,189,228,223,122,185,224,78,22,246,1
 28,220,242,119,215,133,65,0,224,207,240,4,122,249,222,41,127,43,228,82,208,36,145,204,155,59,4,229,203,124,44,65,41,83,92,247,249,144,141,41,158,80,163,103,118,18,168,18,95,93,116,247,63,141,2,45,106,144,108,145,214,167,240,41,6,4,63,166,187,126,87,144,119,193,179,101,3,217,135,206,104,15,45,128,230,30,138,119,197,41,18,176,80,175,201,183,113,133,156,183,69,203,223,106,222,125,180,118,34,132,210,223,102,1,129,0,64,124,167,146,150,62,5,64,51,96,93,190,182,181,203,40,113,32,48,75,170,125,67,65,119,179,188,164,14,174,54,175,150,171,49,60,36,161,70,119,160,200,131,52,34,172,9,201,228,127,213,72,90,133,31,227,11,17,102,125,125,248,254,225,107,200,231,152,78,21,94,245,200,58,113,95,249,50,107,126,12,88,152,110,106,213,95,41,24,78,218,15,240,155,241,230,221,130,118,240,225,48,90,122,237,179,123,111,146,147,183,189,244,166,131,171,118,115,143,116,6,19,101,63,219,168,197,194,200,45,22,222,32,98,28,104,189,147,87,23,190,91,102,226,53,15,168,32,197,80,163,241,30,223,184,178,104,99,38,1
 99,29,90,143,237,185,77,35,131,145,139,201,114,187,211,168,80,54,228,210,214,75,99,3,215,254,18,241,188,5,169,78,115,7,210,116,99,13,175,236,120,169,72,70,75,191,243,112,197,16,225,166,75,46,1,161,127,70,202,24,125,86,212,252,94,157,11,242,37,156,171,25,123,77,253,78,117,182,56,236,194,94,5,88,18,179,82,225,55,96,63,49,250,7,206,244,156,179,6,73,230,108,22,101,100,126,48,157,3,181,138,32,254,155,41,227,32,10,7,165,42,214,131,8,10,17,228,254,128,134,126,245,141,4,65,211,135,157,23,13,120,30,151,191,169,47,186,146,0,169,247,183,200,149,222,137,96,250,144,79,170,57,196,86,148,107,179,197,57,36,77,227,197,32,200,128,79,173,251,82,107,206,187,247,226,113,178,0,197,146,185,160,81,212,39,74,177,63,6,43,73,188,228,98,24,215,49,95,182,118,202,33,75,150,67,9,225,126,43,129,126,97,112,176,160,151,186,179,222,172,82,7,60,152,23,142,84,251,191,91,193,180,0,2,182,224,38,28,107,223,76,193,148,253,199,24,60,103,200,117,214,159,166,245,28,33,161,233,37,247,21,70,109,205,117,210,11,67,215,95,
 6,27,189,233,252,247,202,10,165,105,92,130,161,80,18,125,48,0,170,169,10,149,223,41,165,128,52,219,43,242,146,254,244,235,206,179,148,213,25,95,53,151,253,18,102,50,32,248,102,10,99,64,21,87,136,150,186,37,127,145,142,133,117,209,176,32,138,41,79,32,209,48,171,214,67,236,12,111,228,252,84,196,57,169,182,149,140,169,111,58,232,138,2,237,200,160,2,172,173,90,180,92,144,255,176,141,38,139,44,7,204,121,215,124,123,244,159,211,184,180,104,131,89,38,177,154,211,173,145,66,134,36,33,49,18,161,211,162,250,38,107,105,208,208,144,241,68,198,154,28,191,214,122,74,167,28,60,147,46,37,9,234,242,83,5,35,45,51,173,85,228,106,196,160,240,131,120,19,157,62,222,43,244,208,78,143,244,251,75,225,152,232,79,53,64,175,151,232,30,22,128,97,230,193,234,32,243,199,224,76,98,39,75,246,104,219,80,177,204,201,114,221,138,101,37,138,183,153,169,32,28,221,230,40,135,101,210,219,168,19,128,224,52,105,163,228,159,199,69,120,188,16,244,254,248,5,142,124,93,253,53,121,31,244,12,140,213,24,172,192,63,127,122,
 29,76,120,95,195,17,61,39,17,247,254,50,49,235,25,168,27,87,53,27,246,81,44,63,53,241,210,120,230,190,207,114,251,234,5,68,27,128,88,118,207,139,124,191,136,135,208,181,175,51,112,80,217,46,110,169,221,70,42,142,2,9,10,110,158,178,25,190,239,77,143,12,52,137,76,7,58,49,253,21,137,137,41,136,183,152,143,119,99,208,229,231,232,233,1,82,55,75,95,227,225,71,159,87,152,179,68,64,113,226,215,107,42,13,65,76,101,187,114,246,57,247,220,127,209,238,141,227,122,101,180,159,175,44,186,243,106,50,238,46,45,80,207,220,63,243,123,3,218,81,227,148,118,226,98,69,227,52,235,59,121,79,63,62,251,64,162,126,240,176,134,141,25,240,230,55,109,158,82,217,50,10,58,233,191,59,187,145,245,75,194,147,197,223,230,108,174,179,185,71,26,194,145,220,110,68,175,224,131,14,80,14,227,206,24,136,149,53,35,60,160,41,173,151,62,112,228,134,238,13,30,255,4,82,118,8,87,89,74,201,29,88,219,109,203,184,54,48,68,149,191,219,213,101,229,46,167,71,68,216,240,52,103,173,74,209,207,44,136,97,238,8,190,196,247,35,107,12,
 155,98,141,190,16,175,199,210,197,182,246,25,221,58,249,63,109,49,242,71,97,218,56,26,13,128,42,234,174,136,108,154,185,150,15,218,89,115,50,97,66,250,42,123,52,161,100,9,53,31,175,34,119,28,151,228,138,253,141,62,183,226,224,183,198,16,147,71,118,132,69,84,245,204,8,134,109,212,205,218,38,202,76,227,251,129,67,162,69,199,218,54,186,27,217,74,237,156,173,29,64,123,255,144,153,238,161,185,17,203,182,206,129,230,65,112,57,120,32,154,237,228,193,95,86,16,14,72,32,182,179,133,209,212,236,67,157,167,73,75,38,51,55,197,4,181,78,49,18,86,56,79,68,10,156,174,50,171,32,59,117,138,183,217,59,197,229,101,233,73,124,146,173,149,125,37,218,199,152,44,221,197,1,39,31,221,50,220,216,175,120,29,30,27,168,124,94,201,67,232,139,213,225,180,168,0,205,70,88,116,55,235,226,120,151,190,158,27,159,136,100,162,217,238,122,118,5,222,215,151,156,102,192,106,124,81,187,62,245,66,95,5,167,121,143,104,134,216,204,219,103,230,70,241,180,239,66,162,98,204,241,71,27,174,114,100,175,133,114,190,89,114,76,94
 ,117,99,192,232,89,202,230,191,35,166,71,186,198,99,65,104,16,163,223,24,133,187,7,58,87,110,9,200,225,188,162,20,240,157,6,13,21,238,198,160,1,228,123,45,187,213,219,43,13,132,158,159,52,169,20,231,157,166,164,214,127,20,221,183,42,201,155,76,29,103,57,239,20,140,174,128,32,86,37,158,9,39,117,29,254,53,98,1,107,191,21,54,152,123,223,223,44,78,200,135,40,65,186,184,211,40,195,182,88,19,6,38,3,216,212,27,254,59,18,137,169,222,209,23,135,43,126,56,86,102,254,215,133,34,112,10,247,172,168,129,14,152,97,151,100,52,135,15,13,221,141,20,17,158,72,198,5,191,219,78,163,201,201,43,142,55,13,120,142,247,224,245,10,120,78,170,7,0,242,169,41,20,246,133,222,137,222,21,80,128,14,223,46,46,56,209,88,108,98,41,31,26,80,140,3,51,209,101,207,100,219,192,25,137,156,86,32,108,79,121,240,91,156,20,45,174,199,236,159,37,63,252,231,36,82,44,54,27,193,236,48,130,86,79,79,231,52,217,33,122,38,52,108,105,63,239,38,222,176,93,153,67,254,63,63,53,116,79,1,120,25,183,84,109,132,73,38,33,85,247,37,159,37
 ,99,154,225,38,52,144,37,137,57,0,156,197,149,102,73,60,6,177,241,30,14,122,254,89,249,241,145,123,90,163,111,233,232,2,100,171,250,12,119,27,70,251,184,95,55,154,143,209,215,223,209,80,174,161,151,170,133,190,8,212,3,184,192,228,107,197,156,94,163,7,112,183,54,17,141,54,129,171,12,180,11,149,39,168,25,185,100,110,102,50,142,91,53,56,235,140,61,6,107,210,3,116,169,11,231,56,73,2,120,126,32,10,57,126,213,42,230,75,209,254,129,83,105,158,120,191,48,254,118,95,158,77,240,100,226,195,77,152,113,62,232,50,22,57,11,138,47,226,177,44,135,120,54,168,137,90,186,86,194,216,108,77,53,62,236,254,124,104,62,134,147,32,94,236,101,249,212,51,143,10,27,251,96,105,180,38,150,220,157,1,157,93,96,147,120,71,170,70,215,75,32,143,57,196,200,22,184,246,194,174,71,17,90,233,81,17,212,98,182,111,18,161,150,51,158,95,185,13,164,228,234,183,180,217,248,126,245,104,25,110,214,92,13,220,105,37,60,242,251,163,85,33,4,104,206,151,200,228,106,214,220,191,141,172,169,178,253,61,211,191,120,45,187,110,16,19
 9,79,19,66,71,110,168,104,237,189,237,41,8,146,26,207,101,9,244,8,192,181,47,17,251,134,117,223,113,120,3,231,173,153,105,198,41,185,23,158,204,253,198,8,8,109,178,126,189,203,81,96,197,99,251,44,206,150,109,243,33,240,6,207,209,214,7,20,58,142,153,177,229,171,47,193,111,227,199,245,249,75,102,40,234,110,238,206,119,9,182,177,224,10,95,0,245,202,138,23,42,115,27,171,41,180,214,166,81,104,242,216,83,223,78,224,54,121,66,25,238,132,209,141,172,136,166,22,139,17,231,98,16,36,32,222,179,45,206,69,127,245,158,233,27,38,37,249,129,85,100,136,62,110,246,96,70,116,145,109,104,227,60,234,39,126,136,145,69,109,213,102,177,234,179,194,208,186,241,8,58,48,156,43,98,232,56,163,156,171,138,225,45,212,171,116,153,233,20,173,16,74,96,89,124,237,28,50,24,208,240,4,194,248,239,24,93,252,83,235,179,201,43,50,117,20,196,176,159,165,93,69,170,254,74,100,46,50,171,100,94,220,81,193,176,94,185,165,120,153,226,238,189,122,11,235,37,39,240,42,146,74,201,221,181,80,208,97,104,216,68,210,54,49,15,207,
 68,29,100,133,138,113,96,86,140,71,176,159,38,172,154,82,94,234,141,26,20,124,221,71,111,245,214,154,82,216,23,148,212,77,225,152,21,122,23,141,40,142,80,65,102,5,215,72,67,145,201,70,34,45,53,72,110,48,255,97,49,227,30,179,25,215,105,28,160,97,157,106,161,170,61,16,10,189,95,218,126,250,60,224,117,191,37,154,12,177,163,174,93,147,227,49,31,144,227,191,137,231,231,211,246,134,146,182,201,137,177,110,183,104,66,150,127,196,62,78,86,160,77,42,166,86,173,199,31,200,144,219,52,32,199,187,219,120,172,19,129,115,190,4,115,206,80,169,175,214,234,32,35,149,185,63,182,6,193,32,240,39,26,75,180,243,171,141,141,141,105,64,37,173,147,3,219,78,69,113,192,64,33,233,71,214,201,25,44,225,55,229,96,213,37,237,34,249,132,147,156,58,23,5,246,217,210,6,31,180,123,6,56,158,106,72,137,111,50,19,254,56,26,211,16,237,63,175,112,189,8,1,178,28,155,136,13,133,66,26,196,182,20,109,107,1,65,69,147,220,104,125,149,227,192,152,167,135,174,222,76,20,111,9,153,219,72,229,205,128,5,97,250,41,127,189,2,124,1
 21,147,184,234,64,163,7,205,110,207,33,86,59,224,203,52,221,173,17,125,123,71,220,71,50,254,110,157,77,229,169,51,206,169,252,247,111,254,229,29,48,77,28,253,207,7,102,5,31,134,231,61,149,188,192,57,2,213,160,229,50,149,145,129,174,22,218,222,241,167,240,16,207,168,43,62,171,34,160,86,122,128,48,155,32,181,252,156,156,231,26,217,220,190,99,8,139,57,70,164,147,36,21,241,104,49,17,237,90,9,162,72,233,214,211,110,248,79,28,250,225,82,187,154,37,229,217,165,82,245,162,86,222,51,216,104,119,73,118,46,83,71,180,150,235,204,44,92,128,127,141,193,131,36,55,133,22,136,25,187,201,219,121,98,111,62,80,198,108,41,224,62,201,14,11,38,146,237,162,181,240,34,31,176,242,233,10,12,7,204,232,42,122,126,1,250,41,106,154,147,115,188,195,251,70,75,62,116,85,232,100,217,76,73,68,105,137,2,53,9,184,23,125,193,68,71,92,142,107,35,72,1,227,38,76,93,88,42,108,152,79,222,204,112,255,112,209,50,113,159,104,45,148,84,249,212,196,65,4,39,149,210,30,252,77,179,108,142,115,181,41,201,192,247,109,116,124,21
 5,90,249,26,128,200,154,248,133,208,27,181,161,69,98,76,213,243,139,43,131,18,182,206,15,32,124,241,128,195,251,80,194,115,31,123,102,132,99,245,104,121,97,208,224,23,2,193,128,19,253,37,97,167,146,145,77,33,143,219,236,221,139,28,122,178,129,106,175,150,105,161,12,36,3,190,70,149,118,91,89,107,90,13,121,107,197,219,66,131,122,77,37,73,193,216,118,83,211,144,115,102,189,30,229,33,41,102,60,221,52,148,29,103,243,166,120,60,15,152,65,213,149,17,137,220,178,12,44,68,157,154,251,164,102,192,109,102,230,20,200,213,220,175,16,21,240,26,189,189,99,11,204,148,206,73,88,145,26,6,196,11,30,218,180,56,125,157,243,212,107,246,133,2,229,11,12,123,199,25,85,104,105,220,91,46,171,234,34,47,42,208,116,173,55,10,45,220,81,134,90,21,226,196,241,141,42,133,163,192,48,252,148,80,133,205,133,166,154,42,117,11,162,89,220,75,74,49,48,97,63,62,168,183,111,65,8,238,162,100,99,183,188,71,34,242,78,226,1,192,49,149,14,114,177,45,104,79,2,149,47,45,185,244,54,88,249,128,253,11,137,22,78,109,148,166,160
 ,174,195,114,121,124,162,26,112,40,15,139,171,39,96,100,244,162,47,11,248,80,0,46,107,207,227,82,135,153,63,103,80,100,207,143,182,165,36,141,181,86,170,32,8,21,41,99,197,84,51,45,88,50,73,78,244,180,28,78,203,49,33,228,99,95,33,254,155,205,42,7,141,232,40,128,194,52,41,134,5,22,27,153,107,27,126,167,223,238,165,23,236,114,84,157,30,216,107,140,248,153,132,162,135,105,3,32,81,162,20,154,242,71,215,183,70,25,113,59,141,201,8,100,230,91,109,61,114,190,13,57,34,60,59,143,235,211,1,107,199,28,115,66,181,214,154,101,39,72,210,190,196,28,219,2,111,59,236,102,179,43,23,151,177,39,111,43,87,113,25,123,206,64,86,210,209,255,237,206,193,115,57,153,84,1,98,110,39,107,99,153,174,204,138,188,191,209,119,51,13,168,106,23,215,29,21,144,47,82,99,219,84,83,31,86,131,162,87,110,233,59,192,214,109,79,249,39,202,138,55,12,77,88,225,65,28,242,39,25,68,196,234,43,201,139,84,207,179,239,106,36,8,76,230,114,219,255,126,208,147,230,12,10,106,239,182,169,238,99,63,22,43,185,241,25,34,156,22,97,112,18
 3,168,213,86,250,54,233,159,226,170,144,75,159,17,80,59,25,250,242,232,114,55,237,3,11,115,163,82,32,213,72,65,172,9,103,125,146,145,146,164,57,7,252,171,24,8,238,246,117,91,106,139,172,109,93,161,45,7,18,201,188,162,89,121,168,71,175,213,20,139,52,159,206,30,181,102,39,84,27,192,23,20,115,207,45,182,21,206,19,67,100,39,57,92,172,139,231,161,60,182,150,73,103,180,56,227,168,138,159,177,24,13,0,80,186,80,252,150,243,90,207,30,52,250,73,123,185,162,122,37,176,217,165,87,54,236,73,57,173,154,145,69,46,140,218,210,76,251,145,189,223,24,83,114,44,174,208,193,50,101,172,64,2,28,161,102,179,46,45,197,96,25,32,89,206,204,202,64,99,70,169,243,107,182,169,93,56,39,248,160,191,160,201,53,253,33,193,139,237,187,134,218,153,219,225,32,228,170,154,41,153,95,195,241,102,50,30,85,116,167,129,251,235,58,92,140,228,218,44,234,93,135,238,176,190,164,230,77,2,160,230,251,95,56,33,153,235,179,155,57,155,2,182,101,232,144,16,253,199,233,118,27,164,106,198,133,204,201,102,5,21,3,26,237,161,176,186
 ,252,71,7,233,7,238,148,192,196,132,41,162,251,36,234,223,143,40,35,241,24,161,198,20,234,127,61,39,175,98,22,150,218,7,247,203,94,253,45,113,105,7,162,92,131,86,203,214,103,191,248,74,228,96,143,11,254,65,127,173,37,141,10,73,64,197,4,210,181,140,42,51,20,176,170,238,247,156,196,140,153,152,86,48,96,147,96,209,65,233,241,177,110,117,201,131,92,245,111,90,158,64,115,9,254,204,181,185,220,86,76,77,95,233,173,155,78,145,38,203,218,136,54,175,183,229,121,84,211,72,235,25,49,0,121,124,32,17,4,103,43,71,203,145,218,27,196,244,31,229,35,62,233,86,164,134,229,147,197,93,95,9,139,42,126,206,78,54,184,224,147,221,197,42,69,48,81,150,101,61,127,144,166,243,83,88,167,176,174,209,113,114,139,218,81,212,102,199,13,128,70,135,110,124,75,25,215,8,225,107,15,36,158,136,161,202,55,60,113,23,157,171,182,245,142,242,171,37,211,44,6,183,23,94,121,133,69,171,61,120,82,169,141,61,130,194,167,249,21,197,10,97,0,96,124,125,104,218,159,25,45,131,111,203,17,59,110,168,79,55,16,250,172,197,235,166,19,
 190,220,47,80,91,229,38,170,0,38,192,151,63,108,211,193,16,37,52,215,172,152,68,23,211,138,202,168,1,65,74,170,70,141,91,196,93,210,111,222,40,88,126,159,239,154,115,176,235,71,220,109,204,219,9,131,252,188,12,82,252,39,123,100,80,101,125,173,113,94,219,170,185,232,146,101,201,22,16,240,100,237,129,105,87,82,62,183,236,176,84,105,90,96,148,154,15,178,27,69,245,148,166,204,140,14,53,163,76,232,43,42,177,23,74,54,177,103,162,61,194,9,203,213,74,94,46,79,85,218,230,89,179,33,212,126,171,46,76,47,205,172,247,220,38,241,160,49,195,220,94,146,159,34,80,141,144,179,24,78,234,191,120,48,47,104,143,118,15,34,115,143,38,245,119,130,65,233,246,242,222,175,1,42,5,206,161,70,139,210,252,134,163,142,243,46,74,24,240,216,12,47,68,245,105,241,17,57,14,54,96,212,178,52,77,42,205,164,240,46,146,10,189,200,245,224,174,139,187,26,25,129,34,52,188,205,48,37,240,115,77,203,14,11,34,134,204,45,48,254,107,85,94,114,66,242,48,146,186,33,77,234,81,90,163,132,44,4,239,191,80,80,241,150,97,140,231,21,2
 23,11,106,160,82,95,168,63,174,38,206,181,175,248,69,231,132,129,30,32,56,210,138,56,184,117,170,204,154,4,113,85,69,170,206,73,229,120,169,68,123,101,214,115,105,66,85,253,21,240,92,120,210,41,14,186,238,89,169,174,91,185,74,65,69,118,189,35,67,38,230,74,202,41,250,125,12,188,146,124,103,2,229,39,104,10,235,76,89,118,244,61,55,34,104,120,126,21,224,144,135,83,96,84,236,249,226,214,110,225,200,78,89,54,6,105,226,196,57,253,131,62,60,85,213,236,166,68,43,122,36,158,178,171,73,94,180,242,205,66,180,233,64,53,121,232,110,218,55,62,229,226,181,19,171,184,249,165,13,42,224,211,45,213,173,52,205,209,42,54,241,157,196,178,124,103,117,229,85,95,137,94,140,218,120,166,43,165,197,27,215,65,55,133,80,102,31,15,99,91,32,116,254,145,196,83,210,4,142,159,68,238,99,222,198,55,53,177,240,165,163,37,28,63,178,100,165,67,204,75,158,221,106,239,157,138,235,202,34,101,174,215,238,53,203,165,220,160,141,64,36,138,40,132,163,169,125,228,41,20,127,116,124,87,62,113,160,253,43,0,25,129,179,217,150,
 218,103,102,196,181,81,9,91,224,103,109,76,66,248,56,172,89,60,151,34,104,126,229,234,255,116,71,27,57,164,250,30,122,71,204,226,152,242,48,232,150,49,79,17,153,189,131,79,196,102,64,248,218,76,210,123,127,165,47,111,192,206,85,200,158,147,199,25,238,70,5,159,169,166,64,208,12,193,57,230,15,3,242,20,134,72,173,10,23,106,73,66,184,40,106,248,84,98,8,121,231,209,139,43,215,68,118,19,45,108,43,48,114,238,31,184,102,132,69,145,13,172,188,172,96,90,66,157,84,251,242,127,80,110,188,160,145,148,131,90,81,172,17,68,120,120,77,226,160,157,247,1,19,10,21,48,137,105,148,105,118,65,5,92,122,11,88,56,139,244,31,131,4,76,31,109,65,202,221,108,79,167,138,30,211,45,239,218,46,153,118,152,29,216,214,143,83,113,137,24,47,181,98,179,218,221,128,45,82,224,18,139,141,205,135,200,153,64,51,209,232,126,175,170,244,95,122,65,221,234,162,58,5,49,9,80,81,243,13,186,235,164,136,233,99,205,138,153,151,90,178,2,147,44,235,167,101,226,118,109,22,215,46,166,66,136,55,92,128,185,79,196,112,229,45,97,250,64
 ,6,15,63,238,154,128,222,166,23,162,32,175,11,31,176,185,153,214,60,242,233,142,18,48,235,114,127,21,14,235,74,235,118,134,243,178,7,164,143,34,144,79,9,195,111,214,233,199,122,221,43,123,55,69,99,88,228,71,40,250,51,167,75,50,14,66,146,178,227,218,215,253,212,156,0,164,112,44,77,72,158,226,60,164,206,255,46,184,70,171,80,127,169,208,211,38,237,207,43,195,21,20,3,30,126,112,192,241,95,196,228,102,92,164,34,144,126,181,95,181,40,79,144,120,16,123,122,112,231,114,103,30,140,144,119,18,35,85,214,170,58,66,115,239,159,136,68,38,118,47,153,46,222,23,6,71,84,211,99,211,12,51,101,31,161,245,187,63,91,113,76,136,221,164,175,242,66,138,96,129,230,107,54,10,34,157,56,216,127,167,238,20,26,223,212,237,143,60,246,82,200,103,158,198,126,19,14,224,222,30,206,154,123,193,180,240,177,147,4,51,108,154,14,202,237,14,244,75,167,223,120,123,184,114,5,230,103,126,112,48,118,52,179,132,184,97,214,109,209,81,89,250,226,208,203,135,108,107,180,172,100,61,96,224,10,198,130,235,53,61,15,111,205,9,47,
 213,71,238,140,159,89,7,109,250,150,2,58,217,32,196,14,202,6,234,67,108,177,12,176,2,44,111,79,190,247,160,194,247,30,17,190,228,187,244,138,121,149,26,90,226,46,30,134,63,240,120,202,75,243,167,137,78,255,145,75,223,28,219,200,57,77,213,125,8,183,203,136,43,108,185,37,119,171,126,196,178,123,50,101,110,3,17,246,161,108,3,247,198,39,205,133,39,145,36,160,223,83,201,143,174,17,32,230,95,186,47,52,150,11,129,97,245,194,135,134,93,178,17,151,84,114,244,161,80,25,237,255,13,1,162,225,53,252,2,157,145,114,122,123,136,26,109,222,59,228,182,155,224,252,29,211,170,35,142,222,33,251,6,226,169,53,205,55,200,155,56,63,35,218,175,114,37,237,253,72,139,109,21,17,137,155,172,25,69,82,128,61,134,148,154,227,188,21,161,90,63,252,244,0,176,25,53,52,90,55,182,167,14,245,253,65,234,73,85,76,228,50,23,46,202,118,2,226,20,14,185,119,21,250,3,173,147,32,199,189,243,9,191,202,84,148,177,204,168,27,16,122,110,185,207,232,34,122,63,167,169,103,223,137,73,206,244,152,241,21,197,13,52,208,165,148,242,
 16,247,51,99,135,58,38,136,219,120,34,229,232,197,68,10,2,149,176,227,189,29,252,4,39,252,115,100,56,75,39,81,194,150,136,1,70,92,147,234,227,110,110,217,145,95,211,248,199,241,27,123,142,209,97,239,243,48,106,219,207,194,210,186,71,162,229,178,249,51,167,29,190,154,33,248,15,1,1,250,8,195,115,58,76,24,1,199,126,60,144,85,223,230,154,203,39,203,136,110,181,243,65,30,131,148,222,240,87,98,163,41,237,226,68,217,251,201,117,60,181,56,7,220,86,246,172,39,13,162,76,184,211,145,109,123,205,24,160,124,168,105,149,96,40,13,206,213,30,8,207,133,241,97,58,104,254,7,75,155,241,217,31,26,181,63,155,167,46,243,61,179,42,14,76,168,145,95,110,108,144,130,45,141,20,175,136,192,75,126,18,5,160,28,163,120,23,162,169,109,42,160,190,102,163,199,27,144,15,24,194,90,141,183,39,224,167,93,0,149,180,167,151,42,39,33,60,255,112,158,97,141,26,70,17,175,10,204,85,199,203,40,243,54,108,170,158,62,19,148,102,155,196,199,126,246,112,61,104,178,134,143,99,123,61,110,235,183,144,241,204,212,191,57,31,194,1
 47,102,205,216,93,23,227,115,16,248,25,193,193,37,237,38,68,61,253,57,212,79,209,123,212,132,2,44,204,166,117,85,41,179,109,21,200,239,218,14,3,131,193,92,178,221,74,131,152,249,73,122,232,20,27,11,38,14,173,35,54,193,220,102,64,179,192,232,181,135,242,80,123,161,51,33,119,122,34,69,207,23,102,172,66,127,70,88,117,172,140,178,188,110,132,220,86,128,252,19,151,101,223,55,238,31,0,33,9,248,76,60,16,68,58,33,150,131,153,220,39,196,13,73,163,102,108,177,125,46,174,178,217,212,148,105,201,118,145,151,92,63,188,214,16,38,134,103,107,86,100,104,49,31,120,120,227,184,217,162,34,75,166,129,55,149,49,34,65,215,234,30,185,147,247,104,220,84,103,171,190,12,108,172,253,86,92,81,142,82,163,181,177,101,7,55,183,45,72,156,41,224,207,214,33,250,86,14,166,237,146,210,169,104,223,245,249,176,33,117,122,45,8,123,157,45,18,25,60,199,222,132,13,230,56,37,194,73,227,140,157,37,189,165,225,184,27,192,151,144,168,127,115,208,51,91,215,22,73,55,65,137,42,215,176,96,121,219,101,214,128,223,27,150,66,1
 06,138,224,71,188,158,1,247,102,229,11,219,149,6,63,191,100,134,14,151,208,158,64,24,189,202,219,37,229,147,30,18,137,126,238,191,207,21,5,179,253,157,197,138,3,2,64,210,123,73,140,61,193,142,225,163,106,149,112,186,195,242,116,34,254,36,64,68,251,128,181,115,1,245,114,215,137,222,215,220,89,174,182,167,115,198,90,181,75,113,4,220,104,195,232,178,156,154,172,26,36,139,73,13,226,222,195,70,7,7,209,188,21,247,161,48,141,105,136,121,210,208,27,212,125,48,231,90,64,151,86,197,64,211,44,101,133,15,20,84,245,11,111,64,193,228,199,183,195,77,250,0,229,68,247,129,13,44,154,91,138,243,98,245,99,81,188,169,62,154,147,200,100,19,189,187,223,36,180,113,214,47,13,30,201,226,45,25,66,158,232,185,106,67,27,76,151,219,180,153,228,30,158,241,251,150,1,75,53,94,186,97,157,235,184,238,223,63,147,151,38,99,158,2,95,35,210,13,22,32,234,167,164,181,168,20,218,194,36,40,25,204,10,5,154,202,168,242,225,86,103,120,72,245,23,253,158,37,83,201,176,27,218,90,17,138,231,26,34,237,97,29,219,199,169,236,2
 32,37,5,199,21,205,23,146,104,21,252,203,50,46,181,92,62,54,151,125,150,19,211,130,68,68,97,87,217,173,150,4,160,151,142,187,37,143,184,75,22,216,110,235,12,235,252,212,32,104,243,133,128,183,142,236,172,71,194,45,20,59,146,87,29,182,239,242,144,75,221,147,89,246,203,149,206,134,148,232,105,10,212,147,196,84,61,166,16,3,139,59,253,149,184,255,94,178,193,109,8,20,203,101,101,103,91,4,216,221,109,81,135,55,198,124,48,249,123,15,153,84,245,163,244,96,181,242,228,62,25,31,241,107,174,252,176,87,101,253,255,4,153,81,72,145,205,1,51,191,243,131,197,132,77,163,42,8,23,14,94,186,169,114,254,254,179,238,199,146,88,99,116,150,5,88,175,30,100,25,60,177,252,124,96,173,24,155,109,188,196,1,128,69,91,210,223,169,145,236,124,189,205,71,227,60,89,189,250,127,204,204,231,162,187,229,115,95,5,84,72,26,170,146,164,166,122,121,126,173,65,79,119,147,172,99,78,253,150,241,36,75,58,45,127,86,229,36,192,130,142,241,139,214,62,64,87,143,219,114,222,155,28,21,188,90,125,103,236,57,225,240,86,4,23,111
 ,103,20,131,37,160,235,165,219,143,103,73,108,54,210,92,161,245,143,75,14,173,254,11,77,27,92,182,7,180,74,79,156,9,219,219,154,23,108,48,222,228,179,157,0,62,58,68,72,120,19,138,145,29,252,193,171,164,48,46,188,131,102,147,21,94,244,49,244,54,10,75,162,244,111,161,236,45,154,194,44,41,66,102,65,38,183,215,4,252,5,236,202,215,120,70,16,203,7,161,239,202,110,87,115,106,11,104,5,154,181,175,56,171,153,150,61,156,13,21,7,40,148,46,30,37,191,130,20,24,19,198,126,161,112,121,170,193,29,218,86,149,134,236,58,171,140,213,195,170,128,206,221,95,62,134,29,126,11,150,215,171,36,174,238,247,195,31,112,14,228,133,85,184,198,110,115,47,122,229,230,56,5,73,97,119,121,164,144,73,137,164,168,68,202,201,159,169,139,180,165,178,96,72,107,31,183,113,163,152,38,145,37,232,180,109,0,3,207,210,228,165,32,47,127,62,54,147,47,109,220,201,245,166,99,192,34,58,235,90,74,117,154,58,211,75,153,169,245,247,200,97,40,11,184,131,60,183,50,58,18,246,48,245,214,4,94,83,115,214,177,185,190,118,174,94,109,198
 ,26,38,44,138,230,132,222,193,104,23,169,75,184,184,115,49,90,130,127,78,119,243,184,125,96,236,136,141,232,219,74,75,50,77,194,2,123,190,12,139,237,101,250,168,171,211,197,56,192,75,90,137,240,74,43,183,188,112,225,206,109,215,169,94,93,221,153,63,65,128,94,199,248,134,70,124,154,26,106,197,150,161,22,171,153,222,160,81,23,194,233,66,123,177,190,202,48,213,92,146,167,209,59,202,5,99,169,58,105,65,225,255,215,247,145,160,96,250,202,151,145,183,108,33,7,101,219,210,174,205,100,193,90,241,152,170,27,185,9,129,38,182,61,222,120,215,126,38,36,43,126,224,149,28,146,194,37,79,29,22,33,58,220,154,21,33,199,26,209,10,88,251,45,50,72,251,117,92,206,114,164,102,60,170,205,238,212,159,50,127,167,224,205,49,44,79,224,109,173,138,45,136,255,38,59,72,124,135,36,84,122,177,246,145,138,37,18,17,80,1,101,255,136,153,23,186,85,67,36,124,33,217,211,200,178,247,0,121,180,131,68,49,51,92,240,160,52,205,175,42,175,93,185,77,132,234,124,251,112,74,94,106,128,212,41,215,198,34,122,184,84,71,39,97,4
 1,142,92,173,156,107,194,7,22,124,192,102,38,59,114,150,184,9,125,224,120,28,211,9,231,199,100,73,7,104,14,63,218,118,190,224,132,13,208,99,57,180,210,158,239,194,207,45,97,59,20,222,84,55,78,12,135,43,181,105,136,216,166,112,216,196,109,133,160,76,179,124,76,122,33,148,100,233,37,23,192,92,28,188,2,134,37,49,117,120,42,67,254,101,248,2,112,178,235,31,90,46,186,24,160,53,43,221,212,85,133,189,176,122,107,149,60,127,150,106,32,47,90,121,120,15,97,200,175,187,26,28,192,178,110,239,111,233,115,119,106,235,149,159,158,73,132,162,253,32,13,40,109,206,24,175,23,86,144,148,214,113,108,196,18,73,92,0,171,41,163,135,62,78,177,95,209,116,156,44,179,199,133,62,68,223,71,139,86,127,21,4,155,150,76,88,168,47,34,87,212,225,37,121,23,78,162,162,61,57,41,171,86,171,230,253,176,60,229,250,172,194,180,248,196,254,50,93,255,140,253,223,132,212,111,62,118,148,233,109,133,120,160,179,232,31,46,70,251,18,54,9,166,1,191,118,119,149,45,43,3,130,181,238,85,157,180,79,160,141,125,215,155,241,181,155,
 42,76,148,79,140,25,231,109,9,167,143,192,83,19,174,251,129,187,40,250,78,161,29,92,12,234,124,21,54,28,29,60,207,10,158,47,68,116,103,174,27,10,107,190,73,233,133,52,216,33,68,89,53,189,236,122,20,192,167,152,166,67,119,120,59,28,64,90,20,171,213,188,71,7,27,227,28,10,114,149,172,179,245,231,126,213,27,70,228,175,69,236,88,170,4,55,13,185,179,222,44,41,30,30,102,169,34,133,111,114,38,110,141,218,62,34,55,64,173,229,65,162,46,125,214,73,40,132,197,80,194,49,253,163,213,118,6,179,38,9,147,153,225,234,155,81,21,141,190,232,40,35,238,165,205,146,116,120,184,75,3,194,207,66,65,211,212,228,189,53,4,137,242,120,92,127,150,199,54,207,225,57,172,211,201,94,115,155,97,59,143,229,173,253,136,85,188,182,52,196,200,136,73,55,170,139,128,251,31,160,98,199,96,121,139,250,5,74,230,47,177,32,108,247,229,58,152,152,178,6,101,238,127,234,144,38,47,230,66,30,220,167,87,1,137,10,243,233,43,151,189,17,222,13,216,36,187,19,192,217,255,197,92,62,81,175,118,234,13,180,234,92,80,145,180,225,245,98,2
 7,81,66,158,85,129,81,119,52,68,179,1,186,99,132,227,131,133,129,28,54,246,202,3,167,42,223,229,187,173,119,123,88,168,86,165,165,34,166,254,93,112,195,166,50,101,225,35,193,127,30,42,202,137,70,111,161,167,181,106,208,88,13,208,123,60,140,74,66,241,168,167,255,121,38,133,17,46,189,12,202,238,182,75,92,152,234,185,216,99,11,112,132,28,72,190,21,207,63,85,173,183,187,42,162,139,133,44,167,240,252,231,149,47,88,10,38,163,96,209,165,123,62,229,89,195,131,120,173,88,107,158,18,75,187,132,159,91,210,54,20,16,159,183,224,148,149,30,247,31,235,49,186,16,25,219,162,234,242,9,43,41,41,99,19,139,214,48,86,166,14,131,78,173,70,89,224,27,240,91,18,62,191,147,196,74,98,148,62,65,66,68,204,21,69,227,178,153,222,38,108,35,116,163,12,10,129,62,94,94,128,235,193,152,89,107,58,147,123,237,71,213,166,241,219,199,18,212,35,121,137,241,204,191,191,152,31,111,148,69,142,136,74,200,247,222,223,213,196,70,108,102,134,242,58,20,156,159,104,48,110,9,13,93,74,120,218,68,251,251,207,251,45,153,18,206,1
 39,16,11,22,238,45,220,88,79,216,89,192,69,30,52,155,81,220,237,222,141,67,0,169,233,190,60,207,231,12,250,173,234,3,136,80,113,220,249,8,225,168,251,47,129,53,36,186,55,81,34,31,243,135,9,17,91,230,114,243,175,204,5,170,116,80,206,169,170,248,215,71,162,154,69,224,43,119,174,19,62,108,147,253,59,161,67,21,176,49,9,129,248,221,105,157,121,146,86,186,59,57,154,218,220,19,185,205,60,22,161,18,224,80,58,151,154,175,239,249,16,210,72,137,97,175,161,217,58,129,234,131,27,4,183,104,47,209,179,212,224,244,63,187,232,27,172,76,211,179,9,75,230,147,118,226,142,203,105,190,204,75,247,252,155,20,83,175,219,168,37,157,218,69,239,123,200,176,44,107,218,48,5,199,40,171,192,21,101,141,167,71,146,171,249,38,115,197,72,25,182,107,100,186,53,106,96,237,206,61,203,131,171,90,36,73,25,233,80,255,184,55,103,134,247,250,98,119,78,178,214,201,183,148,140,200,21,250,140,99,228,170,20,180,89,53,47,136,209,11,42,206,174,76,175,1,209,199,160,223,243,106,13,19,240,153,101,182,133,51,206,230,82,7,128,21
 6,224,50,90,204,89,160,197,5,58,62,215,180,122,45,201,41,157,42,87,163,59,64,249,39,78,244,156,94,103,196,37,184,116,217,37,247,130,218,76,24,52,166,187,65,228,105,17,79,91,156,166,15,117,128,141,21,27,84,54,153,148,199,232,113,121,25,167,241,35,226,28,198,112,245,150,240,69,247,164,69,235,242,224,13,240,140,132,7,197,61,177,78,24,239,51,132,150,108,50,216,61,176,118,216,180,223,223,57,106,213,181,94,78,150,35,24,13,249,98,192,105,244,223,158,192,125,141,201,135,180,216,41,136,177,58,198,141,153,109,104,158,0,197,250,228,68,140,226,248,111,59,0,17,116,32,105,210,18,179,83,58,204,134,40,226,210,213,253,255,125,88,77,246,28,182,169,47,199,171,180,183,153,89,190,142,58,63,124,17,19,121,184,94,118,0,202,111,245,229,17,173,91,208,120,245,108,2,45,180,146,132,96,166,244,66,155,61,192,27,135,191,130,3,21,147,238,249,137,102,23,160,91,199,32,62,85,226,243,46,153,136,87,0,82,226,114,125,135,57,213,214,207,226,52,233,193,180,226,81,181,89,157,4,198,58,229,66,229,29,154,80,205,38,148,2
 26,151,9,112,222,186,127,226,200,114,93,152,110,43,111,91,188,128,5,4,2,20,112,186,1,31,40,75,136,157,74,174,112,101,164,242,103,34,83,157,98,141,207,174,3,47,216,6,88,226,52,67,206,88,241,184,43,152,87,26,145,98,86,245,133,252,98,36,202,117,255,49,234,84,13,240,92,102,1,172,115,199,50,246,49,203,97,98,255,34,55,229,175,206,251,19,66,78,70,182,52,151,153,178,255,46,39,166,94,139,185,115,66,192,57,149,123,221,161,96,198,202,84,21,99,209,184,166,192,140,220,175,210,112,40,17,228,121,209,80,38,89,94,143,133,37,54,38,7,227,118,19,142,196,123,169,102,252,213,123,62,57,4,251,171,146,160,48,56,62,224,173,19,209,65,144,123,23,175,141,248,227,179,250,124,122,59,68,26,64,48,121,175,128,64,58,20,170,169,197,52,39,209,227,55,106,53,188,11,193,233,0,239,9,169,11,45,159,144,2,244,24,206,93,236,8,158,15,70,184,224,210,241,229,135,176,247,6,129,23,240,63,72,200,168,59,45,208,106,113,49,160,226,87,51,134,138,48,15,193,17,248,201,4,60,113,135,132,193,232,141,140,133,19,77,56,6,18,60,205,226,1
 16,55,167,34,135,91,179,193,55,231,69,217,79,246,163,47,85,129,198,5,174,17,208,194,224,235,146,78,33,221,6,121,126,126,113,59,146,134,117,85,197,80,211,116,201,94,231,171,133,229,134,123,23,254,68,137,7,131,194,240,189,214,193,97,129,170,55,68,88,248,168,40,42,211,230,19,201,108,188,107,54,140,135,218,252,196,200,176,5,243,213,137,59,233,67,212,215,113,207,126,154,214,250,35,146,55,121,157,165,218,248,154,101,238,68,198,137,108,40,146,199,84,107,22,3,96,108,147,179,153,172,150,39,242,109,190,174,106,232,201,115,64,233,186,9,237,70,198,211,166,242,182,23,156,19,199,10,206,99,36,63,170,206,246,117,51,126,63,254,6,36,123,234,209,133,44,47,88,172,74,223,108,119,87,233,105,148,65,85,196,164,216,132,39,45,173,210,239,137,206,72,151,1,65,75,144,220,63,208,6,243,231,41,125,171,143,157,109,86,113,27,34,144,44,210,241,239,123,53,237,211,22,127,91,15,87,165,191,44,127,212,208,90,179,35,73,28,25,174,34,86,111,214,199,201,17,137,201,0,203,203,109,34,107,235,77,21,101,138,253,81,51,84,20
 1,169,62,137,176,132,64,57,112,241,43,25,60,136,122,157,228,176,168,103,98,63,134,132,117,254,191,32,234,35,44,114,212,237,25,158,212,58,246,11,147,157,123,67,254,24,187,116,191,255,148,65,61,127,176,158,49,20,37,186,103,186,236,118,83,154,133,216,12,146,244,243,226,15,175,143,163,186,128,52,182,250,223,87,182,211,81,254,140,34,145,65,134,126,79,192,44,215,13,94,174,254,184,124,210,55,226,219,248,106,108,207,136,132,177,4,180,197,79,34,219,141,161,170,237,85,33,114,105,244,176,129,113,202,196,241,4,252,113,183,62,251,64,87,174,72,55,230,36,35,134,150,84,179,59,102,230,211,249,88,95,65,9,39,126,105,127,0,119,70,187,96,174,254,152,203,173,20,87,133,53,118,249,40,120,237,71,133,49,242,165,251,93,123,214,167,106,120,244,154,34,125,207,241,229,130,218,157,141,82,28,53,80,203,175,34,138,241,3,215,64,2,76,253,24,232,228,22,222,175,33,228,52,254,5,188,124,60,207,14,61,188,150,106,58,130,52,212,73,133,189,130,11,76,122,72,118,226,254,190,254,207,240,163,41,151,168,90,169,79,50,130,11
 4,67,204,113,180,109,92,45,128,99,109,204,209,130,33,208,41,225,44,4,138,73,176,213,248,90,156,55,227,136,168,54,13,150,91,42,104,213,111,158,231,167,225,111,57,170,70,40,177,64,171,81,104,236,175,225,41,205,151,204,237,154,185,132,171,203,175,148,87,127,130,1,149,187,174,141,187,69,64,107,254,192,162,201,206,237,240,222,53,230,141,5,39,121,248,40,52,211,145,77,71,161,246,90,129,172,222,88,172,9,182,189,41,192,49,165,137,120,16,200,10,221,157,99,234,91,70,219,93,30,94,211,108,248,161,6,20,24,69,183,226,22,16,16,47,0,63,118,228,22,157,132,142,1,194,79,113,31,168,34,186,189,209,232,253,94,111,13,43,168,93,213,144,54,43,79,223,226,126,38,119,33,150,255,114,177,43,44,229,237,115,31,17,215,249,10,83,177,206,72,48,161,235,117,37,136,240,243,150,198,178,103,194,170,236,184,100,49,84,85,147,166,35,98,78,147,239,3,227,160,221,160,107,108,145,81,6,240,245,238,251,21,217,167,104,72,251,157,199,213,112,234,217,21,98,110,176,101,245,132,215,12,218,231,139,69,141,182,150,113,83,196,51,225
 ,37,110,196,127,152,8,190,96,147,52,136,44,221,106,27,25,218,153,157,164,80,211,199,74,125,32,243,220,124,57,231,197,187,7,203,192,188,31,79,188,198,70,98,111,255,150,245,41,138,66,56,38,215,223,250,243,216,145,75,23,138,103,161,241,147,175,100,102,0,121,141,18,131,216,143,86,246,185,86,24,172,152,118,117,75,138,110,71,106,24,0,110,101,252,111,66,195,242,82,104,198,25,251,70,13,5,210,187,57,132,178,102,230,118,125,9,14,96,206,190,139,254,47,80,91,32,10,160,230,146,85,101,99,246,234,80,41,50,97,181,90,112,144,136,164,2,45,169,99,113,43,0,68,83,179,74,45,21,196,198,32,211,161,248,121,218,91,103,200,177,8,60,154,97,23,199,232,48,180,209,214,226,11,125,158,94,182,80,110,74,226,68,144,171,168,189,181,34,106,17,208,82,99,75,187,48,4,2,191,79,221,95,240,73,112,77,107,249,179,104,245,199,99,245,108,8,105,155,148,190,196,190,33,241,30,26,148,175,71,241,142,242,217,187,206,44,89,155,228,119,244,215,93,95,183,57,208,228,64,212,93,91,37,69,136,189,250,190,234,160,121,15,62,147,186,207,1
 84,246,226,47,113,124,4,153,208,200,3,70,34,159,168,187,157,168,112,118,83,13,238,246,103,126,118,212,115,137,110,90,160,18,124,48,79,168,55,217,159,225,153,128,50,86,49,135,40,16,219,179,124,168,234,177,200,169,79,172,233,195,114,218,160,93,133,152,178,20,18,77,176,134,140,165,58,199,238,76,155,28,160,248,186,171,97,207,138,19,13,36,186,105,200,63,149,149,144,251,190,71,80,115,202,201,249,1,67,80,127,30,174,163,16,67,25,82,124,32,84,222,82,21,205,250,179,110,146,244,18,185,189,42,121,11,42,132,200,58,28,146,247,35,0,118,171,18,69,184,1,231,60,234,223,138,89,38,114,182,177,241,62,202,235,88,171,142,228,60,107,58,42,192,174,58,200,155,120,63,120,97,215,162,18,163,33,39,137,52,97,142,91,144,135,138,139,46,170,220,176,154,52,171,123,99,207,157,254,53,255,185,224,225,198,93,134,17,52,81,167,101,11,195,165,251,242,117,122,203,18,7,88,127,115,233,15,82,136,229,48,30,226,21,177,252,87,34,124,170,46,151,139,120,79,153,192,229,193,214,169,234,164,249,87,136,54,155,180,82,22,179,85,15
 ,201,193,104,84,226,39,101,253,1,246,43,190,139,54,90,73,216,29,182,200,89,180,142,34,159,48,131,68,89,168,149,79,254,49,212,3,251,203,163,99,62,90,165,114,75,83,182,176,174,76,95,144,239,187,124,16,168,64,167,124,183,161,45,190,77,241,7,53,244,128,40,252,141,209,79,66,67,245,28,213,93,85,118,43,103,103,108,247,152,188,62,146,217,90,0,11,77,47,34,23,60,50,149,147,243,173,228,141,10,73,244,176,80,141,173,7,88,82,217,199,114,65,44,255,95,62,44,169,141,218,172,162,178,250,253,247,99,85,74,109,26,80,30,215,74,13,35,138,139,70,224,56,141,186,82,152,184,87,18,100,184,44,55,224,139,20,255,127,3,136,198,217,174,177,104,119,156,13,238,221,79,65,64,182,81,27,112,82,214,210,77,94,126,109,36,191,211,63,32,236,46,226,86,14,171,97,108,145,142,106,147,85,76,55,70,186,197,235,160,121,87,242,16,65,156,33,228,228,239,142,24,140,226,129,16,11,203,38,179,36,219,213,92,175,182,47,119,3,46,239,123,220,123,63,229,129,61,79,172,72,208,135,87,171,228,167,93,34,77,249,58,248,242,164,22,136,115,25,106
 ,142,113,113,144,104,163,121,5,226,84,65,116,62,63,217,104,197,81,145,242,3,217,210,249,130,201,131,144,18,70,42,210,125,98,204,67,240,85,92,107,73,138,156,87,227,112,83,192,140,41,39,24,136,12,25,76,188,219,31,54,77,17,92,182,219,35,197,46,100,175,223,77,176,126,123,109,80,222,158,2,204,21,179,23,211,44,10,213,8,200,206,70,145,105,219,149,161,225,187,253,122,0,195,232,120,185,158,46,9,30,42,74,236,125,152,144,138,141,151,40,154,193,114,122,138,46,166,27,39,90,98,224,249,119,228,36,121,99,147,121,49,214,39,134,115,171,196,131,72,73,82,88,139,205,4,80,23,49,175,91,163,118,123,1,88,13,76,172,41,158,49,119,75,25,164,119,179,125,152,95,68,18,73,195,56,239,95,229,165,219,36,9,193,193,118,48,100,50,87,62,226,198,34,177,254,57,39,245,136,195,47,156,169,97,84,43,64,107,209,148,50,218,237,251,243,118,251,115,186,48,102,25,12,140,228,126,228,32,6,179,146,82,38,22,76,58,241,148,159,215,152,254,41,229,31,75,8,116,10,57,11,83,232,55,116,142,230,249,135,140,166,133,183,157,61,32,164,188,6
 ,230,181,102,255,223,22,47,117,215,80,136,26,7,138,84,204,27,57,117,31,187,69,210,82,160,175,212,233,90,116,151,134,95,1,80,69,250,51,56,231,248,106,106,139,67,54,145,94,177,240,204,70,131,236,174,156,12,194,174,193,71,182,116,52,239,95,120,40,99,46,240,211,252,49,246,207,46,98,193,213,208,47,6,100,161,90,148,115,154,105,161,31,37,33,44,156,25,29,169,120,165,74,232,116,126,159,229,96,233,84,99,139,129,141,172,167,25,167,171,196,107,170,220,83,5,173,10,182,23,113,54,192,237,81,149,63,57,168,83,123,154,225,116,172,214,38,3,227,190,242,201,167,170,36,144,119,251,207,9,100,173,210,181,105,24,218,159,188,154,176,71,223,89,171,80,116,66,240,108,187,235,135,67,230,5,51,13,56,161,90,0,13,2,172,33,13,54,204,250,236,211,247,10,10,182,177,21,192,58,242,5,11,139,58,194,225,101,4,223,144,154,73,37,142,55,189,1,223,90,18,112,27,9,233,224,238,71,206,241,150,141,75,159,229,9,9,177,152,49,63,202,204,211,243,14,62,218,78,126,188,57,121,226,22,249,94,191,182,26,75,143,106,155,122,154,85,16,214
 ,164,133,138,85,57,69,177,160,122,97,159,8,3,13,25,122,212,144,230,222,182,80,132,237,125,115,212,6,86,7,100,50,57,47,147,51,241,138,197,104,136,230,186,36,76,207,199,64,252,29,166,201,136,94,149,248,0,105,109,95,53,16,119,179,251,64,136,27,197,6,50,168,57,100,222,197,146,246,159,116,42,65,218,217,55,204,8,216,218,201,250,142,60,34,107,197,198,217,238,219,172,171,39,235,235,79,137,113,216,8,231,218,88,120,83,90,138,48,105,28,200,7,58,15,61,147,217,202,164,8,255,244,79,112,33,61,252,88,3,145,48,208,169,183,10,211,70,27,247,80,31,26,77,166,159,44,57,200,51,27,72,109,11,55,219,95,99,5,46,130,193,55,202,154,160,124,170,196,54,76,60,194,112,43,194,66,201,141,27,223,197,236,90,21,60,174,85,23,176,20,109,249,209,229,112,27,198,25,200,249,23,87,0,17,147,30,169,129,239,116,238,192,56,187,0,100,179,147,121,43,79,98,227,206,161,92,20,163,228,44,238,87,25,149,247,12,43,182,1,61,158,197,143,211,83,6,182,67,78,124,59,190,239,221,25,98,34,135,74,66,206,199,81,139,60,58,99,161,215,103,37,25
 2,24,149,21,99,217,177,218,1,61,137,250,213,151,59,46,234,22,18,84,26,241,76,127,80,163,189,46,167,241,177,28,94,195,195,71,95,145,23,158,85,99,12,142,35,221,232,198,56,240,107,25,217,6,92,88,229,179,125,163,56,93,126,222,154,124,139,113,55,13,21,43,141,162,54,121,189,145,135,86,165,81,253,150,233,67,71,79,29,53,38,255,210,93,198,185,150,131,42,28,110,248,143,238,188,37,74,87,197,238,56,14,116,50,233,19,17,50,23,99,98,61,15,125,92,125,241,78,93,113,22,105,236,35,79,188,46,33,196,188,56,178,241,66,116,104,112,11,113,109,118,194,158,71,77,83,6,19,61,228,47,156,82,220,81,197,91,182,129,22,245,199,175,236,117,221,147,171,97,251,73,58,105,37,192,144,172,202,247,7,37,251,83,50,5,35,38,134,200,62,238,180,19,160,230,221,230,231,141,44,104,254,19,30,13,5,223,175,100,172,23,206,94,185,33,169,183,249,47,26,88,179,250,216,172,186,96,114,248,125,97,169,165,204,45,25,111,71,50,243,211,135,25,115,52,82,17,152,60,8,234,182,223,214,121,144,68,241,177,109,178,59,134,79,242,252,128,224,10,71,1
 47,43,80,212,81,177,225,249,194,68,84,216,16,217,25,190,249,155,188,174,120,132,135,211,207,0,227,92,191,244,20,161,246,135,92,237,197,43,119,163,139,33,62,161,233,91,14,44,249,157,121,196,174,57,196,83,126,141,181,143,49,165,255,14,71,229,241,104,141,134,111,64,235,252,204,198,239,246,183,20,236,173,226,168,28,160,76,197,95,0,52,135,90,106,105,41,241,251,196,186,120,11,169,253,196,147,249,112,125,189,125,202,35,72,127,130,0,171,109,93,151,186,201,178,253,208,48,8,54,95,51,177,240,24,195,234,120,25,173,37,141,142,85,11,251,80,244,10,181,100,169,207,24,14,47,249,142,63,19,35,3,4,245,97,236,211,146,202,247,146,94,197,221,98,246,99,154,161,190,88,84,168,67,183,129,243,123,71,4,89,149,185,9,26,12,40,23,217,10,247,205,106,38,36,246,9,100,208,234,66,23,97,220,241,105,219,17,174,150,218,88,154,37,213,241,22,38,218,207,48,57,110,145,35,139,13,193,182,31,120,120,33,19,199,224,197,184,135,221,189,186,167,144,6,90,120,170,233,77,76,215,68,19,19,40,1,250,100,81,97,84,142,118,71,145,126,
 157,170,215,9,226,57,225,186,59,232,77,107,195,75,198,77,188,34,245,225,217,32,95,20,100,120,7,22,47,42,113,12,4,211,63,9,118,137,200,207,120,60,134,121,38,235,121,176,110,163,78,235,94,48,186,227,117,250,78,120,150,59,21,125,196,145,41,54,8,155,147,56,29,98,175,194,235,16,246,200,97,140,127,155,214,17,28,93,41,227,111,4,106,245,100,9,223,251,96,49,244,205,78,7,111,11,25,117,77,88,186,228,150,79,238,178,164,240,206,52,216,182,33,163,22,105,117,239,145,204,85,42,162,144,187,9,217,48,32,15,190,76,65,88,62,194,196,254,73,148,0,200,113,119,24,30,16,145,21,130,198,215,208,95,200,195,194,159,150,30,168,201,169,110,52,224,142,238,92,193,189,84,127,250,250,37,98,87,83,212,174,94,42,215,200,112,46,237,67,233,117,93,4,170,134,27,182,65,183,54,218,192,227,170,19,39,32,251,187,126,233,250,82,49,27,97,127,199,146,137,196,50,46,0,10,39,20,216,114,108,130,187,65,71,196,177,185,40,230,190,129,216,161,13,107,8,255,11,179,6,247,119,238,4,177,177,157,90,244,88,29,113,133,121,109,234,207,67,214
 ,92,11,153,251,183,105,226,20,60,254,138,48,252,234,198,49,32,132,71,120,123,235,63,133,101,46,230,206,112,227,16,62,63,77,57,87,247,210,249,96,126,51,152,17,255,18,28,98,78,225,99,191,202,34,229,102,37,149,52,200,23,91,227,3,30,170,69,132,65,200,74,94,194,122,20,53,229,41,5,40,84,120,11,160,242,88,253,184,16,45,98,167,45,232,61,71,244,49,190,88,164,232,13,69,188,36,223,14,243,61,28,173,151,198,168,161,250,115,187,129,79,139,188,143,133,118,177,48,70,61,110,202,147,96,111,199,82,123,116,173,188,41,18,2,120,232,83,170,10,218,59,155,254,166,192,253,103,40,2,153,22,204,2,36,126,117,94,136,134,205,238,20,123,221,230,70,136,175,68,194,183,151,6,247,39,11,222,98,161,150,11,248,1,122,245,173,67,230,49,112,173,240,93,73,21,128,229,29,119,235,234,17,85,123,197,80,146,57,99,42,242,28,227,150,91,58,245,38,54,214,30,117,30,247,54,47,156,1,12,69,197,255,108,2,104,32,188,179,247,140,99,110,62,241,98,38,239,127,57,231,141,76,225,116,210,171,78,66,56,98,66,63,236,138,209,55,241,13,217,79,21
 7,107,127,103,136,242,112,176,150,185,35,218,187,237,120,22,212,136,196,196,79,219,76,221,108,21,92,35,42,97,136,196,77,13,238,69,76,37,241,166,25,219,247,89,182,181,78,20,143,193,59,118,53,189,149,191,95,159,34,23,62,180,18,233,114,140,0,53,48,145,209,54,253,64,145,26,148,55,251,60,89,168,124,190,151,101,146,77,47,219,118,79,223,109,201,81,67,45,21,101,226,158,94,113,126,120,74,144,87,146,90,241,219,190,61,171,77,76,108,67,11,224,105,39,21,17,111,125,105,173,175,43,66,218,249,27,121,247,27,61,191,11,168,206,66,232,42,37,153,215,108,184,248,238,91,23,108,153,155,129,28,137,26,61,174,5,57,9,130,96,197,224,146,182,80,245,236,175,212,122,99,97,44,54,166,90,80,252,128,121,131,52,146,211,121,93,84,159,7,168,228,32,233,183,107,251,157,6,122,163,110,231,164,148,125,228,16,132,121,169,41,87,7,110,159,172,251,57,248,26,18,241,153,76,102,158,107,112,111,123,102,165,96,169,69,80,34,75,62,164,247,156,106,186,8,195,123,172,146,133,229,26,43,73,248,205,146,251,49,216,134,66,178,77,241,176
 ,139,96,210,100,41,176,79,16,45,1,106,28,143,38,68,61,150,137,41,254,123,69,9,161,12,167,0,195,17,124,108,211,85,15,116,35,28,232,202,78,212,246,240,58,86,175,196,136,207,150,24,23,165,176,39,6,193,159,75,140,118,173,52,42,170,69,114,133,89,132,197,153,148,171,61,73,61,25,172,232,100,220,197,89,91,22,20,145,248,55,57,10,96,37,201,143,203,181,156,104,222,186,51,54,225,19,27,29,242,183,69,114,98,66,221,5,111,173,161,169,172,233,59,79,12,180,116,96,70,176,96,183,112,243,48,236,224,94,97,115,155,15,201,71,229,114,249,59,216,192,223,214,82,152,132,109,44,224,69,5,163,132,156,245,160,123,31,88,24,114,214,95,148,197,215,174,187,225,165,47,82,70,225,193,20,190,180,166,214,198,154,153,94,183,128,83,195,232,48,119,184,93,248,149,48,51,48,43,22,203,88,8,139,23,231,82,67,88,125,120,216,253,152,211,186,222,71,116,50,195,94,135,178,178,19,81,118,250,0,144,69,165,74,150,8,183,244,180,23,191,97,76,11,216,231,97,104,163,165,55,83,106,85,22,197,67,5,219,27,41,147,137,242,29,204,238,121,52,95,
 97,35,143,97,141,209,204,214,205,30,237,53,94,89,41,49,87,122,156,202,101,179,23,13,9,194,255,100,138,129,175,235,71,121,42,195,254,82,205,0,222,43,72,124,201,102,119,163,71,102,92,211,30,253,253,183,146,247,118,162,75,98,23,2,25,112,115,30,197,142,24,173,213,9,63,71,26,215,226,214,206,79,212,253,90,201,235,102,136,67,183,199,187,255,85,70,143,166,232,119,77,242,169,184,41,190,67,143,127,160,185,211,104,184,183,50,250,92,237,24,83,58,84,205,247,229,50,200,101,81,27,26,158,189,83,207,231,154,179,46,34,27,169,113,141,74,198,118,239,140,31,113,154,72,232,42,237,62,223,249,249,120,184,92,246,164,131,165,116,19,232,98,3,197,213,149,9,213,77,188,201,49,118,143,219,95,65,162,79,2,208,221,157,201,168,168,109,107,2,33,83,31,147,4,212,90,155,16,4,25,113,93,66,213,246,208,53,36,21,212,203,143,168,142,95,194,157,106,189,114,174,6,144,25,202,241,51,112,218,51,251,12,6,181,149,89,213,87,140,1,146,52,125,157,32,245,94,42,92,20,0,110,216,210,225,238,106,71,165,74,38,194,205,88,238,154,80,14
 6,185,181,176,127,178,20,71,46,244,227,176,238,167,246,35,106,154,197,101,50,147,108,197,14,29,51,101,162,27,142,77,245,148,230,154,196,15,152,14,17,255,90,139,109,158,42,19,242,46,75,85,213,206,167,160,218,12,227,153,148,176,194,188,222,202,191,114,127,55,48,104,193,220,5,14,166,42,109,58,46,88,239,131,159,223,65,64,173,127,84,90,197,75,215,39,3,147,0,98,31,7,35,241,124,207,40,133,164,201,237,98,122,173,13,12,202,22,50,36,4,47,221,132,131,255,201,48,4,141,78,109,81,95,52,134,246,6,185,194,187,67,233,244,187,154,185,43,31,245,247,193,134,146,246,146,254,127,206,83,188,198,19,142,19,168,53,116,193,4,40,24,66,6,124,15,92,65,205,150,129,93,242,39,2,222,97,81,174,200,169,72,124,29,45,114,137,38,215,254,7,175,120,64,151,234,164,77,214,150,119,8,228,101,15,64,89,74,199,36,207,40,34,135,99,76,131,92,217,101,100,118,247,147,245,73,144,68,200,155,176,135,143,162,148,60,12,214,91,125,228,96,78,254,164,60,232,34,129,170,76,85,45,172,172,25,52,90,151,208,107,97,67,215,239,97,150,255,162
 ,47,89,103,199,60,255,184,29,123,161,41,144,23,7,125,206,201,129,226,186,15,202,57,127,91,28,38,168,163,244,22,7,13,27,232,171,60,68,52,254,13,138,14,178,251,212,130,41,89,122,185,127,134,46,119,6,6,154,231,97,134,112,70,187,125,134,169,11,85,201,186,55,8,169,37,156,159,235,145,69,239,223,124,144,121,211,195,42,174,255,146,235,244,35,142,178,190,55,38,113,166,20,182,152,153,31,44,167,132,26,115,42,157,86,16,212,217,204,71,245,15,3,200,56,126,22,175,160,159,113,33,12,72,214,146,14,14,255,55,183,33,187,56,214,249,115,232,114,1,145,153,127,33,129,148,221,53,195,38,125,22,96,129,21,90,96,138,134,237,237,204,43,126,100,43,92,203,89,128,144,170,18,182,138,170,183,175,55,2,183,120,235,191,201,143,65,80,185,13,38,34,18,248,46,187,103,214,254,129,255,214,48,62,101,210,46,19,172,228,29,55,131,88,112,202,94,13,41,85,41,139,153,194,223,101,0,212,203,17,240,14,191,221,9,102,68,133,228,200,226,74,176,129,220,169,55,116,130,195,167,90,72,79,82,139,82,23,172,112,232,61,148,33,16,207,255,61,
 234,170,175,63,153,34,137,89,142,4,136,6,90,202,154,58,210,224,48,89,242,0,155,149,71,156,145,80,57,110,255,202,196,184,69,160,178,72,199,8,106,124,108,117,215,67,246,1,56,198,14,46,36,128,166,4,84,197,78,18,59,156,126,7,64,217,93,162,182,93,233,242,126,70,39,243,213,57,56,90,193,47,194,7,52,147,229,108,164,46,209,28,170,254,126,137,125,82,102,100,52,116,252,76,30,130,156,139,193,49,128,160,210,7,172,62,24,217,205,7,131,151,132,163,24,243,129,27,109,22,108,36,81,103,62,143,242,207,218,104,150,120,203,42,251,212,159,232,126,150,140,225,113,8,4,146,157,151,215,48,7,42,245,5,203,205,42,123,186,150,2,63,19,6,5,159,221,233,58,92,21,59,32,199,109,244,215,89,168,226,54,229,92,218,80,9,77,90,233,123,26,13,102,197,76,60,161,239,171,217,41,231,172,26,68,113,37,102,181,224,69,179,195,131,21,69,81,162,253,197,141,244,62,157,187,65,186,83,233,0,81,37,51,96,76,105,86,251,230,19,213,196,30,182,127,232,240,126,69,173,160,56,125,233,137,192,214,4,246,239,108,248,69,234,241,254,189,0,45,252,1
 56,3,90,197,123,104,225,67,52,169,163,207,214,177,147,133,35,99,44,129,138,197,1,239,132,124,99,187,168,12,113,226,188,61,113,196,64,99,4,123,36,10,134,19,2,240,163,86,197,32,246,40,214,205,74,63,28,27,223,49,182,219,48,180,126,239,119,52,206,54,106,89,159,148,146,29,105,49,95,4,236,49,204,110,117,184,197,135,240,27,198,177,45,76,115,19,51,211,72,70,186,83,188,201,211,28,137,134,207,254,164,119,125,103,148,197,110,85,54,182,1,207,54,179,69,83,73,219,177,7,228,86,104,137,197,212,175,233,90,7,78,187,153,228,175,93,45,77,121,33,56,247,128,242,134,183,144,17,231,0,18,75,91,174,136,23,245,207,73,202,128,197,215,244,226,127,109,62,160,189,71,245,171,8,42,131,57,20,252,60,53,187,164,232,61,12,148,204,26,238,5,54,101,12,138,114,254,7,1,14,155,85,245,150,116,46,232,125,186,1,0,60,90,106,242,112,105,26,200,42,37,213,162,243,214,21,81,110,150,198,16,141,94,25,220,216,18,235,213,199,30,193,112,182,41,64,70,183,40,26,228,158,105,220,37,135,244,216,172,86,150,63,43,175,90,36,161,134,20,90
 ,125,175,68,42,247,54,80,54,18,250,242,159,240,70,185,221,216,17,156,142,57,45,158,140,204,86,236,15,222,36,110,6,113,167,51,125,84,16,212,255,252,248,241,137,36,168,71,57,76,199,236,64,167,157,8,42,219,236,203,94,61,34,244,59,203,249,219,136,159,159,63,154,46,21,202,241,63,97,66,213,70,76,143,98,177,77,112,162,67,87,158,247,17,66,48,51,154,196,88,140,146,180,84,69,163,235,48,68,250,27,225,15,94,121,95,123,23,93,9,151,17,131,198,76,3,98,136,76,196,135,148,165,215,184,73,102,76,166,25,14,233,114,229,200,20,156,81,147,12,110,79,165,194,147,179,39,9,223,73,178,156,1,44,245,227,9,191,230,141,80,188,186,51,172,96,145,221,200,73,139,254,244,165,203,147,168,179,222,95,160,192,73,125,175,81,91,33,99,86,208,159,207,250,62,192,3,52,10,179,245,48,166,229,21,38,171,1,189,215,102,81,132,157,103,43,44,209,104,153,106,198,209,113,188,160,105,249,174,51,98,20,138,204,15,33,70,110,32,133,104,34,210,125,67,27,144,13,175,195,26,47,190,250,34,48,233,69,254,215,80,154,225,247,185,33,162,72,236,2
 38,246,131,111,245,183,154,10,24,230,142,64,162,87,239,50,247,75,61,243,130,167,8,28,144,8,189,180,205,198,119,245,67,84,4,94,252,50,175,152,199,82,226,45,170,240,32,244,150,86,174,227,63,89,230,186,147,227,0,102,179,115,239,3,104,238,215,91,136,113,173,160,82,80,34,164,149,107,181,88,246,89,191,9,188,226,61,123,208,89,211,63,20,60,79,22,67,105,41,177,62,195,188,5,87,71,145,115,206,107,124,105,170,82,1,136,139,192,46,243,61,70,238,62,133,82,38,16,5,83,86,211,96,51,159,81,110,101,122,164,40,27,86,35,160,248,37,20,228,196,30,64,182,31,247,70,239,171,186,111,124,20,151,224,58,233,179,15,164,26,229,175,163,167,43,50,88,128,136,45,162,206,45,141,241,112,110,11,181,128,62,150,91,232,148,106,36,15,76,239,86,122,217,87,38,76,91,105,142,87,5,205,82,173,249,233,155,223,185,147,183,66,146,213,176,115,101,212,162,107,111,102,123,93,10,143,187,176,238,241,25,62,123,97,219,187,96,70,140,103,117,137,57,147,232,118,139,9,100,192,240,251,0,243,122,123,192,75,148,81,33,120,61,15,89,49,238,143
 ,140,1,6,26,41,210,152,176,134,156,121,110,80,61,176,99,226,63,58,161,95,10,76,41,35,55,165,253,251,78,161,45,22,144,79,99,92,123,200,96,43,105,12,20,200,239,60,33,66,13,163,104,109,157,46,144,171,66,149,64,159,136,148,132,109,138,147,11,56,81,190,229,169,161,42,90,152,167,222,167,23,223,69,94,229,11,210,238,192,94,93,197,53,161,61,106,52,98,245,32,114,87,60,252,168,97,71,63,20,246,91,171,161,17,63,180,6,233,20,4,72,145,64,24,78,163,183,14,133,18,60,29,120,79,105,1,0,142,105,186,218,233,203,27,168,128,168,151,249,200,83,214,89,77,162,7,95,122,42,108,17,33,94,45,44,80,114,180,254,202,35,113,12,124,72,161,243,199,97,211,158,210,40,90,97,47,173,129,78,192,219,13,143,187,185,76,61,142,100,27,113,142,132,12,199,71,6,216,69,229,116,118,39,86,140,138,121,70,244,123,52,200,69,55,13,110,126,79,202,50,151,80,102,28,215,96,103,54,123,164,195,186,159,228,215,81,78,149,37,87,11,6,153,83,66,91,198,71,244,91,201,107,59,170,62,86,21,44,72,96,109,156,22,241,134,133,241,151,158,140,125,55,152
 ,226,238,207,79,94,146,198,141,8,41,77,109,187,42,155,220,96,217,158,97,231,253,232,28,48,21,115,208,173,77,168,247,68,71,104,117,33,243,52,49,144,205,189,19,10,194,206,113,136,160,239,69,101,207,38,42,248,252,189,63,128,94,94,213,48,19,186,148,12,188,35,120,184,25,69,33,75,92,150,97,32,108,248,148,107,84,197,236,31,63,182,1,94,3,208,119,173,21,222,66,193,18,188,105,184,84,136,85,57,10,222,160,64,54,104,11,74,168,55,236,180,88,119,71,130,95,229,199,28,13,76,37,36,106,134,252,221,186,108,40,225,248,115,178,22,113,153,88,5,184,30,227,3,225,79,62,205,134,70,138,96,246,127,91,131,59,10,35,70,206,255,205,159,247,80,190,29,69,61,95,2,198,198,90,255,117,224,124,252,27,85,10,98,136,33,131,145,151,11,106,178,177,191,244,245,2,26,114,186,5,76,241,105,187,75,166,245,12,207,185,13,210,219,38,203,38,225,17,9,138,34,157,116,21,242,125,205,196,147,57,229,43,14,35,241,185,214,73,8,199,10,51,95,184,57,175,236,41,202,86,27,74,200,24,249,19,94,78,51,220,193,80,0,51,55,22,129,97,113,175,66,105,
 118,8,1,154,83,102,139,161,142,137,149,67,78,161,115,84,209,88,204,25,130,221,15,172,55,219,227,12,199,212,58,231,104,26,226,110,25,230,38,4,210,156,188,117,204,245,231,229,217,49,128,110,234,179,153,115,230,191,250,218,15,233,9,142,118,61,207,48,27,4,207,191,19,180,219,72,219,114,176,54,200,11,102,0,23,68,58,232,150,2,153,8,154,129,210,34,237,198,16,82,210,144,247,73,241,95,162,138,169,120,89,209,114,148,192,45,67,234,20,255,27,91,106,139,62,134,66,89,64,163,182,192,216,52,24,3,148,83,130,194,152,195,247,224,18,23,110,164,116,182,150,16,31,142,172,139,59,142,188,90,84,116,226,14,45,217,16,103,121,86,191,19,80,184,45,250,146,142,104,212,195,166,144,80,240,169,75,23,166,87,98,233,151,234,227,34,219,130,197,93,114,242,195,72,70,77,68,117,20,237,162,201,118,123,223,48,70,127,157,151,198,19,138,122,36,119,254,208,246,118,9,247,142,84,214,26,84,249,137,194,225,85,162,64,23,195,220,248,23,114,53,52,211,155,31,173,49,244,164,181,36,246,0,149,120,199,127,243,178,197,206,70,174,42,44
 ,122,203,17,205,54,171,223,136,244,52,8,65,51,40,2,8,109,199,224,181,76,110,230,135,15,167,194,18,165,233,27,85,242,169,174,73,60,106,140,0,182,25,197,179,160,93,144,74,63,152,153,221,185,217,155,160,50,163,177,76,170,83,147,191,190,231,209,219,237,213,228,44,3,152,235,151,173,91,203,233,85,73,204,149,34,58,69,152,100,68,213,81,51,23,34,138,21,210,18,188,56,134,209,172,175,187,135,82,140,67,94,25,68,184,89,244,211,48,99,194,197,145,34,98,58,74,129,144,142,19,170,218,197,129,228,229,20,39,121,141,10,34,107,147,66,208,101,42,128,253,186,107,181,133,144,65,16,77,35,109,23,178,128,212,58,76,183,181,236,107,170,242,254,168,242,115,191,20,191,8,224,195,153,230,155,207,169,36,78,128,111,203,30,24,38,8,60,177,107,83,77,145,64,155,211,31,64,201,9,145,141,228,102,168,69,187,118,250,29,98,79,254,106,190,153,234,127,148,202,218,204,106,86,147,240,145,139,9,201,39,32,201,240,78,249,129,177,129,11,119,161,157,51,96,167,239,168,253,80,239,249,11,41,162,116,63,232,9,61,151,41,150,155,72,214
 ,101,88,9,236,130,200,208,160,197,100,210,34,49,16,25,119,34,193,186,158,77,181,188,9,216,176,102,201,142,138,222,22,48,42,216,60,237,206,200,147,238,16,27,199,17,80,224,98,160,217,107,166,224,8,206,5,252,143,88,145,128,249,232,54,213,145,168,184,161,122,224,175,154,45,117,225,8,111,201,106,109,74,121,185,153,44,87,160,108,59,23,87,239,189,215,216,118,13,194,153,173,115,58,255,160,181,3,102,51,196,38,181,74,6,103,255,21,231,211,138,39,64,21,118,138,177,168,152,153,242,0,97,116,20,173,204,114,120,20,50,133,118,177,227,69,183,187,194,132,250,9,42,99,78,58,5,214,80,248,185,1,186,248,15,137,154,186,98,73,3,80,47,236,101,25,12,37,217,161,195,46,10,31,177,10,67,158,228,194,89,219,219,48,202,252,127,97,46,229,172,68,86,143,218,95,170,232,111,43,125,187,51,172,63,112,120,147,136,165,160,125,134,240,64,37,118,247,81,5,118,142,159,34,85,149,74,166,40,219,99,42,101,42,172,150,23,41,97,50,187,164,169,9,228,25,235,182,102,2,114,142,93,167,31,121,24,156,67,92,188,153,14,114,17,131,22,102,
 168,231,14,235,23,166,210,187,240,13,10,206,143,193,77,124,240,46,186,32,206,212,142,105,118,6,25,221,233,35,137,23,138,162,207,213,223,3,230,80,20,130,76,140,78,206,42,1,154,93,202,17,209,143,200,235,189,85,156,62,77,136,162,108,56,237,32,200,110,118,107,127,47,28,222,84,219,1,232,149,223,52,212,157,130,141,67,147,67,72,157,236,181,1,71,40,6,180,234,239,157,224,76,122,213,180,94,233,32,102,164,214,79,79,99,118,48,149,31,44,5,185,143,159,190,42,212,87,92,169,252,122,133,82,105,175,105,144,70,254,143,127,116,219,46,96,93,52,141,180,237,147,132,64,30,149,23,143,1,193,241,146,75,158,6,201,199,246,125,225,227,125,163,216,123,63,15,233,141,77,187,10,196,143,109,242,104,175,109,209,206,108,120,137,78,104,98,125,144,8,198,49,63,97,117,21,100,165,219,49,147,159,30,88,254,13,91,32,193,225,223,11,12,203,172,112,190,215,158,17,203,108,86,46,156,38,153,53,126,99,184,29,0,50,90,51,29,86,190,34,105,63,128,238,245,156,161,141,33,5,132,131,208,95,240,182,229,42,65,193,49,212,35,222,159,19,2
 32,118,199,99,243,186,123,130,131,34,111,19,211,145,150,160,209,187,90,106,242,2,240,241,8,126,71,99,33,4,171,183,62,231,26,112,122,252,24,132,251,93,233,164,32,163,78,38,140,24,68,191,194,141,227,177,48,71,169,64,176,228,56,34,45,108,134,162,83,39,111,39,51,169,82,231,200,155,172,159,92,32,113,225,40,144,170,32,250,180,48,113,101,82,214,24,115,97,94,11,111,82,82,55,95,160,2,99,46,42,187,177,132,135,148,79,189,115,202,239,135,209,155,187,232,46,57,235,168,122,231,136,117,163,108,70,131,106,48,138,148,158,228,37,144,174,144,133,225,242,184,44,243,61,146,35,156,155,178,216,192,103,18,205,122,134,234,199,34,37,109,157,124,32,162,218,141,111,1,169,234,95,79,15,34,70,121,2,146,88,94,42,58,220,90,120,119,165,12,251,155,97,198,195,62,136,45,126,157,184,153,199,12,3,8,245,164,131,223,25,63,19,238,156,156,52,50,166,29,91,32,162,114,77,187,40,108,98,232,69,183,96,45,60,130,213,204,14,59,219,28,2,235,101,169,191,169,200,7,240,32,167,161,68,138,140,50,33,157,235,214,73,131,223,221,9,49,
 137,164,128,123,135,97,143,178,111,248,233,82,246,194,183,183,98,226,86,98,138,28,177,251,116,104,140,241,143,236,91,104,215,206,58,242,131,57,247,81,212,179,56,204,7,23,50,108,77,197,83,98,210,112,7,11,193,163,189,182,33,128,120,254,38,244,162,4,4,38,196,23,63,193,94,217,240,191,235,156,254,88,170,135,59,167,49,66,198,16,62,64,183,20,142,198,136,152,152,175,51,108,32,57,28,247,103,186,54,49,149,200,122,62,151,147,186,37,78,216,213,6,55,161,94,50,96,34,22,187,247,145,193,143,167,252,199,78,61,218,146,115,159,61,74,25,221,67,86,73,33,148,185,213,142,71,210,174,2,101,2,26,42,98,129,163,31,3,163,195,21,34,104,244,140,185,244,144,110,162,130,112,92,155,240,4,32,182,2,167,246,215,212,120,163,136,173,226,144,134,13,112,1,142,29,164,243,117,241,148,167,197,206,10,196,133,50,84,240,183,92,18,146,56,233,124,232,6,161,78,31,27,89,19,103,246,151,132,236,147,16,89,158,133,41,130,148,14,11,197,168,14,35,217,210,236,224,4,108,73,119,224,39,138,245,17,22,191,254,112,221,24,166,84,157,108,7
 6,89,49,164,165,111,250,175,223,60,189,72,37,224,182,230,210,128,73,40,20,114,162,122,218,174,8,110,56,155,50,48,189,140,251,60,197,76,57,207,255,26,159,168,216,118,83,226,1,59,201,219,26,141,241,208,255,135,101,23,117,216,213,194,191,96,26,115,189,6,148,241,120,137,18,168,174,128,66,179,64,14,248,39,173,162,40,209,250,102,204,180,173,233,89,18,191,78,59,31,183,115,159,161,246,208,77,215,33,160,62,219,137,10,14,211,57,174,201,239,198,236,236,38,113,183,22,30,176,240,58,231,176,38,155,28,174,121,167,81,203,128,162,56,74,160,98,134,89,107,176,101,57,53,16,180,62,181,113,17,125,12,89,3,1,206,251,153,92,68,144,176,7,7,217,233,245,179,192,29,7,237,176,148,62,37,39,29,184,11,170,199,163,172,254,105,2,28,148,2,223,7,187,170,71,168,195,228,91,35,112,16,1,181,98,220,181,234,9,216,200,9,58,186,188,70,114,216,22,63,206,207,255,177,118,100,214,149,53,222,122,87,204,201,106,252,231,159,153,134,9,142,209,233,78,142,100,9,137,158,184,157,203,179,37,37,9,244,208,132,235,25,82,209,156,80,29,
 142,195,95,245,41,86,194,157,230,187,10,225,145,242,237,117,168,44,0,94,31,148,24,136,63,2,243,19,35,35,122,8,4,44,208,71,170,25,83,240,220,148,163,17,157,143,184,5,106,96,17,105,201,101,203,67,196,217,148,223,18,46,55,1,196,70,176,109,86,201,218,197,127,19,46,112,163,164,80,35,183,248,132,238,98,185,201,218,220,216,114,9,92,82,200,219,255,205,14,146,145,153,146,216,200,16,50,180,212,100,90,23,76,218,79,208,181,160,206,88,254,111,119,104,172,134,166,76,103,15,195,116,71,155,141,3,1,43,228,239,137,245,213,205,246,45,233,99,206,211,239,116,78,241,27,135,32,50,80,51,201,203,89,190,19,142,71,27,139,193,184,8,234,153,148,223,219,215,11,249,91,234,97,164,104,226,37,244,239,147,149,131,38,120,106,61,49,239,245,191,208,205,219,241,189,152,208,158,222,0,196,61,83,166,181,33,240,92,61,25,147,137,236,238,108,143,59,245,156,150,1,9,122,200,152,58,213,0,162,13,124,94,236,195,92,169,236,9,149,9,49,245,91,198,241,211,6,50,153,151,123,91,192,31,108,176,51,228,56,25,112,225,37,21,106,9,148,1
 99,240,139,221,109,149,223,44,66,3,147,194,192,130,126,84,33,125,191,137,223,209,223,163,99,98,103,140,153,30,241,99,73,225,224,192,134,251,101,4,98,102,247,58,142,157,121,68,192,63,176,64,156,63,50,0,16,155,79,255,227,179,250,100,75,103,101,44,53,12,146,38,26,88,139,115,82,248,229,8,214,218,125,58,128,245,209,104,26,159,7,10,249,159,124,182,110,163,161,20,148,51,127,152,81,210,162,233,11,181,105,160,166,148,21,76,226,113,236,154,202,120,248,16,6,8,40,198,115,29,151,28,102,244,55,54,25,178,64,142,187,51,226,254,74,74,14,35,110,218,180,21,30,192,237,1,180,245,241,1,243,105,18,211,175,101,26,220,23,131,98,171,62,222,74,82,113,158,13,200,33,118,248,198,132,242,247,187,46,219,254,163,61,201,44,229,133,138,244,77,91,45,37,69,83,65,250,27,255,191,81,109,7,70,42,232,228,61,232,7,55,154,138,198,18,232,160,93,203,227,226,74,60,230,79,29,192,159,7,87,65,22,130,135,152,57,175,30,3,251,162,111,185,136,159,198,212,79,124,126,105,60,115,56,180,235,180,50,237,5,54,82,147,11,165,168,113,105
 ,3,147,249,92,65,103,81,105,155,173,104,20,143,140,8,152,8,202,218,195,9,233,126,153,86,111,208,222,232,226,230,142,139,17,178,203,181,163,223,109,64,212,200,96,29,10,236,253,215,18,182,132,64,192,200,188,197,147,102,26,42,42,98,113,145,215,2,32,182,187,30,38,72,1,201,133,19,100,97,55,26,79,176,13,182,204,63,203,156,133,154,131,198,86,113,107,117,191,182,45,80,53,31,128,6,138,78,147,60,148,95,227,153,100,84,22,147,146,91,207,80,47,252,70,98,86,9,238,8,142,209,168,131,6,6,236,9,49,130,34,61,172,46,100,48,117,55,204,152,231,157,45,14,31,147,220,253,106,119,177,199,146,152,109,68,118,130,245,137,182,236,20,55,24,123,243,211,147,50,54,159,159,233,172,155,133,45,94,99,87,178,0,223,61,79,64,9,124,158,8,225,207,138,250,228,253,126,93,243,60,244,66,140,111,92,130,69,103,58,173,142,47,32,98,130,158,168,13,146,74,176,23,235,220,147,27,215,138,97,206,49,173,125,100,64,147,146,244,233,209,9,162,95,132,83,42,103,127,92,60,51,123,9,210,182,221,211,109,175,44,191,71,38,252,180,141,198,8,22
 1,31,127,200,210,218,139,178,46,235,26,185,144,160,214,8,55,58,140,81,158,170,22,231,237,70,3,79,230,98,75,161,77,87,36,69,46,94,87,153,53,188,245,222,148,12,212,246,161,102,25,142,177,155,108,65,137,2,169,161,4,39,125,167,214,190,152,165,19,162,181,227,204,90,82,126,143,29,220,231,248,86,43,34,49,161,118,96,187,227,210,14,206,115,223,67,2,112,53,45,129,28,98,152,111,104,53,136,251,100,231,185,208,85,75,52,184,184,202,120,156,191,211,16,28,49,163,150,164,57,75,146,86,164,121,15,86,4,226,209,32,102,113,126,123,240,0,233,115,255,185,248,12,153,2,34,39,98,197,64,166,125,182,147,118,58,7,190,156,245,194,245,138,129,115,119,103,81,195,244,57,29,36,59,9,121,32,53,123,129,130,145,16,235,9,249,11,90,228,224,27,204,37,3,148,165,24,211,31,143,116,238,121,163,139,62,225,118,238,17,242,233,176,185,118,190,168,129,187,166,63,85,131,209,230,140,65,45,44,143,246,164,138,241,175,152,108,125,124,48,242,58,153,186,21,157,180,63,1,112,165,21,188,100,251,109,60,92,11,234,116,166,52,233,205,224,
 153,227,44,215,4,199,34,188,206,115,242,87,228,199,154,169,92,27,71,205,228,186,232,202,78,206,38,139,210,90,222,116,132,222,100,217,249,165,137,170,114,63,199,213,191,184,82,110,86,184,241,132,147,196,23,17,191,95,176,134,48,103,23,144,5,142,232,115,72,82,252,142,102,68,84,66,145,58,37,45,62,240,237,143,114,163,44,56,249,82,87,78,54,1,155,234,67,149,247,29,66,97,176,18,244,17,102,133,251,52,19,148,164,207,135,120,93,206,29,211,37,132,125,83,218,207,161,86,51,19,251,11,74,181,58,115,160,164,36,240,224,226,142,125,113,210,153,73,166,25,54,177,200,169,100,45,99,73,201,72,180,247,59,42,67,187,104,74,203,67,171,0,178,139,49,78,184,225,249,217,146,160,143,153,104,167,218,48,77,181,109,41,65,124,137,22,111,236,216,59,134,195,196,254,102,188,173,73,238,222,228,13,18,80,12,143,237,7,205,4,68,218,147,126,10,248,224,231,218,226,216,54,218,13,43,174,194,59,97,186,241,252,107,188,15,65,122,152,113,25,117,53,41,239,237,153,174,248,202,2,225,131,205,47,242,160,7,92,4,172,26,223,56,143,131
 ,143,28,221,213,216,37,84,193,159,78,214,26,174,0,199,239,22,209,13,147,240,247,237,128,235,158,62,230,92,141,252,49,209,199,54,82,114,128,189,65,129,127,171,218,59,21,42,107,161,104,199,171,200,138,119,224,15,89,87,36,118,131,147,7,126,92,215,154,0,226,37,101,158,237,111,246,236,197,158,115,187,122,45,88,210,175,50,218,58,200,245,237,9,134,146,34,58,164,223,187,222,30,246,27,182,130,171,210,226,89,174,57,212,122,176,75,199,255,216,28,130,241,217,104,51,240,252,99,211,200,33,126,141,57,66,92,11,124,180,39,248,159,11,167,25,79,167,215,215,205,80,246,32,243,113,88,100,101,225,153,217,192,50,160,150,79,233,49,215,225,45,101,136,200,117,198,51,106,21,183,166,72,45,191,6,123,248,160,189,238,110,90,214,94,129,114,59,44,33,245,174,163,188,85,213,46,124,131,41,224,208,202,164,74,191,97,242,176,42,172,46,96,112,0,213,228,253,235,102,58,164,163,202,252,79,167,178,50,59,71,55,6,188,12,173,52,68,129,186,71,176,194,61,171,144,51,149,40,181,93,20,125,61,48,125,28,87,53,150,79,34,175,29,22
 1,14,171,61,125,77,190,105,70,124,119,22,133,67,154,95,24,123,32,139,7,205,93,214,177,42,104,167,123,16,90,241,47,171,78,32,164,205,88,230,132,156,12,46,100,51,182,22,114,107,162,251,151,65,3,221,171,181,157,193,79,100,55,71,108,205,83,245,246,159,105,215,64,210,93,138,198,111,3,26,249,212,103,194,129,106,5,157,210,15,191,82,220,174,85,102,32,136,235,143,124,16,15,208,217,3,199,238,115,174,162,157,127,242,51,33,117,251,105,227,63,134,76,105,31,112,100,39,67,140,158,109,38,162,196,241,191,25,217,167,221,79,49,47,249,86,239,136,182,91,213,130,25,109,73,208,78,34,196,128,24,143,130,253,154,237,40,15,26,164,77,17,197,2,218,161,99,232,192,240,27,176,47,190,205,147,214,193,37,132,57,231,230,111,100,2,92,6,73,146,103,51,26,242,39,142,171,219,213,161,147,12,237,115,36,126,5,204,186,61,135,223,176,79,243,118,90,169,234,82,219,73,4,155,233,234,106,66,118,111,56,116,160,227,207,37,51,116,161,250,233,128,240,157,139,98,154,223,230,107,255,232,66,68,149,132,144,13,74,110,91,102,49,139,65
 ,201,151,153,252,142,65,216,16,202,171,182,77,200,135,248,12,0,133,213,62,236,232,223,12,17,39,235,149,211,177,88,118,186,141,213,94,40,33,158,52,242,159,58,10,71,224,125,111,208,108,50,51,17,177,200,80,67,149,176,164,148,207,33,174,34,189,98,22,25,150,155,47,180,23,26,87,161,112,206,21,158,123,7,230,77,47,94,55,196,228,71,62,174,236,86,228,69,71,166,168,85,250,75,247,44,128,224,62,36,109,35,165,125,235,241,181,11,47,47,233,254,62,110,177,112,90,174,115,116,223,245,202,70,163,246,101,36,193,70,37,103,107,77,84,3,188,205,5,197,149,19,240,244,246,30,183,60,40,240,37,211,244,151,48,212,247,178,49,155,193,151,221,102,170,253,197,206,32,136,225,48,236,5,250,117,26,186,85,79,221,52,201,90,12,189,200,149,88,80,74,89,83,154,127,11,101,81,45,37,156,150,143,32,178,196,36,31,141,116,40,98,94,253,175,207,109,151,100,113,79,234,169,60,97,131,67,233,229,224,202,7,144,182,91,211,109,242,195,174,126,95,229,246,46,24,201,253,47,58,75,159,133,88,246,5,94,82,203,255,69,0,104,90,9,216,81,204,74
 ,187,110,110,31,126,250,77,156,75,233,174,123,251,239,186,60,192,91,73,173,53,218,49,59,252,82,227,141,167,48,185,36,136,50,189,117,65,9,47,68,131,76,3,158,219,73,228,183,153,90,104,123,11,240,232,129,183,3,42,157,116,145,33,24,234,193,188,217,14,59,233,163,97,215,132,176,157,224,6,253,96,72,241,252,231,154,227,94,229,209,74,172,52,240,90,44,245,111,133,129,41,255,251,157,124,138,130,113,52,121,157,12,114,7,174,194,130,239,104,6,142,208,216,222,96,41,159,47,1,58,111,143,218,4,154,255,79,189,37,171,2,100,133,128,84,224,43,58,217,75,110,183,16,255,211,213,45,183,48,230,10,121,105,39,92,1,48,26,67,175,56,217,205,46,171,51,186,222,210,172,239,199,203,248,49,205,234,129,57,167,180,112,138,215,234,235,123,79,93,56,67,76,110,13,247,118,139,21,4,110,13,177,13,221,188,247,73,115,154,79,133,93,239,180,21,16,76,17,125,167,182,135,219,82,149,62,145,48,247,12,114,103,60,55,182,199,99,51,72,232,210,210,133,20,107,165,195,180,43,134,113,12,62,228,60,126,236,22,196,157,170,243,227,242,233,1
 51,61,224,200,160,237,90,154,26,242,67,111,214,138,41,15,84,250,211,64,96,221,238,73,246,102,57,132,130,67,247,154,247,223,63,198,208,254,112,231,156,96,170,134,179,96,79,76,148,159,89,212,21,248,224,245,23,194,116,111,108,14,55,218,194,10,250,164,165,252,109,198,232,188,54,179,139,111,156,122,225,198,141,4,10,238,207,142,224,71,160,28,23,169,48,169,253,129,58,207,253,99,166,127,120,128,23,164,247,12,52,122,181,135,83,240,180,217,200,138,163,237,147,4,74,30,249,2,59,140,95,3,33,245,208,53,39,11,226,28,209,136,79,251,138,110,195,62,117,81,117,160,3,224,151,201,38,12,238,2,227,150,173,36,66,87,32,97,8,9,181,227,45,53,87,231,121,106,222,147,193,198,114,47,146,12,28,122,195,233,202,168,94,127,83,211,231,131,34,142,249,140,64,250,114,241,230,131,108,175,65,142,28,138,199,167,221,229,182,60,237,170,201,50,226,218,229,230,63,9,156,75,169,213,187,188,49,8,181,64,165,246,207,201,49,13,76,216,93,232,115,171,34,244,243,135,133,163,49,80,74,154,123,3,128,182,143,16,137,73,61,67,215,124,
 206,112,64,55,152,118,233,236,155,235,62,53,155,117,206,146,19,156,161,119,86,159,105,38,50,74,66,86,246,223,112,78,164,63,53,145,46,40,179,20,126,72,90,96,173,230,140,18,96,212,132,42,9,215,179,62,131,147,210,30,153,66,57,155,141,99,68,70,251,209,84,168,28,84,78,0,48,241,17,59,166,119,93,60,172,250,199,180,56,176,142,105,21,210,254,193,0,8,7,15,131,32,62,182,224,204,36,83,27,249,181,84,76,28,184,154,164,177,225,171,29,28,23,184,244,249,133,194,202,90,30,115,106,204,74,62,183,111,83,176,132,130,58,167,151,25,22,91,234,55,92,155,0,101,191,78,34,37,112,48,146,247,38,76,105,194,74,9,24,170,41,167,220,106,94,155,66,59,196,151,70,166,128,246,151,72,78,3,188,126,89,19,184,130,223,113,60,171,102,53,120,234,123,108,234,38,26,223,21,229,174,47,14,136,71,236,229,47,134,39,188,253,255,116,194,118,130,146,59,93,67,33,237,76,9,225,78,172,169,210,208,205,172,9,76,105,216,81,175,62,188,96,30,134,71,44,213,141,221,147,233,169,150,20,213,19,253,219,43,219,85,132,116,198,28,255,41,131,42,201,
 173,179,183,188,189,208,148,201,154,156,136,227,229,66,9,204,131,170,24,3,108,184,232,158,235,219,139,96,139,125,194,206,130,210,246,203,67,133,217,154,106,31,188,206,216,151,4,44,5,183,33,117,96,131,139,36,142,48,253,32,67,81,38,180,209,3,103,13,239,201,102,6,219,60,82,79,198,88,98,103,172,159,123,241,173,33,193,243,208,85,142,32,168,133,86,12,154,25,224,23,174,11,150,88,94,126,115,64,1,108,87,226,249,116,38,3,193,79,175,98,248,106,149,87,177,22,4,0,239,133,60,61,152,236,80,150,166,62,53,142,69,91,135,192,73,209,210,113,210,52,3,171,251,238,183,31,12,222,200,83,60,184,222,11,23,6,140,154,86,239,116,197,44,76,47,175,48,90,71,139,2,230,193,250,93,71,129,33,97,132,173,103,158,116,218,244,188,135,133,197,44,10,77,243,72,120,224,75,36,39,67,48,156,44,204,61,96,115,155,76,156,159,111,253,189,127,253,79,222,217,206,62,251,36,36,54,193,67,251,29,66,50,191,215,92,251,179,223,228,142,187,39,30,203,184,26,135,209,14,103,136,249,130,25,221,183,198,234,215,14,235,141,199,15,110,26,24,17
 8,54,220,59,161,106,40,140,236,100,85,160,178,248,21,12,252,113,160,4,238,232,86,26,225,56,64,161,221,232,25,244,162,70,79,83,150,141,178,18,230,97,184,189,44,222,84,11,146,43,21,150,177,113,66,252,49,28,143,190,195,5,186,215,142,206,228,88,96,78,196,166,30,206,80,227,93,237,43,48,26,232,191,189,90,167,28,236,149,26,157,49,25,65,231,95,126,229,159,116,122,28,75,247,227,123,120,151,166,105,197,67,82,78,242,149,186,54,193,172,230,182,123,114,158,252,178,197,106,66,72,168,235,230,177,170,56,175,157,229,79,190,111,10,144,248,69,181,94,215,220,65,52,181,248,223,185,58,198,105,177,36,111,81,61,159,62,25,39,204,137,37,18,50,64,245,46,64,142,121,241,121,57,36,32,251,179,195,117,174,122,246,52,28,233,215,53,174,126,47,152,18,62,32,1,152,95,210,94,164,114,39,182,90,69,218,79,119,8,214,95,37,49,154,73,162,188,27,238,155,109,162,42,60,229,183,103,78,162,88,165,83,86,54,244,215,87,181,170,151,148,50,71,192,20,157,81,170,227,224,31,17,162,77,126,145,150,15,64,47,39,199,181,156,160,171,177
 ,161,132,246,248,112,9,194,128,159,128,248,207,136,14,38,171,33,18,113,247,241,35,125,250,189,99,53,128,2,18,94,138,130,186,215,220,34,123,37,114,252,78,226,13,219,82,177,232,133,34,21,195,144,254,118,45,39,96,111,3,59,220,145,108,50,157,201,181,148,195,213,110,75,92,11,131,244,154,242,29,126,184,51,33,187,120,74,62,232,76,230,56,145,238,81,108,35,206,181,16,179,74,140,177,229,245,147,162,128,128,131,135,52,3,188,231,235,130,88,105,227,50,95,7,72,223,239,190,215,33,230,70,199,110,146,233,153,112,116,118,86,242,184,124,45,202,122,180,36,98,121,153,216,203,173,114,157,32,229,233,229,137,71,60,78,128,30,158,130,241,85,70,80,76,187,40,117,181,180,254,158,171,126,221,37,106,129,117,148,220,54,12,249,37,67,77,53,124,71,122,209,25,79,112,56,116,219,250,47,129,48,228,48,239,100,182,35,250,204,228,241,29,72,119,166,161,110,160,141,53,21,252,233,125,189,185,104,67,243,188,149,146,85,163,211,237,245,124,230,70,23,164,133,49,148,220,86,216,23,10,80,46,29,125,57,162,79,86,179,84,66,185,1
 41,86,119,21,44,171,11,185,115,191,137,228,243,11,216,240,165,155,212,9,240,2,253,57,76,141,74,138,246,174,109,62,214,235,177,243,75,66,197,157,202,200,249,37,32,204,169,196,93,97,28,13,29,155,7,194,76,229,211,101,72,32,232,21,87,173,145,184,127,147,83,240,19,113,98,80,180,50,140,72,36,247,168,76,237,253,147,226,69,152,176,11,123,158,239,180,105,221,109,84,156,32,70,7,191,123,45,158,29,74,212,32,29,63,174,18,178,33,245,59,233,7,177,126,194,190,247,103,32,247,14,235,248,187,142,237,135,93,126,173,89,134,189,152,225,185,54,215,10,170,160,161,66,220,202,114,34,142,92,242,213,191,33,252,117,108,36,150,36,149,177,238,104,183,105,61,56,53,72,109,127,156,200,249,242,155,246,138,21,177,163,219,44,172,60,29,200,103,117,171,137,126,93,149,127,74,227,144,86,99,233,144,71,118,211,228,199,63,162,211,2,8,224,142,101,87,201,151,53,31,26,40,54,5,145,21,39,126,0,16,176,239,215,204,81,12,177,253,180,194,58,243,141,240,2,110,41,95,91,74,66,147,184,172,83,52,90,82,54,139,126,135,37,22,41,112,65
 ,180,0,137,251,31,230,118,251,119,243,211,116,52,89,45,118,41,34,34,24,21,117,50,199,77,73,34,220,179,170,195,41,187,186,189,244,53,228,201,198,130,36,94,49,189,245,60,171,141,236,79,172,3,204,191,240,245,86,41,201,126,151,26,247,212,67,219,32,58,155,111,152,161,118,20,129,156,2,210,157,82,247,94,27,102,12,240,3,32,112,47,56,198,12,152,196,150,99,143,194,75,168,245,176,192,151,216,41,49,113,108,48,36,79,49,123,97,27,156,90,219,55,146,48,221,181,68,39,199,224,35,180,220,117,104,164,199,69,80,67,52,188,66,229,51,79,147,45,241,31,88,174,47,2,229,245,7,99,108,135,242,150,87,176,118,93,1,174,213,27,125,237,168,161,245,65,238,6,234,240,144,146,116,45,224,216,215,87,172,77,7,69,14,43,150,134,207,249,71,109,224,215,33,194,88,231,66,130,113,118,33,21,52,38,9,112,11,80,97,165,88,38,183,28,28,240,3,130,159,185,77,19,178,162,85,249,25,184,145,177,22,90,146,149,171,170,83,45,148,11,88,205,203,134,245,100,249,211,231,179,244,236,103,221,23,215,213,43,107,91,252,69,116,98,162,22,68,78,127,
 76,17,195,68,46,6,41,200,106,100,217,4,205,168,1,151,144,135,144,128,155,31,31,25,186,101,118,1,231,44,28,70,30,122,207,92,119,98,212,213,92,93,84,138,66,246,73,172,253,162,104,233,234,9,100,54,166,149,199,251,199,166,153,195,185,163,7,158,136,100,238,46,190,149,247,13,245,71,72,33,26,110,18,228,226,253,179,120,221,199,71,199,29,236,27,245,19,148,74,235,187,93,90,127,114,41,165,193,189,129,136,119,32,241,84,234,96,83,108,47,178,207,196,75,49,154,31,206,165,32,108,78,32,132,184,145,144,234,69,238,224,4,138,38,15,1,185,33,143,18,181,125,166,183,160,165,134,16,169,51,201,100,125,175,86,16,63,216,188,235,250,146,160,196,130,14,13,43,154,7,85,156,234,212,80,84,34,234,167,132,227,221,26,98,207,249,114,64,76,40,188,197,235,5,245,200,44,144,226,8,180,199,190,100,168,45,209,231,244,188,168,190,234,38,108,7,13,166,96,129,18,56,133,229,212,174,19,27,246,55,33,25,137,0,199,18,26,93,226,127,126,214,86,179,33,21,58,9,41,159,50,135,196,93,244,58,164,236,214,45,177,102,13,135,89,19,175,39,1
 39,146,120,63,45,58,177,62,85,48,169,251,56,56,140,136,116,132,180,16,129,194,49,221,127,229,194,161,244,243,241,159,197,85,146,18,218,20,84,100,247,127,38,75,5,133,70,208,120,3,33,172,173,182,103,129,66,146,241,227,17,158,251,28,209,205,166,228,172,254,123,52,132,129,164,236,73,94,160,185,137,175,49,19,234,124,238,82,65,131,125,206,218,150,112,96,143,149,2,169,58,105,12,145,89,39,46,212,15,52,155,34,178,232,91,60,119,13,15,33,44,5,3,37,196,56,163,145,49,15,12,62,59,137,26,61,89,243,156,85,248,205,128,117,30,185,219,145,79,34,76,54,53,246,18,154,146,160,94,185,205,152,51,60,108,70,184,90,140,176,165,220,205,58,131,14,242,146,29,30,246,29,164,136,229,95,228,231,238,127,91,226,245,147,86,62,65,18,13,80,78,38,128,168,135,39,20,61,4,32,194,90,229,22,54,239,189,255,85,197,100,156,130,114,182,22,134,246,85,76,48,2,170,183,136,133,79,124,77,234,47,135,144,71,231,118,189,7,168,189,180,34,242,142,33,42,210,105,81,199,0,98,135,100,141,162,74,61,156,223,65,154,68,150,105,202,80,94,96,1
 23,95,226,49,56,252,85,156,132,95,144,19,212,50,95,22,234,50,144,213,204,86,171,244,98,149,101,29,235,107,162,115,128,172,123,211,114,177,60,146,65,225,114,224,194,42,200,2,36,163,122,51,9,182,112,124,14,37,15,58,148,192,33,224,68,115,218,27,187,126,11,25,91,253,151,250,61,233,236,59,121,154,66,174,105,92,237,4,92,177,49,193,171,35,245,90,219,240,21,246,178,131,209,37,31,152,63,65,150,46,247,196,208,184,87,126,180,62,126,224,119,88,51,118,173,252,167,194,68,191,206,202,72,249,31,109,203,119,198,17,252,11,124,126,192,79,169,215,137,184,232,249,196,136,2,235,158,68,76,82,249,45,83,34,47,252,82,131,8,213,109,208,215,10,16,47,135,4,151,8,128,156,236,92,113,11,164,14,52,138,155,83,210,27,26,11,210,133,249,141,32,35,237,149,41,199,19,193,104,217,74,96,136,35,150,220,34,60,176,48,26,215,154,145,200,142,102,61,61,239,137,164,14,53,170,156,247,190,209,117,196,39,220,166,85,83,61,77,68,10,186,185,36,241,30,11,41,228,35,235,41,84,171,203,1,115,46,8,160,75,52,184,99,186,42,60,77,84,218,
 178,247,157,11,59,158,113,171,51,57,213,63,125,76,241,70,11,103,73,206,130,232,22,22,255,238,82,253,251,60,221,83,109,4,207,86,207,231,107,132,211,238,232,46,152,209,181,199,91,97,102,102,49,201,168,246,39,65,124,177,182,49,229,92,195,192,184,112,28,115,51,162,192,203,23,14,192,241,22,203,132,205,5,149,100,240,242,171,80,131,2,1,217,20,8,12,157,2,206,101,79,35,166,250,184,134,199,202,204,174,198,50,70,186,246,152,22,177,38,98,2,100,30,146,219,23,135,90,237,82,118,83,219,11,128,184,180,184,91,155,115,225,70,144,248,243,109,28,17,104,244,24,155,175,64,96,129,198,156,218,250,237,12,81,49,90,226,171,214,202,243,209,105,19,117,42,60,104,44,233,238,81,96,20,176,100,16,122,38,177,207,20,192,217,111,73,46,190,35,249,207,152,33,100,106,128,205,222,77,208,97,22,121,232,73,246,214,49,241,53,117,152,2,146,137,227,27,117,80,134,44,37,220,92,199,222,197,221,60,93,130,216,111,0,53,52,134,52,100,106,109,12,87,194,151,211,198,118,138,200,47,171,237,118,134,153,255,177,134,114,142,190,80,70,1
 56,150,28,246,84,120,30,118,94,85,149,250,33,120,183,155,200,70,228,174,239,223,78,46,128,226,193,118,183,68,113,128,107,242,113,105,30,68,230,1,187,237,172,161,95,207,234,127,113,221,203,167,216,51,101,32,56,97,88,207,230,150,233,76,86,88,49,16,26,67,108,235,209,102,153,175,110,172,56,6,92,73,170,147,165,2,97,147,119,211,73,245,29,11,203,114,175,248,239,70,178,190,27,210,222,32,112,68,166,123,255,100,97,245,202,218,215,45,163,54,247,167,221,110,182,189,213,45,77,252,107,26,226,167,60,90,83,255,30,218,230,164,50,104,142,145,4,166,175,225,119,153,226,74,185,39,83,249,224,70,202,149,139,22,10,232,97,160,40,160,104,210,184,217,199,52,163,77,198,173,17,180,196,227,128,56,42,132,202,220,24,77,88,213,251,75,15,200,93,87,237,79,175,49,171,155,78,77,168,113,197,152,174,239,100,133,229,152,113,221,186,201,234,239,84,40,189,142,128,183,212,149,101,161,89,200,214,249,251,91,47,248,235,238,42,247,59,158,121,61,233,218,213,70,11,85,69,169,204,75,217,56,102,20,40,31,171,29,24,88,7,224,234
 ,31,47,152,94,226,204,26,40,73,115,202,70,220,98,235,10,241,135,146,54,119,89,188,147,108,51,213,232,203,161,39,149,184,162,213,236,81,12,58,91,63,163,218,194,114,56,137,180,162,115,68,77,193,99,155,87,118,193,74,136,62,151,16,225,72,153,244,228,229,64,21,149,85,228,28,27,23,34,30,10,99,15,67,24,220,145,128,11,176,236,101,101,226,83,72,65,94,199,206,103,202,7,6,162,222,109,25,123,171,166,127,203,181,49,20,72,68,153,46,109,82,225,237,128,88,184,57,77,43,208,213,200,219,73,41,113,166,111,39,3,28,158,101,121,217,52,29,85,210,14,178,3,157,126,94,76,223,9,206,252,150,192,97,141,104,221,63,81,53,10,27,246,41,97,220,252,242,75,208,213,239,203,226,146,247,230,98,145,166,70,139,159,26,123,222,121,28,29,145,104,103,200,65,175,75,91,185,125,88,17,18,125,253,6,233,17,211,67,152,171,246,239,87,146,192,106,124,235,235,157,197,177,52,60,77,124,183,186,159,222,36,127,21,35,81,111,107,93,98,110,57,64,33,123,100,5,179,176,162,152,38,119,12,217,232,52,187,167,27,81,246,12,246,193,145,223,132,2
 0,95,234,169,205,249,49,179,161,237,127,160,0,73,1,215,250,229,214,192,22,49,236,90,10,69,138,31,253,59,135,200,22,248,18,4,130,81,244,19,80,200,29,153,207,189,231,241,183,239,114,197,129,22,128,87,122,217,154,172,0,192,66,52,222,121,49,247,24,209,227,187,214,41,187,150,146,12,210,124,1,142,159,63,73,106,111,117,106,100,111,145,124,130,160,86,26,145,40,122,222,25,34,221,132,206,133,123,209,56,214,141,218,70,159,246,0,217,118,82,165,242,232,134,209,175,11,117,169,122,216,26,228,81,128,135,32,184,188,100,106,94,123,13,46,4,151,106,136,19,161,147,234,110,221,31,85,163,187,207,126,78,188,252,76,166,82,37,247,181,55,180,112,251,93,139,60,127,25,215,165,145,197,236,109,124,122,18,106,154,246,82,13,147,152,122,38,23,71,177,139,231,51,67,78,139,144,149,133,39,16,92,118,160,32,246,155,236,1,201,111,236,53,128,16,17,187,233,33,236,42,140,147,214,57,147,23,80,107,47,129,50,21,71,125,16,5,78,115,148,245,29,76,112,33,45,81,114,195,56,41,82,200,214,126,146,211,132,99,59,156,89,131,173,142
 ,128,168,183,94,45,167,79,28,175,247,188,74,228,46,30,43,238,236,108,238,147,157,126,133,155,140,44,31,119,25,45,181,180,102,112,242,228,163,18,105,56,142,191,168,241,171,57,98,31,192,147,172,248,134,181,230,141,161,16,164,32,185,22,126,248,119,78,59,169,42,206,48,175,105,128,204,102,37,129,141,161,211,152,33,132,65,35,123,225,156,90,65,104,101,32,28,8,40,25,236,68,216,229,107,226,221,150,168,75,213,221,68,90,47,90,244,220,24,76,17,236,186,193,163,188,247,207,194,56,153,218,12,84,122,23,248,7,152,250,110,222,219,232,93,13,213,154,124,49,86,239,112,139,181,39,158,177,158,209,105,251,37,149,135,72,35,46,50,54,17,187,77,81,145,226,93,78,71,108,130,251,92,35,163,118,155,31,58,236,154,48,213,10,39,37,216,186,19,41,74,176,123,50,140,8,142,92,50,126,94,194,56,17,39,93,192,203,41,61,113,209,3,87,222,67,180,160,189,207,101,189,135,228,42,164,113,107,81,59,226,214,236,224,71,91,200,128,89,0,82,164,22,141,106,124,179,79,58,185,27,164,92,235,76,224,173,213,7,224,161,116,187,230,51,193,6
 8,250,134,245,77,82,211,53,146,222,60,74,149,181,138,185,208,223,112,111,53,119,68,86,160,240,80,209,91,215,40,236,240,127,70,226,249,208,40,163,161,185,4,40,115,49,176,33,101,187,175,21,234,211,2,98,53,193,196,224,236,162,231,191,149,63,235,77,254,246,106,167,130,98,138,65,98,177,206,125,179,19,74,48,109,69,211,241,23,140,170,40,182,165,230,224,238,180,56,37,38,130,120,244,171,69,182,151,56,229,91,95,203,99,143,61,140,64,128,235,165,120,68,160,48,168,10,30,34,137,157,27,50,15,119,7,60,14,122,154,160,128,219,146,105,250,170,245,10,196,221,249,34,107,149,134,4,56,191,150,122,110,7,233,188,216,168,74,109,144,108,113,192,128,94,165,197,191,24,188,243,242,107,69,2,54,233,164,253,46,95,229,6,29,90,232,87,210,148,191,168,120,1,181,74,233,27,62,170,212,251,119,103,201,114,45,73,42,19,140,212,157,143,71,217,81,187,229,23,214,94,89,228,33,151,195,157,76,44,102,218,28,87,7,182,35,86,154,250,173,188,234,115,111,60,36,27,84,32,85,188,131,183,209,95,175,221,165,232,39,107,126,226,95,55,1
 75,28,213,88,143,203,77,83,119,175,73,221,91,44,61,195,73,138,182,229,236,26,171,106,78,133,48,119,236,27,136,72,113,106,248,4,212,29,115,124,20,101,208,111,161,167,78,163,74,141,29,206,28,217,92,33,181,7,197,75,195,247,0,149,72,163,139,133,241,163,94,124,245,101,56,194,108,247,123,7,211,118,50,240,170,162,40,3,45,133,144,125,244,225,185,157,89,92,84,35,20,70,192,243,11,65,137,201,253,18,19,141,10,113,220,49,117,157,142,33,192,7,60,230,159,238,99,200,67,157,102,241,81,183,157,232,141,195,29,191,47,59,52,223,114,233,45,189,34,102,77,127,12,105,68,130,150,236,172,153,110,194,137,98,108,158,63,162,55,129,3,7,228,87,137,52,10,61,121,231,20,48,70,52,163,122,252,84,205,237,16,174,11,100,71,180,119,173,34,98,146,17,205,184,228,212,38,130,112,190,135,62,152,44,17,173,143,211,144,201,85,23,39,126,138,36,49,250,183,29,172,126,33,81,107,200,198,58,116,103,63,224,175,45,249,222,64,144,217,213,97,124,203,106,24,187,193,235,139,188,74,19,121,172,47,71,171,175,239,158,218,19,109,38,70,92,1
 06,19,64,16,87,230,209,148,101,7,238,226,201,79,5,37,82,195,57,78,124,164,245,25,175,186,111,53,22,25,68,218,150,205,8,125,66,153,63,125,201,154,203,234,165,51,144,138,191,102,90,58,233,37,226,128,254,97,27,123,81,161,169,244,129,110,35,91,95,150,187,28,249,232,239,79,135,171,66,235,130,19,91,56,206,123,59,39,207,175,95,57,255,184,12,86,207,62,140,7,149,18,132,147,217,109,175,107,219,204,164,129,209,124,110,113,245,129,121,8,0,224,91,252,176,8,45,69,126,206,151,15,226,134,174,32,26,219,226,231,23,85,241,118,138,94,63,114,239,40,71,175,137,191,124,141,1,103,134,55,14,231,223,0,254,109,89,180,203,116,176,162,221,148,224,159,221,183,128,67,16,205,216,234,194,110,17,203,217,67,77,27,148,209,112,189,138,75,175,128,237,84,1,111,72,27,34,53,127,85,61,19,211,85,226,81,238,211,22,213,188,65,215,167,227,139,236,94,210,140,239,6,128,190,176,145,203,106,37,145,221,115,64,90,146,63,223,27,167,32,63,163,128,152,12,30,199,167,192,81,179,140,57,175,122,35,182,78,149,20,26,64,72,180,142,37,1
 23,204,102,216,153,241,100,41,131,57,50,29,238,37,29,62,46,247,52,69,0,55,201,215,166,103,70,162,49,196,74,40,22,91,30,60,39,101,94,143,39,232,241,40,198,107,114,242,0,103,41,129,123,161,138,201,0,3,186,217,224,162,1,25,252,51,119,65,112,145,114,69,105,125,74,63,138,234,20,116,155,125,180,73,112,44,24,13,93,152,211,228,2,204,114,149,196,172,74,96,195,211,181,239,195,36,162,27,113,141,27,94,35,34,64,57,96,188,56,240,212,206,153,251,241,88,24,108,37,133,7,211,61,81,138,177,163,31,59,99,95,95,119,225,53,148,13,130,216,125,23,71,93,71,184,49,192,22,175,128,25,130,20,57,240,6,175,212,44,246,136,246,71,246,191,120,98,146,153,92,230,95,128,232,75,188,19,79,85,65,192,148,36,176,94,153,191,99,81,188,69,107,186,25,151,211,224,22,220,147,91,2,75,83,255,230,216,129,67,251,202,90,1,233,205,141,63,32,135,197,33,169,30,214,206,40,171,190,116,14,149,225,234,2,177,27,96,4,220,179,155,133,147,115,157,137,81,110,122,58,219,44,149,91,111,165,193,91,92,168,116,8,21,127,166,239,143,82,52,64,112,1
 68,88,162,220,195,135,5,4,37,157,67,237,36,69,130,18,165,122,109,62,67,244,241,81,250,182,150,79,115,220,182,148,175,28,157,244,236,164,35,164,174,243,222,118,112,7,82,146,11,43,200,59,133,110,214,205,41,221,10,86,42,244,177,19,209,108,9,60,238,169,171,102,191,82,254,122,162,51,221,36,16,31,69,91,234,10,5,194,24,129,25,181,187,218,77,87,54,209,189,128,198,101,26,91,1,13,88,210,21,220,128,159,12,111,151,176,136,37,53,14,128,182,195,165,237,25,85,177,0,118,183,87,161,193,245,69,211,152,150,86,54,196,250,8,253,219,175,31,42,201,102,122,12,65,86,123,88,11,90,42,204,85,95,85,73,162,77,120,135,152,84,163,237,57,247,56,12,199,225,62,86,104,165,54,128,67,140,105,210,64,198,158,164,42,222,13,180,152,138,211,213,126,241,207,137,229,129,81,251,243,121,156,224,156,66,45,174,80,199,106,91,145,218,159,70,78,125,246,18,76,118,166,71,146,91,213,111,52,196,140,10,221,25,169,135,201,90,157,188,213,157,4,150,166,67,18,253,42,30,78,64,187,43,239,142,27,220,102,163,77,32,150,231,221,182,196,95,2
 11,107,193,139,233,27,247,12,13,3,0,114,239,149,144,99,39,184,112,25,184,168,219,224,69,234,2,159,122,37,203,167,99,227,147,114,106,144,18,252,242,80,196,29,0,244,94,248,77,230,79,182,36,71,217,153,240,158,163,124,220,212,153,131,36,166,247,141,240,164,69,200,140,183,2,167,104,236,35,178,167,206,107,77,139,67,172,132,27,240,170,181,99,42,147,7,30,227,55,0,208,116,211,6,246,246,128,210,231,58,102,8,46,78,22,183,240,229,152,143,39,244,20,102,9,221,158,215,164,145,127,150,34,94,162,196,45,232,198,250,248,215,28,171,142,20,30,254,118,32,40,6,254,97,42,82,2,231,112,106,166,177,143,96,156,246,102,145,148,190,170,151,58,59,63,87,20,58,66,36,175,38,231,142,175,33,140,157,44,125,126,98,94,88,147,30,101,24,66,113,111,111,81,220,174,29,235,26,199,239,23,52,74,117,141,135,77,66,242,200,241,128,136,213,236,228,246,192,63,194,136,218,172,173,240,49,176,160,195,24,25,93,176,103,120,229,181,12,7,46,176,191,164,220,38,82,48,1,70,165,217,167,153,237,184,45,112,215,232,40,245,140,164,184,19,10
 0,15,161,113,105,110,252,187,243,21,46,115,56,31,74,153,244,178,230,225,79,48,185,145,237,73,101,210,238,220,108,57,200,105,62,247,44,165,244,226,239,220,2,48,65,86,87,253,8,153,112,125,174,87,135,142,231,105,156,250,147,173,72,129,203,105,129,87,6,153,163,47,93,84,146,214,91,2,174,28,210,39,75,190,231,227,159,225,116,131,205,145,13,51,255,11,71,219,102,2,119,87,221,212,229,249,87,149,52,76,51,120,161,35,188,93,238,64,26,114,169,131,124,218,203,113,48,138,113,181,144,42,255,150,1,40,117,62,174,103,189,157,202,206,237,237,10,37,232,150,22,30,137,215,202,241,192,236,178,88,159,157,6,19,181,234,162,48,23,134,167,68,137,79,212,13,231,144,239,191,64,188,127,146,15,154,174,244,76,45,36,233,151,132,136,33,205,7,66,194,101,246,135,32,107,105,88,186,129,54,30,26,183,106,179,238,44,173,105,140,47,115,150,82,108,176,118,143,58,205,18,117,151,25,43,28,240,194,176,161,254,216,153,235,147,70,59,177,79,162,17,109,14,103,235,150,171,32,86,135,88,206,80,171,218,63,243,222,248,26,152,96,61,52
 ,242,83,209,182,28,188,240,82,146,162,30,72,203,106,76,222,208,10,71,70,51,46,97,122,7,160,244,172,148,15,8,172,137,108,237,246,4,96,226,255,231,7,22,202,77,142,255,4,248,196,148,50,48,37,45,85,212,62,146,196,72,40,80,85,191,1,121,112,110,56,147,17,111,134,58,70,19,211,105,151,198,211,40,94,104,132,196,140,32,40,37,8,190,49,217,101,142,47,43,250,176,102,105,249,163,10,101,203,183,234,91,70,28,89,136,82,234,234,235,151,237,226,84,37,54,52,203,60,30,219,68,119,106,35,68,195,109,0,188,233,175,195,24,54,93,227,211,130,227,173,131,167,30,237,7,251,14,1,213,116,9,61,23,157,25,156,176,158,81,128,200,153,12,12,150,134,39,127,98,55,4,46,58,191,151,228,244,4,216,179,211,99,9,14,167,232,244,13,128,141,63,47,123,120,206,125,187,85,149,5,128,5,22,178,30,122,55,25,183,181,86,62,130,104,130,182,81,232,72,149,192,99,27,214,107,158,23,44,205,140,61,78,201,252,173,223,122,100,60,171,212,187,98,32,201,89,128,200,205,223,162,4,164,3,246,97,167,88,230,150,253,101,198,217,123,79,38,74,158,55,12,3
 ,240,146,250,180,226,70,84,15,211,58,86,196,94,204,127,239,141,155,142,190,211,203,81,206,93,105,3,235,213,9,47,201,61,53,21,179,37,196,243,17,112,51,234,146,15,248,45,66,206,104,48,189,136,254,30,202,85,134,237,117,207,204,61,145,48,65,70,120,222,230,125,221,16,125,92,76,13,90,56,38,190,192,128,41,226,148,179,214,36,189,216,252,143,98,61,230,154,180,151,187,183,229,173,183,147,235,137,60,226,68,135,5,38,117,98,56,92,183,107,29,106,212,50,53,70,64,202,146,248,93,102,204,45,223,253,229,38,49,120,137,9,95,196,150,129,231,189,183,220,250,111,189,233,213,22,116,50,18,175,255,187,184,92,54,83,164,6,228,189,63,205,76,181,147,4,114,37,93,159,2,149,212,221,163,217,3,167,90,173,136,31,121,174,247,237,16,69,249,246,200,1,187,98,51,51,132,44,148,196,203,185,52,34,188,135,87,28,56,143,197,10,54,192,85,222,73,105,49,9,163,66,7,58,197,212,255,10,228,0,49,244,176,45,2,144,106,124,213,197,27,219,53,187,74,77,41,117,178,243,179,48,80,7,195,216,106,99,227,3,142,23,51,155,67,153,156,36,157,218
 ,77,246,192,165,31,246,255,188,34,220,30,249,233,119,129,103,19,54,34,199,198,181,31,15,95,244,223,108,104,138,246,137,175,5,161,228,166,145,230,173,23,102,11,51,103,115,140,216,212,74,231,169,42,227,209,216,112,76,182,207,44,50,84,41,13,226,254,216,91,107,231,190,177,31,218,52,189,229,128,205,135,237,145,129,120,254,14,224,79,132,71,151,77,240,108,245,27,164,129,24,107,71,190,16,124,173,224,120,1,251,78,75,168,152,108,255,157,145,20,105,17,165,41,205,214,175,71,24,190,232,162,225,9,46,242,221,136,231,144,165,245,26,41,183,222,108,153,42,0,164,201,182,165,0,9,101,70,126,114,47,40,222,165,40,173,71,154,226,144,218,12,115,231,33,197,55,153,114,139,169,130,48,87,188,186,68,199,181,202,191,74,26,178,22,15,232,251,240,45,34,53,33,251,78,79,2,139,117,151,203,209,7,180,111,227,149,242,164,117,226,2,84,20,247,54,202,195,61,106,31,86,15,49,67,211,223,145,0,180,16,7,201,183,128,118,131,10,92,15,250,197,82,208,51,203,56,63,113,207,128,221,111,174,227,71,214,139,195,161,180,215,44,6,169
 ,211,196,22,252,52,119,152,95,184,51,202,140,162,125,8,169,164,90,101,195,83,194,93,128,135,115,48,224,213,54,168,125,110,60,108,252,240,11,194,239,151,141,142,223,59,212,123,239,113,223,196,51,31,85,70,55,236,20,236,149,202,70,79,88,52,200,66,179,1,179,133,191,249,185,80,203,180,237,116,200,67,203,148,122,5,98,4,189,137,61,98,29,138,23,16,121,232,120,128,202,144,68,34,74,129,35,201,183,103,102,129,206,55,245,62,16,61,12,213,86,123,248,99,61,131,255,20,86,36,176,103,66,187,255,206,140,128,29,122,46,21,160,120,66,140,9,172,205,203,239,208,220,237,159,31,209,40,53,88,213,166,47,53,25,194,92,61,94,175,165,63,130,248,121,185,106,204,23,194,62,86,237,253,81,169,210,50,160,220,97,137,32,171,171,96,196,196,118,31,189,208,111,210,16,56,38,110,17,135,28,5,45,200,185,18,255,132,192,249,51,186,134,63,55,13,134,150,224,164,17,175,226,124,74,186,70,37,85,120,108,236,238,132,147,46,161,170,195,245,241,126,59,200,57,190,174,204,55,139,205,202,138,40,153,129,74,72,124,166,231,66,218,8,95,24
 2,7,105,191,65,68,59,239,19,209,101,10,82,85,61,198,224,240,226,147,101,147,129,179,109,227,187,28,166,235,207,216,71,155,29,99,224,15,34,11,252,60,216,194,253,13,158,192,29,29,240,120,46,238,47,205,141,2,253,218,113,154,2,13,31,20,177,141,20,205,147,101,96,91,148,175,85,52,140,208,9,244,131,243,192,5,20,61,210,243,25,73,80,211,71,239,198,194,74,57,55,155,106,219,94,194,89,98,171,188,86,200,183,113,84,14,183,29,31,18,82,98,200,144,199,46,201,154,140,51,192,211,115,183,214,88,219,107,67,84,216,72,180,82,84,34,129,196,164,108,235,146,7,135,110,100,91,208,253,20,167,49,113,3,63,33,209,163,27,194,247,255,92,196,220,136,226,89,209,234,190,232,231,167,97,127,111,26,231,150,64,147,66,153,187,159,50,113,247,100,2,237,141,115,47,151,143,134,28,111,161,8,9,178,12,32,44,184,107,97,34,215,7,254,251,78,53,231,92,98,123,150,245,248,164,67,57,76,205,139,41,118,238,201,176,202,3,39,74,81,123,158,232,73,53,191,148,3,11,249,247,12,111,95,52,47,116,144,147,160,49,20,199,238,215,200,127,73,170,
 209,134,135,36,87,234,147,83,149,106,106,94,46,247,95,58,78,164,171,139,198,190,183,243,137,188,191,233,136,26,95,19,158,135,226,220,44,158,34,131,179,138,136,79,57,40,77,197,5,115,196,34,201,50,206,155,131,50,193,205,152,79,147,159,31,138,210,198,204,118,208,221,222,214,102,227,39,216,23,58,47,223,249,128,90,24,183,145,121,32,160,178,150,194,6,91,104,12,249,187,35,250,121,58,128,234,252,109,201,252,88,132,193,33,61,76,102,105,66,222,39,135,68,77,28,132,112,206,193,45,213,108,140,108,132,239,11,213,84,251,114,252,237,188,10,75,134,131,9,115,228,244,195,21,77,46,101,186,6,56,35,214,241,2,157,150,106,24,243,140,134,110,235,204,227,221,112,11,250,128,101,169,171,1,234,6,173,157,52,35,235,172,54,234,71,46,13,218,178,198,180,61,41,165,25,30,113,74,135,6,143,158,179,242,54,96,219,249,225,226,33,253,6,105,165,59,7,107,210,45,58,91,159,128,168,184,9,80,35,26,167,77,140,74,173,168,165,147,75,66,192,179,227,218,182,224,89,179,127,163,149,181,206,119,155,65,170,173,205,139,101,56,44,11
 6,150,246,70,95,190,171,134,163,115,180,146,113,223,189,75,245,121,6,189,68,221,57,174,17,226,224,231,203,93,58,27,5,171,153,219,215,233,79,222,149,194,102,249,225,196,109,38,190,46,136,174,226,53,249,205,74,173,30,142,34,163,0,115,38,198,217,231,174,23,163,89,55,206,36,114,236,120,69,222,191,197,83,216,86,24,243,60,118,197,188,59,154,249,83,133,14,100,231,88,218,250,110,113,44,36,132,112,233,119,143,140,178,89,41,176,244,206,98,157,108,53,119,160,247,67,189,188,205,102,223,247,55,155,227,129,241,32,16,13,38,255,121,52,37,200,173,242,14,251,148,185,143,239,86,154,32,171,117,234,253,92,245,158,136,224,46,31,129,100,143,140,246,167,41,44,39,72,224,246,193,166,194,73,40,0,173,97,46,29,220,14,198,37,50,80,23,45,45,18,249,17,137,5,79,117,222,123,68,123,100,87,90,44,206,71,208,215,205,221,75,205,177,148,8,138,109,60,20,101,129,223,248,249,250,194,79,163,98,57,133,44,14,239,62,143,104,1,230,22,29,53,162,5,24,69,132,157,125,239,86,244,205,12,165,45,85,88,195,206,20,232,233,42,241,17
 4,135,97,8,11,167,117,37,119,217,236,246,50,242,41,19,220,192,61,180,209,165,124,70,230,254,187,159,133,136,249,38,189,59,105,201,64,241,117,187,80,167,76,250,208,221,88,6,229,203,152,128,15,19,106,226,216,23,226,140,148,215,231,163,82,79,226,234,54,200,137,56,8,97,227,215,241,15,130,11,70,144,127,101,117,75,200,154,67,255,225,244,79,182,14,116,4,54,164,206,223,174,189,214,39,42,17,235,187,165,53,2,51,226,9,74,121,223,175,224,171,36,121,25,104,157,238,23,91,214,152,206,10,240,255,209,68,101,213,4,89,66,150,182,72,186,191,242,150,179,187,142,17,168,116,137,218,77,63,218,218,255,89,63,237,127,82,242,161,23,195,212,3,69,187,148,37,178,181,159,193,214,238,52,17,56,64,151,14,61,235,227,220,111,224,141,87,91,160,124,39,8,47,234,41,191,221,243,185,36,12,148,239,252,1,159,112,152,45,231,147,74,6,92,196,4,86,5,49,25,157,109,51,56,69,169,250,91,127,232,143,193,182,216,23,19,219,125,104,27,56,253,19,21,169,251,77,74,168,125,165,205,233,199,87,186,245,8,73,237,16,124,188,230,171,52,180,
 175,209,72,237,115,151,162,191,220,183,154,168,111,70,152,150,17,103,90,253,86,42,38,183,255,187,112,163,228,237,48,113,7,133,163,76,142,25,155,181,159,104,233,144,163,145,192,179,179,35,188,233,175,162,190,215,29,116,61,181,157,102,11,121,235,145,19,42,25,60,126,108,218,52,32,226,52,184,45,203,227,115,100,31,69,209,136,198,22,139,19,74,24,35,54,17,61,118,64,161,28,105,111,195,189,49,14,139,216,223,190,163,152,45,168,3,175,187,149,170,67,146,165,195,233,29,220,254,217,228,14,84,12,192,67,177,158,149,19,59,135,49,29,2,109,39,50,193,108,198,99,53,32,20,39,30,121,143,243,105,96,127,139,204,58,22,11,47,157,22,5,86,91,157,120,59,134,55,81,230,65,118,84,107,145,211,82,249,17,178,136,176,170,33,10,122,199,51,74,150,187,100,99,161,236,123,1,71,27,70,93,12,252,96,227,41,203,250,193,120,135,240,63,230,253,197,251,163,92,90,218,130,8,13,116,142,113,63,2,92,207,58,36,9,93,175,252,173,82,173,244,29,234,36,156,88,3,250,120,123,43,248,230,11,17,241,14,176,207,127,9,233,235,198,179,155,83,5
 9,251,92,191,29,74,223,61,45,181,115,93,114,192,141,144,16,98,80,170,180,199,14,175,228,199,79,122,147,227,243,39,62,191,64,179,163,128,62,64,21,217,66,242,65,29,25,145,182,228,6,20,11,247,208,185,175,180,69,164,160,73,224,96,248,221,44,253,31,213,169,185,202,182,47,204,216,85,150,166,47,98,168,94,70,71,114,231,33,224,198,227,9,205,211,88,213,234,29,114,103,219,213,140,91,167,206,14,243,221,173,233,171,164,139,231,153,91,191,2,197,207,174,164,34,176,42,70,87,252,43,50,223,68,98,179,17,6,73,12,139,139,85,132,158,58,64,71,60,121,29,184,167,199,143,115,136,55,249,6,252,207,161,204,8,48,135,168,121,109,199,251,72,242,106,213,127,78,236,252,204,144,108,50,48,214,118,240,86,211,135,210,64,189,206,99,23,152,205,149,183,146,246,21,242,13,214,44,164,120,30,177,51,154,131,126,22,38,43,207,3,0,100,188,54,105,63,208,194,201,124,180,145,170,172,44,99,113,226,17,69,81,100,78,56,183,133,19,118,19,92,38,157,168,112,185,79,58,98,210,192,149,109,35,113,93,202,239,77,146,196,231,67,98,100,207,
 82,195,176,82,162,148,90,198,51,240,82,155,11,172,169,2,134,221,52,188,246,194,124,189,203,78,103,248,68,58,46,209,202,104,29,146,13,11,255,124,179,157,41,64,155,34,148,67,248,36,57,134,228,117,145,120,51,114,101,225,31,105,93,241,179,198,62,186,166,216,151,243,162,19,106,219,19,34,91,162,116,212,243,145,18,119,200,7,110,202,90,252,97,30,128,85,91,221,31,228,174,14,188,176,61,178,214,200,216,181,181,172,222,219,244,197,214,28,32,65,79,144,134,26,126,238,164,43,97,238,63,34,206,191,4,124,220,129,49,54,153,39,247,220,126,130,178,110,222,181,159,68,103,144,221,143,115,90,131,110,224,80,78,6,130,179,155,248,40,88,19,75,160,254,137,145,190,5,146,191,99,75,77,45,160,83,24,94,164,211,72,27,253,112,184,104,101,88,180,96,98,85,71,241,189,173,241,42,176,142,153,56,112,19,70,245,206,165,163,83,65,158,6,197,242,122,215,61,115,95,123,101,33,3,131,184,151,224,33,55,212,13,55,27,170,208,68,80,108,47,8,174,220,36,129,214,83,32,63,45,237,223,138,103,89,143,97,137,136,13,208,107,20,74,31,242,
 245,23,100,66,170,0,218,180,184,175,100,189,76,205,126,139,235,209,143,149,9,119,81,208,205,126,1,246,253,170,58,205,8,219,164,11,30,3,58,186,132,17,255,255,34,17,238,186,50,206,227,226,20,65,55,66,69,78,248,165,55,144,134,224,60,137,7,33,221,47,144,82,252,3,176,132,83,134,207,71,179,89,24,46,198,180,24,141,168,246,37,32,44,71,59,196,237,193,174,167,148,85,181,159,79,105,234,144,120,93,163,198,127,51,239,69,236,229,233,141,59,147,229,59,66,15,107,201,220,48,103,151,138,200,11,115,148,103,227,94,68,48,198,231,57,230,186,122,48,88,186,168,193,245,36,187,176,139,33,209,203,79,225,230,195,6,230,228,200,34,53,145,199,132,230,28,199,140,163,177,102,45,220,178,30,143,124,1,51,3,10,56,217,88,244,40,26,83,137,253,111,55,43,251,155,60,149,143,239,225,210,64,65,146,122,137,138,175,147,26,98,69,239,219,160,148,37,196,125,222,206,239,129,174,169,218,71,104,149,19,135,122,207,136,184,56,15,196,89,170,2,136,194,42,170,77,170,94,58,180,37,174,107,141,91,247,242,238,61,154,191,151,100,29,183
 ,175,34,234,154,98,120,130,156,106,12,108,246,89,136,143,209,47,7,149,36,209,61,226,112,7,254,131,120,22,155,128,105,118,180,165,174,236,59,60,169,46,216,76,54,62,22,186,225,207,105,163,8,47,172,42,252,107,223,61,116,64,164,250,250,105,101,14,35,109,59,2,55,178,238,35,137,208,111,83,38,210,149,120,229,142,219,107,70,151,91,33,129,37,25,199,215,101,108,184,224,188,184,67,253,249,47,214,126,82,61,176,196,122,93,217,121,141,30,149,201,155,140,4,93,159,73,73,116,184,112,123,230,184,243,32,126,98,133,236,7,13,78,22,160,72,17,163,110,93,167,37,175,138,199,205,84,45,96,6,65,170,46,211,35,211,15,189,84,83,83,175,84,176,154,123,17,157,219,188,220,138,170,12,151,41,87,71,59,10,233,92,202,111,13,228,137,17,7,103,212,130,65,138,144,13,30,220,150,120,247,129,14,236,174,165,136,123,93,108,197,67,20,247,158,156,133,37,134,187,138,76,175,255,60,113,23,49,95,15,9,233,255,129,67,119,252,98,106,185,241,173,28,136,71,83,141,105,89,42,16,26,186,76,255,167,157,211,199,153,21,51,210,199,235,40,250
 ,37,9,226,87,167,157,164,45,17,180,32,162,8,142,143,209,178,167,69,179,0,1,55,212,201,78,58,237,146,182,28,187,197,118,85,90,130,87,50,121,76,126,220,27,118,78,177,141,210,198,158,240,137,41,70,241,51,243,15,199,252,66,161,86,223,38,49,229,11,139,211,31,231,83,220,245,155,159,126,93,88,72,31,123,79,70,107,15,239,7,223,191,181,217,250,82,82,96,246,48,245,41,226,80,153,195,191,2,35,185,69,194,45,11,243,168,27,149,138,172,36,23,82,209,28,229,246,215,209,70,212,214,141,52,110,238,83,212,181,77,108,93,52,96,74,43,8,110,142,43,156,180,203,186,119,108,45,203,150,135,50,125,39,219,95,223,212,186,206,43,180,139,213,132,27,108,76,210,95,31,174,184,203,225,216,35,2,128,48,246,127,36,223,123,54,103,213,45,201,231,10,200,188,192,48,15,178,126,71,247,6,27,110,25,85,151,93,1,65,208,40,222,180,85,201,132,56,9,150,182,100,145,164,135,71,116,142,180,140,24,63,19,64,51,195,254,96,82,25,77,43,148,217,94,237,249,254,170,213,248,108,194,71,255,29,88,110,148,166,53,249,195,167,25,93,145,162,218,96
 ,98,159,216,153,195,9,110,223,83,86,104,130,62,239,58,145,23,20,21,140,85,125,221,49,175,3,203,46,249,40,62,142,224,71,202,11,13,11,80,240,131,38,237,201,240,22,230,92,101,48,64,170,73,193,5,29,134,182,218,227,6,243,28,228,52,236,173,102,187,39,31,249,186,69,140,24,61,174,68,105,228,195,93,32,100,47,188,130,33,246,224,210,250,179,140,165,23,3,206,50,43,115,46,32,91,115,115,251,153,75,25,112,27,216,194,168,64,113,66,11,174,223,160,17,69,209,69,239,53,185,67,139,248,67,199,248,127,146,84,212,189,25,194,188,47,40,56,72,21,147,26,210,134,154,30,75,205,26,183,60,138,167,95,107,54,218,220,254,46,52,11,98,245,192,128,227,121,0,156,204,240,203,154,57,63,2,221,187,147,217,253,89,47,78,19,110,255,218,183,245,210,240,2,183,148,229,223,58,218,162,248,45,156,238,178,122,164,64,111,139,166,49,94,75,72,92,96,218,156,188,26,43,88,139,125,83,166,163,92,209,8,10,227,106,41,93,166,25,93,38,194,120,157,57,242,155,140,0,62,58,65,56,14,130,131,216,14,115,134,69,170,185,216,70,118,12,127,64,188,53
 ,118,141,248,0,163,43,157,165,209,98,168,100,225,102,7,40,131,161,201,67,253,106,178,165,205,163,89,201,18,250,174,64,165,133,120,217,244,156,237,90,11,252,188,254,156,11,229,252,211,60,228,166,202,4,10,154,31,163,171,76,143,221,122,33,236,47,19,190,70,126,77,96,86,153,61,175,161,27,206,64,240,188,124,21,253,195,127,172,20,26,38,203,156,62,179,102,19,68,208,185,20,216,173,231,198,237,4,52,86,78,99,136,171,197,230,70,84,185,188,190,120,5,174,240,207,166,31,58,86,152,8,62,219,183,187,110,0,48,8,229,172,38,253,197,190,2,13,250,42,212,102,117,58,202,166,5,253,118,35,124,13,93,43,106,37,68,28,237,146,86,210,199,25,128,88,180,237,223,164,235,3,18,224,30,149,173,150,188,25,30,200,135,192,147,158,227,149,164,225,56,57,140,1,2,134,136,138,176,166,214,24,58,58,203,146,187,71,126,114,11,70,144,226,67,167,228,54,13,205,219,157,161,35,39,221,145,140,44,170,121,101,221,21,36,96,4,123,217,193,62,218,141,247,186,167,220,200,1,91,20,227,149,89,66,227,200,118,123,239,165,8,177,85,180,21,116,2
 18,26,76,27,144,161,135,52,168,118,72,202,112,219,144,0,194,130,26,253,20,241,203,213,61,247,40,208,237,202,13,88,192,131,98,150,222,84,83,5,44,59,3,52,59,243,19,38,209,244,53,15,92,113,124,45,104,14,60,121,141,86,75,254,250,121,135,42,154,170,248,238,104,31,145,76,217,192,166,151,119,242,18,8,83,115,106,228,67,176,49,181,82,37,177,7,127,207,182,81,72,151,125,68,36,190,109,141,166,81,221,221,225,25,197,109,86,154,232,27,43,124,67,131,189,126,68,180,201,95,76,131,238,76,165,202,23,55,248,25,14,147,249,54,14,117,80,98,139,190,127,166,20,123,208,243,18,63,141,74,185,61,19,196,178,180,58,93,178,247,227,8,142,1,174,18,59,195,110,104,36,43,10,65,9,189,72,225,185,163,178,211,198,87,130,70,65,244,100,110,47,27,75,133,148,11,19,70,107,103,141,40,89,92,238,1,164,95,146,145,39,20,139,146,124,2,227,123,109,79,168,81,71,30,161,152,215,141,117,107,43,189,154,83,55,171,252,28,231,10,235,159,82,146,61,232,180,173,95,155,9,122,252,0,173,57,253,74,35,189,130,195,56,76,28,139,184,226,26,177,19
 5,99,88,16,204,213,119,165,45,235,156,14,183,60,157,204,98,51,76,161,199,233,53,212,190,86,239,95,204,48,193,147,28,94,228,21,105,181,168,144,11,236,27,33,140,220,42,50,36,61,253,103,16,217,41,90,4,165,42,204,153,72,185,86,148,14,108,168,196,246,111,176,129,244,215,111,107,230,7,111,254,140,79,98,60,55,161,230,55,251,236,207,45,245,47,156,225,114,157,254,209,73,147,158,243,207,136,10,28,29,255,22,27,93,125,241,199,132,62,225,19,86,232,204,246,211,22,3,76,193,169,4,199,194,156,226,230,251,17,72,160,180,247,250,34,44,219,63,107,197,186,195,100,19,235,25,196,144,30,35,157,219,247,236,25,174,134,41,79,139,255,117,57,134,49,122,63,53,58,105,75,81,164,111,79,155,49,77,247,80,2,172,255,42,79,130,108,241,45,176,190,144,84,70,255,246,0,147,127,241,221,130,7,183,15,187,1,129,55,74,163,86,198,96,88,246,238,19,238,37,73,244,84,187,11,229,171,250,75,77,56,180,194,215,12,99,35,89,234,209,90,217,74,31,235,212,29,90,73,213,162,176,185,116,247,39,63,195,12,234,240,56,125,78,60,241,59,111,246
 ,231,106,52,174,38,202,91,165,140,173,10,142,93,90,107,3,193,124,56,174,26,144,117,177,199,27,14,179,251,62,172,164,144,98,47,174,226,252,21,4,65,174,111,197,175,58,214,122,17,36,230,211,205,162,138,151,80,77,190,252,77,25,62,35,81,94,10,75,145,105,153,37,223,124,231,244,194,89,195,43,19,107,118,161,229,178,193,121,60,22,223,177,18,71,82,73,150,237,231,66,52,191,200,68,128,36,50,71,118,135,27,26,54,140,75,11,34,180,218,47,87,236,167,107,206,203,109,12,218,71,103,20,139,251,77,85,45,55,159,2,229,141,34,145,7,173,134,219,95,162,19,24,133,9,172,34,182,129,34,101,198,234,137,83,74,26,220,112,24,28,248,69,34,113,100,150,154,229,30,103,101,245,203,252,184,132,65,135,202,19,244,194,234,149,227,147,122,226,190,102,20,70,26,46,202,34,245,96,152,223,99,63,242,94,21,70,187,50,189,1,102,209,80,235,190,132,213,50,12,212,70,39,122,238,17,247,39,0,162,181,82,19,84,235,81,217,47,103,51,95,33,84,62,57,59,218,96,145,190,13,164,142,116,86,238,186,227,225,60,229,186,161,223,124,54,116,25,59,215
 ,124,24,232,80,123,10,153,112,180,111,57,93,12,0,165,15,47,56,37,101,69,102,181,243,150,221,135,143,149,45,158,212,76,226,26,122,68,47,127,19,113,165,247,69,80,191,79,239,226,157,116,21,197,111,99,162,28,51,248,194,239,131,159,227,132,5,201,174,222,103,32,15,191,35,120,35,47,180,37,19,26,249,221,226,31,30,30,87,115,33,57,125,232,9,164,70,32,82,84,248,149,207,91,60,147,26,167,180,153,66,206,238,226,64,92,248,214,204,69,205,138,183,8,130,29,59,151,165,131,130,172,11,231,65,168,253,137,74,38,4,203,26,11,92,118,213,211,127,25,251,56,218,137,31,195,175,158,104,62,78,218,38,2,211,97,236,197,199,74,242,176,97,158,210,158,93,170,33,161,109,195,92,252,83,200,200,134,203,188,71,98,142,129,33,80,85,86,159,168,237,16,224,201,21,204,46,170,49,182,89,93,222,158,29,40,26,114,12,240,74,189,197,38,206,146,60,35,53,27,93,193,66,102,38,13,105,201,137,238,39,5,197,124,165,51,166,0,79,172,225,59,233,138,1,210,199,20,186,1,210,4,46,159,209,34,49,58,32,244,230,156,173,200,218,188,187,114,117,214,2
 0,239,48,13,80,152,147,63,212,6,188,230,0,123,61,176,247,226,231,37,128,169,199,60,142,84,57,168,237,216,104,225,99,229,88,101,190,210,64,114,52,223,54,195,145,242,17,173,209,20,13,240,119,133,32,127,44,57,62,6,92,190,15,88,5,89,65,220,81,101,43,7,156,223,109,30,151,98,142,127,107,61,145,227,169,171,107,214,225,208,41,202,172,124,53,143,138,172,212,205,213,231,226,58,22,33,126,109,86,33,38,225,31,58,3,184,220,58,67,243,187,104,133,233,183,12,205,10,23,213,21,20,6,135,116,99,226,211,14,27,9,121,215,212,0,133,38,71,36,15,53,100,112,253,118,77,251,212,192,183,169,231,238,100,209,244,56,162,163,66,244,231,121,91,55,128,2,23,239,116,116,29,155,148,242,233,41,150,175,20,8,44,134,137,58,64,81,233,45,34,234,55,96,2,2,233,114,116,215,2,166,171,53,228,9,117,205,61,212,29,215,125,150,253,98,94,221,248,64,249,203,24,229,148,131,227,59,146,143,1,246,226,75,98,238,100,226,148,227,63,210,37,204,144,203,3,110,244,11,179,14,121,237,239,135,182,101,249,176,154,217,70,241,166,190,92,167,5,149,
 106,66,46,57,169,94,227,206,15,12,94,69,106,74,236,18,123,178,153,163,169,81,118,251,158,56,13,133,251,19,195,89,105,93,212,144,127,1,237,0,102,246,103,60,190,155,94,59,56,133,234,179,42,72,38,135,128,53,239,52,120,135,27,44,159,226,110,217,51,73,250,159,67,124,159,109,73,108,15,4,160,107,203,148,57,214,186,115,218,68,37,152,177,106,241,250,182,164,191,166,211,161,74,61,31,74,18,98,227,35,223,168,111,61,61,60,204,197,74,159,151,222,79,57,169,46,61,121,216,74,254,56,188,62,134,84,19,11,247,161,180,38,42,162,94,139,253,48,116,252,124,66,119,25,204,102,79,17,213,95,153,239,194,234,82,181,153,48,152,68,66,177,71,86,51,135,95,136,133,114,96,100,247,166,40,207,105,121,31,242,11,17,120,156,83,201,89,197,56,20,209,192,195,10,173,251,3,74,120,242,239,236,109,171,213,59,138,252,89,94,194,34,36,247,152,115,238,8,18,165,127,40,16,210,116,227,46,40,150,245,139,43,39,178,241,71,4,65,13,235,13,189,6,151,86,111,38,95,244,25,163,63,111,186,225,11,101,229,189,54,215,198,117,171,109,174,48,43,
 57,170,153,160,64,194,12,79,156,66,173,163,152,6,188,191,221,62,252,166,209,188,194,92,157,75,150,35,118,150,183,67,76,64,207,169,175,223,83,228,53,10,122,249,92,106,188,3,78,46,221,52,154,194,2,208,127,91,189,122,112,202,86,32,100,211,63,159,206,210,104,169,109,239,67,202,221,11,208,203,116,81,175,85,216,56,234,59,223,38,153,81,189,52,255,221,37,52,236,203,184,67,20,28,196,92,21,8,18,185,157,35,131,176,26,214,84,195,129,160,25,74,191,152,32,27,139,0,88,57,125,238,194,226,51,136,136,212,112,77,63,151,105,145,65,193,197,166,215,242,53,96,223,110,217,230,186,228,177,171,41,14,110,197,4,0,157,14,177,60,233,234,183,9,46,16,7,161,139,167,173,9,52,136,236,235,117,30,27,216,211,26,167,135,183,41,207,245,242,228,113,113,49,45,237,205,7,56,162,49,106,41,35,179,205,22,246,166,251,160,176,103,165,174,40,209,72,144,47,48,13,111,70,139,66,120,48,25,151,102,230,79,231,25,166,87,156,92,160,252,72,250,244,224,40,232,114,127,55,136,23,15,224,155,190,56,131,155,246,41,175,107,10,102,46,128,19
 2,220,21,194,113,162,213,24,39,127,181,129,85,152,247,61,63,151,47,12,0,15,214,70,155,160,43,68,27,65,216,0,52,24,39,109,18,15,105,26,130,141,214,78,137,206,80,248,103,33,111,66,150,133,91,24,125,52,69,209,203,156,184,108,199,196,117,66,155,19,172,76,3,58,225,205,18,10,147,34,121,128,119,162,152,165,255,214,162,101,247,27,15,144,100,231,55,102,216,220,28,45,137,28,67,7,226,28,77,0,5,216,110,218,187,166,209,248,246,0,91,18,201,186,40,121,218,6,80,173,168,21,9,163,12,43,103,237,179,7,13,32,41,199,48,133,200,31,165,212,168,28,149,199,135,6,16,242,93,84,133,120,19,151,16,52,205,50,26,248,146,73,173,165,206,8,191,139,147,42,108,52,90,167,29,183,77,216,181,61,5,222,242,255,7,108,163,28,249,199,127,92,147,89,34,184,54,145,52,115,159,138,77,250,161,111,177,140,107,171,196,33,144,24,27,97,89,199,105,45,65,9,171,86,68,91,40,134,254,14,122,2,93,25,182,22,96,187,168,183,90,236,201,211,65,192,188,125,7,124,95,99,127,251,24,103,5,245,113,112,175,107,245,129,3,87,16,210,136,153,69,101,138,
 0,30,124,178,249,179,33,199,123,23,112,124,167,207,88,183,210,100,127,198,115,187,39,4,245,186,97,247,195,107,95,90,149,198,183,147,190,224,178,213,153,73,152,166,68,145,142,249,100,113,123,203,158,114,226,153,192,75,5,0,191,65,253,223,87,199,218,247,150,171,18,105,129,8,42,89,71,222,208,236,59,27,248,47,94,51,27,82,219,216,58,48,86,239,37,111,39,185,11,171,54,61,222,33,133,79,244,83,45,133,121,86,220,235,126,93,47,67,204,172,132,65,204,14,202,191,167,153,234,2,236,138,197,245,132,88,205,40,30,182,25,236,231,176,8,167,231,26,34,140,99,35,247,248,5,28,194,122,166,215,207,25,68,82,79,244,173,246,104,201,190,23,64,179,5,75,4,236,110,113,197,25,102,163,121,13,116,165,51,141,36,236,148,242,72,81,187,34,124,70,71,89,143,219,96,137,140,75,171,249,116,162,16,57,66,173,97,70,100,147,151,193,252,123,58,191,253,56,73,28,176,133,184,241,152,155,219,127,160,221,122,8,222,209,102,136,60,108,226,142,163,148,153,84,35,15,191,12,51,95,80,185,6,96,128,119,47,115,42,23,226,122,141,26,151,77,14
 9,212,71,38,242,46,105,202,57,170,42,185,31,7,176,140,85,37,132,47,29,10,187,59,113,65,147,48,15,11,229,175,192,18,12,92,145,30,21,106,72,7,39,250,201,57,53,145,218,252,162,25,252,11,94,251,109,215,239,63,186,77,44,26,58,28,60,35,35,215,100,35,160,59,0,125,89,149,148,51,107,209,152,12,126,228,92,136,82,35,101,220,143,230,71,204,197,45,121,146,77,249,252,136,17,0,151,85,242,143,168,198,208,203,169,62,5,70,81,201,74,4,203,248,182,44,105,100,50,177,53,243,49,148,219,9,16,231,88,228,154,20,123,124,190,109,219,105,88,61,195,223,73,103,0,33,118,28,99,130,63,43,213,143,149,98,179,171,109,44,136,115,103,111,175,55,99,143,154,25,90,251,210,99,125,193,98,180,188,52,142,231,145,255,172,184,65,167,68,48,16,202,149,245,81,232,137,207,61,180,79,75,142,207,247,63,33,30,197,83,233,22,167,14,107,32,180,74,115,54,44,56,69,78,26,4,187,69,79,225,221,82,117,242,156,211,65,153,60,123,106,132,65,252,162,214,21,18,181,202,98,191,118,65,193,44,4,232,66,82,252,156,126,118,217,3,86,189,129,195,213,9,1
 68,88,32,107,148,99,21,53,105,115,2,227,114,174,163,63,174,77,254,241,195,22,47,80,190,254,234,212,182,170,218,140,168,90,163,131,103,18,237,129,200,38,223,74,181,29,13,247,162,130,119,239,16,134,164,30,159,74,100,127,117,174,70,106,33,41,137,211,154,136,101,16,192,84,52,203,182,135,230,95,213,97,7,156,242,50,217,4,114,49,168,249,158,75,192,1,55,214,37,42,236,86,135,193,251,248,234,122,207,4,118,72,7,218,48,227,37,231,75,12,38,35,73,12,33,237,162,13,3,231,195,51,220,148,243,116,139,187,235,105,226,102,134,5,87,208,13,9,65,42,229,30,206,172,246,175,3,242,75,80,234,100,29,74,245,50,209,139,74,177,187,216,253,74,154,212,240,69,242,107,104,208,246,38,19,58,199,172,219,182,247,89,73,67,52,83,31,35,14,6,137,203,182,90,17,205,169,130,34,182,130,224,77,171,79,251,229,93,96,227,171,68,168,225,54,135,220,56,204,86,236,29,116,7,71,182,23,66,212,23,195,109,193,79,151,99,112,3,159,33,235,177,172,176,95,11,42,214,94,122,190,35,19,94,10,147,24,219,244,220,154,157,16,190,244,87,32,192,254,3
 6,173,37,192,103,186,143,17,138,41,183,121,80,150,99,225,210,145,34,108,14,222,47,228,85,140,158,179,64,10,48,69,91,164,205,45,84,225,116,226,88,218,223,31,166,12,236,247,65,4,138,2,181,60,195,209,65,250,146,135,227,208,16,172,236,103,178,223,141,83,209,62,135,168,29,50,100,69,88,145,94,67,125,182,28,158,100,171,63,55,149,114,161,164,98,150,208,205,131,119,220,207,176,221,223,104,122,36,166,197,91,77,36,22,190,180,46,225,89,227,251,216,120,195,185,55,221,114,162,105,75,165,244,48,30,48,133,153,28,209,219,216,246,107,34,24,189,222,195,87,101,215,61,244,39,45,27,216,104,19,50,178,230,92,32,92,42,190,100,193,150,23,231,56,149,13,200,249,134,44,236,228,187,180,214,91,23,174,23,216,185,136,139,158,209,200,179,243,18,123,116,159,210,92,144,25,195,159,217,210,109,129,96,228,173,166,232,6,62,231,191,148,203,99,210,136,66,68,192,81,227,63,190,19,165,216,53,58,194,252,10,192,24,54,48,108,254,140,68,18,242,176,40,58,59,8,171,162,37,32,164,208,71,52,221,3,237,209,52,133,180,130,153,184,
 88,31,27,204,130,203,187,42,58,117,67,89,53,93,82,68,237,162,74,155,115,147,17,147,147,78,70,254,1,133,24,146,172,246,37,71,232,114,18,219,22,114,95,140,114,77,47,6,80,95,27,110,59,56,96,187,103,236,218,42,163,158,159,178,70,74,149,222,113,82,48,251,69,215,65,72,109,48,155,100,188,67,104,141,107,22,18,201,47,202,255,197,15,144,82,6,201,73,97,229,168,227,202,35,34,126,63,83,109,217,184,25,210,15,104,156,244,23,28,240,137,227,67,90,103,63,52,156,183,112,177,108,138,150,142,12,192,91,92,239,229,170,72,211,246,64,37,50,107,65,39,124,232,69,126,69,178,131,238,229,19,68,167,132,255,19,33,43,230,100,116,8,253,132,60,113,131,177,224,223,98,190,52,42,147,96,23,133,76,1,236,90,130,229,82,43,184,144,232,98,15,170,195,215,164,97,224,3,204,193,55,217,56,174,38,212,65,84,177,213,21,29,246,63,246,181,217,182,213,110,206,247,168,36,33,160,103,105,190,92,222,189,250,111,228,129,231,119,170,109,195,103,241,240,139,101,92,24,72,1,134,226,15,149,62,216,214,49,124,62,70,146,174,216,110,39,5,168,
 198,7,30,203,102,14,91,209,183,107,47,5,88,199,42,105,77,175,107,161,31,209,78,159,216,144,209,48,86,172,250,229,129,184,243,84,121,190,33,161,249,19,95,139,221,147,168,10,71,62,49,207,34,85,236,51,24,203,38,85,125,213,58,217,247,31,13,63,212,132,37,66,132,24,72,67,253,214,92,246,109,57,48,205,111,183,180,204,105,71,7,35,93,234,96,187,60,46,24,8,38,133,162,51,78,214,94,152,23,80,150,245,58,221,134,25,152,212,37,243,75,143,183,31,32,3,223,94,210,19,254,105,106,40,61,23,165,16,233,152,10,245,174,128,130,250,161,1,190,176,213,227,130,101,233,189,8,158,247,184,145,221,141,246,112,230,3,204,142,28,49,90,34,34,60,98,229,56,75,226,27,173,206,105,140,168,173,154,46,43,38,193,202,94,158,187,60,95,1,148,61,200,124,32,109,48,126,77,111,221,64,251,180,132,40,195,95,227,104,180,218,124,52,130,186,190,17,51,199,71,15,81,40,29,53,114,111,221,185,34,74,64,222,117,214,93,25,85,43,200,247,248,76,120,109,168,143,57,199,157,140,82,129,95,76,247,249,247,128,67,178,250,189,209,211,163,115,211,209
 ,22,170,42,37,29,173,9,124,92,211,95,209,87,202,162,243,249,9,186,139,207,28,61,19,234,167,109,128,98,61,174,155,62,104,56,180,192,111,69,243,141,13,79,253,171,119,65,226,173,107,188,218,71,49,208,169,42,72,187,113,81,172,165,153,110,87,143,13,175,179,49,101,187,177,163,29,84,112,157,22,137,226,162,110,13,247,151,188,50,213,31,238,214,134,88,245,49,239,178,163,207,164,15,110,0,54,59,150,128,61,47,185,239,175,155,42,105,169,218,128,57,146,110,220,90,22,231,62,31,51,172,17,171,191,192,74,153,2,223,202,23,11,7,196,73,220,153,232,7,172,129,130,2,204,29,26,174,155,169,204,108,39,88,197,234,204,170,7,53,14,18,96,192,192,146,0,22,50,34,245,251,226,83,87,245,132,209,16,152,238,87,220,105,18,121,91,242,0,89,51,237,121,87,72,194,47,31,238,100,26,79,153,31,205,35,210,239,160,77,138,114,43,64,239,254,43,179,154,200,89,19,138,191,217,68,73,37,106,36,34,75,214,229,8,178,72,163,154,107,195,51,252,166,120,91,146,28,85,25,142,169,211,225,180,191,168,24,55,164,223,1,143,139,136,206,53,192,154
 ,93,44,63,185,135,213,10,75,191,155,255,9,137,190,102,230,153,240,173,226,204,246,46,168,241,146,234,90,80,129,254,164,166,205,242,2,61,52,60,17,5,22,156,49,159,131,181,3,163,115,44,93,232,241,215,188,7,179,178,154,83,203,119,85,162,198,90,200,170,218,176,54,159,242,45,28,231,177,233,152,104,134,215,241,186,48,85,154,5,75,140,74,123,253,172,8,97,12,61,96,25,114,79,226,101,143,2,205,218,3,163,184,68,99,249,104,208,11,76,13,217,228,142,163,131,131,87,40,240,135,237,213,139,131,194,147,17,111,136,73,42,239,53,247,188,251,60,192,211,61,75,70,114,177,13,121,188,39,195,241,232,207,91,116,119,100,227,40,143,40,186,181,169,31,101,223,47,41,92,226,104,203,188,31,67,159,194,127,238,72,121,57,160,214,80,189,105,208,156,13,17,37,10,210,233,65,89,76,190,51,236,41,139,113,252,151,231,251,191,182,236,58,89,57,130,13,68,133,174,30,230,250,171,87,4,78,208,90,14,45,190,100,84,118,66,88,205,12,217,99,69,148,173,79,171,170,119,93,25,205,173,31,252,87,191,182,187,157,98,54,29,122,107,113,165,102
 ,239,37,223,3,102,202,131,148,111,109,56,182,76,188,10,160,185,56,31,71,63,186,36,175,86,231,14,85,254,142,29,194,163,153,133,17,10,68,66,251,122,154,3,196,184,174,7,90,102,41,172,238,123,239,76,208,46,78,189,144,142,195,230,97,114,116,90,58,38,14,216,48,220,77,36,243,150,227,184,154,124,54,177,4,221,157,1,19,3,238,127,86,212,117,134,54,225,236,148,195,229,10,229,221,92,5,152,224,66,124,80,78,232,206,114,93,74,94,18,232,147,145,86,58,186,10,102,148,149,125,162,83,203,228,68,251,178,176,15,106,159,101,19,148,113,237,128,137,38,3,54,192,173,212,10,240,156,36,218,218,75,198,233,159,151,162,97,246,199,191,93,168,162,62,235,131,14,138,87,75,5,218,68,134,180,94,205,66,207,242,140,148,239,190,191,253,177,123,139,34,66,12,12,167,225,135,168,22,158,21,218,209,164,83,146,62,5,228,221,164,200,223,184,74,207,245,34,134,31,216,197,207,254,22,6,1,188,57,48,147,73,115,214,231,218,133,5,196,15,166,82,74,165,231,197,207,83,197,2,82,191,114,123,180,246,224,102,251,20,0,167,103,224,215,1,62,25
 0,85,237,209,144,118,138,128,115,188,239,66,100,138,193,49,216,39,231,56,167,23,34,244,214,19,169,227,210,236,200,178,149,136,99,97,216,252,207,37,245,92,130,143,195,171,63,5,111,119,202,191,46,86,218,55,224,25,61,236,64,12,104,223,161,164,244,67,48,60,131,239,62,85,199,159,160,213,174,127,29,234,151,188,93,107,77,196,85,22,249,160,92,63,240,76,117,66,153,200,78,45,118,246,72,89,215,58,144,140,61,192,98,61,141,114,6,177,123,121,22,197,71,88,231,201,254,41,24,5,101,222,176,144,26,162,92,208,251,37,70,130,48,248,174,197,105,78,244,18,51,73,111,207,0,111,110,22,195,108,42,4,229,64,241,84,47,240,57,154,255,105,37,46,207,223,207,23,161,15,114,45,233,70,159,21,163,203,254,221,17,244,71,58,126,8,60,107,63,84,85,195,33,217,171,81,9,243,46,126,102,74,22,93,151,121,130,232,141,200,178,166,139,232,161,87,184,171,126,253,246,67,64,113,109,231,67,212,184,116,242,94,251,114,26,68,164,184,139,156,233,144,203,67,237,105,131,19,196,84,48,54,163,153,86,58,215,46,238,80,104,79,222,58,43,100,11
 3,126,120,41,237,228,226,139,143,168,56,204,190,150,71,6,204,232,136,23,196,157,195,81,128,186,131,247,46,27,21,84,184,207,132,228,91,27,246,49,191,207,70,47,147,0,48,184,71,110,252,74,13,71,248,104,65,184,7,193,111,58,232,135,20,139,234,5,19,84,208,96,123,154,231,250,214,98,143,11,238,185,97,75,30,187,75,168,164,245,146,149,84,116,8,174,107,59,61,71,167,167,225,233,118,149,11,223,184,10,97,136,62,224,168,138,23,180,27,140,173,239,248,167,169,45,168,154,248,0,62,210,163,88,154,193,24,251,4,180,163,131,10,111,240,97,208,122,226,252,244,29,173,24,43,222,4,94,8,114,2,110,182,11,59,114,189,184,145,120,201,27,76,159,34,174,145,39,69,58,149,5,243,89,180,30,97,226,30,227,209,114,181,116,165,64,239,176,71,11,103,205,236,21,59,203,187,119,125,232,220,66,168,156,194,202,22,154,251,65,107,94,146,1,208,149,211,154,153,10,70,165,50,45,224,209,241,0,32,71,123,210,182,18,108,46,82,112,193,204,45,210,113,76,85,70,243,155,144,163,85,241,204,140,50,249,123,24,203,175,165,117,79,72,186,186,44,
 59,250,148,151,163,104,49,76,122,122,246,21,129,54,128,150,118,16,28,20,156,38,199,118,118,52,162,6,167,153,146,228,245,0,125,137,87,106,230,210,214,193,38,16,10,26,186,171,99,126,251,96,166,146,187,100,195,149,65,184,204,103,85,99,212,78,199,52,48,169,195,40,189,102,85,128,78,28,50,14,142,32,233,31,181,93,236,220,154,61,64,45,65,101,165,177,83,1,101,93,246,107,176,40,208,55,127,91,240,204,72,48,201,239,4,184,51,54,216,6,1,205,55,94,89,202,125,51,227,145,15,148,231,96,39,31,67,30,46,62,126,198,246,2,25,181,202,230,133,129,154,250,236,159,78,111,68,3,95,180,13,14,30,117,10,16,141,123,187,101,157,10,96,96,148,54,238,127,107,133,107,172,146,1,39,228,116,87,43,111,140,241,240,73,165,61,197,199,218,244,161,228,210,27,74,240,40,202,101,227,52,105,182,243,71,161,43,205,125,198,174,149,12,95,189,17,209,248,73,92,225,94,43,151,243,75,18,148,163,32,120,65,239,195,227,143,89,235,238,225,249,5,15,67,45,45,77,114,120,244,69,218,207,66,35,160,8,176,62,77,234,31,228,46,64,25,25,40,252,242,
 240,99,146,161,1,13,144,223,9,1,240,34,250,228,148,37,5,44,120,200,132,228,43,1,173,139,140,173,76,155,94,122,241,100,217,113,244,92,150,139,244,31,164,232,140,187,115,189,93,43,191,77,23,57,147,189,112,253,250,41,66,157,24,63,94,71,94,196,98,227,185,6,36,132,13,192,217,87,158,236,119,232,231,183,186,121,232,45,234,158,71,112,135,154,127,15,12,53,63,188,81,48,45,14,195,147,11,149,221,154,14,58,101,229,88,79,170,86,19,132,251,39,54,139,108,211,53,160,108,50,197,193,14,16,13,184,125,89,211,41,235,241,239,29,160,128,48,211,132,12,85,206,4,223,54,95,182,148,109,136,219,14,111,200,89,214,160,75,208,29,133,71,7,71,57,164,250,20,197,146,60,104,190,160,179,108,161,222,94,241,5,120,130,4,244,237,215,19,213,49,84,243,252,178,180,169,33,143,248,101,217,40,162,202,218,175,140,179,64,216,178,173,112,250,191,198,66,117,103,163,80,253,142,135,174,249,185,122,236,245,87,55,229,173,64,5,8,205,51,34,40,219,220,215,224,30,223,218,56,219,248,116,216,93,58,222,14,237,4,114,98,174,7,148,249,122,4
 9,70,44,87,37,108,60,236,136,74,101,207,122,205,147,217,83,118,130,174,7,44,178,41,133,80,163,205,75,134,253,51,148,170,157,104,7,109,34,78,147,59,152,82,75,49,130,142,195,214,230,211,109,74,80,148,1,79,162,215,19,162,46,12,126,102,77,71,147,44,30,136,132,228,174,91,197,20,31,104,197,182,132,87,14,151,42,133,220,76,177,158,142,183,236,176,7,56,163,250,215,142,56,200,111,163,44,247,69,135,175,114,7,113,174,12,160,140,232,215,207,31,146,234,58,76,139,206,119,165,170,17,232,155,187,132,131,12,78,132,90,19,90,253,251,141,88,170,100,116,123,114,94,142,213,168,223,33,85,93,159,122,168,166,183,207,246,233,100,48,58,182,208,97,22,246,112,33,161,62,159,212,14,85,104,217,114,154,110,80,5,128,240,18,27,126,206,127,190,229,25,61,23,125,128,170,235,202,128,37,75,100,63,98,148,18,24,202,106,49,119,226,102,203,221,11,45,37,52,138,231,207,49,217,67,71,14,122,10,32,152,89,102,37,180,199,249,110,64,25,176,69,45,37,145,85,200,225,157,230,81,221,161,193,0,227,11,41,58,178,174,249,191,37,182,153
 ,67,45,20,1,189,169,73,90,192,29,204,100,175,194,254,50,222,194,243,22,195,210,199,187,252,173,87,53,123,150,185,167,12,37,146,85,178,196,145,212,14,168,220,245,166,78,123,174,249,155,214,47,73,206,236,158,7,47,42,202,89,162,178,63,68,46,236,146,216,199,198,3,150,243,174,224,159,174,251,77,66,64,216,186,33,18,83,224,89,65,125,77,190,77,178,161,55,107,198,209,188,18,128,57,175,181,236,193,180,60,255,213,89,47,238,83,164,240,125,108,187,129,73,16,229,38,133,174,251,98,26,88,95,8,27,223,10,187,220,180,141,246,84,248,203,106,4,128,222,248,157,158,23,255,1,131,124,229,208,40,163,140,33,74,98,161,124,155,152,113,154,180,159,152,44,90,183,167,88,98,217,226,84,107,79,111,150,15,53,60,187,162,229,103,196,215,113,121,239,150,61,233,113,133,148,194,152,122,151,19,150,235,87,34,25,209,14,176,134,227,98,34,57,215,39,191,25,200,128,215,137,20,247,138,166,160,193,255,94,109,197,173,202,12,154,59,211,110,121,145,222,250,94,217,153,0,31,53,3,7,76,171,35,241,98,124,191,61,243,79,43,207,36,47,
 41,2,16,85,203,123,112,186,105,98,22,158,143,226,144,221,251,230,79,244,239,202,184,247,132,213,236,171,90,90,89,135,1,129,183,184,237,148,55,143,139,131,62,119,116,214,127,160,46,54,242,151,227,183,106,78,63,19,29,205,235,239,25,232,200,234,168,114,90,105,186,128,33,207,56,65,28,145,98,219,199,219,241,123,57,231,210,176,103,140,68,110,209,209,67,144,203,109,194,191,217,155,60,14,167,142,213,108,102,88,50,76,28,185,134,179,89,105,234,217,111,30,101,231,78,18,30,16,51,253,227,218,255,33,92,192,184,79,97,163,29,135,36,244,90,121,237,160,51,197,131,122,198,21,88,137,201,195,75,68,4,43,115,77,248,39,192,225,135,56,185,76,123,202,116,246,58,145,200,155,231,176,75,203,217,6,146,239,194,167,43,131,145,152,37,17,228,32,29,45,100,131,6,48,37,25,211,155,178,168,117,204,115,76,192,43,17,81,136,4,21,216,134,255,98,247,254,5,252,235,17,178,15,34,244,184,198,9,184,44,188,121,132,59,237,249,180,119,190,56,13,194,154,159,133,172,21,78,47,170,245,148,36,5,139,244,150,240,44,36,120,77,133,57,
 163,64,65,230,70,63,212,27,61,201,76,31,145,183,101,32,80,22,210,138,34,191,172,11,242,132,112,61,3,198,39,152,73,248,155,224,247,113,74,56,183,159,114,242,78,155,86,240,29,27,192,209,180,228,144,19,69,163,204,247,216,13,97,20,20,144,228,233,188,88,134,23,55,125,168,95,252,222,66,154,168,132,190,54,185,248,193,23,20,197,76,61,121,75,141,46,27,123,134,84,164,4,35,122,71,91,112,217,229,53,62,55,229,44,90,220,201,203,119,236,63,182,124,29,168,44,140,29,122,84,112,169,249,191,35,200,85,209,62,53,116,136,41,226,178,221,107,166,155,254,255,221,149,170,184,243,112,3,239,139,180,174,151,68,22,129,70,103,247,108,184,239,249,175,127,173,2,141,215,142,175,173,215,233,188,10,119,189,113,50,165,122,207,246,18,35,40,238,77,27,93,226,70,35,246,34,6,106,132,63,156,116,149,70,70,173,51,6,235,34,49,48,105,138,134,226,91,77,245,252,109,230,229,5,207,241,223,66,172,176,157,254,249,174,173,203,98,162,138,38,199,96,139,240,125,64,129,190,56,89,37,85,180,12,139,169,213,186,215,111,207,98,27,92,7,9
 2,17,90,236,9,201,224,206,135,247,217,185,168,100,194,69,7,109,182,217,43,48,147,228,201,187,214,146,241,205,152,215,109,18,251,27,26,159,87,54,45,48,37,67,32,248,52,252,191,137,208,124,171,55,124,136,9,130,204,242,82,156,208,61,206,116,40,207,11,67,146,89,121,41,204,84,71,204,40,56,166,220,154,147,175,50,85,30,49,157,151,254,16,27,17,184,33,94,230,100,206,10,236,107,128,18,113,245,77,91,175,57,3,23,245,143,240,53,236,41,155,188,49,44,89,140,59,234,236,33,231,148,146,4,133,242,249,124,162,132,235,109,18,72,247,252,38,178,145,204,151,0,170,232,40,32,173,57,1,56,86,239,246,85,110,228,24,243,50,174,57,64,229,251,217,164,65,48,3,218,119,168,131,229,14,102,0,50,128,92,125,201,130,198,62,97,235,29,145,128,7,169,186,87,173,84,230,215,192,74,222,139,43,62,152,150,157,191,38,73,63,36,19,180,135,157,180,219,140,73,173,28,106,43,245,178,83,253,102,24,17,254,235,86,13,101,34,240,246,98,184,174,149,241,133,244,64,59,88,242,22,109,203,129,141,229,184,129,38,86,51,107,107,24,22,3,178,107,1
 46,111,1,109,10,38,33,141,53,159,188,110,62,6,47,20,104,217,238,220,15,42,112,163,124,87,84,3,197,74,43,116,245,65,79,208,0,150,172,212,57,229,86,31,88,2,140,19,42,140,31,205,110,86,17,197,15,156,91,106,244,87,207,15,124,44,180,117,4,201,88,128,15,160,27,215,206,244,1,9,27,97,85,124,20,188,86,72,74,109,241,233,194,76,13,193,150,121,10,105,155,182,121,94,87,39,58,142,207,248,11,173,243,75,37,227,167,130,92,15,69,153,56,252,132,205,103,20,163,134,176,233,108,178,46,238,208,103,241,107,172,4,162,91,226,87,138,240,142,72,50,92,9,138,111,75,74,225,188,42,136,236,240,33,94,48,241,166,58,223,231,154,228,63,98,3,194,210,66,28,83,222,204,206,174,244,216,155,234,130,141,27,149,186,185,126,42,226,222,77,11,143,32,85,175,219,215,17,27,185,40,5,61,152,217,16,212,226,109,154,79,207,43,113,71,178,164,236,156,68,167,41,182,58,132,220,106,124,210,246,53,252,83,176,56,89,84,97,24,78,19,225,127,51,218,20,141,253,63,118,113,109,205,176,24,171,231,232,171,230,123,201,118,242,14,6,71,132,109,49,9
 ,141,128,200,41,214,204,116,212,65,89,77,191,66,165,150,141,159,3,210,42,15,29,205,184,221,131,71,31,103,116,126,125,122,86,102,57,250,10,51,163,97,73,22,109,238,197,249,9,110,67,151,223,77,48,24,162,180,140,51,72,250,161,58,21,211,118,22,165,44,142,97,106,5,207,48,187,113,55,198,230,88,151,175,205,212,24,136,149,156,165,138,213,193,182,23,93,128,221,192,187,162,204,187,179,69,175,73,76,76,78,80,55,88,235,1,250,135,248,248,99,203,36,235,122,9,179,124,200,226,219,132,124,152,35,129,142,205,33,244,79,221,97,67,8,9,100,50,209,128,43,253,208,124,169,125,106,94,155,42,213,237,235,212,114,139,31,215,245,8,92,155,151,141,143,7,31,226,65,224,53,142,128,42,183,104,190,160,132,232,87,156,163,168,16,83,162,104,136,157,58,57,157,222,253,58,166,192,232,178,44,141,85,83,142,12,61,216,55,13,124,122,2,171,203,4,208,187,153,38,246,212,44,60,165,253,45,190,92,71,194,17,241,175,166,230,240,32,118,109,40,185,195,66,80,16,152,230,71,207,192,198,208,146,142,94,105,230,80,42,12,163,245,25,10,222,2
 52,3,80,88,114,192,11,214,48,125,229,180,170,99,146,243,69,138,109,185,0,62,141,96,191,189,132,231,33,89,91,149,82,143,123,148,198,254,50,226,206,69,252,189,241,59,89,177,115,175,24,255,236,173,104,172,67,170,132,89,108,143,116,191,158,166,231,129,198,212,68,83,101,150,215,17,198,14,56,184,44,125,62,119,40,175,206,109,7,225,193,11,52,135,130,189,248,166,126,151,110,186,198,85,239,128,58,197,156,126,99,116,173,39,131,21,143,126,67,3,230,217,166,86,131,164,43,96,4,89,129,237,57,244,140,106,182,74,67,14,83,106,41,118,40,142,85,235,209,93,188,201,248,198,3,59,113,180,63,47,163,20,160,103,175,241,198,113,205,113,247,157,100,72,23,60,133,114,184,211,252,245,89,239,254,254,109,71,109,35,51,28,23,38,248,199,176,130,204,217,18,117,117,160,164,92,237,59,30,86,156,12,8,225,158,45,75,127,144,86,230,88,74,72,9,135,192,94,250,100,76,11,58,118,94,236,196,221,236,186,196,178,194,78,142,105,36,107,150,87,40,122,48,8,44,43,54,240,29,15,189,2,240,57,89,166,66,205,223,255,116,88,72,160,201,194,
 140,132,215,94,219,130,149,160,49,91,231,158,226,138,73,144,125,9,81,33,226,8,120,210,87,157,111,66,187,212,54,228,218,89,162,103,128,92,114,218,232,182,233,108,97,72,157,117,96,23,240,117,247,125,65,201,13,213,226,18,92,116,103,45,49,86,133,2,107,226,146,198,72,249,100,84,101,111,108,24,238,156,181,225,220,170,173,7,179,193,175,51,86,156,250,52,20,27,210,210,13,70,237,240,55,155,106,154,26,242,84,193,114,191,130,153,103,118,124,135,247,232,162,229,43,190,59,108,36,126,24,148,129,235,15,157,193,17,177,219,136,56,158,185,225,218,103,46,18,127,88,100,154,221,234,16,108,46,60,187,27,76,126,122,139,192,70,209,58,192,255,119,192,54,45,17,198,194,187,180,164,119,17,102,80,214,170,129,133,141,79,204,240,37,48,136,174,22,75,243,89,47,187,44,102,129,107,43,31,247,90,225,28,161,254,0,180,214,240,128,127,68,180,125,2,207,25,210,109,247,248,43,249,90,162,204,213,141,241,2,84,160,120,109,58,188,254,235,76,23,68,151,174,140,224,23,211,95,52,5,255,98,98,222,170,110,250,251,224,26,197,25,22
 1,158,140,185,57,64,96,48,197,187,154,207,137,122,119,129,13,211,0,248,207,18,11,188,53,124,218,119,98,249,157,132,162,221,135,44,66,59,141,48,63,86,18,58,159,206,106,43,68,56,133,249,196,177,42,235,74,165,74,50,212,113,190,82,243,118,193,152,176,198,74,6,201,108,54,122,159,75,97,104,67,170,109,31,37,133,254,49,178,136,151,132,24,65,16,42,212,113,159,83,148,34,244,132,141,147,53,249,185,70,101,39,28,105,51,199,12,184,250,228,248,175,243,145,171,184,155,206,146,168,132,250,22,209,20,197,178,85,255,195,251,252,248,2,101,242,123,120,56,52,97,237,38,133,249,102,117,101,150,190,43,217,231,193,173,14,64,168,118,97,22,61,140,189,163,145,202,169,230,238,16,115,81,199,59,87,52,245,186,21,224,19,213,82,64,45,60,56,125,84,182,183,119,238,41,207,249,15,192,106,73,170,160,162,224,114,22,198,87,244,206,22,17,1,48,148,4,56,153,129,82,41,145,141,39,86,100,234,206,187,255,97,242,237,222,94,216,91,6,151,43,204,51,199,18,152,38,121,249,111,49,195,157,31,32,24,153,255,14,183,22,24,24,126,79,153
 ,232,91,85,69,228,248,8,149,113,3,89,47,231,90,186,9,197,47,122,245,7,42,157,111,4,227,97,55,226,178,114,13,192,179,128,233,170,215,134,105,188,80,42,66,187,128,109,227,84,120,235,188,150,35,178,22,207,170,33,252,102,149,226,136,61,150,237,46,54,221,25,207,44,149,210,189,174,234,202,192,255,241,82,44,137,248,225,32,8,252,113,50,179,104,116,47,113,196,253,161,145,76,16,55,236,199,95,132,216,15,3,213,185,100,34,57,18,107,187,43,233,191,123,133,13,1,121,101,130,120,115,48,206,210,103,53,2,195,159,240,6,233,59,203,43,64,136,189,88,195,239,231,217,151,226,99,138,118,124,121,150,52,41,83,114,55,151,57,207,3,250,21,171,210,222,110,10,2,81,239,63,134,107,254,86,149,108,145,153,132,140,148,171,134,140,175,66,52,140,213,164,16,41,147,188,239,24,51,72,83,32,220,67,243,212,63,8,8,33,214,185,142,52,98,105,174,211,90,103,203,144,242,215,25,31,189,230,15,52,218,21,233,3,43,4,47,40,138,134,156,135,198,106,22,27,112,103,207,4,228,157,28,56,99,218,119,18,145,128,55,213,3,59,143,168,233,227,25
 3,69,62,11,90,226,103,84,185,74,98,166,210,124,98,248,60,112,10,216,133,139,244,56,146,138,8,109,15,35,20,107,190,241,126,130,29,110,251,213,228,179,116,183,49,254,24,26,102,147,84,0,169,99,123,134,244,36,30,21,204,209,251,148,161,115,105,179,56,101,173,124,227,223,227,105,102,210,44,110,94,155,66,58,205,177,143,82,178,80,81,21,48,67,159,28,188,79,114,162,149,35,194,223,78,166,151,156,111,215,209,213,191,148,213,206,153,106,205,210,112,187,157,68,245,89,217,107,77,163,56,175,130,59,236,252,182,238,72,170,245,17,71,244,177,121,82,89,191,237,218,240,241,185,43,155,35,22,131,102,51,194,207,165,222,174,212,2,222,167,191,110,104,136,106,204,159,196,235,209,244,146,76,172,90,170,247,122,71,39,208,133,32,160,193,145,43,30,119,3,95,234,185,72,178,230,228,223,176,176,211,167,23,128,247,69,31,96,36,164,9,236,83,148,233,41,170,36,236,28,129,48,83,47,66,103,111,190,74,128,31,9,182,9,113,15,122,120,23,210,9,128,234,196,156,50,155,226,128,243,119,43,97,54,192,184,40,71,145,177,96,21,177,1
 06,228,17,212,146,169,1,173,66,113,187,210,124,233,171,85,133,201,250,100,132,58,132,140,238,49,160,102,203,92,125,114,233,30,125,195,42,108,233,235,37,111,128,171,148,28,26,200,82,11,86,215,41,51,69,70,124,15,228,8,74,168,208,154,251,116,234,153,50,149,242,118,56,140,230,20,152,88,118,19,70,35,124,243,131,212,104,222,157,41,72,44,111,107,104,238,112,141,28,126,11,41,179,134,95,26,255,187,51,178,178,18,147,201,37,198,39,15,50,94,57,11,30,176,13,81,1,166,198,142,208,79,134,9,151,255,236,204,57,240,18,125,66,128,44,54,20,203,194,34,139,198,43,241,216,250,22,208,56,83,149,233,99,85,204,53,114,153,133,249,119,2,235,157,185,1,80,184,2,61,202,50,205,219,12,0,184,76,228,55,4,213,115,195,118,190,224,45,92,83,189,172,42,25,127,24,126,250,79,209,111,207,174,30,223,4,238,254,39,248,254,54,135,231,10,161,37,176,91,18,125,232,52,43,128,160,113,255,197,163,79,99,60,31,141,95,248,20,228,160,134,81,194,221,17,81,142,196,58,168,204,178,28,54,144,129,33,248,174,29,68,108,250,178,146,86,31,18,
 132,40,189,218,123,118,117,143,119,95,138,233,161,64,192,128,128,91,36,84,86,32,39,238,136,237,130,184,154,193,9,149,205,112,184,169,44,15,231,220,249,154,170,237,13,107,85,87,155,56,81,173,12,23,183,79,35,154,19,187,109,29,116,51,59,60,124,160,201,206,11,14,165,155,104,112,135,77,43,74,223,150,30,142,177,184,215,186,24,101,58,120,41,234,223,186,248,72,23,144,124,30,217,82,84,152,178,119,188,165,145,220,253,73,101,181,63,201,176,18,75,141,6,2,97,1,154,197,189,179,168,122,162,18,108,65,41,140,29,177,59,245,176,175,171,201,16,69,54,207,221,28,215,92,106,165,38,92,139,170,106,77,226,118,21,47,78,214,177,79,89,127,28,143,33,44,167,113,234,181,157,31,8,144,213,33,131,173,173,150,183,151,23,196,244,31,137,98,8,0,65,1,123,238,42,44,254,155,227,48,2,201,212,125,86,186,208,78,69,207,36,124,180,214,138,163,157,82,194,205,150,141,129,130,203,73,252,123,245,124,207,182,113,239,81,56,48,128,129,105,6,126,175,144,39,223,202,139,142,114,218,246,22,99,21,50,203,169,243,26,217,245,4,251,235,
 79,36,136,74,92,232,245,223,47,167,89,166,117,84,252,168,96,114,8,251,28,119,76,189,28,150,118,253,165,59,137,151,232,120,143,46,48,219,132,186,116,152,176,135,244,148,167,50,211,223,53,178,53,12,77,173,150,75,73,224,142,0,12,222,116,54,100,199,132,58,61,159,82,245,11,203,92,71,144,222,110,69,224,60,204,126,237,110,128,207,216,130,175,228,60,108,138,254,145,136,84,52,30,211,8,46,121,176,130,233,213,70,26,183,222,114,117,8,128,181,191,129,50,218,103,53,47,93,249,181,180,162,242,212,26,55,241,252,15,12,42,120,39,58,179,17,119,127,207,0,82,113,68,141,159,62,226,16,87,112,13,117,235,87,17,33,114,36,30,174,114,25,249,60,9,39,76,159,103,80,156,41,173,144,19,121,15,200,181,225,80,224,226,119,155,34,184,29,193,177,224,69,167,150,23,63,81,180,79,37,77,187,150,179,169,109,199,18,238,2,143,46,189,204,178,112,27,248,63,254,74,53,93,163,165,244,65,151,87,196,217,151,57,160,23,89,204,224,145,103,180,206,122,135,192,160,211,72,211,87,96,56,102,53,188,127,24,168,52,213,89,65,172,4,218,132,1
 75,87,116,182,237,100,138,87,167,246,6,15,140,78,195,75,122,237,24,168,144,70,201,212,216,111,241,211,192,172,116,197,213,144,115,226,37,91,106,106,85,138,190,185,172,252,186,36,229,224,55,220,29,55,39,0,65,36,138,211,206,213,130,68,144,92,101,86,169,45,3,222,229,109,27,180,218,94,204,123,134,6,80,114,55,139,249,216,89,146,114,58,42,14,97,84,57,86,155,117,59,222,32,117,141,30,245,165,121,199,144,40,73,131,9,117,203,124,93,7,205,230,30,111,89,218,13,86,79,7,140,228,183,24,154,247,186,243,12,191,248,80,97,112,126,124,130,43,180,204,116,205,75,131,72,74,187,117,2,149,110,216,62,194,174,38,102,189,162,218,163,22,152,251,119,224,201,142,45,85,151,144,60,29,87,32,120,245,12,1,174,243,65,224,3,190,2,141,138,189,3,6,238,58,203,128,192,230,127,27,160,101,97,10,19,175,14,100,189,210,147,242,40,83,193,234,242,110,83,197,224,6,235,109,163,202,52,91,167,123,159,224,84,130,37,58,206,96,223,117,230,121,63,195,200,101,154,110,95,31,175,64,93,187,22,68,137,238,57,4,52,179,233,58,152,166,28,1
 94,92,170,136,63,99,6,32,121,163,153,36,18,160,6,167,182,180,126,240,27,220,187,78,10,138,101,118,142,91,161,85,131,74,34,254,224,4,236,22,123,159,215,165,1,217,145,63,143,58,96,132,84,117,4,3,146,100,39,31,68,45,247,146,31,214,103,129,226,147,127,96,75,183,134,83,173,105,237,16,131,100,24,215,134,244,157,136,42,23,122,84,76,49,141,200,110,199,196,198,189,26,191,69,29,83,233,37,207,180,103,52,248,126,106,104,117,115,110,18,195,226,76,114,240,89,57,41,87,151,250,201,64,19,99,200,121,74,141,236,194,150,217,114,149,193,204,21,67,42,87,172,37,115,187,105,81,76,37,140,9,144,94,149,194,178,60,34,41,230,77,8,234,135,241,108,67,203,71,152,23,139,100,237,78,225,70,8,30,89,75,139,180,182,68,37,32,13,98,37,241,254,173,198,7,16,88,221,170,212,186,34,52,13,85,113,60,197,132,117,52,60,34,196,41,246,18,203,13,164,10,142,89,224,54,166,114,249,179,145,189,129,89,104,219,150,1,20,108,245,96,238,121,69,196,115,19,209,81,97,74,79,184,230,19,100,242,73,177,143,154,131,252,223,40,6,75,87,140,98,1
 25,246,169,240,248,202,162,54,19,20,30,114,55,65,123,202,47,2,86,21,201,54,64,213,16,38,143,196,227,63,178,38,176,91,253,19,22,141,160,117,245,188,73,187,213,178,39,67,207,229,59,145,157,123,1,220,101,245,172,114,201,7,111,9,91,63,33,201,140,73,11,17,162,204,94,91,42,92,62,122,89,174,116,222,90,15,104,175,122,46,50,138,62,206,35,124,123,203,169,79,245,19,247,233,70,80,12,80,203,238,246,59,185,183,49,210,83,8,243,230,33,151,94,182,192,62,166,68,124,78,231,60,108,112,205,198,67,130,89,251,179,6,19,197,230,158,95,49,165,217,42,236,30,71,188,38,150,114,2,10,245,239,110,198,151,16,94,196,72,61,54,172,94,120,194,94,173,121,250,245,218,253,222,14,71,44,61,61,53,151,232,76,228,159,199,220,87,76,116,135,30,121,131,188,138,128,203,249,142,201,64,164,236,167,39,26,3,141,245,18,60,78,190,24,1,61,176,187,59,63,36,178,225,0,151,61,2,158,224,34,121,255,29,91,78,204,182,236,17,182,5,127,10,199,6,81,170,124,123,144,109,139,124,85,27,242,26,47,179,62,207,3,146,64,197,32,233,220,110,4,253,210,
 115,192,136,101,183,159,36,108,160,156,140,143,27,88,12,13,176,204,125,184,50,18,158,113,85,38,74,104,19,57,238,251,59,233,81,47,30,132,75,44,114,164,212,56,125,182,137,127,64,78,156,87,66,209,249,9,7,129,152,160,65,16,98,91,79,165,153,62,123,128,201,180,171,55,174,115,243,112,122,13,45,218,6,243,165,31,131,203,253,6,126,80,184,102,180,143,160,141,91,32,199,250,175,130,186,29,84,98,211,76,95,241,234,98,154,218,228,41,240,162,248,156,18,220,239,31,25,52,13,119,11,136,240,177,107,219,30,226,104,20,190,212,176,209,87,195,85,184,28,239,81,204,192,11,243,135,160,202,190,220,195,13,177,132,73,111,27,155,96,78,131,239,173,172,104,108,84,185,84,35,112,192,181,231,158,170,250,25,180,219,141,68,103,133,84,150,25,230,87,1,151,179,53,191,74,228,238,22,229,237,153,76,127,100,66,41,136,193,153,114,39,31,60,41,175,251,153,7,70,16,55,245,218,65,88,44,158,219,90,192,223,224,142,91,206,28,0,134,124,173,162,86,206,24,144,239,72,94,85,227,162,184,156,151,103,229,40,241,217,144,17,117,182,11,105
 ,97,197,245,187,113,194,240,95,72,19,253,152,149,63,3,33,53,92,103,204,64,2,244,3,133,185,56,187,31,255,146,111,215,17,12,27,124,238,124,25,51,244,158,142,92,115,246,183,25,210,193,95,45,186,65,121,173,231,101,152,207,236,18,102,208,130,132,245,14,207,239,115,225,163,80,15,46,37,149,24,206,234,187,176,64,3,203,168,224,224,68,81,38,209,76,87,108,211,176,50,161,195,63,103,89,47,173,110,4,79,204,106,137,134,126,125,43,145,244,123,153,159,132,37,232,207,73,210,157,230,150,181,236,9,222,138,156,191,141,66,5,99,77,197,112,206,144,144,213,41,55,223,217,104,206,101,249,220,226,215,0,204,127,176,19,127,216,67,205,153,34,125,75,160,2,182,123,233,197,102,126,157,130,30,246,106,28,51,23,5,85,19,71,218,176,184,76,205,142,233,93,205,24,129,97,90,242,172,153,194,149,119,126,73,68,174,76,53,17,170,139,127,247,231,208,107,41,231,61,235,33,127,149,100,140,241,179,71,22,244,90,128,15,250,180,88,29,123,83,61,79,108,40,103,189,197,255,220,169,98,159,169,199,145,24,199,117,18,150,42,127,152,219,2
 34,96,170,232,232,51,45,29,114,105,143,255,128,84,154,0,120,236,194,215,120,151,239,187,107,80,49,81,81,79,152,70,0,39,106,31,190,64,232,211,220,128,46,206,102,220,182,14,140,72,199,137,93,168,134,58,206,98,205,64,42,131,88,241,16,203,50,79,207,81,190,118,166,49,76,65,60,51,53,156,96,85,110,137,128,43,167,19,101,153,163,5,77,200,194,249,10,210,213,7,106,59,151,116,107,221,58,163,9,235,50,224,143,195,112,113,219,77,124,147,98,238,241,140,170,183,166,190,22,123,253,172,231,155,117,203,40,178,31,115,125,229,121,99,86,227,250,156,57,248,106,240,101,250,236,107,171,166,74,67,236,157,38,60,117,91,157,236,154,101,148,116,161,111,46,150,240,229,44,93,23,4,224,249,183,224,110,76,145,93,248,185,143,209,230,220,40,247,95,235,33,254,81,238,217,31,71,61,121,125,58,183,44,95,59,174,30,3,54,209,130,123,202,186,24,188,6,143,187,194,176,191,29,173,151,201,107,99,174,104,86,228,136,93,240,205,137,115,160,207,222,151,114,86,197,235,93,165,157,112,144,53,17,93,160,97,79,223,39,216,147,58,138,13
 8,60,185,250,214,215,204,201,172,195,153,242,193,99,189,22,21,244,214,62,169,232,77,98,233,63,131,42,56,192,189,246,1,189,55,76,155,189,202,65,87,137,252,40,54,14,56,42,221,189,195,165,169,35,114,0,143,238,9,146,216,151,23,179,170,98,95,79,57,166,125,144,24,165,152,80,99,52,96,138,44,22,120,96,54,234,218,150,198,35,57,173,195,75,172,254,85,207,244,131,79,39,59,100,25,118,56,251,204,75,207,59,71,249,213,141,69,80,4,158,90,117,215,91,23,91,232,130,117,185,216,215,54,117,186,132,142,132,135,206,175,198,37,127,1,10,81,138,218,148,58,22,14,161,159,42,24,56,135,30,193,197,5,224,226,124,155,196,97,139,22,163,17,246,248,236,134,3,184,176,65,107,84,19,179,10,6,247,166,149,70,2,29,245,32,0,106,97,207,32,172,97,143,63,140,7,158,23,248,69,173,198,13,170,0,192,9,164,64,215,181,200,49,50,222,2,19,201,93,153,154,238,63,197,24,205,230,156,234,185,222,138,99,33,6,114,234,238,165,26,209,66,152,204,11,101,30,182,164,212,92,198,178,154,191,192,34,13,107,77,193,237,171,115,231,104,202,151,195,23
 3,55,142,154,60,101,26,90,49,41,108,149,40,15,0,163,98,191,15,181,163,153,178,255,219,8,93,82,55,165,232,138,64,235,78,95,123,153,155,237,105,74,8,67,85,17,206,49,138,252,14,184,82,23,76,138,235,202,190,21,116,106,11,172,133,128,158,14,211,13,108,37,177,99,60,102,205,96,8,235,111,37,14,177,242,190,20,148,16,121,95,178,158,159,102,126,138,211,17,200,52,214,88,43,122,149,187,238,11,215,123,206,183,104,245,46,8,248,184,179,182,208,125,102,199,76,206,55,9,38,185,180,27,113,70,28,119,74,32,174,220,93,186,74,0,53,208,232,116,62,29,123,59,161,74,62,132,24,250,112,62,99,88,112,252,62,176,205,127,11,220,129,175,130,244,158,115,251,134,113,19,249,57,74,75,185,69,12,77,232,42,79,95,97,46,85,23,227,10,89,55,29,126,240,85,160,25,155,161,173,163,32,146,94,55,146,232,211,193,80,26,27,34,178,111,169,177,83,219,232,176,11,25,239,106,98,61,250,234,122,161,159,189,30,203,118,131,176,79,175,246,49,165,33,90,95,254,68,225,112,184,25,30,197,13,210,31,224,136,87,134,205,144,237,251,67,96,76,148,37
 ,12,6,78,234,222,217,100,137,61,33,13,182,45,141,237,49,12,157,213,134,190,184,217,27,33,82,6,251,77,37,127,252,92,253,181,185,110,201,35,177,34,255,170,153,204,129,87,166,209,148,253,151,137,29,28,4,240,55,249,152,214,39,24,151,207,186,33,154,38,128,120,238,217,22,71,8,232,153,63,25,121,127,39,79,90,11,178,195,124,104,3,174,124,211,139,70,173,106,181,158,154,172,23,101,5,193,37,142,46,69,185,238,203,162,111,155,178,169,121,3,42,40,33,239,180,16,4,28,7,113,174,164,27,184,77,3,227,154,13,146,163,7,217,137,44,233,66,150,155,111,254,108,215,87,163,27,18,184,233,255,214,223,26,238,31,164,91,63,35,125,186,19,39,49,162,63,169,109,52,163,10,237,131,121,106,242,139,198,167,237,120,42,154,53,165,45,197,238,222,37,254,193,225,22,69,188,45,203,196,11,234,9,202,201,70,47,184,77,145,151,36,131,179,145,243,206,238,246,253,45,207,91,13,180,180,30,4,22,29,210,246,7,109,15,147,188,85,221,0,68,181,154,23,89,207,81,172,246,166,111,183,199,129,174,139,247,201,204,163,64,77,8,89,181,166,75,95,60
 ,242,113,218,23,104,89,101,159,79,222,212,170,65,80,7,121,182,91,20,139,7,25,206,4,216,205,35,161,116,134,223,197,114,85,28,71,160,171,123,138,21,153,157,131,48,33,32,59,135,191,16,181,135,148,194,138,162,110,89,95,51,16,186,156,146,99,50,245,218,70,249,219,109,35,28,234,172,44,98,230,233,220,94,172,29,73,201,135,104,45,215,134,124,4,241,69,21,53,97,91,116,50,247,249,47,184,4,138,111,51,221,203,170,214,55,120,114,135,67,97,116,83,120,32,37,151,1,26,193,95,228,68,152,148,0,252,74,38,6,77,250,198,179,29,180,153,224,73,175,83,240,80,156,138,211,136,70,121,220,121,133,179,81,40,198,201,99,248,86,218,94,213,5,222,238,184,188,84,159,160,242,34,74,204,56,73,188,207,94,161,21,84,180,227,123,235,26,107,23,44,172,45,230,224,170,170,71,59,161,144,37,112,123,160,116,219,235,201,232,225,208,108,181,118,119,247,187,190,208,194,126,111,111,71,151,29,68,103,162,88,231,217,172,185,217,236,83,174,229,111,33,149,2,168,194,141,147,231,63,44,120,37,212,187,208,218,70,130,217,164,83,34,195,53,251
 ,253,227,135,101,167,96,223,98,147,3,215,151,48,203,179,34,231,58,3,224,51,230,19,62,81,158,172,187,201,172,245,177,68,185,157,82,200,26,37,16,245,19,166,54,121,183,94,128,245,12,77,184,152,108,103,219,146,127,127,79,139,172,105,129,18,75,210,156,191,157,234,230,178,141,59,129,122,135,181,222,76,61,123,237,54,194,25,50,225,230,203,232,11,75,175,160,101,36,141,124,225,244,76,219,157,64,162,2,46,46,228,224,217,141,159,188,230,28,252,67,89,55,32,234,16,67,161,232,226,208,144,241,52,110,201,159,236,33,5,24,245,40,74,125,28,38,21,196,31,249,177,99,130,141,76,13,163,111,199,58,101,94,59,249,222,197,221,122,25,44,150,251,247,64,16,117,112,75,86,164,156,144,80,28,70,120,163,225,71,19,216,8,19,218,152,162,12,101,11,39,31,67,94,93,48,85,251,162,7,45,236,144,107,252,89,35,116,19,157,193,149,121,112,249,30,155,144,169,84,20,153,174,96,185,144,165,123,232,88,188,199,180,34,50,80,6,98,34,70,5,64,64,208,108,74,47,10,178,230,94,86,76,58,215,162,244,19,157,118,71,195,188,28,253,49,229,105,20
 ,59,155,89,39,244,177,177,120,146,49,57,185,206,134,168,113,13,210,55,126,249,90,248,81,60,166,157,235,236,186,149,185,62,147,167,149,235,81,154,49,108,138,99,35,211,231,176,154,108,125,196,175,93,41,220,90,159,134,87,156,101,88,56,96,246,18,58,217,88,247,69,243,181,107,109,196,236,219,181,136,6,101,203,176,79,162,79,226,86,138,130,68,196,32,253,86,131,28,60,234,209,30,82,137,76,212,209,14,65,92,211,76,56,80,78,101,154,236,39,18,29,117,163,36,20,245,172,122,220,47,45,79,192,129,209,42,252,152,89,107,7,15,92,101,97,77,154,61,196,67,254,133,218,58,198,171,217,171,181,68,158,64,196,158,205,99,118,107,21,253,58,144,22,52,253,102,13,204,160,79,21,226,212,237,235,5,61,205,76,15,49,186,209,168,188,193,192,174,25,247,57,4,122,146,198,106,65,100,250,166,47,96,8,121,113,241,0,182,193,38,58,105,241,184,19,252,105,216,47,2,227,31,141,98,21,4,118,2,8,192,243,187,205,48,86,89,154,81,20,105,156,98,161,63,212,7,236,104,79,157,159,184,121,139,67,88,199,103,245,228,22,45,213,10,79,91,33,66,72
 ,31,182,80,223,125,113,101,232,89,44,165,20,130,141,66,212,148,193,47,104,97,193,195,208,148,244,61,36,145,37,152,37,96,190,152,214,231,223,32,132,127,4,173,203,14,148,146,61,245,60,174,107,113,186,229,232,41,53,245,231,245,86,120,239,114,134,138,241,216,4,72,196,55,220,39,13,168,111,22,166,6,79,73,133,137,51,160,158,211,20,201,31,38,82,154,91,122,252,21,19,71,15,132,211,130,95,26,108,59,59,183,176,103,209,221,88,121,100,6,129,66,8,91,129,136,39,136,83,121,170,25,195,116,55,243,129,11,179,44,188,116,240,49,148,223,31,241,151,55,217,24,226,192,221,71,9,67,95,255,225,84,186,51,133,48,140,102,101,107,104,224,241,78,100,21,58,244,2,17,98,162,95,101,144,96,147,54,107,243,104,63,48,16,194,114,87,4,109,55,250,108,177,177,95,197,219,174,27,121,252,51,77,174,21,86,97,4,96,145,3,86,119,34,188,230,87,75,219,63,227,32,149,133,239,109,157,10,25,43,204,8,233,131,127,225,203,246,210,200,194,118,70,29,87,193,54,78,47,237,164,156,152,140,34,157,152,38,140,214,154,223,161,17,220,235,19,152,18
 4,126,219,33,219,67,71,208,80,39,150,165,177,210,58,91,110,138,10,35,161,12,28,75,185,169,190,20,9,2,149,206,106,27,208,110,40,38,229,214,124,149,226,47,197,116,232,81,6,188,203,93,162,32,60,183,101,71,150,122,217,235,104,140,217,18,251,162,181,142,175,105,176,241,95,236,237,1,132,171,1,33,171,143,191,24,2,76,27,80,195,150,152,153,91,178,220,106,110,24,235,89,231,35,2,152,100,92,0,210,207,83,37,160,122,154,136,87,129,250,38,216,163,137,37,214,245,61,163,115,115,241,189,18,104,236,144,219,252,209,254,2,42,202,71,11,45,81,228,144,1,152,24,71,149,92,11,226,32,165,141,50,251,253,23,159,43,7,150,70,199,223,36,160,51,34,175,190,214,81,235,131,177,189,7,228,108,204,124,95,102,1,124,211,66,66,33,111,74,188,105,88,164,137,189,127,208,248,194,84,24,32,82,117,37,118,64,157,65,225,245,83,11,191,168,147,125,120,244,11,51,31,141,89,148,49,200,98,41,94,27,72,233,114,66,6,6,67,19,60,1,239,42,247,103,210,91,103,17,2,244,103,158,49,146,211,3,52,197,15,102,3,196,117,123,197,127,252,181,221,195
 ,60,187,240,8,207,111,124,153,240,73,210,140,103,144,229,82,136,20,25,177,31,143,130,60,249,72,20,138,63,189,171,65,246,110,97,119,30,67,191,85,74,200,0,107,96,250,251,231,1,216,217,111,25,111,52,35,255,125,223,60,4,26,244,84,161,163,248,21,80,62,142,225,152,55,33,26,76,152,149,10,1,135,13,19,71,206,153,188,208,234,130,187,218,33,137,199,133,120,102,213,0,202,223,234,107,120,95,70,239,78,99,124,106,129,162,153,224,108,146,78,19,234,159,123,28,69,177,187,245,197,163,180,139,141,137,130,89,69,138,164,56,103,102,158,106,122,234,95,187,40,88,134,14,148,195,110,65,16,81,184,22,92,250,221,77,103,130,202,106,124,172,83,87,174,27,78,145,231,19,61,123,66,220,8,53,60,50,122,58,141,4,158,244,40,219,21,0,121,23,232,212,235,160,64,61,3,86,196,251,18,64,244,231,40,0,221,111,134,253,137,226,251,36,237,59,20,125,246,129,249,200,103,110,6,48,168,20,115,230,245,202,255,95,229,31,17,145,53,84,95,162,2,33,240,218,247,145,71,173,93,65,78,70,98,128,204,190,145,152,184,109,113,31,160,38,95,5,231,1
 14,127,26,6,119,37,111,41,156,100,31,130,39,154,93,109,218,150,192,3,82,210,98,216,181,215,206,5,243,212,105,95,230,43,141,41,171,123,18,48,73,95,253,49,206,39,4,222,139,168,242,251,204,96,208,61,102,115,88,42,251,128,219,80,171,131,88,216,25,79,26,169,255,222,159,182,157,185,25,101,55,23,94,173,47,99,84,231,71,160,208,246,31,125,87,119,240,213,47,68,81,195,69,148,0,189,116,219,229,7,111,68,220,200,39,57,103,124,34,212,233,61,56,104,16,72,7,22,214,104,8,9,226,238,126,75,49,167,162,159,6,194,57,150,234,142,38,167,232,77,143,167,2,93,162,28,254,70,247,181,40,171,243,189,202,182,230,46,53,17,16,109,58,106,25,156,162,18,12,216,190,38,215,120,14,34,234,50,53,216,251,97,173,47,44,184,4,130,239,93,129,206,141,28,61,106,18,117,70,36,32,180,166,117,126,179,90,101,132,159,138,13,120,155,196,251,248,3,8,241,65,26,54,162,196,191,76,97,80,18,235,116,80,4,103,97,235,107,164,180,128,255,94,135,228,248,99,119,83,233,51,86,73,23,159,227,192,144,65,39,10,68,242,45,57,77,239,242,130,189,194,22
 7,252,184,187,50,195,17,177,5,19,162,88,136,62,95,22,222,46,244,107,25,147,15,193,56,102,5,229,148,226,178,51,173,17,60,204,209,208,203,99,202,52,90,10,181,51,174,114,185,68,129,99,190,8,192,86,227,76,152,114,42,250,167,190,95,66,38,3,9,217,106,95,35,221,255,150,140,15,239,150,218,2,150,151,45,219,145,35,213,248,248,20,6,207,83,124,142,205,195,154,193,171,173,115,106,69,13,92,76,99,47,246,196,161,75,16,145,174,113,106,199,9,96,77,69,205,172,141,31,120,95,7,67,78,153,162,23,96,133,0,121,98,169,33,33,93,163,28,157,12,34,69,227,250,43,151,102,190,169,254,223,85,6,172,96,3,144,242,14,45,15,74,163,9,194,181,253,55,149,27,234,243,21,240,133,202,114,230,0,98,125,114,195,76,228,121,39,10,25,227,234,46,134,42,17,206,186,89,86,0,130,130,49,33,192,207,188,144,182,39,5,183,240,130,124,133,2,78,179,7,27,230,92,188,62,118,220,0,79,248,27,150,252,215,79,240,229,154,38,23,136,112,174,4,58,254,171,165,190,34,110,12,57,91,88,208,173,215,203,18,75,29,8,28,163,29,49,107,234,43,230,38,97,193,195
 ,162,211,112,143,4,200,81,32,48,110,239,103,19,184,99,120,182,11,68,186,125,70,78,248,133,208,28,212,151,237,95,137,10,8,136,127,113,133,148,226,186,21,213,33,49,158,172,168,103,51,82,2,20,103,213,132,48,255,178,148,81,167,59,165,227,219,252,226,217,93,80,149,15,231,21,55,210,73,34,66,208,19,181,206,185,106,53,58,71,93,135,149,26,40,162,204,195,112,30,6,95,19,231,252,117,147,8,50,62,244,97,24,208,86,118,11,119,57,66,24,119,99,232,120,135,150,142,170,30,91,224,16,231,18,254,84,28,169,67,127,57,132,202,239,165,244,2,171,30,207,177,99,141,142,123,152,107,192,141,50,203,225,233,47,251,85,214,31,154,20,36,117,231,231,216,167,20,188,15,225,107,185,59,29,117,161,214,66,4,165,2,159,73,94,56,60,207,166,70,99,175,158,151,10,8,221,11,128,95,29,233,53,8,143,120,45,15,9,27,2,210,92,182,55,8,91,139,166,116,193,66,0,129,40,229,212,245,63,161,190,5,55,191,121,159,243,148,141,41,45,172,15,164,185,28,184,212,12,141,210,148,192,172,36,35,241,239,85,242,146,56,29,51,227,11,43,31,128,169,69,30,1
 16,240,238,46,64,227,218,61,195,132,187,44,207,205,222,205,39,108,165,0,142,102,98,113,9,137,18,11,123,185,54,39,97,70,130,177,1,47,198,226,174,77,239,195,254,40,206,74,187,175,133,141,18,104,143,13,195,113,243,219,100,212,251,141,24,4,222,163,224,181,206,141,250,14,216,169,202,184,213,234,24,175,210,206,180,207,207,224,222,77,97,86,167,31,123,146,226,65,7,199,8,155,81,207,110,83,184,124,175,108,66,38,67,48,92,171,110,238,54,118,209,146,25,220,37,135,81,231,148,45,224,116,22,98,169,84,254,48,189,79,55,14,32,89,156,78,251,171,68,226,219,208,87,157,142,247,47,250,191,106,216,83,77,142,121,214,77,132,36,183,70,48,80,103,31,124,166,108,170,66,191,224,73,201,20,209,215,189,127,140,245,111,227,127,96,138,18,156,194,17,161,20,252,204,53,58,26,241,196,138,115,224,16,62,180,173,234,120,136,246,144,110,101,31,228,44,33,1,125,136,41,241,177,87,67,30,73,38,71,173,230,106,218,114,152,128,21,212,135,161,154,159,182,176,139,236,231,25,156,98,99,97,23,224,213,108,222,235,107,16,69,251,117,5
 4,18,240,47,179,232,184,115,212,141,57,213,8,214,21,15,61,15,133,205,132,202,151,82,75,149,167,164,73,0,83,189,31,201,56,119,105,22,164,80,138,182,188,255,216,144,185,251,162,232,63,95,132,50,50,228,123,181,246,6,78,236,225,6,224,166,218,155,96,147,13,69,203,228,132,250,176,153,251,120,106,17,73,144,150,116,70,30,112,160,70,19,40,72,179,10,50,51,152,22,194,116,19,121,179,177,236,50,176,43,103,148,241,133,27,197,160,74,248,27,17,132,40,217,113,209,217,38,51,127,156,213,253,61,149,119,70,9,22,114,219,143,111,110,225,19,103,102,110,97,169,79,242,86,63,64,3,107,207,33,197,53,178,34,65,134,189,156,131,88,84,15,92,216,195,40,128,102,163,39,1,49,105,149,124,69,185,242,217,143,238,202,127,255,26,94,162,36,98,164,151,70,37,85,59,166,183,16,62,156,183,194,164,169,183,72,16,129,189,26,248,22,107,33,91,194,172,111,16,83,119,164,173,230,165,164,231,144,66,94,188,146,208,193,179,22,27,94,255,161,11,230,5,193,22,77,214,197,2,204,76,121,142,173,100,75,235,103,86,192,224,254,148,184,171,137,
 93,24,135,240,170,24,35,78,62,157,137,155,88,220,173,56,19,40,176,166,148,242,215,64,31,176,50,152,12,194,59,229,197,0,31,247,247,46,6,64,4,115,90,164,236,33,146,174,198,153,193,44,35,66,142,54,139,150,217,224,115,63,172,81,232,43,248,155,130,107,72,169,80,92,198,196,26,52,4,209,64,17,30,49,93,130,131,248,91,0,193,218,63,23,30,249,104,125,223,150,79,70,154,82,33,231,0,232,0,104,120,98,2,248,65,250,19,73,50,78,99,225,152,247,53,107,42,206,154,229,43,138,172,179,17,115,21,152,59,178,8,77,125,188,166,236,239,139,28,36,178,108,216,165,85,149,163,90,27,136,84,138,133,133,159,5,213,102,216,64,42,22,185,154,83,94,225,57,125,118,75,29,29,87,2,174,103,174,148,135,211,135,98,248,196,222,111,224,142,56,106,146,213,79,15,31,192,109,205,157,187,32,44,148,29,5,181,160,254,118,251,142,3,226,225,171,196,231,80,158,160,110,28,24,69,67,244,103,58,64,193,19,33,76,90,162,110,75,68,10,233,7,237,164,69,37,54,105,6,151,139,247,47,216,251,176,157,181,218,69,52,97,240,25,39,0,65,158,63,187,209,116,2
 4,145,205,60,13,211,118,141,227,121,239,76,2,87,254,24,112,116,248,196,227,203,56,157,232,133,227,158,73,236,55,240,111,195,221,29,254,104,6,25,192,237,249,33,97,212,142,87,81,208,195,84,51,212,14,231,16,95,0,244,57,15,118,166,182,156,184,145,44,132,180,86,3,134,250,175,119,11,20,168,36,168,110,137,195,213,108,113,26,8,4,95,234,69,67,249,92,90,158,219,21,34,241,54,158,245,178,21,126,9,7,212,254,213,112,212,198,130,37,134,78,57,145,182,156,197,125,237,70,111,41,105,68,47,43,82,217,52,252,125,92,5,158,43,22,163,209,218,155,38,177,18,60,13,33,100,96,127,23,23,144,221,187,121,247,76,80,70,101,194,53,69,68,185,48,9,229,72,255,43,28,160,241,227,50,212,12,215,23,228,158,219,46,164,118,162,239,166,5,65,85,132,171,28,92,150,188,139,115,64,79,84,130,163,152,145,188,175,130,87,254,85,127,232,177,139,37,44,218,192,230,226,27,232,88,55,83,111,4,199,152,209,173,106,224,231,45,224,39,171,42,192,197,22,136,222,242,108,171,207,168,78,30,85,149,87,168,131,152,248,157,89,83,200,40,77,38,176,25
 3,233,8,135,94,133,55,138,23,222,4,173,158,97,236,28,9,28,238,203,248,226,184,31,111,0,6,147,5,6,171,76,118,251,207,233,91,108,155,231,211,25,59,64,140,239,74,238,137,222,203,206,63,158,197,217,254,157,169,229,91,164,241,93,156,93,212,193,232,35,210,123,54,110,69,55,231,75,87,97,100,102,176,25,226,72,95,154,5,68,22,163,135,214,84,154,34,168,36,110,79,145,89,7,32,89,207,204,111,78,71,86,23,54,8,2,178,144,102,23,247,111,45,98,188,72,143,90,86,220,149,192,101,229,106,167,93,112,211,234,189,254,37,113,146,58,249,127,93,65,138,20,111,177,20,225,1,58,166,38,121,111,17,237,164,100,81,240,101,21,55,167,44,216,225,180,171,205,67,252,13,175,70,187,11,157,203,228,198,149,133,77,18,96,36,52,150,133,59,101,167,44,167,228,140,14,74,184,234,40,196,12,100,205,164,253,97,60,71,120,214,250,158,162,155,149,173,10,11,135,25,204,238,160,250,112,67,184,159,43,226,199,190,232,11,13,8,57,235,114,19,121,199,181,130,187,189,113,212,86,246,11,203,16,229,104,121,155,12,38,8,211,184,188,18,43,8,88,83,22
 9,242,78,252,246,78,118,158,107,49,219,197,34,150,157,112,47,55,8,142,253,115,3,198,176,232,71,112,123,213,19,209,231,98,100,87,19,16,58,186,5,23,186,141,172,33,37,60,147,215,143,221,244,28,148,219,156,142,146,100,220,54,31,229,216,137,131,117,7,53,242,58,190,166,246,164,135,161,83,152,199,15,3,20,94,27,194,165,197,211,65,98,0,121,17,125,133,204,57,70,164,211,86,242,126,195,246,135,76,4,242,225,86,220,14,45,217,85,15,240,126,205,245,204,234,179,22,34,56,19,112,151,45,11,166,110,58,48,249,128,35,69,200,2,55,103,236,30,22,217,138,116,94,230,82,6,155,219,157,77,206,225,89,177,203,234,76,241,122,248,116,233,152,0,190,95,229,202,88,99,65,248,70,230,209,137,63,11,84,74,88,234,162,117,214,172,17,52,162,225,210,50,161,157,160,72,209,231,112,251,92,6,114,218,28,107,129,227,170,250,236,21,90,65,16,206,245,178,148,155,157,95,247,125,156,89,36,148,216,47,103,241,229,112,246,223,30,34,80,136,115,142,111,4,40,11,208,89,16,172,245,187,49,101,64,236,176,9,167,174,5,230,110,123,225,248,29,0,
 189,110,155,50,141,251,99,33,26,177,5,225,20,222,224,159,60,165,201,9,177,255,144,111,79,175,248,138,81,155,225,84,94,190,3,148,117,132,100,46,9,212,196,213,190,45,5,76,241,18,9,198,67,160,250,54,136,215,81,140,38,41,127,13,250,224,174,26,219,120,142,78,5,153,206,80,103,95,32,125,66,141,122,180,19,239,233,253,163,152,100,223,1,115,91,229,95,58,211,222,122,15,165,76,48,24,148,20,6,174,38,88,179,10,185,8,74,92,8,225,206,239,254,100,108,4,178,16,255,69,139,121,111,178,181,232,186,30,94,128,112,125,138,215,237,138,222,221,84,112,8,34,215,104,245,38,216,104,125,184,31,225,141,11,153,109,152,69,240,236,18,68,203,210,166,74,38,125,249,97,24,19,20,156,117,101,29,33,229,76,253,61,143,48,221,59,112,13,23,129,75,151,220,93,126,36,93,208,201,219,238,30,206,69,157,81,116,146,57,113,203,253,47,73,26,83,128,59,112,240,136,186,100,89,4,106,222,85,22,99,211,154,136,101,12,153,219,249,101,33,120,53,99,59,251,234,3,18,86,58,249,130,64,239,100,53,86,156,187,221,167,98,96,27,200,162,107,180,243,
 98,59,222,180,156,2,15,69,209,29,115,123,137,209,214,221,59,106,139,189,166,143,86,66,0,88,158,186,198,242,38,109,86,248,178,138,18,70,227,217,216,255,98,204,34,165,201,184,236,0,107,75,194,126,39,192,14,189,63,140,230,226,207,50,78,112,19,100,165,144,226,164,248,122,212,116,115,207,210,46,81,34,68,183,92,34,101,145,167,23,19,37,85,206,172,148,53,48,185,173,136,40,89,133,58,207,5,87,223,165,75,192,43,158,74,253,133,0,65,105,240,61,62,150,32,243,60,95,44,214,194,66,241,141,188,253,220,111,209,30,39,53,45,69,246,13,33,201,56,51,47,41,84,45,1,89,147,128,211,194,111,135,112,75,202,63,247,197,130,187,199,206,72,31,124,225,251,3,194,65,133,229,215,229,151,140,135,139,87,105,147,86,229,18,77,165,170,7,55,52,224,53,120,241,184,18,98,26,252,209,252,191,125,120,225,0,175,255,151,111,196,118,35,244,82,50,190,229,129,56,202,129,172,56,172,46,67,112,96,200,221,49,240,84,17,185,55,136,97,167,28,211,131,242,78,135,17,44,137,242,98,121,22,236,73,226,222,24,73,87,132,27,228,57,250,42,243,120
 ,105,79,86,80,104,144,235,172,46,189,42,12,10,133,109,73,158,119,92,158,238,33,67,213,186,160,96,145,253,90,135,67,242,175,108,87,39,130,188,145,26,138,43,36,199,187,33,181,101,249,207,118,244,115,43,43,239,231,221,250,235,3,130,211,222,144,21,116,114,7,167,73,79,185,124,149,92,187,192,52,165,22,8,65,46,162,84,56,196,114,168,163,88,0,133,142,69,121,22,19,226,171,178,192,6,119,242,141,29,216,139,8,172,35,58,164,17,10,37,214,28,63,72,239,252,213,198,74,59,117,109,178,91,115,237,28,65,162,11,243,35,211,235,195,222,209,239,158,240,208,168,203,172,253,167,145,102,242,22,165,69,78,127,0,49,61,8,138,43,186,243,175,67,6,117,142,138,192,245,37,32,220,92,166,145,133,173,55,225,85,149,151,172,14,160,138,141,1,109,14,157,112,60,80,239,134,136,18,153,183,4,7,47,193,141,111,74,88,106,200,79,89,194,193,245,171,117,164,146,146,91,109,229,55,167,176,61,47,216,199,193,234,223,127,75,154,172,167,19,177,60,5,83,176,64,103,6,231,146,141,85,108,77,93,166,62,88,242,192,12,84,238,41,254,248,100,232
 ,117,38,237,163,49,74,128,72,185,0,227,111,109,101,175,180,209,153,217,95,43,191,171,175,40,0,11,103,71,28,72,140,112,187,188,129,251,243,132,89,204,132,24,230,13,21,80,225,18,244,179,36,116,211,58,5,230,105,106,213,230,156,135,187,41,133,215,39,128,214,234,131,232,213,134,255,240,237,34,56,118,81,100,36,1,1,134,219,254,119,222,249,210,209,92,86,29,91,132,9,1,183,219,121,241,66,14,102,174,150,233,108,235,16,44,174,84,120,20,252,190,243,39,229,120,105,143,142,160,110,173,196,71,76,155,236,110,221,122,223,185,154,190,120,187,79,5,165,241,136,105,96,189,245,229,124,101,174,211,235,141,2,238,128,219,209,206,135,0,56,4,154,172,205,137,156,230,151,138,189,228,22,11,193,75,147,233,78,18,51,237,91,231,106,149,167,87,166,203,85,235,174,224,62,148,116,16,136,72,136,26,31,8,188,195,74,40,31,24,96,218,92,176,110,51,118,11,252,214,73,4,136,2,97,149,159,211,230,143,60,128,174,157,243,121,13,86,171,108,203,118,19,7,31,14,171,142,240,203,162,26,100,87,12,34,155,15,255,89,251,122,148,96,191,
 13,33,137,218,1,116,182,249,82,29,58,15,92,85,11,202,54,53,23,5,29,29,23,150,173,44,143,209,30,166,131,157,67,157,189,88,172,115,82,160,85,136,234,246,3,23,164,160,53,221,142,158,220,74,136,205,8,120,158,229,131,225,151,34,0,164,121,244,250,160,7,93,186,87,103,202,217,15,169,149,139,203,31,98,154,219,121,241,231,101,79,178,51,221,93,213,41,194,110,236,163,90,45,90,62,178,238,31,29,166,48,58,247,7,242,144,160,186,202,237,22,94,230,85,175,9,188,61,71,142,17,179,181,9,136,17,255,120,34,152,53,133,238,112,46,249,181,41,106,172,29,251,111,32,61,110,168,97,78,103,209,210,175,4,248,135,115,154,28,46,38,45,90,163,182,62,110,254,77,190,157,176,221,228,254,147,11,91,170,80,50,80,8,211,40,181,242,15,160,146,15,173,22,223,75,162,25,18,124,134,78,102,213,59,93,47,209,27,107,149,15,64,153,186,16,137,141,183,127,235,200,178,24,95,161,206,28,42,16,74,164,114,90,170,47,234,70,245,15,45,13,21,157,88,120,189,223,50,94,62,170,249,53,185,152,205,108,5,92,5,51,13,182,140,40,120,119,33,253,161,168
 ,182,214,184,127,70,110,186,10,22,221,165,31,119,140,14,90,249,239,161,62,21,38,86,228,63,22,173,7,159,194,160,132,40,206,227,160,120,47,177,202,150,68,201,173,122,124,254,128,137,220,197,164,50,213,238,121,130,155,254,175,101,178,22,243,227,179,117,125,238,19,115,91,181,153,141,141,245,94,53,56,173,223,96,16,184,113,68,47,122,4,25,164,58,167,208,254,61,43,203,32,84,60,227,154,154,194,29,5,159,2,150,115,8,47,13,146,8,237,204,121,110,226,255,124,44,60,137,75,135,128,17,47,185,112,9,231,85,207,222,27,52,220,59,18,238,115,192,22,147,29,185,117,74,18,181,197,144,111,125,170,151,190,95,76,150,89,63,105,245,72,47,123,254,111,46,176,60,193,201,68,217,87,243,254,23,227,58,81,85,68,146,32,77,195,239,72,227,223,208,113,135,214,198,162,93,7,70,10,113,196,241,251,7,7,85,159,28,57,157,182,5,248,89,184,195,63,19,168,229,62,197,221,139,176,91,182,198,179,192,129,110,103,225,118,240,103,232,121,87,199,131,183,0,32,17,48,100,125,255,186,220,220,90,65,26,23,183,64,19,138,65,30,157,233,218,184
 ,149,187,25,212,248,238,47,36,233,167,229,211,205,40,231,44,128,252,23,86,71,110,156,4,10,172,48,202,60,82,101,86,125,32,223,214,198,58,130,95,61,223,119,225,119,105,206,119,226,115,64,53,87,157,217,133,33,27,195,185,213,163,3,236,72,173,142,116,251,152,236,208,57,154,190,246,51,19,208,121,219,80,216,112,196,29,151,91,50,187,119,155,128,65,246,182,183,69,185,141,236,68,126,31,82,187,73,123,7,220,228,125,55,69,54,205,208,174,100,37,63,241,135,35,79,207,72,81,49,160,58,37,204,182,22,61,206,89,83,172,11,158,129,231,51,167,27,92,244,64,234,7,132,249,154,29,190,181,16,192,253,141,86,229,164,189,2,210,33,183,214,6,129,99,91,64,72,92,169,89,202,187,91,26,83,164,46,149,247,72,155,109,182,49,233,149,196,4,172,81,145,237,127,169,191,50,148,58,102,119,62,129,79,12,133,144,180,99,250,175,169,176,48,237,112,102,18,3,144,84,188,148,59,42,254,81,148,139,69,40,200,252,23,21,176,239,133,137,16,154,29,37,137,32,57,44,216,208,90,241,200,157,19,113,243,181,171,244,189,91,121,108,194,172,38,227,
 2,82,72,6,140,78,2,196,147,223,215,102,28,191,38,96,238,193,240,171,17,185,240,208,187,4,88,44,187,11,164,136,42,109,24,108,173,154,150,86,233,169,107,130,77,194,121,137,152,118,32,108,39,173,232,67,214,97,101,44,86,164,14,205,1,66,98,106,246,170,130,65,139,171,170,246,81,220,119,80,63,34,106,198,6,71,133,111,32,128,147,216,182,2,162,36,135,100,71,168,222,216,68,239,69,64,118,144,93,190,138,244,135,198,221,52,54,121,36,187,109,4,200,157,110,245,250,191,26,131,115,170,125,142,151,241,225,241,137,241,180,2,240,147,53,40,199,167,182,146,39,245,40,44,102,109,110,89,108,5,188,113,14,217,128,231,8,79,56,18,72,68,35,91,47,50,104,240,134,209,23,63,215,214,178,135,223,1,221,84,241,84,168,149,34,1,102,142,244,207,169,101,51,182,25,143,104,82,143,137,56,99,153,122,88,88,36,203,182,7,226,170,98,119,82,237,143,214,130,240,17,239,213,96,197,246,21,72,103,182,26,227,49,24,54,238,55,74,76,207,46,39,158,235,87,214,144,46,46,255,26,208,6,39,239,191,43,223,143,248,178,246,38,61,129,91,32,80,69
 ,141,252,166,245,23,71,45,25,67,22,245,122,194,83,46,95,89,175,17,99,163,24,45,204,61,8,103,26,147,146,52,227,8,203,94,66,57,160,108,45,67,190,39,117,23,87,173,204,41,242,108,171,78,70,126,0,30,43,168,249,234,200,253,91,199,48,121,55,19,235,141,240,74,205,11,139,238,1,30,65,163,243,122,15,164,176,233,87,149,37,89,237,237,29,160,227,52,198,138,206,98,212,57,249,220,235,176,62,62,212,19,113,133,198,62,131,74,163,73,35,143,46,55,178,56,32,103,37,123,248,153,238,5,97,167,88,103,205,202,190,242,149,28,231,141,73,221,94,48,28,47,11,5,1,250,127,151,150,120,208,149,24,241,173,233,79,167,151,252,41,49,107,199,150,60,60,102,8,148,13,155,3,235,56,132,179,55,78,162,137,144,38,233,96,122,192,24,182,47,100,75,92,54,212,42,46,6,41,248,95,109,242,243,16,213,221,132,141,213,70,185,22,30,12,139,197,1,80,230,29,222,7,162,147,79,80,8,186,148,93,115,238,181,36,165,24,118,141,8,233,140,152,187,91,135,197,31,215,82,119,178,222,103,12,251,136,64,85,60,20,15,2,22,212,19,23,141,98,22,216,143,46,127,2
 23,18,168,139,193,167,201,51,245,47,75,135,251,46,63,245,19,134,127,166,53,77,137,247,146,45,90,249,234,177,244,18,74,16,215,217,128,102,246,225,191,129,191,62,70,242,226,178,65,84,111,108,11,160,89,250,82,78,7,181,222,43,10,207,19,84,145,136,218,76,137,70,202,236,105,13,39,208,38,51,71,46,75,172,2,222,114,210,143,14,152,44,165,175,9,27,203,90,20,232,158,24,176,198,41,17,122,203,14,197,248,31,230,89,16,34,246,243,118,254,147,82,191,36,111,228,96,115,159,169,74,61,185,100,200,249,243,187,150,62,49,94,129,85,223,138,55,40,246,60,208,152,34,157,190,190,186,81,236,141,111,199,29,230,141,148,163,176,251,139,48,52,150,229,75,130,194,239,112,28,46,123,23,210,60,171,162,69,22,161,151,216,72,177,13,51,75,218,229,105,87,52,26,130,53,109,98,196,16,146,209,216,239,35,187,233,228,148,121,162,169,172,141,148,89,241,137,210,231,66,123,186,67,90,205,216,34,114,51,154,133,124,112,37,192,0,150,255,74,232,72,152,26,73,73,159,80,173,253,144,137,183,215,160,107,151,29,100,120,33,238,59,47,35,15,
 184,103,177,214,36,134,132,68,204,205,127,97,245,247,180,91,2,173,59,209,98,167,181,10,10,31,41,243,36,131,82,106,124,8,171,30,141,143,12,66,9,18,78,97,67,129,163,173,190,118,235,64,197,31,227,184,221,254,78,103,136,97,107,2,34,180,211,21,27,98,154,155,163,209,102,53,57,124,230,142,16,161,182,134,58,141,195,117,93,146,46,80,164,247,169,40,131,118,165,120,225,216,206,181,142,101,123,221,215,61,160,104,213,27,254,241,7,113,245,60,216,199,67,107,238,179,33,185,201,157,132,79,11,153,79,187,213,10,194,255,4,208,196,163,4,134,48,66,17,187,111,100,128,64,24,5,59,77,87,244,79,99,4,131,91,229,190,178,42,200,79,218,178,62,145,242,78,152,1,234,82,178,59,197,70,40,63,60,75,11,117,10,16,100,73,155,29,183,56,236,81,253,165,160,117,166,147,13,195,214,84,97,197,228,68,230,243,110,234,97,42,141,66,218,24,243,23,122,69,122,19,67,185,104,154,9,136,98,15,132,174,161,254,27,26,46,233,242,118,56,166,223,19,150,2,119,193,10,0,223,134,42,144,159,163,120,15,136,41,206,89,32,0,196,63,188,81,159,158,6
 0,118,181,195,35,49,249,102,148,153,226,35,231,79,25,62,251,75,35,194,241,30,63,136,193,106,112,131,177,187,90,99,240,132,73,5,184,115,0,195,169,25,179,126,158,217,94,105,121,166,188,109,87,209,31,84,125,253,72,96,102,108,124,146,207,224,135,220,139,153,61,197,154,118,51,61,15,41,100,31,66,156,44,156,11,19,165,58,45,173,95,5,139,13,231,16,100,198,229,123,175,123,196,13,36,121,158,109,13,8,228,0,61,16,141,87,93,214,1,152,225,22,36,170,192,121,68,201,230,67,119,206,227,241,186,155,89,99,117,76,187,123,58,152,124,198,141,72,56,113,134,80,170,152,91,245,213,204,95,57,255,223,196,114,100,77,140,169,50,5,68,74,59,173,43,58,190,163,112,47,231,169,99,30,93,244,33,173,224,219,161,20,165,88,51,55,165,146,240,189,82,200,176,108,130,147,125,198,148,205,158,33,152,63,40,29,13,86,194,122,185,192,130,195,56,221,174,131,75,52,155,184,215,182,0,117,112,44,161,31,252,247,166,91,177,2,125,241,234,246,41,145,110,150,94,21,243,36,237,65,95,64,61,142,208,70,242,93,77,254,82,120,132,62,174,187,94,
 83,170,107,156,240,206,3,174,203,129,209,241,116,197,202,60,9,202,208,238,169,208,135,68,177,144,181,51,111,159,114,1,52,194,0,42,11,74,251,10,23,91,180,115,176,158,252,45,165,184,223,184,15,134,32,17,28,132,247,122,208,94,128,18,4,245,124,139,226,11,119,140,231,232,37,70,135,243,175,208,3,148,9,221,193,166,163,18,201,220,42,38,75,92,177,26,197,183,75,15,245,184,123,168,79,228,156,215,169,211,246,200,181,93,136,108,173,27,165,157,62,135,110,66,228,44,158,254,63,147,138,56,154,100,247,138,227,184,116,211,240,25,83,232,252,95,85,203,134,91,33,57,152,107,250,252,39,129,231,214,195,56,239,1,86,128,65,130,174,14,185,109,151,35,102,224,32,53,103,95,110,200,36,224,146,176,59,156,45,118,136,229,121,196,12,53,209,194,139,38,52,115,146,205,45,65,0,111,206,224,45,147,94,55,87,45,203,91,56,9,89,79,125,166,237,137,190,64,174,127,3,40,132,253,21,251,44,28,89,201,84,219,171,72,218,49,137,83,239,55,215,227,165,169,52,118,243,161,116,61,222,60,255,174,63,178,60,100,97,250,63,244,69,137,174,1
 38,254,239,254,16,159,100,4,241,35,185,94,96,21,183,203,108,13,27,113,89,217,221,91,47,108,75,15,159,213,203,187,204,210,94,167,155,201,23,162,248,90,212,60,192,150,76,68,41,214,152,10,171,60,96,167,112,227,1,88,26,138,238,204,205,103,125,165,189,199,48,38,83,180,9,107,96,12,83,194,80,39,221,228,78,240,98,177,200,73,17,232,72,211,186,102,244,162,211,138,118,63,12,47,96,106,177,229,60,79,141,22,37,2,75,181,92,125,250,15,101,236,145,143,134,122,73,1,242,10,55,12,160,18,61,237,114,152,199,22,201,85,21,9,115,39,213,81,66,177,101,185,161,144,14,178,103,29,155,186,185,52,160,166,218,109,25,19,64,196,89,245,229,169,87,80,70,239,204,84,170,41,190,22,39,85,43,39,103,151,87,188,193,97,11,69,250,39,2,125,134,20,26,51,110,222,254,47,185,142,234,80,130,5,9,190,38,209,199,127,183,220,191,31,245,134,158,98,12,164,24,233,81,140,145,112,226,128,164,136,66,19,108,123,131,230,197,30,122,126,24,169,255,74,4,73,78,60,87,88,179,132,136,152,241,211,18,80,86,179,102,246,116,65,223,80,49,3,126,109,1
 68,15,49,126,118,84,78,175,96,146,151,121,223,23,238,19,170,159,105,3,169,106,62,190,141,197,160,158,242,211,196,233,208,178,20,206,94,47,132,95,7,248,27,179,20,20,177,37,146,232,171,29,31,21,143,64,158,174,133,109,180,138,25,128,149,143,189,238,178,152,18,145,184,214,212,235,105,132,166,231,198,109,11,26,210,104,101,66,43,145,38,121,146,205,132,201,193,109,166,115,186,70,222,182,27,8,20,196,21,172,207,228,34,254,225,115,63,218,63,89,34,45,27,61,171,254,119,132,146,80,89,26,240,137,145,120,115,3,221,182,72,152,218,15,52,228,252,235,219,22,90,210,46,191,114,156,221,250,17,69,133,218,5,53,1,173,114,204,10,226,204,159,69,171,243,59,103,1,241,31,48,137,184,233,182,148,39,19,14,137,225,13,240,177,236,175,226,202,162,20,225,145,166,7,137,211,35,129,9,7,169,144,224,27,13,110,236,118,49,165,145,251,72,107,200,94,23,102,12,95,137,123,72,60,144,26,87,215,204,92,51,203,92,71,48,196,163,187,70,192,153,63,62,60,189,134,43,169,63,244,134,174,15,89,115,123,149,88,53,129,253,47,75,247,253,7
 1,229,255,12,17,11,133,249,223,38,195,157,51,199,150,13,98,187,159,100,114,164,79,173,170,232,142,102,51,17,79,138,86,16,132,217,229,116,241,110,73,117,90,125,117,232,213,85,239,10,184,117,58,189,177,97,212,168,12,230,251,228,108,133,27,62,66,120,247,23,204,131,46,142,86,160,156,107,26,20,13,130,173,107,183,139,132,8,2,80,196,112,181,79,109,65,114,252,150,166,38,209,39,50,137,192,34,248,62,16,21,27,107,179,99,157,233,250,191,77,45,136,64,70,206,91,181,247,125,142,116,152,237,34,207,93,96,214,163,93,137,228,111,103,39,68,235,244,11,75,190,191,220,30,203,149,1,188,86,182,100,86,135,142,9,106,249,111,36,252,9,22,159,127,39,42,53,94,249,31,239,156,86,202,132,122,62,160,212,255,91,49,131,130,61,214,248,108,102,226,182,47,165,210,164,159,169,97,48,21,72,144,12,97,166,202,33,95,154,186,216,7,71,184,97,157,131,138,102,191,1,80,40,3,122,235,240,98,155,61,149,254,230,2,133,9,83,244,170,214,34,194,163,140,49,167,132,135,142,22,5,48,204,69,212,31,187,42,179,214,41,158,51,183,184,114,33,
 79,77,38,83,233,211,244,181,215,78,242,107,74,98,34,120,248,239,175,98,211,182,182,135,106,192,253,80,242,186,199,40,167,91,118,227,66,70,6,238,101,98,2,188,229,213,229,173,19,228,249,91,252,158,176,101,240,210,93,18,4,11,38,111,237,219,187,19,7,59,130,6,167,96,60,211,163,42,160,241,221,214,197,155,203,255,253,246,196,22,44,253,222,200,75,138,111,217,58,109,247,166,171,121,250,115,35,201,221,163,184,36,91,255,168,41,78,188,160,211,21,43,168,219,164,215,220,63,236,141,96,204,237,20,254,69,70,125,234,67,52,255,140,130,95,224,16,175,215,35,163,115,168,17,170,182,98,12,115,189,233,204,240,38,254,98,144,158,148,72,75,219,203,11,38,58,96,210,95,132,72,254,213,139,80,18,166,157,38,129,141,184,154,24,165,109,81,39,146,199,26,97,228,198,120,140,39,205,98,212,91,56,168,38,21,118,106,121,77,62,29,83,81,186,226,73,11,99,198,18,132,189,74,140,41,148,67,78,37,183,220,234,112,83,126,0,1,72,253,251,67,197,67,132,8,167,220,111,59,17,203,214,208,213,36,155,215,231,15,90,140,207,153,1,36,221,2
 02,2,230,70,206,192,33,83,75,90,66,86,140,230,203,69,118,20,64,14,162,117,156,234,44,33,191,178,242,33,173,252,120,174,246,12,205,45,87,209,206,225,132,249,163,231,201,208,59,108,151,67,164,125,9,205,64,22,69,194,230,213,25,166,132,172,21,255,150,58,161,91,224,87,222,176,23,142,176,40,25,192,108,109,103,177,161,14,214,59,212,53,136,77,132,134,233,83,195,180,151,143,116,193,77,59,204,141,234,44,120,226,21,184,229,17,153,121,97,238,3,64,8,59,238,14,203,166,105,115,120,24,95,1,12,117,179,95,230,31,31,225,112,8,143,80,91,71,170,67,84,194,215,249,195,146,164,153,140,215,29,133,50,180,61,199,1,69,75,20,114,126,215,40,6,19,62,59,118,147,186,159,186,15,72,40,16,198,36,91,252,86,254,235,175,67,78,23,250,13,65,219,151,177,112,121,77,255,197,38,159,69,43,207,99,248,181,208,73,252,114,236,19,144,156,10,255,87,106,43,160,233,82,176,92,241,73,46,216,17,81,137,28,79,232,126,9,164,148,85,175,204,157,97,228,59,139,60,156,24,6,109,63,206,248,22,233,111,87,154,178,248,135,238,32,110,25,78,125,
 29,140,9,205,42,228,84,44,88,149,126,227,178,139,22,82,25,197,124,212,40,103,87,29,225,205,254,227,134,209,187,251,49,231,77,209,245,163,114,144,82,115,55,100,220,198,123,136,142,8,122,43,36,67,218,39,223,87,187,53,228,61,123,112,9,189,30,231,87,15,133,53,32,251,223,77,215,77,30,89,79,194,186,238,145,94,107,19,49,247,126,9,61,194,0,25,177,240,145,216,48,250,66,83,41,9,96,189,223,136,140,250,123,206,1,47,154,117,130,227,99,133,10,74,7,232,200,57,38,216,235,142,32,32,17,73,53,20,232,247,252,151,161,248,169,119,171,168,230,40,49,189,169,198,159,85,82,14,116,208,238,62,169,192,215,141,12,160,30,25,160,112,15,222,183,217,172,65,48,71,119,0,56,200,2,53,9,137,76,206,242,48,25,155,239,114,103,114,84,249,222,211,222,21,26,85,86,232,52,99,34,91,152,88,67,146,72,109,208,246,215,88,215,255,2,139,242,138,194,198,199,141,30,2,23,233,192,101,160,224,23,138,167,231,36,31,62,251,25,185,138,95,123,5,71,119,117,170,179,157,204,130,55,235,166,102,3,109,214,182,25,64,56,70,218,6,35,21,23,205,216
 ,134,71,9,185,8,150,29,39,247,150,126,233,105,74,40,174,112,120,244,184,17,243,143,153,26,237,185,26,107,177,143,242,134,179,233,98,178,65,247,94,9,241,217,95,0,231,240,75,235,29,158,233,93,229,155,134,101,152,72,206,162,176,208,98,147,5,105,171,52,243,102,56,101,222,97,87,253,193,135,60,5,250,98,211,222,163,9,84,212,133,151,206,46,59,104,110,85,44,79,236,173,118,194,219,153,236,9,117,50,235,39,253,203,73,244,1,86,133,223,5,30,71,27,197,61,5,73,134,152,42,90,179,4,36,1,63,206,234,125,187,225,106,152,24,62,232,154,216,82,41,156,244,242,167,201,140,223,240,104,121,59,164,7,251,237,74,164,248,85,96,176,124,55,133,199,122,145,200,48,158,199,42,222,210,6,160,113,7,26,240,211,197,203,97,138,224,216,60,76,84,108,235,196,162,21,55,213,57,108,203,35,211,74,11,152,182,189,177,77,169,125,117,40,233,20,246,138,182,198,206,216,180,63,146,113,163,1,146,208,60,231,171,175,81,112,57,13,128,226,59,70,192,160,208,153,84,24,4,5,58,43,172,232,60,202,46,233,32,180,77,131,108,36,242,201,28,174,20
 8,119,116,241,184,109,10,35,246,241,128,233,221,70,22,163,171,87,144,139,91,6,119,188,74,249,11,131,117,148,51,122,248,119,65,161,43,201,246,36,14,65,61,101,173,234,55,153,207,96,76,144,31,15,221,212,216,115,101,86,133,5,169,49,111,107,57,50,221,118,45,198,8,78,138,142,213,211,75,217,142,93,89,201,32,60,19,101,45,204,237,246,211,167,5,49,39,8,100,47,42,152,112,250,196,77,11,149,16,198,151,119,189,127,163,246,99,17,65,9,203,1,60,87,115,65,152,21,41,184,154,174,82,34,153,6,194,64,54,10,17,218,17,248,214,184,59,142,101,44,183,187,66,26,141,134,231,24,114,19,132,217,86,236,221,2,19,23,216,116,183,11,40,176,207,63,32,238,57,196,149,44,226,32,222,130,224,45,221,216,199,19,101,160,174,165,7,101,26,93,92,67,156,31,105,164,198,57,14,216,206,22,186,249,185,175,28,33,176,24,154,53,207,48,76,105,13,118,144,255,206,204,64,251,24,133,192,164,239,88,98,167,56,248,27,2,38,26,15,109,146,242,98,133,108,81,22,207,163,3,5,9,56,57,195,249,91,68,225,245,183,15,40,79,214,210,2,36,47,229,114,55,124
 ,216,87,226,230,84,36,89,19,7,115,49,182,26,222,11,235,194,235,249,118,10,227,98,101,163,159,62,221,0,81,208,229,240,168,111,246,62,35,88,16,49,119,85,84,38,233,20,32,109,118,75,103,229,147,235,49,179,132,109,73,103,53,120,57,200,179,43,51,86,48,8,86,95,152,248,152,28,18,93,40,14,166,155,187,104,205,252,122,72,27,61,227,63,17,219,38,181,109,152,3,190,90,172,133,60,243,76,237,61,119,94,160,81,123,90,199,95,179,110,211,151,101,23,105,64,140,240,53,136,110,41,237,64,240,93,43,200,245,12,82,121,252,52,42,63,98,202,156,61,33,120,151,110,45,249,168,150,129,55,47,253,158,48,153,101,165,155,182,210,216,91,127,144,87,217,175,19,107,115,245,4,33,225,240,50,64,187,164,55,161,201,141,101,191,252,59,93,211,248,73,36,72,163,143,53,86,61,237,137,209,230,11,194,138,224,154,127,133,11,192,195,144,128,61,240,149,93,3,223,52,43,112,169,26,170,86,178,201,218,221,12,106,87,127,252,210,160,231,5,216,150,209,7,236,246,99,15,166,130,138,83,244,186,34,85,96,131,0,136,82,131,142,129,214,126,141,152,2
 09,111,245,31,62,20,127,127,240,19,72,30,34,51,54,104,31,56,73,226,247,200,188,183,45,70,81,11,159,229,213,204,223,123,59,202,87,87,150,26,36,178,251,6,202,26,103,169,28,171,38,183,99,40,160,140,61,94,125,93,40,37,87,32,241,90,17,185,34,47,240,165,132,137,219,44,16,104,234,178,164,219,29,169,26,195,184,245,8,172,171,76,96,161,215,183,196,147,133,69,37,36,188,223,240,90,254,194,221,169,94,19,134,66,105,31,158,164,53,120,246,73,9,60,57,19,39,46,181,173,195,104,144,38,191,3,9,248,147,129,16,79,244,74,223,137,242,235,115,217,65,205,188,179,160,196,91,129,190,119,234,52,227,181,147,29,149,103,23,3,183,171,242,108,27,98,101,139,159,204,21,176,96,24,70,88,234,157,110,143,31,126,175,160,36,68,141,116,211,202,165,242,242,173,99,54,233,230,233,228,139,47,62,173,209,32,207,254,192,230,139,219,75,162,129,206,65,126,101,172,101,61,213,59,68,149,159,176,169,43,82,235,243,36,101,150,6,189,6,168,69,14,253,156,231,144,174,22,120,140,72,93,176,245,6,23,191,129,77,81,58,181,108,71,99,45,23,141
 ,95,45,64,8,212,133,12,20,253,209,158,116,251,166,208,135,251,50,208,69,164,136,104,64,175,240,89,136,236,148,216,65,249,103,118,60,79,192,89,36,223,108,58,139,112,65,144,168,167,87,188,237,237,207,82,141,212,101,188,210,12,85,101,221,193,21,108,47,121,76,1,122,114,197,7,90,247,78,251,146,132,160,42,64,216,252,64,54,119,206,138,144,38,162,97,115,191,30,131,230,145,250,198,135,122,123,190,100,56,50,186,230,219,159,58,48,66,138,149,100,181,51,218,83,220,87,222,151,76,222,45,145,115,209,44,193,84,108,252,162,112,189,52,131,54,97,235,163,69,168,222,217,6,221,84,105,214,235,4,167,91,231,134,94,51,18,19,131,91,232,115,37,56,19,4,160,100,71,115,57,52,182,142,120,251,170,105,104,194,153,39,36,111,224,199,58,40,20,58,188,110,46,89,218,189,223,223,74,108,233,162,36,5,85,232,230,153,157,202,101,72,43,91,250,202,133,23,242,94,228,34,152,55,160,118,9,251,38,124,134,154,211,108,225,167,105,55,199,104,116,162,41,95,178,135,55,222,159,58,216,109,124,130,226,31,123,225,4,25,221,152,12,149,10
 8,100,23,151,114,212,80,235,126,255,187,87,24,235,221,130,155,154,106,92,170,211,251,8,106,193,192,234,199,105,245,178,178,48,27,233,50,3,86,36,192,16,197,155,63,48,232,228,15,61,247,63,236,82,217,93,225,185,180,4,196,128,193,151,132,117,194,102,13,78,191,44,209,113,58,103,64,215,18,163,77,188,242,239,49,129,24,111,94,138,17,29,114,174,252,251,117,120,222,167,41,214,104,48,228,228,199,27,5,141,126,116,153,45,57,169,190,81,163,135,41,124,202,78,201,11,215,125,52,233,2,11,199,116,147,70,155,35,93,31,26,114,200,51,240,68,254,7,249,195,121,231,48,29,47,48,8,94,47,100,143,8,45,18,109,34,69,232,161,237,7,210,205,73,129,109,123,242,115,93,134,151,26,175,226,66,150,251,51,2,120,141,4,25,213,251,8,42,215,152,88,222,163,96,69,146,212,6,13,205,133,113,210,94,130,240,254,162,144,145,119,6,180,102,49,8,48,171,207,235,70,252,239,19,220,198,4,228,215,86,146,182,118,168,132,173,153,163,227,238,147,95,13,128,142,230,89,91,72,221,202,242,46,116,190,178,91,95,154,114,158,23,229,111,214,51,33,1
 20,44,179,248,32,123,250,207,197,11,94,137,202,19,46,106,25,103,30,109,64,97,71,49,227,90,155,53,58,85,18,76,251,107,76,189,208,98,245,40,207,70,155,199,50,108,87,223,200,191,231,195,91,152,182,100,52,20,7,219,18,76,62,47,16,2,146,88,242,185,45,66,121,4,104,36,227,230,44,152,31,123,70,155,14,146,49,224,65,160,182,186,218,160,28,114,122,29,173,17,234,157,49,55,214,62,192,85,245,113,199,200,133,101,152,244,176,55,114,67,109,210,255,40,92,233,14,68,45,185,241,104,169,204,210,134,82,27,154,223,39,153,65,140,236,179,175,129,99,58,161,225,241,178,227,127,154,97,222,78,221,234,46,170,157,49,200,107,129,169,78,37,45,185,215,94,105,243,173,67,44,44,97,13,100,14,109,210,57,88,134,184,181,60,222,213,10,198,230,121,46,172,5,82,1,26,152,90,117,7,134,94,141,186,9,66,17,144,223,191,132,26,74,240,100,210,114,0,52,123,48,223,207,143,185,222,204,63,120,51,66,176,205,177,63,71,14,4,26,195,172,81,249,88,58,254,123,27,65,159,219,61,6,137,251,67,172,139,248,8,206,187,155,223,133,176,176,90,76,245
 ,164,65,107,253,157,114,152,36,202,53,255,103,41,226,104,144,44,38,229,71,71,204,249,64,139,188,72,187,208,116,213,21,226,203,116,67,157,60,105,65,218,188,65,253,59,60,183,53,32,13,67,207,204,117,218,125,45,115,201,23,17,118,135,56,238,204,52,40,35,12,160,82,4,175,199,138,33,27,103,153,59,145,218,143,76,186,158,247,141,47,90,221,205,132,207,173,69,9,163,73,37,116,202,231,171,75,32,204,109,24,244,92,165,43,11,76,153,248,133,235,175,242,165,195,122,222,211,151,8,84,102,228,154,20,83,248,170,217,56,187,48,243,95,207,15,223,106,254,255,167,177,1,191,177,60,223,18,21,134,168,146,84,17,54,137,79,49,195,93,34,82,85,11,144,155,197,93,232,160,136,186,13,125,245,140,52,16,16,237,179,165,95,14,144,58,212,225,150,15,180,107,202,12,100,239,198,110,106,171,48,11,157,229,93,83,198,86,111,66,154,212,168,65,144,255,34,157,87,86,205,187,15,187,234,120,8,222,7,186,66,207,198,111,225,177,70,153,126,179,81,157,132,18,145,52,85,23,143,211,230,233,245,95,101,252,79,51,16,128,26,149,221,141,191,99,
 207,122,130,224,251,112,16,51,72,135,64,95,103,231,136,42,244,224,251,161,132,186,111,173,238,246,183,206,179,196,37,244,38,210,218,118,13,62,246,99,131,46,13,12,82,41,119,218,56,201,175,165,225,4,5,227,75,12,140,187,197,120,198,123,105,158,201,119,108,132,213,64,40,231,2,6,221,84,69,8,137,63,184,4,70,55,183,187,155,198,196,100,192,236,230,14,12,67,18,252,145,34,80,72,239,125,182,47,47,188,156,148,212,195,231,39,68,81,144,151,139,127,141,234,133,133,98,120,34,167,192,113,173,80,103,122,146,220,184,112,197,64,105,175,60,42,210,206,112,241,207,189,214,16,229,3,39,184,239,126,2,3,210,172,48,79,174,25,6,20,245,188,18,122,42,53,138,198,92,26,177,158,42,201,8,249,8,253,80,36,14,72,72,214,22,40,92,148,163,200,107,100,234,67,96,254,203,71,205,193,164,148,13,241,115,205,20,176,245,9,51,39,159,65,28,52,61,27,210,105,239,234,208,18,3,179,117,47,141,113,191,71,210,226,163,203,216,113,90,65,126,108,98,211,109,92,157,31,220,169,35,71,36,241,172,113,44,236,213,163,246,99,32,142,30,122,193,
 244,173,12,246,254,57,155,253,36,112,84,210,239,184,5,238,205,239,30,239,130,3,112,185,161,50,78,59,60,185,241,246,163,255,25,221,237,86,163,239,100,149,175,37,204,10,77,201,69,30,167,21,38,124,30,253,210,137,251,25,162,34,96,116,201,100,205,100,124,118,186,89,143,182,12,20,188,21,197,51,23,98,217,58,232,83,140,0,153,23,117,237,8,62,151,3,75,244,67,39,120,74,80,215,192,25,55,241,167,140,117,161,179,170,234,121,60,28,72,8,185,106,237,219,37,27,6,255,23,90,20,85,92,209,127,97,71,159,108,199,143,212,196,84,226,250,255,37,41,217,164,103,23,120,102,113,74,206,219,150,68,238,166,212,153,250,143,211,25,133,39,58,237,168,76,41,22,53,103,36,6,68,40,95,237,28,163,136,19,152,7,2,221,100,172,214,23,36,161,218,68,228,138,174,164,46,45,122,92,194,169,31,247,162,62,232,103,61,54,126,200,63,41,53,72,48,204,199,97,200,224,198,15,35,97,106,220,190,81,60,163,141,36,221,165,236,247,189,91,223,222,251,254,189,56,190,196,118,73,4,130,27,213,88,113,238,195,148,15,104,90,253,233,216,127,19,214,153,
 12,89,39,236,150,154,184,175,239,125,113,231,28,190,103,2,190,91,126,231,58,179,131,3,72,140,59,65,45,186,18,62,48,63,93,239,212,0,128,73,128,114,107,250,2,207,191,240,127,240,82,136,2,189,172,214,249,174,200,153,209,154,218,62,173,254,56,76,57,124,143,175,65,168,171,44,110,53,54,200,58,206,34,26,231,231,209,67,65,199,165,206,14,62,111,19,93,162,88,187,138,138,123,168,27,186,17,188,142,161,230,84,27,207,124,102,20,37,60,181,120,118,156,248,141,99,204,72,179,118,10,115,197,64,218,138,71,130,10,77,255,45,121,148,204,77,128,48,159,189,32,94,219,158,146,28,239,131,253,103,171,52,198,213,74,2,146,131,208,189,121,211,233,35,24,137,137,54,95,39,45,188,32,52,233,98,19,100,189,244,214,52,97,165,5,33,146,245,63,168,178,148,16,177,8,216,72,138,226,215,28,108,2,218,39,184,137,241,253,131,138,167,52,169,194,237,175,196,27,68,42,42,89,123,123,182,101,115,191,1,177,170,240,250,99,254,178,69,47,21,195,208,60,245,59,182,38,183,208,246,150,229,186,96,197,145,92,19,9,19,177,249,148,215,192,232
 ,158,222,111,186,175,41,75,249,54,188,171,20,2,190,225,37,36,238,54,164,84,92,243,101,60,82,114,139,18,2,83,30,53,242,215,106,5,46,37,209,85,29,218,157,136,27,176,65,66,201,167,6,31,47,114,250,142,207,153,80,233,102,161,2,40,11,71,126,68,168,8,119,255,76,201,186,214,198,166,178,185,60,5,72,93,26,123,74,21,45,61,78,35,82,208,36,106,3,73,172,4,46,216,200,131,128,4,232,179,2,57,3,64,183,144,183,96,199,29,52,165,12,203,237,39,62,80,92,175,210,165,239,66,16,23,229,85,200,197,79,22,59,52,46,99,216,155,141,246,63,95,82,242,65,206,248,49,123,4,75,55,118,82,138,158,193,71,32,83,50,0,9,72,72,93,140,11,194,59,7,219,43,130,132,32,217,56,130,171,200,224,161,68,167,177,60,226,199,8,96,24,241,98,49,133,94,105,184,190,227,28,78,63,23,18,77,43,127,165,34,109,62,170,184,186,125,7,190,135,222,87,170,217,250,164,3,114,185,250,164,129,149,234,64,244,24,165,104,78,131,100,191,255,113,75,123,237,237,131,36,87,122,129,176,102,129,99,250,245,190,79,250,73,77,150,168,237,108,228,182,131,121,57,132,20
 1,170,120,155,198,236,202,238,149,231,69,154,95,103,213,172,96,177,79,139,205,62,245,55,241,136,101,209,144,240,89,52,101,40,248,126,227,25,157,186,123,235,110,219,185,7,180,115,144,106,206,196,91,144,13,73,218,196,189,227,154,100,115,128,141,205,2,183,12,79,176,63,143,19,34,104,217,112,129,46,188,253,206,17,93,16,152,165,77,171,162,206,81,143,172,231,163,128,189,201,107,134,5,37,158,4,234,1,153,44,174,47,180,211,67,71,245,41,168,147,164,40,54,187,117,20,116,187,45,235,182,221,130,151,70,173,10,89,98,88,113,187,88,24,15,171,172,117,110,143,177,9,240,93,250,159,228,16,30,237,197,50,231,176,196,83,26,37,12,91,141,186,240,128,200,129,84,203,163,21,187,195,234,20,198,70,222,52,194,49,183,216,13,5,196,150,149,101,233,7,154,2,65,51,4,48,221,189,55,242,48,111,127,206,22,16,168,209,205,141,194,71,187,8,100,204,67,28,165,36,81,25,129,23,38,80,125,100,31,166,135,71,127,102,210,168,171,28,181,35,136,180,254,8,126,154,205,105,13,189,90,224,195,252,199,12,147,138,6,111,104,111,17,88,177,
 199,71,90,252,227,191,170,191,55,200,6,191,189,137,253,93,173,219,11,228,147,22,151,5,169,243,40,113,196,9,177,171,205,97,26,46,159,160,171,86,11,13,231,1,58,17,249,58,147,215,214,160,69,88,167,172,10,187,253,86,231,122,234,239,86,126,162,203,156,240,8,62,38,185,69,131,250,141,114,143,74,52,123,9,241,156,212,65,112,219,243,226,101,198,230,190,205,57,45,72,78,102,167,151,206,150,192,165,248,54,44,211,118,194,4,115,228,110,160,73,129,72,19,186,141,191,220,126,32,193,34,114,103,160,69,248,92,142,217,21,207,108,155,150,135,132,246,30,101,50,141,4,120,60,54,33,56,101,24,13,0,44,195,253,92,144,0,179,108,68,203,177,151,127,214,150,27,94,238,124,124,49,173,162,70,242,246,154,181,20,232,238,176,81,82,9,208,143,196,184,228,217,66,12,124,246,178,157,138,96,56,124,234,193,69,159,86,216,243,172,138,17,237,113,202,177,97,96,49,204,65,86,215,16,121,5,178,246,14,177,253,46,216,157,122,27,124,108,89,209,110,40,6,184,188,27,11,54,70,68,93,208,125,183,178,180,65,217,72,16,242,75,142,251,127,20
 4,236,119,166,100,110,38,196,248,252,25,116,210,253,40,196,45,154,192,249,157,204,147,141,145,209,162,204,158,171,106,118,182,144,68,232,183,252,80,94,97,89,130,182,0,244,67,108,11,232,228,113,220,201,79,157,93,109,254,21,76,65,198,87,251,216,239,173,227,63,7,210,169,65,169,228,171,33,190,225,13,231,115,164,157,146,97,231,244,237,114,201,252,35,50,24,89,96,207,84,64,203,155,107,199,79,233,136,63,39,203,27,20,88,98,85,97,30,144,200,150,97,29,43,221,15,122,194,251,54,154,24,170,215,255,185,53,35,20,183,109,190,153,156,127,26,253,196,158,198,43,144,104,182,34,217,41,32,180,81,196,67,35,40,120,79,94,196,43,120,102,181,120,66,47,76,38,176,231,57,184,235,141,79,20,224,171,121,31,89,32,26,206,169,145,113,117,127,243,233,36,152,252,196,205,174,100,6,81,232,125,172,248,36,58,124,15,181,32,135,105,120,39,71,133,126,161,224,74,194,7,236,34,138,2,106,86,249,30,43,100,127,59,74,10,197,57,169,123,97,87,101,34,39,119,225,71,24,246,20,188,140,113,204,118,45,187,224,158,225,83,106,13,96,170,
 250,140,174,161,177,52,185,214,194,52,179,248,255,222,168,107,254,201,92,0,74,234,11,72,100,27,87,157,123,125,199,34,32,79,205,158,0,2,22,165,235,88,184,149,165,97,198,250,235,104,236,190,55,226,23,40,9,164,69,144,190,182,158,96,183,171,144,236,50,118,230,48,175,77,98,54,133,247,88,206,166,179,34,155,101,42,197,200,241,164,210,10,19,239,146,216,140,108,167,200,106,96,157,169,230,60,40,125,176,101,180,96,75,91,200,175,173,40,92,174,1,112,204,70,206,177,8,56,215,126,133,66,223,90,211,206,38,201,176,41,194,209,94,213,33,21,181,180,114,91,250,90,56,24,114,161,175,206,0,29,115,10,180,140,151,188,40,2,118,254,203,127,64,80,244,3,116,133,203,68,33,244,70,180,220,15,58,79,50,200,142,175,94,14,22,249,83,195,201,169,92,208,147,122,255,240,104,211,75,222,106,0,155,154,111,114,160,158,15,11,179,41,184,105,0,110,88,125,220,35,54,50,158,124,43,155,168,83,123,94,3,103,180,119,83,101,132,199,78,214,117,131,32,215,145,58,60,134,249,22,246,101,210,91,159,74,157,58,190,56,233,137,193,13,78,124
 ,102,52,142,118,75,39,41,142,77,4,48,7,146,144,215,6,94,184,220,161,27,169,154,174,84,196,107,108,67,159,59,241,59,234,122,179,89,80,250,218,144,200,128,45,139,245,186,63,67,135,34,138,50,154,58,85,26,83,143,56,43,146,153,45,63,87,133,87,227,85,201,119,132,74,71,207,139,15,78,210,205,182,142,118,71,84,198,65,17,195,178,244,141,112,103,88,183,40,208,94,233,178,176,92,180,97,172,42,144,226,79,49,229,58,23,58,185,99,241,244,145,186,27,149,21,103,169,94,234,174,28,182,247,161,119,149,37,223,248,250,222,175,237,30,0,175,62,117,246,32,19,154,18,76,247,58,88,116,89,185,226,230,56,97,82,239,225,247,48,99,76,152,121,211,129,140,66,147,12,31,8,210,213,116,170,46,142,146,94,78,61,131,237,205,205,127,201,151,123,108,58,5,147,244,254,206,24,23,209,178,159,246,24,171,123,38,246,194,238,192,241,157,115,146,49,71,0,202,31,165,175,183,4,146,175,135,152,98,217,220,184,197,216,196,137,238,200,240,12,25,141,20,16,6,86,142,202,60,56,14,98,120,97,80,7,195,174,236,157,58,122,255,63,18,78,137,240,1
 27,153,129,243,221,54,180,228,215,13,63,67,49,253,175,10,195,150,91,20,238,6,188,68,22,134,81,189,242,214,59,135,9,192,44,71,169,68,23,14,119,102,6,35,22,253,114,251,58,225,9,80,207,24,216,101,208,52,51,248,200,47,235,224,110,175,126,128,58,104,245,10,47,72,127,114,114,171,79,45,145,95,22,142,210,245,42,158,92,224,90,173,117,220,220,0,175,247,140,237,203,114,127,212,36,86,198,119,136,82,208,125,166,226,252,73,42,181,27,203,3,112,85,74,240,204,0,194,34,246,241,95,84,69,59,7,139,35,50,247,120,167,86,218,37,187,149,158,212,7,235,222,64,236,174,54,89,245,107,123,226,24,13,147,191,17,59,155,196,140,215,173,103,103,89,104,1,47,19,6,119,184,13,59,43,38,51,42,224,18,120,83,211,63,92,23,152,128,21,168,84,165,68,161,85,109,84,205,169,145,255,27,11,161,161,81,161,67,95,184,102,161,228,166,55,152,110,205,202,114,31,218,252,123,41,244,32,253,25,39,149,12,2,208,151,246,140,187,126,177,239,123,199,241,161,199,193,12,96,178,205,135,255,80,136,160,174,228,198,194,90,179,86,137,23,234,125,250
 ,172,125,180,61,35,16,57,144,113,170,32,234,71,203,92,225,219,160,27,50,29,155,229,206,25,210,236,47,55,48,104,46,113,189,33,55,211,240,209,104,22,86,100,148,2,239,141,253,123,215,135,11,96,52,241,132,119,210,236,247,25,61,170,88,114,148,117,233,207,179,252,56,3,89,12,78,45,46,69,246,219,135,59,12,24,30,179,75,45,71,167,58,35,127,129,126,202,104,8,200,32,207,43,242,167,87,120,99,158,172,110,94,134,88,252,158,97,203,117,5,226,52,46,253,118,124,150,116,26,64,109,36,48,132,254,242,27,12,44,231,172,70,103,185,69,195,22,204,131,238,135,84,159,225,206,48,66,196,236,93,77,135,169,84,145,204,217,77,166,211,226,157,24,187,146,34,12,164,142,34,100,130,137,70,2,201,12,90,235,175,170,131,173,6,220,47,115,47,148,95,6,249,201,114,198,141,169,64,56,242,65,229,111,144,34,132,15,140,38,73,197,165,84,199,0,228,156,155,201,238,248,174,21,147,228,18,37,161,123,242,23,145,189,238,215,250,148,216,199,222,123,203,216,163,101,196,211,182,84,38,250,178,43,158,90,134,75,224,240,54,103,228,254,178,44,
 185,197,112,193,118,232,194,104,162,137,5,72,222,185,200,74,141,79,123,33,248,113,219,64,235,214,72,124,130,213,45,162,35,207,68,112,106,53,124,237,33,157,18,167,126,0,70,61,171,246,107,165,62,199,133,51,49,174,102,234,140,90,101,159,204,2,151,206,89,122,75,152,147,157,250,143,222,37,223,191,99,208,185,49,80,161,11,106,1,201,20,87,175,78,160,56,199,206,15,123,233,188,215,114,210,230,156,248,71,139,213,13,14,195,194,171,87,79,25,244,209,95,84,52,200,196,241,53,114,9,154,117,69,35,220,10,125,241,99,35,64,157,158,32,8,229,28,226,90,241,34,49,111,11,143,250,10,181,177,180,204,229,136,211,0,124,160,203,152,17,41,252,132,207,187,201,77,17,157,84,17,220,184,107,169,48,47,32,144,47,56,56,33,119,247,77,68,130,195,145,76,81,26,180,238,94,71,46,112,128,195,129,208,185,100,137,135,240,109,103,29,150,87,49,105,16,160,19,3,133,190,120,131,155,45,113,35,119,30,80,204,240,110,206,213,156,2,172,187,181,84,9,35,108,185,81,110,190,165,222,120,104,172,78,185,182,11,157,128,141,31,31,80,154,71,4
 0,228,47,252,141,93,237,149,61,7,84,139,175,165,152,108,156,47,230,173,102,31,65,129,56,112,33,241,253,86,53,118,128,35,117,183,151,84,80,56,146,144,108,198,46,180,239,168,138,202,216,97,24,249,172,24,49,188,74,92,132,72,238,84,70,102,0,25,49,213,229,76,232,33,81,199,253,96,212,93,25,225,92,237,112,196,248,56,136,246,221,51,101,103,53,128,229,166,249,16,80,27,180,212,101,3,201,69,175,253,172,125,58,155,11,185,163,215,185,157,198,116,215,250,34,35,174,67,189,237,59,152,54,171,254,158,30,48,2,245,168,14,57,112,10,192,218,216,63,92,115,129,161,231,69,173,78,191,149,59,47,118,106,245,221,97,130,145,173,24,71,60,124,12,51,227,54,216,86,235,177,33,61,194,100,54,108,53,91,174,191,107,19,80,234,8,31,39,205,164,105,65,132,216,143,254,96,205,65,44,214,30,183,187,39,220,176,33,221,22,135,125,233,28,30,54,227,231,30,32,144,90,64,229,102,146,224,220,41,215,46,194,68,98,136,29,220,147,196,108,151,33,244,215,216,164,61,10,77,37,94,45,54,44,39,157,186,50,98,107,242,102,216,205,165,220,182,1
 00,212,78,166,253,45,239,206,188,172,227,166,83,158,111,209,191,10,240,248,104,138,32,59,2,187,26,137,48,59,34,22,59,205,47,122,188,104,66,151,66,169,184,188,45,12,163,101,176,243,80,4,23,6,37,193,226,203,112,184,245,183,55,76,225,238,146,173,158,110,192,52,44,233,244,82,90,38,22,102,38,68,122,95,128,156,233,77,64,16,149,30,241,118,248,211,216,84,37,211,199,103,155,122,13,153,244,243,71,9,250,144,221,105,25,99,32,61,159,220,252,201,230,34,165,130,18,52,138,123,108,102,158,230,39,208,190,180,232,60,3,148,225,218,1,116,243,27,4,173,36,238,156,219,86,225,187,171,40,25,13,53,30,176,35,185,161,172,53,34,12,25,97,70,61,6,71,143,91,122,17,169,30,69,154,202,85,209,143,243,125,155,218,239,196,61,230,105,167,156,52,52,242,89,243,204,111,208,211,251,74,2,210,34,104,18,9,252,88,42,61,17,53,29,233,82,156,238,162,245,128,182,112,232,59,252,140,90,211,227,38,181,234,189,70,5,121,40,210,0,142,58,14,146,225,35,120,127,41,35,131,154,186,206,128,111,183,185,66,172,96,61,30,22,94,131,161,84,49,
 64,24,236,79,225,98,194,32,64,238,30,193,135,170,207,119,238,215,129,102,10,36,57,80,80,210,32,95,240,18,171,230,75,24,179,107,51,17,46,237,54,35,58,100,106,124,159,53,56,158,145,71,34,41,127,206,123,124,51,38,234,49,205,221,182,209,77,225,156,248,140,67,142,243,203,195,214,105,99,188,212,127,62,42,202,244,156,216,121,182,114,131,234,220,39,94,96,244,42,162,7,71,43,153,47,31,121,69,36,124,185,220,12,247,219,98,165,36,209,81,86,47,187,84,36,109,69,17,61,19,126,143,113,196,94,55,249,33,132,100,245,75,30,65,45,12,179,203,187,164,137,159,82,33,125,69,164,209,14,184,51,167,194,148,205,104,182,51,37,220,68,159,137,127,225,143,82,164,98,79,101,112,172,87,222,45,93,176,241,202,200,186,144,194,1,237,61,189,151,29,103,135,33,66,52,125,161,142,57,17,81,88,219,208,61,211,173,55,200,218,30,84,120,201,50,206,161,55,22,150,230,241,87,129,102,97,171,125,227,47,226,74,5,102,88,29,19,251,168,167,113,66,153,37,138,197,74,78,46,168,163,59,55,116,214,209,157,164,97,62,101,3,155,132,188,8,97,49,1
 38,190,13,217,53,103,63,199,198,36,125,146,227,225,140,39,56,179,237,161,93,121,116,87,25,28,105,136,47,98,124,24,205,221,244,196,250,183,105,244,223,250,18,217,49,205,182,215,248,148,81,46,217,87,217,235,142,238,221,254,247,227,52,130,199,116,93,241,253,43,251,32,180,167,16,41,5,115,236,101,100,85,123,228,79,200,110,122,87,139,165,123,50,184,21,124,60,4,111,39,18,31,153,45,180,212,109,196,197,184,9,29,218,210,85,0,200,70,149,255,64,100,77,34,163,216,206,80,14,120,118,18,248,244,218,201,229,211,136,174,239,43,68,73,109,113,190,183,114,139,150,98,84,69,123,223,177,14,116,42,111,68,11,153,122,174,23,2,186,66,94,55,29,12,47,160,18,5,87,196,21,230,167,192,241,208,91,82,157,223,74,156,53,8,175,90,114,27,182,59,130,220,84,155,170,164,115,244,177,81,76,7,171,142,40,149,124,137,155,38,160,188,25,110,197,241,112,174,63,246,183,69,160,102,59,222,0,79,182,168,28,58,191,51,76,57,243,83,126,105,206,14,224,74,240,54,120,188,39,104,46,242,189,161,159,20,34,203,249,245,223,116,219,158,94,33
 ,117,2,143,127,216,97,171,71,78,165,153,203,15,32,75,83,238,152,29,227,3,151,5,145,35,203,87,175,52,75,152,17,12,11,114,224,180,242,241,15,193,204,82,233,23,174,68,130,192,66,139,53,6,91,70,6,204,144,91,154,251,52,96,113,22,57,140,30,174,183,181,102,142,151,46,117,227,158,10,174,250,232,163,123,243,130,152,158,134,103,89,231,189,243,86,109,65,93,204,230,129,131,31,39,170,64,154,182,22,45,136,223,26,128,61,140,62,220,130,205,32,202,232,57,206,215,242,181,110,196,51,66,191,42,203,176,209,119,10,235,253,172,45,111,47,248,146,251,254,193,202,174,0,114,251,218,106,36,235,30,70,27,150,22,192,139,15,134,51,192,219,185,51,147,39,213,191,242,153,225,2,208,166,172,55,73,109,165,212,234,179,21,249,185,241,87,206,6,232,16,159,159,188,26,167,90,110,82,191,222,126,150,45,163,91,132,64,243,119,89,132,187,193,122,82,0,39,173,237,54,145,137,113,86,126,117,159,44,15,173,126,234,82,135,186,241,170,126,99,156,12,125,24,194,53,111,191,127,110,17,149,230,39,206,11,131,66,125,197,9,142,232,27,114,
 155,31,4,56,239,28,243,31,38,174,12,27,58,67,190,23,180,71,123,228,114,152,202,50,54,18,235,86,17,95,50,113,60,54,82,68,26,238,96,237,214,91,192,1,143,105,142,141,4,9,249,147,53,88,117,153,164,70,171,15,211,117,242,55,163,160,207,44,130,133,182,37,65,104,23,149,183,146,87,251,71,206,38,174,0,2,217,226,113,107,14,82,185,61,180,141,61,166,180,99,146,149,131,215,6,5,200,152,161,149,36,174,24,202,34,238,251,42,66,85,159,226,22,165,201,31,28,78,9,216,99,23,69,38,130,130,11,183,39,16,63,150,197,120,7,51,72,108,72,244,0,12,111,118,198,180,250,229,51,176,58,161,180,182,245,40,140,61,158,228,68,207,240,218,93,161,15,159,234,27,247,121,86,31,58,36,167,216,6,37,251,204,148,66,155,149,14,65,176,60,40,218,235,106,253,202,108,185,189,100,184,192,196,31,163,51,178,4,197,130,210,215,68,24,123,130,67,190,46,78,84,128,144,110,156,245,232,237,157,57,129,243,222,67,164,172,77,29,62,162,107,99,251,151,150,43,58,211,61,122,77,82,151,187,147,209,145,118,146,212,243,240,29,16,201,114,171,18,46,229,
 64,243,5,250,202,141,78,199,111,95,93,199,251,38,176,181,179,193,35,120,0,1,22,168,192,192,210,79,84,144,207,48,58,110,106,184,5,104,3,172,87,20,177,151,151,81,215,221,235,13,251,197,137,247,29,105,49,81,59,181,232,227,92,166,19,173,48,189,8,74,116,61,26,22,252,69,113,80,169,26,231,81,254,45,153,120,39,12,233,8,22,230,230,111,225,59,244,120,145,2,219,33,12,100,158,254,63,175,116,218,145,187,35,238,123,137,233,102,25,175,51,125,182,25,194,201,183,246,114,66,143,62,52,21,194,24,190,180,252,37,177,228,186,144,247,147,35,198,215,18,200,145,34,137,59,164,16,166,228,52,196,129,34,106,125,244,147,183,151,203,43,6,231,117,237,45,115,118,222,119,116,217,73,131,193,65,156,19,128,164,130,223,152,30,245,72,26,189,52,121,202,110,175,63,176,107,24,117,78,182,69,248,101,86,85,93,250,21,63,213,163,43,108,7,9,221,196,81,38,145,58,139,115,80,39,178,227,37,194,207,93,121,125,59,82,68,216,173,176,38,248,201,161,196,206,223,45,101,51,250,174,38,135,51,191,50,112,204,129,189,104,141,225,217,150,2
 47,204,149,19,65,189,37,44,37,234,193,28,235,163,35,95,128,200,180,194,100,117,32,51,111,237,246,193,221,6,172,198,69,196,138,234,202,220,119,51,53,243,28,179,85,136,111,72,146,40,30,48,68,191,150,20,139,188,8,66,185,251,22,116,66,198,201,119,172,164,3,252,6,7,169,251,8,175,50,223,4,28,11,32,71,94,94,147,164,163,220,196,167,39,18,202,41,222,252,104,28,154,237,126,90,79,80,11,95,147,193,158,151,84,139,225,118,178,33,41,121,123,40,79,127,67,116,43,193,36,163,58,228,25,216,137,131,191,255,249,210,68,246,29,159,58,209,19,102,198,99,136,183,217,9,172,52,251,137,108,43,11,25,79,148,36,107,63,62,83,178,81,160,70,239,169,20,231,97,151,43,242,231,183,58,241,134,54,21,154,174,255,223,100,82,231,70,149,162,164,134,152,251,155,39,22,146,110,88,168,252,175,69,76,194,141,227,198,69,226,49,8,116,239,162,195,200,3,94,230,175,182,127,184,130,64,199,46,29,40,9,197,142,138,143,42,219,105,105,213,146,134,193,3,215,164,152,49,162,220,136,165,170,234,60,122,14,145,235,53,163,216,59,33,117,162,222
 ,145,72,213,32,39,200,72,252,102,206,98,83,178,40,213,242,76,26,152,203,48,254,31,59,2,79,58,141,230,33,192,50,56,44,128,10,77,118,51,204,163,219,253,50,33,252,189,236,83,84,69,27,119,99,47,211,46,220,218,193,127,47,163,116,44,111,36,49,193,200,164,240,139,174,105,18,62,204,186,2,11,67,17,16,107,228,202,124,102,155,246,47,182,195,30,97,244,78,245,19,157,246,119,216,113,212,168,185,245,41,181,125,112,10,20,175,149,85,230,218,138,235,66,216,117,8,110,2,121,146,13,190,94,33,128,234,83,22,209,204,221,146,185,22,254,112,167,55,38,11,167,150,133,43,213,37,15,18,136,201,6,26,56,138,22,134,24,143,139,197,71,160,205,234,202,247,5,139,88,31,47,79,91,86,46,47,126,221,80,71,104,222,160,218,160,9,218,118,135,43,160,222,251,60,224,0,100,32,223,155,62,43,83,122,152,229,102,238,4,41,89,212,126,210,78,112,187,254,230,39,72,108,146,119,183,206,228,65,147,13,240,8,207,148,35,107,106,7,39,12,106,153,226,40,180,175,206,37,95,207,70,162,190,83,86,249,241,5,178,122,238,189,2,125,26,196,195,254,146
 ,8,245,70,128,160,196,225,174,98,153,183,209,40,219,66,76,244,26,42,124,31,255,199,150,91,109,9,253,118,250,246,177,187,97,111,243,146,129,49,249,233,226,214,245,139,214,235,103,191,82,1,40,154,5,191,44,157,255,164,12,48,131,158,151,127,233,94,59,133,217,38,195,147,65,200,187,246,93,80,198,119,97,69,232,220,237,252,221,90,140,50,71,101,151,104,64,63,101,129,120,101,149,56,173,75,27,131,7,211,142,234,74,75,140,253,20,170,40,108,15,185,171,31,101,105,159,188,235,160,227,109,73,116,25,32,32,144,143,20,250,85,188,249,176,127,160,1,47,66,220,214,204,30,242,105,191,169,135,145,243,186,173,220,173,6,77,220,207,101,59,152,6,56,194,37,52,219,130,183,243,59,56,7,87,223,9,37,209,234,34,2,150,19,195,148,232,101,23,219,152,156,200,230,100,196,204,22,148,226,73,137,1,101,50,217,61,164,137,32,158,144,201,251,189,101,141,64,93,225,78,2,215,165,29,64,225,190,205,188,93,170,0,63,207,33,82,255,106,201,130,23,195,78,162,40,248,104,131,131,148,232,55,89,130,148,244,237,127,9,140,190,13,94,139,14
 0,191,173,149,191,20,63,244,76,45,243,175,148,97,54,36,224,7,200,203,219,58,77,91,184,177,103,44,151,15,5,202,206,223,231,5,145,57,35,49,130,107,91,193,194,132,3,139,130,47,149,55,65,88,66,39,216,75,216,63,140,64,192,165,93,248,226,120,60,43,97,44,24,177,254,64,122,178,140,1,235,233,176,121,141,122,217,239,160,36,166,2,141,53,189,143,154,226,156,106,10,137,3,164,6,24,179,12,156,253,17,253,180,98,81,129,8,126,212,151,89,249,131,234,251,143,173,97,221,62,222,23,35,154,147,253,227,38,181,251,84,203,4,122,42,24,181,83,83,145,159,252,147,72,221,237,33,84,51,42,105,122,138,206,105,177,205,197,199,42,21,230,116,186,108,57,73,226,204,127,138,4,123,117,110,21,126,90,53,242,236,77,118,174,133,115,64,218,72,76,131,254,3,37,61,170,33,226,164,216,108,150,79,186,230,5,82,241,134,84,13,250,78,138,132,208,12,251,230,194,15,12,43,21,164,148,115,116,100,109,158,177,86,30,221,93,190,113,135,16,155,211,7,108,98,96,152,61,27,187,118,232,49,106,108,222,25,33,213,140,103,136,186,212,185,146,9,125,
 218,40,76,228,59,230,170,207,9,102,45,111,96,13,73,178,249,157,142,107,176,40,163,178,178,4,227,160,110,122,101,137,45,72,128,56,135,24,232,78,129,239,207,38,141,10,7,2,11,218,97,50,102,40,118,48,229,248,133,145,62,63,53,210,87,240,114,25,165,222,151,31,67,132,242,249,136,0,139,214,108,167,111,49,107,37,123,11,186,59,166,208,211,72,193,218,111,103,182,158,74,49,63,179,107,182,249,160,89,189,10,112,242,70,148,103,177,136,18,42,43,77,248,103,19,51,78,128,123,53,10,43,94,188,46,83,145,42,197,201,40,39,240,181,139,183,121,28,129,1,213,210,184,147,107,182,149,57,218,123,188,134,192,25,20,49,202,235,120,182,131,60,180,33,124,127,119,143,162,139,70,125,106,254,147,107,35,115,164,136,53,206,130,30,198,102,117,117,153,233,138,180,106,97,103,127,250,194,69,177,7,101,154,45,11,103,26,236,207,5,2,181,5,125,241,62,174,121,181,54,80,213,145,164,119,206,112,9,200,91,147,103,149,10,205,181,69,26,181,113,187,33,187,207,176,211,117,149,231,5,177,152,0,185,253,47,93,42,144,106,141,58,145,141,1
 19,215,80,10,64,32,75,193,215,175,19,110,99,21,90,57,108,171,169,92,2,52,119,141,203,57,7,233,21,24,125,38,14,151,102,255,171,151,35,251,4,66,41,114,151,119,219,185,148,199,21,68,238,95,247,140,4,10,46,60,223,24,71,65,201,247,121,240,90,149,76,38,146,161,130,151,248,155,59,37,245,196,169,240,16,145,131,232,178,177,49,177,117,199,208,142,11,107,65,199,122,231,69,189,160,99,145,30,15,102,193,250,97,233,67,72,96,164,196,238,186,193,121,165,62,181,34,67,175,40,160,244,200,130,77,241,231,35,123,158,42,208,244,33,200,171,155,185,175,146,139,243,206,127,79,175,227,53,232,75,123,34,71,45,82,5,31,126,138,109,139,242,221,7,133,151,216,230,43,121,236,225,25,112,70,142,16,159,239,84,44,45,14,167,55,191,4,62,34,18,229,122,56,44,227,31,13,84,192,100,42,179,221,237,228,248,151,47,52,214,226,219,201,71,135,2,171,3,92,161,153,69,242,224,245,24,189,166,151,131,173,160,59,38,105,184,49,231,152,157,28,102,0,218,152,70,58,57,43,83,219,160,179,180,230,93,34,92,188,139,49,84,104,10,145,22,211,78,2
 41,117,191,147,176,60,198,162,153,239,115,240,206,121,151,159,119,99,16,98,103,56,165,82,96,253,165,92,4,52,228,105,52,184,141,128,172,95,101,198,249,22,148,156,29,68,20,113,131,235,75,64,62,111,6,33,14,221,225,39,33,78,238,249,151,139,35,60,129,244,244,99,43,88,220,252,251,89,253,228,29,35,82,213,213,73,54,199,117,130,190,70,20,142,56,120,42,171,38,77,237,16,117,56,31,39,152,154,35,65,183,247,140,52,195,182,43,36,205,17,115,64,16,187,133,156,41,52,38,179,187,207,244,45,190,19,100,37,137,71,92,166,214,115,104,15,81,214,116,239,11,67,12,92,101,135,128,184,18,85,8,155,183,165,154,109,201,8,228,199,231,227,239,88,37,176,152,65,22,222,119,175,60,169,214,99,26,148,123,213,118,2,36,169,69,240,79,223,49,238,92,126,220,67,199,192,153,182,107,223,42,206,60,162,136,225,51,59,117,106,92,190,199,170,79,42,76,156,152,229,244,175,35,97,226,192,50,84,67,156,235,202,30,45,30,128,33,127,106,150,115,63,229,150,56,18,140,43,9,44,244,97,174,249,60,162,211,122,240,149,181,29,162,49,104,197,94,17
 2,150,19,164,243,3,67,221,33,49,72,196,188,220,12,245,32,69,61,3,148,246,215,213,92,101,196,53,205,208,92,53,233,59,83,90,240,116,40,245,74,121,212,40,182,144,253,123,133,129,227,38,229,109,63,76,45,12,234,108,96,13,173,194,215,102,32,24,53,153,167,248,131,222,145,67,147,2,57,144,57,133,188,146,51,42,222,125,121,208,130,188,13,188,118,194,24,215,21,182,208,174,27,212,89,203,138,31,96,140,241,85,177,162,213,63,135,216,148,97,157,41,47,150,110,229,213,121,241,127,226,90,243,86,165,106,138,177,250,177,190,114,203,254,160,192,159,46,14,126,209,23,47,108,77,140,206,124,76,15,221,192,101,140,6,178,57,109,143,143,112,172,134,122,224,188,32,34,105,137,253,92,106,242,216,66,100,35,155,63,121,129,131,37,127,168,69,9,56,189,137,35,13,105,136,151,0,192,203,159,91,23,154,127,140,43,246,31,215,159,253,52,209,29,104,188,195,131,104,75,225,36,187,42,170,206,184,192,144,205,162,103,180,233,222,148,22,80,140,94,99,250,236,242,153,152,141,179,37,247,69,112,198,0,135,139,224,40,203,205,1,99,114
 ,144,68,253,254,127,52,26,178,77,255,133,70,136,198,15,202,203,103,200,237,23,140,52,101,172,246,239,103,38,56,18,119,113,174,220,186,39,154,176,39,140,32,145,248,22,142,174,95,58,23,106,114,202,203,203,50,113,111,48,73,196,255,211,174,195,119,109,55,209,120,33,38,211,196,124,144,36,141,46,147,9,1,182,123,247,29,11,251,224,193,51,218,91,86,192,251,56,238,158,103,37,181,75,90,124,222,116,212,98,35,159,94,98,33,47,201,185,197,55,146,140,100,243,14,48,26,64,201,9,243,210,128,243,223,139,108,222,242,32,80,148,100,250,229,168,153,97,247,241,4,174,98,246,141,198,219,98,245,26,78,209,58,67,131,172,49,40,42,158,231,79,17,194,160,227,136,82,233,180,16,195,237,143,114,222,43,221,173,252,31,112,30,29,111,132,91,127,178,225,171,210,249,230,178,26,31,163,101,135,243,200,226,81,108,232,82,28,32,63,23,0,224,170,196,7,73,16,101,20,63,67,193,39,73,122,204,254,32,250,196,255,144,233,204,181,47,146,245,142,116,88,61,32,171,209,51,74,173,13,142,21,110,228,47,2,197,108,130,169,8,168,42,53,155,43
 ,31,43,28,126,253,145,22,18,159,117,34,220,63,14,157,35,19,42,53,98,14,120,86,63,27,138,172,195,197,171,136,210,210,91,155,248,71,166,44,89,196,63,60,146,203,12,154,122,173,210,82,208,241,227,104,182,1,222,69,152,12,235,96,196,220,148,243,14,150,18,109,12,247,217,106,7,4,15,98,75,16,254,183,40,53,49,30,116,196,206,199,111,218,190,212,54,189,74,93,115,17,41,45,244,221,203,243,127,171,117,131,58,162,224,244,237,35,157,16,132,200,34,27,98,216,174,171,25,126,9,61,207,12,117,164,92,127,81,154,73,6,169,0,15,111,241,86,57,132,200,236,148,127,29,3,192,60,247,68,103,73,243,119,72,32,151,199,58,156,181,9,47,163,197,149,162,164,4,52,65,153,136,166,11,208,2,76,135,25,56,198,103,255,221,73,6,92,144,115,155,96,87,97,126,107,216,155,83,16,115,103,210,87,17,213,111,164,100,35,233,141,127,124,28,36,97,248,128,30,85,63,215,14,2,128,129,76,7,8,215,69,208,209,201,12,1,78,54,134,72,121,163,155,184,253,39,7,193,17,220,133,228,226,162,201,234,125,238,29,216,143,171,244,162,214,251,77,80,136,135,10
 4,66,40,7,62,223,27,69,61,244,15,145,156,65,13,57,195,107,136,53,167,195,190,123,70,68,207,202,88,72,59,181,129,234,108,144,86,233,14,240,215,38,226,124,81,137,165,153,75,191,82,11,240,51,168,147,172,191,85,21,140,143,10,250,51,23,223,78,234,128,230,96,60,158,183,112,75,147,144,49,70,42,227,179,169,134,145,96,4,218,127,142,113,115,114,25,36,190,28,63,181,189,76,54,249,39,132,116,168,187,119,91,114,152,35,98,119,238,245,30,120,210,250,147,200,103,83,63,195,116,153,52,128,48,180,234,178,253,123,105,212,150,111,151,183,58,240,156,14,56,246,159,1,174,136,164,225,137,130,204,11,62,247,191,4,162,172,184,223,158,89,144,37,241,254,251,194,135,66,173,19,95,107,248,255,189,165,159,177,49,61,72,204,196,96,120,60,238,21,46,55,81,0,157,248,145,191,82,235,2,165,165,143,208,244,165,206,2,196,180,199,219,40,218,152,155,65,194,162,50,193,89,164,159,48,56,57,208,196,253,85,123,32,252,118,238,152,212,64,234,81,212,43,237,231,94,219,252,32,120,189,169,238,97,140,41,100,115,69,179,250,196,186,24
 8,199,201,141,128,197,110,86,95,34,42,71,84,171,18,160,94,70,109,230,78,175,69,190,98,114,228,197,36,217,7,243,232,128,3,15,109,244,122,29,169,149,250,70,16,187,240,110,209,250,234,40,115,121,253,15,119,186,116,182,159,7,103,234,193,219,165,161,93,71,61,81,69,27,78,110,196,126,154,78,164,215,242,36,127,16,95,67,122,161,211,68,142,204,171,177,17,203,114,170,229,79,39,186,174,215,192,79,69,215,240,209,219,102,107,131,97,229,74,47,63,235,40,69,200,12,221,94,55,106,239,174,57,124,116,15,179,54,179,246,61,24,134,20,155,109,45,172,137,178,119,23,224,165,38,74,219,209,115,93,118,49,247,53,92,203,173,241,215,146,61,207,211,160,168,133,78,81,212,206,61,55,0,250,248,95,54,73,154,22,138,143,45,147,137,68,149,73,70,7,89,136,88,226,133,253,82,128,31,34,42,81,205,103,21,123,83,176,133,198,186,34,248,128,40,204,149,191,71,161,128,70,225,78,66,99,152,120,245,215,103,195,78,6,83,141,30,21,141,69,88,17,139,243,160,96,165,138,103,102,187,153,130,111,127,245,226,36,113,240,113,74,45,222,94,7,11
 1,24,89,41,200,93,185,211,91,23,60,65,198,225,200,249,141,6,5,230,162,65,15,29,93,250,54,147,11,88,156,126,158,204,147,185,19,162,149,158,174,22,208,137,67,118,211,227,186,61,212,58,117,70,15,182,176,132,91,145,133,60,86,1,105,16,119,131,241,182,132,7,70,235,205,241,26,172,15,61,11,223,2,191,203,73,208,200,94,108,179,145,108,20,68,14,185,82,196,97,14,120,217,224,115,228,73,97,226,100,218,145,93,189,84,197,108,79,20,197,243,152,88,176,85,163,184,176,138,118,92,193,190,252,253,53,217,224,7,81,42,61,91,61,221,190,71,233,89,249,217,6,18,63,54,66,156,14,169,209,127,131,107,250,44,149,112,16,237,237,184,117,235,158,112,112,100,41,180,206,1,156,30,6,203,9,209,70,29,88,169,175,51,121,4,242,251,166,142,149,173,169,133,46,128,133,207,141,199,166,90,92,208,184,3,18,244,191,9,210,80,248,221,95,224,68,133,47,163,184,37,122,201,71,2,51,2,95,199,35,161,156,224,133,138,141,235,225,113,81,60,124,198,207,23,146,250,3,154,138,166,219,36,227,128,106,122,232,116,213,59,207,179,76,84,212,225,140,
 87,121,197,168,31,155,7,36,45,15,49,184,223,238,83,230,174,197,42,20,171,177,103,204,126,224,6,239,188,161,246,131,144,104,184,74,65,231,255,198,92,79,97,42,170,131,122,80,8,90,49,65,117,49,158,43,98,87,38,64,33,103,245,120,23,183,18,14,176,26,20,253,207,8,176,71,33,226,172,161,148,122,141,39,60,233,73,32,0,85,33,84,128,97,34,247,184,231,206,228,121,33,237,94,146,97,43,1,93,163,249,200,48,58,214,2,89,21,176,184,50,85,75,213,51,140,95,115,241,158,149,114,93,239,184,176,132,175,222,73,246,46,188,228,37,80,168,60,252,177,204,177,127,115,24,248,1,67,77,255,86,196,244,218,198,195,147,227,30,30,121,169,121,104,67,34,196,86,63,96,17,71,104,57,46,2,101,42,106,231,87,217,93,85,219,140,128,37,106,155,36,59,125,243,195,19,126,177,223,42,128,199,83,51,223,203,210,70,83,47,58,139,179,96,37,40,197,204,98,97,199,181,75,233,253,49,175,76,91,151,97,183,235,174,153,37,103,220,156,254,78,63,131,140,16,125,211,207,150,219,249,50,193,158,194,144,20,172,187,84,247,4,144,69,221,134,204,91,154,66,2
 39,148,77,212,36,39,153,47,99,3,16,187,221,130,99,136,180,233,63,2,154,243,159,219,237,41,140,111,96,104,96,65,211,203,3,229,183,174,165,156,238,64,45,8,26,45,181,73,202,116,110,29,130,219,121,142,131,156,190,143,117,65,10,83,171,162,1,202,170,39,179,164,24,21,149,27,105,142,236,113,217,149,26,246,182,155,185,129,44,20,148,249,87,156,104,116,248,176,165,85,139,73,96,89,202,148,110,107,2,225,189,171,46,41,52,64,238,154,179,54,122,158,181,171,243,249,58,150,39,113,62,171,32,74,237,232,202,156,129,51,199,134,150,13,239,135,74,232,182,226,104,71,161,176,217,127,119,42,12,68,230,248,183,142,5,253,99,150,6,214,1,122,67,196,188,130,244,205,194,25,38,115,183,88,240,97,81,183,174,81,123,64,61,43,244,227,134,20,87,71,130,38,59,179,3,49,160,32,6,172,249,54,17,40,108,164,15,152,52,3,163,155,23,144,109,30,6,225,117,68,213,80,194,167,244,101,97,111,16,61,177,15,59,3,77,26,191,143,74,71,109,231,123,171,123,141,19,235,120,18,141,241,166,43,42,180,238,82,159,154,104,203,88,52,39,216,41,131,1
 83,90,37,174,183,80,34,165,137,180,212,1,150,218,191,61,26,223,97,252,237,157,11,29,34,198,193,210,19,247,134,23,73,98,190,231,220,20,154,52,73,77,222,229,195,35,141,231,231,26,216,216,69,93,22,217,192,151,100,20,167,5,183,160,83,106,249,185,103,191,174,63,123,100,177,196,44,195,204,1,92,188,62,72,60,175,221,200,27,196,157,27,156,150,211,171,115,252,14,157,58,199,63,207,18,86,122,154,175,247,220,187,67,254,88,58,221,111,170,184,152,122,202,230,230,192,69,117,3,250,35,43,190,64,86,73,210,194,19,34,21,147,188,74,4,110,82,109,88,204,168,233,7,69,179,32,180,132,195,200,59,21,108,245,146,139,185,147,116,30,178,189,160,47,173,11,173,154,188,112,134,154,151,65,47,35,26,219,28,141,163,243,120,100,63,144,94,88,125,229,182,80,241,235,148,82,244,121,27,248,154,6,4,213,134,37,22,75,117,101,234,215,210,144,181,27,97,9,198,172,40,78,130,39,52,96,112,27,60,145,183,50,56,5,71,100,230,167,232,35,63,67,56,199,110,61,145,227,195,177,103,77,121,55,119,251,155,168,90,66,111,127,219,47,225,158,51
 ,64,10,183,61,236,158,237,24,213,228,125,100,191,166,255,55,133,72,83,234,250,55,53,23,70,109,100,148,52,180,125,83,8,26,185,116,11,194,166,116,171,67,199,48,217,40,250,221,211,98,165,130,69,128,73,9,100,53,246,129,116,12,169,52,149,244,235,148,254,132,67,159,252,34,55,128,3,81,192,252,115,90,129,148,35,75,198,120,245,146,40,78,205,135,188,252,131,9,102,53,81,149,143,199,238,136,69,27,156,168,92,2,8,11,81,138,165,192,97,0,240,67,189,242,120,56,20,61,149,245,152,8,150,76,69,141,214,10,52,135,145,127,207,228,137,204,206,6,238,185,37,160,18,83,135,95,100,5,147,88,45,138,249,212,210,244,176,79,21,91,97,115,2,63,57,226,193,90,81,153,233,234,14,40,115,225,128,19,12,219,181,64,114,155,74,200,252,246,103,165,16,116,11,10,145,124,253,253,174,101,151,18,72,196,109,58,106,37,164,3,119,192,78,111,4,38,76,228,42,44,119,193,219,200,72,116,117,42,180,149,92,145,250,211,10,90,191,162,208,146,107,126,134,153,113,53,15,116,59,149,206,165,215,108,187,128,60,12,33,187,240,189,184,96,174,234,248
 ,149,137,161,245,100,99,10,55,36,62,227,82,186,177,33,232,200,64,86,96,147,62,182,101,106,206,135,45,186,206,27,144,160,30,110,62,167,253,185,32,122,35,139,98,70,124,199,238,69,86,44,143,178,47,210,231,151,230,137,214,27,122,137,62,86,252,145,72,168,43,19,135,97,134,17,250,34,243,146,87,234,116,217,100,122,209,164,27,224,35,229,92,202,142,252,104,57,202,157,200,243,97,219,153,134,24,24,37,228,171,194,182,47,84,62,221,152,250,76,250,11,189,118,103,130,88,36,133,93,181,48,38,102,129,250,59,240,11,127,199,187,13,64,243,208,39,26,46,5,24,4,24,63,72,69,171,254,77,9,46,91,40,205,149,94,124,23,107,109,171,156,134,33,202,45,130,219,153,6,137,180,205,183,173,56,243,183,104,50,58,70,147,149,119,80,27,105,210,22,37,23,26,119,121,166,12,147,206,30,51,114,94,170,111,69,104,197,13,154,49,68,110,8,64,18,212,169,31,176,123,254,38,27,160,96,197,50,51,253,51,102,73,50,33,122,190,141,191,118,163,157,166,80,225,132,63,55,167,35,45,71,121,115,52,164,3,255,95,7,33,88,32,34,161,18,44,142,91,107,19
 4,216,76,13,99,55,171,149,155,41,61,77,255,200,233,237,35,247,135,75,7,20,85,58,215,165,12,184,142,255,89,234,225,145,180,198,180,145,98,239,122,141,112,103,136,131,191,130,174,222,245,59,147,36,156,187,57,152,220,129,70,23,38,196,180,63,123,142,104,220,193,100,63,90,117,200,194,172,142,249,221,251,186,146,15,28,225,85,21,46,138,94,26,94,40,32,4,109,220,216,107,227,119,89,20,178,190,236,67,183,29,35,225,235,148,119,74,183,87,152,254,86,175,242,159,96,166,248,233,62,180,55,101,216,172,164,169,184,64,64,237,5,3,168,151,164,183,118,142,205,80,192,174,123,60,253,68,208,130,239,175,26,3,89,147,139,24,182,253,192,35,28,10,246,235,13,118,123,35,85,96,240,60,151,75,236,20,46,186,217,154,216,186,107,220,60,243,138,219,31,146,136,133,200,113,136,124,9,123,73,201,73,250,28,46,251,112,70,139,217,69,19,239,116,66,6,28,34,28,36,19,109,213,126,28,127,153,144,100,94,14,228,254,141,206,17,156,2,145,5,195,168,180,141,195,173,154,115,195,145,28,50,151,155,208,157,13,4,84,252,219,221,92,175,4,1
 03,230,143,58,106,48,62,230,35,251,134,166,75,247,105,193,155,18,148,219,51,57,84,7,232,223,197,223,221,12,189,18,85,20,22,124,5,153,213,122,196,11,142,233,31,236,9,240,155,130,122,99,136,183,113,215,93,16,142,241,144,245,57,198,170,8,155,150,251,205,17,126,217,65,234,0,6,14,121,58,123,21,146,246,210,37,193,200,153,231,232,61,18,147,71,220,137,62,163,147,198,26,124,40,224,59,248,135,11,27,97,113,235,103,87,158,130,186,188,101,176,187,194,72,105,204,53,76,5,169,76,164,213,214,40,28,207,101,168,81,35,140,29,221,139,21,50,98,138,232,212,31,85,111,161,153,188,175,151,57,214,120,54,68,83,25,238,163,208,194,192,124,88,148,46,129,216,183,197,139,211,252,160,193,83,158,221,184,175,4,173,155,139,253,211,145,134,0,90,14,113,169,207,78,210,122,92,162,239,36,249,74,180,251,51,130,199,229,107,99,164,138,188,135,30,93,50,44,22,112,227,39,54,231,234,208,226,124,247,223,156,203,138,211,15,87,0,215,113,193,49,129,134,218,224,61,22,122,146,92,78,152,3,77,58,77,10,14,177,138,99,147,104,0,47,45
 ,35,190,231,252,141,104,69,10,149,203,45,232,152,189,41,211,176,76,185,228,24,55,158,122,250,67,221,9,234,173,249,67,158,0,169,27,141,135,52,245,70,72,192,206,122,140,162,28,140,195,193,22,112,253,65,79,17,221,73,60,141,28,246,208,165,56,48,1,98,91,21,134,151,33,77,74,210,159,151,173,178,88,169,83,173,71,150,12,63,81,22,44,220,143,109,3,43,92,196,9,125,186,94,16,4,50,236,72,45,219,147,209,81,196,60,209,80,243,3,101,216,44,207,193,34,0,198,171,153,248,176,234,118,14,66,40,125,206,79,211,196,229,180,23,225,87,105,75,19,140,159,78,176,27,194,232,202,132,84,231,18,32,28,152,178,163,79,83,221,131,141,253,7,89,15,107,34,194,35,12,109,132,106,136,57,149,15,123,63,181,104,233,182,45,18,231,47,247,187,71,208,156,93,198,217,167,154,232,100,3,17,98,228,229,1,73,242,101,178,147,70,112,182,213,170,177,194,37,136,102,210,54,157,217,91,230,234,20,73,22,170,106,121,236,101,18,89,107,161,135,127,87,237,76,18,235,56,41,37,143,89,26,154,102,230,24,248,127,53,90,90,170,175,86,251,75,254,196,63,
 63,172,66,70,222,32,113,249,216,141,233,72,212,103,189,205,233,82,122,79,236,219,84,253,205,54,116,198,229,6,185,230,7,11,128,56,25,171,96,136,186,101,121,21,240,250,184,15,66,146,10,55,9,74,37,44,254,38,73,134,164,148,141,195,97,205,105,139,4,135,113,54,22,170,85,125,103,45,38,93,115,123,128,119,133,214,251,218,245,209,117,165,70,255,48,49,128,160,201,6,231,218,40,173,137,180,131,107,72,17,107,209,50,72,12,235,250,212,236,186,158,152,79,207,187,29,179,198,174,86,75,142,74,45,124,14,236,104,225,227,59,146,217,214,140,129,89,68,159,182,90,66,160,166,95,211,86,117,68,229,149,136,127,153,166,76,254,145,241,141,245,116,56,232,108,47,236,12,204,75,56,204,24,72,59,34,89,158,233,21,219,77,231,153,16,70,101,143,72,147,112,11,20,35,236,201,12,25,125,72,52,167,22,202,65,126,35,145,97,188,215,107,104,99,45,42,211,95,127,84,76,94,253,148,173,203,103,98,162,113,150,205,43,21,128,6,121,168,0,156,150,53,31,140,247,21,45,209,148,227,115,83,43,51,7,72,78,87,206,131,14,35,8,43,182,23,196,249,
 206,191,34,16,16,192,48,97,10,90,131,98,114,114,215,2,27,234,136,23,71,222,54,160,235,161,40,51,205,146,119,161,130,43,29,213,197,145,213,170,154,201,60,65,59,46,27,166,87,47,49,78,234,101,120,28,250,132,114,0,156,53,182,232,40,6,50,52,64,182,70,53,74,217,37,113,3,228,30,32,246,166,230,213,253,117,98,104,245,24,88,38,117,187,151,148,207,57,96,48,15,220,215,153,25,19,163,254,157,145,34,138,145,33,205,93,162,5,12,184,211,133,212,100,155,95,59,175,225,27,49,106,250,129,219,145,104,95,96,54,189,216,56,153,173,124,8,208,145,129,77,90,169,131,8,161,217,224,193,175,216,21,41,114,243,18,65,160,179,184,213,59,73,189,169,68,74,108,168,232,45,23,138,53,183,69,255,85,211,100,9,167,5,122,176,251,78,223,228,116,21,243,36,45,238,7,119,157,101,142,105,211,56,174,180,125,59,89,197,242,226,219,195,45,194,224,20,147,193,131,181,95,125,150,222,35,116,252,201,225,146,168,183,3,65,86,247,222,230,217,243,55,41,254,78,253,41,63,215,119,184,242,130,111,195,208,49,97,37,182,250,82,224,146,86,180,169,
 17,138,71,222,4,149,11,117,228,130,73,89,10,62,195,193,137,153,62,66,101,243,28,128,103,64,47,196,133,222,186,236,79,244,133,84,148,60,115,22,118,227,80,83,216,17,20,67,141,16,121,251,148,70,68,90,13,250,226,130,21,101,174,176,199,90,47,58,35,238,166,99,21,212,206,92,91,17,155,75,120,216,250,105,49,90,47,122,235,118,143,162,148,54,44,41,189,3,240,63,94,47,61,42,124,83,135,117,41,134,54,83,112,226,225,152,161,98,167,18,246,139,164,9,92,204,231,219,197,184,77,27,75,190,187,250,23,6,34,0,99,185,76,4,251,223,217,186,186,96,198,147,140,121,47,201,75,29,226,102,40,133,66,15,36,103,161,140,62,23,61,113,52,253,166,50,249,237,154,76,16,122,93,132,136,106,85,167,228,12,186,53,207,134,105,12,247,55,25,150,178,160,175,208,171,57,156,80,231,167,147,207,25,182,255,47,128,38,55,190,247,5,47,149,125,144,220,185,48,22,6,35,23,185,228,156,183,195,110,225,108,193,243,183,160,106,73,218,42,122,176,215,66,79,123,209,234,169,46,25,171,51,251,189,69,11,125,215,90,69,159,162,96,189,93,117,148,232,9
 0,240,112,18,210,19,239,27,189,41,21,125,182,135,165,70,124,162,57,100,89,143,172,238,204,49,183,32,239,43,229,2,135,15,164,150,167,66,25,95,88,153,90,157,32,50,249,112,149,166,133,69,115,231,12,218,247,217,26,153,252,178,206,232,48,7,93,131,221,125,166,237,15,7,216,239,79,61,86,127,244,157,96,254,242,140,103,218,58,101,78,217,180,154,49,68,21,238,132,129,18,213,139,112,45,6,5,224,254,52,247,104,98,1,122,151,87,78,33,213,217,96,109,254,134,182,56,152,40,73,188,162,172,137,110,73,45,242,246,24,162,59,120,116,10,124,246,198,11,158,225,79,198,21,121,156,94,191,51,28,195,254,191,184,38,119,229,15,94,144,165,46,249,205,88,248,121,159,86,187,0,176,218,196,24,200,232,179,226,211,91,154,147,122,102,56,135,167,220,28,211,188,213,123,79,21,182,155,58,130,187,176,124,48,169,192,95,21,58,223,165,168,3,45,41,214,224,74,116,146,208,63,159,219,185,230,194,154,149,159,66,231,31,232,197,253,97,177,247,145,6,132,22,126,235,222,225,153,72,78,88,29,97,90,52,166,114,154,168,102,11,173,183,150,46
 ,27,67,153,16,167,149,254,116,136,248,209,61,0,53,131,215,187,183,112,177,117,191,107,113,149,142,206,132,215,225,226,205,108,42,154,162,255,124,98,96,237,222,207,255,70,212,14,96,219,8,166,5,247,170,99,50,97,38,84,59,152,140,176,185,114,53,71,73,211,131,211,99,93,246,96,127,23,139,132,143,87,162,204,226,14,230,58,65,194,84,61,166,125,24,147,75,237,86,154,251,11,155,116,140,70,113,78,32,128,123,18,112,149,193,171,229,222,148,148,116,95,89,102,55,159,25,167,150,17,207,211,242,145,199,42,227,137,194,196,74,112,254,114,148,254,151,229,205,193,100,74,232,162,148,201,226,217,73,91,15,90,183,122,174,72,153,63,151,211,224,245,127,247,150,149,15,180,50,214,22,252,3,59,6,130,163,232,250,56,28,173,254,9,94,161,18,220,130,107,154,156,28,230,228,209,92,15,44,212,78,17,172,239,246,185,161,195,58,126,150,44,151,70,62,210,216,246,129,39,67,249,41,185,46,206,33,25,94,81,161,50,70,248,149,218,58,79,102,67,127,80,237,6,124,221,115,240,89,245,0,119,184,137,133,252,252,122,89,8,62,248,192,97,22
 4,162,29,128,207,76,56,240,95,89,151,168,228,108,208,146,166,155,152,174,29,57,243,226,39,163,233,209,9,172,160,19,14,177,218,36,99,118,102,154,50,64,198,53,120,224,211,141,2,44,66,139,93,184,246,65,93,199,70,193,95,205,127,18,50,199,60,107,81,99,11,144,4,224,133,154,58,244,146,166,209,61,102,131,177,208,151,166,13,175,72,223,203,112,66,232,84,107,191,3,180,7,243,100,104,233,27,111,187,247,201,165,255,31,215,40,73,147,179,13,58,78,172,132,74,208,85,193,184,167,53,182,157,12,119,118,44,29,56,3,65,114,246,239,234,43,212,122,193,242,113,196,180,198,155,146,52,214,73,149,216,201,44,109,12,186,38,192,208,51,51,79,69,198,165,105,41,244,93,81,40,54,36,219,32,202,156,12,1,47,229,255,108,237,130,15,26,48,177,55,243,136,94,212,175,133,246,188,173,52,254,92,105,103,255,42,84,47,235,195,177,98,248,113,195,191,9,108,236,115,181,91,250,19,33,241,106,222,83,81,232,51,12,150,63,55,19,226,207,200,20,251,27,185,50,89,24,111,183,78,228,227,10,197,52,84,67,213,255,188,230,179,163,107,65,226,217
 ,212,133,78,188,199,228,137,27,203,172,179,29,225,100,187,53,150,138,44,83,69,192,186,226,76,89,183,240,225,5,115,177,199,60,124,224,47,189,175,64,178,68,164,158,113,14,21,101,173,58,180,176,245,145,146,143,136,80,90,226,242,91,79,84,212,167,128,201,2,229,96,120,44,225,209,41,182,222,103,105,30,141,91,191,69,193,165,76,231,182,66,101,149,86,211,162,175,189,54,153,43,209,189,212,223,140,102,26,98,229,174,210,147,88,71,119,196,162,224,154,30,39,150,158,138,88,180,30,35,185,233,227,52,123,212,191,128,60,228,239,245,47,163,62,202,229,224,12,95,32,114,163,236,120,70,1,255,177,104,236,170,74,165,4,251,19,9,129,120,29,185,87,77,48,116,102,86,88,200,116,117,237,230,145,197,232,220,129,102,137,192,137,119,26,116,236,108,95,74,89,74,238,190,212,225,222,34,103,75,160,191,23,236,222,101,104,192,40,73,214,76,73,29,134,117,108,215,134,27,234,229,102,253,186,89,74,39,127,108,242,225,152,188,223,118,13,69,45,104,97,89,193,9,201,186,97,232,155,183,77,124,163,108,51,18,75,209,246,135,188,183,
 201,246,52,193,239,144,115,167,79,117,82,92,180,69,35,159,150,131,13,251,245,65,216,77,18,49,141,249,101,112,83,169,1,128,165,226,129,166,90,225,198,172,222,132,87,82,200,117,32,30,178,167,153,99,151,68,45,149,253,245,131,117,235,218,40,111,70,2,89,192,231,126,37,136,8,58,130,204,49,173,191,5,113,77,250,233,213,60,44,44,167,3,251,167,114,87,38,244,81,37,92,205,38,192,169,77,166,223,197,241,175,122,148,179,213,71,165,50,185,103,204,94,73,210,239,47,141,18,145,67,164,222,68,130,209,113,132,43,177,178,247,43,131,0,61,233,156,3,11,12,60,6,203,203,23,182,196,5,84,86,232,115,103,43,220,54,240,85,19,31,170,47,143,188,76,105,155,81,72,192,190,169,107,181,11,12,51,213,205,231,94,193,175,180,169,75,53,252,130,187,230,179,97,171,242,77,16,132,173,84,41,57,43,211,196,161,246,89,207,218,45,151,13,246,171,32,156,93,99,154,98,165,10,193,108,251,152,70,238,171,3,136,243,139,250,185,249,72,199,196,182,110,60,182,247,130,57,73,216,105,200,30,48,49,247,82,33,21,79,144,65,166,255,216,21,112,240
 ,116,195,182,201,197,6,33,51,112,111,39,254,19,24,43,105,218,88,230,134,93,93,51,60,126,225,131,6,14,112,106,245,126,133,34,173,249,86,143,223,202,79,54,124,253,100,242,71,50,240,169,194,181,249,147,242,190,189,88,221,148,246,233,135,73,95,81,55,111,220,239,180,46,146,134,34,26,59,33,198,88,216,18,3,115,20,249,172,88,77,180,21,142,169,64,175,90,150,208,211,181,229,205,39,244,144,115,60,120,255,222,42,25,196,171,212,129,151,128,123,35,67,20,158,174,194,46,108,215,102,184,124,129,126,254,55,218,47,225,248,96,72,225,160,246,140,140,73,253,37,129,162,235,64,224,22,123,151,182,104,12,129,89,252,151,160,1,56,249,18,223,26,249,74,115,232,116,245,210,176,24,129,138,155,201,21,201,88,123,177,150,73,178,181,15,180,162,39,88,252,144,79,15,115,210,82,13,161,115,83,235,150,57,195,35,12,220,194,43,238,47,179,52,134,72,154,53,150,152,255,137,250,65,79,237,40,23,63,26,113,156,181,75,219,86,235,181,246,214,11,155,102,183,93,214,187,108,210,245,69,132,210,223,139,173,182,39,187,109,121,223,23
 2,207,12,35,131,69,102,144,236,46,195,158,212,218,238,189,181,202,101,166,245,30,174,0,71,94,193,197,169,146,58,84,196,245,125,143,187,235,255,173,83,134,27,133,143,111,62,154,243,130,242,130,152,250,64,152,218,91,214,176,138,233,186,226,115,172,61,58,64,104,127,189,99,168,249,61,139,50,198,60,122,229,140,201,82,150,125,34,138,123,154,240,70,244,242,195,47,126,182,3,128,32,112,41,91,176,230,103,113,133,184,71,78,210,154,193,235,175,10,171,153,63,177,229,198,153,93,128,187,156,157,178,215,245,35,38,124,152,97,85,183,188,36,221,195,41,192,42,40,27,230,53,243,172,35,37,109,155,19,213,68,164,106,158,240,31,65,137,154,2,114,211,147,154,120,50,117,223,222,62,147,106,64,57,49,185,136,33,160,119,200,184,240,41,182,75,252,38,125,210,152,193,237,254,112,134,20,18,144,214,120,42,245,29,204,198,220,145,12,158,99,60,206,59,137,102,137,113,162,118,227,205,20,9,140,213,182,213,83,168,142,245,200,74,203,65,41,63,113,84,6,4,123,105,90,198,209,230,104,92,155,128,84,242,159,15,248,30,91,136,61
 ,254,15,245,51,220,27,224,16,134,119,28,184,75,172,31,6,140,4,27,201,156,73,12,58,114,177,218,234,92,44,91,72,152,211,106,79,43,39,89,94,232,8,203,88,225,122,59,119,74,179,252,88,204,53,251,226,52,88,166,55,149,61,76,208,24,251,173,174,89,51,45,43,237,1,120,108,126,135,79,250,68,252,30,6,156,141,45,217,29,233,72,174,21,216,94,102,172,240,111,206,98,151,142,92,99,116,211,63,185,137,53,93,182,3,102,32,119,78,58,211,17,188,46,81,58,28,95,242,59,233,169,189,178,93,32,214,55,136,8,62,41,168,117,120,213,107,219,119,242,163,174,24,129,244,162,68,136,34,137,203,250,15,158,125,84,116,9,81,9,134,32,39,198,25,60,2,163,221,198,239,174,192,248,229,70,91,9,221,141,215,145,137,64,201,220,95,117,63,242,94,203,145,154,48,118,65,160,107,74,179,223,248,173,56,99,169,63,27,224,166,242,106,58,248,117,126,49,93,6,11,39,248,136,222,179,146,75,223,92,21,153,107,36,167,126,81,156,82,233,222,61,158,248,125,178,66,35,51,43,123,168,237,148,168,160,10,129,239,137,189,178,170,109,183,205,200,199,131,69,1
 48,15,228,43,60,239,123,54,29,157,100,147,50,82,229,114,20,96,213,129,45,103,117,123,161,0,140,82,6,175,192,156,210,229,124,126,209,124,94,246,72,74,202,75,142,138,210,74,215,126,112,38,187,39,204,131,212,178,81,60,207,134,190,77,180,118,254,86,31,75,246,22,189,33,144,141,160,135,185,148,212,57,0,160,117,16,181,201,131,185,167,181,233,71,77,241,124,26,137,112,58,6,30,153,208,109,60,21,213,76,204,190,248,137,40,222,205,248,126,87,87,106,111,246,183,164,157,198,75,25,72,193,113,153,94,110,115,79,17,150,94,115,157,94,104,78,73,132,22,26,82,218,141,229,225,182,50,187,32,165,52,55,142,251,247,138,157,165,127,194,52,102,200,102,135,55,91,40,244,113,122,155,192,19,91,49,10,81,94,136,206,252,162,142,3,156,216,62,58,66,206,226,219,102,239,223,196,125,125,228,65,162,46,150,196,124,232,246,115,48,63,97,101,191,254,45,91,102,113,80,210,76,33,179,169,252,117,208,83,90,179,83,215,100,209,255,87,31,254,243,35,221,231,115,87,238,201,34,78,3,168,201,18,174,32,66,172,86,3,9,227,139,156,208,24
 6,84,179,207,215,132,144,224,68,21,26,33,184,32,63,20,144,204,94,117,176,30,52,51,222,139,84,104,207,249,5,225,102,181,252,201,200,54,139,53,90,129,214,174,121,108,21,217,83,143,243,197,218,203,10,164,222,120,27,32,133,104,16,103,110,65,97,34,210,121,210,108,71,90,251,60,115,72,213,241,179,93,154,178,193,70,30,233,91,152,74,209,26,26,159,128,24,126,128,218,70,113,105,37,50,240,16,204,98,73,110,58,51,188,71,49,182,34,136,220,59,107,171,183,107,204,50,134,25,215,110,126,160,220,84,181,40,36,150,22,1,44,120,190,242,12,45,36,148,96,95,165,143,55,87,120,253,83,183,185,26,77,168,192,196,33,125,26,235,128,86,179,100,50,195,108,73,60,54,131,121,170,216,139,152,213,238,77,226,77,106,29,169,180,251,247,249,13,28,217,46,64,38,7,114,216,89,234,15,109,76,20,49,122,9,62,162,84,24,177,88,189,242,57,9,168,102,225,225,120,224,132,20,56,35,16,110,233,226,194,165,205,185,87,196,133,151,29,189,190,151,90,34,83,24,163,55,185,78,43,213,58,107,76,207,97,138,215,213,29,65,30,221,21,73,96,138,207,93
 ,255,223,251,20,11,149,119,45,240,190,36,15,254,251,253,96,16,254,215,225,196,252,60,39,124,254,227,183,60,177,44,0,91,216,6,107,69,144,172,38,221,67,23,26,233,250,229,144,210,206,15,117,159,24,31,146,172,41,144,177,13,169,250,166,115,124,4,153,54,30,74,248,125,255,36,85,194,15,96,229,89,252,59,115,249,64,18,95,208,188,165,84,28,83,148,143,96,210,119,35,42,71,116,134,82,37,192,104,173,178,15,165,93,53,111,43,16,189,75,141,11,117,41,176,95,37,193,45,175,128,196,46,179,33,55,97,235,41,9,121,48,233,46,198,122,83,164,222,224,118,45,37,110,156,94,79,244,69,76,76,243,235,165,168,52,7,95,206,89,13,63,79,254,4,49,140,146,38,150,180,65,83,111,49,10,92,69,128,159,75,29,181,183,160,68,223,179,54,240,155,255,78,225,86,37,142,55,168,59,193,0,63,77,184,178,215,225,205,91,122,110,200,192,78,33,213,199,179,235,40,192,83,153,47,219,9,217,167,7,148,121,125,198,140,129,82,43,71,163,167,4,144,30,159,9,6,62,38,27,193,87,219,71,254,72,5,177,46,143,179,18,254,207,76,160,68,109,253,219,215,71,142,1
 22,67,187,110,222,36,126,79,37,26,110,57,16,96,218,157,120,36,47,92,119,8,91,46,247,26,30,215,101,83,142,240,81,15,178,199,231,88,28,178,24,28,1,89,159,237,119,5,58,103,250,72,205,203,132,70,95,27,111,184,75,155,37,92,198,170,235,199,112,209,240,61,217,188,31,145,134,228,144,150,151,145,167,79,142,215,9,12,122,144,168,63,216,88,247,60,33,87,228,209,245,194,217,234,128,109,36,39,6,161,4,167,181,39,192,51,9,106,71,153,177,121,101,185,179,244,18,207,57,4,96,171,13,45,76,24,186,252,123,45,29,187,142,220,214,86,23,49,21,154,47,194,55,235,164,207,202,31,140,182,241,92,8,11,212,204,46,45,61,132,94,51,23,162,8,57,92,194,94,142,224,84,135,25,190,242,127,108,5,217,37,136,9,38,74,45,87,132,199,62,178,188,85,194,143,145,102,236,238,218,230,242,55,70,140,120,34,173,1,186,104,78,218,158,73,101,32,2,0,248,184,129,134,77,3,236,88,17,122,108,100,104,107,247,113,0,26,83,223,9,99,62,2,161,138,6,163,62,159,155,87,36,78,51,53,208,190,68,247,50,72,232,226,203,55,31,94,178,172,88,2,95,193,128,93,1
 46,141,249,11,240,218,102,221,197,4,7,15,29,22,104,132,110,152,156,178,4,239,166,197,72,6,125,233,191,4,203,95,103,253,73,143,10,32,202,5,16,37,108,65,0,42,71,131,143,149,249,135,195,74,72,23,76,134,22,221,220,122,120,46,76,231,25,27,181,173,71,32,15,87,171,117,199,8,2,31,85,91,60,95,40,169,50,14,172,64,224,222,222,76,6,216,5,58,7,26,43,214,16,175,139,69,45,201,248,54,142,58,21,176,158,157,37,67,136,31,233,87,76,15,150,90,171,14,167,80,212,194,149,204,199,30,225,252,139,205,137,214,70,24,182,4,84,254,127,252,184,126,7,223,9,36,103,11,128,96,6,204,98,91,201,235,43,101,205,28,19,17,145,31,84,92,180,204,252,73,156,165,132,100,81,34,8,18,236,10,226,205,188,159,25,74,119,226,143,219,170,186,233,105,180,246,57,37,99,195,162,36,251,157,112,103,231,26,180,218,8,61,129,96,16,72,237,154,92,34,82,9,200,229,185,29,69,49,75,40,70,67,36,98,221,187,215,187,52,195,13,123,180,222,180,79,32,218,191,13,173,69,246,58,139,29,87,105,65,226,195,106,170,217,39,252,71,146,215,242,31,179,78,20,115,3,
 202,187,255,7,70,85,137,54,220,87,184,61,100,235,63,210,252,3,227,163,28,122,57,106,127,104,49,115,2,209,60,73,138,235,103,13,60,78,77,37,30,11,250,36,135,233,13,157,53,57,183,84,168,184,109,223,181,250,87,129,34,72,141,56,40,152,16,33,251,95,227,251,166,206,19,120,127,216,36,82,231,53,211,138,185,8,219,168,94,238,7,120,161,102,194,30,111,153,206,195,170,129,105,228,46,217,173,9,27,146,11,64,204,83,90,120,172,92,46,104,8,194,124,94,215,169,181,226,29,8,20,144,83,203,234,148,135,224,173,152,49,248,217,235,71,131,117,248,29,183,70,25,247,102,37,197,244,72,153,232,16,122,143,29,42,169,106,45,13,173,247,47,71,7,162,223,106,132,182,237,228,165,123,196,238,207,138,85,143,4,125,187,234,223,90,108,189,19,92,174,116,65,161,76,205,35,53,154,232,141,235,188,135,68,156,114,52,2,134,152,166,26,104,128,182,185,50,166,165,28,221,3,133,7,129,41,146,82,236,5,112,149,171,248,79,67,117,161,226,84,34,227,68,110,252,7,69,114,168,171,226,243,188,188,13,143,0,72,250,27,212,65,84,220,209,243,45,144
 ,129,63,17,13,254,234,17,235,14,163,134,82,25,231,72,12,86,252,66,76,154,10,71,56,31,219,79,216,68,77,161,229,122,66,174,205,102,151,252,10,96,39,138,161,126,251,100,16,148,29,161,17,130,171,27,113,141,28,253,72,210,232,229,39,193,194,140,155,4,4,119,172,28,78,102,31,214,106,208,209,235,171,156,163,137,158,160,64,119,88,134,91,175,162,33,7,2,16,16,164,213,63,253,3,150,171,49,253,110,45,20,158,92,39,87,108,68,194,97,61,17,187,94,40,103,128,51,163,73,90,113,110,110,85,116,235,83,126,147,201,139,207,102,239,243,78,68,61,165,72,39,208,157,69,223,67,41,67,237,20,184,170,149,66,41,51,84,212,222,25,191,7,155,89,2,47,98,237,42,194,131,180,248,86,25,230,32,86,233,71,206,242,254,196,205,158,75,9,237,143,111,90,54,160,121,10,7,47,28,204,177,213,84,119,64,202,126,158,86,136,82,29,166,222,66,71,81,169,167,84,64,221,185,42,152,31,163,34,35,103,117,116,61,131,51,108,47,12,134,228,186,6,233,131,116,46,204,159,181,233,237,40,113,122,65,227,227,62,146,60,159,194,50,23,199,136,101,245,157,195,
 149,103,46,42,21,131,208,36,119,121,213,85,220,58,177,200,140,85,153,225,75,145,28,97,231,247,85,9,44,58,221,226,119,150,228,157,183,47,185,90,240,165,217,218,213,148,240,231,42,52,167,117,62,131,37,118,124,15,242,120,4,61,30,238,212,81,116,45,105,14,8,57,20,32,146,202,243,90,31,55,48,152,24,89,90,58,73,98,101,176,107,157,176,131,192,122,142,137,28,109,101,102,127,22,79,55,3,88,108,226,188,73,111,108,140,13,249,145,254,246,11,137,83,143,155,82,228,135,167,176,232,89,69,188,164,75,162,108,28,53,104,140,182,54,148,65,93,164,106,64,68,33,22,68,243,179,247,18,229,135,219,137,29,100,192,42,128,160,244,91,34,232,216,7,180,188,120,190,156,240,253,237,189,170,209,141,241,204,11,164,143,36,82,83,224,75,215,124,22,101,254,2,22,171,185,5,235,21,22,62,167,104,54,179,212,129,239,61,167,137,254,185,87,140,189,3,161,221,203,138,201,44,199,144,25,149,6,109,214,215,177,138,38,92,129,60,37,124,146,2,103,9,16,202,200,229,94,87,251,86,238,78,190,190,217,176,214,28,223,170,201,209,91,133,59,83,2
 01,10,255,251,131,138,35,200,169,114,32,149,127,192,19,253,103,124,140,64,178,209,227,20,105,72,155,105,213,58,245,89,11,169,29,162,95,224,55,138,130,125,68,61,15,20,69,85,198,165,198,31,195,52,2,11,243,146,230,49,55,112,87,185,255,86,251,241,82,130,182,192,168,254,73,88,150,165,46,26,57,162,234,11,70,114,224,231,154,177,239,165,205,187,189,224,3,213,202,186,220,176,160,27,1,217,196,117,250,95,14,121,21,7,79,93,103,153,180,185,122,171,11,132,106,236,228,88,168,101,13,76,104,228,255,236,148,201,8,12,109,84,120,159,55,29,70,189,196,180,209,116,167,236,30,170,176,212,103,70,20,6,52,120,186,189,184,223,237,189,36,117,173,84,198,106,122,176,123,43,26,202,163,165,5,181,10,181,3,219,219,27,127,255,122,182,8,3,43,128,30,233,3,125,176,70,196,150,88,223,54,41,190,16,173,101,87,65,9,61,207,25,100,99,92,186,143,174,206,250,124,250,59,233,99,55,51,180,189,60,34,167,52,248,91,69,37,6,61,84,97,16,86,21,135,97,219,228,126,44,169,41,210,194,103,33,193,147,86,150,201,41,205,35,206,104,223,75,
 227,20,221,208,149,5,248,219,59,16,100,231,208,230,188,47,6,227,181,100,174,134,62,53,152,205,166,14,28,245,65,203,147,190,6,90,81,25,4,51,253,252,236,0,93,181,126,80,1,18,141,163,64,195,54,207,6,32,46,212,176,15,119,206,174,150,229,2,253,77,83,239,230,210,94,27,222,228,105,1,37,128,122,43,8,178,95,12,214,28,19,48,252,100,229,1,65,14,205,252,202,183,148,64,90,146,160,89,136,143,203,71,174,175,176,203,43,88,190,21,166,5,124,137,68,96,48,14,237,134,55,111,82,75,156,107,133,251,4,249,65,239,36,109,32,177,240,114,2,105,48,7,63,112,237,2,171,247,194,161,232,129,96,187,239,35,60,238,173,189,44,221,168,116,114,43,213,71,24,255,151,215,237,143,61,97,58,33,11,15,66,102,163,148,42,221,211,55,69,48,246,40,139,113,25,76,68,17,189,60,166,43,95,153,112,153,56,120,13,65,98,16,133,232,49,251,163,197,55,99,9,26,141,215,140,26,56,17,144,223,73,226,210,207,145,71,15,58,186,180,108,26,17,82,183,62,89,246,1,67,155,143,7,181,253,169,227,33,80,101,43,159,46,239,143,85,169,11,206,139,191,223,100,17
 ,161,111,142,220,124,87,79,252,200,183,215,217,241,101,108,33,154,216,227,222,206,180,93,135,170,21,47,166,240,24,136,32,34,3,201,211,100,176,10,182,52,251,170,118,221,221,118,86,185,92,80,181,64,81,133,83,95,118,194,211,34,65,25,106,207,228,14,185,110,86,104,117,14,19,189,75,18,155,178,148,191,201,63,152,146,102,99,19,255,42,134,58,74,90,18,100,28,128,119,138,95,132,181,79,240,52,167,233,156,26,25,78,76,110,141,137,170,89,207,35,254,179,72,151,191,90,110,47,214,29,145,235,8,83,186,133,47,85,154,9,91,65,173,130,245,143,66,145,2,180,146,92,49,83,122,72,71,96,157,222,190,233,194,171,229,73,135,221,101,102,153,120,252,32,56,2,252,86,13,54,107,81,233,163,247,143,40,63,34,152,102,150,90,196,220,195,141,139,50,168,101,45,149,113,74,198,152,230,200,88,107,101,183,241,192,111,1,110,90,92,218,50,125,75,255,81,3,48,237,106,232,197,236,159,30,90,245,102,137,33,173,189,61,112,169,215,117,60,75,240,86,215,165,221,243,48,183,254,227,17,224,4,249,254,165,228,5,193,237,90,233,175,58,205,238
 ,22,85,163,102,218,212,159,158,118,142,231,155,164,22,97,57,62,189,104,255,129,123,213,25,61,104,145,3,93,150,228,25,234,94,106,162,150,54,112,159,31,218,181,59,55,96,164,59,19,246,113,30,195,45,4,74,69,177,205,225,113,159,48,152,230,74,59,220,141,206,174,31,77,32,10,187,37,7,194,78,201,221,149,38,127,200,33,208,42,16,162,153,1,90,222,13,9,137,16,73,86,126,28,106,210,238,73,36,10,18,12,56,33,237,87,57,224,120,120,227,178,161,232,7,87,228,207,129,204,1,13,173,245,105,157,125,160,2,235,110,72,156,8,151,216,128,81,211,92,169,181,167,239,208,69,42,248,199,144,81,18,157,43,148,150,44,220,201,64,76,33,178,7,129,118,211,154,109,149,228,237,235,155,68,130,102,232,49,207,187,108,26,13,204,117,37,152,133,225,174,18,96,94,102,224,138,36,208,212,172,154,143,128,23,143,187,44,68,90,68,30,32,136,201,228,24,240,149,183,228,171,24,61,52,112,61,224,85,138,161,8,46,221,195,113,189,194,120,71,60,98,155,112,31,31,86,23,72,29,159,59,71,182,0,131,133,118,42,132,134,239,98,231,17,79,74,37,239,95,5
 6,208,67,247,33,64,204,53,100,22,224,192,137,67,174,227,246,109,137,106,26,3,224,206,96,51,133,137,9,207,159,95,3,199,55,153,176,20,235,207,197,137,238,57,12,219,147,188,166,68,93,229,143,255,204,92,151,209,222,168,230,208,233,119,214,66,226,168,255,16,250,206,95,3,111,67,79,171,42,244,131,61,112,40,137,107,54,1,180,252,68,221,55,22,223,234,66,47,135,152,162,237,201,177,110,156,65,68,136,210,80,174,127,210,163,132,5,38,250,31,13,45,96,1,221,99,156,86,149,207,203,184,47,47,83,89,213,185,81,64,120,166,18,121,171,149,105,252,144,213,145,207,43,179,44,227,226,118,124,168,251,58,67,244,55,73,217,197,194,134,107,85,232,183,177,95,123,113,190,52,134,46,179,226,48,101,115,0,177,196,189,138,80,127,219,19,188,227,121,76,41,251,128,56,66,66,75,193,203,253,149,67,54,167,219,34,130,38,235,248,148,189,133,112,77,121,2,205,103,109,172,50,179,120,193,91,176,157,31,16,54,97,58,236,86,95,173,51,221,68,22,133,195,69,148,127,59,197,233,185,96,31,125,132,121,15,163,13,46,154,61,254,26,190,194,17
 ,177,172,113,109,181,50,93,193,150,43,111,199,107,159,253,148,204,66,166,62,30,31,216,124,215,226,146,22,132,165,108,4,40,100,26,15,45,150,99,111,70,90,184,160,172,94,202,194,97,67,151,35,216,65,29,226,106,187,109,91,18,66,254,236,215,134,96,61,10,252,209,54,236,187,186,121,157,184,229,120,79,109,113,30,234,66,146,226,161,137,200,89,183,211,206,53,249,161,70,64,85,174,250,133,176,69,32,142,234,121,45,198,218,20,164,21,152,99,108,229,214,7,5,72,150,34,103,7,1,119,83,219,145,42,106,50,188,229,0,242,243,74,236,230,44,120,158,17,167,82,15,34,83,245,65,27,73,41,7,176,135,161,133,72,208,77,119,132,6,182,66,37,139,250,0,140,123,62,170,78,113,126,48,87,197,59,18,214,241,22,87,252,250,106,206,167,15,246,154,64,90,60,247,4,185,120,10,163,137,134,57,45,165,45,0,117,132,205,157,249,93,192,134,173,220,160,92,99,106,115,187,20,166,134,32,68,171,147,94,28,25,122,59,56,17,76,113,12,45,236,253,247,254,174,76,69,117,135,161,242,233,241,44,37,56,173,251,78,255,78,134,16,222,242,234,166,77,197,
 246,231,186,208,194,127,111,125,36,6,113,89,112,197,228,254,98,69,43,194,172,207,123,198,33,153,186,103,179,19,11,2,6,51,222,142,174,93,30,183,160,142,229,209,212,228,43,38,253,207,11,255,87,175,124,99,243,45,222,178,62,141,15,190,90,206,186,237,127,102,244,49,52,196,211,186,164,91,123,97,212,70,38,193,227,208,114,168,182,57,254,151,16,11,235,250,211,54,54,104,244,62,25,13,147,209,166,157,84,67,55,253,185,86,147,81,180,60,145,211,209,199,220,203,247,200,242,15,179,112,243,70,154,228,55,40,254,48,10,110,155,159,162,106,113,248,150,16,102,17,238,93,152,49,245,247,204,99,151,199,55,125,68,71,139,121,3,207,25,223,128,162,20,114,106,170,122,228,216,222,201,61,101,88,175,238,195,102,101,85,86,191,185,77,226,249,37,156,248,222,183,138,253,150,192,137,233,20,207,111,244,113,56,136,203,119,10,217,216,209,83,55,226,187,115,49,247,180,16,39,155,92,206,83,88,31,144,134,129,109,251,133,68,178,120,199,195,192,84,101,128,53,154,172,178,180,85,192,208,144,151,170,61,183,33,220,88,196,253,10
 ,188,129,193,77,46,76,168,238,156,49,240,188,200,182,25,239,221,117,11,23,231,70,246,16,8,167,233,47,66,155,112,131,139,235,191,231,156,91,224,208,60,253,107,197,178,188,193,100,126,53,238,36,35,249,219,239,178,209,126,222,198,41,111,117,104,42,170,143,127,102,185,250,166,41,135,206,250,137,131,149,244,185,140,20,145,105,189,97,211,99,19,112,142,22,157,241,237,124,84,32,61,185,41,83,5,207,161,221,67,110,116,227,228,110,8,14,227,97,156,157,24,105,233,184,71,207,34,164,88,13,245,220,28,115,184,117,97,238,179,83,250,188,96,79,102,107,25,83,155,104,159,76,118,20,89,15,53,186,210,107,253,71,173,237,226,139,243,82,148,154,158,129,149,236,22,52,137,235,178,119,250,187,42,69,75,189,0,124,41,228,78,222,142,245,102,190,1,31,92,20,112,73,22,19,246,221,186,187,85,239,164,104,222,23,252,170,74,11,33,103,22,200,2,122,90,126,255,197,225,130,58,167,131,31,198,250,224,119,244,46,225,144,128,245,149,20,209,6,212,39,194,2,110,149,255,253,35,67,56,28,122,108,23,114,191,8,169,129,133,52,46,209,1
 87,15,16,208,113,25,131,168,151,241,70,153,20,105,203,180,161,25,0,71,153,39,197,191,40,125,8,21,101,26,79,215,39,21,250,84,128,169,170,145,125,221,179,101,219,105,133,247,240,207,130,236,180,97,90,251,154,172,63,83,146,84,160,213,74,224,194,238,130,167,195,178,164,154,60,218,83,9,204,10,85,169,6,173,69,119,140,126,65,145,157,28,252,60,196,200,61,203,44,80,112,93,225,213,104,192,176,179,233,85,184,141,120,20,50,218,225,192,252,36,3,76,141,146,59,7,192,217,222,1,179,26,238,141,90,62,145,95,73,65,53,45,187,149,150,125,181,58,31,90,45,225,124,137,167,150,7,195,89,142,27,137,139,181,56,226,64,234,44,191,216,26,76,122,37,54,228,95,193,93,172,51,15,88,159,138,2,197,10,14,190,132,183,30,20,97,6,126,141,7,43,181,60,211,84,240,231,139,245,205,230,14,39,209,81,115,144,224,222,207,34,12,211,121,74,180,24,18,128,225,0,220,203,20,1,182,44,8,99,54,139,55,106,220,226,235,222,172,138,244,10,166,61,20,128,254,38,58,46,231,173,49,218,227,170,151,148,145,103,225,99,113,218,52,177,215,215,144,1
 29,209,125,20,25,95,15,184,61,16,40,101,67,27,191,145,241,5,19,184,14,181,37,250,111,124,165,109,22,110,125,4,7,165,0,180,239,121,177,131,19,178,46,134,67,215,169,61,51,223,149,1,4,161,251,35,110,38,241,195,154,168,122,190,147,50,34,14,24,53,122,144,141,111,157,86,47,180,16,43,189,46,10,206,34,106,205,247,74,202,171,129,174,184,33,23,190,138,87,39,99,206,34,136,0,142,118,42,14,114,23,117,42,22,47,155,60,226,9,146,15,190,149,67,206,145,230,22,219,250,182,231,154,170,132,219,138,235,184,251,106,200,58,112,37,23,80,219,31,183,8,255,130,114,1,45,168,34,196,138,30,198,197,188,169,194,138,248,32,168,75,92,60,95,230,88,54,122,47,71,196,122,94,176,7,86,162,0,185,5,125,185,245,35,53,65,239,47,220,53,148,94,60,92,48,24,208,215,1,190,237,71,181,117,59,160,65,149,92,77,36,58,171,193,89,104,22,56,147,50,138,216,33,154,166,32,126,208,255,244,86,167,165,140,240,206,153,15,110,213,44,230,25,179,185,45,141,252,186,225,231,152,24,200,102,237,246,70,73,181,227,149,13,86,241,247,98,217,205,11,1
 83,192,106,27,183,215,87,48,191,118,221,161,211,252,220,239,245,158,234,168,168,64,203,33,42,102,25,206,1,147,13,210,145,100,203,203,116,191,211,96,127,197,240,118,155,241,121,186,19,188,238,32,3,89,9,17,93,138,223,244,149,128,125,179,6,70,114,95,8,249,95,96,248,45,237,95,48,118,209,218,198,106,47,20,125,99,16,96,40,100,47,213,108,83,104,90,191,123,31,91,6,125,57,250,254,87,110,76,169,15,178,155,126,79,233,129,79,190,148,236,36,239,250,197,1,82,1,19,94,180,43,194,91,25,143,111,192,153,192,223,246,224,33,126,203,211,234,5,50,34,186,113,144,161,142,213,135,100,181,53,9,68,255,115,108,209,71,143,35,116,71,94,39,187,65,155,47,15,157,140,18,138,242,172,169,141,16,120,169,138,245,24,51,224,92,29,189,254,10,13,33,53,197,126,43,195,44,241,6,28,191,56,43,203,254,247,219,123,81,231,163,72,92,47,97,37,251,194,221,133,238,70,155,159,90,55,3,143,81,79,48,42,40,68,72,189,23,96,185,58,24,99,240,213,101,196,23,84,37,224,126,248,91,162,178,195,208,91,174,102,214,30,147,204,189,231,157,17,29,
 103,166,47,148,3,233,42,236,120,249,250,172,222,181,171,192,195,41,252,60,52,230,11,184,25,21,52,94,199,90,128,251,21,248,73,129,192,206,101,124,87,171,223,62,171,29,189,35,55,235,0,89,169,48,233,130,251,36,22,33,15,176,149,73,138,148,235,182,164,162,49,88,84,152,128,227,96,65,203,247,167,145,85,47,148,194,6,192,7,107,57,249,232,53,176,114,215,233,133,154,185,9,124,57,66,131,162,144,199,33,241,27,130,42,243,73,69,103,196,137,62,136,234,54,211,223,159,213,156,221,132,165,128,146,160,17,19,201,63,58,2,34,203,244,30,104,222,4,89,162,38,20,238,138,26,231,182,177,123,48,150,199,75,242,180,206,162,57,67,187,72,113,108,249,88,239,24,148,241,106,182,168,176,180,41,214,184,143,43,69,60,128,80,11,34,217,0,205,96,23,64,59,206,11,67,178,22,33,197,17,239,252,247,40,82,3,2,18,128,160,212,116,43,253,206,210,6,227,75,3,73,108,228,162,151,169,36,190,154,228,254,231,192,168,34,203,236,218,73,39,39,26,115,83,207,125,237,41,194,141,91,35,250,186,184,50,76,201,88,74,70,203,104,164,122,139,76,132
 ,239,125,207,184,145,55,235,216,55,153,95,101,217,156,163,35,125,224,195,147,62,183,39,193,156,15,117,41,198,64,200,210,82,199,83,16,115,109,127,181,73,236,104,238,69,248,80,250,8,216,199,155,191,232,247,14,151,78,78,162,25,120,183,209,56,168,162,244,227,138,76,33,226,51,8,85,59,246,188,38,145,204,143,52,178,143,57,228,153,24,161,130,4,202,148,48,86,147,237,201,41,239,69,163,253,228,82,13,186,75,95,195,154,255,221,5,76,151,123,189,5,80,144,141,164,237,151,28,178,117,196,104,235,216,192,80,134,16,83,147,247,151,67,154,144,127,134,33,41,41,152,70,192,158,94,51,198,111,39,211,3,109,38,12,175,210,205,71,176,208,151,105,69,158,13,127,59,55,168,98,145,175,6,195,159,244,251,134,207,252,12,28,157,74,140,124,72,156,159,71,106,218,38,135,6,185,13,68,53,120,113,85,185,121,141,25,105,9,22,44,137,48,87,185,41,170,174,188,73,168,22,143,232,99,212,143,92,75,48,174,77,67,33,1,138,66,215,28,83,124,51,102,151,62,122,184,194,234,121,38,28,185,228,114,214,193,200,83,80,5,76,124,242,176,151,187,
 221,180,216,120,103,48,136,220,203,144,229,102,41,166,55,144,234,186,156,115,210,32,230,115,208,39,89,142,89,174,122,84,34,229,248,48,9,196,224,0,149,12,129,12,177,237,23,213,189,252,151,5,192,126,234,121,75,7,67,221,202,116,77,111,228,27,178,135,231,49,43,77,30,231,219,214,108,154,227,80,88,234,109,70,48,185,212,136,101,12,138,164,98,180,95,41,40,12,49,61,243,102,248,1,241,174,73,89,202,41,221,246,10,10,240,94,104,103,11,250,180,221,134,179,64,124,242,75,189,183,149,49,252,15,48,225,85,91,227,70,255,53,186,181,37,194,83,249,95,106,147,52,131,71,100,194,61,182,164,190,52,45,15,197,250,169,222,87,195,125,113,13,58,3,196,12,119,244,3,139,152,245,39,93,64,246,133,229,229,29,81,191,18,172,49,0,11,114,71,236,132,55,72,105,128,58,233,56,61,251,230,61,229,241,235,136,161,158,100,28,216,186,0,159,46,134,44,107,234,76,147,209,53,119,239,80,11,117,37,192,97,165,130,119,228,143,217,91,73,144,157,88,126,209,157,100,169,219,96,186,241,132,120,102,32,94,35,27,22,17,246,112,247,53,228,124,
 25,206,40,170,72,201,115,115,130,221,21,100,96,191,87,145,139,48,47,39,187,37,253,205,18,62,209,159,36,182,3,238,83,222,104,253,84,156,135,107,100,173,121,233,149,37,251,200,201,171,32,29,107,21,253,183,251,203,190,5,70,26,164,169,245,245,4,120,36,32,62,53,54,49,7,183,112,57,203,67,232,41,226,91,45,178,81,28,172,121,100,166,142,30,47,188,27,74,57,112,187,181,14,182,117,80,253,223,42,62,175,100,226,131,168,120,37,246,134,197,122,107,71,234,212,188,9,63,79,63,111,25,96,205,95,66,149,37,163,84,141,119,200,146,163,126,70,158,23,211,65,206,90,251,250,145,79,106,16,103,236,3,131,29,115,116,218,240,26,90,255,21,198,84,209,228,182,30,233,151,222,194,129,227,192,154,168,32,182,40,98,185,40,164,113,120,132,40,227,0,111,217,118,252,136,86,1,194,92,80,127,84,187,6,199,221,141,235,122,127,176,110,254,162,105,250,204,109,176,173,215,27,249,182,98,4,168,197,147,223,168,195,101,178,69,212,218,55,245,240,2,183,53,253,51,20,187,197,97,148,161,4,106,239,82,188,156,96,54,207,136,240,92,174,84,1
 34,113,41,67,123,146,54,170,8,196,199,126,165,213,95,60,18,47,207,139,1,2,120,240,46,25,153,210,57,255,154,162,56,159,7,190,205,69,68,185,111,191,152,30,100,31,131,4,26,230,250,185,243,216,49,42,219,34,123,156,140,51,243,156,164,193,192,180,159,218,136,27,203,161,172,35,92,154,80,97,229,149,93,98,233,216,103,52,183,9,198,162,220,160,18,198,164,226,253,104,85,47,46,252,160,252,90,58,163,118,210,123,103,254,149,62,73,133,55,237,97,69,148,130,167,38,28,135,96,163,24,148,129,51,244,28,191,191,128,211,30,226,38,51,18,1,122,90,75,136,5,103,3,34,171,64,132,135,196,61,176,167,56,3,73,164,213,28,13,249,134,43,211,29,167,61,197,160,14,110,189,65,68,228,99,215,171,137,19,155,98,183,139,211,243,38,198,196,73,0,243,121,25,27,255,1,172,101,25,186,18,45,21,12,157,82,68,68,17,47,134,85,21,152,212,34,98,254,118,190,134,102,89,0,234,18,92,217,36,123,241,94,168,182,181,212,152,218,53,146,146,20,213,138,72,177,188,98,102,0,178,19,80,104,199,84,12,150,255,99,218,36,89,152,179,200,229,52,21,108,1
 85,151,150,103,135,242,199,96,198,156,68,123,78,84,230,18,127,22,121,164,255,249,227,55,31,137,99,232,138,163,243,103,58,255,175,91,14,98,48,173,184,60,230,195,161,9,74,240,141,127,162,248,38,211,35,1,75,68,166,96,29,98,163,2,217,211,23,252,138,162,69,173,209,68,204,8,129,247,226,166,152,27,247,17,209,25,96,25,15,44,64,23,5,7,55,124,211,123,55,109,40,93,209,0,177,111,198,199,73,238,7,82,244,90,241,183,161,60,152,119,208,71,117,9,250,194,6,241,52,209,135,108,0,253,119,224,244,139,130,231,205,151,133,193,227,157,99,243,64,66,223,240,75,77,182,60,92,175,102,5,251,143,89,176,36,238,108,136,52,85,88,76,223,104,93,188,112,119,239,78,93,11,130,54,17,40,16,255,123,254,91,58,206,219,239,122,220,239,40,190,196,156,159,151,227,64,16,179,121,235,198,39,74,211,233,30,213,224,230,8,93,153,168,101,67,136,50,100,159,51,221,40,237,125,183,216,94,63,243,96,249,212,95,218,42,32,152,108,92,83,189,123,202,59,136,234,62,57,182,100,22,61,35,80,193,93,163,40,171,1,144,111,118,185,239,63,55,23,115,2
 05,245,111,236,158,160,254,96,149,142,54,79,132,104,204,98,6,20,222,178,213,17,135,187,29,164,132,26,148,154,194,223,154,152,121,152,82,149,188,75,68,88,198,143,29,151,110,215,49,204,110,47,241,242,220,190,221,11,174,0,83,82,209,71,236,198,186,243,70,128,184,203,209,227,196,92,190,12,238,73,9,250,65,243,56,76,136,9,200,70,62,179,21,124,35,206,242,83,13,228,120,72,254,152,93,130,20,74,51,95,209,90,220,171,221,59,9,154,96,28,153,13,98,158,145,166,73,236,31,17,87,222,208,8,226,128,69,173,31,66,155,179,198,188,85,34,191,42,34,158,164,189,174,221,201,238,221,39,248,107,57,186,146,29,45,157,213,148,231,150,215,59,248,166,50,12,56,224,92,59,191,91,99,142,238,16,3,68,115,157,244,183,159,164,129,162,96,67,161,169,71,245,11,94,97,64,88,97,126,191,70,40,5,203,239,226,197,6,18,146,1,210,175,227,126,133,240,183,240,107,194,119,211,186,162,64,210,143,170,252,78,145,87,136,23,23,26,24,128,40,174,232,144,119,182,87,234,68,147,229,135,49,245,111,45,227,220,119,127,39,198,191,162,195,255,82,1
 15,127,203,198,183,92,29,206,123,202,232,135,76,143,43,154,148,111,146,178,102,201,38,30,145,0,198,73,64,35,214,159,191,21,229,244,189,63,231,171,9,22,181,210,84,238,117,72,75,7,217,25,236,240,82,163,227,93,63,232,157,15,1,192,4,183,148,121,247,254,139,16,239,218,178,35,184,110,206,90,52,203,84,127,38,102,226,245,119,10,161,201,140,140,221,225,164,3,148,214,219,132,93,4,154,7,247,19,109,70,0,101,24,63,229,64,152,83,133,248,28,240,151,166,225,199,14,62,254,176,130,181,219,215,84,71,118,232,40,40,168,6,171,29,48,6,134,240,136,81,113,172,165,119,108,222,240,193,215,219,57,139,74,29,236,160,67,214,192,50,23,236,145,244,145,17,128,88,145,196,7,21,185,241,250,250,148,116,226,227,192,174,104,234,110,139,176,79,213,225,125,133,101,229,213,128,255,145,42,130,212,233,204,10,112,141,229,50,11,5,104,145,91,63,58,18,144,63,159,224,77,216,239,32,15,66,54,206,234,177,146,208,61,107,186,139,145,98,108,46,159,81,218,154,75,221,2,75,26,36,250,104,237,142,145,134,183,185,13,219,171,21,156,185,
 212,68,84,188,117,173,243,249,226,31,78,253,162,120,165,209,95,85,255,147,38,94,253,235,170,176,94,243,23,183,213,150,50,169,253,57,167,51,125,106,11,117,242,135,39,180,15,187,248,241,156,103,84,214,232,218,5,4,58,88,211,195,141,173,144,181,150,122,244,95,220,1,104,72,119,186,216,83,172,175,46,171,134,190,173,99,167,75,66,37,32,30,154,17,48,21,62,215,99,106,100,12,117,33,238,174,25,119,218,86,167,75,41,233,120,115,16,220,227,211,218,137,159,234,81,34,37,210,147,225,191,6,35,146,133,231,97,15,173,255,155,36,196,175,191,140,84,42,182,27,162,239,1,63,52,97,75,76,46,69,15,118,28,224,53,72,214,239,18,152,86,164,187,243,60,185,200,248,59,26,79,237,17,32,107,189,15,173,22,129,210,117,44,13,42,18,255,111,62,192,92,132,250,119,104,27,36,225,228,141,82,193,116,13,23,46,36,156,35,101,46,83,67,183,106,173,91,116,171,164,71,102,103,230,238,0,85,135,175,221,210,231,201,108,93,144,216,5,28,206,253,210,228,85,20,101,124,128,99,110,208,222,119,10,81,158,153,194,180,80,136,249,88,218,111,221,
 178,185,163,206,52,141,51,77,117,164,216,106,80,110,196,239,45,147,171,180,50,158,28,221,43,242,56,97,188,190,61,171,48,215,60,60,50,217,151,169,111,96,141,22,246,246,238,221,205,35,182,94,230,166,108,188,54,27,187,50,158,111,46,133,200,100,108,45,133,97,145,3,234,61,119,71,199,249,45,41,232,74,135,129,240,57,164,17,50,152,205,47,34,75,56,13,32,236,138,103,16,148,184,205,111,101,139,67,164,166,5,89,142,207,108,80,88,96,41,223,20,0,104,138,218,164,84,124,214,101,183,211,101,156,61,195,57,9,185,87,32,117,52,111,223,216,183,190,164,120,193,236,193,95,230,101,71,57,196,70,8,42,88,116,19,233,237,98,11,233,252,152,33,230,203,94,142,255,57,154,19,97,57,57,226,66,108,215,165,227,180,3,63,174,213,128,27,143,19,85,181,159,151,224,248,157,6,6,194,175,188,181,128,26,127,208,206,190,227,181,171,188,193,182,181,85,184,175,99,81,55,163,99,179,172,155,64,10,200,252,175,50,139,44,218,2,223,28,41,190,56,150,29,80,210,131,60,58,216,31,219,238,4,217,189,208,207,22,34,234,55,182,158,162,151,214,
 25,69,155,132,172,144,156,95,121,69,81,238,185,96,155,246,156,144,240,36,34,199,47,209,67,73,7,131,70,121,49,206,193,54,98,187,94,33,180,75,145,53,143,118,201,151,125,188,132,68,83,166,116,199,100,160,84,184,198,108,79,22,50,177,205,16,210,161,153,73,8,247,13,96,110,150,181,236,119,166,109,0,47,106,57,8,34,132,115,165,78,67,202,41,238,208,157,181,200,68,176,9,92,121,69,83,2,60,27,40,186,245,67,59,218,119,47,165,192,51,153,236,11,216,83,135,169,15,144,29,83,6,25,109,9,23,128,69,112,219,240,13,124,224,205,83,90,27,124,76,100,199,9,12,231,209,67,34,122,255,168,75,41,168,108,52,27,82,18,188,33,55,149,115,39,254,186,236,172,54,171,154,219,197,104,204,131,118,176,149,188,79,246,3,89,81,147,183,88,55,158,253,229,140,121,82,175,246,43,191,165,21,176,160,150,223,68,10,159,113,88,32,51,160,75,44,48,140,3,240,223,10,91,205,126,18,178,125,231,218,183,38,11,43,87,206,25,25,158,189,85,32,213,137,166,33,47,55,7,3,154,225,191,98,243,4,153,84,99,1,113,46,187,119,144,162,207,251,156,97,178,18
 9,15,98,113,85,1,175,115,151,20,162,23,143,32,40,104,143,27,121,148,131,118,159,146,249,140,212,140,151,218,79,247,26,159,168,142,95,153,63,17,29,20,56,246,198,215,233,190,65,58,199,244,87,210,37,225,202,18,16,226,205,2,30,226,137,223,176,42,82,7,203,34,212,244,146,8,125,188,248,118,166,251,232,34,50,223,150,127,156,63,112,154,230,180,117,224,17,81,155,252,111,48,219,67,62,88,15,29,73,68,49,95,236,52,74,184,186,227,27,153,46,202,29,113,74,184,158,4,57,252,118,77,67,77,245,2,65,111,189,57,197,142,3,102,129,126,137,135,223,28,80,73,200,163,32,46,200,24,86,76,68,162,234,174,47,201,19,121,73,211,103,187,49,102,215,98,191,3,121,242,78,107,161,3,116,134,88,29,3,255,29,174,172,74,225,107,9,250,121,147,229,181,241,223,112,46,253,73,133,188,216,140,161,76,70,72,23,25,181,189,19,100,251,103,10,168,38,66,31,55,149,32,247,185,153,180,160,225,196,133,12,75,56,139,68,15,30,114,58,131,84,109,52,163,106,165,80,38,63,174,235,17,14,98,67,116,122,93,114,38,78,249,198,158,184,110,96,174,255,153
 ,185,222,250,155,215,146,88,19,230,41,226,4,159,158,239,29,64,128,199,193,86,100,86,239,170,74,224,79,83,52,247,209,129,229,28,45,106,183,189,6,63,227,79,89,241,63,133,178,106,207,215,41,203,7,64,149,156,123,204,91,172,83,235,219,175,6,143,13,84,194,39,135,70,169,113,192,53,228,148,224,11,128,159,231,152,91,140,243,69,1,103,206,202,2,177,201,243,173,59,37,46,22,236,43,125,31,212,239,91,16,239,10,230,114,225,10,33,214,230,37,139,36,186,23,171,246,91,15,109,27,184,100,177,36,161,242,247,40,225,240,96,31,214,181,80,109,77,145,181,227,127,250,88,132,120,233,95,88,11,219,231,188,87,252,127,165,144,212,73,21,238,126,194,38,211,171,49,164,53,35,245,65,100,155,17,95,20,68,0,123,240,142,89,161,235,248,164,99,47,170,190,112,164,249,156,95,195,67,14,103,27,28,229,218,83,51,152,129,224,197,194,128,37,100,198,75,54,200,9,114,248,209,58,60,212,38,108,89,18,228,62,177,24,81,255,182,169,103,68,195,40,246,53,106,93,241,129,67,134,45,243,46,223,175,94,183,115,185,108,69,83,116,71,91,135,93,25
 1,175,248,93,242,13,244,188,37,111,55,222,33,37,23,38,227,232,134,16,240,175,90,88,28,76,133,107,213,50,210,104,3,69,33,38,235,45,183,156,205,31,194,231,63,206,93,54,240,189,142,123,87,161,144,84,34,186,236,55,124,211,220,142,61,54,22,84,183,242,75,237,65,145,187,236,172,42,49,175,67,1,95,61,156,192,173,111,3,151,3,179,103,106,219,29,212,72,38,181,1,113,38,157,21,134,41,108,25,0,148,231,81,49,213,177,59,79,153,57,85,100,165,89,119,193,70,86,180,67,75,243,66,6,234,216,93,21,218,159,154,103,254,1,186,70,195,88,175,3,107,167,129,13,216,22,234,6,31,184,197,111,111,76,251,241,127,38,137,107,104,226,23,171,159,116,250,24,16,169,212,189,134,252,167,2,28,59,76,53,193,106,80,78,162,58,113,94,229,227,131,110,38,1,226,245,62,35,153,207,193,28,124,252,194,224,198,253,172,241,39,203,120,41,208,99,222,50,252,25,131,101,180,58,29,214,252,104,204,35,230,243,191,82,27,101,230,139,149,228,6,188,44,253,111,61,81,115,80,78,195,60,116,105,197,25,33,91,85,9,222,60,151,178,55,127,241,81,214,157,18
 2,84,232,92,223,206,106,103,178,232,91,86,227,66,200,18,176,123,137,143,10,206,14,40,14,107,251,220,208,1,10,67,102,173,131,22,120,205,60,139,0,118,234,192,130,20,245,226,88,239,234,35,72,244,131,98,204,17,133,37,32,69,18,20,169,12,247,109,170,144,67,71,69,127,53,229,6,80,202,189,156,110,151,138,222,166,87,66,100,170,241,178,78,87,65,139,220,133,89,175,86,84,63,239,122,91,13,209,48,42,8,26,151,174,79,171,31,145,162,67,58,243,175,46,5,152,74,126,136,219,28,37,97,26,218,198,191,7,117,161,110,151,219,60,131,17,245,112,185,188,125,202,161,37,61,45,215,200,34,7,92,50,81,98,4,150,47,100,177,77,90,104,254,19,53,107,123,101,176,28,168,0,137,105,253,39,5,10,87,73,168,163,217,103,100,3,253,253,146,164,108,226,190,89,248,96,67,68,104,56,71,92,159,146,202,73,59,73,163,22,184,141,112,176,6,67,128,230,138,49,211,24,212,2,89,135,215,90,196,127,70,175,2,124,88,1,38,160,237,25,120,238,104,218,244,18,207,104,159,34,61,122,99,40,27,149,25,125,216,210,94,25,19,178,66,102,254,61,8,23,175,149,160
 ,66,126,57,139,180,155,41,92,219,58,88,242,99,9,123,50,131,64,211,219,244,2,161,115,163,168,125,169,128,25,173,40,7,151,166,80,246,217,0,181,80,93,22,251,81,166,152,40,74,57,93,100,9,217,28,176,168,78,27,253,172,243,213,132,192,134,187,211,139,99,73,29,180,201,214,224,178,22,9,249,198,104,77,98,48,221,221,215,176,191,202,213,60,50,161,62,41,200,97,180,190,57,187,83,136,231,115,156,135,200,195,129,224,79,251,117,23,228,79,140,29,143,215,57,215,175,40,14,180,44,232,56,97,203,204,141,135,137,249,238,56,1,37,254,172,206,89,47,21,27,175,39,74,196,183,123,166,114,147,175,163,104,24,46,75,1,13,13,42,176,149,186,216,70,55,32,105,203,157,79,42,64,106,118,54,130,101,144,115,16,245,143,78,144,141,41,9,119,146,192,223,206,21,199,84,84,52,203,62,107,168,116,190,112,150,101,152,40,202,147,205,192,58,20,36,88,247,215,32,70,30,106,24,3,143,110,49,69,15,165,197,222,80,79,141,104,129,189,40,164,163,103,250,204,162,104,149,242,47,16,242,205,159,146,142,172,160,217,114,212,164,22,246,74,78,142,
 158,168,39,202,187,58,57,160,126,247,237,40,179,68,217,142,25,87,104,5,128,35,250,232,176,58,100,186,227,50,183,34,178,144,205,155,19,183,117,50,182,137,242,253,10,3,187,158,231,112,15,28,54,190,102,72,84,101,31,56,37,106,132,169,211,111,169,241,13,75,56,100,102,83,16,69,61,108,189,86,5,1,110,47,94,0,7,183,96,23,75,230,179,230,148,29,236,48,183,175,115,208,85,185,70,220,249,88,246,174,174,127,175,42,173,14,121,46,170,254,49,66,111,5,71,182,147,15,236,170,139,191,162,231,215,160,27,157,202,168,161,75,221,92,18,136,123,14,122,171,201,21,235,223,4,144,151,217,200,183,23,190,133,81,147,19,223,165,216,216,232,211,94,132,124,21,213,118,93,199,28,148,183,190,86,11,211,78,51,145,148,53,187,212,245,229,180,1,166,33,196,92,139,95,63,0,161,64,103,223,11,49,181,105,113,125,178,138,216,187,253,198,220,88,180,205,93,100,10,108,149,132,219,240,160,43,7,86,128,203,85,19,146,47,56,184,250,5,235,241,254,207,175,167,240,167,223,108,50,16,231,184,155,178,30,218,84,79,222,72,191,157,189,108,33,2
 54,11,167,162,239,89,47,108,203,206,18,196,184,244,239,23,169,25,141,154,1,112,107,138,2,83,227,46,140,250,9,196,252,60,182,196,168,153,4,226,109,113,7,114,186,198,187,153,125,173,93,186,233,35,254,54,184,248,6,230,76,196,208,119,217,174,46,216,62,16,208,106,244,234,123,81,155,90,90,43,96,224,3,201,215,36,58,133,185,16,48,135,211,255,223,109,41,85,212,231,46,71,1,106,235,234,185,148,91,107,238,213,88,22,55,234,73,180,8,63,144,124,203,135,114,177,70,119,222,215,2,86,250,236,9,110,238,76,179,136,143,103,147,208,23,225,227,165,135,135,66,241,138,172,173,128,75,98,26,178,140,85,173,141,221,167,10,215,219,9,204,240,133,137,91,226,124,92,74,78,204,144,215,11,32,90,58,240,111,199,176,154,30,151,105,142,106,116,106,212,21,245,123,197,192,204,102,56,132,223,26,26,151,229,151,56,208,59,66,37,62,101,247,40,106,198,74,250,222,49,197,65,54,251,108,77,177,22,43,109,253,199,39,206,176,206,94,39,230,22,48,63,135,38,254,78,162,67,167,83,194,237,179,28,66,8,19,253,198,234,11,87,206,237,52,192
 ,104,126,27,192,62,1,133,140,72,167,227,109,27,235,198,220,255,50,5,159,231,130,183,115,248,30,253,68,94,157,171,195,134,73,163,206,219,250,25,36,244,145,133,104,2,82,193,246,196,83,115,236,78,25,159,171,80,75,180,232,12,27,226,87,166,246,72,135,149,118,155,15,167,76,39,23,10,44,170,156,168,240,113,100,84,30,181,54,4,120,98,242,66,10,242,143,18,32,91,135,76,239,45,80,14,209,196,101,199,134,180,135,118,71,129,183,160,248,34,20,206,179,43,103,41,202,19,26,242,149,194,39,106,241,1,181,183,33,255,115,153,192,23,252,12,213,50,22,8,80,166,199,76,55,252,115,150,142,176,66,76,163,153,183,210,226,43,48,92,132,254,71,209,249,171,53,51,192,162,68,35,148,152,154,229,251,210,7,140,253,200,62,249,149,132,124,54,11,35,73,242,73,42,177,175,74,137,254,23,189,172,247,62,24,48,239,246,75,109,93,92,229,74,160,132,97,186,5,250,212,142,166,201,103,240,205,227,159,91,131,137,8,43,8,133,117,240,10,203,237,238,227,155,70,179,189,203,133,169,20,101,141,5,155,228,100,252,204,216,130,96,180,220,80,73,2
 12,190,18,175,198,199,106,38,217,70,48,21,172,76,17,2,80,162,140,195,101,97,129,66,130,0,198,104,186,33,192,114,235,199,61,189,202,30,244,137,167,143,114,4,142,105,253,7,44,166,244,226,125,111,137,228,53,67,25,99,135,57,38,7,128,102,114,94,71,218,215,108,226,46,229,177,73,6,114,144,157,86,179,50,225,23,59,189,209,197,40,251,4,128,58,138,110,8,21,153,161,101,138,19,179,145,185,180,49,173,28,10,11,86,181,179,143,145,255,192,177,156,6,121,71,125,187,89,97,118,177,118,153,208,148,143,81,87,56,28,170,18,218,55,237,176,100,21,215,173,69,199,116,53,131,73,207,113,92,62,197,76,13,157,31,138,251,124,202,146,9,249,40,177,213,45,227,134,64,198,23,42,237,147,49,144,218,190,23,30,164,105,248,145,202,61,71,255,170,31,147,39,200,12,135,100,17,68,143,205,81,158,40,148,153,17,57,204,171,226,170,228,44,163,90,252,84,235,1,133,26,50,31,172,70,18,26,62,68,17,167,12,149,142,87,118,246,27,215,221,13,179,254,99,13,226,101,128,101,158,147,202,54,148,236,230,87,42,28,203,108,32,25,242,158,147,0,85,7
 4,17,64,183,181,63,145,91,71,155,28,89,226,109,184,186,2,231,103,74,47,75,129,86,108,158,56,176,120,67,165,137,195,94,99,153,48,47,120,220,105,226,185,23,174,104,110,255,26,196,2,238,197,73,224,205,137,255,46,0,239,223,198,131,187,223,127,19,168,13,41,129,117,238,208,202,111,66,48,103,159,20,29,68,128,35,73,237,110,24,169,24,114,157,246,197,17,154,163,207,231,210,60,177,216,150,25,10,177,161,96,181,21,235,104,64,48,148,108,166,92,218,136,52,180,203,7,46,230,85,171,211,138,35,244,5,188,196,108,226,47,146,103,92,248,229,228,211,187,11,89,222,22,149,40,59,177,51,246,243,171,53,114,25,137,42,110,0,109,81,53,155,159,122,223,196,255,140,83,200,246,55,96,68,36,53,41,112,185,57,43,103,155,59,133,254,235,191,214,163,118,229,212,156,233,207,225,32,247,52,230,205,199,161,167,144,175,148,225,190,204,84,202,99,31,241,207,238,243,133,234,7,39,204,18,115,119,33,151,106,50,34,110,234,97,252,4,64,237,97,180,184,167,253,243,153,189,185,92,14,27,164,175,188,238,126,94,217,54,238,184,224,159,13
 3,169,30,63,160,159,249,81,189,141,31,239,196,242,15,109,121,135,226,185,235,231,223,153,135,152,102,77,148,83,26,229,171,71,186,101,11,18,43,56,43,22,27,45,57,102,177,252,179,211,253,41,10,98,28,35,167,97,15,152,87,96,135,80,107,119,144,205,215,217,51,116,47,140,181,18,170,166,181,46,254,234,92,37,163,233,160,160,163,33,188,92,6,178,132,0,6,19,97,210,208,192,233,221,150,143,51,181,224,96,202,69,241,185,255,46,134,6,227,165,161,201,168,73,88,234,110,249,83,44,112,253,198,215,61,91,153,64,144,214,173,155,236,254,66,14,154,55,51,23,232,233,74,157,137,0,215,59,204,119,150,193,167,162,147,174,143,178,29,22,99,181,55,222,142,70,165,137,47,247,109,128,37,171,253,247,188,169,2,77,31,163,44,249,173,241,165,44,203,0,142,99,153,77,91,188,4,13,128,81,103,106,78,114,60,84,74,253,249,129,68,55,143,43,128,118,70,127,241,36,210,216,19,127,118,30,127,56,131,205,242,8,140,70,25,51,100,172,210,247,254,234,105,176,44,110,239,2,253,215,137,133,180,176,164,222,88,245,213,36,247,84,136,29,43,140,
 122,165,158,162,43,212,111,128,47,45,202,210,124,175,47,143,248,115,151,60,79,200,217,190,0,202,166,58,240,117,192,216,200,126,135,82,107,143,60,41,190,223,199,200,57,192,147,45,45,209,118,13,90,151,130,165,187,219,249,244,200,46,211,7,49,151,108,87,133,206,57,125,122,203,31,252,180,23,25,62,66,186,24,254,143,102,165,143,86,210,83,186,132,49,155,118,114,67,178,193,217,184,192,216,64,41,182,78,18,25,223,58,129,17,184,155,37,132,209,33,106,166,9,183,92,169,141,211,249,175,198,229,211,219,219,69,47,244,226,188,116,44,86,39,219,74,133,54,92,99,65,22,241,75,48,100,246,153,37,148,235,157,218,74,236,43,84,186,184,96,160,168,247,182,39,204,180,221,41,202,42,31,80,227,96,79,109,215,197,148,71,10,25,222,122,97,206,42,91,213,230,104,129,102,201,22,58,124,61,165,246,67,88,225,84,126,135,120,202,72,254,217,58,69,118,178,231,235,52,168,244,211,153,152,6,82,115,152,99,52,172,179,92,140,85,131,205,13,188,236,243,186,95,19,235,79,60,49,172,83,165,240,173,91,180,207,11,180,17,177,172,216,237,
 50,232,29,92,91,191,9,105,147,255,145,136,227,46,136,69,237,12,136,190,29,8,9,85,114,46,221,101,84,171,41,77,28,208,9,218,193,153,16,249,29,164,170,138,234,71,181,18,221,116,44,245,206,83,125,101,182,207,200,185,170,62,212,204,167,122,107,33,194,190,233,212,76,84,253,124,248,51,84,115,176,226,88,44,249,209,100,9,203,15,158,191,36,34,183,21,74,98,250,66,43,59,75,179,190,101,239,226,137,75,230,198,1,148,112,137,31,171,208,47,128,214,65,131,155,227,134,171,72,56,7,103,211,61,216,102,48,200,166,199,7,47,13,31,60,110,17,56,46,130,214,252,192,125,125,69,45,174,112,135,207,178,162,97,178,185,210,15,132,152,152,114,12,221,150,164,252,207,101,12,4,102,246,6,7,189,184,253,231,100,25,73,252,150,135,23,75,18,53,162,69,7,230,205,96,109,114,16,137,219,11,24,107,0,137,130,71,196,18,188,67,196,72,181,164,251,162,208,72,18,255,219,41,26,99,234,45,162,255,46,40,13,16,221,72,156,208,93,215,222,63,56,3,61,240,164,81,22,85,217,253,241,124,173,164,24,128,99,18,133,167,35,204,47,229,185,254,140,23
 7,30,197,168,59,61,86,112,20,249,51,105,43,57,55,9,9,213,28,223,130,181,54,215,249,118,47,103,214,118,27,202,18,28,79,4,1,250,148,25,110,151,99,182,184,232,199,168,57,64,212,61,67,249,5,105,244,97,132,240,207,227,209,193,199,79,27,65,112,89,225,43,33,20,164,217,253,228,96,117,172,84,161,212,156,118,84,150,195,74,54,163,246,52,159,118,163,221,188,153,41,215,194,150,144,94,31,226,193,118,0,81,184,128,22,64,96,132,59,65,69,190,69,215,164,45,243,99,115,83,206,40,14,73,24,154,111,21,182,29,54,169,85,244,200,157,245,254,75,68,2,69,116,45,229,3,205,234,208,170,147,196,220,2,234,174,2,41,230,131,139,202,246,48,205,103,153,232,110,142,161,222,25,54,2,93,208,120,207,179,32,43,255,143,120,232,227,119,203,83,170,152,18,110,187,209,131,24,240,184,153,106,109,83,106,13,40,12,78,82,100,41,62,128,137,141,197,195,10,251,42,31,58,28,72,31,172,61,125,205,19,89,176,64,77,135,224,143,218,170,44,132,88,224,12,152,53,154,146,47,12,231,77,228,110,16,138,112,37,28,187,197,81,134,96,230,9,216,113,221
 ,80,74,15,244,6,213,151,196,176,184,60,16,241,75,211,66,36,43,92,177,59,86,3,53,166,191,199,26,183,160,87,94,113,137,247,65,220,255,113,201,57,234,157,104,234,177,42,93,192,238,125,222,210,42,40,246,1,178,117,82,86,156,141,179,122,132,190,33,247,148,184,241,64,222,168,75,107,207,123,56,175,103,90,196,199,84,210,194,121,111,203,10,70,168,100,137,175,221,170,68,10,220,13,178,242,54,160,157,240,34,197,249,3,101,27,101,9,203,128,56,14,235,68,173,205,191,26,210,178,23,20,237,251,129,241,250,154,6,75,194,66,208,194,255,15,199,151,96,248,255,151,109,150,45,26,192,205,51,239,115,18,108,226,37,89,217,81,164,59,11,173,241,248,52,102,237,112,225,151,48,192,12,51,134,136,3,117,41,15,111,16,92,108,250,116,33,107,162,189,121,88,251,46,25,91,197,212,18,71,150,163,30,253,73,17,27,152,175,204,194,213,141,186,171,188,188,25,208,126,118,198,199,12,210,115,162,80,43,57,183,105,129,176,42,166,189,213,83,229,216,87,0,214,28,56,31,21,125,69,78,142,137,74,113,42,127,90,108,147,25,255,159,33,41,184,
 220,6,236,190,52,166,150,232,45,141,197,244,213,186,119,224,29,176,169,111,237,3,106,15,169,137,167,69,133,217,196,229,250,108,182,113,117,70,39,227,237,109,26,78,108,254,188,235,14,112,63,130,129,211,110,139,126,152,42,76,117,188,60,32,220,201,123,39,193,92,201,15,187,121,98,159,96,154,44,255,199,220,233,198,184,94,76,140,123,245,61,247,48,179,41,10,177,55,120,119,42,64,211,21,88,11,148,109,203,38,76,129,103,145,227,159,238,106,101,126,166,179,221,0,99,86,98,166,252,242,188,117,12,234,110,223,154,111,90,128,186,180,226,186,220,182,114,54,195,156,181,90,187,22,217,28,161,45,246,245,26,172,208,133,205,181,198,114,74,186,148,131,180,36,108,12,34,223,74,159,73,168,212,230,155,72,170,84,152,253,6,173,179,113,164,233,170,151,31,247,112,51,4,12,57,61,164,184,215,158,227,82,125,10,131,92,222,243,92,85,194,212,206,50,61,97,156,62,80,237,205,73,99,23,140,116,37,138,98,29,155,163,25,19,216,167,14,227,73,28,229,28,198,107,48,158,253,76,49,49,118,90,141,84,238,201,249,149,118,156,181,13
 7,217,161,75,154,64,6,4,137,23,232,245,251,138,57,197,109,220,141,20,117,70,71,148,179,156,28,168,83,205,130,161,0,120,87,253,11,171,190,197,197,242,93,35,201,49,94,32,72,52,204,108,231,132,140,96,133,122,84,31,8,128,233,22,193,43,188,180,130,92,174,72,112,238,177,214,200,224,230,174,127,251,180,49,189,176,165,235,254,88,33,76,86,65,109,194,138,108,119,166,190,104,240,36,225,198,189,23,196,246,124,72,141,6,31,12,242,97,220,210,137,170,4,160,179,226,171,56,123,177,120,16,42,73,231,204,199,109,233,6,111,203,170,204,169,85,11,208,250,178,15,22,122,161,132,82,216,156,109,239,214,39,8,153,66,211,175,212,170,100,162,216,250,243,218,149,79,3,170,158,155,187,68,53,146,158,39,214,73,64,161,32,83,71,224,19,224,41,211,212,103,33,149,239,28,67,56,44,240,86,226,75,105,131,154,12,55,117,204,128,108,132,104,194,214,47,127,78,238,227,237,198,162,40,173,16,235,137,54,16,244,139,104,210,62,149,151,6,192,182,113,143,148,49,156,4,242,67,147,211,46,56,83,210,132,199,28,54,121,206,156,78,128,152,
 255,161,182,13,45,158,194,123,19,13,178,195,67,78,96,250,110,49,192,130,182,196,44,95,218,1,74,168,140,39,219,60,113,145,151,203,194,248,135,154,158,53,67,186,95,108,136,238,29,198,217,33,123,10,23,204,99,75,210,81,26,108,28,169,11,204,182,219,152,67,116,180,132,7,60,127,42,192,165,141,87,6,3,153,134,0,52,70,12,41,27,202,120,133,48,126,114,7,32,164,198,203,151,157,151,179,208,45,116,171,48,164,212,202,116,107,125,109,77,1,128,99,177,9,214,96,238,205,86,173,79,59,9,220,113,160,59,216,200,149,251,5,202,70,108,210,180,222,227,2,219,15,246,99,155,179,139,151,78,207,117,87,10,195,119,125,185,62,61,4,75,60,17,58,144,150,88,139,141,110,99,188,160,107,25,4,18,175,84,99,44,21,252,85,59,83,148,246,243,6,186,172,6,228,108,193,112,196,18,18,193,39,134,242,29,232,182,166,242,84,249,55,115,54,235,45,186,2,208,3,243,219,125,128,3,68,222,168,239,249,82,103,56,152,95,9,159,173,98,168,123,4,85,37,198,195,174,38,102,215,74,237,114,116,239,231,36,244,208,41,21,94,35,3,107,199,232,44,60,108,136,
 247,244,4,52,183,103,103,119,176,29,45,85,7,40,131,66,187,203,14,178,162,42,11,204,14,13,244,59,156,163,167,14,172,180,132,22,4,119,111,147,107,221,141,247,63,74,119,63,232,127,108,0,162,132,103,69,220,117,66,222,215,208,4,141,99,106,137,62,7,189,209,223,92,243,80,161,181,149,118,171,6,18,207,127,64,231,169,40,122,239,83,118,253,126,166,247,224,216,93,50,34,93,64,44,124,213,163,59,106,41,84,163,213,126,10,221,43,22,235,133,63,186,57,230,7,58,228,170,174,96,193,24,167,225,156,220,247,99,15,90,108,29,19,26,214,222,127,47,174,218,232,186,180,106,113,250,118,78,157,55,11,14,120,182,72,37,207,203,9,235,170,20,183,75,213,196,191,31,82,119,216,43,164,38,70,87,139,253,244,244,253,235,112,224,208,5,65,49,228,71,231,40,135,238,2,222,246,48,206,213,62,91,11,34,31,190,96,171,230,42,193,168,122,74,163,212,96,89,113,137,200,217,120,156,188,99,198,230,86,25,17,127,176,137,38,7,199,5,19,136,98,240,205,204,136,155,12,218,62,167,171,132,246,70,167,122,21,89,88,92,64,241,238,184,205,175,94,211
 ,187,155,179,238,120,241,34,89,217,195,49,233,91,126,66,15,188,242,68,11,178,142,11,17,4,207,156,219,3,22,110,149,38,168,250,194,65,236,190,231,157,124,164,150,252,150,59,246,51,139,117,192,99,244,4,201,66,90,148,115,1,49,46,146,190,53,9,195,110,55,54,177,16,151,18,246,175,58,139,2,93,71,227,27,57,63,68,227,128,89,96,255,131,227,8,184,81,32,157,163,122,157,11,185,48,170,139,100,178,149,5,235,120,221,125,12,29,197,144,158,180,21,11,27,144,1,96,87,164,248,59,181,70,230,39,9,101,245,220,69,168,69,250,115,2,73,173,225,71,88,86,129,145,177,253,135,32,195,116,239,42,158,227,139,54,59,124,11,216,23,53,159,226,164,133,11,79,66,146,20,213,189,239,104,108,102,23,53,215,95,125,237,69,56,143,235,95,138,241,146,97,232,30,93,55,30,8,188,58,177,224,207,47,135,102,248,244,67,30,226,157,112,164,30,208,56,66,38,159,131,243,230,249,226,127,224,39,70,50,163,32,37,225,10,57,77,127,89,68,65,251,49,192,122,57,100,147,80,242,101,220,212,3,53,49,116,98,41,82,99,212,129,71,157,137,130,102,212,183,188
 ,235,125,61,171,215,131,203,233,165,242,155,231,82,6,184,232,206,155,134,201,254,112,221,234,158,84,47,4,10,82,205,52,87,59,165,125,102,181,215,4,29,57,41,129,144,218,174,4,137,168,174,45,162,216,116,11,98,104,60,225,100,23,203,250,110,229,41,139,59,194,158,75,43,13,233,61,221,187,181,29,255,203,219,105,29,18,218,51,19,89,131,175,57,150,137,210,44,255,16,200,114,101,131,28,135,242,7,246,221,173,216,77,181,29,77,8,147,170,186,69,224,224,4,101,24,224,145,173,101,98,204,210,114,246,185,175,236,80,92,211,65,104,112,33,131,248,138,151,57,48,60,185,72,198,236,51,15,98,56,55,70,44,65,76,91,167,147,87,179,244,246,204,243,44,4,96,171,173,78,4,165,216,36,45,221,19,154,26,150,31,77,83,126,212,107,65,172,48,102,64,75,145,90,215,67,150,130,79,76,14,96,248,212,9,7,195,198,115,133,222,188,121,65,178,104,48,226,221,254,1,144,182,169,214,199,78,88,227,149,139,4,233,75,123,106,167,176,229,139,238,128,79,174,15,108,74,126,29,192,141,222,57,85,79,162,88,143,185,58,93,146,221,160,51,87,247,188,2
 6,247,137,203,97,187,149,76,238,155,229,111,162,54,95,34,55,62,75,126,169,185,82,181,51,32,39,58,128,118,179,91,68,55,28,30,94,53,43,194,170,241,226,208,230,216,3,218,80,222,91,129,64,89,131,92,129,231,65,7,116,190,66,184,217,69,18,125,73,34,141,217,77,236,13,229,58,54,220,24,56,200,194,95,102,99,122,228,56,103,189,136,181,254,219,158,219,136,90,50,65,192,139,60,169,3,51,88,154,17,142,217,96,196,188,186,162,188,92,61,54,138,251,44,236,74,158,118,105,177,193,248,13,160,181,216,147,28,17,160,192,42,108,243,225,189,57,194,220,16,28,91,234,30,203,204,120,1,176,220,129,234,163,96,52,51,125,95,124,186,188,4,179,223,186,10,95,128,236,206,239,57,251,131,238,66,191,160,94,218,73,157,14,232,254,189,198,109,202,90,145,215,101,63,238,120,226,76,48,46,98,180,235,21,24,6,70,239,105,27,45,4,98,109,202,86,150,67,98,210,85,61,183,18,186,204,69,141,214,121,43,253,145,133,172,66,215,227,236,107,27,255,38,122,173,47,59,91,173,122,35,231,209,41,113,40,23,185,43,114,223,220,27,222,51,201,232,99,1
 37,82,133,1,163,140,22,208,34,82,199,63,4,199,126,198,79,117,18,22,96,212,109,137,120,93,75,201,244,53,41,233,12,180,18,142,210,74,26,103,93,70,240,199,181,49,209,72,101,243,133,230,130,195,228,202,231,234,167,142,126,172,241,255,126,168,133,157,117,172,192,155,213,60,80,68,63,99,133,171,108,139,93,112,215,183,204,59,58,106,45,99,25,169,115,64,180,221,0,225,125,77,106,198,169,161,190,52,8,173,131,150,159,102,131,95,119,64,228,54,178,200,135,201,171,153,227,254,165,28,122,187,24,0,157,85,191,170,223,224,188,161,29,126,194,239,203,114,210,81,117,180,2,233,105,113,243,135,149,26,222,62,224,187,101,232,27,232,138,114,172,17,201,119,247,66,77,244,37,33,85,242,198,197,158,19,58,160,180,207,204,150,248,185,19,126,110,95,58,45,109,15,248,207,11,53,64,209,89,198,69,8,7,17,182,174,73,200,65,206,214,72,202,199,217,126,36,241,93,54,86,65,78,239,113,53,29,215,148,145,78,19,247,200,9,249,173,130,1,37,1,116,141,102,8,41,31,115,2,214,41,18,86,90,179,255,143,76,74,74,248,102,253,14,113,96,14
 1,77,189,82,65,167,244,235,166,9,161,63,194,69,182,56,196,12,30,161,3,203,103,76,206,149,142,142,107,85,50,225,225,27,121,176,166,81,63,35,130,156,139,247,110,234,181,243,101,38,47,139,119,68,59,144,149,240,22,245,84,233,149,86,187,248,102,111,16,114,90,217,20,146,212,97,94,158,138,246,235,144,246,43,241,229,161,4,238,197,90,25,137,81,65,113,196,202,198,184,126,249,205,188,182,188,97,143,182,242,8,148,226,8,101,184,40,202,55,213,42,138,200,32,24,3,27,127,76,235,181,130,10,224,177,200,174,38,39,155,144,157,68,183,121,92,221,145,235,129,125,74,244,189,80,185,65,82,176,49,169,254,90,58,67,226,53,48,42,165,171,32,152,176,196,110,189,59,189,5,211,160,220,8,222,194,181,136,129,24,73,120,246,58,232,131,119,91,66,223,41,77,58,69,157,47,58,138,168,167,215,39,32,115,164,15,217,56,207,196,6,213,129,211,250,189,94,184,177,61,27,43,148,44,18,118,217,226,155,57,63,209,224,5,151,246,3,248,7,94,211,195,87,222,177,9,247,105,4,78,18,134,212,129,224,175,2,52,34,121,168,170,12,17,119,155,172,15
 0,58,142,151,122,148,104,77,35,46,43,135,74,11,77,234,139,36,225,79,135,200,213,175,130,200,223,71,155,210,160,73,201,66,45,75,209,182,222,241,66,203,215,199,83,196,196,49,0,207,13,163,84,46,80,245,68,81,72,74,183,40,224,143,166,30,142,67,188,239,195,125,124,199,30,62,37,70,192,117,194,134,82,100,213,24,221,223,99,177,28,171,114,71,38,66,104,229,116,222,226,214,236,43,227,221,187,21,61,184,54,179,17,118,252,184,41,180,246,188,194,17,242,161,73,20,6,104,204,95,168,241,195,4,155,5,206,249,177,42,99,84,149,63,32,154,60,145,15,64,112,225,79,154,207,253,125,90,140,251,167,151,38,192,162,166,197,206,97,91,250,255,44,160,56,250,114,191,68,66,18,224,171,93,73,126,180,19,251,156,60,126,59,77,250,242,223,200,89,29,254,155,116,74,246,109,169,70,196,10,61,252,8,89,46,46,249,221,136,244,110,229,27,100,61,250,17,221,30,103,208,86,111,222,239,246,104,3,86,71,239,70,214,17,142,54,182,169,27,55,123,77,43,64,93,42,58,9,160,246,53,23,151,221,183,119,36,109,77,65,226,170,230,18,231,6,122,95,89,
 254,150,92,128,222,131,23,72,215,43,41,85,29,22,243,153,209,215,76,40,89,243,105,81,92,230,78,96,177,74,120,99,94,64,177,26,198,164,128,249,30,25,32,126,152,197,86,116,184,156,64,175,109,207,114,82,169,235,158,254,207,200,49,161,137,48,117,65,98,14,131,227,107,39,236,220,58,19,72,183,52,93,182,4,154,71,33,96,199,246,238,46,211,63,196,14,208,119,16,175,81,156,56,167,69,0,244,203,183,238,41,112,12,178,184,26,7,77,211,148,3,197,0,184,243,20,180,8,120,3,99,4,144,40,33,172,48,110,168,101,254,31,1,110,26,42,191,143,49,128,152,170,229,40,130,221,94,213,235,5,131,185,49,142,185,84,214,26,6,205,127,4,178,73,229,109,245,92,235,232,204,43,238,181,243,195,67,146,6,153,49,179,143,72,33,64,17,219,125,137,90,122,30,158,217,108,9,205,95,188,197,218,111,141,25,246,69,23,170,158,250,145,72,224,169,123,156,0,174,95,212,29,27,233,141,14,93,92,147,144,59,4,23,115,4,165,82,228,7,99,93,87,246,253,203,248,47,87,132,222,45,104,178,156,163,199,54,145,197,97,180,70,43,239,180,17,92,30,208,158,153,186,
 242,157,98,158,76,156,95,90,135,211,8,159,48,46,128,20,226,113,73,48,194,185,102,59,253,107,241,254,176,245,32,222,58,137,103,111,225,113,206,56,249,92,64,102,65,106,133,166,25,5,112,157,188,104,217,30,132,87,254,254,7,66,189,27,214,134,237,141,140,13,234,54,180,11,185,247,51,200,97,220,89,62,115,59,6,71,79,96,133,251,164,24,123,172,57,112,243,160,118,224,94,213,113,184,54,107,143,28,195,69,189,90,96,135,142,111,62,206,146,176,161,6,20,49,27,124,81,39,245,89,198,169,194,80,189,241,110,148,190,215,43,119,219,227,190,174,218,66,107,233,192,55,139,243,210,161,122,220,227,167,73,60,169,10,137,66,126,107,37,44,107,255,196,143,160,68,251,110,207,45,241,188,2,214,101,234,5,39,170,227,59,151,161,187,82,112,47,142,42,94,220,17,235,223,211,80,254,10,238,125,157,133,120,82,197,196,112,229,221,50,52,87,217,199,254,37,10,111,161,246,240,172,34,122,150,181,214,223,72,204,178,22,190,143,134,41,168,21,217,8,146,178,212,184,108,124,16,240,99,120,248,87,121,117,114,13,219,188,149,207,217,167,
 222,152,152,113,44,117,234,154,5,83,163,78,22,136,141,49,121,40,31,74,85,96,100,7,63,244,233,77,239,9,73,29,89,224,115,14,185,148,210,8,177,188,114,128,28,204,250,117,201,218,57,67,41,22,102,251,94,228,145,66,183,17,81,124,69,84,117,12,49,48,17,242,17,159,122,179,145,125,201,255,11,236,190,168,80,235,218,255,92,142,19,185,252,171,133,173,64,38,148,213,139,37,199,191,66,234,66,171,164,226,197,196,175,109,225,106,120,182,252,61,158,42,121,75,110,26,157,150,110,94,20,37,156,219,221,59,202,236,205,213,69,130,46,226,159,76,42,166,25,181,244,214,112,7,84,50,188,171,85,175,33,80,209,187,125,227,129,242,229,31,110,209,10,22,35,247,222,176,88,252,53,162,19,184,52,40,55,37,155,86,184,244,64,118,107,252,164,190,35,91,92,235,106,190,12,111,254,48,44,163,223,248,116,254,47,82,32,19,13,119,31,9,126,252,64,207,87,85,10,24,177,162,131,65,106,168,183,50,168,27,61,6,49,66,145,44,30,147,57,24,135,156,167,103,146,93,32,184,223,23,174,86,211,168,96,226,76,57,240,119,154,166,195,80,160,93,87,10,6
 3,191,129,237,176,52,55,219,128,233,96,111,107,44,166,77,110,0,238,44,151,37,236,81,124,28,177,226,123,142,161,56,191,181,70,159,221,171,90,207,5,90,25,176,50,54,158,170,131,68,141,58,16,86,203,180,80,131,83,16,185,94,252,236,237,81,220,201,5,92,39,182,7,43,224,7,213,112,71,73,32,94,204,148,227,158,203,49,62,13,16,109,37,75,60,32,226,140,214,251,201,150,64,102,107,183,208,164,146,228,245,36,119,213,12,212,125,131,29,76,136,105,245,122,99,191,21,158,62,43,111,138,96,64,218,59,153,72,65,138,246,142,133,66,210,97,108,81,136,11,103,80,134,224,57,100,209,128,95,61,223,152,88,2,214,160,85,52,167,200,50,236,23,6,5,185,148,206,252,23,225,56,151,117,77,96,218,139,104,225,215,212,19,91,189,237,198,71,174,137,17,92,28,244,50,109,143,38,189,23,106,124,237,120,30,124,114,51,143,187,213,180,122,5,254,27,58,223,233,7,217,213,135,17,128,242,16,170,208,117,81,28,87,151,53,99,67,248,122,5,193,181,56,204,56,85,52,202,215,79,82,182,15,142,32,242,85,9,245,239,38,196,201,132,133,32,44,238,104,175
 ,131,246,157,231,38,97,57,142,59,146,207,76,186,99,238,170,69,194,193,194,125,188,87,100,185,146,133,48,113,133,143,40,198,179,89,34,239,221,224,107,84,118,143,15,112,65,33,60,68,25,86,114,33,228,192,241,246,137,20,2,224,247,10,198,200,75,156,185,170,204,244,158,196,107,41,101,116,100,204,247,92,22,239,181,250,165,243,20,218,139,90,114,169,70,180,66,229,87,18,233,51,122,51,184,6,109,22,102,20,114,162,79,40,103,92,214,21,163,39,196,2,3,126,63,17,49,180,255,27,118,150,193,197,214,67,133,84,235,85,2,133,229,196,53,117,57,74,202,181,36,233,164,99,47,101,36,55,103,190,212,96,43,139,74,112,139,105,248,16,52,50,70,179,232,119,27,53,33,219,113,68,11,63,179,254,139,212,216,190,201,86,50,234,29,134,132,178,126,226,57,218,208,27,150,161,1,86,250,194,253,137,32,89,33,108,140,191,246,150,36,44,108,29,51,121,168,117,85,78,68,64,210,20,42,87,238,161,89,242,8,4,92,21,140,19,165,116,25,212,37,139,216,250,86,220,180,238,253,100,206,59,157,244,224,176,185,8,197,241,197,250,235,115,14,5,39,123,
 97,75,249,216,217,48,53,86,196,250,30,230,235,203,91,245,149,44,232,25,147,92,177,209,204,30,13,35,219,145,83,194,8,151,38,172,101,212,119,107,227,34,215,245,112,50,80,140,156,67,13,170,181,143,239,86,165,31,88,0,78,61,47,33,180,6,22,2,145,157,71,115,172,109,128,103,88,199,80,168,139,5,248,50,192,148,230,136,88,9,238,186,165,48,148,254,41,207,254,103,215,114,14,242,81,190,175,20,182,213,224,131,80,227,123,40,13,137,107,163,170,149,65,230,57,145,113,199,160,91,84,55,28,207,208,96,245,250,205,82,30,183,75,27,133,196,122,198,156,180,110,243,151,199,13,86,14,243,168,62,251,230,23,119,254,254,244,100,116,125,227,38,129,117,36,6,191,130,241,122,140,165,186,165,144,69,214,118,177,22,153,121,46,32,111,193,85,214,155,125,207,207,205,176,114,131,136,233,84,254,102,34,61,204,78,78,93,223,89,250,66,33,78,7,107,54,94,247,123,116,159,124,97,105,103,7,5,5,182,127,238,254,135,249,149,122,233,124,113,97,194,250,172,146,148,31,152,130,181,59,50,152,244,22,167,169,227,3,148,175,189,72,220,65,1
 66,47,151,188,225,108,33,103,71,47,95,61,207,204,102,247,250,157,243,130,200,175,6,182,122,91,136,163,23,234,250,160,247,94,241,26,171,109,9,21,218,149,174,169,236,148,86,16,6,164,128,71,38,209,166,141,115,248,70,71,255,15,247,230,158,11,96,104,20,214,17,51,118,90,179,243,102,214,34,113,163,65,202,107,183,224,239,169,113,173,164,102,208,172,34,168,87,104,193,235,110,127,55,111,248,207,121,141,72,16,188,162,95,144,53,53,211,135,87,146,67,131,58,172,199,126,216,182,87,38,153,61,52,127,130,190,61,127,7,142,222,244,172,83,193,98,63,110,225,216,118,122,202,195,25,99,87,135,247,173,46,110,228,122,143,104,61,201,18,33,55,250,189,103,171,99,55,12,244,23,74,27,44,251,190,120,103,192,104,165,97,73,187,39,236,172,39,38,119,166,249,189,92,159,136,12,86,170,78,137,44,199,130,39,230,58,236,162,30,23,122,90,255,114,244,123,147,242,252,244,238,47,99,72,162,1,131,183,216,36,99,59,212,104,65,48,101,14,225,95,168,34,130,235,8,162,17,144,232,122,230,213,241,87,253,106,165,208,54,156,57,118,155,
 105,62,156,175,78,4,153,55,133,55,229,130,7,48,165,44,226,24,254,59,99,214,223,46,144,212,90,187,88,62,191,173,0,31,30,193,65,233,47,14,122,31,139,160,217,85,3,75,186,141,18,214,141,8,239,136,141,139,89,184,209,118,115,149,21,222,226,84,126,144,235,126,125,234,12,69,33,164,107,199,226,207,145,120,17,68,51,13,68,49,96,53,141,65,111,94,202,71,67,121,206,228,129,224,255,132,112,241,114,187,41,248,183,63,83,84,254,238,101,176,56,125,59,16,82,90,244,113,95,168,114,231,172,206,175,109,202,34,177,206,57,241,227,88,206,58,25,161,107,69,248,78,119,105,179,27,65,226,145,57,216,75,207,241,65,164,138,155,147,141,88,246,95,74,74,50,17,41,237,240,115,54,219,35,214,5,208,42,145,140,29,248,22,188,17,173,32,229,127,194,30,122,160,43,10,5,77,9,61,24,86,107,170,108,190,2,14,42,191,241,116,64,20,189,139,128,238,91,156,129,11,243,23,218,138,226,0,237,187,14,107,42,140,238,83,9,128,36,146,28,227,250,42,210,156,128,155,250,36,146,104,72,213,39,213,16,33,210,20,5,236,116,136,97,151,182,102,34,91,92
 ,42,221,252,113,84,54,219,162,228,143,46,33,109,146,150,201,6,208,89,219,105,57,139,163,107,164,142,218,54,150,17,48,16,199,215,109,150,164,116,119,126,99,141,99,147,141,215,214,216,4,106,227,212,14,166,30,155,107,104,117,207,14,139,126,24,45,241,48,18,62,238,12,152,207,224,212,131,204,177,66,194,71,165,59,98,157,28,243,61,2,78,61,243,146,56,178,39,135,231,23,25,168,96,2,132,136,47,104,172,217,86,55,91,22,248,192,250,183,138,189,112,23,123,243,7,73,42,5,22,206,4,10,41,64,102,166,163,218,70,19,226,251,237,7,231,75,127,114,35,57,66,157,41,64,186,180,66,44,176,251,92,76,10,235,216,172,55,124,98,167,7,218,156,244,65,165,86,74,33,17,226,219,147,8,7,108,182,236,2,86,203,199,171,30,195,28,146,100,27,162,195,128,26,192,193,139,94,93,190,143,229,219,207,96,60,188,246,15,208,192,198,36,132,125,175,143,29,150,155,217,63,192,105,205,71,2,25,51,174,232,236,73,121,255,221,19,56,19,39,112,129,16,38,196,137,14,73,112,204,177,38,29,172,90,122,210,144,236,6,244,231,191,162,68,134,129,26,177,2
 47,38,107,115,1,1,59,241,211,198,138,228,14,247,143,248,112,6,18,78,34,18,205,216,184,189,48,28,210,112,114,87,73,91,226,7,238,135,31,173,135,42,21,5,223,52,159,219,186,105,130,96,40,243,201,245,160,111,249,32,39,61,133,51,179,230,87,148,3,226,21,11,61,253,176,184,179,202,65,195,50,240,21,22,63,183,89,203,4,46,180,103,215,35,197,151,119,132,150,69,241,127,101,228,162,180,130,117,60,133,226,163,175,38,215,233,234,1,53,247,208,58,30,37,181,255,137,127,172,37,227,6,105,22,168,18,86,46,9,153,191,115,239,213,5,43,212,66,221,107,12,24,191,239,108,3,189,140,120,180,213,120,1,26,163,169,119,43,117,182,127,232,202,111,179,185,19,238,119,218,51,142,81,105,255,189,207,166,225,117,68,53,214,98,39,33,60,31,239,179,49,25,252,105,249,95,22,36,48,23,71,208,115,25,249,82,150,147,200,230,4,182,32,184,110,67,162,10,53,94,53,185,134,98,183,187,137,151,212,147,181,20,104,177,12,207,99,8,83,181,117,24,120,132,139,17,176,44,251,190,14,139,32,144,65,114,160,171,4,81,254,126,96,83,29,14,250,243,44,2
 07,241,11,24,113,43,202,211,252,80,181,176,142,222,119,31,251,129,237,63,236,42,241,137,43,45,84,188,186,207,33,246,173,244,183,107,200,127,151,132,166,63,45,162,111,11,189,246,192,158,63,44,147,1,204,229,250,152,162,23,209,75,83,96,93,227,109,167,154,242,236,154,102,176,197,30,187,59,122,237,233,145,39,104,130,90,19,26,151,213,173,112,132,16,112,112,115,32,26,3,73,123,51,93,157,218,181,232,96,219,163,87,11,87,76,185,153,233,97,23,209,215,154,134,229,147,254,197,163,78,167,147,67,73,218,139,192,129,90,153,156,177,162,12,122,131,42,243,99,48,17,214,243,18,150,158,127,91,115,24,83,126,244,221,234,199,25,60,189,133,25,154,10,32,238,12,111,102,70,73,119,241,250,165,12,181,104,3,138,174,131,218,40,81,103,36,18,137,74,126,245,250,93,184,154,114,129,110,3,9,250,19,115,101,116,227,184,211,233,133,25,40,239,174,174,97,77,143,194,47,112,233,119,246,60,20,239,62,181,208,187,64,196,252,109,49,5,151,110,202,7,200,24,155,63,13,11,48,10,159,174,106,156,253,60,138,213,189,103,211,80,85,190,
 34,191,191,64,88,83,163,189,251,251,212,235,56,6,26,231,251,105,181,213,137,138,232,37,125,234,48,133,230,216,201,237,234,11,116,212,139,250,122,168,69,255,241,254,144,88,135,225,207,199,137,149,138,54,46,158,114,20,220,100,87,132,18,208,179,8,202,38,171,253,127,228,132,217,97,119,87,55,233,223,38,92,232,114,185,89,96,129,125,63,66,88,88,149,200,123,237,102,217,210,239,242,68,226,63,83,173,99,76,131,109,22,38,123,255,42,8,10,98,77,181,35,90,87,89,253,10,202,48,88,158,71,235,120,242,164,239,186,96,115,38,137,210,132,175,163,87,99,177,210,134,146,87,253,205,243,235,103,179,89,114,103,204,113,7,211,200,58,32,220,229,180,168,251,168,78,222,6,152,193,144,55,86,130,57,158,20,177,179,44,23,228,169,255,156,94,216,117,232,184,249,194,159,115,190,236,156,228,82,74,50,132,120,250,123,50,35,62,122,150,87,239,54,173,54,7,169,171,40,164,156,87,253,145,136,102,35,213,240,205,212,237,186,97,79,143,199,120,234,148,207,167,152,137,149,49,94,88,209,72,160,29,17,30,90,53,204,101,222,43,93,242,2
 44,151,101,114,141,212,172,233,29,82,130,224,77,101,65,234,236,210,48,108,245,92,99,189,224,148,241,60,207,245,233,250,31,150,103,230,234,221,93,232,131,159,116,92,160,120,108,0,100,251,134,107,145,113,81,156,71,221,121,81,206,139,221,79,220,64,87,38,43,109,70,163,200,212,200,74,161,164,123,237,10,234,232,49,35,99,240,236,45,68,173,255,133,8,26,236,126,48,94,4,198,87,96,143,245,191,210,36,157,59,167,229,127,23,145,97,70,243,114,61,38,69,72,50,189,96,111,63,184,118,211,166,159,250,36,108,239,0,107,108,222,139,168,27,206,210,242,163,96,112,19,236,53,75,83,252,223,148,209,114,70,85,233,213,172,117,203,182,7,67,243,15,63,212,31,143,247,151,204,68,164,230,123,233,174,127,49,229,98,80,44,136,13,160,165,167,163,105,87,108,80,231,6,211,198,249,50,21,52,49,0,120,234,151,116,158,180,126,216,170,55,25,162,134,166,191,77,99,234,9,248,101,133,207,11,59,253,83,138,89,228,148,179,55,212,18,45,127,194,225,81,2,190,116,228,120,105,95,244,233,20,113,254,251,96,128,161,46,246,143,228,216,143,3
 8,253,160,59,81,140,183,45,140,199,1,245,198,100,95,114,23,69,115,55,14,73,157,73,60,115,181,137,160,116,236,89,173,150,135,117,200,199,59,150,89,66,73,153,210,66,151,135,213,171,249,158,76,96,162,212,251,105,231,43,249,76,170,35,128,31,234,213,132,170,47,76,92,243,166,129,48,161,81,119,239,14,170,135,33,107,179,4,10,198,80,110,92,101,253,78,152,89,60,126,49,191,209,5,186,66,33,132,58,213,237,97,73,133,231,182,152,115,19,135,249,34,93,105,244,114,121,204,236,98,22,203,204,139,205,242,229,183,193,62,115,181,208,241,98,102,30,3,91,36,212,87,59,112,167,236,136,2,220,202,86,244,48,104,7,28,175,74,213,240,166,100,189,39,112,236,20,144,19,22,113,156,63,108,223,120,96,42,139,91,209,41,224,240,190,152,133,244,29,118,61,28,15,139,156,118,250,31,89,145,76,30,142,132,47,84,152,191,193,98,224,215,37,222,255,19,117,217,224,167,236,38,168,157,236,124,74,165,220,71,26,101,81,254,99,209,128,254,108,250,110,170,238,132,55,230,29,42,18,155,129,43,6,42,44,96,7,77,144,23,94,132,120,68,118,227,1
 80,43,114,255,155,64,42,95,251,198,69,132,248,29,47,37,202,128,136,4,197,249,116,163,129,221,77,61,125,110,62,63,246,44,189,102,34,164,248,109,172,84,254,92,173,3,101,182,213,193,164,224,41,27,254,6,247,253,28,3,185,9,70,41,221,241,6,86,183,154,222,59,143,139,105,158,59,60,73,45,181,184,63,147,126,218,133,145,142,37,200,166,249,36,69,198,167,105,124,131,93,110,71,158,60,148,164,22,55,113,243,1,188,93,195,151,188,131,132,66,248,146,178,165,74,78,48,246,241,218,12,125,83,142,156,210,10,104,10,15,116,180,196,251,38,109,179,248,88,34,158,200,208,122,61,165,141,33,251,84,7,89,142,40,43,45,249,208,223,99,198,151,10,88,147,30,248,61,229,63,10,138,238,185,147,254,215,107,78,247,93,21,16,179,50,57,168,16,233,66,40,227,132,115,116,15,133,76,209,16,35,178,116,244,0,117,203,88,27,113,122,50,166,239,249,137,239,194,6,77,185,213,209,9,73,248,103,70,92,104,192,53,251,219,139,159,92,247,7,167,103,169,231,59,52,77,8,252,216,144,55,220,164,114,212,107,225,232,218,98,7,40,207,165,108,52,171,16
 0,117,165,95,220,24,80,22,238,117,112,179,80,130,226,197,35,51,60,107,176,47,165,155,120,77,233,83,233,47,30,4,232,152,45,174,18,50,233,239,8,242,138,217,184,227,33,254,116,99,237,170,61,93,2,156,243,244,54,177,134,231,1,90,113,25,189,44,100,91,128,33,130,188,115,4,167,207,195,118,153,109,3,104,124,78,212,86,80,148,110,69,14,58,61,123,37,181,146,68,132,177,246,208,208,129,244,178,125,246,151,186,189,254,85,166,171,76,109,210,167,136,172,52,242,180,116,60,4,131,16,31,99,136,144,56,170,153,59,138,170,130,33,169,0,183,36,36,5,254,16,112,216,201,54,67,126,52,104,229,103,222,8,105,233,198,237,234,28,2,57,109,165,145,62,47,241,192,140,218,72,124,228,215,207,200,175,198,97,6,195,180,37,94,82,147,130,150,157,200,164,249,186,224,185,115,66,199,107,141,138,151,19,84,83,254,97,125,92,131,245,63,101,47,230,224,53,96,151,137,61,154,164,155,213,129,51,157,181,24,125,98,206,71,43,74,76,157,165,11,24,230,44,223,135,63,215,166,189,239,63,72,103,23,109,3,31,56,133,194,43,39,6,202,204,34,198,1
 19,93,145,48,186,55,253,203,48,205,190,15,37,29,31,47,165,132,196,45,191,232,224,99,244,120,69,64,244,96,230,87,16,190,250,35,28,193,43,30,142,93,89,195,151,94,232,30,178,209,64,109,4,155,45,76,134,47,105,89,67,133,93,108,49,175,126,181,57,129,0,106,131,66,237,176,102,70,120,192,237,245,109,229,216,239,61,150,251,218,136,254,131,130,223,102,227,60,147,223,106,131,127,40,226,23,174,233,55,226,25,202,114,215,35,192,247,14,40,117,6,186,179,92,48,196,236,91,174,131,204,60,162,212,119,210,43,68,215,183,208,178,237,195,206,24,101,157,133,55,178,163,213,132,177,160,154,121,177,71,83,192,146,164,241,30,175,245,224,41,169,135,17,25,1,177,139,79,184,156,167,20,39,98,207,254,59,245,176,241,30,189,41,224,102,156,14,153,71,52,175,100,171,2,152,88,40,59,42,119,112,139,252,35,163,106,5,178,217,242,181,77,78,92,245,237,205,104,229,36,124,112,13,13,175,139,207,15,200,209,229,36,221,130,172,152,21,245,200,210,230,55,177,201,246,28,126,173,221,9,143,78,82,250,31,210,63,20,18,204,199,205,21,38,
 172,49,226,110,26,10,118,193,210,68,94,41,115,136,141,20,241,37,228,45,199,151,137,23,70,168,99,197,85,103,177,237,103,199,202,225,142,197,253,172,19,146,99,6,204,52,44,21,101,60,30,242,131,244,123,172,9,67,78,214,65,149,240,103,201,87,178,101,98,46,167,104,13,136,110,143,22,84,179,125,62,112,177,138,176,186,211,198,217,116,233,4,147,37,198,158,214,224,65,176,160,176,235,221,9,74,235,126,229,118,47,183,77,171,71,146,6,111,203,51,91,157,219,169,84,22,45,98,156,70,106,105,210,238,22,58,167,200,109,194,201,11,178,58,57,204,97,41,74,70,216,111,26,242,1,18,9,32,62,65,63,33,202,218,51,160,65,103,211,185,110,48,214,57,43,239,181,157,177,186,167,40,19,90,87,114,210,76,212,147,172,183,8,143,184,56,98,200,42,121,152,139,136,114,185,160,111,132,154,88,229,187,191,90,113,239,91,149,27,93,127,127,183,133,148,71,184,99,126,23,165,234,113,2,200,136,69,41,141,214,185,247,172,240,253,234,33,34,118,241,189,48,140,194,198,169,28,248,51,157,44,92,61,178,48,142,38,156,116,41,89,215,59,250,47,25,
 17,23,177,154,4,22,88,72,29,124,137,124,59,60,7,77,119,24,183,223,6,218,229,51,238,149,177,52,69,146,150,242,197,199,251,1,75,208,247,181,138,27,113,218,180,205,100,237,73,91,26,138,135,87,195,32,84,128,51,243,187,23,96,142,5,158,65,93,56,50,233,177,167,56,41,30,60,37,52,181,28,63,144,247,104,122,114,50,89,34,220,128,22,252,213,155,246,132,92,224,73,179,164,14,69,244,187,63,133,9,218,42,254,208,215,16,79,81,250,55,146,165,207,187,235,121,35,154,210,25,51,37,2,18,23,82,110,253,137,119,100,4,86,192,30,213,84,158,21,178,204,241,130,24,176,158,67,110,120,78,61,224,14,64,199,67,202,18,188,128,175,155,198,248,184,180,174,154,16,99,84,98,57,28,205,210,180,197,212,227,64,159,45,84,149,162,249,201,194,187,12,14,202,102,112,232,104,58,215,250,35,190,148,88,51,245,63,23,6,229,92,183,196,179,203,46,228,136,47,239,119,243,110,221,100,15,142,223,26,83,229,22,18,134,93,175,201,85,230,106,12,38,192,199,214,192,118,1,173,164,59,119,32,186,14,100,47,64,215,102,141,182,132,89,162,76,237,191,18
 7,235,57,87,93,2,68,254,160,1,55,83,114,22,159,107,255,7,128,166,228,26,102,128,29,164,184,25,10,54,194,159,77,11,122,12,51,166,201,14,55,215,83,136,66,49,47,191,97,174,17,125,106,49,160,250,193,167,153,236,67,221,21,146,73,206,105,214,128,243,178,253,199,93,120,99,28,19,184,37,216,83,249,13,57,149,163,55,245,223,114,28,42,88,73,144,115,25,154,163,180,3,213,241,222,170,123,136,4,222,130,6,214,138,39,38,92,49,48,174,152,88,149,181,125,187,18,84,170,140,223,200,207,241,4,112,184,253,231,52,186,188,41,80,72,39,80,124,211,111,177,131,18,75,181,17,29,104,20,147,203,182,234,124,189,218,18,191,33,220,14,227,141,192,7,59,205,103,229,194,17,158,233,101,64,30,81,0,120,14,11,145,38,45,181,128,115,25,7,251,83,135,117,69,26,240,164,201,136,152,52,71,199,177,235,183,229,51,29,141,235,61,24,19,53,56,73,32,5,67,21,178,67,182,5,51,218,230,130,122,36,73,123,197,118,228,74,63,75,224,95,145,245,148,255,80,109,56,165,209,179,236,36,187,36,114,159,105,41,202,5,99,11,47,120,104,163,26,62,100,244,1
 54,23,110,36,221,21,114,133,122,142,129,99,138,26,209,1,205,117,223,22,110,54,46,251,236,30,196,117,3,122,199,237,84,24,43,80,228,125,33,150,55,180,40,120,75,113,88,114,216,218,4,127,71,64,12,102,242,211,133,169,67,154,247,192,79,157,207,192,57,10,165,217,238,173,49,134,212,127,116,216,104,40,220,24,10,104,130,105,249,142,51,11,59,205,124,96,68,93,225,87,25,139,169,234,246,113,155,110,217,212,177,3,214,235,92,78,50,56,172,244,72,53,60,161,188,124,155,38,143,90,117,202,166,105,253,239,11,243,220,40,112,226,3,59,3,64,58,192,231,255,206,30,9,216,213,201,200,195,230,205,205,30,59,60,176,54,128,173,231,125,91,188,194,136,4,161,82,1,176,28,72,79,39,211,198,206,115,21,178,242,52,40,21,70,150,209,218,166,57,20,17,146,65,84,188,97,226,94,9,128,60,254,234,45,29,214,159,243,51,239,253,83,73,144,245,229,94,98,65,29,49,233,41,159,146,31,130,75,244,135,74,58,221,231,182,90,106,223,254,2,166,93,83,13,112,147,203,144,224,114,37,155,5,186,170,91,196,75,21,186,131,208,221,206,64,187,108,71,82
 ,162,47,16,236,65,85,143,192,68,188,28,95,105,146,5,138,60,139,218,23,111,140,168,165,139,78,128,125,5,87,23,30,76,171,210,152,28,151,223,162,144,124,231,111,174,26,154,130,254,248,163,226,48,37,217,30,239,117,106,147,253,175,226,47,146,50,120,105,30,24,161,159,211,7,131,81,145,186,48,157,68,107,77,87,107,92,128,229,64,70,236,184,190,48,114,66,173,245,147,162,109,166,54,195,161,191,34,182,254,193,4,45,38,128,0,111,41,184,156,92,25,67,216,150,69,85,22,99,81,15,15,177,85,179,10,148,129,248,248,223,190,49,73,235,222,35,105,33,42,184,150,169,180,60,79,239,161,129,155,239,9,108,95,57,227,74,206,131,29,80,57,198,69,150,148,206,234,97,247,22,71,79,49,186,103,220,254,244,63,235,6,174,156,152,58,6,181,167,91,176,138,26,116,35,119,35,202,229,239,209,23,102,202,88,179,131,75,246,13,56,252,82,184,68,15,47,27,210,171,250,177,187,139,253,15,112,247,94,9,202,2,7,43,109,222,70,139,15,119,221,216,92,60,220,182,63,74,106,131,155,103,47,121,237,137,134,81,31,217,149,177,38,140,142,100,61,192,8
 8,136,107,61,7,0,243,158,96,195,39,152,2,224,183,12,154,134,155,201,110,175,17,153,130,166,17,158,68,213,231,141,255,196,171,165,127,240,183,14,157,24,119,217,249,114,162,113,145,27,127,138,181,35,219,182,76,115,29,57,90,210,157,149,137,6,221,181,155,27,231,243,56,33,34,7,190,22,236,115,232,213,133,54,42,204,102,209,224,208,26,147,250,85,107,199,9,80,138,51,33,69,71,3,30,183,96,160,48,191,163,155,178,225,31,106,13,91,156,243,195,75,227,64,204,92,144,5,57,130,8,166,12,166,214,166,64,171,181,87,99,77,49,11,124,88,54,108,229,50,223,233,103,221,101,73,194,245,188,8,196,128,79,78,15,103,149,14,40,130,215,128,205,59,88,83,124,244,218,171,97,24,92,60,196,26,208,59,92,170,240,120,175,65,23,111,48,101,36,189,200,86,190,208,96,144,56,23,165,109,4,219,248,67,91,169,234,245,84,213,47,191,43,164,90,153,93,120,50,188,101,190,190,62,119,41,125,222,5,52,144,90,224,243,192,3,42,199,226,136,82,74,134,98,51,167,56,158,29,133,147,178,248,40,35,9,204,146,41,42,182,12,176,51,239,144,158,19,208,13
 2,77,8,164,53,136,192,156,232,165,250,1,240,78,103,154,230,178,73,37,112,229,141,27,23,204,115,66,72,88,214,193,118,204,198,102,251,66,132,108,175,250,44,254,139,31,185,241,115,29,155,86,154,116,58,69,80,164,42,12,232,44,38,220,53,251,14,88,99,153,55,47,49,206,39,15,82,64,105,106,70,237,176,219,20,206,136,5,66,244,240,233,237,81,239,17,5,41,193,250,234,230,208,164,78,245,254,92,247,118,31,211,108,253,254,185,224,131,255,184,40,130,16,192,240,180,185,58,190,25,42,233,172,202,167,137,165,40,191,204,39,192,143,33,195,23,85,93,21,14,212,167,178,82,186,140,53,251,200,224,80,119,99,194,247,144,183,104,251,156,162,136,167,216,17,174,203,161,220,204,152,165,15,137,253,53,162,190,222,55,185,52,60,121,172,191,104,139,223,133,195,151,150,158,127,169,85,47,194,103,89,95,105,168,109,195,204,8,63,88,163,120,138,176,201,204,226,72,131,133,249,211,64,73,249,37,192,56,139,168,21,29,138,189,25,212,104,241,105,25,215,4,137,5,243,164,60,220,27,233,41,166,182,234,55,79,175,49,53,160,61,9,183,171
 ,147,99,236,78,18,42,158,77,116,100,186,5,183,55,59,181,60,213,9,199,238,68,78,103,128,53,119,61,176,249,186,176,119,105,137,37,70,76,223,37,34,205,149,163,112,113,230,71,3,66,214,185,107,245,84,63,100,242,44,63,20,71,93,177,156,244,16,137,253,17,28,206,44,240,122,35,130,216,157,249,75,254,198,93,150,148,26,107,142,255,51,55,200,103,101,127,116,93,226,198,143,239,241,115,238,66,97,217,229,22,210,106,102,54,45,148,146,205,102,254,218,59,117,203,187,67,235,78,155,94,67,253,236,16,214,29,96,149,74,160,148,160,99,151,51,47,141,85,203,197,17,61,203,176,148,6,182,164,173,146,228,141,121,61,128,151,21,152,146,25,77,250,54,44,12,87,138,168,211,252,200,201,130,31,206,191,214,173,79,180,4,232,169,202,107,221,83,195,87,90,235,88,158,205,35,46,177,223,118,239,126,97,204,124,238,101,105,253,115,117,103,200,46,213,253,255,11,254,39,189,56,6,224,126,90,47,137,78,105,186,127,85,26,100,255,82,4,72,81,175,7,225,189,72,179,36,101,105,205,146,57,210,115,82,130,118,235,169,252,50,229,62,162,156,
 136,156,227,142,147,46,106,78,10,212,83,105,224,31,240,144,224,8,112,13,122,65,87,164,184,224,89,222,237,133,168,170,10,236,220,178,14,120,196,94,13,226,67,93,196,107,86,230,178,232,75,198,74,42,210,2,167,138,185,18,53,16,129,70,4,253,69,9,143,148,165,214,76,67,186,134,52,63,115,129,154,69,81,128,130,237,15,4,234,113,54,135,188,94,43,178,38,188,1,36,114,160,86,214,7,101,134,87,161,20,138,123,57,62,69,80,236,206,114,101,237,71,71,230,148,16,160,148,67,96,9,145,249,168,128,114,180,149,10,15,153,140,225,211,63,96,196,220,88,10,128,63,78,130,40,252,186,221,52,72,206,43,212,71,50,1,88,227,255,217,175,149,77,63,54,8,239,13,51,169,159,142,231,216,162,152,120,18,16,196,255,35,42,3,113,250,7,70,32,146,21,112,111,188,243,93,226,43,255,105,166,125,222,162,122,128,160,139,153,105,201,155,75,45,128,78,193,10,61,227,200,228,228,203,4,170,129,85,91,134,199,95,116,64,74,244,241,168,91,104,159,18,81,123,48,182,55,108,0,81,58,71,55,183,134,80,199,0,91,214,150,161,102,107,213,78,188,113,206,11
 2,96,2,61,225,138,202,39,10,93,106,183,11,8,80,16,251,36,52,246,146,12,54,60,4,27,117,19,243,35,37,164,35,52,41,102,153,27,49,162,82,151,179,89,117,202,16,26,8,77,134,58,245,80,206,189,225,251,24,54,229,117,146,249,20,96,3,44,149,65,25,50,31,159,25,225,152,16,74,48,239,88,55,52,244,118,140,163,184,193,130,242,249,11,146,176,5,37,31,255,40,53,197,22,207,63,144,56,64,57,209,204,0,170,53,152,61,246,38,122,97,242,60,243,158,27,125,142,55,89,250,167,56,73,91,199,176,193,234,139,60,222,92,120,221,182,91,177,185,128,43,179,25,153,162,27,66,86,204,71,78,40,72,110,127,222,1,172,162,97,3,180,31,63,250,98,246,101,160,154,43,106,143,206,161,125,130,37,254,130,222,11,163,50,95,107,162,132,117,19,86,68,224,70,84,48,124,187,245,217,155,92,248,38,202,170,175,41,135,209,240,25,84,107,103,3,126,122,54,4,144,2,136,152,80,39,139,84,42,96,223,253,76,179,56,116,116,150,79,14,190,96,196,230,13,255,156,105,211,114,233,21,158,239,40,103,123,59,98,136,183,147,255,117,132,11,121,251,183,7,112,224,137,
 147,212,8,39,247,230,227,140,61,67,190,8,89,238,9,89,150,137,37,32,18,210,4,60,186,155,82,25,12,24,245,55,26,1,210,91,59,207,171,23,175,82,211,120,3,133,168,5,219,91,146,41,63,47,63,89,165,117,71,130,30,188,89,176,141,108,245,93,45,75,223,49,221,134,69,254,19,63,29,20,143,135,171,114,32,47,41,244,177,243,226,231,92,148,128,80,158,21,141,171,67,92,162,138,150,49,2,134,231,187,232,253,70,55,16,200,176,169,117,11,127,190,86,173,2,159,251,206,94,6,223,250,157,37,183,205,120,141,173,3,95,246,165,250,49,165,33,115,252,228,28,161,35,193,220,25,1,95,233,225,133,127,129,92,98,130,129,35,145,21,159,46,108,215,240,135,201,29,44,183,42,66,23,69,134,212,134,67,109,81,198,63,79,208,166,5,70,130,208,173,91,196,109,127,92,4,102,240,190,142,159,115,55,231,151,150,75,160,88,152,54,222,69,164,111,175,190,26,23,174,44,129,246,100,149,240,140,242,157,177,83,0,195,181,80,101,160,167,54,53,31,198,151,230,176,157,241,18,229,11,255,95,20,42,226,109,3,149,67,210,162,132,21,135,149,177,202,223,147,136
 ,178,70,254,167,79,62,182,46,221,67,133,91,20,15,168,222,238,143,183,157,187,150,140,144,137,19,32,58,209,206,107,137,164,166,195,135,133,95,189,206,232,197,195,9,190,199,199,232,61,64,166,19,255,93,32,160,245,142,255,54,198,141,181,112,144,111,140,41,237,187,119,198,1,3,128,128,140,40,32,38,105,55,163,213,78,24,42,118,176,115,246,119,33,8,148,98,179,181,116,120,217,176,31,206,36,226,171,21,108,157,233,219,44,86,22,202,118,18,69,121,250,85,186,100,198,15,66,194,252,220,203,207,132,67,136,83,0,152,126,21,245,75,133,231,194,113,3,165,9,148,154,137,76,28,165,168,73,225,249,69,46,254,188,116,233,40,143,69,160,233,152,144,239,17,172,22,57,54,124,128,221,244,98,41,195,31,87,241,174,206,170,187,120,166,133,201,43,237,192,151,70,91,27,50,45,202,234,113,86,160,161,204,250,196,162,61,39,188,206,78,204,70,206,255,188,30,65,155,25,50,237,153,159,194,15,14,117,28,107,211,5,12,63,170,37,195,121,144,114,123,208,110,60,183,239,252,216,162,93,196,163,223,55,120,59,111,125,210,161,24,24,103,2
 45,132,75,227,147,76,46,159,3,249,77,163,215,121,34,229,233,22,15,93,255,20,115,108,152,108,121,218,61,130,198,33,97,124,235,150,133,174,134,249,145,230,231,135,83,23,117,209,139,103,4,109,37,67,46,56,157,49,108,77,146,83,217,148,213,154,213,105,103,186,63,104,45,102,217,80,97,151,237,168,166,254,233,120,143,137,171,250,49,234,111,103,134,15,141,120,221,251,13,141,82,52,33,229,36,120,210,53,246,16,249,100,165,159,66,169,171,77,148,78,162,49,66,176,156,92,162,80,159,5,100,186,139,0,59,168,132,66,198,191,49,39,236,161,243,128,65,178,161,131,247,61,99,123,225,93,77,23,130,163,188,56,242,23,35,79,237,177,101,196,176,131,198,91,17,196,95,88,223,152,134,252,171,66,33,202,204,113,123,19,207,184,9,114,68,169,29,222,145,83,93,31,0,87,98,39,241,168,227,243,242,170,254,48,17,19,7,141,175,20,171,245,93,57,137,56,56,1,179,232,172,249,231,237,207,250,95,66,181,119,39,61,10,69,207,180,187,202,162,26,142,252,226,31,86,157,101,158,196,2,102,159,61,165,107,214,187,143,142,244,107,252,233,131,
 142,55,51,12,67,124,164,242,68,165,130,156,81,49,161,211,181,0,125,17,196,15,31,216,27,140,150,10,198,83,232,146,185,116,157,253,251,156,149,44,64,51,199,161,114,39,91,111,44,68,219,128,240,49,47,255,103,22,206,120,238,252,249,12,145,223,154,32,71,119,144,111,22,8,144,104,34,125,62,107,33,100,156,220,180,166,80,69,89,198,91,21,143,83,4,233,179,24,48,107,80,243,83,162,103,193,23,11,242,103,81,250,220,96,80,201,179,34,99,36,118,188,76,34,50,234,163,0,194,86,135,113,67,18,48,254,110,176,34,42,137,89,136,227,12,200,43,76,33,84,220,13,226,165,70,106,223,71,210,21,154,165,100,199,178,44,196,35,49,48,169,149,105,65,113,43,49,6,213,39,204,93,53,66,111,242,56,108,160,146,83,117,27,185,75,19,94,147,118,114,83,45,20,78,203,147,152,83,214,202,164,111,35,58,174,150,164,106,16,117,34,161,71,145,171,94,64,46,96,224,65,8,13,79,199,24,88,242,102,28,98,48,227,22,60,19,19,113,69,238,3,202,223,146,233,8,11,9,175,1,113,208,105,83,23,221,129,58,14,184,67,236,89,34,167,189,86,0,131,53,216,5,50,39,
 235,119,140,90,158,250,205,122,5,184,168,47,202,127,145,239,237,162,173,208,205,115,126,200,16,185,130,35,249,110,64,121,85,182,107,142,125,161,130,198,157,244,176,53,246,100,113,63,125,227,61,100,11,245,140,130,150,142,155,38,205,6,166,1,179,84,84,216,14,49,67,73,110,132,55,210,81,155,143,128,132,49,193,203,166,196,229,69,127,246,145,203,220,206,97,45,85,167,178,198,65,186,3,174,176,57,153,144,34,116,238,134,15,64,195,173,113,254,43,244,72,206,21,151,109,175,60,65,247,121,211,85,129,39,238,1,190,187,54,207,227,208,31,252,201,0,199,138,153,60,133,119,22,211,81,214,21,229,253,79,5,224,28,222,54,79,1,213,59,25,238,36,143,22,125,102,249,246,134,227,41,171,186,72,180,116,215,37,42,92,230,187,140,19,105,181,141,115,126,202,30,27,237,45,44,46,10,140,23,27,83,65,240,109,213,115,112,159,231,118,228,93,91,117,30,159,231,147,198,149,221,68,99,201,94,67,141,191,67,67,131,83,124,103,43,224,145,71,234,235,248,251,233,49,15,221,140,168,235,42,155,25,18,134,62,92,108,187,162,150,188,172,24
 ,54,53,89,114,67,44,36,161,68,18,32,245,117,76,175,60,46,228,158,66,28,229,41,165,144,54,173,20,202,44,73,19,135,2,147,2,237,186,185,184,145,54,145,171,90,228,102,84,199,79,96,203,164,212,71,226,217,243,165,79,3,227,48,56,195,211,19,73,55,204,182,135,208,150,203,216,237,186,156,46,14,69,114,100,145,80,60,124,4,238,108,5,80,197,249,15,224,135,179,69,129,118,78,101,92,139,255,207,229,195,181,209,36,211,252,233,184,35,175,235,79,61,162,189,188,14,233,170,149,7,171,140,55,85,109,133,218,140,241,114,252,43,97,28,110,215,170,125,51,216,9,10,134,180,13,57,85,78,130,58,128,207,243,80,178,140,163,171,243,21,35,139,157,89,218,218,245,31,105,208,98,162,74,247,249,190,76,102,160,26,191,151,135,199,79,236,169,167,23,125,203,63,77,124,37,151,148,7,25,171,157,245,178,91,35,13,169,65,196,101,67,79,98,227,227,6,7,163,217,61,114,30,26,68,143,177,83,84,209,122,82,158,209,153,131,168,97,178,166,119,145,18,136,156,143,150,244,225,236,50,185,189,103,45,35,233,89,188,90,183,41,121,159,168,205,67,2
 20,89,28,203,147,125,142,182,132,152,55,137,126,142,193,220,0,105,232,115,3,98,121,139,182,167,131,253,205,200,191,49,152,240,78,87,194,178,180,126,77,251,90,210,231,92,106,229,68,61,136,164,67,149,70,73,185,242,114,252,48,108,149,43,143,255,88,207,247,174,236,114,229,96,201,113,165,105,67,179,23,246,169,182,228,54,21,200,62,81,123,253,98,146,191,72,147,151,251,214,52,215,119,19,53,122,153,62,47,118,43,96,179,247,41,148,0,128,127,238,79,87,56,204,86,131,11,36,103,85,249,36,225,60,83,19,232,120,50,165,118,156,82,44,239,65,213,35,11,143,240,172,232,200,241,56,231,131,63,103,30,37,225,166,151,189,45,159,122,86,221,204,215,88,3,226,210,34,244,37,212,236,227,191,241,166,73,72,232,49,143,45,176,167,152,121,188,249,168,83,144,83,50,236,62,75,233,154,130,161,37,41,129,111,33,180,54,60,46,2,19,5,97,50,33,236,210,153,7,181,220,36,31,173,170,50,34,191,145,165,178,10,79,175,173,104,6,40,97,240,148,201,19,5,31,104,101,204,218,222,134,255,119,128,165,235,156,58,204,115,255,55,187,199,7,19
 1,148,181,40,51,94,210,217,52,203,254,227,70,57,196,190,30,132,14,223,53,77,237,28,88,35,108,10,79,199,158,218,90,139,216,168,59,208,128,107,158,17,222,199,20,70,78,15,50,97,220,109,39,14,214,100,22,52,103,95,207,168,162,199,220,51,92,28,245,183,79,181,10,253,24,82,143,197,206,136,52,42,15,23,207,12,249,24,31,52,123,97,47,41,218,77,129,124,149,206,24,153,83,236,65,204,169,73,191,202,87,31,61,30,114,220,20,40,105,219,27,87,211,61,35,213,29,3,208,175,24,248,221,94,62,35,43,177,199,119,69,28,61,33,75,104,137,105,116,239,31,96,222,21,225,39,45,82,215,131,113,74,144,114,255,64,234,204,7,206,168,49,165,254,59,98,75,197,156,88,38,249,160,233,116,240,207,90,169,156,11,218,108,16,0,11,58,23,253,51,193,82,122,174,36,100,138,18,54,133,23,53,222,17,172,162,80,251,96,83,100,103,151,4,35,252,96,163,17,253,78,119,47,53,218,68,44,46,72,69,211,212,174,67,246,25,93,94,49,119,85,183,193,39,95,123,168,154,39,85,214,170,137,199,38,68,51,43,33,184,4,162,32,70,186,118,217,47,248,170,183,72,243,12,
 169,80,249,87,201,163,126,150,157,133,237,94,156,39,197,161,98,100,22,78,59,14,180,187,142,94,115,209,34,42,135,231,161,208,23,86,162,137,102,16,15,93,253,92,189,142,225,112,54,236,220,91,107,143,81,2,199,136,78,168,11,109,119,140,130,42,224,42,150,178,90,249,37,79,231,111,153,159,102,19,134,64,39,122,54,108,99,51,16,146,105,142,57,242,120,174,159,149,125,160,63,77,253,147,161,175,70,16,176,1,14,18,61,67,236,167,43,35,30,57,9,183,167,171,130,83,59,237,48,115,33,142,163,95,148,176,208,176,80,147,61,154,111,50,3,120,215,99,34,39,130,221,200,150,59,110,127,15,45,222,52,164,42,69,245,27,222,29,146,190,165,108,255,114,50,105,117,250,102,213,247,34,100,14,73,157,37,182,18,10,224,28,140,208,39,243,206,236,105,59,89,23,32,163,66,205,6,146,96,207,10,102,177,129,103,251,166,102,147,193,136,102,225,255,170,70,181,32,198,160,154,40,106,7,27,190,221,167,53,85,199,5,148,117,199,92,200,248,84,157,174,31,75,217,46,131,219,154,131,158,38,79,64,149,221,167,10,44,230,23,65,207,185,164,205,131,
 9,113,140,76,20,168,167,2,181,229,190,24,198,221,41,225,106,15,31,235,187,59,75,114,12,5,250,90,130,43,53,225,117,194,228,93,166,147,8,28,37,169,186,195,240,74,57,199,47,207,124,254,158,142,228,32,84,155,71,98,133,33,86,245,178,249,98,48,65,195,207,50,189,248,109,162,81,184,112,144,233,181,11,12,13,175,94,229,27,149,36,50,42,23,177,72,134,3,6,137,108,151,38,126,164,207,78,61,51,23,117,187,117,208,4,43,216,181,229,214,114,144,179,197,169,122,74,162,118,185,183,229,138,84,82,141,4,124,69,229,111,71,35,80,13,209,200,56,200,21,3,195,65,154,132,16,164,43,155,72,214,95,153,122,217,75,176,251,227,223,196,225,99,197,193,191,61,140,198,219,188,251,53,212,95,92,56,113,50,74,50,148,240,240,114,133,224,133,144,44,203,212,150,142,184,246,133,139,135,240,105,51,147,225,121,204,216,212,121,110,49,61,133,29,77,144,127,23,89,69,70,231,217,3,104,149,29,93,152,131,18,220,155,13,229,199,248,0,130,119,164,8,125,128,226,106,182,124,106,104,216,232,220,240,103,107,147,84,183,54,33,178,97,4,74,175,
 0,252,109,63,77,88,113,190,219,162,165,176,238,5,195,163,53,225,244,237,190,1,29,161,72,173,152,183,103,0,230,65,221,24,244,131,246,233,25,165,123,155,68,197,162,54,69,148,130,222,249,52,62,220,175,17,227,138,250,123,210,49,110,56,75,118,30,213,69,113,1,189,137,28,149,92,146,73,171,169,9,165,102,242,172,14,49,36,190,178,244,152,186,235,45,229,62,141,187,46,191,87,158,139,92,101,17,231,36,227,230,7,169,196,168,127,64,61,229,62,134,255,189,202,236,103,5,156,247,94,17,201,81,114,126,78,245,122,10,210,223,185,200,4,126,105,180,216,212,124,215,248,76,76,121,54,113,164,140,255,145,98,211,227,184,61,45,229,157,42,245,165,97,141,225,176,88,118,231,186,50,138,139,251,36,100,215,144,30,192,60,102,61,115,189,103,196,182,217,95,152,13,173,65,127,140,90,71,39,8,255,252,26,235,51,15,237,159,160,213,208,191,49,221,114,21,173,94,16,145,234,207,153,90,59,57,151,72,190,52,143,35,10,131,26,253,13,73,13,187,121,104,211,97,55,17,96,164,191,220,160,148,76,52,182,79,99,187,178,25,110,253,167,68,0,
 189,236,55,178,84,229,249,214,92,172,153,13,159,244,112,172,26,62,238,44,64,187,75,218,35,107,83,151,14,125,111,228,200,9,39,126,88,243,145,202,216,236,129,25,89,19,85,165,188,40,131,2,221,32,28,229,179,34,99,139,185,22,38,110,205,224,203,234,53,58,243,186,168,137,50,101,142,197,72,136,181,52,122,189,238,227,75,55,157,10,180,21,117,97,228,61,181,235,174,148,189,159,212,171,41,153,97,60,11,64,227,108,70,201,128,37,173,200,224,205,130,233,179,132,214,116,208,68,64,144,165,89,135,206,82,7,130,145,26,132,226,15,85,30,187,105,192,12,110,200,161,148,247,220,151,100,88,22,247,216,30,61,121,27,160,114,107,119,190,178,143,93,207,246,148,127,21,91,47,125,232,187,33,210,99,143,20,132,173,122,35,176,140,168,227,112,141,179,234,212,108,29,84,209,254,237,255,77,227,93,113,99,112,236,180,3,155,24,27,171,65,172,75,122,170,224,248,35,53,109,240,200,144,207,252,151,134,60,41,206,201,197,223,193,130,219,146,15,80,220,117,96,71,168,198,78,238,34,58,53,164,250,61,219,10,191,164,1,205,255,156,115
 ,86,170,236,238,99,99,71,195,97,135,113,170,168,18,121,47,154,78,173,145,23,13,220,82,202,82,108,59,58,83,29,238,235,161,253,16,107,143,58,21,84,28,10,191,198,73,13,246,36,52,2,53,33,139,186,0,39,155,189,34,182,114,162,86,85,134,54,33,101,87,100,46,88,126,90,44,113,15,95,74,98,25,12,185,67,54,64,1,130,76,86,227,209,60,43,239,200,75,5,205,67,95,173,156,213,68,110,92,13,73,132,203,22,183,177,43,73,161,236,235,55,73,103,136,234,90,27,241,159,79,58,55,137,182,204,183,105,120,190,240,92,204,80,12,247,94,77,161,249,194,11,164,65,91,200,77,216,110,85,54,18,186,209,42,60,82,23,203,1,78,101,191,105,104,246,93,218,137,114,117,233,228,186,60,225,15,154,186,66,154,161,54,33,231,119,43,245,191,3,164,168,124,81,84,179,201,3,229,130,46,115,17,162,240,235,39,168,128,113,109,115,199,78,29,80,124,28,211,89,23,227,211,31,17,171,93,77,177,173,242,44,122,55,208,129,221,167,137,47,204,127,25,11,225,126,91,202,62,172,45,94,155,168,101,83,115,98,178,156,59,225,182,202,232,41,83,139,197,113,26,126,2
 8,170,247,232,144,101,204,95,145,90,215,137,194,65,195,214,110,59,169,118,53,168,211,143,183,152,65,120,144,178,54,202,29,8,232,54,131,108,55,132,182,245,113,181,36,106,57,45,4,141,150,62,149,107,68,194,168,68,225,230,218,173,249,161,208,223,28,63,213,62,252,225,32,68,170,217,31,142,106,163,236,170,122,6,229,59,101,240,199,234,185,253,219,178,44,27,232,221,212,222,125,134,113,58,41,216,75,73,13,82,13,113,247,151,147,142,37,26,17,198,61,112,62,21,37,226,25,14,82,71,249,48,1,37,118,91,24,212,138,241,136,178,138,221,64,1,110,213,94,189,159,104,231,255,169,41,28,160,1,125,163,57,107,142,114,174,102,142,49,19,15,154,254,29,48,117,207,24,111,76,190,244,175,188,116,237,107,195,238,178,216,184,125,97,244,253,92,232,243,107,70,86,68,173,156,165,185,49,186,68,226,20,18,60,89,165,233,192,15,190,45,192,163,209,211,20,151,120,170,142,122,145,134,149,171,228,138,199,72,2,105,13,239,58,115,181,87,29,19,98,255,170,18,49,183,169,203,91,243,46,21,52,152,11,23,25,19,238,90,52,64,33,40,154,188,
 73,5,165,230,90,138,240,155,116,10,109,160,155,166,186,54,205,11,115,61,248,117,115,228,84,94,111,217,50,131,124,206,93,138,31,190,167,86,84,166,180,238,19,53,237,106,223,133,28,128,224,237,79,60,10,10,143,221,98,222,188,135,221,116,24,223,9,109,22,206,119,7,173,50,158,181,178,130,207,165,255,203,119,199,44,250,251,233,127,179,63,134,44,112,154,60,144,251,227,48,28,25,170,74,232,138,164,165,8,77,239,83,245,28,112,120,158,37,156,80,10,252,37,198,249,190,156,160,134,75,84,220,1,222,192,232,139,94,32,134,50,69,250,23,67,90,141,120,82,23,203,210,197,185,37,152,245,75,88,42,1,93,123,162,101,243,31,34,152,49,195,45,189,223,34,17,116,232,95,167,59,78,117,204,49,23,78,194,10,160,10,99,248,49,86,252,76,33,169,63,25,94,48,23,211,218,62,173,194,101,183,186,224,40,239,107,206,183,102,141,218,207,23,194,61,68,156,11,139,110,225,52,114,235,28,9,219,219,74,36,155,128,121,75,102,85,244,60,19,159,233,117,31,78,237,140,213,167,30,88,181,207,37,84,52,144,228,55,147,69,150,67,58,70,178,114,128,
 59,192,100,250,24,169,75,174,210,148,189,223,52,162,148,189,171,129,253,126,169,187,154,122,178,81,240,110,40,96,106,132,42,195,4,64,84,104,114,59,157,196,127,55,144,242,114,84,236,121,114,132,20,248,151,137,253,58,29,208,1,8,72,220,115,31,227,210,76,137,48,245,193,26,210,204,155,175,38,69,117,18,151,137,111,23,94,153,232,174,47,234,89,188,153,25,64,164,221,104,176,184,209,72,163,132,89,56,168,21,105,225,121,198,21,71,153,87,145,13,222,164,156,164,173,152,175,34,187,171,21,171,69,242,151,186,99,119,194,106,84,150,144,128,81,27,173,35,145,248,49,147,69,154,42,171,60,8,154,95,176,25,171,71,243,159,101,96,255,251,186,0,125,130,166,111,165,186,168,198,14,172,237,116,76,206,180,212,224,97,172,96,205,105,213,234,69,172,41,52,153,79,190,58,3,100,36,125,214,155,125,121,112,63,182,32,179,157,22,232,8,1,93,12,93,97,27,52,35,74,75,105,96,135,202,252,89,217,71,60,164,71,101,126,146,155,124,213,148,58,254,175,133,147,228,244,3,100,162,126,90,253,104,26,109,196,180,141,83,152,76,167,213,1
 0,87,68,210,139,5,244,54,78,137,137,96,104,223,142,44,237,210,43,97,158,64,223,253,133,153,209,188,110,123,22,111,164,161,7,212,0,168,74,243,86,129,203,95,11,220,102,56,108,86,71,103,202,157,207,115,12,151,104,106,67,187,57,106,148,235,13,59,108,152,19,161,95,64,228,239,145,195,179,60,176,55,65,66,157,186,155,189,77,219,214,147,38,187,243,237,83,136,13,217,48,143,14,80,158,52,251,174,31,4,59,61,69,226,189,180,56,238,227,217,200,212,32,164,209,93,116,66,114,248,20,236,207,89,151,229,184,47,245,202,237,74,66,144,209,200,134,223,254,57,110,46,65,144,105,255,10,116,208,249,251,133,16,42,73,215,81,11,95,23,226,247,216,59,52,230,144,87,172,48,30,175,76,0,154,230,107,146,237,65,211,28,97,200,143,233,255,144,153,127,185,77,80,118,170,1,103,224,21,209,74,112,87,98,140,102,210,130,247,169,144,217,26,116,87,53,246,146,97,96,136,220,128,253,248,10,201,220,89,223,92,10,202,186,77,108,63,45,71,98,227,247,47,196,12,211,180,59,115,145,100,207,90,49,205,226,229,178,96,191,241,128,67,184,151,
 106,136,251,250,172,52,113,202,15,91,2,254,173,195,207,160,35,213,164,129,111,152,182,154,51,114,158,151,124,146,33,89,122,72,117,16,237,54,72,59,206,70,241,150,56,2,63,220,5,161,133,221,123,255,122,53,84,22,118,116,92,83,197,60,68,81,169,248,141,142,137,248,42,94,121,241,128,255,149,160,37,214,204,211,126,110,14,132,66,236,199,163,23,17,19,144,33,76,118,112,173,66,95,192,220,197,196,17,117,93,163,39,225,4,248,152,161,205,213,30,64,242,68,152,90,62,71,183,145,190,16,94,131,67,151,82,231,130,23,223,2,70,251,175,180,69,138,133,167,44,158,251,255,189,167,43,46,207,232,118,226,226,55,221,182,33,135,252,143,107,181,230,11,59,249,36,249,4,174,237,119,244,142,198,30,239,11,242,103,25,245,198,193,136,80,246,225,115,186,6,114,237,87,149,243,159,157,42,222,140,96,208,196,90,19,93,237,232,205,210,158,45,15,120,202,101,117,67,117,76,171,58,193,188,160,135,45,221,217,254,25,129,222,185,172,88,66,243,215,8,8,3,182,49,210,24,250,9,91,29,58,203,139,103,110,188,186,248,226,214,198,83,8,95,22
 1,135,193,41,137,202,240,42,53,16,164,233,25,73,218,13,166,148,145,32,118,98,57,17,226,215,50,116,139,34,245,230,55,226,102,174,179,111,195,68,127,242,216,46,166,218,97,92,176,146,14,114,99,39,129,173,111,182,251,8,128,119,38,235,233,69,99,44,146,18,108,152,158,109,32,62,210,63,130,1,249,227,111,175,155,28,228,186,8,50,160,82,21,227,139,181,95,63,174,207,227,3,13,69,205,157,154,108,94,168,51,129,229,204,169,114,145,252,190,215,93,125,190,178,143,87,233,23,23,208,45,9,8,143,121,8,182,190,106,245,39,84,41,82,121,51,15,191,139,9,239,165,215,135,163,17,224,8,233,0,95,205,209,181,219,153,20,192,118,207,52,120,239,10,180,29,168,242,234,121,148,40,176,50,184,98,241,55,54,72,255,116,183,186,43,153,81,223,177,220,133,203,46,61,5,225,92,220,77,146,130,41,176,79,82,212,30,198,121,250,237,90,238,161,173,36,95,111,15,101,5,129,30,66,218,94,79,179,82,77,204,171,90,226,216,23,119,40,127,53,98,79,181,100,4,234,64,219,69,39,161,2,125,165,216,198,131,126,2,180,125,170,42,90,98,51,53,38,159,12
 2,80,244,102,193,71,233,153,35,221,242,197,188,200,200,230,20,20,14,148,1,38,120,16,113,116,188,194,33,110,56,164,12,145,220,13,231,6,59,7,78,126,244,77,195,183,127,109,251,194,147,109,159,151,93,24,247,222,155,235,45,107,141,48,109,101,41,182,176,147,239,72,113,178,174,78,71,92,159,19,37,160,6,243,213,254,175,225,55,131,86,106,251,60,167,209,87,10,93,112,213,188,172,115,159,188,223,211,44,255,243,57,226,250,154,15,154,167,40,125,43,97,1,146,101,245,182,37,204,185,87,88,207,177,122,96,197,179,32,195,75,57,245,205,82,95,251,130,110,7,0,121,59,246,216,155,7,164,186,26,160,79,165,47,182,161,5,142,168,2,71,155,51,179,240,178,138,62,237,85,92,39,251,63,124,40,40,48,108,195,134,27,158,79,239,30,154,76,223,223,28,143,76,104,134,175,37,94,227,27,174,11,238,195,182,85,15,240,123,235,97,41,176,76,195,150,51,66,235,219,251,153,31,228,78,64,50,149,168,190,70,4,10,6,32,181,77,252,80,202,168,8,176,208,0,12,57,54,254,80,97,116,249,2,83,112,198,74,251,255,197,202,151,85,112,7,104,191,82,245
 ,46,217,42,86,62,32,94,18,17,19,186,214,2,161,44,41,24,191,254,150,135,88,28,141,45,66,107,244,89,16,47,81,8,97,173,210,130,155,139,122,66,80,145,62,151,28,112,224,128,161,222,7,237,165,146,249,161,56,178,188,26,234,172,172,219,37,12,10,117,96,212,190,113,7,238,103,235,186,231,90,173,176,78,242,171,147,11,28,111,95,121,90,11,139,143,229,178,102,210,100,48,147,55,190,176,79,13,81,51,154,202,198,60,208,53,95,150,83,5,143,169,9,110,93,24,151,190,111,159,133,192,148,188,163,65,190,222,224,117,174,95,84,120,26,179,179,187,44,217,240,37,137,145,181,82,193,133,151,144,212,196,243,118,206,65,77,64,216,196,85,222,240,26,34,175,169,128,234,198,10,246,162,148,101,240,104,128,29,46,157,62,1,145,205,248,87,244,112,161,249,83,185,228,26,247,229,67,39,185,132,87,202,179,238,175,117,25,103,217,94,191,51,4,57,84,212,240,11,101,161,233,109,165,81,189,57,213,230,136,192,93,202,178,111,170,58,53,47,43,38,109,158,16,172,177,47,229,101,55,253,152,80,62,182,126,127,248,72,245,121,141,163,187,249,1
 77,13,28,212,57,210,161,61,219,197,203,190,131,33,139,30,130,16,93,182,248,56,74,196,72,4,92,191,119,136,147,219,221,181,192,207,160,50,217,147,110,45,239,108,212,253,152,39,176,198,243,208,243,108,63,74,15,15,251,103,205,186,135,146,229,249,105,202,25,71,24,254,115,21,6,3,182,95,135,35,248,243,254,37,153,171,255,246,83,65,27,78,32,17,200,162,213,182,184,106,82,56,252,28,24,43,166,185,56,228,110,188,32,246,28,40,46,164,239,197,202,183,217,124,253,136,100,50,16,31,234,148,41,218,171,74,136,177,29,179,131,168,55,26,74,157,146,62,98,96,183,42,241,254,92,152,88,14,104,64,171,51,72,30,25,192,185,217,172,237,10,188,217,138,172,65,86,201,75,31,231,160,238,4,3,69,186,86,242,61,191,211,173,86,180,226,20,75,53,93,190,140,254,74,236,194,15,11,164,127,42,61,1,30,238,199,246,238,68,250,214,17,0,206,60,220,58,150,87,144,66,28,71,23,135,221,249,9,155,226,162,206,251,8,78,110,223,74,244,80,63,136,105,246,48,165,250,24,17,85,108,76,174,185,170,180,204,91,132,95,253,105,132,139,206,103,70,43,
 238,97,72,120,103,38,160,141,175,151,4,178,14,69,199,219,212,147,107,41,205,20,147,214,112,106,63,165,232,123,206,180,182,199,191,38,52,128,141,59,94,52,234,122,247,98,154,159,20,175,15,139,84,8,219,86,138,61,102,99,203,39,169,28,7,136,200,85,12,9,115,250,240,61,65,19,192,20,234,45,221,218,119,162,242,128,50,3,165,228,240,122,159,123,241,203,234,89,207,87,87,56,213,230,32,67,37,211,224,1,150,145,229,52,11,77,194,249,1,210,238,70,5,112,245,121,69,196,135,70,24,199,252,234,74,8,3,137,74,83,116,135,220,179,118,56,23,100,206,228,222,82,91,129,250,134,249,239,12,159,93,173,12,246,69,93,12,235,122,94,251,163,31,130,155,197,254,122,168,68,60,216,29,37,243,145,255,104,233,67,44,219,211,5,214,155,124,5,240,50,72,60,121,240,189,83,98,127,201,92,255,153,105,139,157,66,184,49,181,253,177,149,11,44,72,103,107,71,104,116,52,116,177,92,25,74,41,165,13,180,70,143,116,143,210,32,86,65,223,233,1,113,126,68,219,119,192,2,47,164,80,80,101,113,22,63,116,188,33,52,57,187,214,46,117,214,209,136,22
 4,175,205,191,132,159,189,30,132,156,151,157,168,148,193,106,231,205,104,25,158,129,124,194,182,205,233,218,168,32,51,125,226,241,196,65,136,134,61,187,191,139,75,202,130,8,187,83,61,97,227,177,26,83,150,183,112,233,96,209,18,150,138,219,71,179,154,207,52,190,127,203,120,10,10,81,86,199,46,138,92,172,159,26,15,145,32,38,3,85,239,92,55,254,187,73,53,178,207,113,181,65,184,28,131,208,234,141,211,8,25,41,175,123,19,32,213,49,159,191,207,60,90,17,185,49,253,72,96,231,83,161,101,147,101,216,117,121,74,228,207,182,67,206,120,156,198,70,55,124,138,48,64,124,247,211,42,6,164,212,186,148,245,203,79,76,70,211,160,25,88,66,173,138,230,62,169,193,25,197,247,214,146,130,230,90,240,211,191,252,136,76,45,156,111,198,140,12,49,205,168,98,47,229,37,53,18,120,212,243,237,210,21,103,176,5,244,122,220,2,210,222,6,32,191,25,149,34,118,156,216,129,140,96,251,41,100,53,158,80,181,179,196,26,47,146,180,77,18,20,247,200,95,46,75,12,28,32,9,144,47,181,54,241,226,230,42,229,205,70,88,196,122,120,251,2
 22,227,200,26,218,220,73,25,209,184,109,176,188,195,151,49,9,127,50,170,193,239,249,93,128,183,71,97,222,92,58,247,15,219,217,127,20,36,98,220,103,240,234,88,235,200,54,228,90,147,218,230,72,146,55,242,181,102,117,166,21,105,143,45,100,132,81,32,48,234,224,186,237,118,6,33,95,191,181,2,169,197,111,37,10,211,240,240,174,63,170,84,167,137,235,7,185,66,11,135,6,30,46,16,109,205,45,133,181,30,50,143,26,183,239,22,186,120,24,183,231,144,119,174,161,176,115,54,171,31,135,196,42,74,35,104,187,189,127,129,36,197,231,112,177,238,197,110,12,167,12,182,184,189,153,168,61,35,119,115,67,96,112,188,169,79,29,128,252,233,113,17,75,208,171,211,97,238,162,27,148,46,154,88,138,24,198,168,186,219,58,191,240,246,46,195,111,96,130,103,155,49,125,212,132,41,11,50,170,255,166,116,181,111,109,185,231,228,88,31,89,45,39,107,46,219,63,144,237,57,163,47,33,232,146,0,20,183,147,176,221,6,233,200,51,228,5,57,122,207,234,27,238,161,15,132,204,70,107,48,127,85,141,167,20,12,178,85,133,196,111,45,77,37,124
 ,3,233,26,205,49,115,230,62,130,6,174,203,201,6,63,16,163,34,79,10,123,122,55,85,175,62,111,111,122,18,32,70,109,150,142,66,212,150,232,48,50,173,217,76,35,20,117,239,79,11,130,46,59,236,89,36,101,18,71,165,17,120,164,107,84,80,194,119,238,8,235,125,153,158,65,127,114,228,181,217,229,92,71,131,164,12,82,14,141,165,253,249,88,214,136,102,225,147,5,239,153,89,254,197,132,122,203,11,169,117,68,114,63,42,188,154,143,34,179,55,181,0,134,116,133,212,226,108,133,108,142,192,63,158,181,236,75,208,245,231,119,253,178,42,99,219,104,117,253,37,191,235,125,238,191,68,156,161,229,201,95,156,116,106,57,240,3,21,176,251,182,239,219,205,137,93,56,2,162,204,38,247,200,178,1,46,94,208,190,151,136,185,123,117,126,8,211,189,51,234,3,106,103,14,11,11,127,22,253,181,48,187,99,205,196,14,169,49,66,224,118,211,200,154,230,69,253,201,131,39,9,221,168,144,100,146,0,102,3,99,173,231,162,98,111,133,69,110,150,110,207,55,3,85,15,101,153,70,13,204,242,152,180,71,250,20,43,87,138,182,146,45,1,237,177,78,3
 0,196,253,7,138,246,75,251,16,112,13,168,220,239,129,236,1,194,97,202,77,212,165,19,79,99,144,47,187,2,220,141,192,198,207,6,14,71,133,225,127,128,86,31,28,52,88,24,26,33,81,206,253,92,117,187,70,167,28,141,79,7,50,206,218,53,244,196,130,34,76,56,6,113,185,174,201,238,184,167,114,243,213,229,1,229,246,76,159,226,120,203,177,227,19,221,120,175,220,152,169,171,26,84,131,57,60,64,173,124,255,119,46,125,67,235,217,228,70,167,18,142,235,62,179,183,126,60,139,30,144,208,165,205,98,34,77,57,140,39,132,108,66,60,1,250,124,71,157,89,124,29,199,173,201,44,78,114,116,76,53,93,128,115,156,168,106,202,206,142,127,231,34,44,35,169,42,248,24,33,239,32,184,172,36,152,168,164,73,146,69,104,161,98,238,98,40,204,85,227,224,255,223,94,32,219,100,15,101,63,58,79,193,116,214,232,201,20,173,209,44,97,159,203,150,148,150,107,92,53,16,204,127,113,119,188,144,85,141,13,211,221,166,153,222,30,133,38,156,95,239,119,108,87,96,204,137,101,129,66,132,214,44,70,167,11,251,35,67,145,32,100,47,73,122,180,158
 ,151,20,71,108,46,86,29,201,228,191,79,71,206,102,165,173,232,29,167,177,241,222,68,37,93,125,246,88,118,160,2,154,246,48,44,244,19,83,152,160,214,230,86,161,1,32,13,55,236,69,141,12,229,162,2,21,11,131,225,86,120,236,155,51,18,185,183,144,88,202,7,72,246,7,2,0,36,64,234,169,24,44,5,179,225,87,177,134,176,157,18,243,140,85,93,156,228,83,179,68,209,220,221,156,14,87,80,241,188,245,39,202,82,102,119,89,87,94,67,216,149,49,96,98,155,167,172,107,109,203,193,72,160,142,90,161,13,130,137,125,230,211,96,210,31,114,156,129,170,92,194,235,243,150,149,207,71,78,71,143,157,165,191,31,74,6,144,30,153,193,141,203,126,67,131,227,211,244,233,66,107,201,17,175,237,38,8,185,240,68,35,8,76,246,237,31,185,160,3,156,51,130,122,237,201,218,114,210,70,196,126,220,13,119,168,215,24,193,244,84,70,212,195,218,165,37,241,52,255,77,169,246,66,86,116,54,244,35,206,143,18,22,112,47,18,255,19,120,221,250,90,239,137,109,45,155,245,197,253,146,62,68,17,150,248,48,236,104,184,146,40,15,31,77,66,134,18,165,1
 49,13,162,222,97,57,0,252,222,132,223,196,20,51,220,4,113,115,20,6,159,92,76,168,140,1,243,205,214,166,233,10,104,239,163,12,179,65,81,38,209,99,93,53,136,145,85,37,162,29,136,87,78,154,152,209,127,36,199,246,180,92,234,148,215,28,14,28,87,38,60,92,65,128,24,102,60,112,97,143,146,204,154,220,86,138,32,5,81,197,13,243,142,59,172,41,193,108,56,34,88,78,160,205,31,167,11,25,217,219,55,32,93,5,28,241,77,32,132,70,106,236,242,24,193,179,253,112,207,247,89,24,245,171,201,69,34,147,112,119,54,248,186,184,159,181,105,136,173,82,121,155,167,151,197,174,158,163,150,141,248,131,44,174,248,100,81,161,64,247,127,229,57,166,4,109,119,72,137,23,89,36,215,69,176,59,28,145,89,93,35,36,91,92,54,28,67,81,178,197,28,2,174,46,62,164,17,161,232,218,125,39,12,155,35,62,148,147,32,5,220,159,77,102,49,240,229,150,46,49,89,172,136,73,209,160,35,193,68,162,176,5,251,97,215,38,103,214,28,129,48,34,63,79,115,166,36,160,238,124,221,186,169,227,38,177,20,45,166,245,157,109,177,217,109,8,46,127,115,249,4,1
 28,165,48,242,180,156,127,207,20,196,132,141,20,138,52,0,195,48,26,134,10,228,161,19,22,156,8,91,131,221,106,182,52,3,207,57,45,85,164,79,3,12,44,247,150,89,202,10,92,145,29,6,206,201,55,143,92,31,217,48,55,177,127,50,219,9,175,52,165,248,116,125,23,166,23,91,174,25,191,200,44,12,127,236,215,157,55,249,2,100,116,250,251,214,55,123,90,122,241,31,84,238,23,210,174,244,208,36,20,96,169,61,97,186,42,146,111,113,50,148,98,229,65,92,210,143,151,10,0,39,24,7,194,198,51,198,144,103,202,49,185,216,175,55,248,247,239,235,38,245,11,93,185,239,145,45,70,224,42,156,144,58,183,93,81,105,87,246,27,219,238,171,131,172,204,27,211,131,10,112,26,64,212,40,241,233,115,214,69,58,101,125,162,177,42,219,205,184,103,3,81,103,119,161,124,2,161,179,123,169,7,150,5,234,128,210,98,44,81,51,53,157,253,249,151,93,83,98,6,174,58,246,56,182,125,141,33,38,43,156,80,193,46,186,126,76,17,164,53,200,237,146,225,169,82,61,139,186,79,130,163,170,163,73,228,21,18,101,5,185,66,222,250,42,6,149,206,108,57,30,164,81
 ,9,159,72,13,232,82,200,143,252,169,190,137,151,248,132,108,61,234,171,71,89,190,72,38,193,90,225,237,75,181,98,82,160,159,211,98,213,174,2,92,158,52,44,45,192,228,181,159,150,201,43,44,55,179,25,69,155,226,100,247,203,158,96,141,159,138,86,161,168,98,40,40,172,235,173,34,106,166,148,88,166,63,209,133,175,211,186,185,76,105,156,125,57,27,163,33,198,201,74,251,244,77,129,76,255,87,168,136,30,232,208,28,84,93,185,201,59,10,228,39,158,243,65,14,121,67,57,233,111,254,77,240,170,45,254,171,212,71,45,109,170,236,82,170,160,53,222,113,221,23,127,53,216,220,187,153,195,71,146,210,250,20,5,91,57,137,222,136,77,181,53,134,226,185,230,208,213,48,222,43,104,73,196,14,229,34,53,79,154,152,121,104,103,220,225,145,204,105,26,23,242,27,178,69,238,10,13,186,56,105,110,200,33,148,195,95,11,8,134,85,202,112,64,2,246,32,99,1,121,110,244,233,221,115,86,53,162,166,203,152,249,146,242,152,222,215,22,36,28,238,252,65,153,149,247,210,244,218,223,114,239,237,43,125,134,237,39,53,127,201,8,69,104,212,
 147,120,103,195,116,221,143,117,57,69,97,91,69,29,132,117,191,115,134,194,206,236,91,13,124,168,197,132,135,193,145,109,215,66,3,166,149,198,4,66,173,216,181,90,18,248,51,134,212,98,51,72,39,151,1,199,23,166,225,243,171,52,50,136,131,182,122,212,1,77,147,141,182,76,244,139,138,164,64,155,142,187,136,135,80,185,97,1,117,105,60,185,120,202,145,31,146,137,219,218,109,51,242,76,216,105,34,66,22,155,245,236,138,195,93,243,107,19,29,74,67,156,55,203,20,22,10,150,235,229,110,208,189,201,127,89,98,24,171,249,117,24,239,151,74,198,180,123,70,22,92,240,134,152,202,86,27,14,32,176,162,24,14,174,2,41,229,54,43,220,140,109,123,91,224,201,236,21,249,100,145,81,132,213,206,65,61,1,177,94,35,127,244,61,227,150,210,168,245,19,185,47,221,193,88,92,205,185,200,71,71,219,215,17,15,7,252,26,184,241,6,77,163,215,8,119,32,178,151,0,196,28,166,252,60,81,224,226,187,51,245,199,118,39,103,41,146,35,138,222,92,112,147,242,90,185,25,184,147,99,106,32,250,77,11,109,124,175,200,143,129,144,206,82,134,236
 ,45,161,253,240,11,6,233,202,239,241,75,147,41,254,61,208,53,160,191,214,100,38,24,210,247,213,26,126,192,108,166,223,253,117,126,235,211,157,169,110,111,52,131,117,74,75,97,86,114,173,111,92,188,33,113,88,3,177,220,198,87,163,251,237,57,224,128,36,114,108,165,85,252,252,193,172,223,97,166,136,42,165,157,74,118,163,187,185,255,253,101,129,22,218,83,233,89,85,231,122,250,69,111,255,237,232,19,185,20,28,141,175,142,129,51,228,24,208,76,184,178,49,239,132,206,171,95,36,222,155,46,189,80,180,7,108,245,144,152,116,197,136,171,250,18,186,243,120,244,111,11,61,242,215,60,116,80,23,198,40,18,230,74,8,119,224,86,220,194,179,240,250,164,26,222,133,65,115,66,19,16,210,65,254,252,181,188,219,79,21,102,46,105,60,232,124,212,12,138,115,185,50,93,31,228,61,190,158,49,111,213,143,7,194,85,203,196,28,203,19,213,56,19,116,102,163,83,135,252,217,23,31,180,86,200,27,74,77,172,121,185,185,115,171,207,214,251,197,140,212,171,128,225,217,106,154,160,218,142,150,58,159,245,109,16,3,118,138,246,6,21
 0,16,193,240,188,199,70,127,22,59,149,166,93,55,159,216,244,28,147,7,158,23,5,170,20,177,136,29,16,251,141,1,160,90,3,160,94,149,244,212,104,82,191,0,194,155,74,246,168,215,9,148,77,140,70,71,253,185,135,103,10,200,11,199,71,18,76,190,251,54,40,56,195,177,209,58,140,20,25,27,6,143,133,171,230,200,195,146,38,40,146,231,219,82,0,148,109,8,92,49,145,1,111,98,177,174,57,27,247,178,92,16,99,17,195,40,127,185,109,138,85,197,121,14,238,97,198,136,236,233,0,192,2,184,152,190,82,57,49,132,115,172,212,103,30,19,86,196,231,207,33,7,173,244,51,158,80,72,89,233,64,17,101,244,253,105,31,118,24,12,187,105,117,177,118,142,90,76,88,121,14,143,160,100,93,115,172,233,166,242,59,138,167,43,199,140,106,213,204,104,196,221,236,123,2,185,186,124,134,255,7,80,132,150,102,79,127,29,38,255,49,228,208,18,12,87,79,53,41,90,225,186,46,159,30,176,240,195,46,176,46,81,35,110,194,214,125,217,193,173,111,40,243,134,45,155,52,1,203,57,5,41,15,23,140,128,251,134,76,147,67,251,212,92,113,219,187,30,252,50,189,
 152,91,117,248,101,53,174,78,54,13,1,120,237,132,250,70,252,141,82,40,83,236,38,5,209,49,216,110,35,215,210,204,71,129,182,92,117,91,78,79,114,213,12,12,170,80,223,201,13,254,41,107,0,157,241,37,119,254,246,128,96,35,115,98,143,205,21,121,20,141,71,219,203,96,240,140,116,12,103,192,161,156,21,240,156,167,58,218,249,19,242,160,70,123,222,28,57,46,165,194,74,222,34,164,174,234,253,228,184,113,6,95,236,35,103,213,121,148,223,138,31,232,17,252,220,51,50,161,159,113,184,37,136,166,175,125,13,168,205,100,229,193,27,75,99,39,129,180,229,224,236,175,212,218,248,179,88,243,59,98,46,112,152,198,73,25,181,14,35,28,167,103,126,49,129,232,86,13,27,96,92,129,245,70,6,87,80,190,194,219,22,177,4,254,63,196,229,11,234,112,83,253,200,132,233,239,26,62,246,164,83,243,112,87,117,69,59,230,147,34,101,77,57,72,50,3,86,198,162,240,64,21,102,253,231,159,8,67,242,37,241,7,218,146,219,67,17,63,171,14,96,243,41,140,238,169,192,226,160,63,216,143,233,207,181,104,12,53,138,42,241,232,188,141,233,77,76,1
 43,247,125,239,168,4,211,250,208,200,23,236,196,25,150,116,203,102,228,229,213,135,46,15,186,40,91,88,41,127,238,73,100,152,39,97,243,196,174,87,47,72,98,116,148,75,78,183,43,114,209,6,107,179,249,132,128,229,141,67,33,40,15,45,130,30,126,88,222,17,154,188,179,81,122,32,68,222,28,178,91,210,29,120,214,89,81,222,15,229,20,93,200,58,32,24,216,153,54,159,122,119,40,25,13,164,117,4,153,181,151,153,78,93,3,8,43,91,114,61,12,226,19,123,94,24,55,33,131,25,20,135,3,203,208,223,121,90,193,52,27,121,201,58,177,213,105,246,140,213,21,109,29,76,118,204,6,13,152,60,143,152,212,160,192,168,14,182,248,152,0,87,54,134,169,111,114,0,132,59,60,209,183,94,54,82,173,83,38,1,83,217,154,183,239,107,17,229,24,238,6,37,95,91,222,5,156,76,100,50,9,98,40,82,124,29,240,155,11,148,95,136,49,110,11,155,4,154,43,34,224,230,218,255,235,195,51,72,2,3,121,129,123,250,76,167,90,103,21,158,200,65,252,130,5,120,232,70,174,119,176,86,55,247,206,103,216,119,228,184,170,237,254,232,93,241,207,212,51,177,84,131,78
 ,54,90,31,155,238,215,149,143,98,50,94,87,129,140,157,0,247,55,116,155,104,119,179,40,151,192,162,124,81,193,38,171,91,175,162,31,113,4,131,47,165,249,101,212,9,183,194,117,196,165,242,1,77,52,66,68,13,23,131,250,217,16,222,69,243,69,175,220,114,58,60,28,252,159,225,8,231,67,78,36,99,124,17,225,158,31,235,147,127,147,105,6,121,182,193,180,43,23,69,144,232,163,57,240,27,113,131,176,29,25,71,78,136,63,57,186,115,122,234,196,150,186,236,103,196,55,128,77,155,193,16,139,156,243,22,75,9,8,4,172,252,218,100,54,19,51,193,227,186,87,101,225,233,245,118,123,217,208,157,88,180,78,62,226,107,22,120,227,146,54,213,118,155,221,211,188,98,218,199,66,112,154,191,237,195,122,153,53,143,203,29,209,176,191,131,218,89,215,57,95,100,243,108,246,189,22,220,100,107,91,242,150,203,123,20,95,157,109,47,38,213,76,127,230,170,108,243,124,129,246,226,140,96,111,81,184,250,165,223,161,114,192,142,247,41,169,169,149,139,207,194,76,155,138,87,122,107,8,65,10,162,111,33,202,250,76,62,53,180,124,164,92,55,
 74,58,55,134,36,93,152,148,8,122,55,54,175,112,62,40,246,90,54,27,117,239,156,253,165,166,139,113,221,97,122,168,223,166,168,211,223,3,43,137,201,213,146,232,117,157,53,3,237,70,110,123,227,84,163,169,164,219,49,95,222,128,219,105,3,97,88,150,174,220,199,218,253,118,180,173,184,186,192,100,6,206,197,38,83,136,32,147,115,6,133,218,206,12,56,169,53,111,230,206,159,205,206,208,99,33,131,115,119,23,129,107,166,247,40,163,104,133,184,178,247,91,19,177,199,161,255,135,25,193,12,60,66,115,36,13,204,179,247,28,250,203,5,168,159,64,15,122,138,64,47,54,203,16,26,126,144,245,170,203,32,146,138,181,152,133,161,189,36,123,215,168,26,131,89,225,223,222,17,158,235,61,167,206,47,106,5,58,163,51,242,93,85,224,224,175,251,75,38,213,109,213,73,79,39,161,45,180,151,54,107,141,34,92,72,133,86,208,12,134,73,68,73,143,46,172,72,189,211,77,233,136,171,160,116,120,200,5,151,219,5,199,168,116,63,147,2,45,128,182,163,175,240,105,113,35,194,67,79,28,204,173,39,43,123,160,204,227,154,2,214,227,227,117,1
 80,148,182,133,144,205,231,180,84,182,228,130,162,93,8,45,208,99,43,213,239,164,159,29,180,133,9,50,234,103,124,27,175,208,116,240,152,155,51,65,81,61,91,227,108,97,196,220,68,92,180,239,23,61,148,123,24,150,200,161,175,239,42,3,19,146,160,78,54,181,251,39,19,100,102,31,167,120,47,45,172,187,253,107,183,199,58,153,19,243,211,164,141,35,53,187,225,109,18,179,11,34,129,237,155,206,128,67,18,120,239,249,246,183,153,34,200,15,137,188,21,34,172,86,5,68,252,130,5,124,125,152,174,75,226,215,103,37,108,26,177,67,89,39,128,6,54,14,144,0,47,153,238,83,136,28,247,144,232,35,5,101,229,244,250,207,229,101,163,57,53,136,57,89,33,226,66,110,242,113,206,97,92,17,137,187,102,216,121,69,230,1,138,130,56,10,170,35,104,179,56,67,235,41,198,97,122,204,92,129,217,87,132,158,170,127,82,89,37,121,209,93,0,112,193,217,10,163,103,210,53,196,249,227,148,197,132,82,158,153,71,230,137,189,187,211,164,53,7,1,72,71,61,55,133,40,167,116,97,104,77,121,134,94,96,28,11,207,59,139,122,210,77,132,194,235,3,228,
 63,85,123,111,98,76,200,153,232,54,130,70,23,68,197,64,78,104,162,243,228,212,12,190,93,69,40,180,66,146,243,172,19,137,57,121,175,164,58,207,10,76,154,76,235,176,107,215,136,37,47,60,129,27,140,159,72,88,253,29,142,51,142,180,245,87,176,127,162,24,224,6,87,24,143,17,21,156,186,165,172,26,46,174,8,232,194,32,151,210,80,137,18,40,127,205,80,107,220,226,56,110,169,146,7,171,6,124,180,172,148,186,53,226,116,107,195,242,55,77,18,3,184,13,119,58,41,30,187,189,126,98,68,185,37,130,1,91,184,72,81,34,116,19,235,134,199,158,185,212,11,74,29,209,181,113,25,165,225,224,131,33,238,99,6,185,51,180,17,4,42,27,28,203,208,23,244,98,231,194,89,193,222,174,127,62,84,53,99,159,83,60,164,178,163,31,46,194,20,168,82,99,36,95,151,167,187,85,242,188,38,155,128,126,49,162,42,18,189,66,167,203,145,72,28,94,242,251,215,190,125,78,165,185,73,106,202,71,209,252,227,122,175,98,229,27,58,229,251,135,160,38,211,7,144,193,199,170,62,175,224,146,72,231,94,239,32,17,77,54,246,46,85,157,242,96,177,210,164,36,
 43,152,151,223,56,246,134,161,213,209,34,109,175,195,161,215,167,150,108,41,235,139,80,63,60,75,115,11,25,204,144,29,237,77,236,68,243,219,181,113,140,233,97,103,198,169,250,202,43,50,152,104,38,132,217,245,175,92,195,107,110,102,185,212,238,36,103,77,57,61,67,176,218,95,221,106,0,168,212,59,175,117,198,131,56,253,124,48,157,125,254,188,183,42,229,187,221,54,91,119,252,85,10,228,36,112,116,194,213,122,130,214,213,103,187,219,160,165,2,248,137,74,178,17,133,104,40,156,183,13,242,124,176,23,164,181,218,219,107,157,252,233,167,240,147,177,121,68,201,179,155,244,164,141,161,215,11,203,222,143,109,154,253,197,138,56,135,195,111,180,220,191,11,23,189,72,0,125,242,181,144,66,44,17,137,156,185,91,115,113,22,142,91,42,42,109,95,98,194,75,217,103,177,208,64,60,200,208,6,116,84,80,107,84,229,240,57,26,219,145,142,176,234,188,212,89,37,27,134,82,142,181,153,152,228,195,216,208,32,46,10,252,228,46,59,61,54,161,25,135,97,25,0,5,26,180,115,73,68,51,65,21,70,84,91,183,143,201,165,31,88,189,
 248,10,36,250,6,41,230,229,61,162,121,56,169,92,8,125,45,77,113,6,250,119,195,159,123,236,219,237,132,144,251,141,39,6,252,143,103,147,229,221,253,142,195,250,226,199,120,37,183,38,34,246,136,156,52,140,64,135,44,52,174,151,102,2,227,10,235,97,121,47,152,249,154,38,13,1,236,236,248,62,180,74,238,246,218,165,104,215,73,135,134,51,171,145,155,248,185,185,78,45,210,127,78,79,186,27,24,153,210,60,213,94,255,209,83,214,177,11,123,148,147,197,54,95,67,222,175,20,55,95,68,87,47,77,75,31,225,110,85,237,203,245,197,27,101,70,110,202,76,219,140,207,201,10,126,149,15,215,13,127,197,60,72,74,30,143,178,239,20,85,41,54,18,184,90,125,153,24,197,231,88,191,85,214,190,76,151,89,252,223,138,161,100,214,197,167,199,112,224,7,172,68,198,243,209,184,118,38,144,72,103,236,42,177,97,93,101,174,168,77,139,233,240,133,14,135,158,181,143,187,193,233,154,77,162,208,252,14,198,36,204,106,250,179,218,27,128,47,209,125,8,45,234,239,83,82,134,248,89,134,46,62,47,201,7,193,202,246,4,200,53,140,58,61,66,20
 4,70,146,179,83,19,131,148,73,217,245,198,152,155,98,59,47,195,138,255,100,47,130,112,32,40,44,20,178,104,99,239,247,18,159,78,55,55,134,29,92,191,205,24,4,1,178,189,38,166,55,51,27,236,14,67,182,242,27,250,242,160,222,95,205,95,254,187,83,18,82,148,223,16,26,233,217,176,132,121,67,167,196,90,37,27,105,64,147,209,173,190,70,177,41,166,155,5,177,107,13,228,75,187,116,103,118,41,109,126,99,48,233,70,110,222,13,33,97,29,114,227,113,73,22,84,131,241,235,74,11,185,124,185,135,181,174,50,92,241,206,37,218,59,157,116,246,129,178,18,82,96,73,142,173,202,223,197,132,243,58,153,52,138,200,175,101,185,173,60,200,229,174,75,176,129,192,190,66,159,89,39,207,24,182,74,133,177,101,164,30,75,169,157,113,8,100,143,218,133,51,146,152,214,101,114,144,51,221,24,97,199,4,94,149,59,110,27,84,150,97,227,224,124,69,139,133,30,87,116,175,200,101,121,201,27,87,6,209,34,195,132,233,94,226,173,174,138,142,170,114,23,180,34,100,111,23,188,238,246,46,182,243,247,99,45,99,73,108,94,126,9,179,162,84,125,15
 8,246,248,241,183,71,113,177,105,110,215,79,236,24,202,18,179,60,214,55,83,207,111,173,227,83,214,26,239,27,135,162,198,160,206,5,204,155,188,220,206,211,113,205,16,30,178,205,199,93,80,185,90,78,161,86,76,214,240,112,210,35,187,148,188,35,129,126,100,35,80,170,176,70,15,149,142,65,34,173,95,65,64,155,171,8,1,181,187,245,248,176,131,68,109,60,155,39,70,110,2,231,36,166,235,93,28,46,244,33,153,222,150,45,94,172,116,53,133,207,189,18,98,64,34,77,11,73,76,62,0,48,159,126,206,154,232,248,200,60,47,250,195,147,12,79,107,184,251,230,247,7,254,205,185,202,118,111,5,35,59,229,230,79,86,24,143,189,16,189,31,235,181,118,108,60,188,190,57,140,244,118,95,189,26,200,21,193,103,16,200,167,2,184,74,31,223,41,222,62,0,234,72,18,6,82,45,19,90,87,172,32,39,142,126,133,232,173,63,214,20,183,59,132,162,185,50,194,97,147,58,243,18,42,64,118,253,208,17,120,153,58,10,54,49,157,42,125,214,122,86,26,205,212,186,103,96,191,41,27,232,228,118,250,166,110,216,133,239,190,64,78,8,91,47,38,12,161,214,39,2
 36,43,73,18,49,2,58,176,5,137,175,105,170,90,95,98,177,146,186,146,185,76,33,178,184,24,13,166,114,230,20,141,216,129,136,99,18,34,241,86,81,118,143,189,204,195,241,239,171,131,112,166,120,174,218,216,133,238,66,236,9,150,175,156,45,51,105,76,90,74,1,214,123,35,242,156,89,255,10,6,131,233,126,126,225,172,111,57,156,149,5,16,11,195,170,21,136,10,174,207,102,52,252,180,215,227,155,133,184,115,2,238,209,118,76,135,191,40,117,179,110,51,198,57,95,177,211,155,186,70,122,157,90,158,130,119,85,194,230,250,49,160,47,81,77,39,137,188,31,125,126,73,86,9,238,156,31,157,236,182,65,250,161,209,21,26,187,255,170,123,238,168,219,69,180,237,3,215,103,35,141,132,38,80,112,110,97,97,60,198,228,1,227,105,90,230,3,244,47,91,72,188,220,97,1,157,121,246,73,177,233,93,104,71,202,162,65,172,33,40,151,63,177,24,183,13,103,20,64,118,71,4,49,12,12,130,39,170,48,90,187,49,199,46,77,211,24,133,255,19,0,34,8,244,80,84,157,23,102,133,237,125,197,83,18,208,93,87,214,95,169,66,160,183,230,61,47,247,250,64,2
 37,69,3,162,122,191,185,26,48,223,156,29,62,98,58,84,76,222,239,232,76,236,190,75,220,188,164,109,116,135,105,224,239,124,234,214,140,50,63,15,52,130,172,57,55,62,211,188,59,156,5,34,245,223,100,41,189,140,41,139,19,110,198,30,121,197,207,243,13,107,195,122,185,95,211,182,7,104,42,204,1,232,88,126,64,171,30,109,11,151,161,164,251,197,175,75,157,210,108,165,126,151,209,200,89,159,213,248,41,165,151,119,127,140,37,123,223,84,152,219,32,36,103,31,252,217,52,142,85,110,77,219,105,87,110,89,182,58,185,153,43,182,176,143,131,133,53,9,27,110,29,121,94,138,17,212,50,34,207,113,229,98,183,80,63,181,161,206,121,6,215,65,113,199,51,130,87,127,61,215,103,249,36,15,160,136,44,228,204,92,88,78,83,216,158,166,28,118,59,5,35,48,196,94,200,134,45,23,105,28,213,210,118,111,68,155,148,180,207,99,214,20,12,28,11,0,244,179,255,71,220,160,90,30,60,150,255,217,87,129,104,105,18,8,82,185,9,67,133,186,248,50,161,92,3,40,239,22,128,160,190,48,28,124,234,27,223,36,157,77,43,136,74,241,188,195,48,208,2
 29,224,27,110,73,15,68,99,146,216,190,192,161,35,26,251,23,163,235,119,41,205,227,251,142,82,240,55,22,206,150,150,180,238,26,224,203,146,130,133,199,74,79,118,86,44,162,147,116,83,180,101,185,112,103,71,145,254,132,69,135,108,76,112,69,188,77,32,114,182,40,199,186,88,222,138,142,117,125,183,214,213,170,255,249,49,184,19,145,119,146,70,217,80,188,110,129,207,75,82,220,213,194,148,71,143,199,72,87,241,44,132,48,205,102,219,5,27,197,250,108,183,194,209,80,85,195,94,79,119,108,173,153,194,229,131,120,11,95,127,234,239,106,228,134,171,208,227,84,14,97,4,91,104,124,42,204,156,169,112,243,22,79,234,80,177,230,44,59,23,207,160,197,26,111,70,114,11,153,72,82,135,161,152,237,205,195,255,148,127,171,47,174,236,29,163,82,29,58,18,74,37,242,130,128,73,126,95,58,95,229,200,154,30,208,194,85,24,192,228,28,81,168,144,103,200,133,185,138,101,86,168,10,84,82,116,82,42,0,42,56,12,101,62,173,108,63,13,170,180,87,91,42,191,187,162,111,111,200,195,253,109,99,137,156,147,16,90,185,210,15,226,187,
 180,34,224,234,42,192,173,63,203,15,153,12,48,250,176,251,115,143,14,109,88,221,226,34,205,99,188,190,13,183,159,184,25,88,59,244,207,205,162,71,168,65,18,125,182,39,172,58,2,244,214,115,210,76,243,205,135,246,103,54,61,226,128,196,53,20,248,32,135,218,18,136,253,160,85,129,25,162,254,38,3,217,101,19,78,31,73,205,103,101,15,253,221,234,236,237,65,189,58,119,11,86,102,99,206,55,97,175,74,254,160,38,232,29,165,210,67,131,225,86,107,67,212,52,47,49,160,30,200,173,134,167,196,219,11,54,187,160,234,172,26,100,111,10,185,24,175,134,39,140,171,40,153,161,223,52,237,38,116,158,226,99,66,49,13,61,195,33,81,210,80,104,27,238,203,7,202,137,165,234,159,18,205,174,96,71,149,131,140,59,67,163,77,226,91,45,34,255,183,74,147,244,126,239,222,64,116,15,254,146,207,240,104,183,116,243,73,228,21,234,115,111,223,29,136,61,144,241,22,106,173,223,128,186,35,190,65,54,109,187,229,28,44,104,215,129,195,200,60,27,118,235,60,69,251,162,113,220,7,191,87,147,100,76,190,142,190,209,118,30,48,118,62,208,1
 86,30,146,150,82,218,7,136,221,206,227,252,66,141,181,202,65,44,255,246,68,194,197,86,76,58,106,60,8,207,74,255,184,41,167,228,68,11,107,179,169,59,219,125,188,59,189,202,208,253,160,215,168,99,29,163,251,186,42,203,249,31,44,211,219,143,152,202,198,186,83,213,116,35,35,41,17,125,43,115,117,207,103,248,246,62,240,118,181,54,253,86,160,42,16,32,200,121,147,20,92,239,50,130,234,164,198,176,57,79,178,162,109,36,41,161,72,189,233,21,108,69,69,58,85,32,105,233,20,127,127,191,167,11,78,54,197,101,89,99,59,10,70,83,103,44,201,233,19,189,209,145,91,253,19,224,70,121,234,157,129,157,158,198,202,125,243,58,231,1,116,132,255,253,140,91,147,185,172,106,63,179,126,158,253,22,55,101,32,111,236,254,117,111,81,117,62,149,185,135,83,189,149,197,30,198,72,63,41,33,50,115,48,119,134,197,179,182,26,79,123,60,18,239,16,23,128,208,8,152,104,77,138,186,152,188,15,188,74,93,224,20,163,154,154,240,38,20,28,57,233,130,137,45,254,230,50,133,160,169,45,172,43,158,96,146,125,195,60,150,99,248,89,142,216
 ,15,169,10,200,33,225,168,191,75,60,118,208,27,30,20,157,135,120,248,134,147,232,156,84,147,241,46,194,44,104,219,194,77,66,185,233,229,195,51,40,19,237,246,137,174,127,96,120,41,235,54,180,62,80,182,62,13,227,44,247,25,49,4,35,116,70,108,50,122,113,118,236,75,97,69,228,95,36,173,81,83,169,243,209,31,191,204,125,48,15,188,166,209,45,107,46,55,24,208,235,115,238,57,49,198,68,95,196,39,161,152,147,156,182,96,30,3,20,233,146,217,7,109,178,11,240,218,98,28,202,14,180,151,93,28,78,20,167,72,47,55,147,193,217,79,67,61,73,138,175,11,109,176,247,29,117,250,195,240,88,79,126,197,208,190,235,245,7,11,153,235,220,7,11,186,49,232,108,127,106,240,89,211,187,62,187,133,4,164,229,57,62,97,112,10,34,17,72,245,213,149,157,41,154,45,154,218,161,18,209,66,76,83,168,44,65,222,126,204,243,39,62,230,249,98,68,14,215,77,143,24,108,117,217,46,11,71,133,93,232,76,146,30,176,109,72,14,227,152,102,40,9,217,186,82,126,225,30,160,147,160,31,67,253,88,214,78,245,101,103,253,133,99,11,118,17,197,35,30,176
 ,56,236,7,194,100,212,147,3,132,198,162,51,142,221,173,10,24,168,33,152,178,254,76,211,74,233,28,80,126,56,184,91,247,196,164,201,130,43,155,241,151,198,10,42,48,163,10,180,91,12,80,204,218,28,234,137,10,253,107,169,208,154,173,151,199,76,50,5,218,217,84,238,158,102,34,40,21,90,6,167,168,237,131,12,238,198,245,117,42,169,104,195,51,56,82,7,112,78,231,230,9,193,97,232,8,146,243,118,30,8,89,41,78,234,234,216,188,99,139,86,188,42,39,34,215,76,43,97,205,40,222,143,34,251,34,243,239,87,147,178,73,96,158,73,134,38,142,204,193,143,238,50,181,55,194,65,164,25,219,16,221,49,241,227,232,53,11,61,13,69,143,240,55,240,199,118,21,152,60,72,146,103,16,202,100,86,16,176,127,40,243,87,1,148,158,198,140,219,115,79,217,96,37,152,3,211,85,202,150,124,182,253,76,213,171,184,48,33,176,39,255,127,184,197,28,102,198,76,195,51,66,27,240,198,144,141,201,159,253,46,161,247,112,84,236,188,198,114,51,76,179,7,196,255,43,100,147,248,124,185,186,192,156,159,219,173,151,112,144,83,175,55,103,252,54,138,21
 2,250,102,113,32,178,9,104,244,141,189,83,218,42,188,159,114,158,11,151,110,190,111,118,225,171,254,243,216,207,139,219,165,33,221,76,241,43,199,135,82,181,238,252,40,193,116,8,7,205,190,110,131,160,93,76,160,164,5,34,195,204,92,116,145,188,133,54,55,234,45,100,143,84,126,215,90,219,140,93,63,237,12,59,134,98,111,111,232,25,187,85,130,239,26,62,78,52,85,64,59,39,159,253,42,216,164,156,43,248,112,167,147,177,6,13,226,81,117,146,244,216,166,167,126,150,119,79,3,6,187,227,16,254,59,91,150,26,25,211,85,75,168,50,170,174,136,49,172,197,225,10,57,116,54,204,246,252,133,239,211,203,113,8,114,23,47,47,174,36,7,193,204,167,212,87,156,109,245,30,69,77,183,41,149,232,91,34,234,54,190,193,77,148,18,186,185,49,217,169,95,201,167,8,102,198,116,54,205,151,40,248,209,149,181,144,226,71,189,201,136,99,233,163,147,136,241,61,16,16,114,18,248,187,64,175,16,72,53,168,166,48,94,65,206,19,105,88,159,68,124,25,3,87,148,7,234,231,127,185,70,236,122,56,208,221,24,236,131,203,196,11,196,195,240,2,209
 ,56,12,253,251,227,72,208,255,114,201,150,65,214,198,225,130,74,140,174,16,87,119,95,250,23,95,57,252,152,11,164,113,216,131,253,25,23,44,143,176,7,217,244,114,169,32,175,16,103,74,46,194,249,30,173,184,15,188,161,17,220,163,241,240,148,210,5,2,36,83,16,4,81,117,10,102,80,43,219,88,106,37,198,214,221,50,232,217,10,123,197,84,215,56,190,235,198,96,135,50,185,71,154,80,253,194,224,158,14,170,253,4,10,85,58,96,26,186,105,172,67,15,137,68,197,172,173,51,75,254,224,2,88,28,67,204,51,16,123,120,219,148,39,174,210,99,204,68,177,232,119,23,196,0,74,1,200,99,182,19,247,219,193,61,174,50,11,223,39,189,62,200,81,65,220,235,142,1,43,123,127,209,98,104,56,190,145,44,84,15,54,239,251,23,178,87,181,216,242,250,90,119,129,31,237,220,14,23,143,148,101,46,144,85,120,149,245,254,221,145,169,41,127,101,188,121,111,182,224,226,199,170,61,70,218,85,222,78,142,90,225,53,246,242,190,141,156,133,0,190,80,53,225,54,155,50,0,111,86,154,57,59,228,240,164,146,67,143,236,5,156,98,212,3,204,39,136,5,183,1
 23,95,142,8,30,72,26,93,232,241,162,2,72,51,133,134,147,164,26,176,240,117,9,213,214,34,249,241,7,123,60,121,253,16,114,231,105,22,39,163,163,49,74,207,99,129,214,29,157,231,138,41,223,241,177,179,106,139,49,172,44,211,64,169,106,239,30,242,74,177,62,5,208,43,37,36,178,42,192,75,201,168,80,78,27,52,17,35,18,71,38,200,212,192,136,94,214,187,183,173,237,12,198,194,254,109,170,139,163,110,170,168,246,236,12,32,74,175,76,70,178,59,235,196,127,139,132,208,142,142,87,178,139,180,126,7,191,209,23,1,208,76,175,239,213,186,69,197,4,110,89,87,158,241,170,246,218,213,104,67,112,4,177,226,3,70,240,78,138,194,198,44,252,58,25,126,210,205,222,213,92,26,60,21,205,162,149,119,34,153,176,180,57,213,79,20,95,118,26,215,246,112,84,109,65,38,82,252,167,76,207,228,232,77,27,99,98,52,85,136,236,147,70,47,165,155,248,159,207,184,102,68,217,174,10,141,154,159,141,196,232,253,247,72,74,193,213,160,183,17,46,150,162,77,131,131,151,49,133,120,191,120,7,208,219,11,181,18,152,84,79,161,212,141,28,84,250
 ,252,83,77,35,202,21,108,60,133,59,70,216,204,238,220,209,193,70,179,250,76,11,39,148,110,11,111,18,3,44,88,164,56,42,121,50,68,69,32,224,29,182,166,138,135,143,243,206,82,231,16,93,13,227,207,159,147,163,32,138,50,151,87,177,74,99,204,223,6,175,72,89,208,195,32,75,28,166,98,110,108,222,31,241,101,45,57,138,84,191,124,153,55,7,180,79,148,236,221,161,28,247,108,223,97,35,131,204,71,138,108,117,253,118,6,147,218,200,43,212,187,39,199,73,204,27,163,9,99,127,11,253,103,227,229,127,117,118,91,20,24,81,112,221,105,238,193,205,74,231,61,79,69,124,5,85,83,100,171,188,31,56,120,67,24,174,166,192,99,3,174,41,18,167,29,230,195,255,46,125,11,52,11,175,152,14,131,85,127,138,30,80,233,228,134,61,68,55,147,125,12,124,58,212,153,18,10,155,53,56,251,207,50,150,69,80,112,162,108,73,109,19,83,141,247,70,199,34,20,31,19,8,96,208,131,101,59,25,98,154,71,183,17,236,42,196,181,217,70,82,226,225,23,198,194,116,57,218,108,126,121,108,247,39,105,34,81,172,54,171,148,112,136,129,31,249,18,194,239,7,59
 ,134,212,106,77,250,122,160,176,64,28,201,32,246,1,24,192,86,247,170,120,210,37,181,42,0,191,131,186,43,39,213,199,103,117,154,245,47,162,40,152,100,100,52,231,43,224,178,88,253,205,152,159,242,115,161,35,251,105,70,50,232,149,111,240,130,116,245,128,91,194,97,101,50,210,6,168,123,110,165,89,37,154,150,246,185,223,232,59,7,137,116,104,189,3,211,251,224,188,96,76,96,27,109,112,122,154,191,161,236,94,61,119,122,255,196,110,55,79,56,214,234,132,145,177,96,4,68,47,197,97,30,51,27,210,182,126,54,26,79,198,14,247,3,150,34,25,146,126,12,1,151,140,22,229,141,13,88,118,175,217,58,155,106,81,181,187,98,252,218,222,51,72,138,233,211,204,102,192,121,154,103,13,11,3,127,39,137,254,63,101,185,93,156,199,244,178,2,13,230,60,242,38,37,169,63,180,149,22,223,22,24,57,145,37,100,69,11,119,4,3,233,84,195,190,74,216,6,180,56,77,238,126,180,0,230,17,41,231,212,18,181,217,72,3,68,15,40,227,68,152,183,36,107,155,184,101,127,213,217,42,76,9,173,211,163,147,150,232,223,120,63,221,60,107,49,19,128,236
 ,29,156,177,93,50,174,50,77,178,93,74,48,189,139,76,66,203,122,90,76,65,127,161,238,148,250,79,159,201,58,149,129,247,27,32,232,181,128,144,130,79,186,160,44,98,1,52,37,13,134,126,108,36,71,1,137,231,163,88,177,205,21,175,47,183,133,243,107,148,186,24,56,85,53,191,33,233,86,11,37,104,160,56,148,70,109,19,193,186,66,176,60,96,156,155,57,157,189,101,26,168,49,103,225,186,245,109,71,28,117,113,76,220,110,169,211,77,191,34,118,112,154,156,43,86,64,56,163,19,40,214,173,40,97,35,157,42,240,142,183,31,187,115,226,5,56,124,208,141,24,150,153,113,77,22,141,110,25,5,111,174,215,189,133,143,230,209,247,127,99,148,175,179,233,233,242,177,97,140,68,103,132,91,235,167,62,38,226,0,188,150,122,66,125,45,40,184,10,222,43,75,193,46,11,115,120,146,81,74,58,165,131,225,13,79,185,37,169,72,147,89,68,233,45,22,88,6,214,53,66,124,25,157,193,183,220,213,34,52,249,244,170,198,38,117,104,41,167,152,159,160,221,164,152,22,205,125,63,111,196,101,102,242,146,35,12,56,84,50,110,146,124,201,196,113,135,22
 4,73,222,244,66,7,174,15,36,44,200,122,237,19,247,63,25,74,234,46,160,254,31,209,82,254,245,208,112,27,230,241,20,188,120,182,185,198,4,225,99,191,2,45,204,90,13,190,134,43,158,111,76,140,226,38,181,198,154,213,242,118,110,72,67,108,189,139,95,77,232,221,68,197,34,178,49,86,167,77,170,99,96,6,1,48,43,10,100,246,68,54,157,140,7,29,109,201,15,39,207,134,22,101,32,31,46,46,143,227,237,247,164,46,74,238,222,95,164,216,124,219,195,22,1,70,169,240,162,19,233,32,172,34,131,90,130,41,235,29,136,224,74,123,62,86,109,239,159,66,43,227,136,98,171,18,33,166,31,3,58,229,108,101,251,77,201,12,187,111,228,160,70,100,57,109,169,225,202,38,49,2,78,114,158,206,144,33,3,58,162,114,105,221,102,109,49,232,244,216,214,183,107,28,87,83,119,91,177,176,185,44,215,225,21,26,236,30,22,243,93,54,26,151,168,22,51,33,178,146,221,22,32,55,182,235,124,237,224,206,141,118,195,71,193,101,50,59,49,165,196,190,163,3,143,114,82,157,64,97,146,64,128,177,203,38,115,169,226,100,155,46,195,40,44,89,151,80,172,89,21
 1,111,154,12,160,11,21,89,228,179,120,96,196,216,83,145,212,74,74,216,42,165,104,119,56,195,113,169,249,178,212,89,219,236,140,157,213,141,121,232,107,138,135,187,106,96,148,41,108,166,230,12,62,165,65,139,15,230,34,212,73,134,231,92,93,251,147,95,221,165,231,220,234,224,63,164,144,173,7,114,231,191,193,193,157,233,72,14,61,190,209,41,244,70,51,92,208,63,144,190,13,205,47,140,6,184,100,249,232,160,195,28,127,225,223,73,161,179,178,134,252,166,17,176,250,188,255,227,49,113,241,81,72,134,81,17,61,236,247,70,153,130,105,249,188,137,122,188,14,226,192,171,201,149,254,176,28,116,85,241,34,45,45,251,29,216,171,92,16,128,47,77,40,38,134,130,135,181,22,229,72,149,48,199,153,117,207,60,23,21,2,101,102,6,246,110,254,222,71,30,180,88,72,214,113,82,177,1,239,65,218,121,42,8,78,251,133,13,7,158,245,74,33,169,24,66,216,219,209,25,199,135,29,109,199,140,18,37,5,61,134,124,162,104,70,140,180,248,146,38,61,146,109,225,160,12,72,82,86,238,74,41,119,165,143,64,116,96,177,241,236,127,65,115,83,
 219,201,142,198,50,22,64,235,21,94,113,19,145,206,9,149,88,137,172,208,172,149,185,2,24,107,91,69,36,122,126,215,148,81,152,16,15,21,161,105,175,234,134,120,55,25,117,0,91,118,89,164,242,133,191,160,155,77,205,235,248,90,230,107,75,99,200,2,160,149,31,22,156,24,16,42,105,54,76,247,185,72,82,74,105,204,86,56,157,8,28,115,11,53,113,46,207,249,105,75,136,192,211,176,215,8,216,12,107,211,14,164,170,197,156,197,84,38,229,112,33,58,93,42,100,75,1,139,169,232,231,152,11,148,129,32,67,89,137,135,168,183,112,24,90,38,22,228,248,152,134,179,9,226,139,236,56,252,205,78,75,167,255,173,186,89,199,172,19,33,175,41,109,62,60,155,131,184,160,5,8,228,162,171,122,191,214,13,21,124,148,130,92,14,242,96,32,140,63,220,78,58,177,173,129,158,99,225,51,144,136,126,201,206,89,31,177,207,89,68,3,114,116,35,92,219,190,153,63,15,159,45,185,194,72,138,4,109,31,17,173,207,43,121,239,129,68,223,244,13,21,14,136,217,158,161,140,83,255,106,114,156,67,151,139,189,251,120,67,65,221,76,245,165,205,124,72,245,4
 5,247,241,186,16,198,172,166,78,198,33,208,131,224,163,248,24,54,183,48,8,25,96,179,159,4,174,165,253,150,28,151,49,5,192,27,0,195,151,127,97,254,198,18,64,201,37,248,201,126,24,15,169,199,229,39,105,171,142,97,114,89,190,147,194,231,71,241,55,235,97,236,138,70,181,251,18,201,214,108,40,249,33,158,96,184,52,25,125,251,162,45,75,56,240,6,61,127,64,136,245,60,179,76,37,121,154,252,204,12,71,15,197,27,136,114,239,169,85,230,154,196,137,56,86,237,143,254,202,173,147,6,223,140,104,91,154,242,45,136,9,242,53,241,35,145,18,186,54,152,73,103,36,140,100,15,74,142,34,55,48,194,252,84,198,246,220,131,138,154,222,159,163,226,229,217,98,122,122,135,185,173,205,146,14,36,200,100,238,166,171,177,169,183,199,209,199,104,162,244,193,66,43,61,81,150,170,65,147,95,211,81,197,255,8,128,238,91,44,142,3,195,217,181,169,102,203,33,78,25,252,223,84,117,124,50,130,215,19,53,180,163,4,191,43,50,160,133,85,38,94,170,254,255,113,165,7,24,11,160,173,27,107,35,188,99,135,232,111,29,36,50,200,212,213,100,
 81,253,133,65,197,248,40,143,234,62,144,115,132,89,127,16,65,117,22,138,1,214,186,131,82,225,226,253,227,40,161,150,139,90,135,38,12,208,211,193,125,89,85,241,226,56,199,225,118,28,6,220,103,61,72,18,204,181,197,224,24,136,211,222,156,228,176,239,164,87,137,151,147,132,209,229,106,165,217,115,131,125,212,204,110,172,129,134,3,36,64,21,151,68,168,22,41,162,50,158,0,64,112,246,223,96,148,163,201,43,89,236,0,119,253,109,191,52,253,12,86,65,128,209,215,36,36,79,156,209,91,36,176,189,240,225,47,113,12,59,48,110,82,25,30,246,125,83,154,1,87,212,134,169,183,126,100,62,57,126,108,60,37,10,74,46,125,70,9,194,190,73,8,204,232,202,229,255,215,71,63,163,46,69,121,166,170,133,36,212,235,249,76,110,27,108,207,95,207,168,209,169,59,201,155,160,75,220,67,106,212,214,29,87,158,182,179,160,41,119,160,231,246,77,205,219,12,50,3,75,65,227,16,214,181,234,250,169,224,106,162,79,163,111,72,179,253,77,81,99,112,128,60,242,134,132,20,224,192,147,159,82,35,43,220,113,75,244,219,26,163,252,206,96,25,5
 3,223,247,220,39,168,180,164,199,251,120,56,213,199,90,125,10,143,139,150,242,50,196,149,86,240,92,33,222,203,230,216,229,149,154,215,64,110,97,239,161,215,232,55,126,145,50,91,179,90,148,103,129,216,219,145,222,80,154,183,0,89,27,189,47,32,224,4,78,181,201,187,148,58,95,75,165,200,95,153,53,137,175,237,28,31,229,159,190,33,133,50,142,20,73,38,148,52,120,179,141,225,111,166,46,179,22,231,54,2,67,213,113,100,37,139,178,237,194,128,106,113,187,147,215,48,5,155,106,164,91,84,247,142,235,94,187,219,215,225,251,14,82,160,230,124,214,72,147,159,129,20,3,212,237,10,196,254,110,141,54,229,18,121,50,140,172,197,40,103,100,244,134,101,76,92,43,214,95,220,60,177,65,150,178,97,103,94,236,31,203,152,48,33,95,70,147,145,219,166,74,135,163,189,30,35,84,57,254,22,46,46,45,49,204,245,108,97,188,185,92,245,222,172,18,156,136,67,182,44,186,239,163,202,74,147,3,61,181,124,227,56,12,172,7,0,193,22,103,170,140,195,204,9,62,207,234,145,61,156,25,151,173,113,137,234,99,202,65,160,176,232,2,108,76,8
 8,12,124,81,54,14,245,134,185,241,194,128,29,0,106,198,149,14,123,190,27,155,99,217,169,97,140,183,228,137,8,33,134,181,178,235,55,201,192,186,130,146,29,29,156,45,54,219,124,79,77,214,252,185,44,52,254,57,200,176,53,18,150,237,66,106,31,252,187,152,37,59,203,184,177,30,254,225,73,113,238,173,1,169,16,98,61,46,193,7,247,228,99,199,73,169,70,55,114,39,79,181,27,124,242,113,255,30,59,55,57,164,8,144,95,200,76,163,147,164,219,14,174,241,240,240,103,126,144,110,201,129,200,159,189,104,231,118,235,2,152,106,144,89,21,121,101,41,200,39,183,86,10,3,174,205,142,79,62,93,100,69,173,185,34,62,221,104,57,148,246,61,0,178,191,24,184,246,137,101,4,91,57,229,242,78,131,201,82,137,168,181,179,51,192,151,176,203,122,116,80,216,197,252,17,155,254,94,215,112,212,208,202,154,178,231,94,42,28,242,147,17,90,213,184,120,52,86,85,223,69,116,8,233,229,28,174,147,27,231,48,141,151,151,78,47,248,164,77,162,135,152,253,166,143,38,160,6,160,125,169,210,222,19,93,241,46,182,255,204,225,89,193,26,213,92,
 59,157,29,92,183,69,203,73,141,74,4,51,136,88,217,84,21,85,71,105,153,226,13,103,185,219,195,3,222,165,2,122,27,154,4,3,213,88,68,240,53,252,45,126,238,169,82,114,200,70,209,193,201,254,186,68,0,86,108,12,103,178,62,213,175,34,73,141,21,26,31,122,251,160,134,43,209,15,221,184,56,28,95,33,179,129,73,218,35,17,133,93,221,150,49,84,230,168,183,201,183,47,180,203,61,180,107,223,65,106,65,150,178,198,185,228,255,190,103,38,131,82,182,209,36,25,56,237,58,166,39,111,222,217,184,25,242,50,235,6,231,71,246,190,174,228,181,146,149,88,207,139,84,184,242,124,143,226,149,66,230,251,163,109,52,102,143,75,150,79,209,89,203,104,194,61,34,5,235,164,4,25,2,219,206,218,115,32,230,124,113,95,106,155,106,220,236,14,88,61,172,113,183,151,175,84,56,2,234,78,102,34,139,191,46,104,101,195,22,67,242,153,32,251,14,73,121,214,157,93,42,237,96,248,236,50,185,121,60,214,13,108,113,212,5,117,34,227,88,195,36,230,167,12,59,81,255,105,84,30,8,180,32,129,82,153,88,27,12,192,82,253,87,208,23,34,30,95,40,10,12
 6,239,68,124,185,210,57,61,156,241,220,41,221,69,101,29,113,164,11,212,241,79,69,125,180,54,220,247,67,8,147,1,250,125,143,83,252,48,53,189,32,179,41,230,181,249,132,210,245,65,173,116,111,233,231,105,61,214,249,167,75,23,213,168,93,113,7,138,105,71,71,163,203,235,211,171,212,127,51,221,144,124,130,188,105,248,241,198,91,149,250,220,197,185,201,118,124,95,73,166,117,113,221,134,57,104,152,200,64,209,156,71,38,226,92,134,236,70,24,21,150,195,64,158,20,177,247,27,250,52,132,168,106,190,169,157,43,59,139,62,196,85,4,225,130,19,17,189,64,153,83,48,151,110,8,184,235,4,25,160,169,28,100,61,60,74,185,154,137,205,147,217,213,105,228,139,224,114,144,24,44,198,238,201,69,208,30,26,99,183,145,78,100,173,3,221,96,74,81,224,184,170,122,240,6,113,182,31,194,16,160,215,243,207,79,243,251,155,19,110,185,174,176,83,203,90,240,19,255,210,154,84,19,89,93,58,168,166,167,202,151,103,120,193,139,207,123,119,6,72,16,184,36,22,249,87,82,179,41,103,109,208,21,81,240,110,10,79,11,248,140,25,242,95,12
 3,142,145,245,115,133,18,133,61,243,59,198,132,96,101,111,24,52,174,167,113,5,94,90,197,31,168,120,27,50,47,11,237,49,129,176,157,18,240,159,192,214,28,121,199,204,217,136,208,49,164,78,195,83,72,103,119,191,68,136,80,41,0,143,219,3,108,220,8,51,247,27,35,84,65,80,156,14,105,112,108,159,125,80,135,71,126,36,128,12,234,12,117,63,100,3,56,232,188,76,85,225,40,20,29,84,0,6,78,174,74,153,197,151,64,154,59,201,165,163,37,230,163,171,118,250,182,9,223,104,23,99,171,81,191,127,94,179,85,165,154,172,148,119,35,201,16,17,125,182,177,14,201,4,245,146,255,79,133,243,96,144,94,8,140,184,44,95,188,39,158,203,195,54,230,57,76,154,86,220,138,143,124,54,230,156,207,233,229,122,250,122,109,80,24,171,78,1,104,198,184,95,199,34,141,166,109,132,209,129,255,136,64,41,56,150,48,172,236,170,102,234,172,30,249,213,220,184,27,179,105,164,158,247,231,75,232,33,56,225,221,161,160,51,243,203,8,38,190,11,213,26,248,66,24,36,3,5,135,104,34,201,41,185,253,64,190,66,169,137,122,45,54,238,96,169,83,67,213,1
 29,237,43,21,179,117,226,152,217,180,151,72,251,240,188,152,208,3,247,116,48,5,190,143,65,150,135,156,106,21,158,137,69,153,172,89,151,53,72,178,250,8,95,194,24,120,111,178,37,23,191,78,184,254,199,136,159,30,183,184,168,244,159,13,170,73,89,83,33,135,228,70,192,178,3,10,33,200,65,126,248,22,189,93,153,193,80,174,10,133,235,19,59,194,53,189,207,212,96,203,15,68,250,55,167,206,57,225,142,206,218,213,7,242,219,38,191,216,112,61,211,52,76,238,80,214,72,95,135,130,24,151,86,19,163,61,247,119,65,226,29,56,100,17,72,94,133,23,209,146,195,234,218,150,68,25,243,211,107,60,105,138,230,31,87,220,207,171,162,116,231,181,198,79,184,125,246,29,149,50,93,53,223,185,162,48,216,90,72,105,86,92,43,66,58,38,140,164,155,33,226,38,143,138,196,203,102,174,170,192,205,187,239,236,148,94,89,44,53,92,230,161,195,247,112,251,11,62,94,188,191,168,12,95,107,7,184,225,156,142,161,247,228,242,214,232,67,15,210,160,238,229,199,223,73,32,57,61,76,87,65,30,143,53,34,156,47,144,52,203,194,110,81,226,31,252,
 144,61,194,28,125,112,233,33,23,147,35,140,204,20,134,204,151,12,128,193,171,56,70,224,128,99,10,159,129,41,202,5,167,11,216,1,171,162,0,69,122,164,249,87,209,254,91,156,125,241,28,217,235,120,91,244,195,166,83,192,23,19,28,64,81,203,199,254,199,92,202,52,26,80,232,203,113,235,192,77,218,129,193,192,217,7,83,184,205,160,53,138,189,102,54,178,27,167,146,44,187,155,168,237,86,184,193,92,182,150,207,125,14,37,137,20,16,152,234,133,122,58,232,120,195,104,2,218,111,12,48,33,128,30,77,234,65,209,50,168,165,36,202,55,178,238,129,84,86,254,113,20,215,153,97,99,86,188,66,62,99,5,213,50,191,245,82,135,105,84,190,146,59,184,147,146,232,115,164,189,12,51,15,183,134,239,8,23,167,156,219,244,29,233,41,99,174,211,129,179,161,30,240,176,22,155,168,207,61,25,254,126,208,71,243,227,62,15,129,12,0,157,55,7,36,142,202,219,189,10,80,208,153,160,179,207,174,125,235,70,58,69,49,113,240,72,145,103,45,94,103,91,238,164,238,96,249,62,155,202,119,19,253,142,198,151,6,202,140,228,97,15,71,119,166,98,13
 4,247,7,230,13,189,183,185,118,238,118,161,67,54,32,100,168,82,20,211,207,147,36,49,233,58,180,67,231,201,11,26,55,93,17,10,72,53,210,80,35,57,15,210,110,156,210,56,62,171,139,185,94,205,81,70,155,231,152,164,139,125,176,55,219,228,161,246,163,56,57,76,143,53,174,176,78,235,86,201,92,132,26,154,78,81,143,33,77,139,20,200,68,76,103,66,239,227,199,101,249,87,246,38,217,224,62,131,15,148,102,179,40,57,39,225,110,89,233,79,10,62,212,11,204,210,54,232,200,194,40,82,35,193,199,151,35,162,76,80,37,47,219,1,95,132,55,233,148,130,190,181,102,161,117,108,124,59,121,255,134,58,194,248,101,82,139,210,157,31,36,54,141,141,225,103,239,57,235,165,224,177,56,223,254,177,145,30,203,105,85,235,190,101,52,204,221,9,207,36,161,61,44,162,214,219,58,171,93,34,122,33,209,109,226,128,156,181,189,98,173,240,124,243,127,124,43,236,116,105,236,193,64,4,77,44,90,142,160,197,110,202,120,224,154,62,59,200,96,64,85,103,239,172,162,253,110,190,107,195,243,60,191,70,94,224,119,132,3,6,36,115,134,88,239,235,
 189,81,26,170,108,1,5,157,22,225,111,165,107,60,163,110,36,110,23,45,22,236,0,103,119,17,190,249,146,37,237,21,254,6,219,87,112,81,35,112,47,125,159,162,67,78,186,100,245,195,99,83,209,77,184,117,21,54,95,144,35,103,132,253,207,221,149,100,239,105,215,31,118,113,74,208,140,94,163,111,203,98,39,223,108,217,254,233,210,247,40,90,250,214,189,227,155,10,84,86,154,44,108,45,93,48,158,214,23,125,97,246,219,198,180,49,158,36,219,121,5,227,207,205,24,58,46,189,58,108,16,196,107,73,97,139,124,64,19,76,111,25,69,75,254,26,197,63,213,205,104,183,233,199,100,33,63,40,82,43,9,64,163,20,105,146,91,115,90,221,56,5,150,54,217,54,14,64,96,245,127,3,104,139,73,118,141,89,67,0,102,198,138,65,231,161,67,185,156,232,31,146,173,9,181,199,167,160,180,103,69,98,150,77,67,180,124,56,94,66,186,218,33,152,6,37,188,157,38,31,47,132,106,220,76,190,125,145,29,147,32,77,11,79,126,2,195,198,161,189,235,33,229,92,139,156,208,141,80,197,234,114,160,237,113,17,161,116,20,169,16,127,1,20,45,207,119,172,114,36,
 177,192,13,140,125,130,175,89,95,122,145,96,204,35,114,152,248,111,43,34,11,161,92,52,219,230,165,57,49,228,220,136,172,147,102,48,214,81,136,63,108,111,212,246,38,211,186,140,85,84,138,10,200,251,19,209,53,253,66,6,237,154,34,246,77,138,102,255,78,147,112,43,251,79,207,211,209,232,191,171,161,215,68,217,74,35,110,50,221,205,40,146,166,190,155,101,187,132,70,22,218,78,94,109,193,219,110,27,152,75,109,31,63,123,5,197,207,77,117,85,135,170,28,238,94,162,98,160,20,197,60,211,217,178,90,157,106,191,227,111,60,23,38,43,187,24,201,207,112,44,14,145,242,231,111,146,170,157,104,11,172,220,204,13,208,222,125,246,8,178,229,152,203,85,57,217,25,135,82,172,159,81,97,41,79,179,177,13,215,94,137,46,250,137,254,92,94,96,108,84,142,252,156,0,146,247,206,252,177,136,228,193,157,5,208,197,114,207,98,64,160,80,19,190,65,115,22,153,248,89,228,182,45,35,161,137,90,239,63,125,225,185,97,96,231,152,166,168,129,155,122,33,44,172,81,75,23,154,37,45,11,50,179,7,111,16,160,211,75,33,3,193,58,9,186,36,
 189,107,22,228,143,90,204,246,126,244,77,179,179,115,137,5,120,197,202,125,70,77,197,145,115,112,230,210,151,124,39,42,136,204,252,234,185,88,40,166,24,195,49,83,133,55,234,63,150,196,166,202,59,19,46,71,238,140,74,27,119,112,188,14,0,111,65,144,173,133,23,185,25,171,186,168,237,136,42,0,136,20,134,76,150,135,68,63,133,141,35,154,108,43,201,250,26,24,3,26,150,230,236,237,125,153,77,213,96,23,197,69,193,216,187,230,145,187,103,127,158,71,45,22,180,83,28,181,183,84,241,228,189,110,196,249,15,137,53,137,32,7,202,39,169,129,116,126,138,60,120,210,104,71,82,173,170,104,211,93,2,172,44,171,159,15,6,41,56,17,237,231,128,44,51,62,43,222,209,90,123,220,231,122,81,223,129,106,35,96,229,210,156,85,59,5,28,3,232,197,101,52,99,34,109,122,4,44,242,227,185,56,17,76,248,228,243,13,8,74,209,224,78,192,174,30,223,206,178,165,37,222,2,131,68,234,179,225,146,111,127,79,135,136,239,60,110,57,211,35,234,255,151,199,72,67,58,0,63,177,19,248,107,4,173,119,63,43,165,76,26,137,70,90,182,128,69,235,14
 8,202,206,218,121,16,150,48,48,245,67,126,246,167,54,164,218,35,145,192,181,71,176,43,195,81,229,236,89,105,190,167,168,157,92,98,152,172,18,255,49,76,231,155,217,117,236,63,238,232,100,167,227,7,93,249,0,111,152,252,209,148,226,209,3,66,110,202,132,201,106,232,206,116,6,116,140,21,210,91,87,58,25,151,147,61,231,148,25,238,12,10,237,248,236,185,161,187,57,174,140,149,249,38,202,82,140,255,53,52,112,217,131,29,167,237,199,35,132,224,240,148,2,53,86,55,97,36,220,79,67,216,86,55,44,55,116,63,51,106,104,14,212,154,160,29,90,34,193,91,146,78,76,27,178,87,194,80,158,249,64,114,56,239,215,28,233,234,147,164,236,166,7,126,249,104,149,83,77,195,126,192,60,189,57,252,42,191,62,12,190,235,178,173,245,194,75,244,49,64,66,102,83,11,52,93,33,164,69,172,134,119,14,133,191,33,20,198,5,70,218,69,108,169,9,122,11,180,21,130,56,26,105,100,37,127,154,70,185,95,51,190,232,146,5,99,201,37,161,226,65,4,61,69,211,215,197,220,223,148,0,35,103,116,41,15,136,231,18,110,164,85,250,156,249,172,36,43,144
 ,220,114,37,223,41,8,120,210,75,11,77,2,67,130,252,150,18,196,231,206,8,184,173,79,3,200,144,28,244,134,180,160,118,150,157,11,161,233,70,106,117,115,100,255,254,57,72,106,37,202,30,236,103,85,37,2,102,211,168,35,209,220,148,116,5,230,249,19,110,105,11,34,199,245,55,178,85,146,8,67,157,226,125,135,115,89,19,116,226,234,175,92,86,125,176,50,229,231,241,203,140,144,227,230,69,138,74,193,202,77,197,47,214,226,141,119,241,124,153,189,125,3,176,80,76,227,61,76,168,217,59,240,134,128,87,184,193,33,42,159,194,192,181,97,182,182,170,224,114,210,11,179,83,238,18,167,62,48,20,25,115,28,222,191,236,230,150,55,176,237,130,183,18,248,225,115,230,248,63,129,106,184,140,47,252,227,116,197,224,65,250,18,91,182,213,68,157,199,229,128,166,80,154,7,79,220,7,182,157,57,187,252,205,254,73,195,178,183,8,255,0,77,102,185,85,70,210,222,144,82,51,252,11,45,207,125,5,58,170,115,164,216,64,189,15,63,29,62,135,190,22,161,141,248,32,162,167,23,142,110,136,27,181,146,207,124,204,99,133,202,250,169,124,13
 ,247,7,54,117,38,33,114,98,138,59,99,32,39,98,123,251,152,190,31,200,15,126,182,34,199,45,63,55,77,179,148,40,234,46,81,130,110,130,0,71,3,138,190,24,194,233,94,21,253,254,168,49,115,152,216,159,156,116,235,128,6,132,23,253,242,76,21,179,176,162,154,92,130,143,214,225,171,212,131,89,77,25,201,190,233,126,84,115,153,165,130,10,80,22,169,170,102,136,255,84,164,246,95,205,101,143,115,97,195,7,166,170,222,4,186,135,42,255,78,73,253,132,98,253,102,42,228,49,170,129,60,33,129,61,162,80,28,105,122,209,99,7,211,64,64,235,217,221,175,222,53,249,131,175,101,2,81,87,162,182,64,0,253,100,227,61,233,108,185,185,86,161,68,142,116,36,125,180,188,226,95,249,30,169,105,17,82,97,118,89,89,175,225,111,96,200,51,65,77,187,12,160,85,232,192,142,226,54,96,1,22,162,70,200,34,15,180,161,251,126,145,12,205,189,21,197,154,53,119,162,120,184,71,66,223,62,246,65,245,212,215,187,91,210,15,227,214,28,167,167,255,195,120,207,229,153,11,91,76,125,248,182,205,49,195,72,213,220,60,208,241,121,142,183,65,69,1
 84,170,110,136,235,82,249,31,111,27,137,68,92,36,40,81,241,70,84,14,47,167,83,79,9,117,217,237,12,202,234,63,21,105,210,59,210,27,39,120,173,75,170,8,204,150,5,138,188,162,109,174,253,94,213,15,246,102,76,134,154,105,226,27,136,138,93,193,61,24,203,94,238,215,80,171,140,114,193,214,210,166,65,52,211,91,175,0,134,9,164,65,100,47,85,133,131,131,58,49,221,174,71,186,157,13,168,238,134,119,254,233,169,72,41,211,156,218,253,118,45,101,162,169,59,116,66,177,255,228,77,46,235,7,77,168,225,249,179,168,3,134,179,168,21,1,27,235,246,46,169,139,45,110,51,196,75,9,244,75,18,207,240,164,251,68,114,176,11,133,47,242,49,225,129,146,253,147,0,190,45,253,138,28,126,103,61,114,158,97,201,24,162,202,229,245,128,111,249,80,36,93,49,201,78,178,39,54,250,17,48,231,62,218,11,250,104,78,70,44,193,177,189,127,69,61,220,228,246,33,212,141,122,212,85,64,157,222,92,49,130,121,75,135,50,73,229,77,76,127,160,48,47,207,216,73,210,118,218,203,162,40,155,253,57,101,131,231,37,181,174,4,107,178,114,247,173,9
 4,193,96,226,103,16,67,55,141,39,103,118,206,18,216,9,49,91,148,157,126,106,211,197,90,162,105,224,106,123,5,106,178,85,243,202,103,2,129,224,25,21,174,55,2,15,120,110,98,2,46,163,169,136,236,240,241,189,106,132,196,86,100,74,34,227,127,21,135,100,214,31,17,227,69,88,156,48,160,47,81,219,94,86,82,185,176,28,197,66,134,59,204,50,246,199,205,107,18,159,182,233,4,183,54,144,163,56,186,65,75,191,255,39,21,94,25,209,189,5,38,22,233,80,115,60,159,204,90,88,252,92,171,92,135,71,163,163,159,168,249,204,215,132,31,154,167,161,129,8,84,109,74,129,50,193,196,238,41,157,125,65,109,119,84,7,205,43,203,40,73,70,47,239,143,252,184,95,123,141,228,85,46,72,44,167,54,158,48,213,83,62,161,189,122,235,211,161,48,24,216,188,20,219,58,48,87,176,41,1,70,186,90,163,95,196,206,121,105,252,241,77,95,9,140,73,166,170,101,248,44,238,238,156,9,138,148,173,23,184,87,160,65,196,61,151,217,20,76,156,123,182,169,6,81,252,32,176,229,70,52,244,136,96,88,41,49,183,153,129,12,210,163,187,181,116,90,243,200,131,
 84,216,46,215,214,121,96,193,244,130,123,74,174,128,219,138,215,21,236,235,27,82,223,206,94,90,234,41,244,243,240,146,8,255,99,194,230,237,207,49,122,223,146,37,222,61,195,77,83,44,137,14,255,129,251,121,93,219,118,50,181,45,17,132,76,140,81,93,73,168,142,91,199,175,153,151,215,196,175,125,44,138,119,36,80,97,102,109,47,218,217,29,207,181,185,169,98,153,93,160,84,169,79,178,73,78,190,196,179,99,63,242,242,217,115,249,214,94,43,193,4,209,245,7,116,142,168,79,225,127,69,88,65,177,114,75,74,17,234,144,29,206,162,190,144,232,102,13,148,120,238,167,78,217,172,144,87,234,151,3,36,2,162,12,140,40,57,97,190,244,96,177,48,60,46,225,19,191,145,220,199,62,26,193,52,36,205,209,11,148,188,71,153,170,158,42,32,241,157,54,115,214,249,126,183,156,253,117,109,204,127,142,8,184,156,76,66,155,34,5,159,4,58,211,70,58,68,59,168,159,225,215,195,172,83,100,93,227,203,73,39,176,21,229,68,154,152,109,146,46,58,246,165,189,203,146,80,216,88,31,25,159,33,193,226,129,112,53,200,1,99,252,123,67,222,206,
 179,44,43,105,226,34,111,1,99,26,24,158,198,50,116,209,185,186,85,140,49,253,33,110,151,78,146,45,186,76,41,18,216,51,54,5,79,144,116,2,177,20,200,181,214,19,71,89,42,104,136,78,213,48,170,97,246,154,138,175,49,66,78,50,17,144,133,38,217,22,70,117,40,166,60,243,126,27,144,71,219,230,115,77,75,23,160,137,42,92,167,57,58,178,18,45,126,248,206,45,210,205,219,8,253,198,32,229,64,117,251,187,22,46,114,248,104,175,89,97,208,57,128,255,110,253,91,218,76,79,105,73,168,7,77,12,19,1,8,154,92,117,135,5,85,201,101,224,33,72,203,160,191,177,136,49,76,143,19,184,125,107,127,89,202,141,11,49,7,213,41,168,183,193,36,242,79,17,59,214,185,82,102,148,114,170,218,230,124,136,40,57,162,202,74,95,139,68,48,137,122,55,37,182,107,221,173,214,105,22,51,224,168,105,217,182,142,114,210,130,24,118,114,157,47,165,42,21,191,156,202,211,67,8,35,24,131,77,156,31,161,48,246,198,158,34,167,242,55,9,228,212,169,212,253,18,82,183,102,2,212,100,119,248,1,54,244,99,118,250,78,28,68,78,90,202,168,69,85,127,201,20
 9,189,218,1,121,224,234,181,74,149,109,228,241,35,81,136,199,107,200,4,187,205,140,140,156,19,80,4,78,195,45,147,77,206,164,1,196,142,204,167,58,190,113,119,89,171,141,169,33,240,247,192,173,237,42,119,152,105,72,0,240,129,8,192,114,9,83,185,30,168,136,30,187,224,254,135,159,168,172,248,1,106,216,59,229,94,241,145,229,100,52,150,41,44,240,186,69,172,42,242,2,182,181,16,79,66,212,133,217,23,85,92,239,56,159,75,124,78,221,85,238,214,48,41,10,240,239,98,65,51,3,28,117,227,203,201,149,152,214,163,15,208,109,92,50,8,149,179,227,180,49,85,237,243,146,122,18,196,145,135,142,14,203,0,57,85,44,149,227,36,16,24,74,62,171,27,11,39,77,62,102,54,172,121,7,86,245,182,42,94,227,231,174,216,34,47,170,152,8,22,140,78,92,204,240,35,206,138,126,32,159,60,143,10,58,89,254,127,234,145,169,44,182,245,159,13,115,58,41,59,196,6,237,184,156,167,174,178,171,20,12,4,183,49,96,214,253,24,160,142,233,246,187,51,133,33,18,164,109,33,88,245,198,132,77,239,4,237,68,32,45,226,111,126,219,80,127,21,188,241,2
 30,72,206,3,18,50,158,208,147,95,114,103,155,82,34,69,239,139,219,67,112,246,170,110,85,160,65,247,250,109,48,35,85,114,220,113,215,28,61,151,226,115,62,194,86,155,145,254,182,30,189,245,40,233,185,179,225,113,123,122,24,36,159,165,174,3,238,58,242,128,94,237,175,164,57,152,216,9,130,228,92,19,234,224,24,209,31,23,254,176,246,3,246,197,19,164,35,118,205,248,111,237,249,152,52,248,206,71,207,206,58,130,43,150,34,106,110,143,24,74,205,231,33,57,250,97,228,48,36,47,91,235,222,139,0,19,205,35,160,224,137,6,174,52,67,200,160,160,66,4,101,42,215,90,141,67,252,224,144,114,55,44,204,55,56,18,185,108,172,3,46,137,10,138,237,61,248,48,180,45,57,52,98,171,93,155,87,97,93,6,117,148,63,69,99,81,203,170,230,120,99,97,171,9,9,119,79,95,27,142,77,125,111,247,202,240,202,226,210,10,76,162,20,82,54,244,91,10,164,54,197,124,187,168,124,119,43,180,195,187,174,194,68,29,91,23,120,50,230,109,158,194,123,94,222,104,62,60,184,106,105,52,6,78,220,230,36,128,191,96,136,0,97,214,247,128,91,176,184,75,
 1,80,132,108,133,163,167,47,226,4,249,241,206,10,180,93,89,134,109,43,22,207,252,250,232,128,132,6,168,255,231,184,211,117,235,144,151,127,233,106,60,34,46,17,194,19,164,100,83,81,12,170,245,39,51,74,192,76,143,49,185,11,252,195,242,175,152,165,74,196,73,49,177,241,96,250,107,46,131,189,76,47,151,54,93,1,225,203,106,249,32,165,29,207,116,138,143,129,41,64,190,47,42,61,157,240,140,46,205,218,141,111,145,253,80,202,249,193,147,68,134,137,81,139,130,231,255,223,188,78,215,124,247,254,246,49,230,32,221,202,174,19,222,214,198,175,130,128,10,58,30,104,165,78,222,92,192,43,149,208,128,114,130,149,30,129,83,254,62,169,29,97,88,13,19,36,103,30,35,9,179,69,69,103,80,222,88,16,217,201,146,249,2,237,180,111,116,10,142,112,215,76,20,63,72,8,49,239,49,19,138,25,131,117,238,185,49,64,154,197,183,85,166,48,137,66,172,93,112,225,154,242,247,121,87,169,136,11,77,65,55,11,158,176,219,93,201,21,82,135,163,78,187,60,247,223,85,74,112,226,69,234,110,97,230,158,124,167,106,25,17,168,12,31,167,127,
 31,187,206,143,159,155,236,218,234,81,17,31,204,93,176,79,160,243,218,180,182,249,154,85,183,42,158,217,147,15,149,250,240,246,163,113,92,206,112,67,32,151,131,185,82,140,242,169,76,158,145,56,136,218,234,193,172,74,197,236,51,81,218,30,33,70,114,125,173,20,118,154,27,176,19,144,212,88,26,142,98,97,203,43,171,74,51,166,143,233,192,250,145,26,61,86,14,164,43,155,127,34,2,232,12,165,166,140,246,31,129,92,60,9,244,33,220,210,235,38,142,192,222,2,129,214,29,91,168,59,186,71,213,205,52,127,113,17,240,51,119,175,214,177,68,226,102,65,45,242,63,253,50,131,198,246,101,10,20,106,212,119,34,188,28,43,238,206,189,47,103,208,22,105,28,160,36,53,76,57,241,137,172,204,191,248,239,8,255,136,234,245,153,61,170,112,208,108,67,77,46,21,211,113,4,162,187,83,123,147,72,246,26,111,166,132,242,214,93,180,123,29,2,40,20,132,113,29,227,127,120,162,177,19,139,2,79,137,233,227,206,218,247,103,153,43,46,51,106,86,187,237,169,245,234,122,155,151,217,117,56,131,130,135,218,129,85,76,220,6,63,34,222,67,1
 16,132,91,128,70,101,84,220,255,85,38,199,229,70,169,77,33,172,7,151,37,140,163,77,211,93,70,169,254,158,230,113,142,26,64,94,64,166,79,20,23,217,173,66,230,179,0,203,21,28,167,57,237,198,213,49,11,239,99,121,168,215,218,104,254,47,101,150,0,163,31,168,18,251,251,162,133,114,173,175,192,52,110,176,250,63,76,125,208,51,161,244,244,38,76,164,183,50,215,22,108,101,202,175,193,178,226,205,73,216,237,205,113,76,40,150,20,135,114,24,108,146,30,113,210,249,63,223,231,80,182,240,54,7,62,248,224,127,67,33,95,154,39,114,8,172,225,240,102,57,31,200,11,135,57,238,37,92,104,117,2,63,73,211,70,123,149,159,114,243,197,163,223,8,232,157,26,51,218,211,212,40,144,181,232,252,194,66,224,201,170,58,149,104,146,93,70,62,68,243,25,214,226,71,218,31,127,213,23,50,14,54,158,36,3,2,226,101,222,130,128,188,118,132,204,28,52,99,84,86,163,132,245,191,43,142,73,59,57,143,0,253,12,219,76,187,153,12,153,33,17,32,228,184,139,50,81,140,253,253,240,99,148,159,107,165,20,8,196,91,50,48,165,165,198,53,72,146,1
 00,235,127,176,21,98,59,197,142,159,190,15,147,200,62,67,253,182,177,17,8,143,137,43,183,154,10,254,7,243,221,244,179,91,184,228,139,33,221,234,40,82,218,71,91,80,52,194,38,218,252,150,199,61,109,213,210,124,198,128,64,152,130,63,133,73,67,2,53,218,46,51,50,125,218,170,86,124,163,179,67,56,255,33,196,216,174,224,17,188,99,110,108,249,70,113,179,177,87,15,93,42,46,211,216,200,91,69,1,91,123,18,122,194,94,254,18,60,102,206,254,103,130,200,91,123,13,73,149,197,195,99,139,47,8,177,232,196,29,86,79,246,125,192,53,210,117,57,196,73,64,37,123,194,48,92,139,85,152,92,163,50,131,97,171,25,81,34,214,238,9,96,153,23,27,211,202,168,32,135,152,62,132,70,152,8,221,234,96,119,152,173,0,27,53,227,240,122,92,224,107,151,220,73,225,93,53,106,94,144,11,190,182,148,245,99,202,202,184,53,210,38,167,237,126,107,129,65,138,228,119,146,226,27,148,44,140,65,63,128,96,126,255,160,31,138,43,193,202,188,127,234,25,201,173,155,255,113,210,82,36,220,156,140,166,168,152,224,155,78,21,71,35,135,72,186,190,
 189,103,176,101,190,97,255,200,203,20,156,170,50,132,193,88,81,100,230,219,192,50,184,177,139,163,42,164,75,200,220,72,46,240,92,238,236,68,88,94,235,82,101,249,96,13,55,137,147,160,98,40,92,154,214,16,146,229,69,138,26,233,99,166,115,150,21,209,229,106,232,69,21,61,42,187,181,171,95,120,72,19,116,57,13,146,150,150,5,134,188,247,194,0,171,125,45,141,79,85,174,80,73,90,24,17,99,122,221,214,174,97,131,40,138,3,56,253,122,3,60,197,229,57,101,132,156,175,234,9,80,155,173,205,58,173,79,133,221,199,59,234,7,125,135,194,201,199,75,222,234,88,253,237,132,100,105,222,15,218,176,11,208,33,196,58,234,51,73,155,207,189,125,182,151,9,89,224,174,170,58,52,251,2,128,176,0,140,35,59,194,204,179,85,253,64,207,215,150,220,156,143,115,197,125,104,49,24,73,5,109,103,245,91,12,96,195,153,109,231,11,188,19,235,135,16,4,45,249,219,60,135,130,187,47,101,80,121,159,50,79,145,226,205,31,60,180,193,156,21,159,236,203,35,106,212,111,200,85,147,185,177,215,54,194,94,102,112,56,29,253,70,162,104,188,113,
 170,65,13,144,34,79,211,48,123,23,103,57,247,230,208,201,11,22,31,157,73,144,222,124,187,229,167,84,90,254,215,252,128,195,163,54,80,96,231,75,119,87,130,79,155,203,87,74,42,217,157,56,78,100,37,36,40,143,196,218,200,108,183,48,192,71,198,96,219,182,4,159,163,128,113,61,69,232,197,61,209,221,196,58,115,163,142,36,90,89,10,143,105,27,2,76,198,117,28,144,181,57,141,238,209,24,105,165,47,69,32,128,213,61,107,111,145,55,169,251,20,202,200,131,190,153,149,17,146,75,227,244,232,233,35,91,222,25,3,107,223,70,73,128,163,227,42,2,37,31,57,0,149,133,232,223,172,126,218,193,31,34,129,59,235,102,168,8,25,150,93,205,208,76,131,197,74,123,156,172,138,215,165,150,149,212,173,248,245,144,150,18,193,128,45,67,240,3,28,125,100,124,82,145,75,66,253,1,203,185,98,201,229,218,29,109,42,165,111,153,129,13,114,126,110,89,236,203,229,26,72,251,176,65,208,26,165,64,72,112,61,187,186,91,1,58,209,220,17,150,33,80,182,191,241,198,38,103,214,237,153,83,168,117,144,158,160,207,139,163,218,12,204,20,24,140
 ,216,247,213,21,206,96,143,136,124,170,190,123,135,187,88,158,109,32,241,45,171,118,81,254,221,68,139,76,28,83,50,93,121,45,36,156,226,183,116,88,69,192,29,175,112,178,161,0,58,227,4,143,170,202,38,222,251,2,228,210,93,223,111,154,171,218,127,111,14,115,61,135,173,165,13,86,64,183,248,225,114,156,188,175,78,25,88,102,125,116,49,214,234,202,174,133,197,23,240,134,96,18,118,116,220,211,161,156,182,231,119,26,188,249,237,156,71,70,61,99,231,61,25,155,62,83,182,16,226,28,199,181,2,61,132,148,218,26,143,110,203,142,24,116,186,238,13,130,232,253,136,53,205,154,52,253,234,217,157,135,233,51,194,137,111,187,130,200,70,225,101,123,253,197,107,160,3,14,149,53,10,212,173,74,185,43,158,170,14,152,166,246,126,93,42,107,238,241,179,23,155,24,77,71,140,108,159,203,220,49,48,101,139,75,204,239,157,16,67,41,133,232,97,181,121,251,10,29,143,232,126,41,96,20,66,206,153,244,138,63,28,230,240,105,210,186,255,216,44,239,215,47,48,157,30,112,15,148,239,108,188,251,80,85,138,203,230,16,37,146,172,2
 30,73,195,182,243,179,100,222,4,56,195,172,182,84,119,232,240,146,194,181,57,199,185,108,183,108,252,72,228,211,192,208,241,89,129,146,40,23,185,33,67,14,156,150,169,230,182,68,10,13,139,122,149,86,202,147,212,152,161,150,174,222,53,111,101,87,201,95,105,148,78,170,193,215,211,115,126,109,159,8,163,47,176,13,73,49,27,205,102,98,190,39,112,112,140,21,125,241,10,68,154,232,95,247,161,186,23,46,90,217,30,180,73,169,143,64,3,30,209,218,18,246,83,179,204,214,179,168,30,143,18,84,31,187,214,91,39,226,104,172,183,6,131,193,14,66,174,7,201,41,107,244,22,72,182,109,90,172,191,6,167,169,191,9,171,240,151,148,166,15,193,238,191,38,132,48,214,239,251,222,49,102,35,63,65,146,56,17,50,167,139,195,37,47,54,192,148,160,144,140,161,161,220,247,172,121,160,3,73,87,106,170,52,223,218,220,40,245,117,101,140,252,40,176,143,1,191,204,20,146,39,53,9,22,241,38,183,206,123,149,212,222,170,20,33,137,226,15,14,143,120,202,235,39,200,246,123,73,254,111,84,253,231,246,67,222,88,206,69,182,63,81,47,4,84,
 50,152,143,221,46,125,10,62,114,208,253,3,8,224,102,208,75,205,239,76,97,144,91,173,120,125,81,46,163,64,59,221,232,250,148,137,54,83,138,164,205,139,228,190,13,224,17,75,214,119,231,132,88,134,249,154,106,225,58,164,166,228,152,32,203,54,241,23,50,64,249,106,116,233,176,91,62,181,25,181,231,189,129,241,62,38,47,103,200,229,156,55,28,165,104,79,72,243,206,109,62,41,5,92,28,82,141,247,11,221,227,2,35,198,70,177,224,73,91,100,254,116,109,217,222,133,160,40,162,251,228,81,105,170,47,158,252,9,145,163,67,20,121,124,133,186,203,244,168,21,208,215,35,131,46,107,76,19,59,3,226,95,59,250,42,55,138,241,27,173,234,75,247,6,254,124,243,51,201,123,114,160,101,133,72,229,245,198,67,155,140,108,71,43,99,195,21,39,206,80,175,44,219,97,118,37,81,34,199,1,112,247,155,55,99,92,60,67,125,233,106,130,105,203,123,109,232,248,88,100,62,73,122,206,75,191,244,146,72,191,230,199,191,173,76,20,41,201,154,153,155,222,216,209,26,234,94,39,16,94,110,173,94,156,211,153,15,138,20,111,30,255,115,140,81,5,4
 7,87,7,236,171,72,128,207,150,98,252,127,36,207,42,61,74,182,26,51,98,169,135,195,97,126,245,82,139,64,157,148,49,125,185,180,57,167,10,158,154,90,42,249,99,60,196,240,105,74,14,248,40,246,130,196,56,97,224,186,129,121,205,35,104,137,178,128,164,63,23,58,145,249,56,212,136,48,102,69,231,21,176,217,205,203,196,37,25,127,130,201,40,151,244,62,159,130,76,121,137,206,78,65,61,223,181,177,239,114,152,28,38,109,120,23,127,212,47,93,221,181,22,57,28,185,20,180,11,220,28,135,86,37,65,115,229,46,52,165,252,4,87,154,24,27,120,209,120,227,209,226,249,101,56,147,228,11,29,237,80,203,125,49,52,14,200,139,211,149,58,49,85,136,47,31,28,50,5,236,156,12,209,49,67,121,157,38,231,74,97,105,48,131,33,185,139,97,140,225,223,27,11,187,5,218,32,82,145,62,121,57,10,169,37,85,170,205,247,237,110,169,205,50,72,49,204,231,117,226,28,26,246,97,11,9,97,187,166,58,168,105,147,3,20,161,70,133,153,255,24,193,248,71,40,61,189,245,218,34,11,167,115,240,79,143,154,65,230,153,41,202,149,58,207,115,72,99,122,17
 6,6,136,95,103,84,124,72,244,132,158,209,75,11,51,97,129,109,45,213,148,235,123,92,156,120,17,158,40,196,232,110,22,113,68,233,222,163,129,177,46,221,84,177,93,28,230,77,69,148,153,169,176,45,23,177,14,87,116,250,148,244,241,125,58,143,59,175,199,239,9,116,148,206,184,73,174,229,49,16,41,163,181,191,73,183,56,179,15,159,210,113,216,105,195,178,52,13,14,233,209,125,190,225,251,146,151,32,42,167,55,215,165,112,139,241,53,114,2,44,7,63,94,159,173,151,210,244,194,216,20,130,197,139,73,203,35,217,248,96,123,38,134,127,149,120,11,19,185,75,32,187,97,48,111,216,58,251,147,19,10,180,202,24,30,122,202,154,112,127,216,76,150,66,236,33,127,220,71,90,41,230,57,175,131,117,130,117,90,70,88,143,208,35,143,77,218,39,229,182,137,144,29,214,19,149,20,14,238,146,115,4,116,94,196,195,195,245,195,148,58,142,201,33,240,149,133,155,70,251,6,208,34,229,160,84,66,30,230,212,145,138,154,117,150,46,37,54,81,27,228,13,117,131,89,222,191,54,147,86,71,244,158,220,245,156,205,31,122,232,222,34,193,182,20
 ,148,238,81,224,96,18,64,40,79,131,85,142,26,99,212,168,47,195,73,62,23,177,73,122,44,85,8,67,254,32,64,129,253,176,4,79,85,203,227,66,63,241,167,176,196,192,136,20,176,66,141,85,187,170,135,196,167,243,129,161,191,105,34,37,44,156,224,214,240,57,213,211,186,76,220,112,249,105,192,76,197,232,137,177,240,210,204,222,102,152,135,55,68,212,10,114,22,4,29,61,34,73,53,13,225,68,169,157,76,53,69,107,46,112,160,63,131,199,202,111,211,31,206,193,110,212,223,44,47,96,38,159,124,118,75,69,26,203,187,126,95,138,20,249,142,105,239,232,147,84,227,170,120,120,115,57,233,254,106,132,87,146,11,131,140,207,39,171,82,147,230,177,250,152,181,249,10,93,209,59,48,41,163,125,147,59,105,252,239,85,173,46,210,153,212,79,176,97,103,62,35,230,51,161,49,169,162,176,40,121,202,8,113,41,163,65,77,117,119,238,21,76,22,19,134,242,200,113,177,16,27,70,74,16,111,219,153,20,126,144,243,238,29,123,223,46,254,147,13,11,144,249,169,27,177,212,206,154,24,219,37,245,110,129,160,68,23,203,27,39,45,90,182,7,39,217,
 163,157,51,235,230,198,231,112,66,25,144,237,34,216,204,86,230,182,217,100,17,179,216,13,105,234,73,125,124,20,153,183,176,70,209,94,235,204,214,59,160,26,139,183,253,255,249,90,182,175,16,244,157,225,189,150,237,233,157,232,185,168,125,243,98,63,59,177,67,29,57,41,80,205,248,147,71,82,64,200,248,227,200,22,108,71,68,225,93,56,191,36,5,207,0,29,4,65,161,116,69,101,114,71,130,224,129,172,158,190,214,187,93,55,235,220,157,31,139,24,105,106,97,5,64,111,6,235,24,136,81,90,199,74,132,69,209,40,184,241,119,54,55,136,44,80,78,111,59,92,229,147,200,45,165,43,186,60,98,151,94,5,82,74,27,140,49,17,193,115,149,190,162,217,176,35,64,57,70,184,23,187,62,114,245,188,124,207,166,173,48,94,227,27,174,171,226,139,164,253,90,49,161,87,144,125,79,44,96,186,172,233,123,242,121,142,7,54,94,62,203,7,4,123,211,135,149,163,126,208,109,75,181,129,26,16,115,27,220,249,237,213,207,46,62,25,170,29,47,130,128,195,59,244,208,136,109,239,182,94,69,156,89,174,108,183,188,136,3,143,192,136,18,109,5,252,95,2
 08,12,131,232,91,114,129,236,10,32,190,105,248,130,232,56,18,231,19,177,58,153,234,151,109,79,47,89,5,160,117,40,74,109,219,163,211,197,36,176,145,65,224,165,157,7,180,63,217,117,71,224,40,149,168,221,211,42,181,165,41,132,29,196,139,3,13,247,111,74,1,64,110,49,148,3,195,21,113,178,84,167,123,88,54,29,248,140,236,11,158,115,149,229,79,203,43,41,235,154,174,165,133,115,196,88,232,120,233,11,235,142,249,169,215,248,211,10,15,2,36,179,69,44,20,106,142,8,91,151,68,22,194,26,64,127,142,198,158,174,18,216,133,162,140,246,85,158,225,99,118,209,83,173,129,89,13,113,177,126,48,41,231,39,112,68,83,15,20,18,99,193,249,170,197,73,32,52,149,97,193,26,56,140,219,157,115,248,115,32,37,34,123,166,204,211,201,229,204,90,174,166,145,206,127,141,30,120,168,198,151,88,84,163,251,130,15,83,121,38,13,89,156,20,46,229,32,102,130,117,180,158,101,37,243,251,144,34,236,128,74,177,200,144,225,76,118,231,190,53,184,249,207,56,13,4,216,33,89,74,151,143,98,178,138,137,79,148,213,42,91,62,6,91,68,148,104,
 8,190,36,29,215,220,220,214,12,112,249,168,103,99,197,233,30,183,173,231,152,176,18,159,145,129,23,142,91,128,241,157,197,173,222,180,235,236,20,100,75,36,222,127,203,132,155,32,199,159,234,110,243,194,151,7,250,89,100,250,72,29,153,241,228,125,126,172,246,117,233,241,178,211,230,72,13,177,237,203,43,217,235,154,65,79,125,175,113,68,90,148,243,56,174,16,98,186,105,1,10,86,195,238,176,236,194,240,25,111,70,0,84,57,192,186,147,92,148,142,97,88,189,24,238,36,195,164,57,198,116,252,251,252,93,120,91,173,42,188,85,84,111,153,154,94,222,194,87,41,42,229,53,130,104,157,176,206,152,230,249,27,1,117,194,159,76,156,54,211,158,129,47,133,197,106,109,170,161,201,1,1,98,114,200,140,169,212,174,111,178,112,59,212,215,210,55,178,225,132,14,56,115,114,225,17,47,254,46,130,148,85,7,232,124,44,30,139,114,253,201,77,33,131,231,55,90,49,184,96,22,180,74,139,59,246,90,242,205,184,27,251,176,184,113,122,78,88,73,62,34,46,166,253,146,68,100,105,96,164,3,215,126,186,16,226,216,165,12,85,19,247,32,2
 03,184,62,114,178,119,79,179,133,15,154,223,88,211,58,223,150,39,149,45,164,222,8,43,14,67,103,81,88,74,230,217,103,234,163,68,104,196,43,115,94,146,197,254,203,142,116,42,229,97,119,70,143,162,121,130,198,70,12,91,142,255,37,139,66,104,144,187,175,163,191,208,186,58,238,156,57,186,191,105,221,224,19,30,86,216,154,76,92,152,91,116,35,248,106,18,21,138,86,255,64,9,49,233,101,210,4,95,27,194,199,86,223,174,74,229,147,50,186,72,77,239,17,127,62,39,92,13,66,234,116,8,122,216,247,85,109,54,36,22,24,202,51,86,194,25,170,142,30,160,45,167,47,242,179,252,152,96,10,147,230,51,71,218,160,141,156,137,139,149,1,66,36,202,82,44,35,76,74,208,196,26,162,80,156,104,16,130,72,117,121,78,187,103,157,95,126,251,87,172,215,182,254,222,184,61,145,76,49,151,102,137,191,38,2,192,3,122,52,181,83,247,89,233,38,159,223,193,164,102,240,131,205,26,161,44,62,37,79,134,11,224,180,103,152,173,37,202,12,81,150,156,255,14,114,127,218,215,91,134,225,254,24,160,7,216,40,164,149,194,216,104,51,202,212,83,78,7,
 35,46,169,217,64,23,214,167,207,42,216,64,128,90,231,111,82,196,10,246,197,111,217,162,10,153,195,88,253,231,60,239,186,3,16,127,138,68,77,151,188,242,199,58,3,87,255,128,107,17,225,82,171,247,147,109,15,144,75,153,194,193,79,81,98,89,186,132,14,248,172,139,226,136,239,63,20,11,151,211,239,86,244,208,169,92,51,178,67,171,66,26,203,113,45,231,74,203,197,48,210,114,61,205,227,144,207,35,78,63,122,120,100,167,162,153,198,125,28,199,56,190,42,186,5,155,44,123,157,142,142,109,228,47,116,163,94,52,187,105,177,166,105,134,201,3,192,14,177,44,135,109,141,35,22,123,10,166,169,133,166,195,194,137,44,33,201,49,200,21,249,154,153,134,212,106,235,231,151,26,30,88,141,220,224,135,125,106,244,70,216,90,42,144,119,52,35,7,141,135,254,249,195,82,130,86,220,133,242,54,115,51,52,194,92,50,156,63,1,167,88,215,172,125,7,218,164,68,221,110,251,219,85,63,136,179,73,187,159,123,19,234,219,154,62,161,247,1,87,50,104,189,144,0,39,190,70,163,91,71,169,184,18,35,47,3,183,201,22,184,2,166,169,88,225,212
 ,235,242,213,24,11,166,254,68,99,207,254,174,201,161,71,150,37,82,100,49,8,132,230,205,250,184,249,220,192,237,1,220,114,111,183,253,70,240,169,5,71,69,41,83,184,99,193,137,109,79,146,146,22,184,243,192,157,250,184,18,233,178,204,226,95,195,175,92,77,1,56,245,224,219,203,210,37,32,176,22,146,128,154,102,186,53,209,84,186,149,81,6,107,179,92,105,48,164,184,204,183,175,79,119,162,78,157,211,154,194,128,104,58,125,29,150,12,127,109,3,73,25,163,18,248,101,215,205,4,36,212,213,245,140,135,144,2,204,91,203,180,150,74,204,23,194,15,201,78,35,214,3,187,131,90,236,191,45,172,195,67,213,225,110,227,95,145,239,113,156,99,62,41,19,45,210,103,76,103,38,45,151,142,189,168,141,165,191,186,55,252,8,235,43,115,117,200,9,60,230,217,17,231,128,133,218,36,19,244,246,124,169,252,37,62,190,42,0,218,72,18,218,245,200,235,18,246,66,15,140,199,158,160,14,27,56,119,99,114,42,195,88,36,80,131,42,210,208,212,139,51,241,128,226,102,63,146,253,108,79,11,233,213,52,247,56,52,117,53,55,145,92,236,147,173,1
 02,198,75,113,89,239,199,209,36,178,114,18,40,186,119,114,182,46,229,8,6,137,39,80,174,48,34,237,248,206,204,27,147,22,108,39,46,10,4,97,15,69,162,83,19,44,240,0,110,83,82,141,99,152,90,5,105,124,249,202,56,149,227,161,81,19,200,58,244,210,146,197,187,116,169,167,99,114,120,209,241,101,116,99,96,27,187,184,162,208,1,205,121,159,0,163,235,122,18,251,14,197,177,221,87,9,131,250,211,33,203,40,13,116,76,245,157,1,125,118,161,10,97,53,190,66,133,154,80,117,222,214,13,177,127,221,124,210,205,18,187,92,159,244,21,146,159,176,23,137,193,14,139,182,51,25,247,18,77,128,162,119,71,131,74,225,43,88,149,158,50,3,228,84,12,173,81,206,110,52,119,233,180,215,215,65,2,238,121,224,196,70,125,21,154,218,120,213,4,14,175,166,148,104,206,215,5,203,91,246,218,59,116,117,121,161,32,189,69,55,106,38,208,213,110,225,179,241,64,46,61,231,54,171,32,164,139,174,9,90,153,130,66,10,50,46,32,176,38,37,181,72,210,77,115,226,92,195,85,114,7,180,138,115,84,183,168,197,96,185,195,92,248,39,85,224,72,241,181,2
 04,69,83,12,139,238,192,241,12,126,166,238,89,174,97,85,247,171,230,248,80,74,131,196,119,156,61,218,91,11,129,249,7,81,110,226,23,0,49,74,214,170,174,131,196,174,4,158,104,120,145,21,22,143,8,254,103,105,143,227,212,230,194,110,136,64,179,194,177,227,90,55,239,139,131,198,161,65,253,12,32,92,79,32,199,90,224,139,142,201,192,188,239,53,250,178,40,99,81,78,219,92,176,93,218,127,228,218,141,58,78,76,31,225,17,160,40,208,188,19,150,49,100,58,117,13,134,217,178,82,132,206,47,155,135,98,27,38,254,203,68,245,125,221,185,140,197,193,5,115,76,63,97,57,79,94,195,152,99,22,6,215,44,225,234,36,160,107,20,21,218,120,150,142,152,78,171,37,88,141,233,74,161,101,106,68,136,169,4,252,210,13,81,193,253,162,7,59,180,246,156,12,86,152,131,155,209,53,161,26,174,153,252,118,79,254,112,11,23,11,6,108,52,56,85,161,229,132,154,77,110,177,189,177,214,62,186,102,247,7,131,62,120,16,172,67,235,39,156,25,171,18,191,20,140,193,43,52,232,110,64,196,0,6,68,114,24,96,93,44,207,42,213,10,43,244,233,174,213,
 82,60,97,62,113,214,67,152,169,243,62,40,194,78,77,186,122,72,19,55,222,158,79,172,202,2,181,79,66,105,59,6,0,251,234,98,93,27,123,187,114,137,248,208,70,211,174,211,230,4,71,14,190,114,2,14,106,149,52,254,114,64,25,172,236,85,203,157,20,182,218,3,191,121,201,251,22,46,221,161,31,110,155,26,41,160,147,199,25,121,76,184,104,15,73,215,76,41,148,163,30,110,200,117,251,171,38,231,231,78,170,192,78,88,47,25,127,120,31,246,157,242,3,145,116,205,103,68,23,50,130,190,200,44,57,238,253,249,71,238,80,26,246,232,221,212,8,32,27,142,59,231,204,136,239,24,123,232,175,142,130,107,65,248,144,67,94,54,96,56,219,52,62,66,203,180,79,231,114,120,169,197,64,81,200,70,45,226,168,197,239,255,212,235,90,167,149,1,155,171,156,99,86,97,204,84,49,255,237,30,238,146,231,175,244,233,155,210,113,172,173,165,247,89,112,117,51,250,175,173,61,147,125,59,122,17,41,198,130,38,63,184,179,124,178,199,33,141,94,58,243,10,175,128,179,169,12,52,176,92,45,230,120,167,223,99,197,146,85,12,30,229,5,81,42,255,93,53,1
 64,86,30,37,180,95,198,171,56,144,192,17,10,18,56,30,136,23,210,101,174,128,210,197,9,139,246,129,228,165,226,29,218,37,93,140,254,15,197,51,248,40,71,172,108,207,183,9,241,79,38,218,46,234,200,64,15,237,93,7,243,38,83,204,224,26,62,99,253,114,243,166,185,169,180,206,54,21,141,247,210,115,237,84,171,19,58,159,204,123,248,120,58,244,90,68,150,143,202,81,42,28,208,248,56,53,44,175,73,124,83,13,135,13,36,88,252,178,80,114,213,100,233,79,153,13,123,181,70,194,53,9,194,90,227,116,142,74,96,231,117,131,201,65,87,156,145,244,88,66,90,13,234,168,19,196,165,88,138,155,175,195,182,5,183,21,116,151,80,216,107,89,207,56,55,229,74,110,124,2,239,78,50,195,205,202,198,14,146,108,163,1,87,77,217,227,196,163,131,134,83,80,35,114,216,219,224,132,218,42,51,207,245,210,188,64,73,120,64,49,98,181,200,37,92,251,206,214,160,103,195,182,216,138,7,35,55,84,165,45,217,113,165,84,141,241,240,224,121,252,206,233,61,166,42,251,134,244,107,107,184,132,78,232,5,49,202,225,214,80,46,33,243,96,193,53,35,244
 ,193,93,250,85,186,233,40,22,125,46,79,55,240,233,152,39,122,49,223,140,93,28,1,60,118,222,33,97,97,6,48,226,133,58,92,72,80,161,199,184,193,138,112,168,209,180,162,79,19,19,179,150,15,18,149,32,35,144,55,91,228,88,189,221,209,52,100,165,218,152,135,16,120,136,225,201,254,50,239,225,47,87,33,115,196,177,187,164,59,45,50,64,172,170,123,245,93,0,92,166,137,217,90,155,6,89,216,158,137,69,173,43,149,157,239,148,144,104,19,230,56,206,144,21,200,66,3,150,203,168,254,230,0,202,172,37,130,170,130,54,107,248,160,199,35,200,6,230,222,50,46,208,138,80,217,201,165,237,93,240,170,163,197,58,56,16,60,227,23,98,113,35,217,108,56,110,36,145,19,254,144,17,201,95,59,249,92,128,240,96,61,60,105,221,189,119,216,86,230,124,7,139,213,39,195,54,242,197,0,253,246,69,24,181,110,32,237,251,98,56,167,133,104,201,209,220,81,114,209,1,142,204,240,164,5,158,164,87,134,149,119,91,209,63,187,121,91,59,218,27,153,137,149,152,187,57,199,61,253,144,8,80,121,69,142,172,173,130,66,8,27,117,47,17,49,169,37,152,9
 6,13,138,157,134,45,106,94,152,14,188,185,243,47,238,80,181,134,252,228,141,187,33,247,34,119,44,105,121,146,218,8,229,41,223,148,41,107,89,39,65,19,141,65,82,137,25,169,190,67,183,97,56,229,11,76,163,4,253,207,68,189,54,229,106,199,35,230,224,217,89,67,95,30,142,159,17,188,163,124,125,88,81,66,186,7,43,161,222,17,78,120,44,217,97,102,175,192,164,53,108,191,5,148,67,48,74,157,82,90,199,7,58,185,144,220,37,231,173,115,51,55,138,191,24,65,27,97,152,130,253,189,9,167,36,7,208,243,108,110,250,154,135,118,85,96,6,156,176,224,59,16,69,111,12,91,52,29,210,47,199,237,57,139,77,153,144,90,253,41,184,130,216,128,5,152,214,73,152,81,169,147,221,122,22,112,176,17,97,234,252,227,135,205,12,65,65,3,237,226,210,6,30,58,67,47,53,233,96,223,177,74,44,21,45,166,117,255,68,54,72,248,167,82,182,190,183,140,0,61,31,9,149,95,231,99,199,249,195,51,71,17,103,157,23,122,119,249,147,171,165,146,111,8,233,142,167,9,122,202,106,251,186,156,98,180,78,8,248,118,254,163,183,254,210,97,244,194,196,26,107,1
 02,98,234,85,151,119,139,7,124,219,106,180,96,138,137,122,16,50,36,114,9,164,237,181,114,103,204,41,124,135,110,109,190,182,194,53,173,200,25,130,20,146,2,115,20,238,103,107,144,25,172,165,15,76,136,162,77,232,212,132,246,138,10,141,26,172,13,81,95,78,203,159,81,80,128,22,154,227,232,122,71,254,54,69,88,78,24,219,5,108,175,136,248,74,2,245,56,201,80,88,114,194,118,141,182,236,60,250,63,149,42,57,193,110,157,201,49,166,60,242,13,137,24,129,201,116,186,64,143,247,87,160,59,222,196,171,203,6,139,251,250,83,192,212,205,26,115,152,78,84,187,188,124,98,64,106,149,201,70,168,29,131,156,2,27,172,82,72,45,41,166,118,187,137,187,193,184,74,169,210,5,74,74,187,88,234,211,17,95,245,207,165,188,189,131,213,215,20,80,224,215,96,201,65,20,229,158,68,200,80,149,203,111,26,255,238,223,4,65,59,124,180,96,253,163,19,62,56,86,143,135,11,38,85,142,182,252,36,147,71,83,174,87,150,133,52,43,150,21,200,63,185,22,121,228,7,141,71,198,170,251,100,227,12,138,31,237,42,160,95,104,118,248,64,214,191,33,
 61,181,203,13,132,234,21,243,51,83,136,157,70,113,171,32,40,122,97,9,41,62,250,129,175,255,175,18,168,158,49,228,145,82,88,248,41,200,122,65,254,191,41,81,176,71,230,234,217,133,64,190,164,67,178,26,152,157,131,52,1,76,61,165,102,164,160,72,81,172,0,37,205,109,169,140,12,146,134,166,111,96,70,52,201,61,68,181,179,72,8,146,32,99,204,182,4,36,16,252,42,180,32,80,78,178,76,238,51,23,245,221,43,209,163,54,209,77,113,131,150,175,179,168,45,48,223,214,161,77,14,76,71,189,50,0,83,131,186,224,84,244,158,63,255,186,134,115,13,168,142,231,148,150,246,62,61,111,155,70,176,56,136,203,49,172,220,249,97,58,73,41,132,234,131,23,113,168,100,51,111,227,14,64,151,179,87,225,24,179,184,157,57,44,4,148,139,34,160,101,134,139,235,86,105,44,236,103,228,140,1,149,8,125,136,48,116,18,158,20,52,15,160,40,112,130,201,218,206,92,56,224,118,164,185,204,207,57,175,248,29,187,239,80,5,40,154,104,249,35,153,89,177,80,31,119,31,252,159,239,110,192,93,68,147,244,230,218,82,95,239,178,251,239,60,57,27,144,13
 9,255,202,205,143,24,78,97,224,249,186,71,169,125,92,26,144,162,157,251,54,155,164,183,147,105,116,241,188,168,146,92,55,71,17,119,130,205,33,105,94,233,9,124,49,54,37,228,165,248,33,21,112,94,163,238,30,151,146,12,206,70,173,143,67,254,146,175,105,161,131,161,183,62,53,75,147,109,168,203,133,47,64,199,156,240,66,107,174,110,222,123,240,154,153,213,154,123,193,30,252,182,149,245,81,70,228,15,68,155,233,230,34,155,157,203,75,7,127,196,251,70,19,89,251,220,91,8,240,73,199,99,5,167,241,144,115,3,186,163,92,75,19,219,71,220,101,210,24,165,70,124,56,110,164,94,197,89,190,109,116,3,115,203,111,209,80,32,231,215,115,40,86,244,155,102,56,223,88,30,45,55,135,125,177,204,153,41,4,8,253,157,33,102,216,217,29,115,195,23,85,223,232,130,47,51,22,100,240,10,89,31,75,38,137,38,202,239,191,122,73,21,16,36,32,58,4,99,150,249,82,10,54,62,91,83,107,138,159,40,240,166,65,18,214,46,25,6,121,150,106,146,126,238,43,85,43,204,160,255,73,55,53,162,60,71,21,158,76,16,52,86,7,206,61,131,225,124,124,240
 ,244,21,157,106,175,1,29,83,76,75,79,246,79,45,117,90,25,120,194,194,138,205,183,176,205,202,0,227,18,116,98,137,179,189,26,84,0,73,92,150,9,196,93,112,187,9,216,162,90,130,84,217,188,56,139,76,172,249,57,190,193,166,26,101,107,45,210,54,82,166,33,65,206,153,245,227,85,68,186,94,126,101,173,71,177,23,250,207,191,104,83,209,236,36,228,168,41,248,202,6,142,251,186,194,118,117,48,60,208,241,240,143,213,203,156,192,115,182,199,169,52,170,23,114,124,32,49,154,223,117,81,8,255,55,18,249,100,227,202,192,152,142,12,31,242,49,252,106,57,224,254,72,190,28,19,185,82,54,113,101,2,201,214,215,82,243,51,144,248,116,232,146,149,223,94,24,121,118,27,28,192,187,5,35,12,252,79,148,213,159,3,185,8,228,131,137,55,178,60,176,195,229,165,51,125,207,29,108,174,34,18,183,237,96,210,51,215,85,30,250,44,42,112,60,253,166,147,212,139,69,146,95,51,67,212,179,229,125,185,252,63,184,108,113,38,215,56,46,231,199,152,101,76,61,183,231,87,224,239,128,169,216,142,171,24,85,23,89,24,163,112,212,24,107,212,125
 ,10,32,113,91,206,168,157,163,217,49,164,249,117,10,46,92,66,174,66,190,43,71,38,30,50,239,63,126,15,103,170,39,60,250,19,117,16,171,156,38,183,114,19,235,86,53,222,181,196,97,44,126,8,33,229,70,173,125,137,191,144,132,24,119,78,67,96,91,122,140,196,47,13,3,110,106,150,28,104,147,226,186,20,202,109,91,77,163,21,133,33,195,198,165,98,138,208,141,48,84,202,47,76,93,211,69,21,140,183,55,105,159,44,178,124,152,165,173,217,111,38,190,26,178,138,206,215,196,62,41,130,161,68,15,60,137,211,111,59,202,52,119,133,32,200,30,121,57,12,239,53,251,102,39,67,230,67,95,105,188,219,100,229,52,236,228,45,213,7,225,226,22,46,222,174,227,223,214,52,10,235,187,180,60,56,228,229,168,162,73,19,88,61,128,117,193,94,22,242,49,187,143,140,159,180,41,144,180,230,144,166,252,85,239,51,194,65,124,209,98,229,217,13,74,14,135,201,225,224,216,80,231,85,176,29,189,105,246,207,221,160,9,120,126,144,63,228,70,50,250,213,235,21,198,137,41,114,245,202,202,123,6,233,28,83,28,202,75,58,206,118,185,46,86,200,219,2
 20,80,154,110,144,79,63,76,47,4,215,204,191,108,115,179,90,217,178,214,119,137,217,92,91,238,165,49,225,126,244,11,37,158,113,17,111,140,185,195,39,99,76,129,52,40,140,109,180,136,194,13,12,11,19,26,67,19,58,235,45,197,35,113,12,220,154,151,13,213,194,250,119,230,239,45,90,98,4,158,172,189,142,1,206,1,221,212,89,57,247,192,215,158,82,28,57,34,46,101,23,49,57,242,177,190,35,185,213,195,208,219,133,167,31,38,64,64,217,124,239,104,136,246,241,93,241,114,39,53,123,211,70,129,221,106,250,143,237,121,184,78,42,172,57,195,113,204,232,195,176,169,208,64,128,40,192,96,187,184,66,142,176,244,225,179,2,27,60,104,224,23,54,2,38,120,248,255,66,111,31,89,141,33,139,146,10,239,163,198,228,124,213,211,197,62,254,88,173,127,186,252,149,179,128,209,114,146,47,67,117,16,139,219,86,241,254,108,223,193,108,178,40,211,70,248,47,18,181,244,208,43,82,55,146,7,124,240,94,116,94,15,91,225,114,118,172,26,255,12,28,80,213,28,230,217,223,178,81,255,131,118,165,171,156,155,148,155,114,107,207,75,56,118,1
 27,94,65,20,125,112,223,23,121,72,241,102,141,79,227,203,254,239,195,64,172,44,209,61,88,119,54,231,206,67,202,36,121,49,133,183,135,203,162,173,103,201,22,30,24,135,108,90,165,189,3,72,16,183,183,99,72,200,10,247,138,53,207,111,31,32,34,170,208,238,142,120,201,189,213,122,90,80,37,8,6,101,217,189,245,140,81,239,158,163,208,6,13,240,234,130,33,189,175,9,144,78,228,245,80,240,41,154,116,40,196,100,82,64,230,96,64,110,169,122,73,5,117,140,19,112,23,152,116,146,236,239,19,178,103,21,181,14,151,197,167,86,218,91,104,224,111,193,77,33,211,196,168,64,183,110,226,112,61,155,46,87,74,41,68,76,116,67,178,237,94,58,223,216,234,32,121,177,46,134,159,27,13,16,158,127,57,92,211,128,165,88,130,204,211,237,185,101,248,200,133,128,145,36,147,121,188,137,76,33,30,45,231,226,174,160,51,95,76,135,210,157,32,85,205,27,79,98,3,53,203,18,214,45,133,182,238,245,44,23,163,145,133,117,62,114,226,249,105,212,2,158,96,128,110,73,180,83,7,200,108,36,22,40,32,117,58,128,63,19,96,185,209,116,145,127,116,
 231,10,215,143,157,226,68,100,193,92,120,18,74,44,20,176,106,33,107,127,101,97,152,29,66,107,175,134,38,75,8,100,55,119,5,249,6,67,21,4,58,139,167,176,175,50,183,102,201,250,116,250,240,123,210,6,9,111,114,99,60,29,243,170,206,244,25,38,180,218,80,123,99,236,42,162,224,211,225,250,249,250,117,153,130,187,143,143,133,248,82,113,123,119,169,97,27,225,135,28,178,168,14,128,75,249,58,224,181,35,205,210,173,85,170,74,220,253,148,217,110,73,19,70,239,137,215,138,75,32,57,20,104,88,164,176,182,94,227,151,61,140,151,90,70,214,228,5,153,186,67,32,24,234,179,37,48,220,185,237,142,128,72,12,223,214,151,222,237,242,58,213,144,188,171,65,88,81,170,34,126,178,37,153,81,122,6,195,201,247,241,239,38,100,16,104,242,70,204,35,66,112,121,96,121,121,75,61,48,117,109,196,247,55,156,118,79,143,231,27,86,220,95,200,215,120,110,101,85,171,214,93,59,10,47,58,244,251,165,185,63,53,23,206,230,18,231,160,155,234,162,108,94,35,146,250,18,91,253,103,133,155,241,166,96,248,193,160,195,179,192,246,67,27,9,
 42,160,11,154,230,5,131,5,17,252,177,151,44,31,192,0,169,244,215,80,156,104,218,3,130,65,97,90,165,47,223,207,227,120,161,204,171,70,103,28,75,24,202,163,47,249,249,47,238,90,0,50,112,35,185,73,63,242,124,192,119,131,66,89,206,74,150,192,95,137,74,178,43,74,94,131,215,155,209,123,232,99,153,130,96,208,183,165,113,72,210,233,82,245,118,48,212,179,72,48,11,98,69,37,5,72,46,194,3,2,85,197,145,238,26,4,247,211,23,17,133,202,135,203,88,30,76,243,49,102,225,19,244,142,147,196,14,215,234,1,60,165,92,76,149,114,29,41,80,65,159,142,59,142,16,18,28,116,211,77,2,199,13,127,240,3,189,185,249,123,131,112,188,215,69,239,187,206,59,188,32,3,96,168,167,247,242,157,223,38,2,203,85,110,152,193,122,234,197,165,2,31,118,140,74,36,65,207,27,72,113,66,206,124,68,249,254,30,228,60,203,9,199,205,134,121,219,40,20,164,5,36,239,130,244,5,15,207,29,97,191,19,111,124,70,244,7,192,202,231,180,5,10,149,158,97,212,38,145,142,243,55,187,253,40,65,52,242,62,61,97,131,130,168,148,225,199,137,244,213,122,99,4
 7,111,11,7,10,149,233,247,135,229,126,14,103,39,190,236,64,20,14,125,110,49,152,31,203,53,215,119,128,38,70,79,245,188,238,0,155,215,108,62,1,55,148,42,212,242,96,194,145,239,238,43,248,251,98,149,91,56,60,75,83,86,122,131,223,224,233,210,17,231,219,173,169,103,156,178,155,213,88,166,23,4,225,165,27,40,87,36,13,235,190,67,1,137,88,150,92,254,113,122,147,59,134,176,212,37,26,61,231,158,228,75,142,21,56,228,172,176,61,104,87,209,190,151,6,108,43,193,66,163,194,79,224,96,38,133,86,97,41,59,181,238,167,188,16,54,160,28,190,126,238,174,139,105,132,135,65,196,242,30,134,252,41,116,47,179,30,207,100,14,78,149,116,164,207,173,78,84,153,133,139,117,100,31,5,199,1,87,211,45,139,140,13,92,245,219,205,66,198,130,40,245,14,91,52,72,93,215,38,124,119,73,47,235,77,36,178,40,124,62,92,204,24,65,157,198,13,69,78,136,121,73,223,35,75,0,190,190,50,198,178,41,167,55,68,173,144,157,181,143,215,147,63,47,199,2,99,6,45,115,250,44,197,0,13,202,162,181,135,80,36,178,145,46,12,144,53,29,226,119,205,1
 59,164,117,61,29,35,164,147,238,123,230,4,205,150,171,129,206,11,245,255,94,242,131,77,171,166,245,100,82,57,222,70,21,174,106,208,182,182,43,214,30,84,239,52,253,77,234,113,31,55,197,22,188,212,53,32,254,152,34,238,91,67,30,0,246,159,88,169,160,28,28,103,106,221,185,213,17,174,113,13,31,113,21,197,44,162,103,241,212,45,42,81,46,222,149,203,26,158,141,5,29,219,250,139,216,108,120,98,207,58,244,14,10,35,118,23,19,142,65,48,69,37,204,74,102,59,79,4,74,208,221,254,34,68,57,226,75,22,18,179,11,222,237,176,40,95,53,91,72,133,0,36,235,197,92,122,226,185,3,121,82,77,117,84,176,24,126,134,137,14,213,149,125,223,79,89,228,149,26,38,116,218,54,206,147,151,88,30,25,34,214,101,172,138,178,67,74,70,146,236,38,218,195,144,42,25,80,61,80,137,139,197,132,231,167,122,200,210,189,252,23,31,210,33,170,38,0,26,181,205,205,77,236,34,223,170,6,122,137,189,239,192,152,101,210,130,184,97,160,244,208,230,38,124,248,7,85,194,193,181,48,172,37,228,183,228,100,214,236,247,106,153,117,133,77,57,158,93,8
 4,48,88,83,128,143,219,55,113,225,225,175,225,238,182,220,239,77,48,243,200,77,249,154,34,73,186,111,133,12,195,230,213,73,56,74,114,74,215,194,217,222,42,212,55,251,164,19,149,183,16,176,33,97,79,93,62,61,112,210,172,108,109,242,0,153,110,107,201,55,104,29,218,113,55,37,40,123,143,25,21,44,221,135,113,58,141,133,139,15,235,182,194,50,144,47,170,227,25,138,210,80,210,214,2,65,223,123,164,236,177,49,179,130,65,184,36,13,17,162,99,113,241,98,78,66,140,217,23,74,194,111,83,112,47,60,3,0,93,184,14,102,57,49,156,44,224,232,238,199,131,147,183,71,190,232,224,45,71,66,96,222,78,96,136,45,91,32,26,137,231,188,201,9,197,144,145,35,114,160,85,29,120,79,80,231,173,80,158,213,155,7,107,251,89,61,62,170,147,139,78,58,127,190,141,222,236,96,156,179,205,80,118,4,241,50,137,117,147,232,73,42,181,225,178,136,229,248,115,103,112,228,216,78,9,51,119,217,99,124,60,23,45,24,251,171,237,45,167,10,232,162,163,6,71,237,94,177,176,64,87,139,40,118,126,139,249,253,23,62,163,184,120,226,126,235,75,156
 ,43,108,14,94,158,83,182,141,137,136,229,132,150,146,174,93,64,41,162,39,198,243,207,146,37,234,51,70,127,58,50,74,63,240,128,62,183,147,100,88,210,96,249,194,6,177,43,133,11,199,175,15,164,217,13,198,125,237,159,211,241,246,156,27,75,95,199,168,86,50,29,163,149,50,106,106,138,183,231,134,35,141,55,199,105,67,226,197,157,1,203,76,170,217,43,157,122,7,112,117,167,66,119,104,249,12,149,227,212,44,65,241,70,29,20,159,101,94,39,240,218,81,75,21,231,171,244,45,62,143,8,169,243,93,234,175,123,143,46,55,8,13,13,148,24,145,53,23,86,107,146,132,95,87,59,113,248,174,26,55,237,190,110,224,48,185,165,232,8,240,157,136,78,66,107,113,10,195,133,169,127,236,188,222,75,231,227,36,212,221,214,221,6,22,151,254,236,219,177,38,114,232,46,102,40,81,65,61,142,238,242,253,134,96,53,215,147,89,14,34,231,50,151,57,180,242,217,146,64,145,242,42,223,38,87,181,6,14,168,86,121,180,161,18,182,207,79,40,19,23,164,12,243,237,45,84,102,0,189,23,10,210,242,192,140,170,28,90,28,167,136,83,228,8,55,168,61,111,
 183,155,85,86,202,140,4,222,7,54,200,103,126,123,170,14,155,80,99,178,84,235,168,213,56,70,175,171,24,79,251,42,17,9,183,13,204,34,51,71,179,161,243,184,241,139,240,240,0,165,141,85,225,146,173,178,185,91,233,56,40,14,220,58,97,193,81,226,167,99,125,224,129,211,57,177,113,67,133,41,170,255,41,75,101,25,5,4,5,129,214,221,79,162,17,21,43,40,104,180,1,195,205,148,79,73,95,131,80,212,97,43,13,107,112,112,48,81,71,62,57,5,135,254,38,234,195,16,75,17,118,83,239,120,4,33,186,134,143,25,227,249,254,112,85,176,81,34,20,6,239,136,30,34,221,181,107,91,133,88,39,203,41,207,100,74,189,144,66,227,254,145,102,142,74,167,172,108,122,189,71,83,4,94,6,6,115,233,181,30,116,226,123,72,138,72,198,172,199,131,194,51,182,149,101,72,226,99,239,17,40,226,2,235,214,203,180,147,135,1,59,89,53,179,249,11,112,223,146,80,202,35,31,10,48,211,134,18,50,190,68,111,34,155,22,238,255,39,239,202,115,250,213,86,201,250,107,0,71,187,54,34,47,98,150,59,51,6,213,177,209,152,131,217,8,33,148,111,130,247,57,106,231,
 232,149,106,240,0,102,140,93,10,197,86,224,146,18,21,159,218,126,36,78,92,234,64,71,202,189,14,115,185,223,70,36,133,215,162,49,229,18,73,104,77,153,82,170,194,179,157,53,182,181,8,203,60,234,241,44,41,163,77,173,134,64,85,231,170,209,239,210,60,172,206,244,205,27,205,103,162,139,172,72,114,152,148,221,213,168,206,122,73,157,7,243,194,4,98,68,188,95,158,88,190,130,249,244,3,180,147,15,163,234,51,213,183,96,118,180,70,140,71,153,234,158,248,83,205,37,78,223,144,106,225,88,121,76,166,46,39,85,150,198,135,39,97,104,79,172,23,115,85,222,222,193,66,52,15,84,61,214,2,178,38,57,183,183,90,12,137,85,247,185,112,105,127,228,145,69,79,191,123,233,234,169,161,75,156,67,64,93,219,29,165,44,127,192,53,250,131,177,135,81,206,10,111,236,112,36,30,191,237,211,97,82,243,82,248,122,162,25,223,63,200,240,132,38,14,1,130,207,248,183,61,58,96,208,159,33,134,94,153,182,100,95,159,211,107,250,185,98,38,81,126,175,158,241,128,79,196,239,226,13,249,13,208,72,223,219,193,233,153,95,53,78,155,131,94,1
 ,220,194,2,82,109,187,7,241,225,63,90,219,20,163,218,17,75,198,217,133,106,100,233,80,109,144,41,31,133,196,103,96,146,126,49,54,140,195,183,197,129,172,166,181,78,238,204,192,57,218,128,168,245,81,187,110,202,1,208,250,227,134,49,62,76,41,157,88,240,50,201,174,71,65,167,133,220,212,212,14,238,46,5,46,171,51,26,87,179,80,250,110,237,190,3,214,159,149,198,144,142,16,150,26,239,149,135,215,65,62,159,109,81,212,191,182,63,137,149,184,186,217,170,119,193,162,29,134,21,26,190,234,10,228,138,93,143,107,143,119,217,11,127,68,95,207,40,113,115,247,220,79,68,162,240,146,145,116,5,52,111,159,51,248,41,139,178,115,10,32,252,200,192,100,150,112,80,165,121,141,33,226,35,136,162,179,234,142,63,56,131,255,115,177,51,162,80,82,146,203,179,18,153,38,216,136,133,70,36,228,235,5,205,167,158,241,168,20,167,235,132,144,197,1,169,40,190,5,245,143,10,114,45,73,162,194,240,198,139,207,98,77,137,29,186,172,117,136,122,71,142,161,168,226,86,50,13,58,0,252,206,44,243,92,163,160,107,186,42,63,94,233,20
 7,158,227,244,40,254,129,185,238,60,232,209,117,144,213,140,168,64,150,87,86,225,81,7,177,129,243,252,207,217,32,230,47,175,129,197,171,209,105,186,168,42,4,48,46,226,121,22,51,84,30,229,113,21,73,168,134,26,121,29,127,204,248,146,111,89,210,122,59,189,194,103,22,131,250,169,203,159,84,41,154,30,188,3,40,235,173,215,13,90,208,220,75,71,115,68,123,85,177,79,143,232,119,210,65,78,149,53,196,180,19,247,66,147,194,118,230,59,139,67,160,1,111,136,110,132,99,150,173,133,89,218,106,7,235,75,114,212,125,213,16,2,31,196,141,251,210,178,242,197,107,61,88,245,24,127,195,255,244,46,66,0,207,175,174,214,216,228,35,255,92,117,61,251,6,51,66,234,207,101,167,246,56,154,51,30,150,5,124,79,141,191,145,47,117,167,43,34,228,16,186,254,88,146,47,210,196,234,242,33,146,64,184,137,163,163,219,80,178,224,146,5,128,45,234,171,162,144,232,174,22,13,88,227,169,254,35,137,174,115,64,61,121,170,33,141,238,166,177,179,101,238,110,230,162,156,43,31,56,33,139,134,92,220,86,87,0,168,58,238,181,185,49,182,15
 9,219,28,182,41,116,169,210,19,156,151,75,220,76,247,167,183,109,202,162,176,185,31,39,11,250,119,189,24,241,82,159,3,35,140,226,86,217,152,188,110,19,19,57,52,106,197,199,17,36,36,8,159,32,50,80,14,244,54,75,180,235,127,159,161,71,4,231,210,91,155,94,65,23,52,158,165,176,49,167,132,194,2,17,202,158,144,60,212,185,77,20,97,18,150,39,79,253,19,81,18,161,218,116,228,37,212,170,53,147,30,42,250,192,149,255,178,147,53,133,64,128,66,167,142,103,120,233,196,92,173,194,128,195,178,156,30,67,2,47,29,49,60,81,236,83,224,32,72,29,203,196,103,153,108,243,137,43,97,154,104,104,89,86,211,142,189,228,121,203,249,64,91,74,108,208,57,134,240,94,75,188,106,29,5,185,175,85,158,8,67,75,225,215,104,237,53,87,237,69,129,157,252,45,99,152,165,20,91,215,158,94,72,242,134,18,137,107,210,104,255,254,1,88,233,127,205,237,4,148,108,97,43,191,0,242,175,88,175,36,155,200,160,36,231,23,100,178,160,39,28,193,215,86,227,22,0,221,28,92,76,189,225,143,211,41,226,138,252,146,48,159,21,191,119,121,148,118,18,1
 9,180,164,163,104,149,232,133,146,191,153,149,38,30,21,196,95,69,6,138,15,165,146,188,26,160,65,159,73,180,1,144,243,134,249,146,47,52,56,210,161,222,44,117,169,241,190,72,187,31,179,157,147,13,37,141,133,220,103,159,240,162,228,144,74,59,17,99,71,130,248,14,153,164,134,6,146,140,183,245,155,93,253,125,222,10,224,37,179,101,171,160,27,54,39,230,42,212,187,73,201,216,30,179,118,237,235,242,201,198,95,18,224,238,225,51,130,162,177,64,102,15,208,90,224,139,12,124,52,26,144,30,44,19,110,176,136,213,63,96,92,25,93,198,240,16,62,4,242,36,24,174,140,74,126,199,224,225,254,16,9,175,130,59,111,20,74,196,252,187,99,208,166,18,57,92,20,251,11,122,1,250,248,12,43,224,10,0,246,132,200,149,103,67,101,194,150,204,114,129,68,89,78,170,49,202,243,242,171,156,39,51,235,231,1,125,58,243,219,218,102,31,135,2,135,160,78,234,155,44,197,244,213,50,191,108,215,74,207,43,232,79,59,63,7,81,211,5,254,244,1,98,27,172,108,168,172,13,228,131,243,192,116,148,31,128,229,75,23,195,62,249,175,1,140,159,139,2
 6,40,139,66,54,82,232,132,216,223,0,38,199,141,36,115,44,169,135,189,71,29,37,58,40,10,231,214,122,2,134,62,30,42,87,178,96,196,57,108,99,96,254,18,57,3,248,171,3,233,246,109,108,94,194,156,183,125,12,147,115,231,93,145,111,61,169,148,51,114,169,231,37,130,173,192,252,90,43,87,114,220,171,212,85,67,13,104,144,85,182,19,177,143,82,164,13,188,131,102,31,164,193,98,200,183,225,152,41,210,56,182,43,26,205,42,193,244,3,162,28,121,200,5,246,132,80,236,220,52,201,136,29,32,201,124,59,66,252,43,193,251,67,126,251,3,69,228,42,22,14,208,120,222,208,157,11,0,84,163,82,84,132,225,125,139,51,186,232,184,39,184,251,51,47,110,223,103,54,230,160,252,241,4,139,30,0,225,73,154,159,27,154,255,226,57,94,103,115,71,207,36,67,86,217,160,45,124,35,147,109,118,67,117,48,58,182,65,59,23,214,45,1,85,221,186,46,50,112,38,184,139,6,106,208,11,22,112,88,212,225,110,34,176,116,132,155,72,87,216,249,111,14,152,122,56,4,183,110,120,16,93,234,126,1,118,46,199,240,119,180,182,117,24,105,120,46,118,222,184,15
 9,99,109,160,2,249,222,212,244,30,95,126,207,247,227,185,65,155,93,255,38,124,223,116,13,136,56,159,95,69,193,64,213,47,126,148,156,243,18,163,192,190,204,35,52,214,29,158,198,12,166,177,77,242,146,250,66,252,232,87,189,163,23,201,166,191,133,50,177,194,33,120,240,157,190,192,137,221,141,204,235,188,176,8,185,67,159,81,211,197,101,205,49,170,124,68,122,255,55,193,178,229,4,71,132,178,173,148,127,127,96,184,254,10,162,3,179,129,40,71,10,127,222,99,102,116,67,163,21,6,91,69,125,43,66,45,69,214,95,137,119,67,80,216,32,175,49,135,152,205,31,97,173,184,113,7,249,97,183,62,169,244,5,216,85,15,112,89,17,28,199,112,210,10,4,1,48,5,175,191,7,149,81,124,64,189,225,66,143,88,109,21,251,249,114,45,45,102,186,37,164,198,93,36,208,251,87,114,103,137,64,178,241,184,60,107,238,79,157,136,236,78,170,132,123,235,81,27,209,110,237,4,255,220,178,239,176,57,168,246,250,136,59,22,3,56,143,178,41,151,35,23,61,234,79,113,8,73,158,143,103,216,43,223,175,3,48,123,163,218,96,98,39,83,119,34,114,58,253
 ,19,183,146,194,187,15,25,244,220,26,183,74,228,178,206,109,200,211,45,155,152,92,209,236,216,57,165,179,6,120,32,60,165,133,103,125,77,61,109,129,159,233,110,72,127,20,8,196,123,105,24,232,125,235,67,139,183,110,162,57,132,39,78,33,41,241,82,36,66,99,185,56,2,71,160,204,3,35,149,170,217,15,186,15,129,101,119,145,49,201,159,175,51,4,129,23,253,122,220,77,39,90,22,138,78,54,73,226,39,203,205,66,200,226,21,191,212,25,128,221,149,130,104,229,3,154,58,37,202,232,80,211,40,216,92,134,226,219,82,131,95,202,127,140,49,119,48,100,36,251,26,219,150,239,68,69,103,180,187,76,128,239,187,107,92,166,227,46,198,218,236,197,127,114,248,10,98,67,66,75,134,234,136,45,167,223,46,69,208,198,241,203,9,117,189,13,120,95,185,43,27,215,173,226,9,198,77,116,88,145,10,135,31,202,209,243,165,5,108,49,221,13,87,0,30,45,33,22,219,186,230,115,3,71,94,195,251,159,47,117,209,33,46,241,222,73,237,135,112,157,51,244,139,74,223,237,11,105,231,178,62,161,167,69,153,56,157,168,166,159,25,63,253,95,167,19,196,2
 49,122,80,252,118,106,19,162,57,163,148,173,8,125,62,184,114,104,232,246,210,104,98,133,176,47,6,79,72,168,65,146,199,26,68,29,61,111,171,18,210,113,33,17,222,74,116,12,246,107,231,239,170,27,18,131,17,95,12,229,68,232,78,153,47,166,228,138,158,168,242,220,250,108,33,201,189,209,213,129,3,32,91,30,21,65,153,231,245,209,53,43,29,47,239,188,121,150,104,93,100,150,244,247,18,174,34,118,100,157,115,23,46,82,121,233,185,238,226,59,28,199,95,208,235,41,81,38,42,23,118,66,64,19,149,88,231,177,43,11,170,22,147,55,253,34,252,242,217,184,98,141,118,80,15,38,93,45,159,121,131,45,126,232,231,0,227,7,242,137,141,45,21,242,180,31,190,19,152,148,80,238,154,223,65,157,145,11,220,8,39,216,152,255,12,224,104,195,182,181,39,57,104,144,91,37,243,207,33,127,98,36,20,61,19,56,216,209,80,124,113,214,66,223,84,225,59,60,66,42,94,214,255,73,122,171,78,129,27,112,63,249,105,192,137,118,215,51,64,210,59,237,205,75,222,37,76,67,227,75,119,178,70,84,89,95,149,57,241,135,15,38,177,192,249,147,99,231,248,
 110,247,57,142,62,254,244,38,66,127,229,240,101,52,49,84,67,237,101,89,7,150,152,1,105,243,148,145,165,119,178,150,162,33,220,20,159,146,94,94,63,9,229,167,33,146,34,98,77,170,184,237,56,6,134,183,42,53,63,56,208,132,212,212,200,237,59,109,153,79,117,45,107,203,212,72,24,226,221,75,170,233,7,137,214,237,70,138,200,30,58,149,157,71,71,188,157,27,88,47,133,70,249,229,145,150,154,81,101,79,42,42,220,142,83,22,165,88,200,174,157,49,133,179,76,186,187,121,82,15,12,165,100,151,122,36,47,217,166,147,111,185,93,92,122,101,91,85,136,38,187,209,220,182,98,58,57,178,47,72,78,30,147,204,47,8,210,77,136,9,122,41,177,109,57,253,247,253,224,12,7,100,213,113,167,222,149,66,13,148,97,134,178,54,61,85,41,30,227,160,178,189,4,191,100,29,55,164,205,100,191,23,96,217,70,151,238,6,210,149,132,76,102,76,36,236,218,84,68,135,255,228,65,209,8,116,16,203,35,223,74,132,169,93,77,179,211,118,229,88,187,59,121,66,73,18,218,47,31,192,5,217,215,115,11,130,9,225,138,119,181,59,64,177,158,71,26,29,77,25,161
 ,230,112,111,61,226,180,116,13,148,152,105,205,207,32,146,47,157,108,62,248,15,5,160,242,229,77,154,142,157,197,201,58,7,106,38,152,88,114,111,155,121,43,116,99,140,42,7,254,53,2,231,247,100,83,149,26,131,108,174,241,114,37,155,190,123,249,52,176,40,54,15,16,155,149,1,53,160,251,18,71,121,123,95,200,227,160,127,88,191,84,168,139,120,145,185,14,36,1,245,202,119,163,145,189,188,113,42,48,121,252,120,61,162,148,212,145,121,116,136,126,73,108,254,73,17,187,27,164,91,167,56,126,131,242,83,224,168,95,236,88,214,160,132,217,171,201,62,146,120,76,234,81,11,13,106,148,82,108,240,19,53,96,92,23,3,190,233,154,29,49,167,51,226,61,154,214,220,7,9,251,192,108,130,216,125,47,62,69,34,226,185,111,162,178,221,37,53,45,5,176,55,191,101,152,203,83,122,2,212,243,209,55,155,224,8,120,118,94,162,94,205,153,202,216,188,182,128,147,26,170,32,12,220,241,4,84,54,161,2,176,252,92,71,143,80,146,57,32,58,73,225,65,192,16,180,26,135,201,65,118,24,6,77,23,89,171,151,117,152,59,230,141,176,16,37,44,219,252
 ,34,62,47,21,90,246,97,155,44,44,157,231,110,173,126,63,143,214,204,21,146,63,223,235,86,49,198,49,150,1,133,64,113,206,80,250,184,201,63,95,73,161,33,7,21,46,138,11,229,250,107,232,176,132,29,193,9,65,149,47,130,196,250,5,103,164,159,74,76,171,129,220,122,28,82,93,88,224,225,243,248,77,202,148,135,107,177,21,225,34,67,128,165,193,26,69,208,146,206,36,15,220,124,22,185,13,80,227,51,66,198,229,38,232,71,3,245,104,198,5,77,167,69,36,171,28,82,173,219,134,139,43,137,23,85,112,153,78,116,176,136,83,178,19,130,128,48,240,49,179,210,176,243,22,80,190,233,235,23,161,5,230,228,60,80,33,121,140,209,59,218,167,66,241,177,77,14,14,188,218,196,165,124,42,212,195,200,145,104,45,174,184,234,185,132,110,165,29,59,215,152,183,242,179,165,148,175,6,98,74,120,42,111,173,97,129,182,169,38,128,115,5,117,184,37,203,52,179,176,222,14,162,195,228,243,106,225,33,107,32,72,80,132,50,57,78,213,53,211,116,43,103,131,31,64,253,135,119,235,54,52,172,237,199,188,249,123,10,190,195,161,74,26,160,134,73,15
 3,167,253,3,22,238,138,199,217,173,41,207,206,181,192,34,139,135,92,97,179,155,204,5,29,157,120,197,184,249,5,39,234,234,201,203,143,145,198,238,13,7,47,138,237,117,199,126,135,35,229,102,85,48,40,176,93,237,178,119,201,204,70,250,242,188,24,64,51,35,9,44,60,142,115,164,255,214,92,249,154,58,165,159,133,14,8,103,194,80,79,214,51,195,129,254,188,211,126,216,233,249,169,48,139,68,237,52,64,127,32,175,205,13,160,102,190,105,57,66,255,187,48,145,224,192,67,93,127,178,18,230,29,56,146,9,24,207,99,145,10,146,40,71,118,221,166,73,205,240,84,19,158,223,225,80,239,95,63,114,56,136,88,5,234,150,64,144,98,42,162,39,246,239,77,8,2,46,140,17,54,75,142,32,61,106,38,0,9,155,165,189,140,208,128,155,11,217,86,35,154,29,229,76,167,234,211,243,196,104,136,244,34,121,197,252,231,194,184,211,115,50,59,235,140,59,6,174,83,87,115,5,167,54,166,136,198,230,116,206,134,105,125,40,211,75,148,243,7,140,172,14,143,45,5,187,32,180,176,220,77,39,85,73,118,69,154,148,24,160,208,60,73,83,16,87,82,175,167,16
 7,118,50,52,177,17,139,80,94,156,237,77,98,82,110,231,91,77,227,176,224,95,221,101,196,38,28,36,111,14,102,166,6,217,126,239,203,29,91,248,249,16,11,168,21,154,181,196,71,169,61,204,197,251,8,17,150,134,142,133,223,254,136,136,99,224,249,232,182,108,155,36,71,62,151,93,62,207,215,105,92,204,106,43,237,229,74,165,205,48,112,40,147,80,121,239,92,241,158,225,141,158,235,138,158,167,27,134,64,164,12,59,175,28,163,86,214,10,214,186,56,250,176,64,242,84,125,167,52,212,113,159,205,52,100,101,152,4,61,179,37,130,181,189,68,151,131,247,155,72,153,168,118,173,27,97,174,49,48,187,32,118,38,185,240,87,11,122,141,177,143,105,210,227,128,146,15,163,146,126,89,198,132,22,30,178,79,166,183,107,85,208,219,227,255,232,2,254,41,93,178,169,63,84,41,133,132,88,98,231,235,25,46,225,155,112,200,21,122,126,144,122,251,119,219,147,75,20,72,132,113,157,227,22,96,24,99,122,76,66,225,150,58,50,186,126,204,33,244,59,242,147,139,170,83,35,215,225,159,187,25,111,98,96,75,184,162,85,31,108,142,169,162,253,
 30,161,197,150,163,208,54,14,125,179,17,122,84,227,197,172,213,34,133,155,111,103,103,158,72,155,136,175,148,71,199,244,58,55,60,89,134,27,42,80,72,211,46,31,91,181,90,230,28,254,88,162,144,54,145,170,121,113,209,48,87,89,224,169,251,206,241,195,203,133,68,70,121,19,212,170,3,0,95,91,170,206,253,62,118,140,234,239,42,215,157,1,204,162,206,54,129,199,94,40,175,224,221,5,77,198,10,104,150,198,39,26,226,229,9,165,71,30,68,148,192,186,175,187,15,114,157,53,20,211,217,111,144,8,140,228,177,192,156,205,79,97,119,247,250,50,231,39,183,107,5,220,63,76,4,161,142,192,218,201,252,102,25,182,114,98,41,118,182,11,12,53,30,164,249,165,145,72,36,139,201,92,198,103,247,1,217,24,93,105,238,146,144,72,215,8,245,90,133,89,211,24,184,173,146,234,85,21,29,246,200,139,162,157,76,59,143,252,75,147,48,152,96,242,22,120,80,5,118,162,130,143,221,137,239,66,213,95,132,238,186,238,166,65,182,243,162,79,6,168,251,181,192,116,135,247,211,44,97,71,100,214,209,62,112,248,62,21,149,24,62,170,202,64,113,93,1
 27,146,234,50,133,176,14,147,138,4,100,90,57,83,153,172,85,160,15,155,95,218,100,183,76,189,78,88,153,49,138,169,85,102,185,241,71,63,149,86,239,215,164,132,70,136,221,95,155,62,123,249,103,151,187,163,97,60,159,193,121,208,146,201,250,37,88,202,15,84,21,108,42,9,119,217,227,229,206,129,42,240,87,10,227,98,25,7,55,109,197,196,22,8,206,36,80,164,167,29,48,179,178,138,111,55,136,69,148,83,97,45,29,245,184,130,17,91,153,208,28,114,121,194,63,46,138,199,162,221,208,232,85,67,160,93,243,18,12,23,67,38,38,201,171,188,213,3,50,213,243,19,47,98,122,223,120,164,59,153,77,35,241,148,6,14,184,176,133,253,49,143,43,69,197,42,166,11,109,37,48,91,57,212,63,27,51,165,212,89,7,43,192,168,216,55,202,78,158,220,35,101,160,175,215,96,128,40,162,185,133,71,252,97,80,98,121,149,248,208,46,200,42,25,201,230,88,95,68,125,204,179,177,143,72,252,19,176,55,180,105,22,202,36,32,61,233,194,172,13,71,145,245,114,221,131,163,92,236,64,138,201,104,220,240,124,212,52,189,181,111,186,81,74,237,243,69,97,152
 ,116,40,235,22,144,11,182,249,180,112,48,25,210,201,40,71,209,1,57,189,98,123,242,7,43,91,221,18,80,241,40,105,114,8,200,129,233,101,124,147,101,147,210,248,143,251,89,119,205,180,44,39,139,22,66,50,219,40,175,128,238,202,13,32,223,131,39,166,36,232,205,247,48,53,207,231,207,170,34,146,238,126,15,187,11,160,232,104,73,137,250,93,113,98,117,80,166,20,120,55,221,197,158,245,235,83,238,2,246,187,254,205,42,47,148,20,127,192,114,76,70,159,196,167,203,155,1,97,229,111,164,231,159,204,205,203,127,25,143,111,5,109,213,41,214,156,243,167,204,159,218,97,166,36,123,128,62,43,48,105,62,151,19,149,211,229,177,196,133,187,75,130,243,4,10,118,142,195,209,197,252,217,118,129,164,35,94,12,195,170,171,150,150,177,209,55,232,190,162,194,97,218,154,245,114,189,179,192,115,122,234,237,28,220,236,28,54,99,31,20,17,104,7,78,234,162,39,129,132,56,23,224,163,233,195,196,76,140,211,129,188,137,118,151,147,56,209,182,29,55,84,202,32,92,113,39,148,253,221,43,176,144,229,192,37,184,109,105,79,118,160,1
 08,162,175,4,168,116,86,57,52,244,52,222,59,28,133,251,2,213,66,208,172,65,9,247,176,215,137,73,116,240,29,28,172,96,144,95,124,198,175,4,26,46,86,221,60,253,139,43,101,51,237,11,230,144,171,241,97,6,179,53,9,38,245,146,214,227,55,158,113,147,0,116,219,49,57,164,156,73,102,145,69,240,74,203,101,140,66,219,239,148,207,141,27,223,168,54,219,38,243,12,239,118,18,40,173,135,76,20,52,5,198,74,9,80,190,242,95,90,81,112,250,108,21,127,28,160,134,194,77,107,60,151,127,101,124,49,202,117,132,184,23,184,17,44,225,106,165,215,243,247,69,82,196,171,184,252,117,10,193,200,4,110,98,125,192,200,164,43,255,209,93,234,213,208,66,15,233,111,150,26,117,242,125,142,153,77,6,82,50,221,107,70,222,119,219,73,134,216,19,181,180,189,8,248,206,110,107,198,238,97,20,153,239,128,206,66,1,191,87,62,41,178,32,77,28,85,142,183,101,231,214,123,223,206,101,122,114,7,11,244,122,142,218,119,193,100,145,131,195,94,105,72,129,55,107,203,235,169,212,203,213,59,123,33,58,43,29,205,195,156,179,48,125,139,131,166,2
 27,56,148,117,179,166,210,79,159,210,17,67,154,252,91,108,229,62,92,253,116,75,172,198,242,72,109,132,84,73,174,181,25,218,143,158,105,194,232,246,225,61,15,210,59,24,248,61,163,84,44,87,244,166,189,25,60,128,100,182,57,17,64,226,199,159,221,139,2,88,147,110,130,236,240,247,194,191,121,198,18,199,41,9,149,2,125,254,226,109,148,213,70,17,21,9,123,15,224,250,164,236,170,99,196,217,20,242,119,52,0,30,27,215,70,138,100,39,65,227,48,216,223,71,189,167,113,101,154,222,208,39,211,50,102,65,159,221,137,96,49,15,129,231,207,60,45,118,138,152,213,42,129,13,26,129,60,191,128,215,251,255,162,118,97,36,196,39,109,96,189,10,243,212,10,76,12,101,114,133,178,182,132,88,24,170,161,225,186,108,234,242,143,80,130,132,227,42,47,184,100,14,63,87,78,119,19,172,79,164,43,105,34,239,7,245,161,233,45,108,136,3,183,165,130,157,3,239,47,228,69,233,97,119,225,217,215,3,24,254,154,142,68,198,145,190,127,10,95,146,148,129,247,85,22,17,223,82,76,36,168,34,60,132,66,9,55,166,18,144,2,33,119,192,113,255,194
 ,90,17,46,102,178,148,146,165,58,92,172,195,203,61,240,49,84,37,243,86,56,138,36,164,132,136,151,9,131,57,147,54,117,244,139,102,144,124,234,238,66,41,35,217,17,120,244,64,95,245,59,0,48,125,110,248,51,119,11,203,193,197,253,103,77,137,164,113,133,182,74,198,16,37,151,96,68,238,88,128,155,110,70,150,109,112,86,162,152,21,46,106,11,56,247,171,115,169,15,47,240,41,91,46,220,116,155,38,146,24,152,73,79,210,61,227,204,4,142,188,115,39,18,99,176,213,51,111,70,75,152,27,234,232,223,233,185,91,193,162,3,230,145,101,254,80,225,95,169,51,203,145,8,57,1,44,226,217,111,98,189,215,118,69,0,161,189,19,207,171,173,121,207,188,234,64,3,240,10,191,105,90,148,228,228,55,246,155,89,233,158,98,42,1,135,163,174,239,229,26,57,197,221,70,231,160,76,248,233,93,93,145,246,237,176,180,14,200,75,13,225,43,178,241,29,51,109,111,22,161,65,205,253,241,146,60,99,220,205,88,133,63,71,21,81,147,134,144,77,97,15,208,42,93,246,227,37,151,57,34,4,114,189,128,126,153,218,131,214,228,70,65,158,40,116,251,230,10
 2,192,239,88,198,153,173,139,43,43,29,39,63,106,69,245,28,189,201,194,162,140,9,90,165,70,194,183,190,62,148,215,58,134,122,150,105,29,89,124,209,146,34,15,68,41,129,11,188,230,159,194,184,150,52,185,197,135,102,226,211,82,222,174,46,36,7,148,19,210,149,43,176,208,69,233,13,184,217,93,193,236,180,180,159,156,65,117,137,204,245,128,192,177,42,41,233,138,88,2,32,219,247,24,134,205,12,236,4,194,223,210,220,219,155,98,74,113,145,174,17,116,164,45,231,175,81,71,150,150,86,19,51,173,80,186,207,246,73,192,194,11,139,0,77,103,250,156,57,44,78,122,37,105,149,18,253,93,215,98,145,34,115,36,70,189,224,6,218,99,46,56,188,129,95,229,61,204,149,188,232,177,251,135,69,30,206,175,72,40,114,113,236,107,159,85,146,31,42,84,113,86,72,46,135,226,232,71,172,151,144,235,150,3,75,137,20,95,90,231,167,43,200,137,13,222,59,128,120,199,32,12,12,30,99,157,161,136,252,125,79,231,162,149,52,194,239,201,49,177,237,19,66,5,185,218,23,139,164,62,163,51,69,20,109,203,239,36,58,121,7,169,94,8,130,19,150,72,2
 07,34,89,129,97,238,93,198,255,212,67,159,206,57,145,143,124,132,8,10,94,215,92,247,58,88,108,253,30,104,141,173,12,144,111,125,90,4,250,229,244,192,225,166,186,6,22,83,201,167,190,192,66,15,152,234,229,129,171,123,147,151,254,170,131,224,97,66,10,219,117,193,226,223,5,213,37,208,171,232,50,145,80,99,118,17,234,54,38,76,217,251,47,167,117,217,112,69,48,159,53,165,131,116,46,72,36,233,44,246,35,106,19,201,192,127,144,117,210,66,61,230,237,180,139,81,101,132,8,2,174,248,24,249,164,118,145,234,132,21,137,115,6,189,193,169,26,123,73,148,122,202,93,27,158,104,85,37,83,58,36,37,243,248,89,213,52,222,98,68,60,77,170,143,39,236,145,16,118,194,233,113,237,121,144,153,23,64,137,146,117,142,223,118,0,80,26,79,207,59,207,242,49,243,157,236,100,247,125,160,126,98,180,108,217,192,92,180,83,16,150,149,82,220,51,56,178,9,135,179,94,38,142,99,151,172,238,236,182,128,103,146,179,221,126,50,95,172,249,196,35,67,173,74,201,59,126,200,64,225,29,110,45,102,42,141,55,192,107,62,215,201,113,193,215
 ,108,209,32,130,213,112,242,157,93,71,229,71,74,98,234,226,102,51,170,48,220,237,213,22,102,189,90,117,180,238,185,178,235,80,251,41,108,142,131,93,190,79,192,125,15,86,207,57,7,98,133,181,235,190,71,134,127,123,27,188,35,75,154,135,198,65,68,96,222,110,35,125,60,205,145,222,161,12,228,38,221,150,4,72,235,35,174,76,14,28,114,192,67,193,162,254,46,207,185,110,120,200,201,242,228,61,143,39,1,175,152,169,158,142,36,90,125,188,243,174,135,96,75,48,15,128,193,154,85,240,136,65,101,38,14,26,134,135,68,121,41,127,59,252,48,71,247,136,170,7,132,13,145,58,213,236,164,27,93,17,121,184,218,29,156,82,52,71,0,72,183,86,1,182,77,86,19,117,168,72,207,177,105,38,224,209,206,43,165,249,169,131,119,165,119,57,120,229,253,42,234,16,209,166,51,193,67,41,226,228,163,109,171,233,230,126,241,121,251,136,21,11,67,79,30,59,14,6,88,201,112,247,209,220,224,231,76,22,98,168,184,183,18,95,108,109,128,30,176,216,42,205,87,25,156,161,15,96,77,21,43,56,142,210,104,234,228,49,113,33,47,26,147,106,35,94,177,
 241,162,182,42,86,66,89,82,178,23,139,39,45,107,124,241,250,139,7,253,246,35,228,39,169,234,31,179,247,4,48,12,20,143,239,199,94,202,98,151,183,229,92,66,54,241,247,18,98,18,74,75,220,12,171,22,78,149,197,251,39,98,210,210,127,60,55,241,191,189,158,140,183,91,158,253,139,72,142,29,239,219,223,102,180,183,237,127,171,208,171,4,55,206,122,164,55,245,189,52,207,254,252,208,95,171,44,217,182,233,153,104,158,197,149,188,121,145,24,57,81,20,15,116,207,96,146,6,100,153,13,102,81,67,217,3,211,114,230,96,201,212,191,125,171,169,38,115,160,98,16,16,160,48,12,138,67,0,7,69,62,163,153,191,103,246,117,200,250,84,125,121,203,137,184,241,38,77,130,14,49,250,143,130,150,170,175,238,226,150,71,231,234,131,124,121,64,20,142,83,170,111,248,45,8,141,29,141,209,243,195,25,108,183,160,197,237,135,235,30,43,242,173,38,80,97,114,12,162,121,139,130,112,199,99,47,58,10,109,19,155,151,33,191,206,16,106,120,216,78,160,161,144,16,250,101,32,132,252,236,203,148,162,233,97,54,91,76,44,164,142,1,242,67,80,
 52,83,62,127,78,145,243,223,224,180,190,196,203,172,227,97,40,176,227,29,248,167,79,30,170,19,185,147,244,106,173,216,78,197,27,145,128,193,191,226,100,136,10,253,1,137,253,158,70,237,57,207,224,143,141,119,115,64,231,224,68,144,72,145,147,24,183,47,230,65,83,101,224,204,211,139,75,90,167,83,196,13,173,109,55,106,207,142,228,15,6,197,26,75,218,57,20,48,7,59,179,135,28,235,205,122,123,248,109,230,75,49,24,164,80,117,181,245,5,181,218,31,219,165,23,12,106,46,126,156,148,1,217,228,91,248,205,172,207,28,125,155,47,14,137,124,129,132,202,110,121,76,136,18,14,38,60,57,172,196,118,232,66,84,250,20,189,139,121,186,243,37,60,34,91,84,219,6,254,60,97,14,22,115,27,212,8,241,239,27,23,175,61,110,62,139,224,160,6,15,82,252,102,83,40,168,136,98,166,57,79,7,236,20,67,79,116,1,37,132,231,113,240,148,217,110,171,60,240,223,151,226,227,98,220,112,42,122,201,175,116,147,55,238,87,232,123,35,207,55,216,221,220,144,150,31,111,23,87,173,40,59,243,143,249,38,52,5,56,204,136,116,253,192,222,227,97,
 75,209,202,150,146,21,181,67,236,165,198,73,249,233,55,110,153,47,191,151,24,149,213,2,192,43,61,92,214,198,114,11,33,205,147,127,38,170,23,66,123,225,242,100,213,246,192,132,185,32,153,76,174,84,152,38,43,173,144,12,208,141,6,213,211,81,45,165,10,186,255,19,213,161,41,26,97,188,66,177,122,13,36,193,20,163,14,233,250,74,87,248,238,230,86,142,221,72,103,235,121,196,48,170,223,240,172,146,191,204,42,89,242,1,243,81,60,132,179,33,228,3,23,208,198,172,152,123,143,39,56,236,185,206,145,247,50,100,232,7,123,134,50,150,224,45,25,79,202,88,174,204,224,12,209,29,116,252,24,24,17,111,12,29,169,166,22,223,8,131,111,114,241,112,109,105,12,130,115,131,133,151,76,182,140,18,254,36,91,230,76,253,146,195,8,127,52,19,37,241,141,167,109,108,85,101,50,9,174,167,67,224,63,142,168,166,61,130,174,92,241,102,0,161,231,123,126,155,17,239,202,148,229,236,204,185,58,47,181,169,190,231,40,213,58,255,242,80,15,102,33,225,240,8,162,212,104,201,63,26,119,94,250,193,100,122,59,84,90,13,120,180,14,35,152,2
 26,123,62,155,136,196,155,178,69,126,138,223,201,117,0,168,201,65,115,214,161,112,203,56,189,129,47,50,207,165,10,79,148,98,191,42,161,221,74,57,1,135,176,106,12,25,216,186,110,52,5,249,82,116,1,77,203,60,166,141,216,239,141,79,69,44,244,8,158,136,188,126,198,201,134,173,209,231,53,206,138,112,45,187,128,126,156,66,16,185,187,44,111,139,108,136,204,163,81,118,220,139,237,161,130,30,180,136,200,33,133,24,121,124,109,34,1,233,214,18,117,240,221,45,19,20,181,250,50,246,235,31,234,88,227,244,143,205,206,89,176,10,124,91,251,93,210,229,203,210,233,125,39,80,129,107,79,89,60,27,130,8,254,125,122,123,183,74,65,200,220,243,22,243,160,5,151,242,79,19,210,250,41,104,252,172,135,1,40,176,81,89,181,13,45,45,93,183,235,5,34,29,37,103,75,43,254,237,221,131,196,42,22,141,159,162,42,120,192,242,22,130,253,140,61,22,124,178,174,138,119,107,97,126,103,252,69,212,128,147,102,84,197,235,243,198,36,3,94,85,220,97,153,6,5,207,149,98,251,3,111,135,78,234,98,5,235,97,212,35,196,50,193,165,79,156,16
 6,196,16,207,126,44,227,172,63,39,18,33,197,81,54,237,187,140,152,215,171,1,122,61,196,71,236,18,229,38,79,237,121,117,25,150,155,34,0,228,53,254,20,151,246,127,73,210,100,23,86,117,228,47,215,171,152,189,85,35,103,211,54,78,15,112,37,122,164,59,110,204,138,87,198,251,89,208,132,43,151,22,45,195,5,152,201,94,81,170,15,5,251,153,217,234,79,107,20,141,111,6,125,164,98,46,183,196,192,81,6,137,58,63,125,45,95,28,184,21,253,16,43,37,203,1,73,204,49,114,115,246,180,65,94,106,70,182,108,8,126,218,207,204,74,41,171,109,175,163,31,56,186,161,30,110,136,83,23,49,99,123,41,61,99,50,14,133,61,229,82,250,180,144,23,96,32,64,50,255,74,114,16,204,109,123,9,107,43,36,217,125,80,52,112,168,248,92,111,44,146,116,53,213,151,119,28,115,136,49,41,79,240,194,70,72,142,243,183,160,146,162,137,199,9,208,197,49,23,78,198,110,19,245,4,209,71,231,173,18,119,128,249,201,91,163,214,20,250,18,150,183,105,10,125,133,232,156,35,179,187,157,89,184,11,101,95,193,137,211,138,52,121,82,9,218,3,152,40,104,151,1
 91,214,116,51,11,190,72,230,224,245,236,141,81,153,10,1,184,8,41,41,116,230,54,58,143,1,171,135,132,177,238,204,129,95,210,143,135,214,179,253,11,64,65,66,193,240,205,39,249,192,173,55,41,142,89,79,55,43,109,78,56,202,64,185,76,141,205,8,204,179,124,7,250,125,79,216,219,69,6,85,237,47,252,1,74,72,89,74,242,251,26,78,73,255,253,80,125,157,88,65,201,78,224,77,133,192,204,154,36,21,116,35,85,115,45,136,195,190,229,175,229,59,206,199,130,25,186,16,82,60,175,179,85,250,90,166,246,126,59,53,221,31,228,99,9,7,99,250,155,235,208,209,0,123,39,138,44,69,193,10,220,114,177,86,163,64,37,226,71,150,241,44,33,24,66,126,238,238,139,41,0,61,108,232,70,14,251,182,252,89,246,81,118,73,79,99,223,190,225,57,84,46,59,138,64,151,179,209,23,85,8,162,59,171,164,84,180,216,17,174,194,219,170,211,99,62,148,109,184,103,153,58,165,72,154,80,19,218,75,83,195,218,157,48,207,50,156,7,235,41,238,36,71,121,114,4,95,90,216,138,7,119,25,70,214,193,180,159,29,131,183,198,49,39,188,239,8,215,79,242,110,156,202,
 166,174,205,89,109,159,85,231,127,217,37,97,83,51,171,97,3,178,167,144,207,23,241,90,73,44,163,169,139,44,14,217,245,177,73,95,214,41,11,20,52,130,144,204,96,161,148,15,237,199,156,31,241,5,136,14,98,225,234,207,156,52,151,209,34,225,67,211,185,202,129,133,145,141,225,255,255,54,200,128,240,12,230,234,19,76,181,87,132,157,43,187,175,72,11,69,90,108,80,247,86,82,55,185,204,230,43,158,133,97,104,131,154,180,95,70,173,62,253,45,229,191,161,28,61,181,108,209,138,199,11,108,22,163,145,90,177,37,165,93,184,9,123,29,49,139,143,28,143,199,105,250,248,149,93,104,238,238,61,234,219,62,100,103,171,74,208,47,191,40,161,199,151,241,144,16,28,179,194,231,242,97,112,103,11,215,5,129,249,141,243,243,225,216,83,234,122,121,28,129,185,124,29,110,22,137,24,178,82,214,80,182,118,105,136,206,52,198,69,70,152,208,187,93,113,254,111,102,79,211,236,36,178,93,98,58,192,26,239,114,14,9,163,206,253,98,0,207,91,31,28,16,221,98,29,175,99,123,36,228,95,65,41,17,143,249,122,185,43,255,168,92,130,248,46,10
 ,96,252,217,237,40,140,62,149,178,66,238,78,189,165,233,11,165,253,114,136,79,236,51,22,135,99,121,10,20,95,61,117,4,48,250,247,32,102,29,75,163,66,200,50,7,111,89,8,21,47,70,87,102,32,247,1,253,72,215,32,240,33,27,29,170,114,142,233,227,38,138,62,79,29,128,117,252,116,57,18,78,55,211,52,175,173,184,158,171,183,224,135,133,3,9,187,44,160,188,229,192,79,204,9,55,137,27,211,240,242,42,37,121,198,91,128,12,118,242,21,123,200,51,7,181,116,207,26,163,53,251,82,80,216,109,102,115,10,141,197,2,191,57,249,9,192,202,197,119,53,115,175,36,107,2,199,74,73,237,208,71,104,147,89,132,43,230,209,82,32,20,254,126,212,143,77,251,212,255,161,222,68,213,120,233,120,106,63,220,157,210,81,171,33,38,181,72,218,19,204,86,177,70,44,252,239,100,68,26,158,78,108,37,61,167,226,61,136,114,147,176,174,147,52,194,178,228,216,225,200,75,180,59,235,228,170,207,77,54,233,94,62,87,50,160,4,103,149,39,6,100,218,67,32,103,212,46,207,141,199,221,76,163,38,116,105,42,26,28,84,191,233,233,171,216,89,42,173,2,204,
 224,182,166,79,104,149,203,246,41,70,83,8,196,172,149,30,1,179,47,5,106,217,200,175,93,26,30,6,73,6,193,79,232,44,106,174,0,30,13,46,172,233,44,181,215,93,120,236,104,221,106,22,243,123,15,133,208,221,245,21,89,87,161,252,217,94,94,155,184,241,227,55,54,137,87,208,36,58,233,41,39,28,231,49,198,161,99,97,179,62,176,196,95,19,49,143,254,166,156,11,70,148,134,195,78,12,187,180,123,97,82,141,237,202,238,186,61,244,234,151,206,128,64,96,94,162,99,100,122,217,168,206,110,89,79,219,81,53,26,95,77,204,253,152,34,207,73,42,227,210,120,42,79,229,169,133,249,161,63,147,100,74,120,162,225,255,114,83,162,172,124,198,204,151,252,248,4,173,89,53,63,65,34,132,226,242,53,45,95,139,61,79,29,168,213,89,83,237,103,133,216,116,211,194,174,140,0,235,92,184,133,8,245,55,47,87,192,221,95,221,113,56,208,215,41,53,69,251,190,28,72,199,251,197,100,54,254,143,207,61,137,125,143,143,137,60,169,76,32,188,127,110,59,172,124,129,85,61,120,24,89,174,210,120,178,249,184,197,19,15,125,194,227,77,55,101,241,12
 1,190,227,139,136,98,212,238,152,39,163,9,247,191,49,190,222,245,39,125,220,91,193,193,188,85,7,156,16,84,198,194,240,18,3,254,203,200,215,84,139,5,5,60,164,76,90,198,144,138,24,131,66,49,194,83,160,20,116,141,243,94,18,30,75,39,204,56,175,193,39,139,6,231,196,157,27,227,149,234,103,32,55,17,216,182,167,216,67,15,159,180,169,67,7,72,125,177,237,102,50,165,25,144,254,185,42,27,249,227,163,186,18,185,118,42,148,139,111,63,122,45,127,218,225,129,226,30,59,75,72,194,84,8,181,87,210,138,157,60,77,173,37,62,171,115,33,203,255,4,108,116,233,148,75,70,225,58,245,126,188,63,195,165,11,244,198,208,53,231,212,125,182,198,232,245,211,56,161,179,10,90,213,95,182,39,106,216,4,123,144,68,249,60,211,36,27,62,198,218,24,64,166,138,132,5,188,202,207,58,109,203,99,78,13,47,78,43,131,109,190,160,103,203,80,177,173,177,187,36,190,49,59,188,104,254,238,95,91,41,146,230,23,118,180,200,136,82,238,219,87,170,195,3,121,206,101,178,138,54,8,124,26,37,17,65,11,162,166,138,32,50,96,168,33,70,75,52,171,2
 54,224,108,255,130,79,143,64,23,175,208,156,218,254,195,145,66,233,81,237,218,59,14,73,150,231,186,169,26,202,29,145,61,8,224,44,226,169,182,148,19,49,228,94,71,208,95,187,44,84,61,69,190,7,83,226,37,183,187,102,141,62,41,207,239,224,94,73,81,240,232,47,71,230,53,253,157,120,177,204,193,152,82,22,149,231,201,130,222,192,54,139,37,163,246,40,104,182,79,93,57,30,197,209,136,196,142,33,16,82,159,136,105,40,9,170,168,99,137,84,197,244,249,253,208,51,128,169,201,107,227,26,199,178,238,107,106,62,189,236,20,184,193,11,24,53,222,208,48,121,130,232,60,142,203,5,225,146,30,24,56,62,29,153,186,122,178,189,14,124,68,76,172,184,49,43,7,166,134,86,251,40,150,147,192,10,166,239,198,1,8,94,128,93,10,40,116,144,223,191,187,50,41,119,244,117,241,209,125,11,218,6,124,119,161,1,57,202,177,182,161,159,250,73,212,97,134,32,108,167,250,10,73,131,66,120,116,112,41,229,186,87,214,179,249,14,44,196,215,4,6,0,18,166,108,215,27,41,156,198,109,157,100,191,153,158,72,62,244,237,145,149,21,140,187,91,163
 ,192,139,26,10,178,226,35,15,222,173,225,160,40,41,254,221,234,96,42,124,72,100,43,235,148,55,156,70,46,73,73,244,164,108,50,89,206,187,244,185,178,230,229,218,188,226,64,61,35,57,229,114,34,95,71,177,135,34,34,2,37,254,83,189,241,190,0,236,190,119,132,190,120,94,87,182,178,101,33,1,6,9,64,87,24,120,169,240,120,72,230,10,195,49,48,228,33,232,229,47,44,25,46,65,177,228,128,216,159,119,82,32,169,94,125,211,119,164,236,227,201,47,6,235,151,126,124,237,184,110,169,234,248,186,9,109,145,207,7,102,214,68,184,29,30,15,31,150,141,18,181,209,82,136,30,134,90,241,134,130,40,26,13,127,235,200,221,21,132,32,168,121,141,199,228,205,64,58,163,99,143,22,111,249,63,112,193,126,96,6,243,253,184,140,246,168,8,240,98,33,212,51,161,197,135,191,188,141,24,44,161,125,207,242,200,249,149,126,93,156,82,197,178,232,189,10,106,156,88,102,254,86,245,255,168,113,45,83,71,98,191,169,25,240,29,39,204,154,145,147,252,19,82,89,80,34,124,248,221,108,202,147,22,92,50,91,50,250,26,174,253,80,29,36,110,166,228
 ,252,58,239,237,104,173,0,118,175,66,245,55,209,7,252,65,151,209,19,152,74,228,2,139,55,234,205,40,1,16,17,226,251,29,148,167,6,43,21,140,164,16,115,46,254,168,113,244,207,43,134,44,255,216,49,39,52,81,232,147,201,63,146,237,255,89,29,1,180,239,29,172,199,76,190,101,163,113,179,101,22,249,235,160,228,228,191,218,7,238,245,65,138,199,244,221,147,219,165,240,83,171,91,133,42,73,148,80,114,172,113,224,113,240,88,80,227,205,105,190,83,41,84,84,226,105,211,87,223,234,141,234,24,9,117,210,154,132,79,138,104,69,81,152,50,19,79,18,186,243,29,194,161,216,252,43,117,238,124,16,81,147,21,240,10,65,117,117,110,127,204,172,146,32,225,99,49,248,237,165,2,103,152,48,122,21,56,34,212,137,194,56,121,64,48,68,136,217,190,228,194,234,135,233,17,162,199,254,197,180,17,201,189,63,214,156,248,134,191,73,84,182,90,185,197,116,209,204,195,73,91,146,59,11,175,242,102,53,209,215,37,171,181,14,93,230,118,214,31,250,131,234,132,128,37,79,213,172,241,34,14,27,41,160,131,66,182,12,228,175,252,94,65,220,1
 86,236,108,155,18,61,131,212,5,121,116,74,224,173,74,228,71,210,122,159,78,183,70,159,175,10,184,202,28,61,208,224,34,107,189,151,254,156,100,28,28,227,238,206,88,53,104,53,232,21,207,33,206,45,113,179,64,196,141,230,247,218,31,145,42,104,8,13,171,250,106,156,88,231,58,212,175,176,5,180,46,105,69,192,50,89,198,27,55,112,52,218,44,120,75,33,49,242,25,224,210,85,43,236,132,233,13,212,29,254,201,199,23,33,241,37,164,28,73,246,211,114,89,148,65,112,139,159,64,189,198,193,86,162,209,137,218,97,247,215,50,200,104,206,150,100,40,248,234,251,66,104,44,125,135,200,240,126,79,105,255,218,249,72,145,180,189,53,52,177,57,190,73,15,233,189,186,208,67,63,239,207,212,70,211,175,92,122,139,244,135,11,40,11,187,82,89,230,66,11,50,20,137,108,106,28,70,199,237,124,47,148,2,42,80,32,78,74,42,13,98,252,141,253,101,188,227,116,25,168,239,223,177,8,78,38,58,22,119,146,171,61,246,141,220,227,163,47,226,222,45,118,235,204,177,173,166,217,213,201,81,110,133,175,81,45,177,192,58,39,35,99,6,178,32,249,
 7,163,127,76,29,23,117,43,36,131,163,74,233,237,161,183,104,28,170,83,141,168,67,124,30,191,202,191,83,119,247,161,137,101,178,136,104,12,151,24,160,205,233,197,141,201,31,123,207,10,179,32,201,186,70,60,89,52,135,6,251,211,185,96,217,21,229,0,101,217,50,4,86,100,122,225,12,169,147,83,236,103,62,151,232,250,72,63,66,125,50,183,77,235,46,115,158,228,221,96,39,184,90,32,154,254,88,155,209,22,152,51,119,40,16,158,92,49,11,107,220,254,86,32,194,55,25,227,227,54,56,98,39,195,188,255,147,181,231,38,168,5,102,178,82,123,29,8,68,154,131,6,121,174,93,20,80,169,102,144,102,220,165,64,250,103,254,236,229,119,42,1,147,132,182,45,58,157,193,84,159,101,218,61,235,28,223,45,215,127,213,192,248,161,54,161,214,226,50,157,236,93,57,223,117,98,68,91,106,233,141,183,81,38,114,244,253,225,190,153,123,16,69,184,109,247,8,186,107,46,70,205,179,197,134,76,181,17,110,108,234,181,26,205,71,66,139,143,139,193,228,189,45,136,6,127,2,63,241,194,36,77,77,165,235,31,76,42,250,101,110,160,45,58,153,141,228
 ,80,52,173,121,230,40,105,186,43,18,158,93,88,95,163,169,246,128,98,69,72,107,66,243,193,169,109,10,200,93,77,138,206,218,171,68,173,11,242,52,68,213,106,105,32,228,232,68,26,97,150,74,72,28,15,43,159,185,32,208,253,20,73,182,47,189,254,33,169,155,250,179,81,236,140,87,32,242,61,69,202,223,178,132,76,248,96,62,56,153,255,20,170,22,247,158,14,56,26,172,21,156,11,2,213,157,113,128,63,1,177,135,243,201,110,34,231,245,95,83,25,153,223,253,183,233,227,35,84,255,105,98,154,89,244,233,146,66,138,185,129,100,188,220,187,12,102,62,122,22,216,168,125,55,90,33,158,51,203,90,138,116,196,126,188,210,146,102,114,38,136,20,95,232,130,209,72,38,203,191,206,229,81,160,166,162,242,185,143,11,54,135,233,122,123,47,238,98,246,235,166,220,24,94,56,102,182,216,14,161,86,126,245,151,165,92,109,176,166,140,67,6,133,151,89,249,78,86,127,240,183,61,147,157,128,221,31,198,91,23,150,131,131,224,9,197,86,50,241,198,49,98,18,10,43,65,62,58,61,254,128,86,209,142,142,253,37,110,47,125,128,224,15,78,9,102,1
 97,198,70,65,26,245,117,101,121,157,255,253,197,239,140,216,180,145,52,28,204,16,18,171,71,15,82,255,153,213,255,215,43,15,173,66,76,109,233,66,90,188,226,48,37,137,142,179,213,3,201,25,155,177,104,60,216,92,189,82,127,194,186,6,64,183,10,186,14,21,231,98,186,44,44,101,29,64,33,19,172,199,138,128,99,57,64,151,180,234,90,52,78,237,84,56,1,194,187,153,62,14,237,164,81,85,193,34,114,2,20,104,142,76,1,45,227,87,83,54,101,149,129,222,75,136,101,157,46,197,30,152,113,236,175,198,129,173,22,196,174,209,247,17,246,7,33,209,41,70,68,111,101,246,48,180,195,179,162,98,22,83,112,71,6,17,209,161,36,172,122,159,190,94,120,47,93,147,145,103,107,65,14,191,167,223,24,159,253,72,92,219,6,144,65,239,30,150,92,153,169,73,205,7,84,31,127,152,3,186,19,90,50,51,203,137,21,5,75,88,120,227,3,26,9,163,58,46,241,239,29,63,82,212,164,198,230,49,181,163,161,229,154,19,62,14,135,31,157,182,124,40,94,147,73,8,115,24,90,95,55,183,146,16,193,224,9,221,87,208,154,18,142,1,2,236,241,173,252,146,200,35,157,138
 ,241,230,233,31,124,2,210,173,244,22,99,243,25,160,116,168,226,89,40,38,38,117,74,84,58,141,167,178,82,196,45,111,133,24,197,163,219,212,105,67,171,98,245,167,18,158,73,185,96,36,177,183,88,60,47,250,55,231,151,57,121,244,54,225,230,61,110,32,227,237,225,152,247,123,242,72,216,52,100,94,11,76,238,220,139,235,187,251,10,14,184,221,232,117,41,64,202,36,220,58,188,106,180,183,54,231,134,150,122,14,250,114,187,6,186,144,65,242,232,159,139,87,220,26,129,24,145,95,105,184,236,134,219,60,55,135,13,244,61,76,75,203,102,179,169,48,204,34,19,46,27,72,229,231,235,69,197,218,54,154,46,35,15,122,164,131,42,211,58,57,85,206,66,198,134,73,138,41,197,179,207,162,241,223,221,46,202,99,1,58,225,117,12,200,245,251,40,199,59,150,0,110,89,181,185,11,102,217,38,184,75,132,54,177,62,43,21,17,132,70,27,218,97,94,40,126,72,252,126,75,2,73,199,143,246,176,30,179,22,179,72,172,232,99,109,198,37,226,224,167,236,194,20,247,60,41,113,132,82,121,222,148,230,127,146,80,11,131,21,136,69,168,48,29,11,100,255
 ,50,11,207,68,236,129,118,70,149,236,168,13,229,159,32,157,242,162,55,116,66,250,189,235,179,148,186,158,74,167,244,243,144,193,30,147,193,237,231,242,160,225,179,171,39,34,209,121,113,56,71,38,129,68,98,224,208,202,112,239,233,135,59,73,153,131,61,162,65,9,240,81,49,198,167,67,157,131,44,158,41,67,187,199,211,128,54,207,114,60,178,186,64,60,43,233,110,236,143,233,138,169,208,208,136,154,210,151,253,211,165,149,50,180,28,245,67,64,154,133,120,80,169,51,193,76,41,172,177,228,234,108,24,92,112,1,88,144,37,147,91,223,42,39,24,65,65,61,204,219,0,99,112,231,240,195,134,154,65,136,123,18,207,190,38,39,144,79,136,10,53,164,54,9,209,135,29,130,8,76,181,54,58,37,69,24,50,156,125,147,193,50,176,75,200,175,241,188,26,41,66,192,97,9,215,58,70,242,169,6,221,238,128,130,226,173,96,234,232,35,133,176,119,149,87,48,110,163,44,149,164,72,191,163,81,172,49,233,46,128,130,79,32,198,104,41,126,116,81,182,2,38,4,237,140,13,169,184,52,200,42,133,47,66,84,231,188,216,60,128,198,14,13,80,124,46,224
 ,117,240,166,75,181,53,219,34,157,252,155,250,219,152,199,230,132,4,93,58,218,153,169,3,175,46,245,145,213,166,233,142,40,210,18,97,42,70,104,231,70,183,79,229,12,156,28,251,175,225,194,212,161,171,165,253,216,179,1,144,161,79,156,77,204,0,190,144,108,212,51,145,214,76,26,55,116,182,61,198,46,242,181,183,113,85,171,211,107,86,11,62,216,54,57,150,90,41,227,113,37,207,29,77,11,228,231,64,193,189,75,80,243,42,131,39,133,33,216,83,204,103,86,105,145,207,245,124,207,80,68,172,149,28,110,16,47,55,69,106,195,113,84,92,199,238,27,22,192,198,66,22,185,204,74,68,71,50,228,78,222,37,40,230,49,225,89,72,83,224,43,51,89,168,28,119,140,238,66,109,182,232,232,79,217,129,249,191,193,18,247,233,190,246,178,209,177,40,187,109,108,240,86,3,221,87,13,245,163,32,64,98,121,42,90,219,14,90,53,53,85,202,130,83,108,77,40,70,152,83,207,158,24,59,175,193,3,119,59,116,167,205,153,204,103,104,216,67,126,183,138,131,37,34,9,181,5,178,130,113,231,99,143,237,241,175,43,189,83,106,7,78,254,228,214,252,208,1
 07,64,153,141,75,225,0,155,183,225,98,60,156,105,9,190,70,163,148,181,228,176,64,249,123,166,242,224,192,45,163,100,157,56,169,105,66,137,105,6,48,14,220,237,164,166,110,90,116,169,121,138,226,146,49,238,145,10,81,153,2,92,44,86,97,47,3,88,137,199,94,247,112,17,89,176,145,165,19,177,218,177,150,172,52,117,65,115,231,224,59,106,244,150,225,115,73,168,58,131,73,185,24,12,236,183,78,6,152,131,251,37,226,231,177,37,112,60,21,217,139,110,248,43,54,132,212,238,234,12,47,102,52,235,252,185,207,173,57,84,232,32,125,254,199,118,89,19,5,185,0,200,132,167,40,100,136,9,232,103,190,177,219,224,138,143,86,215,89,4,36,199,80,210,169,202,141,195,173,71,6,243,133,42,187,249,253,98,14,64,16,170,76,102,67,155,35,153,137,22,129,44,2,185,89,113,176,201,139,3,40,183,72,54,133,52,98,198,179,164,242,101,73,18,156,107,197,244,190,46,187,182,35,22,58,207,194,193,29,127,112,83,29,64,209,84,251,22,61,126,151,150,141,199,109,204,6,28,248,49,27,233,80,247,101,207,205,24,148,26,253,175,237,190,184,251,6,2
 47,211,125,104,205,145,118,105,210,227,227,123,128,210,122,105,218,148,73,144,214,32,22,151,186,123,185,121,58,131,199,231,253,52,88,240,4,46,90,66,167,247,56,189,226,214,178,61,144,163,126,9,18,218,4,132,180,131,225,219,137,173,230,144,45,64,150,1,19,14,202,119,184,80,24,119,236,122,209,179,45,89,242,186,229,120,112,72,214,64,106,66,12,86,152,78,14,2,166,240,239,11,70,145,139,229,109,141,198,200,79,70,43,177,96,18,101,187,239,23,153,155,129,224,154,129,116,81,119,61,167,172,209,11,162,119,70,174,196,51,196,90,203,195,52,105,166,138,228,64,226,133,158,184,64,106,5,98,118,70,64,198,78,199,1,147,103,121,79,168,224,2,90,73,225,234,211,53,86,223,65,174,2,181,47,225,119,1,130,152,251,196,149,196,71,117,176,11,107,115,163,34,8,16,73,119,58,136,32,93,131,130,80,207,49,201,141,158,36,6,218,185,132,120,2,90,82,209,75,152,174,175,220,150,67,60,162,115,158,91,248,191,210,100,9,239,19,109,128,208,183,91,243,247,211,253,161,247,102,162,12,60,114,3,229,146,40,68,141,182,180,130,20,125,114
 ,207,66,96,120,242,12,83,234,55,114,209,118,65,59,201,146,88,230,214,200,62,119,91,87,238,71,35,124,136,214,39,209,226,241,189,64,69,228,197,39,197,136,144,199,104,182,244,150,229,214,104,43,6,25,64,89,15,59,175,130,207,122,139,113,52,168,133,12,87,69,83,113,119,233,96,68,166,255,53,200,122,14,138,171,150,161,210,177,123,55,77,154,17,3,182,100,196,234,8,124,210,11,159,223,205,62,244,183,59,130,115,244,60,160,138,65,108,66,234,208,83,11,247,190,229,12,9,63,241,92,65,51,14,199,105,127,119,150,65,152,114,224,38,224,141,176,152,164,80,50,21,155,85,2,31,12,160,92,199,235,96,225,198,122,233,21,254,30,135,229,68,227,211,182,223,81,35,103,69,65,21,145,13,199,11,246,154,136,69,43,154,205,85,86,242,35,129,37,134,84,134,126,14,107,81,195,247,69,108,27,69,231,97,155,64,151,55,171,170,14,192,23,221,220,234,247,32,245,143,41,96,118,255,128,163,86,216,170,142,82,190,231,164,204,241,8,94,190,59,230,128,53,222,26,201,20,117,51,255,90,26,56,163,110,232,215,46,75,245,203,124,33,249,116,117,170
 ,191,178,179,60,214,49,238,43,14,68,118,115,229,0,185,226,24,73,98,80,66,17,133,163,195,177,133,42,119,88,202,117,159,169,52,139,52,16,39,79,73,210,217,40,137,194,198,121,75,234,21,178,112,57,246,73,100,104,32,211,229,235,161,153,152,254,117,146,78,26,213,7,74,9,32,38,232,139,237,152,166,201,35,127,123,65,136,241,96,180,221,10,54,214,7,234,227,193,34,77,115,71,148,143,157,201,63,21,227,223,148,222,22,112,241,241,145,71,164,134,200,128,85,110,76,249,119,179,141,186,129,7,75,139,245,235,146,247,201,215,104,217,246,128,21,158,22,19,61,226,62,199,38,177,223,133,30,186,221,230,70,15,87,151,65,135,105,8,35,163,37,237,124,58,194,109,76,72,13,22,94,77,95,124,253,126,110,224,77,115,166,91,191,53,161,181,98,115,81,132,103,250,155,229,101,93,57,94,89,160,36,99,43,202,50,45,70,190,73,36,104,238,35,137,149,217,204,220,163,171,134,110,31,201,69,100,33,193,107,226,153,35,230,216,242,53,47,237,235,46,75,222,18,203,132,123,100,113,162,118,231,63,20,46,163,127,54,63,53,157,20,251,88,92,59,42,
 143,165,244,43,94,131,159,83,205,189,153,128,193,111,155,253,211,126,142,28,111,8,132,75,205,156,122,200,94,187,33,143,2,255,68,51,60,153,61,220,29,142,138,19,159,9,180,173,113,124,63,12,0,64,103,121,215,173,226,20,25,75,2,27,118,88,34,209,101,78,188,36,166,45,110,72,137,110,75,98,166,208,73,130,240,60,109,43,85,251,133,231,88,170,79,16,51,170,74,192,52,243,8,48,185,146,168,224,41,185,89,8,43,138,110,140,190,144,250,93,60,208,72,199,113,66,62,240,209,99,227,112,178,125,103,212,13,12,209,102,103,247,64,85,220,69,13,80,175,78,129,110,139,45,37,236,32,83,148,1,162,226,196,207,32,38,59,93,154,240,30,41,190,255,232,228,188,147,91,115,140,161,200,15,160,38,66,52,208,167,246,114,246,126,142,202,160,178,132,121,67,174,49,131,79,28,201,160,56,114,32,33,31,221,240,49,183,11,120,134,118,66,97,190,210,104,55,17,221,51,78,92,18,30,196,149,139,30,207,247,108,72,113,173,149,157,73,19,194,60,9,213,137,183,246,15,253,10,182,9,188,132,144,88,228,141,121,180,219,97,34,113,32,28,94,202,164,173,
 122,183,105,44,70,250,242,239,232,131,19,36,224,178,248,61,130,111,24,246,187,33,50,121,116,182,202,101,44,89,9,120,163,79,162,138,140,49,108,222,111,125,137,90,26,215,141,164,243,214,52,166,229,247,192,71,251,97,237,26,51,113,232,49,108,84,188,43,48,58,224,170,73,138,234,6,224,141,36,227,120,86,191,119,125,115,194,41,168,243,240,131,217,144,56,108,101,6,154,9,157,32,160,209,26,222,254,106,7,163,151,34,238,152,254,80,229,236,138,59,47,106,93,107,233,229,29,228,130,171,83,29,36,9,145,199,248,43,254,66,100,172,162,110,202,240,11,92,55,185,94,163,138,11,194,96,177,211,34,82,251,127,238,26,144,227,73,35,226,225,134,33,123,33,62,59,146,22,105,110,81,173,140,37,221,230,215,121,134,209,44,184,136,4,13,221,242,134,59,232,126,236,75,172,137,69,25,167,4,243,228,9,103,78,252,44,100,214,132,136,243,26,118,116,231,25,227,22,205,177,59,47,213,196,0,224,12,196,14,25,60,16,0,186,89,231,119,89,140,61,15,230,137,150,43,29,123,49,126,1,57,200,42,7,73,18,178,214,186,115,7,20,47,8,205,146,186,20
 1,131,209,195,250,101,90,102,166,14,217,70,199,164,86,0,106,213,217,32,202,25,95,34,142,14,159,244,244,48,189,151,251,25,148,204,192,251,29,0,233,142,168,57,224,177,134,171,170,23,161,110,67,100,71,75,142,210,158,227,204,110,133,199,138,171,206,96,103,173,0,147,90,155,174,222,213,168,169,30,3,193,48,60,80,125,115,86,10,135,253,197,215,41,239,81,226,255,6,106,62,254,46,50,100,223,236,128,211,222,108,55,194,91,36,17,248,108,223,33,156,89,19,180,66,94,77,222,58,157,248,21,70,2,47,14,132,157,69,11,128,222,25,169,217,39,0,234,51,43,19,72,160,173,54,171,163,26,5,105,206,167,84,97,78,41,209,141,128,211,113,226,163,237,58,121,148,30,27,136,181,121,164,155,24,255,130,12,99,75,17,8,59,87,251,32,238,21,47,192,12,233,162,152,217,78,16,159,233,19,223,172,193,35,157,69,136,110,61,134,245,215,187,48,108,192,14,252,166,96,68,150,221,105,92,137,124,103,168,6,184,19,84,122,3,201,246,154,25,100,25,222,107,20,60,19,10,81,206,1,231,33,6,63,104,41,13,7,174,118,132,46,38,0,96,77,73,125,222,107,249
 ,95,30,250,251,162,168,221,139,187,254,107,141,236,114,32,208,37,230,196,96,96,3,20,188,6,152,167,238,17,11,12,125,160,7,43,147,221,217,52,170,134,145,171,178,67,95,251,179,192,42,235,167,191,183,5,51,234,31,101,23,68,218,193,197,81,59,120,4,31,248,195,133,139,179,63,221,65,152,242,234,246,179,80,2,131,114,71,170,24,111,8,219,105,218,169,91,214,29,103,12,95,38,175,61,108,23,11,63,41,115,41,188,108,41,150,45,147,1,159,209,94,54,127,38,73,239,165,82,112,124,59,225,225,80,33,112,154,185,27,172,254,45,139,22,81,137,255,63,153,154,166,210,233,172,36,225,238,47,35,230,38,241,45,93,251,228,207,66,213,144,55,156,76,170,134,90,164,5,67,110,79,200,69,156,58,228,109,80,192,77,88,26,198,97,148,131,147,225,99,113,168,15,108,176,63,127,233,133,26,162,222,60,152,153,11,227,21,250,38,22,99,146,110,208,134,6,42,48,135,61,10,185,178,119,185,204,240,108,214,85,43,19,228,104,153,204,119,138,219,168,210,75,193,113,171,14,146,13,37,40,200,102,23,23,36,248,161,146,58,117,206,107,232,53,94,83,40,10
 ,37,81,18,183,110,76,178,63,161,195,195,107,69,114,246,104,232,181,244,80,49,181,192,238,137,109,99,233,88,94,234,59,217,176,105,21,54,81,91,201,101,26,39,10,156,168,39,66,97,110,42,100,150,129,39,241,218,105,139,188,44,197,181,65,108,44,35,65,59,179,227,129,230,239,187,94,23,38,15,231,101,229,224,244,27,16,178,124,31,204,44,10,175,190,149,126,191,157,199,96,57,110,151,160,158,127,9,68,91,112,186,6,64,252,69,40,192,202,153,99,89,240,42,236,95,42,119,180,124,52,203,100,175,187,29,15,92,65,247,141,24,23,165,190,101,127,22,17,62,231,244,90,248,124,130,67,155,73,136,218,227,242,138,76,156,10,182,37,40,36,32,3,132,134,119,197,78,115,244,79,106,251,80,142,156,234,193,14,97,156,3,11,12,1,121,129,65,77,124,249,81,157,168,148,77,105,146,28,223,111,177,147,197,215,218,223,49,5,186,163,252,238,175,199,220,239,163,126,71,21,30,85,48,195,91,139,10,209,156,188,51,222,166,44,103,248,164,79,253,49,181,214,33,27,24,54,58,69,165,67,125,177,150,3,185,44,72,120,180,36,241,93,21,150,189,151,213,
 244,25,142,55,89,96,9,200,44,1,223,224,91,119,10,240,76,247,123,97,10,231,17,138,114,128,44,102,139,15,233,135,39,189,96,246,156,60,39,2,105,160,216,82,45,58,16,148,160,202,104,255,50,139,22,192,201,32,190,37,190,93,15,155,55,28,36,185,98,106,150,232,146,41,87,102,222,7,126,164,92,135,218,8,142,201,29,171,110,185,14,34,167,221,219,211,237,67,211,11,65,155,104,155,135,235,148,207,159,180,113,205,23,100,124,0,198,232,83,86,76,37,208,193,105,210,115,37,0,58,106,226,180,146,133,225,116,157,95,65,90,42,26,198,197,229,4,78,171,165,11,250,61,173,248,200,148,107,220,169,40,79,224,88,111,17,86,80,198,32,241,83,191,244,194,250,254,192,114,211,10,12,247,69,115,63,238,244,86,252,141,63,44,144,118,26,13,4,189,176,221,128,175,224,184,98,2,108,67,199,14,83,119,113,80,142,200,250,43,245,75,65,210,248,109,47,160,218,53,130,83,154,244,221,0,107,13,175,217,46,10,182,191,136,245,161,244,163,118,36,188,147,196,68,248,207,130,200,143,211,26,77,169,214,154,15,162,81,162,8,90,254,158,242,76,188,162
 ,132,87,209,80,8,52,50,48,193,0,85,222,206,165,237,99,154,18,204,239,131,19,199,233,38,169,28,177,241,63,160,232,38,223,223,172,156,38,173,168,143,222,93,95,237,144,111,249,158,138,38,124,34,131,27,156,4,191,187,127,200,9,24,193,128,94,60,178,140,157,102,141,230,243,85,52,131,134,164,143,236,2,226,80,90,10,130,44,23,165,69,9,118,221,6,232,215,73,222,49,68,61,10,202,177,163,119,53,56,216,52,224,250,104,172,172,49,200,246,124,32,148,160,80,254,239,154,147,82,214,46,10,254,147,81,132,147,45,209,112,222,83,162,160,139,28,215,70,90,228,233,72,167,130,176,119,116,7,233,11,210,195,135,190,249,7,214,243,212,234,208,109,119,68,101,249,158,86,146,108,251,126,131,17,53,164,108,236,217,86,30,243,197,208,109,248,200,90,180,124,249,119,27,170,204,233,10,249,11,219,69,124,112,245,129,218,201,89,44,250,245,232,7,197,177,209,27,197,217,62,64,24,44,233,221,210,248,106,4,62,153,96,68,242,138,181,60,134,34,60,128,42,80,15,240,239,215,13,169,216,73,23,133,13,253,72,175,145,186,38,150,136,200,34,
 34,38,130,207,16,227,246,182,173,25,21,148,99,222,41,190,73,158,215,195,236,80,198,159,216,80,11,50,68,98,247,132,118,50,182,111,137,212,25,129,242,87,0,83,22,24,219,5,180,40,196,183,104,132,56,245,21,68,214,143,60,241,236,128,81,104,103,137,255,164,15,99,78,117,211,162,0,107,26,91,148,144,212,225,43,44,127,211,33,242,52,135,199,162,100,112,52,124,254,131,92,39,147,36,19,125,101,121,175,112,46,202,102,239,230,158,194,14,222,118,41,182,38,8,208,201,237,73,63,5,67,163,72,182,141,79,69,81,221,229,18,252,101,63,61,140,95,124,200,65,69,177,9,102,25,97,15,52,147,228,156,42,25,3,244,20,215,112,59,130,106,186,43,219,75,199,141,102,226,91,44,55,48,26,255,1,104,39,187,119,61,145,88,59,141,45,96,72,34,74,252,121,25,50,217,196,131,77,100,132,41,146,214,190,78,53,237,172,148,65,247,4,51,165,120,86,100,17,253,134,4,61,218,235,43,98,191,107,66,241,182,19,69,132,46,193,123,135,117,219,29,89,125,8,24,104,159,129,158,187,129,114,29,18,136,146,125,41,40,173,123,205,10,137,53,128,157,236,43,235
 ,248,207,102,1,14,196,126,12,168,17,187,226,106,107,233,42,67,158,161,239,150,205,93,77,229,42,228,62,70,20,190,228,56,64,122,82,37,4,248,240,9,126,60,41,255,102,251,98,104,90,201,224,108,109,220,65,181,112,231,195,184,71,192,34,187,167,144,236,22,207,232,199,52,139,246,208,165,15,101,163,77,244,73,142,32,165,97,23,208,48,5,23,198,210,33,255,122,217,225,164,82,232,25,43,226,2,114,255,13,18,59,153,16,94,40,175,87,248,32,234,110,27,65,195,130,85,36,90,231,101,152,179,104,43,135,38,42,41,129,101,215,90,204,8,61,208,126,99,194,207,177,130,141,16,98,86,208,209,161,250,179,95,60,45,143,103,17,180,195,34,135,85,98,193,226,249,195,87,133,145,149,92,231,17,131,244,159,108,113,37,24,113,92,174,123,166,57,166,8,33,84,38,82,170,77,192,71,149,6,244,218,122,14,88,111,126,148,189,62,230,219,179,0,94,7,105,77,2,129,171,93,206,234,227,232,88,180,157,204,105,19,216,49,254,153,87,59,193,40,30,63,30,209,195,160,24,98,243,214,215,129,93,174,117,174,63,253,144,132,77,175,52,212,132,9,44,163,9,240
 ,29,205,156,160,197,26,168,226,235,153,96,89,66,73,123,34,195,238,216,104,144,190,237,188,96,45,164,49,164,56,249,127,44,11,5,9,168,125,131,165,133,153,147,49,195,170,171,242,185,77,27,31,234,84,62,172,49,181,216,236,128,90,50,53,229,32,69,28,25,157,150,199,110,116,225,137,53,158,142,87,90,127,171,50,214,200,126,171,80,78,200,192,64,174,53,235,250,197,237,51,145,111,55,156,80,19,213,12,25,137,244,243,4,212,55,112,208,95,247,31,176,61,229,148,74,221,2,179,31,42,201,97,198,189,244,4,87,60,248,74,30,232,104,237,100,124,153,48,48,23,195,242,49,244,247,62,34,214,137,43,199,245,59,67,161,235,8,189,117,153,140,42,91,188,111,84,43,249,45,187,251,248,105,63,83,187,171,216,173,223,0,164,27,100,252,234,45,99,73,251,115,167,145,248,77,51,172,250,11,167,243,204,219,182,77,154,138,121,112,133,130,5,114,224,39,226,139,208,156,58,178,245,111,157,109,245,13,248,133,248,16,210,231,37,249,76,81,214,97,20,74,70,243,114,162,191,122,55,74,3,170,94,199,246,208,228,194,113,217,251,99,254,248,97,121
 ,65,174,187,227,34,2,209,94,34,222,64,204,187,180,199,206,199,253,149,20,44,93,78,20,144,81,29,133,104,183,101,116,169,25,154,27,104,14,66,244,207,102,45,253,189,109,60,97,39,245,237,138,107,152,171,244,185,165,31,9,199,29,178,12,175,77,58,68,60,93,109,5,203,177,138,115,160,97,41,126,193,193,185,67,69,232,155,57,104,175,37,233,2,225,74,12,216,64,18,91,29,207,86,7,216,191,104,48,211,197,56,47,190,159,40,205,46,148,202,195,220,173,147,232,121,241,97,82,101,126,165,42,66,119,121,125,176,196,231,229,109,217,115,252,227,50,112,203,248,221,178,130,155,204,71,210,18,22,82,225,146,93,31,96,95,0,220,88,139,153,58,39,49,38,74,204,73,201,61,29,45,152,195,25,46,101,203,211,10,207,115,88,38,116,143,0,11,99,105,42,53,191,238,70,248,11,135,74,43,95,7,205,242,182,68,197,173,224,132,26,126,168,116,202,119,90,218,170,32,231,25,220,142,169,98,177,99,128,249,173,38,144,157,51,34,154,255,255,99,155,251,125,67,207,21,69,172,70,130,48,221,173,81,18,224,24,36,134,139,4,45,154,70,95,91,19,109,192,65
 ,216,171,253,238,134,242,85,229,234,213,167,135,18,212,11,120,248,168,83,9,190,179,70,243,108,196,140,172,174,111,28,79,81,102,148,185,236,166,209,142,114,165,22,21,210,0,231,106,142,113,183,63,75,75,228,139,129,75,87,250,185,93,241,230,56,3,179,153,126,101,125,146,237,43,183,250,44,3,4,125,162,68,62,177,247,50,173,225,160,95,57,106,197,167,185,173,82,127,81,12,82,203,125,124,190,100,171,174,176,153,137,117,105,196,127,255,201,20,237,40,23,98,81,120,193,35,168,192,156,19,134,171,71,200,240,235,43,152,95,46,253,109,237,15,137,85,122,251,5,191,136,100,37,111,198,136,49,228,145,238,64,42,195,223,20,125,118,169,73,72,16,187,93,70,164,118,199,56,7,233,193,73,173,194,71,17,184,151,41,234,75,113,140,112,138,10,148,130,103,212,219,201,179,93,78,108,58,33,34,82,112,14,63,183,121,157,55,200,8,71,37,176,123,97,135,189,165,105,45,104,177,166,54,139,237,219,82,122,182,162,252,205,105,89,107,116,228,70,238,219,88,242,67,221,57,167,165,117,228,101,36,150,180,33,99,45,70,81,127,247,76,35,17
 0,110,215,65,182,57,94,52,86,224,17,46,91,76,202,26,229,235,35,166,31,119,32,86,118,27,208,114,126,133,83,17,32,175,171,10,131,174,102,180,169,253,165,240,188,30,42,107,171,244,154,121,149,164,158,176,175,250,136,23,77,46,112,121,220,65,149,81,188,9,46,111,205,237,199,157,40,17,238,5,137,50,213,137,6,210,179,208,95,118,171,38,26,191,159,165,14,200,99,42,245,212,158,82,168,67,201,187,33,57,188,231,21,163,80,157,150,175,65,8,54,186,127,23,118,183,144,203,152,123,123,193,142,114,88,120,7,153,104,179,191,80,98,159,44,213,12,206,249,42,45,104,237,95,152,28,130,229,51,251,219,209,196,77,71,167,96,68,78,59,145,120,94,250,254,195,69,13,50,99,118,132,244,160,169,61,162,16,81,249,207,139,70,233,155,123,58,180,46,242,1,204,210,136,160,87,79,108,86,215,149,145,17,189,214,142,91,85,65,215,130,68,56,235,106,127,62,103,200,148,37,127,98,59,228,139,145,128,18,241,6,56,128,110,149,84,41,67,231,67,229,96,95,73,31,1,196,58,89,9,144,144,70,251,63,19,108,19,232,140,68,5,28,86,241,237,92,151,73,2
 09,224,243,145,197,78,237,148,148,59,122,53,45,181,156,135,38,94,250,0,154,104,177,23,231,254,174,18,46,122,120,204,224,244,172,1,117,165,135,9,93,62,9,252,93,55,69,22,243,14,210,109,102,245,58,241,69,13,100,53,189,78,233,60,94,255,32,11,36,166,180,166,112,45,109,89,84,145,221,116,179,96,41,113,208,5,140,251,51,154,121,160,120,68,233,14,233,193,144,90,138,241,160,241,33,44,20,212,84,139,133,48,191,138,166,7,192,85,241,19,117,195,34,152,188,77,64,47,72,173,29,67,84,13,144,46,78,237,51,125,32,160,120,108,252,102,84,187,78,242,121,204,126,15,222,131,181,172,137,54,28,238,0,250,69,142,122,105,138,107,207,69,197,53,183,211,194,149,142,189,113,4,176,189,13,146,239,35,154,111,132,149,67,158,24,37,225,140,40,255,3,12,96,56,133,244,149,16,200,246,229,229,27,185,217,185,74,154,85,169,127,53,117,76,222,136,98,211,182,149,241,124,101,15,52,127,251,42,240,227,130,4,98,160,166,173,48,15,248,99,174,84,2,254,99,8,106,55,96,142,215,216,244,194,143,243,71,218,144,118,73,193,28,169,122,114,93,
 75,104,121,115,146,253,8,101,121,138,98,158,145,253,189,118,54,72,199,248,169,245,205,115,228,105,201,111,238,143,29,242,211,7,101,131,202,104,141,67,206,133,3,129,37,35,133,168,211,64,152,142,238,156,64,230,184,204,71,251,105,94,106,173,253,155,50,50,191,246,109,17,217,33,185,171,217,183,235,178,131,190,59,47,4,15,42,210,161,106,163,152,233,184,148,1,99,150,54,125,38,160,174,136,249,239,61,36,252,83,52,164,200,11,127,192,149,167,147,189,8,90,105,26,156,79,206,227,72,21,229,80,196,64,211,61,206,99,1,195,218,118,64,97,219,126,245,26,225,247,65,99,169,31,205,196,254,171,3,124,31,29,170,43,103,240,223,181,20,26,76,97,155,145,47,250,144,170,23,150,128,64,224,215,86,58,89,143,219,106,30,177,29,115,120,109,9,254,250,144,98,218,253,70,117,125,252,246,248,125,74,128,232,34,184,172,251,128,5,210,10,171,109,159,249,78,54,67,214,223,125,6,39,105,45,74,169,95,225,69,30,240,184,2,242,155,113,31,147,197,136,34,192,3,167,119,21,104,22,201,104,222,100,216,53,71,214,83,55,141,5,9,94,98,167,1
 95,193,126,36,228,128,185,126,241,236,243,3,23,174,242,99,8,118,239,77,177,195,131,246,148,154,238,107,185,224,167,72,11,22,129,84,176,53,252,80,47,237,193,212,197,171,175,6,126,158,126,81,117,118,8,214,204,152,226,214,2,28,248,73,166,6,0,50,213,114,180,186,127,99,215,174,110,175,93,228,179,239,154,26,185,134,248,0,10,232,255,211,22,255,171,89,211,192,47,46,29,173,111,208,13,128,219,123,3,141,122,91,51,157,191,9,31,238,105,147,255,6,224,137,86,97,102,104,170,42,5,37,143,122,114,144,170,159,61,154,17,205,101,8,7,239,156,83,41,160,148,225,204,93,245,109,172,24,14,92,155,130,89,244,192,29,11,64,151,135,97,59,7,217,229,64,84,99,14,62,55,122,50,19,51,160,172,94,133,93,109,100,88,120,32,124,4,121,113,103,58,224,164,182,246,28,164,204,178,250,228,12,115,94,136,152,212,149,149,76,87,167,214,224,189,138,135,198,61,60,1,45,148,249,230,6,154,5,122,73,173,229,240,70,218,244,131,28,51,188,69,27,214,160,109,234,228,226,221,130,20,95,18,70,149,71,207,119,57,204,56,180,51,164,101,114,50,193
 ,11,62,239,68,158,71,202,167,116,7,136,82,173,147,84,94,55,219,43,18,171,219,232,14,95,252,205,56,90,41,14,70,253,6,169,60,68,224,25,220,213,39,89,182,223,14,87,48,135,119,95,193,255,167,62,246,35,30,91,3,119,11,181,86,159,223,123,224,13,10,2,32,104,240,192,167,100,142,11,213,169,75,244,230,82,73,8,218,103,124,210,199,51,214,110,57,145,37,248,225,234,194,76,169,1,166,114,111,78,245,152,83,231,176,182,25,58,152,170,108,9,18,92,146,99,246,199,197,218,212,58,43,166,138,98,5,157,101,252,18,43,124,179,14,1,131,40,77,207,172,101,97,188,28,60,99,238,240,239,35,204,28,203,152,239,147,155,112,112,227,152,124,108,196,236,171,159,60,5,230,193,35,10,81,208,171,106,126,109,103,242,238,223,23,143,49,234,84,99,14,33,207,175,62,28,121,32,46,28,19,197,107,206,21,106,14,6,20,28,91,88,149,187,102,155,14,157,250,128,175,25,45,46,112,173,138,43,231,241,226,222,156,10,79,129,80,251,108,38,170,170,50,147,148,215,125,122,140,65,126,167,192,197,59,212,154,134,130,40,40,184,16,61,132,187,27,72,163,90
 ,31,175,23,141,122,153,244,43,35,13,119,215,172,230,171,103,165,88,24,208,164,115,74,34,206,79,196,229,76,22,78,99,55,99,110,94,153,7,40,77,70,190,4,251,172,103,166,99,251,30,90,196,134,198,72,70,255,89,120,86,139,113,160,172,217,183,83,18,1,251,29,121,143,36,180,84,128,73,225,146,151,224,151,202,171,144,153,147,45,79,144,117,106,114,206,207,118,171,198,77,102,124,13,118,231,224,45,105,25,67,168,20,26,169,197,125,4,0,208,88,89,213,129,88,16,199,207,45,75,196,101,36,162,98,212,197,203,150,79,73,238,191,246,238,224,76,102,198,188,171,194,5,96,21,74,45,26,90,185,239,173,176,165,110,192,5,77,180,7,191,205,115,34,90,108,175,7,156,111,85,36,143,219,46,235,0,219,46,110,196,127,70,13,213,94,124,170,43,61,97,5,10,243,204,139,55,54,149,175,212,69,169,127,200,140,152,49,86,179,55,92,249,93,38,119,94,114,122,106,111,120,16,15,225,84,244,221,99,5,204,242,132,131,180,221,183,113,16,159,153,135,207,35,63,106,58,126,226,11,151,117,186,62,190,156,116,158,58,201,6,19,41,104,14,211,153,197,160
 ,225,209,48,88,182,242,51,30,29,44,164,97,46,186,235,219,156,24,24,67,186,108,6,14,69,108,238,138,17,68,198,9,47,147,31,139,187,54,225,220,239,203,142,252,34,220,9,186,115,236,106,247,14,203,93,6,36,198,111,1,118,114,139,219,55,66,28,77,56,19,154,200,48,205,216,180,13,50,125,239,106,157,210,218,208,170,107,243,20,20,108,139,61,181,147,13,90,151,9,162,81,49,45,14,26,219,118,4,225,192,196,158,223,136,121,120,161,88,207,113,54,26,230,53,31,90,57,10,121,58,91,128,178,121,91,208,22,76,168,95,1,147,171,53,176,249,38,7,138,82,215,186,183,233,1,3,56,200,138,155,102,233,168,58,168,77,96,95,215,105,17,108,240,125,94,160,249,10,219,141,253,173,167,235,8,196,69,188,60,28,93,241,202,215,168,251,186,194,215,124,64,205,203,55,133,128,97,13,98,205,239,112,146,198,89,2,55,121,116,78,228,200,238,199,244,213,138,176,112,47,216,53,242,151,210,207,220,103,230,195,235,78,74,8,241,148,59,76,1,31,248,228,97,156,150,107,77,108,12,203,84,47,156,135,113,177,152,128,252,193,78,173,60,215,104,158,204,10
 3,135,166,195,3,142,14,74,145,94,168,74,25,219,224,222,199,104,187,163,188,91,81,7,87,41,202,74,163,214,71,156,199,221,190,20,110,238,224,112,194,244,244,199,138,126,122,131,170,153,217,216,143,22,92,70,88,169,244,33,122,176,142,38,47,66,37,190,131,172,255,29,217,33,138,97,9,193,131,63,215,103,72,13,242,129,54,222,254,185,79,30,88,6,33,148,75,117,36,226,77,166,141,206,55,205,89,234,249,78,234,113,235,147,108,210,212,124,76,188,119,71,213,124,252,179,228,23,109,14,96,13,192,57,42,151,15,207,227,129,203,129,0,25,244,207,173,233,2,187,24,235,27,133,161,29,140,218,18,109,151,232,138,169,18,115,182,204,214,208,179,145,54,158,113,79,206,1,15,240,203,240,27,158,18,59,239,233,74,38,88,118,218,121,197,42,152,234,78,192,97,128,243,241,36,97,62,38,217,72,42,48,100,184,179,125,82,50,101,161,39,19,2,44,141,100,199,237,35,168,242,78,74,169,145,122,193,2,94,163,115,130,241,89,101,129,16,100,128,233,102,47,204,203,54,166,162,104,229,223,198,204,59,254,200,113,7,78,81,41,227,111,3,202,8,67,2
 41,88,93,247,183,84,221,85,173,82,141,228,149,219,107,201,172,126,252,192,237,255,221,49,141,221,70,186,149,110,239,98,174,28,36,88,23,57,109,36,183,166,48,197,59,51,190,242,190,107,63,64,75,93,35,97,235,140,5,37,173,31,254,215,60,232,35,208,32,17,215,17,195,24,127,199,217,24,91,77,221,145,98,14,66,62,106,208,36,59,184,112,214,69,128,97,78,167,183,205,101,145,224,123,132,202,102,111,185,138,11,130,88,1,151,232,85,203,233,43,71,101,178,47,161,43,190,45,168,151,182,96,169,110,78,115,255,221,155,184,185,54,73,37,252,231,253,209,53,127,49,133,100,232,154,73,50,169,132,65,79,138,40,137,245,8,45,0,97,4,126,132,237,178,19,113,198,205,133,1,59,50,139,67,144,13,220,103,174,141,96,42,195,60,90,23,63,8,210,35,170,5,159,31,180,85,59,221,225,1,207,195,28,23,161,19,22,148,128,255,120,89,95,28,137,63,78,1,213,48,112,145,118,129,9,139,48,1,222,33,75,237,183,18,188,17,231,135,138,45,30,33,11,85,159,122,207,97,36,220,39,64,252,7,187,17,226,201,235,1,223,242,139,164,9,160,79,191,250,248,127,20
 2,183,159,135,154,78,20,100,202,92,124,212,20,206,83,113,4,158,39,121,220,3,224,36,184,135,131,139,245,15,11,96,117,57,20,181,110,166,146,53,71,54,118,179,152,227,144,245,21,152,41,159,43,253,1,150,10,73,109,16,18,211,204,23,133,60,33,17,255,32,113,229,6,236,231,233,151,90,102,86,144,74,100,36,21,190,8,205,104,92,239,150,96,154,81,105,49,202,25,212,16,138,109,232,129,66,107,167,87,205,160,242,26,197,204,198,69,125,96,134,99,60,232,114,16,246,19,23,41,150,179,210,57,31,186,108,128,88,140,190,216,195,200,146,38,144,76,248,85,238,5,39,78,179,95,205,10,117,143,42,177,196,122,55,215,220,153,11,242,171,156,11,127,190,123,194,9,38,239,118,122,211,216,154,29,232,19,213,78,87,8,61,143,220,158,149,101,236,96,164,210,48,183,14,76,198,56,252,238,54,120,37,57,107,253,250,23,58,101,160,215,111,137,183,81,16,54,249,252,57,251,159,136,219,156,184,51,16,54,239,153,118,165,125,117,243,64,110,21,135,158,213,165,70,133,196,235,55,51,226,239,12,117,111,160,244,135,47,10,18,165,215,112,182,134,24
 6,213,26,4,102,68,142,207,49,228,77,47,91,247,191,37,73,15,10,175,194,248,8,191,233,10,15,59,188,4,54,175,49,98,177,229,224,168,220,35,49,120,95,182,220,53,15,60,71,196,92,108,90,67,113,0,67,89,144,99,154,57,85,112,195,228,120,37,154,156,245,18,134,85,187,24,232,28,163,162,204,48,114,177,1,14,52,144,86,168,184,64,89,183,124,13,103,178,223,27,58,159,103,244,94,148,106,227,216,100,147,184,217,164,235,180,59,226,157,180,150,204,196,185,243,166,213,76,69,48,53,23,104,47,16,12,156,32,243,179,85,43,149,130,66,202,65,213,146,34,78,12,0,116,85,119,169,37,240,32,214,167,223,135,61,111,16,42,88,15,10,245,248,219,100,79,20,202,21,155,15,1,198,98,34,171,144,54,98,222,29,2,51,227,6,239,58,18,185,98,15,38,5,81,84,165,132,149,223,3,131,241,252,110,19,170,21,10,192,60,96,122,195,235,177,94,249,25,203,45,208,58,157,221,248,118,63,216,148,142,135,57,188,120,14,168,44,69,176,217,142,227,127,135,25,12,225,200,243,106,154,187,74,227,78,61,23,246,129,58,143,218,77,173,81,144,247,201,210,45,179,3,
 254,238,230,229,91,187,170,177,100,248,231,66,0,118,29,246,205,120,9,33,173,52,129,234,3,70,227,21,12,185,127,153,141,166,165,39,19,59,118,164,169,34,139,101,71,17,86,18,146,41,229,67,176,103,243,224,222,80,187,81,156,52,117,126,67,6,199,149,235,105,33,1,159,48,171,125,247,127,209,151,20,60,28,114,122,82,197,0,115,250,214,188,94,195,196,100,14,142,209,176,41,120,92,147,128,61,39,226,185,223,103,183,3,82,13,1,204,87,3,235,209,101,206,248,81,151,239,51,68,185,94,211,136,173,102,224,186,137,75,22,127,107,126,179,230,240,1,186,117,145,33,82,17,190,93,78,76,3,170,21,144,42,136,229,31,90,152,69,202,78,242,235,5,81,84,226,136,45,5,120,163,123,125,94,4,249,243,231,22,189,170,196,120,45,102,211,78,161,165,86,198,130,251,60,231,166,56,111,230,95,44,124,125,100,43,155,186,22,164,45,121,125,177,130,23,154,95,64,158,54,47,74,190,228,91,174,131,16,248,105,114,135,59,205,115,209,4,118,205,198,21,140,41,115,136,151,104,219,156,69,97,5,75,183,94,159,106,249,17,230,243,190,75,30,45,221,224,10
 4,20,118,147,57,216,23,128,110,26,176,84,245,200,196,61,135,29,65,236,153,168,147,139,181,76,235,249,24,71,128,59,152,46,217,142,96,63,222,13,172,232,159,127,78,215,24,163,164,9,227,122,84,62,252,106,242,75,35,53,230,81,144,52,208,136,106,227,247,62,143,127,76,150,139,22,105,254,29,139,8,69,162,227,223,93,143,159,153,164,146,174,80,141,208,99,56,163,174,182,205,143,148,176,223,177,125,3,25,39,26,112,162,118,51,240,156,54,217,242,21,214,195,4,223,10,14,206,177,136,172,67,79,126,225,178,59,103,228,60,23,69,195,58,137,153,21,170,109,60,12,95,118,128,158,48,185,248,217,74,4,35,109,212,159,182,196,247,229,145,37,204,31,100,246,110,115,100,2,169,100,153,33,9,240,31,56,246,43,106,167,31,142,244,65,75,229,144,241,34,64,201,130,139,128,92,71,192,11,157,30,96,27,224,236,223,38,239,109,36,9,89,243,142,201,37,142,203,193,45,12,236,182,7,72,12,62,215,32,202,105,83,17,71,57,237,47,176,10,223,107,185,89,137,204,60,131,249,102,6,194,37,15,104,21,92,175,95,105,15,45,132,136,106,58,30,48,115,
 248,108,122,231,171,225,0,198,248,155,168,105,226,183,160,170,219,198,142,121,202,136,29,225,150,64,238,0,222,62,156,112,52,23,66,89,3,54,66,211,193,142,156,175,180,59,61,35,232,148,172,230,162,31,144,64,158,157,60,186,152,233,172,106,19,66,234,156,128,141,167,127,216,169,161,148,128,176,82,5,22,227,237,99,158,60,255,193,125,117,134,141,217,229,108,175,13,210,243,118,98,94,219,14,164,39,181,92,163,101,235,46,38,237,234,156,254,173,40,202,141,40,153,22,103,142,136,21,207,43,92,169,82,22,80,36,132,217,64,30,51,179,213,17,48,249,119,164,3,133,171,76,119,240,33,156,141,94,178,86,79,77,54,18,91,123,21,143,253,56,16,230,82,92,185,108,48,25,151,234,235,116,41,46,17,194,57,19,10,107,14,122,181,6,144,57,137,224,143,232,183,225,251,166,204,141,206,108,228,163,197,116,220,227,130,209,35,210,25,11,23,123,90,222,19,184,38,220,162,254,35,129,241,176,153,142,191,176,104,33,214,49,52,24,168,116,193,139,116,113,244,218,38,157,167,198,7,143,220,210,65,141,129,138,5,56,149,3,255,171,56,37,228,
 103,150,96,230,198,22,224,34,134,53,1,88,225,18,48,99,24,1,1,73,253,171,92,29,100,188,137,131,65,27,228,170,145,244,235,249,75,68,88,180,78,94,5,210,251,149,179,233,170,128,108,225,141,247,217,13,237,44,52,235,202,181,4,73,51,249,241,198,246,1,192,84,247,62,2,92,223,121,50,242,175,101,223,54,166,151,119,104,188,37,126,251,88,211,50,254,202,178,165,239,84,130,40,66,138,219,145,118,25,224,155,30,77,118,109,127,181,64,42,84,121,17,95,237,97,244,152,137,181,228,120,163,168,71,198,31,205,10,48,124,63,103,100,250,17,21,17,109,87,111,164,208,178,100,89,32,101,26,149,7,123,33,86,145,98,195,119,234,93,238,133,177,128,67,4,127,191,1,142,83,7,33,102,94,242,25,19,42,36,233,242,110,48,107,58,87,2,137,43,202,59,237,58,241,75,220,131,16,155,147,123,230,158,82,166,178,10,181,24,247,3,85,219,153,2,21,208,166,232,201,176,123,137,253,208,71,20,203,79,12,12,83,19,23,203,238,96,65,38,111,171,208,40,131,110,224,31,27,254,145,86,57,175,10,113,71,175,242,187,224,111,88,35,121,57,231,62,85,176,252,1
 ,141,226,240,213,198,14,5,17,27,10,252,13,216,202,208,10,154,82,214,222,71,140,80,103,206,197,178,11,219,16,94,46,127,66,118,169,42,171,108,64,242,149,144,246,171,237,3,97,228,31,142,9,118,59,36,1,18,221,13,68,219,41,198,212,212,84,246,64,115,86,237,209,20,1,222,88,238,70,4,126,223,5,4,143,214,132,4,242,33,110,70,179,177,67,177,174,252,246,190,4,28,223,134,216,75,245,173,255,190,85,133,229,40,95,182,194,247,134,113,54,41,124,3,167,153,66,171,39,3,129,92,243,236,99,186,208,49,124,104,254,175,64,207,22,242,204,57,201,238,185,139,89,3,146,2,88,235,219,11,224,135,163,25,196,44,226,121,38,89,97,93,7,124,145,154,248,6,199,95,188,104,200,176,244,141,27,91,56,145,159,37,26,200,118,92,222,160,11,113,157,188,198,232,42,200,91,213,255,241,120,102,1,34,96,22,44,65,183,194,0,108,152,56,123,89,39,133,141,150,139,100,107,246,85,72,206,222,47,31,139,148,196,215,182,153,29,73,161,190,178,166,227,119,60,207,60,243,58,209,148,86,249,212,7,25,211,69,16,6,154,227,197,203,147,241,176,30,233,161,2
 30,51,230,210,90,219,188,56,167,130,218,44,69,109,172,139,109,184,46,183,218,207,238,137,62,189,90,212,13,9,118,135,129,116,30,199,152,44,56,3,7,5,87,48,102,205,155,113,71,115,247,152,114,116,250,141,24,216,77,133,152,177,77,33,225,183,121,60,41,120,223,196,17,56,124,0,210,166,180,44,2,183,125,160,113,169,154,242,81,176,82,251,79,90,118,252,27,112,120,104,26,4,151,148,98,93,154,17,84,171,215,228,81,138,140,167,15,161,228,176,5,158,91,14,1,110,102,203,239,5,176,230,170,223,11,109,108,142,59,103,163,115,81,187,75,244,144,183,198,186,18,137,55,174,6,125,182,245,102,126,6,64,171,153,33,97,17,106,145,81,246,136,128,23,147,13,116,95,200,197,154,12,72,222,13,125,128,130,173,173,58,238,193,194,183,142,143,191,4,3,86,187,113,75,245,17,207,190,40,240,215,59,173,95,49,219,38,219,64,99,177,52,140,0,213,210,159,102,93,139,1,187,64,51,152,58,79,115,135,35,94,224,203,113,47,224,176,17,216,16,75,30,32,80,171,125,83,154,28,200,224,77,178,234,101,98,86,27,25,223,66,2,148,156,208,98,5,138,175,
 153,108,200,131,74,171,18,91,196,64,101,42,210,174,56,31,188,12,131,140,44,127,1,185,82,174,107,230,159,147,239,41,20,98,49,52,183,182,175,232,117,253,182,129,11,20,190,169,9,120,85,175,248,136,78,225,143,117,132,72,153,241,140,122,68,46,150,12,125,146,47,215,131,62,221,7,232,171,196,117,138,196,193,70,240,43,186,18,144,67,81,252,98,201,171,196,7,6,158,218,74,42,241,195,184,210,110,114,194,92,88,27,77,138,152,130,148,105,49,239,148,239,153,10,126,193,209,228,208,141,156,101,38,246,125,121,89,163,19,151,238,183,86,25,6,202,122,142,25,181,43,116,160,7,73,232,198,151,160,227,210,25,240,228,22,43,172,244,153,175,221,191,19,39,95,125,206,40,63,33,241,9,143,36,169,156,123,163,196,85,28,166,192,158,200,126,218,43,104,120,234,185,70,245,61,79,28,230,106,90,253,54,221,144,228,210,183,249,8,94,135,213,147,245,47,255,30,105,52,178,15,124,133,198,208,10,173,144,69,143,109,197,184,206,190,239,131,181,212,16,188,247,141,120,138,210,81,104,226,25,184,5,155,10,79,250,118,245,23,138,194,98,1
 38,250,21,168,75,28,148,183,227,145,167,166,84,209,56,239,69,58,86,31,150,95,209,23,125,129,80,203,247,54,215,144,19,77,28,134,38,146,229,33,171,172,121,11,167,113,145,43,24,84,98,172,100,164,239,192,138,77,234,223,130,152,185,48,132,63,97,72,54,112,79,36,213,255,191,50,199,209,143,211,11,154,219,120,241,106,70,96,137,24,132,10,238,106,55,229,51,206,31,221,13,54,207,161,121,10,170,227,157,180,112,138,181,65,133,222,238,195,154,251,209,147,248,244,252,12,85,253,235,199,40,95,41,237,244,73,204,94,14,98,80,19,60,251,214,137,232,59,46,143,36,53,225,194,1,222,246,241,242,254,71,133,99,230,46,150,93,238,249,230,81,175,157,199,30,4,133,240,226,236,181,43,228,33,192,119,70,23,227,67,53,175,163,38,36,34,80,108,24,68,248,123,146,133,229,71,26,240,220,219,192,193,1,34,202,143,13,109,41,75,153,32,81,247,171,206,178,31,131,0,64,49,46,97,185,3,220,207,165,167,234,182,186,190,182,218,103,119,203,9,188,20,217,99,39,114,17,189,190,157,61,190,73,47,96,125,71,110,173,70,118,92,157,177,45,69,18
 0,224,116,58,220,137,163,191,176,163,235,75,45,11,109,214,254,207,70,78,34,50,149,4,42,178,41,219,49,189,126,175,215,6,197,86,190,143,44,212,15,142,15,84,112,190,105,89,166,83,27,104,161,55,173,237,89,10,166,166,130,152,182,153,181,72,16,119,72,254,9,73,238,110,199,197,250,186,207,178,221,166,206,136,221,156,231,89,94,248,151,100,62,44,8,158,189,119,6,162,56,210,14,234,91,104,10,240,145,168,155,208,108,155,90,232,120,211,37,111,198,154,104,135,13,135,88,116,9,223,184,83,121,139,2,95,165,20,102,93,6,102,248,109,197,96,166,164,142,64,61,81,179,83,59,17,147,135,25,186,210,240,150,167,53,165,149,216,78,48,199,152,150,92,132,64,189,118,170,79,224,10,50,162,123,7,136,76,253,175,108,216,30,32,79,182,25,77,243,60,187,187,67,190,2,201,27,107,69,219,89,170,160,158,22,243,134,23,76,31,38,180,146,55,242,11,102,106,29,95,185,64,221,187,97,137,17,10,60,27,193,152,202,84,227,53,213,247,10,97,178,182,242,61,183,0,5,205,65,131,221,19,20,235,176,69,186,28,220,24,0,177,236,114,143,74,97,129,13
 1,187,105,0,1,123,170,53,193,91,10,240,205,101,240,187,92,133,56,201,178,223,124,187,68,71,157,86,219,164,86,38,37,2,163,47,250,117,234,67,13,104,132,252,210,112,44,3,156,211,209,39,223,84,44,232,40,10,183,219,23,211,20,128,80,74,7,99,27,62,200,228,165,70,19,84,213,238,72,78,81,177,22,215,56,155,69,41,77,172,93,19,9,30,54,113,39,64,73,23,226,231,99,195,227,156,130,98,147,70,167,194,193,102,99,193,115,208,228,205,204,228,207,116,0,99,114,49,18,227,158,4,243,114,1,50,70,89,214,21,158,34,95,123,250,254,249,120,191,221,127,112,126,213,90,213,50,192,111,241,70,62,197,143,11,232,57,160,4,136,255,86,160,64,140,137,197,198,27,97,80,125,175,21,72,252,106,14,108,79,125,251,169,146,6,170,23,253,34,153,107,73,241,120,31,142,175,153,149,254,139,208,87,28,189,73,228,176,11,180,195,171,176,160,34,137,194,117,41,208,106,205,54,222,244,80,162,181,21,15,97,192,255,9,104,1,235,92,1,189,161,231,108,44,197,3,246,29,174,15,226,52,24,129,235,38,195,241,187,118,11,55,70,159,92,179,86,171,97,122,168
 ,68,169,161,95,35,242,35,36,231,96,159,237,201,148,121,146,116,235,54,220,135,210,173,158,204,174,237,62,56,89,84,23,66,138,94,163,109,61,187,201,183,201,124,185,58,189,97,22,41,249,227,155,251,84,70,228,175,134,76,10,220,0,105,5,88,43,37,26,118,201,244,189,231,118,202,51,231,61,236,69,58,12,225,141,6,48,88,213,147,79,77,138,214,21,69,201,59,201,85,231,108,113,94,214,104,4,153,109,142,186,124,90,50,102,147,102,54,29,83,11,98,36,229,46,8,197,34,160,152,154,18,251,74,92,105,190,45,71,69,171,168,196,208,247,253,81,174,247,29,251,196,15,36,128,183,98,255,128,197,58,40,82,240,156,175,61,75,101,218,104,120,254,112,12,172,40,92,224,179,182,51,141,224,61,65,72,189,22,95,34,59,114,253,232,233,232,25,128,218,52,221,20,135,57,193,26,161,227,201,134,33,237,176,240,223,167,143,138,41,92,196,216,46,119,233,232,18,123,6,87,29,68,144,224,1,71,15,203,5,242,105,185,232,211,202,29,215,99,5,120,103,221,172,0,107,202,141,92,83,152,248,24,140,149,126,64,217,5,85,88,215,96,245,246,247,130,139,135,
 1,123,86,167,22,42,19,46,231,67,198,152,175,186,248,112,66,133,85,170,43,1,113,168,208,206,173,187,214,209,134,23,182,99,121,219,43,234,16,40,77,209,78,18,57,15,214,126,27,139,20,225,218,134,207,127,14,60,158,6,50,216,191,130,102,149,94,211,82,73,175,119,11,16,215,89,199,150,89,115,10,20,85,241,35,50,214,125,166,7,149,82,17,17,105,210,197,160,229,208,238,236,250,61,55,211,231,135,29,140,86,216,211,5,2,81,45,78,109,3,11,162,248,29,113,219,198,83,127,166,31,196,73,100,149,37,245,183,16,4,174,147,6,134,78,200,16,24,81,113,200,186,84,233,89,183,80,2,167,76,62,139,69,18,132,139,90,217,92,60,97,84,98,45,39,226,31,43,220,249,197,121,6,121,152,98,49,157,43,211,230,157,129,176,94,25,14,176,106,107,196,62,162,109,65,196,89,132,53,86,129,167,198,49,38,246,211,200,233,212,40,93,110,206,127,83,73,51,135,16,102,16,127,12,125,206,198,140,166,164,80,229,136,241,43,182,244,185,56,247,165,85,29,6,113,135,172,185,23,61,212,119,99,150,98,254,78,168,33,65,216,51,128,160,161,220,74,117,220,175,31
 ,1,155,91,28,142,181,72,130,106,159,52,36,35,37,132,62,159,45,118,9,207,51,46,105,59,145,35,205,17,130,136,167,61,175,123,135,20,226,252,134,14,4,67,142,10,59,61,117,172,242,107,194,87,167,225,9,70,213,13,154,39,184,117,217,112,123,203,150,19,111,119,104,153,14,110,16,69,206,14,161,111,40,108,51,216,252,142,16,165,128,74,96,70,64,87,234,124,15,198,232,93,176,238,51,161,21,129,25,152,238,25,95,1,251,143,49,153,245,93,88,83,49,238,210,179,112,39,75,212,198,147,167,205,104,130,223,94,160,10,243,216,216,231,195,102,179,36,10,17,72,155,196,69,142,28,200,4,47,102,40,20,60,86,125,98,215,28,30,227,186,42,205,4,103,85,81,127,238,228,247,249,18,128,218,106,5,71,156,95,215,173,33,125,82,193,214,114,90,215,212,28,10,248,77,14,231,90,124,112,190,157,138,1,2,111,182,105,226,217,14,182,15,113,170,27,151,182,155,48,155,236,117,69,27,135,121,231,55,242,75,29,84,78,135,73,135,66,158,137,251,107,82,119,229,112,25,16,73,244,2,3,62,33,221,111,199,41,254,199,48,168,50,41,154,218,80,23,119,175,21,
 85,250,44,31,66,124,134,228,140,163,63,28,138,123,137,252,116,73,154,209,18,139,179,176,213,124,48,189,165,19,11,244,2,220,84,154,84,7,20,45,209,234,35,246,202,157,111,77,222,211,131,240,228,89,235,197,19,107,182,120,97,233,28,181,9,198,168,188,223,162,9,174,85,239,25,146,207,157,182,208,175,228,160,16,114,110,225,30,75,35,184,210,238,90,72,173,81,166,67,153,40,209,242,194,59,195,250,202,246,249,207,35,35,180,176,175,122,88,81,219,51,115,201,207,59,52,129,249,246,255,230,144,221,143,6,168,111,18,217,31,211,135,67,153,204,174,63,215,254,214,53,21,222,34,35,227,162,182,40,191,17,73,182,210,48,95,140,147,246,251,188,234,91,152,50,78,132,227,88,204,94,251,59,74,105,247,231,195,3,9,157,180,165,33,208,153,192,62,161,250,95,173,115,220,21,193,70,124,203,95,250,24,223,59,85,229,158,53,193,89,67,33,172,58,183,23,114,49,18,242,44,23,208,229,13,85,44,161,207,91,160,75,67,101,90,156,150,7,130,187,3,220,8,117,16,91,245,248,79,234,189,211,146,180,32,77,1,237,121,103,130,215,207,117,13,151
 ,56,69,144,185,142,86,52,95,126,70,6,34,151,135,145,60,85,52,236,247,234,161,202,87,56,53,176,251,180,108,163,98,31,105,83,225,160,236,111,64,159,123,135,65,61,46,38,219,200,63,1,169,94,47,229,46,21,117,105,124,136,40,4,208,117,226,36,8,168,245,124,25,129,253,243,100,68,118,163,18,40,167,61,111,128,1,150,21,228,164,209,183,214,90,58,63,64,1,219,135,216,103,32,197,24,150,74,108,172,56,28,106,68,60,182,69,33,128,127,190,147,119,237,123,17,154,240,103,115,3,56,20,48,170,143,76,179,166,226,35,38,187,229,43,225,100,185,22,0,120,191,206,147,163,172,123,10,13,99,128,145,242,70,114,17,111,48,24,86,198,141,42,117,124,103,62,37,69,99,148,92,35,251,91,18,89,254,24,51,111,54,109,60,205,100,251,46,36,209,52,252,108,134,204,206,79,70,129,194,94,106,228,246,45,25,189,136,105,33,148,199,119,76,141,204,207,137,235,5,218,34,75,207,140,155,200,200,145,59,246,127,184,135,148,25,92,36,40,212,147,127,240,170,73,152,220,237,208,150,35,169,197,99,21,25,70,74,52,254,170,143,214,1,59,76,195,183,192,2
 32,38,160,194,67,196,139,97,203,150,96,224,65,151,161,184,238,192,207,47,184,251,57,177,10,93,215,140,41,194,32,181,94,132,241,178,17,33,7,121,121,126,238,16,34,133,191,91,127,104,85,30,152,54,210,253,225,24,49,187,146,245,51,20,201,60,216,210,121,112,17,186,111,156,223,198,135,122,158,231,16,209,25,145,163,121,119,127,75,228,34,92,239,232,224,238,235,113,110,181,8,172,129,152,107,145,220,248,199,156,200,52,230,94,86,76,50,163,91,127,198,18,2,73,145,232,55,128,198,180,83,17,100,65,195,191,148,71,47,208,192,67,52,13,185,84,142,74,118,152,205,223,176,21,6,217,87,41,166,60,112,216,151,227,26,73,26,215,151,109,99,68,223,44,132,205,112,153,158,132,113,137,69,195,18,169,37,9,249,17,84,206,179,11,11,201,131,164,143,196,208,213,253,135,37,59,151,245,132,26,225,144,38,98,158,217,232,223,15,180,113,235,176,166,134,178,38,200,222,159,65,171,204,226,208,31,32,238,155,184,59,69,98,246,85,101,91,40,77,207,96,185,2,131,84,117,64,204,232,60,222,205,244,205,106,53,244,37,212,200,213,220,32,3
 3,135,248,53,200,254,57,189,69,128,174,216,242,125,112,234,218,191,27,230,147,246,50,150,127,110,132,233,174,67,107,189,243,54,27,92,117,101,252,94,205,85,0,211,44,250,244,56,196,220,25,138,18,191,172,85,168,221,55,148,55,39,91,237,136,91,99,62,11,45,189,38,14,176,97,128,81,217,163,74,168,255,41,37,199,169,50,243,188,151,162,217,213,101,185,132,88,92,179,177,97,129,75,87,128,145,230,94,176,150,81,250,34,139,33,248,238,47,29,34,228,223,104,53,205,190,170,43,186,211,112,125,207,97,7,28,252,150,23,171,27,91,198,233,27,103,174,55,182,251,182,55,11,169,255,202,192,134,176,101,83,193,155,161,172,75,112,32,224,157,125,113,169,216,187,107,97,88,38,4,56,107,46,255,94,192,228,249,209,140,100,58,219,100,198,117,155,154,111,172,227,26,104,111,66,103,215,247,167,31,191,11,224,152,158,249,154,184,15,187,110,125,3,148,138,225,250,127,36,144,16,224,125,240,111,98,243,202,19,21,98,108,165,161,133,68,75,27,188,33,206,32,212,95,88,249,202,171,13,198,144,120,109,103,244,208,163,210,242,243,119,
 43,112,206,74,153,29,143,209,180,255,43,153,20,96,35,164,167,162,254,89,107,200,240,125,25,50,13,64,236,156,210,198,216,144,26,211,107,239,81,9,192,111,158,162,2,71,127,147,34,172,106,140,54,1,133,82,112,151,195,112,189,55,71,145,101,104,212,224,221,193,45,124,228,83,7,200,51,158,161,63,196,92,3,57,97,2,223,118,4,171,167,237,121,36,126,163,235,252,213,59,39,8,82,11,227,64,27,245,11,160,205,244,104,126,193,15,228,237,72,16,215,191,14,176,109,56,229,56,185,169,177,240,48,160,74,89,153,132,202,25,215,241,27,80,52,182,211,120,24,185,118,131,97,117,219,181,182,106,206,255,237,102,142,157,201,246,102,36,97,128,250,10,204,100,17,12,134,41,108,214,127,197,76,241,254,227,82,139,151,161,74,187,90,156,85,62,109,233,0,32,195,132,85,78,0,189,215,108,8,73,170,153,157,50,65,178,157,51,250,199,7,75,17,102,41,228,3,45,103,211,122,233,76,203,188,214,169,231,180,37,48,1,58,49,139,202,90,2,31,238,29,124,153,187,220,14,28,73,188,53,47,22,105,28,178,8,61,9,148,220,237,208,19,196,144,101,81,55,46,
 204,3,149,144,57,176,192,138,228,11,60,225,30,75,246,93,203,125,82,0,129,218,196,109,152,133,11,90,8,135,101,243,193,187,170,11,221,8,182,146,251,165,230,162,161,103,161,230,123,240,42,239,54,61,218,237,167,133,211,146,86,183,16,22,240,210,160,85,221,163,18,200,135,135,101,57,141,156,74,90,87,74,172,124,167,68,218,30,86,212,8,179,235,244,66,107,35,31,164,129,160,206,129,183,30,73,252,34,89,0,217,116,11,140,42,176,150,177,12,16,110,50,182,217,65,222,168,77,100,44,21,166,238,71,198,244,139,193,12,251,168,172,152,160,15,38,254,202,31,54,24,38,186,97,110,206,36,67,82,13,50,5,94,127,101,124,236,136,158,199,170,2,45,92,153,63,109,192,213,165,91,90,140,161,191,225,183,79,246,144,71,196,88,128,106,35,16,238,92,98,45,202,137,221,86,133,94,136,113,116,231,101,113,10,181,152,255,209,104,236,212,62,51,195,92,196,197,91,103,186,0,144,90,12,87,163,201,42,245,28,91,165,159,51,42,38,207,25,0,49,16,46,146,24,162,113,189,171,202,13,214,137,132,179,38,190,218,76,144,2,185,42,153,51,115,104,64,
 154,45,97,111,55,190,19,151,128,55,67,32,89,34,191,44,8,121,119,202,100,27,169,134,174,233,93,172,131,241,151,102,62,198,61,247,25,110,12,84,72,17,217,170,59,197,251,73,170,202,9,194,124,31,147,19,102,129,202,214,12,156,101,24,84,77,14,207,23,21,135,125,189,175,156,150,189,243,146,147,13,229,2,146,246,216,232,157,240,27,109,87,133,28,0,218,148,87,37,7,79,234,54,252,62,126,252,123,229,52,159,154,236,79,134,70,52,193,200,184,58,93,73,100,226,35,9,80,57,202,153,29,186,45,178,150,203,185,250,220,196,219,251,0,24,93,254,154,157,33,64,244,19,204,91,237,46,151,89,2,232,43,30,206,177,255,96,109,157,42,35,138,13,230,238,46,152,246,198,6,128,165,249,198,7,169,23,3,195,216,31,174,43,139,52,131,217,17,66,201,228,238,252,173,214,238,163,219,34,213,211,175,65,253,77,59,112,44,236,211,140,116,166,167,167,229,254,149,89,192,122,21,83,89,149,51,233,192,220,40,54,0,83,50,17,87,108,66,253,13,91,225,137,219,159,43,212,160,134,96,93,157,150,17,149,162,76,118,65,124,11,71,181,29,40,57,202,224,90,
 39,216,195,59,225,35,148,143,44,184,209,166,189,92,138,75,225,230,12,195,227,88,21,207,244,209,58,241,235,180,126,181,115,84,112,33,217,24,191,34,116,44,105,107,135,248,152,84,174,159,203,245,187,223,93,166,26,241,105,118,223,53,99,60,216,211,96,38,244,201,2,1,101,234,4,222,157,225,195,65,73,125,162,106,202,121,245,195,80,75,68,44,144,164,159,133,225,137,252,106,85,187,172,226,218,116,222,8,13,72,132,137,91,65,247,200,131,53,48,193,244,236,123,110,147,224,199,3,64,182,128,95,127,210,203,197,134,46,14,63,163,185,175,239,105,184,86,146,215,162,119,35,130,189,131,248,37,54,24,76,72,150,255,91,119,121,156,167,180,60,41,240,218,227,9,57,17,142,49,35,142,59,20,34,5,117,118,48,83,232,106,139,213,187,41,140,59,53,96,112,78,164,102,144,184,13,108,169,38,138,41,239,170,141,201,49,156,4,142,78,4,129,122,72,168,197,173,48,10,192,82,43,14,73,235,209,216,190,241,64,56,180,30,242,210,138,227,153,215,154,117,165,255,35,39,70,114,206,164,203,139,27,14,153,84,171,171,57,211,201,214,105,181,15
 7,67,221,150,218,219,105,224,167,203,62,124,64,192,123,172,227,144,105,168,60,21,77,4,72,154,173,9,253,185,192,171,42,134,22,0,15,199,248,15,67,139,203,11,17,73,65,231,155,63,86,239,116,177,131,9,220,72,10,216,172,108,6,46,244,72,156,50,252,134,37,107,19,6,17,0,50,244,192,4,174,212,136,91,46,200,89,16,31,102,84,253,137,24,157,6,35,159,12,225,141,185,157,82,226,121,116,110,193,11,143,139,67,239,175,149,14,137,195,143,54,85,147,94,138,212,236,181,135,139,18,198,204,152,19,212,166,106,66,40,176,146,218,6,86,21,50,21,131,184,182,105,162,89,34,13,31,217,76,133,232,66,215,92,56,169,139,11,163,206,39,28,73,208,247,52,26,225,122,103,239,57,73,85,26,132,232,123,62,95,201,30,139,43,208,37,151,47,82,186,150,72,253,55,158,47,81,107,58,235,163,10,253,196,60,143,113,147,8,91,14,63,133,180,101,136,183,142,92,114,54,65,71,152,94,104,248,210,200,163,159,137,25,144,170,64,193,167,44,79,51,193,61,27,216,87,153,187,46,13,249,210,71,64,172,180,49,182,6,89,143,214,117,87,193,92,118,197,241,238,19
 8,175,161,232,186,99,118,144,95,198,154,211,140,160,128,98,67,53,36,241,120,184,0,149,222,137,179,232,246,63,122,105,210,177,215,44,97,47,137,205,207,230,127,173,243,195,95,247,231,185,100,187,185,220,137,183,188,35,60,82,79,56,131,212,157,191,180,37,27,180,78,86,240,223,93,201,201,146,145,145,29,246,138,152,88,253,7,160,125,15,7,210,36,135,224,15,187,135,141,80,183,212,104,150,96,31,242,1,10,212,77,188,173,82,24,142,158,150,212,210,234,1,194,8,167,167,197,191,20,14,133,194,96,150,157,125,114,200,231,142,106,202,166,153,120,181,9,49,122,234,107,115,193,252,206,88,143,94,19,149,4,97,222,129,54,0,110,145,251,62,55,68,7,26,249,15,155,88,37,251,207,120,116,57,201,170,214,144,253,195,34,41,157,149,234,41,195,58,57,247,188,214,63,110,37,65,117,209,171,148,154,44,21,183,223,42,54,34,95,132,42,87,163,78,57,148,133,14,221,42,28,49,64,255,181,128,202,29,107,33,20,148,145,152,49,182,157,30,4,53,149,192,74,191,73,218,243,13,187,116,166,42,182,27,11,150,28,122,177,24,22,16,169,78,120,120
 ,63,103,198,60,4,128,234,89,182,13,215,58,233,253,48,168,164,62,60,73,19,134,126,156,146,62,203,37,89,50,252,208,60,21,148,130,52,254,35,62,49,25,234,98,244,250,88,97,75,186,99,208,170,170,15,217,224,166,247,18,9,89,100,105,6,237,63,115,238,67,13,64,86,60,45,159,187,215,15,104,194,68,171,154,121,143,114,234,92,185,111,243,161,202,208,132,244,112,59,117,18,176,245,94,54,134,11,28,34,246,143,94,3,25,128,199,160,75,71,132,133,222,146,47,89,228,168,35,133,180,17,14,115,163,14,245,5,171,46,115,150,98,92,12,121,23,42,147,46,197,43,94,105,166,114,95,207,189,35,190,59,95,73,122,152,43,33,218,247,218,25,220,90,139,197,201,54,183,57,109,123,91,120,155,146,133,117,154,19,218,153,179,245,21,193,44,217,0,235,118,78,41,245,39,44,123,47,124,241,193,192,107,155,35,251,196,250,24,143,24,160,245,242,93,2,215,171,251,235,222,137,31,217,244,66,195,141,116,200,131,117,9,255,163,124,91,245,7,119,160,246,135,144,162,117,229,68,185,73,222,108,94,110,247,173,94,61,203,155,27,193,145,164,113,152,152,
 201,100,40,199,249,226,61,95,60,196,177,230,86,77,35,95,33,206,156,150,114,208,66,75,239,153,1,41,177,97,98,97,90,239,31,186,70,37,183,93,191,65,166,3,222,40,76,196,61,94,28,189,46,54,6,63,216,252,125,52,44,9,30,165,149,77,44,159,156,190,33,167,208,36,105,83,163,171,154,46,6,241,137,93,64,84,179,93,19,60,175,189,90,229,95,153,76,97,0,175,254,99,3,136,158,80,122,175,247,27,57,227,71,37,165,89,203,170,133,201,133,144,179,44,218,124,50,143,41,174,194,165,100,159,85,184,85,120,4,240,152,75,163,53,198,128,181,95,123,164,172,176,150,62,108,26,241,200,139,65,168,246,179,191,252,159,109,182,195,194,174,242,125,83,213,215,204,78,61,184,48,21,5,191,17,246,243,209,42,78,146,189,199,8,177,164,113,184,201,69,149,163,207,96,106,12,243,49,3,215,203,210,193,192,250,135,63,71,236,241,72,72,108,195,237,186,95,3,184,104,244,131,40,200,153,163,133,125,135,135,135,138,85,104,51,178,111,183,21,239,68,26,153,58,210,130,213,115,16,74,114,142,10,241,211,137,226,219,144,102,14,185,142,164,169,76,187,
 236,202,23,187,2,42,84,213,184,20,131,201,241,105,72,174,162,165,119,185,199,134,203,255,216,237,60,25,46,49,212,105,16,161,6,26,24,12,221,149,175,22,41,224,181,37,28,108,153,152,7,90,69,11,154,84,91,186,21,57,40,22,68,95,127,233,176,63,233,141,92,56,41,97,152,4,219,172,72,142,205,86,108,205,140,61,28,147,32,170,181,157,67,204,156,20,50,62,174,210,236,96,31,187,131,149,125,137,98,1,54,150,165,235,168,209,133,155,57,162,232,6,165,240,132,231,101,56,63,35,35,207,41,88,229,80,0,196,14,4,131,177,193,64,160,87,103,55,184,33,28,51,113,209,96,3,7,5,33,232,70,227,181,61,52,176,34,64,60,188,195,213,205,202,62,146,204,47,177,139,209,125,90,38,59,105,213,157,114,158,240,179,200,185,31,89,173,93,49,134,12,213,197,128,111,55,8,210,191,172,194,131,242,208,131,168,58,55,108,214,5,49,28,81,183,243,123,122,93,105,235,230,93,50,188,49,183,91,129,249,21,169,174,32,176,88,149,157,5,154,49,91,135,254,139,185,164,30,164,177,139,107,172,152,210,92,42,166,179,35,109,255,235,183,6,25,95,17,204,184,1
 35,7,61,15,171,186,217,208,240,138,143,65,12,13,44,213,137,168,129,229,81,162,34,241,195,107,255,213,46,177,223,142,196,10,44,180,232,86,39,51,113,57,34,74,59,187,80,152,112,146,183,150,198,103,179,113,136,145,245,59,197,172,168,9,247,88,251,106,230,58,98,135,21,47,62,13,234,163,180,152,88,75,80,49,144,168,193,237,214,116,181,146,101,55,74,114,49,235,1,47,125,38,139,138,56,12,4,39,147,59,44,30,250,218,213,170,134,217,75,39,40,236,1,169,62,154,129,17,183,92,171,165,90,50,104,248,138,172,151,99,43,18,120,128,239,206,233,188,226,204,155,66,35,71,179,14,1,78,88,60,123,173,10,223,123,225,14,232,156,71,189,208,226,82,225,117,202,244,101,200,225,245,161,105,177,218,25,102,227,137,13,206,192,239,111,91,165,121,141,60,1,154,231,54,241,173,128,57,229,126,216,83,119,87,4,107,13,137,103,99,39,182,167,255,107,23,107,132,191,61,228,231,92,88,243,188,210,119,133,116,23,202,183,169,255,193,132,150,230,216,176,57,102,191,91,234,209,205,89,224,52,0,62,115,117,120,42,155,41,22,248,178,81,57,21
 6,4,95,59,152,129,23,103,227,143,118,56,48,88,253,196,44,87,86,49,157,226,254,162,146,172,174,174,187,43,81,179,105,169,182,56,233,151,28,246,76,243,99,201,245,195,239,52,249,25,141,193,139,174,193,189,244,75,0,168,221,117,62,182,77,57,171,34,122,153,17,255,45,73,98,162,234,10,236,243,225,243,70,188,105,71,240,235,60,38,15,66,18,127,51,138,131,210,243,85,3,130,14,110,152,235,154,106,195,64,112,59,16,176,253,194,176,57,97,203,196,154,26,168,13,170,168,106,84,171,246,154,173,49,197,102,223,177,8,195,207,252,12,253,89,1,42,26,89,182,104,77,3,252,74,234,78,241,118,252,67,246,74,44,250,93,64,85,105,186,67,7,15,33,111,211,72,233,20,160,94,169,11,113,114,47,7,174,245,202,88,174,32,209,164,96,17,111,57,42,50,92,128,178,233,125,25,196,142,87,98,247,239,34,26,150,157,165,89,146,14,81,255,240,139,100,60,150,114,108,227,103,213,222,157,44,235,56,75,164,241,157,62,249,183,240,30,231,161,203,201,146,130,141,130,140,157,221,46,27,1,57,173,213,255,109,138,88,98,222,154,53,210,180,157,32,246
 ,64,254,151,184,230,91,26,168,138,88,81,218,173,83,160,110,222,88,148,219,4,160,18,109,235,128,155,62,217,105,152,27,65,186,214,223,18,36,82,151,9,50,216,87,242,126,242,134,215,208,195,58,57,134,47,151,148,36,224,78,177,191,201,154,192,192,135,92,71,19,26,87,134,136,215,99,209,145,106,255,254,216,240,196,107,159,137,246,247,34,62,82,7,168,161,171,173,199,144,234,164,148,171,68,65,252,47,194,196,227,232,100,241,232,156,78,61,6,143,216,34,20,22,191,155,184,18,94,220,225,46,210,81,239,127,27,114,224,181,255,233,27,110,208,221,166,5,79,140,9,198,86,22,10,51,129,230,2,38,40,254,223,190,123,54,70,215,25,232,194,188,106,93,245,196,232,2,232,181,223,18,117,0,59,240,129,198,70,64,95,243,112,141,228,141,90,185,55,101,176,35,97,187,229,198,15,95,77,18,42,175,11,223,246,241,234,239,216,71,55,13,19,229,155,229,101,132,98,199,248,148,71,205,195,119,167,65,135,130,209,178,108,123,235,167,9,98,137,149,144,113,78,187,196,157,145,126,84,180,228,147,135,177,189,118,115,14,78,229,173,66,120,111
 ,127,212,208,133,213,150,245,164,239,165,189,5,170,116,47,112,251,29,22,105,96,239,127,51,24,161,167,192,219,10,92,73,255,0,122,61,12,52,246,14,74,60,132,235,21,130,222,103,152,84,89,180,23,245,33,182,243,75,119,123,59,241,144,65,121,215,226,129,41,185,73,162,139,246,84,19,61,46,107,103,228,89,143,92,57,116,135,64,185,153,110,116,18,180,212,108,252,113,2,202,72,255,190,198,201,226,247,25,215,37,119,166,250,230,115,31,101,123,211,241,61,55,144,246,255,125,25,202,122,235,136,111,106,21,124,172,70,186,102,201,154,25,98,68,170,141,1,81,168,246,80,242,119,216,64,169,142,40,32,53,104,157,218,228,253,23,231,236,96,164,144,84,8,164,137,123,39,242,4,18,55,106,14,199,236,236,68,42,26,242,59,24,219,47,155,200,83,236,62,141,233,124,78,223,148,96,111,236,120,203,111,78,12,207,242,245,226,160,144,104,237,45,4,164,235,199,206,98,239,233,172,127,154,42,103,27,100,147,220,154,104,94,115,86,15,227,248,26,233,200,149,10,171,77,39,29,8,255,61,170,6,225,161,55,189,192,121,100,101,212,164,150,159
 ,16,158,70,43,50,130,87,70,38,20,101,176,44,224,8,1,91,26,226,104,216,80,62,147,154,14,93,87,54,110,110,114,105,193,236,148,167,95,83,169,151,144,97,248,97,29,133,204,9,135,204,131,237,69,41,40,84,134,168,196,228,175,53,17,148,164,136,45,174,35,17,255,118,130,60,35,58,242,137,112,222,179,114,187,16,145,189,246,219,44,64,129,170,114,119,31,235,115,226,204,209,103,58,90,125,181,14,229,1,149,234,117,132,101,60,3,192,119,17,23,87,59,17,81,97,114,194,159,70,169,167,150,126,206,122,72,18,63,88,27,37,157,143,150,163,133,195,198,36,38,105,227,33,38,98,102,25,212,225,103,21,73,231,77,193,159,134,52,44,154,68,90,58,213,27,211,75,9,55,36,63,233,108,122,159,199,44,131,198,225,70,12,217,254,69,12,249,92,241,255,104,110,4,48,119,247,187,194,124,35,235,24,58,38,249,239,239,22,21,170,64,223,124,20,44,108,180,64,95,243,185,141,57,126,200,45,154,58,157,98,142,57,150,58,110,51,167,97,231,125,136,117,137,202,66,250,134,22,226,100,107,106,145,23,95,83,76,25,215,196,44,111,103,34,50,178,248,93,78
 ,46,103,212,110,228,226,194,83,21,39,36,207,0,102,216,74,100,235,154,141,218,14,101,1,187,174,209,140,23,167,106,172,52,60,238,213,10,188,85,149,236,3,127,219,16,60,201,181,147,250,251,39,139,142,62,126,16,245,6,252,142,164,151,206,180,203,17,87,250,190,75,0,166,24,40,159,100,87,227,174,21,99,143,223,55,85,232,116,214,26,21,110,113,218,229,16,153,160,130,184,149,149,2,154,241,183,197,8,136,186,23,229,37,156,213,234,192,179,144,41,172,38,162,181,145,96,208,14,143,238,153,30,132,255,179,152,126,135,134,16,58,89,239,129,148,72,203,33,138,39,41,61,82,215,117,174,63,76,112,70,99,120,166,78,10,165,37,233,131,183,27,31,239,203,148,220,27,232,159,46,187,3,225,38,107,182,134,220,16,13,93,139,90,246,198,110,17,28,40,178,78,208,27,16,138,104,110,17,127,207,105,74,238,109,113,15,83,235,220,180,158,213,213,45,42,84,248,81,41,178,69,205,13,230,181,213,94,39,162,158,194,135,46,244,85,45,211,67,51,130,236,119,10,162,105,215,213,133,211,220,183,75,114,169,16,196,80,148,203,126,208,145,110,73
 ,46,87,145,211,208,250,150,189,192,206,99,17,132,117,89,101,153,220,89,200,36,131,173,26,34,144,58,4,67,131,22,234,90,192,114,179,12,94,159,132,108,229,56,121,64,126,157,213,169,246,255,186,37,1,242,184,40,56,94,122,106,214,251,59,26,57,103,51,143,115,34,237,193,0,108,197,149,253,200,159,5,137,169,107,207,77,130,60,122,70,55,237,63,197,153,34,213,56,108,118,24,61,104,111,69,45,19,218,209,156,56,234,173,128,144,70,79,82,181,219,38,100,19,136,54,18,232,56,252,199,72,145,222,178,99,26,141,99,99,248,212,117,207,71,82,135,125,72,42,220,160,166,79,176,32,58,119,183,135,19,238,116,236,44,16,251,86,106,155,247,96,238,246,83,134,115,107,199,35,94,144,204,92,62,40,184,24,40,210,24,159,6,22,224,158,162,151,121,30,31,234,24,11,86,158,100,13,180,85,197,146,69,48,53,16,145,193,240,55,223,34,136,125,185,68,251,130,248,211,5,69,18,152,242,212,173,8,51,10,205,172,250,50,151,3,162,31,22,97,31,20,114,248,199,203,21,240,201,252,39,95,156,89,209,3,248,115,43,166,236,214,41,219,92,82,3,161,24,32,
 62,255,211,225,41,149,54,91,157,188,85,199,84,55,161,252,102,251,4,1,217,215,177,36,179,211,88,230,70,15,29,11,180,179,156,85,213,67,190,61,246,235,139,136,189,248,186,32,182,83,49,154,45,20,48,7,23,34,232,194,141,97,131,55,143,224,234,138,58,33,33,219,58,70,250,70,84,103,7,0,253,16,46,4,230,117,78,15,44,242,229,196,118,236,238,238,67,4,53,225,97,33,239,97,230,46,69,110,51,7,115,49,191,76,247,51,171,168,146,42,11,189,39,215,166,70,171,163,207,60,99,186,141,235,78,203,107,100,112,85,219,140,98,90,54,54,181,213,113,100,81,169,196,73,72,25,72,85,216,234,148,55,234,185,217,179,251,215,212,234,56,24,173,63,205,142,227,225,242,49,149,192,188,208,242,165,185,118,155,96,52,26,45,6,171,232,63,159,103,69,217,64,195,251,244,243,6,247,190,69,125,1,137,254,213,95,123,125,142,142,47,210,204,244,245,2,211,92,130,78,56,57,147,161,106,43,23,23,86,46,161,7,207,183,117,16,182,100,198,221,234,232,185,110,169,85,200,136,132,117,54,243,169,192,116,188,215,17,143,48,184,251,136,130,225,165,34,248,
 84,5,47,154,86,125,232,123,125,113,34,199,176,30,7,247,154,144,203,43,125,210,151,139,68,88,217,160,32,39,179,157,17,133,98,78,112,170,1,62,180,191,77,103,237,164,117,146,178,213,18,247,111,117,228,103,175,39,181,64,27,241,244,120,244,120,247,12,24,4,95,130,246,200,240,116,115,79,112,96,254,104,231,126,177,140,22,236,50,2,231,3,107,56,27,120,163,197,191,244,178,121,204,186,111,16,49,81,9,71,236,14,0,117,196,153,46,167,43,60,250,107,188,106,99,53,54,64,217,14,130,137,33,30,133,239,135,167,1,248,24,100,183,112,183,17,74,103,157,239,132,178,187,63,123,150,252,170,5,227,203,201,104,245,161,215,71,114,163,15,235,127,44,74,148,61,180,241,79,91,10,36,193,115,203,84,210,221,188,233,43,70,167,146,235,152,4,95,167,168,14,158,29,95,208,49,166,156,100,145,19,122,193,245,1,57,171,68,80,8,232,121,66,73,249,176,87,229,186,151,18,61,191,255,110,91,145,252,101,254,226,169,116,71,53,78,8,11,62,229,233,46,63,150,34,136,191,230,116,106,87,255,186,235,186,178,96,188,86,76,194,74,228,48,125,146,1
 90,77,14,166,97,49,243,224,80,27,229,120,115,182,193,231,27,233,50,169,45,229,117,160,161,223,64,15,49,129,212,228,37,151,167,184,39,249,254,157,72,34,24,224,183,206,10,40,27,51,146,58,76,182,254,62,199,212,69,241,104,64,130,10,41,123,16,198,104,225,96,37,56,205,164,244,38,37,23,66,111,183,8,218,227,110,229,39,169,127,94,227,194,5,67,8,209,123,195,157,50,163,143,41,40,240,220,79,48,85,243,254,24,232,209,169,111,230,43,26,186,87,177,91,51,137,220,253,181,25,234,107,145,92,8,217,91,172,4,69,220,106,56,154,180,32,156,142,95,251,63,117,62,115,33,78,180,245,141,152,215,210,110,86,219,43,115,8,119,110,121,2,187,35,44,172,108,95,7,11,235,41,212,239,106,131,97,55,78,72,103,31,16,104,175,122,77,210,157,185,61,4,145,239,112,148,112,167,135,157,94,76,62,104,217,227,245,145,174,238,57,133,86,123,117,127,178,0,119,199,65,120,255,23,237,219,63,57,44,89,89,112,104,67,181,20,216,170,60,49,52,14,185,167,113,44,141,118,251,158,97,100,116,49,245,201,244,44,254,178,156,116,1,55,222,98,199,136,4
 0,194,238,115,183,18,94,75,133,242,33,35,94,200,59,173,190,136,109,72,173,170,104,154,218,46,255,161,132,120,158,39,223,29,138,196,146,71,3,210,58,247,166,154,23,210,33,27,82,159,88,98,247,201,129,48,30,69,112,12,17,22,159,124,18,202,210,212,116,142,204,74,225,195,48,154,20,83,30,184,146,118,123,155,90,60,157,70,179,13,219,52,253,0,67,179,192,205,215,55,21,31,220,82,47,182,76,62,160,145,207,37,197,187,200,97,144,22,171,30,145,206,190,145,154,250,101,146,66,52,170,139,250,113,32,194,186,48,26,61,226,2,39,57,61,83,128,131,29,104,111,139,87,2,100,141,201,176,242,234,149,113,11,175,84,145,111,81,170,210,190,183,246,226,207,100,232,254,244,202,137,44,216,253,97,108,114,49,147,222,93,164,221,43,3,96,56,33,148,12,125,106,73,233,244,214,77,72,91,158,52,252,191,247,132,12,122,74,9,204,121,179,89,80,108,242,122,243,63,17,186,30,17,190,118,186,115,254,5,186,67,241,99,162,222,228,205,96,178,70,111,229,164,247,18,146,215,101,179,146,211,112,89,193,170,145,84,87,98,126,252,28,126,244,1,25
 5,181,240,204,200,224,223,113,149,120,120,213,79,231,26,124,82,210,195,110,129,45,158,14,24,242,26,72,74,4,86,190,63,117,152,231,228,110,204,88,121,34,25,73,207,121,114,97,211,41,205,66,237,216,184,237,20,149,9,85,195,89,77,71,24,244,150,44,143,13,15,65,54,17,0,56,64,216,199,24,251,143,219,140,7,45,134,147,142,88,66,55,222,79,200,117,191,100,182,175,241,229,172,89,183,76,231,247,167,247,226,112,249,39,65,154,85,0,114,198,194,208,31,233,159,198,165,146,197,163,62,226,56,80,92,79,240,87,206,4,9,29,118,31,229,210,255,135,48,174,145,123,40,53,131,222,90,60,171,82,171,211,174,103,192,88,159,95,213,19,40,103,179,134,69,55,203,90,192,172,11,65,221,237,198,3,251,64,240,89,255,223,50,131,76,208,151,172,124,124,178,77,73,100,56,144,184,26,54,109,73,124,161,119,96,7,207,217,160,148,69,115,107,79,52,18,243,41,244,23,74,22,18,118,167,95,192,208,25,243,240,91,208,77,4,85,23,207,254,59,146,223,32,11,28,70,6,243,74,108,25,159,84,250,162,151,91,59,112,204,17,182,144,90,104,164,74,37,244,8,22
 2,153,249,226,47,64,129,86,83,84,16,144,254,215,65,179,122,48,24,191,8,133,226,148,143,221,100,107,225,192,141,114,195,113,51,143,151,205,87,238,153,98,226,217,145,225,237,152,79,89,147,155,160,71,48,165,58,106,198,151,64,215,63,237,170,48,37,122,48,148,212,232,254,236,1,246,49,4,88,175,5,114,29,247,253,41,110,211,218,173,245,19,77,166,8,33,237,43,115,10,180,248,37,138,109,253,144,209,242,242,15,27,253,200,170,114,247,20,179,202,191,135,126,19,216,73,190,194,118,119,147,246,190,1,19,79,35,36,227,235,60,255,211,190,110,132,96,137,254,159,13,114,226,203,156,114,245,125,233,11,200,54,162,239,113,252,163,181,13,84,61,84,3,71,77,65,65,225,71,72,206,212,38,254,142,191,78,190,106,20,123,148,237,186,182,210,125,188,200,123,22,182,148,179,111,76,205,105,76,102,199,146,162,148,160,174,164,149,154,180,102,80,145,253,74,179,213,95,231,106,221,9,168,172,120,168,56,74,139,246,200,196,144,50,97,117,178,109,233,83,50,58,83,200,229,165,146,11,233,212,88,94,118,80,50,83,242,104,147,193,243,18
 ,70,253,126,155,45,79,91,198,217,76,142,226,199,228,240,148,212,192,69,56,51,69,207,100,140,34,253,234,221,185,30,202,30,157,221,21,167,238,106,135,163,253,131,27,173,117,43,115,249,3,36,235,205,189,192,154,124,26,229,156,113,152,81,22,73,32,162,234,250,120,13,93,126,161,67,146,245,77,203,4,202,35,249,86,120,101,135,126,31,208,224,143,14,203,216,22,14,155,33,34,235,102,105,71,54,3,220,7,40,222,171,207,162,204,17,248,116,196,92,48,219,108,62,28,159,248,159,209,14,250,4,64,156,11,153,236,112,173,120,68,154,226,179,126,23,201,122,146,35,3,232,13,206,123,232,22,137,30,9,184,189,36,109,165,209,244,49,95,42,112,94,245,95,186,253,101,38,35,82,137,32,172,8,117,107,143,118,179,5,65,19,119,57,155,122,39,55,244,87,193,178,114,241,153,85,195,123,247,212,226,162,204,110,142,52,191,105,164,116,240,190,20,6,101,32,206,137,166,124,159,109,196,182,206,48,245,119,209,150,88,95,67,247,211,35,200,200,149,58,162,139,38,227,49,142,101,112,86,34,41,38,185,109,231,102,222,176,124,116,21,254,214,203
 ,15,152,182,47,111,206,6,221,167,64,158,68,101,200,79,222,35,138,168,107,196,159,54,254,221,240,42,51,204,39,50,148,247,235,77,29,123,77,206,29,135,105,3,82,222,248,141,115,35,232,167,108,33,123,252,225,85,199,56,233,133,53,207,228,42,190,42,34,225,197,29,189,244,68,212,175,94,243,39,230,234,217,89,30,40,204,42,13,7,144,77,132,234,122,214,36,67,76,112,52,16,245,146,73,238,199,5,164,214,235,4,78,58,12,61,16,208,120,13,113,238,134,121,194,39,78,27,121,253,41,73,247,136,96,252,103,194,128,142,5,17,182,252,57,145,80,95,0,97,61,69,168,203,42,199,129,228,192,140,49,101,194,215,217,167,170,70,177,47,169,19,50,10,131,95,13,96,107,156,29,171,246,203,15,143,190,159,236,212,215,162,20,223,149,139,240,11,128,118,185,217,222,12,37,182,35,48,225,136,97,148,180,255,229,63,75,82,219,105,73,138,177,50,171,163,216,139,67,192,102,90,74,214,138,96,137,105,202,210,119,152,242,19,244,22,100,188,238,198,154,20,135,145,175,101,203,148,254,158,199,219,52,101,168,6,53,195,18,170,34,202,162,169,180,45
 ,79,145,104,154,99,0,220,23,62,116,132,160,48,150,78,159,147,153,38,125,198,194,152,190,248,234,240,47,169,170,143,81,38,208,249,83,86,190,207,133,43,78,169,23,247,3,112,84,165,167,199,85,66,161,57,32,108,85,155,181,22,49,198,105,154,28,32,162,60,254,183,241,243,193,237,41,188,230,254,230,122,221,219,184,225,178,75,25,62,39,161,146,86,93,135,136,128,35,23,148,166,79,70,0,123,147,123,212,1,158,74,23,149,205,79,226,169,38,82,236,104,70,70,129,128,7,66,97,195,218,157,51,34,249,252,88,120,37,26,171,249,252,34,0,219,126,78,129,200,193,66,184,246,72,26,31,6,83,179,2,205,220,189,152,37,237,212,40,108,58,0,123,210,202,162,101,158,117,128,167,15,254,125,185,169,46,94,102,10,224,175,58,1,191,28,19,119,27,148,191,142,141,223,79,99,233,49,40,239,218,169,223,63,117,16,5,16,134,93,173,174,152,44,133,32,234,173,176,144,187,208,199,49,111,103,45,41,143,6,224,126,23,187,251,46,118,207,201,110,80,176,156,193,11,199,171,252,181,110,250,125,17,211,12,78,93,1,245,176,234,167,138,171,168,124,37,7
 7,39,115,90,70,52,1,27,10,61,148,213,229,13,127,111,241,22,58,239,150,125,49,144,167,249,22,89,27,113,7,129,122,194,253,250,193,255,103,67,251,245,102,131,92,4,210,196,91,179,11,191,22,141,35,83,180,76,236,64,239,63,210,31,107,46,233,147,64,64,4,29,234,169,251,12,47,193,34,151,88,41,234,215,124,167,147,227,91,0,128,109,108,12,35,201,160,8,108,119,156,48,16,59,108,207,119,42,59,30,242,183,203,136,50,69,236,190,180,171,104,89,111,210,121,105,44,66,47,192,7,69,74,25,123,86,127,68,71,52,164,174,114,69,155,182,233,96,107,202,44,13,2,73,78,2,74,206,157,204,34,180,52,96,34,132,228,172,39,191,43,128,18,67,198,172,36,73,193,129,151,94,118,253,30,128,57,194,178,218,114,174,239,53,242,196,187,175,255,120,192,17,65,178,141,143,128,39,88,63,129,43,104,44,227,140,36,51,214,26,231,141,79,240,185,91,175,30,13,127,199,239,224,152,167,38,251,19,201,76,99,77,7,29,46,79,24,242,48,83,153,2,6,135,71,82,62,176,81,98,99,147,57,144,146,223,36,166,233,62,241,148,107,172,30,211,38,236,132,198,149,106,
 179,163,244,34,106,245,150,134,31,138,11,4,131,238,41,88,54,36,174,76,112,254,207,102,244,16,32,59,62,163,44,11,57,90,55,7,67,110,131,210,6,142,189,60,177,197,107,45,43,5,251,179,81,120,32,168,66,235,187,175,77,166,188,0,62,93,104,176,12,154,144,158,154,236,134,195,135,107,109,146,58,198,246,71,41,126,122,142,194,175,195,109,75,81,95,212,171,184,112,66,216,247,185,136,143,220,106,204,183,121,44,115,133,50,223,2,54,129,251,106,216,197,11,78,7,221,127,70,232,150,205,100,233,94,248,223,206,222,195,232,38,74,254,214,72,18,31,224,251,201,189,176,215,80,26,179,99,215,10,99,17,101,144,1,42,98,13,60,175,183,30,203,65,215,187,194,38,206,6,130,183,176,42,235,192,42,204,105,149,59,233,179,146,114,185,171,154,220,51,115,170,139,13,189,41,155,73,139,124,61,112,94,54,87,210,211,47,63,71,172,120,252,232,86,8,203,148,219,115,85,218,0,193,111,17,255,84,218,97,191,253,27,117,183,95,79,231,12,123,37,42,10,205,83,51,180,159,192,153,90,176,207,118,38,226,230,155,90,196,52,5,183,60,203,44,158,208
 ,174,149,192,67,6,185,235,252,7,224,130,133,36,148,74,7,6,56,129,25,160,81,64,240,246,116,90,191,136,74,51,98,134,27,139,239,238,125,122,21,135,194,72,197,246,111,243,95,250,197,46,147,158,115,215,33,12,16,117,203,63,120,241,95,30,201,4,44,251,97,209,88,105,200,217,251,218,98,234,139,255,254,35,251,137,160,3,162,70,156,148,169,185,135,136,191,219,47,186,55,7,90,136,197,212,238,93,156,201,151,1,88,211,96,186,121,115,244,26,171,223,110,117,156,106,137,175,233,207,200,210,105,156,22,162,34,73,4,249,122,187,19,47,203,22,109,126,244,200,157,199,208,158,186,56,120,129,111,17,30,167,210,250,115,144,57,44,37,52,33,27,219,85,58,187,29,246,219,24,203,172,62,129,195,58,31,57,225,57,71,83,86,29,139,48,246,151,47,172,144,8,141,210,68,4,101,125,83,234,193,14,42,97,197,100,204,27,251,193,192,83,229,244,166,232,58,30,147,84,83,219,125,114,228,3,234,214,188,155,14,176,243,95,165,106,185,248,230,140,177,167,75,234,0,26,172,246,120,136,185,31,12,233,85,177,48,50,179,1,250,209,232,5,175,26,163,
 194,65,137,175,245,51,10,20,230,3,81,187,171,242,128,2,63,188,124,92,139,244,79,177,245,59,132,156,94,112,56,223,14,183,209,244,250,130,152,190,74,50,250,87,39,91,226,164,127,247,125,6,51,95,134,214,205,54,101,149,30,135,255,132,203,151,174,58,100,15,84,113,216,40,177,95,104,119,206,107,216,213,115,16,31,222,125,157,164,45,10,200,118,10,247,225,146,3,254,252,211,133,163,156,41,24,51,196,164,231,53,76,71,244,246,53,138,57,89,216,188,107,36,24,160,246,97,219,128,178,168,121,57,181,251,25,220,113,122,164,1,237,189,47,192,220,53,18,98,115,29,28,19,223,229,235,162,237,103,226,114,164,53,75,10,143,211,253,85,232,97,25,106,174,127,239,229,239,179,151,182,48,6,75,122,28,196,118,150,58,23,246,201,156,191,139,21,123,189,25,121,249,162,117,144,107,72,187,78,222,215,28,252,175,114,200,218,212,5,2,169,216,45,65,5,76,158,212,248,140,21,211,88,157,70,68,96,151,30,17,165,184,188,218,208,25,166,233,226,147,152,42,135,84,46,119,153,77,147,226,204,35,63,182,134,108,100,21,207,201,66,59,121,61,
 179,75,9,4,188,249,40,104,60,173,192,145,228,50,171,79,111,57,103,29,41,154,178,236,214,15,49,197,194,101,61,156,49,15,123,167,86,21,21,172,245,127,246,44,159,227,170,108,117,19,34,20,29,94,98,4,51,37,14,155,250,99,29,13,255,12,205,162,204,230,200,27,255,74,41,64,221,17,135,133,253,62,218,247,183,156,109,88,221,160,62,213,109,142,78,158,196,37,134,13,170,182,253,253,67,97,3,100,29,131,213,114,13,254,98,80,73,143,142,15,74,191,173,4,87,144,36,176,137,143,215,190,111,133,200,60,160,103,175,11,53,0,40,167,73,233,124,118,70,48,25,39,138,0,201,87,151,89,3,104,157,47,103,11,122,30,234,30,94,11,244,219,108,85,50,94,87,151,73,159,9,156,71,95,114,238,69,207,16,194,143,7,1,203,92,89,72,132,164,77,105,249,177,102,250,38,178,51,113,47,63,209,16,175,79,124,98,235,121,53,153,218,197,251,163,43,21,159,128,239,216,130,255,69,58,175,112,46,205,251,93,18,102,79,128,224,111,76,96,111,108,137,53,248,171,24,103,123,55,150,107,79,168,66,53,83,60,80,108,16,28,206,96,1,221,188,23,117,129,112,144,84
 ,105,19,204,170,10,90,219,16,66,29,203,6,145,14,200,124,47,239,98,110,177,47,137,124,186,132,48,6,177,155,93,73,94,241,22,36,80,122,88,87,103,72,92,59,49,162,155,79,143,104,118,139,46,219,59,231,31,195,47,189,201,83,250,137,191,74,188,112,171,249,140,248,38,217,115,212,220,13,165,87,45,185,195,238,240,57,209,222,36,172,204,1,241,118,80,85,55,136,174,14,18,169,111,192,121,64,46,204,103,235,4,39,118,160,76,44,156,8,169,174,153,37,16,152,112,116,88,63,32,67,236,56,65,52,100,193,47,126,104,110,99,40,34,117,104,194,139,135,63,177,249,54,171,22,99,158,25,119,115,168,23,38,250,212,149,63,90,229,20,169,24,77,251,100,168,70,135,62,104,146,67,126,187,218,181,187,150,26,30,14,136,23,25,162,88,201,143,207,216,210,141,126,3,111,150,48,100,69,211,94,133,63,21,84,3,29,132,158,3,5,246,205,220,116,45,111,73,154,49,70,6,246,50,144,106,113,8,16,70,131,23,26,101,191,208,180,0,134,29,36,224,254,84,135,148,162,111,115,27,178,191,240,248,111,141,229,195,103,232,79,14,178,221,202,114,7,159,72,53,15
 4,9,247,193,101,70,252,9,98,221,23,109,241,172,255,107,254,28,190,138,14,30,2,96,17,175,90,131,129,76,137,35,110,114,24,10,37,188,72,214,71,101,56,237,149,29,82,197,111,34,119,198,183,176,166,77,180,69,190,0,65,44,7,106,130,29,254,212,62,88,219,160,56,52,188,254,137,200,199,59,244,212,195,50,179,127,97,152,99,66,29,78,163,172,143,155,186,69,97,163,212,234,96,155,198,134,104,53,251,104,100,119,60,189,115,76,143,67,130,90,184,230,86,160,35,39,62,130,69,237,198,56,10,119,83,89,255,235,73,136,105,152,71,114,86,155,224,56,140,44,228,240,120,251,48,74,17,227,34,131,131,121,224,58,253,201,195,56,180,188,185,197,250,170,104,212,139,187,242,227,134,224,169,142,191,164,87,190,60,91,61,210,143,33,127,155,247,208,97,79,192,203,230,64,16,215,215,162,88,110,9,0,170,149,55,247,204,181,73,110,233,12,244,232,54,145,177,172,185,103,145,137,140,42,115,100,207,103,63,57,118,229,243,135,78,122,192,128,50,93,109,150,202,209,34,249,9,184,186,23,185,12,106,11,39,107,85,101,18,2,101,226,83,219,244,2
 16,73,10,127,235,73,1,40,206,243,53,228,243,191,242,174,62,230,10,165,27,83,239,13,32,211,40,67,35,186,172,207,176,72,212,18,86,26,53,202,49,136,253,127,174,121,252,94,98,253,241,61,90,108,186,48,149,22,55,176,119,40,223,130,51,243,197,195,117,10,234,212,23,205,148,120,97,79,70,37,185,79,49,226,152,86,201,50,14,30,0,14,197,231,58,132,224,224,113,213,110,89,76,197,38,244,221,10,227,172,78,65,247,180,3,110,241,236,192,104,35,63,193,139,139,177,248,178,22,185,59,14,252,61,24,139,16,8,222,1,98,76,86,209,128,140,52,235,72,72,3,62,48,125,136,131,165,209,118,19,174,19,47,160,249,25,66,62,200,66,143,60,172,172,80,17,122,219,68,210,62,93,224,183,226,174,100,32,204,179,243,34,215,31,81,36,27,102,112,133,126,102,73,197,75,61,223,37,232,224,201,60,110,3,250,133,89,44,3,59,142,250,134,224,74,228,68,172,99,3,150,193,84,210,138,105,209,118,201,192,170,104,0,67,130,118,126,132,199,103,205,246,245,152,82,127,121,245,61,142,28,52,81,141,59,160,221,178,50,158,11,229,229,74,233,177,26,238,254,1
 90,48,74,108,21,225,130,54,184,175,4,27,82,29,140,249,24,36,66,220,3,230,25,93,93,244,193,53,6,131,208,75,67,240,136,56,100,107,128,87,237,32,11,80,33,240,152,56,39,194,181,14,225,6,20,35,49,75,167,97,139,122,224,102,196,179,113,94,244,226,207,174,167,108,143,209,145,128,161,207,47,247,162,221,115,104,45,132,143,14,92,49,251,81,1,131,186,133,169,155,32,78,181,2,84,250,117,237,189,222,253,67,86,228,89,182,111,249,224,109,153,223,232,211,73,138,174,118,66,243,89,156,8,132,147,85,148,146,101,148,63,44,198,135,34,35,177,218,116,169,3,111,235,98,191,17,135,249,91,74,96,45,198,34,86,7,93,70,184,38,161,29,87,195,148,156,137,79,58,167,246,137,224,58,108,252,111,235,55,198,150,234,238,140,141,235,71,62,186,206,137,32,210,103,120,12,71,239,198,245,254,44,128,203,121,207,175,220,225,133,18,107,77,38,39,57,116,115,61,243,167,203,97,54,97,46,197,167,19,93,208,111,238,124,96,89,185,10,185,155,101,212,229,166,202,136,164,125,51,134,73,62,69,90,161,210,203,213,41,165,30,59,174,17,115,44,159
 ,110,12,166,251,254,153,197,126,243,93,32,15,163,12,46,35,222,37,210,174,19,193,93,42,60,205,63,35,237,196,30,52,130,175,180,2,209,223,141,188,87,213,17,243,107,149,80,147,150,32,31,80,198,9,190,152,251,199,208,183,216,138,233,32,59,226,175,20,9,66,245,58,235,99,212,201,116,248,196,181,193,183,102,99,196,209,126,93,42,246,43,144,115,170,105,63,231,243,92,255,97,230,238,117,141,152,24,52,24,44,128,104,230,145,164,142,57,38,125,94,165,161,8,70,119,163,194,159,88,108,119,222,167,44,54,246,154,57,162,72,84,31,253,70,212,100,132,94,1,83,96,233,167,159,213,42,212,183,71,29,219,18,27,242,17,168,127,186,247,165,157,109,20,168,1,119,224,49,111,198,14,206,197,102,9,140,165,112,83,60,142,114,57,190,192,59,228,59,176,94,212,176,219,227,211,43,178,130,179,11,44,21,68,186,242,200,247,138,31,40,208,3,214,4,212,107,209,149,6,62,90,128,219,108,9,179,56,221,57,36,203,254,21,8,230,121,90,226,35,118,67,13,135,199,15,92,97,226,189,174,3,22,213,240,116,157,106,180,241,18,195,208,71,55,30,121,107,
 238,243,34,3,179,202,162,87,233,8,44,13,16,192,21,207,246,208,144,137,217,43,146,81,29,251,27,54,79,38,210,201,250,41,215,104,196,153,19,203,121,248,93,2,191,72,191,158,68,114,177,134,251,140,206,72,113,10,125,217,176,92,9,179,63,130,188,24,104,166,11,147,58,24,204,203,23,20,115,63,131,79,90,143,6,235,46,158,217,5,139,13,148,49,76,83,53,165,243,152,153,50,24,67,169,232,118,2,246,20,223,183,195,188,123,24,217,173,222,119,240,40,137,120,80,228,161,146,224,251,240,61,56,39,137,84,165,7,113,187,150,86,158,255,132,54,228,17,229,118,213,113,252,228,254,51,45,55,104,199,50,233,10,200,128,102,28,25,43,83,226,211,9,46,164,221,217,172,184,119,123,242,26,186,30,164,211,124,48,15,224,69,104,8,34,252,78,243,31,142,164,20,206,161,73,208,78,187,196,205,50,38,23,154,25,78,133,135,76,125,183,145,27,123,25,243,67,76,205,145,151,17,153,187,11,227,55,160,92,158,234,68,68,203,39,78,171,166,32,102,171,76,184,93,204,162,21,183,67,3,86,10,236,27,204,210,178,100,131,8,233,110,164,34,237,190,187,53,1
 00,237,85,63,128,84,206,217,116,237,181,225,250,215,189,174,33,120,87,20,238,147,37,165,91,239,126,189,133,180,22,109,127,54,187,49,8,28,162,91,217,130,147,121,235,103,200,231,140,23,247,178,178,245,76,201,185,53,36,171,174,58,159,243,157,252,73,98,92,18,255,164,25,71,144,96,132,246,197,108,155,82,201,63,95,95,30,131,157,83,148,154,125,229,100,212,2,232,235,1,229,193,88,98,84,142,138,250,218,224,129,236,67,105,221,194,171,209,52,167,195,167,165,185,158,14,24,210,131,85,87,78,123,181,188,89,79,185,19,63,105,199,143,133,122,123,94,213,17,114,22,39,171,70,206,61,11,244,26,29,60,80,0,65,60,79,91,23,14,75,143,25,73,100,60,215,131,145,70,37,1,143,2,246,236,149,56,81,118,102,58,8,229,224,62,124,18,48,49,84,175,177,186,185,207,194,238,42,242,241,237,131,229,6,48,23,180,140,200,26,180,232,52,0,144,97,46,252,143,85,227,96,214,130,241,255,207,213,255,248,19,162,170,46,44,158,190,153,101,36,250,97,230,146,93,254,32,60,251,208,200,204,248,18,15,191,141,234,248,44,150,83,86,8,143,174,150,
 208,134,188,207,77,84,155,179,160,59,197,125,187,42,196,0,116,31,227,27,54,173,134,186,234,241,73,137,38,200,188,147,25,83,230,55,235,56,253,69,177,57,54,181,82,254,68,227,67,60,102,244,47,228,24,158,7,1,60,161,175,90,174,146,226,224,26,175,13,18,132,250,152,53,19,62,250,139,243,73,155,18,252,98,82,224,245,47,10,92,152,12,180,177,87,218,82,164,35,139,128,70,6,75,212,165,192,77,154,250,183,251,161,95,136,32,34,58,20,17,101,58,20,45,54,36,85,175,238,130,229,2,248,166,189,72,156,176,113,107,14,125,226,64,37,252,39,254,222,253,22,79,98,252,93,154,162,218,87,253,197,212,187,12,93,99,73,221,184,107,8,51,135,28,3,42,31,224,181,150,245,54,178,168,101,111,82,185,245,38,162,189,205,92,175,153,63,233,9,135,15,131,245,149,127,254,4,46,230,10,147,88,30,229,25,241,30,173,74,166,128,14,132,246,189,63,28,151,93,121,111,241,241,199,124,137,156,192,136,47,53,196,187,190,228,91,104,235,81,181,236,119,4,51,243,154,98,147,138,238,181,49,182,115,28,52,44,101,239,201,175,59,247,157,54,229,22,227,1
 86,99,73,34,159,17,73,144,112,58,30,100,178,3,57,245,110,231,186,227,104,159,129,113,95,45,79,167,65,143,246,87,177,228,135,206,107,152,58,218,162,144,101,124,95,76,209,128,244,67,127,78,39,247,186,159,217,224,56,186,134,126,12,29,245,101,119,128,154,180,237,12,233,247,15,122,21,112,128,77,82,178,39,47,176,239,221,151,112,70,50,211,131,199,219,1,221,241,182,13,225,134,76,0,50,60,254,230,154,232,62,189,63,135,145,94,168,168,105,163,91,8,215,66,99,142,195,158,93,254,124,55,241,82,103,25,76,159,99,171,146,36,14,175,205,247,116,194,110,33,148,65,86,37,212,41,80,169,60,155,121,161,7,214,133,171,134,170,161,47,17,37,164,184,68,95,230,112,111,77,76,207,25,79,66,138,192,135,163,56,177,253,53,45,209,51,43,24,51,193,208,32,241,191,90,224,233,24,151,87,138,129,11,153,21,197,129,26,51,19,84,162,70,107,130,88,3,238,235,32,201,151,102,74,0,172,133,98,186,191,24,189,88,132,194,239,177,200,68,98,20,107,147,11,223,196,163,209,210,124,242,31,73,85,61,232,233,109,236,61,37,139,141,225,39,223,2
 7,49,97,203,89,190,81,232,31,17,63,115,43,28,124,179,52,38,136,214,124,198,128,114,105,219,76,76,241,197,134,43,168,68,85,81,138,130,132,40,35,201,215,99,198,240,210,87,176,67,156,180,62,17,227,140,12,170,86,126,38,40,72,92,84,132,104,133,96,187,135,50,123,7,234,151,150,183,134,17,89,40,35,198,172,212,215,34,108,139,84,75,132,241,158,37,119,184,64,207,105,157,62,38,21,105,86,2,30,70,147,252,135,117,133,47,140,226,117,157,13,64,122,169,89,52,7,104,38,252,35,32,16,3,227,162,211,201,92,63,200,4,84,58,70,249,54,167,252,229,181,205,219,8,254,212,225,14,73,66,31,82,38,65,17,224,44,22,137,167,53,14,142,62,187,95,184,92,128,88,154,204,216,7,51,239,24,206,166,196,63,255,216,155,102,192,143,201,163,10,110,137,216,106,50,83,255,135,165,152,153,83,230,132,177,188,226,149,156,223,103,152,40,106,212,250,24,126,183,119,138,138,140,1,91,43,163,137,110,224,59,134,126,155,48,235,53,166,191,225,255,114,206,105,191,92,113,207,127,114,30,253,194,164,34,187,219,211,128,83,31,170,83,152,166,109,25
 2,180,138,40,90,174,206,49,225,63,139,132,41,57,97,246,194,250,38,7,143,82,152,44,39,140,164,50,65,113,45,174,238,198,150,142,154,218,242,142,8,77,103,119,249,225,206,242,249,8,136,184,133,240,198,195,90,118,98,88,56,153,118,73,236,84,35,192,10,188,36,254,72,237,219,2,206,189,88,151,31,143,148,45,213,147,203,169,135,141,38,135,122,150,161,122,39,152,41,85,197,167,57,204,29,188,237,60,233,111,91,19,22,99,2,215,48,109,201,160,200,162,32,234,11,116,10,138,185,102,204,1,170,187,149,227,219,86,25,122,202,52,178,57,108,209,233,79,107,94,141,228,138,163,61,34,76,133,68,190,246,236,245,138,223,119,235,131,93,136,89,169,180,194,104,128,101,112,26,2,21,71,245,189,112,193,90,106,79,247,118,226,31,124,87,69,210,241,196,233,172,36,238,181,152,102,93,197,24,64,184,93,16,206,131,142,198,163,155,38,188,176,182,227,38,104,55,72,26,63,30,231,114,30,227,131,53,20,75,99,197,88,237,98,52,69,3,189,17,214,0,81,120,253,133,116,35,71,142,59,237,4,97,242,179,126,106,128,10,184,227,30,202,169,249,175,
 214,74,50,48,167,33,105,67,104,216,181,140,228,234,136,214,96,56,221,49,3,178,80,195,146,244,126,180,41,226,182,229,78,222,54,215,187,53,250,69,129,253,231,189,125,129,101,232,115,161,179,232,188,113,24,96,187,24,130,3,130,136,240,104,189,97,23,70,91,215,88,252,121,57,150,0,143,213,27,229,53,223,129,192,67,58,228,17,105,197,129,170,148,144,41,86,199,35,17,221,186,208,244,67,114,193,58,249,170,11,216,249,123,241,30,22,220,5,255,66,124,103,25,165,118,180,121,147,15,91,235,168,156,29,134,116,5,236,205,146,139,237,157,253,224,24,226,152,47,224,183,230,208,179,144,214,239,68,215,5,81,65,237,172,24,150,48,20,119,180,232,196,232,95,248,128,24,139,121,68,194,177,160,160,12,206,184,189,44,243,81,3,181,223,104,50,50,91,62,219,181,209,133,205,214,232,93,63,103,103,96,47,55,222,207,85,206,67,6,151,225,20,91,25,199,220,162,131,77,199,94,25,159,100,69,132,0,187,74,223,213,5,223,2,203,155,46,112,108,248,74,250,110,222,170,241,175,49,50,77,196,4,17,236,247,190,46,240,15,107,212,65,82,215,13
 8,14,57,111,193,29,14,111,92,241,189,178,112,71,45,163,214,241,17,108,178,224,47,255,13,88,221,173,21,174,202,158,20,124,94,140,246,200,150,90,57,221,31,253,58,151,249,24,202,205,218,248,158,107,239,101,240,165,219,235,129,82,194,63,145,239,175,204,137,94,189,82,122,125,225,15,12,70,24,130,180,160,88,167,210,92,181,56,104,178,225,98,99,148,98,80,13,79,111,31,92,25,209,116,51,152,127,109,228,41,243,74,30,2,73,29,102,190,11,85,243,72,39,166,107,116,80,78,159,194,25,136,17,90,239,82,145,117,162,116,170,161,65,226,177,157,13,66,242,196,71,242,168,144,254,125,204,62,128,17,219,118,72,107,199,128,143,251,29,68,122,78,162,19,78,236,49,140,36,235,88,110,151,96,114,99,106,175,237,46,141,86,193,216,24,202,218,35,213,103,147,15,92,43,221,168,154,79,129,238,81,133,203,12,209,164,222,84,86,98,195,69,129,49,187,129,60,15,102,154,237,135,12,198,79,178,165,217,240,240,118,228,123,13,114,112,217,107,113,88,2,254,31,143,113,75,121,203,81,77,83,136,53,233,196,128,6,41,189,173,143,126,131,71,20
 8,109,13,98,81,88,162,200,205,95,123,212,245,113,105,95,245,211,153,139,127,116,155,97,241,79,39,127,246,70,3,181,238,130,46,59,180,213,100,242,140,168,203,111,22,98,236,254,146,76,189,167,175,21,228,244,71,151,119,215,171,97,89,69,19,173,241,101,212,149,216,36,186,141,241,223,132,41,255,115,139,58,178,81,46,137,59,20,196,102,166,148,14,142,250,122,146,11,175,69,117,131,155,211,248,21,181,138,191,168,30,152,29,36,142,185,155,32,29,9,249,222,49,35,139,93,172,201,115,30,211,59,222,123,57,32,198,34,93,65,117,63,216,201,132,56,214,81,215,240,176,93,131,96,29,250,206,254,74,59,147,253,138,57,81,161,192,73,182,64,84,91,86,97,147,229,103,163,161,158,182,11,235,1,87,170,94,129,119,184,37,75,70,242,79,195,95,210,233,137,236,40,15,168,157,33,58,115,142,110,169,225,13,233,175,5,212,81,123,24,102,222,220,10,221,74,168,186,53,74,62,111,84,8,136,190,64,27,149,192,84,250,127,69,121,167,221,253,183,138,47,187,178,69,230,232,144,91,193,201,233,232,137,214,220,44,231,96,57,226,154,111,12,25,1
 16,147,30,42,255,166,194,107,135,86,98,212,219,43,120,127,182,55,218,54,108,22,194,36,115,92,63,155,140,165,144,34,191,35,207,144,189,154,202,214,195,35,220,20,255,240,218,34,136,254,201,227,39,139,137,94,248,61,237,179,155,83,3,35,241,135,190,10,77,57,30,172,19,153,199,252,27,3,67,10,93,181,142,41,41,214,161,53,219,136,140,242,34,194,82,131,122,99,202,148,211,120,218,73,143,80,45,78,194,20,169,245,110,123,43,148,92,165,137,115,157,121,60,154,194,173,131,222,207,140,90,120,7,92,56,157,205,238,88,76,133,224,37,114,102,220,67,69,146,41,84,183,225,193,135,226,211,33,106,85,104,199,209,130,69,137,189,66,234,125,167,247,187,69,3,218,128,109,228,38,134,126,216,62,74,6,153,243,175,105,43,170,165,221,116,92,80,147,89,209,119,40,218,245,60,0,157,37,21,54,203,1,209,33,251,119,241,4,155,85,67,190,146,145,76,109,208,90,207,218,38,22,169,29,150,126,203,104,136,57,18,140,34,191,85,140,125,119,218,79,231,89,10,133,106,217,115,149,125,98,117,202,31,229,78,82,72,223,30,184,59,161,22,94,205,2
 12,81,249,135,195,3,199,140,79,41,180,227,171,106,74,85,225,69,178,172,27,39,122,157,201,206,213,43,186,75,153,140,134,159,40,10,20,252,90,24,20,37,151,142,44,161,252,2,127,78,246,123,155,152,12,160,145,176,97,99,53,130,41,232,102,106,23,105,211,221,220,5,131,119,115,224,51,52,69,221,51,226,78,98,179,0,136,103,24,152,38,10,182,175,244,82,27,98,155,89,112,36,205,169,122,146,179,151,56,213,98,209,246,157,166,10,192,255,88,24,232,11,170,196,61,207,144,22,128,170,53,88,150,48,118,162,107,37,189,11,207,137,99,18,71,192,140,41,178,122,79,179,141,104,93,218,50,11,48,57,115,230,75,49,160,34,89,196,53,195,29,50,124,39,160,97,160,102,237,207,163,177,76,163,181,16,107,204,18,130,155,227,226,59,252,58,97,34,14,134,136,35,117,145,161,48,77,41,87,119,85,226,31,186,238,179,167,125,205,130,52,54,138,148,98,85,161,21,203,250,182,137,207,99,248,218,15,217,184,39,177,6,120,219,248,224,113,18,76,226,95,252,10,8,160,35,251,180,2,149,4,175,193,185,76,156,77,245,172,16,181,94,17,73,72,75,123,96,16
 1,16,61,87,130,117,122,20,158,218,130,64,33,186,120,0,130,169,178,211,60,137,206,174,81,214,147,193,125,7,230,149,55,245,133,227,136,120,133,2,38,19,22,116,148,135,112,184,89,33,184,76,134,137,37,63,127,139,40,142,184,42,77,215,44,27,152,166,218,115,86,184,5,105,252,30,71,152,240,207,20,96,38,39,84,228,154,156,205,64,173,254,60,38,104,175,50,235,226,216,137,130,96,145,0,127,213,17,115,220,92,154,150,105,78,153,92,224,139,49,126,227,242,212,87,18,243,186,214,190,7,209,75,62,249,44,40,128,136,62,168,2,183,9,59,161,36,12,94,163,70,129,19,209,28,137,130,182,125,102,134,107,143,205,220,217,142,243,76,137,235,191,178,164,90,17,12,131,87,69,29,42,20,250,236,212,165,204,144,230,118,4,208,147,157,37,14,254,219,112,153,87,229,37,134,8,3,237,97,126,201,42,241,193,13,58,235,151,143,86,13,17,204,75,25,32,8,228,1,99,172,30,132,81,91,125,89,77,212,252,105,103,153,76,215,74,135,219,94,182,227,143,15,213,166,124,66,182,89,45,133,152,165,157,77,235,92,64,25,94,99,253,236,178,202,251,21,226,21
 4,122,248,204,231,3,36,18,90,28,55,139,100,139,18,117,44,174,229,228,41,232,58,101,206,156,133,168,151,225,203,18,13,40,29,223,32,71,177,198,0,96,61,154,234,0,175,14,211,59,68,1,32,221,181,26,127,57,164,67,216,71,228,173,85,109,215,201,108,138,238,201,100,28,131,137,225,4,34,159,62,194,85,161,76,71,251,120,157,20,126,15,147,161,204,59,234,141,76,242,218,235,24,30,228,87,13,54,47,12,21,222,49,250,198,252,8,77,116,83,223,215,39,154,184,113,219,70,174,174,73,124,241,184,101,204,34,52,189,194,189,41,249,19,119,165,111,6,75,219,97,130,186,197,239,160,29,241,16,66,128,109,158,114,9,163,41,203,142,84,71,186,36,143,36,166,233,240,102,65,125,244,28,156,152,174,182,121,87,106,173,248,9,207,224,148,250,151,98,11,48,113,209,156,202,120,253,233,101,107,38,46,187,108,160,254,175,231,137,248,139,194,127,107,160,224,235,205,127,27,128,36,125,64,213,244,26,49,139,115,241,130,106,28,105,126,12,11,225,106,145,186,247,48,29,191,62,189,231,22,77,178,116,112,218,48,179,71,134,246,46,88,113,107,81
 ,15,234,43,233,247,121,254,100,32,164,133,3,206,201,28,199,144,196,64,88,232,196,244,10,120,19,70,35,6,253,235,225,17,218,62,0,207,43,54,231,67,113,158,38,59,162,46,235,0,34,49,108,162,23,161,41,31,79,77,4,44,110,243,80,119,207,185,237,86,57,11,86,208,190,142,206,217,143,240,103,2,139,159,27,146,128,174,249,164,166,80,222,13,16,201,163,251,75,213,217,9,251,23,199,222,220,129,121,104,29,130,193,84,172,12,135,119,143,151,55,202,253,75,232,219,162,48,204,72,160,155,200,73,249,148,197,29,64,195,11,49,70,31,13,137,205,125,22,169,11,230,209,190,179,79,134,109,106,75,184,254,110,2,25,229,39,81,131,86,108,234,253,106,209,96,141,40,158,254,162,46,172,27,165,71,9,128,194,156,197,130,244,140,247,28,87,126,149,36,56,158,114,204,239,103,90,202,111,41,19,6,55,112,230,203,179,253,20,251,67,64,150,147,118,61,81,207,115,65,153,246,245,62,228,42,100,136,158,31,10,169,199,1,213,226,193,142,48,182,81,235,56,153,195,110,6,37,10,210,241,4,107,105,231,142,228,88,69,72,42,220,118,37,249,128,160,107
 ,41,121,108,157,252,236,233,66,78,232,90,52,84,149,126,238,83,97,112,52,61,140,237,113,214,0,185,132,215,167,117,17,140,80,17,78,51,64,176,246,43,31,192,32,149,115,14,203,12,126,242,78,45,218,198,144,41,227,224,16,94,40,19,252,133,100,238,79,69,85,17,129,88,177,231,200,143,128,218,76,102,247,33,185,50,208,80,90,40,28,78,20,204,210,38,207,106,218,20,242,64,122,88,31,111,59,32,242,158,250,7,189,84,207,251,254,239,133,58,178,240,238,165,64,192,0,205,114,19,147,77,20,227,120,49,118,55,227,131,200,8,232,66,85,148,92,236,31,134,149,146,23,140,81,56,183,255,112,123,1,158,30,106,204,179,156,113,39,61,88,181,37,207,102,178,76,198,139,186,243,75,172,9,61,12,6,77,181,38,139,160,17,160,51,103,108,85,107,128,55,65,54,148,140,100,123,113,22,218,143,66,0,216,252,218,215,106,72,123,254,210,89,237,137,3,43,183,48,122,53,51,13,242,11,120,247,187,16,155,243,252,78,223,58,24,35,75,164,66,150,76,142,104,204,25,200,140,234,62,140,230,56,163,38,8,229,205,58,92,91,140,167,87,118,241,89,248,221,121,
 213,214,40,45,172,134,251,84,189,128,53,164,77,58,109,248,52,96,88,248,124,85,32,228,73,71,53,38,195,104,53,94,4,82,55,136,163,165,202,130,149,53,4,167,172,239,117,26,154,246,118,223,186,117,110,161,140,74,253,110,5,197,53,224,25,47,156,205,18,142,60,1,207,244,75,164,232,224,189,171,40,107,50,229,189,167,130,7,126,3,245,94,189,82,194,125,46,243,206,71,99,116,66,172,3,155,106,211,158,21,91,252,235,191,77,46,73,171,45,162,229,4,233,244,58,171,176,23,203,78,91,156,78,17,162,247,24,157,227,47,21,247,84,155,214,184,56,173,42,228,249,210,7,2,92,114,217,221,102,170,46,144,223,92,251,184,181,100,221,106,68,19,188,40,144,108,29,22,120,226,172,220,218,243,106,126,2,159,234,22,219,109,123,163,233,223,82,243,156,51,225,233,133,111,121,163,100,214,41,250,31,249,20,171,238,215,140,51,38,123,238,16,114,30,122,19,173,200,42,132,216,88,163,142,41,232,245,221,59,252,124,227,25,63,6,230,169,122,40,230,193,17,111,198,36,180,226,116,176,95,54,111,30,205,194,252,140,167,133,71,92,173,79,6,214,202
 ,3,32,29,26,151,147,246,41,129,206,211,155,77,215,207,198,57,90,250,19,205,22,190,149,77,200,138,168,182,217,123,103,156,216,195,123,206,124,236,161,214,0,253,248,15,204,180,0,97,203,29,103,96,175,198,71,186,190,246,79,169,255,20,222,64,231,235,155,86,171,124,175,7,113,65,77,125,162,16,153,88,182,94,162,187,111,78,232,202,146,233,148,82,134,180,185,21,130,241,71,83,157,27,17,116,216,18,118,202,54,166,200,3,33,136,113,38,54,115,131,102,88,112,252,36,250,182,175,249,80,202,156,57,114,185,211,106,201,192,30,156,66,83,157,27,119,62,6,152,230,249,221,104,253,237,27,87,46,173,233,15,39,19,13,89,245,223,165,52,76,247,198,139,160,114,26,94,107,33,185,168,151,68,152,244,236,233,76,23,77,90,43,18,42,206,23,27,57,187,149,85,213,236,20,188,66,37,241,89,121,87,143,139,177,35,230,111,91,70,101,61,126,27,67,12,244,69,40,24,122,180,87,75,34,112,124,224,166,148,39,224,230,14,54,3,27,69,239,43,135,172,49,102,224,213,186,42,45,60,13,158,127,72,130,217,170,165,108,150,226,200,206,5,233,176,192,
 188,248,123,242,255,92,80,15,183,255,225,255,99,4,184,117,87,245,171,212,129,39,85,36,21,196,69,58,21,9,121,116,55,237,186,48,69,103,207,140,185,52,221,137,110,208,122,140,108,77,7,212,158,128,50,239,122,147,70,164,59,140,37,220,172,75,209,201,77,123,65,106,207,245,217,65,89,72,86,141,27,134,95,97,47,87,57,183,101,173,107,67,38,124,188,119,149,101,252,8,76,204,238,119,213,74,31,79,233,74,69,170,212,87,50,156,201,65,107,235,67,187,117,126,22,65,125,79,101,78,195,76,166,144,74,19,42,234,117,253,154,170,62,75,220,178,175,235,31,48,155,47,55,33,174,195,174,91,26,206,253,234,48,120,247,67,20,255,55,159,43,86,87,21,123,75,53,122,22,249,117,153,53,102,172,74,242,184,48,74,139,252,23,60,156,130,154,204,6,20,221,141,252,253,103,238,40,236,122,225,45,14,126,161,111,118,1,167,95,182,23,111,204,239,6,140,2,183,201,65,23,80,74,150,129,166,183,111,39,76,16,73,73,154,99,240,217,40,3,72,86,76,206,147,189,165,235,75,75,177,96,0,109,146,79,111,105,242,219,195,222,241,239,138,169,20,48,155,144
 ,230,253,200,62,145,156,148,116,84,67,137,180,77,205,248,187,154,247,89,192,195,128,163,196,5,113,28,166,225,227,123,235,252,240,66,208,24,30,34,165,4,229,92,185,182,228,70,230,85,63,170,129,65,128,93,142,105,191,250,89,221,247,49,50,99,59,172,222,115,48,248,8,167,214,149,79,9,69,11,218,46,83,4,8,35,110,220,249,20,104,235,34,155,248,136,108,95,29,111,107,123,214,75,50,23,209,26,14,130,30,105,157,252,152,142,147,230,45,191,145,21,215,33,3,54,140,44,208,114,207,31,82,251,135,181,246,105,201,42,50,173,28,197,75,127,13,234,71,79,137,20,79,28,42,223,3,159,168,219,70,163,236,250,176,28,164,132,78,49,201,149,248,240,12,40,195,103,59,164,101,194,179,142,205,42,128,99,49,115,96,212,154,135,34,29,243,47,94,17,21,93,89,219,33,224,23,70,168,26,171,57,191,34,6,58,126,161,41,251,73,84,129,186,115,170,181,175,59,212,77,76,29,85,202,7,45,196,157,51,244,183,188,5,215,52,170,138,34,161,178,165,118,8,234,64,91,12,66,24,96,133,43,154,230,191,86,245,36,37,208,139,117,170,133,134,19,34,71,128,2,1
 2,254,85,78,176,68,189,76,38,150,228,73,233,195,25,23,229,95,158,38,240,123,43,155,157,21,9,152,162,183,86,124,56,6,30,121,173,43,20,19,217,210,62,27,97,72,129,253,24,248,63,119,50,25,228,151,188,76,161,136,170,9,85,38,210,175,108,44,236,238,75,94,250,158,222,127,229,85,100,66,217,68,252,31,117,103,61,123,202,126,183,253,235,216,142,93,87,47,136,11,30,82,64,198,85,231,103,94,178,219,217,16,114,183,99,56,195,10,141,49,49,190,89,204,48,209,65,57,244,1,125,35,73,161,244,73,39,230,174,1,148,212,204,164,18,217,245,205,223,246,215,210,147,254,109,69,50,119,84,35,249,246,99,150,31,66,251,19,175,214,231,97,84,157,251,22,228,180,54,221,200,34,164,101,235,5,170,99,156,229,194,155,70,53,168,135,119,21,34,201,46,49,33,31,150,96,96,177,180,225,69,18,86,86,244,154,145,53,181,86,158,186,125,180,204,142,116,142,89,189,33,71,191,123,166,43,133,164,221,130,95,29,246,152,102,234,205,42,152,67,135,135,243,154,51,199,37,85,106,228,170,198,169,230,125,181,197,202,47,43,35,128,222,248,44,81,128,15
 7,164,124,152,65,120,199,78,21,227,178,222,166,91,68,249,157,214,27,223,109,195,44,27,215,80,65,154,74,214,200,133,167,13,26,239,251,179,60,122,179,199,128,225,81,187,136,122,10,125,90,69,249,229,19,150,106,206,107,181,106,79,115,126,91,239,62,56,221,167,177,94,191,59,254,186,148,83,161,9,254,43,198,43,232,239,214,232,154,235,77,40,0,240,64,70,199,248,185,146,57,40,157,200,167,244,145,209,98,181,249,122,109,118,54,244,30,212,140,33,124,150,90,123,55,142,34,241,149,160,81,151,124,53,199,156,32,210,124,83,125,23,162,210,25,107,217,47,81,196,123,220,132,16,90,227,138,191,209,89,101,162,115,190,98,210,64,65,167,224,83,203,180,215,243,243,251,154,243,212,106,39,20,108,23,61,204,91,14,156,29,227,101,193,52,164,190,252,91,113,55,135,130,137,142,161,184,149,72,5,79,89,79,37,91,183,66,144,188,0,26,25,204,202,222,243,11,147,148,103,54,44,28,188,104,226,224,235,192,43,17,117,249,37,120,211,74,129,149,210,91,171,48,46,131,193,49,100,62,181,58,200,173,193,222,179,80,124,122,56,102,202,23
 9,144,220,74,72,205,184,38,191,69,37,117,125,120,50,254,81,166,43,62,118,51,97,5,28,73,214,118,80,158,255,195,152,123,197,59,75,103,122,228,61,250,41,18,39,179,190,181,150,210,11,171,254,207,101,133,0,0,0,252,196,4,35,188,46,194,205,166,13,86,69,118,173,218,160,224,88,166,6,114,99,54,71,255,40,61,89,109,56,204,217,114,11,206,94,110,156,139,134,95,154,9,96,32,215,241,53,248,182,126,160,147,6,80,204,190,73,27,36,11,117,70,113,106,43,31,179,200,57,3,249,218,31,215,43,130,171,195,177,104,149,122,139,6,75,144,79,106,141,114,97,238,12,103,223,209,8,53,101,76,39,102,143,67,236,88,6,38,167,34,186,61,113,81,14,92,218,208,180,231,122,178,1,151,230,157,122,125,16,143,200,217,234,137,166,155,44,123,140,99,21,4,13,31,74,191,226,133,184,216,198,172,217,64,89,88,206,42,156,243,100,177,114,166,125,158,76,245,141,246,85,199,234,4,201,111,242,60,6,252,16,185,170,79,46,184,190,51,178,42,32,208,212,195,179,254,197,119,139,22,82,145,166,160,188,119,98,191,184,138,143,127,136,135,34,231,215,233,7
 8,43,168,142,128,12,181,32,61,152,84,80,117,136,99,173,77,34,60,23,204,35,112,199,76,116,250,138,50,100,221,30,132,54,48,118,202,47,212,81,229,224,215,59,84,14,16,130,20,201,23,177,72,67,138,201,45,26,95,75,106,123,236,208,20,28,220,48,152,109,200,24,67,63,197,161,214,14,233,101,248,1,109,86,163,182,231,244,214,25,48,29,196,46,50,105,207,83,208,32,225,232,167,9,122,215,224,235,140,240,12,177,108,253,187,65,222,51,112,252,87,74,232,90,24,241,83,152,95,107,8,18,210,77,9,98,142,56,1,72,212,206,40,81,142,241,63,236,128,54,19,101,52,162,4,73,195,34,212,6,6,64,218,42,6,236,48,85,39,251,130,25,31,1,54,144,68,169,162,85,115,226,129,79,90,184,146,90,47,50,41,247,125,149,128,60,14,54,200,248,154,214,18,108,191,103,1,40,226,248,199,88,36,26,248,219,230,125,114,104,42,47,254,249,114,42,174,123,103,20,17,56,192,170,103,48,116,242,35,109,29,177,90,189,235,24,117,119,13,167,225,241,233,113,177,101,10,73,179,224,185,224,186,152,127,224,32,83,140,11,132,206,252,231,164,232,59,87,253,154,103,
 75,249,246,96,23,190,151,180,226,255,43,244,2,118,129,27,89,241,126,216,132,178,42,156,46,11,27,65,188,13,101,191,130,254,70,30,53,77,103,158,55,236,58,88,158,251,210,218,109,247,132,239,51,175,140,121,119,188,211,119,181,141,165,139,199,241,187,149,104,101,236,109,197,202,51,12,137,26,228,208,2,13,176,226,74,55,21,73,233,39,1,140,182,7,133,153,5,133,157,158,7,177,229,251,134,136,217,32,13,111,149,166,145,198,7,0,251,90,194,114,30,210,166,22,83,229,194,6,142,226,47,61,41,119,126,121,248,243,151,174,85,131,98,104,177,79,177,168,210,232,30,149,82,41,187,214,173,44,104,246,96,195,19,240,61,37,143,244,43,212,153,3,1,239,140,52,92,231,73,161,54,188,186,40,33,169,224,219,118,149,53,124,154,175,115,230,145,31,47,39,188,148,10,77,246,7,42,134,225,13,156,108,142,220,49,214,162,97,49,50,128,115,95,7,117,102,236,5,101,247,27,249,87,125,106,119,226,227,219,16,199,78,243,159,194,255,233,1,189,43,12,52,7,135,206,132,128,254,136,122,113,59,34,55,146,22,189,173,185,243,44,62,30,110,23,200,8
 1,4,78,153,174,136,86,17,238,181,11,66,193,104,0,17,182,52,186,247,169,143,38,62,6,57,153,236,107,129,100,69,144,204,96,149,7,103,120,210,72,16,215,73,103,39,221,225,1,161,230,229,3,81,120,21,187,207,75,121,228,38,57,208,197,34,164,160,35,142,96,38,145,52,250,94,119,144,72,192,100,195,208,186,224,220,96,130,150,225,19,78,223,51,140,137,0,34,62,28,179,49,198,55,72,5,139,190,85,61,71,171,220,254,220,38,224,89,234,132,68,93,113,50,211,11,48,242,227,213,183,118,223,46,236,225,75,67,71,250,226,37,95,90,169,140,108,72,227,213,179,191,87,219,17,102,51,137,7,230,89,242,55,184,245,49,218,235,89,66,153,119,79,250,223,39,66,11,100,153,73,211,26,54,165,90,221,214,161,221,57,170,183,156,181,211,196,249,2,211,45,47,223,99,250,3,230,251,134,5,129,239,251,105,7,68,31,78,220,154,190,116,119,118,221,234,5,56,68,191,188,147,156,35,40,90,199,93,147,248,155,148,27,246,206,239,95,153,195,143,251,78,246,214,100,64,188,131,122,84,82,209,180,209,81,99,33,120,10,137,9,253,186,82,255,149,156,91,53,85,
 19,29,80,45,213,169,91,212,25,202,132,131,179,154,122,180,64,159,128,224,162,147,239,164,227,132,105,209,253,215,96,159,212,182,37,129,4,20,168,226,163,130,91,154,157,223,240,112,111,52,196,113,18,193,74,30,202,38,104,44,99,92,213,210,177,154,100,46,210,106,1,156,191,201,46,235,63,116,91,195,29,1,187,124,179,150,150,37,104,170,116,193,100,50,87,208,189,209,173,102,7,56,201,185,90,9,97,24,237,156,216,238,25,131,127,54,151,55,137,93,79,200,172,189,2,26,58,106,205,149,225,246,118,128,225,30,176,159,20,247,29,253,170,86,105,211,160,90,36,160,33,181,91,154,72,224,184,209,233,162,133,27,109,245,7,181,22,108,173,94,41,174,242,124,57,9,201,103,56,133,80,122,252,232,54,66,60,235,241,250,243,18,188,31,21,172,255,150,178,255,171,85,66,227,134,115,214,178,108,63,156,206,27,203,138,78,37,71,152,93,98,99,123,245,61,189,17,168,11,161,95,33,158,177,197,225,32,127,59,255,221,146,20,71,240,18,143,251,155,57,194,151,129,106,60,221,72,96,98,78,103,245,251,239,69,120,175,107,117,103,83,60,160,26
 ,16,244,112,252,26,199,76,190,145,177,251,145,108,180,132,8,212,239,194,106,43,162,75,58,248,151,47,30,179,177,185,130,92,191,116,171,212,231,242,117,196,168,248,171,74,96,103,222,247,197,61,215,23,197,92,149,183,64,101,59,21,193,249,1,16,212,205,179,206,247,205,3,129,125,28,236,184,201,240,0,238,102,177,227,101,240,23,84,10,98,132,92,95,221,239,198,203,62,5,158,243,233,144,170,88,115,64,249,109,48,12,215,192,251,30,15,207,181,146,48,10,12,189,123,254,231,172,175,55,24,0,21,76,246,197,120,87,14,96,134,171,31,250,175,29,168,3,90,160,10,149,80,62,180,11,172,204,158,29,64,161,94,27,74,77,134,220,34,8,103,224,214,59,36,182,236,10,24,43,55,226,89,139,19,184,106,63,202,51,122,188,75,241,135,246,255,128,98,208,52,243,220,199,152,249,124,185,56,126,54,81,248,13,229,72,85,116,26,61,216,66,196,183,157,5,191,110,105,239,36,217,240,50,91,185,127,81,236,99,4,48,58,93,116,52,177,23,21,220,19,109,246,151,26,31,2,15,94,223,41,226,252,150,218,239,248,104,173,195,63,4,132,80,79,205,34,24,69,2
 47,249,195,62,217,89,75,63,183,110,144,26,10,184,78,39,55,129,149,48,71,69,17,208,162,81,135,208,199,239,12,175,64,108,32,218,74,96,218,239,30,99,225,53,117,188,77,126,88,251,207,112,227,38,5,19,156,127,81,189,25,214,116,120,204,196,20,56,139,201,102,154,209,23,151,231,62,221,32,145,61,248,140,6,209,179,140,37,48,200,242,175,220,228,183,207,228,160,147,151,201,107,233,216,19,242,46,240,179,133,27,150,151,142,127,95,183,81,137,155,100,5,198,98,216,73,102,152,234,20,20,18,39,33,183,211,101,17,1,94,191,223,58,163,142,124,27,124,38,209,192,150,252,139,39,229,192,159,213,34,126,154,224,200,177,231,24,79,24,78,103,168,110,135,120,248,88,202,160,237,240,125,170,28,120,230,248,50,230,178,234,174,82,112,38,105,172,219,58,37,3,250,105,232,38,243,150,108,39,136,23,86,250,3,142,58,96,14,180,209,193,196,179,255,124,35,175,13,19,184,206,64,206,13,90,114,152,204,91,105,197,121,86,81,90,155,61,182,180,89,168,130,198,235,200,121,120,102,218,81,197,168,197,154,96,17,242,12,7,0,14,49,150,90,18
 6,202,66,141,110,203,248,225,91,148,75,107,124,104,194,129,84,144,41,203,16,8,144,21,47,182,144,112,77,241,162,88,168,77,52,182,100,20,142,14,195,137,3,206,187,203,64,50,42,189,115,171,33,233,64,179,174,103,55,169,176,122,138,71,204,250,132,10,78,14,62,32,228,30,249,30,90,232,59,180,11,28,15,74,205,24,95,22,208,63,194,254,148,77,9,39,171,103,168,87,238,75,178,17,82,121,215,204,214,85,165,207,43,127,125,112,161,218,208,252,215,100,115,14,237,36,136,175,40,223,176,55,249,33,199,240,173,126,186,82,243,14,134,91,61,18,49,185,62,146,20,89,43,23,243,102,199,10,74,93,130,42,42,241,29,191,221,200,15,46,247,56,210,224,248,52,52,110,73,8,123,84,134,39,245,220,221,194,156,184,175,156,117,200,67,235,196,60,111,214,38,174,160,227,136,17,12,255,40,244,117,227,115,61,90,226,200,28,61,14,128,33,71,72,2,210,110,162,174,210,176,146,13,59,39,186,249,32,103,128,160,194,27,33,76,106,124,255,179,147,121,38,245,254,59,98,32,82,174,166,9,149,131,201,219,54,188,176,69,253,113,193,26,238,4,207,144,15
 2,149,17,206,159,130,23,184,165,248,77,61,62,217,172,3,181,118,103,128,218,46,74,25,112,240,130,146,78,206,105,69,169,165,65,72,216,142,127,51,48,219,124,40,203,244,159,245,73,150,174,8,227,8,93,250,40,180,232,120,120,7,194,198,130,76,156,98,151,30,113,96,72,35,238,188,117,0,251,16,103,199,217,248,152,57,159,212,211,65,99,114,35,166,67,141,120,75,85,136,41,8,174,17,226,47,55,195,244,149,92,0,201,53,110,114,134,134,94,62,150,200,224,161,173,27,202,98,37,33,58,150,170,118,90,71,49,179,211,65,99,196,59,234,62,209,251,209,247,242,200,116,42,7,142,248,9,52,116,197,9,252,185,202,8,252,241,255,174,136,78,112,215,152,83,111,79,145,132,119,119,192,92,32,161,116,19,35,103,10,204,182,186,85,116,213,33,163,51,77,86,22,129,88,212,137,3,94,198,151,46,47,109,16,99,28,173,160,238,96,191,139,222,4,250,207,220,38,47,92,225,53,163,177,28,194,48,90,59,227,212,102,80,4,180,217,141,39,233,49,61,249,204,150,153,52,238,177,3,99,169,62,14,105,245,97,104,241,190,225,81,78,11,127,168,36,241,191,233,24
 5,91,7,29,153,64,80,232,34,34,123,151,51,75,250,108,152,21,248,51,18,52,106,42,66,200,116,183,139,238,15,33,65,200,249,184,148,50,223,111,243,79,50,47,79,66,94,27,245,96,98,254,170,163,247,153,119,251,231,144,57,158,184,253,207,66,60,213,180,13,72,238,198,168,144,7,248,28,24,15,243,162,124,57,164,189,5,235,210,230,100,52,241,49,153,150,160,55,76,142,244,253,252,173,220,97,212,248,110,29,36,0,182,118,188,183,28,30,225,24,24,190,64,84,103,88,90,10,59,56,51,26,126,78,28,104,139,173,246,178,10,224,119,115,167,83,64,196,125,90,74,39,244,198,36,166,68,5,213,22,140,77,252,85,164,180,115,131,235,83,122,231,186,191,185,184,83,124,137,183,191,211,120,88,235,158,116,66,142,255,181,215,27,133,22,138,100,65,57,195,90,184,150,14,24,50,222,187,159,0,178,155,124,145,223,213,36,81,145,194,84,117,175,33,136,156,32,138,71,115,63,249,168,4,96,234,179,222,54,35,196,146,98,82,246,145,4,163,190,201,131,75,13,168,255,152,20,14,138,215,123,236,184,53,129,61,146,165,227,7,236,75,34,95,215,146,244,102
 ,69,253,68,95,167,244,24,187,159,81,20,145,33,218,128,14,230,3,241,176,91,119,175,202,126,243,193,143,40,15,219,216,53,66,203,14,220,160,129,99,55,8,112,38,106,19,203,5,103,255,100,192,238,186,175,183,244,182,93,254,3,226,78,27,199,54,73,193,189,45,251,55,223,75,98,75,156,249,61,175,241,140,104,128,92,89,27,72,211,46,69,203,116,69,172,163,79,138,198,4,126,58,85,149,215,233,40,240,69,210,221,244,74,137,41,226,215,232,26,154,201,200,53,228,43,19,219,183,67,127,243,207,131,79,176,172,203,200,245,103,191,188,83,121,197,107,106,207,93,21,129,49,215,72,104,95,39,11,78,144,11,227,2,201,193,175,174,171,137,57,221,7,232,118,248,189,128,120,11,165,105,138,68,15,62,75,85,22,205,76,153,169,146,104,93,227,124,149,227,0,87,185,109,61,120,55,29,221,134,173,165,1,12,1,115,114,73,58,40,22,205,172,81,176,76,142,156,158,202,51,200,221,153,226,228,30,113,223,193,9,55,182,76,215,219,150,135,233,25,228,107,217,28,193,21,224,180,112,160,248,97,199,131,221,111,235,129,201,115,212,3,23,98,113,169,20
 6,46,46,73,42,246,124,174,170,7,167,158,226,183,167,160,143,234,230,238,195,134,234,250,71,129,137,105,153,45,24,7,20,107,55,152,236,219,96,124,124,3,255,244,235,144,54,201,202,30,62,42,199,239,102,212,31,238,241,184,48,230,58,168,158,199,39,80,48,116,80,210,85,169,42,179,192,196,145,146,21,131,52,13,207,173,218,167,52,195,252,99,250,228,36,55,103,238,239,234,140,131,120,210,200,8,222,155,111,225,120,19,154,142,202,221,45,209,249,136,227,127,252,110,62,103,82,185,20,93,252,190,170,203,132,22,182,70,46,218,140,6,63,220,41,119,64,240,84,77,208,200,58,217,218,62,128,206,250,144,32,163,128,131,128,161,120,41,100,134,188,132,76,18,98,55,80,174,209,227,250,62,93,21,58,56,83,166,244,206,77,19,211,175,12,49,4,176,77,205,222,53,228,237,47,25,187,165,156,45,6,191,130,223,116,117,123,203,7,14,37,110,231,199,193,202,176,238,119,131,39,66,236,140,165,63,66,43,146,216,209,107,207,188,179,197,141,249,90,49,166,237,57,40,168,45,147,111,126,142,162,132,231,65,44,16,201,195,7,230,40,103,69,23
 2,183,174,16,178,75,115,159,188,94,191,166,10,95,7,250,125,248,183,160,231,61,90,92,150,95,113,148,54,219,213,195,60,253,206,101,154,122,214,201,141,196,132,169,105,1,229,94,69,68,178,231,93,110,232,134,146,252,169,176,95,42,43,1,54,125,236,6,124,44,135,128,49,143,77,226,240,69,177,211,14,253,255,2,189,134,74,166,4,1,227,214,71,149,254,22,9,192,86,119,5,163,158,210,108,39,88,124,26,97,163,61,220,15,109,82,94,156,252,0,160,186,231,119,113,86,60,174,114,109,187,65,187,179,163,119,187,65,88,44,190,82,10,125,102,84,225,94,165,243,65,18,145,230,126,4,189,10,30,7,189,5,229,30,72,88,111,82,200,135,141,201,169,122,222,126,141,19,33,64,165,77,193,36,118,35,7,157,183,12,110,79,10,146,235,194,149,8,126,94,33,29,152,153,76,205,14,64,230,26,69,102,24,148,241,79,93,173,180,95,123,30,90,49,8,189,58,252,44,47,78,218,250,202,65,163,158,9,89,140,35,194,162,79,13,74,216,5,9,246,122,102,120,252,104,182,99,128,102,59,140,7,67,234,133,208,72,72,231,149,198,177,220,117,227,57,50,140,86,87,97,91,14
 2,110,55,18,235,218,132,144,217,71,244,131,46,147,251,250,212,67,176,77,235,137,51,137,142,33,171,37,233,133,70,218,101,64,131,244,200,191,98,80,167,104,84,142,141,104,204,243,87,5,140,240,153,90,11,120,46,201,110,15,136,15,2,254,127,52,77,51,153,9,235,26,57,231,40,145,24,167,26,170,0,112,139,20,48,212,121,165,90,121,223,97,233,210,39,106,20,57,77,216,127,9,204,55,129,27,94,150,32,57,216,7,105,164,72,171,50,111,145,188,225,225,159,148,140,81,177,215,238,151,210,165,248,161,107,90,159,69,90,0,70,226,185,165,38,84,20,108,189,107,200,24,205,148,209,4,2,247,191,211,210,28,132,97,192,236,13,178,112,102,212,148,219,176,96,146,106,222,108,218,122,99,40,178,45,79,79,226,37,173,68,172,58,0,69,134,132,62,52,45,104,6,81,143,20,237,4,131,183,197,95,2,174,179,247,76,244,26,36,112,178,47,222,221,123,46,150,126,196,124,12,148,131,21,87,241,245,220,216,227,68,53,255,130,159,211,254,218,245,226,23,40,197,104,145,130,74,61,29,251,51,213,33,69,213,148,189,95,162,172,168,103,8,101,242,189,66,14
 1,76,54,238,2,136,50,10,116,45,4,171,98,196,178,112,251,190,81,236,210,159,50,69,9,70,159,148,220,88,20,213,11,5,94,239,224,96,107,244,7,254,97,104,22,31,120,34,116,87,117,213,247,190,181,145,182,163,17,131,57,254,5,45,0,132,15,163,26,118,54,19,47,203,225,182,146,176,214,99,207,196,139,134,93,48,130,249,178,206,179,143,53,75,173,164,185,172,149,85,211,155,244,40,155,219,71,136,238,61,26,104,118,173,189,171,202,123,177,121,41,188,195,0,123,214,199,185,99,136,37,248,98,86,224,51,71,104,223,115,181,247,167,251,189,170,87,93,33,89,26,253,153,196,79,149,32,238,50,88,171,108,137,34,207,35,34,197,235,154,31,138,21,5,77,107,39,180,253,13,172,178,11,66,231,154,235,136,118,208,53,31,204,123,131,141,254,22,175,46,29,57,146,22,209,158,109,179,128,225,240,179,32,20,146,244,112,167,253,85,2,227,5,27,104,46,53,14,76,147,99,255,1,13,138,104,156,69,134,57,24,47,57,54,113,146,218,223,56,21,98,47,61,243,43,204,33,72,32,245,110,110,57,186,244,227,243,92,125,224,93,213,221,225,18,102,98,94,82,54
 ,144,187,39,0,229,11,236,176,33,248,8,176,223,210,107,153,4,82,206,17,241,57,200,135,13,89,4,159,253,174,196,206,237,205,135,148,152,126,247,193,155,195,138,134,171,226,105,227,96,164,198,160,49,110,25,132,196,215,142,244,210,252,215,130,148,234,139,167,73,104,99,8,32,66,114,111,187,249,180,73,119,107,22,19,177,59,43,83,236,188,81,226,134,248,199,9,166,246,10,86,228,39,206,65,166,236,66,33,14,95,103,81,29,155,89,249,91,155,250,63,235,105,230,243,118,163,111,99,165,197,52,155,83,79,225,253,83,2,239,238,130,143,216,35,63,196,49,132,126,29,14,239,100,155,92,128,135,242,234,118,176,183,88,60,128,33,32,142,144,37,6,179,122,95,158,90,226,158,31,51,196,189,60,82,204,60,129,230,210,177,187,190,89,138,54,238,154,161,105,49,130,110,25,130,32,145,134,101,123,37,97,24,194,238,219,8,53,8,102,141,153,174,13,134,212,39,175,58,135,253,0,154,155,241,111,242,52,49,185,30,181,118,142,96,10,13,234,35,171,39,129,185,225,122,173,143,6,253,241,103,214,190,136,49,120,130,175,244,128,59,71,168,183,2
 12,84,59,153,133,84,34,13,11,147,129,185,27,201,9,29,210,98,91,81,116,69,55,181,36,6,240,88,78,73,213,97,128,254,65,130,30,8,125,195,246,3,160,96,193,121,196,202,112,108,80,226,21,194,26,169,149,26,38,182,187,132,47,18,118,205,222,249,40,107,55,180,224,231,85,217,77,197,188,183,136,29,34,155,82,228,38,135,198,107,50,45,182,189,127,176,74,67,232,139,230,127,180,210,201,84,163,240,39,22,173,176,137,224,100,21,176,204,236,64,34,217,159,24,194,241,225,2,77,232,62,48,228,40,128,193,88,75,176,119,165,19,239,99,17,248,176,109,253,214,186,233,134,26,163,223,77,101,113,119,189,251,159,152,255,53,229,165,210,135,185,246,227,17,234,95,26,173,170,131,91,26,229,51,35,49,48,53,26,131,19,133,88,14,121,254,142,215,192,137,119,252,94,213,5,117,113,229,224,212,141,98,188,227,171,113,15,93,47,24,106,245,171,115,192,47,32,225,191,153,173,6,3,32,219,21,217,1,226,48,59,72,3,176,12,166,38,44,134,62,105,40,197,178,147,77,131,8,182,112,207,206,17,95,212,253,127,143,139,143,99,128,115,74,103,218,207,
 204,3,26,130,178,251,125,137,105,108,88,16,99,199,117,62,88,137,100,171,203,244,106,45,249,217,238,29,99,147,55,89,195,34,215,191,61,176,13,61,65,97,181,129,134,135,146,84,37,197,230,117,53,249,134,135,54,62,175,44,197,215,155,145,26,174,185,189,185,19,232,248,28,186,166,250,66,144,73,94,62,8,133,23,123,156,156,27,77,98,121,79,95,70,107,251,170,171,59,118,32,135,210,78,136,86,207,115,155,190,60,57,76,99,90,91,249,136,174,181,119,196,228,109,150,110,230,253,248,28,148,161,31,143,203,116,99,129,11,23,195,129,124,224,32,160,221,162,164,12,3,81,73,34,245,163,181,200,62,67,252,3,85,141,95,187,168,237,74,225,44,234,180,225,161,21,252,12,134,197,55,120,198,197,125,124,77,202,56,133,201,38,28,253,56,40,32,214,228,1,247,65,146,171,36,46,157,129,245,111,147,227,94,100,86,218,173,239,199,121,224,210,167,66,221,48,155,1,211,154,177,55,106,52,148,219,242,45,113,245,28,217,13,87,21,206,80,146,114,12,138,144,54,222,165,82,215,249,96,201,226,72,11,208,202,222,42,236,91,172,138,198,193,220,1
 72,45,180,167,55,189,41,160,175,182,55,39,112,170,18,108,117,242,230,163,33,188,30,3,222,61,184,160,71,178,81,237,113,29,184,44,12,198,181,239,146,18,68,66,65,175,25,221,176,205,196,92,244,105,110,191,16,253,240,27,251,202,130,246,100,4,170,217,60,167,6,90,9,145,247,226,254,98,169,182,76,207,239,254,178,223,89,204,117,193,153,210,250,8,198,100,66,11,188,157,239,86,179,216,224,21,70,10,89,105,214,94,191,148,197,41,162,97,212,42,183,160,155,121,230,10,13,218,234,42,251,122,75,103,51,130,17,110,51,189,154,154,29,193,14,185,94,164,30,209,50,226,1,232,157,141,102,8,249,15,15,30,230,197,158,219,139,112,215,121,20,135,57,238,39,76,199,164,233,234,240,253,12,107,255,19,139,39,112,41,242,124,177,250,72,130,97,132,252,97,50,5,168,10,78,196,43,184,186,20,119,150,28,27,8,9,158,40,217,67,238,126,187,6,148,182,87,114,113,116,4,206,22,173,115,94,149,141,137,240,125,58,239,216,35,144,211,30,90,78,161,5,15,78,93,232,179,245,237,98,23,211,14,95,194,248,169,211,247,150,21,216,243,184,129,179,4
 ,71,228,73,197,135,246,46,88,11,114,238,55,173,129,74,49,184,71,175,160,139,59,96,154,6,201,149,164,234,195,161,72,21,179,76,23,157,74,160,133,223,0,213,59,254,70,59,61,229,143,66,245,247,130,157,110,94,181,144,207,253,28,185,115,203,14,251,206,80,158,167,68,106,243,9,133,217,217,111,239,203,249,206,42,228,122,49,190,212,157,51,249,164,87,47,88,252,25,228,202,168,115,239,50,26,30,37,140,18,212,179,76,215,114,152,245,79,156,151,123,73,28,55,122,30,38,103,225,198,237,198,143,207,235,46,244,193,77,250,132,26,51,189,73,143,190,105,85,10,77,247,239,98,139,132,18,154,74,109,182,147,186,77,48,104,123,161,182,151,212,112,173,128,83,146,177,242,49,43,41,58,117,167,125,80,206,37,236,22,156,254,53,200,166,49,161,187,48,106,31,158,41,40,133,51,74,43,167,57,246,169,158,53,6,235,142,17,168,147,38,68,115,39,149,11,207,59,69,157,228,26,179,65,16,174,206,81,42,215,166,32,192,96,110,226,19,204,98,42,73,51,229,192,140,74,45,247,193,222,134,116,232,200,241,199,178,33,50,49,93,186,224,1,114,150,
 159,20,31,122,30,161,215,236,2,145,58,99,0,107,15,91,74,116,180,100,237,1,62,130,96,221,8,77,148,166,14,47,20,128,241,22,253,171,32,40,81,122,114,151,175,147,202,98,33,179,172,115,186,18,153,108,208,57,31,216,59,13,134,193,196,255,11,75,52,230,222,60,188,165,23,199,147,117,49,4,241,118,26,137,155,8,226,25,229,194,24,102,210,131,168,111,211,162,219,121,222,80,72,70,53,240,191,73,111,190,243,163,164,20,70,175,252,109,253,142,112,168,118,232,9,143,76,227,193,168,189,24,64,165,11,135,46,12,203,227,79,68,254,132,39,176,144,168,54,25,89,255,240,65,245,132,173,101,70,169,86,251,188,131,174,31,191,193,65,243,185,57,199,91,254,145,194,64,168,196,49,76,20,212,53,248,254,137,170,94,249,255,59,131,83,228,78,140,16,236,74,218,224,48,202,75,81,165,80,223,16,140,148,160,99,144,174,31,161,130,107,151,242,29,216,62,131,68,135,193,217,132,101,91,138,77,66,42,170,249,139,162,67,213,120,114,25,71,89,91,182,242,89,234,106,71,255,148,75,236,122,241,162,229,59,174,236,147,31,221,22,54,75,158,140,1
 13,86,170,70,151,74,10,91,63,173,133,143,60,52,47,244,242,3,37,233,106,204,71,207,238,124,205,115,82,45,210,252,185,52,138,155,37,2,38,206,175,132,145,19,74,123,78,49,220,81,29,98,184,183,59,241,28,121,15,116,54,202,168,227,12,172,249,64,127,7,73,222,198,203,191,172,250,86,46,2,210,125,21,170,178,55,156,107,11,211,72,80,33,84,96,190,101,175,196,106,114,69,20,159,21,172,223,162,213,253,5,192,248,156,4,142,77,86,183,172,165,163,159,37,155,140,167,169,66,103,190,145,177,92,157,169,102,81,206,108,73,152,37,247,57,147,62,120,148,170,198,33,199,193,111,78,85,54,254,132,235,208,184,249,183,27,226,7,126,43,214,205,100,26,249,130,55,21,78,62,173,70,99,105,100,119,97,153,109,97,141,2,183,197,91,92,223,252,59,238,149,208,52,196,165,61,192,141,45,192,249,171,124,85,160,20,26,82,77,58,152,253,95,20,250,49,26,179,184,80,123,77,9,170,2,67,130,253,153,79,30,177,109,160,179,103,165,79,126,157,206,102,3,147,234,21,148,8,0,126,105,21,188,183,209,17,210,49,77,15,239,71,72,39,117,19,10,108,157,6
 1,247,80,124,245,130,227,11,101,174,246,78,40,124,245,224,125,56,150,185,73,197,63,243,12,84,102,69,244,220,82,170,152,168,222,220,35,22,2,83,232,107,162,96,246,28,193,1,76,11,151,23,62,129,120,46,82,164,70,243,207,199,200,105,73,15,246,118,190,224,74,234,239,182,190,235,78,13,155,223,68,34,228,23,205,39,75,75,113,244,77,36,78,184,207,151,45,43,234,67,207,248,147,6,88,175,45,1,24,111,40,131,147,15,195,170,163,91,83,152,86,127,68,242,169,112,210,196,190,59,98,95,179,130,246,225,248,138,143,143,51,168,70,139,161,127,221,23,18,236,197,131,187,231,210,25,141,231,215,134,14,198,18,179,183,253,213,16,79,2,209,93,188,162,228,156,191,201,186,52,70,128,219,3,81,244,136,5,204,60,39,35,249,125,147,244,52,116,239,51,171,106,136,127,43,243,248,64,115,138,77,55,53,217,229,228,195,87,207,5,154,206,153,26,52,153,182,246,135,13,172,176,82,52,114,40,9,94,151,89,135,22,123,206,238,157,220,148,247,222,6,66,143,40,168,96,87,248,18,92,211,87,31,153,72,148,147,141,190,214,36,110,214,239,174,138,55
 ,107,194,36,62,140,211,182,181,203,113,230,87,133,213,198,110,131,58,188,16,215,228,135,181,97,92,199,234,156,209,91,205,31,168,138,224,54,40,109,63,151,137,146,124,230,23,21,147,7,74,16,195,146,207,120,229,36,120,20,141,221,147,179,250,153,254,169,76,23,201,40,5,35,226,75,47,113,214,13,151,185,199,249,195,2,58,198,36,169,116,247,3,202,254,106,179,106,142,129,155,127,199,127,79,234,18,40,81,111,242,192,27,28,93,129,35,230,80,107,112,142,29,19,223,96,5,22,97,43,187,37,52,185,219,202,138,211,239,202,136,82,172,254,120,154,200,6,177,164,182,32,25,90,190,200,31,115,29,213,65,226,24,188,149,121,123,150,181,43,228,198,28,16,9,175,174,26,76,137,35,34,33,51,69,72,34,234,125,122,126,169,175,8,126,159,86,92,94,189,88,30,11,37,95,18,54,63,163,54,242,146,20,26,105,15,242,174,31,98,148,208,202,51,203,178,149,171,236,75,239,67,172,34,235,104,70,17,105,167,14,117,208,155,195,33,47,117,121,114,169,247,158,200,126,4,249,45,152,244,229,255,249,61,235,223,86,196,124,130,77,53,128,88,11,6,5,151
 ,21,67,112,189,120,60,67,166,16,93,95,125,138,197,141,253,109,229,138,49,31,231,96,100,117,121,244,2,147,64,181,77,241,58,50,145,76,214,4,111,117,47,137,221,253,57,43,7,171,99,250,240,27,254,43,53,35,24,154,174,128,10,108,117,213,55,71,193,4,161,31,177,233,105,246,29,158,146,233,220,148,147,123,141,38,189,58,248,169,74,113,235,1,30,56,83,237,124,38,77,254,112,157,129,224,104,73,151,158,240,169,67,73,114,104,10,247,184,177,84,93,202,156,96,40,112,230,177,27,170,24,237,26,117,64,101,122,114,0,209,132,208,77,199,30,207,146,115,137,2,36,154,120,13,131,235,72,238,205,9,184,45,233,246,48,222,71,30,9,114,72,217,79,246,38,191,85,185,147,114,23,98,86,106,220,247,160,166,137,54,121,125,123,217,2,129,99,138,210,187,4,25,78,169,41,198,162,7,24,203,230,17,59,157,163,3,190,157,99,115,92,21,102,14,215,242,63,30,241,236,30,237,66,168,78,156,178,239,232,78,92,99,147,178,131,247,237,232,70,132,224,140,21,142,115,58,191,245,250,45,98,155,211,14,52,138,180,53,187,38,189,239,192,173,197,160,79,3
 8,15,203,44,70,217,4,99,148,194,210,201,139,167,192,11,102,165,136,41,36,235,150,154,127,79,84,57,240,118,148,223,21,122,228,194,2,214,219,69,51,149,194,179,177,185,6,231,224,219,166,118,23,93,28,217,217,125,47,115,107,246,0,85,138,74,35,204,64,164,119,61,150,77,9,96,182,179,24,238,138,142,228,125,123,141,85,115,75,74,73,225,192,242,55,147,233,95,144,184,229,111,48,123,148,214,248,154,189,138,225,90,60,252,148,106,142,92,113,187,108,91,203,63,193,231,10,100,129,171,93,148,246,190,142,25,232,35,185,185,5,199,49,105,178,124,191,31,224,73,117,248,185,168,206,69,118,87,168,187,210,162,210,242,53,110,253,181,173,230,76,246,65,240,221,25,178,18,210,139,90,113,46,229,103,144,254,242,68,163,216,92,79,83,121,112,123,159,232,145,245,184,176,44,98,35,47,8,17,232,168,81,80,143,171,48,183,90,217,7,130,69,16,54,24,225,153,23,10,185,249,87,157,228,119,45,225,247,10,4,0,107,46,64,188,33,170,185,59,224,140,1,254,196,201,19,175,229,40,14,222,234,85,98,101,82,67,25,37,121,253,75,234,62,36,156,
 194,62,152,143,151,56,44,178,68,7,160,87,207,147,149,93,90,219,239,223,251,254,94,253,206,236,192,139,179,157,82,46,95,56,104,49,132,59,91,129,3,29,128,197,181,176,56,126,112,28,226,124,68,112,59,215,52,17,108,19,190,22,92,164,6,145,98,15,178,168,117,165,49,117,214,113,110,241,121,125,55,46,183,181,79,82,14,214,121,58,80,246,108,166,48,99,252,162,0,196,238,155,46,215,99,147,215,85,30,122,212,74,94,28,71,87,86,113,227,45,150,125,115,251,65,85,17,230,204,219,209,213,19,218,222,244,141,218,26,101,104,151,237,33,2,52,216,164,73,84,101,243,65,179,174,175,215,76,52,157,28,143,126,103,213,215,81,171,164,180,108,18,115,182,201,196,133,144,222,117,210,187,165,133,133,77,0,241,115,221,103,119,108,92,10,128,110,57,240,63,33,60,60,115,127,209,170,35,46,251,14,138,100,80,203,54,65,223,248,170,209,90,74,117,60,78,212,193,80,190,59,56,72,151,216,74,203,173,202,1,162,7,148,251,63,238,96,214,125,55,106,101,161,232,167,151,130,46,46,80,49,85,97,138,252,55,31,240,204,151,170,27,196,231,155,249
 ,131,99,41,26,100,72,171,118,220,24,154,229,55,103,157,192,18,191,194,50,46,153,23,208,3,83,153,94,63,20,4,104,7,38,89,227,129,154,44,145,222,195,32,55,41,68,86,225,53,50,176,226,27,105,253,254,13,169,244,47,56,106,183,142,215,11,89,53,233,193,13,92,102,27,228,74,247,37,242,74,94,91,93,36,154,79,202,246,62,57,92,155,61,108,222,72,91,244,186,70,197,184,100,30,238,56,76,124,155,59,107,197,55,126,138,74,161,104,4,51,205,52,232,35,98,222,66,212,244,134,152,57,200,68,56,69,121,248,58,170,156,181,208,193,100,151,236,136,47,42,132,0,123,36,70,126,241,143,21,35,237,247,100,40,140,80,52,107,142,39,221,160,232,102,137,3,200,103,232,217,232,218,199,10,218,169,59,110,237,74,139,106,247,64,101,30,120,196,232,96,25,247,172,229,68,199,7,45,56,120,212,29,228,59,50,137,114,232,158,90,69,162,104,83,137,20,140,106,20,201,248,80,101,211,64,191,68,122,241,219,145,23,76,105,178,188,83,142,163,214,240,72,210,171,194,56,100,29,68,141,142,11,214,63,66,245,181,175,90,169,139,204,72,19,5,105,209,54,10
 ,132,17,216,45,58,199,25,109,153,192,224,11,27,5,34,32,124,94,231,251,183,16,211,24,172,57,201,50,183,196,98,203,233,89,155,201,51,115,129,96,186,53,118,232,179,91,91,28,63,27,198,72,238,70,105,213,137,101,168,154,205,221,41,122,152,233,95,177,230,110,32,176,197,205,234,167,252,134,238,76,160,147,14,6,68,149,149,217,73,31,4,196,238,139,27,216,105,72,92,178,212,191,104,97,65,82,113,57,216,240,200,18,58,41,11,81,110,99,140,70,228,223,165,22,21,166,183,245,11,246,150,218,65,89,212,39,74,25,20,26,9,201,187,164,251,15,94,118,220,193,188,54,116,38,16,62,167,102,134,21,180,138,74,165,156,98,194,46,147,168,120,41,15,93,125,236,152,6,202,74,88,195,173,10,205,204,140,171,250,79,138,221,162,42,8,108,106,140,60,56,45,34,143,252,157,69,36,191,33,16,72,150,29,152,74,162,83,205,76,12,72,35,233,50,26,138,226,163,181,85,211,201,205,125,234,151,152,144,83,213,182,38,81,5,202,86,33,7,43,153,27,146,109,230,60,84,180,114,42,93,217,75,6,58,77,172,48,226,149,109,176,226,192,104,147,255,114,147,124
 ,169,194,245,155,110,85,242,83,166,126,1,56,54,99,137,46,25,126,228,159,108,90,52,20,87,163,221,173,114,163,159,161,95,204,108,17,194,238,8,210,77,230,140,62,19,37,92,222,50,70,245,71,32,72,28,210,136,72,25,94,81,79,9,117,226,16,220,3,143,180,133,69,181,69,248,61,172,194,135,3,64,64,57,147,181,36,102,48,218,198,198,26,28,134,46,48,117,38,165,235,0,224,78,171,55,219,85,194,186,215,102,243,3,13,73,207,255,47,180,5,206,124,189,130,88,180,254,219,55,43,26,79,0,167,53,76,41,18,161,19,168,23,150,126,157,45,42,22,198,31,198,137,249,177,207,223,176,177,45,78,79,93,209,250,202,251,14,136,6,75,91,173,211,246,166,156,136,207,171,113,83,231,78,245,188,27,236,138,95,52,178,157,251,22,91,204,164,159,21,194,149,163,53,196,164,202,75,30,164,69,120,19,71,5,84,13,139,131,4,19,117,65,43,136,150,4,56,218,181,48,162,10,72,249,234,66,210,189,21,145,190,162,53,153,177,228,103,53,251,114,32,113,95,92,251,30,22,226,238,0,95,205,49,181,201,3,181,141,238,101,96,198,148,83,180,252,89,127,213,3,71,15,24
 3,217,75,188,43,95,0,121,198,162,82,80,76,247,1,67,151,164,113,226,43,138,79,209,40,128,137,23,76,126,87,10,202,190,92,133,29,91,146,205,118,226,87,9,245,169,81,237,245,15,131,98,88,12,168,96,206,175,142,253,73,162,83,6,16,174,92,140,229,115,183,131,240,89,203,239,118,199,17,195,217,38,244,228,210,220,253,166,25,5,210,54,142,165,55,164,31,120,249,158,162,155,10,143,18,20,184,77,160,113,134,249,100,141,87,76,164,27,70,19,103,229,181,11,228,88,128,203,235,242,53,227,97,239,212,152,245,29,27,64,34,229,68,4,197,190,121,250,240,244,159,185,224,213,205,22,160,206,107,117,105,193,196,115,160,28,75,93,58,239,56,132,198,36,251,187,203,108,90,20,37,115,45,57,100,88,135,142,54,25,224,66,227,64,2,74,212,224,49,223,150,53,247,2,64,71,64,14,35,113,212,181,213,232,28,20,102,113,76,44,89,127,105,171,28,161,108,147,235,208,191,56,242,173,68,105,232,243,222,0,128,149,179,79,66,192,255,248,43,172,183,226,241,233,84,19,177,63,46,128,206,216,35,49,8,44,4,93,213,165,215,80,185,81,233,254,246,125,
 169,116,254,7,49,220,231,248,82,99,159,113,133,92,42,236,34,236,15,135,204,117,202,242,111,204,2,88,124,198,219,120,48,43,78,120,109,116,212,220,3,219,65,139,18,99,37,122,246,223,14,11,13,23,169,69,142,50,63,4,127,44,125,81,64,216,28,255,225,252,4,241,84,232,209,101,241,21,131,25,44,1,64,114,11,202,207,216,134,59,91,70,43,10,250,212,230,104,93,60,29,125,108,241,201,159,64,74,177,58,162,98,133,20,216,162,164,147,234,247,74,27,112,129,20,251,2,22,254,198,158,103,8,255,157,104,205,94,174,86,219,81,182,87,53,66,176,175,250,68,89,120,33,153,88,24,92,26,130,106,107,196,38,52,64,63,18,173,36,101,30,200,217,205,173,58,156,175,235,218,216,219,46,147,237,206,177,149,218,134,13,61,16,26,203,223,147,243,56,31,105,17,4,72,163,119,135,30,214,128,101,153,90,65,152,139,153,216,250,84,72,81,68,153,72,130,127,145,26,220,73,246,15,76,131,149,5,30,153,131,8,70,63,117,172,253,97,58,72,169,12,185,16,222,102,64,183,148,117,95,60,228,130,181,15,229,164,160,28,86,165,81,99,118,123,121,217,152,20,182
 ,214,80,198,104,131,143,104,23,41,228,156,64,85,85,182,11,242,89,16,159,56,96,184,71,190,236,68,98,247,110,10,235,80,87,165,216,198,152,67,31,60,111,192,156,125,175,84,148,5,204,175,2,223,201,185,89,200,122,133,22,129,242,96,177,223,170,103,66,30,236,61,92,3,239,118,116,226,134,130,41,68,63,158,232,58,213,136,67,247,57,72,10,145,251,15,52,211,177,186,130,154,19,123,222,190,168,83,115,169,116,133,84,86,223,108,165,56,106,227,57,206,228,65,71,218,102,135,211,216,205,107,167,64,236,163,207,39,24,132,171,5,161,163,187,200,28,152,105,175,123,227,223,151,194,23,123,102,193,208,65,155,225,81,52,17,116,230,54,137,8,251,226,25,92,108,198,82,201,106,231,202,34,8,101,119,157,117,2,78,148,221,186,87,107,14,244,168,151,33,187,73,141,102,50,48,87,190,96,169,55,119,249,80,34,246,19,3,134,137,155,42,206,158,88,124,21,153,95,45,169,51,85,39,119,76,214,186,119,208,171,221,248,168,18,252,63,45,123,251,205,38,186,147,46,246,146,44,176,117,105,151,78,195,36,196,249,68,36,61,240,48,152,39,203,224
 ,179,78,193,228,192,218,160,36,2,52,231,174,131,125,211,36,31,1,70,137,61,205,91,105,5,31,173,116,226,220,185,27,91,28,75,94,81,15,174,203,12,104,5,128,27,192,111,167,125,188,229,6,245,173,105,57,14,199,68,73,31,71,196,227,228,84,192,211,86,37,21,240,128,212,201,144,63,45,195,240,226,243,77,100,188,243,94,19,138,120,128,151,17,99,68,115,128,73,129,77,180,216,143,154,128,209,72,50,170,38,94,59,134,63,228,230,67,132,132,35,202,244,95,253,221,235,203,246,163,202,217,157,254,113,238,180,129,210,190,101,158,8,51,237,118,172,174,24,68,163,213,116,141,64,56,163,153,106,21,81,44,239,237,211,250,107,32,138,69,249,36,126,194,240,122,32,118,167,185,1,208,13,82,219,77,233,131,30,83,63,157,192,111,194,108,166,134,160,79,16,146,166,164,47,60,26,7,160,201,144,4,152,31,28,86,247,21,102,72,158,239,21,220,125,3,23,254,206,137,237,117,228,77,142,89,145,3,50,15,199,145,67,165,135,115,241,141,124,116,10,214,139,53,95,12,44,111,86,92,93,156,48,69,26,104,184,85,44,31,243,195,59,78,20,12,67,100,150
 ,220,139,3,248,191,210,170,40,61,12,63,73,203,54,211,193,94,146,58,210,55,73,57,169,53,170,85,81,118,149,222,138,34,14,40,165,158,29,152,95,77,62,152,83,36,172,114,24,126,197,205,76,25,164,250,173,90,88,92,69,163,182,211,231,132,243,129,20,220,220,61,202,224,18,80,135,64,37,35,47,144,113,100,205,59,218,233,193,43,243,85,150,78,158,245,173,59,83,165,27,53,225,16,154,167,245,252,154,244,46,76,154,79,237,85,159,136,147,186,170,172,114,19,148,151,51,175,95,219,26,88,220,237,96,174,119,48,90,29,74,165,30,67,145,89,204,239,196,110,81,178,230,135,253,157,58,138,217,153,211,113,25,27,240,100,248,253,217,177,93,116,22,48,2,228,162,103,243,128,191,37,245,66,32,90,9,214,14,192,24,251,199,253,199,241,200,60,100,121,245,137,156,10,105,160,168,112,84,101,185,229,254,222,235,177,243,63,151,142,13,148,170,207,114,46,110,94,45,92,24,97,143,102,193,54,168,85,87,179,61,19,103,228,204,74,50,166,99,26,63,182,208,172,182,209,8,29,218,99,246,12,219,86,27,113,133,159,148,77,192,109,112,174,81,231,1
 9,72,195,159,107,123,1,246,63,13,9,226,192,201,150,108,197,227,226,236,97,57,241,196,249,106,37,133,32,155,210,58,199,248,131,242,43,131,233,107,231,82,183,105,152,95,29,58,20,113,196,180,205,41,80,118,208,3,196,90,146,255,145,14,2,8,109,196,213,199,199,21,113,240,129,60,14,39,164,205,58,208,230,83,145,74,79,233,27,168,204,7,167,60,158,235,225,105,61,165,253,243,184,113,205,116,79,26,175,23,43,211,156,48,188,16,236,15,234,91,235,249,232,51,197,55,179,33,107,155,30,107,155,30,205,9,42,221,143,149,122,204,215,115,72,150,109,174,121,68,29,12,99,100,46,248,84,163,0,113,144,253,17,150,90,106,78,39,208,182,77,209,117,69,41,239,21,190,29,64,160,89,149,174,146,83,31,228,176,233,224,17,153,117,252,227,26,238,120,54,252,33,143,56,95,190,250,237,88,119,215,174,96,81,177,94,172,77,114,120,135,129,187,175,15,177,176,50,39,254,28,250,55,231,12,153,49,11,238,156,207,177,12,146,154,166,99,95,90,86,168,95,225,28,130,203,121,6,220,196,17,181,0,8,238,101,162,87,121,234,222,29,53,207,207,187,21
 8,142,237,70,68,10,244,51,126,173,235,16,46,48,121,229,131,201,31,236,240,84,80,130,30,215,202,255,160,128,214,161,71,99,210,58,228,6,30,107,185,197,63,42,156,217,128,23,214,118,15,165,34,224,24,182,187,190,203,199,218,28,97,147,129,29,64,215,84,196,120,10,90,177,248,68,146,121,71,91,85,8,111,22,175,225,110,74,123,196,192,12,234,85,64,240,183,71,151,134,68,79,86,1,98,83,115,83,144,115,82,205,32,205,226,225,61,76,108,243,202,161,0,186,207,242,207,28,21,37,97,32,119,75,169,36,131,169,137,16,57,225,104,135,203,222,21,145,27,114,87,43,25,81,135,105,132,244,4,128,73,82,54,176,238,215,249,92,88,200,60,118,231,145,29,175,144,107,55,94,165,120,234,2,162,173,144,188,81,108,4,117,7,127,16,27,24,180,223,174,132,56,220,227,123,200,90,124,249,22,50,64,243,140,182,34,33,38,165,250,198,32,102,187,85,197,100,195,240,169,17,41,217,244,30,169,40,124,162,32,136,154,91,160,38,154,101,5,212,177,220,89,235,90,168,107,166,65,58,26,193,230,253,5,25,101,51,59,148,148,248,80,29,211,238,213,101,118,94
 ,43,128,112,16,59,102,253,251,68,108,26,155,227,82,16,193,72,192,159,89,222,116,232,198,90,197,209,43,212,134,55,153,220,104,235,168,165,37,42,41,193,248,238,192,249,16,93,93,106,172,219,191,158,90,183,124,120,246,232,13,74,116,223,67,155,98,134,89,222,40,232,50,105,16,145,149,160,212,204,114,191,4,174,197,244,146,91,64,15,219,73,139,172,87,49,169,177,245,114,3,191,189,61,197,97,6,23,101,165,117,27,241,161,231,46,22,201,179,111,35,134,220,60,89,154,181,92,198,114,53,185,217,109,225,57,158,255,98,251,185,130,63,75,44,183,168,18,236,142,113,67,188,254,178,171,139,158,1,162,220,247,112,206,64,142,131,63,92,52,53,52,47,63,228,7,135,15,38,47,152,98,201,54,239,21,61,66,243,89,182,106,135,210,180,93,70,170,27,56,39,210,114,72,137,245,70,169,231,185,206,216,124,136,126,52,2,95,160,65,68,243,171,50,125,212,136,222,77,110,242,86,85,162,231,75,154,46,202,97,3,170,183,196,193,56,56,32,32,199,52,251,21,7,192,13,186,146,141,92,67,215,107,102,14,23,114,69,78,82,154,240,211,145,98,134,78,14
 2,59,182,42,163,177,75,241,2,138,80,88,203,79,44,166,112,57,194,198,119,94,224,21,81,94,170,245,172,70,113,222,121,125,109,15,220,251,106,131,130,144,212,217,26,177,175,58,50,101,23,14,180,152,224,233,135,181,109,32,244,83,247,248,12,171,87,142,190,236,30,28,225,50,97,177,23,208,174,193,111,165,72,94,71,128,61,243,65,73,59,207,219,228,192,88,195,229,117,114,103,105,230,146,85,131,152,166,197,171,115,37,216,51,184,186,123,49,50,130,239,108,14,105,10,150,135,101,226,53,194,151,0,3,93,236,159,41,66,207,50,118,17,241,103,102,151,0,151,198,159,204,162,99,58,218,154,47,117,210,126,68,226,77,255,83,144,7,171,200,37,153,89,179,98,194,82,223,25,151,127,49,152,113,4,80,181,99,130,171,132,110,187,27,9,105,165,214,175,173,0,221,87,106,239,109,110,14,70,137,56,159,79,56,29,252,176,253,28,111,53,222,114,210,124,249,191,61,60,118,100,197,180,54,174,226,198,128,209,120,206,10,214,157,6,55,92,131,210,172,210,191,193,15,13,50,246,223,110,142,234,22,239,154,164,254,109,163,150,125,177,50,221,2
 38,32,22,249,4,23,96,186,245,243,246,31,1,178,171,169,59,131,34,43,3,12,93,110,233,17,195,157,187,21,82,13,2,219,64,156,66,13,12,205,187,108,79,234,188,233,82,75,19,194,236,153,120,106,223,151,192,71,215,229,227,206,74,254,115,23,227,77,24,73,85,65,198,15,73,29,195,223,91,24,168,87,19,33,173,234,147,102,228,194,118,166,97,175,139,102,7,50,50,56,76,153,31,181,45,58,254,80,252,242,76,92,160,187,232,225,252,90,116,30,93,249,231,23,49,78,186,148,81,39,253,85,106,172,128,7,235,227,65,36,161,70,234,3,168,171,132,22,20,201,67,36,159,153,149,153,132,105,128,122,89,242,214,21,212,40,225,147,223,246,6,36,162,32,140,185,83,168,110,104,177,94,18,214,67,163,5,250,218,129,4,3,148,122,28,128,93,8,185,3,198,90,30,10,216,214,112,6,41,107,68,139,176,84,250,210,158,208,64,151,163,184,59,197,175,35,4,126,236,67,127,29,228,30,160,121,170,76,141,102,55,60,179,153,106,145,196,142,117,2,68,246,96,194,11,249,167,107,155,159,64,51,24,242,95,221,230,25,229,53,27,30,154,35,86,109,204,133,87,116,82,65,1
 53,219,45,50,128,90,114,18,115,5,42,118,84,232,124,42,51,219,195,64,235,137,132,69,20,204,139,24,107,97,80,151,90,184,76,61,135,237,150,186,39,238,136,87,69,227,64,230,27,67,225,227,47,107,244,45,162,226,127,162,182,46,6,214,239,145,103,1,50,43,42,106,199,151,238,74,200,80,254,142,15,158,70,192,17,229,73,145,148,130,113,85,128,85,186,7,247,189,206,38,48,232,109,41,145,239,112,51,171,183,229,101,115,16,66,212,247,183,190,82,103,230,175,16,235,128,225,154,18,84,144,236,139,189,191,122,171,143,2,131,206,250,180,95,0,255,71,188,192,25,3,90,33,250,249,108,214,129,214,87,247,189,191,178,61,126,93,192,25,150,106,76,43,54,91,107,45,150,42,83,150,238,186,92,182,30,161,214,21,42,18,92,61,171,191,79,86,90,160,18,92,127,235,245,198,165,239,107,79,25,6,152,150,226,231,216,90,136,166,13,126,18,180,220,64,116,230,149,175,39,144,137,112,111,206,5,4,161,166,24,77,214,213,83,3,16,133,173,94,106,76,129,159,185,166,149,95,100,92,65,158,69,108,211,131,52,92,16,162,30,138,51,188,17,126,117,20,210
 ,128,182,18,247,184,183,10,109,150,44,204,55,168,128,189,7,213,247,52,97,61,177,114,32,206,139,245,105,172,190,63,1,34,237,185,236,169,59,221,218,101,153,4,87,40,109,96,172,247,49,143,32,220,152,183,247,88,112,224,121,138,208,18,17,198,233,205,23,64,184,95,239,97,205,182,124,6,111,129,222,70,176,19,127,66,244,65,3,202,40,236,188,101,139,224,237,165,149,196,85,152,125,194,188,104,14,60,205,65,55,109,74,183,204,217,211,136,3,237,169,8,144,247,243,101,151,97,252,15,130,208,219,104,230,176,36,2,201,1,212,237,29,243,85,110,166,97,202,111,182,184,148,169,152,81,188,57,201,100,18,31,96,233,140,40,79,21,43,9,245,198,79,201,67,177,227,4,163,169,226,209,240,245,212,174,46,68,249,221,237,185,160,157,201,138,106,254,7,117,112,200,177,252,165,32,229,172,40,101,166,216,133,54,205,68,117,107,54,232,31,161,95,209,242,210,3,190,235,229,197,184,71,233,82,198,57,243,75,182,80,59,127,215,102,106,136,160,138,139,146,59,129,192,146,60,1,240,35,219,106,240,88,119,148,63,22,35,83,8,8,97,25,142,220,
 79,67,150,213,133,146,110,64,64,71,94,252,119,162,35,80,80,187,91,105,155,154,55,14,61,159,57,252,142,42,85,168,98,70,227,198,157,1,116,2,223,92,164,114,10,239,232,118,241,166,14,171,45,80,100,121,81,38,248,12,8,52,141,107,208,118,202,24,216,95,23,93,91,180,149,37,172,58,140,110,56,251,24,247,61,180,35,130,233,81,226,53,8,112,211,143,130,110,74,242,99,244,238,190,199,241,31,153,222,26,121,170,8,64,141,72,68,2,171,205,86,117,62,10,241,61,246,234,125,31,7,9,237,108,137,19,197,238,187,239,66,160,14,99,173,14,8,104,140,237,13,245,202,137,66,192,201,68,158,194,74,18,147,159,101,250,249,152,195,198,15,224,161,156,75,4,22,69,223,15,37,27,199,207,114,233,173,199,43,120,75,13,84,36,85,128,151,197,38,87,25,105,78,208,109,225,74,155,218,207,193,22,170,147,102,221,174,41,235,111,101,224,234,41,35,242,246,51,22,73,34,25,221,51,188,175,29,145,244,59,75,211,35,106,243,176,162,116,173,106,202,191,187,247,150,129,160,161,254,230,164,198,227,72,220,65,172,96,188,113,71,30,50,194,107,85,193,66
 ,95,80,229,48,230,40,233,181,57,245,84,26,157,180,11,170,16,10,8,119,122,214,163,239,215,0,137,111,46,138,123,107,41,181,236,146,186,147,203,84,134,120,213,169,56,243,170,252,43,73,118,111,101,243,56,166,68,147,135,158,23,123,199,84,111,19,172,123,244,47,93,36,199,52,67,100,101,39,175,82,78,151,229,0,110,123,24,106,77,154,106,241,190,159,247,3,168,97,155,86,153,20,34,65,220,17,249,145,117,52,184,66,88,119,35,227,171,65,53,48,99,182,0,174,5,45,132,199,32,92,136,135,162,70,34,10,157,43,111,117,0,58,123,41,162,61,218,145,89,204,163,51,143,56,193,67,4,222,222,170,213,175,83,211,39,97,220,160,221,89,171,170,154,21,35,4,59,249,208,68,198,241,228,199,108,123,212,33,98,16,177,137,139,171,199,63,189,26,197,123,252,102,145,120,64,123,158,81,179,38,63,39,215,30,96,169,214,163,234,228,28,181,114,152,55,241,90,254,235,29,161,62,222,145,167,38,110,174,106,185,2,216,190,233,66,22,62,73,233,162,22,175,12,7,36,61,242,129,166,197,211,1,219,41,74,125,4,3,237,46,213,26,123,30,225,128,25,197,186
 ,99,254,211,142,165,93,111,167,140,216,241,230,29,202,33,191,241,52,1,135,223,47,133,129,254,141,42,243,214,202,81,133,128,229,169,89,32,26,121,143,233,24,174,236,61,55,27,56,7,208,219,125,97,193,253,141,242,223,246,152,27,48,20,101,9,143,46,246,86,255,28,52,240,160,52,242,11,30,102,236,18,200,41,169,122,223,80,59,175,20,133,106,227,93,27,59,102,0,60,53,196,35,29,164,50,1,63,184,185,17,128,7,203,39,208,154,121,207,38,71,160,150,101,145,242,130,42,44,52,114,176,168,183,147,16,41,62,3,41,221,155,151,181,222,146,146,148,228,58,172,129,125,234,182,128,186,94,1,68,39,116,94,42,131,57,74,170,78,196,71,119,19,23,214,208,50,79,174,190,120,28,196,4,93,254,137,107,141,90,40,89,90,55,51,217,175,152,126,48,17,16,137,115,216,229,79,65,162,211,56,54,39,138,21,13,93,36,15,179,216,116,99,140,91,130,161,167,185,142,217,99,66,26,224,104,8,47,153,69,75,193,106,151,18,225,186,89,174,206,168,107,162,104,95,12,31,70,235,231,6,94,33,95,153,34,173,125,213,114,153,16,235,72,138,161,0,206,182,192,239
 ,37,225,197,75,97,123,182,190,208,147,242,167,52,108,171,127,245,189,46,61,250,198,255,12,197,16,213,118,85,136,143,235,241,175,58,239,45,160,42,200,116,164,95,18,31,15,87,171,116,177,147,27,221,14,57,195,26,161,2,54,117,79,160,131,170,164,83,107,91,225,25,109,7,242,194,160,4,225,35,193,59,28,2,155,10,168,65,115,32,36,249,104,248,13,49,44,8,40,43,1,131,73,112,197,227,21,99,248,86,132,221,32,33,152,46,126,54,229,24,248,174,49,199,93,112,3,47,125,141,187,100,19,44,36,171,124,233,144,150,245,82,220,196,98,115,106,247,40,60,12,122,158,3,99,152,42,25,57,24,167,221,96,143,248,243,160,34,190,205,87,179,109,251,217,200,245,74,18,105,227,67,59,197,121,185,40,0,229,238,8,152,92,122,51,232,124,177,64,129,133,68,202,218,232,248,93,42,162,216,44,49,224,79,27,147,111,80,255,104,27,124,239,52,154,5,15,193,188,61,6,218,137,247,38,83,94,153,137,176,148,98,23,147,46,163,78,118,63,130,217,231,252,95,215,239,192,247,84,213,131,138,39,68,135,200,192,9,154,42,13,145,193,222,115,80,79,146,202,41,4
 3,150,11,213,236,26,230,200,35,58,202,241,171,120,210,199,9,141,161,90,88,195,3,123,170,166,77,89,61,49,133,230,225,175,54,55,139,156,107,93,54,194,247,27,190,107,186,89,137,217,172,30,99,9,66,76,44,212,67,204,206,103,137,109,165,178,45,140,230,162,109,165,61,190,66,202,105,146,140,185,31,117,233,253,62,140,177,42,21,20,147,63,110,161,101,143,233,19,187,139,191,147,41,246,77,238,144,37,163,197,214,10,56,121,130,39,138,113,249,178,46,209,16,26,127,104,234,45,104,244,252,85,45,142,149,139,160,117,16,22,180,90,58,176,100,177,130,69,140,40,181,125,78,251,0,250,161,41,136,222,40,80,172,157,43,103,195,96,176,118,106,232,180,252,220,159,1,211,192,63,36,86,169,176,194,222,193,191,24,40,72,187,143,23,249,115,161,82,175,96,35,175,122,198,25,94,94,136,92,82,167,141,179,157,99,44,34,170,86,6,142,224,18,95,253,69,46,88,16,164,88,186,219,244,123,88,90,193,90,1,153,204,230,65,190,8,84,223,95,161,16,114,189,144,189,168,140,220,211,245,177,1,109,140,209,176,138,238,49,68,156,9,157,172,1,164,
 171,18,21,29,241,39,217,36,50,103,170,161,115,49,17,39,254,30,198,87,74,29,8,179,63,50,180,63,100,5,38,48,197,63,40,239,195,85,240,190,101,249,193,128,134,124,20,12,89,78,117,216,104,36,254,132,67,37,173,157,247,215,128,55,252,248,136,180,206,158,3,7,57,186,131,242,104,137,234,102,185,121,40,116,104,142,157,79,106,47,118,37,149,57,45,25,54,2,230,238,46,227,37,63,78,211,64,13,209,30,64,176,61,31,186,72,51,36,137,212,181,138,208,85,22,177,65,38,163,108,153,21,86,37,54,107,171,235,2,227,154,1,101,228,54,101,114,12,7,21,10,217,195,139,49,169,142,179,215,1,80,71,60,212,168,61,218,193,223,255,55,207,21,151,186,212,72,90,83,221,157,104,242,49,143,34,128,104,91,170,146,3,35,162,222,151,206,63,93,166,196,90,84,45,147,40,159,243,63,159,6,173,24,99,8,107,187,16,4,142,61,202,201,126,114,180,252,0,19,100,57,128,158,174,128,34,166,126,190,70,237,55,199,170,227,17,45,201,252,203,183,48,116,172,85,27,197,224,176,246,148,219,124,70,51,112,149,78,45,209,32,75,32,199,150,48,254,108,55,106,147,
 174,172,225,29,112,112,187,236,216,93,210,139,51,134,139,68,95,198,17,234,117,45,106,159,250,38,253,41,72,181,81,210,195,93,14,179,77,154,123,124,226,179,216,237,54,169,103,88,232,91,219,227,172,225,68,66,102,17,4,171,182,88,145,141,36,123,196,217,112,7,182,29,78,38,134,102,141,178,69,202,245,73,101,25,11,241,107,184,27,183,213,154,157,138,17,202,141,180,30,34,102,90,155,165,170,12,159,176,238,151,0,66,63,35,115,11,124,230,240,237,49,29,236,95,192,167,242,213,229,236,36,246,97,216,40,222,141,255,96,164,119,209,90,44,58,102,79,46,58,225,63,88,211,125,24,215,107,127,54,242,206,242,145,109,180,158,254,113,174,184,38,176,107,159,1,172,11,13,93,33,183,189,205,116,107,52,247,97,228,56,31,65,97,215,116,138,212,43,9,152,246,31,1,208,65,71,106,232,24,51,118,251,192,129,5,169,153,7,1,220,32,86,113,93,23,197,93,59,101,217,242,194,105,211,11,220,27,238,67,73,242,156,206,132,227,8,213,161,206,227,125,101,96,219,82,250,246,5,147,193,108,32,37,138,162,182,98,142,173,27,20,252,99,186,71,81,
 206,59,18,249,101,38,175,154,46,206,99,152,53,62,181,99,114,195,205,230,142,149,140,106,82,72,211,248,224,229,106,185,151,46,44,176,119,193,246,186,101,212,244,15,23,115,51,148,58,128,188,127,135,189,196,213,240,197,162,21,40,231,91,114,166,95,31,73,212,79,201,77,241,83,210,109,2,189,203,190,115,185,8,119,103,34,246,254,72,126,109,170,151,252,110,255,254,101,236,56,23,163,158,178,237,74,42,11,171,55,8,148,126,29,121,192,155,102,91,170,232,103,62,180,159,7,79,52,103,160,74,31,102,95,192,54,122,154,201,27,148,194,215,194,172,219,170,57,186,235,59,184,159,29,66,70,79,184,230,81,217,25,6,115,76,42,128,141,250,172,207,245,100,73,238,115,117,26,42,51,221,90,210,217,73,209,129,113,179,113,200,166,140,201,145,123,132,13,201,93,74,36,20,0,169,105,210,204,52,9,143,70,131,173,140,186,91,24,223,254,121,178,170,158,189,61,139,61,28,143,231,68,48,107,249,247,94,224,46,91,93,8,152,214,111,100,6,203,6,82,191,185,163,4,102,217,56,12,139,134,73,9,27,191,120,41,64,114,24,68,249,73,15,247,2,59,
 37,204,63,40,44,47,20,90,45,10,171,174,191,125,191,179,235,207,205,61,158,27,3,66,23,203,209,92,45,24,159,186,117,130,233,171,233,110,33,2,32,6,209,85,150,153,154,56,241,181,71,126,246,17,253,226,61,115,68,182,86,223,252,92,39,80,99,126,33,238,98,60,3,63,104,240,117,194,164,68,45,190,6,107,80,184,78,146,135,214,13,34,169,111,201,204,187,29,137,111,232,75,151,211,65,123,77,27,69,162,128,135,82,119,66,40,201,123,117,99,125,233,113,58,226,51,172,137,159,8,117,241,251,136,151,228,80,92,155,71,125,42,76,82,196,9,188,11,168,162,191,124,249,18,89,89,171,107,118,34,125,199,195,22,144,252,77,135,3,207,24,95,13,244,67,113,246,178,59,122,225,122,194,245,63,56,65,137,209,178,182,92,135,79,82,133,74,161,234,241,43,203,2,44,28,31,80,10,181,252,55,39,142,146,79,240,152,118,180,19,123,89,248,226,87,199,63,218,3,66,99,17,17,74,136,196,218,127,8,56,57,78,46,74,208,156,234,72,162,125,26,65,238,237,45,23,127,126,83,65,65,140,195,214,142,129,209,23,174,67,22,250,204,72,174,230,133,213,53,68,157,
 46,224,154,204,27,35,96,154,225,52,118,14,222,31,191,64,209,46,80,211,147,42,84,7,49,109,186,51,47,197,24,226,235,72,89,154,70,29,8,48,87,192,217,203,88,220,176,7,6,196,46,135,156,227,184,92,61,93,133,177,170,55,208,135,212,216,45,234,96,173,192,110,101,214,224,239,191,218,253,113,59,171,115,19,214,44,131,96,251,251,124,236,17,13,178,152,210,252,15,137,149,209,149,68,124,71,145,153,64,97,207,233,23,129,230,65,41,3,107,208,188,206,234,81,37,85,37,48,86,125,63,88,18,62,4,128,58,251,229,204,133,131,125,147,226,123,243,254,72,92,143,6,218,201,62,3,80,229,45,178,127,78,184,128,227,39,35,61,255,22,27,137,219,180,14,174,155,167,75,198,130,139,197,34,186,124,2,118,32,89,161,228,16,117,198,202,163,22,126,55,7,212,149,196,106,183,193,252,49,233,175,54,201,233,83,32,106,214,237,94,147,54,86,195,233,183,78,154,116,235,160,47,75,104,161,250,215,141,49,226,157,74,145,134,57,75,31,122,239,63,131,64,166,22,144,63,126,201,204,247,7,227,219,100,245,235,41,121,111,124,123,51,182,214,88,188,93,
 168,246,68,160,165,203,77,200,108,122,236,225,70,202,218,17,229,252,71,66,177,204,88,29,179,130,17,183,224,214,187,191,201,199,237,18,215,72,237,132,63,42,24,82,22,163,199,108,185,144,7,39,126,61,106,251,194,152,230,213,170,38,12,2,190,103,131,163,161,116,112,126,207,221,94,238,207,54,33,211,194,178,200,226,44,24,64,38,178,171,136,60,199,124,15,187,134,221,255,130,188,137,164,62,143,255,140,230,65,101,193,13,144,160,22,96,179,237,73,126,0,122,27,177,59,181,197,212,160,34,50,213,121,17,139,20,205,137,96,135,136,93,169,114,47,156,22,80,146,130,195,238,60,202,20,88,122,3,5,99,141,5,121,110,92,151,219,171,60,77,226,93,159,72,233,90,107,215,213,246,201,181,250,139,137,191,103,199,25,212,66,15,181,172,172,25,179,155,125,128,92,157,64,139,96,35,231,185,228,145,104,193,194,118,31,129,46,140,99,177,134,0,105,226,183,249,217,203,140,7,55,125,118,48,43,127,246,121,68,102,170,221,254,132,48,107,201,220,47,69,144,93,155,108,194,243,201,44,126,68,81,238,155,214,202,145,77,218,149,81,251,7
 2,151,56,25,143,67,178,213,164,87,229,134,212,35,147,150,95,243,107,163,91,252,106,112,87,130,46,239,62,77,109,254,170,11,110,143,196,53,139,133,225,97,186,94,3,174,84,10,249,124,90,69,128,214,236,111,101,35,194,72,15,159,157,210,12,201,142,129,164,153,218,241,162,72,51,160,183,97,13,58,119,198,241,21,248,24,46,0,0,214,93,9,182,31,42,128,24,116,138,250,22,174,110,21,144,49,253,86,245,153,175,192,67,227,117,202,31,183,124,99,110,86,203,153,235,124,200,2,32,183,168,223,64,18,88,21,193,40,33,136,111,47,187,35,233,198,155,252,224,165,140,52,24,108,204,39,47,98,4,128,178,151,68,73,213,239,168,169,28,87,19,80,91,60,38,248,199,104,70,44,24,148,67,98,137,8,124,231,220,112,77,255,250,245,71,110,123,70,227,179,103,22,138,19,92,225,135,82,239,47,165,101,6,86,212,3,170,163,161,75,149,220,41,75,180,96,143,20,105,253,199,66,240,175,136,31,220,29,45,7,35,41,239,94,231,3,12,136,26,147,66,126,191,26,192,201,164,119,16,32,15,233,21,212,174,115,5,114,145,137,6,160,19,15,153,48,37,135,82,92,130
 ,25,61,2,19,21,240,36,175,42,144,226,236,167,115,207,75,180,251,211,242,188,201,171,139,12,127,146,20,49,219,158,172,12,172,12,138,60,238,173,123,253,173,183,233,230,118,97,81,13,227,2,186,140,24,34,207,25,20,68,150,1,85,125,237,34,3,169,30,9,217,131,201,26,174,204,255,231,127,92,209,132,194,181,241,19,157,48,13,125,214,41,224,19,196,241,8,45,170,77,196,230,36,223,165,4,206,197,144,169,195,29,202,220,31,166,209,51,128,252,135,23,131,149,235,230,16,70,137,206,39,199,234,220,93,93,197,40,147,238,149,13,74,100,199,8,158,161,123,193,101,166,216,82,10,12,145,130,77,248,46,129,84,43,62,152,185,185,221,96,212,91,67,50,79,126,125,254,9,254,5,78,74,244,97,48,254,106,216,123,128,138,30,60,27,28,191,28,221,122,114,247,94,122,226,8,42,86,31,105,35,207,168,243,10,240,30,67,25,84,194,223,219,18,164,134,233,255,103,151,200,99,244,59,199,157,145,119,238,35,68,7,64,108,110,58,78,40,241,205,7,124,40,134,193,219,80,156,173,2,28,5,136,73,182,122,208,154,166,209,107,10,167,69,174,80,26,67,111,21
 7,216,119,223,184,97,18,55,228,135,70,25,2,94,211,234,153,82,238,150,224,216,90,186,143,61,123,160,93,84,204,233,155,16,50,207,16,31,61,181,53,73,143,118,64,248,64,236,213,18,62,197,233,189,23,186,7,43,33,215,172,154,157,165,228,67,44,44,145,130,171,101,145,154,208,36,24,230,169,17,14,205,128,224,18,125,26,216,212,246,211,21,119,85,138,237,125,17,171,45,52,91,185,207,178,250,146,238,235,148,18,254,7,235,152,219,228,130,131,129,20,44,55,45,254,175,17,52,236,182,224,147,150,213,53,90,154,37,248,181,165,130,254,109,138,242,161,212,169,111,201,116,250,206,9,44,236,121,71,6,86,9,223,0,147,230,222,34,221,195,244,183,196,241,220,164,135,154,106,184,57,127,134,32,101,19,12,118,6,242,220,232,141,244,66,56,20,243,15,178,61,46,187,233,231,44,226,160,153,26,158,236,166,8,41,108,156,44,10,8,169,74,115,48,81,95,54,49,192,194,210,69,169,96,112,11,93,133,249,62,63,7,36,140,248,9,248,135,151,230,136,98,40,202,121,135,84,123,181,87,118,101,101,189,254,233,85,193,221,193,7,237,187,144,76,213,1
 13,61,97,64,20,28,236,135,127,11,70,180,25,13,4,229,101,51,203,68,69,252,111,241,227,29,154,126,85,153,233,191,134,123,19,105,216,162,250,88,90,126,119,33,93,141,179,137,178,181,26,22,216,2,114,39,156,58,227,6,80,15,170,70,244,179,129,37,79,235,219,229,59,199,145,13,69,4,175,39,63,254,16,118,160,139,78,37,108,85,107,229,50,77,129,237,80,240,168,224,128,145,152,237,89,118,30,105,56,244,176,33,147,227,123,145,41,235,89,164,60,138,44,250,13,210,74,74,145,184,205,222,158,150,140,88,145,222,30,14,234,213,229,218,192,21,40,159,125,100,38,173,22,194,253,226,171,6,125,133,33,4,60,129,108,17,142,224,61,27,167,218,49,4,242,71,243,85,28,225,206,99,240,124,171,182,39,17,91,197,152,29,190,213,189,17,144,34,103,99,147,80,228,198,37,15,53,162,216,157,216,217,204,213,41,41,132,112,184,93,105,149,30,130,227,218,245,57,152,148,108,129,77,164,235,108,25,197,223,150,170,24,240,161,70,195,178,89,55,8,65,5,129,50,12,226,181,253,208,60,142,250,28,27,1,89,150,61,208,60,43,73,180,113,179,37,147,178,
 39,142,143,47,137,60,106,168,152,153,193,91,236,67,89,239,91,167,107,214,44,251,244,143,158,22,81,164,24,125,186,166,138,17,143,134,145,173,6,79,249,248,43,243,79,135,29,15,183,3,211,213,95,71,254,25,148,135,139,191,125,135,151,140,60,33,132,137,148,189,210,108,170,127,147,126,253,1,31,179,37,105,145,49,59,247,18,102,105,91,195,97,102,236,232,164,69,167,250,252,173,42,209,118,164,163,7,90,63,83,96,232,178,51,21,81,205,29,141,230,243,13,124,191,231,127,89,25,120,28,70,15,119,11,128,33,145,248,174,25,75,181,176,2,60,48,41,18,204,247,189,68,54,144,133,168,250,126,28,85,125,84,167,226,113,53,161,165,211,243,99,8,173,99,195,238,128,156,83,74,54,38,40,55,112,111,29,43,66,158,151,142,238,131,189,78,36,212,237,198,109,162,236,117,182,32,226,116,123,122,141,98,234,199,180,1,216,199,136,6,136,16,58,216,82,120,92,3,181,207,60,119,197,120,28,233,8,69,8,124,12,31,149,63,12,163,135,177,116,125,61,162,20,221,60,240,42,254,80,5,246,68,146,89,146,106,53,199,224,237,77,127,26,211,9,229,198,19
 4,184,31,21,59,161,213,240,111,119,17,217,134,240,9,179,102,185,110,65,95,169,76,146,155,60,23,5,213,223,232,164,172,64,18,221,136,0,176,158,118,129,116,75,129,109,46,16,98,140,91,211,192,144,57,213,79,45,123,110,218,85,221,6,255,210,113,32,162,124,54,1,119,109,182,194,219,92,180,71,73,119,153,65,180,158,36,86,185,60,17,245,187,201,19,182,18,218,180,1,2,62,7,162,211,19,243,103,191,178,91,212,22,20,103,233,36,57,196,240,248,135,170,25,49,185,63,3,137,94,245,234,110,37,198,191,66,92,2,155,98,82,127,96,164,40,171,74,78,242,179,104,157,71,6,173,249,9,169,186,215,65,22,51,5,190,239,82,65,201,163,227,242,188,230,13,165,42,73,106,246,73,45,134,174,243,152,243,57,238,103,98,72,243,35,12,156,141,109,170,80,95,254,112,141,132,174,144,7,0,126,237,121,171,203,225,234,180,248,193,97,75,152,241,215,145,151,119,243,183,251,188,199,146,58,229,189,22,69,88,186,127,141,202,29,26,104,9,65,255,141,11,254,76,84,232,220,100,186,252,109,67,42,10,167,137,174,81,226,56,71,112,47,156,168,188,80,24,33
 ,207,170,93,29,79,248,26,97,13,100,64,232,129,238,176,182,169,238,159,107,64,107,248,114,52,119,101,124,236,122,229,137,133,22,64,62,117,96,155,155,246,218,131,28,28,12,199,177,246,85,90,229,114,40,212,127,215,144,150,44,109,217,248,190,242,38,107,248,135,4,21,239,106,223,95,36,137,115,174,132,133,130,177,209,107,105,214,42,199,222,86,4,79,210,59,21,249,110,218,47,6,34,174,241,93,194,84,75,250,16,194,78,246,16,81,130,138,219,248,125,87,247,131,27,164,149,218,74,30,2,18,73,205,30,10,27,95,111,186,237,161,56,88,247,12,161,248,9,126,169,178,11,87,41,1,121,127,150,20,54,78,112,176,144,237,162,195,8,210,147,16,1,17,169,60,119,40,201,228,249,41,42,210,106,105,137,80,218,229,7,114,116,211,147,14,251,6,116,45,122,33,147,92,12,187,163,135,88,69,113,113,80,17,124,79,246,69,99,86,179,212,219,230,163,177,4,127,134,82,103,200,217,143,80,25,56,97,128,104,22,3,242,74,86,220,1,35,2,212,120,126,211,93,101,144,247,99,76,146,38,190,52,98,251,205,81,15,30,251,253,190,63,91,212,195,243,5,120,237
 ,85,45,115,189,88,77,164,92,14,173,221,104,27,158,242,149,253,46,124,37,1,201,0,214,143,125,33,99,77,14,40,99,108,9,19,138,144,133,213,70,42,69,122,237,208,59,110,9,187,225,142,104,168,148,34,38,87,29,23,204,210,182,182,49,116,69,150,21,48,133,47,92,168,147,94,225,148,224,70,223,118,206,108,84,127,75,82,22,171,144,115,76,60,187,175,115,36,144,205,90,181,85,232,34,77,240,18,185,82,215,10,75,5,216,97,78,9,88,238,139,153,130,149,185,236,56,158,243,242,20,252,104,232,48,131,130,214,219,11,129,135,159,216,0,56,74,107,152,108,216,144,193,161,129,90,116,15,122,189,61,111,87,215,99,127,243,0,20,240,194,111,37,131,156,115,225,140,31,161,169,132,62,164,150,211,192,63,22,223,1,162,45,43,106,48,75,100,68,129,139,74,107,70,42,216,140,22,106,75,55,134,236,124,109,227,239,51,223,180,129,154,99,205,190,66,224,123,183,10,242,254,152,173,124,146,226,132,162,240,91,161,33,126,139,182,176,2,24,64,243,167,161,2,81,37,59,143,57,253,86,3,219,185,71,20,255,10,190,11,193,147,233,49,50,16,131,161,194
 ,62,182,117,124,208,245,91,25,77,114,80,75,245,9,168,135,137,11,167,67,222,255,35,37,194,92,242,138,127,49,253,248,89,167,219,222,237,48,72,126,114,211,188,213,170,169,250,244,209,28,150,45,234,56,23,63,35,254,11,69,184,168,64,17,174,51,54,52,53,6,2,235,2,64,90,82,188,118,173,53,141,144,83,215,30,134,1,187,217,185,13,7,242,213,87,93,83,220,10,142,145,251,103,38,50,122,209,190,149,211,197,101,91,88,49,248,60,113,45,18,51,40,125,197,117,14,85,57,16,152,111,120,206,231,172,176,51,35,162,171,131,88,40,60,68,0,187,39,244,132,94,76,145,217,202,184,56,85,128,174,43,196,122,60,192,185,70,138,166,175,79,162,67,8,9,15,142,50,210,235,148,10,122,22,120,167,111,76,64,16,4,67,253,200,235,192,161,67,68,47,208,2,238,9,202,58,68,212,101,40,5,132,36,119,68,17,180,208,207,134,27,153,123,182,21,141,229,160,46,198,222,191,137,45,62,118,73,71,126,27,195,11,47,202,39,98,125,6,21,209,143,223,35,113,179,176,241,107,55,132,93,240,196,224,121,27,163,11,183,177,229,73,162,176,116,155,36,88,105,186,214,
 3,26,97,247,45,135,139,66,120,43,160,8,136,94,97,250,144,78,14,16,143,42,249,58,100,232,35,171,184,69,232,121,122,128,17,207,97,48,225,21,147,128,13,163,254,197,149,59,164,74,113,36,73,249,212,159,97,181,94,235,131,208,154,132,232,30,108,70,41,61,82,181,110,94,72,92,235,185,248,178,213,17,150,97,223,129,104,173,60,130,184,140,109,116,127,210,216,229,157,214,89,152,218,248,71,53,85,78,121,23,221,126,61,197,115,152,60,232,41,96,9,147,0,72,8,22,187,12,62,106,200,242,189,86,206,234,130,2,181,80,40,240,247,169,114,10,218,34,215,120,60,115,73,22,73,220,157,130,137,90,34,225,135,135,215,20,39,141,244,62,86,27,178,55,40,111,133,71,217,82,224,241,20,162,62,24,223,20,170,16,98,104,49,150,78,245,91,28,174,92,70,117,152,251,30,67,94,207,90,62,111,124,151,137,104,145,59,230,131,36,149,88,219,195,130,62,158,205,28,94,80,19,3,172,118,204,81,138,137,214,179,45,8,249,55,160,167,129,46,9,170,59,150,21,214,19,236,246,246,116,218,115,213,14,240,141,216,59,99,230,83,214,197,193,70,164,123,227,25
 ,78,53,80,238,27,87,73,86,176,108,6,184,236,82,49,105,202,143,158,94,78,239,132,3,199,146,220,26,43,154,236,209,184,126,230,54,192,62,63,189,193,20,184,81,239,215,227,121,198,74,115,149,122,228,168,208,65,136,180,151,127,73,220,5,39,155,51,146,143,100,29,78,122,147,121,201,55,208,59,71,144,138,216,177,103,204,48,33,176,53,63,43,217,146,172,194,84,156,136,245,130,207,144,49,88,201,210,204,156,238,3,168,208,79,51,106,249,224,57,194,183,84,227,137,74,171,140,29,147,166,79,141,144,75,95,2,90,50,245,219,58,146,169,42,178,36,191,52,88,18,133,178,169,227,243,71,143,85,28,108,166,130,47,190,53,5,219,253,243,165,88,253,65,161,24,153,144,22,65,254,73,47,81,220,38,196,12,116,211,135,61,156,128,42,248,183,73,117,4,116,207,120,211,79,128,125,97,191,175,222,33,164,143,124,60,77,109,189,144,73,175,145,222,29,172,141,193,196,21,47,181,216,232,245,5,103,208,19,46,218,121,162,52,49,149,183,86,15,134,212,211,199,36,220,177,129,35,49,56,9,20,251,186,160,239,185,52,95,133,81,70,143,1,211,164,90,
 243,109,20,145,74,211,43,26,51,101,132,132,228,20,160,166,183,137,138,216,143,250,137,149,179,200,72,44,50,91,155,164,79,139,62,196,215,128,225,58,231,172,222,254,248,237,100,23,239,110,242,120,117,186,244,112,194,143,176,17,16,159,137,244,240,50,167,226,68,69,109,178,197,223,55,87,208,1,247,73,167,28,147,194,193,186,100,201,247,115,241,247,192,233,134,242,58,158,131,248,50,40,128,76,145,25,214,29,66,130,9,106,218,169,165,150,200,135,146,189,112,25,93,240,248,44,95,36,140,250,57,193,245,252,183,46,192,71,236,136,126,13,51,32,56,225,14,81,57,251,117,84,133,227,171,47,122,248,238,212,57,84,177,218,48,207,107,184,204,178,68,93,67,107,96,232,242,135,176,184,238,141,38,56,61,3,3,237,216,185,86,30,6,72,106,156,180,82,141,52,40,53,71,104,20,71,151,177,15,30,28,160,41,180,68,106,225,11,219,68,242,18,218,148,78,192,55,2,113,125,244,99,22,177,84,173,249,3,186,245,206,201,172,122,232,98,174,78,85,97,72,71,14,3,109,168,17,53,96,71,97,217,173,218,246,154,46,190,225,228,35,229,24,119,6,13
 3,247,201,5,251,15,47,105,97,207,70,5,4,192,129,34,128,251,162,202,158,43,121,90,208,136,57,152,241,193,210,217,173,0,30,168,52,168,253,237,223,45,238,58,88,125,1,101,2,72,207,124,226,182,194,151,212,180,150,160,250,1,13,32,186,102,124,224,23,146,198,238,101,251,247,98,195,18,154,69,244,165,16,151,239,171,221,144,223,173,90,111,192,164,231,247,120,125,57,96,237,201,163,39,184,102,162,79,159,191,9,249,127,51,223,97,160,11,69,74,31,47,12,255,250,218,34,37,20,142,67,9,31,139,211,33,48,33,123,222,38,36,168,94,81,2,170,181,182,37,99,91,81,53,27,163,6,111,136,243,157,236,187,150,198,87,114,209,69,73,54,153,77,210,26,165,28,26,108,119,77,192,141,53,236,166,9,143,2,100,174,72,238,60,80,72,209,198,174,218,173,73,197,164,90,154,89,71,190,141,201,185,210,244,82,247,152,114,97,102,218,94,37,108,21,127,34,2,203,0,89,241,3,245,176,222,92,168,109,28,36,115,190,154,116,198,154,116,211,18,29,97,9,210,14,175,159,221,122,65,244,106,19,75,94,91,253,253,130,95,61,72,197,49,145,132,87,184,180,117
 ,253,103,185,217,78,58,70,223,92,233,11,100,4,78,5,231,173,41,64,177,170,7,179,122,95,181,46,88,171,20,245,37,145,95,225,11,218,51,175,68,1,178,187,11,202,118,55,134,80,27,67,166,100,182,29,117,233,74,18,221,174,146,90,186,241,115,0,165,216,80,174,139,198,142,13,225,62,126,19,80,11,4,174,50,4,231,199,156,193,209,233,38,46,19,175,235,141,50,211,165,127,3,67,70,17,14,90,197,113,36,103,196,92,53,144,231,179,203,66,44,133,190,214,26,89,161,137,74,97,93,219,40,219,119,207,189,236,35,135,171,217,97,48,246,194,116,150,37,217,160,62,206,41,28,237,218,234,96,209,108,119,207,150,3,98,29,45,111,197,5,61,141,29,23,248,171,21,101,237,81,140,72,198,227,71,70,58,103,175,152,11,125,11,73,2,208,23,94,149,232,128,205,111,29,22,157,6,97,209,155,29,82,79,47,195,249,58,27,32,35,106,153,68,229,17,130,105,142,215,230,243,249,65,109,161,83,172,10,163,198,56,236,100,243,28,118,102,249,148,57,148,65,207,57,170,199,249,26,25,140,187,107,85,142,214,16,213,126,127,206,105,169,140,69,95,171,116,237,88,16
 8,192,227,31,173,140,201,94,251,188,89,180,4,245,167,61,161,87,248,215,210,193,194,59,70,164,14,153,233,84,200,164,33,215,45,196,50,101,103,131,124,70,21,48,130,75,215,113,128,16,248,137,3,94,111,85,61,63,232,1,124,103,214,169,120,169,37,35,37,247,7,237,49,223,191,178,211,29,155,117,37,100,81,97,110,176,225,39,228,81,229,152,58,196,122,233,14,0,181,71,167,117,2,223,205,250,213,35,188,178,62,205,40,184,91,83,99,115,243,1,151,83,24,119,127,138,7,253,127,177,77,63,209,215,15,143,214,164,83,130,29,160,38,136,68,157,246,213,144,13,244,73,162,218,10,54,80,234,14,204,125,12,97,147,114,125,161,197,60,216,140,91,174,66,84,118,78,225,87,83,82,177,135,89,50,58,189,20,21,185,200,227,193,157,54,32,46,36,132,89,154,144,37,90,124,164,7,108,106,155,53,92,90,78,230,127,252,98,244,205,93,114,187,225,168,232,22,114,80,206,118,233,28,208,122,8,91,165,153,172,100,141,170,49,6,174,164,254,93,56,228,141,129,178,211,55,214,238,24,107,104,11,39,67,3,144,62,54,211,73,6,210,120,88,76,5,91,229,17,66,91
 ,35,30,240,72,23,120,188,148,71,144,185,29,195,246,249,190,196,119,81,172,186,40,36,241,56,235,217,67,62,223,78,208,209,88,125,173,214,59,102,211,253,142,144,187,19,199,241,221,194,233,244,67,95,236,141,184,64,59,178,36,210,33,166,218,179,25,172,150,231,59,142,34,129,160,37,154,129,16,121,239,69,63,8,136,28,245,240,120,114,149,179,40,140,249,214,19,249,189,122,44,172,177,187,184,223,206,49,94,218,240,7,86,19,21,99,163,91,128,184,45,86,48,200,65,163,82,235,122,72,73,98,140,60,135,58,43,119,165,94,2,26,7,130,118,0,87,23,127,238,124,238,51,49,177,56,49,184,115,89,203,210,129,4,132,81,189,112,164,236,113,11,173,132,139,226,244,111,159,139,236,129,233,135,18,195,207,166,146,58,43,200,124,0,40,216,88,186,97,66,37,208,84,111,156,233,162,4,156,111,185,117,26,31,150,102,34,213,192,112,171,7,223,170,108,171,192,79,65,250,25,230,125,85,43,210,181,24,209,235,202,117,4,41,50,89,178,166,29,165,227,182,112,176,40,220,164,56,189,251,219,63,232,10,173,1,70,155,176,243,39,176,143,194,232,67,5
 2,76,86,54,47,55,116,34,134,102,159,239,86,77,139,255,79,9,69,20,251,20,13,168,67,53,226,199,220,200,8,174,244,90,215,99,187,89,26,166,253,30,66,190,179,27,172,249,237,96,15,120,138,141,54,152,144,169,219,122,57,24,199,28,59,154,107,223,249,18,0,201,38,115,33,91,126,15,147,5,145,221,148,48,139,19,42,88,247,190,42,29,244,148,159,234,211,238,206,38,222,104,158,23,221,215,106,201,43,64,70,132,200,205,19,254,188,69,54,13,68,29,122,134,52,125,145,71,56,165,164,17,252,47,207,165,72,213,34,114,96,137,106,156,64,133,211,217,64,74,45,24,198,8,161,156,175,98,22,102,161,68,72,196,67,129,144,236,169,58,13,233,4,214,181,233,191,108,154,148,239,37,149,12,45,96,17,254,179,252,116,191,102,116,17,4,8,239,129,44,177,206,5,254,215,114,91,125,118,57,212,57,243,17,3,18,240,173,96,226,60,111,139,237,236,134,246,180,57,119,198,77,55,201,127,202,84,89,20,139,238,247,232,55,206,14,219,196,97,214,113,54,216,66,73,115,20,3,112,191,253,43,169,251,112,53,160,181,68,248,64,101,130,207,141,141,201,231,240
 ,252,13,252,55,166,116,30,218,193,7,31,148,184,66,114,139,237,101,153,240,157,16,14,80,235,42,86,149,52,86,185,217,237,251,127,115,26,4,106,108,192,105,83,197,85,150,97,121,84,150,100,91,208,93,253,43,216,124,77,172,159,25,60,203,189,235,48,157,148,121,49,39,142,236,247,52,153,22,26,139,206,191,75,103,233,19,6,251,215,244,139,218,143,79,202,111,103,209,165,156,33,19,106,214,74,239,39,219,215,166,106,84,181,233,192,99,8,45,235,177,189,154,203,133,127,177,117,130,10,198,253,142,131,42,127,89,84,157,79,26,137,99,20,227,148,10,205,10,236,226,89,36,240,69,184,112,76,124,9,77,164,22,144,80,92,137,148,94,38,214,232,194,37,129,52,124,90,61,63,245,158,123,244,95,61,20,71,252,47,98,125,74,130,238,207,166,11,203,27,236,84,50,14,233,95,162,227,15,121,234,118,18,191,47,170,44,62,66,165,193,93,50,207,173,105,229,183,67,132,228,56,225,241,33,123,153,9,14,135,100,46,60,144,197,203,12,212,58,60,206,224,238,25,191,113,160,71,185,187,195,86,5,77,91,143,12,50,129,177,216,155,200,100,213,230,144
 ,216,72,207,247,127,61,126,95,93,152,23,246,174,10,95,68,56,150,130,238,62,14,136,3,184,114,30,141,112,202,39,71,241,209,106,111,113,80,158,244,225,229,77,2,228,219,123,103,225,120,179,155,156,228,173,123,249,47,180,11,85,245,198,13,237,219,186,57,14,89,215,143,141,142,45,130,132,132,125,120,166,73,194,203,254,23,104,53,19,221,132,234,45,186,35,24,241,34,81,78,168,122,214,146,144,232,167,76,41,41,9,62,68,108,232,203,176,78,93,10,74,43,108,152,75,192,7,79,191,105,52,36,102,82,239,129,95,253,205,219,95,85,1,108,186,237,203,221,235,107,35,169,246,254,117,15,87,170,84,72,219,9,176,221,68,201,58,209,92,178,109,134,40,219,173,203,219,60,191,46,116,63,173,228,235,126,187,209,42,138,150,239,100,121,51,38,87,93,0,168,66,18,29,10,15,188,36,247,118,99,236,31,212,27,245,115,62,111,208,38,113,160,250,242,107,121,195,54,153,161,126,119,247,81,60,204,251,15,214,194,81,74,169,6,0,162,72,21,79,100,178,86,223,254,131,131,175,247,160,28,3,35,153,48,40,129,164,206,62,168,13,212,111,193,71,89,28
 ,67,193,119,175,40,8,126,231,201,113,38,141,90,215,109,157,254,87,248,132,159,2,249,232,68,110,131,125,248,3,230,255,226,193,195,237,199,136,193,113,222,20,117,151,100,42,244,127,192,195,88,29,223,90,3,229,55,204,24,249,138,13,218,101,73,108,130,124,253,96,173,173,237,11,67,247,199,85,211,114,210,51,255,163,252,228,196,102,178,123,69,106,211,6,83,248,144,98,155,4,57,44,25,103,2,209,251,133,1,197,27,102,32,119,158,152,3,173,68,14,51,100,255,204,196,13,144,10,29,180,67,133,50,184,110,112,92,204,109,123,223,139,234,229,96,249,117,230,102,158,88,229,204,15,195,160,170,181,91,66,56,228,228,69,42,244,70,247,153,20,120,170,66,130,237,243,227,230,115,142,88,17,169,170,208,213,235,132,170,55,48,121,177,112,240,137,174,75,120,40,151,26,232,174,141,174,32,155,177,7,171,239,76,70,186,136,110,76,190,171,200,10,85,197,193,211,4,137,104,64,156,221,22,234,80,34,226,65,191,115,172,126,56,248,228,168,73,224,0,5,244,15,202,163,46,178,217,163,88,169,164,15,176,173,227,39,25,19,148,13,130,29,170
 ,203,248,236,164,19,215,225,245,13,197,164,203,169,2,12,142,95,131,219,146,229,91,163,121,203,208,59,60,40,85,17,228,200,191,244,53,67,193,118,204,188,34,105,154,120,252,173,83,184,203,183,231,209,255,32,14,207,212,95,147,65,154,162,64,75,82,86,195,131,144,135,112,213,181,196,48,118,232,128,192,98,80,238,102,221,228,114,60,69,164,26,34,219,48,167,181,134,107,234,123,242,171,237,239,80,146,57,12,50,214,41,171,208,113,148,113,169,122,198,139,21,36,77,136,136,202,121,91,109,203,60,147,51,235,50,18,128,10,177,92,42,9,2,22,21,133,178,160,141,112,164,244,150,227,26,54,181,113,92,59,162,167,30,246,164,112,90,140,186,48,20,169,104,214,203,164,66,206,238,34,171,93,213,217,183,213,109,228,58,97,168,163,249,56,229,246,115,116,44,102,55,146,221,201,191,65,205,115,30,200,164,209,253,133,192,74,202,6,36,114,112,73,77,80,95,47,22,40,41,207,46,233,98,60,203,245,150,239,255,18,196,135,94,65,90,212,19,23,0,73,219,2,130,38,41,87,85,205,121,58,146,93,74,0,190,88,72,158,160,130,116,71,123,245,70
 ,41,144,19,23,147,102,153,247,71,133,23,176,201,33,54,250,33,99,196,74,166,205,134,231,34,198,9,63,116,187,220,67,82,44,247,222,11,114,91,239,50,170,70,185,170,199,229,135,123,107,59,206,148,178,34,35,4,144,186,143,227,233,180,30,97,252,227,219,51,85,61,16,245,67,132,17,107,184,33,9,151,216,191,137,229,176,193,137,111,7,176,23,171,166,217,135,247,70,163,184,246,172,94,205,89,144,30,94,50,11,58,6,142,8,106,233,184,39,87,187,79,98,211,197,66,215,177,65,94,138,99,187,126,83,112,194,32,25,119,39,111,62,152,112,162,120,36,177,126,87,4,12,28,248,133,99,52,225,147,200,183,99,84,68,2,41,7,16,12,113,54,26,152,51,45,80,218,173,35,131,215,199,27,175,251,148,253,74,13,247,11,54,78,63,107,45,31,192,192,242,41,230,187,173,239,245,127,176,134,12,188,230,245,172,81,18,144,167,28,76,136,22,198,86,207,177,200,35,153,68,207,73,59,46,18,90,198,71,85,198,62,95,231,177,110,28,228,147,91,219,217,4,224,11,234,66,253,139,7,43,67,225,48,179,141,143,87,55,5,218,132,133,71,74,10,109,48,32,57,23,225,110
 ,198,218,120,211,245,158,7,134,16,122,247,17,99,69,17,36,144,33,38,19,92,100,172,221,104,134,238,28,211,32,119,68,82,216,5,162,171,183,241,209,129,107,156,180,195,110,206,23,230,184,247,42,65,96,189,148,30,119,29,87,168,128,111,70,83,191,200,152,195,202,173,188,55,14,35,240,56,31,208,70,176,39,130,68,232,80,242,25,78,134,66,41,181,253,64,12,121,65,170,99,13,158,8,162,45,90,216,41,241,58,148,12,64,130,209,114,129,251,7,226,57,91,166,50,21,193,231,124,110,194,224,157,108,39,212,6,94,108,229,48,185,27,185,122,50,191,213,4,29,173,99,193,57,215,12,54,223,178,92,62,172,228,33,28,91,145,134,99,215,131,36,126,18,191,97,64,33,84,133,169,220,4,233,156,5,236,229,216,142,222,133,124,113,117,15,18,47,148,43,17,158,92,85,34,184,196,111,160,162,193,110,211,243,113,63,77,212,65,114,1,111,17,85,16,44,195,79,82,94,178,42,121,35,0,29,9,39,175,223,31,215,115,237,154,126,133,190,32,159,150,239,113,19,239,91,125,102,138,58,236,179,68,16,226,92,99,69,55,73,169,27,89,197,105,131,92,243,42,160,169,5
 7,86,210,237,53,115,80,203,126,48,156,56,96,85,160,146,177,28,77,94,46,210,28,94,174,196,54,226,235,78,85,26,46,179,79,180,60,16,236,126,1,95,15,90,163,105,233,128,76,147,79,163,157,96,245,107,246,254,128,5,131,76,63,113,71,73,231,167,197,188,224,1,31,214,135,182,215,226,238,104,198,163,95,220,78,165,110,27,96,228,38,220,33,212,230,27,219,25,203,186,96,140,142,204,139,127,49,177,175,240,162,202,245,42,12,65,254,254,217,7,65,52,253,121,98,32,218,118,222,1,191,234,109,195,137,6,181,53,16,49,57,95,35,39,152,251,199,236,207,185,32,26,100,202,79,201,62,7,182,160,139,203,76,9,102,169,126,236,20,132,86,72,177,117,5,198,196,4,19,2,14,180,202,225,181,54,1,177,157,69,42,102,83,251,10,166,98,217,244,169,159,80,217,33,203,64,224,185,67,63,116,198,219,203,208,82,203,8,67,172,98,164,199,213,47,83,16,38,80,161,106,90,107,103,183,62,28,71,236,83,168,30,150,107,23,1,116,195,192,98,150,18,212,247,227,9,186,244,67,144,46,190,122,156,65,159,164,130,27,16,222,252,9,164,97,34,254,93,108,118,47,15
 9,196,26,50,155,56,20,164,21,129,136,113,52,109,17,20,207,207,188,178,250,170,1,220,155,174,146,93,242,173,14,213,234,47,97,226,68,235,10,82,33,72,18,143,4,143,248,255,82,223,165,68,136,255,111,224,185,101,178,255,199,59,225,196,219,2,164,216,164,225,141,178,155,227,126,97,225,255,80,217,131,12,18,101,176,73,20,65,122,74,231,12,70,143,34,248,84,233,122,18,247,126,241,145,222,43,126,240,148,68,118,38,221,21,138,58,152,72,214,194,243,74,198,240,103,199,59,50,6,110,129,74,0,244,228,88,119,78,141,187,119,60,170,11,239,184,202,199,21,162,151,56,33,111,119,198,75,75,137,242,228,220,26,251,33,12,190,38,242,33,133,182,30,184,91,174,153,136,234,222,234,32,234,143,235,245,0,207,167,18,57,156,107,163,48,157,127,123,164,189,242,135,133,214,126,162,79,16,104,64,54,124,42,30,240,238,243,36,165,114,71,5,244,159,159,9,58,111,172,18,125,100,33,139,57,12,223,52,77,32,172,102,252,13,216,203,125,223,99,155,122,3,199,226,41,243,18,194,124,212,130,178,99,153,10,104,254,151,154,14,128,92,181,142,3
 3,204,97,36,200,20,114,87,243,193,162,43,125,185,0,23,111,10,144,201,158,216,62,238,149,139,174,16,42,103,199,97,153,41,227,172,3,198,220,52,192,82,2,103,239,13,106,219,224,175,36,16,37,130,96,197,40,196,111,111,88,83,3,47,193,145,203,95,118,69,2,12,249,161,189,50,73,38,214,209,255,40,104,126,250,80,142,154,232,43,64,176,126,218,244,99,231,97,225,49,249,49,41,212,54,180,186,205,230,50,108,49,200,33,19,186,233,127,97,34,119,148,225,210,237,188,65,242,51,84,85,36,13,43,231,163,157,145,227,84,63,97,35,105,240,3,52,71,6,42,178,167,19,190,33,95,136,33,229,31,251,253,173,50,39,119,7,172,201,128,105,148,107,92,83,3,95,16,97,177,57,209,241,232,47,130,32,105,13,62,147,203,197,175,233,190,76,54,231,229,179,68,124,60,45,24,159,97,92,212,72,92,142,115,228,105,165,102,130,51,224,223,177,219,78,149,31,33,188,195,215,46,77,228,75,97,112,63,93,20,150,158,190,191,70,141,220,23,128,202,50,175,27,174,166,223,56,148,179,117,228,111,223,178,146,157,220,31,216,218,108,4,234,38,67,179,177,249,96,1
 0,6,214,11,172,244,249,163,233,61,252,10,179,243,16,98,27,102,11,34,50,194,224,218,189,41,117,100,125,119,78,228,125,209,157,217,150,189,170,96,243,55,127,215,201,130,111,242,136,109,73,149,92,150,146,10,19,133,230,44,167,66,238,187,80,40,86,91,69,119,119,13,145,143,246,204,242,55,217,103,217,56,79,42,235,222,124,181,158,227,5,16,170,3,145,145,22,76,81,224,59,54,72,139,81,178,92,115,56,102,246,58,18,206,112,214,237,222,155,151,126,4,140,22,211,96,22,159,151,166,241,252,138,36,148,98,21,188,211,151,18,95,58,145,46,6,50,124,25,186,88,75,229,119,189,121,40,50,96,186,141,101,64,72,32,52,178,232,135,56,254,185,242,142,226,179,144,68,23,232,204,156,17,163,75,201,78,33,240,244,159,250,0,94,232,66,84,87,171,27,140,164,67,180,111,37,234,226,214,195,72,220,250,196,8,117,247,151,84,221,176,62,139,158,208,169,78,181,188,137,143,148,131,254,139,3,6,162,14,91,130,2,189,36,66,38,23,192,146,34,159,104,158,173,74,243,48,8,51,208,164,190,73,127,234,17,234,132,37,229,141,202,97,156,254,239,236
 ,36,242,145,42,138,207,148,105,115,245,151,79,185,217,218,242,93,97,221,120,236,182,48,45,7,127,196,245,5,197,157,65,183,48,152,205,87,207,223,54,255,157,55,45,101,208,163,110,26,46,238,8,166,80,119,183,95,134,252,142,216,54,67,97,124,135,145,245,197,235,79,228,106,204,58,181,48,89,216,203,2,22,243,54,176,109,112,74,192,32,52,210,86,49,105,91,151,205,200,126,25,27,34,99,150,35,157,87,89,187,26,141,70,118,107,110,237,97,92,71,118,95,66,35,235,101,2,92,171,112,157,70,52,222,65,87,66,218,6,93,65,108,140,170,233,151,73,112,153,43,238,89,127,79,202,250,141,34,22,144,144,137,7,247,135,64,215,214,23,189,12,164,238,168,197,35,191,6,197,252,226,46,197,10,161,44,199,62,209,244,106,178,227,84,55,102,233,63,164,62,158,236,74,69,80,71,62,198,95,246,147,232,138,32,13,9,119,24,235,229,97,148,190,194,59,49,165,96,178,13,125,63,209,50,130,40,120,162,124,122,146,138,168,96,123,212,4,138,47,159,5,182,250,125,119,91,72,145,2,135,67,192,20,143,23,130,41,171,80,230,167,89,112,13,177,178,234,76,14
 0,208,89,25,191,149,118,43,215,99,41,218,63,91,44,149,98,198,86,209,128,52,86,17,234,25,81,163,69,36,225,205,2,183,37,80,202,243,215,45,102,153,30,64,132,168,137,191,2,180,144,32,52,75,171,252,247,180,73,45,88,246,110,237,175,117,185,161,193,186,157,195,129,165,189,112,69,231,192,117,14,40,228,108,161,251,110,9,101,175,11,151,71,213,220,103,192,30,3,58,40,145,132,106,235,72,64,205,0,33,117,68,134,103,38,34,206,23,169,103,240,60,36,86,115,246,145,202,100,218,218,166,43,226,226,167,145,245,85,252,125,223,54,146,206,240,223,82,30,187,198,109,117,60,143,251,52,26,233,195,48,124,164,172,255,183,86,249,249,88,219,70,181,60,100,19,209,65,16,242,225,19,247,221,107,148,70,4,228,203,90,232,247,79,254,200,12,201,10,198,201,207,228,167,172,213,171,61,111,89,89,96,158,74,191,225,149,36,13,76,83,203,152,126,58,43,188,8,142,64,55,141,102,33,245,47,120,6,228,220,196,203,235,169,66,130,22,210,69,39,190,19,61,36,51,143,98,200,56,153,10,150,212,78,173,124,126,79,158,61,162,121,230,232,10,46,79
 ,237,177,45,166,222,116,162,157,70,56,163,157,45,125,69,2,115,218,43,103,24,232,137,69,205,67,112,23,152,187,21,218,86,195,104,14,68,162,47,118,144,196,229,156,43,144,229,132,216,169,23,150,61,243,182,214,205,22,3,230,188,253,129,232,55,123,82,69,86,219,102,192,44,195,159,214,85,109,208,140,63,185,39,64,62,104,176,71,218,144,92,22,243,129,56,174,180,33,228,234,92,224,16,246,4,37,15,192,131,242,238,99,94,253,122,9,88,235,230,156,122,124,138,26,43,226,95,70,246,247,141,77,244,180,150,96,48,247,0,230,174,200,45,213,215,217,108,54,77,81,208,233,252,81,94,157,226,165,173,245,30,52,233,40,195,246,155,186,6,23,212,138,188,117,124,168,119,253,151,102,141,7,106,60,48,234,146,150,58,0,28,171,154,125,194,99,166,156,167,242,220,208,255,137,132,158,163,118,48,220,7,109,203,86,133,14,148,228,122,85,97,107,99,43,11,173,116,177,60,140,20,40,126,83,34,90,236,168,222,41,128,216,205,97,72,122,112,202,140,43,16,130,190,50,211,52,122,153,111,213,132,72,135,79,173,255,255,179,170,229,25,68,214,17
 9,181,136,161,209,128,71,71,207,33,59,141,9,209,233,35,160,2,186,59,217,45,72,110,252,3,17,14,219,144,224,144,163,159,146,88,187,111,1,104,172,84,245,3,98,116,179,157,120,58,118,171,240,133,148,208,52,182,137,103,61,180,94,149,168,246,194,63,61,155,6,133,25,230,51,188,246,194,24,96,160,183,25,69,252,36,196,198,158,83,165,111,71,83,236,26,9,7,51,73,94,129,63,17,79,136,187,158,154,102,238,48,249,161,20,219,77,112,208,14,70,237,221,194,175,220,254,64,209,130,178,35,108,82,91,17,61,205,175,151,23,161,21,250,138,52,10,28,210,126,212,89,173,123,199,65,50,23,59,15,116,44,184,137,147,30,222,122,234,227,180,89,41,109,190,29,206,114,210,129,88,173,193,35,23,80,55,230,190,209,233,131,195,150,174,202,226,48,73,113,237,3,125,28,136,24,240,50,225,84,21,134,81,207,61,143,253,223,232,186,201,178,5,184,152,244,40,192,6,14,153,16,254,92,218,67,31,211,76,245,56,129,112,192,45,105,219,255,133,50,122,14,49,139,125,227,232,165,158,224,74,214,50,252,97,20,241,180,252,167,232,111,227,215,54,120,78,
 216,220,86,225,52,180,221,175,107,56,45,246,77,87,182,103,121,88,33,134,195,19,143,175,106,216,77,12,78,154,232,154,152,146,111,130,200,5,51,169,166,14,33,180,70,236,184,8,187,234,134,71,232,157,185,75,180,239,60,41,235,141,112,226,248,209,134,167,34,241,210,62,66,35,130,120,61,229,230,42,91,133,11,87,120,30,14,51,169,10,101,144,104,241,244,254,246,155,98,49,161,167,143,199,135,29,255,70,40,180,199,212,209,233,113,221,177,203,205,255,4,230,20,243,99,106,251,234,71,101,65,208,5,51,88,118,62,206,43,213,144,46,42,171,25,125,171,60,75,9,211,181,81,182,78,54,125,198,38,226,149,149,207,51,238,145,245,220,227,187,3,93,14,223,189,144,92,101,141,183,62,134,44,203,177,82,16,188,31,116,141,133,55,86,241,49,113,211,26,208,41,137,241,75,237,128,140,24,249,226,133,229,224,122,36,176,202,140,131,119,175,159,255,80,104,29,253,223,86,4,20,106,185,139,49,156,72,6,93,188,132,6,39,163,218,53,209,19,179,141,7,176,38,213,193,14,92,173,96,221,118,106,151,139,1,222,169,62,191,152,160,16,122,64,54,1
 83,234,195,147,125,127,28,27,86,136,75,116,178,149,205,196,53,230,190,68,1,116,102,163,85,92,88,183,226,13,119,251,206,85,32,136,126,67,250,24,94,26,1,119,168,182,28,177,37,218,156,47,2,122,157,254,255,94,85,200,173,129,18,73,14,228,146,40,187,227,127,43,189,139,177,179,71,173,99,150,14,247,73,106,199,48,70,215,65,33,151,133,143,87,136,160,194,89,248,196,140,58,206,220,119,131,140,25,217,116,84,76,64,244,38,188,105,236,23,192,249,11,166,207,235,219,136,151,74,185,9,86,133,47,52,13,182,247,229,112,151,32,87,194,92,45,59,254,141,230,44,184,104,37,168,11,226,148,82,107,227,42,168,37,234,113,228,46,19,243,189,163,230,175,71,245,122,228,243,69,151,184,181,164,129,205,182,248,111,61,160,45,236,169,244,44,189,246,138,97,162,197,6,58,40,66,98,231,29,224,29,175,130,63,236,146,154,16,254,181,34,68,211,41,44,154,252,64,132,93,16,99,203,108,253,102,143,200,228,120,220,230,246,74,128,141,71,40,52,48,67,6,151,91,77,77,54,193,25,101,101,214,40,150,131,82,214,181,115,156,189,74,159,205,97,1
 ,111,193,87,167,113,65,254,161,201,244,231,194,125,238,25,55,5,238,75,135,93,228,115,4,46,125,72,33,69,254,196,152,160,20,251,229,103,189,252,197,212,25,163,208,96,64,175,239,142,17,68,171,134,33,90,199,151,237,129,102,149,121,120,109,115,125,139,207,102,114,128,199,58,129,205,189,126,139,66,182,3,253,188,182,36,64,211,208,160,236,7,59,226,52,182,154,23,106,75,83,208,142,129,183,227,204,202,187,222,38,147,169,220,164,195,91,64,93,65,6,32,189,170,34,69,91,2,32,145,61,236,253,49,204,99,138,103,167,88,116,128,207,180,99,39,213,31,41,234,227,63,116,162,226,136,143,143,21,22,224,87,141,27,115,140,172,51,39,39,216,208,9,27,13,234,87,23,227,195,217,25,105,41,60,195,79,146,244,157,197,94,189,166,185,214,155,196,179,103,123,124,200,127,88,125,12,90,6,197,92,221,193,166,115,42,116,194,174,200,220,83,53,42,37,244,119,44,248,227,233,225,1,51,99,66,115,20,75,143,52,71,153,46,105,160,189,2,197,177,213,250,191,208,209,167,234,190,44,21,102,137,27,130,139,234,200,154,109,243,206,98,170,228,
 156,155,137,233,179,207,75,48,148,105,66,49,150,217,84,251,249,162,43,240,229,247,161,177,14,145,160,107,3,147,227,111,81,19,98,221,160,21,174,18,107,206,89,201,102,190,134,192,186,9,70,246,144,99,200,134,171,102,55,138,124,102,140,56,54,79,172,109,23,154,221,169,248,170,239,117,77,119,96,49,194,157,229,75,76,114,9,149,70,67,246,184,122,243,98,98,60,125,203,74,218,210,16,75,75,81,234,136,197,255,225,8,239,193,158,117,10,92,142,155,11,170,132,231,49,51,16,155,111,78,190,74,59,39,213,210,249,146,160,112,146,182,77,129,36,24,216,60,103,103,71,222,140,4,66,134,154,5,222,202,59,174,196,227,136,167,204,4,243,218,45,252,209,103,124,236,67,102,32,15,58,234,1,29,142,13,82,49,137,55,139,93,211,175,166,55,135,91,209,235,26,103,154,165,138,163,149,77,192,106,56,138,12,147,56,107,113,189,72,124,93,250,211,112,67,253,130,101,46,131,222,92,11,43,37,170,145,43,9,146,178,2,143,61,116,227,204,3,247,64,6,216,176,239,199,125,128,96,46,226,75,82,40,255,134,224,236,245,23,207,37,66,108,23,244,8,1
 71,241,161,35,166,225,113,235,7,245,126,128,169,122,113,223,132,137,25,133,83,50,120,223,84,65,14,94,94,42,31,118,190,19,104,161,186,101,232,178,69,200,153,56,106,133,252,199,19,213,227,65,131,51,160,185,190,43,132,55,49,130,212,85,166,45,74,181,140,57,212,217,168,71,49,229,3,143,66,116,49,193,204,176,181,152,207,242,71,228,48,147,219,12,94,146,32,184,246,235,181,244,1,6,254,46,58,71,165,222,61,2,45,73,125,79,39,170,101,77,82,78,121,112,129,232,207,55,184,133,156,56,69,11,57,135,1,138,229,218,219,130,130,27,145,211,228,73,235,147,79,91,76,64,79,201,59,114,6,188,217,87,189,177,170,77,9,150,173,220,240,69,75,143,2,15,99,246,19,161,137,84,122,23,175,143,71,78,85,201,39,253,250,180,23,145,151,78,128,13,187,181,108,27,189,80,63,19,8,135,239,230,187,160,48,212,104,184,6,124,162,161,185,224,118,110,31,72,150,221,70,137,5,210,200,31,44,150,149,233,131,5,209,211,176,20,172,103,208,151,239,118,107,247,41,100,174,57,141,225,14,255,171,130,3,9,39,68,202,220,213,104,141,104,129,207,163,2
 38,192,171,129,60,205,99,11,97,63,30,31,142,195,156,16,48,210,220,209,152,180,15,139,170,6,102,56,100,246,37,133,43,89,202,137,164,157,117,143,48,251,39,49,26,12,157,250,172,194,254,44,94,204,241,12,39,173,182,126,29,236,72,55,103,140,235,87,245,154,97,226,232,235,106,42,2,75,115,183,202,123,109,151,49,182,147,178,86,168,244,153,233,121,187,225,247,118,81,124,221,103,176,22,97,67,186,154,95,176,248,21,29,72,203,8,140,141,84,241,139,248,61,86,82,110,77,161,106,180,25,41,159,142,171,94,247,245,152,38,41,62,64,115,179,238,133,215,255,217,54,250,122,29,56,204,39,15,162,169,79,225,230,218,194,93,40,105,64,120,17,169,217,248,189,153,245,186,192,75,220,58,148,248,240,36,196,245,168,63,50,192,249,181,188,82,181,208,174,126,21,238,225,191,51,236,38,229,163,116,50,246,153,155,183,169,124,132,132,4,83,40,47,97,155,74,176,81,73,39,223,6,189,85,178,209,83,218,80,161,11,199,91,49,233,227,131,71,55,176,23,19,42,58,93,254,97,216,60,157,81,90,114,108,186,211,246,162,58,42,234,46,46,72,150,17
 0,244,46,1,7,17,78,243,229,120,255,65,233,167,237,131,63,94,51,189,99,84,170,165,133,157,48,156,129,86,126,140,212,39,183,18,14,187,220,67,138,157,135,236,229,76,197,25,97,52,19,166,25,246,118,99,171,82,10,222,162,168,120,26,213,29,194,13,143,81,163,212,81,138,242,215,62,151,206,128,168,37,100,183,98,146,228,230,188,197,24,248,223,192,48,108,61,129,43,194,123,236,57,144,109,21,133,52,105,127,124,146,33,129,52,226,7,235,184,87,172,8,21,61,112,122,198,72,176,8,96,136,50,97,34,152,127,185,168,69,76,21,26,96,94,120,120,146,158,167,92,13,30,121,212,54,60,50,227,194,159,119,212,16,32,121,136,71,105,193,3,243,114,254,250,213,76,31,224,246,65,34,128,52,68,173,66,65,88,249,198,226,49,94,3,170,244,4,200,246,230,103,176,112,21,46,72,8,156,230,32,155,149,252,32,184,161,110,180,210,13,255,78,12,36,254,189,57,35,68,161,102,110,114,33,122,36,61,126,13,234,30,82,213,33,37,157,233,101,12,23,67,35,78,218,54,245,50,32,149,58,86,142,130,121,2,104,216,40,80,98,86,229,215,52,209,165,228,134,86,11
 4,68,210,59,0,193,111,209,242,113,170,42,138,19,69,196,182,174,177,22,139,101,5,138,57,178,137,235,148,39,43,85,74,29,116,141,135,95,250,134,0,82,244,113,25,117,2,54,53,235,27,234,93,77,216,47,127,63,211,146,88,4,161,56,89,156,210,148,153,127,165,16,98,111,145,126,140,103,248,222,7,218,241,135,134,191,105,199,22,208,19,3,136,150,82,33,102,191,39,245,65,144,198,176,8,76,165,155,97,218,139,178,86,185,227,246,230,217,153,80,236,50,242,75,96,67,24,214,58,45,227,84,103,89,9,163,248,191,17,118,16,202,151,120,203,5,33,35,203,133,185,60,166,36,50,227,107,93,68,160,36,101,61,198,107,130,101,212,145,148,108,119,32,158,96,18,8,15,234,28,133,97,84,234,95,115,42,180,25,157,231,238,161,171,215,25,41,126,201,37,212,103,202,20,33,18,121,221,7,90,88,123,149,202,236,107,62,20,221,254,247,245,185,111,45,119,24,124,88,189,223,166,38,87,26,24,139,187,252,47,236,238,84,119,139,214,116,84,223,225,73,145,193,191,204,64,105,224,151,182,152,146,88,18,49,12,123,160,239,254,88,45,255,173,182,74,238,51,
 191,164,139,180,34,125,243,119,213,214,142,165,69,103,98,208,170,221,152,180,200,37,10,209,107,91,50,25,207,74,180,86,53,178,202,241,17,253,87,70,177,156,109,46,217,150,163,145,70,0,63,31,79,66,215,209,62,79,174,224,152,190,140,60,79,41,117,154,103,93,18,172,63,161,125,214,235,168,190,76,63,238,102,140,205,152,159,74,107,244,211,80,98,183,211,233,196,183,97,87,95,18,197,15,13,48,159,92,101,78,165,53,138,190,59,76,166,20,137,141,161,133,200,10,224,255,46,131,12,59,128,132,120,192,30,238,115,160,178,219,55,52,41,54,171,180,172,92,6,47,206,23,14,148,152,159,210,130,178,251,1,157,215,124,92,76,230,40,240,51,181,47,110,128,11,221,5,1,132,103,115,185,222,249,169,183,41,104,34,57,102,200,126,184,27,114,79,252,75,211,62,172,123,186,78,55,100,167,34,0,25,159,108,137,254,147,242,100,61,85,21,185,6,185,94,0,89,71,30,62,94,237,198,166,246,80,114,198,134,113,43,134,184,205,205,62,156,141,138,223,45,15,245,164,93,109,79,2,14,179,152,226,18,234,171,238,165,225,48,116,39,203,151,199,194,193
 ,153,255,96,245,221,86,16,23,167,50,221,137,127,62,24,115,178,143,49,182,219,58,178,140,152,160,234,147,95,247,133,156,204,163,98,218,229,19,74,136,22,78,80,225,157,73,165,180,186,100,184,104,199,0,182,1,83,172,245,110,195,67,110,159,217,196,22,248,67,100,149,55,71,158,146,109,123,221,63,162,119,220,197,131,158,211,5,75,210,136,203,141,6,238,127,105,141,241,63,51,71,142,53,129,186,247,225,205,242,71,135,172,77,78,19,161,80,212,54,90,187,161,58,54,226,206,155,193,49,83,220,252,60,192,211,127,188,239,103,30,255,5,116,26,90,230,223,172,149,166,136,65,44,195,2,165,178,96,106,214,121,147,109,101,145,241,87,145,35,231,208,71,208,203,208,242,220,248,192,136,215,99,110,139,32,60,82,177,142,185,245,240,81,75,98,254,140,59,135,221,113,156,158,217,193,217,51,141,1,211,148,177,52,37,101,24,125,56,220,42,179,50,151,167,83,72,151,180,244,149,212,245,224,8,126,79,234,226,109,7,21,179,18,80,133,3,178,173,39,160,132,211,14,74,243,145,17,136,95,58,58,153,253,162,197,115,88,218,45,155,226,158,
 127,17,246,226,80,217,124,202,93,103,168,94,204,44,163,249,236,150,173,85,171,229,93,54,188,91,116,46,183,15,192,177,9,234,45,88,18,192,8,33,94,87,79,76,196,174,182,115,222,46,244,97,167,212,15,6,182,168,55,212,164,86,145,213,75,163,185,183,16,9,23,133,32,185,140,129,236,40,103,74,158,30,170,121,227,122,225,195,199,110,14,164,138,12,235,23,196,38,163,2,216,41,203,220,170,71,99,49,7,214,150,87,14,89,220,146,72,132,197,174,227,81,168,116,107,145,62,224,183,0,152,8,140,79,250,114,83,118,101,235,179,87,96,84,53,178,93,13,250,104,41,106,222,121,239,21,184,78,196,81,43,112,112,62,240,98,235,215,122,30,201,85,215,230,116,30,22,81,119,217,58,111,101,222,110,101,71,0,211,69,236,97,147,189,230,133,206,136,193,243,21,237,207,190,198,125,144,53,21,89,43,110,206,201,77,215,60,42,120,10,105,115,128,212,61,252,241,242,243,73,86,8,182,227,115,214,114,70,159,131,214,0,8,241,40,57,253,214,19,169,40,150,84,49,100,57,107,151,204,98,227,200,165,208,136,181,17,95,94,33,12,39,62,0,139,112,227,143,
 242,101,148,6,89,105,244,218,194,15,244,54,78,148,14,244,59,104,172,232,145,54,81,140,73,246,200,189,251,118,119,22,38,120,156,225,187,124,75,134,229,59,94,74,102,10,247,255,24,58,40,20,234,79,127,233,193,244,180,93,205,172,32,123,173,99,133,174,199,144,228,7,125,254,56,149,186,26,248,65,1,244,24,213,99,107,44,22,203,193,153,51,224,247,112,168,126,178,204,83,86,243,1,228,226,105,176,231,180,190,8,255,70,45,53,162,44,111,208,49,202,66,113,68,227,142,160,235,4,4,80,245,31,133,120,164,183,164,202,146,122,55,224,122,14,141,240,137,126,163,94,40,162,69,221,134,202,205,182,140,10,203,65,233,81,235,8,238,100,74,224,194,199,10,208,232,95,82,145,84,161,67,52,206,218,225,191,97,232,190,125,75,164,93,42,59,115,247,8,71,85,108,97,195,24,24,143,189,75,19,190,68,137,41,211,85,172,127,177,241,137,34,226,70,162,215,174,86,157,177,110,12,227,129,165,43,88,156,21,29,33,211,138,70,232,9,51,67,87,91,189,170,179,182,147,73,86,43,119,162,177,102,246,17,154,242,105,124,191,99,52,39,190,167,240,125
 ,254,210,99,39,157,100,32,203,168,215,103,136,134,160,38,10,203,151,206,177,133,207,135,2,206,80,200,164,213,196,163,73,142,189,37,248,252,234,198,61,59,196,75,185,58,174,180,65,120,186,76,64,4,2,163,17,49,48,54,21,116,210,196,206,189,92,156,115,245,152,193,86,25,156,190,155,98,127,19,189,95,109,97,145,17,11,130,196,149,15,148,120,236,161,153,122,49,83,63,231,235,181,95,99,85,15,163,2,85,90,209,160,207,3,94,181,123,242,75,8,21,50,50,206,235,239,4,33,60,125,154,159,14,242,254,204,254,29,7,117,42,200,63,12,180,46,156,241,112,84,110,75,75,197,41,142,96,144,156,188,252,200,78,145,161,210,128,45,166,114,171,230,186,27,152,79,166,83,241,61,177,51,152,45,235,97,167,135,144,151,233,188,199,165,39,167,153,153,163,64,172,64,119,104,154,34,202,55,5,92,250,220,148,249,86,222,137,230,127,215,90,45,102,204,9,231,75,159,111,28,121,91,127,238,64,194,92,6,210,20,59,212,64,187,182,18,234,180,85,5,198,251,60,202,161,224,185,134,1,3,165,225,86,59,42,124,92,122,11,61,33,198,178,249,185,140,131,4
 7,157,2,49,125,112,145,44,114,3,3,129,5,243,156,46,116,68,222,68,23,114,57,26,26,171,80,11,12,31,124,21,60,206,70,186,56,26,160,177,246,106,32,157,89,252,121,73,13,5,28,103,112,235,29,19,26,139,28,35,114,74,224,26,64,107,237,188,185,81,193,186,107,223,159,25,104,185,49,27,221,54,40,102,19,143,27,208,104,89,37,166,187,147,180,233,203,251,12,109,79,176,49,54,4,219,3,185,64,140,252,163,99,240,82,175,254,156,167,54,251,25,60,49,47,117,91,206,80,44,129,28,90,173,4,74,140,29,85,173,128,50,215,147,164,93,215,102,46,251,71,30,19,212,107,211,27,135,253,231,199,89,149,105,242,235,103,2,50,215,52,229,171,69,87,130,42,246,21,57,133,164,0,174,140,148,127,137,24,142,10,178,243,175,173,70,180,64,60,82,226,18,191,95,202,27,111,178,72,44,180,145,234,92,176,165,37,221,160,4,215,47,85,116,170,44,176,231,237,33,12,82,170,62,197,28,87,250,52,45,32,208,115,36,186,144,147,23,7,231,53,15,249,216,35,226,92,3,203,13,188,248,97,162,92,82,195,255,255,182,101,85,159,219,127,242,90,106,6,163,94,226,222,2
 08,80,130,18,76,166,252,115,10,129,193,235,126,255,236,180,250,137,205,128,22,113,153,160,94,183,92,94,220,138,69,28,242,160,195,224,107,38,14,201,72,13,105,171,42,66,87,30,208,166,85,92,56,58,174,148,255,87,101,106,221,119,185,205,190,66,196,94,57,228,73,35,14,78,219,210,186,237,219,48,193,14,36,10,12,103,147,155,57,242,77,153,181,187,152,73,158,53,179,50,142,253,63,70,143,40,198,171,0,49,124,162,51,224,19,18,151,81,122,134,168,131,36,118,247,15,168,197,238,113,102,174,248,90,99,135,254,232,193,54,58,115,211,200,42,234,120,71,21,161,244,24,216,61,199,111,77,167,182,41,124,151,36,53,184,96,162,182,17,42,150,248,240,46,228,228,99,118,152,234,176,46,206,29,10,247,20,89,210,28,12,112,115,229,67,16,67,101,166,202,137,55,46,102,190,36,219,220,229,129,85,244,16,93,234,158,17,163,17,61,120,67,236,200,207,142,188,251,12,197,122,230,132,141,249,194,174,246,177,141,60,171,31,182,229,139,118,201,97,253,160,122,42,229,63,53,248,166,160,180,83,212,242,185,48,189,95,35,96,9,136,202,62,221
 ,10,115,61,57,59,63,202,217,62,141,193,13,54,56,99,161,138,80,104,38,118,10,132,136,100,125,204,3,178,55,183,197,137,88,138,223,239,254,103,160,46,134,160,68,200,1,251,28,208,231,203,145,233,9,204,141,237,84,4,116,102,251,214,165,94,140,237,104,195,209,142,116,28,35,62,123,220,26,128,165,157,94,233,84,171,44,46,251,186,147,189,48,181,189,182,33,177,0,91,42,74,13,200,0,6,199,174,125,90,251,96,131,97,54,66,247,218,118,231,250,236,253,15,11,104,70,233,39,252,182,232,6,226,42,127,113,231,194,144,140,149,107,106,229,80,104,174,67,101,181,244,178,107,86,218,216,63,176,234,138,232,44,182,70,191,3,51,13,80,186,108,25,30,31,203,103,71,202,64,219,100,248,92,214,148,71,245,190,3,105,184,55,127,196,171,75,146,152,85,99,95,67,137,43,64,65,170,100,87,42,232,168,85,190,119,42,13,100,216,33,237,116,254,105,41,97,32,2,173,143,249,183,104,20,229,219,79,242,214,74,210,192,206,35,197,245,33,217,223,180,197,87,184,114,40,215,119,85,13,92,199,128,11,56,215,42,181,22,52,254,224,18,222,63,114,207,1
 31,108,53,40,210,63,121,180,44,203,63,23,114,202,181,145,191,129,8,37,230,218,241,151,181,131,50,176,70,111,101,173,12,238,100,222,129,209,161,9,38,82,93,7,88,118,168,29,3,171,152,142,160,180,164,59,104,198,71,81,220,164,117,209,227,97,62,227,16,76,235,37,137,43,227,133,142,194,7,188,15,221,102,236,132,197,182,96,234,52,62,180,223,52,53,219,48,122,249,143,171,238,217,25,51,28,12,97,180,7,11,184,136,181,60,189,138,178,133,194,99,166,157,172,220,35,54,187,246,146,122,220,63,172,248,235,96,220,85,162,220,25,56,17,62,71,110,228,189,228,209,216,92,203,83,19,30,193,41,119,72,254,73,104,144,158,33,169,229,166,19,123,123,181,166,122,91,224,212,188,132,160,251,228,167,142,95,191,34,214,8,178,118,252,195,60,221,171,18,239,209,116,181,84,189,11,47,122,24,171,147,175,39,104,4,45,17,41,55,60,66,213,210,35,70,129,43,168,144,213,103,151,91,158,169,128,91,95,230,144,59,167,68,73,162,210,230,84,231,214,54,251,1,206,238,184,162,107,11,213,182,235,41,35,248,141,241,30,162,127,233,241,154,235,7
 6,153,236,164,84,75,101,11,57,217,122,189,229,29,145,224,190,120,193,89,93,239,78,8,49,193,82,178,47,117,104,245,121,48,130,13,50,167,149,154,56,195,195,204,11,194,216,237,9,18,146,254,193,29,155,236,240,104,160,162,66,191,71,144,163,88,4,91,87,197,54,63,116,16,39,68,37,100,227,88,148,186,25,209,29,34,13,118,159,18,33,126,204,209,219,53,126,94,163,51,96,39,207,27,117,41,119,121,8,60,40,201,94,190,76,20,221,167,238,210,41,194,34,112,21,83,45,37,155,20,121,229,3,135,202,91,157,134,61,174,114,162,148,145,50,86,30,80,92,183,75,13,139,156,189,82,67,170,147,53,113,62,190,154,130,73,65,91,181,111,203,150,181,155,8,21,51,32,216,136,128,47,179,102,159,238,113,4,96,241,142,69,250,104,192,73,43,125,201,247,2,131,8,163,51,215,147,153,46,252,70,27,116,8,240,36,113,188,185,2,42,220,76,10,116,201,57,92,8,69,61,138,231,245,33,255,83,59,210,42,233,226,79,186,153,68,169,98,39,116,108,202,42,221,53,179,80,26,152,207,211,123,140,169,229,187,43,230,125,81,201,140,175,174,250,34,194,96,215,129,10
 6,49,125,170,196,207,84,155,4,234,118,116,84,23,69,40,114,236,18,38,72,162,192,152,221,220,131,7,95,186,119,32,155,196,95,245,149,43,172,203,236,46,177,209,68,73,188,199,187,72,220,155,64,111,109,220,188,194,30,174,6,44,226,120,91,154,101,127,149,226,157,23,148,217,52,189,208,31,247,149,190,194,85,130,97,91,177,242,227,131,140,124,207,81,236,188,73,208,140,158,101,120,243,89,225,159,169,172,136,254,129,133,254,147,219,213,128,24,101,192,29,96,140,106,44,119,247,70,28,229,215,233,75,222,233,197,0,237,134,254,29,8,210,187,84,58,194,34,1,69,108,197,206,202,19,170,29,241,61,62,30,118,14,46,132,132,25,113,225,79,149,20,25,201,38,187,128,89,205,158,77,32,177,97,183,18,62,55,140,9,136,7,100,34,48,197,43,250,22,239,245,1,193,78,106,242,50,13,6,135,154,170,223,79,49,235,83,4,157,107,133,243,54,4,182,238,111,229,19,234,206,22,18,233,68,2,8,55,249,176,158,137,136,85,140,198,105,1,96,140,213,95,164,102,11,18,43,123,206,201,198,146,64,254,94,173,31,243,61,91,197,141,48,140,130,90,235,218
 ,241,14,233,135,204,137,37,115,100,221,229,68,52,82,252,67,250,41,95,30,103,167,197,215,110,172,108,114,15,121,13,132,131,103,224,107,184,87,8,244,88,6,28,223,143,40,7,19,173,82,191,178,168,135,5,127,34,63,58,23,166,113,56,173,169,104,177,105,19,145,67,159,12,224,151,120,95,92,161,35,74,69,152,28,79,30,168,248,25,74,95,222,161,14,107,67,81,85,239,122,51,194,23,8,219,57,48,14,205,83,241,53,192,118,68,25,56,56,253,135,173,208,128,134,128,86,221,2,103,165,149,40,141,111,238,233,172,192,38,34,91,72,169,58,101,217,141,22,158,135,72,62,206,104,137,63,118,88,107,219,150,133,68,178,106,189,125,152,94,138,210,160,159,159,230,112,232,148,178,57,211,106,238,73,195,96,54,193,184,125,154,63,242,94,128,57,169,164,124,140,55,55,180,228,40,203,110,246,145,33,152,93,232,226,115,243,246,14,161,209,39,180,171,206,27,15,195,180,134,160,156,19,45,172,56,134,219,195,218,254,88,6,204,32,5,14,26,49,238,16,127,82,30,248,212,218,34,94,190,246,107,247,201,76,72,202,213,171,136,177,161,94,161,9,222,51,
 193,98,101,232,94,185,86,135,216,141,124,1,227,219,153,192,236,88,121,196,12,63,48,19,15,253,173,165,254,93,98,227,70,210,47,212,31,82,135,67,17,155,1,37,117,153,29,103,125,69,244,209,36,56,144,50,209,156,43,141,34,167,95,76,87,243,173,13,179,191,62,252,175,67,115,150,31,199,184,74,229,246,115,95,212,89,9,237,71,78,92,3,62,108,181,217,55,6,11,184,210,78,205,152,148,2,52,232,251,16,76,202,19,165,107,247,125,174,253,103,207,164,109,17,221,158,99,172,230,68,251,140,55,125,29,188,163,48,153,155,13,246,240,152,232,238,121,221,68,109,251,150,242,146,14,81,49,173,50,146,103,160,7,87,84,102,77,42,13,76,83,38,69,94,219,8,67,32,95,147,178,151,160,19,162,6,66,214,18,122,44,91,51,238,182,84,56,120,244,164,17,216,141,201,110,30,148,102,170,7,86,154,121,2,67,202,239,168,175,98,106,53,28,135,110,163,203,62,242,55,5,119,85,238,224,16,101,136,104,33,202,189,0,201,183,36,121,152,145,44,168,150,205,132,136,98,38,195,48,145,224,37,122,159,171,182,82,155,219,90,26,23,249,135,60,126,175,72,145,24
 9,219,65,21,251,162,94,49,196,39,145,241,251,208,205,72,231,187,215,225,134,24,145,23,119,22,213,65,192,6,158,252,205,254,190,140,156,177,245,235,241,36,133,59,20,152,29,189,224,187,90,139,153,99,31,242,238,44,4,120,89,111,253,95,10,84,109,245,120,143,187,8,201,120,234,24,31,219,212,34,199,24,130,20,211,180,161,216,97,159,32,100,205,18,171,14,76,112,205,119,110,164,215,59,238,230,241,1,239,222,89,201,143,72,218,212,189,0,150,162,145,118,160,220,149,41,44,189,42,96,154,101,220,242,79,11,194,161,81,187,227,80,154,124,118,57,73,151,165,29,175,199,57,187,86,142,184,63,51,170,159,156,156,151,37,210,36,185,2,224,243,232,249,41,108,221,133,147,175,182,187,100,71,149,98,7,133,252,4,234,94,143,128,16,50,174,236,240,104,68,238,114,200,143,114,76,248,243,220,246,102,185,10,57,215,152,69,16,20,59,89,135,68,102,183,87,139,157,204,152,141,244,18,185,26,38,125,187,117,183,10,128,142,231,44,222,155,134,55,13,166,179,182,228,104,220,169,47,215,211,18,23,142,123,88,207,20,30,180,117,27,211,39
 ,7,176,94,159,165,129,98,159,26,118,224,151,113,203,116,111,130,176,149,243,222,160,213,181,162,46,32,219,192,244,154,101,62,217,153,127,110,33,223,174,185,244,59,120,86,239,56,165,176,151,70,228,43,48,41,151,198,32,232,176,91,8,191,167,189,228,84,217,51,188,135,156,231,45,243,65,134,239,143,205,104,114,172,164,30,19,215,194,137,71,123,34,217,97,214,77,231,157,145,12,133,142,64,236,104,165,11,85,167,107,46,36,156,21,14,231,159,130,226,171,239,205,90,66,190,10,134,146,161,117,167,10,162,184,36,18,33,226,22,218,77,187,23,251,177,23,121,30,166,139,123,2,156,50,97,152,225,61,181,184,230,243,105,166,122,112,245,219,117,239,112,120,60,25,174,85,165,64,47,113,138,31,9,139,88,133,186,102,79,187,145,66,20,187,22,174,153,52,232,53,8,55,124,12,183,128,141,56,40,213,92,153,144,36,107,81,235,252,238,167,148,221,150,61,19,28,180,95,4,246,123,82,100,125,131,83,176,57,223,92,155,108,194,254,20,6,98,221,16,43,82,100,249,248,139,120,17,174,120,27,169,28,105,6,115,142,86,114,191,222,26,86,77,1
 2,88,194,244,92,77,77,120,7,219,15,162,214,235,244,9,174,101,39,235,242,188,46,237,213,124,121,253,146,154,212,114,118,33,117,67,81,106,13,141,104,63,113,47,193,82,185,2,91,236,42,107,40,14,200,170,109,96,24,237,50,133,231,69,214,207,154,5,104,45,155,85,212,210,120,65,9,25,249,8,37,205,10,127,191,38,174,166,19,104,61,148,121,92,231,136,159,126,138,177,45,32,108,196,148,193,24,27,216,143,173,65,173,152,221,30,120,34,6,17,210,83,150,196,8,123,103,150,232,211,13,173,252,155,79,173,184,153,128,205,111,46,87,181,17,39,242,146,217,23,181,106,248,1,105,161,162,186,61,91,132,138,121,223,207,210,83,122,248,111,32,212,230,74,141,66,121,233,245,82,24,161,239,56,154,36,48,179,19,115,173,93,3,134,186,45,56,40,211,36,65,141,189,15,251,12,206,165,255,151,50,45,243,165,50,57,191,142,46,94,134,83,49,134,154,112,49,200,36,100,24,170,49,2,157,39,21,13,35,98,150,9,240,204,136,15,89,63,226,169,4,94,95,166,56,222,247,25,155,199,118,162,239,255,31,218,9,79,62,1,64,124,16,242,16,149,101,208,197,247
 ,18,170,234,4,22,167,193,151,113,59,20,237,61,99,22,7,238,1,107,144,3,196,87,127,16,138,207,32,65,125,127,176,5,83,25,84,96,211,26,116,170,220,39,209,253,92,13,17,182,8,77,134,250,12,235,29,17,59,1,155,170,170,207,70,19,164,100,99,146,73,206,189,232,61,152,173,240,96,183,77,25,11,56,66,253,36,197,185,217,33,134,133,121,47,149,152,30,127,222,211,98,49,195,21,146,165,104,1,38,180,191,117,0,226,233,208,16,25,89,75,254,38,23,103,62,160,107,253,87,165,161,179,168,247,80,94,95,33,158,204,216,144,238,18,52,71,88,113,164,244,59,196,58,238,101,182,95,89,33,87,182,19,196,140,48,160,51,162,209,148,181,162,182,94,190,197,109,222,103,151,105,226,107,36,38,59,26,223,139,124,188,171,222,155,76,145,75,78,84,40,179,176,116,77,213,43,222,118,134,204,7,251,215,238,23,47,20,75,30,243,43,211,199,46,153,119,0,157,2,124,98,61,108,211,236,189,63,155,160,105,89,209,137,205,0,236,225,173,107,97,172,12,1,164,144,116,82,177,147,161,108,108,196,66,228,212,107,31,240,228,96,55,105,78,198,48,219,76,228,16
 4,198,249,60,80,95,112,1,167,76,14,103,114,115,183,49,82,159,37,200,10,70,226,42,243,186,190,178,182,155,223,79,105,111,45,143,242,87,175,70,188,220,231,162,90,114,183,37,69,92,39,187,184,154,25,3,153,235,44,115,76,97,75,173,190,183,132,220,36,250,64,234,84,82,242,109,7,23,87,145,204,198,154,226,228,115,164,34,221,65,216,93,77,78,243,179,1,240,18,181,29,208,194,116,253,71,18,57,142,168,158,172,48,39,240,112,33,11,12,194,248,235,102,104,197,179,11,154,174,164,133,95,39,50,96,236,103,48,205,232,133,82,249,124,249,29,122,57,105,80,119,105,124,29,50,154,20,61,204,70,32,200,41,73,55,235,96,24,220,26,0,111,29,116,138,86,52,69,81,211,149,2,179,87,71,196,211,85,42,207,84,199,149,125,116,57,133,26,69,167,204,55,210,110,87,141,72,252,195,25,71,163,16,246,116,97,52,229,178,4,0,120,176,25,218,191,158,255,71,75,162,62,169,228,82,34,131,204,7,165,171,163,219,212,86,16,2,236,202,90,103,216,153,120,33,14,96,67,99,113,248,254,255,101,134,202,127,194,55,101,139,220,138,237,104,55,116,89,117,7
 8,55,61,42,168,236,186,249,34,173,196,89,195,127,50,130,217,183,8,243,91,202,253,202,158,110,192,111,116,195,60,194,210,172,241,117,238,17,172,40,61,133,41,190,80,181,208,218,63,74,100,163,145,207,79,214,245,120,23,152,248,24,204,193,142,78,30,166,235,153,48,4,47,177,204,124,78,60,96,87,50,222,143,229,79,216,83,46,45,0,133,19,102,195,166,221,34,184,172,121,134,188,11,167,50,189,198,143,169,234,163,243,86,126,83,189,145,78,121,177,57,231,174,45,166,245,153,160,106,103,211,199,231,28,89,208,25,88,130,171,214,100,215,63,120,77,15,170,131,160,247,98,175,156,135,174,226,33,43,154,150,148,67,100,153,175,218,242,73,88,207,93,140,48,166,138,133,11,77,13,85,9,253,17,174,209,204,41,208,50,38,161,229,194,98,63,163,99,198,211,143,133,189,154,58,128,42,154,113,149,223,162,24,9,54,30,179,44,202,121,11,210,95,197,21,215,27,20,168,249,133,51,143,111,81,135,83,31,9,42,136,61,91,96,94,176,11,190,121,14,46,85,198,154,186,56,19,11,211,228,221,88,59,150,124,115,142,245,86,193,223,183,199,217,0,9
 5,186,7,145,91,202,181,239,40,97,42,66,80,80,166,27,5,80,57,77,153,157,190,105,176,56,98,169,178,8,175,247,225,222,243,218,153,21,201,79,254,10,111,55,171,83,0,232,25,69,130,20,62,48,38,118,161,102,107,239,111,185,254,136,107,249,3,231,5,133,16,190,139,49,44,252,93,53,82,66,170,77,238,110,238,113,181,39,21,95,94,87,191,191,132,125,111,248,49,243,79,162,4,139,251,177,89,223,206,223,105,49,51,249,23,22,111,86,203,71,12,134,150,195,38,251,50,63,138,252,168,202,159,223,37,224,73,52,185,43,194,187,72,179,89,4,116,243,168,52,69,82,198,83,241,68,53,146,124,182,97,116,135,213,239,213,193,93,8,29,148,201,214,171,68,30,69,217,90,133,181,159,31,33,57,124,106,179,185,142,193,42,118,61,192,224,87,89,155,28,8,80,64,162,99,137,91,164,9,39,213,15,76,173,22,14,214,127,134,29,9,80,1,69,255,251,181,97,218,61,147,238,111,65,238,51,100,201,196,139,132,245,105,182,166,49,104,223,118,147,67,178,92,128,215,214,236,170,185,19,142,119,104,196,234,71,31,35,37,68,120,239,170,1,196,96,118,32,1,17,112,21
 0,79,81,82,44,90,14,11,52,246,113,157,142,58,252,233,230,200,178,229,15,125,220,1,146,232,15,231,193,184,31,34,118,103,204,173,202,248,3,204,42,254,201,155,85,93,52,197,1,111,32,52,88,238,93,216,120,60,128,180,91,171,160,50,218,99,110,51,208,1,249,1,195,207,59,244,139,129,252,232,153,47,211,111,99,233,93,227,77,234,52,225,121,167,233,27,156,83,167,42,77,67,61,189,230,131,160,206,7,109,205,40,50,176,127,54,80,107,119,152,128,195,129,95,114,100,204,91,204,198,208,71,183,243,81,170,150,5,101,188,0,40,84,148,12,76,47,9,139,83,174,181,147,156,253,227,182,239,156,134,109,142,211,10,80,45,95,23,86,152,233,142,102,156,38,198,140,115,140,35,95,134,143,20,131,112,104,23,177,83,85,152,78,30,203,227,123,240,3,104,92,187,77,243,28,61,82,70,247,189,152,20,71,197,37,6,52,109,97,94,202,104,229,83,213,44,101,29,35,48,232,180,57,81,172,109,52,229,242,82,187,108,226,187,35,15,142,122,98,124,243,73,112,114,48,91,70,235,124,191,55,62,133,15,107,205,94,59,254,246,226,213,225,107,215,109,161,67,53
 ,140,65,171,36,254,82,16,161,222,11,232,91,30,67,79,183,16,182,75,41,241,87,7,232,185,114,21,148,214,108,160,247,226,220,229,2,54,187,36,60,67,230,36,235,247,123,114,92,227,60,222,66,213,18,65,176,222,195,187,158,150,198,70,135,218,122,22,103,240,230,245,145,178,200,222,176,74,117,247,194,60,178,95,25,55,5,240,206,176,230,62,154,253,119,215,203,164,56,22,138,185,229,195,169,217,155,98,77,26,177,21,242,98,150,228,128,162,121,130,139,121,202,45,29,228,197,31,114,74,250,162,220,186,134,15,220,69,255,254,64,77,123,98,228,178,174,107,216,212,49,159,125,183,254,1,133,12,132,229,98,164,124,138,137,115,225,134,15,42,244,105,78,125,194,54,20,24,96,232,30,185,210,84,166,212,219,34,188,199,34,184,43,133,132,252,29,180,98,216,29,238,179,254,59,182,205,243,171,60,188,3,148,9,63,64,175,209,90,167,116,204,121,204,94,82,237,218,0,60,87,80,13,249,69,174,163,230,142,120,46,22,223,151,179,5,36,51,12,215,102,185,242,216,95,161,168,126,165,167,154,70,190,241,250,219,213,188,155,13,78,147,84,137,
 237,232,212,74,27,80,63,244,77,17,181,225,117,58,68,78,218,137,218,4,67,218,96,76,206,97,71,132,38,164,19,222,235,15,166,70,120,186,209,230,241,128,167,188,156,231,14,185,168,162,0,172,187,201,181,27,39,191,203,200,216,4,165,60,96,81,245,156,12,66,108,25,195,57,30,152,222,253,118,18,104,200,254,214,214,163,252,218,98,71,183,72,241,168,229,8,213,157,49,198,246,35,67,113,32,169,113,125,184,30,179,205,28,67,19,55,124,107,192,117,146,183,105,64,169,232,32,219,249,255,89,228,63,3,204,247,250,102,238,7,151,142,45,232,226,98,168,72,182,124,64,196,70,60,156,228,3,100,57,219,81,62,252,118,5,56,126,213,63,27,51,238,88,150,193,222,48,25,74,200,199,224,28,162,252,155,173,134,237,121,246,75,154,131,19,15,5,169,178,228,194,162,216,3,66,181,214,155,50,123,179,211,46,99,53,12,242,105,58,203,52,130,44,186,93,25,108,215,1,196,180,162,23,101,40,119,210,193,238,93,242,98,245,210,94,254,237,169,79,214,84,228,22,126,9,62,125,194,36,49,194,123,201,173,73,59,113,208,192,21,224,161,161,8,70,66,97,34
 ,57,205,94,60,210,170,8,100,104,179,218,118,114,202,122,163,119,82,172,58,126,25,46,57,251,86,201,207,113,135,110,62,21,10,243,215,119,252,216,104,104,106,205,174,36,73,67,247,193,245,65,173,12,140,56,9,100,99,194,33,70,229,242,173,17,103,70,201,185,120,3,103,55,91,160,136,20,106,253,99,48,228,163,227,28,30,91,4,231,236,131,248,190,58,154,59,227,97,124,182,190,113,40,84,194,156,227,209,194,45,202,116,90,147,111,68,33,44,222,20,108,241,224,189,10,84,254,122,103,98,12,34,123,179,34,67,202,120,13,10,240,54,168,124,124,239,174,65,241,119,123,163,144,109,190,59,220,161,11,107,50,253,38,221,26,160,162,232,5,73,229,44,76,59,223,3,222,158,34,221,230,172,150,25,52,16,192,88,153,219,83,235,214,120,183,31,123,43,39,31,58,159,213,222,111,207,117,223,27,121,71,230,31,190,83,250,208,172,214,164,9,171,134,201,22,211,49,101,178,243,199,73,17,48,25,88,116,156,146,64,130,108,8,33,114,135,204,158,221,165,202,21,108,125,211,189,89,175,70,228,247,185,241,2,250,217,82,14,89,234,217,236,107,229,19
 1,79,223,237,0,138,209,228,8,3,165,49,103,67,129,85,238,176,129,130,35,122,11,175,76,110,176,23,186,234,196,104,49,24,171,39,137,174,179,239,137,172,98,234,171,102,255,13,10,136,238,79,22,99,227,128,71,133,99,5,56,21,95,103,124,10,244,15,181,254,36,243,171,13,61,186,149,227,24,149,47,175,36,223,60,162,153,6,141,142,108,141,56,84,208,222,183,92,61,92,173,231,21,146,171,209,123,86,212,192,37,159,19,110,180,62,21,77,100,182,29,95,62,34,70,21,174,183,239,205,18,63,105,197,34,107,139,244,122,143,231,235,178,201,157,108,148,247,68,231,219,81,40,152,156,97,107,195,95,242,245,170,62,94,202,136,23,204,211,229,83,115,156,43,209,152,64,9,28,163,4,108,240,98,161,11,66,202,27,18,219,49,2,89,130,91,118,141,86,88,192,255,34,13,72,39,207,182,156,91,161,148,216,35,18,17,63,185,215,22,22,87,85,50,164,192,54,86,227,185,238,100,43,220,232,59,228,43,117,117,187,154,80,133,25,38,254,137,10,194,29,195,147,211,214,121,90,211,239,142,212,118,39,191,237,174,201,21,109,244,78,107,166,241,181,155,210,2
 01,183,16,233,96,186,161,245,187,136,234,121,57,239,99,55,126,41,135,174,237,178,122,91,250,233,231,85,96,196,150,198,12,116,74,97,14,60,159,232,176,152,114,20,218,68,172,16,251,84,225,33,235,253,138,229,61,246,148,204,91,250,7,237,164,49,151,224,155,2,23,191,118,177,160,164,111,80,206,129,18,4,241,163,240,151,238,244,16,140,11,87,255,72,54,59,37,171,102,98,51,15,26,199,89,148,71,80,244,80,207,237,189,59,29,12,182,240,226,138,211,90,157,206,4,168,97,212,175,178,18,119,106,138,41,190,112,154,162,66,102,144,129,243,31,58,240,35,123,250,73,215,218,11,35,132,97,148,244,57,31,131,96,122,56,139,182,75,232,44,238,118,234,234,227,160,232,60,0,68,81,79,38,51,168,171,221,159,2,117,16,223,193,50,19,128,81,92,146,170,142,15,154,65,174,111,31,117,154,225,21,250,196,146,149,132,156,64,102,116,140,157,142,232,166,108,195,10,230,250,125,105,225,189,118,245,44,63,166,75,84,65,28,99,71,172,11,31,99,183,36,125,248,86,184,219,156,223,87,250,194,179,157,247,84,169,205,169,113,244,124,196,29,122,
 99,86,188,18,31,101,190,38,7,57,225,182,193,179,144,108,67,207,60,92,115,149,77,230,157,241,117,20,49,213,89,70,142,44,65,93,186,136,183,236,81,94,72,42,146,106,151,112,5,42,121,235,57,71,242,182,130,157,110,79,62,77,57,98,16,190,153,140,194,63,82,53,34,14,93,247,60,23,82,180,81,131,123,90,67,214,97,8,12,171,116,214,35,66,92,148,64,117,131,63,94,38,229,86,250,148,88,205,1,249,216,67,35,197,57,69,41,163,203,202,173,188,136,170,141,154,192,64,84,40,101,18,213,29,85,66,117,170,107,36,30,194,144,75,86,81,248,130,114,160,151,159,73,74,8,8,191,136,47,70,67,141,160,189,227,31,227,60,106,204,139,163,132,80,80,71,238,196,61,177,247,95,167,160,216,45,21,216,106,35,172,209,163,108,247,221,237,176,38,212,148,135,55,59,113,202,215,211,229,67,97,102,228,26,223,136,212,76,27,165,90,165,45,34,163,94,17,12,111,181,13,226,154,159,4,70,137,245,118,136,243,47,46,164,158,199,87,40,175,83,112,13,181,44,2,34,247,131,192,242,70,24,196,42,30,197,39,145,118,166,172,110,232,90,115,101,232,203,6,223,32
 ,54,20,166,93,198,30,115,222,73,146,13,252,37,101,107,88,222,197,110,160,7,50,231,217,177,69,214,58,40,47,253,107,50,120,201,70,25,68,94,83,169,179,158,101,42,207,56,49,120,244,60,79,16,239,239,85,60,180,239,212,91,171,68,219,166,56,106,143,19,155,166,179,211,68,99,124,2,120,34,139,241,124,202,220,63,18,129,83,206,168,67,115,69,171,252,242,30,113,207,186,146,90,155,43,168,179,161,163,97,215,128,104,58,192,154,140,203,107,192,166,18,175,126,186,225,20,164,132,144,37,137,230,30,157,202,39,47,66,172,195,118,29,176,40,35,85,111,99,200,218,129,244,54,18,44,101,35,177,177,200,19,163,18,227,95,29,225,215,232,10,233,77,161,240,182,27,21,174,209,83,56,179,74,193,27,247,148,157,234,160,110,129,190,34,223,204,39,238,115,135,203,105,233,105,177,239,86,48,233,198,81,227,4,88,151,54,117,118,7,238,175,218,92,249,95,254,207,234,15,5,126,22,227,58,152,136,141,136,182,38,52,110,89,204,46,227,66,116,169,81,137,135,172,171,209,227,51,251,170,64,19,189,124,90,232,34,109,31,167,29,57,61,85,74,111
 ,146,9,32,240,125,57,12,3,254,93,151,226,55,71,28,186,235,255,201,169,227,166,207,102,216,115,236,30,110,125,198,21,91,189,133,10,201,15,15,130,184,240,204,105,14,87,79,119,101,197,173,193,82,163,108,17,198,20,15,81,210,185,91,178,66,214,52,21,198,196,41,241,192,184,150,209,238,41,4,53,250,153,207,165,90,228,143,112,136,202,196,47,69,52,105,236,29,5,243,235,122,144,183,6,44,217,6,162,157,57,220,226,174,35,172,31,54,201,49,175,13,40,157,243,184,69,89,159,34,50,152,132,253,91,126,26,32,137,63,127,92,134,46,116,84,183,18,216,253,102,204,117,240,205,202,210,148,141,113,166,212,179,154,175,182,182,81,71,7,21,171,107,13,222,234,168,106,8,120,58,252,200,46,117,11,37,35,175,82,134,26,199,73,99,174,41,54,145,1,234,121,2,116,130,153,124,211,208,227,208,32,54,234,8,193,4,28,235,139,221,206,202,178,145,221,242,52,203,39,228,213,160,117,248,203,210,18,212,175,186,108,130,131,47,97,127,175,177,136,40,225,18,144,114,10,195,102,31,152,103,77,92,128,37,38,158,41,33,199,11,80,124,174,194,74,7
 6,189,10,33,249,93,191,206,38,140,160,83,164,77,2,30,47,161,188,200,115,185,152,16,243,126,90,43,142,158,53,204,130,110,127,218,236,192,21,128,131,154,194,132,182,41,184,24,60,45,39,12,104,146,232,116,79,63,136,188,251,231,59,137,242,90,62,50,201,56,186,119,118,15,120,117,246,164,103,195,245,204,20,195,220,234,228,137,224,186,253,173,153,134,17,107,126,122,89,232,52,59,16,133,17,92,171,41,142,110,97,112,74,150,63,119,26,160,42,126,129,197,84,227,61,239,10,23,130,154,42,93,208,109,213,219,17,108,128,236,100,63,241,178,87,65,151,116,110,0,16,170,71,241,254,203,122,157,234,42,117,78,77,237,38,206,63,54,200,46,250,122,113,167,147,4,137,68,61,158,164,227,122,142,22,220,175,214,190,84,27,133,17,215,111,16,27,223,15,67,92,81,185,137,133,26,229,197,229,189,37,188,151,142,230,234,164,13,35,131,14,61,47,242,82,238,2,84,146,77,146,86,109,117,152,179,246,225,203,94,8,50,147,217,246,182,173,147,68,3,246,11,192,141,0,115,173,19,208,101,23,203,218,222,98,87,168,212,27,145,29,61,212,142,153
 ,53,104,168,13,249,27,33,43,150,13,231,134,143,75,207,199,66,174,8,131,196,184,61,205,87,13,195,188,234,196,220,185,26,137,146,164,63,255,209,206,74,216,154,193,119,181,236,119,83,127,152,145,188,41,249,228,99,96,160,6,146,192,41,143,244,207,200,135,105,186,161,170,117,168,62,194,59,135,237,30,48,254,177,27,123,155,109,11,31,86,69,212,188,29,74,4,210,90,100,170,89,56,45,105,128,117,102,31,159,5,45,40,166,181,178,159,6,189,239,247,70,94,103,17,163,25,54,6,209,24,3,118,48,82,179,31,48,245,56,136,219,158,35,212,111,217,122,240,8,200,189,54,201,91,102,174,12,3,251,155,153,0,235,90,62,19,255,123,149,80,99,148,76,76,87,255,174,173,57,88,169,4,101,32,218,245,49,96,169,71,139,155,37,183,48,215,120,210,113,18,154,165,129,161,44,107,49,235,42,167,180,85,2,163,61,202,236,52,101,167,155,106,215,122,36,72,210,210,209,91,139,75,6,134,98,106,211,61,189,8,175,107,75,82,79,160,71,179,189,250,188,173,13,30,132,156,229,19,200,170,177,203,41,109,251,143,144,130,155,192,131,163,196,208,43,145,13
 7,154,4,91,14,86,101,202,114,38,240,103,41,245,83,211,74,169,139,162,236,124,111,75,61,161,7,56,156,13,158,80,210,32,100,111,10,104,121,151,180,81,12,47,49,137,116,110,211,254,40,35,197,5,92,79,39,167,170,3,208,113,155,203,203,195,115,94,5,77,0,122,171,247,193,79,35,33,84,60,109,64,184,179,164,221,43,34,1,85,181,162,28,50,6,23,173,8,141,4,71,187,79,68,75,80,235,44,175,246,142,209,58,24,183,114,224,133,140,106,242,151,99,231,191,69,66,250,150,112,131,104,251,5,203,247,229,238,255,169,46,47,126,130,138,51,71,153,187,65,119,197,157,24,191,158,216,3,47,36,58,179,253,161,66,134,144,108,251,118,26,115,141,10,14,253,31,156,185,108,42,45,19,221,77,122,43,196,237,18,151,3,28,62,61,153,153,44,5,193,221,15,109,148,184,124,15,243,23,243,221,200,29,209,66,34,138,167,201,223,112,31,130,255,231,237,66,183,12,235,146,199,111,92,68,131,106,67,59,170,168,53,94,55,69,61,118,198,91,221,190,96,117,225,75,247,33,85,189,10,145,70,175,11,239,146,42,176,24,41,142,61,112,129,174,135,17,20,81,27,164,7
 5,111,251,207,53,199,250,12,142,77,188,33,209,6,231,96,86,218,247,1,0,143,49,162,229,187,127,157,250,180,124,183,222,246,112,125,60,123,253,208,61,196,205,198,83,215,142,17,46,64,5,49,4,248,124,10,84,227,138,220,85,140,196,186,209,185,156,193,128,232,55,125,92,35,100,193,9,123,87,55,28,246,40,173,219,160,154,206,85,113,101,117,36,199,85,174,159,123,8,22,98,81,71,236,226,97,90,71,198,64,79,238,21,51,50,145,188,121,102,49,165,31,245,161,34,26,2,166,241,235,131,184,77,60,132,254,25,88,228,131,97,218,100,67,247,77,30,148,2,89,182,164,223,39,78,45,162,149,109,218,31,186,128,2,176,225,78,193,77,229,135,188,131,168,137,129,54,52,236,177,15,243,174,171,75,25,147,146,15,210,16,216,185,118,213,204,26,111,158,126,37,12,230,91,138,233,177,49,38,194,103,152,157,81,179,237,149,221,174,38,11,89,160,146,9,150,174,37,95,61,152,0,165,220,30,189,10,183,178,186,117,29,67,227,153,145,154,22,0,8,248,184,4,195,67,44,18,90,130,57,42,140,242,163,201,169,163,167,8,61,224,236,158,75,120,142,181,105,70
 ,70,251,29,74,107,241,53,67,94,253,33,134,13,134,27,82,147,71,230,232,128,172,253,240,161,70,188,86,246,107,35,249,244,15,231,64,255,11,72,52,58,58,116,139,120,143,169,153,218,140,184,162,241,78,183,170,66,34,35,190,190,235,44,90,151,105,54,249,35,237,111,220,28,235,196,162,125,33,146,199,90,166,55,209,3,49,250,236,86,202,89,156,3,69,171,99,156,137,78,3,184,216,37,59,52,237,149,156,118,74,0,154,191,34,171,133,15,70,139,164,71,63,59,115,252,115,29,80,232,148,246,105,228,176,48,78,226,27,17,140,98,171,225,143,113,172,33,198,241,74,35,180,31,78,88,205,118,234,115,79,207,120,120,0,87,106,223,62,225,113,255,183,231,95,103,4,40,69,43,171,114,15,238,34,68,177,109,75,112,164,27,93,239,0,214,166,150,117,56,143,72,72,203,62,85,123,136,185,177,166,125,35,7,164,226,7,0,143,71,189,37,141,77,177,176,31,68,39,66,151,236,55,183,195,22,255,42,10,178,118,223,188,157,220,52,64,185,80,160,75,187,212,90,244,17,30,107,14,201,67,48,30,148,148,223,139,147,90,150,74,25,162,94,91,90,79,73,14,19,169,1
 58,103,182,41,252,37,130,177,59,214,63,135,172,229,15,82,86,85,153,43,12,176,187,110,119,8,75,140,92,67,255,163,34,145,110,150,154,250,178,148,40,138,20,90,71,19,229,196,242,173,227,10,93,15,99,227,116,67,131,55,170,203,17,69,231,141,186,139,210,72,104,164,158,186,143,136,78,242,73,7,245,111,240,2,88,60,29,14,30,11,64,74,196,84,189,227,154,238,40,100,246,97,24,135,91,88,121,102,250,167,205,158,64,218,231,222,170,243,68,4,23,111,172,250,114,185,16,153,218,40,47,197,33,78,201,193,116,25,9,56,243,119,145,10,44,59,202,69,108,254,203,139,67,1,247,167,192,185,199,59,134,240,28,20,122,6,156,115,16,211,12,87,179,83,76,123,73,216,130,45,6,250,197,6,105,175,164,214,21,205,155,116,227,189,6,175,192,157,61,171,79,225,3,188,52,183,24,179,113,183,29,119,209,186,225,59,229,194,118,45,147,166,108,146,125,246,235,74,252,154,100,200,171,19,136,24,196,151,39,205,110,124,164,171,235,77,152,98,186,75,55,221,249,131,49,9,182,106,137,66,115,120,176,219,250,183,137,246,220,13,119,255,172,60,213,223
 ,234,8,146,52,19,142,42,225,76,163,48,170,147,249,132,48,29,174,120,142,14,105,222,47,190,225,2,109,96,123,250,128,121,7,220,92,38,60,101,35,123,153,251,27,208,168,184,204,213,162,12,231,89,19,230,170,69,224,195,37,96,228,217,194,173,105,39,235,234,26,69,186,175,207,87,26,12,149,102,201,94,130,176,177,104,181,217,125,87,238,249,227,14,213,203,216,146,207,203,175,254,253,83,68,136,241,92,116,209,133,17,66,59,17,79,39,100,120,201,167,174,94,42,67,134,222,84,167,118,150,115,4,124,216,85,125,194,39,98,178,245,218,228,185,188,75,49,142,153,217,253,160,119,188,158,56,178,196,27,180,129,124,81,36,90,96,42,205,163,78,76,2,165,63,206,176,59,97,204,159,246,154,207,112,129,54,52,204,126,199,90,5,153,157,189,66,155,14,212,210,78,46,166,96,11,223,241,141,12,152,104,109,181,208,148,190,247,180,236,128,144,132,93,74,174,47,14,12,53,231,193,233,64,107,204,170,139,66,154,84,58,124,182,19,15,76,234,43,4,165,169,225,192,6,231,38,192,98,38,215,107,250,209,115,118,62,9,133,239,230,28,131,16,240,
 143,18,0,52,131,128,117,202,148,212,79,7,73,255,246,25,228,18,111,210,124,28,112,165,168,253,199,3,255,76,5,22,129,138,233,139,207,81,188,192,245,208,15,82,162,73,188,27,126,137,91,57,168,188,216,174,145,153,3,146,143,22,82,107,108,58,23,118,175,248,203,177,26,25,196,11,0,195,229,103,175,180,25,190,151,239,49,19,0,145,114,29,186,197,65,146,213,8,209,116,146,231,54,178,231,54,174,117,120,58,179,117,254,27,208,105,114,58,170,223,80,30,102,206,170,176,12,224,252,219,118,52,173,235,30,53,52,56,44,215,26,179,55,89,80,236,142,119,232,114,136,244,162,23,61,162,151,106,215,42,3,174,185,150,117,154,103,189,191,75,152,39,34,144,220,185,173,88,190,94,234,228,32,12,118,185,6,93,208,171,11,220,142,200,227,237,236,207,177,250,126,233,228,242,199,112,243,52,115,54,229,47,239,136,193,147,5,9,98,165,5,219,79,148,218,202,35,50,231,22,59,129,22,40,174,220,213,58,195,99,86,95,11,124,181,159,248,189,187,128,88,190,77,241,218,33,58,108,139,37,161,67,8,251,186,117,207,210,2,237,57,78,107,197,210,1
 99,39,104,117,116,185,198,43,91,225,194,71,38,63,143,21,139,218,216,236,56,5,202,67,144,161,250,251,220,243,56,203,191,208,40,59,19,96,79,103,97,0,192,201,48,6,108,96,159,53,108,32,217,143,246,95,246,31,189,61,88,31,120,174,167,159,191,27,119,36,54,20,184,246,230,173,244,75,244,143,83,241,243,176,111,165,5,29,188,184,58,111,90,70,44,166,225,95,247,79,236,88,47,115,35,134,93,162,16,31,208,93,211,196,37,218,187,167,70,171,157,48,220,200,142,179,219,26,121,88,142,201,110,66,213,160,160,232,7,191,121,82,194,20,7,237,233,185,232,10,131,201,119,135,252,6,161,129,203,81,227,2,86,197,191,131,224,228,190,165,10,170,131,22,86,204,70,168,64,244,110,23,251,113,163,106,83,167,67,225,240,15,165,165,233,38,224,218,64,16,221,93,44,125,49,3,16,251,92,73,2,224,223,198,129,100,142,223,89,35,70,238,126,105,189,208,11,190,101,166,167,6,162,54,72,121,87,85,140,185,81,27,155,120,132,87,76,97,165,166,114,77,121,135,67,184,237,18,69,77,157,175,147,201,112,26,147,255,139,13,52,172,193,8,185,44,33,241
 ,245,247,253,19,106,134,206,77,12,56,146,113,49,2,62,231,118,185,25,63,164,105,227,137,88,105,178,132,254,190,197,47,130,180,211,204,121,62,189,142,134,19,192,21,253,140,146,220,129,143,92,114,145,77,5,172,221,99,252,193,25,63,63,120,38,240,189,40,188,188,208,93,151,254,70,50,78,136,145,10,217,120,93,59,11,185,125,165,100,56,20,170,206,214,255,142,41,177,216,10,86,136,222,49,86,224,240,53,202,73,117,239,116,77,248,54,88,133,246,40,252,122,192,194,84,95,163,13,68,25,88,164,46,254,128,122,80,93,187,163,209,96,10,138,160,117,228,51,43,155,47,122,144,113,8,220,131,30,45,14,60,83,214,21,140,135,92,240,236,246,149,5,44,45,81,22,95,223,212,70,4,38,150,180,137,85,150,47,191,44,14,194,146,112,0,76,122,100,113,238,237,54,112,226,64,100,232,254,4,176,97,146,161,66,54,35,192,243,101,254,253,219,12,10,233,54,149,195,77,141,122,249,184,178,90,218,136,94,104,175,135,32,171,34,180,151,196,175,95,181,46,231,101,242,201,164,116,71,138,103,252,102,150,96,12,245,37,193,252,140,187,210,28,1,178,
 234,144,10,200,119,9,104,105,167,185,160,179,121,220,72,42,115,147,69,170,214,180,77,145,34,101,9,149,209,220,130,226,63,143,46,28,104,61,46,13,228,243,175,61,5,74,55,88,148,17,139,9,57,16,224,131,241,103,76,164,44,217,16,95,206,241,190,179,9,117,141,91,96,92,67,72,159,140,134,238,248,168,29,144,251,210,144,22,73,236,60,7,46,156,201,74,103,140,222,24,137,90,168,52,213,43,21,78,212,33,68,45,86,166,215,223,21,120,164,201,133,6,254,151,110,61,91,73,26,181,161,60,185,121,30,214,64,168,34,50,55,45,149,109,64,182,97,218,110,133,82,122,237,71,221,248,5,248,235,37,238,44,162,101,242,3,152,20,198,250,237,61,67,154,220,171,86,247,222,195,197,47,151,196,172,245,2,125,21,128,123,154,242,227,196,229,30,100,137,16,20,109,206,48,235,115,57,26,236,134,85,98,250,222,212,111,119,126,62,97,35,105,129,205,185,47,39,4,203,226,32,70,7,187,250,116,95,64,105,145,107,123,68,113,127,5,132,5,13,74,100,233,118,148,52,125,6,230,20,229,184,96,193,91,33,213,9,242,24,165,212,247,151,246,236,193,22,106,227,
 105,177,151,64,130,217,144,13,22,67,194,17,167,81,172,32,211,149,48,55,98,230,19,175,163,9,61,97,152,81,64,122,50,221,139,158,161,20,48,98,236,65,146,59,123,231,227,70,184,108,163,226,251,93,165,123,25,184,149,105,214,75,96,94,13,149,98,169,173,108,18,26,19,183,173,214,139,4,224,135,6,70,143,127,193,135,53,5,171,252,33,122,56,42,185,192,27,202,176,197,95,65,1,59,244,157,39,171,123,16,210,6,9,226,221,229,204,84,33,32,252,136,159,141,43,49,21,61,61,232,87,71,250,237,74,218,4,22,211,167,113,136,229,244,124,234,235,146,43,144,137,28,168,81,99,199,186,109,154,192,191,42,162,91,130,101,197,180,19,217,192,153,92,100,252,5,106,184,92,100,30,53,243,148,249,147,68,12,115,180,79,106,126,38,138,179,145,84,19,241,198,14,72,165,234,60,50,138,29,149,80,251,195,65,144,143,25,250,39,66,250,88,82,23,137,141,28,131,174,233,207,19,72,156,41,193,236,100,47,112,48,21,226,135,49,200,227,144,77,139,217,176,203,22,59,100,64,109,132,27,113,170,221,4,173,203,38,241,73,33,80,116,140,135,137,12,253,161,
 116,146,117,79,123,83,132,143,206,140,255,155,104,124,227,27,153,207,137,226,132,240,142,96,157,56,95,116,33,78,130,13,213,241,95,246,144,100,141,107,115,253,150,195,45,217,26,235,115,92,135,191,215,4,53,137,213,101,171,237,119,233,86,244,40,161,177,31,218,227,224,88,247,37,123,27,89,20,208,17,223,79,174,145,143,233,23,0,77,148,220,59,26,139,55,160,253,242,215,147,38,69,164,4,121,2,49,72,35,118,174,172,57,23,240,86,100,141,151,241,175,92,158,119,63,52,233,248,223,214,129,87,210,190,187,68,117,225,142,46,61,89,233,187,88,24,203,99,162,28,22,217,114,115,137,11,187,208,139,110,106,139,217,139,210,197,204,43,177,17,58,157,101,200,216,199,182,84,185,10,134,92,137,100,153,62,113,2,104,219,31,12,248,57,5,163,20,152,70,64,93,10,173,159,14,33,64,230,190,78,94,51,56,225,156,126,34,195,31,77,245,84,214,146,82,253,37,64,16,164,115,104,84,135,158,3,127,91,250,161,4,231,235,77,33,192,82,236,84,85,204,255,111,248,87,147,212,163,10,152,27,205,88,233,139,185,19,223,221,195,92,187,161,142,242
 ,239,22,25,70,73,60,133,244,206,64,97,124,55,3,237,118,82,64,43,126,209,223,192,185,80,136,84,129,234,79,234,135,152,115,128,113,247,42,175,44,212,76,1,243,152,174,141,22,226,51,184,240,38,198,9,253,0,4,143,23,213,214,166,86,88,11,166,137,110,84,241,251,112,195,30,174,89,168,166,241,222,60,191,143,132,16,0,123,99,22,221,13,208,105,248,236,165,146,223,115,171,34,159,48,114,27,202,85,146,238,169,202,241,59,119,116,42,120,110,207,42,37,41,149,151,24,243,129,202,239,143,142,81,75,5,40,23,226,69,230,68,162,231,227,59,93,26,190,45,18,156,121,121,132,201,127,223,62,227,231,21,112,224,238,9,231,4,93,40,193,75,255,160,231,178,48,100,74,1,103,185,164,162,218,1,244,33,81,181,177,252,189,4,192,32,196,11,202,4,172,59,94,49,80,47,175,118,12,245,233,54,76,149,59,197,4,2,249,109,100,155,16,204,200,186,178,17,200,214,133,145,193,25,31,63,42,248,41,88,54,66,186,91,85,10,156,96,170,119,55,55,44,234,37,186,98,227,136,97,140,238,37,196,48,247,152,97,74,29,18,147,170,190,83,55,57,109,165,224,2,12
 ,82,73,205,28,81,204,124,80,249,107,240,235,10,39,81,232,152,142,161,22,173,30,146,94,107,187,152,120,224,190,237,229,199,43,128,181,91,22,189,177,65,217,64,63,62,248,137,148,138,88,39,18,119,79,30,136,44,74,124,235,61,176,11,50,172,251,19,80,203,86,159,32,227,220,175,22,215,217,70,183,156,49,81,234,241,38,227,146,242,102,108,165,97,254,87,84,22,9,47,78,158,165,176,242,14,29,161,60,137,247,9,192,71,152,74,237,158,184,143,178,70,159,250,190,19,137,251,25,180,195,230,7,114,153,115,77,212,189,18,27,215,150,31,59,101,61,239,250,8,209,101,57,70,16,112,170,221,136,156,225,12,78,140,189,24,128,152,198,189,33,190,66,136,172,70,159,196,148,158,134,220,150,91,106,188,242,233,77,131,21,59,1,38,202,89,45,232,71,69,10,144,39,153,251,43,153,166,58,82,123,30,203,154,251,160,103,108,218,1,90,234,89,237,77,119,137,54,70,196,26,138,132,251,52,150,5,99,7,126,28,113,153,130,221,95,123,71,59,245,149,220,46,248,147,136,200,167,27,165,138,93,75,20,59,235,238,96,157,161,149,167,179,240,10,252,221,2
 07,158,2,2,187,131,216,13,228,5,35,32,75,136,167,162,104,61,45,155,15,201,211,183,226,130,210,174,89,249,123,67,201,85,245,114,85,187,178,182,65,191,58,88,4,86,128,246,40,62,103,2,68,137,36,207,85,82,191,47,127,143,153,133,156,29,253,150,74,51,44,213,94,223,51,115,138,145,171,199,144,251,91,82,184,53,66,243,157,98,19,223,167,52,46,1,148,37,128,231,127,222,145,226,54,132,32,240,162,146,2,95,220,49,182,2,106,250,58,204,51,166,130,153,79,86,165,139,84,104,13,174,156,198,188,185,50,99,47,14,215,214,50,100,200,48,35,186,137,27,192,224,38,40,222,13,152,126,118,55,123,68,140,81,199,152,120,227,141,202,150,102,23,85,153,136,4,134,125,131,197,202,108,46,16,155,54,67,50,75,118,184,115,77,122,88,44,223,143,156,123,31,113,118,142,184,40,3,76,105,142,161,71,90,48,231,0,247,224,127,219,168,86,57,92,101,233,102,64,113,135,129,190,53,144,219,242,24,78,92,185,185,17,8,132,20,170,193,162,83,11,228,197,28,192,206,121,5,121,18,15,75,222,148,33,48,75,215,241,51,166,185,108,89,34,27,109,243,115,3
 3,1,119,60,240,208,183,97,76,178,98,40,26,179,16,49,245,56,182,15,101,31,205,117,233,69,78,144,196,220,34,91,92,128,50,167,46,148,78,0,14,65,136,36,140,154,103,67,24,119,217,122,99,3,11,237,131,192,233,153,57,170,56,120,99,55,177,39,115,161,251,240,16,15,130,137,196,5,97,238,200,189,80,30,86,59,248,165,25,187,228,99,215,177,31,91,74,118,19,255,254,197,218,63,178,29,165,251,195,189,178,148,178,36,78,251,119,189,86,213,12,123,188,125,141,232,92,119,242,92,73,249,200,95,233,158,51,130,139,254,251,11,125,98,141,192,223,34,98,153,2,150,128,173,210,192,170,204,67,172,248,234,161,64,48,221,67,88,128,23,113,7,221,165,127,38,153,130,115,242,46,239,29,96,115,191,75,28,49,174,243,64,74,32,79,71,149,3,18,176,94,155,214,0,147,154,103,204,46,39,244,129,166,77,139,200,21,26,159,45,138,30,126,96,205,252,212,125,173,146,130,48,236,141,17,149,109,183,145,13,255,190,113,104,212,143,3,242,73,208,174,122,2,84,205,252,5,141,169,182,152,186,173,18,154,49,7,233,21,172,178,83,164,131,36,162,191,89,5
 2,33,206,100,202,230,185,217,242,236,13,169,199,126,24,144,121,74,169,96,205,202,160,215,201,205,99,136,173,216,200,181,10,142,8,4,182,220,85,146,53,121,173,16,89,224,111,43,253,208,190,81,149,65,15,231,28,161,0,222,206,61,31,70,242,239,125,46,231,7,114,134,164,130,19,166,131,77,172,8,225,22,187,189,184,183,181,174,122,209,82,17,44,202,9,35,92,108,220,73,254,86,2,189,175,85,97,3,59,109,159,149,2,97,197,181,151,19,121,255,111,42,4,187,51,252,210,3,177,98,219,50,147,242,121,25,89,209,150,77,73,112,120,207,106,153,29,51,33,145,108,144,166,73,12,13,23,213,87,24,139,143,250,188,203,35,21,34,171,138,149,101,36,125,30,151,159,65,232,74,136,227,97,203,91,82,230,119,91,104,81,67,41,242,59,234,51,132,201,152,36,95,39,177,132,249,148,218,146,58,227,64,74,188,1,225,20,14,129,218,153,189,161,167,186,255,100,154,150,22,42,64,205,188,160,240,202,120,203,13,225,35,216,55,37,250,50,129,134,82,68,82,194,111,115,25,14,142,17,119,132,25,4,248,126,98,167,53,242,34,155,184,250,194,71,43,187,148,8
 ,63,9,37,25,244,173,41,64,236,24,161,118,139,151,158,11,32,87,197,200,177,249,253,194,40,121,161,168,238,72,49,252,249,50,74,1,33,137,90,65,54,33,236,139,52,234,248,32,155,152,152,5,186,250,81,241,210,186,224,229,65,78,59,231,11,9,4,15,241,246,172,110,185,243,39,164,247,124,117,147,211,70,226,26,95,251,191,40,210,112,241,222,253,161,116,43,161,200,4,161,86,245,26,210,175,164,210,213,44,62,158,244,213,255,62,87,85,123,67,160,52,211,160,74,203,48,95,214,166,68,9,224,32,161,17,77,23,198,193,183,162,128,181,132,28,76,80,207,102,85,141,150,22,152,200,109,209,152,90,100,191,219,132,245,181,55,201,35,8,76,214,120,9,248,201,181,31,127,88,107,227,7,129,173,192,29,97,151,37,197,131,219,97,95,108,47,206,21,126,119,231,197,6,149,243,14,231,165,126,172,237,25,133,153,74,2,135,18,249,166,213,14,198,51,94,99,186,18,251,158,2,218,116,98,182,243,156,191,113,163,86,182,187,13,22,137,69,236,237,16,109,180,148,51,10,38,65,28,194,121,31,142,151,180,70,83,90,161,132,218,109,234,85,0,148,73,12,42,
 235,22,17,113,157,248,179,120,123,44,95,233,28,103,171,221,19,36,251,206,29,72,58,212,64,222,207,104,159,225,119,82,20,178,80,108,160,57,207,61,18,227,239,33,37,65,189,115,242,49,231,92,185,208,193,233,142,9,40,112,217,249,184,127,36,120,108,198,203,53,149,154,14,44,106,13,245,97,190,23,84,4,105,85,120,168,31,75,102,115,155,195,113,84,246,97,114,244,61,141,160,209,96,197,190,54,208,70,27,178,215,242,102,129,113,32,225,152,38,137,251,170,202,220,144,80,38,67,194,148,161,173,177,168,166,92,27,101,227,133,161,150,212,216,86,191,80,216,192,222,71,39,0,242,119,92,22,196,95,246,20,37,174,202,39,137,113,186,85,32,5,4,233,166,118,76,6,223,217,61,244,105,177,199,65,178,134,208,180,212,245,164,224,245,34,33,208,51,75,5,224,0,95,24,163,212,7,210,120,249,174,178,168,121,7,148,236,222,162,44,106,21,48,98,251,100,100,39,78,68,83,120,190,16,73,37,27,126,100,56,135,113,80,240,201,57,111,128,141,166,53,166,237,248,125,194,140,95,46,240,195,58,40,83,220,72,166,202,53,90,254,162,196,73,60,212,
 119,115,74,86,114,125,19,107,36,166,133,32,213,113,141,41,206,158,60,74,133,128,218,236,7,215,121,21,108,183,10,195,96,117,55,114,161,81,131,55,158,189,66,233,228,253,244,53,228,245,51,188,162,206,232,151,9,170,182,16,99,187,34,191,65,141,194,47,27,228,234,255,226,87,76,131,247,153,221,87,67,78,245,230,215,157,102,187,8,173,65,187,113,235,200,45,254,229,119,88,106,231,232,48,73,1,234,11,30,26,48,140,205,139,128,170,33,22,242,151,162,178,149,120,28,83,87,172,108,229,168,79,232,131,47,230,23,97,215,190,54,229,49,101,251,41,34,132,126,112,154,48,28,37,34,2,32,207,61,18,35,244,253,3,101,190,89,209,48,103,173,136,87,146,9,168,135,128,185,177,215,91,101,113,70,204,18,194,195,116,98,7,253,9,53,50,59,167,146,147,25,181,32,52,229,240,115,204,63,184,37,97,127,142,248,120,148,161,139,203,232,162,220,25,176,221,116,69,43,147,28,112,196,202,164,181,198,208,193,19,120,157,126,62,188,66,43,13,99,10,85,246,51,159,244,38,12,205,61,123,31,14,47,189,15,234,146,24,163,235,11,61,225,54,74,116,5,
 44,230,137,212,197,65,215,211,2,226,4,14,120,91,151,151,64,168,134,66,112,194,29,218,39,124,142,242,216,245,130,1,86,216,171,174,137,44,89,101,178,157,208,138,156,39,126,39,234,187,130,75,211,187,229,17,92,179,208,126,146,110,128,109,39,138,69,236,163,185,176,10,249,224,30,192,230,170,207,211,186,221,154,179,0,19,135,87,29,99,145,186,65,51,21,222,9,4,227,204,241,50,179,20,255,172,233,182,193,71,155,67,68,246,223,97,112,240,149,80,154,2,127,17,131,33,0,200,30,171,157,112,176,152,187,139,205,174,149,139,162,186,254,65,61,216,61,85,134,101,198,30,60,245,30,226,15,54,24,244,57,39,238,180,112,222,183,104,232,253,139,160,7,99,19,220,87,195,249,153,143,48,3,80,152,219,55,117,66,164,105,59,40,157,26,166,147,144,204,205,9,123,90,188,82,134,43,240,104,57,116,216,236,117,61,55,181,59,238,157,20,226,69,225,137,190,99,43,230,98,143,109,3,151,51,196,227,87,233,79,196,18,163,5,55,199,162,183,184,16,81,6,128,14,178,99,148,141,21,139,38,49,50,185,233,242,156,96,191,92,184,28,137,76,7,44,134,
 175,152,235,183,152,58,26,204,119,163,142,157,29,239,222,103,197,102,252,184,89,110,7,228,73,20,150,84,69,224,52,214,239,249,21,49,16,5,33,124,151,159,184,206,238,147,172,165,98,15,7,167,187,200,107,64,126,61,46,94,167,109,210,15,21,163,198,224,172,58,85,59,117,253,18,222,216,86,254,227,222,75,55,186,62,90,20,221,81,31,3,171,186,109,25,81,217,19,158,36,237,139,161,154,185,107,141,130,63,78,161,140,188,135,197,215,194,140,89,2,168,176,23,214,202,142,93,62,63,56,70,185,217,57,236,203,163,88,79,199,204,129,42,78,107,213,52,24,252,101,48,18,209,107,151,237,123,251,225,35,42,145,12,67,94,1,97,14,217,208,145,5,152,59,81,99,132,221,99,3,34,212,170,7,145,17,20,194,251,26,225,214,114,96,190,189,199,248,170,6,238,150,166,28,172,15,49,162,245,69,215,141,17,20,208,8,68,100,58,225,83,6,100,85,59,231,42,11,34,194,92,134,158,87,164,208,29,95,57,128,29,240,218,220,25,88,15,190,72,9,202,33,107,120,122,86,117,91,26,69,65,180,6,52,68,176,236,192,241,147,209,208,124,147,8,158,86,136,120,6,0,104
 ,165,92,206,80,40,115,255,64,24,3,255,133,222,192,189,149,71,107,10,169,107,181,140,45,185,97,86,214,247,68,73,221,158,83,154,131,26,13,37,172,89,116,28,128,4,77,214,21,150,208,164,79,190,233,206,132,112,129,230,151,60,207,213,255,193,85,34,210,88,106,136,117,129,227,71,201,145,145,119,145,150,218,12,191,65,25,116,170,89,83,48,60,36,247,13,131,252,106,183,11,132,101,229,122,88,133,218,96,26,31,1,162,231,84,217,135,134,155,238,91,172,132,16,187,126,9,13,191,45,242,10,236,167,107,215,193,212,237,59,222,206,132,185,30,32,108,181,57,154,144,31,205,116,16,37,161,107,33,73,9,3,111,68,151,238,41,96,2,215,157,41,168,23,254,224,74,240,149,199,162,166,181,52,93,48,49,212,193,70,151,83,209,255,243,167,73,204,34,141,208,232,212,213,245,244,93,76,129,87,125,98,101,163,155,98,120,251,58,250,201,55,205,251,219,155,85,250,0,29,111,7,247,252,231,187,59,136,177,120,214,32,81,54,49,100,112,125,72,86,104,10,29,231,124,19,226,231,9,185,44,213,164,89,110,127,18,111,105,183,208,145,199,146,57,83,1
 97,70,92,235,117,49,205,149,117,109,152,29,198,226,248,62,253,37,144,131,110,158,33,110,122,165,233,46,192,159,59,1,60,201,98,30,73,248,44,253,176,138,139,185,47,39,248,221,121,252,74,4,41,177,242,65,146,103,112,25,16,94,214,187,121,124,104,111,43,226,66,196,49,85,252,243,58,25,187,3,121,99,108,64,187,1,97,56,55,164,185,143,67,229,44,201,242,232,91,158,149,248,217,10,123,253,58,183,66,129,78,18,246,162,22,124,123,243,231,51,107,112,26,26,245,246,150,95,231,242,185,208,228,194,162,253,206,237,117,233,211,16,206,50,211,154,56,16,59,255,189,122,204,171,206,84,218,231,107,85,157,116,250,195,213,209,126,94,187,182,175,92,51,89,141,130,56,131,177,35,24,18,42,104,206,38,71,252,78,81,142,43,74,98,98,10,26,252,229,47,215,183,69,82,146,212,50,167,123,61,228,203,200,162,185,59,158,50,219,79,56,236,232,254,26,83,77,75,227,40,193,248,9,35,222,87,164,33,40,106,48,114,141,160,237,20,168,115,86,14,143,225,99,184,73,91,26,190,187,255,38,119,159,54,232,2,70,137,209,177,226,150,20,17,54,38,5,1
 8,43,147,69,58,18,159,19,13,195,163,28,2,152,184,231,29,16,117,144,66,171,10,174,11,184,170,203,38,213,58,77,199,203,192,56,41,236,77,98,224,164,132,69,37,119,221,40,169,32,174,197,203,131,52,99,134,26,34,64,254,178,101,9,221,8,212,129,138,182,65,138,57,122,89,106,65,119,160,76,188,112,118,207,145,5,14,204,96,197,51,72,108,84,155,74,173,200,79,195,163,50,178,95,171,117,180,208,141,92,179,145,63,185,197,99,171,139,150,68,114,75,36,8,104,112,20,92,32,84,197,156,200,24,147,161,128,175,106,165,177,142,241,60,94,227,105,63,32,88,103,236,81,166,164,220,43,197,58,83,121,3,241,223,94,69,73,104,46,241,45,10,139,140,165,185,96,112,251,46,226,51,33,218,215,208,21,206,187,50,70,221,89,90,127,96,45,226,160,96,80,224,162,90,157,224,107,64,10,102,10,104,14,245,195,217,207,171,173,37,47,209,104,235,142,226,195,235,29,139,184,123,189,36,74,53,82,121,1,49,33,14,165,25,177,14,1,118,19,31,5,107,121,173,100,4,6,130,220,204,231,170,221,226,56,61,217,210,131,188,85,221,131,186,214,65,104,188,117,6
 7,6,181,239,99,47,39,173,7,79,83,89,164,215,188,192,100,175,25,82,56,23,154,125,226,209,133,49,244,128,182,74,223,190,197,221,178,7,88,108,34,194,254,200,3,112,13,77,251,88,41,180,39,46,181,172,227,228,180,158,48,174,171,208,255,65,66,168,28,137,56,169,94,12,62,186,13,60,254,93,109,167,96,118,29,206,238,66,115,142,128,32,254,159,18,180,119,80,55,253,50,52,4,159,211,124,97,217,87,131,125,99,124,12,190,68,35,224,215,38,89,251,105,220,18,100,208,240,53,144,144,227,140,89,14,105,112,3,223,170,245,184,223,79,141,197,170,197,82,26,59,106,58,222,79,178,1,85,19,0,70,2,130,139,188,248,8,93,164,58,161,216,106,13,232,172,77,207,182,45,85,135,140,144,160,103,178,164,244,144,161,18,178,142,56,126,166,82,189,153,172,99,51,220,201,117,66,231,51,48,220,230,36,42,208,41,188,73,249,156,175,235,119,112,178,43,22,99,117,97,179,255,100,146,232,135,246,217,87,17,150,223,202,27,126,47,24,215,178,62,24,54,185,162,233,123,151,48,88,224,44,73,200,178,177,169,82,53,139,241,123,29,115,169,232,97,218,19
 8,122,37,35,0,151,30,7,133,123,62,118,184,191,240,1,98,6,119,72,76,48,32,255,76,52,251,188,16,89,239,77,4,70,127,229,217,182,186,153,64,85,205,85,38,87,239,63,5,247,161,245,69,212,5,150,249,36,39,188,229,13,166,221,42,180,219,95,124,96,117,109,163,174,82,127,250,82,84,196,229,197,54,228,44,254,69,210,175,122,230,77,236,118,150,92,31,216,116,222,238,65,121,229,204,47,192,115,59,118,176,185,190,215,75,63,7,203,219,67,133,119,181,43,20,163,139,84,109,234,203,79,92,226,11,82,184,18,248,56,20,141,144,76,148,19,231,128,27,110,194,6,126,123,163,16,17,148,124,52,64,181,136,149,162,180,169,33,105,78,182,231,7,27,96,201,40,140,98,83,109,203,195,135,36,245,91,227,231,149,112,144,215,202,170,143,239,195,185,103,113,148,2,77,82,111,90,113,77,10,49,168,227,194,178,155,254,151,8,61,14,116,235,84,12,159,242,69,81,22,219,161,226,196,19,25,4,69,116,12,142,82,247,191,222,209,221,140,67,251,79,210,130,121,83,196,131,251,123,113,84,99,196,170,10,154,169,90,153,141,129,110,154,244,18,134,130,155,
 208,31,166,224,29,119,87,42,98,28,85,70,7,242,22,94,103,180,61,0,19,123,73,246,12,101,13,130,149,12,23,250,158,106,23,147,107,255,2,147,5,146,194,21,166,165,195,156,162,204,75,79,255,127,211,240,128,129,208,154,160,18,122,161,116,208,54,174,96,120,44,250,125,97,48,147,204,136,137,175,172,244,136,248,184,197,159,48,149,175,94,122,255,6,103,194,209,236,88,201,67,58,118,180,250,233,55,91,122,199,75,33,116,169,179,207,126,165,82,97,54,186,241,224,63,74,46,39,46,30,20,230,157,64,124,123,49,33,169,135,221,99,224,204,78,31,11,174,116,52,110,46,42,101,135,74,67,246,168,6,153,214,118,100,221,2,83,37,31,255,245,36,106,157,30,52,189,93,34,160,53,24,16,160,41,231,105,246,159,50,150,139,12,238,29,28,136,173,234,38,201,95,12,162,208,241,153,152,196,103,176,122,72,15,222,243,113,65,183,21,246,10,82,233,7,231,155,17,185,123,240,65,51,116,26,79,193,20,64,38,152,163,117,176,1,227,228,169,36,244,181,252,238,237,11,223,182,118,234,154,70,10,221,135,71,74,18,88,164,137,72,221,145,31,116,169,8,23
 3,156,253,147,159,211,74,95,75,40,229,232,129,51,31,150,217,199,142,94,153,104,81,99,51,28,29,236,248,138,132,177,33,102,237,8,250,22,6,182,215,241,41,26,145,33,151,126,141,211,140,224,169,2,193,120,57,253,9,40,160,202,77,21,111,199,206,75,65,116,128,103,8,186,9,51,147,82,168,48,53,4,145,45,163,100,188,104,111,173,33,131,216,60,234,32,193,4,63,175,11,69,106,218,68,185,53,23,115,45,85,105,158,243,199,186,58,105,19,206,165,218,138,23,54,17,127,250,134,204,94,239,132,70,157,159,125,12,103,35,151,44,92,135,245,15,72,174,194,143,71,102,172,154,226,185,72,156,248,232,142,146,157,130,91,2,147,187,248,60,213,34,128,37,10,173,212,238,15,208,117,62,3,238,46,123,19,253,249,95,167,165,23,72,128,5,28,17,116,55,59,112,23,246,2,50,164,80,183,207,195,23,120,131,150,169,149,109,188,160,97,172,120,22,190,208,191,133,138,241,97,13,21,56,138,191,64,223,222,248,202,148,8,220,116,113,41,229,149,67,36,55,192,68,27,39,176,231,197,148,196,160,110,198,44,132,220,110,81,190,157,236,174,140,65,178,73,1
 59,247,254,56,81,97,64,185,38,157,165,242,161,49,186,70,193,26,57,121,101,155,232,157,102,102,231,16,187,29,29,57,123,61,214,43,6,157,41,159,76,175,233,149,151,241,98,253,151,6,226,238,199,46,142,178,1,54,119,20,169,129,87,229,55,67,86,59,255,123,168,122,188,195,162,137,149,158,77,71,164,194,63,96,49,166,174,250,37,125,235,140,175,205,223,110,123,187,145,176,148,58,31,253,244,88,144,11,189,18,108,132,179,10,217,3,160,92,85,33,215,1,209,161,149,12,51,244,57,35,252,119,75,159,155,223,147,180,60,61,67,64,169,235,91,68,181,0,159,153,230,236,251,9,39,117,128,21,128,171,98,227,50,1,69,104,94,51,215,125,9,94,101,33,209,12,15,91,113,244,64,187,251,97,32,186,210,96,89,87,60,27,166,66,90,143,244,39,131,11,102,161,162,118,0,84,57,45,229,215,244,249,102,22,199,163,178,156,40,187,117,182,111,200,175,223,32,220,21,39,8,14,144,121,184,77,3,79,236,248,174,108,124,63,101,176,66,98,119,170,104,167,187,78,143,239,64,218,112,196,32,143,254,131,127,178,148,85,223,33,174,181,35,132,70,241,2,173,4
 1,147,178,190,158,42,42,215,13,16,124,70,100,114,195,225,190,115,203,209,46,15,97,201,9,199,173,246,78,100,52,86,224,153,201,127,169,240,75,206,135,8,178,249,149,237,175,138,113,43,110,105,50,120,172,104,14,166,225,244,56,148,26,96,207,85,200,230,152,172,90,205,22,95,150,163,85,144,106,249,19,145,143,2,198,81,162,98,252,89,245,177,102,254,123,32,231,116,243,26,68,255,206,222,213,12,174,0,110,189,114,51,31,121,36,15,82,118,170,159,241,53,189,142,241,156,241,29,255,201,213,235,98,212,127,48,126,169,87,252,41,255,83,95,9,125,133,156,148,222,138,176,9,65,92,177,165,47,10,183,253,168,117,78,181,134,190,61,70,22,112,28,45,112,76,154,200,92,73,4,186,47,5,252,241,22,203,59,98,33,3,40,117,15,179,116,158,222,132,98,45,211,10,193,22,246,250,178,160,125,106,5,21,4,16,252,76,66,11,115,50,240,77,41,29,150,136,32,62,181,92,178,83,236,69,127,117,160,45,76,42,142,231,73,189,102,36,41,151,97,62,209,180,22,187,231,98,107,209,186,86,62,21,124,162,141,136,157,167,225,226,102,9,216,5,200,225,222,
 72,155,147,148,254,59,170,76,132,104,88,235,85,233,127,234,69,173,238,79,174,225,50,77,179,82,72,99,108,184,26,50,245,93,91,21,25,205,78,124,199,130,15,247,6,121,207,241,42,67,28,21,87,193,4,102,156,255,201,146,19,75,79,34,62,244,135,176,185,192,30,175,18,44,157,219,143,103,57,56,47,85,10,156,162,227,225,56,125,20,40,184,181,100,124,226,95,86,198,217,248,100,115,90,174,174,215,139,104,31,101,152,226,3,209,32,12,221,43,135,81,182,68,77,38,253,55,53,152,240,92,161,168,103,157,237,164,161,200,177,153,42,161,71,102,20,121,67,26,217,133,135,39,98,209,10,48,22,94,181,92,208,200,51,55,74,126,89,3,194,210,67,167,173,131,50,132,111,45,147,252,250,253,124,4,63,155,178,228,10,216,79,90,210,88,17,120,190,206,9,163,245,193,109,4,9,118,220,60,31,232,96,201,165,214,196,209,29,91,235,13,40,215,175,193,113,23,62,158,152,184,29,114,67,141,127,115,154,80,36,87,49,96,154,60,157,244,70,8,140,54,129,91,51,132,104,122,162,62,178,24,71,231,203,63,140,155,67,246,8,19,243,100,55,254,139,11,185,150,21
 2,107,53,108,189,191,189,139,194,251,11,244,64,108,96,10,30,144,132,85,117,25,186,6,12,122,45,43,212,21,152,120,84,162,191,239,151,85,31,112,253,176,104,238,80,69,167,170,215,173,96,84,131,225,59,187,88,49,135,244,176,214,15,92,140,169,235,41,205,251,211,43,3,141,72,110,228,200,152,167,36,112,82,19,118,92,75,148,244,6,243,11,110,30,29,190,227,239,41,71,142,93,7,245,54,40,209,156,177,46,50,162,243,153,64,235,90,161,151,124,249,109,147,56,150,178,213,236,248,15,93,132,194,179,29,141,126,13,242,205,230,36,210,145,225,241,228,16,171,130,201,23,233,170,142,110,121,87,118,111,216,77,130,163,149,148,177,158,233,26,168,0,134,197,154,188,187,79,39,47,1,118,225,134,143,130,49,151,81,241,34,69,14,223,245,208,56,31,254,136,93,54,122,185,124,142,4,226,188,67,244,214,23,167,208,83,34,125,253,58,226,225,22,240,244,87,234,236,226,7,66,83,220,98,199,150,91,59,82,200,164,144,128,234,156,54,81,206,70,95,26,57,114,125,92,220,30,87,79,234,204,52,129,249,57,108,235,206,82,171,14,4,228,180,3,193,1
 29,69,215,5,143,144,223,3,49,0,17,145,50,89,255,177,53,189,191,167,188,72,234,174,247,41,40,202,137,231,34,249,192,245,170,201,22,112,77,211,153,137,110,221,64,160,86,147,167,218,153,130,228,113,176,119,29,161,137,102,73,161,240,46,156,166,158,70,159,27,95,247,89,148,219,55,123,129,86,222,61,161,167,92,3,135,129,163,25,117,72,65,161,21,127,74,192,229,90,152,89,14,243,240,128,9,169,205,24,156,120,163,17,45,246,117,61,56,167,175,108,20,242,13,193,59,31,164,40,172,54,15,11,199,179,16,120,60,143,91,204,96,14,240,228,164,66,83,217,241,229,132,51,47,122,192,73,93,242,74,57,209,130,96,148,179,129,84,158,58,180,175,11,248,138,28,21,156,154,0,41,74,199,185,12,227,202,121,187,98,122,146,85,82,162,84,241,99,164,153,66,171,84,122,77,91,103,73,245,98,5,177,208,157,104,129,176,108,121,199,55,246,1,20,178,59,38,103,131,113,138,47,218,74,160,175,241,42,219,61,86,59,246,42,248,21,33,9,124,212,81,101,147,39,130,34,82,94,60,32,25,6,254,11,114,218,238,77,14,11,170,104,56,11,78,14,65,95,184,175,
 172,116,141,64,104,188,111,113,103,155,92,253,197,56,60,180,112,6,250,166,30,124,49,143,76,198,21,229,196,75,101,169,59,180,82,191,47,179,17,17,234,163,200,149,134,43,181,93,40,233,17,104,138,59,9,89,44,134,35,51,141,3,111,58,50,242,73,210,76,172,187,80,46,76,105,44,52,50,28,110,107,109,210,50,213,23,211,99,125,75,78,148,157,199,219,12,93,246,42,33,177,185,2,225,238,36,228,222,135,191,132,240,27,183,234,72,176,227,0,212,247,129,8,121,243,57,142,110,255,188,222,29,144,208,85,231,203,89,205,89,220,202,196,92,86,207,211,187,149,109,92,142,26,222,228,235,190,230,159,202,74,19,44,163,128,156,19,227,202,25,67,191,101,151,239,197,189,180,199,86,180,164,231,75,3,183,218,12,27,196,146,192,133,226,217,73,229,78,106,200,56,56,214,210,253,224,243,154,202,127,61,175,245,15,238,34,5,167,9,95,2,243,161,227,95,170,40,222,205,189,112,54,2,150,60,238,192,137,93,13,228,10,25,141,140,172,137,92,199,79,89,183,211,38,133,225,121,29,140,144,220,240,49,237,95,138,222,142,207,113,145,14,55,220,138,2
 24,11,64,202,67,74,102,235,214,19,17,241,61,190,66,180,100,170,98,97,253,150,140,234,124,90,69,26,7,233,116,108,114,209,114,124,88,9,251,33,214,60,18,43,12,57,192,56,191,37,126,132,164,108,95,245,221,208,248,84,231,167,31,15,107,16,172,106,130,156,135,150,128,42,53,191,240,87,168,120,66,17,76,216,51,217,96,87,192,138,18,131,94,83,212,43,116,236,243,38,114,199,205,99,224,189,138,105,1,61,131,6,248,70,230,252,248,155,54,47,108,238,39,206,78,236,104,181,32,8,198,18,255,1,50,165,33,218,111,225,66,141,200,135,1,164,192,221,77,238,166,113,191,24,13,188,226,89,98,73,106,60,121,191,230,150,234,124,124,158,83,183,153,199,67,96,206,158,30,154,5,186,83,170,13,74,222,24,141,108,208,190,42,58,121,43,166,159,68,140,66,221,254,122,208,10,1,117,97,75,237,126,207,43,15,221,153,18,217,70,50,98,209,94,10,247,131,133,210,32,49,220,28,33,250,1,116,161,6,157,181,205,37,117,28,211,185,141,39,4,208,85,224,13,43,209,72,153,161,40,30,228,134,198,46,77,73,235,45,149,6,119,142,8,191,214,179,199,62,162,
 38,37,81,200,235,157,171,118,116,67,150,126,106,39,233,100,102,215,159,115,232,235,12,149,33,58,75,229,198,95,128,63,111,151,222,127,63,0,133,7,85,95,154,156,62,199,96,177,74,13,211,144,78,46,150,73,148,115,79,167,244,170,69,96,176,39,82,36,159,17,41,168,255,153,116,83,207,0,18,160,226,1,130,114,8,237,13,234,184,135,55,93,208,23,152,194,174,155,184,235,161,229,4,35,141,130,24,150,163,80,120,212,147,99,32,18,221,251,32,36,74,211,166,219,115,8,179,24,208,115,148,136,145,103,217,205,124,184,246,12,150,141,255,97,140,124,12,219,50,92,19,19,195,108,128,164,249,46,48,39,99,133,130,174,225,20,157,50,241,15,23,253,178,245,46,113,199,104,76,7,79,235,234,110,12,8,107,168,81,55,106,213,230,55,50,211,16,127,110,146,204,110,90,236,151,56,148,236,146,198,253,166,87,19,170,35,179,116,216,161,85,138,147,14,72,173,111,231,19,17,253,188,235,19,32,22,171,16,112,211,141,141,69,158,9,32,159,101,122,19,83,218,93,237,202,57,163,13,108,140,216,244,146,19,56,209,180,228,102,248,129,120,174,173,181,1
 53,86,17,50,161,131,228,201,19,61,156,7,197,170,64,255,151,19,22,188,116,66,141,9,235,211,251,90,59,36,118,89,194,111,60,179,143,168,201,29,32,227,223,147,60,141,46,163,124,112,177,55,142,32,176,185,7,170,203,123,132,100,66,201,182,63,169,190,190,225,214,115,51,157,253,43,170,245,205,148,16,14,28,62,225,181,171,154,161,140,106,118,171,114,116,181,67,58,205,92,98,6,188,19,51,113,149,119,155,85,68,237,180,204,156,180,118,71,140,5,198,200,134,92,108,150,235,226,185,39,22,200,196,78,196,174,51,141,43,65,48,140,249,243,212,185,18,202,167,62,16,195,31,131,99,154,204,144,70,29,7,40,37,230,17,230,105,15,166,64,51,3,170,63,36,30,162,207,58,78,24,194,209,211,82,25,56,130,92,190,200,160,229,207,179,166,62,201,9,204,8,42,208,171,233,67,201,203,135,74,119,179,193,10,238,159,181,1,216,156,55,10,204,91,95,17,102,105,166,227,142,10,248,16,219,150,241,39,124,31,245,38,58,132,104,150,55,94,31,157,124,178,35,244,179,76,192,243,26,178,216,111,55,67,127,252,120,215,12,125,228,253,44,236,1,143,16
 5,172,73,174,207,75,107,40,63,155,250,200,239,209,117,51,172,60,62,152,225,224,29,221,166,251,177,55,22,144,69,19,118,161,63,198,36,7,75,139,225,55,149,20,99,140,14,232,132,61,128,189,24,39,77,157,155,215,133,41,147,35,18,123,187,11,184,109,119,31,174,45,111,103,6,11,24,243,31,44,171,176,149,14,195,199,78,153,47,171,39,70,21,0,186,217,124,203,55,6,110,165,101,64,216,87,250,88,173,115,134,0,53,94,13,143,227,248,126,43,97,238,24,12,167,122,193,129,209,158,50,35,7,6,145,201,134,154,23,122,104,135,188,7,105,54,14,118,124,222,248,44,178,22,136,153,227,183,203,89,115,71,175,115,77,143,42,105,26,101,203,224,8,191,69,180,233,150,74,116,220,12,152,153,216,90,224,165,139,136,124,202,132,186,12,245,198,242,195,63,132,41,225,138,33,90,159,228,216,209,84,73,11,115,176,38,103,44,139,77,210,89,78,71,27,90,59,51,199,70,167,227,213,151,172,58,243,242,58,177,228,4,54,246,28,177,75,28,238,52,81,124,254,177,150,173,124,164,109,79,236,233,10,240,193,73,154,68,72,136,255,68,51,75,21,199,72,94,153
 ,199,205,138,130,91,7,74,229,193,172,78,6,13,217,218,201,59,187,42,239,155,115,250,253,86,150,248,198,161,179,97,45,110,103,153,228,198,23,104,47,83,227,219,62,110,20,133,231,241,42,194,211,167,55,253,12,90,230,81,10,32,10,55,96,22,243,117,94,55,99,93,196,97,165,156,3,197,126,143,230,182,112,160,248,140,166,8,151,49,204,233,104,112,74,106,1,171,193,190,88,255,20,156,24,44,231,214,232,33,1,22,140,237,83,26,8,50,150,247,25,76,143,111,7,14,59,241,117,118,147,227,160,13,249,187,8,214,97,64,114,211,75,143,231,250,102,192,246,93,79,2,135,194,162,221,131,115,99,51,151,22,130,107,110,5,162,58,67,204,115,94,170,21,167,102,85,2,158,254,201,30,107,66,41,35,216,108,179,72,220,194,168,178,60,184,62,251,217,204,64,198,146,170,118,15,103,246,255,242,185,245,154,233,22,231,156,108,229,143,177,15,191,183,170,71,98,110,41,159,106,84,183,229,120,167,49,43,170,243,13,209,171,226,192,224,224,132,169,30,67,145,202,21,218,161,10,97,32,140,79,128,74,89,176,53,95,235,173,75,68,195,115,77,3,70,240,20
 7,60,115,149,199,149,176,243,72,27,32,254,189,75,194,53,69,17,57,203,112,9,65,146,49,141,79,199,84,215,192,79,115,131,157,212,41,10,63,12,49,167,62,88,3,41,42,214,133,249,234,242,100,46,135,247,89,210,105,30,134,209,232,2,5,75,218,47,82,91,49,8,235,140,191,137,200,47,211,31,221,176,224,245,80,87,58,234,126,65,209,249,99,209,159,10,42,233,22,167,176,117,123,105,227,126,154,107,216,165,108,225,193,135,51,24,75,104,83,89,52,101,145,143,99,51,165,51,174,21,56,163,61,135,109,1,97,25,203,59,157,78,206,10,190,50,254,26,92,21,75,6,234,27,251,164,121,12,86,250,117,106,120,189,184,42,218,36,184,140,141,199,80,227,54,125,63,251,2,240,125,204,106,134,194,98,174,28,125,10,243,54,244,149,245,207,61,178,138,120,117,232,155,179,110,145,41,176,83,130,179,224,216,185,150,181,59,195,49,115,128,159,149,201,182,230,120,236,156,41,183,217,233,251,94,194,171,249,148,197,213,111,26,91,177,24,4,71,57,222,98,46,6,113,33,195,192,180,191,0,115,183,38,130,254,119,43,144,10,98,242,109,49,167,233,61,0,4,6
 7,194,130,62,35,230,180,86,174,73,41,154,147,188,218,79,30,52,208,250,40,205,108,120,6,171,254,193,18,164,182,131,200,71,121,59,213,10,133,223,67,69,187,38,166,58,124,98,158,49,220,109,73,66,214,105,72,21,84,228,89,189,178,34,203,255,217,2,108,185,222,226,244,212,167,198,113,242,255,110,29,196,156,213,198,235,24,96,139,47,152,96,1,163,81,183,237,66,181,131,38,88,171,155,16,198,171,238,15,90,2,77,238,47,26,29,199,14,206,66,43,147,157,245,199,156,122,142,112,45,18,177,245,165,216,54,69,59,22,57,156,72,193,230,45,136,225,115,60,75,189,96,248,221,228,85,140,14,182,114,138,78,40,250,250,45,80,204,208,148,35,13,65,5,165,25,231,161,60,224,104,248,44,249,88,82,246,143,97,171,250,107,219,72,233,126,138,137,124,21,68,91,181,227,57,142,181,240,227,194,21,239,53,172,157,84,57,112,205,153,103,38,198,91,101,216,152,251,36,92,78,123,194,196,249,130,231,186,45,76,202,93,196,137,23,25,30,114,210,202,113,39,235,86,236,88,242,230,236,105,88,105,134,48,119,57,119,163,54,218,92,66,1,100,197,168,
 83,218,225,183,92,157,140,205,186,91,186,173,4,76,243,32,81,253,91,160,22,234,211,3,4,66,20,79,156,237,204,222,29,223,78,181,216,252,124,213,240,104,86,18,22,239,181,9,54,238,5,6,95,129,89,125,9,246,59,238,178,35,113,95,105,129,199,235,104,196,26,8,5,246,155,164,90,27,76,141,70,61,250,184,245,101,253,184,12,10,120,117,111,169,155,252,188,208,157,244,39,29,249,221,244,55,177,103,233,30,198,12,28,107,2,153,145,128,240,129,53,242,114,39,124,157,217,239,17,89,181,152,56,46,46,250,4,203,76,178,214,71,130,14,93,195,49,239,18,52,25,185,155,195,206,98,29,57,209,5,65,136,198,117,177,104,193,128,117,26,30,126,69,64,121,175,156,97,216,151,240,81,28,46,177,230,5,199,170,236,232,36,10,22,168,89,131,113,222,230,103,49,140,79,18,8,26,130,209,129,56,148,44,178,203,107,147,24,69,250,58,166,122,74,46,55,9,115,79,173,32,27,15,157,35,126,215,217,92,74,165,44,241,149,249,84,55,122,5,252,232,168,155,65,215,94,158,102,228,187,253,222,19,120,21,4,22,18,186,122,23,135,182,155,208,6,139,216,229,253,1
 19,119,52,142,7,246,7,107,207,163,214,138,23,96,44,230,19,172,160,220,199,53,108,112,132,142,224,39,47,125,175,235,142,23,70,108,231,176,17,132,29,162,51,161,230,236,47,41,173,207,28,97,230,32,111,129,71,48,228,62,59,198,145,10,161,29,103,145,41,39,166,4,139,24,71,214,167,10,150,41,232,235,221,145,199,254,18,109,33,52,74,30,155,187,47,116,61,207,5,99,149,102,11,177,26,148,172,226,40,30,216,33,237,164,98,14,43,216,226,206,0,82,11,193,186,75,50,41,136,242,133,95,35,75,133,112,215,188,60,159,208,176,158,51,254,254,157,62,179,23,239,98,90,56,195,37,211,3,13,67,18,195,129,211,148,234,164,57,99,207,10,72,97,128,145,121,234,43,223,34,101,210,64,221,158,197,63,244,130,244,153,232,11,86,91,133,48,106,43,162,218,64,164,161,66,221,39,227,94,208,100,150,229,120,98,234,81,173,57,187,113,208,86,54,74,0,58,42,164,17,235,168,30,67,249,174,37,83,240,71,167,179,21,155,5,88,35,39,191,42,214,250,89,1,76,220,67,66,52,12,88,125,131,38,181,55,233,178,138,71,38,129,224,151,169,82,209,231,187,147,7,
 19,172,164,187,20,132,22,83,72,132,210,138,177,144,24,130,122,94,16,129,46,125,171,120,244,114,186,179,90,152,152,41,169,2,221,79,87,123,246,153,219,220,150,180,152,144,152,104,140,124,22,199,12,194,162,168,116,88,56,211,57,156,54,163,59,56,193,177,22,10,118,101,53,98,235,45,40,202,57,240,86,104,149,117,26,88,186,50,231,155,31,170,27,0,161,96,161,219,149,27,121,47,90,72,59,7,83,170,103,96,76,3,231,79,92,200,196,70,174,154,196,123,145,192,149,115,50,99,159,44,255,133,3,204,52,125,193,22,185,32,3,200,169,230,197,23,122,220,126,162,108,155,176,242,72,110,109,69,107,217,3,67,231,116,128,19,225,190,22,161,209,95,103,86,103,176,240,35,211,221,126,191,100,6,47,134,221,13,91,19,150,137,254,110,133,120,22,232,177,245,170,240,162,148,237,89,151,192,92,142,35,232,221,248,115,106,108,209,243,186,177,159,248,198,82,2,166,20,34,15,49,145,66,36,171,77,186,109,163,68,151,62,133,150,164,84,3,243,127,135,195,130,89,233,83,60,236,124,26,128,170,156,165,165,74,63,159,52,61,225,130,74,214,96,162
 ,119,124,76,183,33,174,163,203,3,50,239,191,85,94,117,140,244,179,204,110,191,121,33,108,184,70,49,202,159,28,179,127,120,189,2,194,36,64,97,253,169,74,116,49,194,16,141,183,2,218,16,1,182,229,248,93,48,221,86,61,146,135,41,157,123,189,50,106,90,238,28,131,197,189,20,129,54,15,232,95,145,90,134,28,48,120,71,219,118,1,232,167,234,58,183,73,98,173,82,91,42,38,252,22,201,245,158,82,186,37,26,73,33,230,66,74,240,136,188,174,228,67,238,111,120,141,85,226,225,94,213,160,148,84,95,134,213,205,154,170,7,139,250,181,67,61,105,23,149,250,41,147,129,179,212,3,12,50,167,30,29,122,168,7,135,91,21,240,214,217,208,83,186,247,24,127,34,14,243,79,190,144,189,39,170,122,236,105,125,39,161,63,241,146,203,97,213,103,93,148,25,212,81,4,74,141,213,142,35,91,90,219,166,62,253,115,189,63,13,120,35,51,165,1,160,130,33,197,77,123,33,116,217,231,169,140,218,185,131,195,184,65,178,248,71,208,67,252,117,189,66,70,189,70,188,46,229,190,224,70,233,51,176,138,154,200,120,151,120,160,201,137,242,138,150,211
 ,89,131,131,0,74,107,83,187,48,67,207,42,148,40,131,8,154,4,235,49,90,30,59,227,145,88,125,208,61,206,251,180,138,208,107,15,63,232,184,119,156,166,71,130,253,255,51,152,63,164,58,78,66,109,176,37,255,224,21,43,183,95,206,79,254,232,211,245,164,14,216,21,187,13,236,246,248,82,129,102,243,90,240,149,76,204,45,127,200,95,189,83,178,96,56,127,240,192,82,230,136,252,254,101,201,200,233,165,173,165,133,97,29,225,246,25,97,234,126,79,231,80,186,152,141,243,116,230,6,251,70,199,187,168,35,50,161,155,77,83,63,59,177,104,45,125,66,185,206,60,58,51,110,89,77,33,247,209,220,223,48,99,173,191,91,207,23,161,10,178,71,112,204,47,139,87,215,224,106,50,6,82,123,207,52,223,201,166,237,105,229,41,194,180,190,252,68,6,44,49,47,225,141,108,38,115,116,71,88,212,153,127,101,148,108,55,159,103,249,44,31,9,147,83,221,130,193,245,209,172,150,157,200,194,237,180,163,44,115,3,52,175,29,141,195,16,15,194,68,21,208,229,226,99,66,46,153,154,230,63,129,160,138,68,148,42,163,147,34,38,32,203,28,163,21,71,1
 89,140,94,94,109,161,88,74,67,87,33,47,175,97,101,229,136,70,189,153,252,129,16,171,162,192,184,143,118,216,58,156,57,70,156,241,208,58,153,84,25,195,65,161,202,202,61,39,30,13,106,212,117,0,52,19,239,212,148,217,242,1,55,101,170,49,7,242,123,7,229,41,126,12,5,50,14,98,130,108,226,188,44,150,202,12,22,166,241,128,141,17,178,107,167,163,207,172,85,53,130,107,161,162,129,66,57,71,242,120,36,254,32,108,112,20,155,57,229,3,23,132,88,2,85,168,218,147,52,126,145,82,47,177,83,29,39,183,15,186,86,94,130,143,100,40,144,66,53,5,193,65,213,90,107,206,141,240,93,82,208,93,213,13,85,175,31,178,35,251,165,81,92,25,174,161,132,98,149,75,120,236,158,28,14,25,184,30,146,12,103,189,12,69,202,82,90,219,217,92,188,143,174,234,29,117,210,77,203,232,220,122,71,177,141,213,67,220,103,143,241,150,85,157,163,7,84,203,253,221,245,219,9,24,40,23,5,253,80,122,131,255,113,165,170,75,104,223,133,127,215,194,123,53,145,88,190,198,146,33,240,200,186,24,117,80,153,20,164,1,46,202,39,175,55,196,199,79,218,83
 ,32,42,81,187,86,202,50,166,83,33,141,54,9,118,222,106,104,153,65,76,131,57,184,60,100,219,161,55,15,149,101,177,120,215,43,29,144,143,124,210,201,179,128,116,91,199,199,20,213,65,28,90,177,18,33,244,170,88,227,65,147,25,238,81,145,4,253,41,163,21,26,233,192,105,190,116,28,132,75,198,61,129,193,2,13,68,31,124,180,207,176,134,6,103,48,189,193,27,39,29,106,35,226,71,255,186,155,104,227,39,101,237,178,118,30,42,135,207,166,94,139,3,139,201,51,132,3,78,143,6,189,112,44,62,8,19,237,65,109,204,127,61,163,182,74,210,214,121,175,130,74,142,117,156,239,141,148,252,171,245,102,204,36,112,194,81,234,40,119,157,64,178,77,249,93,81,191,15,204,186,142,209,212,131,229,120,153,195,76,100,186,214,166,116,255,192,66,99,159,12,76,168,187,72,91,100,58,169,190,104,104,231,13,204,117,41,70,33,4,36,109,62,248,124,238,29,99,221,241,201,13,73,112,212,137,91,229,149,186,253,69,118,116,112,221,119,75,29,103,153,238,12,122,68,2,8,249,19,159,175,118,128,183,235,51,198,136,91,16,39,27,214,157,50,1,76,183
 ,31,63,7,113,233,127,67,122,212,113,189,76,105,86,114,138,114,67,151,244,225,185,145,65,116,189,62,219,23,123,168,18,163,122,88,249,244,252,106,230,178,122,208,35,67,216,217,76,119,79,142,220,123,152,247,154,125,215,66,198,242,61,76,39,59,138,130,233,240,201,211,116,233,85,95,6,208,203,115,174,135,5,150,200,73,124,218,180,59,79,206,120,65,46,222,102,102,234,36,204,178,202,139,25,28,225,42,15,76,118,225,245,137,195,104,62,249,72,18,13,72,118,174,51,228,53,84,62,246,11,110,107,4,159,230,249,78,28,47,20,148,105,72,228,7,44,72,133,246,50,50,169,18,124,177,106,64,166,249,55,72,90,196,39,7,121,10,141,15,140,161,69,186,42,145,73,155,195,32,210,161,28,126,225,2,23,104,230,122,246,117,11,132,52,99,240,134,154,245,77,23,113,129,93,218,144,119,81,7,209,137,192,10,9,120,216,148,221,70,79,252,184,120,6,63,48,202,200,174,246,136,213,10,37,16,171,201,235,189,225,166,208,176,162,14,30,251,175,177,237,45,136,70,123,43,209,218,172,213,245,133,41,146,125,35,121,240,152,45,90,16,196,148,9,173,1
 79,181,180,20,102,203,92,65,120,109,30,231,109,40,172,99,42,208,120,234,203,189,116,243,195,130,115,180,150,141,17,121,211,13,1,133,139,112,155,76,210,179,80,219,132,122,158,127,61,141,138,238,175,215,132,157,179,101,23,181,204,57,52,176,25,104,184,225,157,6,93,16,184,172,154,255,82,182,76,54,227,11,245,124,235,9,207,24,75,88,223,76,49,20,120,195,133,223,0,214,120,198,92,235,149,240,38,128,109,66,70,248,98,104,107,228,88,226,200,41,250,26,86,3,162,5,106,158,12,147,136,104,9,76,115,122,67,100,43,193,243,130,147,150,193,75,119,1,131,247,83,92,198,71,27,57,23,171,154,45,113,48,159,251,204,54,25,235,205,96,251,174,47,79,125,207,195,85,84,4,116,131,167,231,246,188,61,224,146,247,101,243,147,81,192,72,35,114,51,167,193,212,233,230,1,151,35,119,199,5,147,236,103,34,169,169,81,59,176,83,122,113,126,231,197,116,238,52,138,136,253,185,239,201,35,188,197,1,113,69,127,190,140,66,99,229,87,11,2,22,88,163,236,131,190,6,115,80,119,141,108,85,37,248,49,158,237,33,56,59,4,167,171,226,211,36,
 221,195,172,87,23,10,107,85,217,39,36,13,4,226,227,150,115,175,67,131,58,174,150,57,245,237,101,86,124,155,221,195,235,218,156,174,206,222,237,65,83,200,192,37,95,228,254,192,137,112,179,121,46,167,248,10,168,204,139,132,79,99,232,26,178,127,23,131,241,254,116,1,124,11,219,184,169,35,133,139,136,97,172,0,128,52,196,193,123,46,20,243,24,53,76,181,123,59,6,60,83,168,78,207,148,50,75,108,83,245,61,229,105,137,166,138,103,164,35,220,111,119,165,181,104,200,69,226,44,35,222,252,52,160,235,235,196,93,61,8,190,221,75,163,9,120,42,116,60,30,113,125,29,9,4,94,99,144,252,239,58,99,182,53,63,211,246,42,112,25,188,233,83,145,15,217,143,60,128,163,140,236,137,118,244,137,197,67,209,63,30,109,70,39,94,80,16,185,103,238,225,25,119,45,239,72,152,198,27,54,117,231,161,87,18,17,240,123,88,93,142,1,205,24,111,228,53,255,25,58,115,30,173,0,40,182,174,78,23,234,43,1,99,148,232,40,23,63,129,81,204,148,5,157,28,233,253,135,76,90,0,220,185,139,56,240,209,68,108,73,69,165,44,236,81,54,164,189,69,75,
 113,148,160,79,110,219,244,80,124,193,221,34,237,123,84,164,255,5,230,45,134,175,109,195,125,177,51,106,143,8,134,37,130,30,190,106,40,153,95,142,186,120,117,38,140,252,253,128,216,67,20,35,160,232,202,211,45,199,52,251,11,109,208,176,62,210,120,75,100,248,198,251,151,75,232,180,177,103,165,78,11,61,153,40,243,54,181,68,251,134,52,131,104,54,194,12,88,163,223,78,62,50,110,157,43,208,211,113,38,245,111,239,175,171,115,68,85,183,244,239,248,41,254,84,210,211,254,7,84,247,3,159,188,51,72,91,30,176,248,11,168,244,29,144,26,188,7,143,97,46,236,109,66,29,87,176,90,200,58,74,204,76,166,209,86,101,206,124,122,88,141,46,226,190,93,50,204,5,62,11,249,170,179,33,149,224,131,148,190,98,1,213,174,130,22,162,147,79,49,138,97,74,30,16,0,11,249,85,204,32,24,199,254,197,67,159,161,143,193,250,39,254,27,150,247,34,238,78,35,108,18,88,36,37,95,117,21,203,76,12,27,143,1,125,191,48,30,155,246,242,234,120,88,95,226,54,93,24,31,93,151,106,45,241,203,32,228,0,24,19,167,146,85,156,203,215,73,4,36,11
 4,150,6,137,171,220,226,201,135,111,118,59,239,175,2,116,53,250,35,48,202,146,74,31,107,200,82,158,18,182,107,156,76,91,121,218,237,48,115,173,14,40,252,85,210,52,46,201,124,218,77,140,166,109,23,120,17,49,59,147,137,179,115,6,133,154,87,66,204,57,73,17,90,228,227,73,125,191,78,130,97,184,245,185,248,188,14,245,152,240,67,7,124,22,213,77,216,180,18,213,6,127,154,67,111,130,80,104,102,113,60,135,131,237,82,133,195,83,136,240,151,65,143,157,238,241,40,239,145,2,57,7,202,203,63,62,170,146,125,15,27,63,99,83,209,157,33,127,227,103,192,91,111,21,243,236,147,235,109,247,72,1,93,148,156,226,54,38,148,224,13,79,215,245,124,143,107,199,33,106,4,83,75,211,109,10,7,244,120,142,206,68,226,99,198,227,160,129,119,111,0,54,158,100,229,235,99,59,143,159,64,27,85,137,170,216,196,145,215,144,129,229,229,134,136,89,68,156,205,16,251,185,254,85,160,140,104,117,103,4,250,178,198,17,204,212,230,202,149,14,158,233,116,119,168,119,49,240,3,139,85,210,73,14,16,37,137,142,52,168,108,109,56,77,61,164,
 105,246,150,84,112,157,166,194,124,164,217,207,250,200,70,37,84,104,14,163,78,105,105,56,40,26,26,103,133,179,210,13,28,137,7,124,7,67,200,72,172,187,200,182,189,116,176,151,248,220,135,34,41,83,173,168,143,24,192,115,28,247,183,110,30,114,127,90,61,11,245,108,81,49,113,144,170,18,95,77,255,45,92,47,38,86,155,242,254,210,236,81,251,51,15,40,254,188,61,156,141,200,86,177,234,186,155,78,232,146,229,218,112,200,150,154,180,71,38,157,189,193,138,252,27,104,46,36,164,26,179,88,50,21,74,125,117,161,67,215,254,218,132,170,248,221,10,220,183,173,187,72,175,197,150,181,194,84,1,239,170,242,242,53,91,151,136,131,88,247,66,41,36,1,13,235,93,62,199,23,100,40,37,52,39,170,128,209,211,90,220,242,129,206,28,97,117,11,142,231,53,181,58,108,46,44,211,94,136,147,83,223,182,222,157,65,163,6,167,172,132,82,100,26,194,200,186,66,123,40,42,16,34,69,206,238,65,28,190,157,60,98,200,109,202,240,68,15,61,244,203,26,71,184,233,11,52,31,67,109,30,38,125,159,170,82,29,130,142,130,8,6,248,79,128,104,233,
 163,225,206,244,150,165,2,8,198,64,69,131,7,35,216,210,67,217,112,158,5,69,3,207,190,56,175,148,92,143,196,214,66,242,73,195,86,17,132,159,28,124,214,43,119,23,143,148,56,211,148,218,55,240,107,96,1,219,198,233,24,253,97,144,123,100,194,136,190,131,9,1,162,216,29,11,38,226,109,94,70,219,191,112,139,27,91,236,198,112,45,30,1,76,87,181,178,212,222,100,226,110,217,125,109,56,243,33,26,66,68,92,35,38,125,98,244,88,174,79,255,235,231,92,82,106,187,105,152,88,247,47,149,238,166,140,241,17,80,156,53,232,152,143,174,224,14,138,63,138,42,86,228,220,132,76,239,40,11,181,78,11,121,165,209,10,180,186,124,194,123,140,61,48,169,249,231,145,245,218,4,39,133,143,189,38,153,229,105,52,101,12,139,243,9,51,214,45,126,86,38,139,182,247,170,241,127,19,158,63,206,115,196,232,4,214,120,157,113,77,194,91,23,4,58,143,249,146,72,138,222,103,26,110,221,253,76,116,149,188,243,51,46,121,203,86,127,36,5,5,195,158,105,135,50,133,45,224,89,73,68,158,79,48,41,76,8,4,145,77,177,166,212,15,99,21,196,144,116,9
 1,127,14,211,244,58,232,143,180,227,140,104,58,88,72,72,74,52,224,218,238,182,175,126,227,156,44,67,164,33,100,198,215,8,100,179,206,93,177,38,244,107,158,41,31,33,193,198,224,171,72,156,8,112,50,114,53,161,182,16,28,3,73,193,169,98,89,118,162,124,69,77,175,174,164,77,119,158,216,2,11,226,107,37,4,22,154,251,69,46,142,114,131,70,81,83,115,119,76,157,18,217,77,31,24,215,192,228,180,50,227,69,136,225,228,109,84,212,14,152,225,81,170,163,95,96,55,94,72,199,137,233,202,163,119,222,226,11,253,175,245,250,223,236,207,253,13,118,68,178,65,61,12,40,81,238,146,197,6,164,152,152,161,165,15,33,223,156,203,212,18,205,193,133,107,240,167,124,123,11,0,249,73,170,141,255,240,94,104,7,244,24,163,152,204,200,174,69,169,116,192,36,167,241,126,254,93,111,254,12,122,240,82,58,247,113,115,83,69,15,218,182,156,0,225,16,48,67,60,135,130,246,216,244,255,9,59,138,93,127,151,138,238,219,16,250,195,86,10,9,67,242,169,17,126,164,246,145,225,72,95,54,25,68,92,78,218,192,137,80,175,115,1,153,155,180,30,1
 90,45,75,17,139,243,95,198,251,37,37,130,67,86,210,66,190,84,44,12,48,239,188,182,213,203,80,137,52,234,142,42,64,56,81,251,184,192,55,219,54,62,152,54,97,125,226,40,156,138,99,54,152,84,87,20,249,94,102,40,33,142,23,35,104,208,62,150,4,177,134,241,80,186,234,62,137,183,181,59,72,97,140,204,99,111,164,27,217,237,207,135,192,33,133,229,99,125,115,196,24,213,19,194,54,243,176,232,184,37,46,149,25,141,232,156,144,139,86,149,39,87,243,77,254,140,109,210,37,52,216,203,33,125,23,48,248,181,194,209,95,167,124,147,156,185,217,19,0,129,242,88,31,241,143,183,19,92,117,139,248,97,210,41,22,26,14,52,219,61,215,238,127,144,53,66,52,43,189,42,70,66,20,248,141,214,118,125,128,7,186,33,132,58,219,111,158,57,104,251,237,25,43,193,141,62,89,246,83,2,12,243,220,112,197,33,117,135,187,123,15,245,196,120,172,200,119,87,240,15,98,130,192,186,182,238,197,28,101,41,51,255,188,98,165,191,8,65,84,36,235,247,220,17,240,142,2,32,51,106,11,30,107,116,172,219,46,32,44,65,229,236,138,86,69,160,87,208,207,
 129,199,40,141,128,223,71,143,238,55,73,10,14,81,22,133,39,174,71,191,8,75,73,31,201,70,89,68,41,7,220,1,37,200,173,91,180,93,176,32,213,64,69,4,221,143,93,78,114,160,22,230,160,159,179,49,43,137,20,36,129,197,167,127,100,182,231,131,64,42,59,72,149,29,247,62,141,128,7,212,174,108,34,247,32,119,23,88,6,31,186,165,250,119,112,198,121,220,248,122,154,1,35,199,2,31,50,51,166,67,245,94,207,186,202,118,182,231,43,233,91,87,77,75,215,184,176,204,126,247,64,204,2,123,64,141,21,101,87,50,121,231,20,227,95,189,67,106,164,186,235,224,209,238,111,170,118,252,8,206,134,99,119,7,150,77,124,187,45,70,95,162,238,188,192,97,213,167,236,1,189,103,208,47,161,192,2,109,125,194,118,12,98,147,211,139,232,185,79,101,54,243,250,80,2,140,219,154,64,100,144,31,175,22,52,123,109,192,146,24,130,167,191,253,240,128,224,193,241,97,190,21,247,21,191,169,56,168,237,56,237,160,146,138,16,164,164,253,38,93,87,166,95,157,135,115,91,44,52,89,250,255,180,243,16,125,184,126,168,174,138,237,106,199,68,218,208,18
 7,31,62,34,246,58,237,229,162,51,23,5,19,9,211,237,211,233,47,247,250,94,179,46,139,99,64,147,117,35,244,130,46,214,126,228,243,210,182,13,238,142,187,12,183,153,202,25,122,188,174,208,191,45,8,21,68,46,211,85,234,145,56,12,123,16,218,40,53,198,49,52,28,220,27,221,188,23,249,158,78,188,33,218,210,152,183,173,15,45,74,26,51,119,128,180,243,124,90,66,61,21,253,88,156,79,198,163,34,154,226,70,46,98,46,221,241,220,107,37,43,123,236,211,192,77,50,208,113,94,206,183,199,221,185,32,31,108,103,145,62,27,10,141,1,196,79,242,231,35,220,192,238,250,201,135,119,59,58,138,237,32,229,96,126,1,80,128,74,136,237,241,197,221,254,46,228,171,22,39,59,158,104,108,158,5,19,246,149,61,202,31,197,13,127,104,226,44,136,234,20,86,87,57,13,166,140,146,184,168,35,160,235,115,86,61,203,14,71,21,106,152,93,41,133,15,136,70,16,54,116,128,253,133,108,220,52,13,177,159,253,43,27,109,9,184,134,231,76,107,97,191,221,109,94,48,165,17,113,179,127,238,167,112,94,165,140,34,252,193,203,34,147,170,41,44,63,158,53
 ,35,47,34,119,104,65,246,127,15,88,102,202,147,166,109,103,236,239,81,255,45,120,102,65,83,222,121,31,66,196,212,159,13,157,184,55,3,37,90,47,250,93,140,37,240,178,76,214,201,173,135,174,206,4,99,37,57,20,169,158,31,241,80,0,147,102,120,203,29,226,171,174,142,161,38,147,230,102,246,207,234,195,68,131,237,94,83,58,63,186,141,209,198,67,219,164,171,17,181,151,214,147,30,11,91,231,106,92,94,110,73,19,17,135,127,83,90,249,156,100,167,87,126,153,219,108,97,35,6,70,246,116,11,66,228,107,99,3,239,92,162,130,97,36,104,30,199,173,165,211,158,15,140,147,224,28,47,203,241,14,168,209,55,16,78,108,83,154,215,29,174,11,71,25,120,209,81,70,81,171,163,237,190,211,181,91,106,204,236,177,164,137,3,184,233,21,25,213,64,235,118,168,253,223,124,45,248,146,211,166,119,214,226,212,37,56,177,220,221,80,11,196,214,146,139,1,70,3,225,158,214,146,95,70,179,161,120,153,73,105,2,53,109,130,230,26,159,198,218,17,223,232,53,1,237,81,251,142,194,169,70,147,39,241,53,183,114,39,31,64,129,233,37,79,169,118,1
 90,217,240,246,9,120,189,5,68,180,108,229,126,29,212,194,198,131,238,15,108,125,186,17,39,73,129,90,9,68,90,177,203,28,38,109,100,169,108,128,130,114,232,121,6,101,91,139,188,87,67,230,219,84,66,24,62,174,150,211,69,133,37,1,118,25,222,26,103,2,92,73,251,242,122,144,200,240,243,104,92,61,3,195,247,11,150,158,52,230,241,100,149,59,217,7,196,22,244,31,36,198,226,250,89,28,133,188,78,211,95,113,188,183,78,115,29,163,136,140,39,46,218,29,12,251,67,176,131,29,186,230,68,86,176,130,152,36,125,99,253,252,133,253,48,99,181,55,7,77,14,61,239,170,62,26,40,101,84,214,116,91,137,164,228,211,219,144,120,227,38,64,37,171,86,81,52,178,151,232,203,21,44,245,131,7,250,182,97,127,10,138,84,28,193,127,84,157,128,26,174,9,104,111,255,32,126,214,251,220,247,197,163,245,169,113,221,186,112,224,0,245,164,154,49,17,229,185,82,57,89,76,183,23,221,243,66,141,158,126,122,171,40,118,79,161,134,62,195,245,107,32,102,70,48,194,146,49,199,62,170,77,11,149,164,25,213,154,209,25,165,170,104,148,165,195,47,3
 7,44,115,215,163,165,56,92,211,56,50,12,41,168,62,193,223,82,128,34,13,135,137,71,150,125,163,142,104,46,113,30,27,41,234,173,49,105,195,195,24,227,30,201,166,241,10,23,100,215,167,245,20,181,83,231,159,203,110,251,227,54,246,41,47,252,33,200,35,198,156,135,16,218,115,106,246,159,143,204,89,48,0,95,201,24,97,132,149,42,184,6,211,52,200,65,109,162,221,225,255,233,205,116,7,26,126,119,167,146,141,22,216,159,36,149,71,22,158,132,166,52,138,50,148,246,92,58,168,73,142,94,237,211,128,168,244,187,151,60,223,2,214,252,71,254,87,47,78,1,24,6,115,72,210,55,181,1,57,185,18,229,241,104,37,232,224,227,228,185,209,81,183,121,169,86,170,232,96,1,202,108,17,226,103,218,64,57,115,5,12,46,189,236,192,212,144,34,244,44,184,235,214,242,117,75,110,20,111,186,147,228,75,119,92,163,248,175,181,107,199,103,90,23,91,72,48,46,6,44,34,153,128,250,233,116,89,222,117,218,251,31,249,251,224,86,247,65,116,77,20,131,129,168,167,59,203,45,248,44,109,239,180,155,64,74,111,236,169,78,242,29,187,253,127,30,10
 7,216,237,3,39,218,53,20,178,67,228,166,45,62,152,166,19,239,228,177,84,177,30,234,100,215,159,235,25,60,169,228,16,144,159,135,185,126,81,170,134,80,91,199,49,154,22,223,43,225,253,125,176,142,186,48,158,160,182,33,87,53,222,156,230,213,253,247,25,116,78,221,254,157,152,68,50,53,237,234,142,216,73,208,102,41,188,151,205,60,98,11,106,247,203,17,244,2,129,157,50,118,77,179,67,35,3,62,50,18,70,103,236,0,0,0,29,22,130,186,162,54,89,27,44,90,215,140,92,140,165,141,61,185,209,137,233,28,157,203,122,162,59,240,231,189,89,93,220,189,82,148,51,104,253,63,221,120,175,82,123,171,107,69,91,143,228,30,151,5,246,219,103,126,27,171,126,13,96,92,173,83,111,166,65,110,239,43,188,111,215,30,38,8,205,154,228,214,38,129,238,217,87,208,25,97,85,225,89,61,143,248,209,215,162,183,135,1,35,242,139,50,14,135,186,159,64,157,70,106,161,84,175,136,195,248,37,6,114,77,67,91,196,52,33,32,244,122,249,61,67,141,150,62,93,173,224,209,215,29,189,26,191,97,96,38,218,15,20,0,13,172,133,150,86,107,193,4,25,235
 ,222,188,65,168,74,246,220,92,118,73,129,77,32,68,54,72,15,142,77,65,197,240,144,9,8,204,246,250,251,226,195,245,193,121,212,206,254,246,17,116,237,222,215,249,85,47,59,166,245,168,111,253,239,83,249,72,142,122,50,14,190,42,99,186,133,53,200,120,105,29,202,189,88,99,199,61,197,12,144,255,173,138,217,115,52,17,248,34,142,97,95,69,64,112,132,27,141,56,87,104,71,228,57,221,158,16,160,28,35,158,124,100,224,16,64,171,114,164,231,235,37,185,64,57,144,87,177,105,148,153,122,103,142,86,173,127,40,78,28,188,81,246,152,173,78,135,77,180,172,61,4,108,163,43,167,204,110,170,92,195,70,161,32,1,229,131,225,120,165,93,159,90,11,113,89,201,90,18,36,81,167,65,60,227,59,138,182,20,166,103,112,144,225,173,147,173,6,217,68,170,18,238,35,5,209,85,114,132,10,107,112,183,234,160,167,73,150,148,146,74,245,154,196,182,186,73,232,148,77,240,173,156,82,138,164,110,59,95,78,230,82,168,79,252,206,225,152,115,13,188,220,119,153,115,233,241,92,34,206,55,53,255,34,235,101,240,140,170,92,102,36,213,135,36,1
 20,68,84,244,235,76,179,80,54,26,136,151,195,190,162,135,191,11,247,211,94,221,150,156,74,35,251,228,24,40,229,171,5,173,173,23,124,40,139,152,244,169,234,35,19,10,176,169,71,40,69,125,79,78,171,164,157,236,143,229,156,206,140,147,247,186,5,231,144,70,196,235,139,29,164,149,58,145,211,21,146,46,65,224,92,21,118,233,121,238,106,174,186,254,236,228,153,135,192,206,214,131,150,254,51,187,199,250,166,18,234,85,182,87,180,57,42,26,111,184,188,154,219,235,206,181,124,61,96,28,44,114,166,237,132,8,70,204,164,131,23,202,200,19,107,127,183,215,135,211,164,3,106,232,76,231,187,81,204,208,252,33,70,14,136,200,202,157,47,185,55,176,3,196,12,188,149,8,2,187,236,143,105,87,204,27,199,113,88,221,244,117,158,21,30,170,69,64,45,159,154,47,8,180,3,51,37,148,157,30,164,48,180,55,110,57,75,15,23,193,66,61,230,205,174,68,52,93,186,128,191,231,151,153,77,221,122,129,51,235,53,30,147,126,80,237,103,231,70,84,10,69,247,156,109,165,92,42,30,217,60,3,76,126,169,140,54,65,141,232,2,149,226,252,179,116
 ,35,178,197,17,31,22,221,194,58,135,129,131,219,134,232,108,201,133,243,27,148,70,44,0,37,141,67,143,217,163,173,239,196,242,243,28,140,121,205,251,72,148,166,20,249,34,91,24,144,212,24,42,84,125,252,176,53,245,138,70,144,200,222,19,113,28,227,69,14,91,218,94,39,243,56,17,145,113,34,99,171,243,146,142,238,78,155,199,19,232,18,245,210,185,223,32,131,5,8,6,92,55,74,120,161,31,199,39,139,33,152,117,23,145,222,69,42,248,238,223,11,6,198,26,235,83,75,76,215,45,147,137,109,0,235,174,232,198,48,160,199,34,170,134,76,69,41,6,255,141,172,82,224,87,80,150,61,41,77,69,231,181,207,85,44,178,226,71,79,151,244,51,5,55,145,90,2,102,230,70,213,249,5,166,33,218,230,47,2,29,35,243,176,18,138,145,110,192,15,168,127,31,35,95,98,45,219,111,242,116,124,236,214,185,136,65,123,113,152,55,206,26,7,195,157,81,89,46,144,47,192,2,121,185,58,65,184,177,95,222,50,93,218,176,219,111,93,148,159,102,17,41,88,76,149,15,130,184,2,116,60,223,169,30,203,22,78,40,67,206,41,52,21,39,59,255,174,22,107,245,28,107,4
 0,52,42,51,182,176,81,20,246,229,163,98,113,127,90,57,51,180,84,145,95,204,74,133,200,12,245,89,189,123,203,110,112,180,176,196,93,40,157,46,181,18,225,66,225,144,84,66,167,171,221,8,237,83,114,37,251,108,243,59,88,224,78,62,153,70,169,106,247,255,72,224,86,192,55,49,42,172,98,13,42,123,66,253,24,155,10,56,137,235,173,141,179,163,127,72,62,224,17,180,173,237,32,82,9,151,110,190,171,225,92,144,54,245,189,168,26,252,138,21,81,23,43,4,164,249,154,128,147,147,157,77,27,66,52,23,221,155,51,207,229,140,133,17,136,253,221,126,74,220,184,12,146,155,101,253,137,235,82,175,13,51,201,24,226,241,12,174,209,163,160,177,37,255,157,131,149,143,231,226,43,150,250,152,224,89,209,64,139,151,37,191,30,182,42,38,73,116,201,182,241,222,1,242,47,107,246,58,216,56,6,15,181,119,80,140,206,226,17,220,244,207,195,241,161,150,207,159,43,73,250,69,181,185,245,21,139,38,198,6,202,105,137,191,112,204,197,110,130,168,19,121,46,231,25,45,82,119,166,14,141,63,251,88,52,252,200,71,68,158,178,222,196,92,6,35,
 4,92,73,129,147,51,140,170,19,123,169,29,9,178,153,34,10,238,37,211,223,251,71,10,173,160,158,49,98,26,97,249,82,18,242,229,25,175,159,81,167,149,248,221,121,125,29,2,59,224,124,14,29,167,45,212,187,142,122,10,200,66,45,71,232,113,144,172,203,245,52,243,76,120,71,192,75,12,66,208,36,205,149,243,211,245,213,119,18,23,110,153,136,49,152,46,230,238,24,234,138,92,97,38,190,170,47,211,68,70,246,23,173,115,100,78,76,92,177,173,28,230,180,10,107,249,146,193,67,126,162,245,205,38,55,70,124,43,222,6,103,77,110,98,119,25,75,114,239,41,45,117,237,117,121,79,89,26,42,63,96,201,164,193,192,155,72,151,241,53,146,180,246,49,100,88,171,165,117,10,30,209,79,147,158,197,49,65,131,195,51,237,94,197,42,43,223,253,27,90,210,234,129,193,137,196,37,254,52,38,252,120,188,132,148,200,233,17,31,166,169,144,37,230,112,39,235,207,134,84,101,141,175,86,20,148,12,130,40,244,22,218,221,59,27,227,101,209,199,80,54,99,118,131,207,177,208,231,149,248,24,32,215,223,198,226,66,217,119,50,179,184,26,250,15,72,2
 54,207,234,102,253,101,42,206,141,9,193,247,57,2,209,107,26,115,221,242,128,173,191,70,51,97,146,64,131,95,147,8,1,150,201,230,56,245,166,74,87,182,49,121,111,44,175,96,50,115,51,181,62,135,199,147,45,73,194,138,130,47,30,171,80,161,204,57,231,243,137,156,38,209,85,36,89,169,183,13,183,116,195,127,55,136,208,35,4,104,95,130,176,176,69,169,38,81,243,19,253,181,50,44,255,137,253,142,226,88,244,142,243,158,118,5,255,120,36,53,202,21,9,78,248,179,11,85,184,111,238,75,191,129,245,201,121,34,98,167,64,100,68,124,171,70,31,75,146,133,127,156,50,208,54,72,91,101,87,120,12,87,3,63,85,214,187,172,255,182,125,198,212,108,145,245,160,115,110,51,142,204,140,172,135,190,189,210,58,250,130,229,59,39,166,213,60,3,146,107,36,73,42,239,74,110,247,67,247,231,201,38,210,128,25,207,135,126,187,37,168,58,196,192,245,179,197,183,246,91,96,26,175,209,87,246,250,115,121,57,252,238,6,250,81,76,234,103,184,194,6,69,175,68,49,190,117,22,223,108,206,164,114,225,216,212,242,110,174,221,17,196,136,57,47,9
 0,11,201,155,121,208,111,249,200,111,139,146,248,232,111,149,218,84,84,52,72,122,231,240,118,236,122,204,152,165,223,183,43,49,61,245,58,191,78,111,209,57,85,43,149,82,225,72,108,191,29,44,131,144,215,53,105,237,179,41,68,26,40,133,77,86,205,2,78,60,177,226,79,7,47,145,10,178,112,199,37,41,11,227,221,5,174,86,208,136,24,91,203,197,130,22,105,91,205,238,82,101,25,161,160,11,62,255,87,66,240,100,72,105,189,31,140,241,147,2,128,94,107,100,45,240,24,111,227,229,64,179,16,174,108,205,147,229,164,185,122,205,106,189,180,84,164,250,233,35,156,165,106,60,76,20,103,120,163,130,75,95,13,14,146,52,42,200,80,23,122,20,225,214,9,68,89,201,219,155,191,31,133,27,181,224,168,162,149,190,83,50,27,97,66,126,134,64,220,14,170,110,101,11,136,76,156,187,69,53,169,238,142,161,53,211,213,211,6,11,177,219,101,193,77,117,43,63,28,146,132,156,248,169,40,69,49,196,53,141,175,78,155,80,20,78,7,183,62,182,64,12,155,96,228,209,230,146,79,175,188,215,55,10,28,230,6,57,58,230,153,41,172,222,249,171,225,24,
 36,47,39,73,118,215,230,98,133,215,167,31,141,135,106,152,251,5,155,183,215,110,87,237,203,169,146,222,151,68,159,238,190,254,129,117,214,220,102,191,4,206,83,16,71,237,247,240,9,97,46,122,148,160,101,228,249,121,5,239,205,170,71,57,126,192,223,182,175,194,84,226,38,187,62,245,139,13,33,35,228,92,73,50,161,6,83,149,147,124,158,182,242,48,136,147,197,168,79,162,78,140,12,183,181,0,163,231,214,195,127,241,254,252,1,223,226,113,255,253,106,97,21,240,200,172,84,50,202,83,228,172,8,215,23,155,50,72,248,172,18,238,103,94,145,190,123,237,182,12,180,192,218,114,53,160,190,88,147,208,199,106,229,10,90,244,91,223,136,209,135,186,126,181,11,88,166,252,93,158,205,174,125,193,119,110,176,29,195,14,76,141,208,209,125,196,135,201,2,200,243,215,9,178,214,168,247,30,88,194,240,240,39,205,225,199,183,43,204,158,111,231,108,189,199,102,27,208,238,38,43,227,232,122,123,148,3,83,3,243,216,196,228,108,162,123,95,126,11,45,55,58,99,199,209,38,171,165,97,84,114,182,42,131,98,147,63,246,34,118,212,2
 13,116,21,219,181,2,1,4,253,81,152,72,77,201,95,219,144,206,68,145,49,101,253,172,98,119,253,250,130,23,91,5,92,171,87,43,10,128,254,210,74,227,226,167,207,3,54,194,151,21,162,225,199,186,164,82,210,86,150,231,56,125,52,157,197,227,26,90,151,148,97,106,6,113,242,206,220,94,13,209,55,202,35,33,183,12,175,153,186,151,137,227,143,35,90,15,237,64,123,35,128,123,99,8,103,178,75,127,55,130,136,69,220,182,236,29,179,189,111,185,205,135,218,34,15,63,254,38,60,160,224,168,147,43,12,63,162,47,39,136,109,228,33,192,88,51,197,62,34,115,138,51,129,67,73,115,51,219,155,18,140,0,212,198,46,36,190,33,150,223,140,223,217,165,123,217,88,187,187,218,211,60,8,72,67,167,156,43,89,123,181,135,109,194,242,181,159,34,96,232,158,0,105,68,145,62,36,243,247,47,185,212,207,171,200,70,140,28,133,42,4,65,150,181,39,75,251,74,108,138,239,105,129,78,49,230,75,166,131,3,141,31,209,168,30,35,81,178,198,124,98,62,38,167,204,61,191,162,175,87,86,10,1,159,149,185,154,212,164,96,254,138,230,144,32,125,210,167,53
 ,89,192,33,62,25,70,57,158,185,182,65,78,89,45,192,146,167,181,135,249,98,105,197,60,14,53,114,244,55,8,30,198,57,78,125,14,2,172,185,50,106,72,130,188,225,210,57,36,242,197,110,204,30,103,88,91,55,199,13,182,44,159,203,63,71,209,18,107,102,42,88,99,245,90,108,24,231,42,165,41,175,189,7,43,53,228,220,195,126,131,241,53,140,6,189,92,222,51,101,116,74,150,104,209,203,225,114,161,241,252,139,56,93,51,192,83,216,134,158,142,225,61,217,78,138,21,124,16,223,165,174,70,48,216,77,113,225,5,39,84,251,28,100,149,143,158,214,230,130,118,118,30,100,236,45,160,236,82,174,199,227,138,176,38,42,139,27,121,145,178,25,228,109,137,245,65,249,213,83,217,239,189,168,181,124,34,82,184,4,225,93,247,80,88,213,185,163,166,250,157,17,132,37,195,21,98,156,223,196,24,111,169,189,146,225,172,225,143,173,177,215,127,4,108,178,42,66,132,100,73,46,216,168,96,255,8,50,132,140,114,181,45,240,43,200,204,42,78,112,11,95,185,179,235,213,218,10,176,212,110,63,183,209,146,205,217,103,42,37,72,242,196,184,144,243
 ,242,119,31,195,27,40,244,152,75,157,133,14,71,12,39,192,105,244,129,243,176,250,7,80,10,116,11,246,45,139,253,92,225,219,233,126,21,68,18,185,121,124,250,159,255,113,32,173,50,46,163,245,69,97,177,84,235,217,151,236,27,162,192,85,197,156,113,226,55,245,161,72,239,198,98,73,153,1,177,77,42,12,132,150,166,182,135,46,253,147,101,194,80,67,142,161,97,4,181,193,20,44,28,177,102,123,198,127,245,157,45,140,94,137,111,205,185,244,228,149,184,65,56,217,107,121,154,136,80,105,57,158,229,220,242,6,119,100,176,152,162,139,148,85,189,0,181,20,80,126,141,110,65,255,65,81,124,43,114,134,142,23,129,58,58,155,129,38,215,133,79,143,121,154,17,234,180,73,202,127,170,144,3,217,9,250,82,13,226,82,100,25,221,173,18,28,166,197,177,50,143,215,169,118,116,52,55,52,27,16,144,54,110,46,160,171,38,77,15,15,100,218,238,48,235,196,130,95,150,88,242,234,125,30,40,195,16,7,82,134,36,244,129,48,146,135,16,159,111,76,4,126,89,162,107,14,47,111,136,219,91,135,53,11,242,141,99,31,59,253,43,40,78,167,119,233,1
 40,97,2,24,238,141,72,167,186,143,183,77,132,56,167,4,133,98,232,20,241,82,21,178,25,67,3,31,27,76,131,217,88,96,43,81,157,58,246,50,48,237,228,10,8,22,243,28,122,62,241,122,103,153,87,138,98,227,107,167,185,120,223,241,222,32,147,36,45,166,14,120,106,161,250,118,146,81,73,201,20,119,224,123,63,47,61,76,238,59,251,210,186,27,72,252,43,22,100,234,39,134,90,138,17,146,232,15,31,15,234,106,105,149,163,229,77,138,155,222,155,97,193,141,160,178,229,254,126,113,132,172,57,203,28,64,176,36,74,40,5,9,229,108,210,26,114,177,146,177,1,108,175,31,30,133,204,10,193,103,199,11,102,14,111,140,149,162,68,232,254,187,238,184,189,42,228,195,85,105,96,88,243,250,245,119,221,18,94,155,177,30,64,217,40,1,140,83,52,122,86,2,97,253,221,40,92,2,10,211,201,11,2,23,40,174,145,8,234,196,236,32,167,82,207,183,62,109,250,99,81,222,201,6,22,212,31,11,91,202,180,172,49,76,6,119,130,168,146,229,125,182,103,53,96,207,218,60,94,214,106,103,14,120,74,222,21,255,0,66,39,126,19,208,68,208,15,84,159,213,53,74,1
 50,194,35,43,25,254,219,102,30,104,236,71,202,39,129,175,93,240,208,84,155,48,122,217,45,69,251,250,159,118,247,247,170,40,65,195,189,234,45,129,75,37,135,152,217,229,214,211,240,149,211,201,51,62,237,82,66,80,84,66,197,117,228,91,218,186,197,98,72,41,250,113,69,185,184,214,194,103,131,63,191,43,32,137,23,199,24,247,32,46,203,164,188,17,238,157,187,42,155,10,230,45,221,236,154,97,24,80,23,113,77,8,99,34,66,64,10,207,71,222,109,55,217,72,78,149,227,104,3,189,238,105,105,151,0,162,129,120,41,221,181,45,250,114,182,187,21,173,224,185,109,46,76,85,20,208,128,45,206,99,238,187,166,16,164,149,67,227,111,41,115,24,13,11,14,240,177,29,113,205,68,204,133,133,28,72,13,143,177,246,250,133,154,130,229,243,118,99,29,189,162,74,155,215,243,129,217,105,101,124,194,20,37,231,205,149,51,180,123,142,246,187,28,41,9,16,255,143,237,123,218,101,217,218,135,113,205,192,128,156,144,153,106,214,202,118,162,154,26,40,229,234,170,232,84,222,118,207,236,219,118,187,60,69,53,108,255,183,214,71,150,247,
 36,199,101,248,43,98,183,116,124,119,64,37,148,245,255,29,252,174,224,168,102,178,204,144,111,214,252,69,102,227,206,229,211,35,84,22,108,43,23,121,175,116,72,184,190,45,177,75,169,138,135,138,170,173,38,138,127,118,222,153,58,241,80,255,215,38,146,93,175,66,185,78,248,33,110,175,74,240,200,4,150,243,99,114,152,154,19,207,184,174,196,98,82,78,242,182,92,101,51,202,75,26,10,78,134,60,236,155,111,134,58,77,103,39,138,253,49,140,201,52,217,37,156,15,179,191,223,163,151,188,247,54,14,76,163,65,37,170,244,245,150,164,103,223,245,223,134,65,226,141,177,123,48,217,199,97,146,131,114,87,20,34,218,112,128,198,214,57,190,140,139,17,176,220,240,232,189,7,80,235,35,154,137,73,91,110,197,200,119,197,85,118,80,225,153,155,29,35,61,151,42,81,112,94,167,229,158,94,62,214,122,132,180,84,99,188,232,252,254,225,193,225,210,101,73,26,174,177,175,200,75,127,204,201,123,242,210,53,160,249,54,104,158,237,45,142,134,25,236,211,17,251,19,88,140,241,147,19,102,168,68,32,29,29,25,219,45,178,152,36,94,
 44,151,182,252,1,241,234,249,186,106,136,193,146,126,173,238,98,148,55,179,139,232,237,46,65,253,81,17,129,87,195,146,215,200,74,77,149,193,247,101,213,15,182,149,188,22,60,215,76,225,40,212,210,27,215,247,101,247,248,48,245,92,71,248,184,159,51,242,46,253,196,13,54,252,97,229,75,121,125,139,71,181,54,126,210,172,201,79,97,48,94,221,90,151,129,14,64,229,30,61,109,163,75,102,165,128,188,88,165,21,164,88,187,17,181,133,16,129,231,93,9,92,186,212,45,243,153,126,172,112,91,137,26,234,33,14,41,15,244,171,7,202,91,143,170,133,173,148,110,251,146,209,86,77,65,93,231,58,40,126,17,225,81,249,18,117,4,39,66,120,34,106,102,88,102,62,232,72,137,107,180,69,127,175,45,205,140,233,24,158,35,188,81,200,198,103,208,75,8,251,171,119,31,252,57,25,154,184,105,202,93,128,129,66,212,69,4,101,229,108,203,78,154,243,248,52,35,28,182,238,172,68,183,242,176,225,74,228,85,25,23,19,250,48,4,201,161,2,137,37,190,151,18,96,200,223,230,77,176,20,138,148,214,14,197,0,87,168,241,215,223,247,166,47,185,157,1
 31,130,89,6,89,72,59,233,48,168,21,246,239,46,175,150,2,2,185,149,15,57,69,64,109,152,183,220,249,228,50,32,213,98,198,137,154,42,176,67,2,145,177,239,123,81,36,45,123,241,117,217,32,14,89,74,103,167,79,188,165,173,132,177,100,93,216,160,15,30,236,163,86,84,246,160,252,122,233,150,240,42,152,3,207,23,143,54,157,98,21,89,174,218,1,233,234,73,198,38,103,52,132,120,115,33,29,234,19,206,130,253,202,223,81,108,163,227,28,137,60,75,197,207,239,209,149,59,18,192,81,107,230,184,49,141,241,255,219,27,148,93,90,135,237,213,83,206,107,91,127,62,32,147,70,84,151,215,232,60,227,143,161,217,149,217,94,51,146,28,167,240,206,142,244,140,86,84,124,201,64,89,0,113,34,76,20,104,244,139,190,195,143,88,164,173,143,174,35,163,114,5,179,24,25,87,127,139,7,42,184,195,214,7,206,35,8,131,115,146,234,59,252,18,154,229,109,237,153,25,245,197,121,85,204,91,222,19,137,53,98,38,30,230,86,101,181,5,73,56,178,156,149,64,214,126,182,140,9,219,197,158,204,123,161,110,180,105,252,158,32,143,253,201,249,153,120
 ,53,128,153,89,136,41,214,157,255,54,27,64,246,240,7,116,49,53,10,62,34,187,100,46,169,88,25,9,226,252,64,121,242,171,208,100,128,22,91,83,95,33,224,236,42,221,131,0,180,128,142,68,61,109,63,41,182,101,35,158,65,4,208,5,212,109,116,58,88,187,227,216,78,254,222,114,200,227,74,208,132,76,81,161,221,107,149,211,54,233,27,212,147,138,93,90,229,198,78,13,163,25,95,200,100,26,237,234,90,238,173,213,151,49,60,55,228,207,79,136,244,99,216,60,168,192,116,233,71,214,180,41,88,168,103,211,33,65,66,226,251,64,70,232,186,13,190,247,154,114,92,240,184,66,15,252,96,188,41,42,164,108,144,188,121,47,124,167,229,111,197,50,160,96,56,234,146,29,105,255,90,163,61,225,133,222,35,180,249,68,69,43,225,7,26,22,243,109,153,169,177,90,172,181,143,209,155,12,90,75,57,14,56,86,72,127,235,8,28,19,228,78,38,86,57,170,77,89,134,161,227,110,96,192,250,105,53,214,37,96,16,113,74,217,133,13,203,221,165,250,109,118,155,189,15,109,154,116,253,214,42,205,92,161,80,63,162,218,187,82,113,80,2,138,129,16,236,134,2
 24,176,149,216,122,206,20,83,34,134,216,212,138,166,230,228,0,251,62,136,2,195,9,198,232,60,98,172,244,143,214,244,225,136,219,152,170,199,0,153,251,150,155,150,254,6,255,9,22,98,3,22,30,173,167,175,236,19,83,138,81,152,72,178,17,12,127,73,10,181,147,164,222,219,119,114,230,98,149,118,246,196,130,208,76,252,109,245,86,106,112,101,246,30,225,188,63,74,237,160,246,41,237,233,91,77,188,62,63,69,247,252,102,69,194,180,22,129,53,189,181,102,230,234,87,75,141,47,115,60,95,164,239,224,230,231,23,3,180,74,130,86,168,167,172,237,179,253,25,25,157,51,142,107,108,221,255,242,241,217,151,127,17,218,81,148,200,239,203,94,38,184,106,82,111,169,205,105,94,138,119,20,128,194,231,207,211,197,19,97,165,193,136,251,238,148,254,124,218,233,214,192,35,17,93,208,11,205,191,235,55,128,83,3,81,106,47,57,158,4,244,8,214,73,20,83,73,39,108,175,108,249,46,139,195,51,162,244,180,101,145,115,61,30,239,181,89,91,98,115,39,155,2,107,48,154,239,60,19,71,189,238,233,186,105,191,76,32,234,194,22,125,16,242,1
 09,69,3,109,13,77,100,1,242,172,72,79,143,124,77,212,151,180,163,100,100,72,28,18,173,58,158,15,110,79,18,106,79,206,49,142,187,10,248,98,233,199,209,147,213,171,149,13,131,11,202,35,171,108,37,11,203,255,241,35,223,26,26,160,197,218,19,224,170,91,98,128,105,131,41,171,208,67,81,121,34,1,58,54,201,6,174,141,159,41,234,109,37,107,206,90,229,171,40,164,238,167,223,166,50,138,195,35,75,84,233,212,35,249,58,146,6,227,255,172,105,29,205,128,126,2,176,65,185,63,165,221,201,195,5,145,243,102,110,164,161,109,82,23,242,113,26,98,148,4,152,237,248,188,161,237,19,17,40,74,74,110,143,103,27,94,170,165,204,8,85,132,190,116,180,125,78,120,234,126,235,250,165,2,229,182,164,96,211,92,165,92,7,131,150,249,205,21,63,41,118,158,42,171,57,38,215,217,228,11,236,234,8,13,42,2,222,168,217,104,44,75,159,55,13,34,111,116,179,138,32,125,141,103,130,153,140,7,184,69,205,102,197,136,72,158,67,187,216,10,209,254,196,38,152,79,49,14,42,190,29,221,19,155,96,60,41,191,89,217,199,250,17,238,197,104,26,144,1
 81,28,38,139,247,207,250,178,56,7,131,13,114,126,41,27,122,208,186,180,179,216,66,5,86,186,128,21,95,15,230,76,138,27,207,27,171,147,2,230,148,32,118,214,65,236,215,14,81,147,85,254,154,166,35,230,185,248,50,88,206,76,197,184,64,132,56,238,169,249,11,84,188,193,188,126,201,77,108,229,21,64,139,118,143,159,157,56,40,12,159,141,192,144,225,79,238,100,36,40,24,45,246,193,200,110,229,54,70,84,17,196,36,125,195,156,39,172,222,210,234,89,49,48,2,0,174,164,181,227,138,180,112,129,130,4,64,195,159,170,55,61,128,205,144,33,120,87,102,49,25,50,199,75,201,130,195,74,173,239,159,203,73,74,241,67,28,250,111,213,113,114,7,231,57,74,26,80,129,114,203,42,147,18,119,50,52,212,34,218,189,23,161,145,97,175,201,105,92,36,133,98,206,79,32,25,252,233,227,13,44,61,87,191,216,229,132,168,165,248,42,126,158,212,93,194,190,142,179,64,59,55,207,92,201,3,120,138,189,177,80,175,200,165,106,200,42,191,168,146,242,175,197,188,97,246,183,190,230,1,46,34,202,190,163,15,217,38,241,138,35,34,235,102,144,245,1
 53,170,159,26,228,24,45,60,96,29,8,1,110,127,198,64,53,48,41,159,155,82,184,31,138,210,160,202,5,80,164,155,138,8,53,101,131,127,196,211,36,160,45,10,128,203,66,91,226,54,176,85,254,181,26,51,146,138,168,214,197,240,159,186,107,210,50,180,206,252,11,68,8,48,45,143,225,109,178,143,13,159,164,165,96,239,16,115,134,194,183,197,109,226,71,254,47,119,249,54,211,237,211,128,85,204,81,2,56,65,204,176,127,62,43,116,56,189,98,151,173,67,83,160,140,232,197,156,161,79,50,45,173,147,2,88,129,22,241,60,245,99,162,6,48,169,76,67,226,191,61,122,8,160,133,15,153,151,4,93,147,242,63,181,240,142,25,148,250,89,42,191,233,191,143,53,245,68,36,19,26,207,175,20,86,124,17,158,168,196,24,31,106,197,96,35,222,242,91,205,25,8,154,3,28,204,191,231,175,83,3,106,83,240,214,18,60,59,35,135,96,217,34,244,52,9,129,137,86,191,67,250,58,63,59,22,234,217,184,1,193,59,77,228,252,147,242,106,208,71,222,45,238,150,21,29,145,171,204,152,154,195,232,34,241,87,0,252,201,193,103,159,249,47,51,22,229,31,187,42,94,246
 ,66,20,181,126,89,80,61,57,17,149,175,95,153,135,175,93,77,170,178,136,14,88,8,84,219,2,168,194,192,41,213,242,98,91,66,203,223,237,168,102,156,92,196,24,253,96,190,188,126,13,218,250,250,137,186,14,234,245,248,170,175,13,175,134,160,86,134,235,245,36,136,31,103,121,85,152,114,193,56,148,65,122,130,25,226,174,26,58,229,231,225,250,186,21,208,216,179,72,239,82,205,118,204,131,57,67,132,164,132,150,23,134,51,134,146,115,246,236,66,177,152,214,220,137,86,185,115,58,147,33,91,87,250,171,35,57,10,100,27,213,64,216,78,37,64,10,46,236,238,73,45,223,190,29,188,34,143,37,200,195,113,128,154,56,212,156,52,171,26,167,121,206,178,183,133,106,57,175,137,124,109,245,185,240,165,59,214,131,61,178,36,234,205,27,165,56,80,240,121,189,6,0,45,18,220,52,87,42,40,26,66,250,138,62,148,216,68,113,149,111,161,246,24,197,224,196,165,45,232,116,134,104,193,109,177,127,215,181,231,171,63,20,78,84,145,18,194,103,57,7,116,132,147,83,13,117,160,122,196,91,78,80,135,97,47,130,212,24,98,203,222,140,12,136,
 95,208,200,60,217,178,13,19,240,57,141,142,61,228,45,90,138,197,139,246,237,66,24,75,150,28,89,88,9,92,212,85,89,59,226,87,193,117,240,6,96,15,22,122,93,182,78,31,160,133,111,50,186,225,61,97,73,106,213,214,134,49,213,0,189,96,182,8,225,238,176,210,97,222,219,129,6,249,183,118,230,225,136,113,41,184,12,76,130,21,79,23,11,254,253,14,65,161,83,147,114,228,131,131,186,176,26,36,225,220,111,142,244,237,162,229,204,230,102,213,139,151,175,227,70,92,40,6,54,136,241,3,203,234,200,35,30,32,184,163,130,120,211,40,186,79,52,95,39,72,92,95,82,177,69,224,209,22,42,141,75,118,124,83,230,14,198,162,230,233,205,193,131,130,203,162,55,47,181,69,221,239,159,236,118,102,191,36,36,167,226,104,209,251,159,176,12,222,55,4,124,105,67,198,221,147,31,250,17,92,252,180,203,138,116,157,15,167,158,43,197,225,18,124,76,112,179,231,26,106,28,142,175,234,137,157,185,209,229,21,11,94,73,255,248,231,234,139,131,65,84,203,11,123,79,29,249,65,28,150,215,249,110,162,115,250,219,202,111,166,244,143,107,131,237
 ,104,94,20,35,250,226,204,48,139,74,47,122,212,73,141,27,217,59,132,31,200,206,102,191,224,118,15,193,166,216,122,65,10,65,117,14,48,76,149,98,224,98,177,54,184,49,34,173,127,79,242,131,18,196,78,206,136,116,91,208,172,8,97,134,240,88,26,73,1,70,247,97,200,17,45,28,102,45,79,166,174,230,65,252,214,253,243,251,129,42,17,34,41,3,72,224,165,116,183,68,33,122,80,5,0,232,218,139,68,165,146,236,131,110,251,249,249,125,19,2,184,52,131,160,70,66,174,194,108,55,73,62,201,73,222,125,247,0,210,74,68,86,104,223,162,96,108,183,208,220,245,51,196,176,201,169,105,242,28,134,50,28,48,249,4,86,12,250,247,100,224,179,159,11,179,5,148,145,132,185,232,74,150,195,236,101,95,160,17,40,173,224,27,229,181,131,112,118,187,125,183,215,91,5,113,236,132,5,76,145,229,175,196,82,219,208,106,118,47,83,231,1,2,210,249,227,151,76,155,156,151,138,113,214,17,123,218,2,31,126,74,243,99,104,111,33,186,115,175,233,20,44,148,226,9,188,174,14,162,24,201,116,192,44,197,155,82,195,41,206,219,233,77,246,15,158,201,11
 0,153,133,12,53,56,40,80,36,189,106,151,214,59,206,232,18,224,114,221,73,117,31,182,159,57,138,184,1,99,147,51,95,114,136,119,15,102,154,1,111,196,222,27,242,66,249,172,127,3,134,131,3,198,128,48,249,222,17,23,101,236,219,42,194,34,211,221,8,163,37,51,24,25,142,53,77,94,27,225,168,61,99,180,2,180,76,110,102,11,210,183,223,132,155,227,142,120,172,63,144,166,58,57,225,59,109,126,76,14,215,36,78,228,233,52,181,227,31,208,103,19,121,103,157,101,68,98,170,220,235,198,204,242,12,41,87,193,107,112,191,207,236,200,158,147,70,71,130,207,44,219,228,50,39,142,118,0,213,184,214,192,76,8,173,139,158,7,241,226,64,11,99,57,188,39,39,246,161,254,232,190,251,41,147,199,64,207,41,166,49,61,72,171,30,68,137,138,192,28,132,249,231,186,117,177,24,225,31,197,131,192,168,185,88,170,39,202,193,151,122,22,142,53,146,126,78,14,6,91,168,86,52,225,248,23,49,210,70,186,57,17,159,207,125,212,32,54,144,182,135,96,190,188,38,145,196,239,142,60,241,140,254,26,201,80,206,200,87,7,103,30,20,137,35,98,196,68,1
 51,208,60,71,169,65,240,195,194,170,101,147,125,39,34,208,158,135,137,107,129,122,74,136,228,192,190,124,116,181,21,161,92,182,57,93,75,90,184,75,177,247,223,209,11,100,102,12,77,217,172,155,37,173,67,58,253,136,39,255,97,92,130,208,144,120,61,137,91,49,137,154,37,108,98,8,51,250,55,133,253,192,237,158,82,26,135,135,81,205,174,37,54,134,107,147,199,220,25,204,160,86,157,68,212,227,167,230,80,141,159,247,243,141,76,227,22,69,178,131,78,145,84,131,128,80,176,125,7,204,193,104,101,7,20,149,104,73,43,168,165,56,237,75,99,139,127,159,252,31,249,169,187,183,118,213,176,208,3,84,71,67,8,16,170,121,144,92,217,10,253,229,206,20,146,116,67,15,149,95,233,35,232,212,188,194,195,188,70,35,202,18,220,20,120,22,205,245,197,41,145,248,169,237,188,109,101,173,64,175,238,20,11,235,206,209,169,245,253,172,231,222,49,135,189,24,160,19,9,126,161,33,71,26,123,156,122,199,36,39,131,71,142,248,152,0,58,171,120,199,205,87,13,47,111,176,25,244,31,62,151,115,8,16,78,113,231,15,232,40,80,96,139,110,138
 ,125,100,106,141,64,218,59,252,217,215,173,215,68,198,230,177,140,124,84,66,13,12,247,21,53,7,36,237,40,153,146,182,160,116,195,181,251,112,85,246,183,63,147,133,210,155,15,255,253,0,116,0,39,198,38,163,20,29,167,9,143,205,27,198,204,55,3,225,167,215,121,50,140,175,87,11,94,85,209,154,79,89,162,142,17,35,240,149,36,236,4,203,214,241,118,47,14,75,178,246,107,156,62,62,179,110,32,91,146,139,82,213,11,142,242,234,100,218,197,12,72,238,148,150,14,168,14,21,108,53,136,191,118,83,70,240,204,178,67,137,137,99,81,212,78,68,169,75,246,96,104,3,92,2,224,242,102,46,141,16,175,26,226,188,95,57,9,168,59,96,156,136,193,114,93,8,201,207,206,106,223,70,225,14,148,9,3,64,193,23,227,43,86,168,247,192,40,151,171,60,188,187,75,160,103,113,177,32,163,52,45,208,218,136,78,229,13,217,114,117,32,95,152,54,17,178,83,189,42,58,200,63,201,22,234,218,211,72,209,149,242,71,176,180,18,55,41,150,139,222,55,60,21,218,249,12,239,35,35,39,74,105,200,10,127,255,160,81,100,252,156,148,72,242,161,213,105,63,184
 ,84,107,67,253,130,186,11,238,92,109,166,37,236,21,99,119,18,179,39,107,92,125,54,30,76,116,30,100,205,231,175,225,183,216,39,191,147,232,44,140,7,167,149,76,147,29,158,126,139,122,224,96,54,210,11,63,158,3,0,120,168,126,22,126,192,137,197,64,81,135,247,72,194,90,107,85,103,113,57,192,185,6,229,139,215,133,24,160,148,231,91,89,176,50,193,6,68,69,104,116,168,82,182,60,2,117,165,45,55,21,213,137,50,125,244,118,237,220,49,249,93,46,53,163,5,158,24,158,74,9,199,178,82,202,126,147,243,221,168,220,137,204,192,195,4,253,135,201,34,152,206,117,194,39,106,251,235,82,17,242,84,110,0,200,150,19,34,107,119,171,195,198,102,55,163,124,201,195,9,49,86,121,145,226,8,106,22,42,174,2,116,35,13,230,142,81,95,193,137,151,121,1,78,191,252,18,212,188,15,33,2,26,11,41,226,2,45,18,172,252,243,211,2,54,217,3,120,20,194,36,109,168,162,94,126,78,198,95,223,190,15,232,54,92,217,134,169,223,232,202,170,209,199,89,220,180,195,19,112,84,164,158,226,46,205,248,106,168,128,120,87,113,187,1,199,57,218,13,166
 ,80,81,2,190,183,210,160,118,76,7,220,33,86,30,153,130,2,187,191,179,61,155,101,107,188,208,224,70,12,83,50,71,139,74,212,42,246,244,3,39,220,82,12,238,44,177,207,38,56,168,236,76,104,255,255,180,38,163,128,87,75,231,83,141,182,147,25,206,59,180,220,215,148,128,129,155,227,57,21,237,162,113,48,143,144,5,88,87,232,235,196,20,62,145,210,189,176,190,234,98,84,123,128,39,167,74,24,110,36,169,44,151,210,86,149,148,192,80,227,106,182,79,56,154,116,52,141,2,81,238,239,227,136,0,224,129,197,142,84,205,36,64,153,41,227,170,157,240,16,225,16,91,138,219,153,194,130,186,16,126,142,191,88,184,7,139,55,45,104,65,30,130,30,10,205,147,16,246,36,107,200,158,120,128,197,129,6,8,214,54,215,174,131,169,62,89,233,40,90,75,76,228,79,148,248,200,225,137,220,240,18,161,127,153,233,17,245,82,240,105,133,207,140,204,69,194,65,220,147,125,47,255,47,35,49,94,250,162,164,108,68,142,109,48,48,217,88,214,250,104,124,225,56,126,195,241,182,64,241,177,210,194,85,103,237,142,26,160,54,250,179,226,142,48,13,1
 2,244,118,170,254,113,200,69,154,159,12,202,108,49,157,45,67,145,154,43,196,32,54,72,26,11,58,61,101,179,85,249,143,75,55,202,227,154,72,212,152,182,151,158,47,39,51,70,139,226,26,34,230,253,158,111,254,80,52,210,218,184,90,236,53,152,24,156,22,126,136,207,46,151,8,218,226,165,204,156,144,107,171,167,2,12,173,220,103,204,95,5,0,74,149,63,86,95,68,86,225,141,165,75,156,106,165,192,57,165,38,189,225,13,47,174,15,121,211,245,99,254,81,143,162,167,37,49,36,142,110,195,180,230,255,232,92,164,56,157,239,200,251,122,18,235,242,155,134,164,118,166,212,74,96,166,118,183,50,221,9,89,180,71,20,93,201,161,20,74,182,117,1,62,214,79,20,122,22,242,155,234,1,65,182,58,193,216,144,106,33,198,153,96,202,160,9,141,197,84,209,122,147,98,30,49,166,207,248,197,55,208,227,80,96,122,158,27,226,125,136,139,170,34,185,25,238,44,174,185,148,105,86,13,54,208,211,154,156,173,222,113,88,196,237,86,86,66,79,1,163,138,15,59,157,26,9,182,34,66,254,36,140,70,15,29,190,122,179,43,254,98,221,69,114,41,98,213,5
 4,186,51,78,233,206,86,250,23,240,199,74,127,127,159,197,166,117,93,197,255,127,130,122,0,211,37,89,209,168,169,51,88,250,135,28,46,229,72,226,88,20,178,196,37,138,185,120,173,3,117,46,4,214,88,85,17,33,15,122,172,143,228,103,95,252,72,150,248,48,23,186,172,159,85,210,124,165,47,231,126,185,243,146,67,37,66,220,9,66,98,18,228,76,65,15,30,112,158,117,15,42,160,29,175,214,167,37,192,143,88,9,14,95,215,70,25,38,21,254,46,121,169,136,235,224,227,86,50,87,15,30,230,229,46,24,140,171,188,161,102,189,147,171,125,160,84,171,170,71,168,4,36,55,173,208,65,101,105,252,20,57,230,187,115,121,241,249,117,94,29,49,33,165,24,141,193,118,27,134,159,32,236,234,219,182,52,246,95,136,44,33,154,224,233,10,143,241,66,230,148,68,209,220,152,212,203,12,78,164,4,56,27,53,165,36,14,10,90,43,158,249,39,87,27,172,212,236,125,89,123,84,185,229,41,123,120,160,110,59,2,187,18,73,8,4,18,228,162,243,194,246,196,252,222,62,219,106,129,49,247,130,210,249,131,112,83,135,252,80,122,171,76,161,102,199,141,188,77
 ,183,66,133,57,155,127,147,24,247,158,167,48,20,43,148,205,125,218,128,122,8,180,255,180,90,216,8,126,251,115,222,154,16,63,12,226,44,72,139,239,76,225,18,152,208,240,141,77,48,10,120,79,236,89,50,45,108,49,176,234,165,147,49,214,145,164,248,68,161,174,151,92,50,116,71,253,238,224,226,16,115,112,16,19,228,183,235,12,197,128,183,173,254,164,101,180,37,57,171,14,232,175,70,28,114,244,16,237,213,172,87,54,7,119,43,105,160,139,172,121,29,220,210,8,130,197,47,205,143,20,76,168,144,237,0,91,11,80,90,65,160,65,22,213,138,159,81,98,233,0,28,187,206,203,34,140,142,48,190,164,73,188,17,12,151,48,223,208,94,68,225,25,76,251,57,111,47,49,104,92,89,15,83,241,91,115,120,135,79,254,205,189,14,188,85,61,122,254,91,78,56,213,76,10,47,12,121,181,88,217,9,107,11,239,36,243,28,114,182,97,157,73,238,177,240,228,78,192,81,208,213,37,54,199,183,45,229,44,188,110,211,71,5,126,4,100,208,153,84,128,229,113,92,211,81,223,139,195,242,88,255,122,200,126,217,48,143,95,210,209,72,168,130,91,50,179,61,246,
 11,180,115,84,80,74,213,164,37,34,246,217,69,80,186,28,88,63,157,28,186,48,227,193,72,67,244,26,115,200,220,225,75,104,6,215,64,166,233,21,148,52,100,133,198,82,187,56,17,206,124,20,191,62,13,49,168,45,102,230,214,28,23,177,69,98,22,231,32,176,252,84,187,62,165,87,32,207,142,248,49,180,134,2,0,171,168,112,229,8,196,219,0,245,196,152,213,214,75,105,243,45,89,226,95,6,197,142,242,123,39,53,118,155,23,45,165,224,47,143,14,153,114,55,25,205,86,34,122,27,8,178,99,215,144,66,27,187,168,46,108,239,178,125,33,80,150,21,247,251,162,176,197,126,26,169,71,1,69,169,52,176,118,131,19,200,180,148,246,237,86,121,7,134,131,71,62,192,36,112,99,27,36,216,136,142,65,106,45,147,32,131,159,248,169,22,190,113,241,67,140,223,136,205,109,174,119,48,46,96,89,16,195,15,133,9,171,240,22,43,115,196,133,104,214,18,53,147,44,183,250,45,20,246,251,50,90,251,215,188,223,89,178,0,67,47,223,157,84,217,45,145,96,100,103,175,127,46,224,212,109,91,191,88,253,229,184,48,117,155,214,98,93,110,222,193,209,118,41,3
 8,42,1,37,159,43,57,93,225,101,239,75,28,236,49,148,161,167,216,225,113,38,70,101,221,80,201,125,201,219,36,193,201,62,178,2,66,30,184,238,36,94,18,174,99,17,8,143,190,164,23,247,226,240,27,205,80,59,184,169,92,1,192,205,86,181,82,18,38,89,62,78,122,8,130,164,57,49,82,184,53,116,152,41,81,185,202,140,240,16,13,17,21,75,248,131,4,221,175,101,60,67,107,103,191,112,31,46,97,41,76,230,179,142,188,46,102,131,0,103,129,77,120,241,59,98,20,144,69,218,156,199,207,41,14,166,163,35,224,3,68,41,169,21,230,9,76,203,196,242,249,10,147,126,49,222,133,242,68,30,137,71,161,14,167,144,29,170,83,238,47,36,252,192,134,99,7,95,7,72,100,45,212,123,162,207,4,222,82,145,90,208,104,136,81,101,237,178,252,250,161,138,218,25,222,83,102,157,172,251,64,224,127,26,237,230,114,100,136,98,154,179,246,244,87,109,216,237,26,202,189,192,131,222,149,113,166,47,45,67,111,192,168,54,8,92,127,29,95,162,81,26,149,140,217,143,190,236,84,213,164,195,161,200,144,38,216,163,121,228,242,92,172,21,209,188,127,244,251,1
 71,122,234,143,168,27,165,49,147,190,108,54,41,8,52,99,136,101,66,230,179,18,103,102,241,142,216,209,152,235,187,170,83,200,150,39,203,85,172,61,213,75,216,142,122,224,182,123,154,241,94,145,14,198,190,1,58,213,4,159,237,31,28,97,72,122,144,40,60,42,158,21,215,176,113,104,253,66,132,122,60,20,138,253,10,234,139,75,216,212,149,246,28,242,231,197,165,34,88,226,77,192,16,6,77,197,23,71,75,247,107,159,180,119,18,110,135,229,75,16,157,229,177,241,179,231,170,14,94,97,19,51,194,83,134,4,51,31,60,199,89,214,63,219,96,197,86,154,174,92,52,145,184,139,253,205,90,111,47,219,173,141,75,158,47,176,31,145,49,203,7,110,209,182,114,68,52,87,138,168,228,120,90,147,38,230,118,237,111,223,211,94,19,231,111,61,139,53,73,183,45,14,241,92,75,173,112,16,174,160,210,95,185,191,158,25,103,235,173,126,40,222,160,230,49,254,62,37,14,84,3,27,120,9,134,83,130,103,201,69,194,247,85,96,45,80,83,239,103,74,189,98,20,180,205,94,77,192,104,13,31,8,198,223,154,227,201,196,32,177,226,120,13,36,234,102,121,63,
 106,125,255,224,63,164,88,211,37,206,90,49,81,150,3,104,50,143,95,234,18,148,240,203,98,70,252,15,193,103,135,98,5,69,181,145,68,136,35,89,48,208,110,123,127,220,144,85,207,85,75,200,189,2,180,174,232,79,36,12,208,150,135,64,164,6,164,224,134,194,255,5,161,21,233,88,85,109,244,159,96,80,80,247,217,90,85,186,194,117,56,201,119,85,151,216,34,2,58,192,19,26,205,58,152,115,138,181,133,185,106,250,208,126,43,240,105,231,188,194,185,64,224,219,49,203,147,1,235,6,42,245,50,72,253,62,55,159,57,4,89,209,236,101,206,247,3,246,139,33,98,72,187,176,70,24,59,120,128,212,29,220,251,155,51,196,127,69,180,247,234,123,106,213,234,42,203,89,228,182,11,44,46,78,101,113,200,152,20,230,201,68,170,158,12,247,70,242,56,55,194,172,3,181,192,242,162,223,194,252,212,220,228,205,85,104,90,200,146,81,140,171,240,54,242,250,115,183,76,232,206,84,227,232,35,42,245,230,129,193,43,130,68,84,96,25,179,153,85,41,172,140,103,236,227,162,189,74,212,205,192,226,31,104,116,64,40,190,234,3,4,65,19,57,253,150,54,2
 52,22,171,108,244,191,164,109,101,106,109,17,187,148,133,222,127,20,158,35,154,175,148,60,106,102,172,160,34,142,105,128,26,144,81,240,67,223,237,189,102,85,88,9,34,166,204,17,198,191,160,14,160,172,127,208,146,168,124,95,241,214,17,248,9,62,180,93,40,11,10,255,138,219,80,174,61,44,242,2,180,1,188,80,115,211,150,88,92,215,144,226,87,127,180,19,56,13,134,152,153,240,132,219,127,237,226,230,63,145,1,26,128,194,235,226,26,3,24,254,172,1,162,30,81,103,177,208,101,120,76,32,169,173,252,226,164,249,223,128,50,141,129,100,208,112,161,84,39,85,14,238,63,175,122,112,111,140,82,76,213,2,189,109,105,21,101,65,23,15,206,65,61,66,117,93,10,45,20,15,168,41,31,86,145,47,107,48,52,42,217,205,230,9,145,18,14,153,31,90,239,104,67,67,186,213,57,251,119,107,59,106,1,245,19,170,255,48,13,11,127,90,220,107,96,10,116,155,91,243,67,247,194,32,48,72,187,3,104,83,176,84,239,212,253,85,195,203,203,120,136,165,219,9,40,148,8,23,132,14,174,65,14,38,9,57,89,244,200,153,222,81,148,219,4,179,122,85,171,201
 ,164,64,145,178,43,227,234,218,150,85,213,231,7,232,166,107,150,243,45,191,42,115,34,114,78,114,118,172,170,207,141,171,219,209,91,124,64,232,172,97,88,204,78,82,159,186,8,49,131,74,15,104,180,103,125,156,112,33,142,74,172,46,76,230,97,5,239,218,225,195,61,152,97,31,125,144,149,173,236,32,101,27,55,252,92,135,31,228,169,109,202,208,189,140,92,120,84,140,193,239,6,30,59,67,32,190,134,8,167,205,237,77,107,50,98,231,47,47,45,162,243,42,143,65,7,118,162,127,131,137,34,131,193,84,212,147,220,173,209,7,114,195,163,228,201,222,169,84,247,170,222,33,249,199,32,205,237,189,221,149,23,3,161,226,240,67,69,226,41,250,234,229,204,213,92,49,228,106,36,122,231,176,109,16,11,13,40,126,186,91,212,124,50,244,84,47,82,240,136,97,108,99,171,160,24,159,221,78,136,244,13,8,210,167,10,41,53,111,209,240,16,171,182,136,225,152,47,142,26,106,84,195,217,145,183,186,214,161,235,46,173,72,41,13,233,33,200,4,51,8,228,230,183,57,232,182,4,126,1,72,189,88,135,195,66,18,136,190,207,105,21,125,157,220,44,181
 ,37,125,78,13,230,183,165,28,5,204,5,213,104,247,46,189,107,66,185,170,119,14,212,241,197,129,202,60,99,148,131,170,119,153,152,29,182,38,31,216,142,98,180,90,160,27,148,117,101,58,129,245,85,121,30,191,235,225,216,201,193,82,98,154,198,111,210,188,25,175,97,1,36,38,200,168,174,61,226,169,155,209,74,156,235,254,240,181,73,103,134,241,88,47,131,183,153,78,120,208,117,223,195,37,53,60,224,179,158,87,226,27,4,9,195,146,0,18,92,192,228,248,100,99,131,111,150,194,177,176,228,202,32,92,30,128,194,153,170,93,204,73,20,11,7,237,232,206,202,6,56,246,252,195,4,19,138,144,236,235,245,90,67,242,21,197,28,77,113,2,1,71,219,121,150,157,37,246,88,34,167,126,248,229,234,105,246,118,166,10,68,191,128,180,109,97,218,176,57,167,176,69,216,7,3,2,130,65,63,160,7,106,108,140,136,37,102,90,9,50,86,50,49,215,10,226,110,76,237,171,33,21,81,51,210,248,90,74,130,243,52,25,129,220,122,39,132,226,40,13,30,175,95,133,36,187,119,17,44,89,79,84,66,141,181,11,163,158,240,201,14,142,208,14,151,238,13,102,140
 ,117,89,205,124,172,7,250,219,183,236,55,236,119,100,128,28,60,114,109,111,68,152,148,233,221,146,104,70,177,65,124,172,119,92,57,215,167,145,144,91,5,219,161,111,50,128,67,92,139,76,80,74,58,10,117,11,194,181,92,127,235,117,85,231,6,211,22,191,173,45,152,25,162,249,130,70,97,83,52,204,148,40,48,113,95,189,225,117,46,207,175,39,141,0,22,204,108,216,226,222,191,27,166,77,188,102,56,138,5,46,156,170,197,28,228,191,100,220,24,111,94,215,193,235,81,147,237,219,1,182,35,153,102,74,22,223,178,30,74,100,79,90,124,97,105,149,98,138,178,64,17,86,66,172,39,170,30,92,78,62,251,234,58,33,108,238,226,55,219,205,196,157,239,199,102,215,215,241,125,136,248,162,232,17,233,149,69,143,187,35,147,59,205,1,219,72,193,83,186,187,181,234,216,153,105,33,228,88,141,155,157,176,47,208,182,186,46,242,165,42,128,199,233,36,94,134,237,212,61,140,59,101,178,196,60,101,15,166,146,95,132,39,88,220,132,195,130,214,179,130,16,18,191,227,245,86,71,153,193,53,194,57,223,141,92,207,95,182,226,199,84,175,81,67,
 95,223,73,119,99,11,120,42,49,154,142,46,2,11,136,228,80,249,220,11,187,74,4,202,239,41,33,35,227,17,177,157,17,252,107,10,227,67,131,95,26,163,40,189,177,247,125,61,9,50,10,140,179,246,225,107,187,69,187,74,65,7,231,187,224,252,92,83,143,43,185,105,28,83,0,32,55,113,169,123,122,203,63,74,61,176,200,0,48,171,72,20,52,223,198,198,19,115,130,228,133,136,24,243,89,4,215,145,123,36,200,132,218,90,10,103,107,253,177,197,79,232,22,37,42,82,19,131,184,215,52,13,218,245,167,254,231,23,172,215,78,13,114,158,99,209,155,219,153,246,177,140,134,191,71,96,210,184,18,25,208,19,204,139,86,92,174,9,245,219,255,5,137,27,114,234,177,210,150,249,39,221,190,186,94,197,181,157,86,31,63,0,2,225,118,170,254,202,218,236,125,68,203,122,72,152,83,118,73,201,111,43,227,104,0,204,173,123,134,154,179,60,17,6,246,54,251,107,62,153,78,230,96,109,255,96,152,201,42,234,221,64,131,44,222,254,49,134,212,145,76,133,35,41,88,141,246,252,19,211,32,251,116,31,224,49,19,37,90,38,101,232,235,135,64,126,132,187,215,
 248,91,180,209,75,32,29,65,36,249,230,66,57,116,0,186,186,227,120,103,49,53,153,56,21,223,154,66,127,54,170,153,85,87,177,252,43,96,142,143,105,195,4,193,197,78,166,109,203,194,95,23,218,211,253,248,142,38,234,164,22,133,178,154,27,164,66,108,142,232,91,243,188,181,164,159,152,240,221,193,50,151,173,61,172,30,70,185,197,116,164,0,104,189,3,4,81,110,65,79,129,234,83,12,155,5,209,239,77,71,249,172,56,55,64,140,217,91,27,33,237,41,172,180,249,141,228,79,76,153,127,185,247,207,179,143,33,13,4,10,142,208,178,67,14,193,62,248,73,97,209,101,202,36,192,247,15,202,73,19,219,40,9,27,86,8,36,212,124,62,49,199,78,51,171,190,87,96,215,27,244,174,95,42,149,251,80,209,49,169,175,109,34,148,173,251,150,62,154,73,14,158,122,140,195,27,107,138,209,144,72,35,182,164,147,170,181,239,199,195,227,43,22,168,224,154,17,101,107,243,26,243,230,163,170,109,37,155,96,173,179,156,135,160,49,176,211,251,151,50,59,106,97,197,28,160,164,187,10,250,135,206,209,194,154,50,115,56,225,206,24,189,21,188,16,165,
 40,174,52,255,84,115,231,124,36,65,140,251,113,253,87,102,87,107,118,182,6,173,164,76,66,128,149,187,201,209,196,183,122,119,245,205,247,68,111,50,152,90,49,227,244,204,79,37,176,23,60,102,236,51,169,85,204,132,8,209,9,199,22,109,192,74,229,38,140,237,51,242,126,250,158,157,128,254,159,107,31,248,20,199,247,208,124,168,69,250,1,229,56,133,91,106,16,118,224,173,60,66,232,64,174,66,23,137,144,163,226,46,125,255,228,161,172,74,92,112,171,200,119,19,87,228,4,124,55,34,241,241,24,59,77,67,238,184,63,134,145,14,51,255,187,51,249,185,74,219,116,9,119,186,160,101,18,177,167,204,87,193,251,43,249,218,129,200,157,4,59,84,94,83,141,184,105,142,56,67,210,173,228,186,116,1,164,73,70,87,61,65,224,145,40,231,119,150,33,200,70,255,124,120,131,98,118,201,105,53,194,140,238,84,184,80,111,102,81,249,53,244,198,232,228,95,70,5,188,83,53,136,216,170,183,219,114,99,48,34,144,57,106,89,22,228,99,168,53,45,203,69,248,221,63,98,72,206,119,114,112,95,59,176,118,109,251,56,36,204,95,101,108,9,230,185,
 107,43,105,142,3,77,133,181,195,169,127,23,124,94,92,96,113,34,245,156,165,212,253,75,169,109,117,188,101,64,74,215,42,249,219,55,146,238,44,218,135,40,186,217,252,216,86,93,150,79,36,157,18,235,99,0,116,102,102,165,60,67,242,199,112,30,255,74,14,46,176,47,83,14,125,108,77,154,107,232,47,194,168,99,19,179,178,228,133,173,128,78,45,102,8,216,126,2,26,21,251,251,130,121,154,144,190,196,85,190,76,96,117,10,38,206,63,203,210,104,220,79,175,79,251,68,207,0,17,176,207,216,1,170,233,101,203,144,44,98,8,244,167,85,11,23,175,226,144,9,85,140,86,183,232,144,218,254,211,155,45,123,72,199,210,26,172,113,245,112,157,176,134,36,18,177,109,205,150,168,115,204,138,56,179,197,14,191,160,183,238,227,33,176,179,28,111,12,215,219,59,5,182,152,34,32,221,133,44,252,101,80,29,65,12,114,117,18,125,109,194,20,135,26,39,22,32,88,127,122,83,81,183,214,63,128,81,133,213,111,160,193,30,67,150,25,203,198,36,189,143,156,232,246,224,243,115,180,26,70,227,127,16,7,253,124,193,192,233,110,230,190,110,23,120,
 11,74,113,162,190,38,136,182,129,232,217,194,202,231,54,17,42,54,85,94,9,1,8,33,91,246,196,193,44,211,112,205,124,25,5,70,161,187,207,218,103,129,161,130,237,84,133,24,161,164,185,84,76,70,87,199,114,44,87,134,196,94,235,71,198,116,52,44,141,167,109,254,36,73,233,180,201,17,173,24,191,160,57,246,81,188,29,115,243,210,12,161,45,205,25,169,205,185,64,51,59,97,120,39,151,160,130,73,208,62,122,6,140,132,171,205,45,74,238,199,234,224,115,60,32,153,168,53,121,31,144,79,31,191,5,62,103,167,167,178,0,65,150,10,39,132,147,242,166,1,28,96,32,92,222,180,93,141,121,41,71,216,133,5,220,131,84,180,201,170,26,146,221,173,254,24,109,22,106,240,82,54,100,108,223,220,93,80,56,144,165,230,244,134,187,140,178,202,94,57,2,193,211,15,115,248,176,112,155,243,80,132,191,211,140,9,121,103,108,210,221,210,57,182,244,125,80,209,104,138,153,9,111,132,167,0,130,52,99,203,130,134,254,156,128,31,180,122,176,175,118,8,35,46,102,174,5,22,252,149,76,80,223,129,109,239,110,147,80,129,106,221,148,75,77,60,205,
 91,150,63,85,15,22,26,139,141,190,224,217,167,25,103,255,0,217,206,113,46,148,53,162,118,103,49,83,106,92,38,28,105,6,135,108,69,178,142,96,31,126,235,83,19,109,160,110,29,214,118,200,219,161,10,18,87,252,209,96,239,222,194,129,238,218,31,153,244,201,217,139,184,230,197,232,58,252,147,75,205,40,222,200,4,47,28,2,168,39,35,208,98,165,223,52,110,167,31,45,47,90,182,212,129,137,228,78,107,53,108,239,145,33,135,244,58,132,96,207,94,79,183,242,29,203,200,200,250,100,211,220,23,192,197,127,226,134,80,203,67,211,35,46,45,45,16,90,186,223,53,213,159,167,34,169,80,106,55,137,245,58,251,207,208,250,246,102,56,155,74,92,2,33,20,224,91,50,133,126,163,123,201,135,88,39,28,24,81,113,221,243,159,227,181,19,135,45,68,204,49,163,228,74,234,13,152,231,140,250,81,171,35,151,94,127,27,107,228,16,115,121,98,207,170,134,70,100,169,164,13,238,152,33,25,161,51,154,99,2,30,199,213,92,54,200,137,51,28,2,58,20,140,76,200,198,226,191,1,45,70,68,71,108,89,145,90,118,250,168,196,93,52,77,253,180,2,58,192
 ,100,123,8,64,159,96,116,217,93,97,213,33,68,142,28,227,85,204,237,94,188,118,18,45,99,129,177,65,246,10,117,108,117,154,228,65,110,247,35,238,109,141,181,207,60,123,48,75,230,72,52,83,213,178,200,169,123,66,98,149,167,72,218,19,144,229,143,223,28,207,183,216,173,131,33,152,209,140,59,187,145,238,41,231,27,55,144,66,42,57,22,133,211,210,6,72,199,43,156,26,213,59,215,84,9,249,16,234,72,50,53,17,85,46,88,14,145,191,143,218,140,216,176,46,193,25,97,236,193,255,196,21,48,183,191,237,98,251,234,187,57,205,80,113,81,125,130,32,119,221,141,227,233,95,3,192,10,159,155,233,165,187,188,52,171,128,68,152,251,116,205,1,99,227,77,70,78,252,46,131,141,188,223,177,47,152,223,169,237,9,102,254,240,237,76,1,119,113,249,231,54,34,130,107,230,116,163,163,47,137,248,245,56,253,111,45,3,226,39,209,133,11,103,70,82,20,230,44,172,142,70,189,168,227,136,238,113,37,76,70,246,106,20,129,215,185,18,155,87,228,63,39,29,249,207,67,118,179,75,114,163,249,77,178,216,233,109,53,172,252,254,49,183,176,130,1
 68,128,14,237,243,248,129,138,179,108,78,83,138,232,99,80,123,246,8,141,192,121,212,201,127,173,147,99,215,71,39,186,232,70,154,69,81,149,114,39,196,82,254,142,102,116,141,153,15,129,251,4,75,222,33,183,254,103,34,64,16,196,221,135,108,70,30,231,164,219,154,184,95,241,106,105,109,210,35,242,152,11,114,98,233,131,120,103,243,130,99,147,68,12,143,182,15,79,228,59,215,78,245,230,93,193,93,42,42,136,220,44,177,250,200,79,17,164,191,85,64,125,137,119,10,9,247,174,164,78,32,10,73,170,147,221,148,148,55,158,1,198,155,225,16,155,223,70,103,237,134,113,251,66,19,152,162,5,26,41,239,97,37,123,94,72,209,216,165,138,253,11,250,182,246,114,100,234,34,125,0,22,240,186,36,70,74,165,166,75,223,101,49,71,81,88,222,120,199,44,116,248,143,74,1,44,152,212,195,53,255,24,105,137,129,122,238,193,250,156,64,65,17,120,139,145,180,8,122,212,242,134,148,90,247,72,192,207,189,218,211,46,252,234,35,206,37,180,73,7,24,93,108,70,23,60,85,3,127,251,132,114,45,133,216,174,101,211,53,2,126,133,6,117,151,131,
 212,196,39,243,23,132,195,245,217,104,184,210,171,130,218,106,205,243,161,16,88,124,31,69,104,242,242,143,193,206,143,39,40,48,33,145,1,100,74,47,201,47,60,153,99,134,114,107,58,103,97,162,240,42,254,230,10,16,173,112,146,243,49,233,130,218,27,55,159,82,216,54,170,216,31,127,43,199,73,184,240,182,19,4,199,5,227,199,59,158,216,180,44,118,145,223,24,120,211,37,59,115,157,200,156,9,197,227,233,97,16,23,251,31,45,241,66,149,222,138,221,114,223,76,2,243,213,2,1,253,143,10,88,7,91,210,241,177,79,167,81,86,59,145,59,167,167,117,240,56,91,248,138,19,2,229,122,84,237,192,142,8,205,66,57,47,233,82,59,26,137,39,123,27,66,98,181,192,251,203,142,23,152,247,156,200,59,42,7,166,203,124,147,128,241,37,98,243,247,167,26,236,20,165,147,55,234,165,60,255,105,206,154,38,45,113,55,100,255,203,77,196,188,163,4,168,101,202,247,210,215,241,154,109,8,222,138,228,131,101,111,2,243,94,217,227,159,160,84,36,53,173,225,226,99,197,33,20,187,222,56,221,200,67,27,17,157,95,88,97,180,28,101,121,18,230,242,2
 47,93,160,217,101,14,178,175,67,252,14,183,51,138,178,215,211,175,87,35,213,220,59,209,226,46,110,128,139,160,200,27,163,161,3,142,67,127,234,228,192,243,9,9,63,200,196,133,6,144,8,31,184,21,185,177,217,211,220,31,73,87,158,255,218,214,54,172,139,129,29,20,114,137,89,72,121,201,148,168,77,194,48,117,171,123,92,220,65,72,79,147,199,6,98,189,99,67,98,197,208,118,31,50,137,45,127,113,241,86,184,177,12,177,234,245,152,132,241,157,144,24,23,169,124,121,234,25,64,177,221,103,249,221,67,7,171,109,187,135,71,140,13,242,18,111,125,19,150,47,244,116,24,96,200,225,97,184,213,39,1,149,143,21,228,143,145,150,208,158,20,208,130,151,141,167,97,135,165,230,178,194,15,123,103,244,187,55,155,187,247,200,117,93,250,4,80,248,104,63,135,146,219,173,177,189,49,172,115,48,6,113,72,46,171,156,117,49,109,150,119,67,119,52,222,1,89,151,197,128,111,144,103,88,142,85,41,184,140,29,153,34,158,201,123,58,252,138,174,254,211,92,59,254,123,61,226,35,171,124,31,133,123,50,52,18,190,247,49,39,148,216,100,53,
 44,251,112,66,68,191,182,61,165,188,243,226,110,129,56,172,54,193,253,90,115,33,56,249,244,254,156,121,16,114,131,149,184,118,150,243,126,50,171,49,187,62,70,23,244,120,178,119,26,10,31,236,66,220,95,60,220,102,187,226,136,86,161,211,14,246,106,38,120,181,118,44,216,126,167,102,36,93,151,230,185,235,78,29,202,198,110,44,202,2,41,242,18,59,103,196,94,121,220,52,236,123,0,218,240,76,160,106,162,214,204,133,9,103,108,54,255,163,141,252,190,228,52,234,117,37,26,229,188,111,223,120,176,153,206,178,45,87,146,195,243,144,107,207,163,190,3,141,111,166,254,33,43,189,94,25,174,22,127,147,129,223,60,89,134,6,105,0,180,229,17,135,140,56,157,0,167,57,158,180,109,98,164,234,255,29,12,17,4,48,193,248,2,104,193,250,166,166,28,229,107,196,171,62,91,54,184,131,123,192,49,38,123,48,51,0,54,29,170,200,179,225,147,245,213,97,159,54,124,27,192,253,20,209,52,22,170,149,236,246,16,139,6,235,69,117,239,51,138,167,4,124,157,12,136,93,206,10,130,76,181,31,9,214,213,141,169,113,102,90,135,166,101,137,1
 36,154,215,162,90,227,101,50,132,23,103,105,24,45,64,43,73,108,11,53,38,73,235,230,106,165,177,119,253,102,4,60,189,46,15,59,219,40,34,80,94,58,182,97,101,234,81,161,46,90,51,65,142,93,167,58,81,175,97,233,183,230,218,225,35,237,100,74,211,254,40,124,166,76,32,114,202,213,100,232,37,22,11,72,41,239,107,161,86,242,134,208,171,120,19,198,15,202,204,250,175,115,174,177,54,154,245,172,254,107,8,52,192,104,54,29,125,250,2,193,51,208,212,146,129,56,35,72,233,195,126,68,93,184,121,45,207,55,5,198,10,96,212,163,48,124,43,133,197,133,89,152,190,199,214,159,43,227,225,95,130,108,167,39,251,35,98,54,234,141,109,83,162,182,235,72,123,62,47,185,149,148,9,68,133,30,187,50,210,204,220,104,98,162,2,166,101,4,204,134,19,112,44,68,182,158,11,164,38,211,15,209,93,18,235,112,87,198,173,168,178,138,172,116,248,139,30,67,133,7,126,162,149,103,199,92,9,235,239,217,250,39,233,229,114,15,28,211,25,140,40,53,182,228,222,96,211,196,159,162,10,240,193,99,1,160,242,91,244,22,67,201,12,27,25,238,117,79,2
 41,99,185,93,27,50,128,49,45,184,68,193,181,14,171,50,251,220,177,93,207,223,73,163,139,238,190,51,31,115,107,134,7,112,133,51,121,216,32,91,136,16,114,137,93,127,111,241,133,179,253,38,149,250,135,133,251,250,108,141,126,150,24,64,227,77,185,171,180,89,118,142,197,215,240,62,237,178,167,221,192,116,198,199,201,6,139,21,17,179,40,165,42,94,117,9,34,166,55,94,243,155,93,152,174,98,240,147,29,165,31,219,26,233,53,253,174,139,146,207,169,31,84,16,24,163,1,97,215,202,190,249,18,0,226,113,7,53,238,222,208,184,79,75,161,245,125,79,135,66,61,90,126,229,118,48,192,161,253,128,212,141,83,60,61,184,138,201,129,103,214,41,175,87,10,55,100,104,155,83,27,58,107,168,160,42,206,77,9,12,204,174,3,51,2,154,6,9,186,170,170,135,207,19,50,216,52,139,173,122,67,2,250,198,74,31,76,169,109,210,12,238,78,68,97,111,242,105,143,249,174,102,48,227,73,177,31,54,67,87,183,13,229,70,218,159,176,180,197,106,54,191,254,102,123,185,133,194,95,67,172,187,231,206,15,145,250,65,217,215,135,36,155,32,236,150,26
 ,127,245,83,215,74,3,149,146,240,243,2,83,239,161,98,135,65,92,222,49,121,45,233,34,98,28,151,202,138,119,46,114,86,155,68,127,116,47,221,195,154,134,223,205,228,208,145,37,111,72,91,152,172,223,221,24,122,164,26,115,88,166,237,75,180,84,143,209,168,131,26,162,16,28,246,56,60,47,73,82,73,239,149,5,97,120,65,76,20,215,102,7,164,20,170,201,63,165,213,44,70,187,216,133,175,24,240,78,21,237,167,147,153,153,204,49,73,212,42,103,69,179,75,80,87,204,80,95,115,190,190,156,21,12,206,120,234,108,137,39,164,63,234,146,88,233,156,184,66,179,236,63,154,243,45,104,57,98,173,114,49,160,204,4,115,35,69,118,162,203,16,207,201,86,88,194,233,109,197,116,65,83,252,178,217,170,25,77,180,47,98,7,14,120,229,31,66,97,30,81,141,226,190,97,195,127,225,19,199,124,50,195,44,240,216,84,95,61,14,194,148,250,69,247,169,207,6,106,218,225,97,96,94,144,40,109,17,106,225,242,12,49,118,79,154,29,254,250,252,111,108,152,66,186,14,53,248,64,170,234,48,111,228,161,26,177,75,253,33,226,172,81,162,223,194,208,93,12
 ,234,229,73,140,228,188,245,97,49,99,99,23,110,57,214,113,113,152,230,220,212,201,8,192,137,144,55,233,219,100,126,146,209,131,170,145,243,102,47,160,58,158,180,167,166,107,179,223,243,126,254,235,77,141,237,211,12,26,77,133,244,24,179,221,127,127,96,117,119,67,113,169,244,15,195,156,213,131,69,225,222,170,123,30,200,207,104,97,90,250,77,102,19,60,35,202,198,208,61,86,216,153,94,169,249,27,170,185,11,84,2,100,118,2,215,172,49,167,237,205,81,251,242,213,114,30,132,87,107,102,126,61,1,141,20,34,72,249,99,249,152,43,87,164,210,177,4,222,131,168,205,110,114,72,242,145,137,201,101,239,148,49,0,37,64,231,176,114,179,193,70,69,34,102,250,59,153,31,7,24,152,184,189,117,192,160,64,192,250,94,59,35,151,193,28,248,177,88,50,1,177,151,22,111,31,177,253,162,158,67,130,188,165,147,187,227,236,211,226,93,32,171,35,72,7,122,45,55,59,49,252,173,78,155,255,121,56,108,152,83,194,131,197,185,241,104,230,42,212,45,234,67,102,11,104,184,76,149,225,46,202,177,57,165,145,46,103,182,154,67,179,60,7,
 222,144,112,207,101,76,223,108,172,65,123,161,200,176,190,74,58,207,28,180,169,200,7,148,60,98,106,173,198,180,33,186,4,4,19,234,161,208,101,85,21,76,127,31,170,1,12,122,183,30,86,53,134,25,109,74,38,244,20,190,10,205,69,194,41,154,235,35,211,113,214,202,39,46,184,187,206,73,169,40,0,94,86,63,243,246,250,129,149,83,132,80,140,113,222,152,255,31,38,183,155,150,192,80,214,219,161,1,179,100,239,15,203,150,1,168,182,77,239,206,20,10,105,70,71,13,142,91,222,174,169,42,162,139,220,80,223,65,119,153,26,84,160,229,39,152,199,1,154,244,45,114,76,41,17,82,34,210,239,74,117,11,193,241,218,78,82,66,113,220,14,174,218,115,136,23,210,174,24,120,174,138,34,60,220,184,217,207,200,255,45,210,84,20,232,24,248,235,79,232,211,39,166,182,97,101,42,38,36,24,103,24,121,202,218,61,232,66,145,69,39,192,58,198,242,73,222,135,73,75,204,113,126,205,248,197,1,53,208,245,187,173,167,205,221,149,41,238,124,85,38,106,245,108,167,197,91,213,245,12,11,24,191,178,163,198,70,59,167,122,173,124,101,14,118,197,7
 1,6,43,219,158,83,226,11,156,114,23,250,59,29,124,245,195,217,177,191,81,80,20,69,17,252,98,34,69,244,15,90,71,198,63,213,201,25,143,32,52,1,210,200,36,174,204,23,38,105,29,94,158,61,158,109,234,194,166,209,55,235,199,37,62,200,174,148,152,62,36,129,151,210,122,60,22,194,40,146,83,34,133,121,186,35,220,117,18,201,223,121,153,115,125,240,198,15,57,32,232,132,169,131,215,135,100,155,190,215,118,175,234,152,63,48,3,175,252,85,18,194,4,113,64,147,144,137,252,117,145,200,19,89,104,2,241,107,3,196,26,236,230,13,49,101,140,17,162,169,131,33,213,131,109,146,4,11,181,50,141,138,145,162,61,200,215,112,141,102,176,86,252,246,235,188,37,100,109,180,44,77,171,220,158,214,162,50,194,102,82,124,150,76,34,185,137,207,146,57,224,148,137,141,52,94,52,33,153,218,162,142,51,154,231,228,191,166,232,78,72,236,242,144,70,20,116,59,86,207,109,135,152,138,1,202,180,108,60,98,221,192,231,161,122,52,193,69,251,42,223,207,40,254,106,200,46,43,53,56,73,133,130,121,124,246,250,150,61,187,92,229,73,217,67
 ,10,178,209,157,252,249,4,205,28,214,90,107,197,206,232,93,95,227,234,142,172,238,54,49,30,122,21,156,86,158,145,182,58,192,133,139,200,12,62,99,220,121,247,34,181,11,62,42,23,101,15,210,232,119,161,31,161,215,176,100,224,239,156,61,179,236,138,249,142,18,85,29,66,193,204,127,139,21,158,170,38,176,153,133,35,237,43,7,130,161,211,174,29,247,138,71,199,197,153,2,50,144,139,215,204,30,59,229,228,36,252,197,20,241,231,185,2,181,51,216,105,121,68,89,177,37,198,195,190,169,118,239,111,113,145,45,18,173,110,40,186,197,70,21,115,246,121,186,39,116,198,132,59,155,146,153,177,19,202,114,154,128,198,190,207,238,124,159,106,103,193,26,175,177,220,217,116,121,123,172,249,133,185,113,193,123,172,88,97,4,122,18,247,240,56,19,185,81,82,117,96,114,249,73,14,35,133,43,187,116,74,126,81,116,133,138,250,11,92,194,143,183,147,48,212,127,100,32,220,235,208,202,247,182,139,226,64,149,143,143,89,74,63,94,33,10,114,63,100,163,111,28,39,10,177,253,103,71,14,17,162,187,251,166,185,40,218,189,168,152,1
 08,48,14,26,180,108,49,7,174,45,6,98,199,242,28,138,94,84,240,214,50,87,159,3,130,140,17,177,183,29,172,220,87,174,171,198,184,131,239,202,84,89,118,208,204,159,86,12,94,60,10,243,225,249,78,90,221,56,254,17,180,91,204,209,53,145,198,70,190,119,115,105,95,229,32,48,93,96,23,49,150,85,43,154,3,8,66,35,127,104,183,198,208,59,128,118,37,71,29,126,205,92,255,229,71,117,178,246,122,240,219,113,33,215,75,51,174,88,197,62,25,39,235,255,150,27,105,150,232,207,14,145,128,138,48,77,15,104,140,141,120,29,118,205,148,89,29,7,26,163,160,66,252,118,229,133,170,169,149,16,167,121,153,3,136,2,43,55,186,208,163,188,7,179,221,23,202,255,196,164,30,194,44,50,221,127,95,73,46,44,87,123,51,232,148,173,187,36,231,134,88,231,77,255,80,79,156,122,166,239,216,220,3,114,213,11,99,185,177,180,89,198,116,209,0,73,90,97,81,112,220,243,151,206,171,68,151,70,137,53,178,253,232,120,42,142,111,2,172,219,208,159,110,238,248,243,115,254,251,128,253,229,142,102,41,219,65,217,186,252,18,24,213,245,241,203,205,6
 0,24,101,73,191,127,212,225,2,234,94,30,151,248,25,192,34,51,111,220,255,142,129,10,111,15,25,216,60,118,41,51,59,45,191,79,218,80,81,106,17,162,209,202,113,156,225,80,85,114,134,67,54,244,57,50,0,228,70,145,41,198,230,235,33,158,138,202,196,13,212,248,195,106,253,116,226,57,137,195,226,15,9,16,201,243,7,140,104,55,189,175,9,95,69,215,155,10,14,101,195,48,137,35,243,136,254,151,84,44,19,180,248,240,177,95,127,110,223,230,208,103,59,24,20,75,61,198,34,234,107,14,30,232,250,107,220,67,12,154,51,48,224,182,219,216,227,123,132,121,180,221,151,59,33,201,8,180,172,16,117,132,204,133,255,185,218,83,110,255,231,142,31,137,0,77,141,173,157,137,210,28,216,139,1,109,176,33,67,218,86,156,223,152,3,183,235,207,183,10,241,83,197,14,169,173,194,77,110,48,107,118,238,39,5,104,196,214,197,68,177,134,169,13,234,230,163,167,8,195,130,167,248,49,227,140,9,229,232,34,78,237,218,119,175,201,251,92,33,237,190,55,26,207,242,133,148,190,146,84,23,212,185,240,133,114,34,253,40,159,104,236,73,57,89,68
 ,244,220,138,80,5,95,93,26,194,152,143,18,63,18,75,254,224,68,191,64,0,151,116,130,95,191,140,84,27,135,221,77,6,113,11,93,139,66,34,88,199,211,54,246,50,213,78,235,215,6,95,155,70,213,217,218,156,41,180,246,237,181,193,98,30,138,247,114,76,38,238,103,212,244,50,86,47,129,105,49,21,206,206,233,133,150,30,188,173,28,48,99,130,216,232,160,217,167,190,209,195,8,54,71,74,66,194,153,114,171,126,87,91,238,181,143,72,30,181,7,251,163,62,127,200,62,102,157,135,134,17,148,98,171,49,188,9,213,245,38,126,19,66,247,176,173,207,246,254,237,190,224,248,252,15,51,137,18,222,205,123,9,105,93,103,213,143,73,164,144,229,115,205,169,18,122,74,130,83,251,113,252,129,41,51,29,104,76,96,18,125,5,13,183,179,50,174,127,174,11,214,142,100,34,113,185,75,82,109,24,95,150,170,191,71,105,93,3,36,109,98,155,152,37,189,76,136,165,249,202,53,209,207,50,65,120,124,162,159,139,147,54,97,224,63,94,70,142,47,50,93,227,11,107,179,106,220,201,135,125,56,153,73,107,164,246,1,62,240,195,5,150,208,28,174,134,248,10
 ,25,82,79,175,125,228,164,36,43,182,195,123,127,20,185,120,156,12,59,207,142,200,59,170,160,174,97,112,131,113,12,143,145,75,12,97,243,248,186,26,214,107,216,148,4,151,138,225,75,59,223,76,19,143,96,226,12,179,20,142,9,199,250,66,244,182,198,94,142,250,220,141,212,123,148,99,73,81,22,36,77,201,182,199,177,128,106,205,2,74,52,55,6,138,65,175,28,110,19,142,234,111,69,120,163,17,68,197,234,56,127,226,76,96,171,244,62,137,57,113,43,85,17,10,16,4,198,39,67,197,171,175,18,112,79,181,171,204,202,81,75,85,219,122,22,71,80,57,105,229,20,88,115,82,103,50,213,223,211,171,195,151,244,180,57,91,255,19,54,165,234,63,145,58,150,56,51,12,226,90,54,252,119,53,166,71,181,161,140,61,58,214,91,63,103,251,148,8,125,74,38,117,86,181,101,161,194,44,119,104,228,60,187,169,35,20,159,222,40,97,101,33,240,41,164,22,70,92,49,71,160,254,75,84,7,81,119,26,57,174,81,95,195,39,57,34,56,24,37,167,157,213,229,129,195,133,155,13,115,170,111,178,92,40,168,180,125,33,242,21,53,203,240,86,152,141,79,141,188,175,
 188,114,133,115,174,91,56,196,10,228,123,216,6,164,130,173,134,171,157,235,207,206,217,5,7,182,45,136,250,200,143,69,28,245,68,131,234,118,157,73,149,233,95,241,42,67,73,72,175,1,221,29,148,186,36,250,8,149,105,179,93,235,119,109,85,231,88,42,105,231,152,125,93,97,42,148,31,176,112,136,34,171,170,45,26,106,243,29,191,135,128,48,89,83,178,48,211,164,54,131,46,120,81,227,107,69,84,8,38,86,240,30,154,71,153,2,208,132,82,16,247,66,184,221,157,246,190,52,220,18,126,52,121,58,38,41,176,87,184,247,194,161,181,119,121,74,50,60,181,190,52,187,62,24,163,230,157,212,42,20,82,52,12,186,161,166,26,134,96,90,215,89,216,228,4,58,88,87,56,54,184,17,237,111,94,177,164,219,234,7,9,188,59,91,28,132,153,41,114,133,118,142,71,174,229,117,92,146,24,216,150,132,112,215,241,152,11,225,138,51,91,219,179,86,117,131,83,147,161,209,7,180,130,172,209,97,2,34,14,97,49,134,95,0,41,115,237,205,135,76,70,153,90,212,42,221,210,112,9,235,116,11,20,33,127,191,147,139,237,180,233,96,136,3,226,6,67,54,133,41,11,
 22,12,79,2,45,106,93,184,132,22,109,57,189,207,207,98,148,212,146,137,39,30,79,15,101,169,7,194,0,211,213,36,165,174,209,15,69,56,213,45,161,32,18,89,60,24,76,7,25,151,159,40,190,191,137,252,203,251,53,44,20,149,167,156,254,44,189,219,241,75,232,37,153,114,54,30,92,163,226,48,152,13,39,66,234,158,27,240,154,53,87,59,74,230,204,124,34,225,30,208,124,206,202,182,79,106,32,15,246,48,50,212,177,1,199,164,133,107,174,224,220,198,143,232,250,102,255,131,14,249,66,210,52,101,108,154,187,90,233,182,174,122,40,181,211,76,144,250,66,83,0,230,17,39,168,250,168,207,166,61,191,188,63,109,41,24,211,50,109,70,98,240,9,47,134,2,14,171,137,30,106,243,249,219,96,133,164,172,213,122,133,245,232,79,75,38,79,14,27,73,216,186,137,240,66,96,234,204,70,152,170,11,239,178,85,139,215,56,228,132,47,8,171,195,84,181,3,238,55,252,141,182,134,91,171,162,59,93,4,212,180,226,134,192,67,198,114,185,11,85,177,0,55,69,16,111,128,172,220,84,117,18,93,91,154,126,209,132,119,161,10,242,50,219,224,211,234,244,2,2
 54,57,126,48,244,63,160,228,92,237,249,100,152,19,153,148,15,0,31,0,89,34,58,251,75,224,183,238,137,84,15,246,92,208,185,19,233,80,30,154,3,6,72,136,5,220,175,209,138,242,69,49,29,217,87,97,137,87,38,150,252,165,36,118,197,212,96,183,113,18,35,150,19,98,189,25,71,93,255,36,215,143,191,183,73,223,92,63,178,32,241,235,157,207,204,103,255,8,230,107,138,209,252,183,205,40,83,109,176,149,33,19,199,9,81,84,251,201,138,55,63,27,119,64,191,237,187,51,164,121,51,37,2,2,67,131,47,214,52,130,2,126,169,133,154,124,22,250,134,141,172,226,22,104,130,21,77,193,61,40,68,141,120,77,63,8,33,110,163,104,12,11,23,216,209,58,239,124,166,157,70,8,120,126,36,62,166,177,181,85,114,96,44,216,46,206,243,75,136,192,2,54,227,15,244,179,135,87,67,34,0,177,135,0,174,60,161,1,58,126,118,139,24,59,230,102,149,85,99,74,226,241,218,85,14,236,196,12,215,46,67,63,54,24,232,99,61,11,12,64,186,83,71,103,23,14,109,177,155,195,69,248,114,240,146,42,153,99,19,242,135,2,189,167,96,72,6,121,230,158,82,44,166,254,2,70
 ,145,34,255,70,71,24,144,57,18,61,68,213,105,139,88,123,208,156,3,195,125,144,63,86,43,24,209,171,75,131,50,86,39,183,55,186,247,121,219,59,154,56,45,96,157,226,70,217,254,56,133,161,145,19,56,105,248,44,74,90,72,196,222,102,93,93,120,10,204,94,39,147,221,208,192,91,59,65,104,22,65,128,100,60,177,216,192,141,94,91,189,24,92,105,237,126,55,210,28,33,198,246,70,77,253,56,213,229,23,86,58,67,125,57,22,169,57,231,102,186,161,230,153,134,190,179,242,51,234,217,184,206,218,146,100,1,94,171,206,212,6,117,236,253,215,237,78,82,234,246,236,69,175,122,127,252,61,175,164,239,91,195,34,118,92,170,198,6,111,22,138,34,68,54,17,37,21,138,59,141,255,253,41,168,255,250,163,250,45,23,102,103,12,249,35,139,38,201,68,49,14,193,214,101,65,94,244,145,115,141,236,145,79,171,48,12,187,235,200,146,19,71,66,186,58,95,4,255,34,93,61,22,203,120,142,136,93,64,125,188,130,64,131,224,240,118,174,11,229,181,218,16,234,146,9,34,94,116,233,245,80,244,217,22,216,206,120,130,12,209,98,220,114,155,180,80,180,22
 ,202,180,216,200,251,220,197,224,56,3,226,210,50,225,68,195,213,246,197,186,25,180,152,115,187,222,0,74,65,179,106,34,221,226,113,83,71,68,238,176,5,166,236,244,27,233,121,141,158,240,243,166,95,151,231,216,102,232,90,131,226,71,9,6,25,68,251,172,169,204,200,234,253,105,204,70,111,213,100,228,183,60,152,152,43,23,117,24,131,35,59,141,106,252,14,146,242,153,253,141,77,31,35,242,1,6,187,120,6,203,134,32,185,191,168,207,9,59,4,63,47,87,226,132,182,200,112,81,32,162,82,135,5,96,24,197,95,7,26,162,238,5,39,245,236,135,154,10,49,55,224,17,221,69,55,210,239,187,157,244,100,41,22,15,28,99,229,52,73,236,119,213,225,69,135,69,163,158,13,52,129,20,26,213,77,215,100,21,71,31,188,200,115,222,123,210,155,174,11,197,81,194,164,85,8,54,7,187,52,245,108,244,115,173,173,35,104,255,23,87,93,217,19,214,208,40,17,41,11,12,182,242,97,231,133,39,197,254,146,189,61,0,1,252,227,215,189,235,244,98,219,70,120,9,112,196,57,15,19,52,178,207,6,194,55,15,40,169,80,72,3,157,35,161,30,143,62,223,240,35,39,1
 55,41,210,190,55,23,121,170,252,228,179,37,175,152,180,229,153,239,164,158,23,169,7,185,180,86,138,49,61,68,171,3,120,241,46,145,145,157,242,228,7,248,184,153,186,68,19,28,79,76,65,170,52,22,168,152,32,65,7,122,162,229,149,168,199,111,151,122,173,11,180,78,96,101,218,235,191,222,219,79,218,51,31,84,93,155,225,26,93,233,129,82,65,158,84,234,127,83,197,73,181,220,67,56,30,78,151,90,37,102,223,239,185,41,69,142,117,133,51,11,32,206,162,89,120,226,26,147,226,211,154,171,138,27,27,95,11,11,184,108,226,150,5,55,114,110,107,27,10,38,171,185,53,142,220,21,215,179,66,244,121,159,181,101,160,195,130,171,104,172,233,165,149,156,224,75,67,223,228,61,167,146,110,55,93,222,100,95,87,250,131,36,96,106,210,202,251,230,139,230,8,174,175,128,104,174,93,252,68,191,120,63,168,145,143,140,117,241,174,251,142,57,219,233,16,50,122,78,242,40,220,190,103,135,141,80,29,21,11,143,122,111,230,95,73,28,144,52,64,174,42,210,17,198,130,16,51,148,18,78,129,207,0,186,110,46,1,96,67,234,223,184,164,113,104,8
 1,164,24,141,158,58,37,89,15,183,40,233,124,155,1,235,17,253,155,25,235,12,217,157,26,7,182,117,237,185,49,211,137,232,193,87,157,58,184,161,119,116,182,5,23,16,180,133,13,180,151,188,78,182,17,145,55,253,98,196,24,155,110,41,72,58,252,201,89,33,247,191,109,27,17,34,104,255,248,221,157,240,155,195,146,100,245,172,12,173,93,121,154,134,101,53,79,122,42,217,141,111,66,31,74,24,36,88,238,159,47,1,198,127,91,243,208,167,108,233,87,185,215,148,92,99,147,72,13,118,42,90,47,127,26,107,68,171,142,198,24,8,114,190,121,240,165,1,169,112,183,165,223,64,118,69,94,28,227,22,28,90,62,38,87,24,96,123,214,140,158,53,236,171,83,9,126,135,238,95,10,30,14,110,174,99,233,57,248,129,143,110,52,159,36,14,30,34,210,145,28,247,145,46,82,53,129,211,105,34,154,146,7,103,188,139,53,4,108,180,245,200,224,86,233,219,225,48,20,142,142,72,5,33,4,107,237,161,101,146,173,74,71,227,250,13,102,62,118,54,48,238,141,220,135,219,235,241,236,80,235,132,114,88,149,68,243,83,223,220,5,13,79,142,97,230,157,208,8,252
 ,213,116,118,47,146,188,213,56,244,92,101,76,139,91,73,114,195,72,44,84,126,36,45,135,20,43,99,238,89,254,45,90,234,30,119,7,101,102,97,14,186,143,160,37,235,19,83,228,205,126,126,142,5,224,144,92,148,162,196,93,13,108,141,253,187,252,127,51,179,250,58,115,65,249,147,108,8,155,50,30,89,26,141,188,90,93,206,236,49,123,246,176,100,148,69,225,40,151,233,115,148,12,159,170,108,77,174,215,159,118,225,88,207,243,245,225,75,56,40,140,56,78,53,85,49,173,228,236,120,59,153,83,167,167,91,145,88,3,44,48,89,128,114,151,143,148,211,86,224,238,146,225,38,140,83,251,106,23,144,52,116,189,242,188,117,51,124,173,241,34,101,153,16,41,3,96,78,149,125,136,175,207,51,118,146,151,46,203,134,59,93,94,106,85,62,27,74,59,212,30,139,103,7,104,188,139,247,254,191,68,5,40,158,125,15,190,31,39,17,22,37,63,89,146,106,253,92,178,207,218,31,21,125,254,56,191,12,133,181,132,8,127,101,199,52,227,88,118,33,166,57,85,19,126,205,199,60,193,224,86,161,55,199,122,44,163,233,175,142,147,170,224,11,72,71,121,119,22
 0,95,117,199,132,251,28,92,82,5,248,107,141,127,92,160,17,192,195,110,218,209,141,209,242,216,94,146,88,42,144,101,187,42,222,30,147,29,252,65,221,169,253,118,210,205,125,157,86,20,226,65,178,180,183,52,100,119,19,58,206,142,74,206,85,15,124,97,19,246,209,238,140,62,92,206,133,22,31,30,5,183,5,109,154,72,164,125,222,126,211,141,0,3,213,179,154,114,6,147,107,62,152,236,225,170,236,48,234,131,149,242,38,55,170,178,210,8,226,104,251,170,113,146,234,121,246,137,122,38,117,142,254,108,118,155,134,205,244,172,6,64,235,141,161,207,230,182,76,23,170,145,147,44,220,134,47,154,228,219,45,140,37,51,26,225,211,125,74,100,204,146,125,71,116,172,49,147,97,199,237,115,63,42,242,29,105,39,7,39,249,150,21,218,135,239,76,6,81,37,48,30,122,100,156,206,42,46,222,183,69,227,39,121,132,129,160,172,165,217,115,238,145,20,59,251,181,39,90,10,133,99,158,65,203,139,61,249,131,70,15,17,248,210,46,193,104,75,33,212,245,89,65,39,198,200,135,186,27,83,227,89,13,24,195,120,5,130,114,103,85,158,59,7,67,71,
 100,27,88,148,201,120,162,147,217,73,210,146,42,129,170,140,189,161,138,180,65,46,87,48,109,39,140,2,66,81,178,106,30,44,185,20,153,186,29,140,144,20,167,214,92,176,156,176,187,91,228,213,165,172,226,106,39,92,57,35,113,58,236,61,217,199,247,31,223,194,213,139,190,151,152,210,129,6,170,204,180,249,12,235,86,51,181,22,133,252,147,223,23,168,75,7,109,56,44,95,40,81,19,14,63,163,30,245,3,238,166,153,225,138,242,232,84,46,195,82,235,1,214,171,199,37,33,183,138,100,114,9,222,251,55,31,226,98,216,38,44,235,176,118,48,93,49,73,39,226,37,219,189,159,100,162,119,129,223,21,4,25,57,236,88,24,58,179,217,67,91,235,39,168,227,180,104,169,134,113,30,144,141,48,223,196,114,179,65,127,143,210,44,252,5,239,1,215,49,62,166,167,153,13,203,91,255,162,198,69,212,232,236,85,184,132,42,254,11,28,36,2,121,211,208,52,106,33,128,191,117,28,93,180,41,164,78,244,192,46,204,144,13,113,114,253,27,203,169,248,25,117,49,133,160,74,7,95,54,122,143,105,240,67,16,2,13,69,251,84,113,245,10,220,187,181,136,250,
 248,190,144,207,91,152,23,199,249,64,223,132,98,76,156,243,139,104,152,210,158,220,46,98,212,204,84,234,149,46,44,164,62,198,162,244,164,170,121,25,72,131,195,79,250,28,242,146,216,45,224,121,245,175,241,58,107,137,164,80,92,124,247,40,202,160,101,99,145,114,116,128,255,224,120,228,7,87,203,25,2,59,201,116,30,139,17,177,40,187,119,67,60,235,33,161,2,193,173,34,48,128,191,17,142,179,76,129,34,154,179,101,106,106,236,46,51,94,243,190,101,247,121,199,141,166,243,235,64,209,115,28,126,153,33,229,136,209,214,60,31,124,23,58,175,44,237,59,40,14,146,218,164,203,26,104,93,173,186,245,54,172,157,46,82,166,175,3,70,231,245,126,177,91,237,143,247,179,241,125,194,222,251,70,77,227,51,132,226,135,45,209,45,142,200,44,78,53,161,113,105,56,217,213,12,204,118,46,204,100,114,209,45,249,200,42,117,45,128,6,143,6,233,17,235,16,138,187,141,251,5,254,199,143,127,215,162,54,234,116,30,220,77,131,140,5,71,209,185,195,124,188,206,49,199,54,67,218,105,239,143,77,45,128,64,144,12,164,7,101,127,152,22
 5,201,145,170,89,61,225,80,140,5,244,172,18,194,33,158,195,16,0,234,67,147,175,210,83,13,176,53,137,134,210,202,2,190,248,249,5,78,92,60,25,222,213,216,72,81,219,134,147,143,83,65,240,255,228,209,41,235,35,199,12,83,2,33,174,66,14,107,89,248,51,211,255,248,0,188,208,133,225,111,219,62,218,222,36,119,136,122,195,151,231,147,114,127,212,172,210,35,181,220,95,87,87,255,101,203,74,120,254,209,152,132,218,243,83,21,166,46,237,194,255,168,234,222,187,93,138,142,42,47,147,121,85,160,184,208,241,10,102,150,54,114,102,202,181,12,195,73,204,114,212,240,57,69,75,24,212,254,21,255,125,35,150,220,145,43,22,69,161,170,109,82,48,5,241,209,253,113,84,61,13,43,6,4,34,238,241,149,40,11,108,166,63,67,158,141,99,161,39,34,67,25,125,148,134,211,245,10,137,18,101,159,137,34,134,46,55,246,157,128,189,13,188,218,192,222,181,248,153,152,84,58,182,88,85,26,186,57,165,78,130,232,43,157,34,70,144,218,191,58,7,73,235,99,217,234,109,194,215,38,66,1,147,131,150,123,246,165,7,31,115,118,160,111,139,179,95,
 246,133,166,59,80,231,55,153,29,85,134,110,132,81,211,42,84,198,155,188,34,116,35,73,138,100,64,84,36,206,213,138,190,5,158,220,235,64,132,59,118,147,251,33,232,255,76,192,131,97,73,173,67,163,215,36,212,198,132,197,29,47,252,254,83,54,70,24,118,46,129,111,92,73,117,153,218,236,196,61,59,27,37,111,172,103,15,250,49,200,14,70,206,16,135,196,95,21,139,63,55,242,242,146,146,61,111,181,252,34,80,213,133,57,237,151,168,255,94,198,214,175,23,35,14,6,93,64,17,4,232,234,212,230,237,202,42,242,242,226,113,169,158,189,175,218,32,144,173,236,241,229,33,55,62,124,182,135,138,204,5,235,143,18,181,81,149,139,95,0,48,179,168,102,132,239,214,92,237,73,147,4,142,13,126,92,12,154,59,131,17,190,106,55,130,146,197,120,12,7,6,27,91,18,113,9,3,127,124,214,61,112,42,10,163,203,111,137,222,8,57,48,14,192,6,69,91,72,137,46,207,210,222,241,203,28,198,27,34,192,239,229,183,114,116,248,103,107,234,84,185,15,47,66,15,205,108,36,185,140,103,105,240,52,0,103,81,46,123,178,93,152,148,29,227,98,151,41,80,17
 0,188,147,210,114,162,127,60,184,254,34,177,217,108,199,173,194,213,151,10,159,31,78,120,252,144,2,182,116,48,5,185,141,240,72,150,3,161,39,67,71,106,48,164,103,71,154,144,174,227,71,151,213,163,154,63,95,247,93,221,156,113,217,43,223,66,138,228,30,235,81,45,196,204,14,71,220,95,6,9,142,181,73,235,125,86,9,203,83,100,46,93,118,182,62,195,196,98,101,20,253,134,17,70,159,8,11,113,139,208,215,0,246,118,81,79,38,215,136,253,23,195,235,184,61,208,130,212,2,93,186,201,108,13,73,56,207,32,100,191,129,57,134,55,183,24,222,229,203,158,48,220,156,197,55,210,136,52,254,24,152,86,118,218,58,24,243,166,20,246,207,252,211,128,71,162,178,63,233,35,189,36,185,133,6,38,255,172,142,169,192,185,36,58,75,106,15,30,171,93,216,34,84,133,27,76,223,226,67,88,29,214,26,42,47,92,236,194,182,88,37,245,8,28,68,200,64,18,79,42,212,120,131,55,178,190,171,223,95,24,222,216,51,168,235,64,78,144,172,189,197,20,47,128,103,75,82,109,160,240,74,36,10,239,194,42,163,37,105,16,246,98,88,66,9,159,153,191,174,242,
 100,147,111,230,6,239,208,180,195,144,234,53,77,172,46,114,249,137,208,7,194,194,30,179,234,167,72,107,137,218,182,62,47,255,222,114,28,109,161,37,210,62,177,84,80,90,126,210,128,95,132,137,101,15,33,112,253,31,30,253,158,113,85,14,110,43,167,161,203,77,118,207,122,0,62,102,156,154,247,61,150,172,159,17,46,177,181,224,113,57,143,217,73,38,80,41,213,190,240,61,187,24,154,181,27,49,247,98,91,170,58,180,232,25,151,31,146,152,54,160,178,229,65,191,195,252,7,102,176,21,182,149,203,53,164,250,92,64,53,154,22,156,82,153,136,155,166,156,109,197,178,6,142,65,211,232,64,11,178,92,208,156,155,235,120,229,189,245,157,94,221,41,88,103,174,112,96,83,192,51,179,169,52,225,44,168,68,126,99,174,71,178,142,41,134,255,12,243,112,55,207,39,202,140,52,10,105,72,240,157,106,217,33,208,37,95,40,163,153,112,50,151,230,130,74,96,78,1,26,225,192,232,78,83,128,248,125,89,113,79,217,193,14,158,148,110,228,176,186,219,157,184,32,16,73,105,74,82,225,12,34,199,114,148,69,7,24,228,29,96,134,0,229,71,194,21
 3,71,144,86,109,52,78,115,249,250,173,170,23,139,227,6,204,99,11,51,60,13,69,88,159,19,228,23,53,70,206,53,216,155,167,88,88,38,168,221,226,143,217,70,63,79,103,206,20,177,5,137,1,117,185,65,157,178,135,51,226,44,149,40,213,186,61,152,120,121,134,201,223,149,182,220,59,54,124,169,219,97,51,85,173,29,150,71,35,102,222,236,235,239,122,180,106,77,231,210,43,8,93,114,246,20,116,120,131,44,253,9,240,119,54,252,13,16,123,99,188,27,139,14,107,200,255,238,100,144,124,193,126,142,249,179,244,234,167,242,55,136,56,87,190,137,104,198,11,24,165,31,73,103,137,169,1,9,244,180,197,185,26,198,89,76,216,135,5,87,9,172,13,238,138,175,75,198,189,41,46,158,137,66,109,42,173,208,79,52,170,53,34,56,34,28,39,113,228,121,169,43,193,244,11,145,143,254,17,203,106,24,167,10,79,144,172,56,192,12,134,15,44,81,154,8,27,163,15,55,73,55,218,7,37,194,64,112,229,106,30,78,19,119,225,216,157,193,227,151,214,9,226,157,67,194,78,218,206,156,70,115,27,212,44,105,77,47,55,35,88,22,32,181,12,139,90,255,220,117,102
 ,192,236,6,48,3,24,164,166,13,135,31,82,204,236,225,203,196,106,136,248,196,131,210,225,160,155,2,58,214,34,199,5,236,60,152,164,168,247,200,203,27,210,80,150,36,48,238,95,148,248,253,244,198,128,18,92,50,204,130,202,68,227,107,161,195,107,52,128,196,62,145,172,86,178,30,5,93,195,43,159,21,13,235,39,89,10,89,212,155,172,29,172,5,182,131,198,255,136,157,5,200,116,230,223,31,178,110,72,209,134,197,40,226,1,125,126,235,0,55,54,115,232,204,22,0,77,240,107,182,134,148,34,34,93,146,24,93,85,52,23,180,159,198,82,143,223,11,9,91,221,144,232,234,207,134,224,252,229,193,172,148,17,22,151,42,168,124,10,110,186,212,145,50,74,8,130,183,61,73,165,159,217,16,227,224,197,145,71,135,10,234,70,249,104,214,128,9,69,123,170,20,230,88,53,84,233,191,41,125,253,59,130,99,84,147,148,203,88,183,247,88,71,64,86,208,70,20,38,129,251,2,232,177,239,127,149,253,88,63,12,42,230,165,140,47,3,61,19,43,141,54,234,103,229,9,128,228,27,43,112,127,179,168,129,2,119,115,43,245,157,65,218,146,66,29,57,12,141,199,
 247,107,177,206,136,71,175,7,140,78,58,108,68,28,2,126,219,230,90,229,8,245,17,150,32,77,95,223,37,179,199,225,40,19,228,148,251,15,154,230,63,153,221,188,105,71,120,132,243,91,159,164,173,117,138,224,198,38,76,155,250,243,89,207,31,154,55,210,160,51,94,96,227,104,51,134,77,47,28,12,133,246,4,99,252,87,221,91,236,148,179,98,73,98,179,126,245,165,239,148,147,76,112,145,71,139,221,200,201,217,140,219,235,48,180,49,189,30,183,96,158,76,73,168,114,67,129,151,119,71,136,158,126,86,100,106,134,88,234,153,104,225,104,131,171,142,114,99,192,170,227,207,10,180,18,173,252,68,101,87,181,210,76,108,28,113,110,102,191,241,17,135,177,104,218,130,32,145,146,156,167,54,65,246,11,44,243,169,9,240,88,21,102,74,103,230,231,50,200,68,206,108,115,213,206,130,238,169,201,162,142,68,101,254,182,56,176,187,207,3,209,73,64,249,169,250,184,154,228,137,141,0,170,114,38,171,54,103,101,11,98,85,176,157,94,168,226,178,9,43,153,19,168,228,172,66,98,101,113,174,119,61,98,27,145,129,115,132,136,157,76,134,2
 47,248,52,132,141,22,225,39,48,253,216,64,130,34,201,179,167,247,182,240,102,201,72,169,187,60,202,92,175,37,66,237,10,240,143,199,95,61,48,60,64,27,252,189,72,125,230,48,173,222,141,140,83,7,190,133,73,158,20,130,164,88,242,150,233,90,245,105,5,174,235,145,72,57,44,251,108,211,82,3,59,131,123,34,207,111,199,68,221,26,159,255,9,203,47,223,157,129,18,220,189,203,145,7,80,202,153,168,146,219,157,80,137,63,19,224,40,158,47,219,162,228,167,203,37,84,88,55,48,150,170,29,186,208,94,236,157,225,205,34,13,101,209,67,225,176,63,62,168,77,176,43,98,72,57,92,72,244,67,70,75,82,76,148,175,36,136,26,30,183,204,124,96,138,165,74,229,162,32,243,104,32,107,89,162,175,248,189,187,78,31,33,167,224,58,34,92,159,198,139,70,211,126,193,172,80,134,40,151,144,242,236,38,174,219,242,92,70,182,209,98,145,225,14,102,140,13,134,90,91,130,73,79,171,48,174,73,130,59,147,128,219,63,221,134,224,199,78,69,151,221,157,92,42,224,62,59,62,138,152,30,198,221,179,53,160,160,56,150,38,185,173,51,99,108,234,160,2
 03,115,224,136,52,182,131,207,250,158,78,10,31,32,236,18,34,84,248,3,239,77,12,96,108,220,111,164,5,24,244,100,207,89,110,244,240,116,208,44,196,178,160,181,177,231,178,99,244,176,246,74,247,224,221,213,150,139,153,15,240,236,62,144,222,53,82,148,59,215,120,233,0,103,152,243,34,9,170,127,237,66,243,67,119,82,108,145,97,139,32,210,194,45,239,242,208,255,137,234,73,11,81,54,253,166,114,4,247,148,12,216,176,126,178,234,177,199,163,231,152,174,230,52,32,40,23,118,121,72,79,57,222,95,39,212,159,48,117,201,130,247,79,76,61,161,19,130,70,134,155,100,56,101,54,44,207,213,30,162,19,57,23,68,53,68,31,18,139,42,64,195,197,145,74,177,46,98,193,99,138,189,139,206,7,195,48,255,120,80,219,239,202,140,188,179,159,162,204,146,157,224,188,14,36,188,248,16,248,200,80,21,48,79,113,41,85,42,96,255,82,148,235,124,131,217,54,3,94,95,40,5,253,26,168,120,132,187,219,244,44,72,203,9,29,164,140,41,221,80,75,78,228,54,116,62,18,154,171,164,38,15,145,38,80,244,159,26,138,136,121,104,129,197,56,98,210,0,
 118,23,116,21,252,42,221,82,48,146,85,37,142,240,59,242,19,4,249,141,133,136,53,17,243,52,50,61,222,44,42,129,217,58,160,205,90,254,109,241,93,25,251,5,66,201,149,156,37,88,176,187,247,47,74,102,193,93,58,164,83,54,58,199,128,243,154,184,73,214,116,178,75,22,227,58,150,215,196,174,221,196,31,223,151,46,126,43,11,136,231,82,89,130,164,126,28,224,254,107,37,109,212,101,16,233,166,227,95,125,69,148,176,135,232,106,215,231,129,30,207,238,248,46,6,188,147,139,228,163,94,114,204,79,102,58,158,169,183,151,155,167,120,57,186,28,7,52,77,33,63,220,30,36,56,170,42,69,136,98,133,165,5,45,129,123,58,82,217,230,196,238,68,125,161,221,131,26,17,86,249,209,231,1,115,132,187,211,127,101,205,17,15,227,6,174,184,231,119,255,187,14,81,153,87,85,115,100,168,121,141,29,90,66,174,6,182,191,75,109,45,228,229,169,110,252,51,182,158,121,204,61,116,68,35,252,89,51,251,87,41,196,5,152,99,223,60,11,79,251,206,194,61,231,240,149,142,208,79,206,57,108,97,35,199,168,224,53,3,46,152,179,27,135,176,122,153,1
 80,5,246,48,21,32,211,107,186,228,121,37,182,70,181,110,156,26,71,62,190,101,190,120,143,160,65,205,137,232,1,77,96,0,252,188,104,20,243,230,176,108,142,235,177,110,253,151,142,117,29,122,199,25,168,3,144,105,149,183,61,90,241,165,253,235,155,29,129,159,90,112,24,228,9,189,10,68,2,158,174,165,112,251,244,4,125,108,55,90,19,147,163,250,51,82,235,166,40,255,105,161,169,44,227,144,190,109,159,133,51,129,164,71,23,34,30,90,59,19,158,169,74,174,2,74,38,88,86,125,74,25,65,198,55,39,87,176,16,237,35,142,255,26,64,232,237,207,146,192,172,146,162,50,137,167,248,148,113,228,159,78,152,75,26,45,213,241,102,255,16,250,216,220,249,241,203,173,106,89,175,151,177,72,112,214,50,86,18,58,97,162,80,237,186,15,0,243,161,147,126,130,101,179,158,197,34,99,120,207,167,108,220,195,41,223,122,36,142,245,207,12,172,45,175,177,17,94,207,128,197,182,219,146,0,168,33,25,231,223,184,203,129,74,53,12,240,145,32,196,217,86,179,142,196,35,103,146,108,2,63,92,10,33,74,223,253,166,91,252,44,42,65,145,189,57,
 152,235,202,227,11,71,48,253,198,186,44,207,27,47,11,125,40,78,190,33,198,104,45,27,9,107,213,97,40,136,115,119,55,33,95,201,184,121,0,168,196,11,31,227,71,64,188,86,17,122,148,102,38,193,168,37,49,229,181,119,186,105,211,193,174,90,231,89,196,75,95,251,56,173,203,243,145,209,209,155,202,40,135,211,88,242,239,180,228,141,212,4,57,181,15,19,214,226,249,81,118,42,231,127,219,25,23,49,101,101,244,226,153,48,4,203,113,207,20,149,84,233,85,32,148,9,189,167,251,74,50,174,108,205,16,238,136,250,162,0,210,30,37,86,233,250,159,149,142,98,140,111,231,135,88,187,140,22,192,208,212,244,83,91,122,102,235,92,27,28,159,32,174,23,236,209,220,251,110,24,2,76,72,40,23,118,46,56,138,81,216,185,216,72,50,118,47,190,21,232,157,251,142,7,101,32,139,67,255,69,148,84,99,97,40,57,112,93,35,32,48,17,237,133,172,173,1,135,163,237,27,249,87,41,143,235,189,209,8,67,57,9,48,110,207,219,106,110,36,87,189,76,223,130,82,12,111,215,84,238,65,31,218,155,101,13,138,56,140,31,201,24,113,132,240,159,79,127,191,4
 4,66,255,17,209,255,104,172,83,35,181,77,2,21,160,238,117,20,25,36,138,67,127,30,59,31,97,23,66,120,232,68,50,166,165,159,213,128,61,177,43,113,77,101,125,105,216,75,29,126,218,140,154,155,133,53,193,57,254,32,187,154,8,13,208,228,86,131,28,12,40,222,24,101,158,26,120,255,65,127,186,205,25,101,161,189,144,125,221,57,95,184,35,177,93,211,72,56,72,27,170,148,119,85,28,109,76,14,230,85,94,126,140,6,119,50,28,40,42,10,13,155,245,104,194,85,26,14,5,48,66,3,77,181,153,87,222,148,240,135,98,252,251,251,185,40,15,145,151,134,224,39,205,153,149,10,135,14,83,26,81,189,136,18,244,128,195,86,232,21,67,179,90,201,95,243,207,226,137,39,75,33,148,169,237,232,155,208,237,248,204,214,42,226,194,91,141,181,251,35,10,36,191,152,181,34,179,49,47,178,173,72,40,11,149,87,162,136,226,75,98,196,52,42,101,86,72,62,238,254,36,149,68,6,178,38,210,124,238,171,40,171,143,197,16,72,191,178,74,82,166,103,194,55,181,58,124,52,20,0,226,106,199,5,8,95,158,95,41,45,10,73,104,62,147,70,189,85,197,132,141,79,98
 ,24,165,128,79,235,149,123,88,107,16,74,93,177,177,18,220,41,223,141,192,179,27,109,8,32,193,185,203,198,145,162,219,207,97,169,229,222,85,232,12,243,89,85,27,164,7,55,60,145,150,187,143,201,8,5,211,15,255,73,37,19,78,22,156,116,81,145,162,150,143,213,190,94,155,177,187,212,221,66,22,87,10,194,138,117,52,139,21,80,83,212,83,178,14,11,103,207,49,128,4,128,176,224,146,245,194,202,171,73,135,212,142,102,115,184,124,38,65,85,168,90,224,8,35,174,220,230,68,11,27,235,79,31,143,89,148,73,250,106,228,129,141,183,235,3,198,220,34,203,56,168,239,54,191,51,202,139,109,104,7,32,127,139,163,103,111,252,8,222,200,86,64,184,12,112,196,19,190,202,254,82,85,217,12,228,27,166,132,151,70,66,218,147,169,175,106,63,252,172,78,3,128,231,101,72,81,78,172,254,143,32,194,225,205,23,130,127,4,22,116,45,230,42,142,200,29,88,225,252,219,72,202,59,51,22,184,73,18,219,32,107,65,62,24,202,172,60,152,161,178,155,194,36,68,116,77,180,234,43,15,97,0,216,90,111,12,125,69,167,78,233,106,204,206,154,185,239,145
 ,93,192,234,110,43,18,189,145,231,34,221,243,107,165,39,158,108,231,220,146,248,165,82,30,149,235,95,254,177,116,220,52,197,32,234,228,140,170,89,243,151,77,178,100,28,241,115,184,157,68,59,237,164,103,57,86,120,142,219,17,191,25,43,126,174,199,181,103,89,28,125,251,156,192,117,99,5,30,140,219,65,166,167,73,59,128,132,175,87,78,225,235,47,185,233,89,116,226,220,216,104,87,187,5,143,90,20,12,149,174,218,196,123,167,188,244,147,60,61,158,65,60,136,48,11,98,186,210,130,80,100,118,19,215,48,2,223,115,204,214,83,143,193,121,65,5,199,119,217,169,157,64,174,87,188,52,252,143,29,231,148,229,55,234,123,123,218,223,234,227,149,139,104,183,82,190,85,141,92,249,172,117,234,103,64,105,230,60,6,153,254,98,152,7,201,30,249,190,86,183,226,218,162,207,151,185,100,76,183,214,124,230,223,46,61,117,233,178,78,138,32,114,99,203,149,194,70,14,56,107,73,34,188,24,93,193,201,116,157,171,118,223,164,75,48,140,76,171,154,182,200,200,246,78,107,65,235,71,181,144,255,60,88,221,122,134,64,115,151,94,230
 ,206,56,143,231,45,105,132,229,143,103,242,30,235,38,181,162,240,233,171,29,119,150,217,100,100,60,223,161,236,16,50,0,218,167,82,111,190,102,201,240,237,178,75,207,168,62,210,189,96,17,226,147,200,112,128,78,226,8,61,74,164,17,58,23,48,135,34,60,36,139,136,26,229,79,245,35,83,221,238,147,46,234,61,111,51,228,141,5,158,72,46,200,188,185,51,103,104,224,32,52,147,28,115,153,104,172,63,58,210,105,141,82,13,230,71,208,41,169,148,34,250,155,14,198,51,9,226,186,66,43,39,141,178,82,159,6,67,102,123,94,105,179,211,211,3,99,82,139,58,189,190,136,91,54,25,169,36,79,25,192,180,33,20,254,206,221,173,6,209,200,184,204,20,135,29,108,230,90,31,117,249,28,190,119,199,230,152,49,55,219,214,26,27,72,187,3,198,233,196,67,110,201,252,227,131,183,122,189,206,159,199,85,12,43,192,162,166,247,113,167,60,92,170,19,222,225,253,176,125,116,115,81,48,133,251,68,10,82,60,169,17,127,141,37,239,85,238,53,148,110,202,98,249,220,88,178,232,54,250,56,242,121,40,66,181,86,59,220,245,185,61,8,134,92,98,56,245
 ,96,189,2,7,221,68,126,56,242,113,80,173,247,236,178,228,72,9,239,79,143,93,31,106,238,103,138,245,13,68,66,83,69,204,207,66,169,127,125,222,153,104,235,136,108,23,82,17,239,216,130,56,61,112,199,173,176,244,84,112,69,59,104,205,181,209,155,150,87,6,147,168,178,202,172,24,38,90,233,198,182,198,13,127,40,134,110,236,168,4,48,41,139,253,181,12,93,136,143,243,130,4,22,53,105,103,209,114,71,178,40,112,117,215,81,9,102,189,133,4,245,224,41,131,229,21,181,102,7,190,199,39,19,130,150,78,181,183,24,177,75,184,170,131,112,24,245,48,181,144,45,62,67,251,197,252,76,219,190,19,43,32,209,25,176,88,141,126,58,111,117,140,49,16,249,59,172,138,129,129,114,11,172,36,4,253,27,100,123,46,234,96,43,187,126,45,162,169,117,64,223,17,214,194,254,248,148,89,82,190,19,184,188,214,73,238,164,126,10,44,116,24,238,194,197,252,114,96,131,88,229,153,165,67,241,194,205,238,199,64,96,185,55,64,52,122,150,16,224,73,212,196,218,13,185,52,109,77,47,134,93,11,254,253,104,41,215,16,179,143,105,98,195,199,13,39,
 240,85,5,83,159,44,13,117,121,38,13,0,77,20,249,250,208,21,148,92,66,64,124,245,84,213,37,79,89,182,217,178,136,183,58,109,65,201,146,38,192,73,149,19,94,96,34,16,161,124,80,200,231,237,247,133,47,224,251,124,205,98,219,33,137,83,93,255,117,113,41,70,148,131,162,79,210,190,18,217,113,173,238,167,118,220,129,98,240,97,66,249,215,225,150,58,166,12,248,212,222,221,151,145,217,51,171,20,169,65,88,83,213,36,57,100,13,116,92,214,70,57,92,84,73,64,124,227,223,129,213,25,168,86,97,10,67,97,223,200,178,126,16,240,93,10,201,53,241,140,9,55,161,4,109,246,121,239,81,165,193,137,12,75,226,36,20,223,206,134,61,213,248,55,147,60,134,59,121,66,232,0,47,111,5,65,64,223,175,103,141,100,23,113,251,138,107,154,154,234,101,213,111,4,173,197,184,177,165,122,54,122,3,130,48,120,187,252,193,208,142,13,135,158,200,195,136,46,154,81,138,166,218,243,222,27,74,230,132,13,4,252,222,51,159,215,144,125,206,42,99,11,142,54,190,39,236,58,86,201,37,208,97,217,191,201,132,29,230,176,238,4,109,172,240,72,224,1
 73,184,84,139,240,168,194,106,38,55,212,43,248,178,10,33,187,19,93,154,83,169,230,144,177,174,195,49,178,120,92,27,107,109,189,68,202,98,236,121,78,114,204,196,149,23,12,218,146,108,168,151,20,165,208,14,57,210,167,165,121,205,169,200,206,244,184,241,234,56,99,219,163,8,94,164,240,61,123,230,24,230,231,184,52,19,53,139,169,245,63,55,209,213,192,135,193,38,42,77,155,237,78,88,104,149,242,23,160,155,158,21,235,245,164,31,162,23,227,89,85,239,87,207,157,126,240,39,91,213,136,56,232,78,234,162,178,230,11,56,41,186,231,236,33,0,251,53,136,112,59,133,198,154,154,0,182,226,129,248,174,168,240,61,150,126,79,2,95,43,5,193,193,184,202,205,81,30,8,28,56,164,136,165,70,95,10,241,204,8,169,61,221,100,134,16,58,239,171,182,80,0,247,98,199,191,137,80,175,229,97,128,98,239,37,127,99,192,1,79,228,95,150,165,104,19,56,201,21,20,149,95,158,2,84,108,105,116,216,182,248,149,213,61,188,79,0,89,238,96,179,146,157,32,139,79,171,205,76,94,62,237,48,192,158,15,143,63,70,54,27,162,145,218,142,60,152,2
 34,245,192,47,166,49,116,251,139,24,153,254,205,153,218,34,143,115,5,93,42,205,112,64,199,120,89,79,66,92,37,126,38,241,233,215,19,48,42,182,175,247,140,187,190,138,56,50,0,150,74,62,204,117,207,25,122,190,223,99,80,203,168,234,255,36,232,36,222,166,107,148,194,139,127,131,162,183,165,31,173,120,94,127,146,213,84,9,122,12,209,115,132,7,53,188,86,238,227,18,85,104,101,178,168,194,126,65,153,145,185,93,21,212,142,11,110,193,209,171,125,223,116,34,8,242,57,231,132,42,152,130,27,119,138,247,58,137,50,113,38,133,219,235,92,149,104,15,154,90,133,93,245,18,231,239,109,254,191,177,72,3,32,245,178,100,86,230,40,159,184,236,131,252,93,40,157,198,97,192,36,28,64,87,56,59,186,168,144,63,228,122,44,154,191,60,13,165,118,223,231,34,248,132,83,86,109,94,61,67,77,111,17,125,213,136,145,78,168,252,253,245,85,209,73,196,91,106,138,19,134,77,239,99,213,243,97,131,43,217,222,74,104,51,134,60,53,129,146,190,188,230,25,122,89,193,198,140,141,183,171,36,125,254,56,254,99,45,172,130,130,165,26,13,6
 8,220,119,250,56,123,61,28,202,47,98,0,193,237,75,73,112,167,7,65,16,137,65,4,125,225,76,204,219,118,211,130,225,48,73,222,139,215,84,89,177,3,227,44,247,90,40,1,8,19,198,104,156,60,150,198,134,20,56,71,164,243,180,228,106,71,176,222,184,212,167,59,187,191,8,108,215,147,46,143,202,210,68,74,231,127,229,114,166,201,255,115,67,188,255,107,160,251,116,155,185,173,77,50,206,99,156,171,206,29,98,5,14,158,216,219,40,143,74,230,101,37,226,13,32,33,130,89,32,20,27,225,85,44,253,76,228,117,236,41,216,103,249,128,95,186,140,7,232,246,193,155,62,9,81,119,126,68,230,168,30,226,153,244,143,234,97,83,139,201,18,133,91,189,132,123,8,134,30,134,231,65,148,166,65,125,31,114,123,66,246,195,237,169,40,185,188,8,122,47,12,203,210,163,153,180,246,155,89,224,169,92,11,203,248,211,147,118,29,66,197,220,98,29,74,31,249,230,222,56,228,115,17,73,141,98,217,123,210,10,76,25,214,44,183,56,161,203,147,0,96,223,199,9,180,36,158,44,59,66,198,58,229,57,145,46,198,12,9,18,32,237,172,148,66,129,37,210,81,224
 ,167,106,194,147,238,58,98,106,131,142,85,30,8,196,217,195,222,100,128,167,66,239,222,213,242,4,215,98,111,129,74,78,32,25,15,191,172,141,53,157,187,228,68,59,81,117,251,88,167,103,23,230,113,212,243,156,244,251,97,78,161,242,8,224,249,23,231,141,18,206,243,192,102,214,234,223,140,55,202,96,221,31,186,197,214,130,101,111,212,153,129,95,119,158,243,158,130,14,126,67,82,162,248,130,22,179,71,202,191,169,89,109,37,149,55,85,122,50,166,185,75,108,84,211,62,68,203,251,124,177,183,119,43,214,87,172,97,221,238,143,185,64,248,18,30,180,158,100,64,166,59,96,149,167,58,116,39,83,159,35,176,149,124,217,87,186,180,29,207,249,101,62,176,118,57,81,81,42,127,68,102,33,6,182,24,112,101,7,82,46,85,249,35,205,223,160,122,22,143,165,20,3,43,45,13,4,104,56,176,34,237,64,143,57,132,142,118,211,237,248,65,148,253,44,138,103,52,17,161,162,200,33,234,13,30,69,195,38,46,132,110,249,91,0,233,161,216,119,149,128,105,211,81,166,5,64,126,0,36,235,210,207,210,106,247,18,213,105,205,173,116,157,86,220,36,
 94,225,77,249,76,37,179,37,7,112,84,164,136,164,41,164,3,78,12,125,165,55,72,0,33,153,73,64,86,201,110,233,161,110,164,9,255,49,239,193,88,57,33,124,189,51,234,232,20,75,113,191,38,127,43,110,61,64,148,143,211,60,171,162,167,96,8,227,230,225,16,213,206,95,178,51,155,162,73,158,243,185,43,23,63,78,119,211,60,218,226,234,160,59,97,248,221,156,130,190,31,186,223,149,235,100,94,212,215,201,234,178,147,83,79,224,85,152,162,176,82,142,255,150,75,101,94,111,81,149,227,43,217,211,48,3,246,247,131,203,38,198,93,152,49,14,4,182,78,203,40,19,46,110,238,115,43,240,3,92,235,121,64,96,196,45,198,246,10,55,132,199,139,18,106,136,147,23,209,50,26,132,213,53,254,252,192,0,114,58,255,240,255,119,10,90,169,78,23,42,177,181,38,69,144,6,146,67,236,124,157,192,53,49,155,24,236,199,16,237,103,163,195,121,16,230,88,49,98,64,174,252,227,56,204,66,1,107,8,167,65,101,103,220,40,161,181,152,70,67,155,88,197,117,131,249,209,84,160,94,112,183,218,91,83,114,1,217,222,31,10,186,75,145,45,143,134,7,102,170,
 87,172,34,249,243,177,223,142,148,180,170,81,12,53,95,161,77,20,119,164,227,161,142,148,22,229,206,213,86,126,138,85,136,52,235,204,184,238,64,190,90,161,199,40,5,64,91,75,185,47,131,69,248,234,0,109,228,224,227,29,126,86,122,198,112,25,99,181,221,83,239,95,108,195,89,237,18,40,250,99,163,89,236,141,96,3,236,185,14,42,181,156,142,222,83,6,86,67,180,232,207,73,42,203,85,53,139,97,123,190,27,189,195,5,68,249,148,60,109,163,130,255,54,121,9,210,52,1,153,41,207,93,117,113,49,232,110,186,83,213,178,189,191,191,205,116,56,172,205,173,169,122,10,145,180,167,197,252,208,167,203,228,193,121,221,187,157,11,230,88,29,29,5,16,109,19,62,24,209,44,84,193,133,183,14,86,30,238,224,103,17,190,226,187,211,21,32,146,41,109,226,61,153,107,16,182,83,113,38,97,47,19,55,238,171,231,163,179,193,218,109,37,150,101,59,242,235,177,110,13,203,114,10,37,184,1,143,89,11,54,195,195,118,12,25,202,164,70,95,174,33,140,99,244,234,141,246,146,228,97,117,13,198,178,4,156,131,145,30,73,136,200,211,223,194,72,74
 ,179,51,117,208,133,80,224,247,36,153,127,105,167,244,60,181,198,40,205,153,119,205,117,33,69,202,145,122,28,120,153,8,129,152,171,248,198,94,2,65,203,254,108,164,22,131,26,161,57,161,25,193,181,141,192,207,214,144,78,17,250,101,54,204,237,215,198,180,10,99,122,178,219,210,142,124,218,215,178,197,101,113,98,187,205,123,219,23,83,174,237,253,113,0,228,36,121,79,204,75,91,124,125,111,69,213,200,2,88,6,122,171,223,179,33,29,70,209,146,101,171,64,161,127,38,195,238,65,230,50,147,166,111,182,239,224,43,107,69,37,110,219,157,219,57,189,205,205,162,118,134,62,190,89,142,3,198,190,137,187,88,111,164,198,248,214,117,35,6,86,170,216,16,32,144,82,109,159,30,69,96,228,64,201,149,45,48,127,116,87,62,40,11,70,115,135,31,205,252,185,193,138,182,139,14,168,195,162,199,153,42,170,4,46,155,130,76,64,208,29,83,108,121,40,15,107,219,19,240,65,127,53,14,79,210,125,125,67,144,225,128,98,192,200,208,26,172,142,98,121,239,254,27,138,190,17,29,77,199,64,150,140,79,9,38,33,0,132,51,255,24,8,125,20,13
 4,252,13,171,139,200,242,105,224,80,226,21,213,46,244,116,112,194,82,221,40,222,250,171,45,82,81,183,50,21,236,0,10,24,234,193,177,84,199,162,253,173,62,160,64,212,114,110,106,7,102,184,101,218,73,229,54,231,46,155,4,39,216,207,110,70,103,251,114,105,158,111,225,3,74,150,0,74,165,80,138,148,202,85,142,4,50,227,170,188,66,158,114,55,211,44,35,131,183,207,223,240,129,149,109,189,239,76,192,57,104,124,139,81,2,120,217,13,176,75,45,164,91,208,139,62,53,23,207,19,89,216,190,178,129,62,162,85,54,197,27,81,48,209,202,70,237,102,173,130,148,80,32,189,0,46,116,6,125,213,30,51,25,26,142,38,16,69,179,80,7,234,197,222,179,123,120,183,50,85,253,93,136,127,81,72,181,234,243,229,115,20,202,119,194,214,140,212,53,18,41,131,12,138,182,121,132,252,34,210,202,177,254,195,59,207,116,104,64,200,212,202,89,230,132,75,197,89,198,109,73,24,84,203,22,162,198,153,117,219,5,132,9,40,166,196,175,153,164,223,237,238,230,172,142,25,109,147,207,198,224,181,1,186,206,235,249,245,55,29,233,82,128,198,238,87
 ,234,245,215,21,164,232,167,91,139,209,130,113,231,195,101,6,239,104,81,235,215,181,96,126,252,187,189,209,16,202,243,78,97,24,24,137,25,207,239,104,127,86,167,165,175,96,183,115,105,99,85,81,32,190,165,237,232,124,44,214,154,21,174,237,243,239,70,228,171,54,4,240,6,170,24,126,137,82,184,164,41,94,209,152,199,34,119,1,157,9,185,192,23,10,122,186,194,81,116,157,166,235,4,10,171,231,0,240,56,94,68,78,120,0,160,37,200,89,110,71,65,153,221,76,105,198,140,226,91,48,94,103,178,237,222,0,179,217,17,146,116,141,244,127,27,11,236,167,38,225,68,239,164,3,95,189,96,20,141,113,90,218,245,164,135,237,141,133,217,3,26,68,62,133,95,214,231,9,41,57,62,209,21,214,53,120,42,150,70,216,228,177,16,4,120,230,53,226,155,53,98,108,201,213,193,50,172,145,84,77,202,83,122,17,119,188,116,37,125,73,55,91,155,112,188,240,130,129,6,21,26,223,32,77,234,43,109,80,152,207,232,253,255,185,123,5,79,84,1,100,146,10,167,186,154,188,77,238,159,74,0,20,185,192,158,225,55,169,49,52,82,145,232,105,199,92,166,102,2
 54,25,66,200,160,165,189,86,142,74,170,217,30,238,32,116,168,8,122,52,255,194,82,148,140,237,229,89,20,54,23,152,254,233,160,156,131,2,220,120,53,11,212,31,32,127,148,108,142,101,176,241,78,236,236,228,50,165,34,100,234,138,201,187,255,108,138,1,57,162,38,247,146,169,158,125,244,53,10,37,13,207,226,71,105,238,165,115,78,97,104,62,93,8,193,208,67,161,62,32,136,122,12,57,90,136,145,79,158,187,244,48,164,105,199,243,51,22,44,142,26,146,116,208,238,246,253,219,102,3,21,94,138,194,193,62,11,139,238,247,115,106,160,136,29,112,226,247,245,0,206,241,223,182,146,29,198,66,203,83,249,122,189,202,114,5,225,153,32,116,45,57,48,73,32,220,210,167,164,109,147,232,52,105,225,75,13,25,239,137,170,159,186,237,123,162,201,97,100,197,156,43,54,26,230,211,77,45,0,146,82,126,157,68,115,100,204,193,194,232,39,19,23,204,243,27,148,40,148,69,131,204,250,198,104,54,168,73,150,98,93,190,105,35,32,35,12,78,251,28,215,181,198,63,202,127,98,101,209,98,60,106,245,127,137,12,28,92,38,31,10,55,143,90,0,158,
 61,41,33,191,190,16,27,49,163,212,161,51,79,42,81,243,57,82,85,98,198,16,77,152,106,210,72,54,132,66,182,157,247,148,186,30,42,240,151,155,216,140,130,137,180,180,218,61,250,62,5,17,156,164,13,242,36,63,7,14,162,116,196,48,4,11,221,200,175,136,217,231,168,74,0,61,113,176,243,18,249,136,56,86,116,222,4,136,93,106,151,179,90,205,82,2,79,53,172,90,155,98,51,163,55,124,29,30,130,52,123,11,46,133,135,121,171,128,207,91,248,101,205,56,144,228,237,108,102,81,133,150,54,77,94,36,222,186,253,5,192,137,126,104,175,146,217,184,249,103,93,42,66,143,44,98,224,198,82,240,146,227,30,244,141,182,76,146,236,254,180,224,181,230,2,175,60,94,52,146,131,254,4,28,243,164,131,23,92,207,253,80,233,51,127,82,73,35,240,199,193,71,61,81,95,114,232,3,47,168,116,30,8,211,141,181,100,160,120,206,109,162,29,2,72,150,98,71,237,139,186,99,158,25,162,112,7,220,125,150,152,243,202,58,205,6,73,161,21,44,41,133,223,63,73,222,225,93,118,239,121,128,227,237,198,25,30,117,43,125,22,136,179,65,34,72,113,111,205,29,
 86,93,84,242,52,5,189,184,254,0,121,229,185,16,220,119,158,127,207,210,114,152,111,146,248,135,64,9,71,199,61,239,41,173,26,223,72,201,188,193,208,210,129,91,214,181,254,103,30,93,202,62,79,50,205,34,77,29,252,211,108,110,11,249,183,127,119,162,230,184,141,28,236,174,125,113,65,34,109,79,179,41,134,201,184,65,195,46,134,221,119,242,91,1,244,202,188,154,73,92,212,80,134,151,74,15,1,84,172,15,142,34,72,18,198,33,179,208,228,255,113,216,11,217,247,98,128,94,36,188,151,156,105,212,185,146,237,244,60,88,64,54,238,152,82,169,115,191,56,102,180,226,78,67,178,21,34,152,232,19,155,49,118,155,182,200,240,126,25,121,169,121,17,68,1,168,126,149,194,70,216,61,164,231,213,1,191,220,202,38,192,72,57,122,41,164,151,23,228,129,120,74,239,239,162,212,58,72,15,239,27,63,31,114,255,22,121,217,6,86,198,29,139,13,32,223,46,114,120,252,189,43,62,198,103,45,76,77,100,152,132,133,34,103,80,42,216,174,198,187,51,8,121,72,136,31,12,79,130,49,91,124,169,172,65,103,17,229,199,223,220,248,34,34,236,140,1
 77,134,100,109,115,229,104,191,16,138,109,206,174,57,159,77,6,233,102,220,241,205,51,32,230,20,49,197,177,43,239,173,239,111,78,207,209,67,176,117,208,114,77,2,39,101,178,2,174,70,57,24,55,34,197,184,151,119,66,198,95,98,216,200,118,122,27,66,177,197,11,206,119,233,220,93,210,50,63,201,67,14,170,230,125,233,227,147,162,96,76,234,0,117,219,163,244,73,41,41,14,229,188,20,209,40,142,206,4,75,61,137,114,101,13,70,171,182,117,193,232,171,222,210,31,70,204,72,35,134,177,67,37,119,46,34,105,118,82,95,67,250,153,38,25,133,9,52,90,62,141,239,153,57,149,245,47,247,56,42,72,147,190,220,49,214,40,234,105,240,24,152,189,70,186,24,178,166,82,166,235,78,162,74,33,49,22,179,187,86,39,33,249,169,218,46,50,64,34,138,235,125,137,116,75,127,188,179,175,176,24,15,36,15,143,210,72,40,0,22,76,237,180,115,136,3,206,101,135,235,158,212,250,90,17,213,172,107,122,140,205,91,224,73,172,252,255,32,176,125,115,74,95,52,170,66,86,169,50,244,189,42,133,66,246,71,79,135,64,152,217,175,113,35,52,141,218,144,
 195,76,115,135,112,11,102,134,206,53,119,118,152,41,115,141,232,164,67,93,216,130,1,194,2,249,25,73,77,161,177,180,30,223,22,18,199,37,220,213,215,227,94,250,57,130,76,1,195,173,252,188,233,80,80,238,82,138,146,175,31,198,90,40,160,207,42,95,0,223,87,133,91,56,128,49,28,118,11,119,156,201,195,254,134,217,139,151,112,113,54,220,118,116,138,247,47,156,60,104,45,62,9,230,28,180,164,143,252,40,212,132,46,161,113,219,178,12,102,188,68,75,34,203,91,151,32,153,68,116,102,104,100,22,48,29,143,97,14,51,157,28,65,229,37,65,212,51,230,113,31,144,233,141,4,53,140,61,100,75,84,34,100,81,145,91,91,18,7,144,239,163,16,185,242,108,16,109,58,198,19,118,132,107,49,210,98,104,58,142,240,150,127,1,203,37,98,255,189,120,26,174,41,210,70,126,125,239,255,164,185,82,164,177,44,24,235,171,53,165,112,111,83,219,5,179,234,154,234,193,166,245,104,32,90,17,237,103,169,74,100,125,4,81,219,242,190,111,137,37,179,146,137,33,62,143,52,249,210,245,214,80,48,17,129,26,122,96,107,28,60,187,198,236,17,142,175,2
 42,15,166,53,168,182,250,234,7,221,196,205,3,28,33,34,28,7,57,41,210,237,207,187,103,219,53,209,172,234,177,62,105,174,89,73,175,119,202,194,85,167,52,11,0,11,85,91,199,242,49,240,157,75,213,242,223,64,231,20,105,124,223,219,179,199,22,60,249,69,214,222,195,101,132,163,86,240,202,164,112,152,193,220,255,110,236,122,67,76,33,100,199,92,234,114,64,84,137,74,129,37,191,98,15,19,131,154,194,206,105,185,174,8,212,253,154,166,139,171,223,62,182,129,95,155,156,19,238,106,182,251,184,207,12,84,173,243,34,109,240,252,228,213,229,198,170,15,19,205,34,97,253,6,205,54,132,34,43,48,54,177,196,83,255,152,34,227,124,124,87,102,35,161,150,139,90,145,23,50,122,182,210,220,173,70,235,149,9,31,165,32,123,174,183,44,98,112,70,182,120,141,216,119,155,137,48,149,177,255,17,209,201,57,236,211,163,23,142,39,36,143,67,0,51,164,247,187,121,56,161,136,230,42,175,151,74,181,65,244,238,14,219,59,138,68,216,213,205,51,205,110,242,114,135,77,71,205,86,87,112,209,159,204,17,199,148,197,220,187,140,8,83,213
 ,11,175,123,229,201,121,135,229,188,182,159,229,142,200,183,66,39,73,210,177,155,218,189,241,137,93,246,53,146,243,142,212,204,121,27,53,10,133,118,250,140,190,60,34,44,10,193,74,241,200,52,63,38,109,115,245,103,95,253,131,194,215,174,8,154,211,14,125,27,5,215,109,154,164,255,36,23,43,63,215,168,68,5,96,242,217,54,36,9,152,182,84,39,138,88,195,121,20,105,67,104,4,90,1,167,126,102,59,200,85,225,20,64,73,234,113,105,105,199,199,129,222,119,171,113,9,141,235,187,86,64,223,167,91,86,0,106,193,246,116,180,166,126,208,152,184,203,185,209,65,255,79,37,92,51,184,254,46,49,61,252,65,233,194,13,143,190,174,102,215,17,153,224,50,92,87,8,81,154,73,186,113,20,83,211,30,177,160,251,126,79,164,63,34,125,69,176,227,254,104,87,183,170,207,77,43,106,24,188,61,16,222,138,179,147,106,94,105,139,146,48,122,129,43,22,159,181,96,211,119,0,181,149,89,227,191,237,33,229,34,103,229,64,38,82,235,88,33,88,39,75,208,144,228,104,57,222,163,21,90,47,247,206,148,37,213,4,162,127,79,223,157,175,173,105,19,1
 09,74,133,3,217,66,60,233,74,95,244,241,241,203,57,47,24,50,146,237,138,128,192,187,103,171,156,104,78,218,38,96,233,99,33,169,243,131,150,10,101,188,235,189,134,84,50,109,255,133,135,158,87,74,23,202,58,93,79,246,138,77,65,117,172,16,20,100,37,208,42,147,184,13,148,253,128,35,209,61,116,65,222,167,240,157,133,181,230,121,231,248,93,237,202,67,140,164,165,178,49,166,152,114,167,118,92,107,247,143,95,49,28,23,193,216,102,142,27,111,238,19,18,88,0,141,188,119,78,77,52,0,145,186,163,158,240,124,11,220,234,102,155,170,218,168,22,158,109,173,231,214,109,250,157,33,79,133,100,52,85,90,186,186,54,51,222,247,153,106,52,121,122,199,248,159,140,27,97,91,182,52,78,108,109,140,244,178,58,103,199,118,214,242,229,184,15,79,200,48,192,31,21,167,127,110,117,228,93,131,49,23,61,222,74,174,112,7,208,151,220,156,32,41,173,23,153,245,20,18,173,203,85,233,173,246,222,67,91,24,222,137,219,94,114,233,216,46,223,198,76,240,101,0,7,179,239,235,4,22,45,7,186,236,134,63,221,5,209,39,239,124,222,242,19
 4,247,48,49,197,26,130,161,77,249,219,166,211,169,104,233,173,198,113,95,65,228,82,171,90,199,172,151,101,178,172,195,182,159,143,7,147,232,33,104,86,3,202,40,49,53,207,67,17,222,188,12,189,97,7,161,169,14,165,36,152,109,47,56,86,197,40,131,39,79,120,229,113,130,234,55,194,182,250,244,66,207,154,218,211,140,212,175,246,137,56,34,143,60,136,130,177,83,99,120,90,142,44,157,155,32,22,76,140,151,233,133,104,71,80,219,45,134,227,94,222,51,206,9,229,180,59,129,107,27,252,131,13,242,110,210,63,49,227,4,45,212,240,38,224,37,0,91,184,221,31,153,231,95,154,176,25,173,56,124,156,190,147,51,8,26,15,70,121,146,0,96,34,178,63,158,116,114,118,88,32,184,200,146,51,233,174,168,56,211,36,98,241,162,70,29,103,35,61,4,54,123,46,206,196,42,245,179,65,112,193,173,251,101,232,121,254,84,155,251,38,10,86,182,50,205,51,44,202,150,159,250,91,150,156,182,72,107,134,213,15,230,214,127,185,175,52,212,168,202,5,216,135,55,233,64,104,40,242,206,3,3,15,150,34,188,18,241,116,107,32,209,244,223,194,25,70,109
 ,107,93,191,54,219,190,224,174,103,31,158,69,75,146,75,158,191,159,218,115,140,255,189,214,27,99,54,194,151,106,100,138,174,12,228,142,139,131,182,202,25,0,244,87,148,91,87,0,63,215,222,127,243,227,223,57,115,15,179,166,32,3,58,41,174,236,246,106,97,59,156,147,50,114,232,117,47,10,131,49,112,66,20,89,163,172,97,83,27,182,19,199,173,27,11,95,127,201,122,135,174,77,226,225,34,255,166,92,84,8,15,224,195,88,58,121,221,169,173,127,155,239,78,80,203,13,19,146,97,25,135,95,2,114,243,134,33,139,105,82,11,207,103,45,253,83,222,79,193,144,30,17,131,83,5,50,63,189,22,118,151,11,174,170,245,191,69,230,152,230,183,120,83,66,98,124,79,147,251,59,149,34,249,93,156,243,163,40,97,35,169,240,249,177,161,74,62,207,213,92,212,110,50,139,91,145,234,247,68,124,102,238,212,204,4,16,121,37,239,167,4,31,42,228,6,223,192,134,51,52,41,115,219,196,71,194,198,95,49,13,139,124,123,89,128,109,150,188,40,56,94,105,138,42,176,99,123,193,255,94,212,187,39,225,37,26,131,124,109,192,192,208,213,143,244,11,109,
 57,188,197,34,148,204,94,110,91,242,37,65,190,69,9,251,251,7,1,207,203,34,66,137,198,172,103,99,3,8,41,181,136,7,1,199,195,251,66,130,2,0,238,23,136,12,249,11,77,115,64,236,109,57,187,24,100,68,118,210,212,227,195,21,100,186,133,250,219,15,45,38,246,139,126,185,111,183,111,14,231,115,223,62,140,70,25,221,181,58,92,122,134,38,184,8,178,73,21,1,99,152,3,169,191,239,175,99,247,119,39,203,0,46,181,29,146,175,223,52,212,148,195,62,40,45,173,11,41,195,135,190,197,74,237,107,59,229,201,199,42,33,49,253,189,70,179,126,183,40,200,189,136,87,36,249,56,13,4,72,210,108,77,43,186,159,249,81,134,43,177,236,216,114,56,190,189,63,172,219,105,177,122,45,215,187,8,10,119,82,136,77,183,141,17,39,24,88,118,128,131,176,28,165,177,193,199,161,38,218,14,67,255,111,239,226,150,77,38,221,161,29,151,196,10,138,205,63,183,20,151,39,148,194,130,20,186,26,141,168,171,120,26,92,226,29,2,54,43,167,76,154,29,69,254,16,145,253,108,241,97,80,81,30,118,231,174,34,27,112,199,1,204,40,217,84,23,154,164,208,187,
 207,60,67,68,182,10,139,86,86,186,249,59,28,221,26,163,225,199,178,59,216,45,25,54,117,180,130,66,161,238,239,154,100,108,118,21,243,202,143,4,223,239,125,182,169,35,253,229,15,66,9,226,99,71,237,223,27,122,38,189,175,99,37,251,3,56,94,19,185,78,12,8,76,87,40,129,104,193,164,146,112,100,216,95,149,100,25,165,165,68,220,145,130,188,211,133,70,172,18,16,160,35,193,111,175,208,100,208,130,144,193,244,22,27,189,207,238,230,199,205,122,203,142,68,156,164,47,44,194,5,159,132,195,162,229,75,12,115,229,67,5,239,103,202,166,215,239,190,226,9,107,185,87,59,68,215,135,26,152,154,136,156,201,123,158,142,56,42,114,134,146,110,105,210,13,78,255,62,28,20,171,100,62,27,165,17,235,9,43,151,182,173,73,11,53,181,135,61,233,186,7,71,159,111,30,117,39,135,210,14,166,68,237,4,2,41,144,205,96,254,88,29,134,241,93,137,217,17,42,24,157,200,41,99,25,66,227,210,188,194,20,156,177,152,146,161,212,82,178,112,221,238,26,80,220,145,11,27,125,97,59,248,147,144,206,66,39,225,32,220,180,37,153,5,125,3,157,60
 ,28,129,178,89,254,224,2,91,159,112,34,37,59,73,73,140,232,172,116,89,223,17,198,198,5,27,110,82,163,254,93,174,6,233,240,90,204,90,247,221,136,181,132,34,196,109,180,158,244,14,84,129,179,62,179,208,212,88,227,198,64,190,228,46,176,196,26,1,151,89,47,221,141,68,4,102,39,10,204,253,30,177,72,162,189,217,217,22,21,11,236,155,156,74,15,17,240,0,64,162,163,132,133,29,227,32,105,210,86,169,2,201,54,33,129,153,77,93,195,108,142,71,177,193,168,45,146,88,28,107,152,25,20,95,88,77,239,149,53,16,87,177,196,151,171,210,48,142,203,208,6,75,210,192,123,24,224,118,105,136,223,68,151,196,65,160,156,160,102,207,218,3,163,102,190,42,197,110,248,176,234,237,203,131,233,79,57,174,238,71,232,24,243,202,188,157,42,6,127,235,149,93,235,169,64,246,127,113,67,25,139,150,87,153,36,165,80,197,72,75,45,58,205,191,137,82,213,110,166,215,157,229,111,231,175,184,86,11,140,206,96,125,10,62,86,217,13,254,107,108,123,118,155,179,122,157,120,143,117,65,34,132,50,125,80,201,213,118,199,195,86,215,146,68,232,
 58,48,185,135,109,239,145,120,225,120,34,24,12,36,240,209,134,93,163,136,215,77,112,103,178,199,177,210,219,23,157,120,193,50,30,18,209,159,65,82,194,172,148,24,171,53,192,115,51,186,88,130,221,117,245,164,83,253,164,61,67,18,150,166,151,94,81,79,206,64,3,64,117,46,13,22,24,217,61,130,204,14,202,204,51,245,195,38,55,129,1,116,8,178,93,172,196,91,244,169,13,228,252,85,52,134,64,213,186,210,88,47,237,227,135,196,17,100,205,11,131,73,42,37,97,15,95,202,47,111,205,14,220,22,130,142,234,209,157,247,157,45,31,35,56,215,250,28,90,181,157,18,67,174,136,4,11,172,63,99,180,184,217,81,3,135,233,251,142,158,255,80,186,26,176,204,153,248,71,195,215,20,22,101,108,239,116,13,207,217,163,152,180,155,169,94,54,247,224,202,34,154,47,33,95,39,46,230,154,151,125,2,77,182,171,96,217,247,102,91,107,42,85,19,203,116,198,248,54,164,241,98,206,233,253,204,66,51,94,184,151,178,99,127,46,170,88,3,22,177,196,199,73,126,235,58,154,85,98,0,144,7,237,182,83,176,177,130,196,237,169,179,0,78,150,30,51,9,11,
 188,6,122,185,31,105,227,17,30,41,219,189,15,218,81,153,241,17,64,53,162,112,117,36,51,228,74,65,216,78,139,96,17,192,123,189,151,207,241,96,60,250,57,209,109,253,108,181,146,176,143,237,166,15,43,97,73,175,7,166,96,244,227,95,58,204,19,242,254,217,193,94,189,91,193,102,195,187,24,255,168,167,144,78,182,30,122,85,225,41,3,77,17,113,186,247,18,219,152,72,183,150,208,231,18,244,108,109,0,167,42,205,101,116,107,63,96,122,85,201,152,178,191,110,230,141,46,95,138,157,205,156,30,137,60,127,157,174,105,47,95,136,33,116,92,146,170,87,3,19,222,98,243,254,184,179,109,184,74,226,189,169,73,141,147,163,107,7,85,135,206,145,176,114,52,168,39,27,19,68,51,109,162,152,137,18,195,232,63,165,146,242,49,82,64,66,19,204,183,167,25,170,94,65,207,232,161,182,180,138,25,199,247,154,115,225,38,156,175,128,0,225,131,154,213,176,103,50,141,116,125,166,99,210,133,178,154,179,149,16,93,13,37,168,111,78,166,90,145,53,98,75,255,100,194,173,206,201,30,78,229,22,64,40,173,217,135,123,131,125,190,254,103,16
 9,78,180,206,26,130,146,57,57,226,207,208,187,253,184,114,168,35,39,255,144,142,78,115,46,98,182,222,27,212,214,233,221,232,165,49,2,27,228,59,215,171,252,19,172,52,18,132,127,133,141,14,228,45,131,108,211,60,214,39,189,213,165,21,249,42,197,18,230,244,225,41,147,150,118,45,238,169,251,144,92,60,209,255,194,51,45,143,121,46,198,139,4,139,160,20,184,123,45,46,78,223,4,146,144,187,207,207,110,57,181,222,134,115,44,178,55,104,45,173,70,132,47,205,230,227,61,207,67,90,146,212,11,60,210,231,171,147,196,74,183,207,211,21,41,224,66,185,37,214,162,39,239,191,35,216,13,219,148,123,12,75,248,99,227,123,70,237,159,13,37,170,94,36,43,225,93,91,57,157,116,153,244,174,226,48,118,32,95,62,147,160,129,37,24,26,124,192,18,0,119,38,25,135,23,65,213,75,192,143,68,242,133,181,133,146,23,149,248,177,107,139,255,177,98,153,45,60,61,161,25,76,235,245,245,74,167,167,47,163,21,64,136,88,192,80,184,218,92,78,194,95,219,195,48,224,153,214,88,134,115,179,249,64,49,202,40,41,119,146,105,243,202,40,192,1
 52,200,1,108,190,155,93,224,190,185,67,136,225,228,85,111,119,225,116,188,155,50,24,12,187,216,108,156,135,117,128,48,138,169,25,183,10,179,127,163,209,138,202,109,2,241,95,248,255,96,69,41,103,104,205,24,156,225,47,62,96,169,180,192,250,193,144,222,133,65,115,76,150,35,2,155,139,207,118,176,87,25,95,214,211,130,140,34,136,98,12,154,19,252,95,4,153,35,226,61,136,178,217,35,153,187,16,204,119,134,45,172,67,211,228,100,179,128,60,59,63,159,224,22,22,169,45,254,247,179,114,227,39,21,4,84,253,113,170,109,82,232,135,249,167,83,79,29,37,27,139,221,13,127,241,121,246,141,189,225,223,146,50,15,161,21,87,238,75,102,230,21,60,32,129,178,222,6,68,39,195,194,38,95,140,185,191,82,250,194,141,42,8,206,39,241,183,168,223,75,162,108,247,192,27,93,233,25,174,44,218,59,252,80,135,23,160,204,191,145,171,48,202,21,106,244,209,214,67,150,142,77,129,249,141,73,68,216,229,4,112,0,248,39,75,112,142,253,105,229,100,87,97,223,105,1,44,104,12,0,32,187,48,131,139,141,147,32,246,10,171,206,116,126,250,2
 37,60,245,76,122,221,62,199,20,52,131,63,17,242,150,126,147,200,47,168,200,182,43,4,67,224,175,115,201,187,238,217,138,124,26,154,73,108,8,178,65,27,115,6,55,43,178,196,186,216,6,206,29,253,49,183,14,156,222,193,129,59,63,184,109,168,10,170,7,29,39,183,111,112,105,191,169,123,209,223,146,209,240,229,44,51,116,182,47,80,45,241,10,54,52,253,29,198,6,98,36,74,68,83,194,194,27,152,70,51,122,91,79,231,208,213,236,61,47,231,225,134,174,93,253,41,198,68,137,186,130,16,217,169,96,206,104,252,204,85,16,140,0,66,87,0,199,47,83,94,198,76,80,84,117,24,33,67,171,201,61,33,67,86,53,155,171,19,140,122,142,204,83,171,159,23,57,55,73,88,212,46,212,214,244,72,29,90,171,192,101,79,50,18,71,215,141,4,248,223,128,54,184,144,92,25,169,16,166,182,195,253,65,201,74,125,135,2,202,208,84,250,226,136,77,208,80,132,196,246,92,172,39,140,28,176,90,222,160,61,250,64,255,178,112,195,249,38,68,38,99,26,55,212,242,25,31,25,254,84,31,189,4,64,45,242,40,92,210,228,68,94,126,146,187,61,207,104,234,77,201,195,2
 16,131,151,4,133,143,245,239,110,134,242,69,117,122,234,244,50,100,39,113,173,80,23,215,79,106,201,30,22,207,99,112,182,102,31,21,54,14,168,86,204,32,124,197,242,170,100,74,134,121,20,190,23,174,95,118,227,52,192,18,127,221,91,213,89,112,105,77,172,85,43,127,168,220,0,118,170,157,162,125,206,34,182,88,192,36,112,228,244,183,94,14,255,110,210,53,244,152,137,183,175,77,187,43,212,128,191,74,6,178,17,28,27,3,88,20,218,128,168,251,37,4,5,195,128,124,255,112,196,85,162,34,227,174,134,76,236,112,50,88,6,66,105,8,222,201,221,61,45,76,84,213,182,20,11,63,157,123,83,220,167,181,92,3,42,155,68,227,75,32,135,161,213,173,14,129,195,145,217,254,72,126,56,44,78,167,253,103,115,173,38,67,131,62,29,122,109,148,81,181,52,191,32,215,12,120,26,146,191,101,90,217,44,16,83,237,241,41,180,3,152,100,87,33,17,154,234,179,202,195,62,213,114,255,154,59,210,84,29,63,45,48,222,121,226,215,194,4,2,197,227,172,232,97,69,159,36,80,105,85,21,194,143,169,105,42,254,175,66,196,76,244,123,146,41,79,222,194,56
 ,34,22,140,86,41,248,230,174,136,167,197,62,98,135,151,183,86,170,144,1,49,47,227,205,220,62,116,157,119,58,230,204,163,216,253,97,240,97,16,186,215,187,252,2,245,74,229,203,59,209,180,187,224,133,142,152,241,150,234,151,146,9,242,138,138,78,204,131,132,106,59,219,110,15,155,193,250,207,70,48,174,124,56,235,106,13,177,250,175,104,92,127,125,187,151,2,125,126,57,209,176,41,187,129,102,9,137,220,166,127,14,145,79,149,17,72,144,238,77,218,174,35,160,188,47,204,7,185,9,216,230,33,79,108,240,117,241,184,142,124,92,147,200,239,158,61,6,120,214,174,84,243,128,193,174,252,61,189,241,225,225,220,254,22,186,210,11,10,122,80,119,31,180,32,158,119,207,82,158,176,158,202,150,38,122,199,65,245,185,204,198,122,230,254,84,203,19,19,174,200,82,223,214,163,97,221,177,115,26,215,138,30,145,7,133,25,105,233,224,254,45,20,102,50,136,244,173,249,213,26,170,229,0,211,247,137,155,251,137,96,91,116,19,249,142,248,188,140,20,246,105,239,200,48,28,253,120,242,44,162,41,54,175,182,101,173,70,255,179,56
 ,208,242,105,143,6,196,115,76,151,164,249,171,243,175,84,227,223,150,243,4,158,155,252,44,41,136,192,217,196,172,50,16,104,184,245,13,17,160,116,25,60,26,38,152,252,11,52,40,90,148,16,52,160,206,4,18,147,179,248,95,23,162,130,1,118,204,29,132,243,60,254,207,131,48,197,95,53,85,203,112,8,189,85,84,71,135,227,21,46,64,52,231,172,90,213,132,17,6,193,51,103,103,68,232,190,34,61,235,65,31,120,4,202,10,124,14,90,141,51,224,141,117,172,101,154,13,5,88,101,71,242,179,101,139,101,206,0,22,194,56,228,77,53,18,113,200,50,126,216,27,37,190,248,145,16,175,177,238,52,148,75,200,128,144,108,20,152,239,204,146,128,33,150,96,85,114,157,232,198,223,91,206,211,76,22,164,100,181,175,210,192,31,105,146,60,121,152,33,232,139,170,231,36,94,87,230,175,112,207,47,143,18,161,75,194,170,217,212,19,84,212,82,84,28,195,132,9,187,164,13,82,30,34,128,231,204,116,138,129,22,28,204,4,157,183,243,69,104,129,236,197,127,175,193,146,212,29,57,200,238,43,167,48,92,5,196,12,136,59,58,96,128,138,136,4,81,201,205,
 165,132,255,9,247,146,126,144,102,233,218,14,146,176,201,222,195,187,9,199,162,56,70,92,140,234,141,220,176,139,47,56,236,38,201,245,216,150,198,22,127,83,163,182,244,70,12,20,157,235,186,110,16,117,22,55,7,51,50,193,175,34,216,61,190,67,31,180,12,153,254,119,153,226,79,171,242,248,114,181,110,248,83,185,200,39,177,54,210,20,160,174,118,27,203,98,8,69,110,106,159,238,189,155,138,180,23,30,231,249,173,65,68,245,124,123,239,99,96,23,29,0,58,127,32,162,46,114,226,209,241,73,56,236,190,220,129,33,173,108,78,95,226,166,85,223,110,111,89,112,193,104,30,95,243,3,46,251,7,237,182,15,96,119,105,65,39,84,237,142,85,66,212,84,98,234,36,206,108,163,192,247,91,138,232,198,117,231,36,3,69,67,30,83,210,22,100,121,246,251,199,166,159,208,245,231,76,199,214,190,62,56,209,185,195,43,161,181,5,20,145,188,173,7,50,154,207,187,216,128,41,43,7,87,69,28,220,93,69,37,185,75,186,40,10,242,66,39,174,237,32,1,97,122,130,45,204,28,119,47,79,247,215,196,124,181,134,12,217,7,7,253,33,146,0,110,249,217,11
 3,254,151,140,21,146,31,219,66,137,244,218,241,248,231,34,217,33,8,120,250,53,218,179,109,79,226,29,216,244,223,185,251,183,180,57,252,81,199,1,252,175,246,134,202,239,82,221,62,89,151,44,148,31,129,91,171,69,165,135,115,35,201,186,171,82,249,121,161,141,95,42,8,160,184,201,15,12,197,44,170,180,205,209,29,234,248,93,83,243,15,80,186,118,33,68,177,233,170,111,112,19,235,28,235,0,164,67,152,136,39,105,18,234,203,35,99,195,3,229,200,16,11,220,14,38,56,7,102,27,250,91,15,16,209,226,134,230,191,39,159,231,109,19,63,101,192,227,61,181,151,23,199,215,97,127,189,105,42,10,235,88,188,14,42,198,134,70,33,165,10,168,217,64,248,126,255,73,154,145,154,167,115,218,97,23,197,66,26,64,38,221,102,61,159,58,61,67,165,180,158,12,130,227,156,92,222,69,57,50,54,101,224,51,71,184,118,86,237,196,40,165,111,92,245,180,61,98,251,121,173,249,254,168,34,9,97,148,188,173,255,204,239,6,179,212,215,177,118,200,103,138,251,89,28,52,71,204,244,61,63,89,211,42,139,40,80,64,143,10,31,194,113,13,34,51,238,162
 ,186,105,44,179,237,116,17,118,62,110,250,196,47,119,120,153,82,222,114,63,55,177,80,114,19,58,53,70,167,176,43,215,66,59,100,167,26,1,197,210,29,236,232,48,240,254,194,152,48,147,121,65,142,231,112,222,141,56,159,202,157,65,165,232,135,214,248,35,170,181,89,26,99,83,11,182,69,75,112,136,49,35,252,197,156,32,238,89,203,199,31,60,132,14,58,48,221,109,19,37,248,247,233,85,67,182,151,88,12,159,58,223,186,178,173,209,2,17,46,204,93,110,174,168,101,44,26,232,152,204,255,31,77,197,63,156,232,231,91,69,39,251,223,154,116,183,87,54,65,61,77,146,197,9,18,167,74,54,50,103,129,233,151,28,140,160,24,7,184,33,33,55,14,235,28,135,124,249,31,179,91,34,223,129,106,140,212,64,5,123,228,105,148,215,203,155,178,13,124,121,92,69,231,218,216,217,73,171,212,224,170,160,43,8,20,179,249,121,69,150,91,98,186,124,220,194,204,229,162,27,239,27,177,69,144,232,57,134,24,118,211,169,115,85,245,228,207,37,6,224,71,127,55,43,94,113,192,228,248,90,85,115,123,80,239,0,12,244,107,205,38,115,205,163,46,43,125,
 25,89,174,44,74,54,39,38,216,244,60,24,24,234,68,3,252,149,156,183,127,49,119,122,188,208,42,27,214,191,186,59,212,17,21,7,68,242,45,230,31,142,116,110,249,59,183,105,37,43,178,170,149,249,45,203,228,56,53,204,44,53,7,86,216,28,177,91,148,158,35,73,157,18,216,68,221,198,219,174,44,53,19,236,139,15,249,135,232,55,254,239,25,252,27,96,219,128,41,17,77,186,243,93,111,43,198,23,52,28,26,100,112,101,66,217,196,116,174,14,27,37,65,98,137,243,40,217,226,173,189,208,231,72,126,185,40,173,100,70,167,132,48,238,88,113,122,175,196,123,220,250,144,42,177,153,86,42,134,197,73,230,66,157,143,42,68,33,95,49,107,172,30,103,194,75,250,109,49,198,82,68,146,91,243,1,67,103,8,93,199,192,40,39,78,2,233,67,116,251,74,237,237,11,40,106,151,245,55,210,223,234,177,243,222,96,59,60,11,255,35,163,20,17,154,196,167,158,187,243,96,128,99,126,212,138,157,52,34,49,60,97,95,141,81,180,117,163,93,0,179,26,19,24,13,191,132,63,131,242,53,42,156,240,99,232,33,152,2,51,168,14,250,87,138,61,108,212,160,8,32,164,
 92,135,135,128,114,81,113,128,29,139,229,170,154,15,35,246,203,158,220,24,89,94,6,47,120,35,190,58,83,88,139,150,152,170,172,40,192,163,40,96,37,54,176,124,1,7,197,154,169,74,174,84,226,189,189,105,80,216,103,106,21,135,188,131,97,161,170,74,161,157,53,150,165,79,55,241,122,112,204,100,4,183,155,34,95,17,78,192,22,178,244,171,3,123,14,50,196,51,225,62,219,121,220,110,229,122,41,132,158,182,28,122,27,98,203,248,19,122,9,74,80,95,85,5,86,124,200,25,74,146,248,114,159,136,16,174,125,230,148,30,190,234,78,43,64,246,131,255,57,120,39,33,14,155,87,188,233,120,129,95,152,215,3,165,31,118,66,9,182,247,180,70,226,182,174,151,161,141,23,158,23,142,70,26,208,220,2,50,130,82,91,22,11,129,186,93,178,75,87,17,14,228,89,200,46,98,38,7,233,178,143,108,38,46,100,168,34,121,111,50,32,191,4,118,205,117,41,41,247,5,249,83,167,145,98,177,89,148,231,61,139,195,22,118,143,169,85,47,208,26,118,117,178,18,55,42,167,35,218,63,7,213,59,73,34,34,212,49,158,160,66,76,48,95,49,146,179,183,152,201,30,179,
 177,197,154,254,146,236,110,206,118,146,123,251,244,244,123,149,53,64,58,221,27,10,140,200,18,221,171,181,133,203,137,16,150,134,122,229,165,238,172,198,252,92,86,222,30,249,222,249,196,112,175,87,191,237,40,5,163,137,73,56,132,171,224,96,43,10,173,75,243,244,191,121,17,63,140,202,41,217,210,148,85,107,150,194,141,99,254,20,49,222,88,175,169,3,86,72,48,62,211,52,133,57,30,250,32,103,154,176,13,61,100,93,223,146,99,112,118,136,166,207,1,72,52,101,60,11,118,174,72,219,17,88,239,120,7,28,59,162,102,166,204,130,119,135,158,8,252,217,3,113,106,210,198,162,175,247,212,186,155,154,176,161,213,36,34,212,160,84,88,207,81,143,45,190,140,169,93,203,236,61,119,78,227,118,148,180,16,252,239,252,230,210,40,198,80,203,88,58,136,23,212,114,108,248,187,134,23,203,145,127,17,92,167,185,44,101,58,8,107,8,127,218,7,13,87,6,209,189,136,211,152,144,124,25,223,228,140,99,79,159,200,4,234,183,223,188,219,138,147,50,108,199,83,76,133,120,37,204,12,54,110,180,171,119,89,171,87,135,216,202,52,128,170,
 218,11,66,72,101,233,12,40,68,105,84,25,253,210,212,244,158,235,81,53,160,210,29,109,60,249,163,210,9,245,4,199,189,72,245,241,64,220,168,246,153,15,194,252,198,99,15,84,228,7,72,248,103,158,238,79,38,58,107,20,27,161,77,156,204,72,208,227,81,107,216,169,116,237,209,68,31,63,133,74,159,151,108,171,114,102,137,126,148,156,247,165,156,59,150,248,200,240,113,108,125,30,118,63,56,2,127,197,177,206,227,187,140,215,19,169,15,248,161,226,212,140,39,105,202,133,205,244,86,62,218,49,64,178,248,61,144,135,242,33,102,98,228,118,1,122,243,119,250,17,230,172,75,98,89,249,240,58,78,208,220,27,119,160,217,43,221,84,198,168,199,204,67,154,183,22,198,159,16,32,199,237,91,112,60,245,74,110,178,72,221,186,100,211,131,76,148,3,55,163,125,145,133,28,221,92,85,124,39,26,167,14,151,254,87,47,60,127,40,46,35,94,61,80,68,112,207,223,73,171,169,88,140,132,49,11,124,75,86,161,137,177,128,188,53,217,178,138,22,190,62,115,186,86,136,157,63,134,119,26,62,241,46,122,83,236,127,208,14,18,73,105,138,134,5,5
 6,144,42,235,106,69,127,94,167,37,108,56,73,26,15,209,24,137,72,52,132,141,219,128,5,196,65,36,135,74,244,208,250,83,66,212,165,40,212,200,10,251,137,99,15,188,52,7,215,196,113,157,90,100,50,98,79,44,47,221,197,57,254,59,173,156,165,145,74,40,44,87,115,97,139,18,174,29,94,58,209,151,184,73,188,156,182,201,227,13,157,131,83,255,39,16,183,65,3,3,211,109,54,209,143,40,229,84,235,225,179,190,115,111,71,14,218,131,189,247,151,176,57,177,88,96,193,200,123,105,14,58,181,131,97,89,225,248,164,185,183,184,223,30,218,222,32,168,116,90,1,130,59,88,1,6,131,156,145,67,185,175,139,133,182,6,208,56,62,137,239,68,66,95,149,189,136,27,124,135,127,182,236,151,88,197,197,184,103,128,234,94,114,210,88,199,156,251,140,109,127,179,9,241,10,231,252,191,11,27,29,206,133,22,69,184,12,125,77,85,95,212,232,10,49,60,3,169,148,99,181,212,128,83,145,238,136,146,239,38,11,198,81,244,109,184,174,21,202,44,20,170,150,236,29,113,50,11,196,34,211,193,56,8,62,172,160,221,247,144,236,239,104,142,176,119,41,89,1
 6,83,180,159,202,161,134,180,78,158,80,173,126,169,246,124,214,73,86,117,202,33,72,110,109,127,148,40,89,219,38,161,159,255,210,181,172,103,206,67,181,164,103,147,100,136,245,250,239,57,9,191,128,107,47,149,119,169,138,218,72,162,76,177,33,222,202,66,66,203,73,177,178,210,27,177,226,107,195,178,70,18,195,124,195,96,61,0,137,136,73,168,98,240,146,228,229,95,13,117,154,15,130,70,110,184,121,156,28,166,190,142,69,3,237,89,71,243,30,218,98,30,205,138,189,239,65,54,220,175,177,162,124,79,176,171,40,201,30,28,121,123,240,79,227,215,218,193,76,143,219,50,184,122,38,85,117,35,124,30,26,66,51,24,26,22,241,66,22,252,69,109,255,149,199,121,57,217,40,7,70,198,171,100,58,194,220,38,81,253,143,76,232,43,114,111,240,88,6,156,213,41,240,255,47,197,92,107,7,80,49,223,84,57,202,29,45,23,130,133,187,32,176,192,192,231,53,182,39,53,215,253,227,124,158,232,68,144,62,77,191,65,99,103,102,16,69,250,135,128,155,208,35,200,142,103,122,164,202,66,103,57,232,199,254,32,71,217,156,48,185,13,60,217,230,
 215,151,77,2,150,104,194,64,202,34,52,64,188,40,214,119,14,38,120,242,68,105,124,10,221,139,61,66,215,171,254,253,63,0,213,236,86,223,161,53,100,119,174,13,182,107,110,186,88,86,198,117,225,21,49,161,159,28,119,127,57,16,179,100,197,212,104,166,70,140,1,44,218,252,109,197,237,187,58,158,57,140,59,166,183,215,184,81,158,93,217,192,45,20,157,221,140,146,57,139,20,67,238,91,120,71,52,243,80,96,139,102,168,127,240,133,71,90,137,68,209,43,74,93,136,169,1,7,0,89,249,183,145,107,137,19,25,166,77,121,200,150,73,1,32,158,56,4,204,206,1,161,226,7,225,75,8,103,9,71,26,197,86,125,235,77,1,40,70,59,243,86,60,251,116,68,146,146,121,175,29,17,217,71,145,29,100,8,200,46,82,118,51,170,31,111,121,196,104,88,106,72,74,109,78,63,217,118,59,27,90,254,118,70,20,143,100,188,43,253,164,210,164,145,57,91,69,69,224,35,138,165,15,242,55,173,172,220,146,96,18,147,30,141,210,36,176,243,226,200,23,51,193,147,82,223,28,206,99,175,116,153,35,232,200,38,6,181,112,135,147,116,179,164,185,218,249,236,228,164,
 52,106,95,117,170,110,0,239,71,0,59,212,208,98,21,182,124,175,227,202,60,218,226,179,103,145,92,8,1,142,153,25,195,154,201,210,4,155,244,174,141,27,85,85,205,85,140,176,62,82,11,127,205,220,234,11,22,13,214,5,108,107,10,192,219,108,147,151,57,163,219,98,81,6,89,187,52,154,232,94,207,5,57,35,204,128,134,190,115,163,29,19,203,56,62,63,105,189,185,147,176,202,96,35,144,195,195,192,252,138,117,88,229,203,163,253,187,141,65,150,197,139,245,23,15,223,139,63,189,28,114,217,39,85,22,159,78,28,150,50,31,166,167,104,155,155,184,19,233,179,8,202,164,55,139,241,101,10,182,220,65,31,75,169,120,114,243,251,191,36,233,5,99,237,22,161,232,113,125,86,196,248,18,92,245,152,178,132,212,130,225,218,116,53,214,221,214,122,211,96,182,93,24,4,229,186,115,241,79,84,228,10,219,208,84,123,194,245,109,19,182,249,86,57,41,202,174,189,240,151,216,227,88,126,225,123,51,70,41,250,151,86,80,160,210,196,205,123,169,91,180,107,76,53,205,65,94,224,205,165,222,50,115,41,142,242,166,73,122,138,106,90,21,165,23,
 127,34,147,188,250,35,224,253,33,234,207,2,173,181,60,215,69,142,255,9,20,114,28,176,159,67,81,84,135,187,166,37,223,114,96,113,136,180,53,67,53,104,197,109,85,49,194,120,91,67,0,78,83,213,234,233,132,90,198,58,102,151,164,109,235,194,12,144,35,133,30,235,38,94,80,125,50,96,69,189,246,212,197,55,81,238,249,215,94,129,12,25,161,148,161,23,143,91,171,6,33,189,95,249,229,198,71,219,236,62,10,112,203,32,69,147,135,202,46,119,28,89,167,142,149,213,54,69,177,172,67,83,151,16,115,164,207,19,190,85,214,129,23,88,127,216,8,24,197,27,228,79,22,235,28,84,149,15,193,77,174,3,66,16,153,91,137,231,102,181,132,108,87,168,166,222,249,217,249,29,232,192,82,4,40,75,49,225,156,168,190,154,12,153,121,194,102,200,70,61,126,76,144,26,160,13,137,66,165,103,239,207,105,111,168,169,72,230,35,118,129,220,160,138,241,153,89,32,134,190,255,160,114,39,129,132,189,65,2,49,218,219,142,47,134,211,174,252,97,236,5,9,61,125,222,73,160,0,159,252,134,107,190,25,41,21,106,240,237,157,205,165,241,221,132,149,253
 ,82,80,216,223,21,124,151,112,36,247,45,171,160,24,243,247,163,180,97,91,157,89,90,11,101,100,98,20,60,119,195,237,128,89,83,222,202,172,144,105,175,196,192,58,36,44,155,117,21,229,239,39,167,136,56,233,172,203,1,102,55,148,70,252,199,101,7,170,153,242,219,246,94,82,114,198,29,110,184,200,32,238,221,240,54,195,34,36,152,18,209,132,67,55,51,251,102,69,84,63,244,196,40,179,170,166,178,27,250,6,83,126,153,68,101,47,213,79,36,178,232,173,36,174,155,145,137,133,120,134,185,183,171,3,124,17,161,113,95,236,101,50,131,170,115,255,106,227,0,233,160,181,56,64,67,136,97,86,255,195,166,113,212,170,223,24,156,146,60,142,143,43,121,16,134,239,87,254,162,33,47,143,111,247,166,86,199,41,35,122,199,249,62,91,14,198,128,24,220,199,237,35,169,181,215,185,129,169,255,176,37,121,0,226,237,226,63,102,137,199,152,3,70,184,238,141,92,27,45,180,35,185,255,50,67,253,101,251,245,73,211,145,34,61,56,167,97,8,108,41,38,172,71,121,197,100,229,135,159,171,204,138,192,59,106,18,108,219,223,103,36,87,251,83
 ,153,86,3,35,222,241,123,200,81,59,50,177,24,234,63,221,38,193,105,194,194,172,179,117,126,86,233,120,162,136,39,130,43,70,202,43,25,142,4,27,192,168,22,53,42,0,42,76,155,219,129,193,30,153,157,124,196,204,254,192,248,226,212,135,81,165,67,167,88,83,10,177,242,121,84,80,201,228,178,77,80,213,92,164,44,14,127,97,218,179,111,170,124,193,123,228,86,94,21,246,41,229,113,77,213,112,178,119,207,146,243,16,86,92,71,44,140,129,88,249,155,17,31,121,21,182,233,254,100,134,58,220,170,108,204,57,130,166,109,49,245,135,155,36,75,52,146,126,190,111,6,149,58,111,195,181,126,116,157,229,110,161,55,128,158,200,12,175,109,53,170,38,99,17,74,170,156,40,62,248,177,144,89,164,247,16,47,10,47,186,95,79,178,225,214,226,141,54,175,152,213,159,9,215,148,219,246,232,210,4,118,238,92,85,161,23,35,172,180,207,177,230,190,227,10,131,66,61,86,245,210,173,216,117,211,188,176,204,38,95,198,226,183,187,95,222,138,253,250,47,155,53,55,192,89,56,231,28,206,207,161,87,121,82,236,161,73,250,144,133,44,251,13,52
 ,135,17,75,102,233,192,184,51,252,13,226,112,217,34,33,51,29,82,159,161,41,108,202,249,176,141,17,141,49,72,216,17,158,54,79,87,217,56,68,154,25,218,24,200,76,60,139,140,157,88,202,27,90,237,219,217,18,208,32,161,192,210,127,49,166,142,139,170,120,237,224,174,202,128,195,216,39,129,218,4,105,157,43,200,12,218,114,175,37,50,156,230,235,126,229,134,71,255,176,25,98,200,98,42,112,118,152,226,22,159,120,205,173,88,86,129,154,113,93,172,22,55,143,167,244,37,69,18,8,248,22,228,18,247,130,116,207,48,10,121,198,69,91,44,199,13,234,209,42,59,230,181,127,163,145,94,75,208,122,12,161,24,163,140,112,92,112,58,118,208,151,128,16,50,255,102,20,144,65,54,67,103,57,249,220,191,218,12,63,162,191,150,236,27,104,174,229,157,211,89,78,85,80,82,221,112,144,119,57,247,126,188,234,154,34,20,38,135,40,48,46,3,220,42,67,34,113,10,142,110,41,182,202,138,228,125,180,17,26,205,78,144,62,184,180,232,219,88,81,117,31,110,116,11,187,40,74,130,233,212,77,244,141,63,96,83,87,80,203,91,178,175,224,82,68,36,1
 02,202,95,135,125,25,250,21,189,127,207,119,120,138,33,33,250,36,75,111,37,156,39,123,146,134,239,197,134,118,40,145,172,134,181,166,214,14,254,238,213,108,38,81,18,100,53,181,70,45,6,136,57,109,133,145,150,60,38,178,217,119,18,122,80,177,195,179,190,164,56,236,213,12,244,34,20,161,251,44,95,56,84,202,116,188,204,58,205,92,106,10,11,73,59,42,198,93,94,1,12,255,239,14,238,107,109,143,249,77,145,203,200,220,198,78,61,179,237,240,153,167,42,224,99,213,181,72,191,67,51,216,150,182,3,135,201,104,151,251,104,82,89,194,214,212,128,58,55,250,90,173,36,116,145,191,171,42,156,240,190,104,14,248,63,159,72,194,219,224,34,108,187,0,85,41,108,116,4,46,126,132,24,0,38,78,115,208,240,188,223,57,181,33,212,212,214,44,197,141,99,142,189,215,91,41,81,55,5,141,87,207,196,87,154,59,109,243,47,40,79,155,116,0,38,154,188,57,3,85,171,37,88,185,16,14,102,219,214,6,17,121,45,48,235,6,45,7,23,244,178,170,240,118,90,7,25,52,31,185,216,29,189,207,61,47,85,254,189,163,128,171,4,104,254,189,9,204,23,190,7
 5,36,92,64,219,95,201,164,62,145,239,133,243,197,44,79,0,94,84,104,213,118,177,235,1,126,250,27,54,51,174,42,65,156,100,88,48,140,106,147,2,247,249,77,98,247,99,132,56,226,154,231,88,45,6,86,241,154,186,35,56,75,73,241,243,23,82,213,235,21,226,6,58,171,131,133,174,127,100,66,138,193,238,162,62,60,188,189,169,79,231,210,44,8,161,243,52,218,118,128,19,111,87,36,154,66,60,159,110,20,2,123,155,227,113,142,72,156,216,16,1,72,127,109,23,10,133,228,188,155,100,18,33,40,227,42,187,213,222,197,205,151,65,7,91,67,254,79,41,71,47,114,66,107,194,228,20,230,163,172,96,8,177,205,54,241,180,220,221,107,48,86,119,22,246,80,201,125,83,140,233,76,82,89,31,98,109,239,202,18,171,163,230,96,38,103,105,23,147,18,91,30,115,94,129,244,21,187,74,118,0,145,224,228,234,242,109,177,118,123,158,74,52,249,188,114,252,172,37,58,251,62,98,216,87,28,213,145,35,125,224,21,120,12,115,139,221,159,171,100,6,220,56,210,99,144,37,121,177,179,156,108,234,149,160,137,130,114,55,75,221,184,219,31,241,248,37,147,255,
 184,248,223,41,177,160,98,112,212,97,44,220,106,223,93,139,50,254,1,218,220,178,43,131,148,0,73,86,162,205,55,57,247,95,220,244,122,60,15,80,34,20,64,157,119,81,80,59,2,166,251,126,114,39,1,108,188,28,225,166,187,151,253,101,119,138,253,93,145,151,75,192,164,36,78,85,137,56,41,67,237,67,11,31,193,48,219,45,85,228,231,92,109,236,220,162,232,201,8,136,144,99,246,93,122,1,194,2,103,179,240,61,163,95,115,44,160,164,201,211,41,200,53,199,14,237,18,95,217,122,96,169,81,180,171,141,241,109,2,223,59,76,65,44,227,179,160,180,110,54,75,176,173,50,6,30,200,84,196,159,152,74,165,175,215,17,5,131,216,52,35,21,111,244,205,14,104,194,160,210,138,36,107,54,114,178,171,83,176,13,227,175,152,51,148,109,77,12,65,0,249,117,65,30,144,22,219,229,149,26,156,116,71,21,61,70,136,159,31,85,154,18,203,44,55,14,19,168,144,255,69,249,243,113,196,83,249,244,152,58,76,68,163,221,49,191,235,174,137,5,104,115,100,231,255,155,87,139,98,244,41,124,80,123,228,167,48,158,245,35,247,56,154,55,13,25,169,223,70,16
 4,144,117,82,20,171,225,45,181,108,48,197,84,136,21,70,85,69,124,50,246,2,146,143,36,85,139,95,122,69,132,214,43,194,96,21,231,149,93,3,174,205,89,110,166,94,179,190,251,111,231,225,130,165,197,210,21,142,70,112,134,57,223,55,135,69,38,198,218,18,206,70,78,188,173,192,212,155,192,106,184,134,117,37,179,92,222,65,94,98,168,215,238,156,91,192,67,215,125,20,245,159,147,226,5,65,19,20,75,27,66,6,27,100,69,4,242,70,35,244,155,125,62,243,172,115,128,114,36,83,112,195,207,158,81,153,237,54,65,204,244,252,86,142,250,189,253,151,206,95,30,204,67,127,226,79,234,79,241,147,97,227,236,118,131,102,213,173,198,94,132,232,252,172,15,249,254,16,169,0,246,63,158,6,145,17,77,67,41,235,128,137,222,149,4,98,109,110,3,161,75,216,210,239,150,146,10,75,142,83,127,151,7,79,130,134,54,102,188,231,239,185,173,6,10,189,119,112,24,16,96,53,135,43,26,180,49,228,202,218,201,226,160,253,67,3,233,22,141,81,128,121,189,65,57,173,114,73,126,73,206,124,120,146,165,152,88,168,40,179,209,9,132,245,143,103,24,12
 7,201,20,197,78,117,55,84,215,181,99,215,213,55,3,66,30,82,3,17,45,252,237,9,82,123,50,191,234,69,254,38,173,165,225,79,36,175,212,211,186,215,221,225,235,138,162,151,212,11,125,16,73,62,211,10,82,187,179,175,250,131,240,141,20,197,85,208,110,123,61,3,174,34,48,115,248,145,173,128,21,23,209,0,91,54,154,232,112,92,90,163,120,142,176,249,50,57,78,224,126,118,32,208,228,24,66,51,244,141,227,199,162,130,104,150,196,18,45,146,120,22,8,185,138,14,2,9,211,171,160,49,16,59,56,232,61,6,210,15,142,159,212,96,93,103,71,161,217,19,1,3,200,81,148,242,244,146,179,115,40,22,250,135,44,49,237,252,136,151,102,233,29,53,242,193,206,37,54,98,36,117,232,81,88,111,102,140,244,144,36,29,219,120,47,255,142,12,102,84,104,175,26,149,216,47,154,84,19,221,89,72,17,184,255,157,53,210,149,157,172,23,79,15,47,226,243,189,139,164,5,105,71,240,179,63,231,76,210,41,66,184,88,239,3,217,156,247,208,94,20,254,46,21,71,157,43,116,206,32,22,129,139,202,171,14,126,236,97,82,248,82,35,58,177,252,90,134,240,3,254,1
 46,239,130,225,81,104,198,202,21,54,149,14,166,108,137,122,214,179,251,218,208,210,112,187,65,216,77,205,8,191,247,188,200,250,14,27,46,108,74,48,83,213,101,31,78,138,10,103,209,147,220,195,101,230,105,141,8,166,247,248,25,153,99,33,209,12,136,31,16,126,42,21,2,12,44,65,75,250,239,110,125,54,87,206,86,96,97,73,131,168,196,210,53,216,52,241,202,170,111,76,132,199,76,166,219,246,213,6,123,125,100,62,238,131,103,132,248,97,139,244,222,253,243,23,34,17,39,56,143,138,241,125,55,77,175,30,118,53,208,90,72,127,161,70,31,213,140,130,23,197,81,140,209,37,0,19,217,232,8,27,232,184,17,215,135,6,26,18,27,253,192,113,254,81,18,186,108,126,205,70,145,169,180,3,224,100,251,122,216,211,187,140,200,2,216,185,218,4,89,154,209,179,18,220,206,14,186,236,76,22,96,89,101,253,38,126,161,176,192,255,39,64,31,72,129,50,228,241,149,84,120,229,179,200,218,195,234,170,107,144,151,25,105,207,213,230,138,201,168,92,135,55,47,49,196,231,251,17,94,98,121,162,246,78,108,151,166,32,64,207,98,41,104,78,18,132
 ,176,183,239,36,119,185,9,22,15,102,45,171,228,133,117,227,114,158,115,185,56,89,68,184,219,58,108,33,131,35,176,166,64,135,97,201,203,126,49,174,92,79,197,84,211,167,251,175,108,43,181,80,68,234,161,45,254,148,214,43,41,207,126,117,107,146,222,199,2,123,86,191,193,46,234,7,166,22,82,64,28,62,85,136,115,85,140,82,30,155,3,98,194,253,111,66,59,165,192,78,34,23,180,162,201,234,165,111,203,220,142,15,108,213,32,62,48,190,161,113,162,70,121,130,47,15,209,185,174,91,98,126,146,152,8,60,119,43,55,240,248,150,134,10,80,18,18,74,79,234,231,169,96,60,84,139,22,73,207,164,207,207,207,228,58,30,215,138,255,238,170,72,16,96,66,211,50,164,14,57,132,177,16,96,127,189,239,94,135,136,245,36,184,204,66,39,45,179,45,54,254,218,103,242,159,93,114,98,114,160,108,84,135,219,225,56,153,95,39,79,1,195,24,90,228,141,249,150,211,26,247,68,199,126,98,48,255,136,180,234,55,67,22,11,33,136,239,45,156,98,133,234,77,210,55,220,195,214,124,143,75,87,12,242,1,251,41,156,148,187,245,151,250,172,152,185,15,2
 49,93,111,34,28,60,247,132,239,12,5,124,87,105,88,199,218,5,126,208,183,58,31,175,220,125,82,41,68,236,183,53,81,67,252,141,55,4,103,245,115,207,184,97,251,236,227,28,130,217,81,24,185,14,31,12,72,220,118,29,193,237,29,0,84,116,23,70,238,232,132,51,35,195,158,159,200,106,122,204,254,40,11,202,110,151,62,188,137,17,140,234,182,136,251,248,162,24,85,206,92,77,138,158,16,58,201,226,173,229,193,131,11,194,44,107,241,139,163,66,103,159,18,75,13,99,137,123,156,235,69,31,167,211,106,136,178,73,247,41,174,39,161,193,152,192,152,72,197,233,129,121,198,141,25,98,50,13,77,209,169,64,198,33,49,230,195,6,97,181,228,13,252,199,203,140,91,52,126,242,114,26,74,175,221,58,254,225,251,57,163,25,217,245,73,202,163,108,26,222,99,206,237,104,74,221,5,62,45,64,138,247,247,33,33,131,141,39,203,1,166,59,200,37,242,251,247,145,49,76,104,44,138,191,173,15,73,92,31,219,72,129,192,244,157,9,15,48,206,92,93,157,95,176,101,25,204,169,70,225,79,5,65,129,144,234,74,28,44,234,2,210,172,91,217,159,70,86,186,
 42,14,26,6,175,184,204,6,159,224,193,185,42,52,186,206,65,204,57,82,104,221,77,87,41,63,93,41,11,26,70,2,211,29,231,110,119,81,99,77,57,49,3,204,102,37,42,254,76,249,77,233,218,44,252,239,87,118,240,84,45,121,221,78,222,39,17,89,96,94,42,127,159,75,84,242,70,191,240,62,133,31,99,190,248,79,202,230,194,137,139,9,182,13,3,100,162,129,188,182,184,146,252,240,99,106,157,86,119,168,245,81,136,169,104,64,63,38,24,24,114,14,4,119,1,26,86,41,216,161,178,11,61,52,57,40,241,248,238,114,242,222,6,18,78,132,215,159,232,165,125,104,46,92,252,68,165,31,18,103,235,177,150,119,81,6,36,27,240,65,57,135,216,43,190,62,211,34,48,93,3,190,12,14,198,69,222,7,25,72,125,97,190,47,125,129,254,66,41,55,187,191,35,242,163,238,209,12,224,162,78,48,86,151,9,212,247,240,244,129,131,78,110,169,240,100,92,53,26,180,72,155,26,218,234,51,232,12,160,158,225,86,125,46,203,135,150,220,106,228,207,216,27,221,130,184,56,29,194,11,50,242,88,214,75,178,239,13,190,235,223,226,233,44,74,209,81,54,24,21,107,66,232,189
 ,211,150,250,47,218,118,103,34,62,151,146,219,253,180,192,184,155,211,98,40,135,51,240,65,40,75,176,140,112,88,146,15,49,174,230,174,191,88,3,6,74,212,86,218,208,0,163,62,233,137,145,193,35,10,32,21,129,34,6,52,131,187,228,37,245,184,193,195,24,18,174,39,12,175,118,185,237,57,34,54,100,61,167,4,136,201,236,242,209,146,123,97,253,191,14,180,24,68,123,132,165,35,85,48,245,214,70,254,122,131,207,94,24,4,231,224,151,242,135,218,25,207,1,110,65,225,254,16,40,36,172,3,211,73,131,156,24,23,218,249,32,73,169,41,98,178,173,175,245,37,131,174,21,151,31,22,38,26,88,184,21,37,199,111,178,112,136,89,84,62,5,39,47,235,151,9,207,34,191,245,60,142,240,141,58,28,171,3,180,203,14,182,136,168,151,47,196,248,183,235,63,81,254,179,139,76,50,114,179,28,189,252,159,82,183,74,160,34,175,1,194,29,50,112,109,34,76,107,106,196,135,17,152,107,119,73,179,96,127,126,133,168,154,225,97,163,214,209,255,105,199,222,25,212,162,92,34,23,15,119,127,206,244,232,167,55,221,18,173,208,231,146,175,69,65,82,8,140,2
 33,108,122,78,56,150,89,171,207,248,137,12,222,22,117,128,134,175,224,154,61,123,220,138,8,174,208,243,105,186,120,109,195,224,254,152,190,253,13,163,218,197,1,43,100,35,225,114,189,114,60,5,90,52,179,133,19,131,242,148,108,224,5,109,147,94,204,167,159,239,150,151,14,116,48,191,232,224,99,118,204,169,131,228,88,106,124,69,232,116,236,205,10,13,46,184,63,149,222,12,115,26,124,167,120,108,131,80,167,9,244,104,208,56,214,190,228,18,204,43,79,21,223,104,11,149,21,13,189,64,119,212,117,97,161,94,28,99,47,201,132,29,5,153,251,223,22,190,168,78,89,67,127,129,81,203,149,139,148,109,237,145,69,174,250,134,115,108,118,188,196,33,14,68,235,213,13,240,3,39,238,110,60,59,45,207,39,41,170,211,198,218,250,129,129,71,32,200,229,201,234,231,211,168,41,238,152,72,237,54,34,128,9,29,145,39,77,119,213,68,175,37,23,40,124,44,86,17,64,171,63,183,125,249,145,254,109,1,250,94,141,227,173,95,204,74,152,116,153,36,191,246,42,43,238,159,191,179,127,34,126,215,47,30,91,5,225,96,195,150,124,79,192,178,7
 5,62,113,84,124,45,254,201,191,136,204,214,171,137,54,183,231,213,63,48,182,184,182,106,217,201,146,125,144,25,164,98,245,94,20,147,101,207,190,168,172,250,179,232,71,184,134,230,140,106,170,212,205,200,225,164,220,66,35,44,196,207,25,14,120,139,146,248,230,250,126,120,198,15,194,23,35,1,217,213,167,118,104,95,230,20,30,76,49,34,184,178,197,184,113,28,34,31,210,80,64,133,145,169,51,104,42,187,0,112,196,217,21,48,126,162,35,9,220,244,179,3,172,207,170,84,190,181,42,162,4,223,4,117,6,188,45,24,80,157,185,142,163,224,214,77,122,47,57,164,113,50,73,99,77,18,105,103,141,247,170,14,243,248,160,98,141,133,117,105,187,167,119,167,108,164,189,174,111,5,201,141,68,82,145,23,89,85,157,151,220,191,217,135,240,111,80,102,50,169,228,156,166,118,92,32,13,33,230,24,126,252,9,181,92,47,205,40,88,155,89,199,240,145,157,26,75,54,166,188,249,180,149,93,177,88,25,20,165,111,15,118,118,161,135,205,195,28,60,71,42,109,128,36,127,58,107,54,155,74,44,41,207,197,213,187,136,100,174,194,98,68,246,127,
 135,255,187,155,246,252,253,82,146,45,130,146,28,0,84,247,225,232,77,133,79,218,104,128,146,66,160,238,115,243,147,173,212,34,43,135,54,127,2,133,136,120,124,98,8,59,14,76,167,169,137,67,183,166,163,186,41,203,77,22,250,214,146,225,125,103,155,43,184,25,170,218,226,39,3,185,108,181,90,36,247,230,158,102,185,203,56,102,130,106,142,107,193,99,193,236,19,212,112,237,160,7,114,39,9,228,12,96,184,17,19,33,243,197,141,251,226,224,123,80,156,124,93,143,203,157,133,104,243,58,38,142,250,144,57,243,64,40,170,82,167,181,226,43,132,183,197,39,10,18,191,5,2,215,203,94,68,73,78,80,110,27,251,120,104,122,48,194,176,167,190,139,50,191,67,220,115,176,12,225,31,250,74,119,114,68,247,114,219,225,72,19,247,92,174,215,94,181,191,224,172,171,239,215,130,212,132,52,213,174,207,186,165,7,76,211,117,85,141,82,244,205,8,46,92,218,163,97,117,124,169,195,166,138,251,230,204,194,218,218,206,170,233,164,45,240,117,143,26,6,22,137,230,25,55,112,169,193,54,65,184,247,2,243,128,234,41,214,243,201,187,19,17
 4,89,243,28,236,182,224,158,131,65,73,19,85,180,68,166,201,28,226,121,49,175,178,123,160,187,100,225,187,216,126,214,248,161,160,192,30,10,111,213,224,200,151,145,30,215,211,126,174,105,248,55,25,215,251,135,244,207,204,227,130,52,59,145,193,201,87,14,8,148,81,8,218,80,44,149,50,78,99,189,209,47,215,37,32,216,59,224,196,241,66,233,243,169,67,174,135,131,245,59,175,249,124,90,90,61,130,217,199,81,6,72,34,166,250,224,5,44,66,126,99,248,74,235,160,94,95,194,176,250,172,2,160,163,62,92,189,122,195,254,202,68,57,52,135,49,78,6,82,59,188,77,62,67,192,43,242,239,92,101,59,112,199,147,136,155,83,78,142,151,6,166,141,48,239,252,176,233,194,215,16,224,119,36,221,24,204,119,126,115,62,230,109,53,234,236,33,156,133,189,124,111,114,147,124,32,191,214,158,50,123,233,161,222,202,205,178,123,8,209,244,189,201,90,242,224,97,29,186,254,175,8,150,188,71,247,172,47,17,182,107,88,88,3,196,40,56,100,198,64,45,72,161,183,193,189,222,54,167,50,30,221,252,133,108,28,81,230,102,126,130,228,94,244,231
 ,237,210,9,99,54,18,45,52,169,23,115,55,1,206,23,169,213,26,211,24,234,141,39,35,206,74,161,156,208,204,86,209,28,21,1,84,123,112,191,217,117,195,250,119,42,51,89,143,160,162,52,85,194,33,233,36,187,159,62,194,225,119,222,132,189,96,123,159,31,233,34,167,162,187,234,138,153,240,103,206,24,21,167,104,206,229,13,98,197,187,167,196,52,93,75,120,1,131,184,33,54,58,156,126,132,221,100,118,195,22,176,52,179,192,186,198,162,230,154,45,0,252,73,188,191,89,58,46,232,191,47,172,193,107,240,254,239,70,116,159,98,57,219,46,120,163,49,217,185,75,106,241,251,172,193,223,140,214,109,245,205,76,103,191,84,54,163,27,112,65,126,44,194,77,92,88,37,69,51,56,207,96,182,206,230,63,79,77,131,222,251,205,124,193,243,251,104,28,168,159,175,45,59,50,29,233,83,68,152,158,112,229,43,209,117,97,85,138,149,107,244,75,107,109,209,172,22,6,137,142,17,126,94,240,250,88,202,64,3,153,10,101,97,115,29,204,41,122,141,186,97,193,208,50,172,23,242,13,36,207,159,113,217,231,52,126,149,153,244,47,152,75,73,35,30,19
 6,14,218,46,115,157,198,160,206,225,130,232,89,219,184,54,204,24,189,147,60,255,242,81,174,196,251,144,116,155,254,39,210,232,223,175,182,53,234,65,160,37,247,115,32,150,163,149,28,242,85,204,159,238,112,55,80,235,244,102,36,185,240,234,185,40,219,91,166,163,158,188,81,69,46,126,45,23,112,179,191,147,224,22,7,26,8,12,147,251,76,48,76,196,237,141,17,50,42,73,87,82,135,186,127,108,80,105,60,78,235,197,251,143,251,172,101,153,250,223,255,196,49,160,176,12,20,29,129,38,78,230,31,67,217,252,0,16,141,230,39,173,173,27,108,18,116,53,218,43,218,19,205,116,34,138,170,138,23,101,177,145,95,72,73,245,37,114,131,158,138,89,19,71,198,254,198,114,79,250,51,210,54,221,232,95,244,167,144,47,193,215,51,242,140,233,110,158,126,165,176,149,247,234,51,43,89,185,17,173,75,37,52,72,68,209,190,121,107,82,137,142,176,39,224,5,232,116,85,74,252,234,192,173,114,162,134,187,100,238,37,205,251,17,8,176,159,63,236,97,226,51,90,242,165,182,191,7,69,136,132,188,55,223,106,154,255,130,2,166,165,178,117,108
 ,192,221,251,143,141,153,208,129,95,37,246,5,154,203,175,222,19,104,218,47,248,181,41,199,52,32,30,218,145,133,103,11,38,161,108,156,65,11,149,177,108,153,75,198,61,125,66,217,22,188,14,64,124,145,232,73,87,204,163,31,90,105,253,145,150,63,129,50,248,97,76,193,42,204,106,100,51,151,145,154,121,191,148,35,63,48,219,88,110,198,147,143,18,13,61,243,185,51,255,155,49,15,223,118,118,70,84,129,183,209,104,56,242,116,69,184,20,97,143,197,88,189,217,150,169,158,250,247,30,121,41,34,80,178,238,180,133,140,89,149,18,15,63,253,37,145,98,226,110,2,223,252,88,108,224,219,34,85,4,193,82,73,215,43,145,17,73,152,213,166,195,42,9,123,58,35,221,61,82,77,117,61,95,32,136,40,174,115,49,75,39,103,70,161,157,253,117,14,239,34,137,1,133,216,232,139,68,146,216,145,226,163,255,212,233,185,3,57,17,92,17,100,191,93,229,30,76,145,23,129,81,255,83,57,44,5,3,38,139,127,9,186,152,15,40,116,194,253,218,41,217,249,42,58,166,189,43,40,104,159,12,184,179,204,233,33,52,232,219,50,27,226,191,28,44,162,136,87,11
 0,191,169,149,171,125,16,110,225,168,255,170,183,48,42,42,150,92,128,9,151,234,92,160,59,218,37,253,35,115,95,112,178,243,92,122,202,15,125,253,69,96,207,158,234,150,62,241,249,244,135,45,205,241,13,158,96,110,220,145,125,183,215,254,185,47,148,57,93,102,79,13,101,79,111,78,55,129,107,245,85,18,80,38,160,58,36,10,157,141,199,62,118,221,107,245,97,239,84,77,184,184,245,101,145,8,41,20,15,146,215,243,201,64,140,235,126,98,22,181,197,150,13,166,185,231,54,155,67,51,132,151,132,165,72,126,31,53,182,200,162,164,211,178,186,12,119,169,209,75,112,75,153,23,38,201,122,100,221,158,112,169,77,162,90,55,71,141,240,137,46,96,50,77,238,63,157,224,198,182,243,246,101,167,147,22,137,201,99,106,103,98,64,126,169,161,92,196,134,188,108,208,68,42,63,35,17,16,247,104,30,170,248,243,55,119,114,137,93,253,229,64,70,232,241,29,118,147,58,72,120,143,172,210,200,149,223,156,207,18,90,157,247,200,153,127,194,147,240,209,94,252,157,46,149,254,205,33,80,228,9,234,209,204,90,201,205,23,23,163,227,140,1
 55,63,158,254,147,67,159,71,175,163,219,159,150,167,125,235,252,112,89,222,134,177,46,98,75,140,177,137,106,15,119,171,250,113,68,167,249,123,97,71,99,133,170,147,187,254,252,18,19,187,238,124,177,142,203,68,20,231,25,34,144,159,10,17,3,195,125,61,2,134,119,76,204,182,172,206,75,32,181,138,192,90,5,122,212,188,199,170,159,138,144,199,39,61,187,57,230,91,152,0,213,98,207,108,82,10,215,48,108,4,70,137,194,34,234,71,239,19,237,82,1,248,33,111,173,104,192,179,104,70,55,209,74,230,91,25,203,198,10,130,79,6,62,210,221,30,161,198,58,172,195,64,196,116,133,67,140,100,16,122,206,34,58,58,32,252,132,82,188,168,149,245,28,27,246,10,194,23,92,3,251,87,221,93,237,138,185,184,48,30,144,44,70,133,207,69,15,17,52,103,97,80,235,229,103,221,145,138,173,44,219,46,238,27,138,67,240,57,1,87,12,31,146,128,178,240,59,205,192,229,3,177,208,104,159,158,111,144,252,70,79,218,80,242,64,234,129,136,179,64,243,69,173,139,35,253,62,198,164,159,224,153,85,184,45,3,253,141,237,144,37,215,202,19,24,187,192,
 1,208,23,177,204,79,70,136,206,210,222,44,56,214,100,176,71,94,112,37,25,89,186,172,170,232,12,235,55,238,48,40,199,155,36,168,57,162,128,10,15,242,213,5,238,36,149,6,53,200,75,189,234,183,42,36,61,237,119,88,237,210,14,25,215,121,98,53,203,90,141,14,14,202,191,4,109,108,65,222,234,182,204,129,213,142,254,162,51,158,21,106,202,105,90,241,47,250,208,42,255,203,194,168,46,79,35,142,199,127,239,215,43,1,35,71,25,230,104,196,250,111,223,139,163,100,191,49,99,231,53,154,213,63,148,216,136,54,119,38,152,150,207,63,130,116,68,155,6,212,180,137,234,104,92,146,205,224,210,147,83,62,44,110,113,162,250,172,101,177,94,24,180,247,121,240,218,9,15,75,108,49,167,97,38,133,33,100,203,235,253,45,112,97,195,14,64,50,164,99,181,252,155,241,183,208,14,6,214,5,140,60,49,161,173,55,195,187,200,168,70,254,131,190,117,91,240,163,213,196,197,154,222,52,236,89,103,245,86,34,203,215,195,72,230,91,129,93,64,153,14,146,43,149,146,56,7,57,176,143,141,46,35,199,29,30,237,44,160,185,86,240,164,76,182,226,1
 92,84,17,27,232,146,113,201,139,84,180,65,98,2,134,214,233,150,48,22,116,83,6,156,231,126,108,30,13,76,136,79,102,109,73,144,235,76,223,73,146,26,242,63,119,77,107,111,239,54,23,8,129,166,114,76,45,245,171,87,173,197,116,152,181,60,228,100,211,115,228,230,64,15,246,68,35,234,149,229,84,23,143,179,155,40,116,176,6,36,249,79,119,226,76,228,174,200,248,103,75,57,244,223,136,34,222,27,240,79,39,141,203,30,28,231,32,115,110,171,91,150,205,38,217,29,107,47,189,113,59,57,114,221,187,184,125,149,22,97,18,183,65,146,191,211,97,106,115,173,112,166,40,138,202,19,208,131,26,31,171,117,238,135,17,117,237,79,121,96,121,192,247,241,67,218,193,122,175,164,252,81,121,130,173,111,74,203,139,200,244,247,107,97,43,61,97,236,200,242,228,167,224,142,219,15,119,220,75,133,243,91,50,229,189,103,69,163,136,150,248,255,212,15,240,22,120,78,128,236,13,17,181,29,176,128,107,60,19,229,158,115,28,39,7,142,114,53,172,61,8,174,12,201,217,68,1,174,60,41,167,128,9,110,26,113,41,245,85,228,24,199,140,42,133,9
 9,63,215,150,5,108,61,42,163,225,28,194,174,58,61,213,19,25,251,160,1,91,65,158,6,230,189,251,6,24,134,194,99,45,209,173,79,41,187,94,242,208,37,175,192,45,250,167,129,107,98,114,123,45,231,180,132,127,185,13,38,31,69,64,218,58,238,61,156,223,23,255,1,150,174,176,121,54,37,95,27,101,157,78,212,76,216,133,41,130,139,229,241,99,167,238,116,133,209,238,167,215,7,29,111,184,23,232,60,176,209,178,2,234,189,76,27,31,243,209,176,58,109,61,83,8,137,236,112,1,64,3,155,68,144,81,82,78,11,160,145,235,215,107,18,67,43,8,237,225,107,151,43,191,234,249,50,6,181,233,88,176,81,34,12,62,175,69,242,13,130,62,203,237,88,37,22,116,12,237,161,40,141,140,217,99,249,38,194,198,42,211,159,148,64,78,173,109,58,16,41,50,0,218,185,70,195,161,142,70,237,119,244,113,134,71,233,18,27,230,154,23,5,186,218,236,42,181,79,238,51,25,181,96,9,130,131,205,143,13,197,191,194,241,224,109,163,35,63,223,68,75,57,88,42,209,83,48,153,13,205,111,135,65,39,50,126,184,250,149,224,28,249,144,131,65,232,19,205,23,154,135,
 86,212,119,184,129,154,84,181,161,201,237,118,207,30,15,120,105,80,11,70,186,148,124,4,150,51,187,200,126,233,254,30,173,198,219,74,230,151,86,226,122,150,225,190,144,164,200,92,121,5,128,10,254,210,196,10,94,23,18,172,174,243,23,177,234,224,250,207,67,183,87,220,8,78,225,130,145,181,251,30,91,24,255,205,22,2,88,109,57,126,189,177,169,47,95,106,188,66,198,151,237,52,69,249,250,185,114,108,44,247,75,209,139,201,251,116,33,232,160,189,137,237,94,16,223,190,221,216,165,96,253,143,78,97,89,186,17,20,237,214,224,30,244,26,119,115,171,98,80,158,23,117,128,221,114,9,105,100,166,147,205,184,55,201,149,112,8,32,111,131,240,3,45,178,208,32,203,78,162,123,178,176,37,75,110,106,80,144,247,210,70,239,180,162,2,199,232,151,114,118,217,132,89,62,17,189,163,163,178,66,255,82,9,100,53,81,178,251,206,26,171,71,155,249,140,254,3,202,105,44,219,245,105,79,25,162,40,193,44,97,101,42,81,23,213,38,20,120,242,250,224,68,223,103,71,166,169,91,168,196,57,63,246,121,236,76,74,56,157,250,130,82,213,104
 ,150,70,198,233,39,130,175,250,146,63,248,154,17,236,90,70,214,71,116,110,234,169,27,225,229,32,76,99,71,95,199,129,70,57,138,93,179,60,231,160,158,226,182,35,130,128,11,156,114,147,75,75,47,93,164,236,182,244,98,222,160,174,156,25,189,205,102,180,222,192,241,119,16,36,97,196,189,83,129,125,219,9,105,236,82,123,17,98,161,159,51,104,254,218,253,177,253,185,106,38,68,45,233,235,114,177,108,253,85,172,189,228,55,137,147,147,1,20,12,10,90,196,206,171,198,162,34,216,155,27,232,40,244,159,56,74,206,93,202,41,247,80,76,76,189,150,235,106,78,86,235,25,173,63,32,116,245,124,48,177,22,51,205,86,25,134,109,234,121,13,18,97,115,195,64,123,123,126,22,66,229,31,179,178,25,31,76,98,38,47,98,86,50,160,29,110,195,132,143,104,28,154,197,205,79,132,170,172,250,149,91,59,248,75,56,131,216,114,30,96,55,55,200,77,69,39,185,72,94,35,107,111,130,245,75,172,33,148,4,251,145,117,8,195,178,230,79,225,169,8,166,15,250,236,149,158,74,98,148,56,195,40,132,218,41,198,73,106,243,121,224,233,192,90,172,118,
 212,232,159,103,27,54,167,193,20,14,138,138,187,96,201,232,33,195,199,127,23,133,23,22,113,85,37,125,50,230,121,239,82,40,149,153,241,25,41,146,58,193,18,125,30,5,90,133,32,140,8,191,72,74,22,192,59,9,49,222,182,183,17,2,79,93,223,163,116,40,234,76,31,171,255,163,178,90,167,214,67,14,150,64,201,85,157,137,101,76,120,1,49,153,44,246,39,38,170,105,56,228,132,190,102,231,139,152,159,109,232,72,86,222,226,161,136,120,27,249,74,86,122,35,237,91,41,241,102,20,81,158,172,187,244,216,80,99,23,101,174,156,71,136,183,241,190,131,48,86,56,68,6,177,49,6,29,123,13,119,104,78,210,248,25,25,9,125,241,5,228,161,13,252,47,194,244,80,201,6,125,237,205,12,216,168,235,35,187,49,219,40,17,7,31,9,129,36,182,223,206,2,104,203,188,43,40,162,33,159,80,227,83,18,200,77,185,9,59,249,66,9,241,136,185,62,82,233,162,70,150,61,74,165,216,168,7,254,66,233,14,193,117,213,109,119,243,150,126,18,32,252,98,228,74,84,24,134,215,243,100,59,119,73,152,228,105,91,7,88,169,254,6,114,73,218,104,78,177,255,18,60,169,
 230,169,131,106,233,0,221,173,212,172,2,193,11,220,228,243,209,66,102,18,143,11,143,229,182,249,224,43,123,102,66,215,73,255,39,3,254,25,45,99,39,48,199,87,3,81,101,147,30,139,56,148,129,65,253,14,211,142,155,70,87,213,183,124,30,167,2,136,70,103,250,50,229,217,255,224,201,139,98,197,173,99,66,233,28,95,160,81,64,2,99,237,118,20,138,167,152,58,2,11,87,121,4,63,230,214,125,20,156,53,147,99,253,230,48,121,150,97,150,198,125,163,29,142,236,73,142,64,217,158,203,157,161,186,118,117,242,158,215,228,20,148,20,190,157,156,28,217,126,72,190,221,7,174,64,121,224,119,128,251,138,255,9,142,102,68,86,94,191,208,18,101,90,237,75,63,39,118,155,42,150,47,34,74,239,74,50,43,167,248,221,16,30,46,125,216,90,15,6,204,245,29,231,181,191,182,95,58,129,104,8,54,43,253,205,82,153,73,37,60,212,51,204,8,100,205,110,214,38,89,94,86,122,140,68,222,199,142,192,5,147,83,229,96,64,219,100,159,50,134,156,208,206,12,46,23,50,211,194,5,146,177,91,153,170,238,4,13,93,124,189,136,180,190,152,69,27,87,77,65,11
 8,106,140,103,174,116,219,55,198,179,244,182,223,114,198,82,75,42,198,255,219,88,238,121,65,38,241,91,170,164,62,55,133,64,20,94,147,117,227,252,140,90,242,52,45,199,228,253,166,110,229,85,140,167,148,245,196,124,224,195,248,189,203,242,41,143,84,169,161,165,234,135,213,82,118,132,222,32,116,84,190,122,63,127,209,147,47,178,235,170,205,200,121,60,3,188,152,186,66,86,223,165,240,40,211,194,58,238,34,125,242,147,173,47,76,32,46,244,166,242,106,31,224,107,50,203,174,212,240,2,0,183,176,21,77,201,35,217,51,113,237,236,250,212,43,240,250,130,219,51,14,244,200,37,201,49,97,194,24,46,182,136,202,127,45,68,92,158,232,101,48,255,234,166,97,64,125,14,103,2,159,64,115,118,146,65,187,108,167,95,5,214,13,11,68,6,34,141,217,128,184,94,83,179,110,10,220,40,41,146,232,237,219,67,201,5,196,126,76,71,80,153,31,114,235,109,195,206,138,187,130,22,81,243,20,38,105,69,216,35,51,184,34,122,174,2,2,180,87,118,216,235,97,15,137,84,8,100,120,235,130,138,189,202,44,186,124,26,2,92,33,126,219,90,75,208
 ,37,176,45,117,237,221,199,78,0,169,163,29,63,174,39,55,114,201,185,200,216,192,65,210,105,195,65,182,39,200,176,195,15,117,128,250,224,6,140,137,137,34,20,147,34,152,84,199,152,206,14,135,143,102,91,99,101,98,199,64,192,0,122,188,144,170,17,101,249,95,36,106,182,55,31,47,250,207,47,18,129,105,4,241,154,19,217,91,68,173,142,31,103,20,168,208,227,241,76,72,30,29,230,212,67,23,22,198,142,209,252,8,178,51,36,13,52,215,7,11,239,204,144,100,225,126,134,188,18,47,151,35,138,241,226,127,88,168,146,41,1,80,115,200,100,223,135,246,251,10,136,227,212,59,5,187,145,62,66,163,162,165,97,82,236,113,165,238,252,66,20,236,247,120,76,230,242,103,82,234,106,134,202,148,238,133,208,222,51,168,176,173,233,214,204,19,101,237,45,123,144,125,129,50,6,161,43,0,244,194,114,178,206,176,170,133,76,239,244,159,121,19,229,98,154,170,75,18,176,149,99,133,135,120,101,252,14,119,221,85,69,235,119,68,170,236,226,189,97,200,94,17,6,195,253,174,83,196,74,139,22,149,140,72,30,246,160,235,231,13,19,165,73,130,4
 3,185,93,80,168,231,106,233,182,166,118,59,228,20,218,138,104,75,183,26,246,131,36,122,73,227,134,120,242,2,91,109,16,222,223,19,135,135,77,173,30,78,193,82,39,118,175,46,128,116,254,40,82,6,253,225,118,232,27,84,21,224,11,149,238,82,78,235,90,81,99,201,162,238,31,118,125,91,185,110,159,56,204,130,106,15,26,7,86,183,122,21,239,166,202,48,173,116,221,226,48,190,104,71,236,129,96,56,66,121,134,26,51,246,229,179,90,83,103,178,208,187,171,9,237,1,96,137,243,234,91,164,183,118,186,3,252,130,206,253,193,238,25,67,18,145,189,97,238,51,185,255,236,245,205,13,219,212,9,48,25,52,55,34,4,248,180,232,119,229,7,189,183,225,135,46,73,177,107,249,169,13,12,140,139,116,181,9,31,96,19,160,30,251,26,234,231,196,36,199,83,233,202,61,223,150,148,198,22,14,209,12,65,228,190,24,178,244,165,168,10,96,137,249,251,74,130,216,6,4,181,57,88,39,103,2,128,222,132,247,47,225,139,78,160,53,35,213,173,126,131,161,4,247,1,123,80,2,132,150,226,39,184,21,249,129,16,2,247,61,49,220,45,158,28,215,191,226,180,13
 2,20,225,250,36,191,74,5,166,197,183,16,244,129,238,7,178,200,176,67,55,169,65,84,49,68,124,198,120,21,14,253,21,162,236,26,150,252,66,238,232,84,143,244,36,223,9,128,110,146,250,147,213,199,110,141,150,92,236,38,250,95,51,150,66,82,162,45,229,214,244,212,213,93,3,75,52,0,90,59,0,110,238,47,114,26,42,34,225,227,91,23,211,162,240,54,223,169,90,148,183,62,123,228,122,197,124,248,161,78,40,12,172,149,146,231,46,206,90,248,94,21,139,150,22,127,162,227,120,17,176,58,184,35,219,195,81,236,39,241,200,111,121,33,83,39,161,70,50,246,134,104,88,162,212,237,130,126,88,3,135,104,15,255,149,230,131,40,212,42,94,13,0,59,29,55,168,161,144,133,230,105,157,196,150,27,203,48,102,24,96,79,34,239,76,228,104,85,168,206,98,144,72,45,226,40,28,94,218,120,70,243,54,107,34,178,13,152,109,20,175,97,125,96,144,21,79,177,78,179,78,188,235,17,190,5,75,171,201,109,215,106,166,172,70,199,102,107,68,12,126,15,47,208,217,246,55,61,236,214,166,42,158,204,204,102,168,87,75,236,58,187,244,56,2,192,224,19,192,1
 07,173,38,250,1,167,230,207,132,43,34,179,194,173,20,47,17,147,242,63,48,210,157,189,125,205,241,172,90,252,179,22,107,21,231,91,227,142,175,229,55,63,30,105,134,73,92,217,158,221,207,38,82,10,158,49,54,34,60,41,96,10,227,123,160,4,135,149,171,137,238,146,186,63,75,203,159,237,2,175,44,32,27,245,28,6,51,190,90,29,73,98,70,124,40,170,19,223,57,229,205,165,130,106,249,147,168,146,70,199,245,116,100,221,34,77,230,147,50,205,245,206,57,52,151,175,127,50,108,49,82,195,235,43,233,144,246,136,247,95,196,164,242,208,139,57,229,234,216,49,69,135,34,23,228,90,172,205,142,217,219,246,106,33,110,182,133,232,38,64,222,153,33,187,124,126,61,114,56,95,174,4,65,68,97,86,198,245,117,223,99,166,250,229,192,94,49,240,80,71,136,95,50,51,146,104,247,203,13,162,227,199,220,216,60,41,53,161,179,242,84,241,48,203,110,246,9,91,232,240,180,88,145,155,248,152,92,177,29,27,116,77,52,59,252,151,14,86,8,231,222,208,212,144,76,207,188,125,154,225,165,225,247,38,53,169,206,207,54,96,86,166,84,107,185,250,2
 27,111,163,188,252,150,97,193,232,41,141,55,13,121,35,62,56,114,32,53,195,124,189,254,199,50,253,190,108,117,74,28,227,153,14,102,4,70,42,36,162,196,212,224,112,94,98,12,214,151,145,83,142,127,87,59,190,9,113,232,29,9,194,255,221,100,48,81,0,254,103,191,132,91,172,218,98,193,235,141,218,173,140,216,207,246,4,12,62,105,49,132,231,181,178,213,99,76,142,72,21,76,248,78,179,171,200,51,35,67,161,199,106,228,219,226,233,144,31,101,182,31,96,63,182,154,128,194,214,251,71,130,81,147,14,30,45,242,201,74,103,137,46,94,21,70,184,110,245,86,52,213,151,24,10,93,6,235,92,37,149,16,165,193,226,180,105,121,153,15,9,226,180,208,156,68,173,221,246,214,165,80,218,182,152,50,52,126,196,250,178,67,223,10,12,235,59,222,102,18,217,22,236,133,132,216,62,243,236,127,1,53,130,17,46,58,102,110,1,86,89,74,231,166,77,209,236,28,245,67,155,169,37,111,229,200,108,198,83,121,14,146,176,226,229,107,142,1,177,228,236,0,213,126,36,111,115,165,241,202,230,211,116,188,89,220,222,138,33,120,1,126,123,183,96,224,
 63,166,81,250,151,138,12,132,19,50,229,205,45,239,68,150,23,50,177,237,163,177,206,37,106,207,88,146,51,248,246,121,178,149,215,124,31,72,33,224,42,136,127,36,20,165,246,211,92,86,59,16,75,184,254,209,179,167,17,66,177,191,143,191,87,22,249,81,105,147,103,146,70,217,132,144,105,118,209,121,70,65,79,69,0,178,245,117,170,111,211,81,184,41,230,34,183,35,246,235,122,152,248,3,122,135,134,122,247,174,161,239,112,246,35,204,29,114,30,5,130,129,200,121,146,103,144,176,250,48,191,213,5,8,232,109,165,3,15,191,88,110,202,26,134,199,250,213,109,136,155,36,133,118,193,253,128,251,142,63,179,190,195,219,2,184,184,122,1,188,234,36,23,253,217,70,43,117,53,37,31,227,186,236,46,149,116,93,218,56,26,184,133,191,205,193,4,109,84,117,152,168,175,235,4,184,113,23,239,27,159,117,145,67,98,163,85,21,63,200,31,185,184,114,34,202,237,172,59,149,240,178,121,242,90,166,189,41,31,86,121,146,86,85,185,1,137,209,13,91,41,187,77,174,121,103,65,255,252,48,178,114,239,92,232,215,113,81,170,184,171,5,126,107
 ,56,24,103,247,187,159,16,196,147,232,230,227,194,152,229,11,32,240,200,164,234,205,32,112,67,73,13,242,189,206,44,15,229,5,137,212,96,190,179,172,248,251,250,18,72,142,165,79,65,160,121,141,44,125,78,95,147,58,28,202,121,73,50,142,178,79,110,99,250,23,245,31,171,127,192,231,30,196,7,178,130,179,56,167,216,147,174,134,27,17,57,252,236,165,243,129,235,25,180,5,196,57,96,66,150,218,70,21,130,69,59,137,155,204,246,137,202,70,109,246,151,154,103,119,217,44,54,169,81,208,154,195,172,162,38,5,191,171,121,158,212,193,28,210,81,145,176,121,126,164,0,51,90,180,140,226,33,99,15,51,32,37,47,54,77,138,175,37,97,36,169,179,102,183,191,199,247,63,110,110,188,176,6,226,232,121,137,197,52,61,15,115,50,166,91,229,56,160,102,111,137,216,61,33,177,31,5,163,61,149,227,191,27,150,140,197,27,77,30,139,248,231,23,61,227,176,150,74,41,72,253,220,105,59,125,53,184,224,83,38,28,12,205,50,207,38,128,84,130,54,235,55,101,189,7,74,5,127,220,223,118,150,182,13,169,153,34,117,54,168,34,213,155,50,123,21,2
 34,135,251,195,20,82,228,242,7,254,197,43,241,71,214,208,153,107,224,238,193,4,33,200,30,216,149,2,123,150,136,72,6,85,149,28,184,150,167,127,65,60,5,110,179,30,140,35,72,249,9,69,249,120,84,91,233,55,61,154,250,193,224,195,79,107,54,60,99,158,179,48,46,81,147,56,10,25,114,54,105,117,32,71,28,107,160,229,191,253,48,89,89,215,189,27,241,127,125,194,181,242,179,179,169,59,233,175,11,246,75,171,213,203,50,103,147,203,215,217,178,230,190,200,74,67,135,44,47,196,76,119,8,32,233,106,74,233,253,111,240,23,70,98,80,113,57,31,173,217,248,176,245,167,100,22,113,91,15,171,176,9,85,38,247,186,125,215,94,252,215,42,126,75,13,35,139,133,185,90,31,48,194,62,246,70,178,58,183,178,204,226,10,158,10,191,8,127,135,130,53,73,71,251,137,15,12,27,216,150,178,104,164,156,12,65,12,7,230,230,66,41,161,47,219,170,9,132,3,14,199,75,229,175,108,255,196,140,28,215,68,129,184,240,32,144,213,88,35,223,251,180,77,120,97,127,31,32,33,110,219,251,216,190,39,7,164,238,131,85,205,60,23,117,136,149,215,99,23,12
 2,226,164,43,245,164,176,253,101,48,43,183,196,130,128,34,236,85,97,143,33,206,133,16,176,238,46,229,168,54,31,194,155,25,49,10,98,52,127,250,25,136,201,205,87,102,232,52,17,40,14,91,226,99,20,232,64,172,243,130,191,233,81,64,83,179,199,214,6,73,163,17,162,107,108,254,59,161,61,185,243,89,48,32,214,245,222,140,152,87,89,52,41,205,157,214,107,183,73,102,205,164,62,24,40,6,71,119,24,207,225,109,110,239,96,92,168,191,236,90,212,31,118,216,236,136,141,0,205,24,157,85,66,185,249,40,55,144,97,115,3,43,194,45,109,112,100,228,36,168,67,58,118,35,209,209,230,227,105,202,185,47,156,216,106,148,220,96,71,193,155,158,253,239,1,38,89,145,201,11,53,113,92,56,171,187,124,58,33,20,104,230,172,202,70,139,113,174,146,253,109,41,196,92,210,180,122,122,2,5,110,78,2,5,93,252,103,116,6,254,225,227,203,220,31,108,145,41,103,102,113,138,235,150,79,28,189,105,79,112,14,114,33,235,3,195,118,19,239,75,132,66,161,117,41,156,25,84,218,33,11,163,166,222,221,181,254,149,240,129,3,76,57,41,156,26,204,250,2
 7,134,82,129,95,237,81,110,121,152,165,182,131,243,13,237,182,52,76,230,11,69,136,177,20,15,231,121,223,197,81,11,102,53,164,173,181,165,35,3,249,230,198,69,209,35,102,12,119,7,62,164,151,254,83,5,240,252,43,151,15,80,8,92,20,68,77,27,18,202,251,240,171,179,66,233,2,183,53,238,169,58,40,239,130,237,219,124,115,241,245,9,150,193,218,19,119,26,13,179,194,48,68,67,140,155,219,218,65,149,98,149,216,87,72,4,7,167,179,85,212,24,158,68,227,15,74,237,51,42,13,164,6,239,250,113,190,32,40,188,20,230,208,197,255,145,85,236,42,21,200,98,144,51,198,31,106,186,204,176,237,161,169,82,220,83,219,172,103,41,139,250,7,156,94,194,141,28,112,67,239,40,46,159,106,94,156,61,170,32,92,141,233,195,213,247,255,25,117,188,205,245,135,241,90,161,40,230,27,102,231,37,55,141,238,18,247,64,207,218,10,118,82,122,41,223,239,187,117,125,113,32,200,223,84,34,197,166,8,156,140,65,107,107,7,13,119,194,74,168,52,21,146,76,189,174,87,65,115,51,1,18,100,242,130,253,156,18,109,73,112,17,49,64,78,114,95,207,59,165,
 189,193,100,83,53,168,165,47,27,6,157,29,184,181,209,227,66,2,88,70,202,73,30,90,30,17,29,15,246,174,72,7,189,106,180,161,153,160,51,53,115,240,14,17,207,24,239,31,248,71,33,9,15,227,247,255,160,201,4,85,42,131,180,235,147,169,240,132,73,58,255,53,107,135,83,87,25,71,192,105,170,155,30,112,8,69,200,98,249,173,174,2,210,26,219,252,232,168,133,98,255,228,209,111,75,204,204,156,183,104,234,175,126,138,10,106,227,136,182,253,131,228,152,107,95,43,16,36,36,206,102,147,58,132,166,255,193,28,208,9,170,87,68,66,208,6,60,53,166,217,155,88,56,137,15,215,184,255,65,178,97,174,109,246,251,71,63,165,179,76,8,87,203,141,229,159,143,158,220,24,195,72,253,49,90,246,53,155,15,48,74,173,58,165,29,31,26,18,96,249,241,151,167,19,233,247,116,63,130,116,186,22,162,251,7,13,1,129,64,128,247,0,85,79,212,153,96,119,254,134,85,103,185,99,255,218,8,45,77,239,97,7,223,18,37,80,63,145,124,97,196,213,27,112,12,191,39,50,12,73,204,172,117,51,113,173,22,166,242,10,246,221,154,12,163,162,202,159,97,192,17,1
 08,39,200,17,109,140,30,79,40,11,50,30,235,90,179,198,64,57,159,62,238,23,17,47,15,127,179,252,168,35,32,27,150,188,100,51,139,30,71,62,228,114,99,83,93,166,170,46,74,106,27,105,29,14,250,208,146,48,215,133,232,68,180,226,42,40,103,47,170,91,250,149,244,130,190,76,56,176,16,207,5,196,81,18,53,57,200,206,254,197,146,187,160,122,5,111,44,75,239,151,84,66,62,90,109,51,254,16,226,63,81,210,125,4,4,60,149,55,130,129,235,207,225,113,126,148,187,65,145,185,243,131,73,128,130,188,119,188,216,93,84,197,22,116,46,138,228,69,213,7,123,193,19,94,210,26,138,119,204,240,142,72,111,184,170,22,220,32,248,141,128,201,250,248,232,113,58,211,121,54,209,50,146,44,147,126,114,105,30,4,200,74,35,197,44,241,184,131,240,12,208,176,78,176,227,186,133,238,112,131,1,223,120,171,156,165,112,249,170,152,205,186,118,44,180,221,46,217,231,121,11,121,34,170,228,105,94,112,14,156,205,176,174,174,80,170,132,122,152,144,198,32,56,21,84,181,255,237,10,210,246,194,62,247,252,48,121,162,37,190,168,94,80,187,227,
 167,56,119,56,165,137,11,33,190,79,229,17,2,10,98,108,78,175,209,52,74,254,200,215,166,145,83,197,77,139,88,167,142,197,48,130,157,39,213,254,183,202,70,1,244,92,103,192,0,170,154,98,80,58,35,30,14,254,212,255,44,45,128,209,106,187,154,141,183,48,216,199,19,51,191,234,92,34,183,145,33,192,36,43,223,86,28,105,98,140,116,121,123,198,32,209,78,137,106,217,214,44,250,57,17,22,163,157,123,108,139,120,236,224,124,12,32,237,252,10,96,14,192,167,49,244,170,44,208,241,67,33,244,197,154,97,25,225,160,109,181,57,187,70,93,147,209,22,254,109,62,155,124,11,151,155,76,161,60,143,114,188,20,10,153,133,72,194,211,199,106,252,135,155,188,44,171,4,212,117,220,1,30,51,125,71,23,107,167,52,85,145,243,54,86,203,104,148,188,250,219,120,21,75,4,162,12,239,7,131,74,228,10,63,98,152,254,81,140,145,137,71,28,179,198,43,156,34,164,175,128,76,186,15,130,166,238,118,240,46,59,1,249,151,158,102,6,58,213,159,232,187,168,3,194,13,219,94,147,252,50,20,182,83,144,138,109,24,218,99,30,56,36,109,245,237,152,35
 ,82,80,239,48,17,198,243,78,77,116,153,110,13,89,224,182,173,115,123,255,172,61,75,43,255,35,28,225,61,121,194,202,195,162,26,175,166,116,248,126,121,84,70,111,194,140,247,104,188,147,140,117,181,150,211,147,37,162,36,232,97,26,128,116,5,117,93,168,164,11,185,185,37,6,33,5,25,79,137,19,55,211,27,223,13,133,200,243,204,85,5,34,248,150,2,115,48,255,79,213,78,15,157,56,9,179,181,93,200,181,23,219,131,173,4,154,115,255,173,55,105,28,41,149,212,83,136,139,177,132,33,175,109,166,25,99,199,209,81,65,189,179,20,57,132,157,73,167,168,66,23,180,241,253,124,199,156,7,249,132,40,106,104,93,175,8,253,57,128,243,59,129,103,88,86,162,160,123,50,47,48,67,117,220,89,181,37,190,197,69,36,56,69,201,167,117,126,80,146,112,240,20,146,118,75,74,84,115,229,16,8,5,62,177,45,188,49,3,105,202,97,209,82,138,53,238,107,63,5,8,135,105,14,4,45,237,227,76,99,155,106,173,92,220,125,208,204,111,221,166,113,118,8,51,77,253,15,137,92,58,17,140,95,39,170,163,120,121,221,209,47,100,190,175,65,57,91,211,97,200,1
 37,206,72,34,177,21,224,13,68,55,162,110,228,128,194,99,17,110,206,39,246,122,192,247,7,247,59,185,119,237,164,254,43,238,189,72,132,175,86,50,171,175,190,203,59,82,86,4,81,138,35,9,68,67,16,117,98,223,70,55,253,193,143,135,247,130,87,241,22,73,1,125,196,172,215,32,35,69,17,229,85,10,203,85,249,145,64,250,254,220,138,61,69,13,40,210,125,242,17,129,94,199,0,236,198,40,146,35,19,157,25,36,63,135,180,115,140,218,18,227,202,214,38,55,48,196,166,164,68,118,230,85,215,109,226,199,138,158,245,109,239,61,160,147,217,61,240,129,103,163,218,255,75,202,3,142,133,182,87,154,201,117,84,74,36,160,249,57,21,225,234,31,135,88,173,225,204,9,94,158,28,63,143,221,153,34,187,172,217,68,22,241,219,49,108,33,164,6,16,44,234,218,239,240,120,120,159,91,54,165,134,231,3,101,158,201,192,49,148,159,224,178,249,189,250,242,249,39,121,154,92,202,97,226,116,56,30,207,74,141,30,78,58,250,110,249,126,116,147,224,243,26,4,228,199,60,249,84,197,164,235,254,152,146,25,108,179,31,30,184,58,78,144,163,127,238,1
 18,27,10,83,44,124,119,72,188,159,124,248,22,24,7,37,21,169,81,140,145,93,186,52,246,176,101,175,5,186,184,189,124,56,138,190,134,146,85,86,221,54,32,24,29,244,217,62,254,55,247,88,127,246,210,33,226,59,142,0,251,207,186,181,226,16,89,202,251,127,129,237,10,94,241,36,14,25,122,151,48,130,80,67,94,80,59,72,88,113,226,245,145,0,205,192,106,81,54,116,213,104,21,4,62,79,47,153,251,253,161,249,6,196,32,95,247,231,66,200,213,19,131,163,23,138,48,23,19,236,205,126,46,150,36,115,223,212,253,135,126,173,164,238,242,164,161,48,218,37,176,62,224,35,141,190,23,131,69,5,201,80,169,173,212,38,160,222,57,171,249,215,251,4,208,188,162,104,159,182,229,179,138,176,189,6,22,141,59,243,50,130,203,78,64,169,149,129,25,20,46,192,246,225,124,148,36,214,17,86,208,67,147,231,176,135,20,150,66,1,184,235,85,184,157,155,121,65,41,90,136,78,178,91,205,247,10,198,223,221,30,24,63,247,75,127,54,244,12,173,177,70,145,164,17,206,34,65,91,40,93,154,30,78,118,36,70,118,4,141,204,63,194,165,245,48,91,224,117,1
 41,148,138,142,224,127,231,252,98,109,197,11,62,117,151,80,1,89,19,94,120,227,186,254,191,212,14,96,164,223,22,112,235,19,136,135,174,139,228,87,48,55,136,43,68,99,151,80,183,186,236,75,81,150,150,120,191,180,78,255,10,110,165,183,61,213,85,158,79,121,236,5,3,249,198,213,19,199,138,175,147,133,19,170,76,74,87,243,24,115,233,37,102,213,40,39,193,196,246,131,122,196,204,189,99,213,91,24,24,243,19,64,219,73,46,10,109,200,56,116,235,28,147,71,243,176,48,233,130,151,83,207,7,189,126,15,243,211,153,141,172,248,232,48,109,163,13,136,17,146,56,126,4,60,247,233,103,68,210,105,226,80,112,77,109,12,162,83,210,15,54,14,209,31,128,193,15,63,82,16,97,183,62,118,16,50,115,131,154,75,12,95,23,171,62,230,252,173,3,159,244,103,208,33,99,150,114,95,149,148,184,215,54,162,35,22,55,232,228,205,46,241,98,42,183,133,22,223,231,115,153,129,2,186,196,65,120,37,110,77,251,68,58,101,135,177,37,45,242,159,66,171,95,176,212,215,34,107,243,250,177,242,132,244,96,209,172,93,248,64,33,195,47,187,96,46,163,
 234,50,46,56,3,201,176,252,255,158,66,34,31,204,137,143,112,227,47,198,89,246,88,157,105,162,183,63,66,100,56,165,215,44,173,42,236,92,29,227,11,204,142,126,216,79,36,92,76,82,12,250,219,50,57,200,176,192,52,59,13,91,235,198,142,29,92,169,159,44,71,223,219,137,156,248,0,223,27,82,140,199,232,255,99,225,166,148,128,24,34,229,4,10,94,240,214,248,81,123,98,251,40,250,123,172,223,91,73,74,233,76,13,141,166,143,191,249,34,88,71,196,170,117,36,96,31,127,196,164,122,229,221,136,41,217,47,242,162,217,238,244,142,63,51,121,100,202,191,219,9,127,134,124,3,138,178,195,207,79,243,184,204,193,166,215,91,151,182,37,190,97,47,25,13,111,235,154,54,59,211,11,213,176,34,39,244,22,32,54,227,175,222,234,105,47,64,181,174,104,145,200,189,28,121,203,156,48,24,21,48,190,70,21,192,159,164,70,101,52,166,74,75,16,245,88,244,113,110,149,138,3,40,43,163,170,221,223,254,101,117,243,238,235,170,153,107,246,86,56,148,164,153,126,45,238,215,47,32,55,37,46,133,51,9,148,101,90,152,216,251,22,210,65,84,7,71,8
 4,161,188,192,187,199,29,32,56,201,21,252,51,213,220,140,2,180,24,35,12,82,45,107,112,216,37,179,215,113,107,16,116,134,30,194,141,231,155,76,46,87,37,123,171,217,232,140,131,194,82,61,131,65,237,136,144,246,204,32,48,0,138,178,192,164,128,7,216,229,102,78,70,45,220,184,228,173,96,119,119,179,250,218,94,152,96,195,45,73,46,71,59,239,255,199,214,91,118,79,173,202,198,20,197,121,246,64,150,36,235,172,99,65,246,249,126,188,133,250,225,217,37,188,153,93,47,122,213,27,186,27,212,238,146,245,229,77,32,188,48,29,181,80,134,75,200,109,199,32,90,201,140,213,115,93,16,232,209,180,132,36,103,211,102,10,111,150,242,225,53,44,151,231,53,129,155,198,21,156,133,217,176,23,147,139,173,140,23,117,211,46,58,246,178,71,159,185,31,30,220,212,245,129,95,103,127,62,111,65,69,9,132,58,8,237,166,0,211,241,124,205,185,63,29,147,170,213,255,169,99,2,90,68,229,92,35,254,251,182,207,212,241,240,199,0,95,97,18,137,206,54,248,126,169,25,78,101,161,189,6,106,150,106,116,1,129,229,179,120,9,242,117,123,219
 ,179,77,179,255,249,136,56,49,17,25,40,241,214,205,103,10,86,162,143,83,183,253,192,160,203,81,94,254,153,187,44,127,232,124,95,110,145,71,136,201,105,246,7,26,157,234,191,30,10,108,165,82,83,124,185,34,212,236,5,245,98,20,123,12,189,122,9,47,36,143,33,24,130,199,72,146,104,145,229,131,74,222,193,228,57,132,81,34,194,46,97,68,148,212,70,88,118,245,136,137,234,34,212,27,134,108,81,248,66,107,87,90,39,6,171,236,118,46,198,206,232,172,145,195,20,123,32,86,93,30,94,249,32,20,150,111,153,197,30,66,119,130,154,44,29,108,208,123,195,177,20,22,66,204,173,37,218,184,246,116,115,245,169,55,100,201,96,48,244,31,164,25,209,199,50,162,182,151,91,160,30,68,43,10,80,35,241,16,109,199,243,17,29,231,200,102,184,153,10,149,64,164,255,173,122,30,246,205,217,228,81,204,239,207,75,42,147,127,211,33,133,179,169,214,40,86,112,175,252,213,145,57,221,50,57,219,149,18,113,229,160,205,111,174,94,203,194,144,137,173,178,146,68,246,96,154,10,141,20,130,159,73,69,121,140,100,126,18,186,254,237,42,118,152
 ,124,172,111,170,156,213,45,56,18,147,243,103,221,117,56,45,58,27,160,167,225,136,162,251,140,158,74,91,251,28,241,37,141,175,201,164,212,83,216,65,163,122,187,106,183,111,37,43,23,254,232,94,173,109,175,96,85,239,210,201,99,72,190,15,138,175,238,239,211,217,180,61,255,245,136,21,175,198,61,111,169,154,136,37,145,154,196,73,68,134,1,179,166,82,198,136,70,115,205,183,215,31,48,160,58,19,227,232,176,10,39,204,51,79,78,52,29,7,95,26,177,195,229,193,247,230,205,172,186,134,142,52,39,247,5,62,68,207,204,188,224,162,73,104,100,11,86,176,185,120,13,56,88,152,71,141,171,2,27,67,83,76,115,55,152,167,194,150,187,57,171,221,28,58,19,44,99,197,50,203,234,115,251,254,126,249,31,110,254,184,73,251,220,113,62,1,134,92,77,46,56,246,33,109,159,193,194,109,104,119,210,231,241,146,39,186,185,178,79,45,253,247,139,86,149,59,85,84,35,118,72,198,165,42,12,126,159,252,115,72,64,86,51,169,216,46,102,179,254,95,72,189,38,55,19,176,149,242,70,73,145,235,62,56,247,144,17,219,64,37,221,195,210,23,193,1
 09,91,102,162,58,253,19,175,18,139,134,247,250,140,172,237,25,109,34,3,43,216,233,133,238,162,90,13,141,163,223,218,75,86,150,198,88,229,47,150,79,141,218,132,96,34,112,17,47,241,178,239,97,105,239,149,27,79,117,189,159,235,6,240,184,129,146,38,154,22,201,126,140,240,138,31,103,29,14,170,201,128,87,131,253,88,189,140,156,250,78,92,90,120,213,53,59,225,144,8,9,35,139,217,73,115,4,13,101,40,52,244,177,237,66,160,72,119,233,9,137,80,252,191,43,11,155,166,212,53,190,213,28,229,5,134,188,141,120,128,164,247,106,78,191,4,241,72,24,4,24,86,54,209,210,239,44,34,197,118,199,58,248,147,179,243,100,7,123,130,249,2,214,38,218,89,222,229,152,147,84,42,151,208,160,174,125,98,55,243,172,13,14,154,61,202,45,129,112,20,9,178,83,6,12,54,176,185,226,9,77,130,181,224,111,154,11,46,16,20,224,251,14,134,33,76,45,39,51,12,203,64,108,237,191,46,45,51,110,101,75,61,16,98,64,153,236,84,27,109,16,118,24,152,186,51,213,31,251,113,118,80,93,0,29,41,106,100,33,237,55,131,98,22,83,228,91,242,44,175,119,20
 4,165,38,147,11,182,215,207,213,147,101,249,221,17,197,82,162,176,24,216,60,155,138,29,142,191,24,147,113,178,48,84,10,177,231,50,206,21,74,255,1,249,150,236,96,223,10,9,238,101,113,175,97,71,61,168,134,176,164,147,45,52,53,187,48,79,233,4,233,50,88,63,213,235,237,184,156,151,81,166,58,18,110,82,25,40,231,144,238,22,14,173,236,30,47,219,58,11,225,46,104,232,12,216,59,74,137,121,248,20,143,49,101,181,186,31,87,26,158,75,160,228,195,195,94,75,76,81,57,189,167,99,114,68,50,132,11,230,13,80,93,224,87,142,129,180,251,34,210,248,21,16,142,233,129,168,3,68,57,47,249,67,71,14,16,150,62,142,62,189,223,247,96,188,220,102,233,102,114,144,78,191,11,7,199,199,162,204,210,17,107,114,245,64,219,122,238,204,195,111,197,221,209,109,189,108,235,253,232,168,194,12,222,107,36,63,142,42,137,156,79,118,205,211,188,171,37,253,117,194,200,234,89,248,89,199,169,41,217,180,19,190,86,138,173,125,125,214,165,154,141,24,35,23,81,64,67,83,22,36,195,9,179,4,161,111,64,80,89,173,90,43,98,210,206,238,21,102
 ,193,34,243,182,18,187,248,187,64,254,190,33,54,104,179,209,49,92,187,224,234,48,112,118,177,163,253,93,95,161,219,76,203,11,42,199,167,141,141,249,184,219,5,87,159,130,213,236,133,138,153,195,130,209,248,198,250,33,235,23,216,201,173,254,144,225,105,210,239,183,61,44,147,115,251,8,107,7,52,252,10,30,242,57,139,179,41,196,238,233,86,207,50,29,240,214,34,6,94,106,193,254,78,112,135,92,243,110,67,87,51,104,206,92,130,120,82,124,251,159,31,69,124,78,129,217,143,148,77,123,126,170,170,86,121,100,26,112,250,242,34,164,241,8,136,253,223,226,64,19,136,45,5,150,208,55,72,141,205,71,161,188,217,12,229,203,7,191,8,185,96,12,2,54,5,4,209,203,68,174,61,127,177,22,135,174,179,158,73,27,160,114,6,236,104,55,215,164,70,62,88,70,28,155,132,52,145,74,187,155,218,81,157,185,99,162,175,231,186,205,93,72,185,179,156,70,17,66,84,42,165,40,0,87,149,36,219,229,141,138,187,134,152,125,251,131,112,122,1,228,31,83,161,183,251,7,61,211,149,89,89,146,158,255,76,206,223,117,53,192,22,117,140,28,200,163,
 168,175,192,254,194,253,242,33,177,64,202,243,44,64,202,231,28,206,127,36,148,37,109,227,230,4,244,52,5,57,173,152,154,93,185,250,8,234,187,175,52,137,30,13,59,32,36,4,190,48,147,251,188,215,222,158,229,120,41,232,217,241,173,184,149,230,54,229,149,69,125,51,185,224,232,144,66,247,77,70,23,191,251,238,81,118,168,96,180,169,196,60,209,125,106,19,220,80,218,126,35,40,141,128,61,79,166,9,160,255,91,17,70,147,45,90,120,138,75,228,65,157,159,92,95,57,210,51,228,232,103,154,16,73,162,171,254,225,115,102,21,176,192,146,225,75,248,179,76,231,101,19,183,115,224,103,247,231,2,172,73,57,214,143,149,79,179,64,226,86,60,126,244,227,91,183,72,252,194,85,71,90,168,243,103,251,148,217,25,222,104,135,10,186,230,210,215,69,203,234,165,61,251,42,48,242,134,140,57,16,143,247,158,17,53,205,131,108,135,180,89,194,40,64,174,229,4,181,213,56,89,82,200,221,224,255,124,200,37,64,0,122,33,155,76,144,20,215,50,182,90,213,42,223,55,132,146,101,183,33,150,135,234,141,60,154,213,112,53,127,131,170,97,106,
 19,250,232,67,96,32,166,18,30,90,48,21,229,123,233,219,76,182,84,136,78,102,100,191,176,235,191,77,192,123,50,57,134,61,238,129,207,235,223,38,31,208,12,151,197,209,116,13,231,239,140,150,205,26,104,26,30,140,121,25,160,201,155,107,98,58,229,177,255,48,34,197,74,217,90,135,91,194,106,119,22,182,173,215,211,36,217,195,114,213,105,56,120,113,50,85,45,125,166,141,207,208,248,69,14,20,12,97,148,76,169,183,41,86,189,201,82,60,19,117,105,23,171,122,177,213,162,143,155,162,203,244,29,5,192,192,19,169,157,79,58,125,235,113,254,71,99,90,150,154,172,110,223,151,174,210,50,98,140,83,211,165,96,8,178,56,171,137,160,77,191,76,113,74,226,47,202,95,117,160,185,157,209,132,240,23,53,203,175,242,183,83,52,92,129,147,68,22,239,4,31,86,145,96,202,19,72,67,53,34,103,163,233,36,6,10,81,23,35,120,123,225,132,214,107,82,209,242,75,69,133,159,231,211,240,43,231,95,142,211,190,196,107,78,246,55,200,234,50,136,205,44,243,208,218,199,143,93,121,198,53,9,142,212,51,138,230,94,42,203,161,155,69,4,217,24
 0,171,234,11,222,173,165,218,49,76,155,30,179,187,7,50,236,8,3,244,199,236,62,254,244,150,255,26,125,24,28,40,74,246,87,152,53,248,14,70,124,219,79,50,195,255,57,3,103,134,50,105,173,234,152,5,53,116,203,205,98,71,133,195,23,32,104,209,41,0,13,233,43,246,79,242,221,198,70,148,86,213,32,196,150,7,34,145,29,232,192,213,192,111,8,64,76,151,180,30,213,36,132,151,71,237,15,60,33,143,74,76,102,210,141,232,207,201,159,239,146,165,86,214,192,195,5,29,232,198,121,244,0,106,128,125,229,103,44,100,13,80,235,101,150,210,56,143,150,244,161,102,234,58,224,107,169,16,132,25,100,141,11,34,112,151,132,88,111,197,195,86,113,19,80,92,114,138,122,248,210,108,160,218,245,17,56,218,121,130,232,180,75,90,61,68,118,31,37,43,243,190,246,125,230,60,144,141,122,158,206,21,95,218,93,114,48,232,161,201,119,76,173,65,129,126,103,167,4,216,150,120,130,57,152,4,96,26,228,220,200,64,21,133,66,224,232,21,83,209,44,53,181,188,50,9,142,6,218,118,36,66,107,59,20,181,27,84,237,156,134,208,60,161,0,61,178,252,76,
 125,209,50,150,50,228,154,171,119,151,120,94,227,167,73,223,27,39,243,173,46,248,73,61,100,76,28,167,180,75,202,196,46,19,195,1,89,159,107,112,39,12,208,5,29,152,157,84,74,208,47,228,251,241,141,94,230,222,157,165,66,213,72,61,127,154,165,140,64,167,113,83,50,35,142,168,202,237,245,217,72,47,49,227,52,147,186,199,227,177,89,32,41,141,253,186,14,79,33,235,33,245,202,126,175,196,186,223,248,115,29,204,14,51,60,107,183,160,6,199,36,118,46,20,162,238,241,82,98,72,191,149,205,23,97,251,213,33,5,42,171,179,58,12,147,232,201,104,100,248,77,145,148,126,179,2,208,240,120,234,68,197,53,33,56,171,111,181,107,220,167,185,173,48,228,113,216,197,179,231,82,144,68,46,205,27,218,195,62,178,151,98,100,119,3,80,76,186,104,50,139,220,33,205,216,153,34,182,3,134,184,191,168,250,80,19,21,75,47,94,2,182,75,228,164,220,187,194,113,136,7,22,35,81,46,106,178,69,221,25,29,35,62,98,64,245,50,16,118,30,207,135,126,3,6,56,93,76,233,91,152,158,164,96,74,228,38,244,209,10,105,226,147,249,196,9,65,193,138,
 127,83,104,223,234,2,183,57,150,245,59,166,176,29,90,64,147,167,30,91,33,145,209,110,141,51,43,71,119,173,76,65,26,222,30,76,136,45,112,22,161,154,253,166,160,73,228,8,191,244,115,89,212,171,170,119,168,207,82,122,218,120,210,181,129,71,139,220,162,228,245,32,167,40,231,154,86,207,26,100,177,61,236,2,226,45,1,125,203,152,191,92,149,240,86,163,32,102,65,162,246,141,10,129,90,238,27,20,89,131,122,46,150,170,255,49,242,186,177,44,171,169,3,176,87,191,110,139,209,252,202,11,1,68,252,220,106,241,92,23,129,40,0,33,150,88,136,88,21,4,244,120,176,76,161,99,101,132,77,128,91,95,165,245,26,114,219,46,118,174,247,183,113,5,83,75,62,81,162,138,57,240,132,185,249,244,227,240,132,50,206,4,9,182,90,224,136,165,254,117,9,111,224,19,228,21,190,242,166,46,167,221,8,6,134,138,200,75,153,56,132,193,181,102,1,234,203,139,144,206,232,9,190,26,228,137,54,254,71,78,230,147,149,97,127,106,190,237,142,218,247,32,79,226,106,188,9,196,29,7,216,203,150,206,210,153,57,115,190,218,47,145,73,184,15,103,63,
 20,205,233,155,217,183,191,207,26,100,36,191,116,232,21,92,170,75,126,26,147,38,201,117,228,189,53,167,135,71,8,37,221,52,178,108,185,174,203,42,180,83,5,4,32,142,42,55,66,167,54,69,63,110,185,199,140,99,143,79,131,181,7,7,70,223,3,70,98,101,23,57,126,167,226,127,144,170,36,8,133,71,63,55,197,180,223,11,65,44,78,10,51,19,177,79,7,177,29,146,176,49,96,107,98,47,186,25,0,153,104,120,59,24,179,146,176,179,88,222,183,161,203,143,54,247,238,118,238,47,239,81,119,172,89,17,169,245,50,240,118,47,75,26,223,86,141,176,68,181,149,82,199,85,246,5,106,214,12,181,29,101,100,67,85,28,167,252,202,189,219,236,49,193,49,209,196,18,79,77,159,75,184,44,144,232,63,90,24,215,26,32,38,66,148,181,158,24,173,233,237,160,40,167,196,185,3,172,110,32,185,77,58,150,10,157,144,105,159,138,43,101,52,188,16,16,68,8,89,221,246,79,90,181,13,189,5,209,182,68,140,228,136,31,193,120,12,108,165,172,47,26,8,179,2,126,130,130,126,144,14,34,53,121,173,168,10,93,248,65,214,137,215,13,107,244,165,246,107,136,222,92,
 247,2,148,188,136,161,225,95,187,7,191,55,230,140,37,216,132,139,158,127,58,200,173,236,237,154,76,225,213,47,80,217,112,178,13,120,155,68,247,156,56,132,173,224,87,241,189,162,169,108,74,86,59,125,17,87,34,3,202,149,63,112,135,139,65,74,111,195,194,235,11,21,152,47,22,213,17,138,0,31,128,58,80,173,122,177,112,86,211,21,11,154,234,121,249,94,145,208,156,7,224,126,251,237,51,41,58,165,150,28,86,164,175,106,235,72,87,94,67,48,188,19,179,1,23,210,174,42,52,16,34,186,106,112,131,166,73,196,235,122,194,6,93,67,27,254,189,230,97,179,177,204,61,67,99,140,176,19,239,128,21,184,211,232,112,83,42,31,91,8,19,26,108,163,192,8,24,4,43,200,194,72,29,170,210,33,84,6,208,131,20,131,202,10,233,254,58,195,153,122,191,229,25,193,212,61,193,249,46,79,107,119,72,214,125,126,38,107,72,57,221,214,6,3,85,0,140,241,199,38,128,74,249,13,4,202,110,41,219,59,143,161,250,104,216,220,107,17,152,234,9,95,248,11,121,10,218,57,235,92,104,106,181,73,182,232,27,90,253,231,52,80,164,22,223,13,147,157,146,190,7
 7,13,132,130,65,227,135,86,245,247,232,117,100,190,165,22,207,140,87,216,12,45,95,184,53,159,3,52,162,60,110,206,186,248,19,201,113,247,114,71,155,51,194,100,103,177,223,209,83,141,66,62,16,51,146,241,58,183,144,28,180,214,10,222,217,172,214,149,147,12,47,244,160,215,4,98,136,45,39,94,48,204,53,246,12,208,152,192,189,18,232,39,202,164,44,31,39,143,109,139,30,211,197,109,168,239,150,30,61,179,82,248,134,178,54,133,174,187,227,24,100,131,107,18,231,151,41,20,227,116,26,215,79,42,153,133,167,45,71,245,50,7,122,71,18,15,64,5,173,220,254,150,52,62,211,229,18,145,19,226,202,236,14,242,76,243,222,230,156,92,75,156,28,32,76,172,28,246,238,233,241,44,147,188,46,154,189,43,25,107,251,226,196,160,70,69,185,71,88,96,61,170,194,5,244,110,140,242,61,121,125,220,82,30,154,138,178,213,50,68,37,114,226,83,169,167,20,114,22,71,56,60,53,226,241,0,239,66,114,43,198,204,225,110,10,253,64,235,42,66,97,26,53,16,69,247,16,225,20,216,163,149,210,163,105,153,114,194,213,162,200,18,228,10,239,127,105,
 116,30,92,48,197,133,71,89,200,112,20,126,139,137,142,106,110,146,107,47,178,53,57,217,167,184,130,235,95,47,205,232,103,153,54,121,34,179,153,147,227,228,248,183,29,125,243,136,48,131,151,107,55,4,84,158,85,152,234,181,244,35,232,42,92,73,165,180,115,132,130,134,53,79,198,161,215,82,175,152,43,212,4,31,207,26,174,33,220,7,194,249,134,112,26,248,22,157,53,109,90,106,251,8,217,26,146,34,7,127,61,165,73,117,212,113,25,54,146,149,229,153,44,54,194,44,79,131,206,149,163,171,173,185,199,133,205,78,207,252,95,61,185,241,155,251,186,100,32,124,107,20,175,213,3,177,43,139,115,168,11,233,52,193,140,106,173,88,236,189,118,186,221,88,223,85,142,142,254,46,9,34,181,113,16,228,231,45,23,69,37,198,204,78,116,252,79,73,251,222,27,195,90,41,13,109,177,39,200,192,51,2,174,135,117,191,252,102,101,35,125,128,101,246,64,238,203,83,36,146,194,37,207,70,54,47,226,147,175,216,225,217,39,47,30,26,132,239,32,198,13,196,148,151,189,56,12,139,73,142,40,193,59,22,118,138,249,224,118,181,14,156,152,73,8
 0,223,195,248,233,159,101,82,28,163,97,131,137,171,52,143,236,248,71,251,74,153,236,236,75,254,10,201,238,33,97,111,102,48,119,167,183,237,178,124,125,73,105,10,148,93,243,88,57,19,90,142,189,91,203,69,38,86,97,32,141,65,130,14,109,163,203,186,222,90,172,66,95,116,165,114,234,115,124,211,158,32,246,69,23,84,145,212,148,164,93,97,34,141,196,78,148,252,24,29,255,53,167,201,97,198,211,6,121,227,44,252,119,78,249,246,153,130,243,206,204,224,132,7,171,123,74,18,218,184,15,171,83,185,2,14,159,11,167,148,161,131,68,10,24,77,9,137,101,133,61,231,114,87,10,176,20,224,242,229,152,70,75,134,18,122,138,64,218,0,177,232,196,112,223,141,216,158,226,91,173,141,7,102,229,235,75,9,116,164,136,93,146,122,192,183,91,253,97,209,183,20,158,17,87,188,171,158,192,66,139,121,43,179,48,200,211,119,252,126,38,88,251,68,71,20,234,201,97,49,39,25,22,62,40,66,228,164,95,122,56,213,44,91,97,239,1,120,211,223,18,26,219,57,133,171,155,150,206,182,5,201,100,125,67,235,78,196,104,159,81,193,22,82,212,58,1,32
 ,234,54,86,254,28,52,12,222,103,74,18,117,29,27,6,171,129,254,104,98,116,211,39,172,141,180,88,97,20,142,51,90,217,215,12,46,67,82,5,73,76,104,57,79,208,55,227,135,250,236,218,21,11,155,203,171,249,250,238,27,245,77,108,188,85,235,206,247,117,198,202,56,7,176,251,170,156,120,47,194,195,130,45,19,139,164,192,209,220,64,134,59,249,166,165,121,21,74,141,149,152,20,133,42,111,11,235,75,36,239,142,122,138,236,88,76,60,230,160,221,149,162,206,89,214,84,145,172,140,235,156,170,16,80,57,25,30,103,113,8,128,83,89,56,253,106,200,213,238,60,235,14,221,217,101,56,208,43,1,149,175,49,39,248,196,80,227,246,127,206,47,16,75,62,206,222,111,99,248,29,105,52,65,194,70,179,47,153,46,251,177,22,114,229,111,7,127,164,81,53,77,132,193,16,92,148,149,254,40,126,108,152,196,243,9,58,194,153,90,116,249,118,190,70,221,18,23,163,99,102,18,189,45,199,61,233,250,9,125,54,3,76,81,114,6,250,151,183,66,15,238,243,192,40,99,63,169,201,31,39,238,254,69,111,176,135,133,144,126,7,246,171,210,105,1,168,0,204,102
 ,74,134,172,26,158,104,204,98,244,255,143,128,134,93,165,57,218,137,72,197,236,50,82,113,210,200,106,146,213,150,145,73,251,76,22,226,214,142,184,255,94,170,12,41,53,23,211,73,62,169,31,132,190,62,69,121,119,170,88,120,182,132,217,143,160,100,148,254,56,78,222,68,171,173,146,5,131,76,70,221,36,145,80,12,230,46,132,129,165,171,130,16,23,195,64,181,210,200,31,127,133,38,42,179,139,174,215,188,91,67,147,200,84,122,87,95,245,245,135,180,39,128,155,233,146,216,45,43,67,145,53,106,151,68,188,114,43,177,42,243,53,162,30,144,172,208,29,237,92,6,62,72,31,213,83,205,33,71,215,232,184,112,108,81,229,235,26,10,30,92,77,92,123,214,29,221,5,224,135,118,121,112,216,62,233,209,68,169,230,164,51,43,44,139,7,49,236,29,215,14,157,178,91,226,249,32,62,214,186,143,201,66,197,25,173,162,146,0,59,216,236,130,231,30,2,252,71,147,243,89,148,199,46,160,111,115,254,58,46,114,195,32,37,139,193,182,228,81,189,5,249,63,166,112,171,147,134,10,73,254,142,20,142,85,72,40,224,112,198,81,112,243,85,63,14,231,
 127,193,211,202,213,19,174,8,165,228,64,66,138,78,114,57,8,32,153,136,165,144,199,0,93,42,30,113,114,22,22,80,21,211,119,111,198,107,79,92,19,137,181,6,213,5,97,53,180,18,131,239,148,108,44,52,243,118,4,159,223,115,27,170,183,243,34,139,72,116,41,255,69,7,209,195,79,132,175,33,2,69,225,205,49,59,138,32,41,107,29,184,158,55,167,36,144,190,238,97,248,41,154,134,70,254,124,162,219,156,191,54,69,227,105,168,11,236,190,171,242,59,142,137,122,220,31,70,179,91,143,51,120,239,8,88,150,127,22,163,155,222,136,198,148,100,52,243,67,195,183,106,13,142,165,4,81,114,217,111,201,201,219,1,250,249,24,172,47,42,6,196,156,236,197,59,188,143,37,28,159,233,202,106,182,210,254,100,194,34,210,233,218,193,200,254,78,205,216,246,105,27,119,86,133,160,38,194,99,191,82,142,31,45,144,73,241,244,46,53,240,74,120,7,186,113,190,117,228,158,85,58,127,95,116,110,15,249,173,89,156,91,94,14,138,218,65,95,66,116,159,233,43,141,64,51,75,224,187,211,180,120,202,30,16,30,3,31,236,22,238,193,36,70,145,71,197,23,2
 6,133,231,109,96,117,245,61,58,79,178,170,52,140,6,73,68,112,76,101,231,159,179,62,128,98,235,124,155,241,22,8,201,105,53,214,84,74,122,209,180,138,144,70,196,51,102,28,222,80,89,117,115,186,222,133,77,224,215,34,19,83,196,72,76,214,86,67,219,246,153,5,163,172,254,7,205,233,154,174,236,14,231,66,194,2,218,232,116,124,145,6,35,226,198,8,13,81,10,104,138,93,185,2,10,140,143,54,115,221,52,234,201,141,194,24,225,75,194,26,18,165,27,155,176,10,109,159,191,173,160,248,40,101,108,44,43,41,60,249,12,21,51,75,234,6,176,235,40,24,169,49,98,182,76,48,68,41,106,185,88,201,93,62,155,163,188,155,155,59,13,237,174,139,220,116,227,243,252,143,242,31,185,75,118,9,87,44,105,222,195,225,106,240,15,58,28,103,158,15,73,200,150,237,7,37,204,114,108,230,125,172,168,158,201,48,147,154,138,86,164,41,68,46,115,191,61,3,80,45,113,4,5,230,247,230,206,16,191,83,167,242,42,131,211,107,73,185,240,89,8,181,135,115,99,202,211,48,165,110,113,217,164,156,108,12,73,9,170,6,199,36,159,131,127,207,189,34,79,253,
 82,115,179,125,8,93,237,135,222,18,137,33,19,97,14,6,241,81,110,243,22,239,161,171,74,70,39,65,61,161,15,31,147,238,87,179,102,12,125,136,143,148,210,40,245,20,234,185,67,169,233,23,102,190,88,41,113,59,216,99,171,131,161,36,109,216,193,237,35,224,13,66,22,237,154,114,41,116,235,178,172,202,105,41,120,64,132,107,179,238,97,10,94,220,27,46,102,109,189,215,10,226,98,202,187,15,253,90,209,233,6,56,254,165,80,155,249,245,238,1,105,146,132,38,116,189,61,175,118,41,106,199,138,252,19,112,93,248,130,199,220,33,186,46,222,81,166,59,35,250,132,147,63,32,114,147,223,147,237,72,232,188,16,202,78,68,34,20,196,232,247,19,137,80,137,63,120,56,255,238,69,1,30,222,194,218,85,52,239,134,161,181,232,72,56,202,177,121,10,0,200,169,223,71,226,72,3,207,210,134,195,127,160,73,147,81,174,187,231,213,123,159,33,134,28,251,237,109,21,152,145,235,60,123,77,55,12,254,26,253,34,242,206,135,188,227,31,148,234,158,203,14,243,84,104,107,12,228,14,101,228,107,137,140,144,42,118,57,229,233,238,113,209,92,11
 7,89,197,45,167,193,148,34,44,41,141,138,193,43,190,66,171,43,0,194,108,134,171,169,17,220,14,183,99,73,41,100,114,102,179,213,252,9,167,206,31,228,241,40,3,130,138,151,168,80,130,183,112,74,237,63,231,242,209,194,123,9,39,185,235,55,246,129,189,215,170,197,143,248,124,169,169,100,227,155,175,250,101,174,128,194,115,250,65,106,140,181,78,229,221,196,231,94,62,14,66,224,247,96,140,43,95,136,73,32,206,216,109,97,228,13,142,111,220,62,51,136,29,119,143,12,38,139,14,5,83,213,51,22,202,131,147,127,166,76,145,96,121,245,213,252,51,28,216,141,171,52,140,65,48,169,34,124,194,145,92,167,71,38,19,214,93,99,151,67,238,105,201,168,141,186,222,136,68,253,114,30,226,85,113,77,156,243,162,73,136,243,91,45,11,194,183,151,23,241,218,47,70,80,245,156,188,101,80,77,161,91,197,160,194,76,173,167,28,168,70,198,249,29,232,193,149,226,135,33,159,5,173,205,247,226,15,8,131,55,205,35,126,172,152,124,119,75,85,74,59,254,237,241,230,90,23,38,167,53,186,253,255,162,113,212,233,224,240,104,195,250,212,2
 18,127,43,250,141,132,230,240,26,18,151,211,227,96,214,90,106,88,130,120,172,193,245,241,195,40,90,139,215,162,40,237,165,49,169,99,180,20,65,134,19,112,160,89,115,54,98,138,142,48,254,248,97,188,232,202,213,184,106,34,251,237,245,89,189,80,77,95,195,100,87,31,183,184,40,69,154,175,190,33,108,121,60,164,194,161,217,24,232,193,169,98,213,254,38,34,218,131,47,184,249,131,101,240,53,59,165,245,121,228,11,62,245,152,75,207,199,239,55,191,215,118,226,176,255,23,204,72,116,89,170,16,54,25,254,132,102,239,92,105,130,104,112,158,77,186,195,197,29,70,145,72,218,127,49,144,89,191,50,155,11,75,88,90,87,130,23,21,113,238,236,109,41,157,23,67,90,58,97,244,72,6,157,201,86,110,177,129,207,88,129,162,182,18,186,76,221,31,197,92,240,215,7,128,134,209,142,19,20,208,94,84,197,253,152,15,227,113,37,177,78,32,207,181,126,69,231,60,85,151,246,99,126,91,154,136,6,164,30,254,125,195,202,166,188,219,197,125,57,134,220,232,11,93,185,114,255,66,203,41,160,218,216,90,15,197,73,204,14,174,53,189,123,229
 ,69,71,88,187,11,120,17,255,191,89,182,108,68,115,190,201,102,143,41,112,67,215,53,38,42,116,35,189,129,184,98,220,53,63,153,37,203,58,252,66,134,71,198,90,163,49,92,116,209,114,220,40,155,90,130,25,54,200,247,157,230,181,88,147,198,220,142,40,179,96,53,109,180,183,40,123,64,96,233,59,87,5,78,2,214,213,52,250,20,36,135,130,232,120,108,34,177,250,223,202,166,168,104,84,65,237,202,245,104,246,17,96,84,58,55,81,96,35,244,188,254,190,249,2,234,47,9,242,34,98,194,199,158,34,216,224,76,140,197,241,3,55,198,126,151,26,17,232,112,53,129,154,42,35,185,203,17,7,45,102,128,247,198,163,114,88,198,119,132,188,49,18,103,234,111,194,69,46,76,135,250,174,237,153,142,10,53,54,13,33,244,88,112,141,129,135,16,94,129,103,236,204,27,172,15,49,158,53,161,46,75,147,36,177,203,99,162,102,55,240,16,75,226,116,239,224,232,31,82,113,39,241,13,194,17,158,59,242,205,194,26,166,99,48,230,142,3,34,9,203,126,119,143,65,133,83,201,16,220,232,206,211,26,83,2,124,152,162,40,35,187,133,79,102,152,175,155,1,105
 ,184,205,100,105,79,75,248,92,37,1,82,234,197,104,195,101,109,65,145,110,179,115,223,104,160,234,43,21,238,33,195,107,11,162,121,106,208,131,228,131,114,188,228,253,160,32,225,87,52,164,80,100,66,65,29,209,149,40,21,86,28,186,28,3,173,34,32,118,142,240,105,38,195,114,34,88,170,88,229,252,2,237,231,229,56,114,110,204,84,49,103,156,116,41,172,121,133,167,244,189,143,68,189,81,137,254,228,63,61,213,217,8,179,223,136,76,214,249,157,94,123,74,102,116,33,141,106,185,3,196,165,215,206,250,247,59,22,217,10,148,236,54,221,176,177,183,184,87,183,19,230,30,96,140,12,36,15,177,132,132,41,189,52,122,120,114,0,216,46,97,104,251,211,182,139,31,12,119,143,56,30,184,100,176,117,240,219,173,250,123,1,105,173,250,36,155,15,70,190,207,163,100,88,206,193,193,236,169,157,207,180,44,46,103,221,168,169,76,38,163,9,163,46,151,144,198,186,201,29,216,245,183,104,141,151,138,111,185,155,178,72,3,244,13,113,244,254,39,160,12,197,233,227,94,132,118,36,160,195,188,132,138,122,100,192,122,212,90,115,5,6,21
 8,225,241,47,208,249,230,117,185,1,83,77,93,6,196,177,227,120,92,114,143,201,161,195,55,71,28,115,187,19,8,23,51,102,117,140,98,46,246,127,134,202,119,71,222,193,61,142,252,170,130,152,249,105,204,55,153,69,136,249,86,187,154,174,4,63,134,230,144,195,6,130,255,255,159,210,9,80,19,94,156,77,20,47,32,154,28,120,207,186,191,24,60,122,92,253,75,172,40,89,98,0,80,210,105,56,169,176,132,7,192,50,242,83,26,180,72,234,99,241,59,66,103,246,18,27,207,227,42,233,247,150,168,202,122,209,149,102,112,161,177,205,106,178,177,51,27,64,34,242,132,112,15,36,84,167,89,240,85,11,154,216,83,109,196,62,118,88,196,146,34,156,169,186,7,158,102,240,114,190,7,107,183,128,45,211,150,65,130,219,235,70,132,231,42,235,163,153,71,71,194,151,181,138,251,204,108,68,162,69,68,135,179,174,9,89,161,19,78,140,2,40,168,229,149,136,44,153,191,194,176,5,210,244,191,233,149,25,148,29,64,105,157,21,43,65,55,50,112,200,173,110,208,87,216,136,220,106,127,25,21,249,206,92,120,115,33,75,66,186,204,231,107,160,186,253,15
 4,121,152,46,88,135,191,255,228,153,92,18,144,235,218,7,253,208,20,232,76,118,53,94,64,194,129,220,11,111,134,11,195,206,223,243,16,253,145,104,50,112,185,38,214,102,119,26,210,50,167,143,143,45,136,63,238,143,155,12,168,230,159,172,18,163,96,14,222,178,10,162,135,123,121,148,223,57,230,228,1,81,117,26,22,56,176,129,130,184,93,176,7,26,72,198,63,39,38,158,65,39,119,66,118,13,75,182,30,224,95,155,181,52,22,108,139,34,165,245,198,176,57,35,24,177,116,249,26,254,161,12,152,108,73,246,252,63,156,161,245,140,59,49,135,176,110,173,107,73,23,0,110,47,53,9,197,69,160,57,30,102,13,41,115,52,219,180,85,26,136,3,62,197,145,196,20,124,61,240,180,160,161,27,176,96,204,247,188,36,124,79,142,154,1,134,254,144,232,91,13,223,165,10,67,79,177,44,226,194,208,156,187,139,174,53,135,148,129,169,241,230,58,163,51,61,82,48,110,167,222,244,220,127,161,44,226,4,5,66,204,6,125,150,139,254,32,223,254,222,144,251,14,91,28,225,76,0,222,141,246,111,119,184,41,166,65,19,127,23,170,219,49,100,117,39,228,18
 6,218,70,109,138,34,47,211,146,249,188,62,158,13,183,84,26,172,144,243,252,193,134,10,118,22,9,142,90,115,241,184,184,83,69,154,43,164,23,247,157,150,145,209,210,37,161,53,45,85,73,18,54,96,210,38,184,105,149,74,6,4,233,139,165,196,146,245,233,79,166,81,92,122,80,153,26,114,63,136,123,61,225,192,84,70,53,157,193,130,64,61,240,156,138,133,244,184,218,65,73,47,120,228,167,153,1,210,85,40,9,17,88,132,99,65,122,141,212,199,199,157,4,78,6,111,52,140,142,137,18,71,131,238,37,139,213,244,237,42,206,5,217,142,76,92,96,38,1,107,211,195,11,241,240,94,189,177,60,98,183,177,123,61,188,216,154,240,202,55,12,92,80,100,41,202,18,104,85,36,223,89,109,253,198,77,208,11,188,235,79,22,25,122,92,91,199,35,75,221,23,209,47,182,26,231,67,246,246,35,6,112,200,143,100,47,158,220,123,34,107,239,211,13,14,203,6,253,223,149,197,184,148,218,70,183,242,198,151,147,135,194,32,144,98,222,60,64,167,50,41,237,114,128,76,212,253,115,57,5,123,245,8,75,135,129,161,75,102,68,178,38,26,225,185,145,207,35,68,15,1
 44,78,128,104,75,210,115,121,153,212,96,3,100,149,44,29,45,241,113,30,106,222,134,222,237,179,210,66,99,30,196,227,232,196,108,118,122,55,177,150,104,197,77,34,249,18,18,214,20,86,73,151,187,173,152,2,85,19,72,128,35,119,122,82,13,204,71,188,247,27,215,2,250,195,63,217,149,70,47,235,2,155,174,197,91,186,95,244,47,19,74,215,224,83,167,238,194,101,228,64,127,172,124,19,82,20,109,115,229,56,121,158,159,49,26,135,71,113,22,51,112,199,246,130,179,19,180,28,162,1,125,140,54,78,34,104,175,205,145,124,172,248,66,192,232,101,197,207,182,202,78,134,240,28,23,133,232,250,153,205,68,38,76,246,122,69,188,58,144,164,198,152,56,148,168,237,20,197,150,132,130,200,13,68,117,95,176,134,148,62,32,176,77,155,33,141,47,117,29,113,216,122,85,208,239,226,229,39,181,188,124,15,157,82,230,57,25,113,224,27,203,118,161,39,87,72,30,69,25,150,44,147,137,59,139,177,21,136,237,141,158,61,136,99,114,181,78,140,65,163,229,201,33,41,49,255,219,36,24,252,63,149,41,29,95,96,64,76,48,81,201,130,148,152,182,237,
 203,94,3,204,9,149,182,135,62,112,84,92,188,176,132,252,55,105,80,227,194,136,214,10,78,29,93,223,166,252,130,247,212,132,109,240,11,232,19,249,227,97,76,150,96,167,133,253,41,196,129,127,11,8,125,93,186,111,247,29,204,52,41,121,150,214,102,44,248,67,185,223,72,163,238,174,46,222,35,15,234,18,1,172,0,236,236,145,76,26,14,63,112,22,83,121,5,1,255,102,113,245,166,233,251,2,117,143,161,16,220,100,221,154,47,250,33,135,111,71,113,112,94,163,205,209,150,156,233,51,150,227,149,183,155,140,222,142,49,120,42,86,215,122,229,71,145,92,192,212,56,43,227,50,52,176,254,41,191,47,43,165,5,198,159,56,26,170,179,44,216,200,154,51,73,142,63,130,42,224,110,46,32,126,120,2,1,152,27,104,185,114,23,170,117,81,92,56,103,15,97,244,110,121,97,250,179,48,189,52,80,30,158,38,202,49,14,230,3,151,79,123,182,53,32,249,38,142,237,255,122,194,24,94,27,39,251,130,50,5,14,31,114,126,6,0,60,215,191,132,123,140,206,99,254,254,142,196,112,215,64,72,196,1,202,164,61,135,241,242,70,172,135,74,63,249,226,43,185,1
 17,104,94,113,77,251,227,80,253,243,82,45,70,63,62,95,221,213,197,29,67,132,11,209,186,46,85,138,208,181,254,188,208,222,27,135,218,68,220,75,63,123,212,144,88,90,60,56,46,33,128,251,137,42,239,67,196,220,39,97,40,214,87,169,235,128,254,238,219,210,7,86,8,20,139,47,12,229,120,238,26,35,178,156,149,234,92,160,205,204,29,138,170,131,242,111,34,174,219,126,77,145,60,131,115,211,24,158,242,131,164,205,56,40,90,39,173,238,76,147,54,6,10,126,112,32,197,47,253,52,199,233,205,186,2,108,200,32,54,167,198,131,29,226,223,89,123,200,194,209,7,245,84,143,255,114,210,45,74,252,194,69,67,228,71,61,212,62,222,57,18,1,121,93,25,105,84,33,234,226,140,250,72,159,116,172,185,113,119,47,224,49,27,209,33,171,14,163,22,225,168,219,210,212,75,32,112,31,61,137,219,51,102,109,146,13,9,105,85,32,94,251,213,241,249,16,34,81,43,45,180,43,17,15,106,193,131,216,101,186,27,193,236,30,187,46,238,175,77,131,213,65,17,232,32,97,11,184,65,83,176,96,127,12,230,70,197,157,21,99,194,184,235,10,18,19,172,242,22,12
 3,255,232,210,30,121,235,136,45,9,34,153,142,204,114,114,69,191,89,167,205,207,24,26,205,112,68,154,44,231,253,185,235,228,243,35,209,177,70,217,42,66,212,225,97,147,3,101,209,36,34,236,17,146,178,207,112,204,242,73,40,66,217,116,125,180,139,23,122,75,27,170,127,92,28,178,222,106,192,66,151,125,229,13,114,210,177,203,118,69,46,28,206,25,102,31,207,86,217,140,84,81,8,90,230,149,104,136,118,189,14,53,88,67,234,177,3,64,160,177,125,172,202,25,4,79,235,180,237,88,130,207,189,25,106,245,17,84,185,36,107,83,147,203,59,95,185,166,123,179,4,233,188,235,158,109,98,89,182,180,184,143,132,183,203,173,17,164,21,37,91,210,154,209,67,238,55,22,186,238,148,210,30,2,232,138,220,137,37,251,8,45,228,151,172,152,85,65,56,186,151,145,132,182,154,68,197,197,205,113,150,224,196,0,58,109,125,56,240,36,233,63,33,5,83,144,149,188,74,248,175,193,18,41,251,240,29,61,94,154,69,192,217,24,243,236,90,185,170,90,96,219,135,254,87,199,14,222,140,135,150,140,130,111,213,155,161,56,72,139,32,88,148,158,6,110
 ,3,237,150,240,32,160,26,242,145,107,127,130,118,109,59,193,228,203,80,250,255,87,84,86,237,192,84,40,230,199,245,206,255,45,61,131,111,191,192,218,202,121,222,142,247,76,221,45,236,187,221,164,63,66,38,242,27,22,46,209,72,147,146,36,57,127,142,136,95,165,150,83,111,231,69,64,104,252,246,229,194,42,121,73,241,138,49,28,240,74,213,167,122,138,169,179,83,72,203,100,226,234,55,235,210,173,34,90,58,124,3,88,93,141,87,12,48,232,108,194,21,11,209,90,60,202,75,167,10,206,250,20,237,236,130,93,200,7,122,35,210,126,107,210,199,235,91,19,131,21,254,157,7,80,179,195,228,119,156,89,44,199,101,83,9,97,205,225,216,154,57,252,25,68,54,114,240,55,232,82,209,46,82,248,194,230,3,56,200,29,159,75,86,196,34,238,164,0,157,194,239,100,103,62,98,126,44,242,70,1,238,119,146,153,68,74,35,234,223,51,249,47,11,131,144,251,46,53,38,129,143,144,228,129,9,150,75,182,139,79,23,144,193,82,123,84,190,192,211,11,188,157,209,242,54,24,100,196,112,153,41,192,239,82,9,216,241,242,2,105,15,223,3,80,13,213,24,27,
 157,246,95,230,53,194,100,2,29,110,131,71,164,228,128,105,16,83,173,56,167,194,72,24,190,236,48,196,99,205,33,56,156,158,34,116,244,249,96,85,119,3,98,237,97,111,143,79,29,72,144,92,177,18,3,61,31,173,106,149,34,19,220,215,65,114,59,146,48,72,58,244,54,159,65,82,18,134,236,22,220,136,63,145,204,21,194,251,89,2,218,236,64,227,160,160,124,56,247,54,50,32,144,139,240,220,100,214,9,37,55,49,201,179,74,78,97,196,108,44,85,171,90,76,199,143,166,4,7,5,52,72,138,178,60,183,156,149,154,210,124,220,91,51,227,66,243,70,114,172,71,56,254,216,55,241,139,50,99,208,225,58,161,203,107,11,106,18,181,19,154,176,37,207,183,215,251,130,180,173,44,95,129,245,176,249,43,53,53,22,148,194,166,131,137,3,34,136,53,209,122,201,137,121,177,252,227,51,87,167,21,98,165,24,32,150,34,109,74,170,174,114,62,199,240,68,92,14,24,139,99,60,45,162,114,251,135,96,46,60,120,48,46,207,151,127,190,71,203,8,51,105,28,126,89,57,153,162,59,182,251,220,236,198,171,135,217,1,227,69,47,30,177,140,0,72,207,234,142,237,15,6
 6,57,231,0,208,27,232,230,87,4,54,43,91,146,115,191,143,47,146,142,181,240,18,171,22,154,45,244,193,129,85,3,101,254,42,122,247,252,91,33,241,231,148,58,41,175,10,187,97,249,26,105,87,94,70,203,240,1,84,67,216,148,105,135,85,69,169,46,22,84,227,145,35,51,191,77,166,208,53,113,200,86,117,39,188,125,235,5,20,147,168,172,227,193,99,34,132,208,116,166,197,131,17,173,90,130,187,130,135,61,124,129,215,24,235,133,175,236,58,191,10,169,65,150,250,8,151,229,79,80,238,105,2,234,200,212,80,112,194,22,227,91,189,184,214,24,177,255,20,246,130,129,80,222,140,160,86,229,73,213,102,170,192,86,148,142,83,230,136,17,194,97,175,95,153,99,244,183,109,50,165,255,53,71,121,2,31,251,33,196,55,62,3,234,187,131,180,42,217,134,140,186,1,135,74,106,77,16,70,132,108,95,109,106,248,159,222,171,230,238,232,255,156,201,223,107,185,184,75,199,152,106,163,134,169,108,40,89,98,137,182,40,100,47,117,151,22,160,93,40,219,235,34,144,144,0,164,19,58,163,226,51,210,7,223,197,91,154,250,173,78,108,94,173,38,1,88,9
 9,11,142,128,63,115,148,93,219,44,152,14,121,140,35,161,225,101,229,44,183,194,198,39,6,136,116,189,246,88,168,216,14,173,164,242,195,242,102,183,181,196,186,63,90,98,166,10,151,234,164,171,71,49,188,80,97,103,22,22,146,231,250,102,255,4,176,243,66,229,21,116,243,116,205,212,222,151,234,196,165,163,171,92,226,114,144,83,111,181,184,198,92,195,186,167,113,116,151,56,78,170,127,191,55,91,42,210,108,89,187,2,193,81,139,11,42,32,115,211,58,31,107,107,81,96,60,80,54,43,126,147,164,6,199,177,137,251,214,84,93,244,36,193,63,89,97,156,206,189,114,116,4,196,230,78,130,207,220,134,153,88,149,212,37,71,40,228,192,40,30,154,179,237,128,252,251,93,215,202,26,142,251,184,14,178,95,230,52,121,194,175,82,7,208,78,203,72,45,212,129,96,11,231,65,24,46,216,164,22,34,43,238,250,84,61,90,182,143,140,118,188,234,15,9,120,40,214,138,172,68,163,44,13,166,249,193,53,66,100,199,230,143,141,187,5,31,51,31,90,59,223,188,142,88,59,214,212,226,64,46,129,167,63,24,43,4,127,81,181,94,180,213,227,207,243,38
 ,25,18,123,22,65,200,184,252,161,8,118,45,193,28,109,52,26,185,234,113,182,204,17,117,181,203,166,48,77,195,21,228,173,39,23,237,66,160,87,241,86,250,211,36,162,11,55,78,38,94,78,112,124,151,136,212,149,7,153,124,84,162,249,199,144,126,168,196,157,19,118,98,21,222,9,219,72,87,214,218,29,237,194,228,5,193,61,35,172,149,43,101,225,4,40,39,120,57,190,173,132,229,186,248,2,242,13,195,34,109,253,191,139,190,179,197,215,243,27,0,1,149,185,16,64,72,252,176,238,33,46,37,58,181,91,88,107,184,75,39,153,236,21,182,143,187,211,166,31,167,38,105,112,154,10,98,126,207,98,91,143,253,72,87,221,230,191,140,170,178,9,91,18,19,161,42,82,112,198,34,193,120,184,117,223,171,134,235,185,142,232,132,167,189,70,191,125,4,204,168,117,74,137,36,58,247,142,226,224,75,230,73,86,45,238,231,111,148,146,49,247,202,109,192,220,68,117,21,77,118,13,75,3,99,251,144,148,47,108,201,79,172,63,141,112,52,44,35,213,219,235,163,17,199,42,65,65,185,175,88,4,158,253,59,46,199,80,45,185,26,132,13,229,71,164,210,112,63,
 17,202,227,249,155,139,233,145,93,12,110,144,80,89,92,166,93,159,115,93,138,111,105,89,82,178,209,46,221,71,251,109,112,103,83,248,233,98,169,30,70,126,3,40,44,48,141,25,211,11,79,178,35,33,111,99,250,198,203,81,227,215,13,15,4,207,203,15,220,249,213,62,48,87,99,191,206,104,164,223,167,23,154,246,239,78,190,33,79,191,143,139,21,76,133,17,141,198,115,175,46,108,31,216,122,79,226,224,148,91,99,220,81,47,13,202,240,107,106,195,105,44,169,204,194,52,187,205,154,61,163,49,125,117,226,75,98,85,143,171,148,249,121,123,242,76,84,55,34,10,249,209,57,15,47,194,182,89,122,204,26,131,21,123,66,176,93,192,61,187,11,159,64,75,181,92,184,82,130,86,188,41,114,128,54,180,130,201,73,101,102,104,216,12,86,229,239,228,43,195,17,122,25,64,169,160,103,238,88,239,186,185,30,179,142,105,223,116,247,167,5,82,107,169,36,205,49,144,110,243,140,157,56,186,82,102,156,87,254,30,180,215,85,226,103,149,233,34,155,195,103,30,172,229,188,182,102,32,69,40,111,184,107,24,100,116,150,64,155,71,207,219,54,179,15
 3,254,197,75,20,45,107,239,247,126,134,225,171,33,188,173,234,107,236,236,24,16,62,142,96,183,27,7,48,216,237,20,21,179,218,181,255,23,36,155,81,94,138,238,169,237,242,24,167,184,69,216,68,7,96,255,41,129,22,198,24,24,151,29,128,200,13,228,160,188,64,108,81,118,83,133,247,125,104,19,161,45,191,207,186,25,102,161,187,113,198,34,9,1,40,20,235,187,65,43,206,5,121,227,114,36,153,86,162,75,26,229,119,195,218,85,170,254,156,11,20,125,17,139,119,126,111,230,14,11,196,200,208,141,69,105,52,5,20,168,242,156,37,96,150,176,235,6,247,136,238,152,132,156,99,139,226,206,235,197,59,109,196,164,112,181,216,28,124,6,54,230,80,51,161,94,233,70,114,237,36,191,7,151,93,171,9,152,128,132,112,51,165,65,147,230,42,191,232,210,220,218,121,195,5,191,198,77,13,45,190,195,171,195,20,213,132,144,247,96,5,161,82,175,215,41,0,229,48,234,234,207,137,131,15,108,122,74,133,63,154,185,170,181,96,233,136,82,9,240,156,5,238,232,198,125,254,178,12,182,174,32,193,202,38,161,234,176,70,63,254,150,113,90,197,1,175
 ,177,203,181,116,157,192,166,215,141,166,48,107,250,27,119,72,253,66,204,23,236,243,71,113,209,33,144,207,227,250,151,77,76,62,237,111,253,2,173,37,254,151,39,240,16,170,16,144,54,64,27,232,63,221,63,248,13,56,55,194,225,179,158,140,61,69,30,255,28,84,102,237,214,159,197,121,165,81,105,76,94,9,46,80,213,91,60,74,163,177,128,205,15,4,160,208,210,77,220,2,35,225,150,121,154,235,124,79,225,191,0,162,145,168,62,10,248,169,79,172,179,41,35,218,94,20,29,248,226,15,61,187,108,229,6,40,36,6,55,149,75,246,2,135,59,29,153,108,34,227,99,101,221,100,235,85,45,30,30,41,71,20,50,231,121,202,25,20,247,34,126,33,38,176,36,64,111,75,167,160,111,69,226,59,173,215,174,129,85,238,69,157,118,152,84,208,54,52,218,21,239,186,10,77,194,219,107,43,253,54,77,246,38,51,86,207,162,57,235,217,175,232,100,48,235,189,162,200,252,238,218,236,115,91,157,11,146,5,76,148,240,51,202,218,211,126,7,121,102,249,244,121,66,115,190,123,230,70,168,8,87,166,142,132,46,194,64,216,148,107,121,64,58,59,130,198,148,102,1
 66,182,113,37,74,181,16,96,186,161,215,107,26,177,51,104,204,210,78,133,107,159,51,92,120,208,69,246,9,62,241,220,61,148,100,77,106,169,109,188,161,8,186,21,100,160,16,243,79,55,156,190,165,100,249,134,72,247,37,37,239,55,38,111,83,92,8,115,203,44,110,34,86,7,249,61,93,98,86,95,117,8,150,112,49,177,228,108,221,199,106,108,88,29,152,79,136,30,55,208,151,77,60,42,88,171,206,53,118,175,97,141,165,33,211,40,112,221,75,233,162,63,101,159,157,97,186,85,47,188,19,111,19,45,124,137,102,107,9,19,96,203,142,76,11,184,116,114,6,45,75,219,211,148,58,168,9,179,115,5,82,190,234,229,14,41,140,10,229,185,219,106,149,36,73,37,11,208,64,71,119,37,244,12,42,101,254,254,169,56,204,248,245,193,163,100,106,4,143,198,254,230,80,179,248,170,217,54,163,27,199,158,78,22,253,173,95,232,135,144,202,177,178,162,140,80,94,60,225,231,131,232,120,209,65,183,33,103,218,213,57,252,92,230,134,191,106,47,93,159,28,225,100,20,15,88,220,125,35,29,135,2,204,182,83,208,206,148,163,239,75,163,131,76,28,12,122,133,2
 08,169,136,33,245,49,63,119,156,9,167,67,193,116,124,156,182,236,82,17,96,53,143,242,80,184,8,111,27,156,171,43,144,25,189,5,193,66,12,144,199,111,183,87,121,203,39,242,249,123,123,111,75,47,100,118,86,128,81,160,172,91,110,14,181,52,108,124,135,124,222,44,116,70,213,195,242,45,217,152,195,27,119,174,132,19,50,72,55,22,251,218,234,184,236,225,102,89,194,92,41,77,214,170,0,50,186,8,9,81,116,29,202,103,3,53,217,185,214,151,241,203,247,172,87,46,195,160,79,252,241,92,8,134,0,221,207,233,145,200,233,136,199,250,58,216,8,185,182,120,56,252,86,139,170,221,29,119,115,136,75,250,177,166,136,240,23,68,129,124,234,98,39,44,248,148,233,21,52,251,172,20,104,30,207,187,118,84,137,28,225,205,210,48,233,231,152,224,17,191,130,169,40,31,203,14,106,240,179,151,57,101,70,6,233,239,12,168,77,243,217,192,149,56,134,58,112,223,22,244,211,110,23,21,92,229,89,96,206,196,202,78,172,202,252,253,30,250,92,250,5,116,107,187,93,19,171,205,188,65,252,114,245,121,211,127,31,149,98,96,167,5,184,52,229,76,
 226,190,119,0,78,12,233,146,231,210,125,1,142,111,79,19,254,194,134,48,174,89,131,83,179,208,94,85,245,141,245,43,214,79,209,20,69,136,11,141,179,123,175,243,234,20,43,30,181,57,60,76,234,108,136,107,57,253,183,105,179,108,240,37,118,108,171,42,100,17,205,38,247,255,82,8,221,43,167,185,52,182,156,112,4,203,54,102,48,17,116,63,145,236,198,238,205,24,207,12,2,165,80,247,125,252,71,80,191,241,215,154,194,143,4,174,0,201,16,19,231,13,160,133,52,236,86,170,165,37,127,170,179,177,78,97,232,42,137,118,140,213,86,233,233,100,21,188,95,120,142,177,131,228,6,169,209,75,254,233,16,240,52,77,239,240,185,124,74,46,56,55,149,138,143,194,114,241,181,134,189,247,135,223,35,162,31,7,241,56,1,179,89,229,200,70,190,63,56,92,149,70,184,210,37,120,196,185,243,207,239,159,124,125,65,16,207,251,107,179,110,202,164,172,21,88,191,38,139,126,47,107,28,29,16,219,110,71,250,15,107,1,112,184,19,127,46,102,64,100,196,87,239,166,65,241,206,222,110,50,80,121,22,129,164,57,23,213,244,82,51,71,193,102,136,27
 ,109,18,60,49,160,163,39,9,133,36,172,191,80,246,90,158,94,184,58,41,224,111,172,118,70,83,188,150,21,7,151,46,20,58,10,255,93,232,227,61,191,89,45,27,230,20,128,178,241,255,81,51,8,165,239,121,79,170,57,119,127,119,41,48,195,37,48,47,232,222,43,57,26,166,243,191,190,198,121,43,86,33,208,6,129,87,35,112,136,30,214,91,100,95,124,139,237,129,57,232,20,157,199,236,164,167,152,110,148,195,200,32,186,129,183,20,94,87,45,56,161,218,95,89,227,0,250,156,1,94,108,31,85,48,59,42,250,201,172,17,50,179,138,18,164,206,255,248,203,75,138,227,80,69,117,77,192,65,93,35,219,27,75,156,187,113,184,138,8,137,97,253,60,108,13,46,79,69,168,28,183,66,226,193,208,56,229,251,2,59,220,152,245,103,4,145,242,165,51,183,0,30,29,97,144,246,83,238,11,134,129,190,201,194,7,36,43,129,8,161,120,91,26,47,156,207,34,155,194,13,74,169,51,230,91,198,32,255,11,121,120,222,2,98,127,27,242,201,122,233,72,51,144,20,181,246,44,174,235,12,204,156,98,124,210,110,138,97,173,116,111,155,4,46,187,32,59,204,118,127,77,24,1
 64,155,222,236,224,82,65,58,219,86,149,245,48,109,73,23,80,49,53,82,13,178,24,189,30,198,93,123,244,176,235,55,204,193,144,151,56,100,29,238,40,189,124,181,211,249,31,201,203,137,76,126,212,2,223,29,16,160,53,137,79,113,232,177,109,17,12,225,64,131,28,126,82,25,90,29,60,11,98,71,196,124,222,75,111,126,172,219,158,146,56,114,194,11,166,232,220,201,86,99,237,208,82,103,174,183,73,210,12,37,163,9,204,183,15,117,160,154,253,43,192,117,116,56,95,107,129,226,67,188,223,142,7,105,38,224,196,220,81,123,239,165,246,202,205,255,158,170,105,4,95,182,233,234,215,52,199,103,56,93,217,50,214,102,93,253,194,104,12,55,9,178,162,115,19,210,21,124,227,15,207,254,85,57,9,145,188,82,179,48,24,78,125,87,45,100,3,91,166,98,51,153,153,48,248,223,232,211,19,162,71,212,204,229,123,187,134,160,73,172,204,205,108,251,227,118,181,35,41,137,168,0,166,103,190,78,229,180,184,222,91,116,10,147,21,81,50,236,247,158,55,119,231,97,252,121,161,121,217,250,235,62,131,33,47,92,190,158,253,70,119,59,75,135,181,21
 3,169,167,142,164,158,25,5,41,241,48,254,197,113,147,4,142,210,111,197,88,217,56,222,84,140,248,41,111,204,74,191,53,67,41,211,245,30,115,160,130,108,135,226,212,195,242,134,77,165,138,24,72,194,139,127,248,75,101,17,17,133,79,150,122,237,35,231,98,144,104,108,25,35,190,255,236,14,52,168,249,68,1,52,251,137,130,45,255,248,76,165,68,247,6,247,64,208,128,137,46,167,203,88,114,9,60,172,226,36,32,18,160,175,205,167,246,236,152,68,76,146,126,57,168,111,242,57,167,158,117,147,90,78,183,232,130,143,144,167,21,25,11,22,101,139,202,219,173,90,55,12,149,129,45,91,11,235,45,220,4,35,212,141,87,213,6,129,251,158,76,179,135,169,90,19,231,201,54,77,3,107,41,43,201,157,40,34,157,249,102,155,190,116,61,184,153,6,71,187,161,70,140,15,67,194,110,220,20,218,205,124,238,208,17,167,156,165,45,170,168,111,203,210,194,136,211,138,98,90,208,170,216,246,164,151,161,81,76,180,242,180,106,46,96,193,240,67,177,196,98,51,136,166,209,37,126,4,71,26,232,144,231,86,161,68,122,117,186,226,142,200,227,81,0,1
 70,20,136,136,210,82,237,100,4,165,142,148,175,68,97,93,124,76,37,172,144,181,60,20,120,165,59,240,16,108,101,133,22,213,78,68,50,230,118,93,234,79,126,179,28,83,177,23,74,206,67,132,171,184,149,193,57,75,38,218,188,18,223,73,247,163,161,147,113,95,116,17,143,40,33,1,231,71,145,44,9,64,66,67,244,169,227,229,254,149,119,86,0,15,78,171,172,47,203,239,199,115,20,105,6,1,238,54,104,84,217,80,11,167,175,174,155,31,193,86,201,249,20,53,246,197,66,63,237,246,124,143,75,218,222,71,244,19,9,215,12,14,49,27,83,185,45,18,93,24,77,110,228,207,232,73,66,122,235,203,57,80,65,128,186,240,218,96,246,110,115,85,217,57,74,174,0,34,235,241,40,211,113,8,206,92,202,65,217,28,116,217,196,84,246,239,109,23,210,126,17,211,40,109,109,189,156,121,183,46,233,176,8,54,211,135,188,117,74,61,23,112,161,87,153,78,128,61,246,29,151,94,84,153,235,194,62,180,228,182,4,50,154,239,115,173,104,152,61,102,208,61,192,183,70,38,39,26,95,215,157,173,124,55,143,195,7,126,73,125,49,117,136,86,152,111,190,46,150,211,2
 05,52,19,190,170,37,68,153,100,5,168,79,172,76,216,199,212,142,245,197,82,18,20,71,128,229,221,150,98,27,33,105,56,93,128,177,135,11,207,111,19,218,119,18,116,212,126,5,98,244,212,124,223,214,235,152,191,112,176,18,241,183,253,143,133,27,240,216,105,32,108,87,142,124,243,29,100,234,105,238,249,65,62,92,78,154,145,131,53,144,30,136,45,165,77,152,223,28,47,119,123,209,84,25,22,53,97,134,189,48,240,143,95,96,40,115,14,228,130,157,206,31,232,46,224,254,230,50,105,109,231,43,20,102,241,67,12,61,180,236,96,211,119,241,228,112,192,215,66,11,39,171,248,74,18,109,102,170,13,231,223,85,210,239,118,247,246,112,65,69,199,238,96,80,124,15,18,84,239,53,2,192,12,117,92,248,192,9,254,78,241,73,116,62,84,255,50,102,84,116,132,255,28,172,254,210,233,21,90,109,146,179,32,28,226,139,47,67,84,52,49,86,21,88,16,51,88,51,208,133,14,196,206,106,225,104,171,210,236,134,103,126,179,168,188,98,80,191,103,90,204,21,123,127,181,247,130,135,57,6,206,67,113,160,116,108,93,172,56,156,155,36,182,120,95,39,8
 9,197,140,50,230,201,245,63,150,141,46,11,21,216,170,25,23,239,127,241,215,38,92,61,106,139,203,91,60,80,216,87,221,144,193,45,126,255,217,72,9,205,182,55,162,95,240,160,38,40,116,44,185,142,193,160,148,97,37,183,10,147,7,173,110,94,130,132,221,44,155,135,113,104,139,95,109,194,62,217,226,97,21,156,196,127,18,248,173,55,6,174,104,243,108,80,207,125,108,105,61,1,193,147,62,71,106,77,63,34,36,205,223,111,167,133,106,137,141,188,40,253,206,173,103,201,82,31,227,139,116,111,127,77,202,88,172,46,227,170,211,83,43,106,22,186,123,167,174,14,171,214,72,110,61,23,116,89,242,81,33,179,228,115,14,63,107,166,15,58,148,207,96,237,223,161,28,162,57,153,243,220,223,60,194,13,254,165,35,144,79,240,89,231,208,73,138,62,201,100,162,237,122,231,146,228,145,138,34,133,18,194,222,185,222,171,55,162,82,146,136,52,78,110,59,3,98,8,152,165,227,30,106,131,61,103,59,215,222,172,2,139,196,179,108,49,65,67,184,28,152,4,101,204,188,254,212,76,49,176,99,167,206,71,199,3,4,208,133,165,115,13,82,22,216,216
 ,240,151,66,8,81,222,218,2,176,82,42,6,215,41,70,97,143,89,254,232,217,17,101,89,246,248,146,221,222,247,86,197,221,15,86,189,209,199,22,78,236,92,219,214,186,206,90,206,152,254,202,77,147,142,247,92,232,217,138,61,17,155,198,59,127,80,7,208,69,194,3,47,163,143,234,17,206,87,65,48,29,110,79,202,98,113,235,27,205,41,131,179,14,57,177,145,168,57,40,182,163,69,13,211,59,224,243,0,90,134,158,97,196,175,136,165,174,109,140,48,157,218,191,36,107,157,36,131,175,80,7,170,46,172,186,179,176,146,149,210,238,79,184,22,13,114,207,30,7,41,139,61,105,176,36,11,119,196,33,60,250,140,62,39,79,151,204,149,186,89,152,120,210,245,44,136,225,87,253,200,122,11,123,19,100,203,163,123,43,99,207,25,113,117,144,246,174,202,149,202,95,6,211,243,129,234,0,250,231,143,99,128,11,167,177,172,196,92,91,183,237,46,72,237,107,166,104,87,9,168,231,232,0,30,13,193,117,194,6,49,44,209,236,157,129,122,159,198,62,132,213,174,104,190,127,224,94,138,114,29,131,126,146,59,85,49,153,30,129,102,97,161,218,225,127,92,
 147,165,137,18,14,18,243,242,226,193,36,131,223,38,137,179,45,86,191,73,215,37,28,176,178,8,225,205,11,88,207,24,31,99,236,85,184,77,107,244,213,113,104,218,231,253,67,5,55,99,89,62,209,150,55,121,123,14,146,184,72,93,191,207,55,195,53,238,10,36,1,187,86,229,18,81,80,197,63,141,14,93,140,83,249,83,159,98,2,43,58,152,236,181,61,26,252,77,33,127,90,55,189,210,139,151,215,70,139,149,197,148,101,228,215,232,97,32,90,235,236,88,141,194,130,153,200,193,68,130,31,245,233,49,110,197,41,8,164,138,98,226,220,146,127,166,11,255,239,1,10,178,215,155,199,160,195,75,103,84,40,4,166,232,250,31,213,237,16,4,37,64,180,249,230,150,159,20,221,136,234,93,144,147,4,82,101,177,236,97,128,59,112,152,88,25,30,212,55,13,39,95,182,255,166,141,245,77,124,26,18,10,183,161,167,212,70,180,241,69,43,216,135,220,42,179,8,58,227,152,182,219,166,109,29,133,10,89,198,127,99,61,15,216,143,36,200,233,216,182,72,29,121,76,65,21,118,114,83,127,248,172,59,4,145,128,107,188,230,10,15,130,255,176,202,14,175,205,228,
 216,182,66,84,233,169,213,74,252,254,159,161,17,184,122,156,93,245,180,95,8,73,122,48,67,201,221,195,213,214,16,136,37,24,99,169,113,90,151,157,74,11,137,215,51,112,80,6,93,244,154,228,118,117,212,68,119,66,214,243,17,245,85,103,221,47,189,65,35,181,66,132,185,254,140,222,16,189,189,219,11,242,72,41,140,190,163,248,146,51,129,221,224,71,140,215,68,244,201,183,28,115,197,75,60,125,47,87,145,39,62,139,34,186,214,125,179,16,247,106,122,209,26,169,85,202,191,107,213,204,34,72,241,249,210,220,119,165,167,31,96,124,130,253,253,68,66,164,227,147,67,43,30,47,255,21,65,213,148,169,196,16,85,45,93,81,122,25,83,224,248,93,35,56,10,201,79,190,65,6,39,16,233,183,199,16,4,26,28,179,73,255,11,59,147,223,128,69,3,227,131,5,118,6,238,2,168,35,181,55,221,46,8,53,239,250,118,5,97,125,167,125,205,94,244,139,82,153,119,175,84,18,119,185,213,90,182,121,30,111,176,103,79,249,235,70,120,145,51,237,246,77,125,128,68,237,123,201,160,63,204,57,42,100,246,48,114,229,228,25,222,193,108,93,118,233,13,83,
 227,182,234,83,231,215,171,149,230,93,121,149,148,73,150,212,64,168,175,40,177,91,174,156,6,38,37,214,107,130,57,211,47,160,253,189,140,41,162,25,112,162,222,124,110,20,171,205,236,20,108,204,202,21,49,240,198,41,24,189,138,52,71,44,35,124,165,174,29,170,129,224,42,213,109,96,2,144,66,122,89,204,23,230,71,65,233,47,115,115,253,234,48,33,238,13,0,36,20,84,7,47,188,174,215,237,65,136,156,86,102,254,225,201,222,92,105,97,141,211,232,185,186,81,67,167,199,198,255,203,44,104,236,212,229,177,177,251,44,85,138,144,36,189,85,89,133,171,42,212,150,57,28,236,244,140,77,124,62,78,47,37,151,38,225,30,105,70,72,178,176,186,157,66,167,33,213,54,103,37,113,157,33,164,109,95,99,41,168,165,116,184,135,229,67,58,166,69,84,89,92,191,158,185,128,36,134,85,235,194,84,90,100,234,206,196,39,170,89,86,44,155,135,75,112,3,201,248,172,148,210,148,253,16,141,221,240,31,66,136,57,99,136,98,10,143,255,162,96,93,87,91,3,168,129,145,150,72,30,230,161,6,64,3,236,3,75,39,175,42,31,81,76,52,115,252,77,152,20
 9,28,103,128,142,32,217,77,150,168,83,230,98,14,213,210,7,50,41,212,244,235,218,201,157,35,16,91,90,33,16,111,183,190,44,12,30,173,78,70,71,92,149,58,69,124,241,6,33,254,132,7,128,42,50,193,197,255,228,132,145,215,90,72,179,108,46,103,74,123,122,170,167,173,150,223,207,19,232,165,194,13,185,205,80,179,207,246,233,2,143,174,248,32,63,151,75,232,162,27,41,123,143,115,241,67,150,8,194,21,144,29,32,242,228,248,37,161,121,85,152,43,227,242,5,112,143,206,143,251,245,200,194,178,68,119,13,129,9,0,251,223,159,240,143,135,221,159,36,115,219,24,39,232,252,230,31,138,82,72,211,249,181,208,23,10,29,238,229,212,212,79,6,50,4,175,211,145,19,95,91,31,228,72,147,16,35,59,246,37,210,10,37,97,40,123,230,232,111,188,66,68,201,157,174,175,72,83,80,180,149,148,91,59,141,83,181,85,246,168,29,166,255,98,221,247,211,117,23,122,43,250,94,92,113,179,241,9,125,52,5,21,230,155,136,36,80,249,180,191,45,222,73,46,76,224,100,162,190,224,158,94,198,179,165,244,8,126,141,6,215,138,138,26,177,39,201,47,193,1
 54,131,101,215,72,136,114,94,126,238,44,234,96,229,36,97,114,5,123,64,205,251,11,106,251,193,76,110,206,109,130,51,177,103,72,242,141,240,241,176,191,54,162,196,193,215,114,54,186,116,1,213,96,113,95,157,213,62,216,224,17,139,159,113,87,28,116,150,167,32,26,236,246,121,83,129,248,102,188,38,131,76,252,37,190,166,188,128,40,233,43,153,141,207,194,70,59,17,190,109,90,189,215,167,188,222,158,223,121,195,223,71,235,187,196,56,43,204,109,244,81,132,93,117,113,162,58,9,32,27,127,248,205,181,138,0,198,157,183,174,10,202,78,97,243,96,27,179,117,4,124,136,47,235,74,127,202,147,71,79,107,105,213,143,184,189,42,225,91,245,170,87,225,148,241,49,177,55,140,105,105,226,226,10,201,155,17,125,162,36,160,1,60,2,61,109,116,143,182,69,73,168,158,43,181,84,144,83,43,11,31,109,72,72,75,12,253,19,22,48,213,105,43,213,121,165,68,87,114,130,9,198,105,8,96,140,20,220,228,139,68,173,35,155,108,251,198,201,7,144,164,67,167,106,59,26,60,158,26,34,114,152,243,247,55,72,100,66,250,233,222,145,1,124,58,66
 ,75,9,87,83,255,151,118,226,152,63,146,136,56,141,187,34,96,33,20,95,41,211,122,236,60,251,22,148,58,36,142,140,215,208,50,177,241,180,177,181,112,136,166,244,75,36,127,82,253,57,245,113,110,67,2,14,178,94,119,50,192,10,230,171,173,67,218,228,77,97,61,93,83,186,234,242,182,251,143,33,97,9,191,190,187,164,81,227,107,88,211,134,17,198,101,55,191,178,117,51,222,110,249,245,38,79,31,39,50,180,90,5,117,212,141,121,185,89,12,45,210,197,121,146,79,239,7,169,221,207,63,20,172,161,78,236,62,68,202,50,136,139,234,251,192,189,58,102,143,244,196,213,178,33,246,82,184,86,4,225,104,4,250,66,43,42,234,3,192,105,139,115,208,7,113,139,19,253,236,130,132,182,39,97,195,200,99,106,92,75,55,128,253,253,218,183,44,133,173,205,27,233,160,145,94,187,184,52,192,36,223,117,182,124,76,23,144,75,236,77,159,105,166,68,230,36,127,195,107,102,224,134,184,24,236,63,109,109,101,206,155,219,124,122,164,146,95,133,151,128,74,7,145,177,83,232,55,45,75,146,24,153,179,96,85,227,121,48,102,145,214,86,124,98,98,83
 ,214,37,84,157,224,73,107,27,253,30,98,91,88,82,63,182,15,85,183,190,156,201,65,92,71,128,135,223,100,240,201,201,52,103,94,68,7,2,47,25,240,182,234,214,188,113,107,151,85,147,240,160,78,73,92,115,59,44,61,33,196,60,3,94,224,106,167,209,234,122,2,251,109,79,50,140,65,242,81,124,202,125,141,9,195,97,121,19,109,251,45,40,203,82,249,94,138,86,105,197,83,34,87,191,178,53,51,233,93,142,126,71,37,31,187,226,48,181,242,174,123,130,76,215,179,7,243,37,239,94,16,16,237,196,149,75,66,135,139,85,174,66,135,84,165,55,139,140,215,67,75,101,18,48,197,191,252,116,179,143,168,32,12,53,229,19,76,81,196,164,100,108,112,170,176,208,65,203,158,253,186,57,170,135,181,7,181,36,54,109,213,131,48,104,82,211,253,76,118,58,116,126,235,254,208,144,131,38,129,162,73,234,255,91,226,219,65,65,91,89,108,15,68,56,50,106,92,245,157,160,240,55,11,199,52,158,185,166,75,56,28,220,142,184,145,63,98,44,164,4,93,133,79,45,64,157,103,47,114,112,92,31,17,176,114,143,130,248,171,31,165,159,98,8,55,144,41,70,164,217,
 112,255,60,150,112,220,8,57,88,190,25,19,30,124,156,87,82,174,44,107,255,38,21,41,189,67,213,218,88,76,84,58,37,92,137,135,255,58,137,52,149,237,35,46,83,117,43,242,245,72,226,191,206,253,15,176,59,245,68,161,139,36,7,79,201,70,206,4,95,167,167,219,32,67,181,249,160,38,13,172,113,50,229,38,84,189,175,153,93,10,27,78,170,25,23,74,248,2,68,253,245,113,89,104,251,138,205,74,201,146,160,255,60,74,138,184,207,117,160,48,27,130,54,15,179,235,73,104,107,185,67,20,142,192,18,174,143,76,163,220,217,208,184,248,72,238,224,177,163,222,120,87,2,17,141,22,79,39,127,119,104,224,17,219,152,114,7,177,194,96,180,255,223,226,221,154,226,154,22,20,160,218,131,117,119,107,107,155,48,109,220,128,133,27,3,118,118,199,152,73,148,61,136,29,239,131,3,248,22,253,135,147,154,140,37,239,182,59,122,38,88,155,42,132,221,192,180,22,215,216,91,226,168,236,81,218,161,62,106,166,40,186,195,148,4,135,167,173,104,93,112,129,150,38,184,179,54,106,156,58,243,196,23,180,236,197,85,0,66,248,50,193,253,27,138,200,1
 72,108,68,197,249,68,167,228,29,238,16,245,156,3,221,46,213,108,85,114,25,242,160,19,147,246,22,229,156,128,177,61,156,26,156,140,208,125,249,119,238,54,246,72,55,236,185,68,140,39,182,46,86,105,130,105,86,175,45,165,59,176,173,200,159,102,67,178,171,43,148,243,182,111,67,189,103,158,2,42,130,74,6,58,175,47,158,95,70,109,181,92,93,230,146,132,216,47,27,237,45,134,152,21,156,39,113,127,41,134,164,145,123,4,21,105,70,148,204,47,75,83,143,221,88,90,85,10,70,10,130,7,211,239,58,18,107,123,54,228,165,70,220,126,28,136,34,134,252,207,158,147,183,87,201,175,255,125,152,74,80,239,71,142,68,60,70,167,78,168,229,234,182,201,160,60,219,113,79,107,183,227,156,77,194,178,201,26,30,177,204,250,94,167,47,0,76,222,181,13,49,146,29,154,218,130,178,213,82,91,45,140,99,47,177,219,6,112,248,249,90,244,246,106,65,26,193,190,50,121,225,190,45,254,153,121,197,172,30,195,231,31,108,169,14,61,163,94,231,78,7,255,114,181,72,141,148,234,182,223,57,4,137,57,75,120,53,21,11,27,160,53,248,160,40,103,69,1
 10,138,6,52,222,103,216,138,31,244,132,146,123,41,153,126,84,69,7,163,76,158,174,223,211,241,248,85,135,82,247,171,254,17,112,20,227,51,178,24,43,159,16,97,253,164,167,175,59,5,59,54,227,78,157,182,70,176,79,162,149,103,231,227,34,51,239,65,231,96,39,95,254,81,47,117,134,141,127,93,109,118,51,149,32,72,184,123,170,231,97,56,192,242,233,236,112,128,244,120,156,56,133,89,18,105,156,49,60,11,84,183,31,255,110,92,107,133,220,165,17,174,71,229,182,101,183,116,131,36,91,142,114,88,56,209,107,42,224,174,202,142,135,210,118,192,63,166,204,71,32,139,157,45,223,63,118,204,209,80,211,237,249,57,159,122,203,173,184,250,63,185,89,53,246,150,83,248,51,126,58,168,26,125,248,123,87,192,210,73,129,143,195,255,110,239,72,157,146,215,232,196,80,66,55,135,128,43,50,244,17,180,112,49,201,102,168,124,133,142,76,202,86,66,44,102,150,91,252,75,98,61,170,209,80,25,248,139,130,93,64,96,111,122,111,228,238,53,156,82,110,120,202,33,28,251,218,6,85,129,115,250,5,111,89,210,166,31,61,95,79,72,221,1,167,6
 9,250,91,176,71,107,232,86,211,137,123,119,38,7,42,174,48,5,75,189,29,104,6,240,129,240,116,227,13,192,177,115,54,122,18,40,23,108,143,67,72,160,163,38,210,192,230,165,30,30,18,230,79,38,243,173,217,169,147,145,55,117,114,104,21,13,168,146,70,174,118,113,15,148,161,201,222,173,141,226,45,182,241,111,91,72,50,221,224,245,114,52,164,15,5,45,210,28,205,19,143,82,29,155,79,238,196,106,93,186,11,6,73,17,8,255,137,244,204,7,96,239,71,216,99,24,126,207,132,220,178,203,106,151,255,97,219,64,188,38,90,109,15,169,69,251,198,205,125,116,64,191,243,113,53,80,138,18,38,142,129,227,50,38,186,64,67,16,188,145,51,98,196,97,40,239,107,161,143,49,201,177,51,205,229,30,188,114,247,161,139,43,199,10,228,96,209,51,42,115,8,175,204,30,251,103,213,36,228,157,131,142,58,28,9,35,30,219,150,71,222,16,34,169,113,97,103,29,116,50,218,111,163,61,106,183,49,178,172,74,245,0,239,115,196,225,244,173,251,132,181,253,220,5,12,88,222,184,253,17,147,79,0,211,192,224,185,205,217,82,82,17,5,173,110,162,69,204,97
 ,116,193,112,152,119,92,220,137,85,187,165,155,61,133,64,211,172,155,120,224,115,172,98,8,40,38,194,105,144,9,12,85,162,4,130,241,165,152,148,125,11,218,71,110,100,124,69,166,225,3,199,253,27,236,246,189,206,158,157,47,47,29,243,3,227,165,22,38,102,217,59,212,125,182,145,246,45,246,241,63,212,45,233,11,172,93,170,144,140,102,52,209,133,229,194,80,203,88,207,85,95,74,162,201,128,94,117,121,174,202,210,82,200,175,188,69,152,194,108,157,114,180,159,56,154,194,178,29,135,205,240,195,237,133,65,26,92,1,209,135,102,253,43,96,241,142,83,164,156,88,253,69,217,30,147,134,77,170,77,190,223,40,153,76,118,66,141,215,242,89,242,185,156,36,19,7,139,223,108,124,99,83,244,166,242,218,6,217,132,110,179,189,127,6,139,107,104,162,85,190,241,204,241,66,82,226,20,4,62,164,184,23,216,239,173,226,235,96,16,90,105,119,185,245,147,215,45,180,113,237,90,188,26,238,200,22,36,100,29,239,97,88,22,245,178,24,174,213,237,236,218,198,206,221,33,245,71,134,232,157,120,124,224,187,138,83,42,131,231,141,126,1
 80,231,54,36,5,178,20,150,176,136,110,179,212,201,66,211,37,142,144,138,120,174,64,232,147,45,242,200,107,60,29,167,240,64,117,128,39,241,121,193,35,91,111,235,172,87,178,93,177,78,227,32,137,166,30,75,30,163,96,134,73,132,56,136,48,148,218,57,109,93,230,170,117,177,180,238,222,71,71,234,158,163,236,128,210,233,125,115,161,196,97,1,188,237,97,108,161,121,112,229,209,246,181,47,92,144,19,174,254,156,181,204,86,101,190,200,14,163,75,193,109,140,238,25,29,161,179,105,141,141,178,27,152,50,65,11,33,145,146,126,250,254,95,129,242,198,65,200,90,177,34,2,230,196,203,156,78,74,124,33,49,13,227,38,160,15,101,8,165,241,210,126,82,65,14,228,150,164,80,119,222,60,123,89,146,47,232,31,131,24,6,79,61,230,106,136,233,10,24,167,88,16,37,180,219,236,124,31,125,210,170,180,51,149,78,192,29,0,140,208,160,30,140,62,238,237,33,2,105,10,4,188,137,241,5,192,0,44,237,69,10,107,150,233,118,188,188,127,5,58,21,179,8,212,183,22,199,144,44,51,236,197,43,226,188,161,244,93,79,166,136,124,126,136,177,90,
 9,85,62,23,159,129,174,63,75,229,64,96,169,84,69,129,171,245,177,228,69,21,137,43,95,232,114,214,186,139,232,29,237,49,134,206,252,105,182,205,210,165,233,249,6,73,180,80,20,228,177,122,176,116,17,9,243,219,195,185,201,25,78,185,57,151,28,237,252,158,36,172,134,77,193,131,59,208,64,140,242,54,174,247,99,94,169,151,133,210,102,104,91,84,248,252,57,23,4,224,87,89,58,38,88,160,238,53,231,89,107,87,155,184,70,183,75,6,180,24,168,131,31,146,45,15,119,255,49,172,235,53,138,244,85,91,110,207,135,202,234,203,20,227,213,208,173,199,86,136,146,93,85,90,114,102,61,57,222,247,6,176,191,220,60,75,33,220,171,246,21,232,59,140,172,212,24,181,130,37,73,83,98,233,196,141,60,16,114,71,31,153,188,205,58,54,134,156,44,21,224,37,242,111,180,71,224,213,250,42,69,99,105,235,140,182,129,249,231,115,54,24,238,194,230,224,140,93,201,90,119,99,46,195,147,155,134,107,232,196,127,29,149,95,133,128,132,30,81,198,21,4,232,37,136,35,98,242,227,109,0,238,153,18,231,34,153,46,66,116,9,44,250,46,191,219,13,72
 ,13,203,174,94,155,13,68,221,170,63,42,78,155,7,218,40,92,109,10,60,231,23,148,11,29,17,185,102,189,178,47,216,132,101,87,13,219,90,91,7,16,116,17,220,143,41,48,163,86,21,217,221,100,178,208,147,59,43,75,104,179,18,103,115,96,58,252,56,64,165,170,93,79,83,19,63,174,99,33,172,7,238,236,227,100,44,59,132,29,177,7,53,26,224,65,27,192,178,118,84,105,138,161,128,25,247,3,203,241,135,151,123,81,44,209,206,75,246,151,89,24,36,154,79,145,235,176,188,183,2,144,68,186,97,45,19,232,117,130,151,186,59,28,148,42,37,215,109,140,31,227,72,150,248,98,214,84,170,47,179,173,155,193,45,194,162,191,246,123,86,167,146,3,243,17,35,104,57,158,56,192,214,158,80,76,74,194,87,129,253,235,40,11,142,12,234,78,136,91,76,80,35,192,9,114,68,149,190,173,219,138,159,203,53,211,95,67,252,193,36,42,53,85,161,166,11,153,70,113,217,103,163,117,19,215,173,148,70,132,181,21,51,126,222,72,153,132,202,149,240,23,16,215,202,247,74,132,141,53,32,115,29,163,78,2,84,76,75,153,23,120,119,39,228,13,123,9,104,152,248,37,7
 5,78,170,233,243,201,143,66,16,120,240,19,161,76,40,65,106,1,246,170,97,208,211,141,81,187,165,244,147,127,50,156,255,62,227,102,104,179,228,66,251,42,3,191,161,113,204,198,196,57,97,68,140,157,120,232,88,57,9,235,183,164,163,64,184,163,116,140,153,10,47,2,240,232,83,177,200,239,138,44,96,90,226,36,206,138,202,95,75,241,27,169,159,204,86,81,14,239,92,16,21,226,185,212,173,219,80,76,149,176,254,107,242,148,240,47,104,131,172,217,120,143,105,114,200,1,121,181,224,178,71,4,77,212,155,144,128,128,114,112,155,108,152,136,218,77,58,252,71,162,254,209,254,249,111,38,90,93,237,124,249,73,57,22,19,32,127,52,156,170,175,247,51,159,119,173,170,29,75,120,99,82,181,165,53,20,37,77,168,126,146,98,128,244,171,211,247,125,195,183,208,102,44,236,160,55,247,106,158,166,204,110,216,85,136,241,197,77,84,91,103,211,47,92,65,64,36,246,223,228,0,90,129,123,195,6,84,205,88,86,133,63,245,25,83,181,178,129,91,71,229,215,30,38,77,27,120,2,8,166,152,183,218,11,134,250,71,58,22,71,192,103,155,217,35,173
 ,101,71,210,231,191,42,5,96,172,61,2,72,224,75,132,61,39,115,254,96,153,161,2,52,121,179,52,26,171,217,4,189,13,151,149,15,221,102,141,254,109,242,137,66,87,232,195,4,187,4,178,244,114,122,231,62,118,45,166,35,0,184,64,6,20,28,233,183,214,103,17,81,254,174,205,113,255,174,26,214,144,155,141,192,88,44,45,23,88,99,153,93,68,89,95,22,219,246,158,247,21,93,30,53,229,15,168,204,147,154,1,157,140,33,163,81,145,51,50,37,95,69,216,141,43,227,196,177,93,134,9,39,105,189,88,240,85,36,13,203,234,177,37,111,186,224,241,115,210,116,53,179,27,29,71,226,151,225,240,28,99,99,44,218,50,97,208,48,169,61,52,215,127,252,26,111,140,251,3,189,233,98,187,23,166,172,119,159,102,184,36,225,196,225,227,192,179,169,186,129,244,168,251,183,117,57,185,143,125,6,2,187,5,168,225,56,193,141,90,238,196,33,159,194,253,13,106,0,18,231,143,132,22,235,187,127,184,82,176,243,94,65,88,116,159,120,203,39,197,177,212,69,66,57,112,43,57,32,205,215,37,53,195,159,17,53,47,254,138,34,26,136,51,98,107,24,202,122,188,79,
 171,193,155,80,34,231,30,183,148,81,99,110,84,199,119,250,135,254,26,123,65,166,253,187,173,242,80,128,118,60,181,111,139,157,205,182,12,29,5,88,129,107,44,84,153,41,159,217,4,159,12,69,208,53,200,145,32,116,159,174,79,91,1,168,24,55,114,232,92,194,253,143,246,59,55,21,253,122,130,142,163,24,89,62,58,192,15,142,127,134,189,146,9,107,31,24,80,38,0,148,41,182,72,99,160,83,39,175,185,210,49,99,51,161,197,199,146,55,182,238,218,182,59,20,251,84,99,197,246,127,107,254,90,209,241,124,54,78,84,44,17,36,16,123,110,135,110,23,124,237,139,139,31,118,61,49,52,140,161,40,76,53,54,248,29,76,249,77,26,208,31,234,178,170,68,167,38,7,57,155,145,75,170,123,15,50,251,73,238,227,11,203,233,43,47,56,70,33,153,88,98,130,142,173,39,57,187,50,194,57,188,62,2,140,135,168,111,70,159,136,225,35,149,242,30,100,30,1,71,81,200,2,168,197,28,128,236,19,18,178,40,210,73,220,190,126,134,85,37,74,71,153,194,122,133,235,184,135,153,249,44,87,129,164,133,30,1,132,226,155,173,184,182,132,123,169,154,39,157,53,1
 36,169,53,245,193,137,81,195,74,125,132,30,73,109,221,44,26,10,86,90,64,193,78,218,233,224,239,251,16,244,124,83,227,244,85,155,90,203,26,67,197,6,139,235,194,241,152,253,12,67,181,17,8,125,131,4,149,165,129,234,196,230,48,143,159,58,163,71,165,232,237,143,125,161,5,100,38,111,20,165,46,41,168,210,38,92,224,163,159,241,59,198,4,2,119,203,249,123,125,6,12,249,53,208,188,11,20,143,215,241,147,58,98,112,128,95,202,31,154,186,176,16,231,210,49,160,44,89,188,37,153,94,35,172,31,75,165,194,157,246,31,114,110,34,177,110,252,219,251,117,4,95,237,229,25,176,30,126,172,110,241,106,57,87,133,217,202,27,96,50,171,222,134,91,178,27,83,38,68,136,233,133,41,151,123,96,81,85,134,8,216,11,126,33,1,3,230,22,50,165,217,23,119,186,240,124,226,63,171,203,188,124,184,226,40,98,130,250,40,221,52,100,168,121,206,73,32,179,14,65,33,157,142,205,205,92,62,13,12,130,195,130,215,20,148,61,229,70,194,81,146,118,39,232,185,239,53,177,171,232,175,253,246,163,203,106,77,26,76,13,134,78,218,17,216,249,204,19
 4,221,204,56,51,40,223,138,41,4,248,80,247,250,17,100,227,73,255,254,52,190,113,215,161,55,117,10,94,25,111,27,60,49,101,98,210,94,111,224,206,114,102,68,236,10,90,101,147,86,32,62,9,181,79,12,72,188,28,208,47,6,222,53,174,201,250,154,183,209,10,147,25,142,67,42,222,85,87,9,151,174,24,33,114,234,228,248,80,88,1,193,40,152,74,226,34,228,19,200,52,45,104,4,47,199,22,208,89,213,135,124,243,128,172,70,41,80,30,253,84,184,234,61,91,120,80,158,252,58,111,236,243,199,193,71,239,239,98,121,114,141,65,134,193,84,243,250,223,140,172,213,55,225,19,123,88,71,92,35,137,93,3,153,163,89,27,251,31,194,26,87,103,94,8,34,219,91,150,241,230,94,108,9,248,171,213,70,243,51,192,175,57,84,162,73,73,232,151,148,234,45,30,39,51,177,242,2,205,56,229,61,227,143,124,78,174,80,171,158,11,21,125,187,10,232,111,147,179,58,203,8,207,208,204,31,58,30,253,49,144,231,16,198,170,53,245,80,35,72,238,62,216,84,67,0,166,228,122,131,207,13,88,100,138,248,116,159,88,141,110,27,160,51,31,206,89,47,26,68,220,234,193,
 145,15,220,120,13,156,102,226,156,83,32,247,81,198,173,48,63,105,197,24,247,197,143,14,118,93,6,120,152,206,80,111,164,191,147,206,152,150,83,167,27,28,182,242,111,197,194,202,106,195,196,234,9,191,53,16,64,155,64,168,246,43,55,92,171,141,209,203,217,135,64,134,161,105,52,119,50,14,84,211,103,139,66,117,159,244,131,147,206,181,149,2,216,34,85,14,148,98,131,58,16,92,14,166,33,238,62,74,158,34,206,142,144,15,169,154,181,38,60,139,200,139,113,43,61,60,255,130,204,96,79,169,181,224,83,25,87,187,29,80,58,53,9,119,199,11,20,36,187,177,222,229,209,128,131,86,158,250,66,178,208,3,104,177,103,52,229,211,26,174,142,207,157,91,28,56,39,70,248,11,230,146,34,180,250,53,195,200,104,173,83,31,193,116,29,52,69,163,233,33,7,76,13,203,235,254,189,237,21,8,172,199,0,231,244,90,14,226,232,68,42,232,128,212,129,170,104,59,208,92,173,48,251,69,201,146,47,58,254,57,250,135,252,240,208,10,12,225,1,21,60,69,211,4,192,4,239,235,51,36,26,239,179,210,194,200,230,110,41,6,245,232,186,165,198,177,130,213
 ,116,119,1,1,134,250,239,39,183,194,251,57,63,242,15,68,233,189,164,38,28,133,235,190,81,43,188,127,126,229,244,230,40,212,218,170,206,188,182,10,11,77,4,98,82,202,51,204,187,122,36,128,23,149,141,223,169,249,14,139,198,90,139,108,187,73,242,102,80,111,240,142,72,129,196,66,66,2,149,153,248,186,191,136,120,6,133,239,99,133,193,154,159,190,154,140,22,105,137,255,74,243,250,231,214,35,138,211,152,75,9,233,54,238,178,22,17,173,55,222,46,242,87,215,120,228,213,24,11,222,11,127,165,164,168,109,58,203,81,72,175,61,244,160,36,221,205,87,28,28,165,91,174,136,47,73,4,169,251,20,219,107,82,185,234,160,32,102,83,60,242,182,193,215,154,21,22,34,227,69,142,163,71,175,223,18,210,196,57,179,131,215,156,73,222,255,248,254,104,142,192,157,200,132,164,192,25,213,114,7,238,75,142,195,21,92,153,245,56,180,180,250,111,37,161,76,126,188,161,230,39,115,136,114,22,104,87,177,54,190,113,169,180,187,108,202,19,97,111,177,144,49,192,34,193,138,45,124,59,5,144,58,234,95,125,38,74,12,120,201,243,108,239
 ,186,246,175,20,22,131,6,82,87,177,149,19,135,21,214,12,46,217,168,58,66,189,205,210,237,151,37,55,103,95,173,163,168,181,25,112,162,110,252,23,31,167,185,199,141,69,126,220,154,194,177,143,66,80,130,218,148,142,228,164,201,20,85,7,120,162,170,162,98,111,33,175,134,127,78,209,66,158,229,139,105,217,247,132,81,153,158,35,96,23,229,226,252,209,103,18,119,22,129,192,206,33,234,55,152,190,100,214,88,69,200,44,126,74,130,155,219,152,227,22,11,170,198,202,118,136,254,195,99,200,24,0,49,113,232,39,55,169,39,223,250,6,144,192,50,208,236,200,155,212,208,169,230,170,39,109,59,38,76,255,104,166,103,114,5,222,190,45,195,118,18,217,88,51,33,88,2,87,140,171,72,70,238,248,208,32,172,214,189,157,241,90,207,80,151,128,39,213,198,96,149,2,130,225,44,165,213,226,52,64,209,176,75,162,54,204,54,218,181,41,211,205,213,111,42,164,189,97,254,103,209,252,109,138,253,241,51,46,181,91,32,202,166,255,136,223,40,70,43,146,41,100,154,212,255,81,10,7,106,160,254,188,207,109,164,216,200,114,218,189,145,30,
 138,220,254,45,63,154,20,144,198,103,37,61,213,142,197,72,14,187,68,49,100,106,92,246,58,159,77,15,251,164,177,90,182,214,106,33,116,125,105,182,83,140,106,50,121,130,47,99,49,207,61,58,132,248,229,38,75,36,36,53,36,151,216,168,217,41,106,151,25,168,188,230,23,116,13,255,96,41,129,64,70,192,190,58,145,13,71,162,207,90,97,155,64,45,125,241,110,219,240,23,135,144,194,193,197,114,233,176,138,202,79,70,56,242,79,212,90,116,127,149,255,179,16,199,24,165,201,0,144,60,39,112,145,102,144,206,107,180,216,185,128,12,68,19,142,215,158,233,236,76,123,77,121,75,4,255,155,131,7,214,192,163,10,32,153,115,17,177,237,49,144,6,75,18,9,161,197,167,186,248,175,106,83,148,184,132,221,25,102,252,185,167,150,38,147,132,166,167,134,195,70,96,231,233,66,253,175,165,46,102,128,252,196,106,22,77,191,141,237,56,111,30,218,19,10,79,245,134,21,64,184,44,17,3,16,247,190,254,52,89,18,219,207,144,59,141,242,11,220,128,113,41,196,140,88,162,159,82,97,213,231,166,209,58,148,206,238,27,122,103,193,144,147,58,2
 09,77,151,240,163,212,96,214,100,210,190,226,219,100,127,17,40,56,137,40,83,178,93,227,148,161,127,240,116,157,190,90,181,171,56,182,241,10,252,181,189,181,49,109,37,126,252,198,113,58,120,174,39,242,169,185,165,63,21,240,141,110,67,244,86,69,252,106,46,245,99,73,83,166,65,165,154,142,98,217,225,220,144,59,238,249,237,211,178,193,68,138,121,35,1,133,128,190,213,91,39,30,1,47,33,170,5,225,124,231,165,29,34,153,79,95,3,238,106,128,126,232,21,55,186,140,52,254,89,92,195,104,115,23,116,62,186,139,247,93,118,59,66,197,93,2,69,210,230,232,203,236,202,156,90,252,107,139,65,58,135,118,53,233,97,188,86,210,119,19,229,0,3,227,177,39,103,131,147,231,51,109,87,54,11,110,239,241,67,233,230,224,222,37,143,20,64,106,30,5,4,199,61,221,227,60,158,219,67,16,43,169,22,111,163,68,242,142,181,11,138,6,164,135,226,196,29,16,69,89,221,220,212,211,232,92,11,95,76,85,226,87,244,54,232,74,68,77,28,65,159,81,36,231,150,191,146,153,107,206,42,96,204,13,218,163,173,35,198,139,68,236,41,2,12,130,10,190,7
 9,77,110,144,254,175,179,102,224,140,17,15,86,144,54,131,53,72,5,69,159,19,232,141,61,162,177,91,243,42,83,91,179,189,221,189,202,204,187,109,124,222,226,170,30,182,8,183,158,30,181,158,226,5,122,21,117,170,51,2,90,186,228,48,72,167,19,70,23,193,139,129,39,93,244,49,187,88,39,86,169,175,0,159,45,236,87,150,90,156,219,208,40,162,236,3,255,159,32,88,164,160,24,189,10,164,195,171,150,122,16,191,247,49,189,213,101,159,185,39,202,248,160,79,223,151,252,155,31,167,100,131,5,5,232,215,152,55,90,155,57,88,251,212,227,120,232,178,64,1,161,186,143,142,218,243,221,244,77,87,171,236,160,64,229,161,72,166,103,133,181,101,80,12,5,111,38,245,47,201,231,221,2,106,146,44,8,134,52,53,168,224,247,206,128,99,54,227,110,222,199,15,64,10,244,63,166,127,18,84,29,83,63,122,47,2,194,20,53,90,191,113,179,161,17,145,231,118,12,27,65,108,154,222,90,72,43,7,95,170,144,120,199,122,181,132,154,239,63,147,203,228,85,21,28,83,98,119,111,117,114,189,240,68,213,126,116,93,18,82,14,196,170,32,161,131,22,119,2,
 230,214,167,63,148,161,78,225,195,166,88,97,8,135,226,10,117,179,231,68,160,205,126,122,195,97,0,50,46,108,31,114,248,227,30,120,88,110,58,35,200,171,5,164,186,244,170,33,36,110,101,183,181,153,143,153,87,202,40,98,50,50,204,146,53,125,143,85,239,142,218,245,22,137,91,174,111,128,245,41,57,91,101,194,56,89,142,67,194,127,13,5,97,250,190,71,74,141,44,71,220,3,96,208,31,215,200,5,14,111,174,4,254,249,70,55,253,47,54,42,189,229,211,38,106,113,159,120,208,37,22,226,253,115,204,237,77,75,87,138,127,129,52,112,153,48,132,84,63,166,221,155,36,159,218,142,242,159,64,242,227,99,180,230,223,13,186,112,242,180,228,65,141,16,162,132,106,204,227,216,239,101,49,125,77,118,169,25,144,77,143,234,149,166,13,80,115,10,21,246,209,129,193,35,201,42,218,225,208,241,166,12,213,37,51,24,110,27,56,44,5,130,79,201,75,74,76,27,178,106,146,72,193,87,125,146,35,218,92,34,246,173,99,65,156,157,199,198,174,136,172,29,141,143,151,254,23,198,135,247,112,75,221,222,206,147,11,193,102,1,166,95,168,93,241,255
 ,46,73,73,72,237,73,203,16,168,133,195,117,89,242,75,213,148,130,46,154,17,225,140,72,191,152,222,217,144,161,150,157,196,249,21,191,68,140,64,70,44,80,202,69,216,33,236,12,246,247,92,22,132,143,57,151,10,127,73,79,122,28,102,89,89,226,132,240,209,158,52,186,204,32,104,107,226,174,104,199,235,240,26,203,55,65,35,31,190,218,100,221,66,233,19,49,132,200,198,172,178,67,188,45,97,90,88,88,95,141,126,248,82,216,134,147,34,203,87,76,41,174,2,217,95,48,49,232,200,49,254,143,227,112,170,183,210,37,241,96,163,45,108,184,87,59,159,109,75,66,7,152,32,223,122,100,70,73,209,97,144,164,106,65,149,244,223,246,165,80,135,154,216,32,98,157,71,224,185,155,172,176,248,159,220,188,46,194,249,104,238,11,55,216,121,26,152,209,118,56,180,241,17,29,19,174,165,78,37,122,252,32,195,85,25,219,100,14,81,75,235,38,142,135,211,142,43,235,43,114,13,205,158,198,163,3,39,33,176,220,193,97,114,121,159,210,68,196,170,236,14,118,214,60,85,89,189,66,231,167,103,251,208,159,206,61,34,121,73,196,139,65,138,77,13,
 223,71,85,186,80,27,33,179,224,152,136,111,43,12,237,100,79,83,97,169,186,166,52,232,163,151,26,240,249,222,231,228,157,242,34,114,112,18,88,26,159,243,73,47,254,249,18,44,241,21,222,132,35,23,68,106,80,1,67,112,186,11,17,124,30,145,94,177,255,88,226,51,205,196,212,146,74,87,209,120,108,51,79,218,2,99,100,118,46,182,253,246,224,22,91,39,167,60,142,101,238,130,214,98,0,211,254,140,164,151,179,173,111,5,157,174,29,22,192,221,169,253,69,47,107,174,173,204,101,211,157,228,116,129,18,19,27,31,159,162,106,0,99,95,9,147,165,56,28,166,43,221,78,180,48,218,245,161,77,96,228,206,174,203,193,228,122,147,109,136,120,242,198,63,240,125,214,93,80,124,158,49,174,247,108,95,191,87,165,58,178,237,10,133,156,118,30,229,206,53,147,51,248,73,30,234,156,95,147,13,108,160,112,197,180,78,34,161,92,66,88,77,181,46,102,78,140,42,172,85,156,78,199,123,255,126,195,110,85,90,22,40,138,186,76,190,159,102,198,102,142,160,38,118,22,80,117,104,103,226,116,245,223,55,0,83,62,35,110,119,63,64,42,221,248,67,1
 14,91,138,230,67,95,88,143,57,122,93,104,33,74,71,182,215,61,130,144,126,33,117,159,121,117,148,173,187,53,118,95,212,114,234,86,181,174,204,61,228,243,205,56,171,222,85,35,134,87,169,27,136,216,66,59,20,218,242,56,75,109,122,54,157,13,131,136,126,240,66,178,242,93,32,188,215,173,182,194,55,245,55,35,217,145,23,44,118,9,97,47,134,85,75,1,6,63,53,49,41,115,164,233,31,241,119,150,138,58,61,8,130,221,117,242,21,103,219,82,15,7,160,98,241,76,134,246,9,178,211,31,217,225,174,7,63,87,67,72,179,172,49,71,98,28,96,200,76,197,122,180,71,167,157,24,133,65,49,109,33,78,164,36,129,129,165,48,223,183,190,187,114,82,252,18,215,105,59,166,172,93,148,244,147,27,47,124,193,216,40,211,206,230,133,150,217,83,160,182,134,32,124,38,19,14,124,52,51,30,194,40,255,55,227,116,20,109,142,6,116,167,10,8,200,102,65,10,165,138,44,204,72,173,0,8,160,81,152,65,68,63,64,220,135,125,90,28,230,161,94,135,41,224,245,69,78,206,252,38,236,252,133,250,183,159,27,42,143,113,79,143,237,245,34,55,251,160,235,100,18
 9,3,181,184,139,106,121,134,134,94,208,80,150,2,76,30,105,202,60,129,201,126,11,210,249,252,222,241,163,84,108,6,251,125,193,136,107,90,12,184,220,182,234,231,31,247,222,2,179,210,71,176,131,198,227,195,33,46,66,255,247,222,146,215,110,73,24,126,58,103,148,234,61,204,255,153,9,138,155,250,33,179,228,79,238,245,2,141,194,43,19,35,192,120,164,85,128,186,151,119,129,30,63,44,216,29,247,66,57,50,39,44,174,57,164,230,138,10,212,222,179,151,225,233,17,255,167,250,52,97,53,85,160,155,87,33,180,89,140,114,123,62,240,106,179,205,67,168,19,137,102,189,41,58,61,222,82,108,10,231,142,19,233,208,245,163,152,91,58,57,78,182,177,0,132,60,181,68,171,255,149,118,251,2,117,86,244,158,179,56,76,120,171,37,220,67,58,101,95,154,37,251,195,237,78,234,63,107,202,174,195,85,159,94,213,130,104,214,243,63,251,36,18,195,100,205,234,2,111,8,166,20,124,90,89,159,166,241,87,207,106,181,146,96,37,225,202,250,208,149,213,171,47,184,102,218,64,107,56,92,92,234,132,92,109,55,140,115,39,92,87,108,105,87,11,20
 2,11,44,105,33,8,241,211,91,183,44,220,53,80,26,29,14,23,22,170,139,30,193,134,240,31,91,112,67,145,63,57,144,7,122,28,19,224,35,58,62,100,73,40,194,91,172,124,0,215,37,77,227,31,205,65,27,164,161,183,44,41,115,191,7,148,200,39,156,59,42,120,52,9,219,21,217,194,234,196,168,147,32,145,115,96,226,1,252,104,211,144,67,23,142,194,98,159,155,199,21,31,111,150,84,11,174,18,25,140,206,77,227,151,213,77,47,200,195,25,52,154,133,134,55,67,82,85,7,94,38,154,119,46,158,165,235,206,47,46,210,54,152,114,37,192,129,182,136,194,203,163,189,1,210,252,200,50,88,233,50,210,252,72,158,137,72,100,198,244,183,130,247,95,27,248,51,168,8,185,254,0,9,142,46,225,199,73,79,130,208,20,202,82,207,112,238,239,213,58,80,13,175,72,60,41,140,164,20,139,48,97,89,168,78,19,63,100,197,30,49,210,12,206,126,179,28,222,114,158,44,79,149,101,89,172,28,193,189,121,168,83,215,10,129,41,214,99,75,210,118,46,147,155,59,127,246,100,21,3,218,109,40,17,112,167,165,226,113,234,106,27,152,108,202,139,250,102,21,124,126,20
 ,152,189,230,40,216,113,94,134,200,56,95,208,193,232,24,178,103,193,162,41,9,77,199,124,75,213,239,35,208,244,218,172,244,65,155,73,163,1,127,130,0,129,243,79,101,58,162,106,217,115,236,36,131,192,119,39,113,213,161,205,176,40,97,251,42,236,0,147,48,110,174,65,136,5,190,251,188,76,119,51,186,182,40,182,21,183,125,120,39,240,217,21,218,21,48,4,0,247,145,218,139,245,41,231,21,184,58,221,117,218,131,178,223,224,173,253,200,21,32,222,193,57,38,40,20,176,246,1,78,28,30,147,225,221,133,38,219,92,45,37,61,216,172,238,20,74,173,249,147,115,49,210,232,19,75,218,90,47,234,83,140,34,6,89,4,4,163,40,178,244,236,95,166,173,215,166,150,255,161,151,223,76,233,136,52,96,201,101,17,214,42,255,41,92,74,220,129,146,87,14,167,94,102,60,208,47,114,113,135,169,234,48,154,134,11,206,25,103,172,183,75,85,41,102,229,234,103,45,226,136,230,69,136,154,157,243,212,118,141,254,62,82,162,78,204,114,30,182,143,57,107,42,74,36,245,63,205,107,86,75,161,72,158,201,1,221,22,142,237,58,171,19,67,77,3,145,124,1
 51,3,210,146,196,252,59,28,77,41,157,205,110,20,186,198,67,243,137,78,113,193,85,80,169,207,210,56,77,176,226,189,151,102,12,251,66,187,58,80,169,31,77,242,207,86,150,98,73,159,149,26,126,233,252,175,87,68,68,111,75,16,146,147,139,71,112,38,69,119,97,219,115,228,7,130,127,18,221,13,7,153,162,7,153,58,125,240,67,149,57,65,7,121,16,52,225,223,108,118,46,175,80,136,83,198,74,24,111,131,142,83,68,81,244,131,184,60,62,82,149,21,252,38,140,75,74,99,24,83,37,123,243,188,183,46,3,143,172,104,112,8,241,41,249,82,217,11,91,26,181,224,25,113,175,219,171,94,137,44,25,187,139,49,214,106,102,70,215,211,50,95,34,107,74,150,224,197,11,39,62,232,109,180,37,97,139,205,187,46,217,246,99,16,216,233,132,12,211,193,126,159,28,208,149,101,244,33,65,13,24,111,237,54,90,246,177,129,240,71,12,175,47,43,189,136,84,21,253,231,60,101,118,64,76,68,108,173,183,51,173,78,247,8,195,22,170,107,42,59,125,37,210,248,14,163,211,121,192,36,195,150,27,146,119,117,32,57,131,116,101,136,242,152,8,248,47,134,44,241,
 119,245,86,192,142,52,29,183,126,197,47,247,212,64,44,64,137,38,69,226,141,158,100,228,82,168,207,124,34,18,216,78,148,177,160,10,254,112,240,138,233,0,118,249,132,238,186,142,35,184,66,207,181,172,168,112,147,119,6,117,98,146,186,47,33,169,69,49,90,186,17,10,13,131,81,105,242,68,8,152,28,110,246,33,167,172,35,89,149,155,231,157,104,215,102,85,108,206,18,207,100,228,16,197,92,56,105,139,147,159,98,7,215,202,229,64,57,197,136,138,161,51,158,48,72,142,29,193,107,136,48,13,171,3,224,238,89,139,137,77,168,43,105,17,69,137,79,53,115,16,80,247,233,130,185,97,198,217,81,35,166,210,120,176,165,129,102,205,124,206,103,112,58,146,150,17,198,41,171,127,241,208,171,187,110,195,169,48,53,105,201,198,167,24,107,119,40,87,75,58,33,231,87,183,85,167,27,216,2,54,95,110,180,44,215,51,22,201,81,98,232,18,75,81,43,162,204,164,194,154,206,40,50,136,130,122,243,73,183,11,84,33,20,141,229,245,254,1,70,64,110,3,187,84,140,15,233,166,112,15,2,42,92,252,19,196,196,98,3,252,234,11,170,174,213,243,58,2
 33,128,83,85,159,50,181,115,228,21,85,14,5,72,4,120,152,106,48,212,225,239,172,23,56,51,9,1,179,178,220,71,67,26,178,116,218,7,245,42,1,187,140,76,142,199,85,203,20,217,121,137,162,76,142,152,21,61,198,236,170,12,93,82,227,137,67,58,226,36,38,21,99,78,255,134,148,81,65,121,56,34,102,71,147,122,238,102,124,92,128,82,163,169,87,157,95,183,50,127,39,222,74,162,116,79,138,55,93,91,207,75,161,70,108,66,54,42,96,209,188,108,13,15,17,59,99,5,102,15,21,136,182,70,216,230,71,159,82,178,31,85,60,192,61,51,149,154,239,47,183,136,86,102,78,70,114,156,223,138,43,65,254,42,193,112,22,47,97,83,240,105,122,118,252,175,64,136,93,134,251,185,109,207,228,36,168,86,86,63,171,211,25,166,227,74,209,172,188,37,85,40,133,239,64,143,213,148,166,96,90,214,36,105,18,120,207,172,158,219,28,40,18,45,186,244,170,248,178,34,112,63,117,7,144,77,235,176,13,127,212,46,20,228,72,238,99,116,113,15,225,15,113,64,217,254,86,127,204,54,101,171,245,11,79,43,249,217,127,77,11,50,140,77,144,118,153,144,72,8,99,74,54
 ,44,99,237,85,126,72,241,125,28,189,186,33,157,40,19,145,163,242,148,36,167,61,112,254,62,221,149,19,135,68,196,147,130,116,164,2,248,197,223,215,3,122,109,93,86,131,234,120,238,84,52,218,232,32,140,144,65,206,221,129,191,246,169,30,207,87,246,180,114,201,109,97,51,5,84,69,238,111,37,194,193,250,248,66,61,45,23,131,1,57,37,124,46,106,186,125,219,153,129,44,253,106,162,167,78,92,191,191,180,179,57,17,167,22,182,230,218,188,253,35,123,125,205,201,206,57,226,140,182,119,66,166,48,137,159,92,59,138,135,109,248,36,146,242,210,1,99,2,75,34,215,12,90,80,54,18,221,202,117,162,120,100,187,48,46,162,154,20,29,131,159,184,109,83,235,199,233,121,90,20,14,177,157,174,63,190,186,224,196,150,38,146,177,67,241,8,196,48,230,177,18,231,177,152,11,249,142,112,11,226,138,157,168,219,55,203,97,189,13,231,48,12,85,160,163,223,2,69,179,100,245,243,211,48,237,83,123,187,15,186,247,81,71,234,70,115,108,200,143,117,114,228,25,61,154,94,110,66,173,201,146,175,163,5,9,72,145,252,245,17,184,55,87,20,62,
 40,3,212,187,68,164,135,49,37,248,180,83,185,121,112,173,51,255,211,102,144,92,184,201,84,108,185,6,180,253,37,171,33,121,48,15,36,0,72,194,138,43,202,142,126,86,134,147,100,39,163,88,79,201,88,7,24,171,228,119,218,89,14,105,120,217,84,20,120,157,66,72,145,163,26,31,61,131,202,206,20,191,130,37,66,49,132,226,240,207,77,121,176,255,11,134,60,112,60,93,5,219,209,209,191,152,33,121,158,150,19,119,198,0,224,120,100,129,137,252,89,46,25,207,200,44,190,228,101,108,62,52,126,111,44,111,39,39,189,188,242,240,96,80,121,8,61,190,227,186,8,148,6,151,248,241,56,145,149,154,47,150,110,62,118,125,34,19,59,68,251,3,246,220,244,126,37,59,42,119,199,153,181,251,116,77,195,221,113,52,44,67,69,185,189,184,178,226,6,127,202,77,98,180,245,226,195,225,147,117,234,152,105,1,57,134,252,132,164,189,227,53,74,150,141,81,239,69,201,139,101,255,232,93,162,101,231,146,59,229,167,123,61,30,118,50,74,203,188,98,131,225,178,27,117,96,77,95,118,113,123,99,74,234,181,95,147,206,119,74,103,156,245,175,68,176,
 219,133,164,41,202,66,125,24,231,104,161,202,54,62,78,228,133,21,170,58,212,116,198,105,228,89,179,200,120,125,226,1,155,188,10,32,131,126,28,0,253,186,96,237,68,171,54,146,238,196,128,81,119,174,51,130,7,109,114,4,83,249,51,232,250,131,227,180,41,234,239,142,248,209,105,253,145,80,180,144,174,233,9,116,229,178,184,176,33,207,91,166,83,20,61,143,90,82,245,66,226,189,184,48,43,13,23,233,37,79,206,64,24,15,41,201,255,98,219,216,151,29,149,33,247,133,44,249,180,154,75,244,108,242,26,105,249,46,176,208,147,89,232,7,195,43,34,110,14,78,84,56,85,220,141,13,171,195,98,123,147,47,53,142,170,39,179,212,90,77,130,146,110,118,23,181,34,21,119,224,226,14,212,20,39,200,15,205,165,182,179,194,0,187,226,209,141,47,36,27,222,1,152,170,184,59,115,25,200,113,19,172,213,59,7,64,24,72,27,238,62,56,117,15,13,175,164,89,24,164,107,146,130,91,109,49,4,81,190,178,205,76,150,104,173,196,204,90,115,133,145,117,241,254,186,171,101,76,185,6,183,21,86,153,189,91,26,250,122,14,29,159,108,241,254,82,85,24
 ,83,193,29,15,226,215,23,57,230,244,19,9,254,142,201,15,139,157,35,210,174,211,7,122,149,228,81,223,199,179,155,128,106,166,41,38,56,229,37,181,200,10,26,234,104,119,77,243,74,60,109,250,26,190,11,204,46,76,190,218,94,140,92,239,242,38,185,191,153,223,234,171,107,53,212,166,107,22,26,242,242,42,72,245,204,182,202,208,176,88,151,250,239,223,207,149,53,198,144,7,91,151,86,229,4,61,156,90,141,167,120,22,193,248,135,123,65,28,101,208,32,80,77,110,70,110,217,181,10,83,98,200,44,105,253,33,205,187,64,14,58,10,158,183,135,116,151,49,123,171,224,22,132,87,65,123,11,49,47,82,72,97,73,255,144,87,194,150,47,177,220,250,131,221,220,208,224,176,131,103,224,207,194,107,46,137,49,216,178,232,133,191,190,209,40,39,218,56,15,232,117,141,228,52,125,0,125,50,189,47,120,101,169,242,84,201,57,81,51,230,207,49,42,201,32,23,86,177,19,67,66,102,220,247,36,143,201,171,115,144,151,76,226,88,252,14,174,35,223,245,253,108,174,221,110,214,175,49,71,40,45,170,99,8,252,241,245,68,139,144,254,228,238,53,20
 6,92,5,166,122,161,152,51,192,85,189,147,180,199,159,183,145,35,108,57,199,173,103,100,165,230,61,110,184,26,96,230,101,54,106,246,230,213,26,55,189,9,193,95,207,183,47,250,137,245,38,102,14,122,83,17,132,45,90,139,146,54,34,200,214,248,237,200,27,143,79,168,172,164,210,255,54,108,30,68,255,123,200,9,147,39,145,192,64,114,89,246,87,140,111,62,92,3,93,198,77,136,44,141,182,95,255,157,39,77,70,14,208,204,224,225,38,203,131,243,207,171,25,226,67,50,144,4,133,65,96,85,29,138,133,160,232,101,111,182,170,243,225,180,12,210,18,191,3,161,255,178,182,175,117,57,195,154,237,23,45,148,118,189,46,241,96,211,179,246,109,37,147,94,50,29,96,252,180,252,63,128,34,203,247,79,226,220,190,5,11,36,125,255,34,3,130,30,128,76,243,242,112,75,195,3,170,90,75,59,247,29,81,198,90,105,192,129,10,22,5,195,230,16,98,221,130,119,67,27,103,62,94,28,21,191,42,122,100,138,134,156,109,76,95,209,102,125,237,28,31,197,36,139,224,197,32,159,82,206,14,176,235,63,6,219,28,223,85,123,140,182,141,91,115,222,235,19,
 45,148,15,21,196,67,191,44,63,60,5,50,202,174,176,229,214,250,178,221,31,208,32,124,79,81,129,241,216,150,95,66,89,112,27,91,59,132,213,18,11,186,94,229,83,165,48,212,63,39,43,207,252,32,229,15,153,222,17,98,207,244,241,50,185,67,84,91,77,240,26,73,212,25,10,243,156,198,184,123,138,220,26,70,53,213,182,140,133,246,148,183,209,51,198,135,170,251,254,100,206,14,19,150,11,177,221,136,176,34,190,57,71,170,221,188,226,198,3,235,232,231,49,219,116,186,93,251,245,46,239,4,192,138,63,194,121,96,142,86,76,208,78,44,102,62,188,136,137,43,112,222,9,116,94,18,54,122,203,79,5,154,68,39,61,215,137,122,246,25,158,52,80,200,3,72,5,101,54,246,51,170,128,63,233,163,211,98,93,112,17,57,74,94,166,53,200,60,54,227,23,97,232,9,63,148,200,164,158,156,197,88,10,245,220,246,74,162,240,82,80,137,127,86,253,12,153,67,134,120,140,1,174,164,21,176,77,69,123,138,241,128,71,169,228,91,56,237,148,177,138,93,11,59,231,115,172,74,24,70,232,189,177,31,161,251,30,227,212,128,214,100,39,81,120,4,87,218,207,240,
 145,221,233,222,135,69,147,96,152,102,187,2,5,240,133,81,135,184,244,202,214,20,82,40,46,25,67,168,247,189,24,159,181,1,54,166,209,50,148,102,83,20,66,254,24,32,237,49,143,143,28,3,46,129,119,76,150,77,179,123,19,24,240,94,133,78,139,160,34,183,160,234,81,212,115,141,157,138,180,11,138,29,223,34,159,84,115,221,224,11,129,130,13,99,224,145,161,170,109,208,72,198,17,217,178,97,221,43,178,245,194,179,199,152,198,222,173,67,51,174,136,23,80,149,88,22,87,51,55,153,104,146,233,152,161,208,4,198,227,4,236,223,162,148,30,88,152,104,100,152,192,50,90,4,249,103,34,187,176,130,11,14,94,3,115,161,7,71,62,32,250,147,24,231,37,32,51,196,74,28,122,189,37,90,10,31,23,157,27,2,67,37,44,193,156,113,119,119,48,190,55,32,89,208,105,57,248,142,91,37,215,35,66,61,198,63,62,61,174,140,188,136,118,101,115,76,166,142,247,105,209,239,64,191,14,13,13,226,117,229,5,75,103,190,11,200,189,194,200,199,7,81,62,155,188,45,106,113,184,48,167,157,10,217,132,226,33,172,242,121,104,156,172,186,212,144,144,141,2
 43,30,7,255,77,143,254,124,160,108,162,179,217,86,39,189,142,76,22,1,183,103,186,189,208,98,77,9,61,11,138,203,71,240,253,71,106,129,38,17,33,133,12,106,236,84,31,31,40,108,94,6,219,204,1,223,167,133,132,31,148,130,225,80,195,212,56,37,9,208,48,131,76,38,205,64,227,50,152,187,173,56,95,110,190,211,183,83,246,173,85,70,9,123,32,229,25,228,42,78,35,76,223,240,29,243,156,132,224,119,232,171,99,116,74,12,60,46,77,59,242,115,199,218,51,190,83,206,174,127,146,68,10,39,172,121,243,186,61,21,92,183,35,255,72,166,57,53,46,161,66,151,12,83,208,82,218,73,154,166,18,38,7,184,112,178,142,169,251,13,252,50,243,142,160,58,36,191,40,189,234,38,179,148,165,76,240,240,19,142,144,241,204,140,208,133,69,107,246,27,107,74,28,84,210,18,252,177,88,239,243,43,5,35,86,152,147,5,225,50,62,115,201,24,240,191,123,93,244,166,149,35,125,0,228,42,250,182,66,72,137,196,93,10,21,114,206,22,131,245,41,35,166,45,250,102,81,250,93,255,144,233,88,40,84,64,148,142,8,130,144,108,75,202,21,150,132,247,54,227,191,3
 1,148,220,215,95,12,33,213,188,172,238,41,211,141,7,87,106,167,93,225,143,11,102,239,63,5,27,96,37,139,37,53,109,237,192,172,190,116,72,34,112,134,33,31,200,195,59,46,64,7,97,167,34,179,225,202,175,39,89,102,168,255,21,178,222,92,204,179,12,235,5,93,32,177,226,122,125,142,83,23,135,183,57,82,102,211,232,30,177,202,97,139,107,83,205,137,161,225,238,106,141,245,21,208,233,8,146,199,224,76,50,225,84,11,228,70,45,7,202,217,177,108,36,144,41,225,103,15,213,29,61,194,220,166,73,238,227,246,103,121,49,52,25,14,111,246,52,145,44,197,217,30,148,213,151,125,29,101,180,22,76,147,226,85,7,132,46,22,169,246,211,86,184,101,35,14,73,82,237,86,172,244,48,114,207,168,100,188,89,40,179,165,114,60,237,182,243,243,249,138,108,252,114,200,122,86,48,241,123,207,111,173,13,250,122,33,11,172,160,7,248,202,74,193,201,83,42,114,117,60,210,120,78,136,139,9,190,113,211,145,249,161,89,13,69,208,25,87,182,84,184,174,11,73,227,85,89,239,92,106,203,241,183,178,233,11,90,46,62,23,88,117,30,237,100,73,81,22,
 185,185,15,105,142,172,162,220,183,10,173,225,166,190,255,143,127,144,181,237,137,18,147,219,119,47,243,53,111,18,28,16,25,157,15,70,186,122,196,184,30,50,101,207,54,178,104,42,36,8,233,159,18,133,169,50,22,248,81,12,140,152,118,181,91,228,192,191,202,104,128,121,202,46,147,212,130,13,63,229,83,123,100,156,3,58,140,177,254,239,201,183,151,164,202,228,106,130,61,195,100,0,173,205,226,201,75,156,89,206,228,160,83,18,109,189,207,8,76,84,143,124,211,248,35,119,247,149,21,101,202,186,12,111,53,23,235,127,63,169,191,6,110,148,141,209,16,214,135,37,49,157,127,210,5,129,18,40,182,3,129,165,72,139,61,235,207,132,45,104,121,163,87,185,33,232,91,45,172,77,37,153,69,233,18,22,66,166,140,102,121,42,128,174,39,179,203,243,40,101,4,164,88,74,229,10,135,116,135,88,54,142,113,77,228,196,203,58,147,57,229,38,49,96,72,240,214,159,98,181,188,249,94,187,232,206,209,101,39,217,57,50,83,79,40,130,79,149,0,58,7,11,105,195,12,28,240,33,52,244,118,238,36,169,165,87,196,83,88,131,237,199,177,232,224,1
 43,254,202,90,195,129,77,48,10,200,146,137,67,125,189,152,228,215,58,202,76,221,44,86,49,173,225,99,51,90,218,214,55,151,189,105,44,88,82,134,94,253,180,180,103,105,142,207,15,148,103,63,64,117,22,209,68,255,78,46,56,111,13,206,51,223,147,24,212,167,137,108,127,122,3,171,224,181,86,32,240,76,90,156,95,72,29,61,130,154,4,70,181,15,182,80,119,61,193,47,83,174,51,14,147,205,185,19,185,107,247,86,7,223,21,75,214,217,110,166,162,249,29,236,165,56,156,41,198,147,40,125,223,140,38,189,184,248,58,96,169,31,148,168,117,134,100,54,246,245,64,153,220,125,88,20,209,88,129,251,55,123,33,200,121,96,17,207,78,30,20,42,144,222,217,122,128,60,239,53,28,82,245,107,209,24,147,67,173,136,222,160,98,237,167,94,149,16,182,87,54,16,202,118,159,99,31,20,99,227,46,203,242,3,195,153,184,41,54,57,99,166,91,172,231,35,233,111,234,38,193,3,252,175,156,75,217,185,241,98,225,32,17,34,59,9,236,183,15,148,111,140,93,125,114,225,149,234,166,113,58,118,66,188,137,196,101,35,26,112,22,103,239,72,31,239,102,249
 ,151,50,92,95,35,164,187,168,106,123,227,68,226,187,132,19,22,50,101,42,218,22,61,213,188,173,19,197,3,9,242,147,8,151,187,62,127,81,219,122,178,11,237,102,203,83,237,226,64,35,30,164,192,102,53,193,169,123,253,226,24,8,118,229,99,106,238,201,4,72,64,24,126,36,156,13,65,9,205,145,36,40,170,188,125,92,147,241,51,171,142,74,75,222,5,17,20,231,52,128,61,243,121,5,123,15,143,167,12,224,174,199,122,61,187,111,183,17,137,47,10,121,85,110,6,233,85,11,130,231,92,152,202,54,65,154,73,212,107,234,103,3,228,130,152,30,248,129,68,74,171,108,209,123,130,212,29,135,131,205,179,211,183,244,95,229,87,219,39,145,215,102,197,179,73,89,138,241,7,215,61,3,75,43,185,191,75,198,184,248,120,88,119,186,201,47,177,62,111,241,237,33,147,49,119,111,38,87,59,79,215,220,135,26,45,203,73,195,93,50,110,218,227,7,42,107,161,208,10,30,108,78,151,124,248,142,25,96,227,235,168,43,122,35,229,5,232,158,8,234,213,84,155,182,217,117,39,131,81,57,17,28,154,31,114,237,215,47,20,9,104,214,91,39,76,24,50,164,120,40,4
 9,62,248,154,182,69,169,107,4,48,127,21,107,70,195,229,122,26,98,172,8,198,61,174,32,197,2,29,144,41,229,83,253,221,154,56,173,221,240,38,133,109,247,41,193,85,3,56,216,143,0,204,73,155,84,151,165,135,240,7,211,124,118,133,41,224,238,42,123,194,151,43,195,138,15,122,234,228,51,242,2,69,91,118,137,210,116,149,208,168,1,192,12,11,133,74,176,66,100,38,187,178,90,180,163,218,26,4,141,204,94,170,37,24,91,68,5,13,87,167,222,30,45,1,89,100,145,8,60,206,239,113,98,54,239,44,80,189,60,230,56,31,172,197,178,201,1,231,228,54,81,46,51,135,137,46,33,204,80,101,82,177,192,225,219,135,132,98,180,63,152,221,153,92,104,192,125,0,200,119,162,168,44,163,221,45,40,115,143,209,228,156,148,145,34,8,28,13,105,180,115,227,119,141,165,115,77,44,229,31,50,16,20,219,114,244,155,121,222,135,36,9,138,156,1,208,88,131,157,103,215,53,86,206,1,206,175,234,143,150,71,88,249,60,30,98,211,182,248,80,0,142,255,228,51,8,123,60,37,75,61,31,81,202,92,81,48,151,107,54,199,137,118,201,181,11,14,194,86,120,47,65,158
 ,220,182,102,54,196,39,78,100,223,70,70,220,11,43,211,129,71,233,104,179,228,123,75,193,141,43,216,183,98,222,223,125,183,101,76,190,247,187,177,228,149,17,153,83,224,103,49,26,77,146,173,45,4,138,83,227,169,109,234,24,201,96,100,33,188,81,248,46,212,149,160,26,249,89,206,128,15,103,235,241,252,98,159,167,32,81,241,180,164,92,182,161,212,98,130,46,33,192,117,24,109,198,40,242,139,226,51,115,211,185,33,152,164,159,169,86,86,218,6,212,147,122,163,74,29,9,143,160,21,236,75,196,46,148,240,198,91,155,211,106,50,225,170,127,92,59,137,10,137,112,220,173,41,175,195,255,2,77,244,103,117,97,139,126,70,153,108,199,90,180,131,203,109,222,167,138,130,14,218,132,223,65,166,225,53,233,240,26,123,204,12,90,193,12,100,209,187,46,217,99,241,164,129,73,80,236,97,133,40,195,67,102,183,104,128,39,37,34,6,8,163,203,112,215,97,88,254,148,38,211,69,236,208,126,175,223,47,183,207,229,138,49,95,197,119,168,80,247,228,122,138,235,60,244,33,35,54,44,136,179,54,182,105,69,150,201,174,186,224,230,224,133
 ,1,154,167,248,95,82,109,146,208,116,34,235,148,179,81,37,151,94,99,110,42,10,11,184,132,41,3,253,218,3,158,109,157,149,210,69,96,10,142,41,92,236,82,181,195,57,21,66,46,75,70,111,161,69,99,231,216,176,171,132,87,203,184,168,31,154,232,239,1,95,226,241,166,244,198,82,83,189,66,12,3,139,13,32,213,113,87,36,103,171,141,205,65,107,54,112,160,43,150,220,84,34,105,227,187,242,80,163,190,43,36,150,181,147,186,253,155,2,1,97,85,41,186,161,133,77,37,154,75,120,246,211,233,234,13,156,159,179,59,144,202,40,193,207,7,5,135,65,199,217,44,89,1,188,196,178,161,193,134,31,189,52,84,151,156,215,60,8,232,79,211,146,190,6,50,196,71,242,149,179,75,39,82,203,27,63,233,194,240,84,2,160,129,130,75,198,229,75,203,71,198,229,64,85,14,143,192,242,36,195,202,69,49,143,16,5,45,30,16,245,123,191,34,20,76,200,119,26,145,115,19,184,12,9,212,1,237,244,173,231,100,216,60,90,38,253,228,156,147,23,72,112,231,234,100,95,99,13,217,238,154,199,148,105,130,74,180,196,166,153,168,121,42,196,68,181,91,32,252,100,1
 6,49,82,181,123,99,29,241,195,4,107,244,77,210,239,14,224,72,13,89,131,200,41,74,4,3,196,31,88,144,73,198,94,154,226,226,226,54,129,187,218,147,116,204,239,62,56,45,36,236,114,16,156,248,211,89,63,197,183,202,11,220,198,57,147,190,250,19,108,215,163,24,248,139,225,30,121,207,34,81,185,204,207,207,136,94,58,56,143,32,97,75,90,113,62,188,180,211,20,203,110,246,163,162,98,160,145,4,152,239,73,70,211,73,55,84,95,55,122,208,252,55,101,193,170,135,52,242,98,124,74,170,244,217,204,9,27,243,134,249,10,147,43,71,219,104,180,147,224,148,113,191,148,89,15,223,56,92,131,212,136,143,19,223,237,214,166,43,181,108,181,41,103,230,160,36,35,111,119,99,97,114,77,205,161,52,18,205,139,34,238,153,128,179,104,112,140,251,73,218,157,22,141,151,110,142,172,79,79,172,228,140,214,123,86,116,149,154,57,166,34,228,98,85,39,238,154,60,120,178,196,90,129,40,82,179,60,252,118,26,131,212,240,51,2,122,87,157,14,48,68,37,41,188,26,222,12,184,30,216,233,144,18,51,245,61,140,217,106,102,111,75,145,9,61,238,19
 1,128,227,222,16,107,160,196,123,225,1,230,104,143,232,230,99,111,219,99,127,5,70,27,85,39,16,88,97,197,40,204,162,127,245,235,38,219,209,255,236,52,119,134,75,46,161,22,246,253,231,115,121,34,118,240,208,88,66,114,105,72,111,15,86,139,98,63,174,201,51,244,251,50,118,115,45,171,156,134,85,78,196,91,137,48,110,35,39,57,144,88,233,177,77,43,127,147,74,76,59,218,106,65,27,181,1,43,178,77,109,69,22,163,139,177,181,211,251,41,155,198,127,165,245,190,78,101,105,249,29,194,87,163,178,162,228,131,213,241,145,53,120,248,171,26,100,82,116,179,143,190,154,76,98,40,140,183,30,144,139,163,178,240,242,213,156,68,0,44,115,33,139,139,126,99,222,116,6,239,226,113,129,204,177,4,251,239,32,30,52,165,112,60,27,202,16,139,61,227,12,8,241,148,123,156,154,202,54,217,244,93,115,152,55,147,242,225,142,5,193,175,144,62,222,122,85,192,226,255,206,46,155,233,223,57,11,77,163,83,27,9,251,112,151,154,8,192,131,186,175,186,109,215,133,235,74,4,159,192,155,246,72,167,3,91,82,139,210,154,82,210,40,36,236,17
 8,31,130,104,14,63,225,40,95,190,200,152,203,42,112,105,20,159,247,238,193,155,210,77,235,129,111,175,173,136,200,166,72,168,122,75,210,186,208,125,8,133,113,80,119,172,236,210,34,9,243,169,241,255,200,16,239,195,141,26,148,206,78,84,226,199,206,74,86,20,219,109,93,185,81,165,231,180,20,126,16,144,26,214,102,251,226,244,122,68,45,35,118,98,127,39,15,226,9,95,215,99,245,30,66,11,185,224,30,244,205,124,39,255,72,221,213,44,140,63,132,43,44,237,65,80,117,98,242,142,119,212,184,233,74,93,7,71,130,162,187,108,141,129,126,6,171,124,31,85,53,142,121,40,211,224,91,62,184,4,24,227,118,112,31,18,199,152,98,243,223,36,176,64,45,234,45,157,72,132,214,179,247,26,252,162,83,113,223,173,180,56,45,168,187,92,244,105,227,117,235,207,43,231,44,220,10,51,183,107,235,128,111,119,88,30,167,19,0,50,215,96,43,157,224,161,217,144,213,135,93,44,246,86,18,87,110,0,70,71,147,187,1,56,210,173,163,138,21,23,67,132,76,61,155,166,101,212,221,83,219,10,239,165,178,54,250,170,38,11,37,4,75,32,170,174,189,0,
 202,222,228,91,210,77,87,35,46,41,12,212,33,243,213,148,29,95,221,137,222,12,63,6,108,200,81,40,247,64,187,32,185,175,164,238,215,118,98,115,58,242,48,170,222,211,144,182,89,108,67,167,110,68,148,66,166,38,114,82,147,191,107,86,183,178,250,9,4,127,14,109,22,252,241,32,108,175,91,68,235,232,32,130,14,243,74,84,84,58,116,13,214,161,91,76,196,136,99,242,52,41,239,80,161,159,246,167,43,153,146,215,164,123,24,221,71,213,79,56,26,175,72,8,93,90,136,83,37,175,6,253,47,24,145,92,67,235,160,23,51,243,118,226,204,255,80,142,65,252,125,128,63,193,3,107,73,193,116,122,138,197,211,107,200,176,106,53,40,205,161,233,128,31,96,163,115,115,233,161,157,71,23,13,188,130,199,14,112,176,152,10,111,209,0,231,248,43,73,193,244,83,38,69,218,199,123,187,121,183,192,198,74,65,110,74,30,64,84,71,36,78,124,215,221,180,193,51,100,50,81,115,33,62,204,196,38,26,129,223,90,217,96,212,162,53,52,65,53,215,67,42,53,198,71,183,191,185,244,121,255,14,219,233,70,175,77,251,0,48,162,143,44,3,15,15,226,176,240,187
 ,97,210,255,110,105,201,68,158,83,107,163,111,151,238,43,187,255,226,255,2,130,53,56,122,34,131,243,135,222,155,91,10,254,184,189,37,22,240,252,221,179,10,6,237,28,247,122,151,43,252,240,27,5,249,120,208,254,9,46,112,221,11,228,161,145,181,63,81,136,155,151,34,239,22,169,0,213,76,21,252,38,248,18,218,152,82,19,89,81,131,244,95,163,115,97,70,184,225,184,104,101,33,75,76,213,71,245,145,232,60,14,2,47,81,194,185,125,38,54,216,126,233,174,23,93,23,76,5,146,140,26,254,252,115,109,203,214,46,146,26,106,41,103,54,203,49,127,82,234,151,48,203,131,203,170,146,22,161,112,76,142,206,4,143,245,142,139,124,189,75,165,90,162,190,30,219,24,194,229,223,201,44,127,147,27,212,139,62,43,54,201,132,35,254,147,76,96,100,24,4,62,135,156,220,37,21,19,33,52,58,175,48,73,146,25,214,205,236,34,237,160,109,94,161,127,110,35,173,203,230,41,127,130,40,39,230,133,127,27,13,122,7,93,93,165,252,66,105,71,253,101,139,56,235,30,56,3,232,161,119,18,29,42,52,142,113,215,21,254,243,122,97,121,98,70,252,205,4,14
 9,122,20,28,199,9,206,183,125,158,74,254,94,242,248,140,249,199,250,161,218,154,237,73,57,58,118,85,58,173,222,201,84,64,72,188,127,173,35,78,230,181,8,196,19,67,214,217,147,60,90,117,126,206,44,133,236,120,61,199,207,210,119,89,233,89,7,181,219,29,250,153,83,88,138,113,211,39,99,199,47,139,203,173,14,171,47,99,159,68,208,184,126,160,26,67,102,238,75,143,232,251,26,178,233,168,168,19,78,125,86,38,131,29,161,238,122,49,142,103,87,206,82,21,132,246,111,131,195,224,62,220,55,129,8,186,132,48,11,34,56,4,164,22,77,125,148,81,71,69,139,206,11,8,217,154,43,56,110,90,177,55,229,166,225,58,25,164,121,235,16,213,11,85,50,42,216,253,130,227,164,231,43,22,250,17,55,21,24,253,176,170,232,164,25,137,38,1,146,13,206,107,99,225,252,105,137,43,113,113,189,117,11,101,173,166,233,10,8,73,131,187,67,52,218,192,118,32,177,26,2,135,68,124,114,191,205,193,77,68,162,109,132,125,103,180,130,138,92,195,117,243,10,119,65,134,53,95,70,252,98,1,186,50,53,190,81,176,36,181,234,66,98,34,4,104,206,250,222,
 150,246,151,37,253,130,79,175,230,241,18,208,88,213,68,165,250,173,81,169,215,241,213,219,218,123,57,69,226,237,10,176,89,126,194,132,126,19,45,60,177,179,122,251,51,99,35,154,179,204,174,20,68,103,130,78,81,105,234,18,61,92,5,250,103,59,196,109,70,57,179,166,84,169,163,102,49,230,225,65,216,200,61,167,95,237,251,203,154,18,96,167,103,130,142,182,148,196,2,0,123,27,177,185,185,24,151,54,53,14,38,252,66,161,113,216,129,105,139,120,57,90,13,30,80,135,86,68,108,121,127,85,207,5,73,74,25,169,244,149,210,2,145,233,219,238,153,147,107,227,12,97,63,102,248,135,213,182,113,214,103,43,200,235,116,212,65,26,233,85,122,16,211,85,6,157,215,59,217,124,198,70,228,178,251,28,45,11,117,228,157,157,79,191,106,128,133,61,54,17,2,125,181,158,255,238,91,196,226,84,120,50,167,54,174,11,144,124,147,168,181,179,13,58,112,92,100,15,10,15,211,107,78,255,189,207,99,173,181,149,6,142,219,152,206,251,61,41,69,178,74,8,135,212,172,100,140,49,243,51,156,234,37,123,110,108,223,127,23,239,121,171,252,212,1
 31,11,109,66,244,38,164,177,243,164,191,86,228,30,63,52,9,117,53,117,152,187,99,83,217,172,154,74,77,132,243,156,192,27,5,103,75,70,185,5,39,137,206,102,58,238,214,174,64,156,14,203,40,177,177,142,76,163,87,45,24,125,201,55,72,228,120,204,249,10,212,134,191,253,144,144,99,140,127,162,77,140,88,161,114,167,122,193,249,25,142,70,158,44,160,255,90,190,216,50,16,40,29,234,108,61,253,247,95,134,199,61,8,123,62,235,74,156,110,193,17,213,222,28,222,76,242,199,96,9,254,224,188,142,154,12,12,208,86,78,142,208,52,60,43,175,149,110,3,175,204,181,225,167,82,161,0,254,217,126,243,94,135,44,204,248,40,212,252,130,138,125,245,172,85,190,131,81,255,2,134,133,47,187,201,232,195,169,155,55,196,191,221,208,50,111,210,76,25,245,220,143,170,68,186,66,214,207,148,253,95,203,160,41,30,198,53,148,123,86,77,103,195,42,10,68,38,72,16,11,130,114,92,195,174,225,250,156,42,39,54,121,31,54,151,46,179,66,164,68,87,165,109,232,136,253,198,62,175,168,37,190,108,163,24,209,235,133,148,8,59,248,105,60,114,146
 ,105,83,89,215,90,12,176,218,18,51,99,96,44,217,247,125,178,97,3,173,87,189,165,107,105,189,62,38,202,44,36,161,228,149,122,21,32,204,106,205,216,125,142,5,192,232,201,165,252,30,191,138,104,127,231,110,150,141,122,250,230,153,215,227,85,131,187,18,132,160,203,70,41,223,158,73,176,181,119,220,173,140,178,202,99,209,213,198,93,132,4,80,224,203,83,54,63,98,171,93,208,74,63,191,67,230,204,68,104,61,205,242,19,230,87,12,68,213,214,153,123,55,231,219,54,65,15,242,15,60,70,207,60,40,13,220,4,17,103,222,153,225,177,42,214,15,73,209,203,72,222,205,148,242,222,9,16,136,227,124,33,15,200,139,69,29,206,20,184,231,129,72,225,191,222,27,90,215,235,75,104,233,247,130,124,255,249,208,161,216,156,52,128,186,7,124,218,166,241,85,118,133,111,157,197,141,111,27,11,108,49,136,48,121,5,206,222,94,154,166,180,144,162,163,12,79,255,34,236,195,131,75,46,167,59,238,100,59,67,78,60,95,11,213,64,215,252,113,50,78,199,67,208,40,22,56,153,242,153,135,11,27,121,105,71,87,56,231,237,62,123,190,237,47,81,1
 51,119,120,42,4,121,198,139,65,189,33,45,136,106,124,140,255,110,83,203,0,144,84,128,37,241,76,59,120,110,249,119,96,15,44,177,27,11,178,102,88,132,74,97,177,120,76,108,123,193,90,220,82,96,242,91,106,237,111,32,75,124,155,120,77,78,246,117,81,51,131,233,161,12,250,147,133,9,18,18,66,102,165,189,239,182,23,182,147,43,32,6,88,60,242,47,127,38,215,152,123,198,174,184,90,98,38,199,37,7,17,251,189,93,145,162,8,233,32,201,213,51,11,96,95,251,19,123,131,134,155,79,58,141,245,250,160,238,140,128,196,19,213,232,184,239,52,86,48,33,242,181,132,188,169,20,104,105,114,101,175,12,111,24,72,138,24,161,119,201,247,156,23,250,218,44,161,151,201,78,88,216,35,201,33,41,241,76,32,99,254,252,211,192,255,61,101,110,195,199,85,85,32,47,154,120,231,124,218,11,60,218,140,207,76,29,169,23,217,76,196,70,155,4,133,251,182,5,147,108,49,199,175,28,8,171,72,65,77,91,197,27,100,23,131,28,151,255,203,52,139,242,135,178,122,15,162,11,12,250,59,225,156,177,159,149,107,33,43,88,64,48,24,221,154,94,101,22,80,
 100,148,168,219,8,159,196,143,10,244,186,209,212,71,68,94,120,72,126,210,71,189,124,51,46,206,93,39,90,45,127,57,168,81,241,189,68,174,129,48,17,62,76,210,41,188,249,167,66,238,105,73,165,168,44,202,173,16,173,96,11,25,107,72,133,223,32,188,182,99,144,127,70,106,255,3,159,250,198,43,60,83,89,249,227,56,184,140,252,196,57,177,2,175,11,151,234,160,108,126,136,44,117,149,167,244,120,222,208,11,245,161,142,250,126,167,118,80,18,202,8,44,218,134,19,5,105,251,216,81,85,121,223,178,105,247,68,221,170,125,225,219,120,230,101,156,160,253,73,213,161,150,44,69,250,222,180,150,44,163,232,221,178,141,232,235,45,201,196,195,181,58,241,135,31,150,211,139,143,121,4,116,71,255,139,90,75,254,66,102,52,154,239,182,229,116,159,144,44,110,34,55,160,121,157,10,219,76,68,60,192,241,74,138,63,187,49,213,15,226,219,84,173,53,59,113,225,35,239,29,224,194,31,141,54,110,149,145,65,122,45,239,138,75,214,223,222,43,147,212,137,7,31,36,148,251,160,90,11,131,154,59,33,89,248,17,200,42,230,207,122,237,17,36
 ,51,45,251,20,169,123,55,99,179,170,220,99,17,113,205,142,236,190,202,53,183,190,126,167,169,226,193,48,27,153,46,180,79,248,46,202,225,85,0,138,19,98,244,112,64,58,213,0,149,194,210,37,56,7,178,241,191,218,2,72,205,53,66,41,97,112,102,203,1,163,168,12,117,0,239,63,149,189,125,129,254,183,130,159,172,134,158,255,3,228,172,84,252,67,99,211,208,149,178,155,146,129,115,12,136,149,249,171,131,31,218,148,155,56,81,236,27,190,224,216,237,164,232,61,32,76,105,10,70,95,18,211,119,40,128,21,229,2,230,104,119,87,227,99,136,97,28,221,33,225,238,183,24,201,224,6,120,159,181,207,16,216,1,123,82,172,114,3,76,20,175,199,226,241,85,234,151,255,80,71,85,254,88,222,44,78,73,76,157,116,251,189,157,28,32,71,28,113,123,38,154,212,209,180,88,83,85,39,191,210,30,215,132,12,79,210,129,64,106,68,95,102,29,238,79,56,180,49,238,128,235,88,208,182,12,174,1,75,142,86,140,21,177,249,255,209,160,154,248,52,222,216,46,19,237,192,203,50,69,40,38,83,86,225,202,88,230,14,217,178,247,91,186,237,204,138,30,34,7
 6,176,83,113,55,225,99,183,134,131,169,147,28,127,243,128,158,139,155,109,226,193,36,134,138,198,207,45,29,192,212,209,170,171,247,109,30,87,143,155,242,228,133,178,185,200,152,145,26,225,157,87,254,200,150,21,66,100,76,60,149,60,1,223,1,225,146,3,26,167,129,212,194,224,120,205,106,202,175,105,36,33,107,141,98,104,0,97,79,245,212,175,53,81,55,247,31,205,200,83,11,71,8,109,197,231,89,101,76,36,24,170,241,201,58,76,75,65,177,70,38,111,4,167,5,180,78,197,34,24,143,42,12,60,13,206,134,46,44,150,237,150,63,73,117,40,42,24,48,138,160,253,197,144,185,118,7,40,255,156,186,226,123,57,222,159,253,40,190,10,53,71,53,247,45,8,237,158,72,242,12,114,120,53,109,40,249,243,122,5,183,66,215,34,208,167,112,42,119,102,90,193,207,199,19,194,208,162,145,94,156,236,74,31,31,23,163,6,216,245,240,29,138,29,197,23,25,214,163,134,247,75,21,224,179,240,187,169,228,95,80,247,84,119,226,145,172,210,90,223,173,124,65,176,232,244,166,237,12,57,111,71,140,237,17,188,216,83,176,25,9,122,149,181,57,77,66,182
 ,33,38,222,29,215,36,104,252,84,167,156,148,153,196,147,58,11,196,238,154,228,63,204,113,250,176,158,188,71,234,79,125,55,151,203,115,70,34,71,184,190,245,252,136,6,234,63,123,164,245,187,62,121,244,130,200,152,160,193,208,231,116,152,33,148,207,186,164,233,127,54,103,6,231,168,99,173,236,19,31,204,206,191,149,133,62,63,87,103,64,225,189,70,207,76,195,196,90,143,42,169,108,231,160,59,138,64,73,254,163,106,132,214,172,60,72,196,223,24,113,63,84,135,25,152,129,1,78,142,36,7,32,71,45,196,225,184,177,30,143,57,215,189,183,209,46,10,169,2,0,230,23,38,188,217,9,195,57,180,99,128,205,158,169,242,211,36,91,165,60,18,232,216,161,79,230,171,182,233,226,245,154,54,169,217,105,8,107,15,233,45,234,56,212,139,144,15,24,1,49,173,42,163,183,52,171,55,15,202,107,233,224,242,1,247,103,99,177,19,167,151,223,80,189,247,136,150,20,166,11,106,69,104,164,82,96,215,2,49,184,191,186,223,246,148,132,16,71,223,118,226,165,206,31,210,164,122,208,181,206,45,79,78,99,16,173,251,110,187,121,66,213,163,188
 ,223,66,220,100,126,11,218,133,215,149,58,159,110,84,120,75,253,19,123,38,157,110,3,242,223,160,58,172,81,34,54,119,253,28,26,37,232,239,59,110,62,243,209,121,96,95,112,45,179,232,60,89,127,42,131,200,170,69,88,130,113,30,6,185,102,109,109,230,12,209,47,150,209,102,124,35,27,209,186,75,26,62,114,100,141,114,50,61,233,154,36,4,244,246,249,125,43,125,159,52,141,199,52,46,112,103,125,39,58,166,18,254,86,48,86,145,57,157,255,79,163,131,244,35,144,86,92,91,50,87,200,7,117,240,252,240,69,50,11,234,219,148,146,228,20,211,12,83,254,240,218,109,25,27,246,59,187,184,173,158,142,203,188,246,147,51,205,179,74,51,244,82,51,168,149,210,255,94,250,245,168,155,109,159,144,114,96,213,58,102,224,245,34,186,27,133,1,208,32,161,57,100,47,191,214,243,179,18,231,224,74,254,73,209,52,71,146,104,154,156,128,228,33,24,33,47,26,152,77,28,13,8,250,124,175,25,223,198,59,107,240,200,148,49,205,48,219,246,22,26,227,159,153,141,111,9,140,42,25,59,84,158,216,97,245,126,115,95,177,236,13,209,18,152,157,125,
 79,15,121,195,58,19,55,25,228,7,87,237,115,21,174,70,82,66,73,152,166,56,65,216,20,60,157,44,123,77,81,29,89,42,245,207,92,207,64,71,225,235,19,49,53,28,63,247,55,164,10,139,221,144,111,216,41,16,164,177,144,111,228,248,11,228,196,112,224,1,188,25,14,124,6,206,165,231,167,108,37,213,175,247,188,26,116,36,167,158,1,186,220,120,177,187,218,102,224,244,237,25,188,58,214,163,179,186,195,146,255,213,240,116,114,4,15,46,248,111,213,179,143,60,13,254,85,221,164,41,195,86,159,146,191,17,45,144,39,165,216,142,176,66,186,46,243,225,39,227,179,217,204,66,244,10,68,146,185,234,130,105,41,253,228,139,174,69,24,69,43,247,155,30,4,196,26,242,122,255,47,236,105,68,215,11,228,195,141,71,69,171,138,48,228,79,33,245,170,21,219,86,142,204,109,50,154,116,205,111,8,139,72,169,46,66,164,253,58,110,18,188,49,138,229,140,113,147,215,225,128,123,101,96,178,154,3,143,66,24,190,174,38,248,181,187,235,169,210,140,75,209,138,91,160,19,159,39,87,186,192,205,106,83,130,234,230,183,85,113,60,141,213,19,137,
 106,60,117,55,176,153,1,204,46,161,108,107,185,209,188,205,130,183,126,61,15,24,80,122,228,32,188,162,92,241,146,149,113,102,122,153,137,131,155,198,45,210,166,6,146,17,127,209,241,79,138,127,141,198,50,128,90,47,85,47,86,32,12,113,43,112,75,152,0,204,101,9,39,57,81,192,198,184,102,75,6,114,9,10,112,205,157,250,244,222,122,126,95,43,45,90,47,42,2,104,225,205,129,12,37,17,59,232,32,143,75,255,111,165,32,136,22,155,15,239,82,115,172,254,50,41,188,3,80,196,252,107,146,162,96,61,252,50,236,91,15,201,220,42,80,170,60,97,240,142,14,162,235,110,79,178,53,175,233,25,40,25,210,36,18,147,71,176,18,170,179,174,200,184,200,93,109,88,45,11,205,106,202,126,40,160,194,202,171,199,128,42,183,157,139,160,135,9,85,180,87,233,190,183,90,181,158,98,4,18,52,101,171,250,238,5,212,168,4,213,134,253,219,231,212,216,201,194,117,171,183,77,247,33,72,97,122,65,183,226,241,92,93,9,218,87,155,92,170,114,122,173,39,235,111,29,3,28,109,4,112,148,181,217,222,141,102,207,20,128,235,35,241,233,188,185,54,183
 ,144,3,58,128,149,105,36,97,101,181,195,250,125,5,20,82,105,7,122,26,245,216,29,22,47,167,150,123,223,108,118,5,199,193,144,105,52,160,150,86,211,17,108,137,83,12,247,93,42,52,28,19,109,187,23,212,97,170,151,89,113,116,249,153,193,153,254,235,51,233,68,94,134,149,79,95,252,187,76,150,166,54,95,238,254,93,158,149,140,120,177,222,124,68,213,111,115,32,220,230,68,72,49,136,152,247,163,98,210,97,172,160,121,196,115,59,175,87,106,154,253,188,75,14,66,225,71,176,63,160,205,217,53,66,106,6,141,152,74,110,119,231,22,50,34,218,223,227,226,146,118,113,34,50,44,55,0,53,32,20,94,183,199,176,199,195,145,213,10,160,73,152,153,223,254,84,75,104,35,220,99,50,118,14,120,21,202,185,248,89,159,108,85,71,112,193,175,12,130,181,200,55,71,233,151,186,104,158,84,206,32,241,1,110,96,164,13,33,52,4,199,229,219,100,1,16,87,71,118,173,253,124,194,193,112,39,246,27,141,77,117,241,180,29,207,197,226,185,94,100,76,95,160,220,253,102,41,73,134,209,158,106,114,232,166,182,149,162,108,50,230,24,112,179,180,
 125,125,13,79,22,202,14,204,15,115,228,199,116,20,218,239,133,185,187,116,240,165,236,43,58,132,47,182,28,79,190,187,254,225,215,81,156,168,152,31,121,101,44,244,189,37,56,58,60,214,36,43,2,163,230,191,189,151,113,105,77,172,194,224,77,95,253,174,113,19,27,236,132,34,37,18,68,116,67,17,85,186,65,255,104,87,27,193,60,182,61,49,158,32,96,166,33,3,248,163,252,85,133,76,18,60,126,146,112,201,13,138,17,216,12,34,5,25,162,122,184,89,249,213,212,164,46,127,224,67,134,33,252,45,23,48,61,172,194,60,103,145,30,118,52,78,18,147,212,108,244,135,87,222,28,194,31,212,252,83,158,56,58,246,88,140,243,159,29,108,92,157,220,43,111,24,254,133,192,55,30,128,79,232,206,74,89,62,104,128,18,59,149,66,39,194,252,154,42,90,160,10,234,121,76,129,244,138,34,7,47,112,54,21,205,82,87,13,221,171,65,187,52,69,67,160,6,169,83,42,171,0,156,235,128,64,84,195,29,66,91,247,53,87,153,122,209,144,13,246,211,55,20,198,170,75,34,162,126,154,78,235,210,222,200,203,110,87,176,19,236,124,238,47,22,194,211,139,88,158,
 18,243,218,6,111,241,60,188,14,38,174,147,224,156,222,1,43,195,96,48,231,25,111,112,189,197,84,183,146,176,105,108,105,220,2,94,155,86,157,136,17,96,148,82,210,216,97,15,53,132,64,141,4,15,126,123,194,116,26,233,101,248,77,33,139,124,159,208,158,154,103,58,160,103,31,132,114,2,73,75,85,157,66,88,89,104,48,87,147,117,184,92,168,171,64,207,129,54,60,70,177,130,139,243,192,98,112,32,17,208,13,181,239,107,16,107,243,236,141,157,205,137,196,64,24,1,8,55,173,161,38,170,86,208,226,237,195,97,59,133,138,157,230,236,171,201,55,33,57,250,196,47,128,23,184,25,170,56,83,79,138,58,173,183,127,119,116,59,220,129,241,41,18,10,113,71,30,237,226,194,130,162,50,180,34,68,119,106,176,77,35,118,205,187,70,80,220,86,158,248,204,2,52,234,102,77,123,207,139,207,92,57,158,24,0,53,137,159,12,43,234,211,191,217,223,105,35,96,79,44,236,186,189,16,84,243,123,161,245,133,43,144,190,77,81,202,185,65,135,33,242,230,246,152,123,53,88,198,55,95,21,95,242,83,190,132,122,50,215,178,16,142,22,86,65,215,208,22,
 208,154,62,166,204,208,113,200,23,19,52,144,230,89,237,177,12,251,195,214,213,44,6,136,154,173,186,73,30,186,153,8,25,204,100,121,248,65,124,195,114,188,233,98,155,111,20,196,202,51,180,2,167,69,115,85,192,53,151,249,198,12,246,143,105,27,161,92,44,35,123,89,139,94,126,98,158,167,130,185,218,126,132,116,122,101,6,248,186,115,251,248,235,177,249,65,108,222,8,27,75,217,135,245,26,26,147,198,59,255,38,64,238,200,89,141,51,60,110,151,15,194,44,111,185,75,52,104,86,204,38,220,51,167,238,58,45,75,69,136,102,217,241,225,141,75,187,159,5,36,159,130,74,211,142,51,229,159,87,227,17,80,108,173,109,27,93,149,147,170,144,160,2,237,72,16,11,14,236,135,142,5,158,218,145,49,41,169,139,142,51,245,129,41,29,198,152,149,213,49,19,175,121,89,33,150,120,169,191,177,16,40,104,161,157,29,121,194,106,154,71,170,242,217,10,224,7,59,237,224,174,116,72,166,239,240,138,42,17,152,38,64,246,59,123,252,191,236,93,13,149,144,5,132,64,36,59,53,95,223,184,71,139,123,235,124,250,44,160,224,136,173,119,226,123
 ,68,203,152,238,140,28,37,129,253,246,209,235,77,34,140,45,153,191,177,196,102,69,145,233,132,11,106,218,230,185,119,171,185,253,134,4,121,77,7,36,52,45,50,141,25,24,103,47,197,50,28,111,249,6,67,176,103,9,99,197,93,67,128,9,50,130,216,6,69,216,68,20,50,121,78,201,87,130,201,11,187,15,88,225,209,14,202,224,246,52,23,179,150,199,13,226,145,90,147,64,134,53,136,137,54,228,117,100,248,191,87,144,98,164,201,16,195,244,198,229,90,127,71,11,238,229,214,196,137,22,165,114,220,35,172,119,250,216,250,220,202,240,190,149,170,169,254,123,33,156,144,217,189,0,13,133,217,111,253,211,153,36,219,253,196,249,1,2,13,203,131,210,93,68,190,63,204,236,42,124,237,96,225,98,168,202,190,171,210,105,204,157,26,101,204,105,134,71,247,221,165,59,229,97,179,5,136,16,154,244,249,235,18,192,99,17,81,149,17,67,199,147,150,192,105,91,197,122,48,232,143,126,251,120,246,241,32,60,40,23,90,152,21,150,194,8,134,190,19,148,202,32,225,117,46,195,248,194,121,134,102,7,151,124,209,29,241,65,106,197,163,39,103,75,
 47,7,38,217,129,121,46,27,161,230,60,246,99,168,45,216,229,239,182,202,154,43,157,131,164,135,187,208,199,54,159,151,75,230,235,144,65,0,234,154,126,110,80,243,152,66,80,145,114,54,66,252,53,216,50,100,225,16,226,171,6,246,157,164,245,49,209,32,90,50,84,231,82,38,255,67,41,127,22,239,136,251,230,213,86,84,242,224,198,43,122,163,207,43,88,218,225,239,65,229,141,199,222,131,239,218,198,30,214,49,130,82,81,193,192,7,28,90,135,7,44,68,84,65,202,47,87,114,43,221,79,17,181,188,161,20,156,88,109,177,163,47,110,124,99,202,28,98,164,156,50,49,58,45,180,30,139,48,249,45,41,218,59,226,77,49,169,139,11,157,58,110,254,14,108,137,96,242,198,230,222,191,126,122,121,154,192,43,99,19,155,72,43,66,224,218,26,35,108,137,7,123,250,88,124,168,28,209,136,68,21,210,78,66,136,197,208,235,79,69,196,198,232,31,155,98,134,50,97,51,57,246,138,156,86,56,137,208,206,20,116,20,174,150,199,158,190,135,25,204,44,207,216,123,156,26,150,29,61,115,162,123,250,70,219,54,6,194,215,65,131,210,89,253,225,223,213,9
 7,74,51,194,72,252,218,67,0,127,75,203,149,65,185,3,73,109,219,55,210,64,105,230,43,85,116,116,193,114,140,161,59,32,210,151,95,113,87,95,251,188,232,66,92,117,59,220,175,105,39,131,232,227,173,20,92,125,236,61,36,225,242,160,71,2,197,66,108,201,196,72,194,188,22,18,209,53,86,224,188,77,186,112,49,208,21,207,136,210,82,219,8,20,247,47,204,222,191,162,238,109,31,205,100,138,16,15,216,230,50,172,222,149,97,32,131,219,229,41,245,69,79,183,89,18,246,141,161,33,103,121,224,95,121,197,87,250,68,68,172,118,135,116,71,13,81,180,12,105,49,125,131,239,182,40,126,179,69,251,10,211,246,225,161,80,196,33,55,189,7,178,78,180,224,61,95,25,178,159,159,28,9,189,137,175,9,140,100,89,130,248,35,128,84,231,68,30,85,185,74,32,111,220,90,169,75,54,208,85,183,34,87,73,232,222,61,143,132,26,0,253,1,110,229,120,66,150,99,141,73,233,63,74,177,156,172,209,116,70,27,119,22,97,65,212,218,196,121,97,225,35,128,85,46,191,186,180,148,16,112,183,84,10,189,9,102,55,43,12,233,205,60,22,75,140,213,221,221,164,
 173,93,141,149,4,253,252,35,96,204,130,181,109,254,185,163,170,80,45,253,96,248,5,70,234,50,82,13,145,57,228,255,116,214,250,92,20,78,20,115,32,13,5,20,43,37,157,208,254,178,14,2,164,2,102,175,57,132,209,177,76,70,184,225,74,19,54,127,176,3,129,31,120,138,125,204,196,214,111,64,236,58,169,160,29,213,41,240,43,42,160,241,6,154,81,0,12,113,129,182,227,247,40,74,97,55,212,110,120,0,36,187,197,49,225,61,107,251,52,163,31,9,67,117,198,223,12,17,199,49,72,60,177,111,146,243,28,183,201,32,149,19,208,202,113,90,190,103,228,36,134,171,235,186,200,246,45,192,118,100,102,137,12,136,134,109,114,248,161,66,68,198,25,27,98,252,195,243,112,209,61,13,124,101,60,229,81,238,231,178,145,3,209,12,209,154,164,62,31,50,235,181,64,145,99,50,6,130,254,1,247,196,128,103,82,192,15,145,119,53,101,184,53,135,103,159,112,208,0,223,0,35,74,1,159,27,37,242,187,65,161,135,35,108,3,22,66,191,94,242,38,148,137,194,203,216,100,83,61,252,164,140,135,235,157,190,222,14,153,112,168,100,220,254,218,107,159,76,233
 ,169,219,212,72,164,228,145,207,165,122,232,124,238,81,201,110,198,42,175,234,46,78,12,7,123,212,9,145,34,110,7,104,99,209,132,43,36,207,60,221,202,237,150,107,168,240,180,125,200,109,87,32,218,82,47,241,23,55,179,225,26,228,198,79,196,64,151,180,60,153,4,150,223,221,147,205,128,15,222,254,17,213,148,6,64,54,226,37,19,96,146,95,177,58,214,15,12,144,240,162,57,11,174,130,152,185,3,245,150,59,248,73,61,239,119,150,38,240,99,10,95,80,129,37,45,236,0,82,208,130,51,21,229,38,113,242,98,77,9,153,58,56,48,144,80,199,186,84,67,173,101,215,161,65,52,201,127,209,95,144,251,171,119,28,253,147,113,166,122,17,123,190,124,213,140,57,24,63,79,60,225,165,235,184,100,78,245,188,88,103,211,90,34,193,233,238,226,83,82,56,0,58,184,134,99,18,208,253,85,215,178,134,251,64,1,73,72,52,241,143,169,167,48,65,49,66,119,105,136,215,67,39,77,230,248,151,56,249,141,55,86,116,84,153,190,38,126,119,99,42,110,170,96,28,72,201,177,118,140,239,53,165,102,23,146,91,19,6,87,34,170,167,168,213,31,211,44,63,39,14
 ,141,86,79,172,249,165,66,240,185,143,172,101,255,248,81,31,28,96,53,118,157,176,23,174,70,44,235,205,205,88,250,144,87,71,126,109,194,79,141,192,241,108,95,195,36,219,42,72,201,233,31,65,239,113,62,79,60,127,122,86,130,161,127,144,194,236,157,131,125,207,134,175,85,153,231,228,52,174,238,183,214,71,147,240,151,104,157,184,3,139,30,5,195,65,242,143,96,198,48,55,31,197,233,77,142,225,41,30,32,37,24,110,223,146,56,188,39,27,218,7,243,87,247,128,229,195,54,98,28,47,225,242,47,103,39,223,228,175,190,222,8,137,127,28,172,206,156,254,60,29,54,36,186,88,132,107,109,125,5,241,59,219,214,254,151,66,147,197,239,198,121,24,123,188,42,115,173,113,66,207,41,55,138,48,232,183,38,1,232,157,150,101,135,85,171,166,144,129,218,121,42,146,238,77,142,213,219,206,37,110,190,128,243,86,98,17,177,9,117,64,130,172,108,210,144,217,90,138,253,72,35,230,216,56,212,125,105,137,141,170,164,158,24,149,25,216,247,203,25,7,236,124,160,217,114,174,242,119,245,80,184,18,194,91,180,25,163,226,23,153,52,238,69
 ,57,112,203,128,163,87,67,224,184,222,53,247,169,54,190,62,84,34,108,216,109,11,13,11,130,172,74,236,44,55,212,141,210,15,201,71,187,226,249,185,122,29,95,191,133,11,179,231,225,31,177,229,226,164,76,138,161,48,241,155,11,114,42,198,4,57,134,107,105,101,81,227,124,44,157,44,68,92,141,65,146,39,19,118,125,26,224,105,38,239,158,15,246,43,194,116,6,226,243,93,128,1,46,52,2,233,5,221,201,120,237,195,140,153,190,213,106,217,171,144,99,167,171,166,161,111,42,75,165,48,117,64,23,26,141,0,232,122,115,138,37,156,47,115,68,165,115,12,62,137,249,25,185,202,70,22,234,67,141,197,251,66,255,181,42,240,39,123,233,182,57,54,245,101,32,67,82,136,130,188,185,12,191,33,62,216,5,203,231,21,190,39,197,84,4,115,210,50,150,105,129,94,186,178,52,108,153,151,149,54,5,199,108,249,59,52,113,189,228,112,212,52,127,74,110,224,160,53,81,154,122,103,103,77,13,135,155,77,34,231,16,178,227,189,80,229,66,157,26,90,120,49,160,121,73,140,42,52,43,67,26,62,196,196,151,30,133,175,10,245,18,194,95,229,146,71,191,
 73,96,49,198,118,81,112,114,75,50,23,85,212,33,136,178,18,157,127,68,183,246,209,38,101,4,98,243,236,195,61,149,63,150,239,146,74,16,196,104,191,82,107,235,2,181,40,75,208,142,8,243,1,137,122,142,36,82,115,255,152,7,124,126,240,18,155,97,134,192,143,1,207,226,216,201,151,179,16,9,222,149,54,108,44,191,212,231,117,11,111,47,94,213,171,146,213,235,233,251,209,210,95,8,239,181,36,74,36,159,237,219,149,91,199,69,233,37,147,46,33,222,22,114,177,157,21,107,48,221,131,175,156,97,11,118,32,36,82,77,203,95,103,152,214,158,78,209,28,168,115,162,83,163,206,149,142,208,9,195,65,141,108,192,219,25,7,210,192,34,92,102,208,176,119,62,114,182,254,39,26,120,249,32,228,233,247,99,46,178,65,94,34,223,99,130,124,34,65,146,109,24,83,127,220,30,95,120,193,103,232,43,11,32,7,93,17,62,176,145,244,8,78,70,76,204,155,11,37,144,155,92,211,11,57,182,7,89,239,229,160,31,76,208,46,49,165,124,191,217,107,82,209,201,189,130,144,146,18,82,248,138,48,163,27,88,253,216,184,30,50,9,142,87,88,127,193,164,56,221
 ,205,22,20,201,189,159,244,82,205,19,251,188,238,193,140,72,7,65,141,217,77,114,121,69,137,152,245,111,228,165,16,226,95,106,186,26,36,69,46,203,242,123,62,215,121,20,204,39,213,168,60,23,71,188,85,68,112,216,191,85,98,209,93,53,66,188,57,54,201,110,0,241,73,237,139,105,67,173,45,60,233,94,35,61,97,140,79,171,14,83,19,252,232,60,42,33,150,36,178,23,74,31,1,117,223,125,48,151,108,106,78,39,189,16,80,37,70,49,114,114,102,227,134,107,224,167,55,211,10,213,107,92,145,209,227,67,245,97,195,112,184,73,17,57,127,153,80,161,122,70,14,4,202,119,179,25,105,129,229,6,215,112,200,1,199,9,193,167,12,39,109,138,229,81,148,241,4,143,57,249,253,27,10,4,168,36,111,173,22,72,168,213,49,48,250,127,89,223,102,12,211,198,191,144,246,169,147,29,104,26,215,238,113,225,200,96,240,255,204,109,108,138,14,24,1,111,5,222,98,177,205,119,20,44,6,11,3,59,250,10,25,157,98,3,0,226,222,189,160,221,214,200,75,19,196,62,17,220,74,82,36,218,21,215,205,193,94,158,1,97,184,253,225,235,42,155,125,72,103,62,236,108
 ,20,169,6,170,164,254,244,219,64,138,207,10,150,10,112,241,131,149,240,28,246,94,124,224,113,52,40,52,37,134,253,246,39,98,33,205,132,29,87,158,199,106,235,197,76,94,32,3,41,255,180,179,228,241,128,50,214,229,216,175,15,242,17,166,205,128,242,15,227,135,131,223,93,204,247,52,87,13,30,83,218,1,167,46,35,136,253,72,167,45,99,161,237,7,70,112,203,238,174,84,157,95,131,73,99,84,121,128,210,183,131,99,108,216,225,195,0,109,240,29,76,254,212,120,45,74,113,251,120,148,33,249,43,23,205,128,237,23,174,19,244,124,85,113,237,124,115,187,122,185,41,175,7,254,40,217,15,43,68,221,11,99,231,185,10,52,61,55,123,253,186,5,193,137,83,218,222,32,93,155,38,51,241,163,93,151,112,136,203,66,167,2,79,32,38,56,110,83,221,112,205,132,176,44,120,173,222,10,150,176,86,140,196,30,136,78,252,97,147,239,196,75,15,236,148,90,22,33,5,56,252,153,60,180,32,25,221,135,116,32,8,179,156,36,171,234,41,174,66,69,215,23,244,113,26,114,8,176,223,214,37,24,222,59,226,153,225,110,53,144,31,147,235,92,244,166,69,215,2
 23,251,31,238,22,108,216,27,96,243,169,97,176,97,99,41,210,227,40,118,132,228,70,185,197,160,56,168,51,193,61,13,210,28,5,213,20,251,15,254,84,175,233,177,228,166,17,84,15,32,222,135,35,219,203,239,74,66,216,85,208,117,53,191,144,222,126,60,61,171,49,13,144,132,220,169,221,241,1,45,248,93,110,24,24,180,47,68,47,20,173,184,101,67,30,244,225,218,20,153,248,81,153,197,212,208,33,76,56,92,177,63,77,249,12,65,244,135,194,112,0,231,39,152,209,188,7,166,60,181,25,150,191,64,239,24,26,218,151,95,149,237,133,100,191,139,164,117,221,250,239,28,121,89,221,196,250,138,198,64,93,206,246,100,56,250,115,26,164,28,218,163,188,181,174,171,150,40,211,117,50,232,77,197,57,18,35,85,160,237,242,99,239,248,162,45,77,209,4,209,71,95,90,3,201,93,124,135,132,36,227,180,119,129,227,9,148,179,242,135,178,198,83,206,179,115,63,33,200,70,240,113,159,118,125,140,11,207,63,128,176,191,36,105,59,121,196,136,56,54,89,219,222,95,117,105,78,237,35,211,193,176,234,47,20,21,107,33,159,129,111,113,61,138,239,191
 ,190,34,66,235,49,132,201,18,156,32,64,147,217,216,1,199,168,94,146,97,69,168,37,59,47,99,150,254,62,174,154,167,188,18,22,112,250,21,223,176,148,217,34,66,255,241,58,126,101,28,69,228,14,239,86,81,38,124,11,190,24,217,45,28,182,248,242,45,31,231,59,130,9,174,8,242,168,183,79,184,202,53,143,219,198,51,142,0,101,222,98,65,167,156,181,243,0,40,103,169,39,102,224,102,135,169,47,14,45,75,216,66,34,124,17,92,29,176,56,22,217,0,19,251,18,230,129,238,207,150,54,254,243,232,178,51,250,10,30,62,108,199,116,160,223,151,122,187,244,211,157,55,166,154,214,123,63,37,20,134,118,183,48,22,77,233,93,56,215,44,181,230,170,255,28,66,170,11,38,79,96,105,130,197,79,200,126,57,85,13,214,184,95,91,123,154,31,226,233,220,122,228,68,251,19,195,244,245,5,108,40,111,29,12,44,190,82,111,68,208,142,69,186,147,220,193,230,134,163,38,133,123,139,201,238,89,198,68,206,57,149,29,15,103,217,189,157,182,238,214,137,185,255,133,112,160,231,139,231,115,193,227,178,174,159,147,103,253,110,21,77,126,99,223,138,1
 05,134,203,191,153,41,147,157,19,3,69,70,32,97,178,30,178,5,242,245,101,59,47,48,202,60,174,230,0,243,90,105,224,224,243,41,137,26,107,185,174,138,238,142,8,75,19,68,115,135,75,235,43,102,86,140,9,23,198,197,233,85,24,60,252,183,102,101,239,31,121,43,97,228,210,109,109,83,96,250,53,226,200,46,18,20,80,146,93,221,161,120,226,224,113,189,130,187,74,223,38,0,251,142,87,218,74,99,130,115,35,10,15,148,241,180,146,141,75,192,89,250,217,213,254,200,49,176,169,250,1,150,109,66,116,88,226,52,9,25,26,253,29,61,121,34,84,120,245,145,138,113,252,110,100,27,42,161,26,132,144,235,195,104,169,215,89,181,226,207,172,65,113,56,252,157,62,124,140,221,111,129,23,4,242,42,201,165,6,129,212,127,192,119,217,104,108,165,34,148,64,74,249,153,85,247,58,104,98,235,222,149,222,250,61,229,105,201,63,167,211,145,232,5,131,201,159,129,12,61,74,21,208,36,124,162,177,137,59,80,214,25,88,113,82,148,146,245,222,175,175,195,137,55,100,112,241,75,234,157,142,168,199,182,50,132,135,201,27,10,166,150,105,50,154,
 139,218,14,79,221,196,196,176,45,62,199,2,173,97,130,234,151,38,12,32,126,35,191,232,64,24,197,184,110,222,207,142,203,96,88,106,38,50,69,48,72,10,6,180,6,40,69,79,45,243,38,59,3,167,174,27,70,109,27,6,127,41,10,141,156,54,130,103,0,81,106,173,90,87,57,148,232,97,19,143,22,195,122,66,155,239,181,147,133,190,207,126,144,58,172,223,217,21,205,158,55,119,99,232,173,226,165,246,34,198,130,221,171,153,63,205,99,246,225,211,14,60,184,245,149,203,169,223,148,25,58,51,5,158,176,222,3,146,83,157,180,138,34,133,124,129,95,151,33,77,215,89,20,216,193,70,60,240,69,30,141,186,195,73,63,244,74,155,157,70,210,13,55,136,145,142,135,204,237,113,131,247,24,120,152,10,170,204,17,139,19,21,218,102,157,184,117,113,63,159,175,83,129,164,217,159,216,242,125,144,206,128,43,46,246,208,138,61,183,160,9,77,140,57,12,100,250,115,139,152,101,109,244,151,133,103,217,39,241,16,74,150,254,228,253,192,244,102,75,164,27,204,202,19,70,163,57,128,21,44,144,55,166,99,137,35,146,56,155,211,245,144,146,54,81,99,3
 1,165,185,146,28,140,207,98,151,75,255,18,34,53,162,104,228,197,136,212,39,132,183,3,194,56,48,39,79,120,91,211,7,83,4,110,46,63,7,210,178,233,106,170,145,183,180,153,163,144,51,174,96,150,66,35,24,178,144,175,167,0,25,6,151,231,36,159,193,81,71,197,202,0,210,236,130,224,230,223,192,163,46,59,241,179,176,60,69,207,123,128,110,47,24,243,170,124,200,22,220,52,191,65,150,82,201,96,28,66,145,116,50,201,91,10,6,205,6,167,250,207,62,139,79,249,104,206,84,150,32,19,55,237,20,75,123,100,121,51,122,0,147,229,103,186,51,35,180,184,147,223,184,153,0,130,14,154,108,252,7,225,242,2,109,35,17,115,214,62,179,143,223,149,184,43,101,20,131,254,202,42,83,108,211,40,162,140,181,66,241,89,1,48,113,128,109,243,118,198,82,193,125,159,211,59,146,246,219,225,100,154,83,107,13,128,152,180,117,127,204,69,206,157,90,125,162,159,186,248,247,8,193,204,251,234,129,181,95,65,62,83,244,63,248,59,141,248,108,218,226,128,68,13,59,255,193,123,115,164,133,244,85,9,103,129,249,43,42,87,96,205,52,118,145,84,133,
 87,85,218,52,70,87,31,45,192,127,236,251,4,158,12,215,191,221,155,167,170,155,165,30,106,229,255,170,88,86,197,52,204,10,173,56,179,138,245,70,164,113,109,254,225,3,46,30,223,83,24,61,62,26,202,85,23,176,224,24,234,127,65,4,189,138,140,100,50,95,147,13,227,117,172,49,37,5,37,132,141,28,25,243,137,151,77,38,104,9,235,63,125,79,41,112,211,199,216,3,114,198,121,52,88,194,112,91,74,13,182,145,207,226,100,179,151,175,186,89,145,240,152,12,224,18,56,65,40,3,241,249,238,106,22,153,28,70,81,202,131,138,19,254,17,225,220,46,11,162,34,171,86,39,34,161,58,107,117,161,117,2,233,170,16,208,9,207,167,103,84,51,135,182,85,113,112,42,181,46,186,50,139,76,85,101,122,65,240,1,13,10,0,27,82,245,228,222,210,143,112,248,202,220,129,106,53,34,165,170,122,203,220,25,109,208,168,176,115,138,237,78,204,255,82,15,216,249,77,92,9,200,12,41,18,205,56,39,254,56,251,54,199,88,107,137,102,106,189,229,152,189,82,132,241,255,123,34,132,28,145,239,71,63,102,218,96,13,225,214,52,214,112,112,191,141,98,90,240,
 121,178,194,31,118,157,52,1,248,38,27,77,79,41,112,13,121,25,98,111,105,127,127,154,28,70,117,206,140,218,208,119,90,100,132,159,228,197,164,154,139,239,150,172,19,108,231,179,173,207,221,128,106,157,174,130,144,201,8,142,84,253,73,248,7,226,45,177,212,203,64,1,108,71,55,20,231,215,18,20,39,79,252,150,189,175,222,75,159,101,145,180,223,150,53,69,170,202,65,8,51,158,170,23,74,1,63,144,215,160,39,200,73,36,81,222,218,175,17,62,181,54,124,148,161,20,120,178,29,159,53,210,31,156,187,32,11,247,65,80,181,168,211,229,61,169,82,163,89,38,74,56,216,179,106,226,129,85,167,95,211,17,99,248,196,125,189,29,87,26,29,234,167,189,156,70,153,16,96,240,52,246,6,162,133,52,98,27,179,237,254,43,128,112,110,245,8,22,243,0,128,99,65,127,81,108,49,72,23,169,207,172,75,101,236,61,84,5,22,173,14,192,124,35,88,152,135,58,23,103,238,174,153,108,169,171,187,226,176,201,100,196,190,35,75,82,31,58,79,192,128,51,173,181,174,64,129,250,231,167,33,117,165,11,131,170,8,179,120,225,201,25,101,62,118,162,246,3
 7,81,30,9,126,22,182,235,184,200,76,231,36,63,139,203,14,85,188,135,159,85,216,253,224,16,37,7,10,74,102,252,205,1,157,151,215,209,62,109,179,249,252,205,28,242,127,104,70,165,192,153,237,13,126,90,223,162,109,191,86,178,234,166,97,191,115,193,26,106,181,2,192,9,195,122,38,98,221,180,126,163,170,41,194,120,191,36,80,136,200,213,63,98,234,109,94,138,186,168,133,69,220,39,151,158,191,10,247,230,15,209,175,246,83,12,150,227,38,2,181,36,111,208,219,66,92,148,102,240,240,0,196,16,245,79,107,82,53,100,4,60,1,215,28,41,210,254,210,29,66,181,94,198,171,50,162,183,252,32,137,219,150,151,120,67,79,237,243,180,83,171,155,99,146,101,121,134,255,212,205,123,164,124,220,32,86,235,166,75,75,66,8,50,119,165,146,90,70,230,250,173,174,57,151,243,24,59,108,186,122,12,202,252,143,104,92,207,170,89,110,231,227,98,104,225,58,178,224,51,186,234,38,171,65,237,57,228,97,220,141,157,223,242,188,219,100,82,188,47,176,242,143,132,237,45,103,31,17,199,165,53,61,224,167,46,156,247,64,139,249,4,11,113,47,
 216,162,72,176,251,102,53,7,90,76,138,117,89,235,67,29,101,248,145,100,191,224,156,163,83,205,32,214,195,113,148,77,255,35,88,35,146,89,124,228,111,87,216,184,188,27,31,147,105,143,44,107,30,203,30,7,31,142,230,211,109,71,27,57,165,93,252,153,127,2,4,223,88,187,237,225,187,226,96,116,50,180,187,252,239,191,102,86,153,149,48,229,51,181,205,146,40,4,81,149,72,170,196,133,102,167,209,53,165,3,160,205,178,11,206,42,128,128,63,251,25,231,68,139,212,87,77,67,130,63,22,12,118,21,121,161,85,217,29,130,122,244,33,30,217,67,225,45,73,24,181,92,196,208,129,58,237,237,130,183,55,187,138,162,28,48,254,97,121,68,53,188,38,208,232,221,87,156,248,193,202,252,33,61,17,150,137,162,213,94,60,202,19,149,203,179,3,193,156,221,52,172,36,132,120,104,208,217,203,192,138,243,29,127,123,105,214,110,215,202,66,47,171,64,144,30,220,201,239,229,131,31,65,0,215,86,189,30,21,65,102,213,234,180,135,78,183,145,62,131,15,164,41,149,230,60,194,12,34,74,144,19,226,215,60,208,146,27,162,66,86,41,18,222,12,151,3
 2,46,180,207,67,177,151,10,238,8,103,186,232,217,64,221,132,7,74,9,59,177,11,53,100,238,48,99,81,187,6,5,74,130,168,74,253,103,145,97,122,122,31,7,119,238,210,48,160,76,84,19,158,88,13,238,89,81,194,101,70,241,127,12,5,20,246,220,5,42,170,181,22,95,65,87,113,73,238,202,158,145,148,118,39,182,182,113,74,67,52,118,206,238,79,98,120,194,215,76,221,187,64,42,126,60,176,178,140,189,163,42,161,195,149,64,218,252,145,209,183,39,97,149,128,191,98,108,23,141,207,213,158,50,217,157,201,149,140,251,127,68,193,210,117,28,190,41,39,229,222,0,212,173,13,28,58,189,246,7,155,139,243,117,32,31,253,166,161,244,2,70,75,250,100,49,119,193,195,161,139,63,14,229,181,218,195,124,36,122,63,96,61,232,9,250,227,228,48,172,206,29,209,12,85,8,101,69,178,51,194,247,253,48,121,8,193,248,114,135,217,243,242,125,16,236,217,35,27,130,219,72,236,218,199,207,185,64,51,165,187,97,7,213,92,229,45,79,5,109,230,70,115,103,173,132,145,119,202,182,120,131,243,215,202,207,102,47,83,153,239,188,180,56,1,51,207,66,88,
 115,152,234,91,5,97,37,142,148,228,27,13,209,166,182,115,121,103,189,187,72,90,200,252,85,111,149,228,32,77,87,33,176,78,71,86,179,129,250,50,59,208,181,246,75,212,226,132,33,217,46,193,228,103,195,119,148,54,221,11,227,147,56,235,60,84,39,20,230,166,42,65,100,103,145,34,255,254,243,16,15,132,196,103,93,241,58,164,85,104,37,175,253,41,125,153,191,226,224,112,153,177,221,172,133,253,217,56,92,125,149,22,111,26,61,5,162,28,129,105,21,92,157,34,213,192,148,156,151,53,213,101,142,78,175,220,157,82,17,20,34,87,119,252,224,18,177,84,101,170,164,161,164,209,21,8,243,203,201,45,220,114,45,248,239,100,68,143,9,53,101,203,231,159,141,60,245,131,125,13,7,91,233,44,7,197,141,32,107,86,84,2,132,160,154,36,12,78,167,239,117,183,200,179,18,109,151,205,137,18,231,91,176,229,53,240,74,50,102,44,137,255,139,68,64,70,5,221,108,45,37,225,58,121,193,179,230,226,190,188,145,241,79,208,248,221,54,150,69,18,197,233,222,97,133,138,208,210,255,5,191,240,100,55,69,191,213,130,76,23,99,33,75,141,68,68,
 78,119,243,104,143,119,18,103,45,183,15,176,129,59,14,208,118,102,186,76,233,76,31,32,109,252,193,5,67,220,143,96,41,190,89,201,49,211,4,244,159,231,239,77,168,76,229,30,131,100,151,35,219,158,233,149,17,207,75,93,165,109,124,246,166,206,178,34,141,102,119,234,212,249,234,170,49,245,19,26,244,124,229,81,102,58,42,1,72,243,146,213,196,173,81,236,149,162,223,131,173,152,231,59,211,45,14,229,17,227,63,146,51,15,30,176,112,75,124,24,92,96,0,119,154,24,6,52,154,136,250,100,46,105,246,138,87,89,63,191,87,194,244,128,88,148,222,101,3,170,117,27,37,134,198,119,103,250,176,82,22,212,72,171,166,249,29,227,40,169,102,150,55,208,100,124,90,169,11,62,64,107,101,152,27,251,43,145,20,193,42,216,53,233,181,149,222,179,70,211,43,40,44,203,196,152,85,103,13,188,103,94,163,51,2,116,58,19,107,76,206,176,204,239,130,233,196,117,220,74,134,188,229,28,198,144,105,239,209,85,53,100,191,171,133,153,140,21,120,155,167,77,143,163,219,236,16,186,219,200,158,81,21,217,136,120,54,157,33,216,93,83,149,174
 ,8,5,205,165,174,138,163,194,205,88,40,151,49,4,121,77,205,43,49,222,69,96,41,168,119,142,117,65,239,142,96,140,103,40,137,253,66,70,32,61,50,45,64,36,180,114,207,88,219,194,227,101,175,159,177,70,156,226,13,71,235,9,238,103,50,161,215,200,54,70,215,203,59,192,122,196,101,60,210,59,237,234,133,29,68,0,217,171,140,8,238,52,73,53,43,223,121,40,203,109,1,73,69,133,226,170,172,56,116,20,151,251,24,23,58,91,191,89,235,250,19,26,97,46,49,136,83,125,149,202,91,63,148,204,45,53,243,224,124,52,47,243,114,8,94,61,38,10,174,8,108,86,16,185,102,62,24,3,165,246,121,84,173,47,120,199,54,209,10,32,143,98,38,133,191,224,207,195,142,91,211,191,216,106,213,254,161,19,182,197,179,213,75,31,43,195,12,147,64,139,53,13,28,157,102,173,190,100,152,71,82,30,116,178,59,209,247,47,2,139,64,243,20,161,228,208,65,133,111,72,82,136,7,227,243,230,180,233,232,131,108,164,35,221,108,55,164,85,134,93,24,154,119,157,179,19,106,61,93,206,11,195,30,62,234,97,193,6,33,15,185,138,0,209,129,102,83,157,233,63,229,9
 9,163,155,53,236,11,46,187,132,67,32,213,96,186,211,27,205,90,170,231,194,250,95,97,63,14,249,209,18,151,135,133,121,67,128,141,150,41,166,154,247,155,222,218,134,91,13,110,111,245,122,31,246,254,1,83,177,159,16,136,221,69,221,230,63,20,137,252,157,204,185,247,11,153,33,10,12,223,106,23,151,69,70,221,246,11,197,143,79,15,223,25,44,222,187,150,145,218,251,252,74,196,82,197,207,115,170,101,181,177,79,218,218,85,125,96,81,201,209,171,197,145,78,163,209,207,64,29,159,63,242,255,185,189,20,61,39,194,236,30,87,220,16,207,39,38,155,213,168,229,10,93,35,213,183,254,242,163,68,16,234,41,148,100,161,90,50,53,68,196,147,90,247,59,103,38,190,103,176,223,95,158,8,182,75,10,68,201,66,193,237,189,107,153,249,204,140,133,197,104,226,176,12,10,219,187,104,46,156,60,26,207,238,29,57,150,2,3,34,255,91,10,182,3,215,109,10,90,112,105,154,233,150,145,72,132,29,142,115,172,237,196,126,24,164,121,212,82,40,128,73,5,182,60,12,116,204,213,47,209,197,156,35,133,138,167,44,175,143,45,236,10,201,254,18,
 42,29,149,176,45,193,195,113,249,72,153,232,14,53,248,155,235,215,124,53,227,234,90,12,40,222,233,113,12,70,10,107,181,72,61,22,231,137,218,170,195,90,206,177,140,211,200,38,190,90,54,240,175,158,6,5,75,144,40,96,218,238,175,39,195,56,153,33,238,33,81,251,74,137,80,248,137,143,205,119,176,198,111,62,132,37,222,120,11,179,41,171,61,236,232,234,203,238,18,219,207,177,5,34,33,112,27,29,161,156,253,79,200,146,10,203,138,147,115,203,253,91,85,84,15,69,233,164,75,46,53,106,164,182,179,67,174,124,213,91,72,58,192,110,155,148,137,224,198,99,193,20,118,20,135,155,187,49,14,220,207,105,119,225,11,167,214,178,8,10,69,214,22,121,214,136,86,216,100,238,22,11,253,61,34,129,22,195,174,53,176,154,203,205,164,7,61,158,59,12,199,251,88,43,26,16,96,59,176,112,79,148,161,19,125,208,229,8,198,214,28,20,57,176,123,158,95,139,85,198,23,221,7,143,118,78,54,177,196,244,242,56,27,165,241,237,227,181,109,142,50,215,231,177,194,255,222,97,143,140,181,224,12,85,244,100,47,138,226,56,248,65,222,9,202,194
 ,168,157,213,252,9,22,35,215,144,224,43,109,59,6,169,119,200,230,240,182,170,101,46,249,197,246,117,5,134,4,173,7,219,196,69,128,80,219,199,89,185,74,51,118,144,91,201,165,74,255,194,172,17,148,110,104,167,66,166,109,47,31,158,213,244,137,147,132,88,209,45,55,87,119,172,237,206,45,119,146,202,141,202,205,225,139,86,252,189,196,77,70,252,115,163,111,111,82,230,155,55,160,212,148,163,62,64,51,194,24,243,167,157,243,177,29,37,62,17,11,202,155,195,197,86,78,255,154,84,205,57,89,49,213,93,224,35,117,197,30,167,25,151,13,240,28,45,233,37,71,217,208,13,14,76,101,153,92,253,178,242,91,222,97,203,9,38,26,248,35,100,186,13,18,225,144,234,135,244,116,196,11,43,179,179,230,133,193,210,180,174,106,185,64,110,170,209,103,161,196,80,12,14,240,186,212,27,240,206,113,158,149,182,14,248,40,10,90,82,167,232,215,14,0,227,57,212,44,141,185,178,190,223,102,79,18,95,45,1,191,9,32,241,199,199,4,222,212,126,171,202,188,208,206,41,56,150,18,184,222,70,168,146,161,42,191,166,132,133,4,194,131,50,143,3
 4,8,27,46,13,225,26,21,150,14,176,51,61,116,1,67,105,89,62,230,243,196,205,27,198,6,156,50,161,215,190,252,165,129,175,59,184,2,174,113,246,182,155,104,216,165,135,9,226,210,236,252,49,150,193,158,135,208,4,201,171,121,247,135,153,10,194,83,113,1,205,113,178,14,112,88,145,76,118,71,64,120,98,133,111,192,196,65,217,153,38,246,201,227,216,231,212,85,55,92,207,223,210,150,159,48,170,147,194,145,171,113,41,46,48,209,232,127,88,190,91,6,127,220,57,232,166,68,47,157,168,27,39,235,248,239,188,17,224,220,130,73,12,106,22,166,114,170,66,122,87,14,114,87,133,111,236,143,200,84,65,35,114,49,8,177,199,247,160,81,127,179,54,72,66,244,198,158,0,243,183,91,7,224,64,112,60,196,94,42,230,4,141,82,253,253,175,96,75,73,184,39,156,254,186,245,188,177,157,83,79,146,111,180,240,214,132,190,142,202,187,184,64,254,180,189,79,248,16,201,193,102,167,113,52,164,125,179,155,99,125,171,251,249,139,249,176,209,80,241,50,64,31,238,21,168,164,18,0,178,25,251,133,157,9,63,186,13,173,53,187,42,244,81,151,77,
 243,127,94,136,12,153,51,69,224,58,143,123,101,10,10,206,2,17,210,225,147,133,23,53,58,106,179,75,246,249,37,108,179,54,110,29,159,193,78,122,240,6,183,118,67,88,105,178,55,255,194,167,223,14,5,201,67,91,174,249,203,80,153,151,255,29,84,52,45,191,12,166,26,181,103,54,190,164,94,41,131,95,10,238,7,230,30,220,153,3,89,31,248,226,75,142,125,38,88,222,35,241,163,83,169,168,131,98,103,185,202,159,120,17,18,199,133,42,71,250,46,141,140,48,84,13,242,138,60,239,197,125,247,132,50,207,74,60,204,254,192,133,132,182,6,208,237,222,153,21,143,69,209,92,120,113,26,95,201,178,55,84,193,185,7,246,250,44,13,201,10,85,144,30,168,86,93,224,248,193,41,10,70,252,171,42,133,75,233,250,145,156,153,145,186,68,67,9,92,165,12,173,53,108,49,45,207,113,77,228,167,27,170,144,84,84,7,113,193,98,207,29,174,243,144,71,185,140,68,21,87,152,203,115,149,143,164,23,1,95,192,196,117,54,76,250,92,249,113,178,110,34,4,92,150,248,37,97,212,139,163,230,12,160,77,63,88,102,122,240,38,179,144,71,246,153,171,64,253,18
 6,184,161,97,155,79,143,192,32,215,72,67,92,247,222,152,204,48,99,199,192,120,59,140,0,103,122,130,11,217,75,250,23,225,255,141,118,145,193,93,73,136,100,207,29,210,43,217,249,245,109,59,92,168,153,238,155,195,173,73,110,214,254,60,112,160,27,129,184,84,42,31,162,118,71,151,5,194,113,239,216,78,131,137,163,97,226,15,186,239,176,102,124,183,99,229,230,188,236,99,185,211,24,125,9,250,49,245,2,150,0,181,185,110,243,221,97,38,56,51,47,22,66,76,223,203,139,116,161,54,191,196,147,10,41,5,39,154,113,187,185,15,69,167,186,40,28,47,156,161,2,242,116,86,233,43,7,182,211,183,68,235,35,209,147,218,110,165,145,11,220,27,65,6,255,241,169,32,147,181,253,163,155,187,207,159,164,190,162,192,181,91,40,206,116,54,194,219,211,232,167,46,199,169,75,199,14,116,48,7,241,252,240,20,116,120,123,207,166,155,254,46,231,116,0,216,229,227,35,104,12,173,117,155,220,252,173,135,141,191,230,32,191,239,160,217,203,172,113,188,253,33,4,153,200,80,3,233,82,136,77,147,183,201,146,49,33,63,53,62,80,48,176,102,1
 25,123,54,183,142,15,42,207,82,143,222,31,170,68,245,184,221,188,181,205,245,217,14,139,238,163,206,143,120,70,177,79,56,125,103,37,59,21,157,218,222,160,112,151,249,43,234,20,197,143,161,173,198,166,164,213,148,234,172,205,250,211,19,253,252,160,75,215,95,247,86,11,228,173,163,4,43,191,127,5,49,245,60,177,148,48,96,247,131,195,147,176,124,120,18,35,239,5,53,59,124,228,203,26,29,236,138,77,24,121,185,121,25,76,161,95,151,184,31,178,151,145,217,206,253,219,22,201,114,222,120,131,29,73,55,138,175,197,125,55,209,171,141,78,95,56,85,161,69,2,22,194,77,104,87,107,24,163,178,144,142,100,31,88,126,250,119,125,154,199,45,39,123,167,181,57,200,192,215,160,88,116,227,237,112,153,166,8,63,232,81,98,110,16,183,92,160,110,34,168,88,255,143,163,203,170,159,247,229,254,90,13,4,183,134,207,177,136,16,22,135,48,120,242,115,127,69,75,209,206,125,101,26,249,195,96,148,16,105,33,23,144,25,43,214,96,62,155,75,135,156,142,208,162,130,122,53,170,34,200,23,126,133,22,92,155,28,125,250,228,163,85,24
 8,75,14,96,238,111,177,157,179,253,43,17,184,206,56,239,142,201,194,123,14,246,16,29,69,233,241,193,40,159,7,22,174,135,14,55,72,9,200,65,233,157,254,15,234,15,83,245,189,77,30,24,201,211,250,48,134,46,126,239,125,58,34,73,20,241,247,165,72,218,165,221,216,147,56,190,121,158,167,119,80,126,127,58,57,168,88,128,170,26,72,30,133,152,17,212,209,140,212,130,136,176,233,37,160,182,98,7,90,116,78,39,220,121,161,201,65,135,184,197,122,194,73,211,116,255,67,105,231,0,178,170,62,108,233,214,69,84,142,209,201,34,185,9,195,87,117,140,244,62,135,185,225,122,15,161,7,202,228,131,93,120,138,50,177,239,240,72,185,145,24,201,237,162,12,149,168,5,48,27,255,133,154,18,171,146,165,201,60,38,32,30,118,213,151,99,166,253,55,22,206,209,111,5,40,102,180,8,33,34,150,212,31,58,0,91,70,139,104,68,238,227,26,230,176,48,57,149,116,213,152,197,248,31,231,216,34,124,151,9,168,250,195,133,53,148,65,76,157,80,56,76,204,87,55,117,170,0,255,27,237,182,199,189,19,7,162,52,90,89,114,93,33,231,144,255,252,68,20
 0,179,247,54,139,173,231,107,172,239,64,23,91,83,183,54,27,5,178,139,204,41,94,230,24,7,220,33,43,4,27,110,194,0,252,5,71,107,174,195,138,125,78,152,192,170,240,4,122,84,96,75,241,85,245,93,189,20,112,22,97,54,214,187,82,237,59,243,77,30,15,200,149,30,11,26,118,70,151,55,191,190,21,99,135,65,242,29,204,184,12,233,103,0,18,149,140,184,89,108,102,141,198,240,13,229,57,227,194,191,71,43,161,92,127,167,7,17,229,8,186,1,41,244,221,87,84,196,133,78,238,212,232,215,72,231,90,182,251,67,123,25,112,72,87,185,178,195,36,23,220,255,24,158,131,149,23,192,41,188,131,226,175,56,135,45,181,65,167,55,103,222,130,169,71,192,19,4,160,2,86,119,26,82,185,121,62,245,143,146,49,143,169,209,191,12,79,135,243,52,176,71,6,4,10,150,106,169,218,198,58,34,33,95,72,175,125,85,3,226,72,55,19,58,96,72,109,186,67,216,202,119,13,21,61,84,162,23,229,6,96,121,153,15,113,239,18,122,158,50,28,89,174,200,184,157,80,206,244,49,117,86,37,60,133,109,159,147,127,43,241,121,21,57,24,210,210,60,211,17,18,238,79,234,72
 ,115,122,43,90,180,71,29,66,187,200,71,253,46,49,181,55,133,102,95,106,175,180,208,197,159,64,16,183,35,165,136,43,156,45,11,220,3,237,198,254,92,252,179,1,113,153,140,111,148,160,232,247,54,113,114,195,246,164,112,220,131,155,52,90,101,180,159,7,201,245,179,14,52,135,225,130,3,14,37,43,102,136,115,106,101,238,93,135,116,248,56,177,141,24,219,191,168,26,217,250,26,18,209,68,202,141,172,69,124,43,171,70,229,187,127,137,96,148,129,23,111,192,36,191,95,158,25,91,14,38,229,211,121,155,52,36,155,170,240,157,23,200,121,158,151,125,223,113,88,57,194,43,247,28,245,127,239,144,120,45,169,202,98,230,227,72,12,150,233,43,183,212,91,164,70,226,127,135,134,199,188,79,39,147,136,125,81,169,104,229,158,105,46,154,113,9,218,143,126,174,225,115,159,255,19,39,126,236,95,172,225,175,0,44,77,219,81,105,124,174,134,190,50,159,236,4,124,164,0,60,96,22,139,75,18,48,76,170,180,225,43,134,73,208,181,97,248,4,160,168,208,38,229,239,167,9,159,156,220,116,245,117,132,50,139,68,62,172,40,195,237,209,133
 ,10,164,225,252,177,65,203,176,103,135,177,236,8,85,225,104,88,135,67,82,75,84,144,120,24,97,163,194,119,100,163,76,201,88,105,141,29,174,240,110,134,119,30,27,232,27,3,182,23,47,60,91,202,230,122,35,24,164,222,244,88,78,191,45,14,3,40,25,43,20,125,98,184,231,110,89,100,246,79,140,76,136,109,186,73,23,141,199,219,194,121,182,126,226,137,76,208,203,58,211,189,54,193,83,93,80,127,49,237,217,235,202,46,194,148,123,92,99,217,34,71,87,223,135,215,209,37,8,6,205,33,144,228,152,60,249,233,94,181,130,115,51,243,0,250,14,136,128,103,146,135,99,229,209,213,141,38,111,231,8,95,218,233,170,114,121,20,126,191,142,26,85,184,148,220,122,7,155,72,123,88,168,197,253,175,25,164,176,213,43,47,120,116,23,220,195,245,228,228,101,24,31,117,4,188,77,162,247,230,86,233,110,10,195,75,158,89,108,194,138,70,200,151,57,205,198,188,188,128,120,77,231,82,141,177,52,131,225,132,83,25,15,21,83,9,212,60,107,112,189,9,13,161,235,89,88,188,119,188,223,230,82,213,198,165,29,36,47,74,189,158,189,223,77,238,169,
 117,55,11,175,146,245,133,23,78,75,102,91,255,147,59,54,119,42,36,239,163,50,96,59,216,174,109,21,88,69,25,51,37,152,234,91,209,146,111,1,201,147,136,250,69,39,56,230,161,86,226,15,145,147,212,126,254,93,111,96,205,150,247,163,237,39,249,23,99,108,95,60,170,65,144,214,202,54,228,185,98,73,51,134,56,69,26,224,196,95,52,210,174,8,161,62,223,227,92,191,12,56,215,230,110,1,134,43,126,197,32,235,97,183,148,80,216,70,63,181,150,245,13,69,1,232,237,74,40,96,166,95,248,223,251,111,183,15,200,165,52,53,252,33,46,37,113,193,88,110,216,141,85,8,207,183,214,147,12,78,220,82,39,212,139,210,94,254,175,116,161,76,148,224,44,123,230,166,136,184,189,110,91,70,142,132,177,167,106,39,59,236,134,220,241,205,114,235,3,124,199,6,201,48,177,100,76,57,172,202,212,224,109,243,82,140,118,192,172,58,145,182,216,168,190,42,95,35,232,202,122,82,196,66,51,99,244,79,213,238,212,105,184,56,56,20,203,245,82,121,178,233,250,218,104,232,63,105,4,7,201,253,40,160,254,14,230,59,185,70,218,61,65,3,84,38,67,120,8
 7,31,160,198,139,245,123,126,232,236,45,193,18,151,186,144,92,233,120,0,22,19,39,219,187,188,137,146,159,178,50,174,173,107,175,199,208,149,147,40,61,38,234,204,163,28,134,69,22,229,101,37,143,152,171,20,160,19,228,168,78,62,40,57,216,95,38,80,121,170,177,124,20,116,49,150,41,53,157,176,71,45,220,54,52,85,191,65,23,85,163,204,125,194,146,88,170,61,182,16,117,100,203,192,140,238,12,130,170,201,64,203,66,206,59,183,135,236,254,197,85,147,133,6,67,5,23,39,53,182,201,216,175,196,243,93,196,143,0,19,51,218,83,185,145,134,107,215,24,254,38,215,133,79,118,83,25,40,34,63,248,31,159,59,45,128,101,204,201,32,66,246,64,76,11,150,106,100,116,250,240,82,174,82,39,112,135,21,245,118,190,234,247,114,119,53,101,237,204,236,1,180,97,17,106,17,24,249,172,249,61,8,222,126,88,157,82,26,138,124,68,48,34,165,7,13,156,14,129,255,86,41,161,46,191,251,45,81,2,153,68,163,67,156,253,113,243,41,221,199,108,252,206,249,13,189,136,32,86,24,106,36,78,140,58,35,251,96,14,195,199,68,62,137,197,247,149,171,1
 05,7,189,158,199,0,29,108,224,104,17,93,211,131,83,71,159,69,141,123,212,239,202,6,55,98,135,109,89,201,75,55,251,45,9,121,47,237,89,13,217,134,210,232,185,13,171,95,201,103,235,72,163,86,62,118,251,29,206,149,182,211,229,122,148,164,170,51,248,117,166,248,179,53,114,103,32,14,254,49,210,6,207,141,150,217,86,224,169,14,252,153,9,201,169,52,145,105,136,186,103,242,78,183,181,165,209,243,75,223,44,165,149,76,199,201,95,210,174,174,103,6,243,240,174,137,155,9,2,245,35,144,52,8,179,81,135,36,82,46,172,169,241,38,17,255,214,177,158,187,77,225,251,166,85,94,9,227,232,228,99,162,251,6,205,23,236,183,194,112,186,131,32,222,56,243,85,251,212,140,71,116,224,51,247,25,124,184,244,65,103,137,119,18,83,65,162,252,42,95,81,53,8,75,196,167,87,107,79,67,238,140,12,183,40,251,247,152,147,3,9,231,100,79,71,180,78,67,118,192,44,109,10,181,3,68,67,170,222,12,67,230,175,167,104,60,38,3,135,227,189,216,236,141,0,112,138,89,226,114,138,39,55,189,74,202,103,158,139,226,152,91,44,162,3,67,79,89,172,
 230,5,131,235,64,220,105,233,56,74,245,65,16,178,87,43,70,161,247,38,102,58,81,227,235,224,145,32,28,20,166,226,128,18,249,183,122,27,197,4,55,189,39,99,118,194,154,114,217,112,138,221,16,242,89,88,118,73,5,158,177,107,133,101,115,26,153,40,101,252,215,80,27,98,121,215,247,222,246,168,158,71,46,48,71,80,31,44,248,123,238,113,210,253,76,142,49,93,100,105,55,82,240,18,19,72,57,194,152,40,44,174,227,228,0,197,181,48,68,77,10,239,213,101,197,180,225,138,112,1,61,8,113,55,126,225,39,133,182,1,154,134,17,117,89,209,23,131,104,54,21,68,216,98,5,114,102,157,14,127,230,122,7,71,189,70,146,233,239,101,229,20,174,203,126,249,231,246,72,189,213,10,204,59,76,104,93,123,223,204,125,239,170,51,29,239,55,197,31,111,239,44,5,124,168,59,194,201,21,228,40,46,25,94,63,209,255,170,223,1,95,189,75,1,215,139,146,64,69,0,65,122,206,71,35,81,212,61,84,200,182,80,116,162,128,151,234,189,248,111,116,217,22,201,148,49,67,161,242,193,95,152,94,36,222,144,132,167,43,10,14,20,134,72,185,113,41,71,10,166,2
 25,81,188,213,89,255,0,9,28,225,192,62,207,17,31,123,197,245,209,236,107,52,6,232,205,143,249,99,105,112,243,171,203,135,69,188,15,59,193,96,244,210,51,235,204,111,90,26,34,209,188,160,195,17,138,1,42,30,195,179,39,106,219,90,144,25,126,70,68,139,172,194,6,98,149,7,181,5,58,59,223,214,84,72,53,237,160,27,143,148,47,158,19,194,165,101,120,43,77,3,3,146,96,134,64,39,175,118,177,85,97,222,193,135,118,66,185,104,104,181,228,132,244,150,245,19,110,39,239,155,81,51,38,191,64,101,47,208,180,84,61,53,12,67,84,104,247,249,21,44,70,60,206,235,178,177,65,124,84,230,137,133,107,178,86,5,120,209,81,238,10,253,38,226,71,46,139,238,144,116,119,248,229,106,20,52,203,191,26,156,136,17,170,121,159,166,229,223,120,192,193,103,68,178,121,189,154,247,6,139,202,239,242,99,36,204,224,199,131,10,186,32,34,209,239,56,49,164,255,44,140,119,79,42,21,210,3,15,178,177,246,53,182,14,61,65,67,168,145,17,244,127,242,22,239,245,215,107,182,146,32,79,5,193,173,83,249,129,153,140,149,0,0,36,83,104,239,15,158,
 66,37,238,126,86,0,242,115,155,177,5,81,203,212,133,119,69,23,169,237,231,0,3,190,79,235,125,206,80,95,134,26,137,117,241,10,123,26,33,36,145,243,70,36,100,21,20,251,147,3,24,178,104,26,176,106,30,72,27,32,69,112,69,200,200,107,37,55,5,69,87,223,178,204,184,136,238,135,101,139,19,79,39,2,241,86,204,168,63,213,130,40,97,255,174,122,119,116,58,141,164,242,214,236,120,251,235,134,155,23,205,28,179,52,226,56,228,239,231,71,181,207,228,20,197,162,60,239,132,21,158,44,214,108,55,253,188,242,182,206,202,188,159,184,97,216,185,218,218,180,158,44,102,4,245,105,90,187,34,217,225,194,19,89,228,81,107,159,142,21,101,240,74,41,182,176,47,220,52,120,160,221,53,180,96,237,219,234,87,254,196,229,101,153,96,191,42,47,153,26,251,224,27,194,164,66,58,197,128,12,246,38,108,171,167,6,64,141,19,53,79,42,118,146,8,191,48,49,59,4,232,32,138,106,252,13,19,167,50,69,237,151,180,44,150,167,210,244,42,104,93,140,140,4,131,165,94,103,8,53,100,61,177,191,59,89,254,73,241,153,170,73,91,253,192,90,254,34,9
 8,77,225,218,24,194,177,60,64,154,43,21,76,110,111,48,121,180,16,57,14,22,96,76,141,128,181,51,139,76,248,111,203,149,84,106,169,1,194,212,95,150,182,41,249,163,200,48,18,59,121,27,57,96,188,46,140,49,108,150,143,63,15,173,147,116,112,92,60,233,47,105,159,225,138,110,220,116,47,51,48,94,111,133,193,210,181,135,194,12,195,167,36,182,73,51,153,123,74,248,152,60,31,149,158,51,143,97,15,186,142,154,24,115,208,219,233,125,248,90,48,224,124,244,68,101,100,12,223,13,255,63,191,133,205,59,80,56,37,130,92,230,213,120,114,144,130,40,165,147,148,87,126,227,182,10,41,33,151,131,103,35,70,56,197,211,56,173,234,25,161,100,181,71,152,86,242,11,225,235,152,199,15,7,124,159,94,178,33,43,146,74,164,100,36,143,220,234,231,175,114,245,127,93,21,213,121,11,156,74,94,94,39,129,38,137,62,125,131,211,93,155,250,179,255,103,10,190,245,160,232,172,167,13,72,248,155,170,67,10,38,201,31,140,249,242,136,98,239,148,151,214,178,63,235,9,254,160,244,119,118,175,197,185,2,49,18,145,136,30,26,168,192,231,115
 ,106,9,53,161,44,137,105,246,202,88,123,92,164,195,25,174,142,244,99,164,157,6,173,217,173,118,122,10,42,86,221,97,15,226,202,35,131,53,241,66,192,217,112,0,241,75,164,152,226,111,165,66,207,110,252,158,250,215,110,238,219,32,67,166,100,151,144,38,75,146,21,105,157,220,5,90,216,255,99,42,135,8,229,131,6,58,56,145,70,112,88,40,21,76,99,44,27,99,71,226,147,55,242,69,68,112,56,162,46,100,225,205,229,87,117,16,205,1,38,182,27,91,248,32,155,6,0,226,119,223,59,39,111,126,81,77,193,32,168,185,173,53,85,39,113,235,167,177,196,226,66,158,255,106,157,202,122,202,157,0,179,193,65,120,220,246,133,1,188,49,70,97,16,194,119,196,112,119,141,0,227,236,119,237,134,222,35,108,153,247,144,47,86,114,102,157,217,169,189,26,13,240,147,56,77,24,84,164,32,210,8,199,233,140,190,2,208,222,230,107,79,96,12,63,117,176,214,205,167,91,172,175,13,96,174,187,244,31,164,167,192,29,62,184,157,207,91,184,148,1,95,63,237,239,124,110,31,26,108,200,179,46,136,27,17,60,204,3,115,108,201,93,16,168,234,240,210,43,4
 ,82,153,229,255,191,183,199,25,161,45,106,248,128,133,118,97,76,70,80,222,239,93,222,85,182,184,172,87,217,186,14,205,71,217,32,85,162,194,192,216,45,235,94,146,242,64,195,123,236,193,162,73,210,189,199,111,143,28,117,91,209,49,245,41,71,162,219,127,205,219,84,82,165,81,219,12,8,164,206,126,162,188,158,115,101,92,254,91,151,227,182,26,50,226,174,202,70,78,234,196,228,82,247,77,208,178,223,90,111,235,22,239,17,26,31,118,129,218,166,137,63,206,118,73,95,255,64,180,152,41,15,96,60,126,187,222,150,27,233,151,251,226,218,251,127,36,249,53,79,207,15,110,99,55,144,170,131,114,9,191,112,90,115,67,232,85,25,187,222,139,159,151,197,86,151,163,224,11,209,202,31,112,80,169,236,123,154,23,95,141,118,21,82,141,134,95,30,133,79,182,37,224,13,43,116,215,68,55,253,52,182,216,37,95,184,24,235,231,154,37,127,134,246,226,208,228,224,252,23,27,48,30,131,136,107,237,222,239,67,42,155,211,84,23,250,98,37,183,143,85,30,100,122,103,80,167,55,124,134,49,10,225,31,232,20,232,39,40,177,121,153,138,121,
 194,161,18,235,16,210,188,247,251,72,203,213,32,165,211,4,243,75,97,196,219,2,200,89,234,232,42,24,225,5,223,33,70,40,235,157,45,98,160,196,49,118,79,13,114,243,248,148,31,167,130,161,181,149,62,198,107,68,238,68,146,124,37,21,109,246,98,150,186,126,104,205,142,48,28,48,28,189,50,21,80,166,76,17,17,118,69,209,46,41,211,127,178,230,66,226,35,43,126,107,178,53,111,188,58,177,2,133,16,251,48,43,212,19,101,90,131,2,227,54,103,225,188,121,75,241,48,156,24,150,103,194,248,75,166,169,196,140,250,190,71,9,136,189,246,125,89,110,233,229,245,22,202,21,47,18,50,169,39,195,190,119,49,51,43,153,139,197,25,65,79,106,75,211,175,221,208,91,118,18,78,147,171,58,40,48,86,185,52,30,179,92,155,19,251,203,161,70,94,72,211,66,178,12,64,138,1,40,108,234,160,245,182,149,173,129,172,43,25,30,187,97,70,184,77,249,87,90,201,160,228,89,109,30,129,135,77,54,19,167,152,146,186,198,178,222,11,58,7,54,78,19,47,217,251,5,28,236,76,230,60,154,159,132,185,96,25,153,187,184,253,35,46,89,47,153,158,127,200,240,
 251,72,59,173,183,251,65,136,204,127,55,79,19,119,21,246,120,107,156,241,70,67,49,157,254,31,59,11,205,95,242,180,147,206,159,154,93,91,49,116,201,71,142,153,162,69,111,223,1,133,241,135,30,40,60,79,98,70,79,208,76,164,134,181,48,153,95,173,243,181,233,177,249,98,214,8,208,54,62,196,90,165,230,230,236,121,214,131,62,40,176,66,124,49,200,192,165,217,30,64,245,161,251,162,175,138,183,77,211,238,218,26,30,89,164,114,64,111,198,146,109,236,218,167,40,55,73,233,6,24,167,175,204,234,249,215,45,2,195,44,93,148,227,36,201,129,18,108,167,32,48,180,45,64,165,233,128,9,101,78,165,139,199,81,100,237,118,69,204,17,86,121,25,43,5,31,72,135,74,162,26,251,222,199,67,91,144,255,221,226,146,46,54,107,243,231,54,143,196,32,28,194,40,64,41,187,219,67,178,53,17,166,74,50,8,145,34,180,245,211,173,251,162,167,72,30,25,139,84,49,42,212,49,191,117,234,100,112,254,225,236,216,59,196,242,127,232,71,208,4,5,101,79,193,174,205,166,154,90,46,34,184,124,204,249,63,253,233,188,109,112,115,142,23,182,168,19
 5,18,185,159,51,51,82,157,72,28,14,218,5,62,160,97,156,108,73,182,56,141,78,192,228,72,72,74,26,60,158,12,38,79,92,106,122,235,224,122,236,16,58,125,145,215,88,78,169,185,239,24,70,89,64,102,85,251,73,139,145,248,168,51,103,150,242,132,8,59,205,225,8,68,96,146,50,37,188,47,138,154,102,154,110,30,186,87,154,9,79,249,203,6,213,76,226,144,215,110,229,179,224,195,177,173,38,218,214,216,156,30,22,115,228,239,238,212,200,95,24,189,28,59,239,123,255,206,15,66,60,58,221,162,154,159,157,30,3,54,22,191,214,246,182,98,94,8,255,145,198,169,130,80,78,147,19,238,136,111,203,242,218,116,212,19,122,146,174,145,169,17,206,128,197,40,87,158,54,67,36,6,122,208,222,229,65,5,200,4,191,86,126,168,138,158,99,251,9,232,0,171,180,94,160,161,153,210,97,31,215,56,206,222,96,94,167,218,90,37,6,247,30,229,102,194,58,23,53,3,28,158,29,150,254,174,49,249,116,181,118,213,208,34,227,170,99,182,109,230,12,120,188,223,48,47,83,99,33,175,153,82,1,51,233,169,79,134,103,86,65,5,23,25,108,199,183,20,21,12,29,135,
 135,236,180,220,163,70,191,232,144,117,50,198,55,103,224,77,132,125,65,34,233,0,160,236,191,87,254,173,198,40,44,198,143,149,127,37,52,132,149,122,255,111,67,89,198,65,25,13,134,90,151,101,55,149,241,70,29,159,202,100,211,36,159,29,180,74,187,169,153,147,67,255,126,204,186,22,35,196,105,41,122,218,184,196,183,213,167,115,50,177,159,101,122,99,112,32,82,19,170,106,196,32,115,31,28,42,114,86,127,137,231,142,148,233,182,154,116,115,23,75,253,140,208,35,66,206,35,238,57,62,78,220,206,56,65,224,129,102,75,22,221,235,93,55,48,234,217,122,95,145,189,205,71,184,34,155,182,93,84,120,166,32,71,103,28,232,176,20,144,101,212,245,127,167,57,151,156,212,250,125,159,104,46,71,209,25,12,178,101,253,246,111,153,94,135,132,7,209,107,214,3,241,27,148,14,211,79,112,127,212,4,253,104,164,205,212,132,15,109,171,158,130,197,55,212,111,26,175,43,153,183,224,104,89,199,251,204,148,213,124,189,208,190,64,130,168,8,234,172,142,53,104,38,75,201,221,208,143,15,134,67,118,238,28,213,63,156,14,36,127,20,7
 9,228,104,95,198,61,253,70,25,246,58,170,183,100,174,27,221,55,132,26,115,122,84,254,84,14,71,250,181,204,42,153,8,184,217,191,239,69,8,122,254,146,158,30,36,248,129,7,105,232,234,110,195,24,81,13,54,250,103,127,175,39,136,77,42,118,38,174,55,55,196,146,132,96,123,108,86,221,56,229,42,237,217,90,5,31,209,60,43,98,225,174,205,109,29,60,246,49,223,1,249,121,247,234,187,89,182,159,11,158,6,76,21,159,189,143,77,146,134,135,107,173,147,98,210,209,175,54,33,206,30,112,99,28,132,87,248,208,152,170,172,64,233,141,1,223,86,88,4,208,17,13,15,237,246,219,241,69,45,235,15,101,79,237,66,36,231,58,236,241,135,9,79,163,138,190,202,34,104,2,239,21,89,180,226,70,113,180,80,39,130,201,140,147,155,149,50,98,248,98,207,40,15,163,204,223,219,155,216,61,53,115,124,79,94,207,141,159,25,40,94,109,135,177,182,65,95,85,147,67,126,124,229,77,116,59,88,166,86,51,111,249,15,230,178,70,93,179,131,5,47,146,40,243,124,15,137,237,47,130,217,199,210,177,28,249,224,102,84,87,170,136,187,56,19,233,195,77,40,17
 2,107,15,68,229,192,175,61,107,158,157,19,22,54,219,77,211,45,66,187,19,22,204,247,28,49,29,185,91,2,193,111,35,204,91,57,72,85,35,53,0,232,36,153,29,200,210,102,167,31,131,132,247,149,45,43,202,230,102,60,92,227,37,241,131,41,237,179,153,147,164,212,42,13,191,49,232,36,80,10,144,93,5,232,197,86,204,193,139,116,246,192,119,137,113,231,144,156,242,161,202,148,171,255,45,69,150,31,100,199,81,95,244,253,95,40,31,60,238,34,185,98,59,29,91,206,224,49,62,12,66,156,245,113,127,82,80,246,120,104,58,180,235,111,19,65,176,153,71,79,146,68,184,244,249,247,39,110,81,186,62,139,73,63,151,138,31,111,165,166,179,22,110,12,129,37,90,197,113,31,49,99,147,10,252,226,22,144,161,239,121,16,167,252,21,96,134,182,230,119,45,228,126,143,136,247,203,134,131,161,0,1,104,223,127,154,90,85,133,86,186,114,212,39,21,202,195,208,217,39,113,255,113,158,11,104,78,70,24,114,209,18,25,219,1,93,234,174,0,126,110,243,129,174,225,208,160,118,69,194,7,231,74,45,20,125,170,109,249,37,3,188,215,136,250,182,126,81,
 107,164,60,42,153,123,157,11,147,32,158,215,151,26,168,29,44,132,146,180,198,219,71,103,5,147,122,195,203,162,103,234,250,242,218,112,82,210,252,6,174,177,199,8,159,200,110,162,147,123,240,168,84,65,0,83,137,217,130,210,2,54,185,185,177,33,88,173,192,18,181,232,4,179,178,188,201,183,180,165,174,20,77,165,140,234,70,198,171,216,229,170,1,114,205,236,93,58,32,205,196,241,145,152,233,6,248,195,167,159,206,69,120,68,191,85,240,89,244,248,26,190,131,192,21,134,208,102,144,91,250,140,148,216,159,61,223,95,57,220,175,8,251,69,75,102,213,110,220,242,81,215,170,84,163,44,45,46,154,12,138,145,46,163,245,7,69,186,133,42,136,78,185,1,223,92,96,204,155,86,41,69,57,125,73,165,139,186,34,61,81,79,215,247,199,249,190,62,212,93,224,212,76,10,207,86,95,191,92,148,244,144,253,4,124,93,4,213,242,56,20,183,216,239,219,34,210,212,44,13,203,42,77,124,7,57,211,19,92,48,230,91,91,212,147,60,215,81,184,162,135,83,86,102,141,59,121,23,177,151,109,210,47,34,181,157,84,4,240,249,7,228,89,61,182,150,208,
 40,248,40,203,67,20,128,36,170,49,143,71,107,66,222,66,115,166,97,230,126,13,182,250,103,44,254,243,243,149,28,72,130,15,145,101,200,223,180,207,48,72,251,175,70,37,25,187,133,241,239,124,39,83,138,254,101,142,178,104,195,187,238,19,220,111,253,125,246,243,147,147,51,31,40,210,105,7,143,54,145,93,70,143,225,124,89,237,219,146,9,157,215,246,130,240,209,187,193,184,48,194,203,37,142,199,255,223,129,176,11,2,200,10,90,73,140,204,73,89,85,58,249,94,85,135,159,152,76,77,176,143,236,61,243,108,54,38,62,131,166,100,49,120,209,223,42,116,207,201,153,82,110,203,219,133,226,118,84,19,249,152,128,226,74,166,204,218,21,96,197,234,109,183,255,152,126,42,213,34,162,131,41,56,163,73,215,63,77,235,204,80,130,194,191,110,164,188,103,8,69,62,131,237,118,128,208,114,74,75,0,166,209,240,186,133,62,180,69,14,149,89,171,188,23,17,72,18,197,99,175,16,169,232,177,180,163,179,119,57,34,127,170,135,247,102,234,213,251,132,59,14,90,37,147,190,139,57,131,105,188,64,131,243,56,204,112,50,149,212,159,19,
 11,175,182,235,234,219,216,156,47,155,197,183,233,16,160,2,251,242,137,200,133,159,197,187,124,52,125,31,68,65,37,149,225,86,183,77,106,131,34,129,25,205,53,61,113,39,234,210,21,200,63,2,31,124,173,237,249,106,68,121,85,233,99,193,14,207,112,128,180,117,187,196,253,14,163,8,170,242,226,32,49,127,188,163,161,2,14,147,245,197,71,201,48,177,229,226,113,85,53,224,83,137,145,234,8,80,121,190,145,18,62,97,4,231,70,171,184,164,1,194,16,16,3,111,145,193,59,147,44,116,48,22,148,132,202,208,64,155,200,53,33,40,98,147,247,105,130,84,24,43,204,187,9,103,51,99,110,134,26,208,118,8,68,194,16,171,27,65,144,75,154,76,185,40,160,203,75,95,112,235,74,136,232,249,42,244,55,11,228,6,19,183,139,127,95,181,112,202,80,139,247,81,49,48,57,63,112,8,164,190,41,152,50,28,213,201,71,33,99,177,23,81,56,27,82,125,67,38,137,188,186,77,26,90,62,18,99,82,50,169,194,57,154,224,160,69,135,198,1,78,136,146,201,70,46,121,123,53,233,5,211,98,126,203,246,85,29,99,96,124,214,185,57,128,240,93,154,97,255,100,164,16
 8,71,146,248,180,20,101,109,97,21,145,210,59,144,96,119,62,42,234,113,150,209,251,92,240,247,28,228,101,30,197,119,136,161,171,56,66,222,63,98,23,81,174,84,135,159,109,15,55,192,33,95,160,216,140,173,10,140,112,172,161,29,239,24,65,137,166,226,205,211,165,222,123,56,68,157,166,161,248,129,1,136,247,115,119,48,239,117,243,59,54,0,194,161,25,122,2,200,181,147,194,127,193,98,108,8,139,116,53,13,1,100,254,22,104,224,148,104,226,215,215,212,155,16,192,243,138,204,125,151,38,14,242,28,233,199,81,187,82,191,131,226,9,135,102,110,82,148,154,236,197,139,115,87,8,224,135,198,102,232,169,172,162,42,31,56,142,227,127,38,252,108,35,130,84,33,135,67,131,94,229,17,209,50,33,32,132,139,252,91,33,60,40,200,161,96,250,101,181,86,107,233,162,243,181,2,135,157,129,204,205,245,65,36,80,83,100,236,119,179,185,176,0,193,122,168,155,211,216,124,36,160,138,75,45,86,17,158,35,248,203,50,4,197,175,130,28,251,179,104,148,51,0,141,82,67,7,242,138,128,61,208,146,201,139,101,91,234,17,129,182,166,166,241,
 230,202,20,64,117,222,82,111,80,88,230,184,239,45,87,151,213,255,158,220,204,243,158,120,23,202,210,151,175,241,168,43,162,103,2,98,144,213,166,161,38,173,136,123,200,10,161,62,247,204,230,59,46,132,74,244,115,139,101,45,208,251,113,91,49,225,94,139,24,134,164,22,195,167,160,248,170,146,36,167,156,125,58,11,242,233,123,20,198,99,52,72,177,30,202,4,193,127,247,225,139,226,224,73,14,234,38,228,199,3,66,197,79,117,127,117,200,160,33,51,168,78,245,54,122,220,203,195,29,92,124,182,222,216,211,97,161,204,250,202,14,79,236,123,49,47,203,241,143,202,184,116,145,94,78,34,184,147,100,186,195,219,37,215,158,160,121,13,37,237,88,205,174,8,135,92,14,106,132,141,198,211,115,143,27,248,43,188,98,114,42,40,85,149,35,11,146,247,132,159,76,220,86,233,184,86,167,224,140,141,180,47,155,172,223,44,169,239,153,2,82,30,76,206,29,46,48,84,235,125,176,160,24,172,1,244,96,74,97,166,205,212,229,59,7,79,86,7,170,16,163,75,115,25,173,154,213,20,97,229,20,18,175,161,170,244,48,40,164,213,46,26,132,227,12
 5,34,80,220,86,89,178,226,108,68,71,250,117,241,226,232,104,26,156,9,19,20,83,74,102,78,209,32,220,252,243,115,198,53,19,241,54,157,90,198,106,227,236,45,145,62,5,3,44,93,75,92,65,227,1,110,53,192,218,164,140,39,146,62,243,53,44,35,229,77,136,203,79,116,76,20,217,184,137,23,98,48,59,250,225,177,38,96,234,239,50,31,136,4,43,178,218,131,0,53,39,165,233,129,197,51,144,173,61,173,1,170,45,149,248,17,186,81,35,245,230,38,13,105,186,228,70,108,143,132,57,128,135,47,211,51,110,82,84,224,49,32,72,84,78,156,9,124,22,68,152,86,236,117,209,228,67,38,27,237,29,152,126,25,233,121,155,234,67,188,121,23,112,96,42,144,105,250,228,61,227,78,198,227,66,188,220,209,172,162,53,146,129,94,174,54,251,140,159,213,44,1,236,90,118,77,98,127,221,171,49,157,3,185,208,246,130,69,253,148,141,75,97,62,236,250,130,181,9,83,192,177,66,181,104,192,9,136,213,75,100,237,106,131,235,36,104,83,198,116,211,42,192,184,207,134,254,223,73,3,193,53,183,143,242,29,69,54,141,92,134,84,127,230,247,248,18,208,157,5,176,
 197,16,148,36,148,53,242,133,143,137,212,13,17,214,26,142,155,113,167,58,48,225,58,43,51,95,134,151,107,140,39,203,121,213,186,161,115,134,172,29,241,206,94,120,28,98,15,52,126,0,40,253,66,75,217,73,41,112,80,66,78,23,4,189,174,151,148,188,65,249,124,123,48,50,17,170,84,109,227,105,250,112,211,102,20,247,200,102,146,207,185,143,167,205,42,89,60,169,92,124,192,167,204,217,205,191,161,139,91,102,13,114,96,138,116,156,102,52,244,49,242,79,203,211,121,185,112,238,54,17,66,123,44,87,144,48,13,158,252,155,124,157,91,165,218,126,145,78,18,104,129,169,59,76,159,73,147,24,114,249,10,141,209,98,89,124,109,217,241,102,138,181,84,24,202,186,239,0,146,18,170,116,164,199,1,36,207,196,125,251,158,158,24,15,168,30,77,70,69,64,221,167,121,144,21,58,170,68,139,241,196,120,96,122,37,191,105,7,92,39,225,203,188,48,126,80,39,227,202,56,182,218,172,34,243,196,219,181,24,237,150,81,250,83,63,62,141,95,131,54,127,219,141,176,205,170,198,250,70,11,114,216,248,197,6,186,13,132,131,54,138,240,215,213,
 10,230,109,248,146,189,85,87,215,29,22,106,185,128,189,225,176,101,78,126,81,44,100,184,130,107,34,234,241,154,107,135,156,150,101,209,129,9,183,37,210,243,38,245,199,234,196,130,122,131,130,245,231,178,207,142,123,197,88,149,229,159,114,14,34,60,19,9,223,182,117,78,45,111,81,13,70,158,2,18,22,185,23,33,4,240,181,148,234,229,181,196,172,20,92,142,76,177,195,185,61,30,19,96,48,12,232,227,242,16,159,161,222,134,190,43,254,137,31,103,243,225,227,127,201,145,160,44,38,235,132,172,110,217,69,194,40,105,223,32,11,32,244,232,249,138,242,72,148,170,173,249,196,173,12,129,125,216,253,132,105,234,210,142,164,97,12,27,151,137,79,71,60,230,145,57,79,198,121,129,238,128,6,171,39,3,98,24,169,6,247,81,19,118,186,77,152,24,94,167,180,166,50,95,113,147,102,127,85,34,132,231,126,158,33,116,77,229,219,53,137,172,87,6,254,83,204,47,164,97,17,69,73,145,37,128,177,110,11,218,113,86,153,20,129,237,94,191,30,131,214,51,7,40,78,230,123,201,19,183,92,235,95,155,24,141,226,85,87,222,45,170,135,60,0,10
 7,210,40,127,220,112,144,154,159,80,108,192,197,221,168,127,170,114,188,31,166,182,118,114,25,138,5,35,17,112,253,29,103,249,106,31,114,251,28,35,29,212,156,50,135,65,202,7,105,82,217,97,151,54,96,216,186,196,210,151,36,114,62,60,210,99,17,242,131,169,78,78,133,142,28,19,146,40,68,20,97,231,10,170,134,142,132,167,150,143,115,194,44,91,71,93,191,37,55,228,241,50,104,166,49,37,10,42,180,12,250,214,38,212,157,145,22,187,77,62,24,161,27,198,39,29,161,190,230,186,250,96,147,184,36,178,43,140,216,134,21,32,245,232,107,32,101,172,214,140,31,227,70,176,56,34,3,8,239,234,197,252,145,157,245,95,241,57,200,155,222,89,59,92,2,95,122,183,217,219,107,232,136,217,149,40,160,231,36,138,198,171,24,175,127,100,131,78,204,218,28,66,60,88,150,86,238,46,33,97,200,115,71,96,187,120,135,121,161,164,72,134,146,63,241,114,85,80,60,63,61,229,29,107,133,161,252,144,40,169,102,229,188,5,114,126,129,214,140,208,100,238,153,162,161,120,170,109,53,21,200,20,221,49,249,32,76,227,195,44,60,230,7,104,210,230
 ,83,190,160,145,134,53,28,172,234,117,11,167,8,185,183,100,169,109,247,219,87,30,125,78,243,192,70,45,0,52,185,5,137,129,7,201,229,23,58,148,244,165,99,237,197,126,17,123,188,161,89,105,11,253,190,197,221,240,219,255,240,51,170,244,85,211,93,249,40,88,233,188,45,219,60,33,244,163,192,246,93,54,76,87,0,247,246,253,113,166,214,97,162,218,225,220,197,124,215,100,245,31,230,165,101,41,128,53,144,189,69,128,75,53,25,187,81,15,104,135,53,129,119,109,49,139,112,41,41,99,144,26,86,48,234,66,60,226,178,0,17,242,93,138,79,65,211,85,10,82,122,157,0,217,52,230,96,86,210,41,107,212,68,54,72,23,43,50,100,23,161,4,107,233,54,70,113,24,74,32,145,192,204,209,236,94,82,58,238,84,157,12,227,180,157,40,162,36,46,49,107,185,14,255,125,47,211,47,41,95,218,72,253,222,222,227,196,141,238,133,193,88,242,253,165,118,47,73,81,192,187,123,209,84,64,200,242,85,233,212,111,154,53,103,113,92,201,59,134,36,27,113,213,84,132,180,1,223,33,193,49,81,189,219,68,236,223,217,124,9,218,101,60,24,156,81,250,60,181
 ,137,60,57,98,159,99,57,73,140,115,64,254,216,135,184,31,254,69,242,39,120,116,29,106,153,178,56,168,72,248,205,12,182,29,126,204,31,168,102,250,192,107,10,248,76,195,102,9,133,120,253,110,166,119,98,167,210,129,241,228,213,119,52,195,154,92,154,178,101,66,70,180,210,218,246,119,150,140,215,6,115,144,170,218,206,35,184,4,15,139,225,225,132,169,229,165,186,127,192,191,36,116,210,111,247,102,21,87,29,189,86,248,33,225,123,231,122,233,100,28,121,205,25,134,91,241,228,63,127,35,67,212,211,152,176,236,153,240,237,241,205,142,90,66,204,98,97,196,98,12,144,227,6,157,83,56,199,140,221,70,67,33,15,247,99,231,72,74,212,197,20,46,217,108,166,98,148,236,215,44,192,73,18,84,229,169,45,42,198,75,163,232,23,102,161,101,87,2,147,110,82,65,109,214,49,129,243,6,83,223,104,83,215,9,58,172,223,254,222,170,82,141,92,163,247,175,81,209,6,210,56,114,12,49,156,222,22,111,66,222,22,238,23,150,188,254,47,157,68,7,11,68,77,185,124,158,96,184,86,190,151,218,231,167,13,125,68,82,59,26,170,107,54,12,121,
 21,157,20,81,170,94,34,112,77,71,105,223,173,1,193,39,160,129,174,82,176,82,122,136,44,107,206,106,103,5,0,187,84,194,192,147,60,136,136,24,35,122,91,238,13,115,246,200,82,238,122,38,178,239,118,237,174,27,137,86,227,233,118,193,70,100,41,143,250,241,72,118,174,45,113,87,172,113,91,80,99,219,242,153,252,216,193,148,86,140,216,5,217,198,116,95,13,16,26,65,151,6,84,194,109,126,90,85,3,133,201,150,7,239,32,122,150,20,43,182,170,25,81,127,199,48,83,44,250,85,65,107,235,228,188,14,67,230,9,22,93,177,91,221,98,188,33,108,67,68,89,7,229,184,97,160,82,94,83,119,36,191,48,213,74,185,165,37,106,132,166,206,31,246,223,111,197,120,163,232,148,76,54,72,163,213,61,193,12,57,238,90,105,59,112,210,231,254,246,176,217,59,221,110,94,49,127,173,134,81,93,72,77,213,229,125,111,192,157,158,225,68,143,151,208,248,245,240,223,129,196,237,145,118,185,141,229,102,154,177,9,90,140,201,154,127,186,95,71,112,24,60,89,224,124,235,115,29,12,55,235,184,125,246,55,69,129,32,250,233,65,9,17,185,246,99,237,1
 12,130,11,188,200,214,159,70,206,42,239,148,38,231,77,230,128,251,123,192,102,7,21,220,89,21,250,152,229,131,117,197,119,123,138,24,29,23,144,57,131,215,34,27,33,71,214,244,97,32,150,157,94,211,37,197,42,95,55,62,100,39,104,182,226,1,203,137,134,252,196,120,75,176,23,131,216,128,217,43,148,111,128,88,226,108,43,24,132,8,242,145,52,117,146,11,10,142,110,43,135,30,31,86,33,157,252,53,83,111,16,123,159,186,147,142,239,8,219,109,101,144,18,57,76,70,213,110,219,186,127,222,148,194,99,152,67,210,141,141,215,97,205,196,55,34,7,49,187,91,52,58,187,86,235,180,162,75,102,223,215,140,189,125,26,174,59,68,67,151,138,125,116,196,29,106,77,119,46,16,142,51,129,34,199,79,69,142,52,103,240,213,55,96,9,192,24,185,95,51,137,170,59,109,8,63,187,175,244,221,88,80,122,93,157,131,177,143,5,183,170,35,85,252,25,149,106,198,220,95,216,134,123,233,219,71,151,173,121,194,106,157,115,251,82,210,17,60,135,35,210,252,241,30,111,97,237,146,8,132,150,32,56,192,166,199,222,98,227,244,65,121,26,149,139,171,
 5,165,202,141,225,63,126,60,178,7,41,11,247,189,231,79,90,58,254,96,14,115,134,122,156,49,200,126,41,124,181,130,60,99,204,70,238,77,3,55,131,248,95,251,205,151,190,170,24,24,18,42,240,250,136,100,117,103,186,170,133,135,62,214,73,224,161,157,133,53,218,116,110,166,124,248,103,245,35,175,61,157,170,0,27,140,87,114,206,189,185,165,63,52,50,135,36,125,148,6,200,203,138,81,13,10,142,87,157,102,197,208,165,154,56,102,107,162,140,28,35,126,231,161,207,223,49,208,229,86,118,14,2,18,189,131,91,148,215,80,79,147,81,243,235,227,86,72,249,199,234,224,10,8,249,19,252,89,225,85,36,118,230,235,107,252,29,32,166,15,145,166,227,92,190,205,101,148,204,72,112,53,254,127,112,65,197,41,219,171,28,145,77,190,80,106,141,200,65,108,134,110,207,67,159,37,137,95,59,113,202,50,194,43,200,129,26,164,49,172,241,64,232,250,128,23,161,17,137,139,243,170,146,30,220,49,14,241,187,240,35,170,162,220,67,212,0,49,224,179,116,116,142,218,240,219,38,45,206,95,141,49,210,168,161,19,19,158,143,57,187,2,154,119,2
 24,118,12,55,149,45,65,99,42,109,202,176,34,103,48,133,111,32,236,36,167,38,95,57,150,33,209,19,160,62,62,10,164,191,112,10,80,57,162,153,71,78,164,10,145,140,70,241,69,135,235,20,152,220,128,222,198,15,74,124,26,18,201,124,32,110,171,142,190,8,196,216,56,29,50,52,167,237,88,34,159,209,186,52,63,241,168,71,10,237,58,72,238,69,18,5,1,56,67,53,148,215,144,180,253,9,124,192,224,73,108,216,111,149,1,119,145,250,108,180,223,48,83,89,5,107,221,11,160,230,166,53,79,152,228,54,141,105,187,57,99,123,16,185,144,194,255,39,20,6,9,242,228,178,159,24,172,204,134,238,166,213,240,144,77,132,94,172,130,11,12,26,100,43,160,215,101,141,63,184,34,249,233,176,185,160,230,109,192,211,148,209,94,10,118,23,44,163,63,78,121,179,86,54,114,171,193,203,243,231,113,23,26,184,75,97,132,187,150,51,80,203,71,200,173,248,163,108,255,162,195,84,42,11,78,172,213,25,201,51,183,24,72,123,221,77,112,78,241,125,227,108,211,85,137,154,207,119,158,220,254,146,138,79,20,83,247,97,46,108,238,109,51,125,166,114,210,1
 10,41,178,120,51,5,73,131,12,182,159,219,160,212,47,28,73,91,120,239,202,160,49,165,77,7,139,202,174,126,46,182,35,74,128,165,87,205,181,79,42,139,202,189,254,35,223,67,92,49,93,143,121,133,187,119,177,131,214,241,14,43,243,72,68,177,218,157,62,137,107,228,10,114,213,56,60,60,32,17,191,71,68,81,164,115,95,242,189,57,45,51,148,82,113,218,91,176,206,184,130,124,62,104,203,88,228,224,191,182,146,186,82,39,122,71,164,104,75,160,155,200,60,114,168,95,27,52,232,91,53,117,173,103,152,70,222,109,139,99,172,52,219,161,26,193,99,127,128,231,78,184,56,170,89,0,140,228,182,238,118,98,148,241,65,232,208,200,22,27,58,244,238,67,79,75,208,172,24,120,61,134,173,39,104,12,226,56,123,79,64,47,43,218,55,209,171,136,43,113,242,195,28,210,127,97,181,48,45,153,215,21,14,127,163,140,180,40,176,122,41,4,170,200,179,165,218,36,137,54,228,130,172,40,209,117,206,54,165,46,20,75,7,17,137,198,170,240,187,103,180,95,93,212,78,87,149,144,86,250,51,9,94,7,186,108,72,49,66,205,21,90,10,173,227,130,175,75,17
 ,76,102,0,155,206,111,237,234,226,87,239,94,65,39,117,148,131,209,150,48,143,176,83,83,56,102,230,90,246,131,225,237,179,236,4,99,198,230,109,222,63,138,183,252,174,244,59,31,180,186,106,211,232,97,67,52,193,192,143,93,160,134,217,120,190,98,205,154,66,74,190,169,78,135,96,147,75,182,79,197,103,23,115,215,190,63,109,140,152,119,236,53,224,239,188,193,38,172,193,42,105,130,181,18,184,125,152,35,228,177,0,44,20,216,143,80,19,200,228,54,245,160,179,63,58,154,187,209,2,212,107,189,5,240,24,228,83,12,223,177,159,61,110,62,54,107,234,186,208,179,207,45,3,161,244,9,170,12,88,81,75,71,108,207,176,174,55,212,61,103,66,203,18,77,176,138,240,94,194,47,13,12,204,163,87,26,76,109,33,120,47,88,235,39,119,146,25,55,171,48,255,225,25,177,250,6,243,91,122,228,223,134,110,123,4,201,243,172,61,239,86,193,239,27,16,235,128,148,82,72,91,179,37,166,136,244,13,216,140,77,42,121,42,162,14,82,210,116,37,5,118,210,80,67,176,89,202,207,254,202,169,248,15,230,49,25,165,173,92,165,244,131,147,204,159,14
 ,61,242,247,145,56,196,9,90,52,106,118,95,212,91,129,158,210,71,241,50,49,207,176,79,80,95,44,210,58,50,39,107,125,104,230,234,242,54,37,111,29,171,26,123,100,89,126,53,113,233,233,183,58,16,146,102,74,247,38,51,5,205,96,115,27,138,227,107,252,38,140,225,170,95,131,120,55,172,184,214,210,154,12,88,244,234,205,246,149,218,31,229,186,69,39,95,61,112,132,183,110,34,193,56,196,151,193,145,11,121,80,174,205,29,26,250,0,131,34,9,89,230,32,118,252,204,166,59,29,144,186,124,201,113,221,168,22,214,188,79,61,143,79,81,58,214,81,176,19,167,14,135,0,158,252,29,192,64,211,31,64,161,2,25,224,24,34,207,114,200,237,23,154,159,227,11,252,28,186,129,137,155,165,130,60,114,248,52,169,15,215,160,247,254,69,80,249,253,235,184,209,138,179,81,112,189,35,163,199,64,195,229,49,138,220,237,112,31,73,158,41,218,187,118,21,145,220,245,60,30,129,95,183,200,82,13,118,156,97,230,243,153,36,131,254,244,186,147,148,219,131,161,11,97,8,189,60,14,110,187,163,20,239,50,74,166,224,140,189,183,92,166,61,151,241,
 210,94,254,194,250,147,131,94,69,237,118,170,127,69,123,226,231,178,253,32,14,167,123,245,91,146,78,160,128,55,131,213,196,91,129,46,202,133,9,31,144,66,227,73,139,155,172,39,109,85,178,56,104,231,150,132,175,162,24,42,79,207,40,249,231,152,143,144,195,50,71,107,60,48,112,252,80,85,102,167,51,110,134,32,176,76,8,143,138,103,205,129,106,190,43,236,73,222,254,183,20,18,199,143,206,241,94,12,36,218,157,221,250,29,243,203,238,146,226,103,211,52,86,78,206,124,43,90,3,92,10,199,206,191,93,209,246,213,238,116,227,209,178,72,177,147,129,14,102,28,163,87,194,105,167,225,4,81,79,188,150,96,221,22,72,242,76,39,160,177,245,200,133,117,238,243,86,157,88,23,20,157,251,205,50,191,180,60,135,32,66,164,25,86,250,217,186,65,175,162,229,208,85,57,51,161,102,11,172,139,73,52,173,15,227,100,52,153,186,23,32,252,185,84,203,28,83,242,48,168,10,151,153,184,5,80,235,165,102,144,8,95,180,36,162,152,1,61,198,87,129,69,252,249,73,121,252,154,241,42,12,201,115,56,42,216,126,136,30,86,246,223,217,138,182
 ,97,231,85,196,15,222,13,234,121,167,191,185,108,62,169,78,196,78,135,52,199,51,55,76,250,145,82,28,19,11,8,30,89,117,42,160,179,18,80,228,144,40,100,189,156,115,246,122,222,245,148,137,146,145,93,191,128,189,1,55,202,202,54,132,145,77,64,80,185,114,60,99,26,45,87,192,125,254,239,29,215,173,13,29,0,24,53,35,80,64,150,33,188,50,63,70,217,194,54,199,100,37,161,183,73,60,105,118,164,70,15,83,186,163,87,193,59,113,186,95,167,196,33,241,244,242,146,160,43,165,254,235,127,77,50,181,166,153,20,35,76,51,71,212,30,119,135,203,61,163,34,13,0,27,159,84,1,43,168,52,112,210,49,255,220,197,187,23,11,231,229,111,12,200,189,27,49,157,199,48,155,44,23,36,233,223,140,230,178,185,178,107,163,255,104,80,166,199,235,82,146,14,47,185,179,79,193,167,30,255,183,140,29,146,8,136,158,127,114,181,105,49,80,142,151,240,78,74,173,194,2,0,38,239,34,149,118,81,63,65,150,69,238,76,112,82,239,77,0,228,107,90,112,113,17,75,44,245,0,234,221,195,29,191,44,10,202,200,155,230,191,153,149,214,166,35,128,27,213,66
 ,177,153,171,231,209,146,163,64,158,251,233,236,81,144,50,32,214,24,195,83,56,24,210,151,197,146,188,60,128,41,50,218,163,18,110,19,158,22,117,82,195,65,202,111,81,216,177,70,87,170,5,46,34,15,31,147,160,80,24,252,83,243,201,158,67,254,129,141,80,229,81,49,106,143,131,191,174,120,97,186,199,124,108,142,246,102,255,20,82,14,86,98,40,135,15,20,254,147,147,63,233,34,32,245,233,255,28,41,78,174,18,203,121,185,219,163,237,61,185,113,187,27,157,145,12,3,136,218,29,140,115,47,174,60,159,64,68,37,189,243,54,140,70,236,39,2,78,15,156,59,184,240,90,43,137,81,61,8,89,149,16,51,208,235,199,254,40,153,107,167,198,55,63,183,37,185,99,99,144,228,171,129,9,200,208,255,58,152,83,241,164,80,110,164,152,241,106,123,233,29,149,208,205,13,214,114,197,41,211,37,6,213,224,96,36,169,95,235,19,174,109,131,47,82,92,149,239,148,206,241,111,61,105,234,37,189,98,55,182,40,127,163,55,48,126,10,54,14,69,251,147,38,219,148,60,71,105,43,158,49,132,42,60,8,199,158,128,144,89,93,106,86,53,103,233,218,100,237,
 212,91,122,243,13,146,154,168,118,135,242,180,148,158,97,206,54,219,224,78,209,240,2,2,50,209,179,121,157,194,110,180,136,160,160,212,117,14,9,103,166,105,63,247,180,49,186,213,151,43,189,144,170,35,236,200,232,193,48,235,170,70,224,87,201,211,168,224,221,142,241,217,52,215,94,200,77,136,49,246,12,187,79,244,169,231,244,6,200,66,36,218,80,240,235,95,215,1,104,67,50,124,180,84,234,95,218,178,41,242,88,191,158,104,67,79,0,66,147,217,211,76,11,190,43,92,10,21,243,81,126,25,21,148,186,255,50,222,37,27,1,32,95,32,115,211,244,8,242,35,204,100,246,77,14,154,113,100,175,221,255,253,10,233,31,239,47,38,204,243,63,205,132,162,215,47,156,45,126,67,55,243,110,202,42,127,206,91,171,203,243,7,190,141,183,113,54,231,200,108,84,131,57,134,47,4,192,250,54,118,154,43,235,127,243,34,94,214,252,69,98,17,115,161,92,43,199,111,86,29,176,241,220,106,183,81,74,152,153,221,238,194,129,48,70,200,232,77,141,81,176,14,30,229,77,200,132,255,42,25,128,234,231,90,106,70,155,23,153,132,51,17,138,248,254,22
 1,6,179,66,230,144,63,114,171,34,221,55,224,68,55,192,53,23,222,216,37,219,63,71,247,146,116,232,181,236,217,147,109,184,210,248,162,234,251,180,181,200,14,180,27,41,173,155,198,140,125,66,223,216,60,229,119,76,210,198,65,202,168,52,66,115,137,134,180,17,223,50,253,162,159,250,125,79,185,140,64,74,140,76,96,19,93,205,168,72,91,197,241,58,78,6,127,20,222,136,241,92,157,1,114,165,167,193,103,234,198,9,250,253,63,13,245,162,57,24,136,51,1,88,236,179,55,255,23,111,229,67,128,99,194,196,102,149,173,192,142,221,198,28,71,115,155,118,205,164,216,123,148,71,250,208,196,82,149,126,160,238,161,232,141,104,174,95,163,32,247,207,224,222,162,18,159,123,233,157,37,152,150,111,16,53,243,158,117,142,206,40,82,197,52,97,205,142,41,217,12,11,225,136,5,132,211,101,140,241,198,163,100,140,204,189,192,101,147,52,1,145,211,83,45,62,3,19,10,36,104,8,117,171,59,31,4,6,183,109,19,196,86,35,206,36,36,49,39,102,203,139,131,211,78,36,41,242,178,206,188,5,181,164,164,168,133,236,126,132,241,172,129,172,
 37,89,67,203,229,95,231,98,91,159,105,239,133,172,5,153,95,126,11,147,133,83,114,17,76,229,239,75,167,4,218,194,7,93,131,191,6,106,23,99,90,57,120,212,43,139,217,234,207,237,251,217,26,243,208,20,185,115,172,103,147,116,181,12,252,186,88,176,195,230,180,148,169,98,30,159,135,89,155,218,90,209,247,216,59,187,244,160,121,154,51,7,253,207,67,102,240,102,74,56,246,118,189,137,191,22,42,207,43,187,52,180,186,42,115,198,182,235,143,157,49,148,233,250,133,39,29,221,144,50,250,20,18,130,75,33,114,9,193,7,216,245,219,96,62,179,51,251,231,107,110,222,15,80,6,32,53,178,41,221,204,161,49,193,4,7,105,31,142,110,137,109,83,158,142,54,246,64,28,56,50,162,120,184,203,158,133,146,150,42,10,186,9,119,133,55,162,118,206,249,57,126,210,212,233,137,9,12,253,174,24,77,121,170,56,131,128,0,182,10,36,207,161,73,65,158,104,119,197,94,75,211,0,215,59,194,40,64,116,218,223,39,138,68,203,144,106,165,11,165,30,129,25,132,244,133,76,223,42,27,20,88,117,148,157,42,214,84,163,2,147,64,193,51,46,41,128,185,
 195,15,69,201,62,199,195,96,59,4,240,233,237,74,49,248,116,34,86,130,248,201,12,17,94,47,10,166,208,218,98,77,181,87,91,212,252,15,184,27,49,152,24,206,155,158,97,25,233,253,71,27,225,62,174,137,89,192,89,135,16,242,177,164,35,28,190,66,210,187,94,236,205,223,114,52,58,83,109,24,164,226,166,18,88,38,203,20,190,106,126,52,119,123,104,84,123,247,8,114,167,1,130,83,248,243,39,229,113,127,103,120,132,184,12,41,111,168,205,219,96,70,222,212,139,181,134,24,166,216,157,136,40,114,157,31,237,66,33,7,10,50,3,164,214,7,169,98,50,39,181,63,223,244,12,180,116,35,17,96,189,59,116,60,34,47,178,12,181,132,83,42,29,179,143,41,210,177,191,224,79,78,108,47,142,245,166,31,223,206,206,182,193,145,89,173,107,126,179,251,159,245,103,144,186,154,102,84,123,14,236,199,34,75,6,69,192,190,166,243,184,35,231,123,161,161,69,200,6,68,243,230,192,81,240,84,172,49,14,41,18,32,97,80,4,43,13,187,108,202,163,30,102,226,145,8,211,8,156,105,146,252,226,229,212,199,22,246,230,56,167,205,116,36,240,246,116,138,1
 2,62,248,10,211,174,209,219,28,181,161,190,252,226,215,208,42,148,224,172,165,213,201,182,14,146,151,116,72,251,33,152,77,86,34,19,141,59,216,152,161,82,247,118,35,121,169,30,163,56,167,180,232,46,116,169,51,5,1,176,251,179,226,106,44,50,5,81,88,192,210,42,216,52,154,148,144,161,89,48,242,13,49,167,11,250,68,14,51,8,197,111,124,192,144,171,204,191,122,232,173,39,239,109,22,117,106,29,43,38,137,214,116,241,70,37,150,140,57,183,224,218,143,143,208,63,130,84,51,236,88,78,59,240,82,253,90,66,138,196,203,105,179,117,103,73,165,13,122,215,113,197,167,179,85,65,93,34,247,104,133,1,250,254,63,9,198,44,36,205,202,165,29,43,45,50,58,52,83,204,58,184,147,2,236,48,28,74,93,108,42,146,38,210,245,97,162,224,106,141,15,84,232,250,165,143,214,103,176,49,3,8,231,179,10,159,206,181,191,179,48,217,207,219,24,29,169,104,52,23,178,99,140,146,129,1,25,99,239,241,35,177,201,183,133,131,28,224,249,52,201,240,52,88,73,32,20,237,68,69,73,138,10,206,29,226,202,45,240,107,201,248,168,33,115,186,241,188
 ,176,94,83,132,93,119,46,43,114,186,184,175,152,30,132,237,205,148,206,132,155,115,167,120,119,158,147,170,9,127,255,83,74,195,192,158,243,183,78,79,92,74,136,237,188,173,210,48,57,241,199,82,102,146,164,215,94,187,71,183,220,82,129,185,252,255,154,79,166,174,177,21,183,191,214,50,83,158,130,177,35,166,42,165,108,13,78,37,171,241,149,99,128,96,242,43,164,60,69,250,115,187,68,142,243,39,79,254,112,194,232,110,209,122,167,203,16,139,161,130,234,190,53,158,89,201,66,38,160,255,64,103,129,47,155,23,45,198,181,188,46,178,149,22,219,35,124,112,11,17,59,87,249,186,140,211,250,7,120,202,16,221,98,71,20,38,210,95,145,36,156,211,244,27,90,182,68,105,227,71,60,33,21,7,3,240,143,42,153,249,243,88,30,13,71,201,155,229,129,121,33,91,42,19,176,178,22,134,214,214,88,241,204,185,60,174,103,89,155,18,249,163,108,239,169,116,22,18,37,243,47,54,177,65,168,68,41,25,118,91,88,65,193,93,73,121,192,165,237,6,192,67,53,206,193,77,7,141,40,187,245,183,255,126,166,225,51,9,112,191,188,226,145,180,112,
 58,40,2,157,48,37,50,204,16,52,204,71,124,115,104,61,126,194,210,93,131,54,15,9,111,64,162,101,251,155,45,130,253,79,39,56,144,141,2,14,123,74,49,76,51,1,63,213,24,14,88,75,239,50,131,14,210,160,44,167,158,41,20,239,75,222,155,46,81,119,253,248,113,87,183,36,144,249,119,120,127,252,62,15,224,77,100,192,34,64,254,80,250,221,135,245,253,83,100,16,91,211,203,0,4,30,198,118,158,48,113,41,240,170,161,231,30,37,80,224,59,171,212,242,209,185,118,196,23,156,73,198,7,235,67,15,208,143,190,207,63,154,109,73,21,12,74,77,176,156,229,241,130,51,146,248,69,216,145,55,4,2,242,180,0,105,67,165,128,193,168,52,36,54,220,90,224,4,21,20,152,29,250,220,186,11,155,179,253,78,173,145,158,158,108,99,251,234,255,150,75,0,210,236,37,235,152,158,225,57,198,141,136,15,216,98,10,25,22,119,174,144,119,95,77,130,59,30,116,167,235,72,15,155,251,209,208,31,86,202,14,90,183,254,255,33,103,12,131,221,60,155,224,31,97,170,228,161,6,83,207,71,244,24,112,148,112,242,236,187,126,153,114,112,90,4,72,245,56,15,67,2
 6,161,40,191,136,187,44,90,58,85,157,31,212,218,170,2,34,21,249,141,115,51,13,117,190,114,58,38,20,2,206,113,192,194,81,186,106,231,225,165,94,106,79,245,138,72,125,21,120,10,29,88,74,159,163,251,205,109,199,72,71,231,120,127,128,97,149,2,125,137,215,209,21,52,242,215,142,6,72,79,151,141,218,36,216,150,149,230,105,71,202,18,46,165,202,244,81,73,35,24,196,238,241,182,146,216,37,180,198,146,240,121,131,54,235,112,154,10,97,28,30,71,131,57,247,75,233,193,102,192,228,19,179,153,16,189,176,140,49,42,77,87,35,120,182,88,37,78,10,236,252,40,66,199,34,222,208,115,115,3,169,138,26,57,109,133,5,123,143,28,9,123,9,240,63,123,99,60,80,25,1,191,75,245,63,206,167,28,159,168,98,20,179,37,253,213,239,2,50,53,99,59,104,139,71,182,29,45,117,191,210,28,94,254,54,78,197,40,169,28,114,43,139,45,38,60,21,80,38,178,180,6,123,214,165,11,146,135,36,181,204,69,36,129,58,138,200,9,119,149,108,241,49,243,237,32,104,238,105,56,156,112,39,245,221,99,194,253,34,4,138,54,1,7,80,53,71,223,238,53,174,18,111,
 195,212,146,254,198,85,90,142,123,62,43,7,130,156,32,91,140,174,232,157,54,144,205,186,3,158,223,246,142,251,22,165,163,208,209,127,172,255,188,57,151,11,203,219,251,5,234,197,9,177,167,182,229,162,125,237,219,178,69,31,102,49,233,205,71,165,66,102,68,175,157,41,229,179,113,97,146,148,21,70,106,159,105,135,51,175,178,101,86,91,80,125,76,78,107,60,68,167,142,31,249,108,98,61,179,244,238,244,103,220,215,45,182,11,152,93,7,80,22,186,255,76,215,171,114,34,225,212,14,159,203,11,208,212,198,45,147,42,161,28,156,81,100,158,214,200,118,185,119,247,244,12,148,58,144,20,88,174,206,146,249,213,2,171,229,248,28,177,195,133,31,31,42,224,23,201,99,110,78,217,225,68,69,81,236,167,3,103,110,191,127,152,185,61,245,17,206,192,115,28,37,146,59,202,193,70,54,46,64,152,232,94,95,196,29,104,139,119,153,157,10,36,235,135,58,153,80,216,53,172,111,125,189,77,126,221,124,198,240,252,16,115,132,71,29,177,219,7,99,167,176,63,12,45,64,182,69,218,215,173,53,106,83,131,191,245,159,60,161,41,191,174,120,10
 1,172,222,189,110,115,140,199,147,224,202,90,84,202,154,61,6,172,75,229,252,111,218,68,183,40,190,119,196,71,237,44,189,69,121,125,223,108,254,26,241,139,205,183,216,191,137,107,28,91,171,157,167,194,116,170,104,73,22,130,140,170,151,77,73,114,248,228,54,165,122,244,124,105,38,115,119,115,123,64,221,85,209,166,239,176,52,243,10,173,128,193,83,57,60,4,1,145,246,254,178,6,189,233,63,210,239,158,145,183,149,232,170,189,240,188,0,55,88,15,155,222,134,1,239,94,187,74,34,39,221,44,255,120,192,188,15,10,69,1,163,74,73,84,52,8,146,113,23,33,82,222,215,63,172,76,22,114,36,209,73,173,129,2,48,136,150,187,18,136,193,9,135,237,198,101,189,38,73,85,74,207,202,153,142,233,107,170,242,83,152,21,17,148,197,19,32,6,57,12,120,204,26,50,85,199,162,81,59,114,168,105,67,214,233,229,29,252,235,158,72,186,27,136,1,136,207,208,194,106,84,0,241,236,209,211,38,40,73,66,111,11,52,35,210,205,215,222,30,126,185,1,191,157,184,7,129,76,56,225,224,78,72,218,166,57,53,81,48,54,89,172,65,201,0,83,50,218,62,1
 69,82,219,223,112,198,77,155,142,36,124,95,215,159,206,197,21,195,11,196,142,201,236,179,255,206,222,218,26,221,165,150,170,208,215,109,48,9,1,106,163,187,32,225,146,142,170,140,163,43,203,103,73,113,220,183,27,213,180,199,145,76,190,198,249,25,185,95,68,230,167,158,96,240,4,60,142,223,110,15,98,29,15,142,238,142,197,189,141,215,146,81,223,159,130,147,80,184,244,226,170,187,41,189,122,94,181,188,67,112,183,67,176,36,164,145,173,230,88,39,249,89,249,67,71,125,238,101,51,175,204,212,149,38,145,48,43,38,112,26,159,251,199,229,133,75,41,168,212,255,243,162,104,203,233,98,71,134,207,176,4,195,166,86,230,56,121,15,227,40,154,235,114,35,61,39,168,119,164,45,138,195,148,247,51,59,92,197,169,130,176,135,164,50,121,116,97,42,82,195,11,10,36,247,102,141,241,199,79,121,240,119,58,31,15,28,168,237,27,184,195,195,201,74,4,121,235,37,9,122,182,132,24,90,186,90,236,255,71,46,42,137,246,107,254,171,156,99,214,73,60,120,47,23,93,128,81,98,71,242,214,17,108,136,225,6,253,138,156,74,116,158,28,
 184,220,41,207,207,64,32,179,104,94,203,190,233,215,94,35,105,50,242,85,252,140,105,130,15,193,46,45,242,64,104,250,147,53,153,255,59,63,240,88,59,43,93,105,248,210,181,207,219,65,219,253,115,191,73,23,71,250,163,123,63,225,161,231,171,227,152,66,93,30,136,210,205,243,122,20,119,123,237,26,92,139,126,62,78,16,93,236,59,158,46,22,123,181,138,205,37,106,162,49,161,98,62,9,43,165,109,141,93,69,2,106,253,115,145,69,244,93,35,35,193,67,132,46,100,226,56,83,132,31,153,163,131,67,151,163,168,155,45,42,131,97,211,6,248,18,53,207,42,118,83,74,21,182,168,245,234,195,78,137,103,121,94,39,118,146,96,56,77,63,34,156,226,85,11,139,210,201,244,118,95,236,196,22,145,163,215,145,73,15,140,207,56,81,81,32,218,56,133,222,34,14,197,163,37,67,38,31,153,109,130,52,19,162,61,31,105,178,174,159,40,52,72,141,154,165,81,152,83,48,171,206,147,92,74,10,83,48,101,18,177,206,153,31,160,85,250,151,46,181,120,12,48,217,235,29,177,9,141,224,27,48,125,221,138,136,152,231,83,194,211,179,207,10,73,184,214,254,
 114,130,118,13,139,35,158,124,226,179,97,154,243,106,129,203,77,236,62,219,157,240,32,113,23,229,252,207,114,66,247,204,231,130,135,63,75,109,9,47,174,73,17,247,12,57,159,228,194,85,168,69,93,150,97,223,180,31,29,128,163,192,200,120,151,169,93,218,220,52,14,139,136,203,116,5,57,94,47,23,186,203,5,161,213,125,66,76,26,49,203,174,7,172,211,43,9,193,157,35,67,187,2,207,116,136,210,180,218,69,98,66,225,209,82,97,186,117,1,55,144,121,71,71,33,208,200,96,185,79,105,1,163,106,244,104,89,42,38,49,227,47,18,106,165,65,47,180,188,68,96,149,104,190,42,167,41,195,204,79,2,62,161,105,241,208,202,202,128,130,86,106,86,187,134,27,172,230,25,11,180,209,164,91,232,220,187,181,223,181,163,41,118,244,121,31,65,17,176,9,184,13,124,81,91,34,87,158,95,99,179,157,217,231,180,192,167,186,151,156,57,167,54,146,24,167,84,170,23,194,150,5,246,27,94,42,159,152,31,86,101,57,238,102,146,181,101,100,193,31,36,222,220,47,251,189,44,2,230,97,169,74,157,139,80,173,69,249,130,172,59,33,108,220,159,93,239,120,
 93,177,49,49,87,65,213,51,225,188,185,193,136,133,44,50,13,45,109,51,159,36,123,218,240,78,85,101,152,234,245,250,69,57,241,229,94,196,229,35,212,190,208,206,159,186,41,191,39,226,145,250,130,12,51,54,232,177,153,89,18,144,19,109,153,208,199,114,215,133,167,6,134,190,46,143,49,78,98,85,195,147,128,148,49,42,157,33,36,63,131,67,148,63,153,138,206,83,3,24,134,228,2,147,56,13,211,218,227,189,18,208,158,6,155,41,103,12,255,108,5,51,212,0,110,146,58,41,179,163,92,117,235,60,58,189,161,93,237,222,191,145,45,109,100,27,97,219,128,168,175,121,121,231,91,250,73,208,44,202,61,215,109,146,189,226,70,232,101,195,15,220,88,45,19,205,240,171,75,46,83,63,142,241,80,198,180,59,131,83,178,49,238,104,171,71,85,75,167,243,221,227,85,228,6,37,126,3,85,87,182,17,174,39,254,168,28,200,198,45,52,135,178,152,177,234,123,192,125,240,158,133,228,135,239,145,132,82,199,66,113,229,245,194,93,61,16,114,195,251,53,190,201,140,34,128,77,194,2,135,254,119,122,153,180,204,105,250,190,99,180,70,64,15,237,82,
 138,181,19,251,70,106,9,104,202,179,71,107,206,223,90,113,116,91,152,197,20,125,139,55,71,148,25,117,249,61,54,19,110,115,111,86,127,174,57,125,150,35,167,165,116,216,24,108,55,183,113,182,88,177,160,244,51,197,44,220,26,76,171,23,51,36,237,58,163,161,64,109,12,28,255,158,97,120,191,173,249,207,9,99,120,43,208,133,165,238,250,226,89,61,3,41,24,220,1,98,144,240,131,174,180,210,116,181,34,124,73,141,100,233,115,104,52,23,216,62,139,214,85,0,50,202,36,240,228,39,108,246,29,241,180,91,177,2,194,191,3,48,109,186,232,94,89,228,68,242,245,159,219,129,157,53,145,110,175,97,111,48,201,246,234,135,45,81,47,164,137,34,212,22,127,253,222,222,63,215,65,11,174,118,21,171,228,2,64,14,169,122,201,176,53,214,91,45,232,52,47,51,241,84,186,107,215,201,124,134,69,160,244,96,57,243,68,249,13,159,231,178,152,82,14,93,204,73,72,74,106,62,154,255,110,107,69,17,55,89,157,124,42,143,65,56,54,59,20,202,5,185,62,206,152,240,135,3,49,94,46,208,28,224,58,103,184,204,25,254,28,56,150,10,1,116,250,46,162,1
 79,185,27,0,41,156,105,97,73,207,127,121,17,121,79,91,202,46,89,35,66,236,144,113,95,144,154,175,198,216,251,156,68,104,243,162,61,251,232,171,168,100,155,66,79,37,209,149,68,85,239,142,104,220,9,183,208,232,255,221,254,74,35,228,152,41,12,249,240,100,88,204,85,193,105,61,183,254,65,94,87,112,225,105,226,219,67,71,58,138,58,250,172,194,9,176,239,110,216,237,115,95,220,145,88,143,37,213,242,68,122,199,13,166,11,119,146,245,172,151,37,221,238,84,131,242,243,64,37,97,37,172,113,233,89,50,96,223,179,197,227,137,237,23,246,221,233,123,219,252,91,245,85,64,223,218,176,82,177,180,130,117,193,165,141,11,254,132,189,122,27,49,119,252,62,108,241,68,52,67,95,166,232,207,71,51,73,48,82,94,41,162,136,141,192,64,192,36,61,49,214,99,77,136,42,66,162,98,238,139,119,241,1,3,87,63,221,172,142,130,180,156,208,49,168,21,164,204,32,113,236,54,131,226,160,10,99,63,77,179,54,245,153,202,119,214,222,248,141,91,77,200,70,97,93,157,77,136,165,109,94,118,17,233,184,242,50,255,60,37,225,189,115,71,216,
 36,132,103,82,185,110,16,254,75,185,184,245,165,144,166,101,9,176,192,188,212,149,144,183,136,158,4,1,189,253,92,198,156,250,71,95,177,25,209,156,161,67,187,14,246,79,235,65,180,170,253,206,6,76,114,86,191,28,207,228,192,152,114,235,128,218,29,136,181,238,113,107,51,192,98,171,148,117,157,92,77,63,22,207,121,150,208,143,169,223,109,113,0,27,4,182,224,241,40,192,24,21,78,90,34,74,113,213,199,20,12,215,36,60,202,223,210,173,137,189,206,39,246,46,213,173,237,119,68,112,141,90,55,48,236,230,163,194,32,178,214,169,224,52,173,118,30,200,50,201,188,118,166,67,98,168,216,132,10,93,155,201,214,249,67,11,83,219,77,98,83,144,4,213,245,112,157,60,101,163,162,161,80,189,231,120,159,183,125,58,60,48,247,27,82,202,22,103,33,0,209,193,44,225,147,25,73,94,238,32,183,104,186,92,66,20,183,202,14,211,215,254,217,173,1,186,143,209,15,96,107,76,134,91,164,148,118,66,53,202,19,126,79,229,16,240,42,106,189,163,230,233,202,97,34,217,31,156,181,255,95,85,220,129,225,114,70,6,199,15,219,232,76,100,72,
 246,197,214,81,243,179,68,98,116,153,138,239,91,151,13,255,246,29,107,176,150,210,203,152,53,128,30,167,78,252,121,99,124,181,146,171,179,248,162,48,254,155,134,61,184,58,163,65,79,179,37,218,193,163,136,7,102,103,20,166,132,180,120,168,100,0,93,25,128,224,226,19,253,143,59,169,196,80,89,7,184,154,116,139,13,250,201,77,148,226,191,112,170,123,233,156,174,44,122,155,13,127,2,27,18,135,206,210,80,79,17,169,191,67,232,245,6,24,160,177,89,173,195,90,25,177,135,233,16,104,47,127,143,186,35,219,5,18,147,168,53,49,96,174,84,226,210,87,158,154,115,46,86,186,230,73,248,172,44,70,103,152,174,129,58,200,202,162,217,67,219,69,2,225,189,217,170,193,203,125,98,123,40,251,82,172,56,70,63,144,128,86,40,239,108,192,116,59,218,252,48,31,173,1,27,17,104,28,103,156,107,222,254,84,116,157,221,100,116,94,233,244,177,84,194,187,171,151,255,154,5,103,212,136,8,19,173,139,190,137,166,206,232,196,109,159,107,35,31,130,212,135,225,36,160,16,138,234,81,236,157,239,89,21,78,80,208,93,40,217,34,120,56,24
 5,197,22,22,205,102,136,45,113,110,139,234,108,15,164,180,47,98,164,110,238,247,198,166,93,100,53,131,11,117,48,59,127,109,4,220,212,35,147,148,217,142,159,248,186,121,88,12,94,150,177,166,165,130,200,60,16,76,158,9,211,145,129,5,85,214,222,184,64,180,78,236,185,223,99,180,19,181,46,149,124,164,244,10,193,244,10,57,228,35,48,185,59,147,137,24,43,255,66,154,182,157,180,115,141,247,180,224,184,118,211,20,202,137,91,202,252,146,131,0,170,52,154,123,70,78,126,138,149,88,184,247,112,193,165,34,101,89,11,129,7,234,251,255,87,255,234,246,97,144,56,252,25,219,168,186,246,225,91,34,215,141,139,29,65,236,76,146,47,28,44,23,91,190,167,45,89,86,186,75,219,227,50,224,60,72,244,104,239,112,67,153,81,92,7,85,122,12,98,171,190,181,78,247,80,210,120,4,216,226,75,218,52,8,252,180,24,40,214,213,155,225,117,58,159,45,248,54,207,30,47,210,120,237,193,96,97,87,28,232,219,13,5,228,31,3,52,78,107,98,69,176,108,25,155,87,82,13,235,98,210,154,68,234,50,99,218,242,175,51,90,129,195,113,172,57,238,117,
 103,80,147,127,114,176,63,227,148,101,19,196,14,45,45,61,238,28,253,148,66,10,135,37,247,35,142,23,238,104,27,223,239,119,11,239,83,192,30,71,110,154,74,6,57,112,234,211,3,172,167,147,21,45,148,246,219,151,155,100,111,67,136,88,68,246,207,76,29,251,80,164,212,72,81,83,184,207,180,94,222,243,226,163,117,241,135,158,56,195,105,78,203,215,21,35,137,60,160,148,156,144,185,215,195,33,14,104,168,28,38,124,89,236,31,66,242,134,208,194,58,254,168,122,245,26,21,141,195,58,161,58,106,81,17,240,196,46,139,152,246,143,47,152,82,31,140,150,231,175,140,199,114,126,139,176,171,248,0,246,71,29,150,45,123,7,232,63,150,53,187,7,89,113,146,217,208,29,230,181,232,175,11,247,95,38,61,1,253,71,26,162,215,234,2,122,167,30,249,227,15,35,248,193,210,7,158,149,126,238,115,169,186,66,216,24,56,147,86,122,111,45,234,155,51,86,150,69,200,255,198,200,157,13,101,251,141,205,111,133,77,253,109,14,131,110,12,168,144,63,228,252,75,185,72,177,93,67,112,196,96,154,230,26,73,135,31,158,159,32,48,136,51,24,195,2
 34,51,119,116,160,5,82,209,235,104,29,228,46,4,221,65,173,127,192,102,98,229,107,103,85,124,55,136,16,210,133,62,185,98,48,136,188,38,11,217,196,165,113,49,100,192,136,73,147,59,116,42,177,254,128,90,60,145,115,158,211,156,133,31,202,81,7,206,141,17,30,37,0,143,77,88,84,190,45,38,242,196,20,149,0,33,8,9,48,69,71,235,210,43,47,119,219,20,39,203,51,40,50,39,29,230,136,13,53,149,147,124,87,24,249,75,154,152,240,48,235,96,131,251,61,115,56,103,64,170,219,71,76,195,183,93,93,207,127,184,109,175,18,52,14,198,30,226,140,89,195,44,165,183,17,114,172,140,199,254,226,237,105,193,124,77,55,10,153,45,116,79,138,68,231,229,179,59,222,162,53,35,94,237,107,212,68,145,201,105,58,212,37,244,51,121,28,186,133,172,136,107,138,68,221,142,179,5,7,135,79,84,4,238,197,82,227,241,44,223,98,173,192,193,89,34,199,22,217,136,190,222,93,17,137,2,233,179,208,241,156,165,244,44,229,174,64,33,144,124,203,248,138,19,208,220,122,176,43,113,80,182,168,46,85,29,100,188,199,200,183,49,188,207,127,24,198,186,15
 ,113,219,149,151,144,38,125,96,238,192,83,236,153,255,183,172,149,4,244,191,162,248,110,161,176,215,147,87,206,136,137,205,153,129,15,41,64,25,175,138,59,254,100,206,39,253,149,129,84,189,70,206,242,18,85,142,179,46,62,81,215,116,47,33,168,123,34,38,17,125,142,57,186,248,245,1,90,132,244,23,66,243,45,223,65,0,13,203,42,82,178,138,58,99,7,65,54,214,175,38,114,35,19,183,185,218,200,251,240,254,200,183,151,71,168,75,235,162,98,5,4,208,112,126,55,79,77,126,41,200,179,8,126,219,233,171,63,26,196,188,184,8,95,181,219,225,52,216,54,53,194,83,124,127,89,83,69,59,229,138,94,129,209,223,156,101,128,90,31,50,20,105,236,80,86,138,40,154,53,224,96,229,131,67,120,162,96,61,244,109,163,176,73,132,34,45,76,249,209,248,30,94,71,244,12,148,67,147,36,65,30,165,250,160,136,160,136,147,243,84,47,147,150,36,155,198,73,216,114,159,174,190,192,204,93,58,238,199,236,142,98,105,43,162,37,182,208,135,241,213,188,38,160,99,69,92,202,158,171,35,247,139,138,106,150,197,6,112,236,192,27,128,166,249,69,57,
 70,1,100,114,32,254,36,124,190,204,97,82,94,71,132,64,6,67,60,159,22,202,241,122,141,49,133,243,54,53,25,208,100,52,131,193,83,213,0,61,18,173,34,176,139,17,183,83,218,40,207,252,99,29,110,4,203,22,100,28,71,218,198,1,135,117,27,251,69,94,24,15,65,140,160,137,158,226,10,15,203,8,251,19,178,179,66,35,146,0,84,216,25,69,240,17,81,89,77,183,113,43,116,25,174,151,91,83,248,99,192,219,242,40,105,121,18,137,30,154,72,206,151,87,83,92,18,4,134,8,160,149,98,210,60,253,214,84,141,194,136,123,249,106,82,136,181,53,55,119,254,153,108,145,218,22,149,150,126,48,166,41,145,6,103,252,39,147,232,211,75,19,139,166,57,7,255,139,109,188,14,87,170,19,10,128,108,27,114,53,41,107,219,120,177,217,231,255,100,168,47,171,90,52,247,102,250,209,2,109,182,189,137,112,172,67,191,135,9,122,111,47,232,17,189,77,75,9,215,99,162,200,213,53,212,185,149,150,119,24,108,171,89,141,193,109,2,132,2,60,87,1,28,34,65,208,52,55,56,152,32,166,14,240,183,194,170,246,222,53,118,168,240,32,150,113,126,143,182,28,96,207,
 81,91,254,147,179,193,75,225,122,34,193,166,168,152,188,28,195,200,229,43,246,18,170,255,68,106,220,72,179,104,108,18,46,246,85,180,66,20,112,71,209,144,55,32,67,169,161,181,110,64,207,12,198,12,49,159,237,155,229,92,58,158,156,78,236,182,92,138,167,236,227,196,2,96,99,226,120,247,6,25,162,176,177,99,40,20,20,135,78,5,88,16,132,7,78,242,236,66,76,35,37,14,158,228,162,79,86,165,29,134,51,69,53,117,209,59,149,218,192,166,89,175,5,76,176,68,67,232,189,163,243,0,118,118,38,161,240,17,201,153,238,195,13,45,80,246,234,181,246,211,19,50,144,131,43,40,234,10,172,176,108,208,125,95,214,36,80,72,104,207,42,219,144,58,205,139,189,0,14,103,173,92,65,6,210,143,113,185,110,87,207,206,50,39,207,248,74,177,68,47,196,171,121,38,132,62,152,14,243,89,233,8,197,80,107,66,164,213,157,36,38,169,19,95,181,228,185,62,154,165,113,193,126,54,82,51,83,69,138,251,81,17,121,84,192,90,61,162,221,31,11,179,182,84,207,137,193,198,9,32,250,114,95,202,180,119,56,135,3,164,48,70,76,5,10,66,130,151,119,226,85,
 40,67,64,168,167,199,146,218,27,254,38,116,109,211,79,36,25,2,197,89,49,8,125,148,12,13,121,106,111,127,220,146,155,170,35,235,173,53,55,120,127,68,221,51,204,247,200,87,115,44,227,17,239,192,182,73,36,237,227,64,171,130,185,135,144,110,91,114,160,161,49,75,149,235,93,93,196,39,219,123,156,240,156,98,241,189,36,233,42,166,153,97,119,164,67,97,217,138,85,89,61,83,112,17,17,79,95,70,227,61,193,150,42,23,239,90,240,128,7,94,28,170,114,0,210,51,108,63,244,230,183,115,62,78,181,205,183,45,172,199,220,96,6,163,181,2,248,154,76,104,178,147,42,122,180,2,166,104,178,154,132,63,216,144,160,53,237,125,78,251,163,16,139,197,151,205,3,239,33,159,51,195,25,66,250,71,205,36,132,247,122,226,99,205,175,103,99,42,56,181,17,145,119,15,88,43,203,238,78,201,83,246,13,66,61,213,188,94,197,243,117,135,224,220,237,99,132,207,53,70,172,218,168,46,249,238,89,125,80,192,143,81,83,178,103,140,61,188,112,70,224,114,33,104,168,112,15,3,54,144,139,181,63,223,141,21,246,138,232,9,232,107,145,97,168,197,25,
 163,119,193,50,120,144,151,173,242,9,248,164,84,2,164,209,147,19,23,23,21,242,237,82,57,138,64,252,208,7,142,72,153,104,174,35,178,64,21,16,157,193,224,211,84,244,98,243,188,107,233,191,20,95,138,195,227,197,202,129,19,97,215,45,209,53,112,213,224,52,231,22,178,29,251,160,18,57,77,162,91,134,202,182,1,252,43,209,59,114,214,158,74,220,177,195,186,90,103,192,53,133,52,134,202,199,174,96,160,119,254,149,241,49,133,220,96,127,33,144,128,110,108,100,255,182,135,133,145,91,162,13,87,242,33,57,32,222,236,186,233,254,143,152,68,63,227,227,184,66,150,174,132,190,154,147,104,126,28,84,223,46,252,21,225,10,16,109,155,202,76,128,83,224,67,130,163,120,73,199,60,107,147,164,165,82,5,70,11,244,220,160,224,208,137,20,126,15,70,202,63,21,172,130,50,42,135,41,53,18,62,188,44,188,22,171,76,143,12,42,29,3,84,75,159,128,164,130,244,88,199,199,134,161,34,192,68,108,131,144,146,111,7,59,113,244,55,108,95,115,190,199,124,139,252,82,173,136,228,9,129,106,250,1,193,151,70,202,71,22,26,84,217,22,214,2
 0,176,70,186,73,230,19,125,30,195,227,223,226,250,22,189,23,104,6,155,235,183,120,77,50,27,41,179,156,247,115,10,1,141,54,36,72,49,41,240,27,90,145,50,43,131,226,168,64,199,195,116,189,18,113,209,190,211,120,65,136,82,229,26,145,227,222,55,91,114,152,130,106,181,173,58,36,125,224,244,199,94,179,36,214,124,204,220,7,250,115,238,171,232,120,97,107,132,29,224,204,248,23,196,195,34,14,55,179,3,194,191,207,173,210,79,116,191,25,135,102,142,154,188,75,204,176,175,136,67,205,211,163,18,250,146,142,76,46,62,36,26,239,15,11,99,239,71,207,220,129,235,78,21,39,233,142,201,209,26,191,27,186,237,192,190,100,128,216,121,27,144,49,180,152,24,251,196,118,151,238,243,225,8,232,216,234,97,119,15,252,203,175,130,61,51,92,26,19,187,152,194,144,224,78,205,147,107,47,10,65,70,113,98,238,193,210,212,49,170,10,12,229,2,209,224,143,185,179,192,20,216,15,246,60,83,106,26,64,9,218,17,139,57,239,147,9,161,37,219,164,252,171,111,52,18,25,136,36,64,107,169,157,137,203,230,71,214,60,19,50,74,132,215,114,1
 19,208,20,171,225,5,166,138,105,196,252,146,104,147,56,57,90,72,75,240,157,49,234,64,236,212,231,184,7,254,54,224,180,58,77,157,25,52,141,201,184,90,30,10,66,183,98,70,117,132,44,25,77,20,219,45,77,132,173,25,12,185,33,121,76,186,122,102,215,165,126,164,20,141,130,253,43,83,60,230,205,189,79,78,253,50,154,225,57,195,221,9,19,237,174,237,176,199,174,98,236,194,237,166,181,126,99,65,4,65,27,170,216,142,75,228,99,24,145,250,238,16,175,33,249,220,91,190,20,10,78,253,96,239,125,242,189,69,48,3,142,217,118,53,73,78,244,217,85,155,21,73,195,193,204,14,247,147,75,114,239,160,104,219,251,108,160,78,160,151,177,20,247,226,61,98,184,58,63,254,115,146,181,91,224,70,51,171,106,39,190,175,233,18,61,146,133,53,137,150,55,183,125,73,183,40,13,162,83,99,12,110,198,242,82,78,162,183,106,22,69,159,28,42,57,217,66,242,163,9,231,200,82,78,71,34,114,233,225,30,71,152,82,67,158,252,222,99,181,177,132,86,244,240,238,129,113,242,62,102,15,137,218,30,7,30,15,115,18,31,217,200,209,30,145,146,7,194,136
 ,45,240,35,4,239,5,228,35,26,50,102,108,188,232,61,211,248,221,13,66,134,164,157,119,88,57,85,144,128,2,177,19,214,254,105,126,219,100,131,52,14,140,131,127,204,97,197,173,6,187,19,252,29,247,246,36,77,75,205,255,142,14,183,3,127,101,245,252,33,28,27,143,64,55,87,35,81,2,189,52,40,88,50,209,64,230,145,37,250,197,210,224,99,101,34,217,79,243,176,4,18,219,99,13,26,132,232,45,106,184,1,207,188,179,218,220,100,168,12,57,225,31,32,254,174,167,41,103,46,25,236,120,179,28,80,162,9,0,10,185,180,44,151,9,6,150,1,2,162,64,154,188,74,161,197,239,37,247,144,122,241,87,204,80,132,88,152,223,107,76,99,250,221,42,146,113,241,101,66,248,247,136,198,155,79,167,171,49,34,119,169,228,39,63,201,171,30,39,70,92,87,229,61,109,237,69,149,99,56,176,41,219,93,66,220,137,81,27,132,12,177,161,173,231,48,249,82,125,36,104,240,121,98,125,94,183,175,129,112,247,231,76,135,23,78,120,223,185,92,116,99,108,249,41,217,244,130,131,147,23,144,242,192,68,237,207,149,116,179,79,167,93,53,118,105,221,192,164,33,1
 30,60,3,138,156,165,23,143,32,5,170,118,99,67,230,50,102,198,199,174,46,215,11,130,165,159,179,70,21,161,240,0,163,129,133,194,57,134,213,22,92,55,233,244,74,210,197,17,149,91,141,96,118,120,119,2,109,168,155,254,76,158,141,172,138,90,211,166,52,131,97,21,121,202,3,240,123,156,152,156,17,28,139,251,241,194,75,219,19,116,196,0,222,8,177,255,26,163,218,129,222,144,150,197,24,125,125,218,12,9,215,253,199,66,1,43,107,97,9,108,254,3,132,49,228,249,158,25,155,91,197,215,227,37,255,83,117,174,137,114,10,128,207,244,183,255,215,131,198,97,155,60,183,225,18,130,95,224,149,137,231,100,2,119,51,183,68,124,175,34,17,114,85,253,85,236,192,234,115,3,84,77,26,187,72,11,80,89,255,251,96,51,80,74,234,216,140,223,125,51,254,98,35,44,231,205,238,23,29,184,212,120,114,154,235,8,28,162,249,27,174,196,32,12,121,231,106,224,209,63,89,177,185,137,49,210,177,53,109,178,143,2,20,12,166,207,173,20,103,154,206,80,194,7,47,31,44,101,49,221,237,70,175,103,179,183,3,105,223,126,124,228,167,23,230,251,233,
 173,76,92,227,32,40,210,193,70,209,12,89,43,56,63,96,196,163,39,37,164,82,109,220,135,232,242,197,227,116,212,213,199,25,19,131,18,87,203,199,143,241,55,149,109,177,205,226,10,30,58,38,168,175,45,26,123,198,171,208,74,110,161,76,143,55,94,129,4,20,73,161,115,70,99,25,245,98,6,98,165,255,154,50,162,119,102,192,206,98,33,169,242,82,242,190,38,168,111,233,197,91,88,175,37,46,195,59,199,218,236,27,225,188,227,124,242,34,25,131,69,217,61,119,57,122,85,230,75,115,135,111,211,94,83,49,213,201,254,141,188,184,205,203,14,251,67,249,83,229,145,246,77,55,18,168,32,228,194,83,90,7,247,26,185,126,179,193,207,205,255,227,133,224,155,167,131,167,97,119,179,133,100,149,104,217,69,193,92,169,107,169,208,149,16,129,32,73,203,41,199,145,231,35,165,243,2,227,84,77,97,58,106,252,157,39,75,186,161,108,225,60,68,118,139,139,40,214,38,5,213,205,179,105,206,185,151,61,70,226,64,12,20,157,218,201,83,231,208,227,60,227,26,68,66,225,10,13,49,178,152,254,154,195,243,31,250,39,91,222,80,84,244,56,122,243
 ,26,60,105,37,166,224,56,28,173,122,231,3,93,143,7,156,212,215,168,31,11,97,82,178,179,6,193,130,102,165,135,177,188,80,126,135,34,130,225,16,205,107,50,52,149,40,60,230,247,126,234,51,101,143,63,92,84,234,5,62,172,203,74,158,43,160,139,170,101,235,79,149,178,174,105,59,67,206,203,144,224,123,225,11,175,154,250,149,41,46,68,249,137,25,98,44,106,70,25,167,196,222,76,201,83,192,37,99,124,0,232,198,35,194,223,235,117,19,63,101,138,154,221,62,147,205,84,72,149,191,208,23,221,81,127,87,86,178,165,10,185,154,111,228,177,112,223,57,196,178,61,116,0,124,99,2,240,145,117,131,171,208,11,52,152,180,175,139,58,124,64,199,126,214,177,189,181,149,235,251,92,75,183,211,82,134,61,19,32,165,189,138,250,161,150,215,186,19,246,93,205,91,20,89,79,225,205,173,111,28,62,115,214,140,169,139,100,216,156,138,183,252,132,224,152,229,159,136,53,6,127,52,21,130,232,183,240,139,50,146,171,192,157,211,189,40,191,109,91,67,134,213,21,209,132,240,101,1,150,148,68,192,142,130,232,137,74,1,5,131,97,48,95,21,
 48,72,149,11,95,190,161,110,22,168,213,130,83,99,194,251,122,189,202,242,56,177,142,212,124,255,232,224,10,227,28,138,134,168,78,62,57,87,161,38,2,204,209,173,76,79,165,69,35,152,7,75,68,31,59,84,17,8,224,219,72,72,150,233,227,70,222,36,35,155,93,45,10,123,230,48,130,254,237,31,79,223,104,207,137,98,136,201,207,73,73,53,53,67,30,31,195,253,222,52,211,193,23,205,44,10,188,38,138,153,10,192,115,190,196,236,157,91,159,172,128,137,204,45,137,147,88,129,249,244,132,101,180,55,134,224,149,185,224,234,148,71,192,31,147,139,108,214,41,3,53,163,44,176,21,168,103,101,29,33,198,133,67,251,125,75,238,107,229,108,109,62,88,135,195,123,248,25,98,73,67,247,74,171,187,2,227,16,76,100,225,251,66,48,252,95,203,142,3,219,251,138,104,210,139,249,206,21,122,71,91,219,95,103,165,8,172,30,68,7,150,240,223,118,62,248,85,97,62,51,72,4,248,74,121,66,123,142,12,85,106,58,218,89,42,42,166,2,241,186,60,248,116,130,23,128,245,125,252,225,249,188,6,2,138,189,5,107,136,182,254,11,32,223,240,249,147,58,54,1
 76,213,29,96,130,9,184,156,32,239,63,213,181,252,198,137,156,105,255,38,91,163,169,111,204,70,102,6,105,208,129,215,44,31,47,62,169,101,12,221,233,23,51,28,75,84,216,242,226,170,14,78,49,69,198,247,242,177,30,177,253,89,194,144,111,103,231,253,203,151,29,67,53,101,61,90,190,4,92,19,57,18,189,16,210,127,50,47,23,250,190,188,114,79,65,243,137,39,186,11,187,20,196,175,23,67,206,88,189,62,47,162,224,242,230,187,98,68,242,148,38,55,58,118,189,41,250,139,176,198,54,112,27,203,205,187,47,250,86,144,39,144,22,18,23,44,184,128,228,36,39,132,72,36,126,92,15,91,195,109,234,107,160,138,102,182,196,99,51,177,197,78,127,230,60,228,91,199,1,231,23,173,82,40,11,123,215,13,9,251,249,30,95,252,209,26,17,22,206,40,89,218,184,86,201,212,74,64,133,129,245,214,154,173,37,90,59,218,68,141,221,243,87,61,36,105,59,190,51,227,249,252,151,135,136,135,131,203,208,29,26,16,25,4,194,114,200,116,248,125,241,187,133,152,199,201,244,34,30,177,224,157,74,111,165,80,206,182,86,49,21,87,158,194,118,223,197,213
 ,101,180,75,142,40,149,100,16,91,238,76,41,246,197,114,98,149,1,106,250,55,57,64,20,181,83,107,41,79,142,187,224,99,77,168,7,231,246,74,21,76,184,152,233,144,162,179,71,221,133,241,18,141,227,250,5,68,71,51,127,57,24,58,167,64,33,126,136,239,65,214,123,80,237,34,165,17,253,25,238,181,157,53,213,118,134,21,198,10,75,182,243,242,243,194,17,172,226,208,10,182,247,53,209,223,3,247,157,220,125,173,130,209,123,30,140,76,144,224,163,215,193,164,231,133,82,95,253,240,76,65,115,209,173,78,146,109,228,218,11,176,232,207,63,77,212,114,85,135,200,166,219,7,71,207,6,96,2,63,88,65,122,250,218,177,147,73,245,92,22,196,137,183,11,33,242,230,193,120,36,81,92,56,252,150,243,252,168,14,218,229,8,52,109,75,96,187,124,228,26,159,215,53,218,47,175,117,77,156,109,3,27,63,237,100,114,198,194,186,73,71,131,46,168,163,98,222,224,88,2,90,75,250,7,138,230,231,247,233,43,244,24,236,195,149,250,250,12,21,51,87,253,149,76,209,92,52,219,61,180,27,116,17,124,246,239,107,31,103,249,205,179,240,19,236,45,19,8
 8,90,236,164,106,132,60,172,23,231,4,69,106,140,234,241,10,166,236,152,40,175,185,65,226,75,74,176,34,43,142,241,255,44,135,161,40,6,113,90,35,181,83,93,204,80,23,107,205,31,143,222,115,215,228,181,41,229,110,195,56,101,28,162,253,157,54,105,6,142,45,131,205,13,132,55,175,108,225,87,242,138,23,145,50,184,195,217,93,103,100,62,36,191,37,134,42,187,102,232,54,0,149,137,192,154,142,176,198,151,214,180,72,3,90,144,119,188,98,200,250,37,45,139,92,89,159,143,62,250,131,137,11,154,209,33,117,102,252,158,54,149,143,227,145,218,88,67,168,74,68,189,125,155,155,37,173,168,202,212,33,62,43,163,219,84,107,68,108,117,7,78,70,126,150,113,210,227,90,21,197,24,17,33,149,101,101,171,58,110,179,241,242,123,64,199,29,167,138,195,55,122,121,75,205,152,229,198,77,244,155,133,39,222,73,203,71,71,4,145,174,60,253,29,25,216,99,10,66,46,236,67,49,183,162,146,164,50,129,202,161,186,163,147,232,119,96,242,124,206,146,50,75,2,190,83,144,148,98,1,66,89,208,236,157,161,183,60,120,171,241,83,58,238,42,177,
 117,177,31,37,193,115,10,194,4,209,236,154,196,157,123,198,49,230,55,229,208,119,211,179,173,152,78,233,53,185,0,132,156,13,133,115,229,146,184,248,120,169,35,249,7,86,39,170,78,67,220,171,63,234,103,222,204,232,196,195,238,230,215,221,215,82,219,169,130,234,7,127,30,105,154,90,167,121,102,198,103,145,183,243,249,94,221,30,229,163,180,33,79,167,248,129,79,4,23,99,3,87,54,231,181,210,118,25,91,140,215,59,20,138,139,190,254,109,162,112,186,225,86,55,2,170,235,63,185,16,92,37,15,145,193,138,201,166,94,64,46,29,1,48,107,229,204,47,134,176,23,152,88,34,199,109,104,120,211,161,210,203,29,200,211,62,84,201,189,226,83,214,181,192,166,18,132,29,75,228,191,66,15,229,215,52,39,73,7,145,128,151,102,133,190,89,198,17,173,68,129,181,220,36,155,133,18,99,238,141,94,128,156,59,235,179,234,111,192,233,67,66,77,49,56,129,13,107,68,71,140,180,217,88,76,29,86,87,111,90,163,83,136,197,102,64,161,66,87,160,132,66,7,200,112,93,165,183,178,209,83,32,175,174,76,250,194,111,54,104,87,205,113,85,53,11
 8,227,54,44,190,89,42,45,152,232,230,91,245,24,25,30,245,6,33,121,103,27,232,138,100,221,90,165,43,238,211,120,101,158,65,166,159,191,252,238,9,88,92,38,148,39,40,27,119,112,4,250,19,144,196,37,217,159,63,78,56,168,10,247,212,37,234,168,153,73,37,195,187,183,138,32,18,55,17,245,193,216,66,211,25,245,92,97,19,166,44,18,70,159,235,219,201,150,236,233,118,252,179,44,9,60,97,1,137,35,200,202,254,240,28,7,124,171,72,173,184,23,102,170,215,133,61,6,250,66,83,235,249,99,61,12,40,232,227,211,183,244,88,166,208,53,116,179,97,194,42,157,135,16,124,238,151,214,65,112,105,199,14,36,91,59,58,193,223,202,243,136,166,59,64,200,76,96,89,5,27,78,243,228,220,166,4,96,238,79,130,223,60,57,105,209,207,232,2,17,103,0,150,251,124,8,223,138,255,164,137,55,220,174,104,87,26,219,34,252,15,157,124,247,29,211,31,17,53,167,239,22,212,76,219,171,149,162,36,160,98,168,84,50,113,116,30,164,175,107,189,228,167,78,78,6,206,52,161,117,81,28,249,138,73,29,163,220,43,123,109,94,192,240,19,203,135,49,127,18,104
 ,253,93,15,65,74,110,80,186,55,219,106,255,238,169,57,87,57,130,43,180,97,163,226,70,250,196,119,254,225,202,175,67,73,226,206,124,125,110,128,12,2,109,15,177,73,26,37,109,204,73,106,68,78,207,73,100,140,167,140,18,100,34,162,146,59,113,157,246,112,129,199,51,234,238,107,99,63,132,98,100,72,252,55,105,196,164,157,107,136,95,228,230,42,226,126,20,192,252,61,218,68,184,228,220,203,39,103,102,198,16,166,90,121,50,126,238,58,10,11,137,96,87,30,121,76,186,241,163,121,36,183,145,184,50,83,172,93,50,138,44,144,99,69,92,19,223,70,184,111,141,119,51,8,133,252,111,17,213,160,51,210,28,138,179,176,98,5,181,131,164,177,191,38,234,88,32,219,150,118,192,100,53,142,146,196,8,92,227,247,31,182,168,76,78,205,249,5,211,160,49,51,105,50,8,179,30,226,224,51,169,24,24,233,184,120,194,206,246,124,20,241,145,81,35,56,231,136,72,98,235,128,108,236,122,59,177,96,101,101,187,194,255,144,153,218,240,57,114,221,14,13,12,234,50,90,158,120,242,72,177,117,71,28,103,250,39,233,212,215,65,121,83,110,14,172,
 240,241,244,218,213,171,206,61,120,69,14,205,163,2,103,183,117,82,232,8,56,218,2,207,68,42,79,36,147,31,219,53,22,247,93,66,211,58,63,94,182,238,116,222,106,3,142,152,23,40,129,81,51,147,2,85,75,166,209,179,22,19,167,204,97,7,31,119,8,250,205,13,107,207,177,192,29,234,56,98,33,94,221,55,118,231,28,18,213,32,77,123,122,215,123,156,238,176,225,40,140,193,44,47,91,32,71,85,135,115,142,85,231,227,104,7,64,137,198,185,120,210,189,77,190,63,21,3,151,93,10,69,44,70,50,135,1,181,182,29,169,162,173,68,96,80,120,50,71,122,196,157,166,35,83,107,221,224,31,18,23,79,26,26,35,177,241,6,168,215,227,195,28,87,61,114,104,115,65,195,174,191,45,206,102,111,108,170,195,77,182,192,225,34,27,160,191,26,117,187,232,235,237,51,244,38,170,223,26,136,217,147,225,35,65,116,11,217,184,150,134,165,125,51,133,243,217,174,40,27,33,87,175,181,231,221,44,23,70,88,208,91,249,71,4,254,209,107,223,17,117,1,89,87,121,247,103,28,44,24,103,232,124,173,128,218,234,221,135,79,183,185,241,171,207,74,32,132,10,142,45
 ,91,65,193,216,236,227,18,46,21,200,188,218,18,121,124,221,33,216,55,59,191,158,173,53,137,136,180,80,17,138,198,183,207,192,235,193,37,122,131,17,180,32,216,233,237,9,213,214,207,58,27,99,43,208,43,237,45,180,75,161,230,249,88,91,7,147,51,121,193,224,167,242,70,97,244,24,114,240,66,156,143,38,0,124,66,42,192,100,206,152,143,201,8,1,102,159,56,230,184,29,101,35,104,163,168,227,92,199,239,6,171,56,150,130,129,96,122,114,108,172,51,64,187,131,237,215,191,93,42,40,74,163,253,234,235,177,156,63,244,223,58,8,105,110,188,197,206,222,104,153,73,126,114,243,21,118,10,113,62,149,171,194,51,117,17,172,83,121,69,144,191,174,104,28,123,171,123,251,228,140,143,249,198,31,41,52,62,231,54,151,119,80,40,34,34,127,139,86,112,56,37,173,218,140,214,83,78,117,7,45,7,128,155,84,255,106,247,5,89,127,71,197,117,90,228,50,221,92,2,103,60,140,213,151,95,245,233,131,235,202,53,41,188,130,234,53,82,64,252,41,196,174,20,192,212,154,247,39,124,140,213,230,232,37,98,69,153,26,160,242,59,146,190,161,101,9
 9,156,194,128,201,174,192,168,93,107,105,250,89,94,12,161,172,26,72,152,34,52,94,184,202,91,12,52,14,252,191,46,160,203,118,75,205,200,60,226,189,88,222,188,113,141,22,212,202,120,223,92,56,41,17,43,194,135,49,194,202,47,179,208,212,100,2,176,19,208,7,39,236,106,146,46,246,129,83,135,113,95,22,209,218,204,29,70,188,172,144,86,244,73,229,13,88,105,30,78,193,103,164,177,151,59,111,114,196,161,167,186,119,88,25,82,32,26,95,239,41,132,215,73,6,106,132,10,228,19,93,5,73,250,45,1,68,36,216,189,189,37,138,101,91,5,102,107,12,60,128,130,245,230,71,211,249,250,71,178,165,10,40,118,62,211,253,138,141,237,140,143,216,42,155,252,29,122,235,208,184,9,189,111,102,90,82,111,149,101,118,233,38,49,233,6,104,49,222,250,156,188,147,70,117,53,238,199,58,111,193,72,5,238,51,95,177,10,215,47,61,46,199,189,75,252,153,40,80,2,114,111,116,139,213,41,222,27,175,3,30,126,101,43,98,162,1,11,140,151,180,232,32,85,30,125,110,111,125,124,108,174,14,162,176,24,189,195,252,255,113,234,122,23,229,100,253,124
 ,131,37,49,248,213,127,25,202,216,101,79,178,146,0,227,46,122,222,244,133,14,38,201,119,111,230,4,18,64,89,121,59,204,220,200,20,75,186,227,149,168,79,53,60,128,217,25,199,96,125,91,17,49,165,102,241,74,33,118,247,66,174,187,253,141,60,22,9,13,158,117,48,106,86,159,152,239,3,171,62,45,155,137,118,183,50,33,207,203,64,146,136,84,4,229,79,106,234,170,101,44,108,64,237,15,93,119,190,150,190,84,42,94,163,186,4,141,158,39,49,36,51,164,126,26,143,106,181,14,14,197,58,99,85,151,59,181,23,183,128,128,50,30,18,57,223,58,14,225,241,45,198,35,165,133,224,101,248,209,135,166,52,21,8,102,102,176,217,25,153,132,77,170,227,39,129,73,19,35,224,136,189,210,161,108,124,197,255,117,119,96,87,188,111,225,19,48,239,168,46,38,154,179,182,181,29,112,31,180,152,204,79,48,190,212,56,134,180,76,168,124,119,50,118,209,250,57,174,42,196,163,49,226,49,172,196,160,220,150,164,184,150,191,26,167,140,93,140,185,92,60,119,9,194,246,230,99,0,90,114,159,129,57,180,251,123,192,252,149,211,235,162,179,11,187,17
 2,129,10,24,82,145,61,80,120,181,150,203,168,237,205,203,3,177,246,126,19,99,224,44,158,184,98,18,244,242,76,243,168,197,26,199,116,216,78,233,121,4,77,17,119,86,255,161,0,145,152,17,141,34,236,203,221,251,92,247,23,156,238,59,242,188,235,108,123,52,230,251,186,123,23,128,137,217,79,67,222,158,109,52,48,23,139,169,150,98,14,63,201,161,242,223,226,250,148,193,191,214,58,221,194,122,73,122,24,19,224,179,129,220,144,17,190,54,228,228,89,56,21,48,56,237,56,205,195,230,194,133,15,168,52,238,172,196,81,187,116,57,138,175,82,130,103,121,0,74,10,62,132,98,184,0,177,183,98,83,251,33,179,37,30,223,103,137,133,200,178,180,44,109,241,171,231,41,108,169,165,253,185,169,66,216,202,148,155,4,226,197,205,13,55,141,57,167,110,80,17,201,94,190,108,57,136,71,219,205,65,75,195,53,223,233,104,167,24,28,36,231,180,105,178,79,49,173,75,210,79,114,160,96,170,189,36,192,211,107,55,222,254,163,161,23,136,79,11,121,99,81,148,2,157,112,244,56,198,109,114,143,53,223,202,229,10,42,208,188,189,202,139,35,
 23,75,100,154,192,93,255,101,227,223,128,2,97,245,103,167,226,4,211,223,71,72,76,123,118,245,24,215,106,63,71,31,71,245,222,35,104,231,254,70,98,1,1,196,30,32,239,183,34,159,91,251,108,236,20,16,147,70,101,127,110,218,190,104,55,48,7,56,200,214,48,21,208,97,225,84,77,100,103,163,204,154,56,241,39,88,172,177,96,241,67,186,208,127,50,129,113,151,243,3,143,148,160,163,45,206,200,18,51,15,201,55,140,14,60,248,252,210,60,39,71,47,104,104,51,61,125,191,17,208,136,228,218,194,104,167,201,248,129,249,247,230,32,216,79,221,25,26,36,220,234,216,64,235,148,119,189,154,61,133,243,145,83,148,52,91,232,113,152,204,203,180,36,108,147,88,136,147,97,131,13,4,67,98,3,221,154,139,206,33,214,231,83,3,32,185,94,200,109,245,88,117,53,193,185,160,34,151,19,235,235,193,248,65,31,211,103,47,203,8,103,102,53,81,153,159,116,189,154,130,97,23,8,93,218,17,188,62,99,177,144,173,87,176,85,157,36,176,83,252,165,43,228,228,118,89,80,151,119,30,222,27,45,238,116,61,232,22,110,196,14,9,192,216,119,119,247,145
 ,40,157,98,139,176,191,218,158,84,167,177,12,12,88,197,167,213,74,167,75,142,58,155,200,211,153,143,52,183,5,172,26,127,212,138,110,15,71,121,228,220,168,150,187,196,143,70,231,0,224,61,160,105,214,101,191,237,190,19,159,176,241,91,35,57,100,214,208,47,72,128,123,102,71,10,254,0,144,235,151,113,121,204,172,144,166,224,219,179,238,107,78,77,16,188,186,151,61,109,178,202,231,65,229,47,26,0,113,123,218,252,170,138,45,181,243,56,176,141,237,112,78,145,59,49,157,188,51,147,107,209,240,248,190,208,188,148,79,91,240,227,217,195,227,162,216,84,118,79,193,149,58,89,155,11,79,227,76,52,159,41,57,50,231,213,16,121,84,75,181,78,126,228,244,99,249,152,4,121,46,206,153,27,73,79,167,98,77,121,149,79,84,10,226,28,129,216,169,253,188,56,169,3,127,54,222,245,240,52,218,163,222,185,195,135,146,133,59,145,244,149,198,103,161,245,236,0,200,222,166,69,237,79,37,55,124,91,120,148,76,254,4,206,234,135,71,38,152,93,153,212,10,145,177,13,211,122,197,109,116,117,61,87,227,245,9,155,17,6,71,14,116,147,
 211,102,192,38,141,16,238,61,126,253,159,205,173,123,213,208,42,163,234,155,100,203,54,243,150,180,46,135,191,4,39,179,244,176,195,188,210,21,122,250,167,70,82,111,44,191,193,0,209,221,168,172,241,87,127,77,164,255,119,17,86,127,120,236,59,217,120,95,142,152,233,223,176,81,175,64,92,151,148,238,37,217,217,205,11,173,104,119,175,77,239,223,247,162,171,162,204,163,240,128,233,86,204,73,206,191,67,77,24,251,211,218,156,182,0,125,155,89,18,27,112,8,87,144,9,230,42,120,112,69,186,172,87,8,70,197,5,99,243,26,10,225,248,109,126,124,207,119,150,105,78,187,246,46,72,105,194,12,109,92,127,33,83,67,43,254,11,165,129,61,104,247,214,18,78,18,36,237,194,179,255,35,129,16,168,19,155,22,97,107,123,154,178,130,153,50,207,112,219,18,4,153,43,123,95,175,119,184,138,115,176,50,147,224,144,69,57,23,41,169,17,245,97,172,234,231,83,125,162,56,221,130,148,32,202,177,39,15,39,175,158,191,142,219,100,90,53,212,60,8,129,121,133,101,70,60,68,207,158,93,153,88,81,117,28,27,32,178,205,177,103,94,243,81,1
 96,180,22,150,184,187,248,21,249,47,93,24,100,200,230,76,133,101,24,48,118,134,26,206,204,199,152,12,141,56,245,216,203,119,67,89,252,200,172,134,187,172,151,95,85,178,231,201,64,184,41,153,17,174,8,121,97,223,141,110,21,42,244,45,90,221,66,169,68,215,148,149,90,211,74,156,157,179,130,172,242,239,141,104,79,98,139,99,149,126,7,180,94,168,191,160,111,40,153,225,136,37,91,189,226,32,210,4,48,125,249,243,172,114,62,109,1,40,152,165,203,41,214,12,0,43,117,91,31,124,202,95,136,31,118,82,12,137,189,48,21,153,11,77,218,160,82,54,228,68,179,186,252,101,58,167,6,157,154,148,124,50,221,250,90,219,59,117,34,125,105,98,43,245,81,83,52,152,51,158,69,91,41,77,5,254,89,187,93,84,118,215,24,145,154,85,195,149,0,193,82,91,172,9,200,237,25,156,81,205,176,225,88,233,111,128,113,198,28,64,157,236,62,148,6,30,6,253,62,83,125,42,19,73,201,158,119,6,137,217,135,11,70,60,145,177,121,205,225,82,74,145,180,254,47,75,157,113,140,185,237,234,39,40,202,34,150,48,74,210,89,68,195,147,114,152,255,130,77,1
 35,252,159,129,77,77,197,6,21,194,165,6,225,193,94,112,220,136,113,182,174,239,24,198,15,159,93,111,12,190,60,58,107,11,118,38,39,147,188,51,3,37,4,4,144,162,90,134,181,24,194,60,71,232,60,88,68,101,10,137,129,211,40,66,4,77,224,34,133,132,24,241,237,127,63,43,66,69,12,114,171,177,200,187,106,137,215,241,181,99,50,152,23,235,1,226,206,2,121,114,246,200,84,149,132,153,36,206,72,181,205,165,30,154,24,168,207,19,46,102,175,245,146,66,214,27,180,5,203,45,254,22,244,58,38,187,120,203,128,244,167,17,99,90,248,229,52,147,234,224,101,88,116,35,226,84,221,222,85,145,176,126,15,236,173,21,9,154,171,212,124,11,38,23,127,116,74,34,51,240,221,186,61,107,205,23,253,19,72,183,168,131,182,174,239,219,133,151,34,54,197,78,204,169,149,198,227,186,56,161,113,126,48,219,27,201,121,73,95,15,180,22,86,60,77,187,54,67,61,21,78,163,231,59,169,100,238,6,192,83,115,14,144,79,216,231,117,238,126,239,176,208,74,149,203,243,105,49,140,57,194,199,163,231,45,15,141,159,203,210,106,118,242,11,90,12,212,107
 ,52,55,148,238,220,190,58,134,48,165,25,167,78,90,110,0,121,45,223,237,23,255,91,215,205,87,1,149,81,255,180,9,212,28,94,2,214,0,233,251,38,84,15,66,68,250,174,107,67,22,214,254,4,60,137,139,79,237,102,253,66,207,241,164,86,166,11,203,215,30,53,183,110,87,68,254,43,184,10,78,121,219,31,231,184,127,151,188,212,174,64,130,245,88,63,116,16,27,44,144,115,162,105,236,15,182,123,182,136,237,124,15,168,136,93,49,255,243,219,234,141,115,214,185,79,1,144,207,20,145,107,211,223,82,79,56,243,128,114,231,88,71,4,179,182,118,121,210,226,222,120,32,174,216,181,162,57,145,119,8,9,211,116,197,250,81,198,69,88,109,56,182,64,141,138,132,98,231,222,145,63,138,106,84,223,197,19,242,17,104,152,181,191,72,226,220,201,109,185,133,135,52,133,63,146,248,12,141,112,86,225,247,145,27,20,157,64,120,245,200,87,109,243,147,217,114,32,187,169,154,91,73,128,115,201,153,170,240,181,232,218,176,140,183,141,108,132,218,158,101,159,58,235,132,42,207,246,3,33,133,26,86,169,156,186,227,147,66,193,51,144,27,185,2
 04,221,181,252,150,13,132,167,214,236,64,225,168,51,56,71,53,117,222,50,25,42,200,106,223,169,210,135,35,91,113,212,43,165,249,136,75,194,163,248,201,182,114,20,96,157,52,130,206,105,124,183,248,129,222,225,87,178,7,175,137,86,78,84,23,169,49,235,105,97,1,63,115,191,99,114,249,233,219,187,165,132,187,125,48,139,191,189,90,155,193,10,23,221,134,223,83,110,193,218,196,14,36,193,100,41,49,8,96,24,113,109,38,89,95,29,238,74,91,250,198,115,61,79,241,223,142,83,99,12,1,183,193,218,89,144,113,109,166,34,230,175,228,205,245,75,143,120,193,236,137,84,244,114,130,237,25,150,238,30,144,249,94,114,149,65,26,65,48,215,34,119,95,50,55,8,154,90,249,15,216,28,228,130,174,62,68,189,236,108,70,207,156,159,91,61,212,181,95,107,70,28,177,63,82,201,108,221,104,83,108,139,98,113,121,236,30,250,97,179,233,31,158,130,74,237,67,2,169,23,220,170,177,118,74,194,241,67,172,198,1,220,2,228,176,243,170,124,48,183,136,67,68,167,47,43,137,179,154,175,156,94,125,188,180,40,68,226,197,226,201,166,214,51,170,
 150,73,109,152,75,186,216,128,246,123,226,104,88,91,29,219,211,36,193,180,167,45,59,92,28,165,160,136,195,212,90,139,39,0,120,230,43,71,255,124,112,48,141,170,131,183,85,49,102,244,93,220,208,68,197,138,196,75,162,70,65,41,227,243,16,37,13,240,90,184,63,72,37,195,232,139,248,209,16,131,87,207,71,97,99,183,32,217,114,2,50,20,13,153,211,197,91,91,126,99,40,131,134,238,195,57,27,71,130,48,28,229,226,193,148,222,214,98,4,124,53,46,240,21,98,89,188,126,129,104,230,52,102,47,7,62,59,166,59,63,154,194,11,239,131,8,207,211,86,78,102,178,4,80,101,53,175,195,163,78,213,173,169,94,224,27,26,153,69,228,99,215,205,63,219,183,96,68,216,175,236,23,149,79,145,120,102,40,211,220,129,248,245,101,194,57,154,138,231,219,190,191,115,158,35,160,211,49,255,157,144,12,252,111,62,115,73,58,249,96,98,68,169,102,26,231,225,250,71,125,140,9,24,4,162,94,158,118,45,220,74,224,160,210,12,182,8,207,189,54,125,243,150,185,81,104,129,247,82,86,248,87,58,43,111,55,126,96,192,18,32,68,191,210,119,143,80,132,55
 ,7,78,126,164,160,25,85,141,21,148,170,104,232,164,106,162,166,169,116,95,171,208,124,160,133,220,146,153,21,136,32,90,158,218,148,83,52,253,119,36,178,124,96,70,244,0,118,37,135,13,236,173,158,83,156,151,236,215,54,62,74,62,211,187,207,227,252,46,7,246,233,17,28,177,6,65,28,97,105,122,205,7,107,141,112,153,156,211,40,178,89,174,147,43,168,252,104,70,142,155,223,85,151,77,222,88,218,100,209,181,117,254,224,74,88,156,61,234,238,53,218,80,142,152,20,225,175,175,195,168,61,227,163,94,34,60,201,120,139,120,109,106,129,121,197,28,134,202,99,252,142,93,173,65,230,21,21,218,221,53,116,56,220,59,214,163,253,172,15,143,65,132,166,169,70,124,102,3,204,207,43,250,153,32,169,186,119,54,161,45,0,177,217,47,245,164,94,130,78,118,173,166,116,214,193,156,215,85,13,85,180,183,194,21,35,8,20,154,188,163,114,156,82,99,188,182,211,240,22,53,115,216,120,132,254,253,64,245,19,58,224,114,172,37,172,177,25,123,31,25,228,134,126,95,175,188,51,120,83,54,9,124,163,92,202,37,173,248,128,178,60,229,174,
 214,118,100,77,35,124,170,153,84,236,32,46,14,255,37,23,253,203,30,141,178,8,211,38,188,233,187,103,187,208,8,129,78,0,173,109,153,218,139,123,242,216,253,108,155,130,222,36,6,117,180,230,81,133,86,69,79,70,124,244,139,132,185,9,105,73,61,5,104,96,182,99,228,154,124,118,16,215,154,92,247,211,27,175,124,167,54,75,129,154,77,0,44,228,24,37,239,227,219,31,50,129,44,71,93,66,72,143,66,172,200,22,93,16,174,43,245,177,138,228,195,45,41,152,56,146,167,32,86,172,139,70,133,191,182,229,149,195,208,89,53,9,177,185,177,173,59,22,117,1,196,30,63,54,118,89,150,245,165,198,244,19,47,199,102,5,94,35,89,19,44,210,133,233,250,86,163,245,30,215,62,13,218,129,38,254,213,12,199,204,171,103,211,189,41,180,100,236,75,203,12,12,157,56,228,191,102,26,249,102,62,251,85,80,171,200,13,97,129,119,219,61,138,216,37,190,48,160,201,196,74,22,112,220,130,61,121,115,114,78,179,213,72,105,188,81,151,135,200,181,41,217,126,83,206,35,42,69,32,6,245,20,27,163,40,154,0,236,74,207,208,182,33,97,13,209,166,220,196
 ,159,104,31,152,235,48,245,113,48,159,195,149,183,165,243,116,0,243,210,18,154,209,236,140,145,66,6,198,213,136,14,133,23,169,59,181,196,52,216,31,56,102,206,116,144,161,189,151,138,222,82,201,31,176,92,153,207,127,121,65,138,90,230,16,97,71,64,237,107,248,56,126,8,249,157,30,90,65,254,220,203,8,47,126,71,170,175,152,23,37,74,106,39,193,241,80,50,235,27,165,211,89,68,140,115,180,149,203,119,136,61,67,153,30,172,64,54,120,73,210,186,16,18,64,206,161,104,44,249,110,129,52,56,246,192,11,194,219,215,11,102,72,251,188,201,54,83,78,182,0,228,73,221,143,221,140,31,183,99,9,90,3,21,164,57,19,113,224,205,4,136,38,72,173,67,76,248,19,29,118,89,48,11,251,185,196,251,223,182,27,165,132,81,64,215,142,147,87,28,200,1,202,94,213,110,152,4,156,219,73,23,182,202,55,147,108,49,99,245,229,92,127,92,164,235,197,144,34,40,88,24,17,159,10,57,39,63,116,116,158,153,220,244,245,66,92,159,159,109,52,24,189,161,175,253,192,199,62,142,253,173,139,151,4,104,56,121,146,118,155,109,130,176,0,78,84,138,8,1
 2,52,123,158,192,126,238,25,97,21,232,112,40,102,83,214,85,14,143,66,31,250,196,32,123,216,185,33,42,172,35,64,111,57,249,185,167,30,77,181,155,171,124,22,29,163,3,190,190,51,147,9,95,37,247,14,250,36,25,124,191,147,168,1,120,98,197,224,95,252,78,33,174,227,143,152,59,149,115,32,66,247,252,116,252,23,122,58,105,113,210,214,118,191,135,169,232,38,114,58,21,215,186,36,88,83,237,232,1,242,203,134,62,104,105,135,35,174,178,63,216,161,226,213,69,15,186,53,111,157,139,118,240,151,228,230,234,41,201,242,247,23,94,248,124,122,50,203,35,82,98,245,182,170,216,21,28,27,4,77,138,18,145,54,65,88,70,219,181,105,132,244,242,62,178,204,175,18,54,241,34,116,89,225,137,248,192,77,46,9,123,113,36,150,9,37,145,133,238,147,251,18,25,112,227,18,48,124,115,180,158,56,149,4,87,172,129,254,246,64,164,218,196,248,33,163,54,112,152,201,155,64,44,128,143,20,95,36,228,117,140,129,16,5,224,78,164,236,47,181,148,19,105,178,233,238,237,228,46,86,28,223,92,213,204,236,139,251,237,188,96,155,32,139,246,212,1
 20,219,106,177,215,2,245,226,163,154,63,113,206,203,159,189,112,254,193,250,29,75,38,2,193,9,6,239,190,228,234,142,37,65,135,253,139,195,213,92,29,60,211,14,18,23,6,73,143,52,63,106,208,206,125,220,201,137,6,223,165,244,188,48,141,124,84,120,22,117,220,112,104,17,164,109,173,212,181,255,1,186,149,175,137,222,56,243,251,46,95,217,140,193,195,8,14,27,207,76,211,134,211,78,208,154,137,182,178,63,116,84,241,42,172,213,22,104,144,118,98,160,18,4,83,166,159,142,98,112,42,137,51,29,111,96,209,173,131,187,86,125,52,197,241,192,1,5,242,246,44,140,136,144,132,155,87,39,113,23,198,236,180,170,65,160,153,12,135,140,241,245,161,243,173,211,186,224,49,221,98,253,130,127,165,241,178,77,37,53,138,2,12,13,170,176,11,106,133,80,77,111,42,50,119,161,20,13,71,206,73,26,162,109,139,222,68,104,197,214,146,113,161,80,66,184,193,80,244,119,73,234,114,227,105,65,31,229,7,34,54,200,118,121,217,3,208,33,40,139,183,160,113,37,30,49,170,80,106,69,70,207,121,151,185,205,184,182,118,225,66,43,62,10,254,16
 1,220,200,153,189,46,129,72,226,3,166,87,26,255,226,97,222,213,172,161,102,189,159,20,81,163,54,142,36,163,40,204,27,48,238,116,16,1,127,6,12,126,170,210,119,102,225,21,116,56,232,111,239,111,0,39,55,196,15,216,100,127,8,216,98,40,55,42,126,147,35,245,118,86,117,195,102,248,210,205,92,233,150,16,241,174,82,200,114,17,46,215,97,64,30,130,73,115,207,232,212,45,138,49,174,35,163,98,149,175,232,92,185,128,27,157,54,92,182,100,125,15,114,192,154,48,44,95,214,202,3,229,151,226,170,219,130,71,41,132,237,12,17,152,247,63,84,104,183,191,129,67,2,79,172,167,5,110,34,134,95,177,236,179,99,118,203,72,201,219,70,246,182,204,184,42,235,219,84,25,211,80,14,121,220,51,193,57,164,255,108,121,122,84,164,128,170,4,126,9,101,100,58,172,235,81,24,182,30,45,215,96,233,239,232,214,142,174,113,155,116,255,42,142,81,91,210,102,20,229,218,203,224,112,212,96,241,223,17,32,144,204,89,127,219,101,103,14,213,55,60,113,178,51,146,3,249,111,24,0,90,107,44,59,56,80,40,52,248,108,123,77,148,28,89,78,175,153,
 139,24,24,96,204,39,182,163,54,7,105,121,173,171,24,97,89,233,34,135,247,45,250,96,219,117,23,255,230,14,58,208,77,6,198,131,13,51,91,211,56,194,23,126,147,156,234,213,217,154,28,134,18,158,19,164,13,128,175,203,111,36,116,42,2,217,234,199,54,54,192,99,159,22,130,130,148,253,183,163,143,27,103,5,116,41,28,35,235,233,98,61,59,127,197,113,230,66,219,236,139,138,148,113,129,39,171,26,173,2,202,168,45,68,81,147,84,88,20,105,252,21,200,206,5,8,183,172,9,130,194,141,147,250,122,153,247,219,179,98,173,240,196,85,43,201,194,79,143,247,204,87,243,164,154,7,198,160,199,138,4,214,245,134,129,73,247,6,116,255,73,196,242,207,16,192,139,202,46,230,17,179,230,83,98,167,209,230,238,57,52,98,156,153,217,224,208,186,90,233,6,74,29,65,173,149,44,220,33,146,65,78,227,3,28,71,45,17,9,194,211,85,122,37,140,13,96,67,255,100,5,164,216,216,228,167,169,18,216,179,63,64,10,82,240,67,79,182,79,153,188,109,216,236,163,169,86,22,46,48,179,72,179,149,107,149,87,84,110,236,34,44,127,37,100,147,235,164,205,
 26,184,103,205,209,59,50,170,72,139,139,89,225,232,228,172,58,163,81,25,23,210,61,126,123,131,118,19,63,82,135,195,116,186,87,47,12,222,233,240,187,43,154,233,184,203,159,186,55,190,139,59,208,219,35,54,191,118,122,1,70,127,188,163,158,94,123,8,32,152,156,46,196,137,38,183,132,116,82,133,222,21,173,172,31,153,183,52,126,228,189,164,228,196,71,189,236,228,11,226,73,250,97,191,146,105,40,61,62,254,210,204,28,238,187,9,40,14,108,47,132,162,227,40,158,31,112,157,197,56,249,167,105,4,200,143,216,71,98,49,164,171,67,89,124,113,154,237,32,93,142,229,250,185,70,199,105,130,213,169,112,225,86,39,116,72,14,23,73,248,48,197,179,10,93,62,117,46,197,125,17,66,215,152,251,53,203,150,82,219,44,143,242,88,234,152,215,146,218,247,2,80,235,20,159,1,221,154,83,105,216,83,218,154,236,40,238,17,224,243,161,100,185,115,141,176,163,241,247,134,164,149,199,56,25,171,9,86,55,85,213,145,144,90,224,85,254,78,185,109,254,132,35,12,70,222,78,255,162,202,123,81,126,192,232,169,169,117,74,141,193,63,155,1
 63,205,80,212,134,102,69,103,84,111,25,250,185,108,237,0,140,16,92,195,37,178,223,226,51,94,183,160,36,81,174,96,202,54,161,73,255,154,133,71,210,46,130,238,144,70,197,119,197,22,99,12,77,140,226,70,17,111,175,92,244,35,69,192,40,246,169,145,229,35,224,204,2,247,216,161,127,4,143,192,103,147,166,131,123,230,187,245,82,15,236,169,245,47,10,250,63,138,175,191,157,158,155,237,136,57,12,180,115,196,219,48,37,154,88,205,149,148,75,69,114,228,134,75,230,152,221,251,129,229,234,180,236,39,195,103,21,181,63,51,37,100,124,102,100,250,177,176,70,84,185,163,8,23,115,193,249,201,32,160,215,37,12,80,164,212,128,231,125,175,44,174,225,39,19,48,100,142,68,171,37,171,6,183,252,19,74,64,107,134,236,158,42,117,78,145,227,234,107,66,100,179,56,63,196,171,31,199,24,208,120,147,47,222,150,152,149,168,53,111,189,67,106,113,36,22,102,135,191,147,21,80,182,68,75,178,49,159,211,130,3,56,192,182,109,94,161,167,87,37,135,177,206,212,104,75,0,41,30,185,150,101,82,117,251,70,49,180,19,252,98,165,107,223
 ,220,152,75,54,203,230,88,212,76,120,104,252,110,28,24,206,90,211,138,145,72,17,201,222,75,13,241,150,200,14,225,90,108,72,35,150,148,111,242,96,1,16,251,241,158,30,49,95,104,54,157,22,191,120,15,49,112,118,105,8,100,191,89,238,103,238,10,233,28,216,6,42,150,149,111,133,132,238,56,50,141,159,192,70,69,202,108,197,90,227,107,194,32,156,252,103,49,133,247,208,194,197,102,15,190,101,191,61,232,76,146,242,214,168,66,235,139,75,60,224,156,106,63,25,24,63,126,181,54,210,184,85,13,237,255,95,239,19,115,202,167,161,31,214,97,8,20,233,104,193,184,124,207,48,99,245,114,125,168,223,169,45,65,106,181,195,59,74,48,74,44,175,214,43,221,155,183,62,243,57,211,148,254,66,39,210,132,61,73,67,120,154,97,207,61,172,32,159,126,238,237,84,59,9,243,58,122,31,210,254,48,196,207,188,203,58,43,211,213,148,87,219,76,82,200,28,157,209,183,25,36,255,118,117,151,38,170,137,76,204,224,159,228,218,63,43,255,113,109,111,225,251,245,32,35,134,241,146,91,92,58,204,156,58,236,199,14,171,203,163,75,122,90,122,2
 54,23,227,159,118,145,66,235,222,219,19,53,149,180,102,1,247,27,23,200,113,252,31,47,21,142,144,197,220,23,7,21,46,136,116,7,64,70,216,38,8,63,24,248,15,129,143,197,26,224,39,240,240,218,190,101,148,121,90,211,38,13,245,68,37,30,83,47,13,220,168,83,80,114,151,174,134,121,239,158,231,38,235,159,207,35,245,150,85,54,116,229,136,22,90,148,125,200,228,52,223,37,24,162,144,75,8,223,246,95,147,38,12,108,51,56,182,114,239,152,160,8,92,145,7,75,3,8,160,42,247,87,207,49,144,4,197,56,218,208,128,165,139,167,122,179,153,106,56,220,84,150,224,188,225,25,22,63,44,111,17,27,18,211,119,49,187,227,165,182,26,92,120,86,35,61,121,110,223,33,215,73,165,161,246,115,183,196,99,32,217,42,35,197,218,102,221,50,64,14,47,81,141,244,96,114,5,94,6,238,10,153,200,106,45,149,84,171,126,75,81,230,93,63,195,78,187,1,216,48,109,142,155,102,211,226,83,10,155,76,232,190,178,11,90,162,82,196,165,124,206,56,74,59,73,183,116,103,56,175,52,43,14,133,84,148,8,95,142,74,27,235,36,221,178,11,36,130,129,144,205,178,
 155,69,251,94,57,19,154,48,118,219,225,62,111,99,60,19,121,66,173,174,57,165,21,218,217,236,129,115,220,132,62,66,195,91,213,123,137,64,253,112,222,51,148,193,218,77,18,15,217,46,243,248,242,52,21,190,237,220,217,113,152,61,122,65,41,112,245,187,227,131,212,126,214,175,215,56,179,74,230,11,249,48,38,42,230,202,172,61,91,98,38,207,148,96,103,249,194,205,66,1,77,164,27,81,166,174,222,32,7,12,211,209,50,77,75,174,243,227,95,49,232,180,84,139,6,225,160,174,148,84,26,42,31,127,50,156,108,174,249,48,224,162,107,11,146,186,254,174,164,152,224,77,205,115,172,33,203,75,226,255,48,34,220,48,97,149,26,255,181,87,106,245,226,208,226,143,40,162,50,114,102,30,173,155,72,174,144,226,194,29,124,131,145,0,131,200,119,161,129,173,180,129,151,108,138,109,82,57,29,229,53,102,11,151,133,252,204,62,6,112,119,198,31,80,131,182,134,57,242,239,179,139,222,205,146,205,110,236,205,145,2,144,78,121,242,239,103,238,255,200,199,78,27,161,160,193,12,165,241,189,77,157,141,210,13,233,244,53,199,123,133,5,2
 20,98,214,11,237,199,57,134,58,94,195,170,105,59,19,137,138,153,79,129,139,52,65,116,87,196,87,17,190,134,172,53,96,237,121,187,236,5,173,29,52,114,174,255,254,2,250,104,241,12,109,171,247,93,105,19,169,158,207,225,130,127,75,31,43,181,197,174,210,71,87,87,37,61,184,94,0,44,207,47,22,24,67,7,207,160,4,35,83,205,34,166,238,154,40,54,163,237,196,203,187,178,129,132,223,165,89,195,223,77,87,255,136,38,155,149,72,208,19,52,41,91,148,52,138,30,178,241,154,11,137,111,215,192,78,203,233,112,102,36,65,19,216,213,158,115,38,118,166,12,116,103,162,254,254,106,120,91,33,203,42,66,189,178,213,121,204,206,75,19,245,217,153,185,63,224,132,215,131,221,228,141,34,113,207,211,171,47,75,220,191,188,220,181,154,6,114,203,191,242,159,225,228,252,210,152,182,211,1,135,123,3,88,242,5,191,207,174,40,115,84,15,192,225,228,238,86,24,80,50,65,217,190,232,75,89,134,161,199,155,78,184,160,154,251,178,224,40,67,213,252,146,168,132,166,216,180,184,222,159,64,241,72,38,65,102,10,219,236,148,253,21,195,53,
 159,213,243,146,200,81,171,212,248,32,51,199,165,101,139,202,19,82,132,254,143,235,197,112,82,80,93,96,123,121,239,134,159,245,72,216,97,210,255,123,19,100,42,226,200,33,230,213,55,169,78,78,40,144,30,251,212,86,76,36,121,122,154,23,110,216,84,76,131,114,86,231,214,76,224,114,49,221,97,99,201,202,33,163,145,2,134,61,194,189,145,173,150,100,117,15,85,230,14,87,51,111,59,184,14,162,137,36,151,84,80,23,61,66,159,73,235,21,22,187,255,220,137,5,68,202,86,10,114,234,215,75,145,170,239,20,229,135,37,27,122,28,1,223,199,180,86,131,207,205,88,40,11,90,181,210,134,197,56,128,181,213,150,103,12,237,185,186,212,214,159,173,178,25,31,17,57,231,254,6,36,23,99,113,148,46,245,149,149,38,154,127,186,252,11,40,199,230,127,126,98,255,33,136,46,137,100,122,88,14,235,127,125,244,2,139,75,138,95,149,190,115,182,127,83,23,53,19,158,21,232,125,163,201,4,166,202,50,168,39,203,242,170,27,214,245,91,94,81,49,130,250,230,60,28,84,64,41,128,162,56,58,152,219,37,77,20,121,112,141,158,1,150,205,216,155,24
 5,158,146,243,253,111,51,40,20,120,48,169,232,172,230,252,25,204,246,236,184,114,69,52,33,123,28,239,115,38,204,233,114,118,19,240,125,124,165,61,118,80,197,241,146,169,66,97,80,183,179,48,162,117,15,41,154,40,194,94,130,89,195,85,206,174,96,31,34,239,219,113,246,74,252,195,168,236,173,223,121,233,77,199,59,153,171,132,127,234,15,234,192,12,45,65,115,226,66,157,244,110,238,128,135,215,237,58,43,236,106,17,71,138,190,37,190,162,42,112,205,175,222,66,100,217,157,161,225,164,139,87,193,101,247,137,73,112,166,96,134,187,197,4,249,131,107,93,35,70,121,161,208,40,91,9,147,82,200,8,196,44,88,243,227,189,162,21,63,80,152,202,99,106,98,109,93,27,247,56,235,230,35,143,216,249,149,97,175,106,57,241,80,165,106,142,189,94,48,4,8,77,252,25,2,227,135,84,239,22,242,83,9,84,67,66,189,232,47,203,89,14,11,243,160,112,170,211,104,153,173,179,26,40,87,54,11,244,198,7,245,139,226,2,171,127,93,84,117,196,185,149,245,184,201,248,195,232,164,12,234,23,242,116,186,65,49,179,104,16,64,45,52,148,9,253,
 64,194,196,39,78,50,144,17,120,170,109,255,125,238,237,183,21,205,240,190,247,162,36,255,110,18,190,38,231,244,168,109,133,180,102,115,64,202,234,162,57,230,166,63,39,59,129,193,20,96,205,176,72,185,203,250,131,159,174,64,222,250,46,211,251,211,252,101,10,214,151,144,175,120,82,184,191,107,164,47,37,160,175,52,119,137,128,123,210,152,140,254,91,125,129,234,101,179,247,242,192,152,163,235,203,72,117,218,4,73,76,36,152,57,51,76,62,159,239,91,110,101,235,224,21,149,147,230,234,119,148,179,71,220,229,217,27,136,177,195,207,147,236,228,56,222,207,181,213,181,200,216,20,4,16,58,24,65,151,89,142,99,125,89,151,166,52,129,13,172,155,188,144,172,222,231,140,13,140,78,82,131,97,65,137,86,165,209,237,119,51,156,248,61,41,210,48,0,66,162,140,241,199,183,156,193,251,182,62,45,126,13,13,232,206,183,103,33,91,26,165,46,126,86,250,109,150,105,146,247,28,181,229,103,209,157,46,221,155,206,92,61,220,88,244,80,199,101,99,180,107,119,106,253,197,127,16,75,48,219,109,211,7,78,152,66,187,239,16,70
 ,85,62,235,115,76,144,34,180,172,180,114,147,30,209,153,185,218,88,81,98,157,100,221,54,202,159,31,23,4,209,23,219,200,43,159,186,223,131,106,78,67,17,143,16,163,198,148,197,49,97,168,100,197,222,190,93,184,225,236,114,55,158,165,44,75,179,7,66,24,52,98,124,55,255,29,152,153,169,250,210,224,188,32,86,19,185,114,201,131,6,142,232,197,38,123,123,30,24,13,56,105,2,88,102,236,39,241,179,215,81,219,213,86,58,56,44,92,2,35,136,171,87,124,22,6,252,192,93,43,225,181,115,251,2,217,217,3,223,160,255,186,94,90,32,52,59,224,147,245,239,54,253,69,63,85,233,131,180,166,42,109,213,38,172,1,56,34,128,79,67,79,103,137,132,85,14,17,191,117,146,231,139,25,245,153,173,159,21,30,144,135,246,77,243,117,15,153,122,111,122,158,168,178,117,104,116,37,10,162,78,233,10,184,149,211,119,44,157,76,156,200,65,97,16,107,41,236,99,189,2,215,20,39,7,80,142,237,46,177,237,215,4,38,131,169,26,96,15,71,217,30,163,146,155,206,176,61,244,80,146,18,39,152,28,37,142,159,77,138,183,28,76,40,89,253,26,84,166,61,89,20
 9,157,234,157,3,217,115,0,162,14,180,248,7,0,15,124,216,34,206,107,220,97,204,186,57,28,51,144,46,168,46,70,64,54,173,184,218,175,10,37,167,114,82,83,244,61,34,36,33,251,82,236,139,138,181,49,164,226,248,153,120,229,230,55,147,224,76,242,161,119,27,249,232,150,14,245,136,165,164,170,214,255,251,52,36,112,145,122,79,11,91,135,53,104,191,68,99,146,102,186,25,122,215,254,120,229,20,14,94,114,214,63,70,51,75,88,87,91,62,85,93,4,4,39,29,69,202,68,206,165,253,205,222,3,152,205,67,30,179,2,43,42,204,148,97,197,171,173,221,36,82,235,58,28,112,163,39,75,191,173,129,251,190,99,187,82,212,54,175,127,112,85,168,24,152,72,155,34,217,249,78,28,41,34,228,88,236,191,121,188,115,171,172,165,159,199,39,222,30,34,67,185,116,251,107,123,141,24,156,143,21,218,141,168,234,99,181,205,101,232,129,101,33,18,90,97,30,160,141,33,203,58,92,92,46,253,234,105,247,159,32,188,230,190,151,121,101,67,26,223,171,113,252,186,206,25,185,187,50,109,249,201,102,170,138,201,114,28,107,236,139,121,40,136,109,7,6,15
 7,218,165,158,113,86,109,36,185,205,122,32,132,145,134,146,43,23,104,214,213,3,247,51,182,66,114,119,19,158,141,177,75,207,29,132,187,107,167,181,148,215,38,114,125,121,169,203,191,185,42,48,216,217,90,221,213,242,197,219,100,208,248,39,222,184,122,253,147,23,112,52,176,14,140,240,233,57,27,169,205,185,40,53,72,13,149,155,246,8,11,119,85,29,210,67,28,16,96,203,103,133,3,247,140,214,29,233,214,242,167,22,79,169,102,50,164,185,164,67,159,180,26,222,31,112,246,170,171,20,85,125,3,135,210,167,51,125,96,90,136,117,143,231,53,72,65,238,168,39,210,24,190,181,130,127,230,245,83,117,245,160,212,163,106,65,32,37,176,139,14,19,193,240,102,19,159,246,255,96,91,213,207,116,30,16,234,48,57,55,129,195,188,194,17,176,149,7,15,56,82,245,54,1,169,198,22,12,73,227,51,130,127,4,108,116,143,165,199,88,198,84,153,168,207,35,24,142,227,230,115,163,110,78,197,125,204,167,213,172,92,236,85,67,145,164,12,219,196,44,105,119,56,156,88,247,137,214,13,203,26,57,120,72,115,161,164,131,142,97,55,167,218,25
 0,44,60,206,138,14,33,220,211,25,8,19,104,87,158,156,254,214,5,76,213,200,224,53,113,148,137,203,251,237,28,103,174,120,222,161,221,35,246,155,141,38,188,6,85,25,250,85,233,96,179,238,69,216,193,188,130,26,75,113,252,147,133,71,194,49,66,62,98,237,58,69,111,7,102,124,9,198,20,76,7,28,7,246,162,225,205,106,249,59,216,252,104,187,58,7,253,14,209,86,61,162,73,10,155,65,93,184,243,159,150,81,116,103,13,244,44,90,173,94,78,99,231,111,32,146,186,159,155,98,216,10,237,148,213,190,3,35,186,42,248,180,53,227,158,245,153,99,213,223,146,166,108,15,216,106,169,10,5,213,45,224,241,17,130,76,80,6,40,140,20,152,118,163,220,234,55,40,238,150,183,154,58,91,53,197,233,100,171,22,57,118,166,111,41,22,45,126,2,138,4,217,37,230,108,151,52,156,167,129,75,12,31,12,26,225,45,161,214,13,219,247,30,126,131,34,190,157,177,61,233,217,105,10,43,65,9,238,37,13,55,231,14,172,136,218,111,36,228,123,120,3,195,1,212,124,5,24,208,122,189,85,199,120,223,3,100,113,99,189,75,243,108,22,49,68,220,214,109,189,248,
 92,139,143,140,72,249,207,58,19,230,142,144,138,191,76,217,203,228,84,219,181,60,100,32,187,172,46,72,80,187,106,84,111,232,97,99,74,189,165,9,125,255,230,112,185,95,162,45,155,187,242,27,138,140,32,105,191,10,124,236,222,119,141,161,231,98,160,83,205,133,50,27,222,33,100,85,58,154,233,149,213,137,255,247,4,225,183,107,5,166,75,26,222,81,19,47,66,101,215,107,24,92,152,1,56,136,36,88,180,71,44,81,136,81,137,94,175,146,88,99,33,101,143,254,177,146,82,169,111,18,44,229,64,100,143,86,12,181,48,122,67,114,178,145,146,183,165,26,215,17,22,0,31,239,10,22,228,14,55,21,196,10,65,123,38,80,86,158,216,213,160,38,194,145,63,217,105,157,115,223,33,225,71,255,145,181,172,212,42,30,170,60,187,13,93,154,47,95,58,157,223,189,64,70,32,134,27,155,77,95,65,113,70,77,235,114,2,93,235,68,129,87,251,184,25,209,88,194,49,49,195,48,221,145,171,107,226,120,245,39,231,155,187,226,115,92,169,247,196,3,224,194,153,153,81,118,245,248,52,146,50,118,44,31,135,149,45,225,239,127,96,199,41,232,244,160,168,21
 ,174,168,73,76,220,168,78,169,141,223,154,235,116,44,177,125,138,236,12,2,139,170,224,209,124,140,86,219,253,104,125,93,13,90,160,230,94,16,126,220,60,28,137,171,183,248,240,131,12,30,104,139,176,145,81,106,167,234,231,239,20,25,170,161,241,10,0,214,199,101,114,138,88,25,98,179,161,36,40,1,82,163,54,15,151,161,124,86,206,95,212,24,130,138,57,72,35,242,146,215,70,54,105,86,121,70,118,122,133,147,82,4,21,34,138,131,56,46,54,156,236,63,129,204,58,130,85,131,2,41,128,24,246,222,243,7,59,237,200,226,230,253,89,52,86,22,56,175,180,114,116,146,74,68,207,87,104,201,162,195,153,164,251,29,243,172,168,64,21,179,225,56,122,175,146,245,53,122,76,73,50,73,25,94,249,175,162,127,218,142,84,245,191,154,167,240,66,25,114,204,196,95,189,74,117,117,177,59,188,105,152,90,226,56,224,50,252,44,175,239,145,53,220,218,100,159,50,192,90,1,102,184,216,164,190,36,149,190,18,152,112,16,53,96,41,233,223,22,198,158,89,250,75,121,76,20,161,22,86,114,131,157,214,8,16,18,161,179,206,241,23,13,10,240,163,224
 ,83,92,119,56,50,219,185,144,213,37,20,16,154,109,11,38,137,27,242,95,164,218,192,105,80,81,72,248,13,251,3,69,181,21,153,209,107,64,206,72,7,117,84,246,81,187,128,45,143,240,160,222,117,85,8,218,26,240,69,120,183,231,128,112,203,140,239,84,239,237,189,199,149,65,54,168,136,63,193,44,57,142,92,117,79,141,115,251,214,198,216,254,168,253,201,134,80,158,13,187,171,119,144,10,75,255,1,49,198,143,213,209,126,238,184,224,24,106,108,52,141,148,22,193,52,220,199,153,227,49,253,239,230,130,130,169,120,255,58,142,106,252,29,176,80,8,240,218,64,95,120,168,152,228,109,219,252,89,63,68,146,112,162,237,202,22,151,137,89,46,19,183,193,93,237,211,135,244,125,39,249,245,246,250,195,108,50,182,10,168,103,231,145,3,229,218,70,136,177,109,104,51,87,243,0,79,216,213,68,200,64,127,164,131,70,210,232,13,64,167,190,32,201,117,38,223,0,210,94,235,72,203,222,93,249,47,57,231,75,203,212,125,158,130,196,126,5,240,93,0,12,241,0,172,15,158,20,223,102,239,86,58,240,106,142,10,102,142,252,188,94,25,61,116,
 88,237,205,44,169,174,49,7,170,129,71,192,47,22,13,65,77,58,165,127,59,67,4,197,1,224,164,68,119,17,10,223,250,32,254,184,85,110,115,138,17,212,96,6,94,26,219,26,122,100,117,97,3,1,161,82,94,37,69,127,54,211,212,199,101,207,86,20,19,64,81,180,127,60,3,248,90,198,18,47,150,17,137,73,32,10,202,155,84,78,10,45,111,78,0,241,89,81,233,50,38,169,108,62,196,188,230,211,135,152,250,156,66,185,25,49,131,116,62,127,11,96,206,114,41,113,55,249,142,191,123,50,53,136,93,106,138,105,203,178,172,116,32,95,131,158,128,129,251,245,215,156,161,163,246,96,140,68,250,190,137,186,187,111,10,238,57,133,13,138,121,152,95,248,118,197,251,199,216,215,207,180,210,163,0,114,76,215,112,0,132,77,225,126,163,31,178,243,79,96,236,222,239,93,151,20,119,195,82,112,86,111,65,87,75,38,151,187,187,81,161,7,126,121,64,43,16,190,84,78,112,154,231,202,119,168,122,88,69,85,183,140,10,160,95,127,248,17,176,132,113,117,224,232,44,50,199,211,166,163,59,12,76,210,34,71,81,86,223,204,126,2,173,15,145,166,228,249,89,149
 ,203,132,186,59,176,114,46,33,227,35,16,220,220,13,166,128,177,87,190,211,157,251,136,15,80,241,42,68,121,133,86,114,175,148,23,107,10,185,177,251,97,135,43,26,216,1,251,203,156,168,190,228,116,197,54,193,31,179,21,223,191,191,19,86,194,200,234,105,217,110,85,164,160,192,144,211,179,129,215,246,112,83,212,151,89,113,238,60,167,208,6,255,121,51,193,235,15,95,104,195,126,120,187,140,9,32,47,191,55,54,201,177,219,137,206,238,146,246,2,127,237,143,183,160,223,224,254,120,199,179,163,255,60,241,214,212,73,23,59,56,176,236,162,229,0,95,151,131,138,125,24,20,249,65,31,231,91,70,151,28,74,37,176,123,94,188,178,102,89,103,51,156,166,72,74,104,155,99,101,68,8,87,50,205,83,102,228,42,169,108,165,189,62,215,211,86,9,226,233,12,94,171,175,44,195,77,157,205,10,5,195,69,227,238,118,3,240,45,227,125,201,39,176,74,183,249,171,170,244,200,42,148,127,161,227,53,35,48,101,139,101,22,34,32,231,187,24,24,247,107,205,120,242,102,228,59,125,120,203,171,161,93,113,66,202,60,177,226,86,255,171,209,14
 5,13,115,40,136,1,80,230,52,137,211,183,13,214,198,34,252,125,210,221,226,126,69,132,25,220,16,69,42,13,52,145,179,213,244,189,163,163,100,6,228,112,54,67,37,47,189,232,200,143,232,203,112,228,34,221,255,31,207,19,162,244,221,118,127,134,6,245,127,101,66,96,238,176,181,179,33,144,110,242,88,90,197,178,96,78,83,1,172,42,6,216,69,76,169,221,210,68,89,0,58,235,59,244,220,37,58,223,200,129,23,209,39,252,116,138,202,105,81,17,228,140,223,231,237,96,206,226,202,159,6,13,35,247,77,250,5,59,143,25,87,170,124,38,188,52,4,197,177,22,232,19,184,111,122,28,19,159,161,192,193,59,11,166,249,197,73,161,102,183,122,144,35,102,84,103,133,146,143,83,13,96,153,120,253,25,144,81,133,246,39,135,37,202,233,15,75,78,51,220,68,74,195,1,215,44,230,115,90,54,174,37,200,92,197,184,106,169,66,15,207,246,202,230,99,187,195,244,192,147,156,132,147,43,159,59,61,71,59,204,123,29,72,22,187,249,213,73,14,67,229,115,1,220,14,119,23,79,169,86,158,108,212,8,252,29,255,182,10,80,10,137,158,25,163,196,227,207,105
 ,226,253,144,223,72,68,221,187,207,123,168,210,151,105,132,11,165,233,181,109,159,86,143,35,101,194,180,17,80,8,2,43,200,10,31,107,49,147,175,173,20,117,219,128,124,108,170,212,124,161,140,145,13,132,85,180,233,236,244,91,6,13,188,203,160,138,27,43,224,211,133,252,234,238,160,77,30,103,45,228,231,158,87,189,119,71,76,224,10,141,154,27,101,140,42,207,212,216,250,119,60,153,154,214,148,103,238,42,128,182,242,191,196,212,228,155,212,171,242,99,189,39,121,112,165,187,20,218,241,86,26,134,142,102,100,179,253,2,183,120,42,119,149,20,143,116,122,129,77,242,72,141,68,223,18,216,12,196,213,241,16,58,243,109,169,79,7,13,102,232,231,9,132,161,66,111,9,252,11,155,64,254,50,146,20,99,34,134,225,129,154,93,44,168,199,244,242,7,123,113,179,164,95,5,158,151,157,106,229,227,215,183,36,35,213,80,51,38,189,149,124,85,150,211,41,122,155,32,150,157,156,201,46,193,255,108,49,132,104,100,142,51,43,133,182,116,132,217,126,189,237,89,118,234,236,106,218,105,223,179,3,226,135,246,233,117,7,91,180,115
 ,242,39,182,38,0,215,119,58,174,178,87,128,40,220,31,102,33,16,16,53,76,116,176,168,221,57,95,105,71,36,131,183,9,56,245,212,154,142,81,97,98,48,218,228,55,172,120,254,72,170,184,239,174,48,156,152,4,97,170,164,91,11,190,233,185,218,52,82,103,8,165,100,233,224,25,13,86,228,12,249,240,89,182,31,172,84,151,199,106,179,226,39,114,63,241,227,3,232,252,198,248,243,52,240,215,114,187,143,210,14,10,184,136,200,76,225,212,156,151,103,201,190,76,78,133,85,26,181,233,196,231,26,140,65,248,160,121,143,33,25,179,220,118,3,3,150,194,78,147,63,3,41,155,22,49,213,58,118,88,230,10,82,248,195,100,202,183,210,83,125,126,38,29,127,196,215,156,90,191,106,89,149,70,151,195,15,5,76,34,77,89,192,143,110,147,184,25,245,170,164,121,20,206,118,138,0,55,32,44,14,79,129,84,207,227,121,74,133,41,250,155,4,60,133,13,77,96,95,56,130,166,154,82,25,0,75,199,248,103,62,82,177,115,32,63,159,178,151,88,161,77,124,34,143,23,89,132,71,77,179,119,212,17,126,137,67,115,243,145,177,108,117,23,56,86,233,144,254,188,
 241,58,216,122,187,75,77,140,69,137,25,7,79,114,50,54,213,76,83,19,87,220,226,190,218,164,107,118,96,104,28,105,178,225,188,106,222,103,49,18,50,219,253,146,181,230,10,202,48,8,206,245,13,81,128,212,162,219,174,237,42,172,94,67,120,87,158,54,242,216,72,85,156,55,148,36,196,247,106,90,157,43,111,214,112,48,27,135,154,201,135,82,160,144,55,174,116,147,214,27,149,147,18,109,120,70,183,170,186,240,119,185,0,20,106,166,45,248,176,166,39,208,181,58,183,105,245,158,158,140,91,161,164,224,75,16,12,230,141,180,117,75,25,227,45,155,89,175,191,29,99,75,26,162,106,73,12,93,208,102,15,171,116,246,221,103,153,9,48,39,194,103,183,238,190,229,212,41,80,255,117,17,212,7,10,115,75,47,111,244,128,176,252,53,103,39,147,102,117,232,24,182,119,143,62,81,230,22,228,183,16,201,12,106,218,45,182,83,72,89,46,161,144,29,222,22,16,167,47,8,107,5,95,157,129,105,48,145,200,65,36,56,149,153,44,35,94,28,182,236,11,13,61,187,22,118,79,53,60,236,148,186,253,2,181,70,6,102,72,249,68,146,222,5,121,104,4,152,89
 ,214,88,55,140,154,201,19,199,94,77,166,131,7,117,124,232,221,231,111,167,19,253,144,234,161,77,32,223,230,107,21,174,214,181,193,116,198,19,102,119,94,96,229,3,242,115,40,183,53,126,240,9,59,127,66,228,75,116,3,130,140,226,206,188,157,28,127,229,72,219,132,243,9,82,13,128,108,39,114,165,68,201,39,100,235,121,132,123,184,129,107,80,18,65,202,88,49,201,252,127,227,178,130,223,30,45,211,83,21,175,6,46,220,58,228,59,114,109,40,121,35,160,18,218,8,250,66,65,21,84,117,188,35,129,1,91,53,14,157,178,68,47,213,82,202,43,250,2,150,199,121,102,123,187,43,198,90,100,63,186,37,191,102,146,248,34,166,21,19,161,181,16,224,245,184,194,45,113,240,222,157,225,98,21,118,184,210,90,249,218,110,242,249,176,187,240,207,68,242,174,189,83,147,118,41,73,195,198,233,176,52,92,97,184,124,208,82,97,77,136,211,81,60,222,77,182,21,126,203,104,244,149,108,188,222,180,74,230,149,237,16,80,97,230,1,3,222,112,130,13,60,16,243,76,193,177,242,60,145,131,111,155,53,9,14,32,232,96,71,139,175,235,69,69,62,1,30,2
 07,76,77,143,106,0,89,64,226,124,111,35,110,32,173,54,14,206,107,20,248,83,24,196,38,241,41,60,170,110,66,219,223,250,104,139,91,44,91,232,85,180,156,8,14,186,194,202,57,249,48,94,0,73,74,30,144,86,49,73,78,117,208,71,183,238,148,213,112,153,196,190,144,248,44,52,140,116,253,26,35,134,203,183,156,87,98,38,118,42,24,0,83,122,108,107,174,203,118,236,99,129,255,194,206,47,58,140,140,152,40,35,23,133,86,251,82,212,196,21,39,93,36,246,222,185,58,181,33,43,81,114,4,158,86,53,182,127,9,103,241,8,244,139,226,158,27,166,144,248,165,223,121,87,216,172,20,176,222,247,246,0,5,121,175,184,224,32,137,190,166,230,232,50,103,231,182,25,128,107,97,1,4,83,207,5,196,246,9,173,138,249,151,205,10,62,130,48,166,111,98,23,95,184,125,124,233,91,38,137,56,152,31,144,13,77,248,110,160,127,135,155,155,167,83,251,89,47,75,197,231,40,209,173,79,194,227,170,101,167,168,41,150,103,252,183,219,67,238,71,107,183,138,213,48,95,157,43,110,237,84,225,250,52,118,39,173,236,138,105,2,253,106,78,92,28,55,158,111,
 5,118,139,176,23,239,70,170,149,221,140,82,157,76,97,136,136,220,162,205,119,255,137,198,203,4,142,113,2,127,193,188,62,5,70,253,188,51,164,35,206,53,126,237,199,82,109,229,140,90,142,229,244,254,146,198,203,154,200,57,202,28,242,21,223,64,165,22,233,11,119,3,227,159,105,204,160,193,139,68,111,169,203,60,57,199,77,206,14,119,77,255,5,236,6,74,131,91,198,57,211,221,123,122,121,74,204,11,153,92,122,91,76,112,157,172,210,212,35,227,22,190,53,213,22,210,200,167,89,232,10,22,223,232,38,250,127,168,178,220,63,238,38,174,186,26,121,70,143,102,52,180,164,79,3,148,248,56,3,106,201,27,241,7,163,248,60,171,178,179,159,99,41,147,182,202,62,165,245,207,248,146,153,157,38,178,173,37,133,82,194,151,9,113,46,23,2,20,58,193,240,104,171,56,194,113,214,61,73,111,157,194,69,80,85,112,163,195,80,238,49,175,182,121,111,173,193,144,53,161,88,161,58,139,84,105,226,108,192,54,177,166,27,224,56,5,150,19,185,213,213,138,12,32,82,24,207,176,238,206,196,116,215,133,189,7,100,243,226,252,45,182,104,182,3
 7,35,221,200,45,182,23,86,238,22,179,3,161,240,212,20,197,249,168,67,240,244,240,9,85,168,83,215,109,123,134,160,76,150,231,175,252,57,79,130,228,20,190,236,16,175,117,13,76,122,163,50,189,189,8,36,198,241,201,155,60,229,137,186,42,128,247,39,161,110,210,203,215,119,228,68,174,36,180,166,121,68,181,68,236,170,51,61,23,71,7,93,175,174,129,255,51,47,175,5,134,225,26,159,250,212,88,55,135,51,35,121,48,103,77,144,48,193,218,91,254,53,40,238,216,15,19,69,72,122,196,163,55,236,151,187,86,78,175,190,83,112,168,162,220,193,204,38,1,195,14,184,9,20,120,252,255,145,198,45,125,88,98,225,60,203,73,135,21,150,102,137,0,136,110,26,108,162,44,43,61,84,40,113,36,133,243,246,196,143,227,51,83,172,168,59,180,39,249,174,6,230,62,165,192,59,119,208,104,238,27,113,42,211,174,19,24,212,46,156,181,106,202,176,100,187,232,25,170,114,143,252,55,76,98,205,241,142,30,190,138,114,168,139,64,101,185,255,254,105,20,38,131,160,163,174,20,193,234,231,149,97,0,35,14,71,120,78,199,126,235,182,235,60,125,176,
 50,246,80,248,220,99,108,64,143,250,135,146,169,10,55,64,59,224,53,221,140,232,230,61,206,91,24,10,124,49,226,170,118,61,58,8,102,152,46,74,235,230,188,12,176,142,176,185,21,40,141,191,199,197,153,191,58,209,187,109,121,160,211,241,134,201,232,30,83,157,56,126,212,69,208,43,233,78,23,224,63,3,172,215,175,117,75,12,172,19,134,22,156,216,123,56,53,216,225,16,238,185,72,140,190,166,234,94,111,73,175,82,160,129,73,73,161,158,198,162,102,124,19,218,78,185,99,93,62,237,41,171,34,134,215,19,115,113,50,171,220,57,96,130,193,189,222,162,12,242,117,32,73,109,62,216,176,1,74,110,232,63,192,9,234,203,52,248,146,182,79,223,155,82,86,227,13,231,168,182,155,237,172,22,193,236,25,17,171,219,128,179,103,130,109,51,22,57,154,177,125,26,58,242,175,41,188,90,115,62,127,62,8,244,109,94,205,168,208,177,105,53,253,2,19,72,227,119,230,248,14,187,169,17,50,199,210,83,207,146,213,180,199,220,4,199,25,216,250,93,181,145,255,216,250,174,174,110,184,221,217,243,151,14,49,113,220,254,221,127,212,206,79,9
 7,65,125,180,90,245,226,81,101,149,59,136,224,203,89,63,2,231,38,208,220,168,167,141,156,170,75,129,30,46,91,195,55,169,246,97,155,72,173,248,140,119,25,1,44,180,82,199,182,204,9,231,182,185,41,48,197,169,39,43,199,162,223,52,167,145,152,25,141,149,23,127,254,203,221,146,120,6,99,244,180,70,21,102,108,202,87,255,96,105,57,221,33,186,66,152,66,55,88,207,102,102,71,193,17,75,7,44,192,107,94,163,175,192,21,165,10,141,99,74,186,172,81,230,188,220,58,39,26,198,135,77,1,97,46,240,153,193,147,101,9,8,197,101,202,5,183,254,220,225,164,189,40,52,245,40,5,48,72,240,60,111,239,241,255,154,187,52,180,14,33,58,146,103,168,239,21,158,45,251,28,228,0,83,8,40,109,244,245,140,119,219,35,101,186,236,223,230,86,168,146,235,177,94,142,112,133,140,76,205,155,216,156,226,206,159,206,167,185,233,161,34,50,249,167,39,143,100,61,144,74,126,236,254,134,86,225,214,76,190,230,126,124,32,91,246,83,235,251,141,38,33,165,70,235,207,118,91,70,88,203,130,186,64,169,238,58,227,55,139,71,155,166,61,91,4,181,9
 4,227,103,17,52,97,55,61,248,99,143,98,87,48,148,126,194,212,180,12,1,168,21,66,128,142,99,131,243,169,247,52,4,66,182,204,21,43,251,63,39,155,135,84,179,142,11,176,128,253,93,230,78,5,244,172,18,74,86,18,12,147,77,134,254,202,166,1,84,169,192,243,244,135,19,70,100,69,107,99,199,65,134,8,75,7,11,208,254,133,61,185,186,36,53,225,126,94,78,61,46,163,46,176,106,100,239,20,58,78,126,181,222,157,110,20,130,84,153,228,17,65,253,250,165,144,64,253,162,156,144,46,68,199,246,40,227,218,195,46,131,103,155,23,175,61,26,83,216,74,160,188,179,46,153,94,35,109,111,228,152,13,139,20,10,48,104,142,178,28,42,27,39,87,24,114,137,82,51,248,250,38,11,206,88,29,219,64,155,25,20,246,84,73,102,127,104,100,243,254,38,30,192,92,48,180,240,218,82,15,164,32,241,235,72,95,213,53,166,163,208,38,237,37,0,12,19,192,249,121,12,186,247,59,27,148,220,98,70,97,87,236,138,150,239,180,98,119,70,73,203,60,233,217,175,172,102,1,156,200,166,50,60,197,29,65,33,171,247,144,224,5,97,120,45,139,200,162,42,40,109,152,6
 9,101,124,191,88,40,129,51,83,50,214,203,33,63,207,140,129,49,20,102,39,81,149,76,220,222,116,162,200,133,222,184,117,157,139,20,62,182,20,81,62,171,5,240,105,142,215,216,91,181,226,160,147,135,219,58,247,230,6,35,22,174,255,29,236,249,156,128,136,243,216,71,221,177,183,136,215,135,116,71,63,63,223,72,83,24,162,106,184,223,99,51,143,63,23,254,32,112,80,150,80,56,143,153,105,33,42,44,238,187,182,202,67,10,76,46,92,41,131,6,12,196,23,15,46,43,47,138,102,107,66,12,55,90,32,201,241,200,38,81,251,233,49,224,51,57,104,234,117,137,154,153,45,149,221,41,15,40,213,85,62,234,66,55,22,83,110,100,11,125,9,24,114,157,226,215,234,1,11,149,126,81,20,157,33,238,122,24,164,238,149,18,52,230,82,105,173,131,13,154,239,83,116,187,127,239,246,31,251,51,117,68,214,59,113,242,117,170,130,208,217,217,32,146,49,220,230,230,146,119,39,63,166,91,19,13,162,53,86,161,111,131,63,26,229,143,46,93,25,54,161,196,190,102,39,168,142,105,110,26,105,140,30,249,7,226,93,187,9,109,162,48,76,130,50,84,65,134,228,2
 14,185,117,170,70,116,144,111,166,245,227,5,58,6,187,66,43,101,232,127,141,51,11,4,145,76,62,182,86,123,33,192,9,2,3,76,126,78,8,152,89,119,115,8,105,117,167,82,94,191,168,150,61,32,84,253,79,67,122,221,90,243,187,121,237,198,37,56,87,24,187,72,234,58,149,69,120,25,162,235,212,151,4,85,78,78,38,127,192,208,201,82,238,80,199,176,220,107,231,24,155,200,110,114,84,108,222,15,197,69,189,15,110,203,253,211,186,73,67,234,2,75,77,131,53,36,113,101,53,204,165,73,216,198,218,174,251,42,232,183,128,215,162,90,26,145,150,3,33,212,78,61,16,178,214,142,213,95,255,84,200,173,45,172,161,149,5,26,165,245,74,195,13,244,243,101,172,81,218,107,138,78,10,166,41,105,137,197,203,152,237,145,196,48,12,253,200,12,118,186,142,208,189,203,24,109,83,134,81,245,204,181,40,7,137,108,217,205,21,212,55,109,200,140,160,189,39,119,211,35,164,91,170,216,112,31,68,131,23,74,235,84,161,151,153,27,49,54,175,140,185,119,12,103,166,91,192,88,41,92,153,91,15,149,117,22,163,23,67,120,60,37,125,8,246,32,182,76,27,17
 5,165,209,109,32,114,138,92,42,247,58,86,148,143,17,96,123,203,234,150,15,113,232,38,143,78,163,230,168,96,69,109,14,120,128,68,171,36,28,133,22,235,238,237,65,237,30,12,121,91,175,172,121,167,42,38,229,190,1,74,142,139,123,156,217,63,179,120,1,249,170,158,12,243,248,35,120,67,215,62,4,200,98,88,63,71,184,224,217,32,110,245,80,161,195,150,135,170,230,158,39,62,97,121,174,69,23,190,188,43,183,28,175,157,118,59,192,43,40,198,88,170,125,35,42,103,222,114,158,200,166,243,121,70,196,37,160,64,199,30,89,0,105,183,89,21,55,237,214,245,188,253,191,57,243,12,149,58,12,194,196,1,210,87,179,178,115,240,24,254,147,218,54,105,177,35,34,98,36,154,99,51,187,74,245,169,175,110,123,69,135,170,3,148,104,92,231,108,100,66,175,210,112,54,24,114,240,212,141,95,186,161,201,141,132,149,7,40,213,108,216,123,145,84,149,119,161,31,93,165,180,188,139,212,86,176,50,30,25,222,57,199,7,185,250,103,169,156,185,120,127,63,235,182,82,49,55,19,183,168,21,3,11,204,156,149,14,80,48,7,121,160,152,244,113,158,13
 8,197,171,0,94,140,204,136,187,77,219,108,115,251,188,246,167,13,122,151,211,188,60,157,94,141,45,25,97,245,79,64,113,183,160,141,47,224,68,213,169,149,228,14,119,29,137,156,132,219,128,91,114,0,220,85,22,142,173,74,225,45,220,221,71,119,121,224,57,250,235,237,238,252,155,198,90,229,73,8,140,254,5,193,148,136,7,8,81,224,247,133,161,4,50,90,100,227,9,111,224,36,131,156,102,212,161,17,78,234,8,246,194,90,245,41,189,21,234,90,89,37,13,192,66,93,187,106,95,204,213,135,25,18,249,188,175,1,226,139,150,248,94,180,206,190,66,238,53,250,198,52,237,26,234,218,244,172,79,210,207,59,54,251,113,124,238,179,77,249,104,213,13,98,73,134,205,185,148,66,172,207,140,239,14,65,216,31,220,95,239,68,75,156,69,70,39,13,31,136,203,239,253,238,39,108,121,166,164,240,240,223,166,207,14,7,162,72,94,0,111,216,205,23,147,104,49,138,208,194,117,170,9,8,145,163,169,181,27,73,3,199,167,251,65,33,2,131,199,164,176,89,247,135,21,65,72,219,174,5,34,125,17,242,253,117,169,61,95,198,205,96,227,124,50,81,81,188,
 45,13,75,62,67,60,132,75,130,46,81,66,100,148,175,223,211,17,108,69,97,214,45,25,74,213,146,1,90,86,120,147,45,181,14,228,97,117,75,114,11,13,176,125,199,135,48,52,186,33,177,160,176,29,247,82,38,40,225,25,222,205,5,48,215,158,81,135,227,124,246,210,54,40,225,55,94,126,154,189,233,204,15,165,254,217,37,78,102,19,88,143,123,249,141,200,49,196,46,80,77,67,94,80,203,139,198,78,120,148,174,32,124,255,81,241,160,100,54,103,65,153,0,76,102,105,50,24,8,176,173,49,15,180,191,76,131,197,31,201,4,29,241,59,221,235,39,127,149,72,179,164,72,183,62,227,21,99,167,90,146,5,122,38,218,7,58,140,214,79,188,203,36,140,68,41,199,111,100,101,205,134,106,167,41,36,59,20,217,36,63,161,55,2,206,55,74,4,253,202,178,175,252,14,7,7,172,123,46,200,69,120,55,132,176,195,80,104,234,56,148,70,69,213,87,61,117,102,160,211,7,218,72,244,164,181,172,185,28,13,126,120,228,212,84,230,84,11,251,102,206,104,66,220,28,11,138,10,20,254,137,63,154,98,122,60,95,149,28,236,69,11,103,39,82,140,45,96,90,180,237,106,158,
 43,233,15,238,253,254,15,179,80,103,29,222,245,26,67,186,63,205,230,238,129,202,10,83,169,129,85,177,161,25,149,222,153,126,25,21,43,140,109,95,155,247,20,90,151,140,201,22,66,177,47,27,218,71,41,223,37,188,253,27,16,255,28,66,75,17,198,19,16,172,146,57,244,75,56,71,20,229,166,78,183,107,31,182,103,195,181,82,85,106,160,86,161,111,75,145,169,149,133,210,253,43,11,59,122,32,176,22,95,89,107,215,155,2,248,243,136,173,216,131,129,153,199,246,48,206,123,94,18,77,76,139,108,132,147,169,22,61,104,24,186,76,45,182,131,108,107,20,118,47,167,111,190,159,246,158,75,135,137,222,87,60,118,153,228,155,121,10,150,186,135,88,153,144,216,7,225,221,158,9,159,27,141,179,12,104,30,142,187,132,30,163,1,43,4,82,104,223,97,101,38,66,71,246,93,246,20,142,64,233,181,134,234,51,71,165,246,134,87,204,185,119,189,114,58,12,191,102,157,225,84,91,171,118,36,225,21,21,204,197,96,21,165,43,45,56,53,58,147,214,180,103,153,130,120,100,44,62,192,68,39,42,200,220,249,82,238,221,227,20,2,51,107,180,203,28,87,7
 1,123,202,174,236,4,203,165,61,191,237,100,110,85,166,245,218,88,41,244,101,187,162,92,225,247,55,38,119,43,60,167,114,46,69,152,52,93,30,116,219,127,213,198,252,35,90,199,175,175,107,58,84,169,171,208,233,170,56,124,255,3,218,83,144,121,58,124,32,239,125,239,105,126,239,199,216,119,165,87,113,212,42,182,81,108,135,252,153,28,140,91,95,211,169,31,85,93,97,114,175,55,237,36,65,181,128,186,2,174,40,139,255,175,23,125,250,193,251,96,133,200,247,30,203,110,90,46,15,143,50,254,33,100,90,102,252,116,138,85,60,215,16,79,197,253,194,231,158,115,31,45,185,84,105,139,133,58,3,204,37,243,98,117,123,29,55,234,72,48,177,219,18,229,217,209,152,251,192,228,134,151,20,220,5,16,181,106,50,255,179,192,19,61,189,176,180,102,248,125,181,148,67,214,230,19,42,13,187,113,93,186,233,30,49,185,82,105,125,123,3,225,184,208,253,64,74,181,172,5,80,199,249,63,191,169,158,23,95,69,241,222,209,97,149,196,214,153,55,32,86,45,71,193,103,139,178,64,221,198,204,25,32,2,102,19,62,37,97,116,50,225,44,175,222,10
 6,32,190,225,156,58,3,11,240,109,184,241,57,43,203,187,13,20,27,234,218,31,10,77,91,166,153,184,0,120,242,196,106,197,144,76,223,178,56,209,95,130,11,95,87,174,127,22,148,231,4,198,181,40,237,84,6,122,176,243,48,121,3,236,24,69,71,11,41,201,48,197,101,83,240,107,185,34,89,222,250,242,145,43,49,167,18,210,146,166,131,91,141,160,28,151,149,31,121,245,201,137,118,124,251,95,216,96,237,186,116,155,242,29,10,5,240,87,16,23,243,131,106,237,114,32,131,69,86,153,191,53,30,14,204,172,128,101,78,129,150,79,86,210,131,92,34,86,106,196,153,74,94,126,141,249,182,167,43,124,159,126,78,202,32,234,195,118,66,62,19,35,206,83,15,137,0,236,92,6,104,51,157,138,184,184,127,230,55,249,183,128,121,161,71,174,111,147,143,30,114,105,155,43,113,194,169,135,67,91,98,114,102,76,71,203,154,208,251,203,59,69,53,102,63,6,12,185,1,86,238,47,229,101,58,250,33,243,226,145,39,249,117,6,37,104,94,21,96,31,30,79,98,218,70,221,219,75,35,65,185,11,127,252,213,30,86,200,1,222,159,18,113,39,159,168,144,165,175,194,
 95,181,105,249,137,177,59,172,206,167,121,60,107,142,168,37,131,106,108,177,156,60,173,136,43,255,150,27,209,123,195,39,168,184,87,156,12,40,139,78,57,191,25,215,45,227,221,233,154,188,220,10,107,42,241,161,142,11,70,13,172,14,212,233,165,32,233,166,240,169,59,39,51,99,124,129,47,147,57,90,213,88,173,30,225,183,125,57,133,120,63,103,96,25,85,27,251,245,205,72,198,144,245,7,224,202,123,127,243,249,221,160,8,3,105,33,1,218,130,209,143,108,72,83,206,179,0,21,140,147,223,230,100,111,143,118,222,201,160,218,126,11,17,48,16,23,179,23,39,161,95,111,129,198,141,120,113,8,28,7,61,229,215,19,197,65,134,141,250,55,126,47,58,89,66,221,195,198,204,29,27,205,186,67,242,113,195,94,104,156,125,64,133,151,126,178,76,139,255,52,44,180,80,217,238,138,123,68,202,17,248,11,91,224,34,106,238,13,169,29,158,119,249,96,25,36,158,79,86,42,232,209,203,24,80,133,0,173,214,68,81,71,57,215,56,2,254,152,23,205,112,96,154,218,161,213,244,173,231,194,171,182,25,164,240,126,21,67,223,206,71,251,169,59,132,13
 9,53,135,43,231,158,231,100,31,139,254,62,103,148,236,35,68,188,180,181,97,48,155,133,240,198,154,198,52,114,89,149,112,178,215,34,205,112,205,178,65,235,168,159,143,163,226,11,108,99,72,39,62,248,176,21,230,62,110,187,220,228,67,76,69,133,82,167,96,212,163,187,191,69,250,33,128,224,126,32,1,209,30,216,29,27,117,59,221,17,37,239,21,85,211,28,155,147,94,195,89,55,130,192,97,145,126,53,6,149,254,11,43,32,199,192,94,40,160,191,210,117,112,17,229,7,195,181,136,57,166,96,119,123,75,211,229,122,138,65,49,90,12,77,196,125,36,46,211,202,108,113,161,91,158,180,86,172,1,208,16,29,79,116,100,107,168,245,126,21,186,70,128,67,64,17,94,221,77,182,225,215,113,146,251,73,187,184,42,14,78,2,50,146,16,0,17,209,48,167,232,122,79,229,209,39,14,66,52,189,34,206,210,1,4,132,255,59,71,84,147,52,39,151,11,113,137,13,242,93,108,10,144,235,252,54,127,239,112,226,82,243,180,232,228,140,173,250,159,71,225,45,65,101,219,156,228,206,160,107,255,31,192,46,23,123,211,115,102,78,213,176,18,147,34,73,249,17,
 40,198,187,229,144,24,95,188,40,122,81,226,23,9,120,130,207,55,136,95,207,98,187,129,141,246,126,239,174,164,235,175,76,73,247,116,87,119,86,232,223,120,104,126,205,175,230,121,117,161,52,39,140,97,51,128,139,13,90,217,220,100,7,165,251,33,92,30,202,32,117,172,23,186,15,203,141,23,192,231,18,96,183,89,165,159,226,50,230,236,1,177,34,126,204,45,223,162,144,102,4,1,65,80,14,183,187,49,91,219,203,168,87,229,225,85,0,119,133,203,145,221,198,174,8,104,48,226,118,194,106,43,109,121,12,145,158,175,34,204,33,66,109,150,127,223,45,235,107,50,163,254,234,144,15,36,50,63,188,234,108,222,77,171,82,151,11,205,59,139,188,130,86,230,4,103,93,82,10,31,236,51,50,254,79,67,207,17,248,162,27,171,248,216,187,6,167,68,44,151,91,41,3,109,96,245,103,103,203,70,149,73,173,199,85,53,70,18,177,228,178,116,250,95,17,10,248,189,107,171,188,216,107,69,8,148,186,172,2,69,142,247,39,3,209,158,178,220,226,192,213,251,248,232,101,41,96,24,247,249,73,74,119,160,101,217,222,86,17,52,109,6,116,125,55,237,213,1
 93,244,170,183,176,116,180,155,172,7,109,147,152,195,57,246,69,150,97,210,124,130,113,86,122,154,204,98,148,88,154,113,127,184,10,240,176,142,211,106,191,72,81,50,19,220,240,243,231,15,79,204,100,208,216,158,20,50,132,161,135,170,150,86,1,238,39,145,235,59,170,148,246,87,207,209,98,136,128,179,126,86,33,75,116,241,4,125,52,191,105,118,84,208,16,28,34,136,72,242,11,252,190,232,139,18,149,126,117,173,80,17,103,212,146,225,116,119,61,127,126,80,189,94,156,192,233,25,162,58,8,178,32,155,25,68,249,181,241,138,232,53,192,141,121,27,231,208,87,206,90,68,217,195,241,218,234,95,129,76,21,188,226,119,208,18,198,245,11,198,40,211,76,37,93,206,209,110,3,98,215,186,237,18,184,218,69,110,88,141,1,93,239,222,223,165,43,54,16,236,113,214,116,216,221,39,188,179,83,207,161,124,201,99,217,122,120,185,3,204,65,55,44,214,241,220,255,178,149,127,218,147,162,77,12,149,86,65,33,155,108,8,177,72,249,53,107,137,211,189,200,44,6,136,82,246,213,148,248,13,42,250,252,168,109,245,150,165,74,23,32,103,130
 ,40,130,251,84,87,9,125,146,248,26,34,153,63,218,240,124,119,99,97,252,127,3,223,227,64,224,105,47,82,128,141,103,238,73,94,78,166,70,212,227,106,76,45,127,219,64,162,102,166,249,26,167,1,198,52,179,222,144,230,248,149,89,100,92,113,107,197,233,249,79,215,213,153,108,250,51,152,232,233,224,74,63,106,189,209,126,3,145,157,24,137,213,57,221,113,154,94,32,204,186,234,216,41,105,139,77,149,250,148,254,217,19,181,164,70,197,99,185,85,148,253,219,69,29,222,133,106,220,71,175,230,187,116,12,171,154,9,184,136,110,12,35,231,173,103,182,188,202,83,60,247,219,236,184,22,95,116,230,183,255,171,99,158,143,35,34,109,1,100,29,219,64,203,219,211,253,101,32,8,176,21,138,98,40,11,202,128,140,91,49,159,24,232,36,143,4,122,152,118,202,59,25,47,129,108,101,214,40,14,188,93,134,216,11,194,235,87,251,201,93,118,88,157,18,88,84,6,204,92,16,145,88,201,77,211,78,68,5,95,124,65,152,243,80,11,67,178,74,161,186,253,99,194,171,16,168,60,81,35,223,233,11,197,220,171,181,104,187,207,24,121,94,252,241,22,15
 ,182,15,88,105,100,220,107,70,67,184,137,239,230,105,67,88,69,96,22,72,68,237,130,98,141,246,4,29,126,5,196,126,12,58,102,164,117,217,192,226,235,103,12,179,38,123,48,100,64,169,183,104,130,244,50,164,207,145,229,169,82,81,32,217,152,131,174,174,204,253,107,166,16,228,197,70,156,235,150,202,73,151,225,92,40,109,108,68,31,152,91,59,213,105,71,233,1,72,231,108,200,192,156,60,195,138,28,29,196,108,143,136,248,106,92,124,158,163,198,55,97,202,244,37,70,84,224,208,177,254,52,193,166,105,217,233,29,29,30,205,193,177,165,69,212,252,108,14,146,8,12,24,202,168,32,235,16,65,221,160,33,59,197,85,98,218,125,177,106,19,195,66,135,21,94,44,190,243,170,107,19,194,65,25,196,44,101,44,246,73,86,29,187,198,242,208,177,55,93,210,21,136,242,18,152,169,192,162,162,29,48,105,176,214,144,181,166,173,230,132,109,59,208,187,177,87,178,211,12,182,35,31,47,174,95,104,56,192,205,73,123,23,64,58,5,66,160,213,253,230,181,34,41,149,9,70,23,158,75,46,15,192,201,203,184,69,73,213,244,221,119,0,154,75,215,27
 ,132,48,138,237,3,243,161,138,45,73,197,28,226,117,238,232,77,237,163,217,250,69,5,68,155,109,251,176,191,75,1,2,164,23,22,181,214,81,148,166,112,231,126,30,248,212,216,168,23,92,110,151,203,202,231,117,171,36,223,76,131,186,136,202,28,48,34,92,56,71,164,61,181,70,139,40,53,181,55,85,81,180,12,201,144,136,18,38,140,160,79,152,111,247,53,117,89,156,161,64,96,84,120,3,156,70,99,249,148,87,92,138,238,46,76,219,239,173,99,63,113,35,172,179,98,4,227,111,250,41,142,48,68,153,239,187,6,192,250,42,220,188,238,120,1,11,190,12,146,141,51,105,103,188,176,200,183,35,248,140,108,123,133,72,93,102,117,199,3,65,31,156,177,198,235,59,36,197,188,13,213,180,189,187,86,41,200,25,143,76,183,104,99,138,246,31,154,97,27,17,147,41,175,84,41,170,237,69,254,129,144,143,47,107,196,87,181,92,37,69,47,42,185,141,216,208,128,45,205,227,43,31,10,29,103,24,9,55,171,31,52,73,154,95,125,68,116,53,37,53,151,53,89,123,255,4,226,129,213,163,7,230,55,75,103,203,231,55,8,17,69,134,67,231,17,133,114,130,210,28,12
 7,143,81,107,56,116,42,172,117,118,79,51,93,22,128,27,115,86,192,35,23,132,87,135,169,97,27,77,209,176,74,9,98,115,15,203,189,54,118,72,200,129,254,116,195,142,231,9,173,230,198,244,119,193,67,82,209,73,163,249,81,23,210,230,202,114,79,7,155,202,203,72,111,221,228,0,222,243,224,1,62,205,84,98,13,30,238,31,206,46,108,252,152,159,108,49,128,41,87,147,124,200,253,206,249,194,53,72,245,76,194,40,223,26,68,59,70,88,184,24,120,143,185,47,201,170,165,208,66,94,169,31,156,107,224,72,254,160,23,93,144,176,144,250,93,141,139,158,111,92,233,69,148,18,180,239,116,80,127,36,89,38,198,80,42,68,157,88,99,205,101,142,103,70,49,115,42,63,65,243,228,236,197,115,163,90,244,139,114,147,72,105,186,231,235,215,163,196,41,97,92,101,119,3,172,76,18,164,239,14,143,132,15,51,143,152,125,219,140,27,113,166,144,255,79,132,113,110,184,42,136,71,185,213,51,50,222,105,60,249,29,99,38,130,151,86,39,213,66,209,157,16,194,235,146,182,207,219,28,233,134,35,190,22,109,154,204,113,69,104,24,73,204,34,81,49,45,7
 7,71,250,225,229,217,166,254,238,177,89,37,32,138,153,31,185,106,146,156,217,166,245,168,195,8,127,130,34,204,101,26,24,244,77,202,155,182,254,222,71,85,76,206,246,128,195,199,95,195,217,65,102,206,233,7,188,155,80,71,9,122,38,120,213,209,70,156,232,77,84,115,221,185,5,115,25,8,153,228,28,70,135,235,155,153,154,152,202,221,143,151,219,247,142,226,204,129,55,61,39,85,246,191,199,207,201,82,220,19,174,175,73,231,102,91,90,138,248,114,155,7,88,151,238,197,224,243,34,35,30,137,196,90,97,86,92,116,190,222,33,208,71,199,92,179,140,138,249,106,119,35,236,112,52,228,228,206,177,58,159,67,61,19,151,243,144,234,16,47,3,244,224,248,218,157,222,243,59,9,231,57,100,47,100,192,31,166,87,175,17,172,162,78,44,230,3,236,219,61,182,255,49,18,175,233,210,81,10,202,67,224,132,128,235,235,216,30,209,210,19,167,30,182,125,68,124,209,151,85,195,216,20,69,132,41,202,124,230,150,31,136,171,190,189,116,226,228,145,127,182,39,238,142,120,126,74,179,147,216,13,154,4,36,94,113,14,97,36,147,255,194,187,1
 49,55,95,140,113,228,7,116,245,160,46,61,72,168,105,246,39,194,179,73,9,234,144,64,61,52,202,100,197,245,186,132,112,117,144,184,80,12,17,222,37,234,252,208,133,129,58,188,44,50,72,166,186,87,167,91,47,215,65,96,19,205,129,221,140,107,134,250,217,121,201,208,176,13,142,65,168,39,20,29,64,28,203,175,248,53,124,217,42,163,104,159,115,107,241,101,204,7,253,120,65,63,73,246,50,0,78,83,10,57,6,26,97,78,126,145,113,214,84,70,69,28,172,136,64,63,147,154,9,221,62,213,136,163,232,49,64,145,7,183,45,171,43,145,129,228,131,184,128,86,30,176,137,82,8,153,215,184,239,165,2,73,11,153,78,85,84,242,76,121,113,162,88,219,62,199,166,134,188,107,144,162,143,159,222,65,43,166,242,204,241,161,245,207,242,248,11,181,137,116,59,187,33,14,97,99,178,60,199,212,9,86,98,205,105,203,225,43,120,176,136,78,225,74,92,159,140,36,224,195,247,179,151,253,151,176,142,101,204,50,148,96,131,167,141,92,23,203,135,30,72,53,182,154,200,175,128,61,129,23,163,198,234,144,51,0,87,200,161,136,3,74,51,46,139,185,117,12
 4,118,224,69,23,175,99,41,83,241,46,207,160,216,220,113,118,204,135,32,169,141,247,163,204,189,136,155,168,143,107,173,161,30,225,90,93,249,23,216,126,226,180,142,78,145,48,20,225,157,144,204,138,206,4,0,140,103,65,25,100,62,55,11,3,84,42,202,126,36,35,198,203,99,65,251,53,52,143,130,29,115,142,207,174,245,164,232,120,233,156,245,192,152,190,128,6,19,38,35,37,200,251,124,230,157,72,123,169,26,65,242,85,188,234,36,41,101,21,35,191,152,205,22,202,117,181,26,186,193,136,132,1,129,33,228,179,163,244,74,195,189,144,56,112,1,8,148,245,232,192,117,156,219,55,25,85,136,223,175,190,143,231,41,67,73,150,16,99,4,145,185,158,63,94,103,236,91,187,219,181,193,54,45,192,198,61,64,115,21,105,93,141,31,162,255,221,146,8,62,129,144,5,104,131,223,187,19,197,71,230,108,233,37,39,172,85,107,38,150,65,120,104,212,198,244,139,43,252,40,43,61,50,9,28,209,169,66,242,30,110,60,173,95,221,216,95,73,116,82,145,231,73,143,183,39,92,221,122,243,219,64,221,19,3,218,36,201,225,63,247,72,115,222,84,48,179,2
 25,34,236,68,81,182,214,78,214,34,121,107,102,239,81,138,229,109,169,211,33,3,59,190,48,145,142,44,185,132,228,57,131,235,183,6,164,127,134,36,226,182,26,251,162,121,169,90,76,242,46,128,90,96,140,48,62,183,125,193,148,80,95,102,250,198,164,14,36,111,126,66,208,25,12,231,117,186,150,48,40,42,234,12,47,77,253,15,79,33,3,231,50,171,41,4,197,100,150,46,104,185,202,18,93,61,15,5,26,250,96,78,189,25,194,26,130,157,143,19,176,141,99,96,204,253,117,42,193,22,219,244,236,25,245,229,4,229,205,218,19,40,149,106,231,249,52,121,61,54,190,181,127,154,105,126,1,148,90,174,200,13,114,193,55,97,22,145,148,254,43,122,144,13,181,176,126,96,122,80,193,164,30,3,63,166,136,232,194,119,185,240,48,61,113,121,38,161,187,160,245,228,71,249,158,106,184,248,10,49,172,195,131,49,14,250,153,46,141,72,9,245,141,36,107,238,34,128,69,217,110,170,254,54,85,114,54,86,46,83,14,9,83,181,157,13,135,248,255,179,103,188,43,250,30,243,156,156,33,168,213,119,101,193,143,215,40,92,1,200,221,81,32,188,69,182,159,55,5
 ,249,74,130,251,72,54,205,44,189,0,20,26,165,230,232,130,18,156,185,103,31,227,69,102,129,63,228,63,33,22,4,71,245,133,54,84,118,205,75,14,14,172,125,199,127,107,197,220,90,154,232,68,186,33,253,0,251,80,9,14,0,91,104,131,71,91,49,224,130,209,114,28,109,161,123,228,233,245,61,139,240,71,128,197,184,41,9,149,255,149,33,215,140,57,84,150,175,6,205,56,246,54,21,16,138,108,5,107,103,7,101,146,168,135,31,0,170,51,59,251,53,85,226,136,190,136,86,108,182,29,221,109,117,199,153,242,226,17,12,31,155,181,135,193,144,149,13,140,181,207,138,27,126,236,232,125,241,90,230,237,222,208,67,133,212,163,42,79,224,141,201,0,14,139,251,75,217,254,48,50,94,32,10,219,128,51,47,155,197,104,240,135,134,131,244,141,140,12,189,164,88,69,197,228,15,124,144,126,195,225,26,228,87,81,210,130,195,122,99,43,40,57,234,157,4,98,74,198,97,133,202,196,143,170,190,6,3,139,63,188,142,107,236,8,221,67,186,233,65,58,32,224,253,17,183,76,35,208,110,241,218,238,23,11,91,116,201,55,213,214,197,222,63,176,92,60,233,87,
 121,12,48,230,102,163,131,14,120,173,122,78,194,253,122,13,243,167,127,50,6,139,66,3,151,76,87,237,24,229,110,175,208,8,213,121,118,31,28,185,232,2,207,106,32,160,17,149,101,61,107,248,104,147,45,97,217,35,192,249,6,204,68,70,13,166,181,231,74,147,62,124,104,182,90,231,4,19,7,73,88,134,250,167,114,19,59,224,179,197,172,152,55,132,67,44,193,189,242,119,254,95,23,1,87,74,73,79,208,161,123,119,128,197,147,160,7,123,27,27,102,94,108,66,101,15,219,126,255,112,40,179,52,129,6,240,216,116,12,176,135,45,199,137,46,178,135,40,228,29,138,77,84,129,147,174,53,227,92,93,247,46,172,72,251,240,7,98,152,183,192,67,145,22,144,224,163,216,35,156,68,8,196,134,193,228,167,147,103,32,19,113,171,62,4,67,160,72,253,135,101,237,157,186,56,205,6,109,199,204,219,165,235,124,173,253,45,4,112,98,0,208,7,157,117,58,106,180,115,227,143,142,166,171,193,222,170,168,178,49,183,253,185,253,12,225,90,186,203,83,38,137,204,250,234,10,90,91,163,176,213,57,192,54,77,109,183,243,104,6,253,60,164,44,123,119,233,8
 7,152,116,222,86,146,26,160,162,196,11,35,193,153,99,177,187,4,154,15,125,54,140,221,80,166,99,142,178,125,87,138,181,57,157,23,103,125,37,87,193,105,70,46,39,156,53,69,66,159,254,95,59,31,172,168,141,93,186,235,1,158,159,147,92,192,42,113,89,182,25,91,111,160,194,184,173,143,155,127,87,234,112,146,163,83,248,115,30,210,35,220,103,215,225,251,206,199,219,150,69,171,195,120,34,237,150,92,155,140,222,15,115,216,218,63,109,37,114,216,89,191,238,153,211,67,36,91,211,54,134,182,63,65,65,162,192,55,195,119,93,189,147,231,233,137,132,89,24,235,127,109,65,154,167,178,156,13,169,61,170,5,99,237,191,205,147,98,213,135,69,182,82,14,236,246,141,238,145,146,70,186,167,219,236,254,206,153,122,251,1,143,224,149,88,204,82,238,129,84,209,88,142,89,36,61,146,246,228,189,140,212,88,183,214,168,33,216,35,48,12,221,23,170,245,94,143,42,127,138,136,166,248,6,62,26,117,229,33,123,211,135,104,241,16,188,141,149,218,197,252,246,205,148,215,234,89,210,221,55,65,142,39,98,191,21,212,232,199,32,125,107
 ,26,95,186,10,100,175,65,249,209,214,216,128,203,105,89,131,86,61,171,245,200,154,156,237,127,85,115,160,209,217,93,103,178,46,242,140,170,156,203,73,183,253,115,162,192,123,97,194,192,251,14,45,242,99,125,221,62,148,81,3,162,220,239,124,237,181,111,222,1,5,96,241,190,202,93,62,119,179,128,172,209,117,254,201,191,242,115,214,116,221,118,202,11,239,169,182,209,136,15,151,49,10,75,110,240,158,93,44,70,17,114,202,86,167,157,215,25,167,224,192,142,24,203,192,55,167,112,101,217,252,129,11,59,131,245,28,70,144,24,147,107,62,141,179,170,204,68,190,63,132,251,9,209,169,160,178,132,65,40,78,224,112,235,242,250,90,205,199,224,56,33,27,1,25,158,72,24,107,216,182,116,228,94,196,186,130,248,53,174,220,56,236,141,147,207,20,140,119,248,154,146,213,2,79,12,37,131,217,185,115,130,192,208,44,20,230,48,69,206,145,13,148,26,147,148,238,127,73,186,79,79,34,65,59,35,245,216,206,222,80,114,117,116,130,131,104,39,216,155,198,172,122,205,96,229,169,11,136,75,196,98,127,18,236,31,250,181,176,168,181
 ,129,34,102,159,144,124,106,233,1,210,30,56,45,193,131,159,20,108,93,252,152,225,135,84,108,218,53,28,240,131,148,83,200,178,145,195,109,95,80,158,164,8,178,61,104,77,185,111,189,74,44,232,207,126,94,212,194,104,186,238,210,92,38,151,83,102,205,208,200,252,243,163,158,75,113,145,140,171,183,16,228,238,163,123,225,153,179,140,55,202,174,185,214,144,142,56,136,244,150,166,162,72,21,94,173,82,227,59,86,97,104,58,196,231,5,240,236,2,164,72,153,172,207,99,119,160,27,144,104,95,173,167,243,152,64,121,217,82,147,219,40,47,196,178,211,99,146,233,161,82,154,237,160,206,85,147,101,157,108,254,210,165,50,124,240,178,211,186,43,122,187,219,51,85,161,147,159,183,106,170,199,149,65,209,170,41,231,251,91,187,45,137,172,93,79,175,46,167,142,221,177,37,40,201,78,54,31,52,148,185,191,19,3,130,135,89,60,122,144,86,65,37,39,73,161,93,158,26,12,222,253,134,61,82,226,57,202,119,9,133,0,231,17,23,172,130,56,76,89,179,113,116,132,189,141,107,1,188,127,7,125,201,125,245,219,225,114,79,103,176,172,18
 4,71,72,6,85,129,42,175,243,249,161,205,114,20,136,217,68,92,185,157,130,239,27,42,65,194,185,55,194,41,46,169,227,242,62,106,117,114,235,69,186,25,147,115,170,89,98,0,109,42,70,145,179,55,223,160,122,103,134,226,100,198,205,85,102,11,111,79,161,80,172,184,20,127,222,5,235,150,216,88,220,9,65,157,133,183,9,245,240,59,40,234,209,63,166,132,114,128,51,136,160,247,218,41,121,239,196,96,244,168,174,229,152,46,143,11,97,5,210,150,27,97,146,74,47,165,225,115,171,67,24,57,140,235,147,196,135,197,77,132,43,212,160,138,230,194,127,170,132,219,162,189,38,195,216,241,44,93,96,43,166,191,13,95,113,80,106,65,115,72,202,194,40,188,197,66,124,99,159,140,145,193,60,142,217,46,40,172,81,199,112,97,135,146,107,109,248,86,237,119,98,222,26,18,226,177,151,98,233,92,93,65,174,247,251,133,249,36,21,21,193,159,71,65,244,56,117,159,118,141,208,243,226,3,168,75,131,22,34,109,101,92,237,123,62,178,185,187,19,223,117,161,129,128,103,75,229,181,114,183,24,124,13,182,92,153,133,227,180,48,249,178,253,23
 9,153,101,157,115,32,101,122,111,205,189,103,209,216,2,197,218,57,33,57,75,171,31,54,183,135,98,30,133,45,82,131,196,178,43,75,78,87,114,213,173,202,197,104,81,135,7,132,20,213,170,109,161,110,93,250,177,175,18,253,85,149,63,82,251,63,221,3,252,184,136,94,107,43,82,53,253,9,120,142,185,181,236,92,182,232,210,179,179,158,222,154,230,191,24,95,178,10,74,24,247,114,174,233,37,202,15,92,241,55,221,232,71,249,192,170,106,105,176,42,42,23,160,37,213,156,82,77,78,85,216,215,17,224,241,226,227,218,171,81,166,165,132,189,158,33,220,144,74,210,141,87,49,152,33,223,149,72,13,9,133,230,103,94,74,226,169,16,156,6,163,173,123,18,208,208,106,81,67,94,11,33,97,70,132,66,9,226,164,188,160,245,195,169,180,66,193,103,171,229,224,161,113,127,192,159,115,206,96,109,151,78,11,240,223,128,67,33,184,152,188,244,220,17,90,141,53,63,80,229,216,131,2,69,255,30,145,75,125,27,163,169,125,247,35,2,239,18,29,147,205,119,108,192,109,222,28,84,6,202,169,128,139,42,6,206,192,252,206,25,38,63,17,146,240,155,1
 82,188,255,14,181,179,229,226,220,100,151,18,87,105,139,199,159,190,113,84,113,223,48,192,202,46,24,145,180,51,69,128,70,224,245,35,98,192,47,73,203,77,78,37,187,34,165,203,46,221,231,150,111,157,253,49,120,211,71,165,74,32,88,97,111,207,228,242,16,121,21,217,104,56,226,151,123,48,128,136,21,125,79,93,132,24,242,26,13,120,245,89,251,195,125,54,98,89,174,81,127,64,38,175,32,180,125,156,105,149,142,115,233,49,253,166,201,146,94,103,164,193,103,43,227,73,131,128,65,247,218,119,168,191,244,189,29,97,162,195,185,158,172,110,105,172,44,237,36,122,220,2,97,55,48,68,80,81,209,253,222,64,180,236,190,150,174,16,201,32,199,179,9,238,2,52,135,248,168,250,148,179,83,59,119,112,249,133,47,21,92,99,89,109,109,142,88,187,207,97,64,213,144,228,170,66,225,34,201,180,92,57,195,252,25,250,223,255,107,78,169,36,21,22,94,179,137,158,161,212,150,145,205,122,184,23,192,140,45,62,80,37,110,203,180,185,60,94,50,153,222,2,197,31,117,166,206,215,119,86,202,47,17,191,7,69,65,20,124,92,65,236,61,209,131,
 143,60,218,70,14,93,211,21,14,76,123,18,128,166,248,213,114,123,70,169,136,175,218,255,91,231,173,223,203,208,127,243,128,160,91,50,249,236,171,117,37,77,105,193,122,119,49,7,77,50,65,33,252,77,195,190,126,18,142,92,35,138,71,60,175,136,234,255,87,11,119,77,92,245,244,14,142,110,105,236,201,175,153,34,73,215,164,82,78,122,128,0,219,65,209,73,4,87,1,118,195,241,119,209,119,99,158,147,114,77,82,123,158,53,48,192,12,64,144,96,226,112,112,116,136,194,33,66,88,224,133,54,8,63,195,52,188,140,129,138,36,106,60,61,79,64,175,53,115,11,74,169,203,0,24,119,48,98,211,54,221,181,85,231,120,160,114,208,58,38,64,209,81,108,18,109,162,192,251,167,246,22,78,222,89,138,120,22,32,247,50,137,28,135,75,122,183,158,62,249,15,142,91,172,211,90,71,159,73,252,112,6,227,217,238,202,54,128,79,249,25,249,37,93,143,224,52,62,159,185,187,6,51,19,252,207,118,218,160,0,48,41,203,6,60,181,193,33,241,53,104,136,80,129,108,26,135,218,41,41,7,33,65,217,104,229,65,89,138,237,49,166,246,250,11,14,135,142,9,8,136
 ,9,74,56,49,158,193,163,184,212,2,146,58,75,187,157,135,42,105,18,42,40,233,234,195,83,238,14,139,126,77,160,239,63,65,17,88,80,109,51,25,98,85,52,86,25,71,27,182,254,38,213,132,231,22,254,178,162,67,220,234,246,103,243,207,193,43,8,108,27,89,152,126,191,73,53,194,214,96,120,198,188,231,120,233,138,221,85,230,14,152,166,186,73,254,161,161,233,250,99,93,62,1,67,115,224,107,195,123,165,233,128,2,127,135,120,59,164,50,29,9,181,139,215,59,67,125,223,242,1,156,109,60,235,59,210,56,127,77,13,16,214,168,191,61,38,249,206,28,230,116,135,49,210,29,76,134,131,126,173,190,39,10,91,200,221,191,39,182,231,54,108,53,193,144,124,95,182,47,156,43,160,24,29,211,171,26,17,86,95,44,123,224,6,135,68,244,69,195,106,249,45,65,55,3,67,206,245,6,81,248,100,53,171,23,33,172,197,181,134,82,114,117,254,144,171,100,214,232,98,76,88,173,237,156,69,185,59,165,0,200,254,213,212,92,128,214,22,5,244,127,237,198,16,49,136,180,146,37,2,88,7,7,139,28,35,10,244,97,161,54,61,81,249,55,146,68,216,77,44,162,131,20
 9,193,177,251,78,135,175,131,64,74,191,52,27,73,16,29,104,142,52,159,102,17,52,130,131,141,194,205,238,119,155,131,146,87,15,106,216,190,31,35,63,42,149,221,13,140,177,57,40,127,244,59,132,211,44,255,163,12,230,121,153,112,176,214,224,80,63,48,38,142,73,116,32,131,56,80,125,40,34,177,41,219,68,213,116,61,141,68,92,102,204,184,95,184,44,172,166,176,72,80,21,60,80,36,191,41,41,58,151,195,117,13,236,145,182,28,158,19,53,10,252,182,138,202,36,231,180,242,239,97,133,182,193,85,6,116,236,46,88,220,171,224,13,33,115,220,81,32,215,180,155,206,146,108,212,18,210,151,16,200,103,34,141,176,19,6,72,175,197,226,117,129,176,147,119,50,63,94,96,108,202,222,122,208,152,99,119,112,187,241,238,110,220,11,5,151,213,76,89,57,214,162,91,125,121,170,59,67,201,27,90,94,7,203,139,133,187,208,93,181,216,134,223,157,245,196,147,142,111,57,129,54,237,128,46,14,203,42,101,150,103,103,1,127,244,180,157,61,212,166,61,197,33,250,194,208,229,162,249,5,15,19,51,60,143,212,133,6,101,220,165,26,53,95,38,112,1
 0,142,21,2,159,10,187,209,76,191,202,220,41,209,218,13,117,16,142,54,33,169,128,2,89,100,196,6,175,89,242,197,104,77,85,163,23,35,178,121,239,215,96,24,18,30,167,73,84,167,5,75,138,85,175,76,115,250,26,240,90,229,41,151,205,42,147,238,95,19,240,140,157,159,149,79,102,246,82,115,5,150,187,178,160,157,43,43,5,55,233,229,229,252,65,7,38,44,173,201,207,51,97,232,131,29,11,233,44,132,250,144,243,173,129,158,216,224,24,214,139,212,127,114,40,49,193,202,76,178,130,163,227,220,225,213,79,3,110,9,38,70,195,78,58,124,180,250,236,180,48,45,65,186,182,227,14,50,125,64,98,25,116,91,220,238,221,158,125,241,200,197,247,20,95,126,174,18,147,27,141,183,139,86,143,164,235,212,177,218,25,41,149,165,148,101,19,209,198,226,173,161,231,119,62,69,165,217,92,72,112,245,252,211,209,170,165,194,189,181,100,223,4,182,155,19,151,241,102,73,35,88,51,79,150,120,122,234,51,146,167,205,41,136,203,251,195,72,106,97,165,81,13,232,58,115,162,211,222,125,89,186,151,69,7,71,57,166,115,19,146,223,177,54,103,211,
 189,223,48,233,154,125,10,181,0,178,223,209,99,64,23,185,233,105,110,192,244,212,61,22,103,239,241,68,24,251,232,42,152,79,54,237,17,177,122,35,116,108,180,64,76,138,237,128,243,90,21,208,38,132,231,183,113,111,232,206,186,88,252,36,20,16,125,219,71,36,14,5,228,132,170,96,24,252,255,136,113,232,79,194,182,237,6,153,222,86,209,64,129,122,81,229,29,71,63,53,239,137,56,140,223,42,73,125,113,163,249,190,61,111,53,197,193,82,216,227,135,84,154,121,143,179,15,192,123,186,90,217,113,69,227,44,67,217,186,244,235,0,232,70,218,141,14,248,89,219,80,201,15,145,182,188,66,204,106,137,179,100,109,174,231,91,10,191,100,14,187,33,201,214,170,251,4,90,40,70,55,112,76,1,148,178,224,230,45,125,111,24,39,103,12,6,241,225,181,211,82,58,175,87,189,184,100,190,56,22,85,90,237,243,83,233,165,64,245,249,148,152,165,144,89,59,6,13,30,97,38,14,227,88,94,239,75,201,120,52,27,150,247,255,103,182,7,52,226,76,183,14,124,139,127,73,36,94,213,30,19,250,53,206,31,4,96,14,166,52,226,25,143,17,184,186,249,31,2
 25,131,195,253,143,82,145,184,127,60,123,62,116,39,37,30,97,156,180,191,139,140,6,74,65,195,25,5,103,116,164,159,94,194,29,86,222,41,236,198,149,229,106,210,253,216,146,254,75,94,88,74,78,135,137,206,250,51,137,44,92,100,225,182,126,34,140,179,152,221,188,98,134,231,32,110,165,175,186,154,248,62,59,131,189,138,49,115,182,243,181,199,168,87,115,83,102,221,139,100,155,95,18,116,163,97,6,119,93,11,177,147,217,113,0,18,143,34,147,117,58,214,122,252,43,90,128,76,44,162,76,2,18,217,47,85,160,62,231,215,200,57,125,255,91,177,195,243,48,144,35,7,43,69,114,230,5,131,236,21,125,30,251,182,35,57,90,118,118,128,193,37,226,41,180,127,22,141,254,162,47,17,184,220,119,153,89,156,60,45,158,167,255,239,58,106,236,207,201,168,27,24,131,108,77,214,87,54,101,220,87,2,213,179,4,17,221,26,104,236,199,22,35,170,80,207,233,104,114,248,24,57,65,217,165,142,9,120,77,167,165,170,176,212,28,53,203,24,249,70,164,249,5,192,111,156,70,244,78,19,27,111,98,75,41,118,156,103,254,121,128,126,188,83,183,212,11
 0,187,221,164,73,42,94,194,89,210,34,102,8,222,201,25,126,104,227,1,9,231,156,61,198,70,165,47,154,35,159,155,66,179,106,214,52,13,129,36,85,166,47,107,198,216,70,232,186,0,111,192,12,73,28,89,224,25,129,112,215,56,17,84,118,82,222,224,82,173,14,103,88,48,26,223,24,209,141,241,237,140,239,96,63,236,124,253,77,54,229,86,86,248,130,169,194,11,150,170,164,234,248,27,255,175,46,246,81,4,46,128,232,43,142,192,84,145,209,23,175,212,3,179,37,245,209,54,123,34,151,135,5,218,187,236,24,14,153,127,127,24,140,83,84,86,50,29,243,202,58,233,160,254,140,23,134,194,43,59,138,65,192,70,12,192,203,23,215,73,42,172,9,68,124,8,243,201,202,167,250,64,182,74,70,109,250,80,242,98,53,116,173,131,50,51,104,66,242,160,41,118,235,221,249,59,226,108,54,153,230,25,254,135,255,198,234,78,38,127,26,10,21,131,247,138,220,14,27,11,216,159,127,20,5,34,40,212,23,215,175,209,93,21,207,74,211,167,158,120,53,139,48,100,82,179,150,175,84,138,31,58,142,234,125,160,158,127,9,234,13,209,2,238,35,58,250,111,166,36,9
 7,186,232,218,120,173,202,114,118,64,232,157,119,243,181,166,1,37,15,225,154,193,47,252,169,6,177,71,33,146,104,149,43,93,75,153,253,21,213,29,102,122,29,124,82,48,164,65,203,214,52,175,28,93,49,194,129,167,94,189,174,223,26,156,7,191,147,33,135,173,136,150,10,230,115,197,87,224,153,106,16,127,232,69,195,57,111,41,246,47,75,14,171,79,152,201,191,163,177,24,186,143,45,211,60,150,116,225,214,168,135,254,187,42,15,214,58,160,194,9,136,113,249,75,63,41,88,173,19,178,159,43,73,180,220,72,30,24,242,186,93,21,112,161,31,164,32,234,176,78,26,170,5,124,14,151,68,120,65,4,183,197,87,95,185,13,111,65,140,17,30,83,87,233,178,128,70,187,88,242,41,50,62,125,245,184,114,97,174,226,50,3,17,12,12,241,143,61,46,242,36,148,24,33,131,92,52,195,227,177,254,80,250,53,54,50,144,229,173,41,232,61,190,17,208,158,120,12,132,142,189,89,98,67,98,34,99,209,72,178,111,234,236,19,89,121,144,43,164,105,89,50,2,92,167,128,142,147,153,70,192,169,146,37,42,55,14,170,26,94,155,98,9,155,86,140,58,194,171,72,171
 ,163,204,230,162,134,76,255,228,34,163,34,30,242,201,167,16,11,111,213,73,41,67,141,232,60,104,114,7,164,72,193,11,113,164,121,131,227,66,252,50,88,11,119,240,133,152,138,35,16,83,186,196,138,77,5,244,251,134,33,7,187,87,85,46,243,47,2,10,163,49,16,121,128,108,90,168,216,142,77,240,106,136,171,72,1,128,179,54,122,168,151,239,138,8,73,251,173,137,212,42,139,143,153,227,108,100,4,64,241,85,162,40,227,242,254,125,197,123,124,246,148,85,217,79,51,44,156,120,183,6,253,132,134,251,9,1,244,110,176,134,134,81,141,198,166,232,14,158,26,153,234,131,30,178,106,68,1,174,59,11,113,117,41,249,165,245,22,159,66,52,207,190,116,154,89,222,171,144,217,86,81,139,244,103,17,161,49,204,81,144,122,50,196,248,11,248,121,64,87,95,4,105,197,33,125,91,104,182,12,105,1,223,155,165,72,24,52,59,200,74,237,100,3,233,160,101,25,155,71,117,191,64,146,137,219,154,105,134,108,162,255,249,101,124,239,40,155,184,230,44,61,51,201,172,147,13,66,133,7,130,240,230,78,206,79,117,129,184,228,255,35,36,37,199,55,39,1
 09,211,43,209,6,69,20,131,173,215,145,157,201,237,189,202,168,233,173,115,220,187,201,41,59,216,14,248,163,152,237,110,213,194,78,190,30,96,22,0,166,146,154,132,232,113,103,210,153,58,7,158,127,214,217,195,151,189,39,84,191,148,190,124,68,144,157,50,138,164,96,120,73,79,170,50,129,71,99,247,79,141,247,46,196,211,230,94,7,98,139,151,34,104,75,246,116,239,57,242,95,155,218,79,37,46,115,82,3,39,9,40,52,239,253,252,218,9,133,29,86,3,189,97,122,139,201,173,122,133,29,184,208,167,147,28,159,210,229,139,135,30,174,44,38,138,210,182,217,182,210,250,23,123,10,8,61,189,231,130,82,195,132,54,87,243,85,247,159,96,145,125,195,163,61,151,71,64,121,90,14,124,219,97,182,92,54,115,240,143,15,133,212,46,225,120,129,135,153,212,168,20,31,6,172,125,168,130,135,20,38,183,193,16,83,157,155,41,73,0,114,47,58,77,110,107,51,121,254,165,206,202,197,171,142,181,20,151,164,208,64,71,179,139,123,249,166,132,226,51,245,6,232,100,42,157,225,162,19,10,252,18,63,248,84,115,210,239,191,161,241,213,91,242,115
 ,52,169,228,77,65,148,243,32,7,84,182,83,43,186,113,126,248,239,228,111,200,125,225,92,166,2,25,211,197,225,89,33,131,244,13,60,60,255,36,26,119,202,63,36,178,162,58,76,35,82,66,92,33,188,207,115,182,105,128,167,94,206,142,24,206,72,135,183,207,38,125,153,203,69,252,239,167,85,254,115,46,44,246,181,97,71,133,221,73,182,179,134,88,72,135,91,35,120,141,16,43,141,45,35,178,120,47,246,28,76,83,52,20,78,210,104,28,34,245,170,105,124,68,115,193,71,29,199,148,207,192,155,251,233,81,250,216,116,194,35,16,135,235,36,138,42,124,242,240,234,199,10,185,139,67,207,115,126,30,66,181,115,65,82,205,110,224,55,239,79,156,84,18,94,234,94,202,65,22,166,159,209,245,186,237,231,227,171,210,70,114,20,19,29,83,88,170,7,83,130,232,182,102,45,149,51,218,233,217,47,210,187,179,66,119,98,221,240,254,34,187,196,6,136,166,93,34,36,190,153,114,160,5,228,21,139,24,12,210,229,243,194,129,71,114,251,176,43,186,93,190,111,145,197,27,249,9,32,180,246,245,131,246,230,207,120,35,156,234,20,75,103,134,154,145,25
 5,34,10,104,88,250,179,67,180,155,191,201,26,13,78,1,64,35,235,232,230,251,50,184,238,236,233,85,21,91,17,205,168,11,97,113,225,99,243,113,137,74,235,60,195,42,188,112,121,180,12,164,202,167,0,40,244,182,179,94,111,206,216,85,78,28,125,171,148,87,157,96,197,18,151,125,101,114,133,241,83,13,246,150,143,14,137,110,233,29,255,52,241,67,18,245,41,28,133,154,208,108,43,206,187,184,30,0,170,249,168,242,230,68,58,217,11,26,18,1,29,7,234,167,240,227,26,189,126,213,116,33,107,252,216,182,190,161,192,52,214,0,82,29,168,43,185,85,39,223,185,230,249,151,185,142,224,176,193,196,235,116,124,84,204,205,149,148,181,222,92,232,91,163,170,80,70,199,77,253,226,203,16,97,213,88,103,173,120,241,97,249,183,66,162,3,62,252,180,124,124,150,51,38,107,33,211,113,114,201,140,187,160,249,186,24,45,124,41,246,117,126,97,12,92,187,255,122,42,40,198,69,57,188,37,192,109,222,212,84,123,45,156,189,182,241,142,5,143,33,17,81,13,253,212,30,172,47,47,81,248,98,241,14,244,36,26,232,44,109,134,128,217,119,113,22
 7,231,138,9,175,77,176,74,213,176,46,118,80,137,188,210,99,94,118,51,241,156,110,114,192,216,122,186,148,194,91,254,146,192,185,126,150,82,221,161,113,231,74,105,131,123,88,15,203,89,183,255,130,224,6,70,52,238,244,1,71,218,32,52,75,29,31,108,162,31,213,87,228,144,105,80,125,211,61,144,26,206,5,75,76,88,166,175,33,241,37,59,27,147,239,236,89,13,186,16,103,226,147,27,180,10,31,16,89,143,20,200,199,127,58,4,68,104,143,229,201,43,179,87,121,160,225,128,19,48,143,69,184,67,238,143,163,255,86,13,85,55,79,215,233,95,149,31,176,243,116,194,22,240,80,138,48,245,164,190,182,80,209,186,114,195,26,215,183,198,107,58,195,116,12,44,70,108,178,16,104,160,234,92,116,99,202,160,184,97,246,14,64,152,30,71,126,65,217,184,224,124,13,131,61,76,49,206,113,152,118,22,217,64,160,116,93,40,32,100,198,102,111,193,114,118,167,211,179,144,50,111,210,224,177,234,105,255,32,153,140,128,177,87,215,19,112,80,220,99,180,31,194,166,197,25,225,15,122,43,225,81,210,239,52,45,35,165,196,134,139,109,14,194,138,
 70,55,218,195,178,46,44,119,180,57,171,222,108,24,180,199,35,150,153,92,169,95,233,12,228,214,49,243,89,78,243,38,205,140,186,205,192,100,209,147,37,130,251,217,41,229,72,39,103,150,36,37,148,130,195,98,254,164,92,13,250,110,245,44,108,66,94,74,127,186,164,8,249,165,19,34,0,202,9,107,21,89,89,188,244,14,61,37,29,218,36,217,10,166,236,41,51,97,198,67,16,124,8,61,210,102,124,38,100,102,1,130,237,147,105,179,8,230,182,201,135,233,20,252,169,166,33,2,214,172,139,114,36,21,106,213,157,98,136,131,141,210,181,133,169,162,180,81,169,130,51,79,143,198,207,181,52,99,127,238,128,17,224,34,99,230,214,126,126,82,43,98,197,92,232,198,67,147,21,24,32,208,252,50,158,207,141,43,205,23,92,68,126,198,32,167,235,92,196,230,89,47,227,182,94,39,151,48,149,187,74,241,154,98,120,218,187,27,85,39,123,83,30,156,148,245,78,55,95,84,80,59,130,221,252,16,78,52,72,51,117,35,221,21,98,251,150,4,157,39,222,249,30,101,107,83,255,219,11,101,180,229,213,154,209,83,129,95,251,214,128,145,205,92,253,185,204,244
 ,145,176,24,208,176,243,41,21,23,71,84,202,149,211,56,19,188,129,252,222,52,163,178,195,229,1,168,184,108,37,71,145,56,93,86,120,152,63,227,226,147,169,177,93,21,31,218,157,95,236,6,45,112,123,53,161,223,30,43,236,52,206,49,35,159,225,183,31,7,169,148,147,28,204,225,10,62,145,167,224,154,65,155,226,19,17,54,25,134,87,147,160,90,31,8,100,227,181,10,130,115,225,115,176,76,227,188,47,169,11,17,244,116,91,114,114,233,150,162,188,141,249,239,20,138,149,241,87,125,243,96,41,223,83,64,219,165,143,45,183,110,247,217,114,79,21,11,99,10,198,158,252,75,32,198,72,45,18,60,83,212,137,140,165,32,145,47,25,107,59,223,60,208,87,51,142,27,15,225,82,71,61,112,30,14,68,166,115,114,181,239,4,113,122,213,135,129,33,218,31,51,204,236,53,226,169,162,194,241,85,106,245,67,50,97,141,13,63,181,71,55,132,115,9,69,44,208,150,192,157,120,138,218,188,27,149,135,5,99,203,69,13,80,127,136,131,126,21,21,252,232,18,251,66,161,172,21,121,113,69,53,177,235,87,46,173,247,4,165,93,73,23,130,6,83,186,132,37,139,2
 3,82,107,71,194,148,227,45,109,45,52,236,242,113,135,95,144,57,85,214,68,228,15,11,96,71,177,217,188,251,134,106,71,107,211,215,157,81,128,62,5,111,234,59,138,214,175,127,105,104,162,118,238,34,220,49,200,250,80,11,59,164,138,11,195,181,242,40,218,68,69,132,119,155,9,204,214,157,144,120,35,42,16,62,112,153,6,39,241,24,216,13,185,189,75,47,8,105,118,71,152,178,93,237,16,56,223,66,46,140,33,196,175,44,114,241,138,8,50,27,180,64,148,39,162,12,183,88,253,255,116,76,76,31,232,238,174,142,222,93,191,4,255,41,95,157,179,8,12,238,80,126,138,108,155,218,217,1,59,36,242,62,250,87,230,90,227,225,22,243,121,146,175,160,45,167,158,238,228,35,68,213,90,4,24,241,113,210,27,190,88,95,44,194,218,193,220,88,94,100,86,195,168,35,177,57,94,127,112,240,125,162,120,221,89,241,137,122,45,51,231,140,208,170,117,144,192,40,25,51,201,60,203,26,80,244,108,174,123,12,43,85,104,93,32,115,187,241,199,244,88,147,87,7,99,104,196,201,89,123,142,137,110,236,42,253,176,130,60,184,15,208,198,202,3,99,110,180,1
 61,200,203,173,47,100,124,102,184,192,53,18,123,147,51,105,227,145,158,164,151,45,244,180,125,54,194,203,235,209,104,72,136,171,147,74,72,254,35,183,26,64,2,144,81,223,67,184,244,201,211,141,76,135,143,161,237,14,244,149,251,122,73,205,27,239,3,156,200,38,37,62,157,220,163,112,92,36,119,65,108,185,55,249,10,208,134,178,101,57,212,203,199,63,56,207,33,173,43,34,22,102,12,114,154,76,95,134,239,169,235,127,62,82,188,222,129,12,221,125,48,234,225,153,122,5,6,146,207,12,249,29,226,216,120,224,166,200,174,47,55,45,6,149,250,160,120,252,188,8,225,213,21,88,167,92,225,190,136,170,143,93,24,115,7,254,205,77,115,231,148,129,99,240,90,214,206,191,44,241,142,103,60,175,139,0,27,251,160,191,57,46,92,173,215,191,141,247,49,49,181,113,141,159,196,203,86,87,230,92,52,89,89,99,231,199,195,119,168,224,46,239,238,249,124,32,231,83,26,35,103,87,12,200,77,2,118,60,67,73,89,130,133,252,191,111,204,185,24,84,154,47,209,5,19,186,42,128,2,100,234,155,227,65,8,106,185,243,111,244,181,30,226,142,230,1
 70,67,191,181,116,4,180,42,120,121,245,157,187,0,190,71,245,135,244,229,1,201,246,100,106,234,65,235,87,211,88,9,251,96,49,137,217,101,231,170,19,226,62,149,245,76,168,110,126,3,22,146,81,237,75,116,110,126,100,1,81,11,170,59,210,212,46,33,102,151,172,166,160,122,168,26,20,59,69,92,166,90,253,206,52,22,43,112,59,43,136,121,28,109,97,127,217,183,130,5,18,60,102,253,201,159,113,158,167,244,171,68,170,53,198,55,64,217,136,21,143,160,169,45,84,78,56,36,132,125,82,116,124,230,97,212,72,63,151,245,20,214,147,74,167,61,202,59,91,61,72,15,134,45,107,202,50,194,149,164,54,236,241,250,114,147,92,249,222,61,156,179,7,18,172,157,188,130,57,125,254,116,182,250,7,76,124,62,43,134,148,190,1,223,44,147,116,130,108,171,250,66,28,239,129,174,223,201,192,25,96,186,62,39,43,128,190,213,52,233,251,4,18,117,56,7,193,146,184,25,54,220,158,27,202,136,187,129,25,43,119,247,172,228,254,180,98,31,33,26,78,130,126,56,182,110,112,9,234,145,172,193,228,83,61,114,242,184,240,244,183,195,43,60,191,31,254,2
 55,113,154,131,29,15,219,149,142,40,110,59,27,108,54,21,43,57,35,176,243,96,17,110,226,220,235,211,213,184,218,130,209,218,71,35,55,153,145,100,181,16,3,75,55,143,246,86,172,10,165,210,74,224,68,172,120,63,57,93,221,154,174,92,82,93,158,50,177,4,147,54,12,168,122,206,39,207,30,201,204,104,1,105,134,38,129,132,198,42,158,49,43,9,140,53,47,207,97,79,204,225,45,247,42,110,34,133,88,175,16,184,115,103,143,215,101,177,48,35,121,213,61,223,175,36,24,61,173,252,150,167,178,69,146,16,147,8,148,195,63,245,190,32,26,86,20,227,12,176,128,49,10,86,101,250,39,7,228,183,219,204,249,132,205,239,163,94,220,208,220,230,43,141,60,181,255,231,213,239,223,7,192,129,124,78,87,27,98,164,244,32,128,91,199,100,109,83,151,243,205,234,152,218,109,243,211,242,40,31,76,65,78,107,82,104,254,213,110,174,176,20,103,202,10,2,19,117,235,216,39,61,168,208,208,172,128,108,249,35,135,166,162,158,99,17,176,65,21,35,187,113,144,107,55,132,3,247,126,199,40,206,40,144,202,210,74,158,14,248,143,164,141,144,39,131,2
 36,224,173,135,7,221,20,116,91,79,129,246,231,131,49,238,210,84,175,2,10,212,99,32,245,118,102,7,167,115,100,91,82,39,127,103,230,232,58,20,101,116,82,234,49,217,141,174,14,170,27,90,239,79,49,245,89,65,33,226,160,129,171,170,155,95,204,16,34,232,16,45,122,193,30,15,76,22,6,32,140,207,21,202,117,128,163,110,121,193,116,34,147,207,14,218,72,166,172,150,184,82,134,32,122,166,174,107,74,13,114,79,133,80,127,62,162,177,82,173,189,165,225,197,252,172,38,204,192,178,19,13,199,157,103,223,142,72,236,251,105,84,238,213,3,184,99,168,95,188,181,71,27,226,81,215,27,174,187,60,28,63,250,52,169,217,16,83,48,126,110,31,71,6,159,195,28,114,104,229,251,17,184,192,89,88,242,173,57,120,192,125,73,190,190,67,20,225,103,163,225,4,199,45,233,101,18,164,21,183,149,196,34,66,242,201,14,122,64,141,123,70,124,50,212,37,115,47,26,180,180,24,90,150,160,160,53,167,199,96,59,13,178,174,211,84,169,20,8,31,150,253,6,68,110,21,206,249,182,207,22,11,240,106,230,30,166,197,20,129,28,77,178,101,47,18,101,23,9
 ,17,32,113,206,163,149,105,48,241,237,160,104,246,118,104,129,65,129,132,158,65,46,159,190,54,97,180,170,86,97,1,232,154,182,33,182,31,37,109,93,149,90,255,1,211,5,23,209,14,40,246,221,104,45,234,7,214,52,58,207,110,138,126,37,68,61,53,13,4,241,116,105,78,237,242,71,176,181,1,65,171,119,202,59,158,57,82,140,230,224,147,205,164,248,185,182,12,143,51,140,183,63,144,123,134,39,52,2,26,247,185,168,63,200,70,39,81,142,249,197,6,10,29,191,245,174,125,195,39,0,21,175,75,175,225,194,106,13,178,186,217,16,127,254,159,151,100,129,137,92,173,54,190,85,42,146,234,232,39,223,91,70,26,102,153,176,113,50,2,204,132,240,44,177,76,112,4,107,251,174,99,106,229,230,201,172,206,97,144,58,179,221,120,46,236,192,42,84,135,207,13,81,19,139,106,24,91,45,103,163,250,154,217,215,223,190,167,74,252,212,17,18,219,143,147,22,84,53,214,98,36,186,142,39,118,139,84,162,247,162,92,237,208,101,171,7,7,38,124,8,193,28,109,220,180,249,126,210,140,39,149,205,42,223,114,160,124,99,252,22,1,166,251,45,130,16,157,9
 1,168,134,29,189,210,219,77,28,4,86,203,9,0,170,143,24,82,55,170,86,156,81,246,193,140,38,240,57,219,150,41,15,218,41,163,111,238,52,50,12,236,103,192,213,68,203,213,133,129,107,250,221,34,168,114,90,248,19,161,75,20,127,26,12,173,165,72,169,220,182,181,142,18,255,54,91,238,225,139,39,30,222,119,251,99,197,250,148,68,86,125,255,10,80,93,41,42,94,164,251,238,89,176,165,11,249,187,248,230,245,119,141,124,209,223,205,214,30,154,129,180,135,185,67,146,159,194,248,234,48,79,149,163,34,21,47,111,140,113,253,27,125,103,237,220,121,185,41,62,166,138,21,67,67,139,113,107,116,105,247,42,248,84,123,39,29,49,200,75,117,16,0,133,174,194,215,91,44,159,27,183,30,51,84,246,10,192,48,190,109,188,219,177,138,133,92,191,146,135,90,167,152,79,11,20,146,100,70,65,160,245,188,77,91,90,17,53,66,86,86,104,112,29,200,228,4,156,40,185,9,180,199,145,47,182,189,107,165,169,202,89,228,115,74,47,57,141,11,153,241,204,220,254,16,11,37,152,79,154,40,254,244,15,18,196,235,144,59,251,62,168,118,102,127,72,17
 7,81,187,165,212,113,252,242,87,14,59,82,69,1,81,31,246,190,25,139,58,88,107,119,7,46,76,205,67,227,201,238,7,105,153,249,122,1,204,82,56,251,112,129,240,248,10,137,35,200,144,95,255,217,154,42,80,28,218,0,207,135,14,162,89,74,178,61,104,17,80,235,96,230,198,248,52,81,117,90,137,250,172,148,106,122,225,100,132,132,24,95,174,118,99,235,188,185,2,2,109,127,208,45,150,250,214,15,55,208,227,96,76,66,86,240,124,11,240,47,150,120,126,181,111,233,222,106,7,225,214,247,110,240,223,39,121,128,119,148,137,171,119,222,159,38,44,161,76,28,116,210,205,228,254,231,186,194,90,214,150,85,78,149,43,216,175,12,49,210,97,207,12,50,85,61,174,55,91,223,135,235,207,86,96,172,250,195,235,17,235,89,241,242,238,236,23,130,2,211,183,146,89,152,172,200,228,46,239,107,5,96,212,186,50,189,115,110,99,60,69,85,133,134,220,189,108,46,59,185,143,184,84,61,6,80,137,129,71,92,16,165,240,43,70,180,79,49,188,102,184,252,224,45,125,180,93,164,82,47,56,147,4,248,51,70,90,27,124,251,80,25,22,208,56,194,220,169,120
 ,132,18,207,133,33,180,72,199,243,111,41,55,154,196,51,208,1,251,22,20,9,210,148,190,33,87,163,61,119,120,4,211,157,108,171,125,19,234,238,249,231,135,82,59,239,144,224,170,59,253,103,134,47,53,241,14,207,194,51,49,63,62,34,199,98,56,142,118,140,204,160,19,188,20,140,237,11,176,210,244,24,178,18,211,43,88,54,74,144,4,186,188,169,231,252,47,229,157,13,207,203,181,105,225,186,166,76,146,193,149,149,119,107,146,136,139,205,7,217,161,100,75,117,184,38,105,56,203,149,81,83,160,97,110,98,191,106,108,3,192,23,173,126,119,136,155,216,228,116,46,142,115,41,238,172,193,185,166,94,170,174,81,230,235,168,65,153,200,56,10,95,227,41,119,166,54,95,209,223,182,124,135,120,58,204,106,69,0,1,115,134,65,109,213,225,103,156,72,216,80,113,3,35,118,100,243,174,198,214,152,68,39,74,142,132,30,238,202,45,9,136,47,51,165,225,51,87,157,8,217,98,104,49,60,117,253,169,152,66,107,28,170,28,36,142,165,214,243,243,235,45,45,238,84,123,215,89,241,166,127,233,79,229,17,215,137,103,145,149,107,154,234,208,25
 3,214,168,19,244,169,29,42,113,170,124,172,25,123,59,10,138,123,39,96,57,93,27,239,120,67,215,97,45,194,11,32,8,204,75,74,226,126,126,152,42,61,33,41,221,160,190,160,155,38,167,241,96,20,153,79,153,248,146,223,171,17,23,174,220,58,140,217,10,161,42,93,60,216,195,151,246,222,175,221,59,126,111,232,106,60,67,23,125,194,163,214,47,241,159,0,95,122,190,8,49,150,40,8,7,154,199,226,213,191,122,171,14,154,207,74,26,228,173,85,30,26,57,141,151,108,103,132,39,147,79,160,226,59,85,173,175,13,12,88,108,215,233,217,231,88,250,128,153,24,62,1,35,231,226,103,137,51,201,36,193,230,203,94,128,123,227,87,248,79,108,108,91,61,72,201,16,11,205,34,27,126,242,252,130,38,24,198,191,66,6,66,94,140,129,15,196,173,190,11,126,113,24,231,44,220,33,185,32,255,167,56,96,43,127,156,1,55,46,150,11,51,8,47,114,74,88,237,159,96,73,209,191,87,73,71,82,249,148,15,183,11,9,152,244,90,187,141,86,196,178,107,0,164,129,45,210,5,165,19,19,124,1,13,217,178,1,208,179,115,65,44,191,129,121,254,237,152,194,139,113,94,
 126,5,253,253,192,13,238,241,181,19,56,158,131,120,33,101,106,52,79,229,225,208,141,9,195,51,126,135,179,254,222,254,179,186,220,132,167,80,78,10,110,7,185,191,67,247,147,126,222,108,113,61,6,117,207,103,151,232,133,64,93,74,220,206,54,208,104,216,117,12,255,179,25,183,242,240,180,153,245,98,208,202,232,173,73,183,37,30,233,231,121,137,94,181,131,66,173,174,21,32,243,190,47,48,85,108,121,198,169,18,159,232,24,159,95,54,46,244,239,77,73,202,5,22,242,111,192,134,81,149,180,124,117,217,173,23,60,232,40,4,172,186,5,198,153,0,32,52,76,151,43,212,59,148,45,51,174,241,164,13,237,177,213,26,118,78,7,155,13,67,219,151,133,155,96,219,238,209,45,37,116,6,101,137,2,147,154,88,143,180,91,71,61,202,244,252,240,83,13,182,55,5,208,58,82,234,164,91,65,37,248,236,29,74,64,226,223,196,41,62,87,212,250,172,2,15,64,212,175,55,206,215,216,223,223,102,33,1,215,67,203,78,57,109,181,227,234,187,88,153,91,21,175,81,212,4,35,135,244,105,94,10,10,167,183,227,16,168,225,5,188,235,180,159,157,65,120,135,
 176,141,245,60,214,176,207,129,171,85,43,143,243,143,249,186,250,76,196,210,150,220,27,253,251,46,255,104,0,24,20,4,110,19,13,231,223,211,16,199,2,149,117,175,207,184,177,118,246,73,255,235,95,107,153,15,242,181,48,73,131,6,134,168,58,113,5,177,92,52,191,217,9,148,114,57,19,231,130,184,175,143,195,170,247,211,209,95,61,228,81,175,56,17,93,136,78,170,2,103,234,45,248,64,244,70,250,214,188,188,223,166,28,125,153,86,34,29,215,134,253,33,61,120,48,37,205,69,121,250,146,154,250,12,208,228,161,16,237,88,115,16,102,158,222,245,76,157,79,18,37,90,24,185,169,225,64,10,140,218,73,182,73,239,41,185,57,40,103,152,45,145,129,11,187,103,10,46,40,20,52,74,177,86,201,153,201,184,211,12,40,89,148,111,10,53,72,98,97,100,205,222,147,96,122,98,205,117,150,171,115,202,91,237,227,137,12,4,82,201,107,69,83,60,244,197,171,128,74,66,45,188,204,113,133,113,194,98,176,103,73,178,6,53,202,251,171,227,180,35,104,29,66,241,230,95,15,41,239,42,21,229,91,199,32,76,77,91,229,134,222,211,240,8,146,174,205,34
 ,94,225,220,239,27,242,21,165,151,86,59,97,209,92,243,252,33,234,42,133,143,232,138,79,79,110,150,176,218,102,41,64,16,111,10,147,77,76,183,232,253,148,218,30,174,164,226,28,78,211,169,53,20,205,38,18,0,199,54,241,253,222,77,99,107,104,208,100,3,80,140,98,213,169,135,29,151,119,102,242,249,232,152,223,110,115,246,99,112,182,212,237,80,12,0,92,123,158,143,17,55,30,123,4,0,253,167,133,118,223,230,107,10,202,241,253,79,151,59,222,219,113,254,167,228,165,142,233,233,81,37,239,159,20,180,104,37,157,20,23,204,205,125,94,111,91,190,57,50,74,54,229,172,79,212,106,99,217,193,129,77,52,69,127,218,93,213,185,18,126,148,5,112,52,106,193,53,184,131,145,209,132,225,97,7,93,244,251,167,121,255,146,151,198,249,127,10,187,156,99,13,118,248,238,213,134,166,251,140,56,240,44,131,113,163,48,5,32,201,215,45,160,65,111,88,195,99,52,42,84,250,232,218,115,59,19,52,117,235,75,141,36,70,91,7,156,146,69,236,144,94,79,237,1,81,6,58,123,183,103,171,28,69,47,128,199,240,5,191,87,147,139,55,183,147,40,3,6
 7,113,192,15,89,11,69,50,140,214,86,79,71,137,133,149,88,109,118,248,184,254,77,56,151,203,167,102,45,225,199,43,42,145,90,10,66,111,99,44,136,197,187,32,228,158,155,47,118,86,104,245,245,81,87,228,113,218,176,214,226,212,106,168,92,249,5,128,195,215,238,55,88,160,156,40,196,37,115,62,129,240,181,9,206,149,161,43,81,193,169,151,204,200,174,211,98,190,98,197,21,128,199,180,52,146,41,247,235,72,53,19,251,216,57,34,163,134,173,112,147,175,84,95,21,17,126,207,141,8,220,33,132,217,237,78,95,95,16,202,212,34,122,240,45,120,201,53,81,168,172,225,101,238,224,241,59,200,135,41,20,148,247,255,146,48,4,112,252,206,185,125,201,35,109,254,121,227,106,90,49,24,139,213,79,130,164,100,180,188,184,92,63,22,240,96,201,240,14,30,128,161,213,81,176,207,119,207,191,169,135,119,54,33,97,20,135,235,84,188,41,223,36,190,67,240,24,244,212,227,226,30,166,74,149,48,2,219,239,112,23,82,194,154,198,93,34,155,124,56,44,219,21,28,227,118,194,6,114,147,204,100,145,89,143,203,32,130,153,227,177,34,102,76,57
 ,29,251,29,97,180,158,247,165,12,78,24,2,102,8,248,106,12,126,211,18,29,145,139,29,114,158,118,232,252,156,148,38,207,167,166,96,170,51,238,82,93,8,193,170,95,176,49,30,240,24,105,12,47,110,70,211,132,67,107,173,166,187,162,40,143,48,248,59,111,201,110,189,78,254,127,18,27,108,111,234,60,20,13,245,163,188,72,59,226,190,130,203,231,116,50,33,212,119,226,58,245,116,179,232,109,58,168,105,44,240,102,66,113,66,231,238,138,244,43,85,54,215,37,192,61,61,63,148,241,134,231,237,164,33,13,108,159,183,81,222,247,103,240,61,185,149,200,25,100,255,230,212,239,204,213,55,122,7,220,119,177,134,155,240,30,229,199,232,178,177,125,41,69,103,164,196,162,210,206,1,29,229,196,61,146,64,116,224,209,164,167,64,144,16,97,101,211,193,73,32,144,24,73,82,196,182,213,227,205,143,84,101,161,112,199,176,156,100,131,194,219,205,193,139,102,1,139,59,162,2,115,41,63,155,73,90,243,114,25,25,208,205,196,3,181,114,40,125,195,140,222,46,63,210,203,59,15,125,22,35,244,127,138,236,76,11,226,13,129,16,165,210,33,
 171,242,28,2,118,170,102,146,44,17,238,227,237,72,229,237,19,115,243,175,10,185,208,111,167,44,111,1,216,104,124,75,188,191,67,242,136,47,137,113,22,18,252,11,61,245,191,29,50,195,99,112,65,75,224,5,31,216,203,60,251,37,176,138,56,107,201,87,11,119,5,125,131,186,183,160,29,39,202,204,62,164,255,62,23,208,181,91,184,129,22,142,201,145,80,144,184,201,235,49,94,118,187,164,38,57,176,84,25,249,26,244,249,170,1,135,127,6,205,239,165,200,132,213,39,62,114,235,24,222,248,14,28,156,38,86,56,13,43,248,151,141,13,98,170,37,186,42,148,170,239,15,179,103,193,65,106,198,104,38,206,73,185,55,89,167,116,13,62,248,228,126,26,58,191,30,106,73,244,118,122,51,243,170,226,152,67,145,254,232,206,208,66,113,105,188,12,185,190,56,92,202,63,93,112,128,118,119,59,202,156,111,125,209,87,253,36,228,6,136,163,143,132,238,138,254,167,172,158,237,136,186,89,194,253,153,45,138,27,92,40,244,16,213,200,183,138,50,101,166,254,173,80,54,254,249,223,197,206,109,55,217,198,71,198,113,220,189,99,104,71,0,210,142
 ,217,216,185,181,75,136,84,239,1,241,13,28,183,18,171,139,77,170,176,182,77,215,154,241,157,168,95,210,74,212,89,25,250,87,213,245,255,229,2,109,209,172,130,122,50,227,27,196,192,161,181,155,23,125,192,53,178,235,0,72,141,202,81,173,93,243,30,0,123,121,246,243,205,56,139,162,158,180,209,33,244,100,97,7,70,179,179,181,144,216,125,244,95,230,76,136,91,1,71,67,255,90,194,237,80,151,71,134,40,1,223,105,154,105,159,38,92,156,211,113,172,90,187,248,189,59,123,50,164,26,108,63,239,177,221,70,46,91,24,176,199,126,166,74,158,91,236,122,154,21,149,62,170,254,225,49,252,116,85,106,247,8,51,133,30,68,147,129,96,105,77,232,235,230,177,26,75,103,56,190,52,1,21,14,90,248,228,79,142,232,123,240,111,75,58,207,222,235,40,93,163,152,18,186,161,129,174,221,239,112,91,192,225,238,208,37,26,25,135,71,161,247,142,95,117,219,66,157,16,111,5,84,205,252,105,80,212,60,54,53,189,197,183,243,145,208,209,20,94,12,72,118,26,217,21,187,68,201,0,229,50,186,243,198,235,90,220,46,247,236,154,87,229,231,16,94,
 91,145,180,154,207,237,138,108,68,140,148,248,200,26,140,119,48,174,4,78,153,124,193,118,141,250,217,33,49,205,251,153,39,140,32,44,192,55,29,55,215,96,8,112,53,163,85,206,100,100,55,111,108,62,193,113,73,114,62,223,26,110,229,99,103,84,97,248,194,128,85,214,25,86,163,193,80,134,89,95,213,189,198,55,226,222,245,142,90,44,73,238,153,164,59,57,50,220,67,100,22,213,226,74,31,80,238,178,126,94,247,69,230,91,110,0,233,89,241,62,97,68,133,200,59,129,146,81,4,98,219,188,201,39,141,250,114,179,151,198,143,100,31,215,49,62,113,182,66,91,34,57,218,151,132,99,253,137,33,152,161,221,234,18,87,192,163,110,248,133,127,128,58,240,192,254,128,143,27,243,245,148,75,17,127,213,89,206,154,169,230,33,134,147,132,246,115,251,10,87,11,9,104,156,65,228,146,60,45,245,178,82,18,204,137,190,128,137,170,85,125,94,240,218,38,77,87,22,254,47,244,78,84,20,60,136,239,255,22,231,69,134,138,39,20,218,61,6,202,117,238,189,224,222,176,121,141,87,173,7,212,48,157,199,190,142,7,176,11,225,185,206,6,114,245,93,9
 5,123,110,235,127,164,220,8,75,54,8,215,28,252,156,209,60,148,4,150,105,117,156,230,111,40,232,84,52,231,160,86,65,27,94,118,169,86,115,55,146,157,98,0,188,216,118,70,58,134,215,86,127,7,132,110,39,109,127,251,151,70,215,199,198,183,117,159,190,64,54,160,158,179,183,6,5,255,240,47,6,176,130,74,157,177,61,60,109,41,79,153,36,173,10,208,218,246,1,241,57,43,226,125,221,143,110,80,241,156,58,166,127,163,148,229,13,149,233,217,6,53,186,219,38,242,231,2,36,172,141,22,114,104,243,225,63,29,120,114,89,0,129,100,85,53,190,85,13,118,203,48,230,33,235,0,183,81,254,31,129,144,59,211,68,183,183,123,14,33,161,92,32,143,85,147,204,147,94,29,144,220,35,57,245,34,7,207,127,138,15,126,41,254,245,105,159,65,134,178,107,75,113,71,247,167,179,246,187,127,228,18,197,66,175,80,143,90,154,184,124,165,137,75,27,239,13,34,168,88,148,53,187,39,208,243,50,45,240,250,26,246,10,190,161,148,233,88,108,223,86,70,105,136,62,160,79,88,16,220,106,13,97,138,131,153,112,107,226,91,57,42,110,161,43,158,12,12,250
 ,177,40,9,192,227,80,59,120,43,94,45,97,76,223,56,41,197,75,205,194,41,178,103,195,249,174,169,175,15,225,107,14,122,234,39,167,78,65,249,208,13,117,54,137,180,12,149,105,35,61,12,207,251,168,22,215,31,78,184,50,118,96,72,107,173,243,115,199,162,86,45,137,74,150,23,92,120,55,87,91,138,26,94,131,137,250,163,118,248,225,216,241,186,220,99,14,52,131,81,70,203,183,97,119,92,164,244,55,46,24,128,26,210,94,155,242,65,163,152,87,99,205,241,87,219,246,206,73,23,158,82,190,121,166,214,91,168,40,61,53,218,244,223,171,74,24,54,253,121,20,202,35,176,37,146,188,131,193,242,241,248,8,234,249,59,175,250,155,62,205,68,35,189,100,64,90,51,94,150,172,236,28,148,67,242,1,194,1,151,110,60,201,207,174,198,43,51,34,173,170,178,123,51,139,117,197,8,60,254,226,120,41,175,156,193,21,128,79,107,68,34,9,27,232,133,180,99,58,127,174,249,68,173,186,117,226,97,111,227,76,187,18,212,228,87,136,96,196,187,219,237,28,172,106,112,4,43,91,64,34,102,98,209,120,67,170,108,19,115,234,166,24,136,1,134,111,134,248
 ,230,76,49,83,25,131,72,251,11,104,111,228,120,161,208,73,150,149,68,76,230,45,173,6,191,77,116,161,111,240,147,66,141,49,180,184,88,223,16,255,105,128,30,40,145,13,66,88,101,206,223,228,86,52,243,138,126,39,183,14,252,160,197,138,226,164,51,152,62,153,176,13,67,166,14,211,133,71,72,27,117,141,28,172,164,113,110,73,124,42,149,123,192,41,129,208,183,70,222,119,113,93,119,44,28,57,48,43,103,108,183,10,185,9,31,171,74,149,176,94,88,88,45,13,248,36,177,14,53,62,115,88,169,169,45,183,37,147,49,199,50,157,43,167,83,70,18,160,241,91,130,50,122,134,55,88,46,161,199,123,130,183,118,230,12,104,99,136,221,163,212,41,31,226,38,86,29,144,10,11,142,7,241,205,203,54,213,22,38,231,142,108,117,1,189,163,34,242,174,124,157,99,174,130,232,7,94,108,166,124,231,136,32,12,138,3,96,90,130,64,219,227,48,114,247,133,197,232,132,16,214,191,234,71,238,142,163,39,223,132,99,178,25,113,2,84,216,193,121,128,99,243,44,150,186,7,187,95,216,159,250,160,131,22,233,167,160,233,89,9,176,30,98,39,40,160,161,107
 ,56,6,120,199,233,216,66,198,115,49,92,118,76,58,51,27,130,125,163,187,217,255,172,157,194,3,236,176,35,215,72,228,92,108,174,145,179,115,102,123,198,181,77,87,111,211,237,222,219,165,196,48,184,183,171,206,14,241,18,211,186,12,17,238,66,109,237,198,79,51,54,133,93,130,255,156,100,248,242,26,211,238,148,9,171,249,238,17,151,244,254,102,181,239,239,240,228,254,235,95,37,232,19,163,6,163,123,51,245,74,123,219,130,52,216,27,45,23,18,215,187,137,31,164,17,148,238,205,209,106,136,159,180,105,165,91,118,186,198,6,243,0,29,45,149,32,51,134,100,67,231,140,239,144,81,221,97,10,211,109,140,149,131,153,98,27,48,42,115,107,120,199,50,5,27,5,203,47,222,184,32,13,80,116,224,185,62,59,101,155,112,117,209,240,89,255,46,59,108,206,241,186,37,117,120,251,89,231,90,171,31,172,250,120,52,243,202,196,169,74,223,71,163,121,178,234,145,58,166,35,77,143,153,92,196,107,75,173,217,142,177,70,200,174,56,73,207,48,234,73,151,198,164,52,230,40,170,192,37,78,146,167,53,114,245,175,240,154,45,89,141,88,66
 ,57,73,42,55,100,47,98,207,123,106,59,118,170,96,127,58,186,207,152,221,127,66,60,65,178,129,156,135,74,77,213,133,168,193,131,15,101,190,22,145,92,75,206,175,246,50,19,69,181,170,86,90,94,20,11,122,98,50,66,253,18,38,168,78,157,94,78,50,34,234,5,147,26,175,135,158,198,78,131,50,104,8,233,224,249,205,156,232,84,6,75,199,82,52,65,234,88,218,0,187,105,56,249,134,85,210,91,55,163,241,1,121,128,28,99,211,54,77,96,215,253,223,118,98,182,202,15,26,54,26,195,233,79,196,217,195,58,201,28,126,110,195,30,55,186,113,165,218,136,210,173,148,144,254,89,22,198,17,179,75,164,42,92,42,74,118,99,162,79,254,131,63,23,53,66,173,226,109,192,62,113,101,228,17,160,213,103,236,78,216,72,0,174,39,152,96,100,138,92,9,241,196,245,253,105,71,121,146,170,22,79,246,48,159,66,81,162,35,25,47,8,254,4,62,246,4,145,163,244,21,223,215,33,105,228,251,203,206,23,150,33,155,15,83,252,48,40,238,138,166,180,10,27,193,63,96,88,167,71,80,219,233,73,107,187,120,170,199,205,162,32,49,107,135,135,245,44,34,121,209,228
 ,199,37,51,198,53,118,245,228,80,73,33,13,74,9,139,153,122,57,229,196,17,143,63,200,139,208,91,248,218,182,224,245,60,138,186,10,51,99,69,107,255,12,137,252,17,188,49,83,92,151,239,164,30,87,155,248,53,117,17,34,67,67,135,115,215,21,29,109,13,174,250,184,36,44,140,112,205,202,59,212,29,116,194,216,252,156,38,24,170,216,141,201,22,118,65,54,149,82,96,79,104,245,150,181,32,97,75,99,244,215,237,209,117,227,69,248,86,18,210,63,82,218,179,204,75,191,107,109,23,45,176,59,145,115,65,42,104,25,236,151,177,57,115,24,230,133,20,77,18,154,50,145,99,207,176,248,198,109,53,179,111,107,182,98,198,182,32,245,194,69,60,37,77,193,42,104,197,136,74,116,87,131,239,195,108,11,216,89,175,33,134,233,30,243,64,251,29,251,102,232,4,77,198,227,111,61,61,220,37,88,129,84,137,8,51,250,154,89,155,164,67,18,164,170,231,185,75,179,193,198,149,22,197,199,230,134,69,114,121,159,31,86,19,166,51,130,243,133,87,139,109,171,108,186,211,235,163,10,76,230,251,249,9,242,11,11,74,204,30,192,255,100,171,107,173,85,
 42,113,47,35,140,27,222,122,97,222,183,55,88,10,183,147,39,91,74,210,149,216,23,192,24,78,133,229,111,163,120,85,26,111,57,218,1,157,11,209,38,249,36,27,223,29,92,189,245,245,115,139,224,143,85,161,119,228,12,10,223,178,217,80,157,172,73,213,235,214,217,241,241,89,238,209,111,54,108,215,150,84,111,246,44,111,255,110,229,198,103,83,132,6,58,205,148,102,238,233,147,16,237,229,127,148,32,38,126,50,106,46,35,164,71,3,128,30,113,105,8,93,223,196,224,233,43,204,184,205,66,82,62,105,74,225,59,82,54,64,121,94,132,20,177,139,86,31,7,7,34,84,53,99,119,208,197,185,202,23,24,245,5,33,226,222,144,160,230,97,62,80,198,18,242,205,234,2,1,104,31,223,106,223,136,118,26,41,212,86,64,180,121,14,229,219,189,59,113,190,215,24,94,39,184,224,178,250,252,179,121,111,172,192,167,124,81,63,19,228,235,140,134,228,51,179,215,168,190,170,177,44,0,109,167,160,213,176,110,187,17,180,86,253,93,194,2,46,92,227,124,250,83,215,151,49,57,10,102,75,84,84,170,155,65,4,211,84,122,211,129,153,19,246,75,35,56,209,1
 34,222,27,241,192,243,46,202,37,144,94,184,175,38,3,0,105,34,230,68,231,233,145,68,122,185,202,79,188,249,237,100,228,183,248,68,106,173,131,89,236,19,129,127,214,107,77,214,225,131,13,120,221,124,221,253,100,10,171,59,126,118,177,245,100,150,186,114,226,191,176,50,77,1,240,170,178,11,177,13,147,226,8,206,149,2,222,117,147,66,108,100,214,108,170,184,126,198,226,144,29,211,80,150,193,248,179,228,13,60,184,151,157,90,0,253,98,185,75,208,58,78,168,50,255,54,156,84,73,246,81,178,184,95,120,161,163,174,1,134,8,113,112,117,213,126,242,22,55,171,233,12,220,221,146,184,170,132,182,176,0,38,253,211,117,129,226,185,176,163,57,231,11,243,224,52,62,191,114,146,75,71,13,221,122,130,141,172,136,4,142,188,231,146,79,104,207,121,77,217,8,56,205,75,44,77,7,173,94,161,98,168,168,40,220,133,221,0,140,248,33,93,92,59,213,56,200,184,211,253,62,54,52,95,34,141,212,175,228,241,227,20,238,253,181,112,66,207,235,50,106,90,241,173,44,3,232,193,125,44,194,34,89,254,90,54,56,162,67,127,47,18,20,232,137
 ,20,210,140,173,140,6,5,164,163,20,175,123,40,176,40,15,60,65,218,38,215,40,165,69,209,115,106,23,217,189,94,75,66,230,70,6,205,155,29,59,230,60,70,114,71,97,131,44,188,129,151,141,119,95,76,249,94,249,90,49,147,51,74,58,29,254,135,176,21,74,31,165,137,209,187,99,194,189,137,200,193,225,16,232,49,75,28,254,207,219,65,159,33,75,102,156,104,194,239,109,163,140,0,163,214,200,135,167,41,109,83,114,215,110,222,34,58,0,61,166,125,219,251,128,130,24,87,49,236,66,111,51,175,60,191,4,192,105,116,205,113,57,152,222,249,105,21,98,4,3,148,109,246,114,8,144,26,225,162,135,235,79,234,22,111,58,154,47,23,68,243,17,20,32,68,22,229,127,248,89,154,226,197,30,141,194,75,80,102,141,149,105,32,234,119,139,126,7,166,12,229,164,103,208,152,192,200,181,150,213,98,215,132,107,225,130,164,230,159,171,116,162,232,157,182,185,90,139,181,89,10,202,235,247,121,180,41,130,53,2,190,40,43,236,61,185,42,247,65,86,219,136,240,166,79,123,208,143,32,127,152,147,134,246,90,158,137,207,21,245,52,17,228,252,216,80
 ,141,166,189,63,33,208,209,208,176,206,153,52,37,33,231,246,227,20,43,143,122,167,94,27,255,181,176,4,235,42,253,255,153,112,213,237,189,156,87,173,20,170,183,233,78,150,90,7,10,217,80,245,79,246,237,233,165,220,154,201,124,255,188,206,49,212,140,187,22,224,143,11,153,169,8,199,49,19,200,248,177,177,195,90,65,94,171,153,50,198,75,8,228,164,182,113,151,155,41,16,193,236,62,105,10,26,147,71,18,38,213,92,29,21,187,142,158,18,174,86,33,130,92,237,246,60,122,23,100,22,182,102,59,52,140,61,177,52,8,67,131,184,76,172,126,81,208,210,141,104,183,253,26,151,56,0,23,86,51,137,245,101,243,175,107,186,141,205,143,65,126,222,120,209,219,86,110,221,22,164,116,143,73,106,12,73,86,194,224,13,75,255,2,237,45,242,70,36,176,170,11,168,246,246,154,164,220,214,13,180,86,150,128,197,208,172,119,140,30,111,204,191,227,57,44,188,126,229,47,72,72,88,238,32,171,233,104,172,249,40,148,197,58,92,253,14,1,208,137,207,111,209,8,109,176,71,207,206,114,126,93,70,129,181,89,215,239,248,221,190,171,180,230,17
 7,33,113,172,138,236,140,189,170,34,160,255,117,213,26,244,139,84,16,191,231,175,164,91,224,153,225,128,96,102,80,36,251,8,47,23,36,52,222,136,155,212,213,44,129,225,20,30,77,9,226,1,234,173,94,133,48,126,228,245,35,235,179,55,238,164,84,6,7,10,98,150,130,171,29,198,170,181,226,9,162,172,232,47,89,253,70,252,177,138,68,75,104,254,231,50,112,160,99,35,238,48,191,5,216,197,178,237,228,81,228,9,222,255,203,23,56,68,226,61,81,142,212,50,78,82,17,212,254,41,8,81,63,28,7,53,219,199,149,80,64,255,176,212,172,236,173,43,175,225,9,221,203,188,90,99,97,115,27,6,136,49,155,133,238,147,9,148,38,32,89,121,142,93,24,37,37,150,97,227,168,94,230,88,95,209,73,150,98,172,176,106,171,59,177,4,164,234,185,20,137,98,82,105,118,115,68,153,128,203,136,49,39,17,186,32,15,156,117,115,96,251,88,89,205,192,215,75,208,26,45,101,13,113,204,202,206,210,165,95,114,225,6,26,82,198,112,68,7,11,216,114,5,55,85,12,77,31,50,204,135,233,29,53,235,74,240,156,76,231,98,39,152,224,95,61,165,54,3,80,27,163,223,233,
 53,166,68,117,183,155,117,156,66,250,83,12,124,220,120,39,151,69,191,126,252,73,14,104,194,133,47,176,35,207,130,236,186,40,224,26,39,250,90,0,149,172,91,158,239,62,121,36,178,221,97,117,41,65,178,97,227,189,244,132,0,124,92,58,113,190,72,4,225,173,26,154,83,115,49,154,60,247,177,249,140,187,210,226,64,234,18,125,162,175,167,37,64,135,52,213,196,223,239,108,56,223,207,37,133,193,9,2,238,77,200,4,68,194,182,94,220,206,108,47,34,83,213,214,207,119,111,249,29,91,0,128,79,254,211,121,89,148,240,192,21,214,6,39,124,68,15,13,36,12,193,217,120,248,140,100,231,198,8,1,188,220,45,172,111,65,75,173,234,44,54,76,48,252,30,165,250,49,1,29,251,0,148,59,35,38,243,143,172,242,186,60,216,89,131,193,20,195,146,30,199,187,21,135,244,151,111,16,41,198,21,121,217,216,40,225,123,202,103,233,164,76,53,16,30,199,32,75,242,206,177,157,199,236,212,181,159,162,75,189,199,177,216,44,223,161,227,244,131,251,46,91,84,230,52,56,149,121,73,188,0,195,213,73,78,86,114,80,189,228,151,244,134,208,60,76,205,55
 ,98,122,116,225,24,209,152,197,92,137,44,122,119,77,104,2,101,141,245,168,169,228,26,14,158,227,193,227,100,193,252,83,188,221,213,84,247,61,229,42,142,152,189,213,107,140,84,18,231,254,140,2,28,48,170,71,214,150,162,168,15,166,16,16,117,121,98,149,42,93,194,39,13,79,176,74,23,181,94,18,66,43,19,222,164,123,150,205,244,236,60,45,182,73,168,107,20,26,86,11,5,211,48,231,40,166,170,35,151,244,103,13,239,45,4,141,202,239,108,64,134,214,84,25,122,193,21,235,120,241,88,33,1,156,39,47,131,180,242,2,68,66,43,198,11,7,19,186,171,141,200,230,18,80,38,116,244,90,137,17,151,159,50,59,12,61,177,103,158,5,238,80,7,244,1,215,153,158,19,18,75,66,111,203,167,164,40,124,236,56,71,28,148,91,111,94,228,136,151,201,58,233,84,176,110,92,5,63,173,234,113,247,177,253,164,14,74,127,146,242,191,242,250,208,13,247,38,200,60,56,72,45,174,105,205,9,221,18,164,144,16,152,183,12,198,224,102,102,73,36,233,83,109,219,140,197,179,174,60,35,60,143,10,120,122,153,217,99,199,214,27,252,0,251,136,220,86,157,163,
 121,132,177,107,129,148,123,128,58,157,67,192,48,35,243,223,123,78,12,255,205,166,29,184,144,218,29,105,108,207,149,172,199,119,227,84,106,239,230,229,139,233,218,199,106,131,56,201,53,114,46,237,83,193,25,102,11,246,200,234,191,83,124,196,11,139,79,30,83,30,38,175,212,194,231,111,246,28,33,214,19,8,243,92,59,110,33,56,212,214,170,196,177,169,171,249,87,56,103,88,243,188,161,14,34,128,42,212,125,99,74,115,108,3,164,220,180,88,143,29,235,179,148,168,250,70,30,234,241,233,119,245,179,122,6,96,250,56,237,158,68,5,49,152,228,113,122,78,171,216,17,44,30,49,18,185,218,132,147,239,16,152,142,179,160,60,64,206,33,168,96,140,173,97,224,252,2,105,78,163,20,34,241,217,25,45,125,39,219,15,82,172,95,93,49,196,234,246,174,245,157,156,238,234,238,133,228,44,17,181,40,78,138,41,180,63,114,218,95,75,186,161,130,146,4,99,176,163,215,180,81,7,211,144,38,44,68,19,134,152,224,180,34,43,178,70,177,203,82,37,147,132,55,28,80,45,56,199,21,1,67,90,247,225,216,28,163,50,207,254,39,248,124,159,178,56,
 202,239,245,209,95,251,14,162,249,108,117,95,25,124,215,149,65,124,154,182,14,113,188,113,45,126,125,206,35,231,172,186,84,215,180,135,121,241,80,211,8,242,164,189,187,38,189,159,181,25,198,221,53,33,171,150,209,57,93,70,192,143,250,190,145,178,112,32,105,75,230,164,19,134,128,214,42,206,180,152,5,59,39,48,123,177,46,151,161,49,124,152,78,111,172,66,143,213,201,210,217,120,61,224,213,100,180,151,186,222,111,62,240,43,75,129,24,61,120,51,85,254,165,106,122,220,167,9,213,224,84,197,122,9,47,193,45,0,188,205,5,137,215,23,46,52,115,99,131,254,198,61,133,245,191,209,194,25,167,98,52,18,150,205,207,98,138,1,218,212,202,90,22,134,26,73,64,169,215,28,88,205,244,120,146,65,216,106,208,104,251,209,208,100,50,171,235,245,100,222,226,19,243,69,105,9,221,163,146,248,98,100,42,34,140,30,61,166,135,36,240,13,112,174,213,218,81,62,54,254,210,206,188,14,209,41,193,152,248,220,233,223,97,107,80,20,43,40,187,40,81,178,152,186,49,151,111,196,231,80,75,69,160,87,133,46,250,123,169,40,207,24,235,
 195,203,69,242,32,241,109,91,160,22,204,121,176,186,125,14,25,73,8,46,118,243,248,222,167,247,160,171,185,214,237,64,103,104,225,251,8,115,133,218,186,107,1,176,146,201,213,111,154,87,158,163,128,141,117,151,105,117,25,30,30,72,228,196,247,199,115,92,186,183,133,228,2,84,238,29,19,230,196,78,149,218,210,109,146,34,245,130,110,209,128,50,118,255,188,159,61,93,212,61,10,150,68,129,31,34,185,128,177,208,31,13,241,115,74,29,156,93,82,225,75,29,0,121,208,45,100,104,176,241,236,95,90,232,73,56,174,228,202,84,219,133,227,102,145,33,4,55,24,209,134,103,170,15,250,236,71,44,245,90,134,234,17,142,23,20,149,120,180,109,65,208,24,212,226,67,89,20,52,127,62,4,201,198,95,4,156,15,0,26,93,66,5,81,73,123,230,136,1,243,186,228,140,158,190,247,41,35,121,206,132,69,60,151,107,170,203,200,209,44,109,91,67,6,31,90,185,252,204,218,252,49,84,135,85,163,226,156,0,192,108,61,49,29,71,159,21,238,68,125,149,161,120,80,204,221,99,171,232,251,203,201,180,25,153,193,123,201,76,227,157,250,39,6,253,201,14
 4,107,241,91,171,172,169,58,66,48,136,101,235,94,147,78,22,121,81,10,24,159,109,59,35,168,187,202,24,211,133,6,225,78,221,199,192,155,118,198,117,136,154,210,178,204,54,105,91,125,68,236,108,99,1,195,162,35,14,191,50,228,89,95,95,192,104,90,120,142,232,27,182,228,63,241,71,5,109,254,117,127,70,101,185,94,206,71,186,175,40,208,239,9,207,218,239,217,155,52,106,242,139,71,150,185,169,159,82,183,188,53,93,91,117,243,164,246,220,217,206,238,45,106,102,138,14,221,247,135,148,35,170,23,206,143,97,75,71,9,211,148,81,177,65,204,14,233,65,243,60,205,245,136,104,200,204,16,100,89,228,6,87,188,123,12,32,9,140,187,209,51,51,2,230,99,129,11,42,166,174,61,174,123,27,149,33,53,35,180,159,167,49,140,15,233,79,56,109,13,194,172,188,80,120,17,170,150,80,103,74,217,228,13,144,109,114,206,192,1,64,142,68,23,209,219,0,53,206,223,7,187,14,173,65,134,98,127,30,245,100,204,202,255,57,46,128,222,96,17,209,104,80,2,171,214,102,125,77,143,182,234,27,250,232,167,30,225,197,31,61,58,240,115,255,61,255,18
 6,252,135,213,198,101,242,57,72,126,155,44,151,181,9,157,4,196,46,128,229,72,254,13,9,12,159,4,84,244,73,120,89,191,5,134,5,101,144,135,82,7,180,244,222,211,176,133,92,225,226,212,175,137,218,150,231,95,213,49,228,129,232,226,20,33,77,213,172,205,164,96,10,68,234,242,170,42,130,15,134,118,58,153,128,25,29,235,28,206,1,114,60,141,197,58,7,233,183,116,29,132,71,28,175,0,147,123,149,58,194,183,101,147,162,204,12,6,217,87,159,100,89,92,159,111,61,42,252,52,113,226,118,241,127,152,95,103,159,113,83,159,47,192,57,39,100,94,95,61,47,78,109,149,88,174,47,98,158,77,87,53,17,168,61,115,137,103,74,81,156,65,200,82,172,214,240,66,44,245,193,107,112,126,151,168,58,118,60,78,50,249,239,50,186,95,162,51,12,179,10,58,159,230,233,203,143,229,137,89,18,44,130,26,92,225,231,113,198,197,142,199,11,134,92,148,58,101,216,4,213,146,39,254,182,236,93,218,50,178,57,23,220,195,241,31,170,154,193,196,79,16,137,29,244,167,66,202,130,17,88,140,188,173,82,132,31,73,42,225,0,46,25,178,249,14,249,59,243,57
 ,163,49,151,74,56,67,196,215,226,20,197,109,221,25,76,42,65,194,46,209,134,97,18,214,29,159,135,141,64,128,106,60,37,78,195,221,94,177,163,230,178,10,239,222,188,48,231,45,163,184,192,233,219,27,244,98,58,197,132,52,183,77,192,166,73,222,16,52,55,166,35,98,91,193,238,90,73,215,134,119,171,254,204,23,85,113,175,222,165,211,34,93,130,120,205,245,216,56,62,124,215,194,241,47,241,193,169,34,133,66,129,49,167,157,138,44,167,75,175,162,144,122,74,3,4,152,111,156,225,116,55,55,88,20,71,223,216,134,231,244,217,108,169,189,177,12,145,31,242,36,233,63,55,140,107,210,110,128,182,232,39,36,174,17,243,51,19,133,108,127,135,113,87,25,141,234,209,239,84,184,171,225,11,225,218,187,56,42,198,157,96,3,194,121,125,248,89,188,208,28,141,75,162,148,224,81,237,163,111,0,226,3,231,176,14,145,183,99,180,246,12,95,74,235,0,140,52,183,217,41,244,196,19,110,91,221,101,197,103,72,232,211,183,20,3,249,74,49,213,217,112,84,252,221,185,131,120,42,0,249,4,90,177,92,2,95,39,125,221,137,96,112,212,185,223,14
 3,150,124,125,176,224,11,163,42,222,209,36,190,210,135,167,187,9,193,55,35,150,201,156,10,35,234,86,164,62,1,137,26,176,233,236,114,71,216,138,7,202,109,2,142,76,191,196,125,58,79,51,152,55,182,28,33,250,238,181,51,130,13,69,12,54,192,141,158,234,239,12,143,102,94,64,50,17,248,151,206,67,122,174,118,184,73,96,195,51,51,45,70,118,150,19,142,238,131,164,64,124,44,110,150,66,196,156,10,216,191,143,68,211,55,27,182,126,119,219,161,32,137,41,151,214,113,201,185,156,80,255,48,72,209,179,14,156,227,67,6,0,55,193,32,87,59,205,228,77,234,61,27,118,197,165,2,223,191,127,21,135,80,93,104,215,151,161,209,6,190,214,200,117,135,229,216,135,150,84,214,176,57,193,251,104,213,119,199,140,23,205,28,169,133,42,60,10,206,209,221,17,134,50,168,130,238,204,134,50,27,255,128,215,97,209,160,65,240,24,189,239,122,14,161,184,158,141,103,33,92,204,56,26,188,106,62,89,155,101,104,143,217,22,219,109,137,46,107,112,88,43,249,43,19,68,169,78,91,182,59,254,144,157,226,123,120,220,113,185,19,163,70,41,206,1
 97,121,2,36,157,72,97,49,240,156,0,228,121,2,245,197,110,92,85,147,127,194,191,121,111,81,113,174,128,147,172,105,121,73,41,139,188,73,185,157,3,145,121,43,103,142,68,75,99,57,197,76,202,212,86,235,251,86,173,57,237,118,49,163,203,223,230,72,128,125,69,88,43,164,73,129,177,244,246,174,171,42,190,63,171,68,15,116,183,123,224,43,181,18,139,241,247,12,141,237,160,222,151,226,164,183,6,142,20,79,157,125,120,49,205,92,180,104,210,218,77,229,223,218,167,24,204,253,153,89,231,171,187,69,212,193,144,210,182,38,119,65,158,233,107,159,182,188,142,26,214,90,93,17,222,18,88,115,16,185,20,217,73,121,79,30,223,10,173,22,234,217,202,203,252,209,119,241,32,7,238,120,74,239,75,110,134,220,96,159,12,198,167,157,163,12,170,35,164,4,31,70,18,112,73,244,170,97,191,160,244,57,186,37,29,216,62,147,75,230,240,131,197,249,203,4,78,82,116,143,61,196,130,227,156,252,231,60,112,170,0,133,233,78,207,177,216,128,77,178,246,151,162,110,25,97,204,74,106,252,240,174,208,238,45,255,193,144,33,119,196,85,244,
 161,191,160,213,113,105,92,74,245,62,57,97,53,168,235,104,184,102,234,27,14,43,31,252,137,77,124,225,135,216,72,225,20,136,232,51,105,19,201,237,208,178,251,202,158,7,110,93,78,116,226,202,195,16,191,210,48,221,216,235,97,194,174,176,4,73,253,211,242,138,133,246,222,107,191,12,193,110,215,6,197,187,158,41,15,28,74,248,131,15,44,28,127,191,140,98,166,232,64,86,118,129,17,88,175,239,204,5,143,79,53,45,171,205,120,9,84,42,100,112,176,127,188,172,25,184,10,209,52,8,71,127,76,210,219,23,11,78,86,12,152,201,196,240,5,143,145,177,170,243,68,24,168,60,205,15,182,18,77,23,235,25,58,10,217,184,154,43,102,8,8,224,64,121,247,94,244,75,119,82,246,34,61,194,153,181,78,164,219,2,84,247,85,210,21,225,77,16,199,126,19,86,0,32,166,63,68,215,57,22,114,136,179,171,147,82,51,118,95,150,118,116,0,209,71,61,62,127,165,175,229,118,245,212,87,44,182,144,62,94,119,203,41,126,197,149,139,33,138,161,131,213,202,148,69,200,2,160,165,35,13,2,132,40,207,72,116,151,1,161,86,61,185,185,143,104,83,0,150,79,2
 10,49,192,136,34,108,247,22,203,201,233,24,152,68,252,2,133,49,23,241,87,228,57,78,207,34,106,20,249,194,211,168,44,80,128,248,211,215,80,126,241,128,12,99,175,187,154,91,74,243,53,75,38,240,20,4,214,46,176,89,102,232,233,9,182,119,74,207,122,221,23,90,241,222,28,10,204,74,185,168,240,11,46,186,206,80,182,105,81,49,202,210,232,96,233,33,217,5,8,226,70,100,161,216,102,183,189,20,35,87,211,161,14,54,142,250,176,149,78,191,230,147,255,73,15,89,48,32,232,104,145,99,190,152,81,231,249,179,23,157,227,4,190,178,236,236,210,125,129,155,151,24,162,131,206,192,140,51,213,244,52,227,104,205,128,43,76,214,45,195,90,179,59,197,153,83,252,243,45,151,121,236,196,198,69,233,50,113,205,204,70,67,177,144,119,28,53,248,54,41,246,217,241,72,118,195,106,54,160,20,157,72,72,77,178,118,198,96,202,57,16,71,94,218,98,12,244,159,0,175,94,31,234,9,253,40,240,149,98,36,224,181,6,216,75,45,229,245,114,48,82,1,73,80,239,155,94,250,62,107,133,52,33,25,255,151,226,173,176,18,172,45,20,83,61,187,74,168,251,
 41,56,166,89,53,167,184,55,199,142,52,182,251,36,37,34,49,131,222,62,201,109,204,2,149,119,59,155,243,206,233,184,10,94,0,242,117,129,206,202,66,238,175,64,66,133,192,95,87,142,0,197,244,192,244,104,90,134,158,215,203,81,193,133,204,114,201,6,247,152,112,52,203,132,62,222,236,105,212,202,125,73,30,0,181,221,35,208,112,208,226,119,141,150,137,170,91,225,113,1,17,147,149,115,211,185,249,192,159,109,242,78,146,230,205,233,161,37,156,85,78,204,145,57,73,106,61,217,17,25,10,171,174,20,8,164,222,196,82,225,247,244,178,132,32,70,5,244,78,192,136,236,61,92,76,223,106,93,77,183,121,183,6,25,42,130,55,68,221,230,38,80,87,166,104,211,251,76,49,233,79,26,89,100,198,250,187,246,133,155,235,92,65,107,110,4,161,60,218,192,130,252,234,156,85,64,128,41,123,136,199,241,63,187,214,97,133,138,68,75,81,114,90,73,230,156,154,46,195,244,146,90,65,140,64,169,176,192,172,4,196,13,160,245,218,189,158,147,54,197,13,132,59,217,65,67,115,235,71,6,155,200,162,18,174,128,128,198,168,75,21,57,235,228,59,18
 1,81,20,2,221,160,194,66,231,163,205,162,133,117,160,100,155,32,76,176,40,102,113,166,66,125,116,117,59,152,100,137,43,13,113,163,101,155,44,198,127,59,204,190,10,181,46,43,247,22,120,49,169,55,122,227,116,86,159,55,177,21,218,110,19,245,77,249,240,99,87,90,249,124,100,252,151,106,64,191,40,196,65,170,252,175,174,30,95,108,213,182,247,23,230,122,71,123,21,104,200,125,185,16,209,24,116,73,68,228,103,57,85,39,147,242,62,71,203,1,87,195,231,210,19,41,140,192,169,68,140,98,182,117,4,160,223,167,16,29,186,106,154,52,135,238,233,235,250,43,33,69,183,44,190,104,117,208,39,56,3,247,158,158,108,17,97,220,40,208,16,3,129,247,104,142,19,205,180,228,175,204,252,26,0,0,10,75,182,170,44,193,41,81,230,101,108,202,75,136,85,97,20,39,69,141,225,216,215,82,168,218,109,190,208,114,126,196,67,169,123,117,226,125,103,139,175,113,18,54,100,178,90,178,127,142,91,142,200,171,95,181,13,153,251,222,87,186,253,9,154,179,153,130,184,203,228,248,205,10,155,169,34,184,241,106,135,104,8,232,44,34,237,8,16
 6,109,120,9,221,76,142,228,205,28,143,235,255,159,108,76,241,235,40,107,205,53,178,155,138,173,145,132,10,198,211,162,4,192,120,170,159,160,147,233,122,45,140,113,209,128,23,175,68,244,191,86,250,186,249,100,30,153,174,175,225,183,193,178,126,98,36,155,25,126,120,104,138,165,31,173,238,199,20,52,35,34,9,147,155,147,234,108,226,240,59,166,175,131,238,231,86,135,154,28,101,138,197,11,37,23,196,224,178,64,239,124,97,62,156,169,78,162,122,199,226,210,201,7,15,232,107,234,150,82,1,244,219,192,233,240,27,242,23,155,229,135,113,12,211,116,183,99,189,6,43,244,111,212,20,58,91,235,1,76,88,187,223,236,226,231,154,32,93,239,186,245,110,106,207,3,186,245,39,141,131,59,57,118,173,188,122,48,99,89,138,189,167,127,243,239,185,35,146,208,3,132,172,87,171,237,72,28,241,12,138,125,7,52,247,185,39,220,76,150,127,148,250,127,228,90,81,121,181,41,178,130,19,59,67,27,225,125,23,209,150,48,106,59,84,7,161,207,72,52,176,82,18,69,156,28,9,179,36,58,199,166,117,167,41,161,103,198,57,73,95,169,0,208,2
 4,251,222,27,232,129,108,251,146,156,9,2,156,117,72,117,226,186,48,139,16,140,71,154,212,251,93,102,66,126,81,199,68,49,186,33,115,100,127,3,96,10,149,180,167,151,194,253,126,244,69,244,97,78,24,156,41,122,218,203,118,29,102,241,100,201,148,14,52,24,252,76,83,139,202,64,181,49,48,24,36,90,178,130,82,159,121,215,93,81,188,226,10,118,106,97,128,235,200,4,16,69,6,10,95,253,235,97,166,6,251,168,192,113,227,97,88,101,54,14,194,160,140,140,126,167,204,194,53,108,179,60,55,34,201,204,146,12,218,62,233,114,31,63,81,209,198,48,162,96,193,215,208,64,129,110,123,2,10,160,83,19,152,50,103,123,206,129,134,77,202,187,7,116,70,228,50,4,231,192,28,185,148,133,153,228,33,79,236,26,21,61,68,74,232,79,222,118,39,100,103,202,109,6,70,152,246,170,157,189,246,251,65,77,167,107,198,188,57,209,74,243,17,189,174,128,148,49,141,66,212,59,225,27,238,49,73,194,99,199,201,165,241,145,134,198,6,145,50,252,82,117,96,98,4,0,180,166,95,202,114,70,146,5,124,233,70,201,75,100,218,60,192,142,60,7,47,207,77,10,
 181,204,49,57,140,204,227,250,221,242,208,60,26,67,178,145,170,101,249,149,228,90,238,213,8,25,85,131,197,224,132,229,252,106,100,161,45,201,96,182,214,49,44,202,141,110,85,161,33,232,0,164,108,77,197,5,0,115,24,254,119,194,214,190,214,103,78,134,137,54,135,77,33,211,199,20,196,148,46,91,211,244,68,78,213,59,136,111,213,173,208,253,132,249,76,150,56,212,223,232,230,145,136,187,193,116,155,128,143,207,124,215,244,163,48,98,140,188,13,88,169,228,56,99,172,17,237,211,44,234,90,250,147,141,161,70,175,252,202,212,65,131,24,226,206,163,6,196,131,120,73,226,18,146,114,196,71,100,83,199,4,150,84,182,178,96,126,181,181,34,98,73,217,56,159,106,202,20,202,122,157,240,126,100,138,87,108,241,186,175,151,26,183,200,225,231,102,175,44,72,129,124,246,123,132,91,153,48,227,8,254,75,235,39,167,179,220,31,82,192,128,71,76,148,72,212,107,75,22,78,213,17,173,185,60,185,88,98,100,148,142,38,165,93,163,241,30,128,9,5,219,201,66,224,183,32,73,35,194,22,52,155,110,252,185,42,39,144,171,165,149,144,2
 31,100,77,64,170,200,250,161,96,64,210,240,143,247,217,255,171,198,209,216,142,144,24,133,212,235,164,45,206,23,183,119,223,166,238,30,122,196,91,105,193,99,1,55,254,150,206,123,179,224,212,207,203,96,45,255,110,34,193,41,154,1,20,132,16,246,76,103,160,43,196,109,116,7,142,216,221,60,207,38,201,24,234,26,132,13,178,70,93,224,84,191,202,8,206,66,146,188,118,198,46,166,91,214,110,165,236,133,139,49,120,113,171,163,20,219,58,242,74,63,44,87,12,22,169,43,211,159,240,162,172,194,7,64,215,10,244,69,234,248,176,82,175,75,213,130,159,1,40,183,94,219,251,60,152,169,250,86,145,113,27,221,243,173,203,241,161,238,32,3,22,245,255,32,244,178,253,176,84,88,49,157,44,237,32,30,217,147,103,182,139,165,199,59,111,136,91,17,172,17,147,70,56,42,21,200,140,41,185,5,136,174,52,163,180,21,172,135,141,25,65,47,196,169,134,21,151,32,221,27,245,163,231,66,23,191,76,56,36,141,167,172,176,172,123,117,7,0,37,182,27,180,243,143,191,87,232,18,172,251,243,214,124,253,212,184,34,250,246,179,45,143,224,70,5,
 129,90,36,65,72,182,176,131,235,220,7,165,128,184,230,249,237,71,171,167,83,120,136,65,234,67,82,255,163,205,12,197,101,184,72,105,72,131,124,242,55,36,156,11,50,196,91,1,60,6,169,145,161,245,28,137,142,79,154,12,236,122,167,53,9,71,236,10,105,73,105,172,8,55,41,108,84,237,218,146,145,49,118,233,22,163,25,8,187,42,231,83,152,60,40,81,177,237,231,90,220,71,148,60,248,185,174,201,217,93,180,21,211,255,92,179,36,43,45,118,208,118,107,153,211,3,166,20,41,89,187,255,34,142,197,51,86,89,49,202,26,192,98,23,109,163,214,135,10,3,194,106,200,185,220,96,43,108,46,20,244,164,22,231,223,84,247,120,13,252,19,117,109,63,124,241,109,245,246,153,114,91,202,0,222,105,136,191,69,106,97,232,30,85,230,30,215,88,94,229,114,147,229,205,113,157,229,196,134,135,122,42,61,32,193,17,223,81,91,225,160,100,120,131,232,70,247,248,253,229,83,81,105,161,55,93,45,173,30,234,11,57,52,162,169,122,132,223,152,19,153,17,201,16,239,169,96,115,182,231,126,135,84,208,194,221,72,233,179,24,190,183,118,45,192,204,2
 19,78,90,226,50,7,107,210,102,88,89,147,209,40,16,73,98,255,50,212,175,241,83,239,117,248,248,253,69,221,100,194,215,100,103,199,207,211,35,64,74,63,199,47,162,117,205,115,40,98,209,222,235,181,200,179,237,160,141,9,204,94,177,16,59,42,162,249,124,178,139,82,49,78,136,183,230,253,209,23,56,119,44,154,120,20,102,122,192,29,143,13,9,187,83,19,158,76,122,0,253,232,255,31,207,42,21,202,115,187,214,191,113,166,119,234,64,211,190,180,244,172,134,213,234,6,222,201,1,169,150,171,58,73,162,171,208,17,244,117,129,27,107,117,3,6,106,139,103,96,95,8,92,166,236,61,84,215,191,200,110,103,2,186,6,115,131,250,225,129,61,209,228,248,82,195,21,1,9,74,119,96,183,12,151,32,149,16,3,0,210,74,143,250,143,205,251,235,224,111,36,73,106,235,185,5,81,203,33,87,199,129,24,232,80,182,33,252,151,194,84,72,195,229,248,168,160,219,226,87,242,205,252,218,60,92,65,244,166,32,85,138,172,77,223,0,126,88,28,167,170,236,77,90,80,101,141,61,27,125,183,177,94,165,253,37,210,122,79,231,178,233,102,191,125,169,242,
 154,171,192,120,74,163,5,110,132,76,212,133,0,254,15,148,71,9,29,142,128,27,159,58,130,164,43,166,18,163,110,20,156,56,4,118,26,240,60,36,83,48,160,230,69,34,115,46,247,136,128,76,216,189,254,20,78,241,19,30,224,109,99,233,204,39,44,29,183,239,196,238,25,98,29,158,178,245,126,103,64,95,217,32,18,5,176,219,226,166,117,95,248,85,151,242,135,248,198,139,237,93,100,181,109,210,193,100,65,112,5,49,222,3,75,140,194,149,176,159,109,9,229,30,87,1,197,91,248,247,213,211,117,58,196,5,71,11,80,103,145,250,40,235,225,70,5,88,231,54,56,5,226,246,37,116,249,228,198,129,7,56,41,27,209,118,52,148,94,219,6,216,2,1,13,209,4,226,94,27,225,171,175,173,246,189,29,49,47,177,247,1,73,151,205,210,178,181,133,225,10,153,56,204,227,70,135,25,228,60,104,197,83,240,161,153,45,29,85,214,149,161,66,155,194,54,184,203,181,61,161,94,220,165,58,173,143,244,131,207,179,170,34,117,18,38,165,108,82,187,203,156,170,92,122,171,53,69,156,159,118,69,169,230,45,123,110,128,230,172,115,197,206,117,175,113,235,38,210
 ,87,178,74,92,3,233,212,244,44,19,144,18,94,77,146,245,170,40,214,104,65,4,220,252,238,218,115,8,3,209,115,223,197,72,16,227,158,64,96,67,106,97,58,190,253,173,151,93,115,86,48,247,4,16,222,129,163,208,199,6,71,100,171,45,130,189,186,199,134,84,163,111,48,136,140,148,99,229,99,14,91,12,250,87,72,67,230,0,154,122,217,136,37,253,186,36,249,9,21,248,57,214,86,253,121,98,219,195,105,96,227,3,106,226,207,219,112,87,201,139,86,186,165,249,1,49,60,230,11,149,46,153,42,21,15,226,30,223,111,120,8,3,58,121,30,89,58,221,68,38,101,39,240,235,92,180,154,128,240,73,197,68,47,193,151,194,217,170,149,173,35,236,179,92,24,137,168,119,55,109,99,0,78,234,46,254,83,9,81,83,111,165,173,182,74,84,19,95,40,223,26,42,3,184,51,83,190,52,35,249,255,37,25,129,168,101,64,157,170,209,17,156,79,46,251,98,83,120,104,253,101,171,209,192,240,86,186,23,138,69,204,186,75,139,234,221,0,37,189,139,124,226,242,93,27,113,147,171,200,75,179,92,231,115,96,126,86,41,234,7,122,25,179,3,118,99,155,154,186,241,112,75,3
 6,245,23,252,203,189,12,148,227,142,102,241,106,200,255,233,44,147,6,42,124,154,11,158,214,110,144,24,75,96,55,240,192,202,12,18,139,52,173,219,201,120,211,90,26,95,238,36,171,121,129,77,165,241,48,139,138,228,70,154,54,144,118,253,192,77,73,104,122,195,159,100,44,216,230,33,35,132,112,44,171,33,7,127,25,235,233,70,105,127,77,49,240,197,74,3,67,76,33,94,225,50,191,110,58,109,232,35,142,97,109,191,218,115,134,94,249,150,253,155,159,66,222,85,218,46,165,127,165,76,184,20,17,80,46,37,158,166,104,178,182,158,58,112,112,177,102,96,57,49,94,155,225,208,120,168,249,125,65,0,175,156,129,95,48,255,81,143,29,94,134,215,106,156,68,201,19,204,141,253,186,34,221,85,248,227,128,198,58,93,54,109,56,224,222,98,180,150,106,40,220,226,205,70,79,239,121,112,211,180,201,222,124,180,168,128,100,221,147,105,109,239,102,186,72,61,169,234,6,28,245,102,66,52,40,147,54,127,107,121,1,175,68,67,137,163,35,41,215,148,233,207,132,93,66,67,251,51,8,117,144,15,171,248,31,180,179,92,78,253,205,107,216,69,15
 9,86,137,50,55,206,56,22,8,221,196,23,7,0,4,190,64,165,71,142,214,125,63,243,186,195,160,223,164,178,233,54,144,122,39,21,111,227,207,103,74,213,106,94,127,155,18,84,93,27,63,169,185,140,246,202,179,98,81,52,31,181,158,225,70,125,2,114,47,95,112,185,122,47,109,81,72,243,133,14,151,80,209,127,32,35,182,101,155,58,223,151,149,120,77,61,129,134,147,195,75,112,117,5,187,83,218,147,63,208,199,212,159,28,113,198,135,232,24,100,216,105,56,152,38,162,89,74,80,80,183,89,245,57,242,249,218,226,102,216,100,199,148,254,206,46,117,48,15,124,253,168,197,118,140,19,8,253,168,7,200,215,230,111,70,221,63,176,22,218,107,206,219,89,105,57,146,158,78,117,37,85,140,128,102,78,245,121,62,162,85,181,21,42,5,35,221,112,75,42,104,5,28,127,58,246,212,118,151,85,152,80,101,248,13,16,192,56,197,3,119,109,243,8,113,209,194,59,137,25,176,46,156,208,26,148,202,88,242,10,141,193,2,19,189,56,209,49,220,65,223,122,210,212,66,113,12,253,66,19,0,234,199,183,166,172,228,175,185,81,10,13,208,38,191,25,234,191,19
 9,203,41,1,197,97,219,105,172,201,6,153,206,31,169,176,4,125,250,94,60,16,9,233,17,222,155,105,105,83,36,97,34,102,247,211,103,253,64,114,30,57,41,116,97,90,43,34,124,45,202,105,69,71,64,43,23,76,160,64,64,130,22,247,132,39,86,190,127,116,146,177,167,215,246,145,176,41,37,86,222,15,218,252,197,135,90,243,237,65,205,180,24,114,97,193,200,136,106,243,178,186,188,233,143,138,44,162,24,177,240,124,144,219,227,189,123,67,31,66,142,245,62,215,111,75,162,192,177,2,128,67,110,126,8,180,153,54,164,114,49,133,131,244,165,107,252,167,239,153,64,99,247,167,211,36,73,22,144,137,224,149,164,120,190,198,61,84,32,180,154,189,219,165,157,104,233,17,216,28,255,124,151,125,125,59,138,49,246,97,91,117,93,177,89,61,31,5,250,183,176,43,151,15,210,204,137,56,65,153,28,202,242,82,198,240,62,109,177,104,97,248,56,233,75,75,66,227,166,162,125,176,169,159,214,75,215,213,124,51,142,197,97,55,202,30,248,74,75,233,211,137,25,104,214,56,234,41,40,85,212,87,191,73,219,50,35,21,125,166,167,163,168,184,90,11
 5,196,37,106,38,89,6,174,74,67,226,5,163,157,243,179,55,70,236,134,112,70,49,101,157,10,62,195,235,152,95,201,16,90,190,146,157,149,147,203,190,127,117,34,128,77,247,20,255,225,73,245,132,58,86,226,255,45,175,199,207,192,211,167,240,202,239,195,245,87,152,152,175,132,130,209,194,227,154,129,124,148,23,181,52,37,213,211,217,73,21,208,208,109,160,87,228,114,28,244,75,128,86,52,14,178,159,58,16,165,158,236,64,212,60,171,157,147,190,218,101,120,197,235,174,123,55,104,6,151,211,107,131,189,130,154,149,250,13,218,109,232,46,54,137,155,236,249,239,25,80,68,213,216,57,218,123,131,48,255,179,190,14,229,255,30,62,202,47,75,247,233,51,207,106,235,130,174,62,111,72,134,149,130,35,155,135,167,186,131,118,21,108,239,230,203,68,101,189,135,166,107,120,148,238,1,113,245,149,216,3,25,250,4,94,60,186,201,148,82,220,35,76,75,227,15,57,85,8,135,33,66,224,63,247,135,128,49,97,209,98,75,38,239,191,141,27,109,73,86,227,13,45,169,17,210,11,168,111,103,157,128,78,159,147,32,173,42,97,147,254,90,32,1
 71,246,3,254,210,116,77,39,217,193,94,51,140,110,12,197,237,30,141,195,183,98,47,203,150,104,240,95,55,49,110,218,240,145,209,172,171,97,8,188,15,231,149,108,3,2,232,20,68,241,104,91,226,6,116,188,39,145,217,182,145,135,246,88,30,235,93,119,161,4,109,241,179,169,84,114,18,89,233,45,200,107,226,238,130,246,12,239,141,62,236,37,153,113,213,23,74,50,26,4,29,140,80,145,123,90,168,4,135,122,155,53,206,229,69,190,29,219,32,99,227,161,229,25,125,203,179,243,233,48,197,173,70,165,13,50,214,248,148,85,10,68,84,13,110,88,109,86,176,158,166,195,235,15,236,10,31,8,113,193,118,206,212,173,93,101,199,117,207,130,119,198,68,151,197,167,43,49,72,63,2,139,162,16,32,62,39,222,26,243,42,3,53,87,242,147,69,166,82,254,153,107,236,248,192,134,118,79,124,159,140,69,196,145,42,95,145,49,18,224,57,221,154,78,34,44,255,68,134,32,152,122,34,86,130,152,12,139,142,112,144,61,208,20,61,11,176,93,253,9,9,73,57,75,55,143,96,248,199,188,206,255,178,90,110,163,254,96,59,224,168,233,56,234,173,231,133,126,113
 ,19,58,64,122,86,197,209,105,83,16,230,185,239,46,92,146,154,145,100,198,88,168,186,75,213,249,6,169,23,197,126,116,120,82,170,156,252,51,159,106,41,67,101,241,117,197,123,184,64,224,97,34,192,19,250,255,169,85,132,21,64,125,230,59,163,161,213,177,165,17,75,253,26,61,103,247,153,111,141,218,119,114,62,213,68,92,6,253,189,175,64,73,44,219,235,252,97,74,67,127,135,116,136,149,59,249,204,149,118,81,75,245,41,21,207,180,100,209,91,134,197,149,141,94,83,242,202,243,62,207,94,145,233,254,150,48,22,177,108,251,59,183,192,50,136,140,108,23,137,0,18,212,213,187,27,18,89,4,153,211,248,126,81,28,0,202,174,40,141,173,66,202,26,157,102,167,251,182,129,108,248,91,227,34,84,93,110,18,166,160,55,158,41,140,179,250,198,230,71,4,49,221,171,96,214,64,71,185,75,21,241,53,29,162,170,93,221,196,26,58,242,220,6,255,208,214,78,118,178,62,73,27,223,179,236,47,26,151,171,6,78,213,206,197,172,158,10,96,2,21,53,89,170,123,92,131,0,203,1,180,139,68,117,71,205,116,44,233,153,26,172,250,90,93,79,70,49,197
 ,147,205,90,29,246,250,114,142,177,82,197,72,186,216,124,249,22,250,32,0,239,16,47,37,74,210,40,27,113,199,140,131,246,44,79,36,250,176,81,188,125,142,151,217,48,124,231,25,143,215,55,21,239,166,119,216,191,207,71,231,229,154,175,172,176,217,164,173,134,190,186,74,10,183,48,14,106,200,238,237,55,158,157,94,207,237,15,243,202,62,193,132,114,157,161,111,137,188,188,79,30,72,99,220,156,55,92,131,160,221,90,94,183,125,67,208,59,18,185,25,140,191,113,112,97,199,68,68,67,94,151,20,101,25,229,89,156,77,183,161,125,142,144,171,218,73,210,213,54,206,40,139,194,23,77,54,223,21,199,170,254,211,39,170,99,15,212,168,120,46,75,112,214,220,42,63,7,15,81,148,8,232,124,174,205,25,238,237,249,216,149,205,172,93,24,202,25,134,117,49,0,138,76,217,78,247,123,197,242,187,18,144,123,216,184,230,131,96,200,118,182,36,3,46,178,112,248,156,118,87,208,20,127,250,173,192,251,227,47,69,168,40,205,76,27,226,212,90,38,119,180,111,63,193,40,35,103,200,143,165,71,229,108,189,119,90,250,34,150,230,46,110,122
 ,68,51,32,112,181,28,171,28,94,111,1,113,248,81,132,51,35,100,45,129,81,212,173,79,35,15,91,61,3,215,177,32,101,21,22,80,182,51,107,177,75,36,42,215,218,16,16,208,12,226,137,10,203,222,5,119,245,250,212,74,82,255,80,88,127,219,132,37,225,197,51,251,141,149,10,9,219,192,132,71,58,172,2,255,160,224,211,140,20,100,229,166,5,0,86,192,42,126,86,187,27,194,59,98,117,170,193,168,254,201,250,200,250,67,166,160,106,205,179,255,66,107,10,96,233,98,227,124,232,102,109,153,238,42,158,245,166,120,15,55,121,83,249,66,104,165,182,125,145,102,127,106,201,161,18,59,110,134,176,44,158,135,173,254,148,19,172,163,198,84,8,36,36,189,254,253,97,93,60,193,244,73,173,108,182,97,244,11,215,156,65,159,173,57,137,153,220,98,212,131,62,137,74,158,45,198,250,2,203,183,108,19,212,127,108,245,86,233,136,183,106,248,191,17,243,116,46,88,224,172,76,27,103,162,217,201,204,38,220,48,51,13,67,165,105,70,113,245,29,144,154,8,226,84,77,184,22,223,8,234,127,240,16,197,2,248,38,232,168,250,141,247,246,55,7,114,20,
 178,124,254,246,48,118,42,202,165,100,165,239,185,31,49,113,234,143,11,212,232,84,150,142,115,215,1,162,216,154,40,37,87,115,76,24,220,196,66,246,6,42,18,217,197,40,65,47,90,86,128,158,41,62,136,207,221,79,82,47,218,217,8,154,114,131,178,63,56,212,53,192,165,42,220,205,17,167,66,73,24,209,54,224,31,187,254,181,215,217,149,125,167,121,45,170,156,214,82,8,172,253,88,89,100,123,250,48,240,221,20,44,43,249,133,220,94,195,225,245,34,192,206,62,177,174,204,178,131,192,55,163,225,141,252,230,27,221,44,234,255,48,8,155,35,35,66,246,142,117,221,145,96,104,191,87,73,65,236,248,9,106,54,152,133,194,246,253,164,86,0,108,57,60,191,159,222,67,122,111,186,128,119,92,83,82,173,134,60,190,16,10,94,200,174,182,192,37,186,194,143,166,104,22,169,33,216,175,55,171,190,138,244,197,204,12,68,55,151,167,202,247,17,30,132,96,9,251,155,65,69,200,241,199,195,154,215,116,103,154,15,26,11,112,249,33,245,57,70,237,199,55,51,125,44,235,159,246,44,147,168,180,193,181,157,167,198,249,127,122,220,195,215,4,2
 14,97,62,60,90,169,255,122,4,57,75,73,181,98,134,175,146,99,228,209,0,41,116,58,70,34,165,228,27,0,106,186,63,200,83,81,154,4,172,203,235,178,9,159,99,79,29,23,214,62,219,219,130,141,116,182,192,156,48,73,59,151,138,209,130,128,248,225,15,54,7,139,147,82,142,78,16,218,229,244,145,70,14,82,48,195,52,23,239,146,137,83,55,94,112,151,219,144,136,102,49,29,246,233,237,215,60,239,74,55,186,117,142,43,195,228,144,136,24,117,55,231,80,141,175,197,168,10,165,244,89,115,128,39,125,237,126,12,195,174,11,62,134,92,12,234,211,139,166,38,1,47,86,71,182,246,200,4,217,237,12,163,14,52,181,236,141,26,247,133,125,242,69,66,123,183,24,14,244,223,171,78,216,33,14,145,108,157,88,3,197,39,99,136,221,149,165,172,233,103,194,199,73,159,4,162,116,144,139,228,151,154,109,141,142,7,11,169,156,234,188,70,232,38,191,41,181,239,223,132,59,45,26,106,199,186,34,254,215,35,53,97,78,200,129,119,17,245,114,134,78,143,184,203,104,11,20,225,223,69,240,37,190,16,111,204,84,189,187,163,93,26,121,18,240,15,87,33,2
 14,61,225,140,245,220,2,94,226,27,11,25,49,234,81,78,162,53,63,158,251,108,239,136,113,169,239,181,226,48,53,159,51,161,159,192,215,160,215,54,140,73,21,41,239,171,157,54,58,196,10,160,161,98,101,177,169,122,158,250,115,136,32,87,75,187,4,135,71,49,3,85,13,79,17,190,127,204,108,133,37,130,245,236,14,222,88,131,12,254,85,253,175,220,75,32,137,158,149,67,118,159,83,138,199,140,92,243,83,247,85,227,99,217,37,3,64,114,7,38,50,60,36,248,78,190,205,45,117,211,39,50,44,49,5,230,87,41,195,217,149,210,160,211,152,83,108,0,163,71,242,108,13,30,230,162,199,158,81,187,126,158,26,214,72,235,200,29,85,86,92,245,193,45,134,53,73,63,173,244,56,173,111,197,194,255,139,102,15,146,228,91,11,189,228,191,116,47,188,201,117,125,129,123,202,219,77,203,187,214,88,251,63,73,156,63,242,239,123,143,95,33,73,43,88,105,75,222,13,39,92,254,215,87,183,155,5,243,49,230,130,42,218,95,110,113,175,65,38,44,165,4,132,250,215,150,16,149,135,7,6,30,10,64,108,211,218,141,190,98,85,32,114,77,25,159,241,155,225,194
 ,149,238,219,222,52,13,69,103,180,120,213,10,150,153,35,127,160,82,69,244,204,58,26,72,255,192,57,73,105,79,92,30,109,153,139,132,239,115,198,79,90,90,93,209,193,179,224,162,130,216,0,232,74,142,239,211,28,37,204,57,8,219,165,25,121,56,78,252,220,217,14,172,84,144,206,226,108,16,232,5,128,155,106,15,18,142,39,199,141,71,65,44,106,137,16,231,48,175,246,155,188,216,161,47,183,144,247,13,25,142,32,31,157,109,140,103,39,144,47,221,192,202,107,158,36,199,10,228,21,50,59,166,0,174,253,120,228,32,122,105,104,215,230,95,120,182,166,95,166,112,62,211,177,58,136,173,67,129,186,125,224,74,126,18,110,201,16,72,213,250,172,209,100,65,149,110,29,236,22,130,237,156,65,115,244,3,184,28,83,197,222,200,210,117,123,113,70,60,132,162,205,27,155,238,120,185,184,134,125,15,211,254,147,55,85,218,251,180,49,34,234,7,137,68,128,254,106,12,212,46,103,210,82,11,75,101,51,157,176,237,219,147,12,247,60,62,54,187,236,216,221,60,242,157,177,187,90,128,11,2,216,135,11,194,109,2,88,186,151,68,250,56,10,85,2
 37,126,119,141,241,53,197,229,224,76,115,60,29,170,144,241,142,227,55,161,236,57,209,119,167,121,40,216,211,76,251,181,30,79,171,226,128,222,46,110,245,251,150,116,70,30,199,81,209,53,130,72,12,148,20,56,176,181,203,55,169,102,85,15,227,128,34,157,178,50,249,66,179,187,96,54,104,203,168,172,2,171,63,124,96,93,123,135,107,177,67,92,238,97,100,197,54,202,192,132,192,21,236,23,140,70,65,29,195,21,232,18,205,225,205,192,176,83,5,7,229,56,107,100,222,30,199,111,63,96,184,137,88,53,241,180,75,183,101,87,97,244,124,31,73,197,244,148,59,130,246,198,137,253,41,215,246,128,159,87,209,23,233,33,144,150,249,13,17,47,193,69,151,12,79,117,7,168,211,95,233,51,129,253,144,23,75,7,68,193,229,181,187,25,112,5,53,60,235,237,39,10,111,8,26,9,8,128,103,232,86,173,156,219,39,255,108,100,64,73,115,8,238,98,203,211,177,178,196,57,48,59,172,5,191,126,16,13,169,213,199,215,51,85,95,121,58,215,146,45,96,28,101,47,137,71,125,28,245,158,197,109,139,255,150,86,70,194,244,148,240,117,0,95,47,184,124,140,1
 31,245,63,92,157,49,62,209,6,18,152,200,254,200,61,133,239,242,135,109,152,223,179,236,39,34,165,46,50,147,107,142,221,133,100,113,57,66,71,143,76,126,175,84,51,30,77,6,71,19,153,48,106,36,206,242,185,221,34,19,178,250,203,164,134,121,61,72,185,138,18,169,52,1,237,177,185,176,31,104,133,23,155,207,137,137,62,87,207,255,61,11,163,120,217,247,100,141,255,240,104,27,70,220,165,48,44,215,91,25,26,40,165,216,16,229,147,68,23,189,221,74,37,118,207,241,0,36,235,216,36,146,90,158,21,105,170,90,253,44,248,77,37,190,11,132,175,224,199,143,167,7,27,196,73,137,231,13,164,231,77,87,227,177,78,86,121,149,18,206,120,148,115,105,92,1,211,255,217,34,89,180,5,210,44,102,61,86,160,28,98,34,21,16,58,54,204,123,199,100,124,40,212,178,99,53,77,140,15,219,29,196,72,171,6,36,38,57,225,161,62,41,141,51,169,130,240,239,6,215,66,178,37,231,101,165,138,173,225,103,115,69,147,181,95,43,165,76,213,219,79,77,37,223,17,254,107,135,174,218,5,70,172,110,155,32,53,156,150,192,192,136,137,163,48,206,152,232,18
 9,108,37,98,154,157,23,35,172,117,140,22,27,185,164,67,228,245,148,101,87,64,119,94,114,187,21,141,184,100,237,233,213,91,27,103,116,161,188,201,3,164,248,36,111,119,226,41,97,217,188,25,15,160,254,235,60,253,206,104,8,129,96,116,241,134,101,48,85,206,88,12,0,129,53,139,113,113,51,117,12,63,163,74,182,46,68,158,130,202,190,251,51,31,104,43,188,49,178,171,13,31,84,70,181,242,143,18,223,203,48,249,91,23,209,193,126,191,116,10,14,219,216,228,136,103,68,39,69,104,122,91,251,101,180,213,15,113,33,93,175,32,163,87,148,33,52,215,230,71,36,66,36,12,210,184,136,157,129,168,45,29,174,109,175,153,4,175,234,30,162,95,171,76,154,93,222,76,195,175,241,209,236,177,232,106,207,240,213,8,111,23,151,129,36,11,192,69,71,107,222,101,109,191,6,151,228,184,88,169,180,212,50,104,195,244,228,213,163,170,51,128,231,132,216,67,208,42,99,8,48,120,214,217,4,0,195,158,147,113,179,114,136,16,98,116,150,3,5,41,24,242,13,10,225,77,97,76,171,229,235,254,146,69,253,2,27,79,191,202,209,204,30,246,196,239,157,
 152,243,142,101,159,119,122,0,142,145,166,22,208,254,113,35,209,77,31,209,185,134,21,118,205,96,50,187,194,105,51,67,212,93,11,166,105,245,154,24,45,135,89,46,73,57,188,120,132,211,42,166,149,91,43,0,126,169,5,91,140,133,69,169,183,157,42,115,242,230,219,80,28,38,119,9,248,168,177,137,34,66,151,78,167,116,181,143,240,216,132,248,77,174,136,167,131,227,158,33,133,152,190,168,87,194,106,151,0,34,134,90,191,66,224,165,6,199,23,86,111,249,60,104,249,189,198,189,97,137,7,198,146,204,225,224,250,11,151,3,84,33,253,127,233,205,150,3,47,7,148,160,147,14,37,42,58,120,65,181,125,78,23,46,58,76,168,63,241,108,40,99,83,194,80,215,50,22,205,43,139,239,92,186,3,18,71,29,176,74,140,104,17,87,200,198,110,93,4,230,103,140,253,123,122,185,123,150,91,156,237,13,14,85,194,61,120,28,145,201,212,180,69,214,1,96,222,205,140,175,123,255,223,17,156,209,250,180,11,13,143,9,31,142,76,132,20,242,249,8,71,148,211,231,7,207,83,124,150,72,203,147,206,161,125,166,66,219,93,99,32,60,233,244,152,41,125,37,19
 4,55,233,34,99,120,244,12,114,36,238,99,134,21,245,59,129,46,162,39,241,133,195,233,165,130,70,37,8,101,48,232,191,54,159,251,39,7,23,219,156,159,141,134,251,151,218,162,215,11,155,97,249,169,83,46,81,224,105,82,44,103,202,89,164,44,98,159,244,231,227,205,65,25,240,123,183,228,199,47,248,46,17,96,136,102,23,55,67,233,204,56,106,200,129,2,176,31,128,233,117,76,81,76,78,70,75,120,28,195,51,166,131,116,157,138,124,196,194,92,36,223,215,4,152,178,210,125,90,129,31,57,150,40,187,232,36,178,164,234,148,136,122,152,241,85,168,42,235,207,38,129,84,72,60,1,85,39,111,88,187,107,169,138,1,36,207,126,12,146,85,45,17,246,170,142,242,80,166,179,9,205,3,19,161,228,71,64,197,246,105,236,9,7,92,110,69,186,126,184,109,252,82,52,0,19,169,3,72,175,176,163,87,206,150,107,173,199,189,54,81,90,139,158,31,26,153,119,212,54,237,228,238,42,144,146,171,243,238,60,235,23,254,207,205,240,65,28,79,195,196,197,245,123,124,120,127,102,143,50,46,251,95,51,176,65,103,172,108,158,100,18,41,128,112,137,108,235
 ,24,29,215,153,219,230,64,95,193,75,117,0,54,12,169,127,255,206,1,132,52,2,136,89,60,126,147,149,148,134,11,255,57,224,245,90,99,221,157,196,214,50,62,52,253,141,146,253,36,103,63,144,201,51,105,40,45,3,19,78,93,28,103,199,217,71,118,167,152,73,220,154,98,49,94,144,255,62,192,81,145,211,45,4,36,228,99,0,58,226,225,36,202,187,228,170,28,140,170,100,31,254,141,53,225,173,34,64,108,76,78,78,157,143,8,14,205,52,165,237,183,200,211,133,237,238,213,66,97,161,216,73,204,29,201,19,203,221,40,170,189,90,58,177,6,250,28,57,141,127,44,235,239,22,20,80,71,75,24,247,219,144,219,17,95,132,51,250,115,41,147,129,146,110,156,10,173,63,79,206,42,201,7,145,176,164,26,12,222,244,195,97,101,144,128,197,99,171,205,169,145,120,11,88,145,70,253,248,247,115,229,177,31,125,100,194,188,79,174,62,218,74,119,90,228,121,123,94,251,111,76,113,160,236,132,177,109,220,23,201,203,16,124,91,117,17,227,55,243,87,5,154,123,156,239,172,240,231,68,9,228,70,13,223,78,61,72,188,251,234,128,16,160,192,209,219,72,222
 ,99,48,166,98,237,245,39,74,37,99,238,18,158,153,8,194,241,244,236,0,87,237,225,95,49,87,17,88,181,232,6,25,198,248,110,21,17,166,165,157,171,72,207,200,98,226,20,31,252,69,123,95,205,193,247,119,61,130,211,138,187,0,71,164,34,119,239,224,40,176,72,136,166,84,253,225,247,20,61,246,40,33,14,10,218,178,48,169,135,207,185,16,62,181,199,84,120,115,139,59,193,247,90,173,94,185,141,140,86,76,24,101,38,22,143,217,220,28,48,149,224,18,102,137,193,128,223,13,96,22,102,126,210,250,152,51,173,67,13,48,40,121,164,89,42,253,162,45,215,25,186,188,247,109,87,232,41,139,235,78,87,60,154,55,134,248,235,200,215,194,29,171,63,113,108,71,74,106,179,132,69,234,81,247,228,208,61,205,121,154,175,9,32,27,208,56,12,220,169,99,47,20,97,234,20,173,57,199,239,202,201,175,102,231,206,234,118,189,59,0,240,36,13,1,254,169,148,174,173,119,81,148,174,210,135,66,53,186,204,4,154,154,10,210,52,178,248,178,17,107,7,72,31,141,0,55,104,240,244,205,7,247,207,169,200,47,169,166,213,123,216,92,136,109,219,167,202,1
 71,45,215,17,242,174,37,166,170,119,46,56,106,181,166,75,111,2,188,29,68,143,92,216,221,150,92,242,26,34,64,215,142,135,113,195,94,33,7,120,176,212,5,207,41,166,201,176,189,118,159,54,12,235,113,54,61,158,204,192,181,38,35,238,243,118,25,179,173,184,153,56,34,46,196,32,73,172,95,195,80,111,179,129,62,56,167,189,82,248,23,12,22,34,119,78,195,100,151,47,48,184,36,109,54,112,128,150,159,179,105,243,97,95,139,217,10,240,51,166,99,24,107,206,76,199,102,166,22,1,139,149,43,39,192,33,247,178,175,245,206,221,154,30,69,8,179,80,237,219,212,29,76,69,70,149,249,144,55,215,207,96,140,111,228,205,147,224,82,42,38,234,53,42,173,89,185,55,198,234,93,39,79,47,48,82,117,3,128,149,122,102,213,102,35,134,254,43,172,147,119,79,160,49,107,123,207,126,208,206,212,243,93,156,248,82,153,173,8,10,1,44,38,97,67,127,88,1,234,191,33,220,229,100,125,172,231,12,109,216,183,100,148,233,217,162,205,231,218,58,249,214,45,28,41,1,108,31,226,223,64,133,152,168,10,11,224,130,163,186,210,113,252,32,154,166,119,
 122,189,31,31,202,181,25,125,238,249,147,34,142,194,250,23,153,10,125,0,186,144,5,124,182,234,150,41,171,91,55,216,216,245,72,120,217,191,132,104,112,218,97,57,222,61,189,118,157,253,77,83,199,215,141,81,24,131,106,30,147,2,118,78,167,4,249,139,101,21,121,79,27,76,182,112,152,98,174,191,219,37,63,46,172,220,10,47,148,0,129,232,131,71,122,61,238,39,210,104,68,22,54,234,34,223,198,29,231,130,215,150,46,105,139,179,207,103,41,216,79,39,174,114,192,9,167,78,208,154,161,94,162,8,106,109,121,151,166,61,98,229,95,103,25,126,95,118,66,161,112,115,123,5,155,155,20,235,207,79,194,169,144,22,0,66,67,141,137,111,193,202,214,15,35,200,14,86,115,2,123,238,214,89,31,11,47,80,155,193,228,189,237,71,122,84,99,140,62,153,28,161,71,35,237,16,238,46,176,180,104,11,55,92,146,162,186,55,144,115,221,237,154,160,135,80,17,146,37,147,62,36,208,227,196,186,30,209,232,198,161,16,188,141,71,145,248,44,75,150,68,39,99,122,24,232,200,214,31,213,121,10,230,97,21,206,220,65,154,191,91,236,114,119,137,228,1
 88,232,0,105,210,63,191,206,54,142,14,117,154,192,226,101,215,58,149,6,28,148,78,31,63,224,108,102,12,134,37,151,186,252,51,224,177,61,186,107,3,180,11,145,102,214,151,195,2,144,2,113,36,3,47,81,24,51,9,206,140,248,226,208,224,0,3,172,155,129,127,83,113,163,75,25,211,121,158,120,203,206,52,18,214,66,192,45,210,175,136,198,171,197,183,180,106,105,26,28,197,242,111,99,98,204,47,139,178,188,52,139,221,189,93,157,161,93,88,235,102,69,25,3,229,116,207,227,233,28,166,186,7,121,210,106,198,220,227,157,10,189,201,216,165,0,22,32,85,180,125,61,149,199,218,184,6,154,9,68,153,176,75,18,118,98,159,123,252,52,143,227,58,61,184,56,8,55,117,171,81,215,137,49,5,251,56,129,186,99,1,3,96,173,206,235,142,31,240,45,24,28,137,71,83,149,34,145,10,211,45,219,14,15,123,19,198,159,243,170,220,238,111,133,69,182,176,116,91,30,96,22,9,33,50,9,124,179,38,154,160,194,112,232,18,73,226,167,202,8,222,110,39,152,191,29,26,9,152,118,138,61,83,18,136,162,192,240,159,120,91,107,13,33,61,151,150,64,170,46,164,
 197,135,80,207,175,86,228,246,37,23,99,251,5,127,172,210,178,82,60,29,38,236,16,132,17,213,113,18,87,102,234,89,30,144,28,27,0,200,2,101,197,109,111,210,223,243,20,29,228,155,30,198,183,45,122,223,133,2,80,17,35,224,50,21,105,125,226,177,21,118,201,127,17,97,107,112,169,84,140,133,183,254,85,122,181,123,200,1,255,109,233,142,94,59,144,130,3,42,237,114,133,106,95,232,235,104,250,0,212,79,241,14,68,50,29,212,211,174,112,224,25,171,190,77,65,216,144,216,22,215,54,44,34,249,215,38,27,47,56,44,16,16,186,176,255,180,221,93,13,227,143,221,109,105,61,153,153,6,111,24,162,76,242,163,110,155,185,113,154,83,178,133,237,129,182,76,70,152,226,231,26,114,18,198,225,229,226,145,238,225,207,117,136,78,235,170,54,209,201,79,12,240,192,80,128,58,236,181,170,41,128,242,188,103,186,131,63,125,67,92,105,79,17,212,87,255,26,81,125,172,98,19,79,242,58,53,93,164,8,101,51,139,152,43,154,235,20,128,115,118,89,19,206,89,25,208,163,17,167,217,19,203,218,87,136,32,104,240,209,207,76,206,233,106,58,47,27
 ,230,34,163,141,226,226,14,104,157,172,44,60,246,109,176,125,255,51,184,218,50,136,10,74,75,121,137,109,108,120,55,161,14,238,63,132,222,166,64,42,35,106,224,80,189,140,194,25,3,115,162,217,12,6,78,237,13,206,227,161,210,117,160,207,184,210,161,173,17,47,152,83,99,24,246,178,29,167,195,111,38,35,168,70,219,239,34,231,120,126,153,1,2,181,32,138,223,170,142,168,46,56,33,228,237,25,199,175,240,250,148,198,93,201,11,202,176,182,143,185,80,155,126,143,161,192,9,66,150,202,238,221,23,252,43,70,219,164,136,126,27,153,231,101,85,175,111,72,80,27,41,123,225,7,226,144,43,70,231,214,84,78,253,181,170,205,116,224,74,122,100,36,87,247,64,45,155,11,126,231,138,58,216,186,197,212,88,33,130,54,209,209,247,116,195,52,142,251,140,7,117,167,47,126,80,221,58,162,47,69,166,97,27,77,187,242,36,119,18,212,5,176,151,229,10,115,15,66,226,94,220,213,176,208,79,130,224,30,144,219,254,220,143,37,55,234,233,199,166,93,65,129,227,7,24,13,14,55,18,177,254,72,95,203,84,240,123,64,85,72,44,26,121,55,111,124
 ,221,126,237,93,10,21,141,115,54,173,237,229,109,16,25,181,86,204,12,78,201,24,204,226,30,53,105,102,235,104,33,16,138,209,46,248,104,182,47,70,142,99,15,16,8,70,177,103,113,83,182,252,59,115,163,66,17,26,196,78,96,36,150,9,229,127,195,221,68,67,196,23,237,213,83,158,168,87,180,13,61,182,23,203,38,225,182,140,46,41,160,162,19,210,8,121,18,50,177,56,31,6,239,150,199,97,218,177,59,66,0,251,125,95,37,201,8,142,240,113,175,135,19,127,209,67,227,173,72,180,98,234,77,43,193,16,238,140,127,235,194,237,21,192,146,214,159,147,137,127,210,67,206,100,133,57,193,134,143,131,64,144,243,133,159,104,79,77,29,90,147,240,247,221,15,37,99,79,25,181,0,125,23,84,79,170,207,213,102,138,216,74,167,121,121,191,163,237,85,146,12,181,3,74,152,218,84,215,123,253,108,119,29,245,38,153,59,93,183,56,110,153,173,147,68,157,206,183,192,108,222,115,150,35,160,191,34,75,201,35,190,225,112,4,88,233,134,35,19,106,16,97,67,77,111,252,204,15,156,173,23,53,88,28,108,12,131,172,185,233,161,21,24,55,63,148,30,160,
 252,247,250,241,191,111,34,70,217,139,159,33,26,20,180,62,33,32,249,93,93,220,37,163,246,48,145,101,238,204,92,171,161,4,92,90,139,113,96,14,242,50,250,3,240,248,47,100,84,162,212,34,145,36,219,89,194,34,127,83,129,18,158,50,57,23,34,172,50,39,174,240,115,68,59,123,12,156,41,234,138,204,154,245,245,73,37,76,129,198,194,162,131,186,217,121,155,203,7,144,129,84,119,167,42,49,51,210,8,170,192,38,81,150,116,213,228,125,9,127,201,119,29,149,155,42,206,241,70,210,156,124,182,101,177,164,72,184,51,81,246,123,30,194,89,175,158,55,23,122,188,65,205,150,248,13,83,131,230,21,60,114,195,187,223,152,54,83,187,140,1,4,228,201,89,149,147,218,253,103,157,154,233,176,166,50,26,239,79,56,247,2,67,234,56,134,142,217,197,90,57,242,11,177,120,30,105,50,83,255,113,33,231,245,56,49,204,39,89,150,28,42,166,229,125,96,254,154,171,236,245,19,102,246,134,4,168,126,171,165,78,114,35,11,2,232,231,169,146,124,249,233,42,175,201,247,29,105,122,126,254,232,152,130,89,90,171,26,228,9,118,21,7,164,171,45,160
 ,237,77,58,63,49,22,165,17,97,12,26,175,106,127,254,134,134,114,227,106,171,59,209,89,232,202,235,118,6,18,90,77,109,12,0,204,149,86,39,186,86,52,60,2,35,78,163,5,1,123,139,219,163,122,132,64,125,216,176,80,56,211,37,24,243,197,170,154,120,48,126,51,124,195,30,254,104,200,146,48,5,164,212,197,255,141,60,142,158,140,59,242,235,221,92,175,55,104,67,183,39,247,191,234,139,27,179,57,138,98,122,220,25,177,57,50,67,168,209,113,80,223,204,12,87,98,33,42,154,176,45,73,99,10,255,1,235,61,30,147,29,209,83,19,107,225,44,81,123,72,144,212,114,14,61,30,208,83,31,114,86,188,116,173,41,79,168,92,140,151,20,234,35,151,13,54,121,201,236,46,254,158,214,136,81,176,177,86,79,154,245,127,3,92,194,237,171,199,238,93,160,26,51,240,177,252,8,181,246,25,34,25,164,71,178,4,149,60,218,88,228,205,0,113,33,2,138,147,211,255,87,128,217,39,28,112,30,84,76,138,56,136,134,150,138,13,121,169,76,101,144,144,189,58,51,65,159,119,0,122,237,155,147,180,170,22,54,198,82,108,64,184,162,185,66,148,14,140,159,31,199
 ,47,51,176,25,78,0,201,148,49,242,155,35,242,13,67,128,178,215,205,125,43,3,76,38,175,55,78,209,168,140,39,142,222,254,249,185,215,111,144,242,207,127,135,248,239,124,101,81,20,87,242,192,141,162,195,48,162,128,212,69,128,9,187,63,105,191,123,59,113,196,41,94,132,254,142,210,92,200,90,25,86,216,120,140,243,188,163,173,146,42,173,223,214,133,16,17,36,139,31,110,111,237,72,15,163,195,4,229,53,58,7,40,221,58,74,86,173,137,246,27,232,164,223,191,46,122,76,223,253,84,109,225,23,67,142,198,145,133,33,139,254,176,172,214,87,85,164,226,25,0,165,111,148,120,240,232,238,150,180,191,35,41,89,103,132,153,139,169,92,81,13,243,242,70,226,143,128,203,13,6,65,81,35,49,32,20,102,99,87,187,239,194,224,187,154,223,140,127,54,119,158,218,108,159,233,218,178,180,52,171,96,212,216,89,189,203,213,148,252,178,203,199,47,159,224,228,21,8,142,184,75,16,108,32,45,178,248,238,222,53,34,83,218,208,232,3,118,250,0,154,251,254,251,224,98,62,158,143,94,110,171,58,181,70,248,59,250,148,108,57,244,19,80,159,
 88,215,147,135,100,183,94,148,108,114,91,248,219,237,199,16,214,215,106,100,46,69,219,62,147,229,168,240,241,225,120,57,9,70,9,44,114,228,223,74,193,85,106,203,137,179,200,242,155,211,17,167,66,151,59,116,57,204,55,2,145,58,40,53,70,133,217,203,248,199,240,119,121,41,65,144,243,173,252,160,156,144,53,17,120,211,225,63,219,156,9,101,213,10,15,34,90,165,201,203,244,101,49,216,171,41,59,8,61,188,247,140,146,224,113,33,246,76,9,61,109,119,211,154,126,153,106,139,26,144,188,253,76,143,84,225,26,95,86,255,177,157,9,1,11,181,178,145,41,169,165,218,14,234,57,134,99,46,37,234,107,80,212,64,113,160,142,33,27,255,121,176,164,144,0,5,215,134,165,105,110,215,228,58,67,128,1,27,126,183,181,45,14,191,103,166,180,11,161,192,112,174,7,209,218,57,166,150,252,34,45,56,122,193,94,125,22,216,178,91,122,122,250,1,215,116,183,204,12,81,182,29,77,101,51,171,96,113,130,105,41,30,53,63,186,93,17,208,70,13,131,63,6,250,177,229,159,225,19,235,110,107,216,255,47,103,81,171,92,57,204,176,8,15,45,12,118,1
 87,41,12,36,196,246,30,103,33,246,8,67,57,61,230,175,211,111,57,140,35,26,46,143,95,149,246,173,79,119,245,245,70,167,106,1,41,35,224,51,189,108,236,250,179,147,80,93,188,197,193,105,19,234,34,15,62,134,15,26,142,109,131,135,153,106,22,78,58,223,153,208,134,149,60,199,19,249,65,203,72,183,87,139,92,120,193,215,73,106,118,18,95,239,78,42,242,19,144,30,106,230,72,135,70,130,26,243,88,161,164,225,114,235,207,216,22,54,215,162,199,71,52,194,152,135,15,10,239,86,144,11,118,171,128,70,178,117,193,165,189,118,90,116,184,88,142,251,0,175,253,201,91,192,220,77,8,182,146,196,2,97,198,129,94,140,69,234,28,144,2,174,118,13,91,151,55,81,108,255,186,88,20,212,115,22,133,19,39,213,223,118,192,250,43,4,160,201,197,151,250,57,221,147,80,26,12,97,209,201,120,73,215,207,44,116,244,161,40,121,133,87,59,65,124,151,68,177,17,247,22,252,177,89,55,253,142,101,160,159,33,189,98,193,72,112,173,69,4,103,169,61,27,250,209,228,203,66,134,87,107,24,250,176,91,186,239,17,253,52,76,57,152,30,18,50,85,221,1
 49,145,109,244,92,148,218,156,185,211,243,87,251,218,33,77,159,19,55,29,82,193,252,230,11,86,221,120,214,58,181,116,135,117,65,45,39,100,6,142,128,181,14,92,246,53,101,169,92,222,201,105,208,206,248,231,195,82,174,209,238,220,31,50,0,231,107,184,181,108,77,198,190,22,140,129,4,113,78,133,209,47,90,76,100,137,217,209,86,238,123,136,157,119,233,37,172,185,89,29,0,171,175,248,151,150,205,54,221,89,27,181,127,150,187,8,183,67,219,222,103,11,40,58,69,148,147,91,195,174,178,54,181,188,180,149,30,90,54,209,83,151,18,242,174,232,39,200,156,60,62,40,238,30,15,218,98,210,44,66,196,190,157,133,176,71,212,76,127,143,177,193,164,37,149,133,15,165,21,209,220,128,173,111,201,108,37,99,199,6,29,69,252,201,106,6,55,60,71,35,90,29,160,124,233,134,205,115,226,44,86,188,120,25,179,129,12,242,128,185,98,170,166,64,212,229,75,1,21,60,143,104,72,8,149,117,184,58,77,207,187,184,200,142,96,115,28,186,42,153,100,163,252,189,179,137,46,46,152,160,0,19,108,205,173,208,106,229,4,131,12,137,60,12,80,254,
 44,237,148,92,209,138,225,130,126,151,146,23,111,211,161,2,137,246,94,18,0,1,240,178,153,201,97,35,132,140,88,186,238,25,104,194,105,84,236,8,66,223,103,31,109,181,31,0,71,180,34,29,133,222,167,187,130,57,50,90,10,154,181,188,239,253,17,56,183,230,12,14,159,93,62,124,34,137,166,218,1,82,232,129,47,185,210,198,9,98,58,100,26,180,10,160,211,149,10,118,147,162,210,198,177,131,100,156,203,181,26,26,129,126,154,101,86,135,27,12,72,35,40,47,200,120,254,247,7,159,143,237,249,243,236,143,76,132,147,10,108,191,188,69,156,13,133,78,128,174,100,176,149,48,17,86,243,143,10,45,174,10,235,102,93,236,245,197,188,193,41,106,207,148,158,143,59,105,56,133,218,34,185,89,85,98,191,36,152,119,76,246,123,27,177,242,78,114,248,237,7,18,92,108,171,233,168,132,98,230,18,156,217,39,104,222,143,155,252,167,202,198,37,74,199,135,119,141,146,132,20,16,129,222,43,197,164,198,69,97,248,130,213,221,184,3,145,37,84,35,80,97,83,22,133,184,28,163,182,85,74,184,168,47,161,9,183,228,17,174,199,165,39,42,189,4,8
 1,63,38,191,255,173,25,247,150,100,171,37,2,93,168,93,172,185,221,247,48,127,83,27,131,49,18,209,7,239,161,33,189,53,243,86,184,148,165,161,25,89,187,253,3,152,62,234,142,205,42,178,40,30,126,197,222,29,162,26,186,171,75,65,246,37,129,198,10,203,119,86,203,67,228,121,25,74,223,166,188,51,11,127,108,23,16,246,146,232,121,76,84,35,112,142,176,182,83,187,73,60,128,97,129,251,150,58,166,13,22,188,173,107,229,229,155,183,111,48,178,74,128,216,29,134,244,65,37,105,188,237,248,43,217,235,83,174,231,136,49,49,46,5,59,184,65,53,8,168,185,220,62,58,23,255,105,12,87,130,127,80,65,66,131,53,219,240,218,136,93,229,71,83,192,220,48,98,97,204,144,105,136,156,173,148,17,164,177,139,230,157,82,179,175,35,189,176,136,143,59,167,204,47,122,15,87,169,137,13,246,243,242,53,63,107,217,220,30,191,52,137,22,245,10,83,79,200,38,229,2,148,164,177,112,158,101,28,116,9,34,115,112,112,31,57,65,239,147,249,174,94,192,212,213,229,102,134,150,212,222,9,215,148,254,160,250,108,199,103,53,9,159,42,4,214,16,3
 8,224,60,69,226,3,137,107,136,213,163,18,186,179,198,207,16,70,93,37,139,128,202,51,120,94,31,92,222,235,84,138,163,18,53,198,164,53,90,24,104,26,102,239,230,55,124,247,6,88,158,154,244,186,41,15,37,33,183,52,87,26,160,179,52,249,167,89,4,145,76,86,96,91,252,210,148,97,86,11,6,73,186,150,165,72,67,59,236,116,100,128,135,109,67,172,185,38,3,18,117,136,196,200,208,41,34,103,209,73,127,215,38,43,92,211,150,39,136,209,110,236,214,152,137,108,38,27,231,146,108,239,53,155,250,228,102,62,114,161,222,30,52,25,165,231,241,144,128,112,220,63,99,115,87,171,216,40,78,214,130,81,242,128,51,181,185,111,43,152,154,169,50,251,222,6,188,171,65,39,162,197,40,121,102,168,187,30,174,58,65,146,104,237,202,53,237,125,50,214,21,131,36,101,44,215,55,220,223,194,5,146,231,199,20,67,141,134,151,121,125,166,65,79,58,255,95,51,85,200,155,30,139,129,184,211,140,156,229,72,113,109,21,85,216,55,222,133,150,188,82,223,115,22,191,2,187,244,147,236,253,54,150,68,117,141,253,96,46,228,17,208,177,131,211,21,56
 ,185,90,89,237,122,40,116,240,72,3,39,28,65,125,58,199,254,62,132,237,181,237,193,163,25,18,166,136,15,217,97,160,99,123,93,125,114,60,79,127,224,102,255,173,226,41,42,142,134,141,181,109,20,0,74,218,155,0,139,195,158,246,197,77,164,149,210,155,49,144,118,52,20,92,203,250,39,193,76,39,162,217,176,194,227,84,215,231,248,42,75,113,187,15,9,234,215,16,190,14,66,105,123,142,156,118,157,145,230,187,53,160,54,10,93,6,72,29,123,127,220,212,48,42,112,227,243,127,144,158,153,223,251,97,193,154,23,168,109,107,149,54,127,178,50,186,17,46,247,185,8,185,129,102,236,174,35,127,95,3,173,26,108,44,132,186,13,134,213,87,25,188,238,68,65,145,234,208,147,9,150,83,221,240,85,118,141,194,102,242,81,167,176,187,0,197,120,154,248,192,241,236,128,50,71,81,153,254,33,120,233,58,206,48,33,126,1,71,202,246,194,125,197,193,53,9,88,125,29,212,229,54,218,19,65,254,199,117,129,180,208,92,91,211,156,78,194,152,24,191,252,240,180,19,198,68,85,105,12,201,207,167,47,11,132,107,94,196,241,197,218,21,241,82,134
 ,10,139,30,230,55,58,228,132,133,142,179,22,228,30,165,41,59,36,97,143,1,64,145,169,163,100,254,219,162,91,101,109,200,45,158,99,19,198,130,97,187,216,244,110,56,116,21,69,86,9,2,7,56,181,162,41,237,114,238,184,32,107,52,77,43,198,247,149,85,246,234,141,14,171,129,127,42,188,25,217,178,177,58,234,112,214,190,154,187,145,249,99,96,53,202,3,205,76,48,151,235,145,40,116,76,242,53,48,109,72,76,142,91,5,41,37,18,196,250,95,43,50,227,197,160,174,232,115,57,243,177,8,141,224,203,70,89,187,56,116,69,86,98,95,217,119,81,95,198,186,98,51,195,202,149,153,177,141,183,162,180,170,210,9,198,140,254,46,225,185,133,250,24,51,211,182,169,92,142,244,69,155,69,86,158,216,60,131,180,31,103,126,147,198,182,80,42,77,214,184,86,137,143,5,249,98,7,121,245,202,110,24,116,208,13,124,16,155,36,161,9,1,66,114,42,212,238,162,218,215,196,2,119,130,105,211,184,23,48,128,159,213,22,239,72,241,173,79,229,241,155,170,181,236,57,136,93,237,121,246,37,51,169,199,167,204,233,196,10,102,44,86,247,88,254,223,29,1
 56,85,100,60,177,204,192,32,98,91,66,134,194,14,130,126,92,140,150,255,241,99,133,156,13,196,104,90,254,99,37,126,186,134,242,233,79,250,108,248,96,241,24,162,103,43,52,35,148,134,8,169,249,170,180,14,245,173,158,201,166,218,57,207,217,240,19,50,44,234,207,177,3,87,184,136,199,26,255,205,141,83,224,220,243,159,176,2,223,233,71,115,196,91,84,56,156,8,73,221,133,134,165,204,213,132,142,32,163,229,56,32,71,227,40,48,72,134,127,192,240,168,243,184,32,51,174,163,23,16,165,56,253,142,160,49,65,72,157,203,77,124,3,242,109,150,152,140,237,139,144,237,79,70,249,104,88,171,115,216,210,242,117,31,49,49,209,174,7,146,208,78,209,71,248,63,188,25,69,100,14,73,223,94,16,11,231,75,166,216,120,14,241,237,58,49,220,24,90,11,92,61,174,175,166,159,152,161,136,184,161,180,63,109,67,223,37,73,169,18,24,137,58,16,44,91,19,240,231,186,246,228,44,73,72,88,231,170,134,232,76,96,98,8,78,146,215,183,203,143,229,64,242,63,103,205,199,190,3,85,26,27,184,174,11,222,130,59,157,121,52,127,214,143,52,188,249
 ,229,8,111,211,192,111,12,158,34,21,98,42,166,236,244,69,195,89,245,107,200,41,252,158,127,11,178,180,193,38,13,145,22,34,234,98,160,61,7,225,144,164,208,7,169,187,88,184,48,241,154,210,100,120,24,237,115,236,106,27,63,240,188,241,87,236,70,193,170,87,247,248,64,241,41,163,50,30,34,125,204,39,135,9,194,73,30,81,146,98,25,156,247,6,140,232,41,145,43,144,244,214,29,82,4,168,143,129,237,183,173,47,59,227,36,235,158,25,255,62,48,124,233,238,249,238,253,82,44,37,163,208,155,0,183,129,21,169,222,225,121,100,155,17,35,169,17,238,19,124,104,24,142,143,52,229,43,172,59,148,221,159,138,93,16,63,68,184,35,140,103,193,210,60,92,128,193,150,57,108,136,212,140,189,86,246,106,106,252,99,73,247,112,106,65,179,60,121,224,227,118,173,62,246,3,129,196,249,211,107,57,219,70,251,195,87,187,143,71,91,2,38,163,96,79,130,145,125,198,76,150,150,121,3,203,113,28,110,22,81,250,123,180,37,22,226,45,24,20,191,168,15,119,7,204,87,94,55,15,26,235,33,95,90,90,178,251,98,105,174,233,33,207,106,33,146,149,13
 7,154,98,24,132,223,238,203,155,178,169,5,72,11,255,21,88,49,154,253,21,2,47,103,57,74,12,104,245,164,122,197,62,71,117,212,83,143,171,117,87,10,88,74,244,187,207,102,169,153,137,178,222,221,109,61,218,216,176,9,75,91,149,101,156,226,98,92,252,115,49,57,13,17,179,66,202,140,157,142,106,128,27,189,21,81,227,149,67,49,189,8,217,61,30,178,74,57,111,186,151,151,49,245,152,31,252,175,160,111,242,57,123,134,141,98,107,163,0,204,91,208,222,149,239,182,113,173,171,246,47,111,117,1,50,255,16,197,172,206,229,201,172,116,121,73,136,220,61,121,201,219,37,175,222,250,176,133,37,234,17,87,91,98,241,24,58,233,221,47,176,74,28,249,55,211,138,48,52,76,74,44,49,10,180,143,33,104,125,241,185,196,58,100,249,234,49,167,40,154,151,108,251,213,1,42,192,0,145,106,182,134,44,230,217,153,109,89,246,190,129,194,198,241,131,110,171,106,189,141,204,143,160,143,202,176,140,218,134,219,201,91,208,21,41,59,19,41,62,24,40,164,60,204,84,107,217,215,235,160,163,22,102,41,90,188,240,238,183,131,23,239,5,200,17
 0,227,223,39,192,163,52,213,108,176,241,210,214,102,98,241,115,236,201,29,142,75,246,67,25,150,221,254,234,100,193,48,132,16,21,34,182,69,226,103,117,159,147,64,184,95,55,186,163,162,47,81,168,104,175,14,58,136,61,141,30,34,163,55,236,243,193,213,6,5,51,88,214,233,205,165,73,110,178,249,28,247,0,20,194,124,107,249,243,253,164,74,117,177,123,72,51,6,8,22,252,119,179,13,24,211,207,98,60,153,161,135,32,181,214,224,177,54,203,116,177,63,48,69,41,4,13,133,253,139,147,244,88,185,35,219,63,210,25,181,12,137,0,238,29,46,193,114,102,2,78,153,122,59,152,96,104,163,191,148,124,81,190,158,183,125,144,12,225,109,4,180,36,206,17,53,228,139,178,110,4,11,4,147,44,242,158,155,156,168,98,187,11,181,33,218,159,215,170,101,227,206,234,111,58,61,171,33,85,36,210,83,74,51,225,157,54,75,235,189,147,110,77,5,203,93,61,219,144,67,230,33,121,224,143,230,13,242,74,31,165,107,218,155,147,51,80,110,236,2,150,252,134,48,246,29,104,86,159,57,50,4,38,142,99,93,242,165,153,205,192,136,53,125,221,133,180,210
 ,68,244,112,190,202,102,136,244,43,8,122,207,236,141,148,164,131,46,69,155,253,112,65,215,59,132,22,254,198,171,80,82,157,78,116,95,141,149,21,160,137,203,76,120,125,228,55,30,162,170,66,113,160,177,156,159,185,202,52,41,118,181,140,98,231,82,216,182,174,120,225,61,211,21,87,72,78,5,98,21,160,253,46,174,240,248,64,206,52,182,105,23,212,232,205,224,62,157,251,161,176,33,206,150,115,145,87,128,180,198,52,244,246,16,147,197,81,206,116,57,0,203,103,242,248,185,122,169,21,17,145,206,100,105,9,175,96,26,36,63,8,209,153,210,204,142,100,242,126,191,159,241,102,211,89,144,13,71,41,153,70,216,163,31,177,164,138,250,147,196,247,146,0,24,61,115,9,254,29,235,71,61,66,140,0,83,120,46,8,16,249,65,154,63,96,176,252,125,76,138,238,23,165,192,184,52,225,245,95,147,209,48,109,25,161,107,181,20,67,184,30,116,168,207,137,77,33,198,44,39,156,179,94,162,143,137,203,14,148,185,121,201,17,227,148,124,3,59,170,227,42,181,8,155,65,151,134,178,116,52,57,7,164,153,158,205,177,98,41,68,187,236,143,84,7,9
 3,199,66,41,209,21,43,54,8,220,189,173,154,252,113,69,17,36,232,123,89,170,191,223,49,217,138,109,241,147,247,92,15,132,7,58,167,38,32,12,252,45,224,185,42,63,236,200,28,122,147,63,153,39,94,36,174,31,240,106,69,42,68,206,221,66,3,178,2,102,154,136,163,199,231,109,22,205,35,75,165,128,219,14,244,9,207,183,21,193,160,113,114,0,70,172,103,91,177,124,33,250,245,113,221,194,247,33,58,207,106,190,12,40,221,194,76,220,218,212,168,115,34,231,95,56,112,187,213,40,39,0,28,69,88,37,215,168,66,117,112,122,188,185,240,134,122,89,219,240,4,111,107,79,247,10,81,29,78,23,238,214,214,143,192,115,4,19,219,79,220,16,156,142,238,152,58,199,20,231,81,118,130,150,175,132,131,222,28,192,123,35,70,187,106,181,107,191,173,155,213,66,231,133,138,188,222,159,88,199,202,213,30,196,25,5,72,62,41,128,109,65,208,187,231,109,7,9,32,124,12,241,164,161,244,207,34,38,43,237,51,31,146,119,154,149,162,8,37,146,245,0,108,108,117,50,44,152,35,151,218,62,221,185,177,174,138,163,157,145,205,200,192,98,93,246,135,3
 7,222,92,115,56,71,20,192,108,167,163,161,18,121,156,191,95,31,178,245,92,5,47,10,202,246,192,79,145,17,70,2,8,64,162,121,228,211,206,138,56,123,241,196,70,54,203,63,246,192,37,11,165,241,37,238,182,104,64,91,39,97,179,239,149,123,208,189,91,139,123,167,60,201,39,92,73,239,187,129,106,20,21,124,1,107,230,91,0,247,27,137,100,150,29,15,201,116,3,131,126,104,241,252,242,188,1,83,18,216,28,74,73,223,194,227,67,10,95,187,107,150,243,186,36,144,152,146,189,51,217,73,78,28,77,88,135,202,246,199,214,52,65,97,102,115,171,164,195,54,154,29,206,30,23,181,150,236,146,0,171,219,237,28,106,51,75,43,23,67,81,200,111,217,206,143,41,160,97,176,102,91,172,45,203,52,230,139,108,133,107,86,162,209,124,71,198,77,199,2,64,174,229,0,120,63,212,122,64,195,200,217,68,43,58,27,25,97,201,43,141,128,89,150,3,75,59,60,168,121,247,2,140,151,48,22,146,145,165,203,247,103,49,54,71,32,182,224,175,62,21,209,231,68,109,200,174,68,77,136,189,210,207,27,116,183,51,14,101,153,158,239,106,6,122,200,193,164,246,22
 8,155,120,19,164,91,109,90,85,171,59,0,163,84,219,176,29,90,182,61,0,88,141,134,11,94,49,226,93,216,65,242,31,144,70,208,65,17,225,115,223,10,167,188,198,194,139,196,204,239,98,73,100,106,253,191,71,108,27,166,91,147,21,61,133,68,1,223,162,252,131,7,242,182,24,150,205,136,82,204,44,157,12,232,73,97,152,126,189,12,203,181,61,176,69,1,103,132,94,238,204,252,5,249,133,142,98,112,93,116,158,81,74,156,207,65,214,6,58,31,30,84,188,142,172,12,142,224,7,196,117,59,205,127,60,228,243,154,26,137,98,247,91,135,50,9,157,168,151,68,153,217,142,235,96,215,255,63,25,147,8,196,161,142,22,246,133,17,187,94,105,94,26,45,53,240,249,33,225,79,231,170,225,230,89,196,237,136,122,152,232,181,141,176,187,125,30,170,69,108,191,231,104,2,134,234,74,230,186,116,172,80,85,146,162,104,132,155,213,156,68,247,189,242,20,219,158,30,81,232,16,234,165,172,235,32,99,205,197,96,17,180,73,9,135,153,193,145,79,115,49,38,17,211,48,70,116,169,63,5,70,7,78,60,178,8,210,203,116,44,81,54,77,99,190,169,177,77,171,233,
 19,150,183,133,109,10,104,170,84,85,42,67,96,89,81,81,31,22,18,238,20,160,67,56,97,112,155,206,70,87,35,216,1,151,253,52,81,51,242,194,161,125,45,16,154,5,143,240,56,175,160,72,36,32,168,27,183,150,168,103,234,67,81,67,47,122,178,7,214,207,182,81,4,236,179,21,182,27,163,29,97,87,167,47,116,68,118,150,243,22,76,167,119,165,236,223,244,252,65,28,81,38,48,105,119,93,236,65,193,52,147,120,167,34,155,195,239,204,131,128,142,179,71,246,129,205,215,236,44,164,138,123,24,194,238,172,48,236,73,104,195,236,250,75,46,2,231,91,203,106,226,225,197,208,233,143,211,99,67,34,11,252,151,20,130,94,235,199,180,148,125,245,200,165,110,191,6,6,115,5,104,134,179,222,140,243,218,168,74,36,201,60,237,108,50,30,55,77,185,82,92,143,170,110,92,129,240,209,141,23,144,147,255,170,147,70,75,74,40,97,182,220,220,181,36,118,38,59,80,21,229,56,162,136,209,15,224,104,220,244,17,171,8,198,66,161,201,163,229,99,145,177,170,221,58,96,100,13,20,219,180,154,187,98,38,62,39,194,106,187,159,121,10,84,34,254,53,40,2
 54,214,172,99,223,94,80,236,220,239,133,149,156,194,171,165,124,178,210,171,236,53,231,187,250,176,6,153,44,193,79,40,84,47,63,89,25,148,186,179,151,252,255,253,74,147,85,97,56,85,238,14,56,210,39,102,30,201,177,78,178,208,0,129,167,23,140,179,65,192,66,77,128,125,44,149,99,1,169,78,145,134,93,56,72,52,254,3,180,71,225,100,232,213,231,19,34,118,40,16,72,182,252,99,54,8,46,90,110,11,85,242,225,8,103,186,187,151,186,128,83,61,172,158,2,73,241,228,59,170,47,51,55,245,85,114,236,216,55,251,159,221,135,142,22,137,144,234,10,87,88,53,69,24,70,118,215,131,121,231,225,13,241,229,37,231,78,72,105,216,117,187,118,95,143,136,208,159,183,142,68,90,217,198,180,14,69,219,131,65,112,231,47,185,118,14,47,66,99,61,27,47,121,217,248,223,206,189,215,4,148,78,193,45,231,194,255,87,27,253,125,72,13,187,237,83,201,119,102,13,98,242,137,221,161,97,166,41,132,229,46,143,174,69,170,7,104,149,2,12,76,6,107,152,131,176,5,67,69,251,219,147,208,140,58,241,92,254,230,192,3,13,186,223,222,208,36,93,40,93,
 114,165,125,181,70,6,42,139,124,8,71,33,5,147,100,185,224,170,32,112,50,20,143,107,16,22,171,47,4,157,170,90,45,155,130,137,182,135,184,110,78,191,9,224,148,40,89,126,122,171,217,12,140,47,25,130,4,115,19,211,54,61,112,141,67,156,194,21,163,226,168,224,217,78,253,210,193,221,68,237,94,12,241,201,2,3,71,239,12,175,21,61,205,133,192,199,214,119,224,189,4,171,82,78,110,86,121,8,51,212,222,254,154,249,196,154,182,9,89,107,159,131,66,57,185,114,136,219,59,41,233,144,221,54,170,240,66,153,224,183,82,221,158,216,8,58,29,39,136,250,63,225,255,184,224,41,251,93,252,87,152,206,197,38,198,133,123,111,203,188,124,158,245,48,242,200,7,184,19,149,221,236,61,219,252,95,83,217,20,30,109,88,134,47,198,25,161,67,201,155,202,15,77,18,125,161,70,8,51,223,233,145,153,240,206,15,43,24,103,156,139,50,74,43,162,133,216,48,206,249,4,198,45,87,62,222,102,250,21,176,20,110,152,87,13,18,178,197,97,133,227,20,228,139,136,159,42,17,123,40,215,225,76,18,107,158,75,175,148,104,180,178,194,167,178,163,85,22
 6,139,180,42,95,47,166,85,54,74,98,203,102,40,106,67,126,159,76,215,132,87,156,130,37,133,228,245,140,167,46,167,250,15,33,183,156,212,95,211,103,95,118,145,189,77,214,212,99,26,252,94,148,224,193,7,15,171,252,33,141,131,180,9,195,79,136,167,47,232,62,128,23,123,246,63,65,145,126,14,37,58,51,251,54,14,70,229,232,127,64,99,13,218,176,42,133,89,118,200,12,56,117,248,182,146,79,120,67,111,102,158,51,166,48,116,132,207,111,53,110,204,198,158,11,231,44,52,17,193,23,83,97,29,237,217,96,115,194,181,2,180,136,18,96,203,208,198,252,210,32,34,255,178,56,109,54,188,182,204,210,167,158,137,124,186,246,106,81,222,69,120,244,123,239,224,37,32,217,55,99,235,51,249,6,241,250,236,12,95,7,137,100,74,40,3,241,21,255,25,59,42,201,131,2,7,135,59,104,87,14,119,254,34,124,195,222,63,212,142,50,131,1,126,26,70,2,243,142,15,209,90,17,241,20,62,239,255,108,26,20,148,189,169,71,237,102,149,21,245,48,77,45,156,12,200,23,179,205,14,204,15,204,97,135,64,97,176,140,136,46,156,147,14,18,98,111,124,243,229,
 163,246,237,98,97,45,117,32,93,6,133,254,10,119,158,189,197,133,241,97,162,148,53,83,187,239,220,92,33,82,244,205,188,182,183,239,17,239,193,9,41,253,158,124,129,53,174,218,211,221,41,134,129,114,35,185,227,144,213,140,46,13,185,71,164,198,175,142,169,225,9,131,255,179,183,216,178,211,156,232,4,176,227,84,62,111,14,0,142,193,178,126,100,159,219,223,184,48,57,193,160,70,218,186,97,46,102,126,34,76,57,184,147,232,90,216,29,94,166,210,113,229,220,130,102,82,124,72,176,206,64,113,206,161,251,75,15,114,141,50,4,62,194,20,67,158,177,72,90,228,245,10,34,38,207,205,120,7,212,95,122,77,190,188,0,240,119,182,51,213,146,235,127,21,45,204,69,218,138,62,206,82,67,131,105,155,185,172,203,158,97,52,20,40,103,240,169,85,107,198,84,67,125,25,18,122,251,153,101,246,107,129,102,58,42,65,172,65,208,17,245,113,98,83,156,60,253,217,234,68,25,133,59,74,236,127,138,247,187,52,189,220,12,157,38,157,91,11,227,224,90,107,163,254,183,220,251,128,71,79,55,76,36,62,228,108,134,136,114,45,192,56,140,55,21
 8,156,148,168,88,40,183,75,240,219,99,187,173,78,236,26,114,55,235,121,215,50,194,10,89,195,237,168,240,26,33,50,35,82,22,209,247,217,76,36,142,168,81,116,249,236,214,190,170,46,151,31,7,233,160,244,73,211,165,188,201,159,39,64,111,242,199,31,82,48,55,178,41,168,106,239,201,76,141,164,182,66,35,29,106,45,61,247,112,113,3,144,228,146,35,110,254,99,121,136,220,38,77,136,101,69,147,46,31,173,183,64,159,29,214,160,248,252,18,126,15,43,79,236,198,192,242,22,87,204,83,190,57,41,29,36,13,83,88,52,215,77,244,119,99,66,228,129,76,45,45,63,227,100,151,113,62,134,197,113,97,29,26,218,242,238,96,173,41,79,180,12,87,141,149,199,78,14,36,128,40,111,48,108,144,172,21,194,218,34,104,171,132,89,242,108,184,27,110,182,47,101,255,40,105,14,128,254,107,148,196,238,223,236,98,254,110,115,8,16,170,30,28,168,58,230,166,17,42,134,227,106,59,192,215,9,17,203,222,176,157,211,65,19,111,180,129,195,23,212,70,230,118,29,127,179,235,146,247,232,159,134,174,150,71,84,5,163,69,183,180,31,165,222,97,112,130
 ,22,48,159,250,133,239,6,140,143,21,138,253,110,70,70,110,116,107,140,13,136,150,2,77,63,110,201,237,202,137,87,31,174,225,118,80,225,86,144,1,186,149,213,171,32,114,113,69,137,33,103,133,82,241,32,214,141,75,176,117,243,238,236,44,213,14,225,7,236,193,159,92,69,157,80,46,39,178,38,93,99,134,96,63,31,132,152,178,216,155,132,246,217,112,206,132,31,217,216,249,13,139,3,48,84,207,1,206,2,234,84,27,152,235,104,239,253,236,125,109,189,123,184,114,59,62,140,94,17,51,185,146,56,171,219,19,120,218,53,135,248,212,181,100,230,2,64,165,157,14,198,238,17,48,97,136,62,229,34,169,248,121,221,214,108,61,51,144,104,122,13,97,151,166,58,69,61,160,122,162,102,91,151,138,224,232,187,21,21,172,105,217,210,169,53,134,0,227,12,81,217,171,203,143,59,70,109,101,50,251,157,189,232,52,225,71,180,227,27,201,223,121,102,168,166,238,238,140,218,25,235,8,147,135,127,210,247,161,74,147,208,10,92,118,101,56,98,163,203,85,40,19,10,182,249,252,187,103,2,17,110,238,90,23,27,54,163,42,57,145,53,138,233,109,75,
 61,90,141,132,149,16,245,0,14,129,168,86,247,222,133,229,234,175,170,13,218,242,114,79,81,222,13,109,193,202,204,249,43,235,214,53,47,33,64,101,130,17,235,220,176,102,188,122,40,34,163,80,245,19,195,254,214,64,141,82,102,236,70,24,182,231,48,164,191,80,32,29,86,206,130,247,1,74,88,32,187,95,247,122,114,84,151,162,95,176,16,97,144,49,170,55,66,133,95,89,20,134,76,169,30,135,43,70,160,230,244,253,74,14,156,15,210,126,20,84,147,52,188,105,211,244,177,110,88,182,120,158,72,50,133,61,210,64,10,175,240,217,129,109,175,172,187,231,19,134,91,148,147,237,192,96,245,24,122,61,55,224,135,15,220,162,0,21,126,226,107,59,49,58,147,213,103,232,25,15,244,85,193,178,251,15,46,62,170,174,214,12,74,238,217,253,137,248,151,211,196,106,182,165,132,249,223,41,215,144,38,40,191,42,33,219,252,227,237,72,186,203,199,217,252,114,206,59,94,39,107,209,4,134,150,23,200,198,166,127,125,6,123,91,186,3,73,66,189,207,33,159,128,250,45,166,158,205,207,74,183,182,141,251,62,214,140,158,239,155,47,69,22,34,62,
 44,189,47,248,7,143,18,195,22,104,19,112,254,218,225,46,17,226,103,81,115,208,218,20,149,29,203,112,130,96,182,120,239,239,4,102,95,211,213,227,202,29,0,171,82,213,166,245,218,166,215,51,191,70,29,120,194,39,0,96,14,245,198,115,162,196,44,220,250,68,38,1,125,246,231,179,38,204,77,82,31,173,35,233,197,112,195,183,73,77,230,137,145,15,28,247,117,16,34,151,172,164,96,216,52,248,242,140,44,86,234,132,216,23,222,124,55,119,75,69,164,209,174,75,224,132,137,62,48,11,108,105,22,37,233,175,42,208,230,17,53,193,33,208,194,84,253,146,130,235,240,160,17,128,17,13,52,154,244,222,169,226,232,50,107,250,32,80,166,92,9,225,7,232,250,196,189,91,171,97,165,237,58,130,250,84,21,38,10,59,212,135,242,210,198,178,79,62,156,119,21,212,104,34,206,54,193,128,124,68,157,94,114,59,169,208,67,4,113,206,66,240,39,155,1,105,29,75,194,195,254,156,136,89,228,178,130,174,122,200,228,138,134,195,126,200,60,68,161,112,217,53,217,172,33,114,71,39,106,9,223,92,208,141,170,228,88,87,62,75,149,109,136,9,218,54,68
 ,180,41,14,46,129,16,228,208,95,202,240,117,125,110,63,29,145,54,87,132,47,164,137,41,37,81,137,213,235,25,6,250,53,56,144,92,149,167,233,71,31,167,248,67,76,160,148,243,77,143,11,18,183,101,0,254,246,0,14,60,151,220,234,128,200,35,161,25,60,97,80,32,173,77,62,54,227,195,67,90,78,88,193,252,1,98,228,137,37,71,63,207,20,251,65,167,142,81,244,32,57,241,172,250,129,205,244,206,117,150,183,27,112,156,90,187,159,111,58,98,238,244,105,57,121,173,246,163,170,12,255,29,64,27,10,188,217,91,137,142,221,139,203,222,75,66,22,81,78,15,123,110,50,249,201,50,200,6,165,159,189,127,1,131,85,198,255,248,28,171,135,55,18,160,77,5,161,24,238,186,159,180,230,198,159,14,135,62,47,243,69,59,254,167,132,100,250,69,213,98,73,161,47,199,2,127,151,157,22,51,255,152,59,88,118,179,54,32,208,69,73,59,230,196,102,12,94,77,207,215,40,69,235,3,54,181,144,151,20,176,202,118,216,173,249,114,245,45,109,113,3,179,49,53,101,25,219,185,195,20,16,136,142,228,59,130,237,217,51,105,242,33,103,224,177,250,132,113,228
 ,185,4,230,49,84,158,134,209,22,221,121,245,205,249,88,72,203,165,201,45,123,2,210,111,85,155,216,137,231,120,232,252,244,8,207,167,64,98,39,33,95,254,63,72,65,88,151,225,81,114,111,189,162,252,187,43,159,163,52,110,231,112,232,81,190,179,169,122,113,208,14,198,84,3,106,14,20,231,69,127,168,186,167,123,124,93,107,95,74,142,175,39,168,66,44,155,83,90,58,149,159,103,8,121,12,145,142,205,227,245,66,229,100,172,42,74,47,221,5,30,54,212,209,127,87,106,91,191,86,166,244,36,206,163,50,10,89,10,182,105,45,254,248,49,198,67,214,112,63,7,180,158,235,204,163,175,41,41,42,24,128,8,181,38,88,209,120,169,75,108,65,240,241,221,218,144,200,153,38,143,103,197,10,37,51,236,248,250,16,50,161,87,129,208,85,190,215,61,207,217,187,65,15,52,74,134,119,32,118,226,63,0,129,186,85,14,84,7,29,160,51,112,143,187,209,112,33,205,106,43,60,239,119,51,107,53,216,234,109,41,167,77,205,98,22,240,213,163,147,88,70,6,143,9,44,136,247,79,147,28,132,39,186,78,12,38,114,147,153,6,246,96,213,192,198,12,244,66,54,1
 5,70,85,245,220,92,2,160,75,53,48,127,105,97,128,31,212,161,73,70,67,171,37,247,26,134,66,179,149,76,190,211,28,191,131,131,221,121,177,153,77,130,92,4,234,208,13,232,210,247,97,77,147,18,253,9,139,186,255,255,131,169,167,145,52,153,55,126,11,95,93,4,111,240,54,184,91,68,226,196,66,88,4,182,176,28,127,217,204,121,17,65,6,121,112,217,59,170,81,117,13,162,214,224,14,165,36,20,94,192,127,37,242,22,122,173,215,243,143,37,85,40,30,178,142,119,189,32,49,188,168,183,188,68,96,249,118,228,50,72,65,246,39,194,243,30,7,192,111,148,198,211,196,28,247,231,207,175,159,174,200,81,202,32,15,107,52,73,192,218,226,217,204,92,211,161,189,53,247,12,28,57,175,159,164,242,123,239,67,53,147,153,162,116,142,213,104,171,154,195,165,49,206,3,61,4,232,174,142,14,30,132,214,133,121,226,126,246,255,154,215,78,211,116,246,121,234,226,102,153,72,252,0,235,122,104,159,66,130,31,76,106,98,180,118,161,12,173,47,9,232,211,215,16,216,92,209,124,136,61,68,134,42,164,15,148,244,43,255,166,235,22,132,230,136,234
 ,48,69,189,41,99,253,164,183,116,86,73,183,68,5,93,170,155,92,204,150,239,114,92,206,175,196,19,236,26,5,80,196,107,8,85,43,52,193,181,62,253,212,55,183,216,73,94,216,232,164,248,163,224,107,73,202,19,97,196,247,121,248,148,250,218,52,167,211,111,97,33,240,251,110,111,251,239,174,246,112,145,204,79,95,210,93,81,102,251,251,93,111,39,53,130,231,149,166,94,234,228,189,68,147,198,216,67,5,157,86,180,104,17,87,182,74,229,187,134,78,163,137,211,243,18,201,189,126,1,124,209,244,160,97,186,234,28,175,69,138,147,5,129,19,186,29,226,124,123,250,215,189,60,215,125,134,148,171,215,252,211,231,146,191,139,156,233,175,180,186,7,157,136,44,177,100,203,128,119,70,194,16,71,145,221,132,173,68,152,135,160,177,146,89,84,39,188,183,253,41,248,97,139,8,193,235,146,81,173,233,55,158,117,160,48,194,103,103,239,181,129,93,146,125,19,88,139,1,117,30,220,120,128,0,130,47,7,240,186,72,34,245,48,76,61,126,215,109,171,196,131,10,15,115,185,186,79,127,63,239,157,41,132,232,198,252,14,139,10,133,20,225,9
 2,210,8,175,117,143,140,244,211,188,10,37,114,145,16,233,98,6,191,46,141,107,99,235,182,61,108,255,65,87,57,42,39,107,110,253,161,98,233,107,162,150,232,53,149,155,44,228,122,57,192,253,241,186,69,196,177,138,153,253,102,255,73,75,98,218,49,248,168,73,77,101,70,43,35,117,5,41,167,246,23,149,36,24,213,139,10,4,32,118,66,23,147,4,34,74,92,229,111,42,226,223,196,131,75,108,122,197,40,13,236,54,235,153,90,232,93,255,4,213,52,93,43,210,43,152,191,143,159,98,126,82,0,95,69,68,194,245,180,215,14,58,135,93,10,145,142,117,17,84,87,157,216,253,145,168,132,47,142,130,129,211,225,76,179,2,245,148,228,114,186,201,250,27,74,36,54,82,46,105,10,18,121,161,1,181,145,99,45,156,241,207,182,185,229,211,111,166,31,81,121,15,232,44,177,170,192,224,129,17,3,59,71,38,20,194,225,182,113,129,195,75,250,133,111,97,117,167,47,82,140,64,79,1,231,140,60,163,42,103,233,2,150,55,207,57,99,227,232,136,166,146,155,134,80,202,89,184,205,117,79,49,248,110,169,70,161,148,245,231,171,229,148,15,125,250,117,191,1
 08,169,164,21,41,92,64,11,243,92,140,176,253,159,38,111,152,103,255,91,215,65,32,46,229,221,64,141,227,239,233,63,30,150,157,170,28,88,41,232,100,151,161,211,121,31,236,20,234,176,113,190,54,197,182,118,177,91,102,98,158,97,172,139,149,161,160,140,92,245,174,202,56,11,132,51,108,136,109,175,203,255,232,218,68,28,217,61,10,236,23,166,111,99,118,19,94,118,81,140,124,18,166,99,187,132,159,15,135,237,223,214,48,184,148,230,250,198,122,28,134,105,103,253,187,213,204,225,31,144,32,252,25,10,36,207,190,119,75,7,105,115,100,245,91,190,229,118,247,212,213,227,167,37,227,17,97,33,239,226,47,37,205,248,101,55,144,153,239,216,208,250,248,246,121,13,161,117,21,149,219,235,235,147,87,192,244,177,74,89,31,157,85,83,78,0,243,75,177,65,238,42,184,191,219,46,126,192,5,240,235,136,104,6,237,34,208,86,233,111,156,41,234,254,204,190,81,179,40,99,5,195,69,222,82,220,222,3,5,97,103,97,78,106,214,207,235,123,3,230,140,114,96,147,123,208,41,89,30,87,170,181,114,32,5,34,165,13,150,242,121,98,218,94,1
 59,44,72,71,124,54,148,233,248,1,255,105,192,144,24,10,132,24,173,81,250,8,113,30,69,119,51,208,94,150,137,24,25,31,214,92,70,201,60,132,94,155,109,183,197,236,80,143,156,175,128,7,38,218,184,100,13,183,180,214,126,150,220,118,199,127,50,145,77,130,138,103,166,219,111,134,225,105,10,210,207,54,195,118,250,88,224,115,126,6,87,176,174,73,166,96,139,229,142,85,58,228,167,46,213,244,150,88,243,209,158,234,151,247,47,27,241,37,96,3,205,253,155,129,64,91,48,199,72,149,52,149,206,123,91,164,178,9,11,245,36,30,127,61,76,26,241,12,132,52,224,253,127,250,176,40,38,219,35,232,58,111,94,149,225,216,132,101,156,60,135,118,68,77,104,34,187,75,88,103,165,241,182,202,239,127,135,32,73,93,143,107,134,87,191,105,107,245,99,74,0,51,105,202,122,185,107,67,31,248,191,122,227,222,204,130,233,123,124,31,74,119,72,242,134,5,172,226,232,2,162,254,55,177,129,69,215,93,56,162,183,189,177,79,39,6,2,190,172,0,140,17,139,91,71,189,24,72,5,234,49,27,111,146,128,0,39,64,82,74,242,62,12,161,206,218,28,25,19
 8,149,116,70,81,172,100,79,150,55,161,88,240,192,203,65,195,5,39,254,21,41,59,127,52,175,22,38,67,125,99,232,242,76,9,194,143,225,89,87,8,184,252,154,90,86,87,20,14,140,112,164,11,0,114,47,52,204,209,122,19,38,248,223,37,186,79,136,95,206,149,154,247,232,246,46,164,16,170,114,136,205,203,31,77,153,222,55,61,130,125,200,117,70,220,185,13,170,159,145,208,223,184,169,128,120,255,252,112,111,86,104,137,71,168,113,139,214,64,211,56,136,50,94,226,3,95,242,153,128,199,242,109,20,226,99,139,223,168,136,150,54,43,130,197,244,123,203,13,2,63,81,241,66,81,38,183,24,72,166,0,76,70,216,171,173,160,137,164,135,17,202,235,111,189,209,231,6,129,229,85,92,210,11,161,161,28,8,19,7,20,224,189,200,187,220,162,49,66,198,236,65,114,54,86,79,12,60,246,122,245,248,209,90,222,163,64,106,198,213,169,82,87,82,217,193,91,63,41,236,117,41,189,21,127,229,147,209,118,154,126,57,44,79,44,191,31,27,142,229,151,1,22,235,45,175,113,126,194,118,149,116,231,2,178,243,95,169,28,18,66,30,41,24,60,232,194,24,180,2
 16,149,35,114,136,127,86,17,198,123,146,75,82,169,19,236,38,6,249,73,178,136,244,186,62,232,143,38,92,255,227,151,236,35,84,134,163,157,35,118,77,37,14,175,184,196,195,178,163,159,133,243,48,221,184,239,214,166,221,16,171,194,161,72,5,28,190,195,246,54,190,136,229,142,29,250,29,244,140,38,200,128,14,39,91,229,241,107,131,38,182,55,232,217,195,212,147,86,47,6,163,136,73,7,144,68,220,40,173,50,222,215,151,125,5,20,161,92,155,133,62,149,188,34,137,205,217,84,24,4,189,225,56,189,2,4,84,38,13,184,246,233,246,140,180,79,93,215,213,135,165,234,174,208,85,244,28,187,103,206,145,102,87,52,81,11,234,120,225,128,132,1,137,129,110,13,213,141,172,28,228,130,96,160,92,153,10,122,6,253,28,131,122,135,248,141,12,251,36,21,128,237,231,189,186,171,76,4,87,91,25,39,201,147,15,53,179,94,255,234,90,155,187,127,147,231,187,143,205,106,106,202,148,145,141,17,126,63,208,16,204,185,77,54,189,19,137,230,30,39,116,240,82,139,78,46,61,3,123,243,155,155,108,113,196,235,52,49,96,79,25,136,77,96,19,120,91
 ,14,182,133,225,169,39,115,243,14,208,84,205,41,79,79,191,215,202,247,68,161,141,140,55,203,201,66,70,56,176,158,19,128,28,51,69,179,120,142,227,126,4,126,87,118,154,227,162,193,249,182,134,255,175,107,171,47,63,254,160,186,71,21,48,162,216,63,178,230,249,37,184,53,199,108,70,95,121,134,64,16,214,164,148,198,59,213,131,200,64,48,193,129,65,217,136,147,235,117,82,34,90,248,195,203,231,70,24,147,53,70,169,80,11,162,247,147,171,213,91,141,80,45,78,95,49,205,101,60,180,121,220,8,174,112,61,229,250,219,255,207,132,111,188,1,165,66,43,7,163,136,254,123,166,160,22,5,1,191,7,81,87,212,83,13,167,41,105,154,134,12,93,227,110,100,95,55,232,167,21,231,32,189,239,182,123,84,227,202,36,227,218,108,117,215,229,95,48,73,243,1,220,128,237,111,200,101,45,227,130,123,143,188,210,100,129,190,102,144,8,86,245,217,72,130,173,127,94,79,209,33,195,124,219,223,210,246,89,49,207,68,213,65,60,63,156,234,174,237,248,129,231,21,232,37,187,191,20,216,215,208,153,248,211,103,217,11,212,176,157,33,80,159,1
 35,208,86,22,205,62,22,163,72,146,191,49,155,134,234,188,67,4,78,202,227,36,130,166,222,40,234,158,74,109,100,28,5,150,189,108,154,65,185,109,236,164,203,170,156,93,150,150,254,3,167,109,61,249,183,42,131,22,248,115,210,210,210,7,130,73,253,156,105,133,23,83,114,36,47,163,168,100,194,104,62,126,246,179,149,8,211,118,17,195,127,251,115,53,135,83,51,99,187,54,145,239,97,96,74,89,62,163,210,236,87,250,142,62,63,217,138,2,60,106,125,92,224,92,202,199,137,125,147,77,109,7,230,255,10,68,48,216,184,80,34,204,205,90,200,14,30,128,172,160,150,156,204,6,146,198,83,83,93,42,144,10,145,113,131,122,19,74,68,31,113,196,226,117,159,98,28,10,52,113,56,244,60,98,7,51,240,157,44,113,43,207,251,171,224,243,109,148,171,5,189,197,108,65,130,64,52,189,182,182,87,54,178,138,171,133,127,127,109,140,179,225,246,128,145,140,20,131,218,149,39,2,192,22,130,74,56,128,30,167,175,145,165,186,208,149,106,24,95,168,43,78,19,13,171,33,24,11,56,185,100,110,221,138,170,126,76,113,63,167,66,177,152,239,118,146,
 134,251,28,235,99,36,86,182,140,248,126,236,147,195,81,170,38,70,123,40,151,119,10,13,126,167,19,91,142,66,244,96,0,221,48,67,69,73,199,231,57,65,224,79,129,28,245,177,129,158,140,31,255,196,55,158,9,81,28,242,213,29,42,76,63,239,115,254,232,97,61,101,248,251,183,19,183,248,158,246,168,121,164,34,185,135,103,66,181,120,7,151,145,241,195,226,4,240,208,214,57,62,200,234,106,49,61,188,7,112,226,246,92,60,178,210,158,156,44,167,206,204,144,136,110,59,220,93,18,191,16,111,36,11,76,154,150,37,0,254,148,121,74,152,38,140,80,140,230,135,185,123,237,244,85,248,224,59,114,157,125,37,88,34,67,82,1,251,154,149,110,149,62,233,222,220,208,211,190,183,147,62,71,112,170,90,166,235,215,57,175,213,70,34,166,138,235,117,201,7,121,98,121,191,144,152,65,135,23,133,237,77,49,140,92,198,56,1,212,142,189,205,88,235,137,66,155,56,66,142,227,210,79,71,225,189,137,7,7,235,255,238,59,37,45,181,197,51,212,246,235,219,73,98,79,126,56,37,167,234,250,7,247,139,236,246,20,50,122,55,0,83,85,17,2,84,148,182,2
 24,65,176,58,226,159,37,89,170,86,2,53,85,244,68,65,92,34,216,225,34,143,180,101,80,255,128,248,73,217,96,74,236,137,106,34,123,193,222,222,5,116,171,134,168,91,184,192,61,169,90,176,18,157,254,231,37,251,222,122,154,97,195,255,97,128,169,82,87,255,195,211,206,126,27,199,220,238,90,9,13,128,216,242,236,57,151,181,52,6,161,155,29,9,153,238,115,253,37,205,52,68,158,164,169,155,9,182,8,80,28,241,189,230,190,151,139,127,32,106,220,93,77,242,188,142,61,73,185,168,94,69,128,61,107,211,136,194,223,14,200,121,126,233,126,200,127,192,145,213,170,1,18,0,19,70,130,175,108,66,132,225,112,46,231,212,70,226,139,232,8,221,108,197,5,53,134,251,22,105,130,211,40,9,17,21,15,64,2,131,128,207,85,19,163,218,122,144,146,86,168,87,200,211,187,170,14,18,249,79,71,223,125,142,51,172,7,151,144,132,65,58,160,100,18,63,111,218,76,211,221,211,187,109,156,213,253,89,244,60,59,2,158,40,46,217,204,73,54,224,251,16,10,205,83,238,148,124,184,178,138,34,2,50,172,247,10,199,60,7,177,124,119,184,238,165,169,130
 ,207,211,140,170,155,34,83,84,60,191,20,47,114,164,249,136,58,39,22,75,110,22,214,177,146,233,248,108,98,63,195,43,83,152,6,43,233,233,143,200,71,184,198,188,24,204,10,10,151,134,187,137,114,32,91,86,183,225,7,168,203,81,23,198,153,92,68,43,187,80,82,123,179,169,128,211,124,219,117,172,19,27,148,5,238,16,17,22,114,193,123,126,231,99,112,161,69,80,3,72,148,1,102,68,177,140,7,60,216,197,226,230,46,225,154,83,249,111,221,234,132,150,141,140,43,14,131,115,232,173,134,136,219,181,229,8,136,180,110,156,185,84,11,0,4,2,24,99,237,211,224,170,47,87,179,226,230,154,209,251,57,146,214,106,107,204,85,202,44,187,92,23,60,147,35,15,80,171,78,173,121,114,176,124,212,49,116,122,3,228,36,10,128,34,158,15,161,25,185,26,219,118,248,120,118,15,102,80,51,130,209,104,19,30,28,245,239,196,227,164,206,165,187,112,184,153,50,66,155,234,61,178,139,166,141,63,108,119,58,104,48,15,248,141,10,115,19,207,182,230,134,150,218,191,6,102,217,50,195,15,6,65,196,65,82,166,51,85,67,35,240,238,20,134,101,161,151
 ,72,87,5,178,204,174,180,224,63,114,55,107,141,35,6,251,21,51,56,97,134,249,196,124,240,80,107,135,13,193,226,217,177,186,94,24,10,230,131,67,7,237,66,35,202,136,100,83,30,246,240,181,176,42,23,250,192,41,35,74,156,102,49,202,220,176,130,246,83,193,12,119,41,217,127,98,200,87,143,53,72,17,2,47,115,212,146,41,43,37,96,81,105,12,27,178,102,34,40,176,9,41,42,166,120,26,126,20,200,46,162,67,87,21,247,220,151,6,21,232,238,14,236,152,217,108,107,221,207,25,138,165,107,48,254,171,168,235,51,219,103,93,105,137,102,36,34,20,168,73,26,65,77,121,34,93,246,76,48,188,90,69,156,107,40,231,118,62,182,244,194,81,29,187,38,146,139,177,68,99,214,140,54,52,185,221,213,126,211,30,17,151,43,239,0,81,114,150,2,65,42,100,187,27,113,147,15,231,118,230,51,37,219,165,6,147,100,185,96,235,138,171,54,122,241,234,36,192,97,165,106,138,77,23,252,51,255,5,44,68,59,137,68,232,240,94,156,0,224,236,105,91,222,17,35,74,64,124,58,166,166,19,51,171,104,35,218,240,243,1,249,132,102,182,37,166,209,19,232,235,34,1
 35,155,29,173,87,230,80,65,56,216,111,166,76,165,196,97,110,75,172,225,116,97,145,231,199,154,206,38,30,52,198,215,203,182,130,204,19,2,207,93,21,219,195,146,110,71,220,206,4,231,113,25,242,116,110,198,174,188,33,4,2,172,70,184,139,123,89,45,212,143,79,197,161,75,252,154,65,89,192,153,190,254,252,237,31,219,190,77,181,46,131,164,149,73,72,115,140,116,3,65,15,169,110,202,211,75,23,191,189,139,4,123,57,13,42,67,177,34,146,54,96,224,65,211,184,22,42,128,52,238,224,81,87,75,18,51,15,10,207,74,5,220,50,24,107,102,171,183,232,40,28,241,7,147,151,212,245,16,90,163,84,190,138,168,34,75,10,127,4,69,82,18,86,25,44,157,78,154,140,128,118,41,1,153,93,178,1,75,189,239,214,205,68,71,81,71,101,149,24,61,6,144,220,229,142,38,226,233,129,153,30,163,163,136,111,161,138,98,164,44,148,24,241,147,206,166,218,90,149,250,116,220,2,61,237,17,239,171,180,189,213,148,140,186,106,138,169,10,100,92,155,247,121,201,130,68,150,220,124,43,210,207,76,255,35,193,68,111,28,128,84,139,171,185,146,203,52,76,23
 9,134,238,84,65,76,84,145,250,77,32,247,191,18,220,102,181,203,5,218,58,104,224,61,113,173,48,101,40,17,247,144,134,26,99,182,105,37,161,243,95,26,80,21,217,49,69,71,246,240,222,144,102,252,38,210,25,254,251,73,47,96,30,204,75,19,130,166,75,37,169,42,57,96,9,131,184,154,168,71,20,35,118,175,225,200,81,147,171,20,252,132,206,161,113,148,215,200,123,21,180,208,198,10,10,179,193,158,185,76,124,20,3,146,64,36,131,234,84,151,221,245,240,49,81,131,43,239,27,214,50,194,100,53,23,14,200,91,9,157,82,182,28,187,138,137,67,172,69,190,231,80,137,24,209,131,147,241,248,88,8,171,210,199,247,47,61,117,26,62,192,187,20,68,240,155,2,151,156,231,222,24,166,177,220,201,6,191,152,42,118,52,224,123,141,225,191,123,129,239,247,64,212,204,203,162,126,16,8,79,148,15,105,81,55,22,209,20,133,25,132,62,144,16,14,209,66,208,124,4,58,26,218,180,101,168,217,231,174,81,96,124,141,84,41,125,216,133,207,203,81,112,18,90,249,0,57,182,142,5,85,68,237,56,233,47,250,140,85,131,221,255,55,106,178,199,77,41,23,10
 ,49,251,67,161,113,31,247,173,35,168,8,138,22,36,70,226,23,86,112,69,133,107,200,143,166,213,35,242,48,109,222,92,173,38,116,65,19,255,111,193,236,138,143,96,230,178,74,207,246,106,191,246,224,189,104,224,162,168,88,101,25,72,252,221,71,105,228,183,201,199,33,65,89,254,65,129,21,182,4,151,22,198,109,2,180,218,212,174,247,8,189,220,244,97,229,43,90,188,250,140,118,85,128,244,28,54,161,198,122,174,228,132,194,26,229,34,99,228,43,254,135,44,140,7,68,193,169,132,161,25,235,248,101,247,150,201,113,11,107,71,140,164,196,149,148,41,185,141,33,37,98,254,24,53,202,250,151,206,103,142,77,38,158,211,0,132,8,146,165,244,33,65,176,74,217,65,44,122,211,149,112,107,81,71,113,114,201,255,253,30,254,46,44,28,67,132,28,250,149,31,75,226,164,128,22,199,162,2,124,183,120,60,61,97,211,53,222,110,165,143,78,140,109,65,248,135,152,36,3,38,13,208,181,51,72,211,63,32,72,85,128,248,72,248,227,86,151,244,192,204,60,139,247,192,216,9,18,10,187,89,38,136,83,229,199,39,97,205,12,100,63,220,61,190,148,14,
 188,99,146,122,92,54,116,111,62,45,227,139,100,41,58,229,72,57,111,113,109,153,40,253,41,243,215,167,134,154,233,71,151,69,170,59,179,6,71,104,26,58,98,191,22,171,215,33,135,101,201,208,82,147,104,221,210,91,136,78,175,20,67,179,217,62,102,26,138,30,36,26,250,166,110,185,189,226,68,138,241,115,177,197,148,153,124,231,194,8,16,196,195,177,76,118,180,40,216,243,49,235,125,42,245,97,188,84,56,167,143,101,56,141,159,173,128,175,229,62,54,248,42,187,203,176,123,238,167,218,230,140,195,117,56,98,19,33,255,95,97,232,54,210,134,216,18,116,26,36,223,83,133,209,163,225,59,67,68,88,20,182,86,218,1,130,89,208,71,193,167,221,77,251,164,180,27,239,74,247,121,187,228,136,81,207,131,129,213,34,67,39,30,99,177,177,188,182,159,146,150,66,17,24,179,190,198,146,28,121,203,200,106,170,51,142,129,253,186,100,203,114,64,131,250,131,0,238,128,217,192,5,34,198,11,63,2,35,56,111,215,80,131,124,81,140,2,230,91,202,58,103,134,217,126,167,57,113,32,253,62,223,45,162,212,250,20,3,152,129,85,143,231,2,239
 ,99,113,197,100,184,197,104,121,142,212,154,77,163,112,35,20,188,9,221,184,95,60,156,108,108,185,26,109,35,127,160,2,114,55,131,192,117,87,184,230,104,130,73,20,161,199,28,73,140,104,56,119,13,172,142,252,11,249,9,67,149,186,249,70,123,61,188,146,24,241,169,26,252,63,64,61,218,246,9,64,215,58,48,180,118,74,168,46,196,38,203,181,184,235,151,57,237,92,40,143,184,241,63,140,108,107,33,234,192,134,51,236,174,228,36,38,131,122,192,227,224,18,135,142,39,70,237,196,183,58,30,66,210,148,208,161,55,80,139,196,46,223,98,4,174,95,201,235,57,26,88,168,49,21,253,118,46,153,141,144,179,42,30,249,136,139,251,163,100,125,246,23,39,75,166,81,210,19,42,10,4,150,24,27,208,48,54,92,242,71,166,93,249,197,162,136,209,232,20,44,155,21,235,89,135,74,91,131,216,98,94,124,140,227,79,175,195,122,62,93,199,168,215,232,27,192,69,68,212,74,161,149,136,176,218,222,165,105,0,142,162,252,113,11,245,93,64,126,249,214,119,134,213,153,174,18,157,124,255,143,137,190,227,105,184,86,213,55,120,204,21,68,57,41,155
 ,175,117,157,100,106,55,4,119,192,168,79,16,15,63,119,146,254,4,202,113,7,131,47,229,95,150,77,12,185,116,20,146,119,171,33,34,242,23,190,143,31,255,199,34,169,188,22,72,252,171,148,10,36,229,223,234,53,123,105,227,218,163,31,75,11,233,37,255,95,118,88,122,48,130,117,71,139,165,12,190,18,244,150,184,217,37,32,47,131,98,30,133,146,250,23,188,191,93,168,250,121,169,56,57,15,209,211,5,151,11,124,247,13,59,162,79,244,175,220,1,166,172,26,164,147,10,84,149,120,171,46,189,59,108,188,29,39,31,138,144,152,18,167,59,215,206,234,151,157,136,224,159,175,237,52,201,98,229,47,145,9,248,66,189,204,198,79,212,110,86,251,43,0,145,237,200,211,222,245,18,183,20,237,139,179,7,219,165,77,234,132,2,129,195,66,26,90,150,77,113,90,114,3,70,111,89,163,120,0,248,175,76,158,213,139,129,117,213,87,75,73,190,206,100,62,212,61,175,23,61,63,53,216,255,11,124,187,124,245,118,156,9,199,233,239,225,35,114,41,207,249,47,68,72,60,8,29,129,7,154,220,120,103,65,158,15,76,20,183,90,121,1,202,184,210,228,115,17,1
 35,10,73,175,244,180,123,76,163,45,29,50,146,28,57,85,61,225,155,188,249,7,230,88,112,125,56,121,25,164,209,215,116,34,30,159,158,131,208,122,143,173,28,34,251,175,41,85,59,213,251,99,224,56,221,100,85,73,159,233,107,138,10,89,233,71,243,85,199,48,143,214,102,114,228,27,76,144,111,160,173,59,47,134,116,137,209,51,110,112,90,104,197,219,33,83,126,4,44,118,113,253,93,133,125,42,146,37,16,196,62,118,15,183,228,142,74,163,213,223,216,95,166,85,162,43,238,220,126,115,142,73,229,79,217,229,144,197,244,32,125,142,4,103,234,63,116,39,109,189,56,37,112,124,194,182,73,25,59,160,191,53,166,41,30,141,189,186,125,89,17,128,168,102,81,100,103,80,165,196,150,150,120,208,221,208,95,56,196,20,230,202,53,66,254,96,12,108,122,19,120,90,153,12,193,35,87,252,34,29,176,201,62,199,158,114,240,91,22,137,248,118,187,1,212,78,179,102,156,197,58,232,4,129,180,106,209,183,233,220,230,146,94,137,157,129,1,207,72,104,231,96,234,14,123,126,226,122,155,182,82,78,220,185,159,197,27,149,69,240,170,232,187,10
 4,142,118,175,140,222,3,58,26,251,157,1,234,106,20,186,146,119,233,81,255,89,88,122,96,25,211,104,118,12,77,202,56,159,249,97,64,192,124,231,123,98,89,56,180,88,227,201,57,103,144,108,105,57,169,95,114,153,178,211,149,255,87,214,229,173,233,216,20,134,195,209,192,249,56,85,20,94,74,68,234,169,175,180,243,226,190,19,164,146,47,88,142,78,14,96,163,166,6,4,38,227,96,232,142,157,25,209,20,227,26,7,41,187,72,26,91,102,122,239,220,22,177,77,197,212,41,170,89,46,26,76,50,56,89,95,144,148,120,17,198,70,186,240,4,69,26,254,130,84,44,61,138,252,238,13,160,181,93,68,77,88,19,149,138,197,48,131,214,62,228,197,173,76,116,224,89,69,98,229,68,58,202,122,209,29,203,39,8,183,222,21,121,40,143,20,65,250,108,239,119,111,254,78,153,213,4,65,26,104,202,234,30,228,219,2,243,65,205,208,20,180,74,237,175,65,254,150,194,46,61,170,46,52,169,50,118,28,63,81,54,222,153,176,175,227,38,55,69,226,80,241,133,254,132,137,161,196,8,92,45,20,43,25,94,129,17,125,215,168,18,95,153,127,22,124,116,183,119,86,129,
 52,60,238,100,168,122,86,72,13,206,255,84,133,247,160,198,133,95,102,98,219,101,209,91,201,145,186,50,167,185,154,191,113,255,207,83,18,92,157,214,58,72,133,158,115,130,229,200,91,20,229,64,232,244,165,203,194,251,73,215,250,97,133,98,38,236,93,129,102,4,179,137,34,65,73,110,155,194,226,241,236,21,17,80,184,23,192,211,221,15,50,94,247,109,97,152,110,144,43,175,160,92,234,179,93,140,237,164,163,152,253,161,241,135,2,95,238,170,144,231,38,85,146,113,17,70,217,223,41,226,13,38,116,226,205,33,126,138,207,78,154,160,142,6,35,27,126,84,170,229,163,43,77,100,174,188,112,30,165,173,5,245,114,48,19,180,219,210,134,244,246,126,138,168,108,158,59,248,179,15,242,113,51,97,104,29,208,210,81,58,255,181,226,110,173,249,35,73,109,214,231,204,154,112,101,35,246,77,98,218,182,20,79,37,106,43,212,101,227,62,54,78,221,36,84,39,145,210,209,4,241,27,46,184,107,209,2,44,16,17,32,65,55,241,94,150,223,160,8,53,32,67,18,194,31,54,112,222,54,225,2,24,115,14,104,226,69,91,167,177,238,157,209,79,241,227
 ,191,150,188,162,9,35,210,116,66,72,9,15,217,126,116,57,234,44,247,24,35,104,17,56,238,37,92,156,14,191,32,18,211,177,229,178,236,22,77,196,98,251,207,49,11,213,238,34,246,86,249,36,132,87,225,51,94,137,86,53,8,9,127,206,148,197,135,24,205,254,221,89,243,87,238,81,122,184,185,37,36,91,179,67,128,2,142,9,21,117,253,77,200,202,139,36,229,105,187,97,242,185,130,142,94,205,189,107,102,214,124,215,18,112,185,19,170,222,224,208,95,245,186,177,83,133,35,27,36,95,44,113,227,119,227,29,124,131,140,118,96,120,149,154,157,18,247,63,231,122,184,244,152,149,235,116,194,128,243,198,47,84,249,148,134,101,227,83,123,154,162,73,73,15,171,109,121,218,156,141,20,134,2,26,241,127,108,226,98,150,179,66,159,17,116,108,40,253,206,240,225,50,139,110,125,181,62,164,240,5,46,7,157,160,50,204,234,14,12,3,220,159,35,151,141,213,243,19,150,119,63,59,72,75,178,146,132,148,247,216,22,8,34,75,116,140,129,6,140,2,177,5,161,209,149,202,188,156,217,163,2,86,78,55,18,198,116,55,231,118,100,98,73,91,11,170,85,4
 9,244,40,145,4,71,61,98,178,226,131,128,148,215,139,89,55,88,189,154,199,19,153,219,148,153,203,138,228,116,16,30,78,138,103,33,109,90,9,8,38,205,49,142,76,116,0,195,100,104,157,10,246,8,154,11,77,141,247,222,83,53,209,221,227,162,114,251,142,118,67,126,179,127,145,6,56,95,35,58,191,220,9,206,209,132,211,249,159,50,20,22,180,97,255,13,205,145,144,23,190,164,70,21,86,77,71,109,34,60,82,33,143,116,9,215,192,111,194,206,130,239,101,51,111,238,99,151,88,45,147,156,46,41,93,135,248,55,101,106,52,119,102,172,235,28,116,249,62,163,37,75,129,219,53,78,157,150,27,144,6,69,166,123,45,52,40,10,131,149,25,96,181,199,118,124,249,87,215,18,49,239,211,32,35,182,27,205,217,245,125,132,10,60,111,122,251,123,26,133,189,223,119,165,130,3,68,17,56,43,103,192,0,216,44,36,226,79,127,159,5,186,123,180,97,144,79,45,151,74,176,129,141,48,91,178,185,28,44,251,142,20,254,201,246,82,27,14,47,171,161,148,162,205,30,85,233,186,156,223,218,196,177,10,83,78,68,106,138,31,218,145,137,46,38,203,12,205,9,125,
 73,71,97,208,54,162,221,29,77,243,4,198,10,61,193,10,107,21,71,199,68,67,107,141,151,36,16,196,230,16,44,49,175,161,122,72,244,95,126,177,92,204,131,225,187,194,20,251,239,31,183,133,200,197,48,200,15,188,172,117,146,254,223,24,21,117,153,41,19,110,160,210,192,254,45,6,210,28,49,82,211,214,185,57,127,44,197,215,13,144,73,125,181,133,136,3,108,203,157,15,58,41,101,219,22,132,223,71,98,88,39,175,75,160,101,57,228,19,66,229,246,150,4,173,32,146,215,104,124,237,201,91,63,183,7,87,133,207,78,155,63,7,72,147,136,135,243,64,245,160,68,84,47,239,21,27,55,185,98,255,84,77,101,204,29,20,245,87,213,140,218,66,87,16,138,103,80,58,82,140,90,247,8,80,70,125,46,81,246,214,92,167,47,78,8,65,130,64,101,103,210,183,156,42,17,169,145,184,75,156,9,78,237,194,195,206,20,148,3,247,64,30,48,27,48,248,179,37,137,47,77,65,128,25,164,21,195,135,40,13,94,80,22,145,25,154,22,191,30,34,191,167,129,52,67,145,99,47,147,16,184,121,47,6,14,104,167,7,4,203,78,30,11,32,161,95,34,82,210,141,175,72,159,184,202,
 35,40,146,4,95,213,197,125,182,235,150,194,226,166,28,49,208,76,14,72,189,10,143,187,29,188,80,209,108,214,63,212,83,41,164,217,131,234,20,242,137,104,69,202,191,157,102,142,8,221,63,46,96,13,130,18,171,53,238,81,160,238,206,199,96,142,141,70,65,115,247,147,213,74,138,231,201,224,12,163,175,243,174,137,71,127,178,100,41,115,9,180,145,50,52,53,30,34,105,116,149,243,4,189,156,124,85,59,97,181,251,174,217,210,253,70,1,168,5,76,134,196,144,124,215,243,93,117,123,224,2,156,101,171,117,110,251,217,169,146,234,34,72,235,165,228,92,112,193,248,168,167,192,123,212,245,234,223,99,229,233,239,178,8,139,210,42,97,255,238,38,178,32,134,52,121,120,69,166,185,69,213,165,71,195,9,30,121,225,10,243,101,9,98,204,15,124,219,20,27,120,158,41,108,137,30,149,32,218,7,213,79,41,235,13,64,48,109,75,254,102,64,151,143,111,44,43,86,162,209,232,35,80,105,199,149,115,189,201,121,147,207,182,31,138,20,80,214,219,50,179,154,119,94,139,67,88,240,20,27,165,146,71,51,53,157,66,236,119,226,65,191,133,116,164
 ,235,246,2,214,251,250,11,162,231,4,81,181,2,34,71,216,31,219,44,16,124,98,213,71,60,141,1,63,67,124,240,41,27,233,90,164,201,94,251,238,131,104,236,81,213,218,217,27,145,155,78,94,94,206,93,14,196,72,58,194,67,129,8,175,202,158,105,3,53,205,37,146,181,172,132,243,188,133,119,182,35,35,124,53,165,70,53,236,229,0,240,150,81,84,136,2,225,240,237,186,103,0,245,14,59,202,200,149,139,45,21,185,45,26,97,16,111,50,72,166,28,16,244,115,243,198,107,29,37,27,73,115,30,111,74,65,55,32,187,148,117,103,251,183,234,78,122,188,5,177,105,198,196,16,214,99,32,118,187,187,110,7,58,68,65,140,208,216,55,71,202,170,3,227,33,230,132,45,233,27,59,252,234,26,30,52,131,0,79,56,207,204,155,47,235,70,123,72,168,252,14,230,57,151,177,38,87,206,47,255,10,221,232,167,160,226,64,154,186,66,27,62,207,33,89,230,22,152,222,83,126,144,151,196,249,61,248,64,78,26,181,216,135,127,243,108,225,168,52,137,153,70,236,109,162,127,2,228,242,202,222,59,12,134,230,169,0,79,139,219,68,21,186,195,231,100,193,246,253,17,2
 3,222,144,69,119,193,113,229,205,11,183,239,246,42,254,174,125,217,149,183,128,0,195,102,221,193,20,176,233,116,124,161,203,215,116,151,181,130,185,119,209,213,222,70,243,5,176,206,199,4,95,41,154,200,195,112,243,4,130,8,233,73,227,129,94,250,26,189,61,41,203,192,41,163,70,21,19,216,170,35,210,143,238,196,197,100,162,220,136,176,176,183,170,162,80,69,88,164,9,45,41,17,34,85,53,191,139,215,151,212,251,210,254,109,44,180,170,60,96,167,93,220,233,190,22,231,129,73,161,170,77,211,209,217,141,6,38,156,62,53,5,164,143,42,149,75,218,152,102,64,139,180,39,141,107,172,33,137,50,138,111,69,204,84,165,223,51,111,131,136,107,2,101,172,228,42,199,124,73,192,63,244,37,241,160,204,91,104,52,173,168,211,130,207,226,18,8,38,111,78,167,121,216,67,124,196,139,23,228,223,139,59,28,112,167,233,19,111,106,224,103,147,227,233,252,171,1,118,39,31,115,234,3,49,135,9,143,113,143,236,56,161,13,190,142,55,24,221,215,189,159,238,21,218,245,41,228,157,48,253,173,250,229,244,170,27,90,134,96,192,206,189,1
 51,160,219,178,0,210,118,59,146,42,143,60,177,253,73,0,216,190,238,88,131,55,10,212,49,205,115,60,224,12,0,56,51,80,89,103,140,14,176,155,114,54,136,193,240,83,155,196,38,136,112,108,144,252,225,253,112,60,42,25,131,11,83,178,133,55,205,198,52,183,10,124,16,186,17,151,168,121,201,54,8,103,227,46,54,12,41,125,48,61,183,32,114,80,115,159,145,235,132,42,112,95,179,14,145,23,68,235,225,194,234,191,24,148,187,239,122,165,94,24,14,121,58,96,24,35,245,68,178,67,174,234,86,98,53,201,226,35,125,214,152,252,117,188,173,103,235,227,255,222,187,3,156,221,98,188,215,100,138,152,30,203,224,181,102,85,176,229,183,59,230,225,234,220,18,5,97,196,26,194,114,251,138,21,173,49,179,175,34,86,215,158,207,91,178,250,187,142,53,185,108,35,124,127,0,40,147,109,179,21,47,196,223,173,182,11,228,215,80,199,79,106,109,11,30,211,152,93,212,142,59,252,205,43,124,66,255,137,38,206,65,218,102,177,208,209,147,170,35,185,112,59,247,188,187,250,139,115,102,198,164,52,100,43,31,85,50,167,227,165,164,178,20,21,1
 1,158,170,234,224,211,143,99,17,128,52,199,245,160,0,107,211,29,137,125,114,29,52,82,88,134,182,136,246,25,47,243,73,44,209,140,112,151,189,108,172,23,114,203,32,144,179,147,8,87,126,227,110,16,152,89,226,130,244,240,64,222,52,111,147,15,108,218,9,103,90,234,104,7,139,20,250,197,100,18,43,221,169,33,173,143,243,178,121,203,230,40,250,210,203,4,57,126,115,150,48,83,168,94,221,243,38,140,206,15,162,92,211,155,113,146,188,151,187,151,115,240,214,235,105,123,162,192,166,29,158,205,20,75,64,171,186,71,118,194,108,201,201,131,222,15,22,179,175,98,99,210,28,25,217,221,184,33,247,126,243,205,197,125,173,169,40,28,48,114,165,66,147,196,120,31,236,9,187,30,79,187,124,22,4,243,159,38,236,176,57,240,185,48,236,61,120,42,18,98,188,246,230,169,15,175,173,196,165,235,89,170,132,195,173,162,116,136,135,171,0,255,86,130,191,50,222,252,251,251,250,130,93,50,11,17,255,99,195,202,221,64,81,241,227,24,55,15,16,67,120,108,86,176,104,152,108,112,183,219,69,107,209,115,78,41,12,217,14,176,154,111,7
 8,227,223,157,47,146,136,22,133,1,234,117,68,88,152,144,48,134,230,172,248,140,42,117,186,243,85,237,237,122,191,230,5,115,91,123,209,128,219,38,66,58,175,104,246,169,83,124,99,201,169,253,80,14,99,58,168,112,235,68,167,61,237,123,199,146,199,222,204,176,31,171,11,225,193,190,179,161,42,197,136,255,190,108,98,210,26,226,241,80,92,36,249,211,106,199,100,145,47,22,3,132,76,20,74,59,70,122,129,89,85,167,136,226,200,217,204,167,183,95,75,251,70,83,111,159,179,171,114,125,220,216,57,215,254,154,242,172,197,114,196,143,81,6,80,147,190,5,29,126,235,165,37,231,216,207,231,131,78,122,54,204,159,194,206,131,178,39,131,92,183,230,120,62,241,69,203,65,62,226,77,79,181,252,118,13,202,6,137,154,68,28,35,3,216,247,182,65,83,85,229,144,178,148,77,81,115,225,57,61,117,69,193,47,199,33,122,25,89,35,162,140,35,2,10,183,54,103,125,17,156,17,168,151,226,95,95,200,5,109,54,109,203,55,125,3,244,44,23,55,47,184,139,45,149,174,38,19,224,93,126,18,17,108,186,188,176,254,41,223,65,176,223,160,199,36,1
 67,136,155,213,211,203,111,4,167,112,68,118,169,216,20,70,152,127,206,65,195,88,23,100,175,3,254,157,137,44,23,27,15,208,236,218,170,194,210,216,159,192,77,59,130,107,114,130,130,7,14,185,9,80,194,15,100,10,18,231,214,40,77,119,222,193,1,105,87,247,32,228,161,107,107,42,157,202,219,155,140,90,228,221,194,118,47,81,51,61,107,109,112,124,221,134,97,19,73,1,169,148,240,21,213,52,166,84,222,108,87,191,28,236,66,53,204,209,8,148,95,171,132,70,207,164,114,193,77,199,111,99,179,254,137,155,158,37,215,107,175,190,222,76,113,115,173,213,155,161,213,211,191,94,33,104,250,218,99,146,15,99,238,83,83,117,236,223,113,154,119,130,69,185,13,109,255,170,208,18,15,0,246,99,245,87,131,237,184,161,75,44,45,113,213,239,129,154,99,102,237,189,127,0,112,34,26,97,116,42,23,106,115,54,238,33,175,81,10,105,15,66,68,215,198,10,51,106,55,227,61,227,121,27,201,30,142,164,162,163,36,37,34,186,242,143,148,127,245,20,138,185,190,202,12,236,212,115,210,157,142,147,103,85,222,194,231,240,197,64,138,127,119,1
 04,15,44,173,220,42,178,197,57,53,233,167,4,101,102,4,73,161,21,163,57,59,85,46,88,208,105,146,77,31,247,232,133,37,43,104,41,192,99,14,158,245,158,182,236,253,199,79,224,110,236,213,48,140,189,9,59,48,108,33,232,162,196,129,150,42,47,193,213,105,229,172,190,208,47,195,45,68,231,166,119,208,53,164,33,110,197,248,117,11,177,90,35,149,210,196,137,159,25,73,206,137,203,67,100,149,143,148,45,86,67,114,68,220,100,34,192,225,69,34,143,196,132,148,169,28,108,136,198,239,240,64,7,60,233,200,161,162,105,149,68,108,248,104,193,118,135,103,184,122,123,225,1,186,137,63,165,47,234,242,78,76,58,12,175,167,254,44,192,169,13,188,138,114,29,144,170,147,109,148,86,150,182,78,95,235,86,100,27,251,159,137,223,77,137,110,20,85,253,35,253,102,124,27,100,14,14,132,148,236,80,104,184,121,31,66,104,242,73,235,97,19,58,183,61,113,192,243,219,25,45,62,222,31,21,164,212,13,191,65,106,35,152,29,76,137,28,155,250,34,194,145,67,147,118,68,147,147,166,28,94,106,113,84,53,193,78,44,83,54,138,136,183,241,120
 ,245,16,229,235,181,144,184,31,96,3,34,85,40,149,157,208,113,13,131,86,55,191,157,106,186,78,249,168,76,103,211,148,206,41,158,168,239,149,229,28,18,242,108,52,138,182,84,31,183,14,77,174,209,228,78,46,65,218,166,154,155,150,45,204,123,13,10,41,197,233,176,43,210,127,40,175,93,67,174,67,248,254,130,121,149,139,135,90,252,213,112,181,165,73,202,111,152,14,165,30,102,29,172,126,24,144,28,36,99,51,217,172,96,99,189,51,178,164,99,192,2,138,245,31,66,140,12,169,20,129,58,231,76,113,63,171,124,60,46,101,188,131,34,31,148,99,179,128,229,246,77,96,245,53,10,239,134,189,36,199,235,209,127,196,195,3,116,56,200,57,135,176,149,212,131,213,122,144,198,3,55,224,119,150,66,70,195,42,200,172,194,164,1,193,185,128,52,24,157,238,49,244,233,236,128,1,118,186,161,180,46,140,132,4,245,147,28,129,90,32,134,54,10,188,208,49,164,5,47,88,132,59,254,252,221,236,106,237,95,134,40,224,145,162,93,9,18,166,113,50,66,160,162,163,39,24,112,232,86,90,171,135,186,195,114,104,15,216,68,41,180,182,138,187,98,7
 6,53,85,11,92,30,116,57,115,212,146,230,8,5,252,162,252,192,94,223,115,199,212,97,217,134,226,174,8,72,230,159,187,60,44,219,87,143,196,166,174,88,114,89,87,106,187,82,248,26,79,68,73,63,50,156,25,36,204,159,243,109,130,70,50,21,79,222,204,193,240,254,164,246,156,3,2,231,135,114,56,170,251,121,240,158,126,101,86,154,48,182,194,93,122,125,9,110,197,177,209,181,121,13,144,122,153,113,219,143,23,161,237,27,14,74,52,185,166,224,149,114,125,218,124,145,201,45,129,98,224,131,68,196,184,63,190,227,238,222,180,103,78,36,42,180,4,241,215,231,159,93,110,58,52,172,59,143,56,147,188,148,5,48,110,224,21,23,35,64,42,192,101,169,154,175,27,228,86,240,238,170,167,101,77,47,210,246,32,26,108,80,207,180,143,2,231,24,171,2,177,22,108,219,68,139,180,239,139,48,83,46,44,178,25,50,161,121,173,229,213,248,12,210,86,176,158,14,212,203,86,36,173,229,178,47,124,227,102,92,70,47,129,164,77,171,168,39,207,162,180,23,230,100,61,35,151,225,143,130,57,214,27,33,109,255,223,232,248,243,206,214,78,65,221,17
 4,203,15,214,146,227,116,30,101,138,129,188,148,11,73,232,119,101,220,2,161,124,125,215,251,100,201,137,176,50,200,229,94,222,246,210,56,215,111,49,185,186,151,108,146,118,147,217,128,10,103,179,24,178,20,98,213,231,232,41,208,11,61,155,137,72,124,41,187,146,101,1,187,144,82,13,154,33,220,231,201,245,33,193,180,27,211,6,207,168,110,186,253,245,189,32,111,188,235,119,105,222,133,106,51,198,200,127,201,71,99,53,103,32,175,242,164,89,122,146,208,49,175,36,161,86,7,121,195,116,249,175,99,91,154,123,14,169,117,97,102,167,10,3,80,237,25,167,165,157,127,169,91,117,51,4,3,15,162,87,106,144,70,119,251,9,109,139,195,252,30,83,228,198,16,107,78,138,20,29,184,43,145,112,247,114,118,9,142,15,158,222,39,148,103,25,58,206,238,153,148,93,57,44,14,59,186,187,23,163,20,33,55,233,98,73,19,21,29,62,141,48,215,159,0,128,15,74,29,30,51,144,34,65,15,12,189,179,130,203,96,78,149,250,30,10,112,108,142,94,219,96,32,249,163,232,2,31,208,85,78,98,38,43,31,70,223,4,236,172,239,233,210,168,69,157,16,127,
 103,49,107,253,211,190,199,242,43,45,166,19,64,18,237,255,176,102,18,7,24,229,42,161,102,114,145,176,48,55,2,200,39,76,129,181,50,71,19,17,177,54,88,198,159,72,51,122,93,238,105,182,176,55,47,121,164,26,40,34,60,206,231,199,115,29,180,112,31,154,217,2,66,100,52,176,172,121,197,158,215,97,216,88,123,95,251,16,178,81,25,46,34,89,66,151,40,30,189,58,152,126,67,204,133,152,155,51,177,146,165,143,249,200,37,91,97,182,178,248,105,139,188,109,222,50,31,125,169,30,251,90,154,74,32,32,39,252,74,146,147,232,85,85,20,59,59,3,144,197,43,71,211,73,4,0,239,245,112,189,146,48,124,155,91,131,108,38,70,179,225,126,62,121,89,161,82,48,77,85,108,213,125,162,245,154,250,200,22,75,19,203,98,85,144,252,214,70,214,196,255,28,185,43,220,213,142,148,126,100,219,205,14,224,26,93,64,117,21,222,213,1,161,212,245,223,213,198,79,57,177,146,150,171,203,41,255,71,198,78,186,142,33,221,37,55,254,169,68,170,231,219,205,47,14,103,54,180,197,26,179,23,50,16,28,189,35,160,196,25,76,249,164,204,124,178,143,87,99
 ,36,109,156,201,56,125,37,233,77,92,65,59,57,208,176,131,108,70,230,10,248,189,42,221,179,155,100,174,48,35,97,212,193,219,127,220,57,247,88,97,37,252,73,221,192,177,84,148,179,32,14,52,21,161,52,110,222,133,234,98,66,228,137,213,132,162,60,93,41,255,97,139,59,228,237,185,59,61,13,127,130,73,227,97,234,215,125,58,2,206,111,33,188,162,80,9,54,241,11,151,156,106,93,127,85,164,28,117,16,228,228,65,125,226,19,203,44,89,94,214,21,236,193,49,211,157,114,129,0,27,240,122,239,202,236,107,77,2,237,107,179,70,191,177,119,132,10,216,162,130,159,238,159,129,31,133,175,75,128,108,255,125,179,47,84,233,152,235,40,246,11,197,99,194,158,159,142,169,203,111,97,64,235,97,140,158,75,187,113,216,244,107,33,124,22,72,54,121,230,34,191,60,172,112,175,75,236,199,254,55,140,167,126,88,181,48,18,199,130,170,226,111,12,38,243,90,78,240,194,244,170,180,142,109,30,53,206,141,129,135,216,203,52,22,174,189,157,214,56,190,7,164,24,216,157,96,211,195,115,196,11,35,153,157,243,34,173,140,254,82,28,30,87,68,
 214,153,209,72,139,51,163,178,228,176,137,116,3,91,125,210,87,160,148,208,2,201,168,205,196,16,36,61,77,134,76,210,222,120,197,198,175,155,126,40,88,238,74,137,202,106,63,110,61,97,153,233,64,202,78,115,79,238,43,128,223,204,190,124,223,59,178,24,0,178,111,199,72,120,210,206,78,62,94,94,16,79,109,218,7,103,158,192,127,35,219,230,54,189,171,45,152,219,42,199,17,201,187,205,58,92,179,188,154,253,62,187,75,63,178,102,106,157,155,16,229,240,194,240,208,161,199,105,47,142,83,227,242,196,169,181,120,68,212,125,239,231,33,110,68,233,44,189,109,78,109,141,53,21,79,182,163,178,233,27,184,249,165,147,160,145,249,127,237,141,134,213,212,104,105,239,27,75,173,224,6,242,14,213,70,245,53,102,227,74,128,86,124,163,232,231,174,134,236,12,3,6,21,235,56,141,236,83,123,33,7,16,103,14,167,31,251,250,226,223,246,183,235,110,226,196,82,51,161,10,108,174,231,230,185,157,109,90,29,200,4,86,26,190,103,53,49,216,240,94,110,72,115,163,241,167,60,29,37,71,170,73,188,175,126,7,102,100,14,182,156,147,2,4
 5,199,66,76,188,215,152,66,115,9,41,56,136,223,205,203,58,60,231,230,110,41,109,131,24,190,71,107,183,250,77,229,89,250,89,172,57,35,199,140,197,230,243,109,97,75,34,12,197,219,76,2,237,166,5,73,35,62,58,43,14,53,26,31,191,24,188,170,132,115,245,243,212,36,50,177,49,154,217,125,77,38,157,93,238,41,80,228,175,251,74,32,255,200,190,176,201,239,88,55,41,63,6,131,172,25,118,160,83,59,49,227,232,22,180,209,112,157,247,20,213,158,43,234,66,116,236,132,45,97,169,105,26,217,185,132,102,158,245,82,4,223,29,2,161,230,49,207,15,231,254,113,46,140,196,44,71,173,136,6,134,96,156,19,73,5,73,238,22,16,184,2,125,135,250,1,170,234,108,50,246,96,244,234,158,113,78,170,142,56,189,10,50,157,182,149,82,10,113,130,162,60,117,142,16,107,35,178,146,206,47,132,201,255,8,216,220,150,65,174,98,47,97,36,171,14,195,126,150,159,232,47,246,58,171,48,14,59,162,20,192,177,49,224,254,202,127,104,7,184,140,248,182,251,215,168,91,70,225,8,69,137,125,116,75,172,149,84,130,171,102,17,235,100,230,145,222,242,250,
 59,158,189,197,242,123,125,255,70,91,93,168,147,104,67,216,233,184,138,62,83,202,233,72,147,180,89,171,86,104,100,6,190,119,57,227,168,157,187,66,209,74,101,172,41,222,36,36,53,134,108,213,176,189,249,246,12,43,9,9,140,158,123,93,130,24,236,67,122,38,1,200,88,192,90,176,90,134,186,64,71,169,158,249,238,65,151,192,244,200,110,195,226,225,122,174,26,39,166,106,209,77,4,32,228,108,206,48,46,66,84,215,191,150,124,212,124,88,144,145,35,173,47,130,242,15,8,6,235,198,141,55,151,85,154,165,0,143,163,131,132,156,104,8,224,198,50,30,249,38,130,178,83,73,38,9,99,0,196,204,199,54,8,166,20,233,156,176,172,204,244,100,198,223,77,18,14,130,166,208,148,145,228,79,233,29,69,212,55,145,143,5,206,209,151,221,237,45,103,222,102,95,211,174,59,97,197,237,39,53,2,205,121,225,92,15,130,145,219,80,85,73,147,71,163,234,56,13,72,176,68,208,212,169,22,214,106,113,11,172,246,237,27,93,202,176,164,122,222,220,202,97,86,143,99,225,94,74,58,3,30,225,61,241,101,164,95,15,51,155,157,183,159,86,105,0,180,8,19
 7,148,211,10,222,26,105,139,72,137,142,238,50,45,179,175,25,255,155,245,195,241,94,6,138,59,156,213,118,245,58,143,10,44,73,164,14,70,234,19,187,103,212,168,150,63,13,161,15,35,66,5,241,104,181,21,119,198,189,222,180,198,241,98,36,2,124,19,69,180,253,114,140,91,208,4,146,163,235,9,136,182,41,234,62,6,50,132,136,217,30,58,157,191,124,93,29,0,61,32,109,67,1,112,157,176,82,212,136,27,187,112,102,105,65,189,131,37,34,255,248,120,29,201,5,1,88,223,250,226,203,150,150,102,12,216,134,235,19,147,208,84,41,10,16,164,130,106,213,187,185,73,242,64,32,26,231,86,107,188,95,80,41,122,60,176,230,231,132,33,118,245,243,253,157,215,189,230,220,129,201,161,2,167,15,107,119,207,90,232,69,209,96,227,30,190,101,120,174,15,196,119,123,116,38,221,226,113,92,79,75,99,254,17,130,48,48,90,164,68,250,91,149,55,101,219,68,153,224,72,40,106,69,13,79,172,63,37,126,48,228,201,104,78,245,201,115,234,219,203,71,222,89,90,81,62,112,203,121,147,181,250,222,212,73,201,59,254,88,147,214,107,71,242,61,215,205,18
 ,162,254,115,125,210,156,114,56,81,211,118,71,85,35,132,25,83,188,51,214,253,121,214,74,89,34,137,225,72,132,167,49,213,219,161,197,178,29,73,108,181,17,236,246,68,207,255,230,21,1,18,203,107,157,64,238,33,39,36,198,0,8,233,200,84,21,44,136,33,224,178,17,222,77,18,150,104,210,63,107,213,176,237,188,144,18,158,186,56,36,227,95,64,93,199,135,188,169,79,186,219,249,191,210,74,188,124,53,92,18,108,128,208,210,52,139,157,42,135,251,249,228,46,128,58,38,55,230,206,214,220,92,132,1,33,225,78,172,148,115,68,243,156,167,131,160,91,59,44,211,236,33,25,113,147,44,101,252,22,83,130,21,1,97,143,23,110,253,222,127,44,239,112,88,162,219,44,109,187,106,59,236,126,148,7,123,33,179,27,32,250,1,159,72,58,146,145,51,155,135,221,97,93,106,137,7,128,204,47,110,253,221,187,188,210,220,115,147,234,55,52,109,177,246,255,29,134,239,8,61,218,217,166,129,161,33,158,24,101,141,201,88,129,140,56,6,15,210,175,252,255,63,223,236,216,27,207,222,46,176,217,130,177,113,162,5,5,128,150,60,178,139,73,53,192,22,
 38,198,84,155,37,62,111,22,197,225,63,52,117,239,49,142,241,238,125,188,165,148,253,176,20,232,70,113,159,31,240,135,121,60,184,3,249,70,4,109,205,98,206,104,156,247,22,109,45,181,88,51,139,204,209,124,146,31,201,158,75,215,247,70,134,106,106,152,136,218,31,35,199,102,164,122,191,23,202,125,36,59,127,155,150,192,253,202,12,24,236,150,177,121,32,233,32,27,51,94,143,156,220,4,185,177,106,224,135,113,29,205,39,183,191,203,78,81,198,73,119,154,61,233,17,25,41,27,167,76,72,58,119,47,218,20,172,133,201,62,135,205,94,212,108,105,112,195,55,118,212,143,176,171,20,72,236,127,43,108,53,220,83,245,168,204,18,65,186,222,4,241,2,3,170,180,224,66,227,229,24,214,84,54,199,227,79,218,38,140,139,219,194,34,51,83,5,28,75,5,213,53,104,10,121,0,70,126,87,176,72,131,27,136,21,37,169,226,29,55,73,87,10,8,240,103,193,215,227,92,1,106,191,8,49,78,85,174,133,50,140,199,192,254,221,218,125,171,26,185,154,228,135,77,225,168,45,24,95,186,159,228,154,190,182,115,83,122,45,52,18,37,225,55,110,127,53,226,
 105,29,236,21,200,47,76,174,112,44,1,113,111,82,23,1,74,39,62,167,221,173,235,138,230,184,229,8,29,72,41,156,194,58,203,57,71,40,196,117,145,20,135,31,54,73,132,81,249,76,72,213,89,138,63,251,67,2,111,211,82,72,130,196,59,141,80,222,176,35,125,73,159,209,165,215,89,69,196,114,99,227,146,21,102,37,183,195,160,212,25,93,23,142,137,61,120,19,146,122,255,193,31,41,173,72,86,167,254,68,86,20,191,2,105,164,27,87,44,44,29,154,18,219,103,93,79,21,230,172,195,211,171,190,165,51,32,247,18,233,202,192,247,242,168,145,39,254,87,39,193,87,36,204,249,42,24,89,171,21,140,216,194,158,16,54,175,112,84,154,254,118,14,164,171,84,92,9,38,205,19,141,234,220,75,141,107,100,69,119,133,77,76,230,200,215,173,33,51,31,191,46,68,152,234,81,106,52,53,22,150,46,43,161,166,55,216,10,112,75,184,180,150,39,237,82,22,23,249,114,235,210,219,118,55,15,135,134,111,46,154,61,255,243,185,135,54,41,50,192,39,244,144,56,193,17,239,119,73,86,62,215,17,188,197,193,240,58,174,75,156,158,209,108,117,64,112,146,60,64,5
 ,8,189,94,234,29,88,164,11,105,130,197,92,34,252,227,35,154,43,21,162,33,236,211,59,7,144,173,136,49,50,2,84,123,130,115,206,115,4,175,10,206,146,217,192,109,182,110,157,186,56,51,184,218,42,104,101,118,237,8,241,57,205,55,69,165,147,172,203,150,235,34,5,3,85,120,222,230,205,151,238,130,152,35,173,47,54,214,182,182,96,97,179,17,155,159,197,222,47,14,69,186,253,103,253,17,163,116,218,9,66,225,230,127,36,33,67,57,86,152,74,145,131,12,45,147,44,158,96,182,39,48,225,228,192,61,43,27,124,232,55,123,146,177,247,235,48,6,74,34,165,199,100,82,253,111,137,190,59,175,69,210,47,92,152,128,169,213,136,161,190,36,41,105,98,227,62,250,219,5,5,213,213,13,19,183,84,79,119,8,137,236,217,102,207,46,228,134,201,86,174,78,49,208,17,206,220,191,198,182,69,242,250,166,76,182,14,73,230,231,202,247,184,190,63,56,163,15,94,151,118,228,190,16,11,30,174,220,27,166,93,170,168,147,78,42,7,138,172,47,89,187,212,56,93,102,129,156,211,89,19,89,175,57,127,223,92,109,217,63,223,237,27,32,249,105,198,0,188,16
 1,204,128,131,44,210,197,158,38,102,79,189,226,26,242,160,76,192,12,246,51,25,126,81,15,63,158,188,209,92,178,203,21,211,229,134,167,81,86,221,220,139,215,157,123,51,79,2,188,68,219,176,12,238,184,84,222,96,26,172,108,139,51,21,89,189,70,196,219,152,26,10,170,91,115,12,188,43,38,146,62,4,64,35,56,7,147,180,179,231,70,145,83,183,243,224,68,226,98,205,131,130,165,121,23,51,181,191,218,106,238,41,194,34,208,150,191,122,35,36,100,224,251,255,178,56,227,204,121,52,52,5,76,233,97,43,240,45,19,51,204,60,70,42,213,135,146,2,70,185,148,252,184,27,113,127,198,229,194,93,10,181,195,25,19,241,95,200,3,244,67,217,153,13,183,146,78,60,157,202,142,168,63,171,162,247,99,107,220,113,226,65,246,27,214,206,243,205,201,195,234,230,244,94,133,9,88,241,204,93,77,233,50,60,101,72,148,141,29,98,190,225,247,104,44,44,126,77,195,12,180,147,155,70,148,49,33,90,127,61,141,124,241,244,51,41,103,148,42,113,225,176,147,33,192,94,63,21,78,27,101,175,100,119,160,218,107,1,198,188,214,26,46,119,52,162,24,10,
 168,206,194,117,148,76,134,35,226,16,164,182,31,254,244,236,99,93,108,62,177,33,43,132,4,82,9,109,138,213,252,42,245,141,91,90,76,23,224,48,225,154,89,193,28,18,212,108,26,2,224,189,153,21,64,146,30,151,221,118,222,254,90,177,28,46,247,142,138,237,121,194,143,130,213,209,145,8,232,10,229,71,215,52,182,125,100,111,240,247,83,63,21,100,155,71,14,1,12,194,102,93,224,12,86,151,98,120,251,130,164,58,231,236,177,168,115,130,51,209,60,108,107,207,169,173,16,124,176,76,61,26,34,122,58,239,139,118,185,189,61,212,11,76,250,76,245,171,205,47,136,146,72,24,50,139,30,78,172,28,53,217,25,44,242,178,225,172,155,74,136,2,203,9,234,197,179,147,132,123,128,63,56,25,31,140,66,54,219,98,25,80,69,204,205,253,254,235,163,136,52,19,101,22,212,139,142,226,174,215,72,165,195,35,62,193,3,183,114,116,160,63,44,228,250,194,27,87,177,39,179,133,11,155,68,248,194,115,55,183,24,248,248,54,46,59,215,148,79,158,151,246,109,211,159,188,38,59,46,179,86,86,217,44,232,119,47,43,253,5,97,115,236,164,100,63,142,2
 43,114,161,70,42,201,190,143,59,50,153,17,197,253,143,167,21,58,104,43,161,227,246,201,147,86,210,192,234,38,239,139,54,134,80,143,13,11,103,203,3,89,105,99,102,156,71,212,246,133,15,93,176,83,185,224,178,210,2,220,246,122,57,228,61,19,86,179,46,178,25,61,116,93,195,134,119,47,83,180,223,25,48,73,66,149,10,142,242,189,233,110,222,111,169,127,83,92,153,161,255,81,234,236,69,95,106,146,159,45,223,232,15,63,130,203,247,133,170,217,52,36,53,114,128,138,199,96,96,29,38,16,146,208,133,25,230,138,137,236,32,79,64,87,173,116,64,217,7,237,252,50,195,47,150,111,56,251,6,102,117,163,170,128,103,98,248,207,244,95,42,12,93,246,195,235,67,206,22,215,22,217,172,161,19,45,179,7,186,55,0,161,66,41,240,192,164,24,127,77,172,227,161,11,241,189,197,124,12,227,155,207,64,153,82,71,56,35,230,31,1,178,157,172,114,96,17,151,42,249,247,181,37,148,38,71,249,24,71,54,59,230,156,137,108,242,76,184,108,216,254,201,29,164,33,119,106,53,58,12,240,170,150,175,199,118,21,154,0,33,180,201,95,179,19,101,238,1
 33,172,200,50,192,0,145,131,152,243,38,123,38,3,105,235,251,90,103,148,161,138,205,117,53,222,86,133,142,214,155,146,21,126,165,199,30,147,48,177,94,12,28,19,5,143,39,242,38,29,204,120,45,135,44,219,123,190,29,111,43,220,82,107,214,216,215,102,151,57,32,247,213,174,229,94,137,214,209,203,91,171,200,26,253,230,221,147,16,201,99,62,78,157,226,19,164,92,160,141,237,121,207,252,109,136,137,156,62,11,154,66,92,69,101,68,131,33,142,39,205,25,33,18,218,248,138,153,144,169,173,108,159,86,126,27,61,129,207,80,251,118,135,148,122,46,126,148,200,95,10,36,214,37,27,12,130,254,32,110,157,54,150,232,218,71,152,163,158,122,112,42,28,90,142,157,172,50,119,142,249,201,141,41,50,219,230,241,29,215,39,59,65,103,210,250,154,41,96,203,10,93,76,116,39,241,0,157,172,95,59,130,169,43,118,202,161,254,134,37,52,88,80,157,134,117,25,152,72,142,196,166,210,110,200,243,222,161,224,26,134,23,110,129,241,95,229,86,39,88,203,65,61,93,14,182,253,9,149,117,34,155,151,1,47,196,9,76,232,133,108,154,60,147,38,1
 80,151,238,94,191,165,17,47,127,151,241,75,52,55,253,229,20,162,112,248,209,135,66,20,68,157,16,199,41,162,54,197,48,153,114,164,161,38,249,131,40,14,239,17,29,102,81,231,164,156,186,191,34,201,184,252,230,219,51,73,175,156,61,136,72,133,11,80,50,138,63,7,227,35,214,20,177,107,94,33,162,67,208,87,61,188,166,139,226,60,145,98,164,199,158,140,253,24,112,135,157,220,251,10,38,26,198,123,161,50,184,200,133,200,144,79,160,169,129,136,128,161,131,130,84,68,11,229,213,71,190,153,4,21,169,204,195,45,192,147,12,129,26,241,93,56,79,38,122,33,15,210,216,136,70,127,67,87,0,153,93,53,59,35,157,53,222,200,187,45,168,39,234,175,58,64,133,237,147,35,4,212,36,210,72,1,184,65,41,239,42,151,172,183,29,140,231,131,182,122,113,58,141,223,24,203,10,233,4,32,106,245,222,3,167,24,120,242,32,134,101,192,74,101,107,193,203,70,171,148,76,124,5,255,135,88,188,224,245,171,203,27,6,188,22,115,50,29,207,111,246,221,180,94,37,9,194,203,7,179,121,17,116,111,166,136,200,145,251,250,183,235,48,56,216,167,245,
 102,97,102,172,163,156,46,126,78,52,73,54,2,235,76,126,33,2,3,170,232,9,7,108,137,200,242,233,13,59,2,72,67,8,166,185,133,237,191,209,232,96,201,254,35,177,188,123,3,22,20,252,20,66,40,216,235,181,102,36,231,53,93,228,186,19,241,227,64,232,209,195,228,122,68,76,235,4,161,168,103,109,191,136,163,229,230,33,51,115,86,43,7,105,95,63,106,44,90,0,45,140,102,190,196,148,238,96,204,64,199,43,246,103,73,2,151,54,56,178,124,183,128,204,166,57,230,80,101,106,5,100,150,160,47,189,179,153,14,67,73,245,230,180,203,108,70,74,185,38,185,26,27,140,140,74,175,68,87,162,39,115,230,124,242,27,68,40,72,85,50,35,43,241,43,202,73,51,68,50,13,170,32,3,174,153,208,249,198,81,1,198,204,240,194,16,159,244,65,70,109,125,244,158,147,56,81,169,72,43,235,194,82,194,160,251,243,126,94,86,74,39,144,140,27,162,149,121,146,26,28,213,31,55,145,48,255,248,10,63,83,116,234,36,55,17,26,241,221,136,127,58,121,225,114,158,202,129,43,210,186,20,164,11,151,117,16,203,225,133,108,161,241,119,207,78,215,26,241,134,86,
 67,149,165,49,9,135,235,15,254,197,151,5,105,116,47,129,57,218,190,181,149,209,163,125,180,2,236,46,25,192,241,102,87,165,117,198,176,238,103,239,245,26,199,213,215,100,61,53,176,28,158,249,68,240,140,11,224,54,136,90,45,34,41,25,0,141,104,58,99,127,254,13,12,155,255,174,29,63,241,12,197,125,40,103,196,7,241,127,186,123,6,87,101,171,70,249,225,147,202,241,243,201,70,1,183,72,225,251,195,92,28,239,35,31,67,48,73,158,248,192,219,57,15,191,181,130,148,66,132,180,1,88,242,220,252,146,38,53,230,19,210,171,79,183,166,50,103,112,211,77,235,97,223,58,184,153,248,234,189,151,202,198,221,160,149,147,201,217,129,1,177,127,46,25,248,100,132,136,28,225,239,191,133,75,22,49,21,94,0,118,237,162,124,46,77,81,86,35,55,54,228,228,113,61,137,15,176,85,79,75,27,86,42,255,132,31,191,51,211,167,117,130,99,61,190,73,40,163,172,32,25,231,4,153,214,146,172,237,10,207,42,19,147,196,235,19,96,33,129,116,114,227,15,96,255,49,175,129,18,35,51,251,145,37,205,204,205,161,144,215,214,32,145,115,86,85,185,1
 61,35,59,94,135,38,226,91,6,199,65,17,124,142,64,172,244,38,82,214,208,111,101,17,141,97,138,133,109,48,226,143,105,86,8,98,109,148,197,196,35,200,166,36,145,210,153,141,254,168,142,234,247,205,171,90,39,253,150,5,138,206,165,170,155,103,239,80,39,117,85,175,130,177,226,193,89,251,107,50,11,103,149,65,43,108,223,75,111,228,166,53,80,147,216,218,228,160,0,200,24,175,34,133,51,108,227,143,192,225,201,110,85,83,133,174,54,17,42,106,159,185,197,252,183,85,147,7,133,62,254,51,62,87,93,80,127,235,199,42,199,58,62,95,85,168,223,38,236,2,17,136,59,214,240,106,27,0,25,124,131,81,190,143,60,140,16,192,114,101,195,20,44,57,8,225,3,43,184,218,136,183,95,219,156,150,101,35,227,233,203,228,178,147,54,153,13,67,94,70,127,128,17,21,100,110,161,53,51,111,70,121,64,155,40,101,26,91,252,91,194,95,179,206,110,251,166,239,94,173,114,25,201,117,226,184,131,33,87,198,51,33,16,3,135,217,110,116,213,105,218,97,131,96,98,39,35,255,196,247,74,159,220,166,127,241,71,38,47,187,160,101,10,123,99,67,12,79
 ,34,156,90,175,121,18,171,107,2,161,55,16,46,148,207,65,107,26,48,90,95,198,33,148,154,200,180,2,172,201,64,225,113,223,205,253,83,63,155,251,57,166,178,119,135,140,53,64,163,129,115,26,47,35,149,40,82,111,78,245,90,100,57,89,54,85,59,97,174,213,85,128,108,200,7,46,42,244,71,197,196,125,11,38,240,70,192,241,13,128,18,214,217,23,138,42,147,136,167,39,218,1,76,134,171,69,161,88,225,210,117,109,1,28,38,22,31,170,216,215,109,97,159,26,247,30,87,247,137,40,60,189,177,116,237,115,34,214,237,150,43,211,113,17,196,69,197,242,99,194,103,85,93,59,211,188,152,153,33,193,198,116,184,217,52,32,212,255,243,36,122,106,2,78,43,223,112,97,197,28,132,193,154,86,242,4,249,234,15,53,180,58,134,225,143,74,161,143,89,84,115,73,65,126,101,43,171,51,123,45,231,122,186,143,111,121,90,190,147,87,69,66,150,211,4,221,143,101,228,30,69,183,189,205,21,93,26,166,23,52,171,203,10,58,150,42,127,73,253,214,180,228,59,132,218,145,84,94,49,30,145,124,122,40,45,18,94,155,168,44,201,191,255,34,90,125,202,7,225,9
 2,36,23,1,14,115,237,234,118,2,56,215,31,145,121,215,235,111,33,172,73,195,145,187,85,165,140,229,82,37,202,28,120,118,178,71,93,61,18,62,62,55,221,20,55,167,58,78,211,244,246,252,12,187,113,66,254,36,28,24,69,18,0,96,166,14,40,9,24,151,243,217,215,39,101,205,108,116,112,4,57,157,239,246,1,3,75,171,237,170,19,255,127,41,226,70,1,194,207,187,226,183,195,122,240,30,28,246,174,56,36,21,98,101,181,92,185,49,221,110,123,166,106,255,78,25,188,136,200,43,75,159,128,49,167,18,13,13,178,202,92,25,82,60,200,78,116,0,235,141,113,111,103,70,131,218,47,15,215,115,249,62,45,254,168,20,163,53,149,175,122,250,151,176,216,237,240,65,251,138,122,153,99,141,35,194,244,191,175,236,52,175,51,89,251,204,214,61,69,83,120,149,93,36,152,73,79,122,247,194,30,163,10,91,44,80,116,144,236,143,61,223,21,103,191,202,244,147,89,192,178,62,147,147,11,137,198,126,183,16,0,34,105,124,58,247,77,115,150,80,62,226,108,182,220,70,167,26,212,146,97,200,130,131,103,17,248,167,217,153,101,225,7,19,137,180,114,71,253
 ,145,163,245,160,59,235,248,239,78,111,52,171,103,246,77,244,51,11,247,224,27,101,233,116,196,99,89,148,194,113,219,171,77,195,1,181,122,48,190,117,28,73,10,16,204,198,184,178,80,157,196,214,198,19,76,123,5,183,61,107,108,214,137,46,31,63,197,14,236,125,63,29,73,89,68,50,86,119,253,227,99,218,194,114,110,22,224,74,59,45,195,235,79,27,139,29,220,32,64,195,80,218,26,158,139,210,115,198,78,48,170,166,16,179,122,23,19,35,79,146,197,242,136,238,161,11,33,124,167,216,203,177,225,214,15,69,58,106,81,195,141,147,16,136,80,97,224,135,142,2,186,172,167,48,150,61,53,8,8,126,29,205,3,207,151,45,156,214,55,200,220,143,191,138,208,74,195,190,150,191,20,144,25,199,211,101,187,206,8,75,140,34,117,108,100,225,36,60,135,214,98,129,230,74,98,91,101,238,205,36,53,154,43,23,244,168,178,45,242,27,226,226,84,84,223,147,232,40,168,147,67,155,127,153,23,105,62,18,118,104,195,77,120,117,156,32,18,119,222,204,122,244,103,209,78,57,130,252,106,194,122,189,51,42,65,64,65,0,156,120,194,229,7,25,168,244,1
 84,75,126,85,232,249,245,66,128,93,104,27,233,233,139,254,141,34,72,228,99,49,226,181,63,126,64,216,17,57,153,124,226,213,89,193,77,69,170,251,235,241,235,221,185,98,188,227,114,38,233,113,87,103,84,204,78,222,79,219,108,95,212,197,194,61,235,12,103,162,119,232,113,158,37,24,201,157,149,148,246,255,166,106,78,23,11,93,135,222,204,13,218,155,85,246,70,100,57,139,210,5,90,7,118,133,35,153,130,241,101,62,0,109,15,236,150,237,221,2,248,150,240,116,151,174,183,48,43,135,10,119,38,190,169,205,34,95,65,213,71,80,22,91,121,94,171,125,167,148,60,102,163,70,75,75,14,227,9,224,122,34,195,66,113,188,101,96,53,85,227,76,124,60,234,51,156,3,79,30,70,117,176,13,88,36,231,64,75,238,62,56,253,142,35,47,35,57,152,52,150,11,102,192,23,60,220,219,54,13,236,84,208,250,45,187,59,51,170,148,237,172,184,252,72,225,168,161,116,219,171,59,75,183,19,48,115,118,223,250,3,195,72,249,157,233,38,134,103,58,44,213,73,132,130,77,109,165,152,123,99,103,76,160,30,186,223,97,37,168,48,145,151,112,96,82,130,188
 ,37,98,5,77,116,201,63,223,85,153,40,131,74,48,102,27,183,52,173,31,31,73,13,89,41,140,238,212,209,93,51,43,192,72,223,207,76,224,190,220,3,135,243,1,114,198,178,22,233,161,216,136,188,23,60,221,211,183,14,221,128,254,100,218,190,68,179,29,225,234,216,118,58,207,49,255,85,172,116,91,2,141,228,26,146,221,164,134,247,88,116,210,68,134,204,185,120,113,223,252,192,24,89,127,140,57,111,177,90,60,99,247,197,147,25,73,138,253,29,54,154,136,229,79,86,155,4,36,13,89,157,80,178,17,73,131,136,123,25,107,132,169,21,230,18,77,67,1,223,235,208,161,236,47,31,237,215,134,172,73,192,236,250,207,136,215,49,177,79,10,28,245,112,254,225,97,159,236,46,45,190,134,190,154,220,191,227,159,200,82,198,97,126,24,136,166,112,27,234,3,28,191,141,115,224,161,206,201,28,148,88,135,242,218,38,136,187,208,119,186,187,226,31,209,233,169,186,63,123,181,80,44,227,33,221,160,109,199,154,188,222,252,200,65,149,61,180,194,234,34,157,36,78,187,90,211,67,13,29,215,236,211,101,95,2,239,26,114,17,232,10,86,94,138,95,
 146,99,183,131,187,176,252,7,224,51,209,187,171,71,253,28,52,224,117,106,221,27,71,56,157,72,164,254,220,1,10,176,81,115,13,27,18,58,70,172,217,128,65,23,214,72,14,178,178,76,190,208,13,103,151,200,71,51,252,192,196,197,158,58,245,125,51,242,231,6,158,196,146,249,122,93,147,9,53,33,180,106,200,160,193,221,219,125,252,144,32,101,134,69,17,247,63,118,76,241,28,93,56,154,111,154,165,17,106,111,122,135,185,130,253,107,244,211,38,115,39,192,98,39,92,167,113,226,11,113,88,149,8,60,234,152,53,160,252,124,115,90,239,58,46,200,173,164,50,97,141,243,59,234,25,250,21,193,192,237,252,142,19,247,14,150,142,43,11,247,68,113,175,56,186,103,0,75,101,70,192,98,131,97,164,13,126,166,132,117,89,217,9,28,94,228,102,234,10,73,3,200,232,70,164,41,69,239,74,134,180,43,196,96,67,75,168,46,3,246,232,189,141,105,37,144,171,167,205,137,246,57,36,104,57,50,242,206,28,232,233,106,72,119,135,156,117,113,233,163,193,96,221,142,206,37,139,231,116,108,241,79,51,74,195,144,93,253,102,45,123,78,236,202,87,248
 ,18,162,74,169,232,122,205,3,196,99,209,131,165,65,102,106,196,250,138,79,202,169,214,21,99,146,216,212,132,151,77,102,152,196,206,253,130,64,247,88,250,201,158,229,85,39,136,58,233,32,120,56,245,208,159,111,101,189,189,43,48,47,165,195,16,211,198,251,80,103,114,126,91,4,83,81,105,88,221,100,121,204,36,197,244,129,202,4,243,249,241,222,242,197,33,139,121,172,174,60,202,21,120,175,40,64,23,192,178,9,154,210,83,107,70,105,112,145,69,16,59,75,131,45,76,216,7,149,214,237,217,91,240,25,129,144,0,107,206,255,79,240,250,234,218,76,151,242,168,46,227,76,177,70,74,154,113,165,87,147,190,58,39,169,18,155,188,84,251,103,167,202,154,7,203,235,84,138,52,74,17,19,134,153,117,152,127,123,154,104,27,239,169,247,15,109,14,134,210,80,173,25,166,247,63,252,250,33,242,72,129,212,133,128,6,99,60,202,159,187,34,77,7,5,33,195,78,91,233,158,56,240,16,109,1,160,39,156,160,39,202,198,44,242,11,207,55,148,237,213,192,127,223,80,206,168,237,39,44,97,184,49,82,205,97,102,248,189,46,123,43,73,168,252,35,
 75,66,96,75,0,29,27,153,129,231,1,82,127,142,203,13,102,195,192,123,199,221,178,156,205,50,97,28,196,8,54,229,38,23,212,1,108,53,63,36,101,177,172,59,141,52,69,247,10,134,118,0,127,101,50,63,245,58,19,41,107,186,187,46,0,241,108,231,62,85,51,219,140,40,212,86,202,72,154,31,12,52,18,62,180,1,169,124,184,237,32,4,186,93,172,218,39,70,87,238,82,18,173,143,158,206,194,220,47,28,124,169,246,88,164,110,184,19,5,164,191,251,186,78,151,41,248,127,56,150,237,226,205,114,246,114,8,158,188,43,125,137,105,88,149,28,158,64,254,247,210,134,89,100,225,221,241,58,183,219,74,197,198,207,7,53,53,139,7,18,243,237,245,108,114,107,206,200,203,63,242,67,168,249,135,47,101,120,188,89,237,63,135,49,232,47,134,204,153,124,43,253,115,37,64,55,15,215,168,252,13,210,88,235,7,141,236,130,51,18,189,245,163,107,112,73,112,72,75,58,69,74,197,207,159,141,53,118,2,219,186,88,162,129,160,163,220,81,155,101,221,186,167,84,66,30,131,180,55,101,33,213,41,211,156,255,130,244,125,169,19,30,205,169,7,199,177,130,18
 5,46,6,191,29,138,250,10,251,231,76,44,249,101,89,74,43,121,7,67,214,108,130,106,136,123,151,98,80,172,109,235,108,217,21,97,147,127,17,125,164,234,125,117,65,34,244,8,54,66,78,230,159,168,42,154,206,99,123,225,242,18,206,207,202,183,81,11,251,213,80,38,161,153,51,191,102,24,50,106,240,113,30,182,24,174,41,173,61,108,254,74,75,4,186,240,143,190,56,238,97,82,255,37,48,135,0,253,31,251,233,150,150,120,78,29,22,152,239,128,114,176,205,194,43,249,248,83,94,13,179,46,178,13,30,128,89,211,68,43,199,35,112,42,184,53,229,17,221,215,162,209,214,51,69,9,91,106,149,70,170,164,164,53,150,160,227,99,68,27,164,87,114,3,27,253,166,6,82,164,93,180,243,153,69,211,208,79,216,17,45,158,247,1,186,82,239,92,96,98,78,177,38,156,88,186,84,227,212,230,108,74,61,223,39,191,78,138,96,29,30,91,150,177,86,167,203,62,6,198,83,95,198,234,212,201,119,7,75,133,108,113,52,160,117,82,4,29,24,217,2,143,48,127,101,113,22,71,132,139,238,157,129,148,31,11,229,160,65,179,211,29,8,248,247,92,137,195,218,139,90,231
 ,91,110,77,109,187,193,209,84,49,197,231,252,176,64,174,107,198,213,208,91,194,189,77,55,126,102,176,24,60,109,28,216,16,57,72,99,183,72,37,162,63,224,154,164,239,19,146,77,241,196,104,187,174,145,189,33,98,251,81,166,138,114,109,31,229,83,101,82,87,151,214,132,150,17,229,28,136,147,196,0,143,37,161,139,0,194,51,60,12,120,59,10,207,169,61,141,127,125,149,70,26,199,29,48,173,67,238,153,241,76,50,234,11,45,149,80,240,134,154,128,65,48,120,203,126,245,2,128,28,43,33,177,182,163,74,160,81,109,85,209,164,134,105,103,218,167,20,6,39,69,85,207,235,168,174,250,154,43,244,124,69,200,58,11,65,17,98,189,127,187,78,135,147,22,95,4,245,153,190,12,113,17,180,139,32,168,52,131,167,164,59,37,244,117,162,197,215,103,212,126,3,151,247,9,145,209,194,189,141,58,127,209,144,120,138,163,97,125,232,52,203,94,151,71,42,146,95,193,244,224,240,150,130,193,149,139,13,205,216,129,186,136,160,111,71,118,163,249,208,155,49,157,42,171,202,1,172,47,188,216,135,91,184,67,64,248,213,78,118,241,88,120,34,41,1
 51,159,112,5,35,54,110,74,248,9,151,9,11,201,103,204,255,76,252,33,134,172,32,105,67,71,210,226,234,41,1,171,204,50,87,107,121,26,81,44,166,183,171,127,36,155,115,119,234,36,15,234,4,99,116,234,16,136,97,158,15,3,19,93,190,240,114,116,228,157,253,149,26,154,206,103,30,1,22,188,129,168,181,67,77,129,145,224,144,136,142,26,236,81,237,167,253,148,83,41,170,166,54,241,216,30,14,74,218,109,40,207,170,254,44,73,81,47,237,137,171,179,132,239,238,242,157,54,80,222,213,70,215,99,198,246,45,187,0,127,231,161,59,198,212,32,231,203,95,157,235,226,214,37,70,125,147,100,92,1,149,235,91,11,111,72,164,9,190,243,5,4,182,210,120,173,243,44,30,16,174,95,67,110,194,144,45,191,136,241,117,49,170,130,163,32,180,31,210,126,155,201,138,193,236,209,22,233,101,194,125,15,243,166,231,173,129,99,123,18,221,224,152,109,114,58,177,114,146,103,47,19,193,20,223,39,189,203,50,255,112,92,211,213,189,40,179,140,92,229,27,27,138,33,20,5,138,5,62,49,184,150,223,112,145,126,58,20,125,73,67,134,87,44,69,192,121,1
 32,39,179,157,122,147,122,11,227,76,132,247,122,212,99,233,42,106,157,217,104,110,239,131,13,6,143,95,112,166,195,9,3,6,10,207,138,244,167,22,229,113,196,171,62,77,217,79,143,195,138,131,184,68,139,68,187,237,76,155,163,254,105,80,152,145,210,222,183,57,200,123,246,207,7,64,110,0,85,109,248,189,211,207,150,184,31,81,60,82,160,216,8,186,44,216,222,193,238,161,227,249,71,119,83,214,121,235,179,131,179,152,253,211,220,17,46,91,54,47,190,45,250,87,145,155,7,135,70,29,205,102,124,55,13,60,231,118,89,10,90,199,172,10,239,248,90,130,60,239,200,165,187,73,148,179,220,207,203,38,28,76,77,210,241,143,255,144,82,133,63,62,250,164,206,227,248,254,37,129,43,240,13,23,49,92,200,123,215,230,135,195,99,70,79,123,178,233,123,43,77,41,149,190,198,162,71,34,5,44,106,27,54,120,121,249,185,81,32,196,173,167,237,170,211,36,67,255,103,135,67,239,151,194,210,63,201,217,9,106,153,105,108,0,74,219,59,223,50,92,31,28,251,8,65,248,59,108,179,185,135,39,191,3,150,52,107,189,222,12,246,194,2,75,29,99,41,
 138,62,252,113,165,241,111,115,205,106,49,208,226,189,142,99,123,209,185,209,38,136,43,93,93,233,130,107,40,171,154,176,166,164,190,77,164,32,96,5,174,88,210,135,60,207,255,94,166,0,134,67,28,121,187,215,56,29,208,94,0,87,244,133,139,71,180,152,68,24,87,107,89,224,132,246,255,157,177,31,231,189,216,118,182,245,56,171,215,137,79,146,219,48,172,9,92,158,159,91,218,90,171,42,235,174,199,23,59,129,150,233,28,64,58,140,189,93,186,102,64,93,155,83,206,200,43,89,104,244,145,145,88,111,240,16,62,124,222,202,145,219,217,86,195,118,35,202,58,208,47,134,58,61,210,75,224,92,48,212,86,31,55,250,107,233,128,231,85,60,89,180,201,87,216,50,191,133,233,217,207,223,25,134,195,54,104,194,239,113,63,67,240,184,36,209,141,128,105,187,136,108,58,72,40,35,245,176,129,70,101,220,118,20,97,138,222,30,9,137,9,208,64,241,136,82,90,66,246,176,75,154,89,77,2,154,10,97,163,248,57,79,94,53,17,108,94,239,53,103,239,132,134,122,76,47,44,76,68,226,173,73,32,146,54,82,249,89,103,207,158,255,48,78,127,217,254,
 11,115,212,136,199,166,251,66,177,176,181,116,91,157,207,128,232,31,115,122,139,60,224,115,223,3,193,58,217,23,69,68,17,28,19,105,82,227,192,120,20,3,120,218,172,151,245,108,227,40,216,172,170,98,55,171,55,252,236,13,164,127,120,95,125,55,237,67,201,158,42,138,206,234,159,50,16,172,34,137,211,37,137,210,4,212,114,231,49,116,2,178,178,36,144,125,63,116,182,178,254,125,77,221,150,9,146,57,88,65,85,152,5,22,36,163,41,148,153,0,84,176,134,197,78,98,92,69,34,240,193,36,156,14,255,92,46,149,35,185,119,231,46,129,173,38,248,243,189,183,188,8,33,95,23,109,142,107,180,137,233,17,46,171,225,46,67,24,189,152,59,214,113,84,95,139,238,108,241,105,81,118,144,100,86,189,155,21,69,248,242,82,22,133,243,208,220,148,48,187,96,158,223,65,15,91,89,52,186,42,88,126,25,196,44,140,244,255,72,25,42,147,220,214,23,195,215,133,225,246,249,103,194,249,64,251,156,107,53,147,145,228,160,125,119,175,170,209,154,110,22,153,230,171,201,245,94,228,47,107,175,238,117,202,80,136,196,165,122,119,249,31,30,147,
 67,114,36,44,233,242,78,101,125,83,68,82,100,175,207,161,27,59,139,69,94,218,104,182,149,119,133,246,74,122,163,30,224,155,98,82,173,211,116,140,246,56,18,148,117,48,104,150,243,56,39,108,203,20,252,227,122,73,99,116,54,135,224,219,45,247,68,80,192,1,138,248,126,190,213,140,132,136,99,245,156,95,1,255,206,213,194,249,138,156,142,57,98,207,36,123,26,215,190,153,225,70,48,41,2,183,155,43,125,239,127,127,73,143,102,231,208,62,70,54,91,142,85,120,149,72,27,203,130,250,51,196,125,177,149,26,60,186,65,140,104,160,144,120,151,162,49,194,131,209,185,47,73,193,31,72,50,29,19,194,68,254,250,26,95,169,57,224,155,141,189,234,18,174,106,245,73,105,124,62,136,250,124,153,178,113,119,132,152,85,98,64,192,217,59,227,142,110,39,177,125,166,141,135,220,5,242,51,138,214,18,50,179,44,225,90,126,244,108,139,235,191,65,169,74,145,208,156,246,79,122,191,228,91,192,164,189,211,31,65,69,245,157,190,41,39,205,52,156,88,50,127,215,17,226,117,224,36,129,20,201,211,61,134,93,173,227,95,137,128,58,145,49
 ,58,159,45,119,174,71,240,129,197,102,68,105,87,133,117,56,154,206,199,137,254,188,251,64,89,172,174,39,116,152,22,241,79,228,231,154,47,98,99,73,202,182,112,98,56,234,209,79,72,242,38,16,177,14,231,247,147,228,219,170,252,139,64,166,251,146,163,191,169,114,227,138,24,33,90,249,110,99,174,158,63,190,188,145,111,64,53,133,74,98,173,106,35,191,71,113,157,22,36,233,169,191,246,129,72,254,156,247,85,182,117,78,255,55,26,14,16,22,221,225,54,193,218,98,217,245,109,101,114,211,218,152,117,13,197,197,57,170,86,168,141,125,247,58,155,27,202,189,121,34,218,127,19,43,108,232,88,253,88,182,90,113,153,171,170,2,107,228,246,7,123,203,211,109,89,155,188,240,28,94,134,175,84,188,132,66,89,231,103,254,93,93,139,240,250,68,57,242,135,135,177,199,163,133,243,44,141,88,210,42,97,28,146,244,235,201,148,8,172,137,33,17,180,48,2,203,68,179,136,99,70,233,16,108,179,99,121,101,249,74,205,14,192,37,8,152,0,127,218,67,178,233,178,61,186,6,168,187,192,99,181,161,206,99,170,117,143,59,169,250,39,145,154
 ,224,184,62,149,106,209,207,62,122,215,147,214,128,20,188,90,115,119,167,12,174,6,95,81,66,119,158,52,92,1,160,55,52,186,37,90,36,177,122,116,58,0,93,193,182,168,224,247,254,190,160,214,42,147,38,88,74,128,71,164,91,11,0,135,106,132,189,178,59,150,221,47,216,177,132,29,188,105,207,51,33,28,234,94,135,210,28,255,228,19,203,54,45,124,215,60,113,44,5,89,109,0,192,228,83,196,142,72,111,41,3,221,45,23,191,150,46,215,21,101,52,215,94,59,116,210,136,97,222,158,211,88,105,242,250,85,252,17,116,106,72,162,54,222,236,144,33,24,95,167,83,78,184,242,52,214,29,249,62,99,94,118,87,18,152,253,210,116,32,213,82,119,60,104,138,207,66,64,106,83,112,131,119,93,170,243,189,237,199,44,100,61,129,185,82,149,64,217,81,163,14,59,85,146,105,147,80,35,229,214,40,228,46,39,67,155,158,49,69,105,110,247,23,50,144,213,222,14,148,32,159,140,255,208,133,82,189,1,143,26,1,221,93,73,5,219,254,30,79,52,6,153,20,94,96,141,161,203,89,198,2,253,11,41,235,17,251,243,95,12,171,122,254,39,223,192,151,120,125,84,23,
 132,11,220,244,249,89,208,6,216,52,2,17,94,125,117,34,142,120,117,128,195,144,243,101,207,224,18,182,137,20,152,228,45,219,154,229,8,132,142,144,32,70,66,145,72,202,214,21,42,71,59,20,49,242,59,174,21,185,182,10,97,111,159,208,16,227,29,195,169,203,40,205,89,93,33,37,60,112,105,67,196,145,251,233,195,219,25,48,83,206,7,93,109,42,145,53,229,50,195,40,96,193,93,199,210,68,15,150,181,80,60,28,142,209,109,47,123,210,144,38,61,103,227,20,90,11,13,165,94,55,217,247,170,26,107,198,190,4,215,107,242,239,150,127,67,153,106,84,219,247,202,217,178,212,77,107,130,249,229,217,235,112,232,237,54,193,2,83,203,248,202,195,236,84,126,235,83,176,255,76,28,215,20,186,86,35,176,180,195,69,221,172,120,135,213,158,10,105,73,175,135,72,148,200,161,50,41,128,42,125,193,250,21,92,53,70,104,45,9,14,84,147,191,231,129,166,76,39,16,200,13,201,230,203,181,203,163,242,51,234,189,12,42,230,162,196,123,250,153,22,85,228,30,152,27,6,58,59,85,45,206,187,119,102,178,195,169,147,236,116,134,180,29,217,168,189,
 177,48,243,172,86,57,233,194,206,185,235,13,212,114,158,108,204,23,110,31,22,19,10,112,57,156,47,120,26,250,199,245,116,69,186,73,90,67,199,101,125,81,125,147,42,119,150,73,142,91,252,45,62,108,133,34,34,88,0,27,53,51,119,54,21,236,136,54,19,131,199,41,71,228,247,192,158,25,236,4,200,22,21,62,44,41,136,76,85,166,158,157,69,87,113,48,13,34,245,36,143,125,163,5,206,101,113,48,33,33,145,82,201,245,35,64,80,116,8,203,55,66,62,191,51,239,118,66,40,92,197,232,57,193,10,163,117,46,76,207,62,213,51,16,31,229,138,39,145,170,94,17,60,178,31,191,92,248,72,188,48,164,247,27,67,193,172,114,153,211,240,116,112,228,48,106,219,204,218,86,26,222,145,17,208,130,58,229,213,151,183,126,121,0,65,225,107,157,44,122,202,144,58,159,227,111,195,179,202,153,49,25,248,195,136,215,2,188,198,211,64,204,12,178,47,104,70,250,196,36,5,161,182,153,46,6,127,99,28,163,178,224,179,125,23,195,254,232,101,208,109,152,207,202,202,174,76,195,69,111,218,222,130,37,110,198,160,175,176,205,112,144,29,182,142,66,196,2
 39,240,189,159,207,242,94,20,122,175,197,66,149,154,150,175,194,243,206,89,86,115,43,147,215,43,63,246,68,97,96,107,189,149,74,151,12,20,216,217,54,208,200,4,160,0,159,209,67,196,24,148,104,25,78,77,14,18,170,189,63,84,91,109,64,41,139,204,0,65,73,83,232,95,136,59,183,235,125,223,37,54,215,250,157,197,47,122,177,95,168,18,186,151,215,56,170,236,18,56,49,107,36,138,67,144,65,16,135,231,200,244,68,140,145,240,197,121,158,229,182,159,67,132,24,219,146,129,231,104,121,42,40,16,215,89,51,108,160,1,60,35,14,5,4,168,3,16,200,167,135,72,46,168,219,9,165,19,24,201,213,172,164,111,191,176,149,130,231,9,14,109,16,179,162,23,11,21,38,163,170,70,120,244,29,184,63,182,141,208,70,76,201,152,49,27,53,106,193,10,38,218,227,219,19,243,157,222,214,30,112,212,146,197,81,191,19,161,170,71,95,111,146,233,29,40,103,19,75,164,159,74,209,230,237,56,65,99,67,141,157,40,114,244,205,233,243,35,119,76,137,55,255,230,204,117,25,19,94,119,235,45,144,189,42,33,25,37,137,22,113,99,195,228,44,197,214,239,248
 ,206,44,8,194,165,105,221,234,198,155,68,75,159,253,179,109,129,61,8,165,97,125,250,60,149,147,81,84,126,113,44,181,82,237,18,156,229,131,111,225,40,160,240,101,9,132,134,179,102,151,133,34,126,149,240,237,75,159,38,74,193,150,129,245,147,191,126,239,26,7,9,244,142,58,146,99,106,69,31,238,158,137,66,187,115,55,235,51,228,69,223,27,215,41,28,22,26,191,245,219,36,87,161,34,252,11,80,183,8,224,165,123,4,65,78,111,242,138,83,32,103,143,65,109,144,209,87,181,170,158,231,98,89,106,18,0,252,32,157,192,154,29,87,25,38,32,33,249,57,161,114,229,187,225,116,230,84,61,28,198,173,104,115,231,68,201,123,31,190,90,166,205,206,221,230,241,100,238,31,101,220,124,3,26,251,178,29,167,79,242,164,209,126,92,231,121,168,195,241,52,9,246,111,247,198,215,241,180,250,242,209,9,43,33,44,255,225,248,238,222,255,205,7,80,122,61,75,31,61,131,75,136,154,202,39,172,208,63,172,109,203,136,32,106,35,101,63,3,63,223,207,131,134,7,69,49,218,34,226,71,229,245,2,40,36,2,203,198,219,101,111,202,94,148,232,190,5,
 161,167,143,52,76,191,189,32,48,8,140,162,136,138,232,31,131,14,81,223,6,220,157,204,92,194,163,221,218,37,205,207,136,106,205,6,242,107,21,94,234,249,75,139,112,33,122,177,136,29,98,163,189,173,158,132,87,73,168,105,202,176,24,2,237,153,83,6,202,198,14,201,172,93,204,248,92,230,105,254,230,57,252,60,136,131,48,42,52,147,115,77,246,196,86,79,50,22,166,202,206,120,65,35,184,180,212,233,187,128,88,136,106,233,134,174,114,173,36,156,120,64,160,201,64,213,120,246,114,141,111,220,229,251,123,13,153,179,149,35,142,71,167,113,232,18,180,82,83,28,129,142,110,149,178,86,57,37,8,141,49,23,211,180,216,120,119,107,0,59,132,139,174,27,9,159,126,86,150,247,115,230,24,25,213,71,166,122,159,19,1,250,160,232,27,235,6,220,103,114,51,116,145,105,238,161,215,58,121,143,243,233,38,100,28,253,64,52,1,110,250,163,200,16,136,90,217,46,7,28,167,227,238,117,40,32,165,26,157,252,127,88,124,222,85,208,30,68,176,78,46,42,85,134,26,72,178,77,58,72,44,220,87,69,83,222,19,95,219,14,210,94,39,201,174,171,20
 8,51,42,202,101,177,2,186,218,14,247,156,156,53,171,34,124,33,213,125,106,95,241,141,163,239,217,111,119,25,12,33,130,7,123,233,110,254,255,167,56,86,191,208,62,74,6,252,231,173,70,32,20,2,222,174,4,155,55,5,88,30,204,47,178,27,126,188,248,71,245,111,37,240,34,253,131,26,4,181,68,40,89,4,58,200,223,82,53,181,190,188,48,16,100,41,45,55,54,22,137,253,191,240,74,71,16,56,42,188,198,217,178,78,135,73,60,104,154,213,80,23,177,199,95,136,218,115,49,37,16,47,174,111,82,15,67,217,87,208,36,179,5,213,41,85,63,230,88,161,159,148,206,66,206,233,208,0,140,253,192,132,116,164,228,251,134,37,195,27,125,240,30,114,88,101,163,115,195,250,39,9,26,15,248,122,81,238,222,158,183,234,134,46,117,60,154,176,156,241,80,87,254,138,182,75,178,102,56,197,135,214,113,223,59,121,4,181,185,243,16,190,18,130,224,159,169,226,168,143,30,97,166,210,34,255,220,241,145,44,139,6,54,244,50,78,217,241,35,193,84,24,72,115,183,222,108,208,16,9,230,245,55,215,238,75,64,173,115,155,255,66,52,248,115,49,124,236,128,41
 ,95,238,241,93,156,72,161,247,117,224,23,50,12,236,91,179,13,5,28,68,182,235,244,159,198,53,215,16,56,23,77,128,229,252,23,43,154,185,85,95,93,229,206,106,20,39,145,201,203,118,227,255,23,7,181,77,118,208,199,53,130,119,183,14,81,44,228,54,167,125,155,154,233,28,59,0,57,196,235,151,219,215,201,236,68,183,10,199,2,159,111,107,19,148,1,15,24,190,173,67,101,116,153,151,163,203,143,64,63,144,216,206,139,210,135,116,250,86,12,51,118,241,118,130,246,85,213,217,45,94,49,67,45,88,135,62,114,162,2,43,118,0,251,20,224,219,209,214,105,253,166,225,130,20,202,98,118,58,159,157,102,195,192,30,159,130,180,231,235,58,127,39,20,212,67,225,157,87,216,58,227,163,234,87,48,198,154,193,234,12,112,237,207,14,1,246,28,179,183,241,106,187,229,17,40,93,88,199,185,119,159,192,185,137,202,216,246,19,61,165,87,156,94,91,100,154,192,151,68,12,134,74,139,10,117,215,208,252,165,133,15,106,150,119,107,90,93,207,57,33,216,52,200,207,50,9,97,72,190,236,204,21,29,147,95,42,22,154,242,136,137,239,177,204,187,1
 76,198,219,224,142,103,198,149,147,92,54,100,243,123,29,10,212,148,11,63,105,208,138,104,189,227,123,94,99,148,214,227,175,189,5,253,243,138,112,75,99,116,1,51,245,160,132,178,15,142,108,214,38,4,18,25,98,158,10,239,30,51,24,145,108,215,166,59,215,62,40,177,64,72,78,140,252,118,45,16,95,40,85,12,246,141,164,236,24,33,8,234,84,65,237,109,67,10,251,177,194,215,39,15,169,17,68,206,68,224,35,167,82,115,82,186,129,229,122,23,126,143,166,74,216,201,58,210,173,249,176,225,28,75,110,135,88,121,73,94,239,110,236,38,16,41,122,108,116,39,139,249,245,239,255,165,42,131,1,129,40,101,84,131,58,14,112,170,88,108,32,161,137,183,32,13,1,38,186,139,22,51,127,175,49,50,226,113,76,153,8,11,124,113,234,19,134,8,56,48,90,109,55,9,54,195,213,206,52,249,143,42,218,12,12,129,143,196,238,109,201,183,239,243,138,104,142,98,14,87,216,142,114,41,214,236,189,231,94,32,251,48,207,67,222,50,251,87,169,252,250,248,112,85,4,201,89,168,255,118,195,30,20,253,117,2,20,192,173,21,119,126,138,222,201,119,129,221,
 236,19,52,133,227,32,91,106,192,216,176,212,82,113,132,11,187,0,241,41,209,129,206,61,253,135,38,194,140,184,7,14,43,240,123,52,58,7,171,200,179,38,120,185,78,131,224,68,118,23,172,186,11,234,206,82,65,91,196,234,21,229,190,121,248,80,51,200,9,185,190,175,81,155,127,223,58,131,238,192,214,1,119,22,144,150,84,193,3,61,187,31,19,7,242,36,174,115,49,173,205,26,108,148,2,165,217,74,121,49,131,72,39,18,140,226,93,163,225,125,69,120,1,180,75,115,243,199,92,193,20,248,15,68,196,16,185,242,53,172,167,109,215,231,252,179,121,5,125,65,71,164,87,33,185,185,88,152,147,88,171,203,46,235,80,207,175,12,154,96,35,222,18,162,183,98,121,155,247,17,100,219,121,85,245,212,186,1,211,43,237,56,129,183,13,138,147,27,206,27,161,81,215,15,52,16,103,49,95,133,242,195,196,206,13,91,174,51,60,4,71,67,81,29,17,197,196,34,149,161,215,251,87,135,199,40,8,8,48,3,47,28,188,105,6,66,90,4,243,111,142,83,119,154,197,212,199,194,182,61,44,110,160,226,125,62,206,45,189,178,29,24,133,207,41,216,142,202,6,207,13,5
 0,180,20,43,31,127,164,137,114,31,53,225,228,167,87,155,12,35,59,166,65,36,134,134,80,228,255,34,142,106,61,102,165,136,57,195,88,174,151,125,250,170,41,140,54,157,194,136,32,17,200,46,229,41,157,251,108,178,67,208,218,6,243,96,80,90,54,183,209,5,96,60,53,35,69,9,162,12,138,78,54,95,60,41,27,178,48,127,19,241,19,72,28,108,213,249,162,122,59,56,3,178,28,25,3,104,248,246,244,94,76,188,237,4,9,207,54,243,65,163,170,174,12,34,100,59,198,153,49,29,223,226,202,181,11,107,13,138,199,238,175,21,11,148,166,170,232,122,133,69,69,105,51,53,200,143,159,223,255,225,144,216,43,51,195,117,195,62,219,60,57,210,65,235,49,175,90,237,177,243,239,101,159,16,16,251,10,9,83,156,174,247,93,150,215,186,18,228,172,43,225,149,70,120,71,206,252,181,237,102,179,158,151,96,149,217,80,27,32,227,195,158,9,223,190,250,90,99,205,48,52,145,6,138,114,147,140,85,168,234,150,112,245,140,174,38,227,154,91,208,176,41,46,134,222,64,145,163,221,180,96,171,168,120,6,205,24,49,117,65,246,236,234,181,135,39,189,119,59
 ,83,13,126,180,250,196,220,165,172,1,145,217,75,206,219,65,139,136,220,70,34,196,0,18,105,119,155,194,105,36,127,228,232,16,54,116,174,109,141,255,196,116,103,14,57,225,11,248,235,163,46,187,134,213,215,46,146,161,235,168,217,255,110,240,65,42,118,55,253,153,232,105,178,28,186,114,6,137,210,208,174,92,185,153,98,41,91,241,73,3,245,112,191,55,107,53,21,36,245,231,115,213,250,225,18,150,64,221,153,189,255,77,118,201,147,152,79,238,131,198,139,221,18,12,240,189,59,80,253,218,87,233,134,115,55,23,118,134,150,21,84,235,238,7,244,107,6,230,52,81,90,16,41,119,154,88,217,12,153,74,58,157,222,230,118,7,239,36,119,148,21,33,142,131,93,253,244,46,204,234,19,149,181,88,61,36,191,149,26,100,10,177,61,52,192,139,236,83,67,88,45,100,249,120,112,40,209,214,200,1,100,25,73,232,74,9,16,34,113,51,150,49,174,229,151,107,203,255,204,201,105,148,235,193,2,60,43,67,120,81,224,75,246,82,119,215,177,29,236,144,97,155,129,199,107,234,106,191,217,4,124,182,150,144,110,123,215,3,4,12,222,7,252,215,237,
 10,108,131,232,131,254,128,136,101,1,88,177,70,189,104,191,53,170,215,147,59,160,84,1,150,222,29,197,13,206,59,207,25,128,8,65,66,91,126,241,113,198,73,75,252,162,170,185,127,178,241,246,200,76,118,113,56,4,26,34,184,166,253,110,185,38,162,31,28,169,8,16,33,255,175,32,214,207,214,231,158,159,199,8,59,37,25,130,111,146,54,112,43,72,153,200,124,190,158,51,43,83,241,215,161,218,3,246,28,18,173,192,124,209,133,186,59,10,17,140,203,93,226,194,19,209,236,40,100,21,68,147,103,65,41,8,130,190,125,2,132,84,203,244,32,175,241,221,236,69,235,48,102,99,112,224,182,90,155,196,89,232,95,22,254,46,42,206,158,243,244,84,234,143,196,127,234,180,131,125,127,19,160,171,226,9,247,177,28,30,28,50,145,225,183,35,157,26,230,121,201,72,78,49,116,150,150,194,117,67,170,3,60,8,227,145,205,142,149,71,253,240,67,202,27,69,7,201,151,218,28,104,33,165,118,211,140,170,103,211,197,52,9,134,181,161,164,0,138,12,181,148,53,160,95,93,233,18,192,227,10,13,178,234,165,250,107,234,82,84,182,96,165,196,52,23,50,7
 5,3,189,214,156,252,71,227,179,212,3,122,105,161,51,149,70,186,144,70,71,71,214,162,20,143,77,161,5,24,106,232,216,249,216,30,63,178,119,13,195,58,187,82,21,196,239,107,181,122,131,250,148,66,234,25,166,76,202,146,61,163,185,171,58,94,103,101,15,88,211,143,115,194,199,203,141,238,144,123,6,254,18,210,210,39,81,133,9,191,102,67,240,225,142,16,215,77,55,144,91,169,198,123,237,112,19,108,123,161,12,45,6,32,120,210,79,171,4,83,31,73,12,99,167,160,57,244,237,247,216,205,45,244,32,90,73,52,108,41,123,240,229,226,143,190,40,77,80,30,162,141,12,12,190,249,253,236,65,105,148,208,32,133,146,11,71,208,34,155,239,118,18,164,77,47,135,104,25,170,189,115,36,72,127,39,240,13,70,144,240,3,96,173,107,20,241,157,119,197,245,194,49,82,61,44,29,104,235,51,61,190,118,246,58,87,59,39,174,173,28,29,78,44,73,162,188,114,225,234,82,18,133,35,31,151,24,27,112,7,42,79,50,143,242,168,74,139,68,187,252,0,46,192,232,40,165,179,32,154,101,124,250,75,242,21,190,220,233,195,56,170,160,54,8,242,82,125,180,6,
 114,103,184,108,186,31,234,83,246,165,146,17,163,122,192,82,97,178,66,9,172,217,166,63,139,157,47,14,15,84,101,178,154,215,159,245,186,4,12,174,177,162,176,75,106,144,69,71,161,10,151,17,5,188,10,226,85,100,104,101,135,8,72,92,140,107,210,72,170,131,74,247,121,219,64,171,88,225,246,87,47,78,91,70,168,153,20,96,250,150,29,160,227,11,53,196,33,245,182,251,83,118,247,62,164,194,243,27,69,111,168,180,187,42,75,12,53,174,76,191,33,228,68,211,251,16,239,187,60,101,222,66,29,119,67,123,129,31,189,107,78,85,153,92,153,172,111,227,191,222,62,67,215,234,46,134,188,140,47,81,73,205,133,233,241,226,141,108,31,68,197,14,115,11,15,234,205,50,188,221,123,65,43,4,143,227,182,0,31,1,209,88,217,91,36,206,67,224,105,189,168,164,245,200,187,61,233,35,198,221,216,40,151,228,217,65,81,144,167,84,5,200,141,205,212,111,120,140,231,162,15,229,226,116,31,165,248,57,160,184,136,87,94,90,121,108,157,118,144,254,116,104,157,216,42,8,98,234,38,83,221,249,165,123,193,56,186,79,141,163,159,1,90,155,169,8,2
 18,255,91,205,32,118,172,251,167,84,19,94,45,222,36,96,207,19,34,177,115,215,137,17,126,81,168,71,27,74,8,89,251,129,72,106,166,218,154,97,236,210,133,103,2,161,136,216,85,17,66,148,161,219,140,200,189,246,137,137,124,126,240,249,69,219,251,70,232,19,92,30,17,136,209,235,174,163,59,33,34,16,99,171,159,76,166,255,84,85,167,203,155,8,94,126,117,242,206,153,37,173,205,246,158,64,218,58,16,232,134,171,159,42,60,217,197,183,255,42,213,159,153,124,0,64,245,220,120,17,14,204,202,23,186,171,245,90,249,181,38,159,222,209,96,255,236,171,57,92,221,110,211,2,47,65,160,145,70,123,60,220,145,16,108,115,102,127,66,101,74,244,122,37,193,203,96,230,197,126,103,5,14,51,178,230,194,113,105,230,232,172,85,210,245,145,138,42,253,14,233,66,118,3,124,251,133,154,109,32,167,47,233,125,93,239,170,142,192,250,14,190,202,75,246,8,152,245,29,204,125,119,60,93,190,254,245,165,29,154,52,100,245,19,118,55,200,117,138,25,220,194,211,166,97,145,245,129,41,206,10,82,13,86,207,156,203,22,165,97,145,247,101,88
 ,22,229,212,96,111,165,31,213,83,135,207,180,28,83,71,107,56,210,108,57,147,129,155,5,153,172,103,109,167,142,160,119,172,217,157,125,202,229,119,13,242,52,142,142,143,185,43,232,250,166,218,101,145,79,87,29,121,210,87,215,194,29,40,96,171,212,191,62,85,131,64,62,210,46,111,3,157,131,115,93,203,191,112,12,184,168,151,116,239,243,60,240,94,5,42,85,212,239,204,163,18,146,164,118,100,86,195,146,33,180,58,81,152,28,127,237,165,173,123,250,227,77,75,60,208,168,148,90,219,79,130,16,57,147,3,116,156,200,21,167,24,95,42,73,236,150,43,66,26,128,66,211,244,28,9,63,105,124,37,119,27,10,200,99,128,55,30,21,221,168,229,246,87,37,81,102,115,151,121,111,178,242,160,92,88,156,113,18,13,224,234,53,225,159,173,39,35,6,38,7,204,167,51,215,46,68,91,67,118,58,232,231,244,195,103,221,37,38,4,125,160,1,155,220,161,137,209,115,145,158,159,2,122,115,221,74,181,178,8,145,172,109,141,172,199,164,167,8,216,90,56,160,197,84,162,174,24,255,30,14,64,79,159,89,198,205,98,181,105,146,172,240,189,97,178,30,5
 8,82,0,123,148,191,88,22,142,75,58,46,95,118,131,4,22,75,100,127,112,130,70,105,77,99,11,132,162,156,33,1,231,253,201,246,10,17,55,209,216,222,168,105,82,126,82,194,121,197,165,185,199,155,41,142,154,34,198,200,224,23,227,230,121,190,208,21,150,244,51,63,70,9,142,123,10,142,203,155,131,12,120,24,223,17,128,231,200,250,206,24,100,202,243,125,84,88,85,205,124,174,111,78,51,189,185,218,224,5,57,176,246,183,152,59,37,146,231,202,49,127,99,158,214,135,115,198,203,244,57,155,161,200,113,121,79,206,72,103,53,122,186,235,11,30,128,144,10,60,235,97,168,83,124,57,113,179,60,118,57,52,45,247,97,208,139,251,3,136,45,218,153,130,210,139,228,234,56,223,58,213,171,122,102,254,84,235,77,117,246,139,94,149,126,128,208,164,147,172,9,237,35,236,126,235,100,5,158,127,62,173,10,20,171,85,68,181,72,186,149,98,31,67,32,226,33,185,231,220,31,206,71,186,209,56,43,198,118,61,90,244,120,9,196,108,80,155,237,181,141,251,236,139,118,176,236,47,244,55,199,135,156,45,187,49,34,161,0,248,175,39,180,16,23,1
 48,255,241,18,146,108,208,217,157,72,62,38,76,164,52,196,128,128,142,171,222,79,241,45,255,169,224,10,128,30,244,205,231,91,90,62,241,215,25,92,200,203,148,56,65,122,29,182,149,29,179,170,164,154,126,151,118,173,76,131,152,50,114,191,181,202,177,95,150,67,43,244,49,67,246,217,238,122,223,111,48,162,73,45,159,42,97,127,213,189,68,190,59,56,111,240,90,80,176,197,132,227,185,142,223,252,96,205,133,98,201,5,112,186,21,182,73,49,136,191,69,31,191,177,86,96,140,40,174,207,115,231,81,207,105,40,127,184,3,175,194,109,206,172,116,74,129,232,82,218,83,215,83,26,55,26,138,15,165,84,201,228,165,128,242,78,254,0,94,14,227,83,250,182,195,110,185,180,145,244,91,153,112,235,225,239,214,70,70,230,170,147,239,197,72,223,38,245,249,153,223,68,223,213,175,86,71,27,248,13,157,88,67,169,84,180,132,221,76,15,14,115,192,31,201,214,183,171,190,216,193,140,247,187,57,145,176,183,62,233,3,248,13,123,107,89,201,59,251,131,106,142,93,98,156,181,254,49,225,80,79,66,8,200,81,18,251,169,197,107,216,243,93,
 39,139,123,135,205,53,229,148,171,49,247,240,37,114,187,42,80,104,141,173,102,9,219,36,82,252,19,138,162,142,46,94,224,241,148,134,149,68,145,73,82,211,200,194,222,49,11,245,32,162,143,150,154,31,12,243,129,36,83,24,42,194,205,197,248,30,0,83,226,192,110,227,252,94,82,180,183,1,113,174,3,160,212,80,136,169,47,244,253,171,57,64,185,134,146,179,128,5,43,17,13,33,62,49,233,220,2,65,54,164,254,239,24,231,192,1,60,85,195,83,193,50,91,203,97,19,114,212,8,91,46,247,131,247,255,102,156,231,239,230,87,224,88,81,206,104,117,113,142,189,47,33,25,151,213,253,248,115,7,223,97,120,135,62,253,127,79,225,181,161,105,206,206,233,202,207,112,15,87,104,205,203,168,45,24,175,149,185,198,245,244,212,28,104,88,99,156,242,132,129,137,100,61,120,105,201,163,118,103,226,74,241,5,77,183,59,212,85,9,130,197,238,60,68,81,54,191,131,190,111,229,77,248,199,180,88,147,229,130,8,186,176,11,128,207,188,94,199,83,77,28,255,251,85,73,255,86,27,90,20,24,160,239,20,128,144,170,250,44,47,53,227,67,29,77,20,104,2
 18,176,248,247,56,177,13,110,204,108,0,207,121,101,197,30,8,250,218,183,211,74,12,175,14,80,83,149,203,130,138,162,238,154,136,100,187,10,75,161,185,207,19,24,44,225,176,72,104,233,114,179,67,167,5,143,158,78,110,199,254,64,9,150,85,73,28,21,42,151,243,71,215,200,233,43,4,9,240,252,223,66,182,212,63,111,81,10,185,66,126,137,122,46,53,130,14,187,149,19,41,20,188,79,51,246,142,150,214,68,49,142,115,45,238,42,197,198,53,25,205,240,49,249,160,219,32,213,174,48,211,66,128,205,94,188,115,133,85,214,41,171,180,97,29,178,169,180,172,32,107,178,79,56,79,32,236,17,63,57,151,129,115,109,67,76,74,96,5,216,132,159,4,23,159,194,125,125,76,227,90,240,209,170,145,117,105,126,119,36,49,245,108,196,161,231,188,35,121,208,151,62,223,114,79,255,167,36,98,22,60,55,18,57,223,43,64,39,187,141,172,76,71,1,52,117,166,248,65,28,184,110,58,100,78,17,120,232,51,50,23,2,177,165,120,180,201,208,238,70,213,63,36,74,5,129,204,0,43,118,96,100,44,164,12,51,73,24,7,21,211,187,52,159,166,54,99,110,251,8,213,14
 5,34,141,89,211,251,163,146,111,247,79,117,91,2,189,132,228,168,68,58,44,100,120,98,209,248,11,151,45,81,43,217,215,86,236,102,1,58,219,244,60,50,217,135,197,111,246,125,149,90,210,232,109,100,237,232,68,50,156,124,223,35,133,95,190,134,45,69,115,37,194,76,52,92,61,175,187,45,135,211,66,120,98,236,202,239,131,146,137,28,103,126,68,210,54,125,171,10,165,71,7,105,219,7,53,120,73,65,183,140,143,8,79,184,205,38,67,103,79,143,200,87,134,119,99,102,208,75,19,44,6,252,226,42,222,85,222,103,214,84,39,226,115,149,168,171,121,31,227,166,149,230,24,114,152,170,103,183,46,35,83,110,102,128,255,209,226,77,101,8,40,16,17,229,98,200,215,154,86,254,98,27,183,111,221,231,86,211,47,253,117,191,227,175,111,81,224,50,68,40,192,40,229,61,95,113,131,134,100,153,151,83,75,102,112,58,191,20,151,253,108,108,203,114,207,242,223,208,203,20,72,5,160,97,205,226,50,146,218,137,15,200,141,132,95,17,246,115,97,107,171,168,250,173,159,131,22,132,171,201,25,180,163,157,166,163,56,171,33,240,84,123,238,98,72,
 44,2,221,128,130,203,81,221,146,166,47,109,187,71,118,97,192,84,90,223,235,197,10,243,218,198,104,224,188,24,193,136,176,140,63,153,165,88,25,28,114,65,204,81,75,89,116,140,154,169,236,125,112,165,98,224,205,126,94,40,32,49,61,36,86,200,174,142,85,95,23,16,18,183,54,70,56,34,64,233,90,114,113,59,183,195,75,98,101,172,41,239,35,200,101,192,42,11,93,224,185,7,206,77,143,243,16,124,238,5,151,107,239,225,151,66,202,242,13,220,60,109,167,37,196,110,252,185,76,112,219,118,123,1,0,167,24,36,188,170,194,217,26,104,126,232,204,209,10,148,210,235,184,128,193,131,165,79,238,121,228,194,67,75,192,115,117,71,222,74,189,154,51,68,117,140,145,94,253,179,116,185,243,65,63,13,147,115,29,36,92,181,140,15,128,117,187,59,42,209,116,170,33,185,92,34,210,147,201,57,170,75,162,5,185,229,111,60,19,160,170,199,35,16,48,131,11,138,165,168,197,252,148,193,133,251,16,93,26,28,253,57,207,78,89,245,54,7,52,13,183,181,93,195,70,43,11,158,244,159,1,85,176,175,200,67,118,188,72,125,5,140,248,169,170,253,228
 ,196,76,164,148,122,156,229,131,125,173,246,78,50,51,102,104,126,235,177,129,23,74,229,19,20,115,205,236,138,70,184,238,217,248,181,181,164,226,74,61,15,60,115,12,48,181,176,19,96,4,211,82,8,193,195,83,99,29,218,248,110,108,137,58,58,182,114,182,101,57,117,48,216,207,183,32,140,173,249,114,244,165,204,120,218,119,87,12,11,199,33,135,8,82,233,114,223,9,174,99,139,251,103,226,217,52,60,141,48,138,205,238,146,74,157,208,60,70,170,96,100,153,133,121,105,79,23,173,8,85,165,228,90,135,247,238,110,132,45,230,3,128,177,123,171,209,17,36,184,63,204,127,254,197,242,181,153,173,75,205,177,164,143,178,102,190,87,196,255,225,48,226,153,209,89,149,34,250,51,66,140,152,160,182,117,36,200,152,199,166,219,188,6,138,58,23,170,104,220,7,122,100,131,40,51,229,100,25,153,31,108,77,179,94,28,26,140,229,109,31,103,36,214,126,92,141,73,231,58,241,236,184,226,128,202,169,190,15,135,89,56,114,134,223,52,116,76,228,191,1,38,153,0,191,194,15,130,200,226,89,223,140,220,129,48,12,223,159,217,97,42,126,82
 ,228,23,216,253,99,223,233,217,202,180,74,172,227,234,54,198,227,170,0,79,245,211,52,164,161,85,4,103,32,135,163,146,193,163,189,128,182,80,160,254,20,72,130,191,249,67,244,28,87,32,121,82,185,195,241,11,186,4,9,49,181,164,127,225,185,107,239,137,199,35,38,95,105,17,253,162,125,189,211,93,40,41,123,197,164,168,247,132,45,108,10,66,97,143,87,35,214,180,82,90,247,206,82,117,238,62,97,112,73,234,206,180,52,40,111,104,164,134,107,14,189,36,195,205,101,105,44,41,16,76,228,162,124,138,25,114,134,48,129,71,29,138,115,157,153,68,13,144,147,125,167,247,158,78,211,45,235,98,218,125,213,235,239,214,121,214,143,212,116,18,175,36,87,58,78,26,226,153,28,175,205,5,245,184,140,70,91,216,160,95,51,132,170,104,82,115,180,152,3,248,238,206,96,156,254,69,143,246,173,204,55,120,89,34,253,178,121,119,58,240,91,146,18,251,59,18,175,112,29,233,13,17,9,26,194,80,55,3,99,222,132,196,97,28,63,104,252,194,32,156,77,111,82,4,188,191,25,154,19,204,117,5,175,35,228,113,249,91,215,90,175,105,206,118,145,74
 ,213,113,179,244,63,84,218,52,10,209,242,157,225,45,168,236,64,244,45,60,100,120,32,172,184,122,236,111,75,235,177,181,120,46,207,210,165,224,240,158,155,238,235,137,2,93,2,113,200,95,184,113,63,191,186,131,213,26,94,22,95,84,52,93,220,37,99,71,60,192,129,148,249,45,70,168,20,196,144,99,171,166,112,8,129,84,34,210,143,218,170,199,214,43,254,143,30,139,188,209,30,43,25,63,128,193,99,208,182,6,134,148,168,110,207,55,128,207,115,253,179,47,60,17,240,175,44,163,123,169,58,40,122,225,167,246,110,187,171,139,162,53,253,143,189,92,211,99,167,65,192,147,234,24,140,153,3,129,207,83,222,214,63,181,80,104,209,225,122,255,34,103,135,240,59,143,195,110,245,0,150,21,192,96,198,187,129,194,181,170,133,128,214,217,76,162,116,87,117,92,79,250,125,226,21,71,173,208,233,105,76,214,77,150,78,80,161,43,40,12,104,123,142,228,83,61,61,8,131,29,77,110,7,18,43,147,15,144,12,252,77,190,67,226,145,216,212,224,36,39,197,80,120,45,173,243,112,121,173,88,199,92,9,161,102,2,111,165,170,58,34,127,214,90,10
 0,155,181,143,189,154,88,108,2,159,112,74,248,48,206,25,206,72,11,123,138,54,249,174,241,61,233,169,61,120,244,134,227,84,189,253,147,66,160,15,111,191,184,114,204,77,192,29,56,147,177,113,50,136,216,247,149,76,10,190,102,21,202,71,2,130,104,231,22,184,189,40,249,171,39,172,187,40,107,104,245,188,60,193,36,197,37,98,137,138,41,185,148,123,32,167,158,180,126,194,29,60,74,196,150,67,98,145,50,53,191,211,29,103,241,249,223,235,92,207,152,32,110,60,147,21,129,85,64,138,22,44,158,87,243,94,205,80,167,19,73,32,93,167,145,5,145,43,90,204,210,94,31,79,251,108,2,78,141,30,234,51,144,243,128,63,195,116,102,78,118,208,195,10,136,206,18,186,30,9,220,17,74,186,54,202,110,162,243,174,228,242,171,172,28,179,207,209,22,172,198,114,148,152,24,124,193,27,119,138,104,9,108,105,33,54,173,64,117,73,233,184,172,181,189,187,12,162,103,176,173,177,70,59,70,22,132,222,63,148,70,186,12,142,103,215,14,106,101,193,236,73,132,3,93,248,161,102,134,140,253,38,217,155,39,87,157,93,104,76,242,209,224,205,18
 ,207,140,179,188,152,223,95,60,8,138,12,217,12,228,130,255,150,204,251,15,129,173,173,157,56,0,71,171,214,178,183,173,197,209,156,243,255,217,196,254,78,163,31,154,251,198,27,73,116,184,41,21,19,159,197,119,35,60,117,109,28,76,38,38,198,247,141,39,198,133,14,150,25,203,238,237,200,237,140,173,149,10,31,52,29,178,163,60,47,248,122,242,169,8,56,202,187,138,231,225,203,110,183,94,255,222,60,48,27,105,165,248,154,46,188,76,89,72,197,149,162,126,45,206,26,246,93,153,68,16,85,245,107,36,212,185,55,202,135,92,5,80,113,18,0,122,75,215,65,129,54,43,131,7,247,14,176,246,84,211,155,39,56,160,84,139,131,85,139,151,124,49,202,190,50,190,169,77,47,163,26,248,20,204,247,246,99,6,190,95,55,221,225,47,15,19,1,217,136,102,1,217,214,49,225,104,65,8,223,24,148,68,227,232,123,254,179,191,56,144,233,117,146,178,80,141,217,27,150,129,187,183,253,29,126,119,227,228,194,232,153,227,89,254,136,213,70,107,50,9,218,202,67,42,100,154,28,226,88,7,6,20,97,104,38,159,3,236,217,131,210,74,231,244,123,32,187
 ,179,37,170,71,157,72,167,79,44,110,210,63,230,166,135,144,9,253,224,128,199,250,88,51,129,19,78,200,193,171,61,94,206,134,82,177,212,252,91,239,85,161,61,240,33,49,122,13,85,157,79,38,185,201,223,33,8,247,138,0,102,167,71,151,243,90,126,35,192,171,216,254,198,18,12,144,5,34,233,215,122,81,80,182,168,45,7,154,103,167,238,56,8,186,220,33,144,108,35,38,56,59,123,133,31,208,249,136,180,137,12,230,153,30,169,175,38,147,206,183,71,220,179,71,112,208,41,63,242,30,121,178,133,140,10,200,177,154,79,69,183,91,154,74,115,118,96,36,51,115,242,85,15,139,3,120,6,107,198,224,225,41,125,210,151,187,179,1,176,115,233,144,55,115,143,51,122,228,212,189,76,55,165,150,51,151,66,135,182,169,61,224,159,139,46,255,9,103,97,212,3,146,51,151,250,209,20,222,249,196,237,0,52,55,145,176,123,43,67,26,72,181,81,25,213,139,221,23,11,35,22,214,254,216,25,188,98,18,169,134,168,31,40,245,138,147,245,216,114,134,140,218,111,254,100,67,247,25,36,163,194,69,144,97,237,3,135,220,72,146,245,204,68,0,20,51,72,4,24
 9,189,122,3,94,235,242,186,86,214,150,108,16,170,75,69,225,195,254,109,26,199,242,20,162,112,17,192,111,3,107,212,122,7,158,70,236,186,227,50,56,151,145,49,228,230,229,87,74,48,235,60,235,114,35,30,137,18,133,10,12,150,168,23,18,136,32,38,15,28,108,154,220,252,194,45,48,153,213,161,193,228,239,185,127,252,215,98,222,59,160,9,104,86,153,169,232,195,42,168,101,21,33,208,8,83,113,3,80,133,124,75,107,173,215,211,210,72,243,19,173,147,230,159,114,79,108,153,228,93,22,152,239,190,170,20,180,95,1,6,74,197,167,9,168,185,33,147,207,247,93,54,212,186,254,127,187,41,85,105,74,225,254,139,247,246,205,56,0,255,98,210,101,181,77,217,27,115,1,113,42,75,42,88,18,114,149,66,87,3,134,79,92,129,112,183,163,36,162,192,255,148,235,90,63,195,227,154,18,193,134,105,104,249,212,102,254,252,120,38,105,93,161,27,199,29,24,162,62,197,240,83,119,248,81,255,169,238,174,137,190,191,97,10,58,246,156,164,172,235,165,70,3,244,12,45,171,64,201,87,170,45,150,130,222,127,137,12,135,214,210,234,207,185,177,60,1
 3,158,129,159,176,62,25,181,40,138,54,91,112,83,109,71,138,83,67,148,208,144,89,125,199,218,71,166,101,68,164,242,128,220,182,63,101,121,93,51,194,71,213,252,31,249,25,42,109,111,183,62,227,128,27,175,161,178,96,63,213,248,191,138,124,147,104,84,188,202,82,86,45,57,160,119,85,120,37,173,96,6,190,130,22,108,87,149,176,16,23,157,217,127,139,43,240,157,10,3,210,25,121,139,134,213,26,44,13,254,53,174,137,22,240,102,252,8,136,23,99,84,212,80,114,129,251,218,203,33,50,6,198,230,126,241,238,110,154,130,83,223,254,85,5,140,188,42,152,230,86,129,136,208,186,134,47,194,40,216,207,170,90,212,175,117,191,36,153,234,27,64,223,97,97,81,103,130,77,35,169,58,231,72,13,66,240,162,60,19,44,24,6,39,115,141,240,9,242,214,172,211,253,174,161,26,20,178,64,219,228,34,209,69,34,185,81,39,225,117,151,232,132,46,2,226,119,131,31,195,219,232,124,178,205,84,201,148,115,87,74,168,216,153,1,78,118,232,110,83,180,180,27,138,64,68,23,147,22,71,31,108,172,116,92,28,35,12,246,102,78,56,141,92,185,35,198,112,
 161,219,219,42,87,228,155,172,103,203,45,56,151,135,50,78,57,223,70,133,207,132,103,215,254,238,71,44,190,78,187,37,43,186,126,196,112,110,86,12,132,82,30,83,172,171,56,228,34,57,231,20,153,102,49,149,103,141,232,7,161,55,198,205,142,222,192,20,223,179,200,97,18,4,186,7,155,49,150,251,227,40,125,205,55,114,136,95,241,193,217,191,213,92,51,223,105,103,13,106,233,249,139,119,235,190,161,101,123,74,29,76,190,153,161,4,165,151,93,198,116,110,56,12,170,110,3,156,204,129,6,156,115,26,184,184,114,83,130,13,209,199,192,189,36,204,24,154,20,122,222,79,145,195,124,129,162,163,206,17,114,9,170,103,180,106,94,245,202,69,234,117,61,125,156,15,52,181,208,202,251,35,217,156,205,130,76,146,29,7,138,105,29,110,129,142,206,67,218,183,144,214,78,130,118,90,167,240,92,33,5,182,72,178,51,83,132,100,77,189,55,142,27,242,114,211,60,139,86,149,177,239,216,169,219,223,3,158,145,35,45,197,52,240,142,52,32,81,171,140,88,100,106,143,38,79,41,185,222,51,156,51,30,172,128,162,147,45,217,103,175,216,104,2
 49,239,217,91,181,7,248,198,15,19,15,172,66,136,47,162,193,64,120,15,160,197,200,224,172,190,192,113,98,238,16,127,234,17,227,16,239,49,119,50,230,54,130,252,171,7,85,171,40,10,172,100,197,12,86,70,182,211,120,209,128,173,242,157,152,241,33,186,117,198,8,37,177,98,230,39,134,43,103,235,112,242,206,128,85,213,136,14,166,249,105,204,5,222,248,221,196,131,248,248,25,18,205,34,116,100,185,81,117,227,115,250,228,58,39,74,172,60,177,144,6,111,62,18,36,206,45,197,186,143,231,151,230,200,25,196,74,127,214,48,17,125,247,189,103,68,49,155,161,98,199,39,57,160,194,158,244,21,30,228,87,124,108];
+
+const main = function() {
+    var e = {
+        width : 1024,
+        height : 1024,
+        data : data,
+    };
+    if (e.data.length !== e.width * e.height)
+        throw new Error(&quot;sanity check failed&quot;);
+
+    load(e);
+    scan();
+};
+
+main();
+
+if (islewd)
+    throw new Error(&quot;unexpected result&quot;);
</ins></span></pre></div>
<a id="trunkSourceJavaScriptCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/ChangeLog (211223 => 211224)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/ChangeLog        2017-01-26 19:50:14 UTC (rev 211223)
+++ trunk/Source/JavaScriptCore/ChangeLog        2017-01-26 19:52:35 UTC (rev 211224)
</span><span class="lines">@@ -1,3 +1,68 @@
</span><ins>+2017-01-26  JF Bastien  &lt;jfbastien@apple.com&gt;
+
+        OSR entry: delay outer-loop compilation when at inner-loop
+        https://bugs.webkit.org/show_bug.cgi?id=167149
+
+        Reviewed by Filip Pizlo.
+
+        As of https://bugs.webkit.org/show_bug.cgi?id=155217 OSR
+        compilation can be kicked off for an entry into an outer-loop,
+        while executing an inner-loop. This is desirable because often the
+        codegen from an inner-entry isn't as good as the codegen from an
+        outer-entry, but execution from an inner-loop is often pretty hot
+        and likely to kick off compilation. This approach provided nice
+        speedups on Kraken because we'd select to enter to the outer-loop
+        very reliably, which reduces variability (the inner-loop was
+        selected roughly 1/5 times from my unscientific measurements).
+
+        When compilation starts we take a snapshot of the JSValues at the
+        current execution state using OSR's recovery mechanism. These
+        values are passed to the compiler and are used as way to perform
+        type profiling, and could be used to observe cell types as well as
+        to perform predictions such as through constant propagation.
+
+        It's therefore desired to enter from the outer-loop when we can,
+        but we need to be executing from that location to capture the
+        right JSValues, otherwise we're confusing the compiler and giving
+        it inaccurate JSValues which can lead it to predict the wrong
+        things, leading to suboptimal code or recompilation due to
+        misprediction, or in super-corner-cases a crash.
+
+        These effects are pretty hard to measure: Fil points out that
+        marsalis-osr-entry really needs mustHandleValues (the JSValues
+        from the point of execution) because right now it just happens to
+        correctly guess int32. I tried removing mustHandleValues entirely
+        and saw no slowdowns, but our benchmarks probably aren't
+        sufficient to reliably find issues, sometimes because we happen to
+        have sufficient mitigations.
+
+        DFG tier-up was added here:
+        https://bugs.webkit.org/show_bug.cgi?id=112838
+
+        * JavaScriptCore.xcodeproj/project.pbxproj:
+        * dfg/DFGJITCode.h:
+        * dfg/DFGJITCompiler.cpp:
+        (JSC::DFG::JITCompiler::JITCompiler):
+        * dfg/DFGOSREntry.cpp:
+        (JSC::DFG::prepareOSREntry):
+        * dfg/DFGOSREntry.h:
+        (JSC::DFG::prepareOSREntry):
+        * dfg/DFGOperations.cpp:
+        * dfg/DFGOperations.h:
+        * dfg/DFGSpeculativeJIT64.cpp:
+        (JSC::DFG::SpeculativeJIT::compile):
+        * dfg/DFGTierUpEntryTrigger.h: Copied from Source/JavaScriptCore/ftl/FTLOSREntry.h.
+        * dfg/DFGToFTLForOSREntryDeferredCompilationCallback.cpp:
+        (JSC::DFG::ToFTLForOSREntryDeferredCompilationCallback::ToFTLForOSREntryDeferredCompilationCallback):
+        (JSC::DFG::Ref&lt;ToFTLForOSREntryDeferredCompilationCallback&gt;ToFTLForOSREntryDeferredCompilationCallback::create):
+        (JSC::DFG::ToFTLForOSREntryDeferredCompilationCallback::compilationDidBecomeReadyAsynchronously):
+        (JSC::DFG::ToFTLForOSREntryDeferredCompilationCallback::compilationDidComplete):
+        * dfg/DFGToFTLForOSREntryDeferredCompilationCallback.h:
+        * ftl/FTLOSREntry.cpp:
+        (JSC::FTL::prepareOSREntry):
+        * ftl/FTLOSREntry.h:
+        * jit/JITOperations.cpp:
+
</ins><span class="cx"> 2017-01-25  Saam Barati  &lt;sbarati@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         WebAssembly JS API: coerce return values from imports
</span></span></pre></div>
<a id="trunkSourceJavaScriptCoreJavaScriptCorexcodeprojprojectpbxproj"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj (211223 => 211224)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj        2017-01-26 19:50:14 UTC (rev 211223)
+++ trunk/Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj        2017-01-26 19:52:35 UTC (rev 211224)
</span><span class="lines">@@ -2059,6 +2059,7 @@
</span><span class="cx">                 ADE8029B1E08F1DE0058DE78 /* WebAssemblyLinkErrorPrototype.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ADE802961E08F1C90058DE78 /* WebAssemblyLinkErrorPrototype.cpp */; };
</span><span class="cx">                 ADE8029C1E08F1DE0058DE78 /* WebAssemblyLinkErrorPrototype.h in Headers */ = {isa = PBXBuildFile; fileRef = ADE802971E08F1C90058DE78 /* WebAssemblyLinkErrorPrototype.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><span class="cx">                 ADE8029E1E08F2280058DE78 /* WebAssemblyLinkErrorConstructor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ADE8029D1E08F2260058DE78 /* WebAssemblyLinkErrorConstructor.cpp */; };
</span><ins>+                ADFF2F701E319DE3001EA54E /* DFGTierUpEntryTrigger.h in Headers */ = {isa = PBXBuildFile; fileRef = ADFF2F6F1E319DD0001EA54E /* DFGTierUpEntryTrigger.h */; };
</ins><span class="cx">                 B59F89391891F29F00D5CCDC /* UnlinkedInstructionStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B59F89381891ADB500D5CCDC /* UnlinkedInstructionStream.cpp */; };
</span><span class="cx">                 BC02E90D0E1839DB000F9297 /* ErrorConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = BC02E9050E1839DB000F9297 /* ErrorConstructor.h */; };
</span><span class="cx">                 BC02E90F0E1839DB000F9297 /* ErrorPrototype.h in Headers */ = {isa = PBXBuildFile; fileRef = BC02E9070E1839DB000F9297 /* ErrorPrototype.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><span class="lines">@@ -4571,6 +4572,7 @@
</span><span class="cx">                 ADE802961E08F1C90058DE78 /* WebAssemblyLinkErrorPrototype.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = WebAssemblyLinkErrorPrototype.cpp; path = js/WebAssemblyLinkErrorPrototype.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 ADE802971E08F1C90058DE78 /* WebAssemblyLinkErrorPrototype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WebAssemblyLinkErrorPrototype.h; path = js/WebAssemblyLinkErrorPrototype.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 ADE8029D1E08F2260058DE78 /* WebAssemblyLinkErrorConstructor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = WebAssemblyLinkErrorConstructor.cpp; path = js/WebAssemblyLinkErrorConstructor.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><ins>+                ADFF2F6F1E319DD0001EA54E /* DFGTierUpEntryTrigger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DFGTierUpEntryTrigger.h; path = dfg/DFGTierUpEntryTrigger.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</ins><span class="cx">                 B59F89371891AD3300D5CCDC /* UnlinkedInstructionStream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UnlinkedInstructionStream.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 B59F89381891ADB500D5CCDC /* UnlinkedInstructionStream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnlinkedInstructionStream.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 BC021BF2136900C300FC5467 /* ToolExecutable.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = ToolExecutable.xcconfig; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="lines">@@ -7129,6 +7131,7 @@
</span><span class="cx">                                 0FC097A0146B28C700CF2442 /* DFGThunks.h */,
</span><span class="cx">                                 0FD8A31F17D51F5700CA2C40 /* DFGTierUpCheckInjectionPhase.cpp */,
</span><span class="cx">                                 0FD8A32017D51F5700CA2C40 /* DFGTierUpCheckInjectionPhase.h */,
</span><ins>+                                ADFF2F6F1E319DD0001EA54E /* DFGTierUpEntryTrigger.h */,
</ins><span class="cx">                                 0FD8A32117D51F5700CA2C40 /* DFGToFTLDeferredCompilationCallback.cpp */,
</span><span class="cx">                                 0FD8A32217D51F5700CA2C40 /* DFGToFTLDeferredCompilationCallback.h */,
</span><span class="cx">                                 0FD8A32317D51F5700CA2C40 /* DFGToFTLForOSREntryDeferredCompilationCallback.cpp */,
</span><span class="lines">@@ -8811,6 +8814,7 @@
</span><span class="cx">                                 86D3B2C610156BDE002865E7 /* MacroAssemblerARM.h in Headers */,
</span><span class="cx">                                 A1A009C01831A22D00CF8711 /* MacroAssemblerARM64.h in Headers */,
</span><span class="cx">                                 86ADD1460FDDEA980006EEC2 /* MacroAssemblerARMv7.h in Headers */,
</span><ins>+                                ADFF2F701E319DE3001EA54E /* DFGTierUpEntryTrigger.h in Headers */,
</ins><span class="cx">                                 863B23E00FC6118900703AA4 /* MacroAssemblerCodeRef.h in Headers */,
</span><span class="cx">                                 E32AB2441DCD75F400D7533A /* MacroAssemblerHelpers.h in Headers */,
</span><span class="cx">                                 86C568E111A213EE0007F7F0 /* MacroAssemblerMIPS.h in Headers */,
</span></span></pre></div>
<a id="trunkSourceJavaScriptCoredfgDFGJITCodeh"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/dfg/DFGJITCode.h (211223 => 211224)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/dfg/DFGJITCode.h        2017-01-26 19:50:14 UTC (rev 211223)
+++ trunk/Source/JavaScriptCore/dfg/DFGJITCode.h        2017-01-26 19:52:35 UTC (rev 211224)
</span><span class="lines">@@ -33,6 +33,7 @@
</span><span class="cx"> #include &quot;DFGMinifiedGraph.h&quot;
</span><span class="cx"> #include &quot;DFGOSREntry.h&quot;
</span><span class="cx"> #include &quot;DFGOSRExit.h&quot;
</span><ins>+#include &quot;DFGTierUpEntryTrigger.h&quot;
</ins><span class="cx"> #include &quot;DFGVariableEventStream.h&quot;
</span><span class="cx"> #include &quot;ExecutionCounter.h&quot;
</span><span class="cx"> #include &quot;JITCode.h&quot;
</span><span class="lines">@@ -154,7 +155,7 @@
</span><span class="cx">     // Map each bytecode of CheckTierUpAndOSREnter to its trigger forcing OSR Entry.
</span><span class="cx">     // This can never be modified after it has been initialized since the addresses of the triggers
</span><span class="cx">     // are used by the JIT.
</span><del>-    HashMap&lt;unsigned, uint8_t&gt; tierUpEntryTriggers;
</del><ins>+    HashMap&lt;unsigned, TierUpEntryTrigger&gt; tierUpEntryTriggers;
</ins><span class="cx"> 
</span><span class="cx">     // Set of bytecode that were the target of a TierUp operation.
</span><span class="cx">     HashSet&lt;unsigned, WTF::IntHash&lt;unsigned&gt;, WTF::UnsignedWithZeroKeyHashTraits&lt;unsigned&gt;&gt; tierUpEntrySeen;
</span></span></pre></div>
<a id="trunkSourceJavaScriptCoredfgDFGJITCompilercpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/dfg/DFGJITCompiler.cpp (211223 => 211224)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/dfg/DFGJITCompiler.cpp        2017-01-26 19:50:14 UTC (rev 211223)
+++ trunk/Source/JavaScriptCore/dfg/DFGJITCompiler.cpp        2017-01-26 19:52:35 UTC (rev 211224)
</span><span class="lines">@@ -60,7 +60,7 @@
</span><span class="cx"> #if ENABLE(FTL_JIT)
</span><span class="cx">     m_jitCode-&gt;tierUpInLoopHierarchy = WTFMove(m_graph.m_plan.tierUpInLoopHierarchy);
</span><span class="cx">     for (unsigned tierUpBytecode : m_graph.m_plan.tierUpAndOSREnterBytecodes)
</span><del>-        m_jitCode-&gt;tierUpEntryTriggers.add(tierUpBytecode, 0);
</del><ins>+        m_jitCode-&gt;tierUpEntryTriggers.add(tierUpBytecode, TierUpEntryTrigger::None);
</ins><span class="cx"> #endif
</span><span class="cx"> }
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceJavaScriptCoredfgDFGOSREntrycpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/dfg/DFGOSREntry.cpp (211223 => 211224)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/dfg/DFGOSREntry.cpp        2017-01-26 19:50:14 UTC (rev 211223)
+++ trunk/Source/JavaScriptCore/dfg/DFGOSREntry.cpp        2017-01-26 19:52:35 UTC (rev 211224)
</span><span class="lines">@@ -91,7 +91,7 @@
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> SUPPRESS_ASAN
</span><del>-void* prepareOSREntry(ExecState* exec, CodeBlock* codeBlock, unsigned bytecodeIndex)
</del><ins>+Expected&lt;void*, OSREntryFail&gt; prepareOSREntry(ExecState* exec, CodeBlock* codeBlock, unsigned bytecodeIndex)
</ins><span class="cx"> {
</span><span class="cx">     ASSERT(JITCode::isOptimizingJIT(codeBlock-&gt;jitType()));
</span><span class="cx">     ASSERT(codeBlock-&gt;alternative());
</span><span class="lines">@@ -99,7 +99,7 @@
</span><span class="cx">     ASSERT(!codeBlock-&gt;jitCodeMap());
</span><span class="cx"> 
</span><span class="cx">     if (!Options::useOSREntryToDFG())
</span><del>-        return 0;
</del><ins>+        return makeUnexpected(OSREntryFail::Disabled);
</ins><span class="cx"> 
</span><span class="cx">     if (Options::verboseOSR()) {
</span><span class="cx">         dataLog(
</span><span class="lines">@@ -136,7 +136,7 @@
</span><span class="cx">         
</span><span class="cx">         if (Options::verboseOSR())
</span><span class="cx">             dataLog(&quot;    OSR failed because the target code block is not DFG.\n&quot;);
</span><del>-        return 0;
</del><ins>+        return makeUnexpected(OSREntryFail::TargetNotDFG);
</ins><span class="cx">     }
</span><span class="cx">     
</span><span class="cx">     JITCode* jitCode = codeBlock-&gt;jitCode()-&gt;dfg();
</span><span class="lines">@@ -145,7 +145,7 @@
</span><span class="cx">     if (!entry) {
</span><span class="cx">         if (Options::verboseOSR())
</span><span class="cx">             dataLogF(&quot;    OSR failed because the entrypoint was optimized out.\n&quot;);
</span><del>-        return 0;
</del><ins>+        return makeUnexpected(OSREntryFail::TargetOptimizedOut);
</ins><span class="cx">     }
</span><span class="cx">     
</span><span class="cx">     ASSERT(entry-&gt;m_bytecodeIndex == bytecodeIndex);
</span><span class="lines">@@ -181,7 +181,7 @@
</span><span class="cx">                 entry-&gt;m_expectedValues.argument(argument).dump(WTF::dataFile());
</span><span class="cx">                 dataLogF(&quot;.\n&quot;);
</span><span class="cx">             }
</span><del>-            return 0;
</del><ins>+            return makeUnexpected(OSREntryFail::BadPrediction);
</ins><span class="cx">         }
</span><span class="cx">         
</span><span class="cx">         JSValue value;
</span><span class="lines">@@ -196,7 +196,7 @@
</span><span class="cx">                     &quot;    OSR failed because argument &quot;, argument, &quot; is &quot;, value,
</span><span class="cx">                     &quot;, expected &quot;, entry-&gt;m_expectedValues.argument(argument), &quot;.\n&quot;);
</span><span class="cx">             }
</span><del>-            return 0;
</del><ins>+            return makeUnexpected(OSREntryFail::BadPrediction);
</ins><span class="cx">         }
</span><span class="cx">     }
</span><span class="cx">     
</span><span class="lines">@@ -209,7 +209,7 @@
</span><span class="cx">                         &quot;    OSR failed because variable &quot;, localOffset, &quot; is &quot;,
</span><span class="cx">                         exec-&gt;registers()[localOffset].asanUnsafeJSValue(), &quot;, expected number.\n&quot;);
</span><span class="cx">                 }
</span><del>-                return 0;
</del><ins>+                return makeUnexpected(OSREntryFail::BadPrediction);
</ins><span class="cx">             }
</span><span class="cx">             continue;
</span><span class="cx">         }
</span><span class="lines">@@ -221,7 +221,7 @@
</span><span class="cx">                         exec-&gt;registers()[localOffset].asanUnsafeJSValue(), &quot;, expected &quot;,
</span><span class="cx">                         &quot;machine int.\n&quot;);
</span><span class="cx">                 }
</span><del>-                return 0;
</del><ins>+                return makeUnexpected(OSREntryFail::BadPrediction);
</ins><span class="cx">             }
</span><span class="cx">             continue;
</span><span class="cx">         }
</span><span class="lines">@@ -232,7 +232,7 @@
</span><span class="cx">                     exec-&gt;registers()[localOffset].asanUnsafeJSValue(), &quot;, expected &quot;,
</span><span class="cx">                     entry-&gt;m_expectedValues.local(local), &quot;.\n&quot;);
</span><span class="cx">             }
</span><del>-            return 0;
</del><ins>+            return makeUnexpected(OSREntryFail::BadPrediction);
</ins><span class="cx">         }
</span><span class="cx">     }
</span><span class="cx"> 
</span><span class="lines">@@ -247,7 +247,7 @@
</span><span class="cx">     if (UNLIKELY(!vm-&gt;ensureStackCapacityFor(&amp;exec-&gt;registers()[virtualRegisterForLocal(frameSizeForCheck - 1).offset()]))) {
</span><span class="cx">         if (Options::verboseOSR())
</span><span class="cx">             dataLogF(&quot;    OSR failed because stack growth failed.\n&quot;);
</span><del>-        return 0;
</del><ins>+        return makeUnexpected(OSREntryFail::StackGrowthFailed);
</ins><span class="cx">     }
</span><span class="cx">     
</span><span class="cx">     if (Options::verboseOSR())
</span></span></pre></div>
<a id="trunkSourceJavaScriptCoredfgDFGOSREntryh"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/dfg/DFGOSREntry.h (211223 => 211224)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/dfg/DFGOSREntry.h        2017-01-26 19:50:14 UTC (rev 211223)
+++ trunk/Source/JavaScriptCore/dfg/DFGOSREntry.h        2017-01-26 19:52:35 UTC (rev 211224)
</span><span class="lines">@@ -28,6 +28,7 @@
</span><span class="cx"> #include &quot;DFGAbstractValue.h&quot;
</span><span class="cx"> #include &quot;Operands.h&quot;
</span><span class="cx"> #include &lt;wtf/BitVector.h&gt;
</span><ins>+#include &lt;wtf/Expected.h&gt;
</ins><span class="cx"> 
</span><span class="cx"> namespace JSC {
</span><span class="cx"> 
</span><span class="lines">@@ -36,6 +37,14 @@
</span><span class="cx"> 
</span><span class="cx"> namespace DFG {
</span><span class="cx"> 
</span><ins>+enum class OSREntryFail {
+    Disabled,
+    TargetNotDFG,
+    TargetOptimizedOut,
+    BadPrediction,
+    StackGrowthFailed,
+};
+
</ins><span class="cx"> #if ENABLE(DFG_JIT)
</span><span class="cx"> struct OSREntryReshuffling {
</span><span class="cx">     OSREntryReshuffling() { }
</span><span class="lines">@@ -69,11 +78,10 @@
</span><span class="cx">     return osrEntryData-&gt;m_bytecodeIndex;
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-// Returns a pointer to a data buffer that the OSR entry thunk will recognize and
-// parse. If this returns null, it means 
-void* prepareOSREntry(ExecState*, CodeBlock*, unsigned bytecodeIndex);
</del><ins>+// Returns a pointer to a data buffer that the OSR entry thunk will recognize and parse.
+Expected&lt;void*, OSREntryFail&gt; prepareOSREntry(ExecState*, CodeBlock*, unsigned bytecodeIndex);
</ins><span class="cx"> #else
</span><del>-inline void* prepareOSREntry(ExecState*, CodeBlock*, unsigned) { return 0; }
</del><ins>+inline Expected&lt;void*, OSREntryFail&gt; prepareOSREntry(ExecState*, CodeBlock*, unsigned) { return makeUnexpected(OSREntryFail::Disabled); }
</ins><span class="cx"> #endif
</span><span class="cx"> 
</span><span class="cx"> } } // namespace JSC::DFG
</span></span></pre></div>
<a id="trunkSourceJavaScriptCoredfgDFGOperationscpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/dfg/DFGOperations.cpp (211223 => 211224)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/dfg/DFGOperations.cpp        2017-01-26 19:50:14 UTC (rev 211223)
+++ trunk/Source/JavaScriptCore/dfg/DFGOperations.cpp        2017-01-26 19:52:35 UTC (rev 211224)
</span><span class="lines">@@ -2314,6 +2314,7 @@
</span><span class="cx">             jitCode-&gt;tierUpCounter, &quot;\n&quot;);
</span><span class="cx">     }
</span><span class="cx"> 
</span><ins>+    // This updates the execution counter.
</ins><span class="cx">     if (shouldTriggerFTLCompile(codeBlock, jitCode))
</span><span class="cx">         triggerFTLReplacementCompile(vm, codeBlock, jitCode);
</span><span class="cx"> 
</span><span class="lines">@@ -2337,44 +2338,134 @@
</span><span class="cx">     }
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-static char* tierUpCommon(ExecState* exec, unsigned originBytecodeIndex, unsigned osrEntryBytecodeIndex)
</del><ins>+enum class EntryReason {
+    Spurious,
+    CheckingUpOnHowCompilationIsGoing,
+    HaveOSREntryReady,
+    ShouldStartCompiling,
+    ShouldStartCompilingRightNow,
+    CompilationFailed,
+};
+
+static EntryReason whatHaveYouDoneAndWhyAmIHere(VM* vm, CodeBlock* codeBlock, JITCode* jitCode, unsigned bytecodeIndex, CodeBlock*&amp; osrEntryBlock)
</ins><span class="cx"> {
</span><del>-    VM* vm = &amp;exec-&gt;vm();
-    CodeBlock* codeBlock = exec-&gt;codeBlock();
</del><ins>+    // Gather facts about why we could be here.
</ins><span class="cx"> 
</span><span class="cx">     // Resolve any pending plan for OSR Enter on this function.
</span><span class="cx">     Worklist::State worklistState;
</span><del>-    if (Worklist* worklist = existingGlobalFTLWorklistOrNull()) {
-        worklistState = worklist-&gt;completeAllReadyPlansForVM(
-            *vm, CompilationKey(codeBlock-&gt;baselineVersion(), FTLForOSREntryMode));
-    } else
</del><ins>+    if (Worklist* worklist = existingGlobalFTLWorklistOrNull())
+        worklistState = worklist-&gt;completeAllReadyPlansForVM(*vm, CompilationKey(codeBlock-&gt;baselineVersion(), FTLForOSREntryMode));
+    else
</ins><span class="cx">         worklistState = Worklist::NotKnown;
</span><span class="cx"> 
</span><del>-    JITCode* jitCode = codeBlock-&gt;jitCode()-&gt;dfg();
-    if (worklistState == Worklist::Compiling) {
</del><ins>+    osrEntryBlock = jitCode-&gt;osrEntryBlock();
+
+    // Was the tier-up entry trigger set to slow-path?
+    bool triggeredSlowPath = false;
+    auto tierUpEntryTriggers = jitCode-&gt;tierUpEntryTriggers.find(bytecodeIndex);
+    if (tierUpEntryTriggers != jitCode-&gt;tierUpEntryTriggers.end()) {
+        if (tierUpEntryTriggers-&gt;value == TierUpEntryTrigger::TakeSlowPath) {
+            // We were asked to enter as soon as possible. Unset this trigger so we don't continually enter.
+            if (Options::verboseOSR())
+                dataLog(&quot;EntryTrigger for &quot;, *codeBlock, &quot; forced slow-path.\n&quot;);
+            triggeredSlowPath = true;
+            tierUpEntryTriggers-&gt;value = TierUpEntryTrigger::None;
+        }
+    }
+
+    // Put those facts together to make a final determination.
+
+    switch (worklistState) {
+    case Worklist::NotKnown:
+        if (osrEntryBlock)
+            return EntryReason::HaveOSREntryReady;
+        if (triggeredSlowPath) {
+            // Someone went through the trouble of forcing us into slow-path, they really wanted us to compile.
+            return EntryReason::ShouldStartCompilingRightNow;
+        }
+        return EntryReason::ShouldStartCompiling;
+
+    case Worklist::Compiling:
+        if (triggeredSlowPath) {
+            // We're already compiling, and can't OSR enter. We therefore must
+            // have set our slow-path trigger as well as another slow path
+            // trigger, hoping one of these would kick off a compilation. Sure
+            // enough another bytecode location did kick off a compilation
+            // before this one got a chance to do so. There's nothing for us to
+            // do but wait.
+            return EntryReason::Spurious;
+        }
+        return EntryReason::CheckingUpOnHowCompilationIsGoing;
+
+    case Worklist::Compiled:
+        return EntryReason::CompilationFailed;
+    }
+
+    RELEASE_ASSERT_NOT_REACHED();
+    return EntryReason::Spurious;
+}
+
+enum class CanOSREnterFromHere {
+    No,
+    Yes,
+};
+
+static char* tierUpCommon(VM* vm, ExecState* exec, CodeBlock* codeBlock, JITCode* jitCode, unsigned bytecodeIndex, CanOSREnterFromHere canOSREnterFromHere)
+{
+    CodeBlock* osrEntryBlock;
+    EntryReason entryReason = whatHaveYouDoneAndWhyAmIHere(vm, codeBlock, jitCode, bytecodeIndex, osrEntryBlock);
+
+    switch (entryReason) {
+    case EntryReason::CheckingUpOnHowCompilationIsGoing:
</ins><span class="cx">         CODEBLOCK_LOG_EVENT(codeBlock, &quot;delayFTLCompile&quot;, (&quot;still compiling&quot;));
</span><span class="cx">         jitCode-&gt;setOptimizationThresholdBasedOnCompilationResult(
</span><span class="cx">             codeBlock, CompilationDeferred);
</span><span class="cx">         return nullptr;
</span><del>-    }
</del><span class="cx"> 
</span><del>-    if (worklistState == Worklist::Compiled) {
</del><ins>+    case EntryReason::CompilationFailed:
</ins><span class="cx">         CODEBLOCK_LOG_EVENT(codeBlock, &quot;delayFTLCompile&quot;, (&quot;compiled and failed&quot;));
</span><del>-        // This means that compilation failed and we already set the thresholds.
</del><ins>+        // We've already set the thresholds.
</ins><span class="cx">         if (Options::verboseOSR())
</span><span class="cx">             dataLog(&quot;Code block &quot;, *codeBlock, &quot; was compiled but it doesn't have an optimized replacement.\n&quot;);
</span><span class="cx">         return nullptr;
</span><del>-    }
</del><span class="cx"> 
</span><del>-    // If we can OSR Enter, do it right away.
-    if (originBytecodeIndex == osrEntryBytecodeIndex) {
-        unsigned streamIndex = jitCode-&gt;bytecodeIndexToStreamIndex.get(originBytecodeIndex);
-        if (CodeBlock* entryBlock = jitCode-&gt;osrEntryBlock()) {
-            if (void* address = FTL::prepareOSREntry(exec, codeBlock, entryBlock, originBytecodeIndex, streamIndex)) {
-                CODEBLOCK_LOG_EVENT(entryBlock, &quot;osrEntry&quot;, (&quot;at bc#&quot;, originBytecodeIndex));
</del><ins>+    case EntryReason::HaveOSREntryReady:
+        if (canOSREnterFromHere == CanOSREnterFromHere::No)
+            break; // OSR entry is for another location.
+
+        {
+            // If we can OSR Enter, do it right away.
+            unsigned streamIndex = jitCode-&gt;bytecodeIndexToStreamIndex.get(bytecodeIndex);
+            auto osrEntryPreparation = FTL::prepareOSREntry(exec, codeBlock, osrEntryBlock, bytecodeIndex, streamIndex);
+            if (osrEntryPreparation) {
+                CODEBLOCK_LOG_EVENT(osrEntryBlock, &quot;osrEntry&quot;, (&quot;at bc#&quot;, bytecodeIndex));
+                void* address = osrEntryPreparation.value();
+                ASSERT(address);
</ins><span class="cx">                 return static_cast&lt;char*&gt;(address);
</span><span class="cx">             }
</span><ins>+            switch (osrEntryPreparation.error()) {
+            case FTL::OSREntryFail::StackGrowthFailed:
+                break;
+            case FTL::OSREntryFail::WrongBytecode:
+                // Above we checked that an entry was possible from the current
+                // location, but we didn't know whether the compiled OSR entry
+                // was for this location. Now we know it's not.
+                break;
+            }
+
+            break;
</ins><span class="cx">         }
</span><ins>+
+    case EntryReason::ShouldStartCompiling:
+    case EntryReason::ShouldStartCompilingRightNow:
+        // We'll take care of that below.
+        break;
+
+    case EntryReason::Spurious:
+        if (Options::verboseOSR())
+            dataLog(&quot;Code block &quot;, *codeBlock, &quot; was spuriously woken up, compilation is already under way.\n&quot;);
+        jitCode-&gt;checkIfOptimizationThresholdReached(codeBlock);
+        return nullptr;
</ins><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx">     // - If we don't have an FTL code block, then try to compile one.
</span><span class="lines">@@ -2381,6 +2472,7 @@
</span><span class="cx">     // - If we do have an FTL code block, then try to enter for a while.
</span><span class="cx">     // - If we couldn't enter for a while, then trigger OSR entry.
</span><span class="cx"> 
</span><ins>+    // This updates the execution counter.
</ins><span class="cx">     if (!shouldTriggerFTLCompile(codeBlock, jitCode))
</span><span class="cx">         return nullptr;
</span><span class="cx"> 
</span><span class="lines">@@ -2398,8 +2490,9 @@
</span><span class="cx">     } else
</span><span class="cx">         CODEBLOCK_LOG_EVENT(codeBlock, &quot;delayFTLCompile&quot;, (&quot;avoiding replacement compile&quot;));
</span><span class="cx"> 
</span><del>-    // It's time to try to compile code for OSR entry.
-    if (CodeBlock* entryBlock = jitCode-&gt;osrEntryBlock()) {
</del><ins>+    if (osrEntryBlock) {
+        // We have a compiled OSR entry for this function, but didn't enter.
+
</ins><span class="cx">         if (jitCode-&gt;osrEntryRetry &lt; Options::ftlOSREntryRetryThreshold()) {
</span><span class="cx">             CODEBLOCK_LOG_EVENT(codeBlock, &quot;delayFTLCompile&quot;, (&quot;OSR entry failed, OSR entry threshold not met&quot;));
</span><span class="cx">             jitCode-&gt;osrEntryRetry++;
</span><span class="lines">@@ -2408,7 +2501,7 @@
</span><span class="cx">             return nullptr;
</span><span class="cx">         }
</span><span class="cx"> 
</span><del>-        FTL::ForOSREntryJITCode* entryCode = entryBlock-&gt;jitCode()-&gt;ftlForOSREntry();
</del><ins>+        FTL::ForOSREntryJITCode* entryCode = osrEntryBlock-&gt;jitCode()-&gt;ftlForOSREntry();
</ins><span class="cx">         entryCode-&gt;countEntryFailure();
</span><span class="cx">         if (entryCode-&gt;entryFailureCount() &lt;
</span><span class="cx">             Options::ftlOSREntryFailureCountForReoptimization()) {
</span><span class="lines">@@ -2421,40 +2514,112 @@
</span><span class="cx">         // OSR entry failed. Oh no! This implies that we need to retry. We retry
</span><span class="cx">         // without exponential backoff and we only do this for the entry code block.
</span><span class="cx">         CODEBLOCK_LOG_EVENT(codeBlock, &quot;delayFTLCompile&quot;, (&quot;OSR entry failed too many times&quot;));
</span><del>-        unsigned osrEntryBytecode = entryBlock-&gt;jitCode()-&gt;ftlForOSREntry()-&gt;bytecodeIndex();
</del><ins>+        unsigned osrEntryBytecode = osrEntryBlock-&gt;jitCode()-&gt;ftlForOSREntry()-&gt;bytecodeIndex();
</ins><span class="cx">         jitCode-&gt;clearOSREntryBlock();
</span><span class="cx">         jitCode-&gt;osrEntryRetry = 0;
</span><del>-        jitCode-&gt;tierUpEntryTriggers.set(osrEntryBytecode, 0);
</del><ins>+        jitCode-&gt;tierUpEntryTriggers.set(osrEntryBytecode, TierUpEntryTrigger::None);
</ins><span class="cx">         jitCode-&gt;setOptimizationThresholdBasedOnCompilationResult(
</span><span class="cx">             codeBlock, CompilationDeferred);
</span><span class="cx">         return nullptr;
</span><span class="cx">     }
</span><span class="cx"> 
</span><del>-    unsigned streamIndex = jitCode-&gt;bytecodeIndexToStreamIndex.get(osrEntryBytecodeIndex);
-    auto tierUpHierarchyEntry = jitCode-&gt;tierUpInLoopHierarchy.find(osrEntryBytecodeIndex);
-    if (tierUpHierarchyEntry != jitCode-&gt;tierUpInLoopHierarchy.end()) {
-        for (unsigned osrEntryCandidate : tierUpHierarchyEntry-&gt;value) {
-            if (jitCode-&gt;tierUpEntrySeen.contains(osrEntryCandidate)) {
-                osrEntryBytecodeIndex = osrEntryCandidate;
-                streamIndex = jitCode-&gt;bytecodeIndexToStreamIndex.get(osrEntryBytecodeIndex);
</del><ins>+    // We aren't compiling and haven't compiled anything for OSR entry. So, try to compile something.
+
+    if (entryReason != EntryReason::ShouldStartCompilingRightNow) {
+        // We entered because our threshold was set, not because someone is forcing us to compile.
+        // Try to see if there would be a better place to compile from than where we currently are.
+
+        // Compiling an outer-loop for OSR entry often generates better code than an inner-loop because
+        // the entry is less disruptive. If we're at an inner-loop be smart and mark the outer-loop as
+        // needing compilation ASAP. Once execution reaches the outer-loop compilation will trigger.
+        auto tierUpHierarchyEntry = jitCode-&gt;tierUpInLoopHierarchy.find(bytecodeIndex);
+        if (tierUpHierarchyEntry != jitCode-&gt;tierUpInLoopHierarchy.end() &amp;&amp; !tierUpHierarchyEntry-&gt;value.isEmpty()) {
+            // Traverse the loop hierarchy from the outer-most loop, to the inner-most one.
+            for (auto iterator = tierUpHierarchyEntry-&gt;value.rbegin(), end = tierUpHierarchyEntry-&gt;value.rend(); iterator != end; ++iterator) {
+                unsigned osrEntryCandidate = *iterator;
+                if (jitCode-&gt;tierUpEntrySeen.contains(osrEntryCandidate)) {
+                    unsigned outerLoopOsrEntryBytecodeIndex = osrEntryCandidate;
+
+                    // We found an outer-loop which would be a better OSR entry
+                    // than the current location:
+                    //  - Set its trigger so it takes the slow-path ASAP;
+                    //  - Tell the codeblock to stop its counter slow-path for a
+                    //    while, because it should wait for the outer-loop to
+                    //    trigger.
+                    //
+                    // If we slow-path again then one of these is true:
+                    //  1. We enter from the outer-loop because of its trigger,
+                    //     it un-sets its trigger, kicks off a compile,
+                    //     everything is good;
+                    //  2. We enter from anywhere and a compile is under way,
+                    //     just chill as usual;
+                    //  3. We never got to that outer-loop and the counter
+                    //     tripped again, bummer!
+                    //
+                    // We can detect 3. because the outer-loop's trigger is
+                    // set. It's still a great place to enter, so leave its
+                    // trigger set, but also:
+                    //  - Set the trigger for the next loop in, hope that one triggers;
+                    //  - Backoff the counter as before.
+                    // That is, unless all the inner-loop's parent triggers are
+                    // set. In that case just optimize the innermost-loop: it
+                    // won't generate as good code, but the outer-loops aren't
+                    // triggering so we may as we tier up where we can.
+                    auto outerLoopTierUpEntryTriggers = jitCode-&gt;tierUpEntryTriggers.find(outerLoopOsrEntryBytecodeIndex);
+                    ASSERT(outerLoopTierUpEntryTriggers != jitCode-&gt;tierUpEntryTriggers.end());
+
+                    if (outerLoopTierUpEntryTriggers-&gt;value != TierUpEntryTrigger::TakeSlowPath) {
+                        if (Options::verboseOSR())
+                            dataLog(&quot;Forcibly FTL-optimize outer-loop bc#&quot;, outerLoopOsrEntryBytecodeIndex, &quot; in &quot;, *codeBlock, &quot;by setting its trigger.\n&quot;);
+
+                        CODEBLOCK_LOG_EVENT(codeBlock, &quot;delayFTLCompile&quot;, (&quot;OSR entry request from inner-loop for outer-loop&quot;));
+                        jitCode-&gt;tierUpEntryTriggers.set(outerLoopOsrEntryBytecodeIndex, TierUpEntryTrigger::TakeSlowPath);
+                        jitCode-&gt;optimizeSoon(codeBlock);
+                        return nullptr;
+                    }
+
+                    if (Options::verboseOSR())
+                        dataLog(&quot;Trying to forcibly FTL-optimize outer-loop bc#&quot;, outerLoopOsrEntryBytecodeIndex, &quot; in &quot;, *codeBlock, &quot;, but trigger is already set.\n&quot;);
+                }
</ins><span class="cx">             }
</span><ins>+
+            // All the outer-loops have their trigger set, but none have been entered.
+
+            if (canOSREnterFromHere == CanOSREnterFromHere::No) {
+                // We just can't enter from here, we've asked everyone we know
+                // to please optimize ASAP, nobody has heeded our call. Keep
+                // hoping one of the outer loops triggers get to their slow
+                // path. Stop the counter, there's nothing we can do.
+                jitCode-&gt;dontOptimizeAnytimeSoon(codeBlock);
+                return nullptr;
+            }
+
+            if (Options::verboseOSR())
+                dataLog(&quot;Tried to forcibly-optimize outer-loop, but falling back to bc#&quot;, bytecodeIndex, &quot; in &quot;, *codeBlock, &quot;, outer-loop triggers didn't work.\n&quot;);
</ins><span class="cx">         }
</span><span class="cx">     }
</span><span class="cx"> 
</span><del>-    // We aren't compiling and haven't compiled anything for OSR entry. So, try to compile
-    // something.
-    auto triggerIterator = jitCode-&gt;tierUpEntryTriggers.find(osrEntryBytecodeIndex);
</del><ins>+    RELEASE_ASSERT(canOSREnterFromHere == CanOSREnterFromHere::Yes);
+
+    unsigned streamIndex = jitCode-&gt;bytecodeIndexToStreamIndex.get(bytecodeIndex);
+
+    // We're not trying to kick off a compile of an outer-loop from within an
+    // inner-loop. We can compile right here, right now.
+    auto triggerIterator = jitCode-&gt;tierUpEntryTriggers.find(bytecodeIndex);
</ins><span class="cx">     RELEASE_ASSERT(triggerIterator != jitCode-&gt;tierUpEntryTriggers.end());
</span><del>-    uint8_t* triggerAddress = &amp;(triggerIterator-&gt;value);
</del><ins>+    TierUpEntryTrigger* triggerAddress = &amp;(triggerIterator-&gt;value);
</ins><span class="cx"> 
</span><ins>+    // Use OSR reconstruction to generate a snapshot of JSValues at the current
+    // location of execution. The optimizer is happy when it can look at real
+    // and live values, as opposed to mere type traces.
</ins><span class="cx">     Operands&lt;JSValue&gt; mustHandleValues;
</span><span class="cx">     jitCode-&gt;reconstruct(
</span><del>-        exec, codeBlock, CodeOrigin(osrEntryBytecodeIndex), streamIndex, mustHandleValues);
</del><ins>+        exec, codeBlock, CodeOrigin(bytecodeIndex), streamIndex, mustHandleValues);
</ins><span class="cx">     CodeBlock* replacementCodeBlock = codeBlock-&gt;newReplacement();
</span><span class="cx"> 
</span><span class="cx">     CODEBLOCK_LOG_EVENT(codeBlock, &quot;triggerFTLOSR&quot;, ());
</span><span class="cx">     CompilationResult forEntryResult = compile(
</span><del>-        *vm, replacementCodeBlock, codeBlock, FTLForOSREntryMode, osrEntryBytecodeIndex,
</del><ins>+        *vm, replacementCodeBlock, codeBlock, FTLForOSREntryMode, bytecodeIndex,
</ins><span class="cx">         mustHandleValues, ToFTLForOSREntryDeferredCompilationCallback::create(triggerAddress));
</span><span class="cx"> 
</span><span class="cx">     if (jitCode-&gt;neverExecutedEntry)
</span><span class="lines">@@ -2466,14 +2631,27 @@
</span><span class="cx">             codeBlock, CompilationDeferred);
</span><span class="cx">         return nullptr;
</span><span class="cx">     }
</span><del>-    
-    CODEBLOCK_LOG_EVENT(jitCode-&gt;osrEntryBlock(), &quot;osrEntry&quot;, (&quot;at bc#&quot;, originBytecodeIndex));
-    // It's possible that the for-entry compile already succeeded. In that case OSR
-    // entry will succeed unless we ran out of stack. It's not clear what we should do.
-    // We signal to try again after a while if that happens.
-    void* address = FTL::prepareOSREntry(
-        exec, codeBlock, jitCode-&gt;osrEntryBlock(), originBytecodeIndex, streamIndex);
-    return static_cast&lt;char*&gt;(address);
</del><ins>+
+    // It's possible that the for-entry compile already succeeded. In that case
+    // OSR entry will succeed unless we ran out of stack.
+    auto osrEntryPreparation = FTL::prepareOSREntry(exec, codeBlock, jitCode-&gt;osrEntryBlock(), bytecodeIndex, streamIndex);
+    if (osrEntryPreparation) {
+        CODEBLOCK_LOG_EVENT(jitCode-&gt;osrEntryBlock(), &quot;osrEntry&quot;, (&quot;at bc#&quot;, bytecodeIndex));
+        void* address = osrEntryPreparation.value();
+        ASSERT(address);
+        return static_cast&lt;char*&gt;(address);
+    }
+    switch (osrEntryPreparation.error()) {
+    case FTL::OSREntryFail::StackGrowthFailed:
+        // It's not clear what we should do. We signal to try again after a
+        // while if that happens.
+        return nullptr;
+    case FTL::OSREntryFail::WrongBytecode:
+        RELEASE_ASSERT_NOT_REACHED();
+    }
+
+    RELEASE_ASSERT_NOT_REACHED();
+    return nullptr;
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> void JIT_OPERATION triggerTierUpNowInLoop(ExecState* exec, unsigned bytecodeIndex)
</span><span class="lines">@@ -2496,11 +2674,15 @@
</span><span class="cx">             jitCode-&gt;tierUpCounter, &quot;\n&quot;);
</span><span class="cx">     }
</span><span class="cx"> 
</span><ins>+    // It's impossible to OSR enter from the current bytecode index: CheckTierUpInLoop is only even generated for non-OSR-entry bytecodes.
+    // It's nonetheless a good spot to request that a nearby loop get optimized the next time it's entered.
+
</ins><span class="cx">     auto tierUpHierarchyEntry = jitCode-&gt;tierUpInLoopHierarchy.find(bytecodeIndex);
</span><span class="cx">     if (tierUpHierarchyEntry != jitCode-&gt;tierUpInLoopHierarchy.end()
</span><span class="cx">         &amp;&amp; !tierUpHierarchyEntry-&gt;value.isEmpty()) {
</span><del>-        tierUpCommon(exec, bytecodeIndex, tierUpHierarchyEntry-&gt;value.first());
-    } else if (shouldTriggerFTLCompile(codeBlock, jitCode))
</del><ins>+        // There is a suitable loop to OSR enter from.
+        tierUpCommon(vm, exec, codeBlock, jitCode, bytecodeIndex, CanOSREnterFromHere::No);
+    } else if (shouldTriggerFTLCompile(codeBlock, jitCode)) // This updates the execution counter.
</ins><span class="cx">         triggerFTLReplacementCompile(vm, codeBlock, jitCode);
</span><span class="cx"> 
</span><span class="cx">     // Since we cannot OSR Enter here, the default &quot;optimizeSoon()&quot; is not useful.
</span><span class="lines">@@ -2510,7 +2692,7 @@
</span><span class="cx">     }
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-char* JIT_OPERATION triggerOSREntryNow(ExecState* exec, unsigned bytecodeIndex)
</del><ins>+char* JIT_OPERATION checkTierUpAndOSREnterNow(ExecState* exec, unsigned bytecodeIndex)
</ins><span class="cx"> {
</span><span class="cx">     VM* vm = &amp;exec-&gt;vm();
</span><span class="cx">     NativeCallFrameTracer tracer(vm, exec);
</span><span class="lines">@@ -2523,7 +2705,6 @@
</span><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx">     JITCode* jitCode = codeBlock-&gt;jitCode()-&gt;dfg();
</span><del>-    jitCode-&gt;tierUpEntrySeen.add(bytecodeIndex);
</del><span class="cx"> 
</span><span class="cx">     if (Options::verboseOSR()) {
</span><span class="cx">         dataLog(
</span><span class="lines">@@ -2531,7 +2712,8 @@
</span><span class="cx">             jitCode-&gt;tierUpCounter, &quot;\n&quot;);
</span><span class="cx">     }
</span><span class="cx"> 
</span><del>-    return tierUpCommon(exec, bytecodeIndex, bytecodeIndex);
</del><ins>+    jitCode-&gt;tierUpEntrySeen.add(bytecodeIndex);
+    return tierUpCommon(vm, exec, codeBlock, jitCode, bytecodeIndex, CanOSREnterFromHere::Yes);
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> #endif // ENABLE(FTL_JIT)
</span></span></pre></div>
<a id="trunkSourceJavaScriptCoredfgDFGOperationsh"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/dfg/DFGOperations.h (211223 => 211224)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/dfg/DFGOperations.h        2017-01-26 19:50:14 UTC (rev 211223)
+++ trunk/Source/JavaScriptCore/dfg/DFGOperations.h        2017-01-26 19:52:35 UTC (rev 211224)
</span><span class="lines">@@ -220,7 +220,7 @@
</span><span class="cx"> #if ENABLE(FTL_JIT)
</span><span class="cx"> void JIT_OPERATION triggerTierUpNow(ExecState*) WTF_INTERNAL;
</span><span class="cx"> void JIT_OPERATION triggerTierUpNowInLoop(ExecState*, unsigned bytecodeIndex) WTF_INTERNAL;
</span><del>-char* JIT_OPERATION triggerOSREntryNow(ExecState*, unsigned bytecodeIndex) WTF_INTERNAL;
</del><ins>+char* JIT_OPERATION checkTierUpAndOSREnterNow(ExecState*, unsigned bytecodeIndex) WTF_INTERNAL;
</ins><span class="cx"> #endif // ENABLE(FTL_JIT)
</span><span class="cx"> 
</span><span class="cx"> } // extern &quot;C&quot;
</span></span></pre></div>
<a id="trunkSourceJavaScriptCoredfgDFGSpeculativeJIT64cpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT64.cpp (211223 => 211224)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT64.cpp        2017-01-26 19:50:14 UTC (rev 211223)
+++ trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT64.cpp        2017-01-26 19:52:35 UTC (rev 211224)
</span><span class="lines">@@ -5781,8 +5781,10 @@
</span><span class="cx">         unsigned bytecodeIndex = node-&gt;origin.semantic.bytecodeIndex;
</span><span class="cx">         auto triggerIterator = m_jit.jitCode()-&gt;tierUpEntryTriggers.find(bytecodeIndex);
</span><span class="cx">         DFG_ASSERT(m_jit.graph(), node, triggerIterator != m_jit.jitCode()-&gt;tierUpEntryTriggers.end());
</span><del>-        uint8_t* forceEntryTrigger = &amp;(m_jit.jitCode()-&gt;tierUpEntryTriggers.find(bytecodeIndex)-&gt;value);
</del><ins>+        TierUpEntryTrigger* forceEntryTrigger = &amp;(m_jit.jitCode()-&gt;tierUpEntryTriggers.find(bytecodeIndex)-&gt;value);
</ins><span class="cx"> 
</span><ins>+        static_assert(sizeof(TierUpEntryTrigger) == 1, &quot;8-bit load is generated below&quot;);
+        static_assert(!static_cast&lt;uint8_t&gt;(TierUpEntryTrigger::None), &quot;NonZero test below depends on this&quot;);
</ins><span class="cx">         MacroAssembler::Jump forceOSREntry = m_jit.branchTest8(MacroAssembler::NonZero, MacroAssembler::AbsoluteAddress(forceEntryTrigger));
</span><span class="cx">         MacroAssembler::Jump overflowedCounter = m_jit.branchAdd32(
</span><span class="cx">             MacroAssembler::PositiveOrZero,
</span><span class="lines">@@ -5802,7 +5804,7 @@
</span><span class="cx"> 
</span><span class="cx">             silentSpill(savePlans);
</span><span class="cx">             m_jit.setupArgumentsWithExecState(TrustedImm32(bytecodeIndex));
</span><del>-            appendCallSetResult(triggerOSREntryNow, tempGPR);
</del><ins>+            appendCallSetResult(checkTierUpAndOSREnterNow, tempGPR);
</ins><span class="cx"> 
</span><span class="cx">             if (savePlans.isEmpty())
</span><span class="cx">                 m_jit.branchTestPtr(MacroAssembler::Zero, tempGPR).linkTo(toNextOperation, &amp;m_jit);
</span></span></pre></div>
<a id="trunkSourceJavaScriptCoredfgDFGTierUpEntryTriggerhfromrev211223trunkSourceJavaScriptCoreftlFTLOSREntryh"></a>
<div class="copfile"><h4>Copied: trunk/Source/JavaScriptCore/dfg/DFGTierUpEntryTrigger.h (from rev 211223, trunk/Source/JavaScriptCore/ftl/FTLOSREntry.h) (0 => 211224)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/dfg/DFGTierUpEntryTrigger.h                                (rev 0)
+++ trunk/Source/JavaScriptCore/dfg/DFGTierUpEntryTrigger.h        2017-01-26 19:52:35 UTC (rev 211224)
</span><span class="lines">@@ -0,0 +1,39 @@
</span><ins>+/*
+ * Copyright (C) 2017 Apple Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
+ * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
+ */
+
+#pragma once
+
+#if ENABLE(DFG_JIT)
+
+namespace JSC { namespace DFG {
+
+enum class TierUpEntryTrigger : uint8_t {
+    None = 0, // Must stay zero: JIT-compiled code takes the triggerOSREntryNow slow-path when non-zero.
+    TakeSlowPath, // The slow path can be taken because the compilation needs to be started, or it's ready and we should OSR enter.
+};
+
+} } // namespace JSC::DFG
+
+#endif // ENABLE(DFG_JIT)
</ins></span></pre></div>
<a id="trunkSourceJavaScriptCoredfgDFGToFTLForOSREntryDeferredCompilationCallbackcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/dfg/DFGToFTLForOSREntryDeferredCompilationCallback.cpp (211223 => 211224)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/dfg/DFGToFTLForOSREntryDeferredCompilationCallback.cpp        2017-01-26 19:50:14 UTC (rev 211223)
+++ trunk/Source/JavaScriptCore/dfg/DFGToFTLForOSREntryDeferredCompilationCallback.cpp        2017-01-26 19:52:35 UTC (rev 211224)
</span><span class="lines">@@ -35,7 +35,7 @@
</span><span class="cx"> 
</span><span class="cx"> namespace JSC { namespace DFG {
</span><span class="cx"> 
</span><del>-ToFTLForOSREntryDeferredCompilationCallback::ToFTLForOSREntryDeferredCompilationCallback(uint8_t* forcedOSREntryTrigger)
</del><ins>+ToFTLForOSREntryDeferredCompilationCallback::ToFTLForOSREntryDeferredCompilationCallback(TierUpEntryTrigger* forcedOSREntryTrigger)
</ins><span class="cx">     : m_forcedOSREntryTrigger(forcedOSREntryTrigger)
</span><span class="cx"> {
</span><span class="cx"> }
</span><span class="lines">@@ -44,7 +44,7 @@
</span><span class="cx"> {
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-Ref&lt;ToFTLForOSREntryDeferredCompilationCallback&gt;ToFTLForOSREntryDeferredCompilationCallback::create(uint8_t* forcedOSREntryTrigger)
</del><ins>+Ref&lt;ToFTLForOSREntryDeferredCompilationCallback&gt;ToFTLForOSREntryDeferredCompilationCallback::create(TierUpEntryTrigger* forcedOSREntryTrigger)
</ins><span class="cx"> {
</span><span class="cx">     return adoptRef(*new ToFTLForOSREntryDeferredCompilationCallback(forcedOSREntryTrigger));
</span><span class="cx"> }
</span><span class="lines">@@ -58,7 +58,7 @@
</span><span class="cx">             &quot;) did become ready.\n&quot;);
</span><span class="cx">     }
</span><span class="cx"> 
</span><del>-    *m_forcedOSREntryTrigger = 1;
</del><ins>+    *m_forcedOSREntryTrigger = TierUpEntryTrigger::TakeSlowPath;
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> void ToFTLForOSREntryDeferredCompilationCallback::compilationDidComplete(
</span><span class="lines">@@ -76,7 +76,7 @@
</span><span class="cx">     case CompilationSuccessful: {
</span><span class="cx">         jitCode-&gt;setOSREntryBlock(*codeBlock-&gt;vm(), profiledDFGCodeBlock, codeBlock);
</span><span class="cx">         unsigned osrEntryBytecode = codeBlock-&gt;jitCode()-&gt;ftlForOSREntry()-&gt;bytecodeIndex();
</span><del>-        jitCode-&gt;tierUpEntryTriggers.set(osrEntryBytecode, 1);
</del><ins>+        jitCode-&gt;tierUpEntryTriggers.set(osrEntryBytecode, TierUpEntryTrigger::TakeSlowPath);
</ins><span class="cx">         break;
</span><span class="cx">     }
</span><span class="cx">     case CompilationFailed:
</span></span></pre></div>
<a id="trunkSourceJavaScriptCoredfgDFGToFTLForOSREntryDeferredCompilationCallbackh"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/dfg/DFGToFTLForOSREntryDeferredCompilationCallback.h (211223 => 211224)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/dfg/DFGToFTLForOSREntryDeferredCompilationCallback.h        2017-01-26 19:50:14 UTC (rev 211223)
+++ trunk/Source/JavaScriptCore/dfg/DFGToFTLForOSREntryDeferredCompilationCallback.h        2017-01-26 19:52:35 UTC (rev 211224)
</span><span class="lines">@@ -27,6 +27,7 @@
</span><span class="cx"> 
</span><span class="cx"> #if ENABLE(FTL_JIT)
</span><span class="cx"> 
</span><ins>+#include &quot;DFGTierUpEntryTrigger.h&quot;
</ins><span class="cx"> #include &quot;DeferredCompilationCallback.h&quot;
</span><span class="cx"> #include &lt;wtf/RefPtr.h&gt;
</span><span class="cx"> 
</span><span class="lines">@@ -38,18 +39,18 @@
</span><span class="cx"> 
</span><span class="cx"> class ToFTLForOSREntryDeferredCompilationCallback : public DeferredCompilationCallback {
</span><span class="cx"> protected:
</span><del>-    ToFTLForOSREntryDeferredCompilationCallback(uint8_t* forcedOSREntryTrigger);
</del><ins>+    ToFTLForOSREntryDeferredCompilationCallback(TierUpEntryTrigger* forcedOSREntryTrigger);
</ins><span class="cx"> 
</span><span class="cx"> public:
</span><span class="cx">     virtual ~ToFTLForOSREntryDeferredCompilationCallback();
</span><span class="cx"> 
</span><del>-    static Ref&lt;ToFTLForOSREntryDeferredCompilationCallback&gt; create(uint8_t* forcedOSREntryTrigger);
</del><ins>+    static Ref&lt;ToFTLForOSREntryDeferredCompilationCallback&gt; create(TierUpEntryTrigger* forcedOSREntryTrigger);
</ins><span class="cx">     
</span><span class="cx">     virtual void compilationDidBecomeReadyAsynchronously(CodeBlock*, CodeBlock* profiledDFGCodeBlock);
</span><span class="cx">     virtual void compilationDidComplete(CodeBlock*, CodeBlock* profiledDFGCodeBlock, CompilationResult);
</span><span class="cx"> 
</span><span class="cx"> private:
</span><del>-    uint8_t* m_forcedOSREntryTrigger;
</del><ins>+    TierUpEntryTrigger* m_forcedOSREntryTrigger;
</ins><span class="cx"> };
</span><span class="cx"> 
</span><span class="cx"> } } // namespace JSC::DFG
</span></span></pre></div>
<a id="trunkSourceJavaScriptCoreftlFTLOSREntrycpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/ftl/FTLOSREntry.cpp (211223 => 211224)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/ftl/FTLOSREntry.cpp        2017-01-26 19:50:14 UTC (rev 211223)
+++ trunk/Source/JavaScriptCore/ftl/FTLOSREntry.cpp        2017-01-26 19:52:35 UTC (rev 211224)
</span><span class="lines">@@ -39,7 +39,7 @@
</span><span class="cx"> namespace JSC { namespace FTL {
</span><span class="cx"> 
</span><span class="cx"> SUPPRESS_ASAN
</span><del>-void* prepareOSREntry(
</del><ins>+Expected&lt;void*, OSREntryFail&gt; prepareOSREntry(
</ins><span class="cx">     ExecState* exec, CodeBlock* dfgCodeBlock, CodeBlock* entryCodeBlock,
</span><span class="cx">     unsigned bytecodeIndex, unsigned streamIndex)
</span><span class="cx"> {
</span><span class="lines">@@ -61,7 +61,7 @@
</span><span class="cx">     if (bytecodeIndex != entryCode-&gt;bytecodeIndex()) {
</span><span class="cx">         if (Options::verboseOSR())
</span><span class="cx">             dataLog(&quot;    OSR failed because we don't have an entrypoint for bc#&quot;, bytecodeIndex, &quot;; ours is for bc#&quot;, entryCode-&gt;bytecodeIndex(), &quot;\n&quot;);
</span><del>-        return 0;
</del><ins>+        return makeUnexpected(OSREntryFail::WrongBytecode);
</ins><span class="cx">     }
</span><span class="cx">     
</span><span class="cx">     Operands&lt;JSValue&gt; values;
</span><span class="lines">@@ -95,7 +95,7 @@
</span><span class="cx">     if (UNLIKELY(!vm.ensureStackCapacityFor(&amp;exec-&gt;registers()[virtualRegisterForLocal(stackFrameSize - 1).offset()]))) {
</span><span class="cx">         if (Options::verboseOSR())
</span><span class="cx">             dataLog(&quot;    OSR failed because stack growth failed.\n&quot;);
</span><del>-        return 0;
</del><ins>+        return makeUnexpected(OSREntryFail::StackGrowthFailed);
</ins><span class="cx">     }
</span><span class="cx">     
</span><span class="cx">     exec-&gt;setCodeBlock(entryCodeBlock);
</span></span></pre></div>
<a id="trunkSourceJavaScriptCoreftlFTLOSREntryh"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/ftl/FTLOSREntry.h (211223 => 211224)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/ftl/FTLOSREntry.h        2017-01-26 19:50:14 UTC (rev 211223)
+++ trunk/Source/JavaScriptCore/ftl/FTLOSREntry.h        2017-01-26 19:52:35 UTC (rev 211224)
</span><span class="lines">@@ -27,6 +27,8 @@
</span><span class="cx"> 
</span><span class="cx"> #if ENABLE(FTL_JIT)
</span><span class="cx"> 
</span><ins>+#include &lt;wtf/Expected.h&gt;
+
</ins><span class="cx"> namespace JSC {
</span><span class="cx"> 
</span><span class="cx"> class CodeBlock;
</span><span class="lines">@@ -34,7 +36,12 @@
</span><span class="cx"> 
</span><span class="cx"> namespace FTL {
</span><span class="cx"> 
</span><del>-void* prepareOSREntry(
</del><ins>+enum class OSREntryFail {
+    WrongBytecode,
+    StackGrowthFailed,
+};
+
+Expected&lt;void*, OSREntryFail&gt; prepareOSREntry(
</ins><span class="cx">     ExecState*, CodeBlock* dfgCodeBlock, CodeBlock* entryCodeBlock, unsigned bytecodeIndex,
</span><span class="cx">     unsigned streamIndex);
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceJavaScriptCorejitJITOperationscpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/jit/JITOperations.cpp (211223 => 211224)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/jit/JITOperations.cpp        2017-01-26 19:50:14 UTC (rev 211223)
+++ trunk/Source/JavaScriptCore/jit/JITOperations.cpp        2017-01-26 19:52:35 UTC (rev 211224)
</span><span class="lines">@@ -1423,7 +1423,8 @@
</span><span class="cx">     CodeBlock* optimizedCodeBlock = codeBlock-&gt;replacement();
</span><span class="cx">     ASSERT(JITCode::isOptimizingJIT(optimizedCodeBlock-&gt;jitType()));
</span><span class="cx">     
</span><del>-    if (void* dataBuffer = DFG::prepareOSREntry(exec, optimizedCodeBlock, bytecodeIndex)) {
</del><ins>+    if (auto osrEntryPreparation = DFG::prepareOSREntry(exec, optimizedCodeBlock, bytecodeIndex)) {
+        void* dataBuffer = osrEntryPreparation.value();
</ins><span class="cx">         CODEBLOCK_LOG_EVENT(optimizedCodeBlock, &quot;osrEntry&quot;, (&quot;at bc#&quot;, bytecodeIndex));
</span><span class="cx">         if (Options::verboseOSR()) {
</span><span class="cx">             dataLog(
</span></span></pre>
</div>
</div>

</body>
</html>