diff options
author | Norbert Preining <norbert@preining.info> | 2023-01-12 03:01:29 +0000 |
---|---|---|
committer | Norbert Preining <norbert@preining.info> | 2023-01-12 03:01:29 +0000 |
commit | 6a7900c93acc16d1bbd2f1e26286c7dd7387e6c0 (patch) | |
tree | 76196287351cba68a51934c49468bf1a7846aa76 /dviware/dvisvgm/src | |
parent | c1c19023b4b1d43cb874f84df5102b485853e672 (diff) |
CTAN sync 202301120301
Diffstat (limited to 'dviware/dvisvgm/src')
298 files changed, 26691 insertions, 1539 deletions
diff --git a/dviware/dvisvgm/src/AGLTable.hpp b/dviware/dvisvgm/src/AGLTable.hpp index c1f682ca85..17ba233505 100644 --- a/dviware/dvisvgm/src/AGLTable.hpp +++ b/dviware/dvisvgm/src/AGLTable.hpp @@ -2,7 +2,7 @@ ** AGLTable.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/BasicDVIReader.cpp b/dviware/dvisvgm/src/BasicDVIReader.cpp index bb7f72a844..0b322765c7 100644 --- a/dviware/dvisvgm/src/BasicDVIReader.cpp +++ b/dviware/dvisvgm/src/BasicDVIReader.cpp @@ -2,7 +2,7 @@ ** BasicDVIReader.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/BasicDVIReader.hpp b/dviware/dvisvgm/src/BasicDVIReader.hpp index 111283f619..1a63c4f320 100644 --- a/dviware/dvisvgm/src/BasicDVIReader.hpp +++ b/dviware/dvisvgm/src/BasicDVIReader.hpp @@ -2,7 +2,7 @@ ** BasicDVIReader.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/Bezier.cpp b/dviware/dvisvgm/src/Bezier.cpp index 3a3ec31769..2d90122531 100644 --- a/dviware/dvisvgm/src/Bezier.cpp +++ b/dviware/dvisvgm/src/Bezier.cpp @@ -2,7 +2,7 @@ ** Bezier.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -22,21 +22,58 @@ #include <utility> #include "Bezier.hpp" #include "Matrix.hpp" +#include "utility.hpp" using namespace std; -Bezier::Bezier () { - _points[0] = _points[1] = _points[2] = _points[3] = DPair(0); +QuadBezier::QuadBezier () { + _points[0] = _points[1] = _points[2] = DPair(0, 0); } -/** Creates a quadratic Bézier curve. internally, it's represented as a cubic one. */ -Bezier::Bezier (const DPair &p0, const DPair &p1, const DPair &p2) { - setPoints(p0, p0+(p1-p0)*2.0/3.0, p2+(p1-p2)*2.0/3.0, p2); +QuadBezier::QuadBezier (const DPair &p0, const DPair &p1, const DPair &p2) { + setPoints(p0, p1, p2); +} + + +void QuadBezier::setPoints(const DPair &p0, const DPair &p1, const DPair &p2) { + _points[0] = p0; + _points[1] = p1; + _points[2] = p2; +} + + +/** Returns the value (curve point) at t. */ +DPair QuadBezier::valueAt (double t) const { + const double s = 1-t; + return _points[0]*s*s + _points[1]*2.0*s*t + _points[2]*t*t; +} + + +/** Returns the value of the first derivative of the curve at t. */ +DPair QuadBezier::derivativeAt (double t) const { + return _points[0]*(2*t-2) + _points[1]*(2-4*t) + _points[2]*(2*t); +} + + +/** Returns the arc length of the curve from 0 to t. */ +double QuadBezier::arclen (double t) const { + return math::integral(0, t, 20, [this](double t) -> double { + DPair deriv = derivativeAt(t); + return sqrt(deriv.x()*deriv.x() + deriv.y()*deriv.y()); + }); +} + + +//////////////////////////////////////////////////////////////////////////////// + + +CubicBezier::CubicBezier () { + _points[0] = _points[1] = _points[2] = _points[3] = DPair(0, 0); } -Bezier::Bezier (const DPair &p0, const DPair &p1, const DPair &p2, const DPair &p3) { +CubicBezier::CubicBezier (const DPair &p0, const DPair &p1, const DPair &p2, const DPair &p3) { setPoints(p0, p1, p2, p3); } @@ -45,7 +82,7 @@ Bezier::Bezier (const DPair &p0, const DPair &p1, const DPair &p2, const DPair & * @param[in] source original curve to be clipped * @param[in] t0 'time' parameter \f$\in[0,1]\f$ of source curve where the subcurve starts * @param[in] t1 'time' parameter \f$\in[0,1]\f$ of source curve where the subcurve ends */ -Bezier::Bezier (const Bezier &source, double t0, double t1) { +CubicBezier::CubicBezier (const CubicBezier &source, double t0, double t1) { if (t0 == t1) _points[0] = _points[1] = _points[2] = _points[3] = source.valueAt(t0); else { @@ -56,7 +93,7 @@ Bezier::Bezier (const Bezier &source, double t0, double t1) { else if (t1 == 1) source.subdivide(t0, nullptr, this); else { - Bezier subcurve; + CubicBezier subcurve; source.subdivide(t0, nullptr, &subcurve); subcurve.subdivide((t1-t0)/(1-t0), this, nullptr); } @@ -64,7 +101,16 @@ Bezier::Bezier (const Bezier &source, double t0, double t1) { } -void Bezier::setPoints(const DPair &p0, const DPair &p1, const DPair &p2, const DPair &p3) { +/** Creates a cubic Bézier from a quadratic one. */ +CubicBezier::CubicBezier (const QuadBezier &qbezier) { + const DPair &p0 = qbezier.point(0); + const DPair &p1 = qbezier.point(1); + const DPair &p2 = qbezier.point(2); + setPoints(p0, p0+(p1-p0)*2.0/3.0, p2+(p1-p2)*2.0/3.0, p2); +} + + +void CubicBezier::setPoints(const DPair &p0, const DPair &p1, const DPair &p2, const DPair &p3) { _points[0] = p0; _points[1] = p1; _points[2] = p2; @@ -72,20 +118,20 @@ void Bezier::setPoints(const DPair &p0, const DPair &p1, const DPair &p2, const } -void Bezier::reverse() { +void CubicBezier::reverse() { swap(_points[0], _points[3]); swap(_points[1], _points[2]); } -DPair Bezier::valueAt (double t) const { +DPair CubicBezier::valueAt (double t) const { const double s = 1-t; return _points[0]*s*s*s + _points[1]*3.0*s*s*t + _points[2]*3.0*s*t*t + _points[3]*t*t*t; } /** Returns a value of the Bézier curve's blossom representation. */ -DPair Bezier::blossomValue (double u, double v, double w) const { +DPair CubicBezier::blossomValue (double u, double v, double w) const { const double uv = u*v; const double uw = u*w; const double vw = v*w; @@ -98,7 +144,7 @@ DPair Bezier::blossomValue (double u, double v, double w) const { /** Splits the curve at t into two sub-curves. */ -void Bezier::subdivide (double t, Bezier *bezier1, Bezier *bezier2) const { +void CubicBezier::subdivide (double t, CubicBezier *bezier1, CubicBezier *bezier2) const { const double s = 1-t; DPair p01 = _points[0]*s + _points[1]*t; DPair p12 = _points[1]*s + _points[2]*t; @@ -121,7 +167,7 @@ void Bezier::subdivide (double t, Bezier *bezier1, Bezier *bezier2) const { * @param[out] p the resulting sequence of points defining the start/end points of the line segments * @param[out] t corresponding curve parameters of the approximated points p: \f$ b(t_i)=p_i \f$ * @return number of points in vector p */ -int Bezier::approximate (double delta, std::vector<DPair> &p, vector<double> *t) const { +int CubicBezier::approximate (double delta, std::vector<DPair> &p, vector<double> *t) const { p.push_back(_points[0]); if (t) t->push_back(0); @@ -129,7 +175,7 @@ int Bezier::approximate (double delta, std::vector<DPair> &p, vector<double> *t) } -int Bezier::approximate (double delta, double t0, double t1, vector<DPair> &p, vector<double> *t) const { +int CubicBezier::approximate (double delta, double t0, double t1, vector<DPair> &p, vector<double> *t) const { // compute distance of adjacent control points const double l01 = (_points[1]-_points[0]).length(); const double l12 = (_points[2]-_points[1]).length(); @@ -142,13 +188,13 @@ int Bezier::approximate (double delta, double t0, double t1, vector<DPair> &p, v } else { // subdivide curve at b(0.5) and approximate the resulting parts separately - Bezier b1, b2; + CubicBezier b1, b2; subdivide(0.5, &b1, &b2); double tmid = (t0+t1)/2; b1.approximate(delta, t0, tmid, p, t); b2.approximate(delta, tmid, t1, p, t); } - return p.size(); + return static_cast<int>(p.size()); } @@ -188,7 +234,7 @@ static inline bool near (const DPair &p1, const DPair &p2, double delta) { * @param[in] delta deviation tolerance * @param[in] p control points of the reduced curve * @return degree of the reduced curve */ -int Bezier::reduceDegree (double delta, vector<DPair> &p) const { +int CubicBezier::reduceDegree (double delta, vector<DPair> &p) const { p.clear(); if (near(_points[0], _points[1], delta) && near(_points[0], _points[2], delta) && near(_points[0], _points[3], delta)) p.push_back(_points[0]); @@ -206,7 +252,89 @@ int Bezier::reduceDegree (double delta, vector<DPair> &p) const { for (int i=0; i < 4; i++) p[i] = _points[i]; } - return p.size()-1; + return static_cast<int>(p.size()-1); +} + + +/** Approximates the cubic Bézier curve by a sequence of quadratic ones. + * @param[in] precision specifies the precision of the approximation + * @return map containing the split parameters t_n together with the qudratic curves */ +vector<QuadBezier> CubicBezier::toQuadBeziers (double precision, vector<double> *splitParams) const { + vector<QuadBezier> qbeziers; + toQuadBeziers(0, 1, precision, qbeziers, splitParams); + return qbeziers; +} + + +/** Returns the "mid-point approximation" of this cubic Bézier. */ +QuadBezier CubicBezier::midpointApproximation () const { + DPair p0 = (_points[1]*3.0 - _points[0])/2.0; + DPair p1 = (_points[2]*3.0 - _points[3])/2.0; + return QuadBezier(_points[0], (p0+p1)/2.0, _points[3]); +} + + +/** Approximates a segment of a cubic Bézier curve by a sequence of quadratic curves. + * The quadratic segments are computed by adaptive subdivision of the cubic curve + * as described at http://www.caffeineowl.com/graphics/2d/vectorial/cubic2quad01.html + * @param[in] t0 curve parameter of the segment's start point + * @param[in] t1 curve parameter of the segment's end point + * @param[in] precision maximum allowed distance between the curve points b(t) and the + * corresponding approximated point c(t) on the quadratic curve + * @param[out] qbeziers the resulting quadratic curves sorted in ascending order by their split points + * @param[out] startParams the start parameters t[k] of the curves qbeziers[k] relative to *this. */ +void CubicBezier::toQuadBeziers (double t0, double t1, double precision, vector<QuadBezier> &qbeziers, vector<double> *startParams) const { + // If -p0+3p1-3p2+p3 = 0, the degree of the curve is <= 2 and it's not necessary do any approximation. + // In this case, the control point of the quadratic Bézier curve is (-p0+3p1)/2 = (3p2-p3)/2. + // Otherwise, the distance d between q1:=(-p0+3p1)/2 and q2:=(3p2-p3)/2 is != 0. + // Now we compute the quadratic Bézier with start point p0, end point p3, and control point (q1+q2)/2, + // the "mid-point approximation" (MPA) of b. + // The maximal distance between the points of the original curve b and the corresponding ones + // on the MPA is d*sqrt(3)/18. The same computations can be done for the cubic curves we get + // when subdividing b at a parameter t. The maximal distance of these curves to their MPA + // is t^3*d*sqrt(3)/18. + // Based on the formula for this distance we compute the split point tmax for a given precision + // and check 3 cases: + // * tmax >= 1: curve is quadratic, return MPA of b + // * tmax >= 0.5: split b at t=0.5, return the MPAs of both segments + // * tmax < 0.5: split b at tmax and 1-tmax, return the MPAs of the first and third segment, + // recurse the algorithm for the middle segment + DPair q1 = (_points[1]*3.0 - _points[0])/2.0; + DPair q2 = (_points[2]*3.0 - _points[3])/2.0; + double dist = (q2-q1).length(); + double tmax3 = 18.0/sqrt(3.0)*precision/dist; // the cube of tmax + if (tmax3 >= 1.0) { + // curve is already quadratic, no subdivision necessary, return MPA + qbeziers.emplace_back(QuadBezier(_points[0], (q1+q2)/2.0, _points[3])); + if (startParams) + startParams->push_back(t0); + } + else if (tmax3 >= 0.125) { // tmax >= 0.5 + // split the curve at t=0.5 and compute the MPA for both segments + CubicBezier cbezier1, cbezier2; + subdivide(0.5, &cbezier1, &cbezier2); + qbeziers.emplace_back(cbezier1.midpointApproximation()); + qbeziers.emplace_back(cbezier2.midpointApproximation()); + if (startParams) { + startParams->push_back(t0); + startParams->push_back((t0+t1)/2); + } + } + else { // tmax < 0.5 + double tmax = cbrt(tmax3); + double smax = 1.0-tmax; + double dt = t1-t0; + // first segment can be approximated by its MPA + qbeziers.emplace_back(CubicBezier(*this, 0, tmax).midpointApproximation()); + if (startParams) + startParams->push_back(t0); + // recurse for middle segment + CubicBezier(*this, tmax, smax).toQuadBeziers(t0+tmax*dt, t0+smax*dt, precision, qbeziers, startParams); + // third segment can be approximated by its MPA + qbeziers.emplace_back(CubicBezier(*this, smax, 1).midpointApproximation()); + if (startParams) + startParams->push_back(smax); + } } @@ -231,7 +359,7 @@ static bool solve_quadratic_equation (double a, double b, double c, double &x1, /** Returns a tight bounding box parallel to the x- and y-axis. */ -BoundingBox Bezier::getBBox () const { +BoundingBox CubicBezier::getBBox () const { BoundingBox bbox; // coefficients of the derivative DPair pa = _points[3] - _points[2]*3.0 + _points[1]*3.0 - _points[0]; @@ -258,8 +386,9 @@ BoundingBox Bezier::getBBox () const { } -Bezier& Bezier::transform (const Matrix &matrix) { - for (int i=0; i < 4; i++) - _points[i] = matrix*_points[i]; +CubicBezier& CubicBezier::transform (const Matrix &matrix) { + for (auto &point : _points) + point = matrix * point; return *this; } + diff --git a/dviware/dvisvgm/src/Bezier.hpp b/dviware/dvisvgm/src/Bezier.hpp index 2749797e59..9036bfcd55 100644 --- a/dviware/dvisvgm/src/Bezier.hpp +++ b/dviware/dvisvgm/src/Bezier.hpp @@ -2,7 +2,7 @@ ** Bezier.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -27,25 +27,45 @@ class Matrix; -class Bezier { +class QuadBezier { public: - Bezier (); - Bezier (const DPair &p0, const DPair &p1, const DPair &p2); - Bezier (const DPair &p0, const DPair &p1, const DPair &p2, const DPair &p3); - Bezier (const Bezier &source, double t0, double t1); + QuadBezier (); + QuadBezier (const DPair &p0, const DPair &p1, const DPair &p2); + void setPoints (const DPair &p0, const DPair &p1, const DPair &p2); + constexpr const DPair& point (int i) const {return _points[i];} + DPair valueAt (double t) const; + DPair derivativeAt (double t) const; + double arclen (double t=1.0) const; + + private: + DPair _points[3]; +}; + + +class CubicBezier { + public: + CubicBezier (); + //CubicBezier (const DPair &p0, const DPair &p1, const DPair &p2); + CubicBezier (const DPair &p0, const DPair &p1, const DPair &p2, const DPair &p3); + CubicBezier (double x0, double y0, double x1, double y1, double x2, double y2, double x3, double y3); + CubicBezier (const CubicBezier &source, double t0, double t1); + explicit CubicBezier (const QuadBezier &qbezier); void setPoints (const DPair &p0, const DPair &p1, const DPair &p2, const DPair &p3); void reverse (); DPair valueAt (double t) const; DPair blossomValue (double u, double v, double w) const; - void subdivide (double t, Bezier *bezier1, Bezier *bezier2) const; - Bezier& transform (const Matrix &matrix); + void subdivide (double t, CubicBezier *bezier1, CubicBezier *bezier2) const; + CubicBezier& transform (const Matrix &matrix); int approximate (double delta, std::vector<DPair> &p, std::vector<double> *t=nullptr) const; - const DPair& point (int i) const {return _points[i];} + constexpr const DPair& point (int i) const {return _points[i];} int reduceDegree (double delta, std::vector<DPair> &p) const; + std::vector<QuadBezier> toQuadBeziers (double delta, std::vector<double> *startParams=nullptr) const; BoundingBox getBBox () const; protected: int approximate (double delta, double t0, double t1, std::vector<DPair> &p, std::vector<double> *t) const; + void toQuadBeziers (double t0, double t1, double precision, std::vector<QuadBezier> &qbeziers, std::vector<double> *startParams) const; + QuadBezier midpointApproximation () const; private: DPair _points[4]; diff --git a/dviware/dvisvgm/src/BgColorSpecialHandler.cpp b/dviware/dvisvgm/src/BgColorSpecialHandler.cpp index 2fcf74f6e1..86e5fb72d7 100644 --- a/dviware/dvisvgm/src/BgColorSpecialHandler.cpp +++ b/dviware/dvisvgm/src/BgColorSpecialHandler.cpp @@ -2,7 +2,7 @@ ** BgColorSpecialHandler.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/BgColorSpecialHandler.hpp b/dviware/dvisvgm/src/BgColorSpecialHandler.hpp index 1194f4b793..7a0290b05f 100644 --- a/dviware/dvisvgm/src/BgColorSpecialHandler.hpp +++ b/dviware/dvisvgm/src/BgColorSpecialHandler.hpp @@ -2,7 +2,7 @@ ** BgColorSpecialHandler.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/Bitmap.cpp b/dviware/dvisvgm/src/Bitmap.cpp index 9bdc881332..517355ba43 100644 --- a/dviware/dvisvgm/src/Bitmap.cpp +++ b/dviware/dvisvgm/src/Bitmap.cpp @@ -2,7 +2,7 @@ ** Bitmap.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/Bitmap.hpp b/dviware/dvisvgm/src/Bitmap.hpp index dcd6a1f19f..a065ba1790 100644 --- a/dviware/dvisvgm/src/Bitmap.hpp +++ b/dviware/dvisvgm/src/Bitmap.hpp @@ -2,7 +2,7 @@ ** Bitmap.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/BoundingBox.cpp b/dviware/dvisvgm/src/BoundingBox.cpp index 64b24fd233..a57da059dc 100644 --- a/dviware/dvisvgm/src/BoundingBox.cpp +++ b/dviware/dvisvgm/src/BoundingBox.cpp @@ -2,7 +2,7 @@ ** BoundingBox.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/BoundingBox.hpp b/dviware/dvisvgm/src/BoundingBox.hpp index 51da4d04fb..673243eb9b 100644 --- a/dviware/dvisvgm/src/BoundingBox.hpp +++ b/dviware/dvisvgm/src/BoundingBox.hpp @@ -2,7 +2,7 @@ ** BoundingBox.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/CLCommandLine.cpp b/dviware/dvisvgm/src/CLCommandLine.cpp index e8b538e783..8eb3d54984 100644 --- a/dviware/dvisvgm/src/CLCommandLine.cpp +++ b/dviware/dvisvgm/src/CLCommandLine.cpp @@ -2,7 +2,7 @@ ** CLCommandLine.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/CLCommandLine.hpp b/dviware/dvisvgm/src/CLCommandLine.hpp index 58001c607f..72d0bc17a7 100644 --- a/dviware/dvisvgm/src/CLCommandLine.hpp +++ b/dviware/dvisvgm/src/CLCommandLine.hpp @@ -2,7 +2,7 @@ ** CLCommandLine.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/CLOption.hpp b/dviware/dvisvgm/src/CLOption.hpp index daaaa3a637..a6dbe55131 100644 --- a/dviware/dvisvgm/src/CLOption.hpp +++ b/dviware/dvisvgm/src/CLOption.hpp @@ -2,7 +2,7 @@ ** CLOption.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/CMap.cpp b/dviware/dvisvgm/src/CMap.cpp index cedc1a7c57..46ca0ba574 100644 --- a/dviware/dvisvgm/src/CMap.cpp +++ b/dviware/dvisvgm/src/CMap.cpp @@ -2,7 +2,7 @@ ** CMap.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/CMap.hpp b/dviware/dvisvgm/src/CMap.hpp index 7a6b24e833..af7f109625 100644 --- a/dviware/dvisvgm/src/CMap.hpp +++ b/dviware/dvisvgm/src/CMap.hpp @@ -2,7 +2,7 @@ ** CMap.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/CMapManager.cpp b/dviware/dvisvgm/src/CMapManager.cpp index ddf3a8fdb1..17da0a063a 100644 --- a/dviware/dvisvgm/src/CMapManager.cpp +++ b/dviware/dvisvgm/src/CMapManager.cpp @@ -2,7 +2,7 @@ ** CMapManager.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/CMapManager.hpp b/dviware/dvisvgm/src/CMapManager.hpp index 8b5ff3cf8c..56ad32d44d 100644 --- a/dviware/dvisvgm/src/CMapManager.hpp +++ b/dviware/dvisvgm/src/CMapManager.hpp @@ -2,7 +2,7 @@ ** CMapManager.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/CMapReader.cpp b/dviware/dvisvgm/src/CMapReader.cpp index ff9a76f33c..4b8f3297ac 100644 --- a/dviware/dvisvgm/src/CMapReader.cpp +++ b/dviware/dvisvgm/src/CMapReader.cpp @@ -2,7 +2,7 @@ ** CMapReader.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/CMapReader.hpp b/dviware/dvisvgm/src/CMapReader.hpp index de87c4e4c0..9ef573f5dd 100644 --- a/dviware/dvisvgm/src/CMapReader.hpp +++ b/dviware/dvisvgm/src/CMapReader.hpp @@ -2,7 +2,7 @@ ** CMapReader.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/Calculator.cpp b/dviware/dvisvgm/src/Calculator.cpp index 7a655dcec1..db7241245d 100644 --- a/dviware/dvisvgm/src/Calculator.cpp +++ b/dviware/dvisvgm/src/Calculator.cpp @@ -2,7 +2,7 @@ ** Calculator.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/Calculator.hpp b/dviware/dvisvgm/src/Calculator.hpp index 9e4002ce72..150c2ee745 100644 --- a/dviware/dvisvgm/src/Calculator.hpp +++ b/dviware/dvisvgm/src/Calculator.hpp @@ -2,7 +2,7 @@ ** Calculator.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/CharMapID.cpp b/dviware/dvisvgm/src/CharMapID.cpp index 0132e61af2..b5a8576667 100644 --- a/dviware/dvisvgm/src/CharMapID.cpp +++ b/dviware/dvisvgm/src/CharMapID.cpp @@ -2,7 +2,7 @@ ** CharMapID.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/CharMapID.hpp b/dviware/dvisvgm/src/CharMapID.hpp index 2b97a8e58b..400185dc2b 100644 --- a/dviware/dvisvgm/src/CharMapID.hpp +++ b/dviware/dvisvgm/src/CharMapID.hpp @@ -2,7 +2,7 @@ ** CharMapID.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/Character.hpp b/dviware/dvisvgm/src/Character.hpp index 6a0e836ccc..5811481dcc 100644 --- a/dviware/dvisvgm/src/Character.hpp +++ b/dviware/dvisvgm/src/Character.hpp @@ -2,7 +2,7 @@ ** Character.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/Color.cpp b/dviware/dvisvgm/src/Color.cpp index 54d7eb2178..d5b6413081 100644 --- a/dviware/dvisvgm/src/Color.cpp +++ b/dviware/dvisvgm/src/Color.cpp @@ -2,7 +2,7 @@ ** Color.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/Color.hpp b/dviware/dvisvgm/src/Color.hpp index 19ab9e6d44..0edb9e9886 100644 --- a/dviware/dvisvgm/src/Color.hpp +++ b/dviware/dvisvgm/src/Color.hpp @@ -2,7 +2,7 @@ ** Color.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/ColorSpecialHandler.cpp b/dviware/dvisvgm/src/ColorSpecialHandler.cpp index 9ea45f4cd4..35bc111ee3 100644 --- a/dviware/dvisvgm/src/ColorSpecialHandler.cpp +++ b/dviware/dvisvgm/src/ColorSpecialHandler.cpp @@ -2,7 +2,7 @@ ** ColorSpecialHandler.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/ColorSpecialHandler.hpp b/dviware/dvisvgm/src/ColorSpecialHandler.hpp index 1e62c8c14b..ea542e1f06 100644 --- a/dviware/dvisvgm/src/ColorSpecialHandler.hpp +++ b/dviware/dvisvgm/src/ColorSpecialHandler.hpp @@ -2,7 +2,7 @@ ** ColorSpecialHandler.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/CommandLine.hpp b/dviware/dvisvgm/src/CommandLine.hpp index fafd9f5ad3..72edde3ee1 100644 --- a/dviware/dvisvgm/src/CommandLine.hpp +++ b/dviware/dvisvgm/src/CommandLine.hpp @@ -2,7 +2,7 @@ // It is part of the dvisvgm package and published under the terms // of the GNU General Public License version 3, or (at your option) any later version. // See file COPYING for further details. -// Copyright (C) 2016-2022 Martin Gieseking <martin.gieseking@uos.de> +// Copyright (C) 2016-2023 Martin Gieseking <martin.gieseking@uos.de> #ifndef COMMANDLINE_HPP #define COMMANDLINE_HPP @@ -20,7 +20,7 @@ class CommandLine : public CL::CommandLine { CommandLine () : CL::CommandLine( "This program converts DVI files, as created by TeX/LaTeX, as well as\nEPS and PDF files to the XML-based scalable vector graphics format SVG.", "[options] dvifile\n--eps [options] epsfile\n--pdf [options] pdffile", - "Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de>" + "Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de>" ) {} CommandLine (int argc, char **argv) : CommandLine() { @@ -35,6 +35,8 @@ class CommandLine : public CL::CommandLine { Option colorOpt {"color", '\0', "colorize messages"}; Option colornamesOpt {"colornames", '\0', "prefer color names to RGB values if possible"}; Option commentsOpt {"comments", '\0', "add comments with additional information"}; + Option debugGlyphsOpt {"debug-glyphs", '\0', "create PS files for all glyphs converted to TTF"}; + Option embedBitmapsOpt {"embed-bitmaps", '\0', "prevent references to external bitmap files"}; Option epsOpt {"eps", 'E', "convert EPS file to SVG"}; Option exactBboxOpt {"exact-bbox", 'e', "compute exact glyph bounding boxes"}; TypedOption<std::string, Option::ArgMode::REQUIRED> fontFormatOpt {"font-format", 'f', "format", "svg", "set file format of embedded fonts"}; @@ -106,6 +108,7 @@ class CommandLine : public CL::CommandLine { #endif {&colornamesOpt, 1}, {&commentsOpt, 1}, + {&embedBitmapsOpt, 1}, #if !defined(DISABLE_WOFF) {&fontFormatOpt, 1}, #endif @@ -135,6 +138,9 @@ class CommandLine : public CL::CommandLine { {&transformOpt, 2}, {&zoomOpt, 2}, {&cacheOpt, 3}, +#if defined(TTFDEBUG) + {&debugGlyphsOpt, 3}, +#endif {&exactBboxOpt, 3}, {&keepOpt, 3}, #if !defined(HAVE_LIBGS) && !defined(DISABLE_GS) diff --git a/dviware/dvisvgm/src/DLLoader.cpp b/dviware/dvisvgm/src/DLLoader.cpp index d5d749cc4a..3ac13ff430 100644 --- a/dviware/dvisvgm/src/DLLoader.cpp +++ b/dviware/dvisvgm/src/DLLoader.cpp @@ -2,7 +2,7 @@ ** DLLoader.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/DLLoader.hpp b/dviware/dvisvgm/src/DLLoader.hpp index 6cb35723ee..48c774200b 100644 --- a/dviware/dvisvgm/src/DLLoader.hpp +++ b/dviware/dvisvgm/src/DLLoader.hpp @@ -2,7 +2,7 @@ ** DLLoader.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/DVIActions.hpp b/dviware/dvisvgm/src/DVIActions.hpp index 228b897686..8e2e2a0829 100644 --- a/dviware/dvisvgm/src/DVIActions.hpp +++ b/dviware/dvisvgm/src/DVIActions.hpp @@ -2,7 +2,7 @@ ** DVIActions.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/DVIReader.cpp b/dviware/dvisvgm/src/DVIReader.cpp index b8c5bc449e..6dd7bebb69 100644 --- a/dviware/dvisvgm/src/DVIReader.cpp +++ b/dviware/dvisvgm/src/DVIReader.cpp @@ -2,7 +2,7 @@ ** DVIReader.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -595,6 +595,20 @@ void DVIReader::cmdXFontDef (int) { } +/** Returns the width of a string typed with a given font. + * @param[in] glyphs glyphs of the string + * @param[in] font assigned font + * @return width in bp units */ +static double string_width (const vector<uint16_t> &glyphs, const Font *font) { + double width=0; + if (auto nfont = font_cast<const NativeFont*>(font)) { + for (auto glyph: glyphs) + width += nfont->hAdvance(Character(Character::INDEX, glyph)); + } + return width; +} + + /** XDV extension: prints an array of characters where each character * can take independent x and y coordinates. * parameters: w[4] n[2] (dx,dy)[(4+4)n] glyphs[2n] */ @@ -602,11 +616,14 @@ void DVIReader::cmdXGlyphArray (int) { vector<double> dx, dy; vector<uint16_t> glyphs; double width = putGlyphArray(false, dx, dy, glyphs); - if (Font *font = FontManager::instance().getFont(_currFontNum)) - dviXGlyphArray(dx, dy, glyphs, *font); - else + Font *font = FontManager::instance().getFont(_currFontNum); + if (!font) throw DVIException("missing setfont prior to xglypharray"); - moveRight(width, MoveMode::SETCHAR); + dviXGlyphArray(dx, dy, glyphs, *font); + double diff = abs(string_width(glyphs, font) - width); + // if the given width differs from the actual width of the string, + // we must force a position change to prevent misalignments + moveRight(width, diff < 0.2 ? MoveMode::SETCHAR : MoveMode::CHANGEPOS); } @@ -617,11 +634,14 @@ void DVIReader::cmdXGlyphString (int) { vector<double> dx, dy; vector<uint16_t> glyphs; double width = putGlyphArray(true, dx, dy, glyphs); - if (Font *font = FontManager::instance().getFont(_currFontNum)) - dviXGlyphString(dx, glyphs, *font); - else + Font *font = FontManager::instance().getFont(_currFontNum); + if (!font) throw DVIException("missing setfont prior to xglyphstring"); - moveRight(width, MoveMode::SETCHAR); + dviXGlyphString(dx, glyphs, *font); + double diff = abs(string_width(glyphs, font) - width); + // if the given width differs from the actual width of the string, + // we must force a position change to prevent misalignments + moveRight(width, diff < 0.2 ? MoveMode::SETCHAR : MoveMode::CHANGEPOS); } @@ -639,11 +659,14 @@ void DVIReader::cmdXTextAndGlyphs (int) { vector<double> x, y; vector<uint16_t> glyphs; double width = putGlyphArray(false, x, y, glyphs); - if (Font *font = FontManager::instance().getFont(_currFontNum)) - dviXTextAndGlyphs(x, y, chars, glyphs, *font); - else + Font *font = FontManager::instance().getFont(_currFontNum); + if (!font) throw DVIException("missing setfont prior to xtextandglyphs"); - moveRight(width, MoveMode::SETCHAR); + dviXTextAndGlyphs(x, y, chars, glyphs, *font); + double diff = abs(string_width(glyphs, font) - width); + // if the given width differs from the actual width of the string, + // we must force a position change to prevent misalignments + moveRight(width, diff < 0.2 ? MoveMode::SETCHAR : MoveMode::CHANGEPOS); } diff --git a/dviware/dvisvgm/src/DVIReader.hpp b/dviware/dvisvgm/src/DVIReader.hpp index f2daf5da8a..2e8958850f 100644 --- a/dviware/dvisvgm/src/DVIReader.hpp +++ b/dviware/dvisvgm/src/DVIReader.hpp @@ -2,7 +2,7 @@ ** DVIReader.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/DVIToSVG.cpp b/dviware/dvisvgm/src/DVIToSVG.cpp index 45261b99c0..f5501f33f6 100644 --- a/dviware/dvisvgm/src/DVIToSVG.cpp +++ b/dviware/dvisvgm/src/DVIToSVG.cpp @@ -2,7 +2,7 @@ ** DVIToSVG.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -120,6 +120,7 @@ void DVIToSVG::convert (unsigned first, unsigned last, HashFunction *hashFunc) { SVGOptimizer(_svg).execute(); embedFonts(_svg.rootNode()); bool success = _svg.write(_out.getPageStream(currentPageNumber(), numberOfPages(), hashTriple)); + _out.finish(); string fname = path.shorterAbsoluteOrRelative(); if (fname.empty()) fname = "<stdout>"; @@ -350,9 +351,7 @@ void DVIToSVG::embedFonts (XMLElement *svgElement) { if (!svgElement || !_actions) // no dvi actions => no chars written => no fonts to embed return; - const DVIToSVGActions *svgActions = static_cast<DVIToSVGActions*>(_actions.get()); - auto &usedCharsMap = svgActions->getUsedChars(); - + auto &usedCharsMap = FontManager::instance().getUsedChars(); collect_chars(usedCharsMap); GlyphTracerMessages messages; @@ -374,7 +373,7 @@ void DVIToSVG::embedFonts (XMLElement *svgElement) { else Message::wstream(true) << "can't embed font '" << font->name() << "'\n"; } - _svg.appendFontStyles(svgActions->getUsedFonts()); + _svg.appendFontStyles(FontManager::instance().getUsedFonts()); } diff --git a/dviware/dvisvgm/src/DVIToSVG.hpp b/dviware/dvisvgm/src/DVIToSVG.hpp index 0ac723019c..ada151cca0 100644 --- a/dviware/dvisvgm/src/DVIToSVG.hpp +++ b/dviware/dvisvgm/src/DVIToSVG.hpp @@ -2,7 +2,7 @@ ** DVIToSVG.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/DVIToSVGActions.cpp b/dviware/dvisvgm/src/DVIToSVGActions.cpp index 74e0f97aa5..1d173dfa8f 100644 --- a/dviware/dvisvgm/src/DVIToSVGActions.cpp +++ b/dviware/dvisvgm/src/DVIToSVGActions.cpp @@ -2,7 +2,7 @@ ** DVIToSVGActions.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -33,8 +33,7 @@ using namespace std; void DVIToSVGActions::reset() { - _usedChars.clear(); - _usedFonts.clear(); + FontManager::instance().resetUsedChars(); _bbox = BoundingBox(); _currentFontNum = -1; _bgcolor = Color::TRANSPARENT; @@ -93,10 +92,7 @@ void DVIToSVGActions::setChar (double x, double y, unsigned c, bool vertical, co // record font names and chars. The various font sizes can be ignored here. // For a given font object, Font::uniqueFont() returns the same unique font object for // all fonts with the same name. - _usedChars[SVGTree::USE_FONTS ? font.uniqueFont() : &font].insert(c); - - // However, we record all required fonts - _usedFonts.insert(&font); + FontManager::instance().addUsedChar(font, c); _svg.appendChar(c, x, y); static string fontname; @@ -216,10 +212,10 @@ void DVIToSVGActions::special (const string &spc, double dvi2bp, bool preprocess * @param[in] c array with 10 components representing \\count0 ... \\count9. c[0] contains the * current (printed) page number (may differ from page count) */ void DVIToSVGActions::beginPage (unsigned pageno, const vector<int32_t>&) { - SpecialManager::instance().notifyBeginPage(pageno, *this); _svg.newPage(++_pageCount); _bbox = BoundingBox(); // clear bounding box _boxes.clear(); + SpecialManager::instance().notifyBeginPage(pageno, *this); } diff --git a/dviware/dvisvgm/src/DVIToSVGActions.hpp b/dviware/dvisvgm/src/DVIToSVGActions.hpp index 651e71f5d3..138670ddbc 100644 --- a/dviware/dvisvgm/src/DVIToSVGActions.hpp +++ b/dviware/dvisvgm/src/DVIToSVGActions.hpp @@ -2,7 +2,7 @@ ** DVIToSVGActions.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -37,8 +37,6 @@ class Font; class XMLNode; class DVIToSVGActions : public DVIActions, public SpecialActions { - using CharMap = std::unordered_map<const Font*, std::set<int>>; - using FontSet = std::unordered_set<const Font*>; using BoxMap = std::unordered_map<std::string,BoundingBox>; public: @@ -80,8 +78,6 @@ class DVIToSVGActions : public DVIActions, public SpecialActions { void embed (const DPair &p, double r=0) override; FilePath getSVGFilePath (unsigned pageno) const override; std::string getBBoxFormatString () const override; - CharMap& getUsedChars () const {return _usedChars;} - const FontSet& getUsedFonts () const {return _usedFonts;} void setDVIReader (BasicDVIReader &r) {_dvireader = &r;} private: @@ -90,8 +86,6 @@ class DVIToSVGActions : public DVIActions, public SpecialActions { BoundingBox _bbox; int _pageCount=0; int _currentFontNum=-1; - mutable CharMap _usedChars; - FontSet _usedFonts; Color _bgcolor=Color::TRANSPARENT; BoxMap _boxes; bool _outputLocked=false; diff --git a/dviware/dvisvgm/src/Directory.cpp b/dviware/dvisvgm/src/Directory.cpp index 87c31dbf08..4f89c1c371 100644 --- a/dviware/dvisvgm/src/Directory.cpp +++ b/dviware/dvisvgm/src/Directory.cpp @@ -2,7 +2,7 @@ ** Directory.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/Directory.hpp b/dviware/dvisvgm/src/Directory.hpp index 7a90c87618..257a7c4ea2 100644 --- a/dviware/dvisvgm/src/Directory.hpp +++ b/dviware/dvisvgm/src/Directory.hpp @@ -2,7 +2,7 @@ ** Directory.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/DvisvgmSpecialHandler.cpp b/dviware/dvisvgm/src/DvisvgmSpecialHandler.cpp index 1acef64f0e..abeb52be36 100644 --- a/dviware/dvisvgm/src/DvisvgmSpecialHandler.cpp +++ b/dviware/dvisvgm/src/DvisvgmSpecialHandler.cpp @@ -2,7 +2,7 @@ ** DvisvgmSpecialHandler.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -23,6 +23,7 @@ #include <utility> #include "Calculator.hpp" #include "DvisvgmSpecialHandler.hpp" +#include "GraphicsPathParser.hpp" #include "InputBuffer.hpp" #include "InputReader.hpp" #include "Length.hpp" @@ -35,10 +36,60 @@ using namespace std; -DvisvgmSpecialHandler::DvisvgmSpecialHandler () : - _currentMacro(_macros.end()), - _defsParser(&SVGTree::appendToDefs, &SVGTree::pushDefsContext, &SVGTree::popDefsContext), - _pageParser(&SVGTree::appendToPage, &SVGTree::pushPageContext, &SVGTree::popPageContext) +void SVGParser::assign (SVGTree &svg, Append append, PushContext pushContext, PopContext popContext) { + _svg = &svg; + _append = append; + _pushContext = pushContext; + _popContext = popContext; + setRootElement(nullptr); +} + + +XMLElement* SVGParser::openElement (const std::string &tag) { + XMLElement *elem = XMLParser::openElement(tag); + if (elem->name() == "path" || elem->name() == "svg:path") { + if (const char *d = elem->getAttributeValue("d")) { + try { + // parse and reformat path definition + auto path = GraphicsPathParser<double>().parse(d); + ostringstream oss; + path.writeSVG(oss, SVGTree::RELATIVE_PATH_CMDS); + elem->addAttribute("d", oss.str()); + } + catch (const GraphicsPathParserException &e) { + throw XMLParserException(string("error in path data: ")+e.what()); + } + } + } + return elem; +} + + +void SVGParser::appendNode (unique_ptr<XMLNode> node) { + (_svg->*_append)(std::move(node)); +} + + +XMLElement* SVGParser::finishPushContext (unique_ptr<XMLElement> elem) { + unique_ptr<SVGElement> svgElement{static_cast<SVGElement*>(elem.release())}; + XMLElement *elemPtr = svgElement.get(); + (_svg->*_pushContext)(std::move(svgElement)); + return elemPtr; +} + + +void SVGParser::finishPopContext () { + (_svg->*_popContext)(); +} + + +XMLElement* SVGParser::createElementPtr (std::string name) const { + return new SVGElement(std::move(name)); +} + +/////////////////////////////////////////////////////////////////////////// + +DvisvgmSpecialHandler::DvisvgmSpecialHandler () : _currentMacro(_macros.end()) { } @@ -232,7 +283,7 @@ void DvisvgmSpecialHandler::processRaw (InputReader &ir, SpecialActions &actions if (!xml.empty()) { evaluate_expressions(xml, actions); expand_constants(xml, actions); - _pageParser.parse(xml, actions.svgTree()); + _pageParser.parse(std::move(xml)); } } } @@ -244,7 +295,7 @@ void DvisvgmSpecialHandler::processRawDef (InputReader &ir, SpecialActions &acti if (!xml.empty()) { evaluate_expressions(xml, actions); expand_constants(xml, actions); - _defsParser.parse(xml, actions.svgTree()); + _defsParser.parse(std::move(xml)); } } } @@ -276,9 +327,9 @@ void DvisvgmSpecialHandler::processRawPut (InputReader &ir, SpecialActions &acti if ((type == 'P' || type == 'D') && !def.empty()) { expand_constants(def, actions); if (type == 'P') - _pageParser.parse(def, actions.svgTree()); + _pageParser.parse(std::move(def)); else { // type == 'D' - _defsParser.parse(def, actions.svgTree()); + _defsParser.parse(std::move(def)); type = 'L'; // locked } } @@ -413,9 +464,16 @@ void DvisvgmSpecialHandler::dviPreprocessingFinished () { } +void DvisvgmSpecialHandler::dviBeginPage (unsigned, SpecialActions &actions) { + SVGTree &svg = actions.svgTree(); + _defsParser.assign(svg, &SVGTree::appendToDefs, &SVGTree::pushDefsContext, &SVGTree::popDefsContext); + _pageParser.assign(svg, &SVGTree::appendToPage, &SVGTree::pushPageContext, &SVGTree::popPageContext); +} + + void DvisvgmSpecialHandler::dviEndPage (unsigned, SpecialActions &actions) { - _defsParser.finish(actions.svgTree()); - _pageParser.finish(actions.svgTree()); + _defsParser.finish(); + _pageParser.finish(); actions.bbox().unlock(); for (auto &strvecpair : _macros) { StringVector &vec = strvecpair.second; diff --git a/dviware/dvisvgm/src/DvisvgmSpecialHandler.hpp b/dviware/dvisvgm/src/DvisvgmSpecialHandler.hpp index 7d1ad20cfe..4c9c84b078 100644 --- a/dviware/dvisvgm/src/DvisvgmSpecialHandler.hpp +++ b/dviware/dvisvgm/src/DvisvgmSpecialHandler.hpp @@ -2,7 +2,7 @@ ** DvisvgmSpecialHandler.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -43,6 +43,30 @@ class XMLNode; #pragma pointers_to_members(full_generality, single_inheritance) #endif +class SVGParser : public XMLParser { + using Append = void (SVGTree::*)(std::unique_ptr<XMLNode> node); + using PushContext = void (SVGTree::*)(std::unique_ptr<SVGElement> elem); + using PopContext = void (SVGTree::*)(); + + public: + SVGParser () : XMLParser() {} + void assign (SVGTree &svg, Append append, PushContext pushContext, PopContext popContext); + + protected: + XMLElement* openElement (const std::string &tag) override; + void appendNode (std::unique_ptr<XMLNode> node) override; + XMLElement* finishPushContext (std::unique_ptr<XMLElement> elem) override; + void finishPopContext () override; + XMLElement* createElementPtr (std::string name) const override; + + private: + SVGTree *_svg=nullptr; + Append _append=nullptr; + PushContext _pushContext=nullptr; + PopContext _popContext=nullptr; +}; + + class DvisvgmSpecialHandler : public SpecialHandler { using StringVector = std::vector<std::string>; using MacroMap = std::unordered_map<std::string, StringVector>; @@ -69,14 +93,15 @@ class DvisvgmSpecialHandler : public SpecialHandler { void processBBox (InputReader &ir, SpecialActions &actions); void processImg (InputReader &ir, SpecialActions &actions); void dviPreprocessingFinished () override; + void dviBeginPage (unsigned pageno, SpecialActions &actions) override; void dviEndPage (unsigned pageno, SpecialActions &actions) override; private: MacroMap _macros; MacroMap::iterator _currentMacro; int _nestingLevel=0; ///< nesting depth of rawset specials - XMLParser _defsParser; ///< parses XML added by 'rawdef' specials - XMLParser _pageParser; ///< parses XML added by 'raw' specials + SVGParser _defsParser; ///< parses XML added by 'rawdef' specials + SVGParser _pageParser; ///< parses XML added by 'raw' specials }; #endif diff --git a/dviware/dvisvgm/src/EPSFile.cpp b/dviware/dvisvgm/src/EPSFile.cpp index 021598b35d..982c72faca 100644 --- a/dviware/dvisvgm/src/EPSFile.cpp +++ b/dviware/dvisvgm/src/EPSFile.cpp @@ -2,7 +2,7 @@ ** EPSFile.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/EPSFile.hpp b/dviware/dvisvgm/src/EPSFile.hpp index 6523889df0..2aa74cb6ba 100644 --- a/dviware/dvisvgm/src/EPSFile.hpp +++ b/dviware/dvisvgm/src/EPSFile.hpp @@ -2,7 +2,7 @@ ** EPSFile.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/EPSToSVG.hpp b/dviware/dvisvgm/src/EPSToSVG.hpp index df2b635874..f1e550b135 100644 --- a/dviware/dvisvgm/src/EPSToSVG.hpp +++ b/dviware/dvisvgm/src/EPSToSVG.hpp @@ -2,7 +2,7 @@ ** EPSToSVG.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/EllipticalArc.cpp b/dviware/dvisvgm/src/EllipticalArc.cpp index 6de120b0e6..13b6b2d596 100644 --- a/dviware/dvisvgm/src/EllipticalArc.cpp +++ b/dviware/dvisvgm/src/EllipticalArc.cpp @@ -2,7 +2,7 @@ ** EllipticalArc.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -156,7 +156,7 @@ void EllipticalArc::transform (const Matrix &matrix) { /** Approximates an arc of the unit circle by a single cubic Bézier curve. * @param[in] phi start angle of the arc in radians * @param[in] delta length of the arc */ -static Bezier approx_unit_arc (double phi, double delta) { +static CubicBezier approx_unit_arc (double phi, double delta) { double c = 0.551915024494; // see http://spencermortensen.com/articles/bezier-circle if (abs(delta + math::HALF_PI) < 1e-7) c = -c; @@ -166,13 +166,13 @@ static Bezier approx_unit_arc (double phi, double delta) { DPair p4(cos(phi+delta), sin(phi+delta)); DPair p2(p1.x()-c*p1.y(), p1.y()+c*p1.x()); DPair p3(p4.x()+c*p4.y(), p4.y()-c*p4.x()); - return Bezier(p1, p2, p3, p4); + return CubicBezier(p1, p2, p3, p4); } /** Approximates the arc by a sequence of cubic Bézier curves. */ -vector<Bezier> EllipticalArc::approximate () const { - vector<Bezier> beziers; +vector<CubicBezier> EllipticalArc::approximate () const { + vector<CubicBezier> beziers; if (_startPoint != _endPoint) { if (isStraightLine()) { DPair dir = (_endPoint - _startPoint); diff --git a/dviware/dvisvgm/src/EllipticalArc.hpp b/dviware/dvisvgm/src/EllipticalArc.hpp index 0c32e58316..841e4903ed 100644 --- a/dviware/dvisvgm/src/EllipticalArc.hpp +++ b/dviware/dvisvgm/src/EllipticalArc.hpp @@ -2,7 +2,7 @@ ** EllipticalArc.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -47,7 +47,7 @@ class EllipticalArc { bool isStraightLine () const {return _rx < 1e-7 || _ry < 1e-7;} BoundingBox getBBox () const; void transform (const Matrix &matrix); - std::vector<Bezier> approximate () const; + std::vector<CubicBezier> approximate () const; private: double _rx, _ry; ///< length of semi-major and semi-minor axes diff --git a/dviware/dvisvgm/src/EmSpecialHandler.cpp b/dviware/dvisvgm/src/EmSpecialHandler.cpp index 0627e283ec..e116227ba9 100644 --- a/dviware/dvisvgm/src/EmSpecialHandler.cpp +++ b/dviware/dvisvgm/src/EmSpecialHandler.cpp @@ -2,7 +2,7 @@ ** EmSpecialHandler.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/EmSpecialHandler.hpp b/dviware/dvisvgm/src/EmSpecialHandler.hpp index 704fa0a19a..aee0219c12 100644 --- a/dviware/dvisvgm/src/EmSpecialHandler.hpp +++ b/dviware/dvisvgm/src/EmSpecialHandler.hpp @@ -2,7 +2,7 @@ ** EmSpecialHandler.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/EncFile.cpp b/dviware/dvisvgm/src/EncFile.cpp index 4d39f0886b..af47ead6ea 100644 --- a/dviware/dvisvgm/src/EncFile.cpp +++ b/dviware/dvisvgm/src/EncFile.cpp @@ -2,7 +2,7 @@ ** EncFile.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/EncFile.hpp b/dviware/dvisvgm/src/EncFile.hpp index f844dfa34e..7aceb65b05 100644 --- a/dviware/dvisvgm/src/EncFile.hpp +++ b/dviware/dvisvgm/src/EncFile.hpp @@ -2,7 +2,7 @@ ** EncFile.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/FileFinder.cpp b/dviware/dvisvgm/src/FileFinder.cpp index c95ab1023f..369ef33f49 100644 --- a/dviware/dvisvgm/src/FileFinder.cpp +++ b/dviware/dvisvgm/src/FileFinder.cpp @@ -2,7 +2,7 @@ ** FileFinder.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/FileFinder.hpp b/dviware/dvisvgm/src/FileFinder.hpp index 904c31c861..d0d291e9ba 100644 --- a/dviware/dvisvgm/src/FileFinder.hpp +++ b/dviware/dvisvgm/src/FileFinder.hpp @@ -2,7 +2,7 @@ ** FileFinder.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/FilePath.cpp b/dviware/dvisvgm/src/FilePath.cpp index 3c89c2c3ea..477c9d08ee 100644 --- a/dviware/dvisvgm/src/FilePath.cpp +++ b/dviware/dvisvgm/src/FilePath.cpp @@ -2,7 +2,7 @@ ** FilePath.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/FilePath.hpp b/dviware/dvisvgm/src/FilePath.hpp index 31f03e9242..8d705f60fe 100644 --- a/dviware/dvisvgm/src/FilePath.hpp +++ b/dviware/dvisvgm/src/FilePath.hpp @@ -2,7 +2,7 @@ ** FilePath.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/FileSystem.cpp b/dviware/dvisvgm/src/FileSystem.cpp index 4e8e43ddd7..e4aefddc05 100644 --- a/dviware/dvisvgm/src/FileSystem.cpp +++ b/dviware/dvisvgm/src/FileSystem.cpp @@ -2,7 +2,7 @@ ** FileSystem.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -135,6 +135,14 @@ string FileSystem::ensureForwardSlashes (string path) { } +string FileSystem::ensureSystemSlashes (string path) { +#ifdef _WIN32 + std::replace(path.begin(), path.end(), '/', PATHSEP); +#endif + return path; +} + + /** Returns the absolute path of the current working directory. */ string FileSystem::getcwd () { char buf[1024]; @@ -207,12 +215,13 @@ const char* FileSystem::userdir () { } -/** Returns the path of the temporary folder. */ -string FileSystem::tmpdir () { +/** Returns the path of the temporary folder. + * @param[in] inpace if true, don't create a uniquely named subfolder */ +string FileSystem::tmpdir (bool inplace) { if (_tmpdir.path().empty()) { string basedir; if (!TMPDIR.empty()) - basedir = TMPDIR; + basedir = ensureForwardSlashes(TMPDIR); else { #ifdef _WIN32 char buf[MAX_PATH]; @@ -226,10 +235,14 @@ string FileSystem::tmpdir () { else basedir = "/tmp"; #endif - if (basedir.back() == '/') - basedir.pop_back(); } - _tmpdir = TemporaryDirectory(basedir, PROGRAM_NAME); + if (basedir.length() > 2 && string(basedir.end()-2, basedir.end()) == "//") { + inplace = true; + basedir.pop_back(); + } + if (basedir.front() != '/' && basedir.back() == '/') + basedir.pop_back(); + _tmpdir = TemporaryDirectory(basedir, PROGRAM_NAME, inplace); } return _tmpdir.path(); } @@ -380,26 +393,34 @@ int FileSystem::collect (const std::string &dirname, vector<string> &entries) { } -/** Creates a temporary directory in a given folder. +/** Creates a temporary directory in a given folder or treats the given folder as temporary directory. * @param[in] folder folder path in which the directory is to be created - * @param[in] prefix initial string of the directory name */ -FileSystem::TemporaryDirectory::TemporaryDirectory (const std::string &folder, string prefix) { - using namespace std::chrono; - auto now = system_clock::now().time_since_epoch(); - auto now_ms = duration_cast<milliseconds>(now).count(); - auto hash = XXH64HashFunction(to_string(now_ms)).digestValue(); - if (!prefix.empty() && prefix.back() != '-') - prefix += "-"; - for (int i=0; i < 10 && _path.empty(); i++) { - hash++; - stringstream oss; - oss << folder << '/' << prefix << hex << hash; - if (exists(oss.str())) - continue; - if (s_mkdir(oss.str())) - _path = oss.str() + "/"; - else - break; + * @param[in] prefix initial string of the directory name + * @param[in] inplace if true, 'folder' is treated as temporary directory and no subfolder is created */ +FileSystem::TemporaryDirectory::TemporaryDirectory (const std::string &folder, string prefix, bool inplace) { + if (inplace) { + _path = folder; + if (!_path.empty() && _path.back() != '/') + _path.push_back('/'); + } + else { + using namespace std::chrono; + auto now = system_clock::now().time_since_epoch(); + auto now_ms = duration_cast<milliseconds>(now).count(); + auto hash = XXH64HashFunction(to_string(now_ms)).digestValue(); + if (!prefix.empty() && prefix.back() != '-') + prefix.push_back('-'); + for (int i = 0; i < 10 && _path.empty(); i++) { + hash++; + stringstream oss; + oss << folder << '/' << prefix << hex << hash; + if (exists(oss.str())) + continue; + if (s_mkdir(oss.str())) + _path = oss.str() + "/"; + else + break; + } } } diff --git a/dviware/dvisvgm/src/FileSystem.hpp b/dviware/dvisvgm/src/FileSystem.hpp index 86f6dbf201..376ab85927 100644 --- a/dviware/dvisvgm/src/FileSystem.hpp +++ b/dviware/dvisvgm/src/FileSystem.hpp @@ -2,7 +2,7 @@ ** FileSystem.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -28,7 +28,7 @@ class FileSystem { class TemporaryDirectory { friend class FileSystem; public: - TemporaryDirectory (const std::string &folder, std::string prefix); + TemporaryDirectory (const std::string &folder, std::string prefix, bool inplace=false); TemporaryDirectory (TemporaryDirectory &&tmpdir) =default; ~TemporaryDirectory (); TemporaryDirectory& operator = (TemporaryDirectory &&tmpdir) =default; @@ -47,11 +47,12 @@ class FileSystem { static bool copy (const std::string &src, const std::string &dest, bool remove_src=false); static uint64_t filesize (const std::string &fname); static std::string ensureForwardSlashes (std::string path); + static std::string ensureSystemSlashes (std::string path); static std::string getcwd (); #ifdef _WIN32 static std::string getcwd (char drive); #endif - static std::string tmpdir (); + static std::string tmpdir (bool inplace=false); static bool chdir (const std::string &dir); static bool exists (const std::string &fname); static bool mkdir (const std::string &dirname); diff --git a/dviware/dvisvgm/src/FixWord.hpp b/dviware/dvisvgm/src/FixWord.hpp index fcef743748..6e1214ce20 100644 --- a/dviware/dvisvgm/src/FixWord.hpp +++ b/dviware/dvisvgm/src/FixWord.hpp @@ -2,7 +2,7 @@ ** FixWord.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/Font.cpp b/dviware/dvisvgm/src/Font.cpp index 2fa4ce5be9..c60b162828 100644 --- a/dviware/dvisvgm/src/Font.cpp +++ b/dviware/dvisvgm/src/Font.cpp @@ -2,7 +2,7 @@ ** Font.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -18,8 +18,8 @@ ** along with this program; if not, see <http://www.gnu.org/licenses/>. ** *************************************************************************/ +#include <algorithm> #include <cstdlib> -#include <fstream> #include <set> #include <sstream> #include "CMap.hpp" @@ -233,7 +233,8 @@ int PhysicalFont::unitsPerEm() const { } -int PhysicalFont::hAdvance () const { +/** Returns the average horizontal advance width in font units. */ +int PhysicalFont::hAverageAdvance () const { if (type() == Type::MF) return 0; FontEngine::instance().setFont(*this); @@ -241,6 +242,7 @@ int PhysicalFont::hAdvance () const { } +/** Returns the horizontal advance width of a character in font units. */ double PhysicalFont::hAdvance (int c) const { if (type() == Type::MF) return unitsPerEm()*charWidth(c)/designSize(); @@ -252,6 +254,7 @@ double PhysicalFont::hAdvance (int c) const { } +/** Returns the vertical advance width of a character in font units. */ double PhysicalFont::vAdvance (int c) const { if (type() == Type::MF) return unitsPerEm()*charWidth(c)/designSize(); @@ -279,7 +282,8 @@ double PhysicalFont::scaledAscent() const { } -/** Returns the unscaled ascender of the font in design units. */ +/** Returns the unscaled ascender of the font in design units. + * Positive values denote an extension above the baseline.'*/ int PhysicalFont::ascent () const { if (type() == Type::MF) return getMetrics() ? getMetrics()->getAscent()*unitsPerEm()/getMetrics()->getQuad() : 0; @@ -288,7 +292,8 @@ int PhysicalFont::ascent () const { } -/** Returns the unscaled descender of the font in design units. */ +/** Returns the unscaled descender of the font in design units. + * Positive values denote an extension below the baseline. */ int PhysicalFont::descent () const { if (type() == Type::MF) return getMetrics() ? getMetrics()->getDescent()*unitsPerEm()/getMetrics()->getQuad() : 0; @@ -315,6 +320,13 @@ std::string PhysicalFont::styleName () const { } +int PhysicalFont::charIndexByName(const string &charname) const { + if (charname.empty()) + return 0; + FontEngine::instance().setFont(*this); + return FontEngine::instance().getCharIndexByGlyphName(charname.c_str()); +} + /** Extracts the glyph outlines of a given character. * @param[in] c character code of requested glyph @@ -596,7 +608,7 @@ PhysicalFont::Type NativeFont::type () const { return PhysicalFont::Type::OTF; if (ext == "ttf") return PhysicalFont::Type::TTF; - if (ext == "pfb") + if (ext == "pfb" || ext == "pfa") return PhysicalFont::Type::PFB; } } @@ -607,7 +619,7 @@ PhysicalFont::Type NativeFont::type () const { double NativeFont::charWidth (int c) const { FontEngine::instance().setFont(*this); int upem = FontEngine::instance().getUnitsPerEM(); - return upem ? (scaledSize()*FontEngine::instance().getAdvance(c)/upem*_style.extend) : 0; + return upem ? (scaledSize()*FontEngine::instance().getHAdvance(decodeChar(c))/upem*_style.extend) : 0; } @@ -621,14 +633,37 @@ double NativeFont::italicCorr(int c) const { double NativeFont::charHeight (int c) const { FontEngine::instance().setFont(*this); int upem = FontEngine::instance().getUnitsPerEM(); - return upem ? (scaledSize()*FontEngine::instance().getHeight(Character(Character::INDEX, c))/upem) : 0; + return upem ? (scaledSize()*FontEngine::instance().getHeight(decodeChar(c))/upem) : 0; } double NativeFont::charDepth (int c) const { FontEngine::instance().setFont(*this); int upem = FontEngine::instance().getUnitsPerEM(); - return upem ? (scaledSize()*FontEngine::instance().getDepth(Character(Character::INDEX, c))/upem) : 0; + return upem ? (scaledSize()*FontEngine::instance().getDepth(decodeChar(c))/upem) : 0; +} + + +double NativeFont::hAdvance (Character c) const { + FontEngine::instance().setFont(*this); + int upem = FontEngine::instance().getUnitsPerEM(); + return upem ? (scaledSize()*FontEngine::instance().getHAdvance(c)/upem) : 0; +} + + +double NativeFont::vAdvance (Character c) const { + FontEngine::instance().setFont(*this); + int upem = FontEngine::instance().getUnitsPerEM(); + return upem ? (scaledSize()*FontEngine::instance().getVAdvance(c)/upem) : 0; +} + +////////////////////////////////////////////////////////////////////////////// + +NativeFontImpl::NativeFontImpl (string fname, string fontname, double ptsize) + : NativeFont(ptsize, FontStyle(), Color::BLACK), _path(std::move(fname)), _name(std::move(fontname)) +{ + // plus characters (as appended to subset prefixes) are not allowed in font/family names + std::replace(_name.begin(), _name.end(), '+', '-'); } @@ -644,13 +679,25 @@ bool NativeFontImpl::findAndAssignBaseFontMap () { Character NativeFontImpl::decodeChar (uint32_t c) const { - return Character(Character::INDEX, c); + return {Character::INDEX, c}; } uint32_t NativeFontImpl::unicode (uint32_t c) const { uint32_t ucode = _toUnicodeMap.valueAt(c); - return Unicode::charToCodepoint(ucode); + return Unicode::charToCodepoint(ucode, true); +} + + +void NativeFontImpl::mapCharToUnicode (uint32_t c, uint32_t codepoint) { + _toUnicodeMap.addRange(c, c, codepoint); +} + + +bool NativeFontImpl::verticalLayout() const { + FontEngine &fe = FontEngine::instance(); + fe.setFont(*this); + return fe.hasVerticalMetrics(); } ////////////////////////////////////////////////////////////////////////////// diff --git a/dviware/dvisvgm/src/Font.hpp b/dviware/dvisvgm/src/Font.hpp index 23c99e3bc5..74f1b510cb 100644 --- a/dviware/dvisvgm/src/Font.hpp +++ b/dviware/dvisvgm/src/Font.hpp @@ -2,7 +2,7 @@ ** Font.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -50,7 +50,7 @@ struct GlyphMetrics { double wl, wr, h, d; }; -class FontVisitor; +struct FontVisitor; /** Abstract base for all font classes. */ class Font { @@ -124,7 +124,7 @@ class PhysicalFont : public virtual Font { virtual bool getExactGlyphBox (int c, BoundingBox &bbox, GFGlyphTracer::Callback *cb) const; virtual bool getExactGlyphBox (int c, GlyphMetrics &metrics, bool vertical, GFGlyphTracer::Callback *cb) const; virtual bool isCIDFont () const; - virtual int hAdvance () const; + virtual int hAverageAdvance () const; virtual std::string familyName () const; virtual std::string styleName () const; virtual double hAdvance (int c) const; @@ -139,6 +139,7 @@ class PhysicalFont : public virtual Font { virtual CharMapID getCharMapID () const =0; virtual void setCharMapID (const CharMapID &id) {} virtual Character decodeChar (uint32_t c) const; + virtual int charIndexByName (const std::string &charname) const; const char* path () const override; void visit (FontVisitor &visitor) override; void visit (FontVisitor &visitor) const override; @@ -270,16 +271,20 @@ class NativeFont : public PhysicalFont { std::unique_ptr<Font> clone (double ds, double sc) const override =0; std::string name () const override; Type type () const override; - double designSize () const override {return _ptsize;} - double scaledSize () const override {return _ptsize;} + const NativeFont* uniqueFont () const override {return this;} + double designSize () const override {return _ptsize;} + double scaledSize () const override {return _ptsize;} double charWidth (int c) const override; double charDepth (int c) const override; double charHeight (int c) const override; double italicCorr (int c) const override; + virtual double hAdvance (Character c) const; + virtual double vAdvance (Character c) const; const FontMetrics* getMetrics () const override {return nullptr;} const FontStyle* style () const override {return &_style;} Color color () const override {return _color;} const FontMap::Entry* fontMapEntry () const override {return nullptr;} + virtual void mapCharToUnicode (uint32_t c, uint32_t codepoint) =0; static std::string uniqueName (const std::string &path, const FontStyle &style); void visit (FontVisitor &visitor) override; void visit (FontVisitor &visitor) const override; @@ -305,12 +310,18 @@ class NativeFontProxy : public NativeFont { return std::unique_ptr<NativeFontProxy>(new NativeFontProxy(this , sc, *style(), color())); } - const Font* uniqueFont () const override {return _nfont;} + const NativeFont* uniqueFont () const override {return _nfont;} const char* path () const override {return _nfont->path();} int fontIndex () const override {return _nfont->fontIndex();} Character decodeChar (uint32_t c) const override {return _nfont->decodeChar(c);} uint32_t unicode (uint32_t c) const override {return _nfont->unicode(c);} CharMapID getCharMapID () const override {return _nfont->getCharMapID();} + bool verticalLayout() const override {return _nfont->verticalLayout();} + std::string name () const override {return _nfont->name();} + + void mapCharToUnicode (uint32_t c, uint32_t codepoint) override { + const_cast<NativeFont*>(_nfont)->mapCharToUnicode(c, codepoint); + } protected: NativeFontProxy (const NativeFont *nfont, double ptsize, const FontStyle &style, Color color) @@ -326,6 +337,8 @@ class NativeFontImpl : public NativeFont { NativeFontImpl (std::string fname, int fontIndex, double ptsize, const FontStyle &style, Color color) : NativeFont(ptsize, style, color), _path(std::move(fname)), _fontIndex(fontIndex) {} + NativeFontImpl (std::string fname, std::string fontname, double ptsize); + std::unique_ptr<NativeFont> clone (double ptsize, const FontStyle &style, Color color) const override { return std::unique_ptr<NativeFontProxy>(new NativeFontProxy(this, ptsize, style, color)); } @@ -334,18 +347,20 @@ class NativeFontImpl : public NativeFont { return std::unique_ptr<NativeFontProxy>(new NativeFontProxy(this , sc, *style(), color())); } - const Font* uniqueFont () const override {return this;} const char* path () const override {return _path.c_str();} - int fontIndex() const override {return _fontIndex;} - std::string fontFamily () const; + int fontIndex () const override {return _fontIndex;} + std::string name () const override {return _name.empty() ? NativeFont::name() : _name;} bool findAndAssignBaseFontMap () override; CharMapID getCharMapID () const override {return CharMapID::NONE;} Character decodeChar (uint32_t c) const override; uint32_t unicode (uint32_t c) const override; + bool verticalLayout() const override; + void mapCharToUnicode (uint32_t c, uint32_t codepoint) override; private: std::string _path; - int _fontIndex; + std::string _name; + int _fontIndex = 0; ToUnicodeMap _toUnicodeMap; ///< maps from char indexes to unicode points }; diff --git a/dviware/dvisvgm/src/FontCache.cpp b/dviware/dvisvgm/src/FontCache.cpp index 44b4de521e..95155dc366 100644 --- a/dviware/dvisvgm/src/FontCache.cpp +++ b/dviware/dvisvgm/src/FontCache.cpp @@ -2,7 +2,7 @@ ** FontCache.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/FontCache.hpp b/dviware/dvisvgm/src/FontCache.hpp index 01333d05d6..f823106ce2 100644 --- a/dviware/dvisvgm/src/FontCache.hpp +++ b/dviware/dvisvgm/src/FontCache.hpp @@ -2,7 +2,7 @@ ** FontCache.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/FontEncoding.cpp b/dviware/dvisvgm/src/FontEncoding.cpp index 9ba9dcd488..d5df7cc33f 100644 --- a/dviware/dvisvgm/src/FontEncoding.cpp +++ b/dviware/dvisvgm/src/FontEncoding.cpp @@ -2,7 +2,7 @@ ** FontEncoding.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/FontEncoding.hpp b/dviware/dvisvgm/src/FontEncoding.hpp index b0425f47a6..7fe441ed37 100644 --- a/dviware/dvisvgm/src/FontEncoding.hpp +++ b/dviware/dvisvgm/src/FontEncoding.hpp @@ -2,7 +2,7 @@ ** FontEncoding.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/FontEngine.cpp b/dviware/dvisvgm/src/FontEngine.cpp index 630570046f..ca942a0fb9 100644 --- a/dviware/dvisvgm/src/FontEngine.cpp +++ b/dviware/dvisvgm/src/FontEngine.cpp @@ -2,7 +2,7 @@ ** FontEngine.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -29,6 +29,7 @@ #include "Font.hpp" #include "FontEngine.hpp" #include "FontStyle.hpp" +#include "fonts/Base14Fonts.hpp" #include "Message.hpp" #include "utility.hpp" @@ -88,7 +89,19 @@ string FontEngine::version () { bool FontEngine::setFont (const string &fname, int fontindex, const CharMapID &charMapID) { if (_currentFace && FT_Done_Face(_currentFace)) Message::estream(true) << "failed to release font\n"; - if (FT_New_Face(_library, fname.c_str(), fontindex, &_currentFace)) { + if (fname.size() <= 6 || fname.substr(0, 6) == "sys://") { + if (const MemoryFontData *data = find_base14_font(fname.substr(6))) { + FT_Open_Args args; + args.flags = FT_OPEN_MEMORY; + args.memory_base = reinterpret_cast<const FT_Byte*>(data->data); + args.memory_size = FT_Long(data->size); + if (FT_Open_Face(_library, &args, fontindex, &_currentFace)) { + Message::estream(true) << "can't read memory font " << fname << '\n'; + return false; + } + } + } + else if (FT_New_Face(_library, fname.c_str(), fontindex, &_currentFace)) { Message::estream(true) << "can't read font file " << fname << '\n'; return false; } @@ -115,16 +128,24 @@ bool FontEngine::setFont (const Font &font) { bool FontEngine::isCIDFont() const { FT_Bool cid_keyed; - return FT_Get_CID_Is_Internally_CID_Keyed(_currentFace, &cid_keyed) == 0 && cid_keyed; + return _currentFace && FT_Get_CID_Is_Internally_CID_Keyed(_currentFace, &cid_keyed) == 0 && cid_keyed; +} + + +/** Returns true if the current font contains vertical layout data. */ +bool FontEngine::hasVerticalMetrics () const { + return _currentFace && FT_HAS_VERTICAL(_currentFace); } bool FontEngine::setCharMap (const CharMapID &charMapID) { - for (int i=0; i < _currentFace->num_charmaps; i++) { - FT_CharMap ft_cmap = _currentFace->charmaps[i]; - if (ft_cmap->platform_id == charMapID.platform_id && ft_cmap->encoding_id == charMapID.encoding_id) { - FT_Set_Charmap(_currentFace, ft_cmap); - return true; + if (_currentFace) { + for (int i = 0; i < _currentFace->num_charmaps; i++) { + FT_CharMap ft_cmap = _currentFace->charmaps[i]; + if (ft_cmap->platform_id == charMapID.platform_id && ft_cmap->encoding_id == charMapID.encoding_id) { + FT_Set_Charmap(_currentFace, ft_cmap); + return true; + } } } return false; @@ -149,22 +170,24 @@ void FontEngine::buildGidToCharCodeMap (RangeMap &charmap) { /** Creates a charmap that maps from the custom character encoding to Unicode. * @return pointer to charmap if it could be created, 0 otherwise */ unique_ptr<const RangeMap> FontEngine::createCustomToUnicodeMap () { - FT_CharMap ftcharmap = _currentFace->charmap; - if (FT_Select_Charmap(_currentFace, FT_ENCODING_ADOBE_CUSTOM) != 0) - return nullptr; - RangeMap gidToCharCodeMap; - buildGidToCharCodeMap(gidToCharCodeMap); - if (FT_Select_Charmap(_currentFace, FT_ENCODING_UNICODE) != 0) - return nullptr; auto charmap = util::make_unique<RangeMap>(); - FT_UInt gid; // index of current glyph - uint32_t ucCharcode = FT_Get_First_Char(_currentFace, &gid); // Unicode code point - while (gid) { - uint32_t customCharcode = gidToCharCodeMap.valueAt(gid); - charmap->addRange(customCharcode, customCharcode, ucCharcode); - ucCharcode = FT_Get_Next_Char(_currentFace, ucCharcode, &gid); + if (_currentFace) { + FT_CharMap ftcharmap = _currentFace->charmap; + if (FT_Select_Charmap(_currentFace, FT_ENCODING_ADOBE_CUSTOM) != 0) + return nullptr; + RangeMap gidToCharCodeMap; + buildGidToCharCodeMap(gidToCharCodeMap); + if (FT_Select_Charmap(_currentFace, FT_ENCODING_UNICODE) != 0) + return nullptr; + FT_UInt gid; // index of current glyph + uint32_t ucCharcode = FT_Get_First_Char(_currentFace, &gid); // Unicode code point + while (gid) { + uint32_t customCharcode = gidToCharCodeMap.valueAt(gid); + charmap->addRange(customCharcode, customCharcode, ucCharcode); + ucCharcode = FT_Get_Next_Char(_currentFace, ucCharcode, &gid); + } + FT_Set_Charmap(_currentFace, ftcharmap); } - FT_Set_Charmap(_currentFace, ftcharmap); return std::move(charmap); } @@ -179,6 +202,27 @@ const char* FontEngine::getStyleName () const { } +/** Returns the PS name of the current font. */ +const char* FontEngine::getPSName () const { + return _currentFace ? FT_Get_Postscript_Name(_currentFace) : nullptr; +} + + +/** Returns the PS name of a font given by a file. + * @param[in] fname name/path of the font file + * @return the PS name */ +string FontEngine::getPSName (const string &fname) const { + string psname; + FT_Face face; + if (FT_New_Face(_library, fname.c_str(), 0, &face) == 0) { + if (const char *ptr = FT_Get_Postscript_Name(face)) + psname = ptr; + FT_Done_Face(face); + } + return psname; +} + + int FontEngine::getUnitsPerEM () const { return _currentFace ? _currentFace->units_per_EM : 0; } @@ -200,16 +244,6 @@ int FontEngine::getDescender () const { } -int FontEngine::getAdvance (int c) const { - if (_currentFace) { - FT_Fixed adv=0; - FT_Get_Advance(_currentFace, c, FT_LOAD_NO_SCALE, &adv); - return adv; - } - return 0; -} - - int FontEngine::getHAdvance () const { if (_currentFace) { auto table = static_cast<TT_OS2*>(FT_Get_Sfnt_Table(_currentFace, ft_sfnt_os2)); @@ -219,21 +253,26 @@ int FontEngine::getHAdvance () const { } +/** Returns the horizontal advance width of a given character in font units. */ int FontEngine::getHAdvance (const Character &c) const { if (_currentFace) { - FT_Load_Glyph(_currentFace, charIndex(c), FT_LOAD_NO_SCALE); - return _currentFace->glyph->metrics.horiAdvance; + FT_Fixed adv=0; + FT_Get_Advance(_currentFace, charIndex(c), FT_LOAD_NO_SCALE, &adv); + return adv; } return 0; } +/** Returns the vertical advance width of a given character in font units. */ int FontEngine::getVAdvance (const Character &c) const { if (_currentFace) { - FT_Load_Glyph(_currentFace, charIndex(c), FT_LOAD_NO_SCALE); + FT_Fixed adv=0; + auto flags = FT_LOAD_NO_SCALE; if (FT_HAS_VERTICAL(_currentFace)) - return _currentFace->glyph->metrics.vertAdvance; - return _currentFace->glyph->metrics.horiAdvance; + flags |= FT_LOAD_VERTICAL_LAYOUT; + FT_Get_Advance(_currentFace, charIndex(c), flags, &adv); + return adv; } return 0; } @@ -241,8 +280,8 @@ int FontEngine::getVAdvance (const Character &c) const { int FontEngine::getWidth (const Character &c) const { if (_currentFace) { - FT_Load_Glyph(_currentFace, charIndex(c), FT_LOAD_NO_SCALE); - return _currentFace->glyph->metrics.width; + if (FT_Load_Glyph(_currentFace, charIndex(c), FT_LOAD_NO_SCALE) == 0) + return _currentFace->glyph->metrics.width; } return 0; } @@ -250,8 +289,8 @@ int FontEngine::getWidth (const Character &c) const { int FontEngine::getHeight (const Character &c) const { if (_currentFace) { - FT_Load_Glyph(_currentFace, charIndex(c), FT_LOAD_NO_SCALE); - return _currentFace->glyph->metrics.horiBearingY; + if (FT_Load_Glyph(_currentFace, charIndex(c), FT_LOAD_NO_SCALE) == 0) + return _currentFace->glyph->metrics.horiBearingY; } return 0; } @@ -259,13 +298,18 @@ int FontEngine::getHeight (const Character &c) const { int FontEngine::getDepth (const Character &c) const { if (_currentFace) { - FT_Load_Glyph(_currentFace, charIndex(c), FT_LOAD_NO_SCALE); - return _currentFace->glyph->metrics.height - _currentFace->glyph->metrics.horiBearingY; + if (FT_Load_Glyph(_currentFace, charIndex(c), FT_LOAD_NO_SCALE) == 0) + return _currentFace->glyph->metrics.height - _currentFace->glyph->metrics.horiBearingY; } return 0; } +int FontEngine::getCharIndexByGlyphName(const char *name) const { + return _currentFace ? int(FT_Get_Name_Index(_currentFace, name)) : 0; +} + + int FontEngine::charIndex (const Character &c) const { if (!_currentFace || !_currentFace->charmap) return c.type() == Character::NAME ? 0 : c.number(); @@ -280,22 +324,6 @@ int FontEngine::charIndex (const Character &c) const { } -/** Get first available character of the current font face. */ -int FontEngine::getFirstChar () const { - if (_currentFace) - return _currentChar = FT_Get_First_Char(_currentFace, &_currentGlyphIndex); - return 0; -} - - -/** Get the next available character of the current font face. */ -int FontEngine::getNextChar () const { - if (_currentFace && _currentGlyphIndex) - return _currentChar = FT_Get_Next_Char(_currentFace, _currentChar, &_currentGlyphIndex); - return getFirstChar(); -} - - /** Returns the number of glyphs present in the current font face. */ int FontEngine::getNumGlyphs () const { return _currentFace ? _currentFace->num_glyphs : 0; @@ -306,15 +334,15 @@ int FontEngine::getNumGlyphs () const { * @param[in] c char code * @return glyph name */ string FontEngine::getGlyphName (const Character &c) const { + string ret; if (c.type() == Character::NAME) - return c.name(); - - if (_currentFace && FT_HAS_GLYPH_NAMES(_currentFace)) { + ret = c.name(); + else if (_currentFace && FT_HAS_GLYPH_NAMES(_currentFace)) { char buf[256]; FT_Get_Glyph_Name(_currentFace, charIndex(c), buf, 256); - return string(buf); + ret = string(buf); } - return ""; + return ret; } @@ -335,7 +363,7 @@ int FontEngine::getCharMapIDs (vector<CharMapID> &charmapIDs) const { if (_currentFace) { for (int i=0; i < _currentFace->num_charmaps; i++) { FT_CharMap charmap = _currentFace->charmaps[i]; - charmapIDs.emplace_back(charmap->platform_id, charmap->encoding_id); + charmapIDs.emplace_back(uint8_t(charmap->platform_id), uint8_t(charmap->encoding_id)); } } return charmapIDs.size(); @@ -344,14 +372,14 @@ int FontEngine::getCharMapIDs (vector<CharMapID> &charmapIDs) const { CharMapID FontEngine::setUnicodeCharMap () { if (_currentFace && FT_Select_Charmap(_currentFace, FT_ENCODING_UNICODE) == 0) - return CharMapID(_currentFace->charmap->platform_id, _currentFace->charmap->encoding_id); + return CharMapID(uint8_t(_currentFace->charmap->platform_id), uint8_t(_currentFace->charmap->encoding_id)); return CharMapID(); } CharMapID FontEngine::setCustomCharMap () { if (_currentFace && FT_Select_Charmap(_currentFace, FT_ENCODING_ADOBE_CUSTOM) == 0) - return CharMapID(_currentFace->charmap->platform_id, _currentFace->charmap->encoding_id); + return CharMapID(uint8_t(_currentFace->charmap->platform_id), uint8_t(_currentFace->charmap->encoding_id)); return CharMapID(); } @@ -414,11 +442,13 @@ static bool trace_outline (FT_Face face, const Font *font, int index, Glyph &gly } FT_Outline outline = face->glyph->outline; // apply style parameters if set - if (const FontStyle *style = font->style()) { - FT_Matrix matrix = {to_16dot16(style->extend), to_16dot16(style->slant), 0, to_16dot16(1)}; - FT_Outline_Transform(&outline, &matrix); - if (style->bold != 0) - FT_Outline_Embolden(&outline, style->bold/font->scaledSize()*face->units_per_EM); + if (font) { + if (const FontStyle *style = font->style()) { + FT_Matrix matrix = {to_16dot16(style->extend), to_16dot16(style->slant), 0, to_16dot16(1)}; + FT_Outline_Transform(&outline, &matrix); + if (style->bold != 0) + FT_Outline_Embolden(&outline, style->bold/font->scaledSize()*face->units_per_EM); + } } const FT_Outline_Funcs funcs = {moveto, lineto, quadto, cubicto, 0, 0}; FT_Outline_Decompose(&outline, &funcs, &glyph); diff --git a/dviware/dvisvgm/src/FontEngine.hpp b/dviware/dvisvgm/src/FontEngine.hpp index d7c1496c2b..cf68930c65 100644 --- a/dviware/dvisvgm/src/FontEngine.hpp +++ b/dviware/dvisvgm/src/FontEngine.hpp @@ -2,7 +2,7 @@ ** FontEngine.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -43,29 +43,30 @@ class FontEngine { static FontEngine& instance (); static std::string version (); bool setFont (const Font &font); + const Font* currentFont () const {return _currentFont;} bool isCIDFont() const; + bool hasVerticalMetrics () const; bool traceOutline (const Character &c, Glyph &glyph, bool scale=true) const; const char* getFamilyName () const; const char* getStyleName () const; + const char* getPSName () const; + std::string getPSName (const std::string &fname) const; int getUnitsPerEM () const; int getAscender () const; int getDescender () const; - int getAdvance (int c) const; int getHAdvance () const; int getHAdvance (const Character &c) const; int getVAdvance (const Character &c) const; int getWidth (const Character &c) const; int getHeight (const Character &c) const; int getDepth (const Character &c) const; - int getFirstChar () const; - int getNextChar () const; int getCharMapIDs (std::vector<CharMapID> &charmapIDs) const; int getNumGlyphs () const; CharMapID setUnicodeCharMap (); CharMapID setCustomCharMap (); std::vector<int> getPanose () const; std::string getGlyphName (const Character &c) const; - int getCharByGlyphName (const char *name) const; + int getCharIndexByGlyphName (const char *name) const; bool setCharMap (const CharMapID &charMapID); void buildGidToCharCodeMap (RangeMap &charmap); std::unique_ptr<const RangeMap> createCustomToUnicodeMap (); diff --git a/dviware/dvisvgm/src/FontManager.cpp b/dviware/dvisvgm/src/FontManager.cpp index e85a9dc528..7eeaadeb9d 100644 --- a/dviware/dvisvgm/src/FontManager.cpp +++ b/dviware/dvisvgm/src/FontManager.cpp @@ -2,7 +2,7 @@ ** FontManager.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -24,10 +24,13 @@ #include <set> #include "CMap.hpp" #include "Font.hpp" +#include "fonts/Base14Fonts.hpp" +#include "FontEngine.hpp" #include "FontManager.hpp" #include "FileFinder.hpp" #include "FileSystem.hpp" #include "Message.hpp" +#include "SVGTree.hpp" using namespace std; @@ -80,6 +83,18 @@ int FontManager::fontID (const string &name) const { } +int FontManager::fontID (string name, double ptsize) const { + std::replace(name.begin(), name.end(), '+', '-'); + for (auto it = _fonts.begin(); it != _fonts.end(); ++it) { + if (auto nativeFont = font_cast<NativeFont*>(it->get())) { + if (nativeFont->name() == name && nativeFont->scaledSize() == ptsize) + return int(std::distance(_fonts.begin(), it)); + } + } + return -1; +} + + int FontManager::fontnum (int id) const { if (id < 0 || size_t(id) > _fonts.size()) return -1; @@ -129,6 +144,14 @@ Font* FontManager::getFont (const string &name) const { } +Font* FontManager::getFont (const string &name, double ptsize) { + int id = fontID(name, ptsize); + if (id < 0) + return nullptr; + return _fonts[id].get(); +} + + Font* FontManager::getFontById (int id) const { if (id < 0 || size_t(id) >= _fonts.size()) return nullptr; @@ -219,7 +242,7 @@ int FontManager::registerFont (uint32_t fontnum, const string &name, uint32_t ch missing_fonts.insert(filename); } } - _name2id[name] = newid; + _name2id.emplace(name, newid); } _fonts.push_back(std::move(newfont)); if (_vfStack.empty()) // register font referenced in dvi file? @@ -256,7 +279,7 @@ int FontManager::registerFont (uint32_t fontnum, const string &filename, double * @param[in] style font style parameters * @param[in] color global font color * @return global font id */ -int FontManager::registerFont (uint32_t fontnum, string filename, int fontIndex, double ptsize, const FontStyle &style, Color color) { +int FontManager::registerFont (uint32_t fontnum, const string &filename, int fontIndex, double ptsize, const FontStyle &style, Color color) { int id = fontID(fontnum); if (id >= 0) return id; @@ -292,7 +315,7 @@ int FontManager::registerFont (uint32_t fontnum, string filename, int fontIndex, missing_fonts.insert(filename); } } - _name2id[fontname] = newid; + _name2id.emplace(fontname, newid); } _fonts.push_back(std::move(newfont)); _num2id[fontnum] = newid; @@ -300,6 +323,40 @@ int FontManager::registerFont (uint32_t fontnum, string filename, int fontIndex, } +/** Registers a native font that is referenced by its name instead of a DVI font number. + * @param[in] fname filename/path of the font file + * @param[in] ptsize font size in PS points + * return global ID assigned to the font */ +int FontManager::registerFont (const std::string &fname, double ptsize) { + if (fname.empty()) + return -1; + string fontname; + if (fname.size() > 6 && fname.substr(0,6) == "sys://") { + fontname = fname.substr(6); + if (!find_base14_font(fontname)) + return -1; + } + else if (!FileSystem::exists(fname) || (fontname = FontEngine::instance().getPSName(fname)).empty()) + return -1; + int id = fontID(fontname, ptsize); + if (id >= 0) + return id; + unique_ptr<NativeFont> nativeFont; + id = fontID(fontname); + if (id < 0) { + nativeFont = util::make_unique<NativeFontImpl>(fname, fontname, ptsize); + _name2id.emplace(std::move(fontname), _fonts.size()); + } + else { + auto *nf = font_cast<NativeFont*>(getFontById(id)); + nativeFont = unique_ptr<NativeFont>(nf->clone(ptsize, FontStyle(), Color::BLACK)); + } + id = int(_fonts.size()); + _fonts.push_back(std::move(nativeFont)); + return id; +} + + /** Enters a new virtual font frame. * This method must be called before processing a VF character. * @param[in] vf virtual font */ @@ -325,6 +382,20 @@ void FontManager::assignVFChar (int c, vector<uint8_t> &&dvi) { } +void FontManager::addUsedChar (const Font &font, int c) { + _usedChars[font.uniqueFont()].insert(c); + if (!SVGTree::USE_FONTS) + _usedChars[&font].insert(c); + _usedFonts.insert(&font); +} + + +void FontManager::resetUsedChars () { + _usedChars.clear(); + _usedFonts.clear(); +} + + ostream& FontManager::write (ostream &os, Font *font, int level) { #if 0 if (font) { diff --git a/dviware/dvisvgm/src/FontManager.hpp b/dviware/dvisvgm/src/FontManager.hpp index e371e6bac6..eeaa1949de 100644 --- a/dviware/dvisvgm/src/FontManager.hpp +++ b/dviware/dvisvgm/src/FontManager.hpp @@ -2,7 +2,7 @@ ** FontManager.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -27,6 +27,7 @@ #include <string> #include <stack> #include <unordered_map> +#include <unordered_set> #include <vector> #include "Color.hpp" #include "FontStyle.hpp" @@ -42,6 +43,8 @@ class VirtualFont; * virtual fonts are completely replaced by their DVI description so they don't * appear anywhere in the output. */ class FontManager { + using CharMap = std::unordered_map<const Font*, std::set<int>>; + using FontSet = std::unordered_set<const Font*>; using Num2IdMap = std::unordered_map<uint32_t, int>; using Name2IdMap = std::unordered_map<std::string, int>; using VfNum2IdMap = std::unordered_map<const VirtualFont*, Num2IdMap>; @@ -53,20 +56,28 @@ class FontManager { static FontManager& instance (); int registerFont (uint32_t fontnum, const std::string &fontname, uint32_t checksum, double dsize, double scale); int registerFont (uint32_t fontnum, const std::string &fname, double ptsize, const FontStyle &style, Color color); - int registerFont (uint32_t fontnum, std::string fname, int fontIndex, double ptsize, const FontStyle &style, Color color); + int registerFont (uint32_t fontnum, const std::string &fname, int fontIndex, double ptsize, const FontStyle &style, Color color); +// int registerFont (const std::string &fname, int fontIndex, double ptsize, const FontStyle &style, Color color); + int registerFont (const std::string &fname, double ptsize); Font* getFont (int n) const; Font* getFont (const std::string &name) const; + Font* getFont (const std::string &name, double ptsize); Font* getFontById (int id) const; const VirtualFont* getVF () const; int fontID (int n) const; int fontID (const Font *font) const; int fontID (const std::string &name) const; + int fontID (std::string name, double ptsize) const; int fontnum (int id) const; int vfFirstFontNum (const VirtualFont *vf) const; Font* vfFirstFont (const VirtualFont *vf) const; void enterVF (VirtualFont *vf); void leaveVF (); void assignVFChar (int c, std::vector<uint8_t> &&dvi); + void addUsedChar (const Font &font, int c); + void resetUsedChars (); + CharMap& getUsedChars () {return _usedChars;} + FontSet& getUsedFonts () {return _usedFonts;} std::ostream& write (std::ostream &os, Font *font=nullptr, int level=0); protected: @@ -80,6 +91,8 @@ class FontManager { VfStack _vfStack; ///< stack of currently processed virtual fonts VfFirstFontNumMap _vfFirstFontNumMap; ///< VF -> local font number of first font defined in VF VfFirstFontMap _vfFirstFontMap; ///< VF -> first font defined + CharMap _usedChars; + FontSet _usedFonts; }; #endif diff --git a/dviware/dvisvgm/src/FontMap.cpp b/dviware/dvisvgm/src/FontMap.cpp index c9e2f8912c..c441526144 100644 --- a/dviware/dvisvgm/src/FontMap.cpp +++ b/dviware/dvisvgm/src/FontMap.cpp @@ -2,7 +2,7 @@ ** FontMap.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/FontMap.hpp b/dviware/dvisvgm/src/FontMap.hpp index c681e24dba..b0cc9901d5 100644 --- a/dviware/dvisvgm/src/FontMap.hpp +++ b/dviware/dvisvgm/src/FontMap.hpp @@ -2,7 +2,7 @@ ** FontMap.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/FontMetrics.cpp b/dviware/dvisvgm/src/FontMetrics.cpp index 1391f9e630..6147f36ab1 100644 --- a/dviware/dvisvgm/src/FontMetrics.cpp +++ b/dviware/dvisvgm/src/FontMetrics.cpp @@ -2,7 +2,7 @@ ** FontMetrics.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/FontMetrics.hpp b/dviware/dvisvgm/src/FontMetrics.hpp index b9f5b260d8..79cb579b2e 100644 --- a/dviware/dvisvgm/src/FontMetrics.hpp +++ b/dviware/dvisvgm/src/FontMetrics.hpp @@ -2,7 +2,7 @@ ** FontMetrics.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/FontStyle.hpp b/dviware/dvisvgm/src/FontStyle.hpp index 125099f9e7..3c79e4cc68 100644 --- a/dviware/dvisvgm/src/FontStyle.hpp +++ b/dviware/dvisvgm/src/FontStyle.hpp @@ -2,7 +2,7 @@ ** FontStyle.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/FontWriter.cpp b/dviware/dvisvgm/src/FontWriter.cpp index 0f7946f567..9eed1784d1 100644 --- a/dviware/dvisvgm/src/FontWriter.cpp +++ b/dviware/dvisvgm/src/FontWriter.cpp @@ -2,7 +2,7 @@ ** FontWriter.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -68,7 +68,7 @@ vector<string> FontWriter::supportedFormats () { #ifdef DISABLE_WOFF // dummy functions used if WOFF support is disabled -FontWriter::FontWriter (const PhysicalFont &font) : _font(font) {} +FontWriter::FontWriter (const PhysicalFont &font) : _currentFont(font) {} std::string FontWriter::createFontFile (FontFormat format, const set<int> &charcodes, GFGlyphTracer::Callback *cb) const {return "";} bool FontWriter::writeCSSFontFace (FontFormat format, const set<int> &charcodes, ostream &os, GFGlyphTracer::Callback *cb) const {return false;} #else @@ -77,141 +77,50 @@ bool FontWriter::writeCSSFontFace (FontFormat format, const set<int> &charcodes, #include <iomanip> #include <sstream> #include <woff2/encode.h> -#include "ffwrapper.h" #include "Bezier.hpp" #include "FileSystem.hpp" #include "Font.hpp" #include "Glyph.hpp" -#include "TTFAutohint.hpp" -#include "TrueTypeFont.hpp" +#include "ttf/TTFAutohint.hpp" +#include "ttf/TTFWriter.hpp" +using namespace ttf; -FontWriter::FontWriter (const PhysicalFont &font) : _font(font) { - static bool initialized=false; - if (!initialized) { - ff_init(); - initialized = true; - } -} - - -struct SFDActions : Glyph::IterationActions { - explicit SFDActions (ostream &os) : _os(os) {} - - using Point = Glyph::Point; - void moveto (const Point &p) override {write('m', p);} - void lineto (const Point &p) override {write('l', p);} - void cubicto (const Point &p1, const Point &p2, const Point &p3) override {write('c', p1, p2, p3); } - void closepath () override {write('m', startPoint());} - - void quadto (const Point &p1, const Point &p2) override { - // convert quadratic Bézier curve to cubic one - DPair pt0(currentPoint().x(), currentPoint().y()); - DPair pt1(p1.x(), p1.y()); - DPair pt2(p2.x(), p2.y()); - Bezier b(pt0, pt1, pt2); - write('c', round(b.point(0)), round(b.point(1)), round(b.point(2)), round(b.point(3))); - } - - template <typename ...Args> - void write (char cmd, const Args& ...args) { - writeParams(args...); - _os << cmd << " 0\n"; - } - - static void writeParams () {} - - template <typename Pt, typename ...Args> - void writeParams (const Pt &p, const Args& ...args) const { - _os << p.x() << ' ' << p.y() << ' '; - writeParams(args...); - } - - ostream &_os; - Glyph::Point _startPoint, _currentPoint; -}; - - -/** Creates a Spline Font Database (SFD) file describing the font and its glyphs. - * https://fontforge.github.io/sfdformat.html */ -static void writeSFD (const string &sfdname, const PhysicalFont &font, const set<int> &charcodes, GFGlyphTracer::Callback *cb) { - ofstream sfd(sfdname); - if (!sfd) - throw FontWriterException("failed writing SFD file "+sfdname); - - sfd << - "SplineFontDB: 3.0\n" - "FontName: " << font.name() << '\n'; - - // ensure that the sum of the SFD's Ascent and Descent values equals the font's units per EM - double yext = font.ascent()+font.descent(); - double scale = double(font.unitsPerEm())/(yext != 0 ? yext : abs(font.ascent())); - sfd << - "Ascent: " << font.ascent()*scale << "\n" - "Descent: " << font.descent()*scale << "\n" - "LayerCount: 2\n" // number of layers must be 2 at least - "Layer: 0 0 \"Back\" 1\n" // layer 0: background layer with cubic splines - "Layer: 1 0 \"Fore\" 0\n" // layer 1: foreground layer with cubic splines - "Encoding: UnicodeFull\n" // character codes can use the full Unicode range - "BeginChars: 1114112 " << charcodes.size() << '\n'; - - double extend = font.style() ? font.style()->extend : 1; - for (int c : charcodes) { - string name = font.glyphName(c); - if (name.empty()) { - // if the font doesn't provide glyph names, use AGL name uFOO - ostringstream oss; - oss << 'u' << hex << uppercase << setw(4) << setfill('0') << c; - name = oss.str(); - } - uint32_t codepoint = font.unicode(c); - sfd << - "StartChar: " << name << "\n" - "Encoding: " << codepoint << ' ' << codepoint << " 0\n" - "Width: " << font.hAdvance(c)*extend << "\n" - "VWidth: " << font.vAdvance(c) << "\n" - "Fore\n" - "SplineSet\n"; - Glyph glyph; - if (font.getGlyph(c, glyph, cb)) { - if (glyph.empty()) - sfd << "0 0 m 0\n"; - else { - SFDActions actions(sfd); - glyph.iterate(actions, false); - } - } - sfd << - "EndSplineSet\n" - "EndChar\n"; - } - sfd.flush(); - sfd.close(); - if (sfd.fail()) - throw FontWriterException("failed writing SFD file "+sfdname); -} - - -bool FontWriter::createTTFFile (const string &sfdname, const string &ttfname) const { - TTFAutohint autohinter; - if (!autohinter.available()) - return ff_sfd_to_ttf(sfdname.c_str(), ttfname.c_str(), AUTOHINT_FONTS); - - bool ok = ff_sfd_to_ttf(sfdname.c_str(), ttfname.c_str(), false); +bool FontWriter::createTTFFile (const std::string &ttfname, const PhysicalFont &font, const set<int> &charcodes, GFGlyphTracer::Callback *cb) const { + TTFWriter ttfWriter(font, charcodes); + if (cb) + ttfWriter.setTracerCallback(*cb); + bool ok = ttfWriter.writeTTF(ttfname); if (ok && AUTOHINT_FONTS) { - string tmpname = ttfname+"-ah"; - int errnum = autohinter.autohint(ttfname, tmpname, true); - if (errnum) { - Message::wstream(true) << "failed to autohint font '" << _font.name() << "'"; - string msg = autohinter.lastErrorMessage(); - if (!msg.empty()) - Message::wstream() << " (" << msg << ")"; - // keep the unhinted TTF - FileSystem::remove(tmpname); + TTFAutohint autohinter; + if (!autohinter.available()) { + static bool reported=false; + if (!reported) { + Message::wstream(true) << "autohint functionality disabled (ttfautohint not found)"; + reported = true; + } } else { - FileSystem::remove(ttfname); - FileSystem::rename(tmpname, ttfname); + string tmpname = ttfname+"-ah"; + try { + int errnum = autohinter.autohint(ttfname, tmpname, true); + if (errnum == 0) { // success? + FileSystem::remove(ttfname); + FileSystem::rename(tmpname, ttfname); + } + else { + Message::wstream(true) << "failed to autohint font '" << _font.name() << "'"; + string msg = autohinter.lastErrorMessage(); + if (!msg.empty()) + Message::wstream() << " (" << msg << ")"; + // keep the unhinted TTF + FileSystem::remove(tmpname); + } + } + catch (MessageException &e) { + Message::wstream(true) << e.what() << '\n'; + FileSystem::remove(tmpname); + } } } return ok; @@ -226,24 +135,19 @@ bool FontWriter::createTTFFile (const string &sfdname, const string &ttfname) co string FontWriter::createFontFile (FontFormat format, const set<int> &charcodes, GFGlyphTracer::Callback *cb) const { string tmpdir = FileSystem::tmpdir(); string basename = tmpdir+_font.name()+"-tmp"; - string sfdname = basename+".sfd"; - writeSFD(sfdname, _font, charcodes, cb); string ttfname = basename+".ttf"; string targetname = basename+"."+fontFormatInfo(format)->formatstr_short; - bool ok = createTTFFile(sfdname, ttfname); + bool ok = createTTFFile(ttfname, _font, charcodes, cb); if (ok) { if (format == FontFormat::WOFF || format == FontFormat::WOFF2) { - TrueTypeFont ttf(ttfname); if (format == FontFormat::WOFF) - ttf.writeWOFF(targetname); + ok = TTFWriter::convertTTFToWOFF(ttfname, targetname); else - ok = ttf.writeWOFF2(targetname); + TTFWriter::convertTTFToWOFF2(ttfname, targetname); if (!PhysicalFont::KEEP_TEMP_FILES) FileSystem::remove(ttfname); } } - if (!PhysicalFont::KEEP_TEMP_FILES) - FileSystem::remove(sfdname); if (!ok) throw FontWriterException("failed writing "+string(fontFormatInfo(format)->formatstr_short)+ " file " + targetname); return targetname; diff --git a/dviware/dvisvgm/src/FontWriter.hpp b/dviware/dvisvgm/src/FontWriter.hpp index 2bf1b90edd..611d2ac809 100644 --- a/dviware/dvisvgm/src/FontWriter.hpp +++ b/dviware/dvisvgm/src/FontWriter.hpp @@ -2,7 +2,7 @@ ** FontWriter.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -36,7 +36,7 @@ class FontWriter { static bool AUTOHINT_FONTS; public: - explicit FontWriter (const PhysicalFont &font); + explicit FontWriter (const PhysicalFont &font) : _font(font) {} std::string createFontFile (FontFormat format, const std::set<int> &charcodes, GFGlyphTracer::Callback *cb=nullptr) const; bool writeCSSFontFace (FontFormat format, const std::set<int> &charcodes, std::ostream &os, GFGlyphTracer::Callback *cb=nullptr) const; static FontFormat toFontFormat (std::string formatstr); @@ -50,7 +50,7 @@ class FontWriter { const char *formatstr_long; }; static const FontFormatInfo* fontFormatInfo (FontFormat format); - bool createTTFFile (const std::string &sfdname, const std::string &ttfname) const; + bool createTTFFile (const std::string &ttfname, const PhysicalFont &font, const std::set<int> &charcodes, GFGlyphTracer::Callback *cb) const; private: const PhysicalFont &_font; diff --git a/dviware/dvisvgm/src/GFGlyphTracer.cpp b/dviware/dvisvgm/src/GFGlyphTracer.cpp index 7c2e19f3c4..ee487751d6 100644 --- a/dviware/dvisvgm/src/GFGlyphTracer.cpp +++ b/dviware/dvisvgm/src/GFGlyphTracer.cpp @@ -2,7 +2,7 @@ ** GFGlyphTracer.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/GFGlyphTracer.hpp b/dviware/dvisvgm/src/GFGlyphTracer.hpp index 030cb27ac5..5493aea387 100644 --- a/dviware/dvisvgm/src/GFGlyphTracer.hpp +++ b/dviware/dvisvgm/src/GFGlyphTracer.hpp @@ -2,7 +2,7 @@ ** GFGlyphTracer.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/GFReader.cpp b/dviware/dvisvgm/src/GFReader.cpp index 6c0fd1e5eb..41920634cb 100644 --- a/dviware/dvisvgm/src/GFReader.cpp +++ b/dviware/dvisvgm/src/GFReader.cpp @@ -2,7 +2,7 @@ ** GFReader.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/GFReader.hpp b/dviware/dvisvgm/src/GFReader.hpp index efbb130475..f5a6a17609 100644 --- a/dviware/dvisvgm/src/GFReader.hpp +++ b/dviware/dvisvgm/src/GFReader.hpp @@ -2,7 +2,7 @@ ** GFReader.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/GFTracer.cpp b/dviware/dvisvgm/src/GFTracer.cpp index dd761ecaf2..b6cb2e76c7 100644 --- a/dviware/dvisvgm/src/GFTracer.cpp +++ b/dviware/dvisvgm/src/GFTracer.cpp @@ -2,7 +2,7 @@ ** GFTracer.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/GFTracer.hpp b/dviware/dvisvgm/src/GFTracer.hpp index 083395e9c3..63c6d20546 100644 --- a/dviware/dvisvgm/src/GFTracer.hpp +++ b/dviware/dvisvgm/src/GFTracer.hpp @@ -2,7 +2,7 @@ ** GFTracer.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/Ghostscript.cpp b/dviware/dvisvgm/src/Ghostscript.cpp index f4aa6e00aa..fa6f1eb0eb 100644 --- a/dviware/dvisvgm/src/Ghostscript.cpp +++ b/dviware/dvisvgm/src/Ghostscript.cpp @@ -2,7 +2,7 @@ ** Ghostscript.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -81,8 +81,8 @@ static string get_path_from_registry () { } #endif // _WIN32 -#if defined(_WIN32) && !defined(_WIN64) -static string get_gsdll32 () { +#if defined(_WIN32) +static string get_gsdll () { string pathstr; #if defined(TEXLIVEWIN32) char exepath[256]; @@ -97,9 +97,13 @@ static string get_gsdll32 () { pathstr += "bin\\"; } #endif +#if defined(_WIN64) + return pathstr+"gsdll64.dll"; +#else return pathstr+"gsdll32.dll"; +#endif } -#endif // _WIN32 && !_WIN64 +#endif // _WIN32 /** Try to detect name of the Ghostscript shared library depending on the user settings. @@ -123,14 +127,10 @@ static string get_libgs (const string &fname) { string gsdll_path = get_path_from_registry(); if (!gsdll_path.empty()) return gsdll_path; -#endif //_WIN32 -#if defined(_WIN64) - return "gsdll64.dll"; -#elif defined(_WIN32) - return get_gsdll32(); + return get_gsdll(); #else // try to find libgs.so.X on the user's system - const int abi_min=7, abi_max=9; // supported libgs ABI versions + const int abi_min=7, abi_max=10; // supported libgs ABI versions for (int i=abi_max; i >= abi_min; i--) { #if defined(__CYGWIN__) string dlname = "cyggs-" + to_string(i) + ".dll"; @@ -141,12 +141,16 @@ static string get_libgs (const string &fname) { if (loader.loaded()) return dlname; #if defined(__APPLE__) - dlname = "libgs." + to_string(i) + ".dylib"; - if (loader.loadLibrary(dlname)) - return dlname; - dlname = "libgs.dylib." + to_string(i); - if (loader.loadLibrary(dlname)) - return dlname; + // dlopen() requires an absolute path in a hardened runtime such as installed + // by MacTeX. Thus, explicitly lookup libgs in /usr/local/lib too. + for (const string path : {"", "/usr/local/lib/"}) { + dlname = path + "libgs." + to_string(i) + ".dylib"; + if (loader.loadLibrary(dlname)) + return dlname; + dlname = path + "libgs.dylib." + to_string(i); + if (loader.loadLibrary(dlname)) + return dlname; + } #endif } #endif @@ -228,10 +232,13 @@ bool Ghostscript::revision (gsapi_revision_t *r) const { /** Returns the revision number of the GS library. */ int Ghostscript::revision () const { - gsapi_revision_t r; - if (revision(&r)) - return static_cast<int>(r.revision); - return 0; + static int rev=0; + if (rev == 0) { + gsapi_revision_t r; + if (revision(&r)) + rev = static_cast<int>(r.revision); + } + return rev; } @@ -375,19 +382,9 @@ const char* Ghostscript::error_name (int code) { if (code < 0) code = -code; const char *error_names[] = { ERROR_NAMES }; - if (code == 0 || (size_t)code > sizeof(error_names)/sizeof(error_names[0])) + if (code == 0 || size_t(code) > sizeof(error_names)/sizeof(error_names[0])) return nullptr; -#if defined(HAVE_LIBGS) - // use array defined in libgs to avoid linking the error strings into the binary - return gs_error_names[code-1]; -#elif defined(_WIN32) - // gs_error_names is private in the Ghostscript DLL so we can't access it here return error_names[code-1]; -#else - if (auto error_names = loadSymbol<const char**>("gs_error_names")) - return error_names[code-1]; - return nullptr; -#endif } #endif // !DISABLE_GS diff --git a/dviware/dvisvgm/src/Ghostscript.hpp b/dviware/dvisvgm/src/Ghostscript.hpp index 9faa63e360..91b558fd3c 100644 --- a/dviware/dvisvgm/src/Ghostscript.hpp +++ b/dviware/dvisvgm/src/Ghostscript.hpp @@ -2,7 +2,7 @@ ** Ghostscript.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -47,8 +47,8 @@ struct Ghostscript { Ghostscript (int argc, const char **argv, void *caller=0) {} bool init (int argc, const char **argv, void *caller=0) {return false;} bool available () {return false;} - bool revision (gsapi_revision_t *r) {return false;} - int revision () {return 0;} + bool revision (gsapi_revision_t *r) const {return false;} + int revision () const {return 0;} std::string revisionstr () {return "";} int set_stdio (Stdin in, Stdout out, Stderr err) {return 0;} int run_string_begin (int user_errors, int *pexit_code) {return 0;} diff --git a/dviware/dvisvgm/src/Glyph.hpp b/dviware/dvisvgm/src/Glyph.hpp index fb6a485520..56f9c14ba3 100644 --- a/dviware/dvisvgm/src/Glyph.hpp +++ b/dviware/dvisvgm/src/Glyph.hpp @@ -2,7 +2,7 @@ ** Glyph.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/GlyphTracerMessages.hpp b/dviware/dvisvgm/src/GlyphTracerMessages.hpp index 15c607faea..cc7722a49b 100644 --- a/dviware/dvisvgm/src/GlyphTracerMessages.hpp +++ b/dviware/dvisvgm/src/GlyphTracerMessages.hpp @@ -2,7 +2,7 @@ ** GlyphTracerMessages.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/GraphicsPath.hpp b/dviware/dvisvgm/src/GraphicsPath.hpp index 9d270871cf..9b60370ff1 100644 --- a/dviware/dvisvgm/src/GraphicsPath.hpp +++ b/dviware/dvisvgm/src/GraphicsPath.hpp @@ -2,7 +2,7 @@ ** GraphicsPath.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -642,7 +642,7 @@ class GraphicsPath { void arcto (T rx, T ry, double angle, bool largeArcFlag, bool sweepFlag, const Point &p) override { EllipticalArc arc(this->currentPoint(), rx, ry, angle, largeArcFlag, sweepFlag, p); std::vector<CommandVariant> cmds; - for (const Bezier &bezier : arc.approximate()) + for (const CubicBezier &bezier : arc.approximate()) cmds.emplace_back(CubicTo{bezier.point(1), bezier.point(2), bezier.point(3)}); this->path().replace(this->commandPos(), cmds); } diff --git a/dviware/dvisvgm/src/GraphicsPathParser.hpp b/dviware/dvisvgm/src/GraphicsPathParser.hpp index 0106f21a52..41a850db27 100644 --- a/dviware/dvisvgm/src/GraphicsPathParser.hpp +++ b/dviware/dvisvgm/src/GraphicsPathParser.hpp @@ -2,7 +2,7 @@ ** GraphicsPathParser.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/HashFunction.cpp b/dviware/dvisvgm/src/HashFunction.cpp index b97084f328..e882ad5179 100644 --- a/dviware/dvisvgm/src/HashFunction.cpp +++ b/dviware/dvisvgm/src/HashFunction.cpp @@ -2,7 +2,7 @@ ** HashFunction.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/HashFunction.hpp b/dviware/dvisvgm/src/HashFunction.hpp index ecd938bcbb..690aee2904 100644 --- a/dviware/dvisvgm/src/HashFunction.hpp +++ b/dviware/dvisvgm/src/HashFunction.hpp @@ -2,7 +2,7 @@ ** HashFunction.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/HtmlSpecialHandler.cpp b/dviware/dvisvgm/src/HtmlSpecialHandler.cpp index 33d980fa72..e86de7fb96 100644 --- a/dviware/dvisvgm/src/HtmlSpecialHandler.cpp +++ b/dviware/dvisvgm/src/HtmlSpecialHandler.cpp @@ -2,7 +2,7 @@ ** HtmlSpecialHandler.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/HtmlSpecialHandler.hpp b/dviware/dvisvgm/src/HtmlSpecialHandler.hpp index 4bdabfda77..f722060538 100644 --- a/dviware/dvisvgm/src/HtmlSpecialHandler.hpp +++ b/dviware/dvisvgm/src/HtmlSpecialHandler.hpp @@ -2,7 +2,7 @@ ** HtmlSpecialHandler.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/HyperlinkManager.cpp b/dviware/dvisvgm/src/HyperlinkManager.cpp index 65ee534a32..b595055864 100644 --- a/dviware/dvisvgm/src/HyperlinkManager.cpp +++ b/dviware/dvisvgm/src/HyperlinkManager.cpp @@ -2,7 +2,7 @@ ** HyperlinkManager.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/HyperlinkManager.hpp b/dviware/dvisvgm/src/HyperlinkManager.hpp index 99151db0e5..3d0e93ca32 100644 --- a/dviware/dvisvgm/src/HyperlinkManager.hpp +++ b/dviware/dvisvgm/src/HyperlinkManager.hpp @@ -2,7 +2,7 @@ ** HyperlinkManager.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/ImageToSVG.cpp b/dviware/dvisvgm/src/ImageToSVG.cpp index c38d3cc9b9..990647a008 100644 --- a/dviware/dvisvgm/src/ImageToSVG.cpp +++ b/dviware/dvisvgm/src/ImageToSVG.cpp @@ -2,7 +2,7 @@ ** ImageToSVG.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -36,18 +36,17 @@ using namespace std; +ImageToSVG::ImageToSVG (std::string fname, SVGOutputBase &out) + : _fname(std::move(fname)), _out(out), _gsVersion(Ghostscript().revision()) +{ +} + + void ImageToSVG::checkGSAndFileFormat () { - if (!_haveGS) { -#ifdef HAVE_LIBGS - _haveGS = true; -#else - _haveGS = Ghostscript().available(); -#endif - if (!_haveGS) - throw MessageException("Ghostscript is required to process "+imageFormat()+" files"); - if (!imageIsValid()) - throw MessageException("invalid "+imageFormat()+" file"); - } + if (!_gsVersion) + throw MessageException("Ghostscript is required to process "+imageFormat()+" files"); + if (!imageIsValid()) + throw MessageException("invalid "+imageFormat()+" file"); } @@ -59,7 +58,7 @@ void ImageToSVG::convert (int pageno) { Message::mstream().indent(0); Message::mstream(false, Message::MC_PAGE_NUMBER) << "processing " << imageFormat() << " file\n"; Message::mstream().indent(1); - _svg.newPage(1); + _svg.newPage(pageno); // create a psfile special and forward it to the PsSpecialHandler stringstream ss; ss << "\"" << _fname << "\" " @@ -69,7 +68,7 @@ void ImageToSVG::convert (int pageno) { "ury=" << bbox.maxY(); _currentPageNumber = pageno; if (!isSinglePageFormat()) - ss << " page=" << pageno; + ss << " page=" << pageno << " proc=gs"; try { _psHandler.process(psSpecialCmd(), ss, *this); } @@ -77,6 +76,11 @@ void ImageToSVG::convert (int pageno) { progress(nullptr); // remove progress message throw; } + writeSVG(pageno); +} + + +void ImageToSVG::writeSVG (int pageno) { progress(nullptr); Matrix matrix = getUserMatrix(_bbox); // output SVG file @@ -87,6 +91,7 @@ void ImageToSVG::convert (int pageno) { _svg.appendToDoc(util::make_unique<XMLComment>(" This file was generated by dvisvgm " + string(PROGRAM_VERSION) + " ")); bool success = _svg.write(_out.getPageStream(pageno, totalPageCount())); string svgfname = _out.filepath(pageno, totalPageCount()).shorterAbsoluteOrRelative(); + _out.finish(); if (svgfname.empty()) svgfname = "<stdout>"; if (!success) @@ -94,10 +99,11 @@ void ImageToSVG::convert (int pageno) { else { const double bp2pt = 72.27/72; const double bp2mm = 25.4/72; - Message::mstream(false, Message::MC_PAGE_SIZE) << "graphic size: " << XMLString(_bbox.width()*bp2pt) << "pt" - " x " << XMLString(_bbox.height()*bp2pt) << "pt" - " (" << XMLString(_bbox.width()*bp2mm) << "mm" - " x " << XMLString(_bbox.height()*bp2mm) << "mm)\n"; + Message::mstream(false,Message::MC_PAGE_SIZE) + << "graphic size: " << XMLString(_bbox.width()*bp2pt) << "pt" + << " x " << XMLString(_bbox.height()*bp2pt) << "pt" + << " (" << XMLString(_bbox.width()*bp2mm) << "mm" + << " x " << XMLString(_bbox.height()*bp2mm) << "mm)\n"; Message::mstream(false, Message::MC_PAGE_WRITTEN) << "output written to " << svgfname << '\n'; } _bbox.invalidate(); diff --git a/dviware/dvisvgm/src/ImageToSVG.hpp b/dviware/dvisvgm/src/ImageToSVG.hpp index 2c2c701d47..eccb48e5f7 100644 --- a/dviware/dvisvgm/src/ImageToSVG.hpp +++ b/dviware/dvisvgm/src/ImageToSVG.hpp @@ -2,7 +2,7 @@ ** ImageToSVG.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -32,24 +32,25 @@ struct SVGOutputBase; class ImageToSVG : protected SpecialActions { public: - ImageToSVG (std::string fname, SVGOutputBase &out) : _fname(std::move(fname)), _out(out) {} - void convert (int pageno); + ImageToSVG (std::string fname, SVGOutputBase &out); + virtual void convert (int pageno); void convert (int firstPage, int lastPage, std::pair<int,int> *pageinfo); void convert (const std::string &rangestr, std::pair<int,int> *pageinfo); void setPageTransformation (const std::string &transCmds) {_transCmds = transCmds;} -// void setPageSize (const std::string &name); std::string filename () const {return _fname;} PSInterpreter& psInterpreter () const {return _psHandler.psInterpreter();} virtual bool isSinglePageFormat () const =0; virtual int totalPageCount () const =0; protected: - void checkGSAndFileFormat (); + virtual void checkGSAndFileFormat (); Matrix getUserMatrix (const BoundingBox &bbox) const; virtual std::string imageFormat () const =0; virtual bool imageIsValid () const =0; virtual BoundingBox imageBBox () const =0; virtual std::string psSpecialCmd () const =0; + int gsVersion () const {return _gsVersion;} + virtual void writeSVG (int pageno); // implement abstract base class SpecialActions double getX () const override {return _x;} double getY () const override {return _y;} @@ -71,17 +72,19 @@ class ImageToSVG : protected SpecialActions { BoundingBox& bbox () override {return _bbox;} BoundingBox& bbox (const std::string &name, bool reset=false) override {return _bbox;} FilePath getSVGFilePath (unsigned pageno) const override; - std::string getBBoxFormatString () const override {return "";} + std::string getBBoxFormatString () const override {return "";} + + protected: + SVGTree _svg; private: std::string _fname; ///< name of image file - SVGTree _svg; SVGOutputBase &_out; double _x=0, _y=0; unsigned _currentPageNumber=0; BoundingBox _bbox; mutable PsSpecialHandler _psHandler; - bool _haveGS=false; ///< true if Ghostscript is available + int _gsVersion=0; ///< Ghostscript version found std::string _transCmds; ///< transformation commands }; diff --git a/dviware/dvisvgm/src/InputBuffer.cpp b/dviware/dvisvgm/src/InputBuffer.cpp index e9387cfb11..095b7e22cc 100644 --- a/dviware/dvisvgm/src/InputBuffer.cpp +++ b/dviware/dvisvgm/src/InputBuffer.cpp @@ -2,7 +2,7 @@ ** InputBuffer.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/InputBuffer.hpp b/dviware/dvisvgm/src/InputBuffer.hpp index adf5898cec..20523d37dd 100644 --- a/dviware/dvisvgm/src/InputBuffer.hpp +++ b/dviware/dvisvgm/src/InputBuffer.hpp @@ -2,7 +2,7 @@ ** InputBuffer.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/InputReader.cpp b/dviware/dvisvgm/src/InputReader.cpp index ed97e3f44d..9c5cc504cd 100644 --- a/dviware/dvisvgm/src/InputReader.cpp +++ b/dviware/dvisvgm/src/InputReader.cpp @@ -2,7 +2,7 @@ ** InputReader.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/InputReader.hpp b/dviware/dvisvgm/src/InputReader.hpp index ac1dfdf955..fefd450bac 100644 --- a/dviware/dvisvgm/src/InputReader.hpp +++ b/dviware/dvisvgm/src/InputReader.hpp @@ -2,7 +2,7 @@ ** InputReader.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/JFM.cpp b/dviware/dvisvgm/src/JFM.cpp index 4b5c63cb7e..c801618178 100644 --- a/dviware/dvisvgm/src/JFM.cpp +++ b/dviware/dvisvgm/src/JFM.cpp @@ -2,7 +2,7 @@ ** JFM.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/JFM.hpp b/dviware/dvisvgm/src/JFM.hpp index dc9798cda2..110f0f3e1a 100644 --- a/dviware/dvisvgm/src/JFM.hpp +++ b/dviware/dvisvgm/src/JFM.hpp @@ -2,7 +2,7 @@ ** JFM.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/Length.cpp b/dviware/dvisvgm/src/Length.cpp index 463f571a59..059933a363 100644 --- a/dviware/dvisvgm/src/Length.cpp +++ b/dviware/dvisvgm/src/Length.cpp @@ -2,7 +2,7 @@ ** Length.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/Length.hpp b/dviware/dvisvgm/src/Length.hpp index 14a2fd4c74..9c1f353c46 100644 --- a/dviware/dvisvgm/src/Length.hpp +++ b/dviware/dvisvgm/src/Length.hpp @@ -2,7 +2,7 @@ ** Length.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/MD5HashFunction.hpp b/dviware/dvisvgm/src/MD5HashFunction.hpp index 5149d5945e..d5cfdf2bfa 100644 --- a/dviware/dvisvgm/src/MD5HashFunction.hpp +++ b/dviware/dvisvgm/src/MD5HashFunction.hpp @@ -2,7 +2,7 @@ ** MD5HashFunction.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/Makefile.am b/dviware/dvisvgm/src/Makefile.am index bd2cfd3a43..85ca88ddc4 100644 --- a/dviware/dvisvgm/src/Makefile.am +++ b/dviware/dvisvgm/src/Makefile.am @@ -1,11 +1,11 @@ ## This file is part of dvisvgm -## Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> +## Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ## ## Process this file with automake. bin_PROGRAMS = dvisvgm noinst_LTLIBRARIES = libdvisvgm.la -SUBDIRS = optimizer +SUBDIRS = fonts optimizer ttf dvisvgm_SOURCES = \ CommandLine.hpp \ @@ -17,14 +17,14 @@ dvisvgm_LDADD = \ $(noinst_LTLIBRARIES) \ ../libs/clipper/libclipper.a \ $(FREETYPE_LIBS) \ - $(FONTFORGE_LIBS) \ $(POTRACE_LIBS) \ $(XXHASH_LIBS) \ $(ZLIB_LIBS) if ENABLE_WOFF +SUBDIRS += ttf + dvisvgm_LDADD += \ - ../libs/ff-woff/libfontforge.a \ $(WOFF2_LIBS) \ $(BROTLI_LIBS) endif @@ -111,9 +111,10 @@ libdvisvgm_la_SOURCES = \ Pair.hpp \ PapersizeSpecialHandler.hpp PapersizeSpecialHandler.cpp \ PathClipper.hpp PathClipper.cpp \ + PDFHandler.hpp PDFHandler.cpp \ PDFParser.hpp PDFParser.cpp \ PdfSpecialHandler.hpp PdfSpecialHandler.cpp \ - PDFToSVG.hpp \ + PDFToSVG.hpp PDFToSVG.cpp \ PreScanDVIReader.hpp PreScanDVIReader.cpp \ Process.hpp Process.cpp \ psdefs.cpp \ @@ -147,8 +148,6 @@ libdvisvgm_la_SOURCES = \ ToUnicodeMap.hpp ToUnicodeMap.cpp \ TpicSpecialHandler.hpp TpicSpecialHandler.cpp \ TriangularPatch.hpp TriangularPatch.cpp \ - TrueTypeFont.hpp TrueTypeFont.cpp \ - TTFAutohint.hpp TTFAutohint.cpp \ Unicode.hpp Unicode.cpp \ utility.hpp utility.cpp \ VectorIterator.hpp \ @@ -163,12 +162,12 @@ libdvisvgm_la_SOURCES = \ XXHashFunction.hpp \ ZLibOutputStream.hpp +libdvisvgm_la_LIBADD = fonts/libbase14fonts.la optimizer/liboptimizer.la + if ENABLE_WOFF -libdvisvgm_la_SOURCES += ffwrapper.c ffwrapper.h +libdvisvgm_la_LIBADD += ttf/libttf.la endif -libdvisvgm_la_LIBADD = optimizer/liboptimizer.la - EXTRA_DIST = options.xml options.dtd iapi.h ierrors.h MiKTeXCom.hpp MiKTeXCom.cpp AM_CFLAGS = -Wall \ @@ -192,24 +191,21 @@ AM_LDFLAGS = \ $(CODE_COVERAGE_LDFLAGS) if ENABLE_WOFF -AM_CFLAGS += \ - -I$(dvisvgm_srcdir)/libs/ff-woff/fontforge \ - -I$(dvisvgm_srcdir)/libs/ff-woff/inc - AM_CXXFLAGS += $(TTFAUTOHINT_CFLAGS) AM_CXXFLAGS += \ $(BROTLI_CFLAGS) \ $(WOFF2_CFLAGS) +AM_LDFLAGS += $(TTFAUTOHINT_LIBS) +endif + if USE_BUNDLED_MD5 AM_CXXFLAGS += -I$(dvisvgm_srcdir)/libs/md5 else AM_CXXFLAGS += $(LIBCRYPTO_CFLAGS) endif -AM_LDFLAGS += $(TTFAUTOHINT_LIBS) -endif # the command-line parser class is generated from options.xml by opt2cpp @@ -225,6 +221,4 @@ $(srcdir)/psdefs.cpp: psdefs.ps psdefs.ps: ; -@CODE_COVERAGE_RULES@ - CLEANFILES = *.gcda *.gcno diff --git a/dviware/dvisvgm/src/Makefile.in b/dviware/dvisvgm/src/Makefile.in index 65df7c6162..8ebc8641d3 100644 --- a/dviware/dvisvgm/src/Makefile.in +++ b/dviware/dvisvgm/src/Makefile.in @@ -89,32 +89,38 @@ PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ -target_triplet = @target@ bin_PROGRAMS = dvisvgm$(EXEEXT) @HAVE_BROTLI_FALSE@am__append_1 = -I$(dvisvgm_srcdir)/libs/brotli/include @HAVE_BROTLI_FALSE@am__append_2 = ../libs/brotli/libbrotli.a @HAVE_WOFF2_FALSE@am__append_3 = -I$(dvisvgm_srcdir)/libs/woff2/include @HAVE_WOFF2_FALSE@am__append_4 = ../libs/woff2/libwoff2.a -@ENABLE_WOFF_TRUE@am__append_5 = \ -@ENABLE_WOFF_TRUE@ ../libs/ff-woff/libfontforge.a \ +@ENABLE_WOFF_TRUE@am__append_5 = ttf +@ENABLE_WOFF_TRUE@am__append_6 = \ @ENABLE_WOFF_TRUE@ $(WOFF2_LIBS) \ @ENABLE_WOFF_TRUE@ $(BROTLI_LIBS) -@USE_BUNDLED_MD5_TRUE@am__append_6 = ../libs/md5/libmd5.a -@USE_BUNDLED_MD5_FALSE@am__append_7 = $(LIBCRYPTO_LIBS) -@ENABLE_WOFF_TRUE@am__append_8 = ffwrapper.c ffwrapper.h -@ENABLE_WOFF_TRUE@am__append_9 = \ -@ENABLE_WOFF_TRUE@ -I$(dvisvgm_srcdir)/libs/ff-woff/fontforge \ -@ENABLE_WOFF_TRUE@ -I$(dvisvgm_srcdir)/libs/ff-woff/inc - +@USE_BUNDLED_MD5_TRUE@am__append_7 = ../libs/md5/libmd5.a +@USE_BUNDLED_MD5_FALSE@am__append_8 = $(LIBCRYPTO_LIBS) +@ENABLE_WOFF_TRUE@am__append_9 = ttf/libttf.la @ENABLE_WOFF_TRUE@am__append_10 = $(TTFAUTOHINT_CFLAGS) \ @ENABLE_WOFF_TRUE@ $(BROTLI_CFLAGS) $(WOFF2_CFLAGS) -@ENABLE_WOFF_TRUE@@USE_BUNDLED_MD5_TRUE@am__append_11 = -I$(dvisvgm_srcdir)/libs/md5 -@ENABLE_WOFF_TRUE@@USE_BUNDLED_MD5_FALSE@am__append_12 = $(LIBCRYPTO_CFLAGS) -@ENABLE_WOFF_TRUE@am__append_13 = $(TTFAUTOHINT_LIBS) +@ENABLE_WOFF_TRUE@am__append_11 = $(TTFAUTOHINT_LIBS) +@USE_BUNDLED_MD5_TRUE@am__append_12 = -I$(dvisvgm_srcdir)/libs/md5 +@USE_BUNDLED_MD5_FALSE@am__append_13 = $(LIBCRYPTO_CFLAGS) subdir = src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__aclocal_m4_deps = $(top_srcdir)/m4/ax_ac_append_to_file.m4 \ + $(top_srcdir)/m4/ax_ac_print_to_file.m4 \ + $(top_srcdir)/m4/ax_add_am_macro_static.m4 \ + $(top_srcdir)/m4/ax_am_macros_static.m4 \ + $(top_srcdir)/m4/ax_check_compile_flag.m4 \ + $(top_srcdir)/m4/ax_code_coverage.m4 \ + $(top_srcdir)/m4/ax_cxx_compile_stdcxx.m4 \ + $(top_srcdir)/m4/ax_file_escapes.m4 \ + $(top_srcdir)/m4/ax_gcc_builtin.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) @@ -125,74 +131,8 @@ CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) LTLIBRARIES = $(noinst_LTLIBRARIES) -libdvisvgm_la_DEPENDENCIES = optimizer/liboptimizer.la -am__libdvisvgm_la_SOURCES_DIST = AGLTable.hpp BasicDVIReader.hpp \ - BasicDVIReader.cpp Bezier.hpp Bezier.cpp \ - BgColorSpecialHandler.hpp BgColorSpecialHandler.cpp Bitmap.hpp \ - Bitmap.cpp BoundingBox.hpp BoundingBox.cpp Calculator.hpp \ - Calculator.cpp Character.hpp CharMapID.hpp CharMapID.cpp \ - CLCommandLine.hpp CLCommandLine.cpp CMap.hpp CMap.cpp \ - CMapManager.hpp CMapManager.cpp CMapReader.hpp CMapReader.cpp \ - CLOption.hpp Color.hpp Color.cpp ColorSpecialHandler.hpp \ - ColorSpecialHandler.cpp CommandLine.hpp Directory.hpp \ - Directory.cpp DVIActions.hpp DLLoader.hpp DLLoader.cpp \ - DVIReader.hpp DVIReader.cpp DvisvgmSpecialHandler.hpp \ - DvisvgmSpecialHandler.cpp DVIToSVG.hpp DVIToSVG.cpp \ - DVIToSVGActions.hpp DVIToSVGActions.cpp EllipticalArc.hpp \ - EllipticalArc.cpp EmSpecialHandler.hpp EmSpecialHandler.cpp \ - EncFile.hpp EncFile.cpp EPSFile.hpp EPSFile.cpp EPSToSVG.hpp \ - FileFinder.hpp FileFinder.cpp FilePath.hpp FilePath.cpp \ - FileSystem.hpp FileSystem.cpp FixWord.hpp Font.hpp Font.cpp \ - FontCache.hpp FontCache.cpp FontEncoding.hpp FontEncoding.cpp \ - FontEngine.hpp FontEngine.cpp FontManager.hpp FontManager.cpp \ - FontMap.hpp FontMap.cpp FontMetrics.hpp FontMetrics.cpp \ - FontStyle.hpp FontWriter.hpp FontWriter.cpp GFGlyphTracer.hpp \ - GFGlyphTracer.cpp GFReader.hpp GFReader.cpp GFTracer.hpp \ - GFTracer.cpp Ghostscript.hpp Ghostscript.cpp Glyph.hpp \ - GlyphTracerMessages.hpp GraphicsPath.hpp \ - GraphicsPathParser.hpp HashFunction.hpp HashFunction.cpp \ - HtmlSpecialHandler.hpp HtmlSpecialHandler.cpp \ - HyperlinkManager.hpp HyperlinkManager.cpp ImageToSVG.hpp \ - ImageToSVG.cpp InputBuffer.hpp InputBuffer.cpp InputReader.hpp \ - InputReader.cpp JFM.hpp JFM.cpp Length.hpp Length.cpp \ - macros.hpp MapLine.hpp MapLine.cpp Matrix.hpp Matrix.cpp \ - MD5HashFunction.hpp Message.hpp Message.cpp \ - MessageException.hpp MetafontWrapper.hpp MetafontWrapper.cpp \ - NoPsSpecialHandler.hpp NoPsSpecialHandler.cpp \ - NumericRanges.hpp Opacity.hpp Opacity.cpp PageRanges.hpp \ - PageRanges.cpp PageSize.hpp PageSize.cpp Pair.hpp \ - PapersizeSpecialHandler.hpp PapersizeSpecialHandler.cpp \ - PathClipper.hpp PathClipper.cpp PDFParser.hpp PDFParser.cpp \ - PdfSpecialHandler.hpp PdfSpecialHandler.cpp PDFToSVG.hpp \ - PreScanDVIReader.hpp PreScanDVIReader.cpp Process.hpp \ - Process.cpp psdefs.cpp PSFilter.hpp PSInterpreter.hpp \ - PSInterpreter.cpp PSPattern.hpp PSPattern.cpp \ - PSPreviewFilter.hpp PSPreviewFilter.cpp PsSpecialHandler.hpp \ - PsSpecialHandler.cpp RangeMap.hpp RangeMap.cpp \ - ShadingPatch.hpp ShadingPatch.cpp SignalHandler.hpp \ - SignalHandler.cpp SourceInput.hpp SourceInput.cpp \ - SpecialActions.hpp SpecialHandler.hpp SpecialManager.hpp \ - SpecialManager.cpp StreamReader.hpp StreamReader.cpp \ - StreamWriter.hpp StreamWriter.cpp Subfont.hpp Subfont.cpp \ - SVGCharHandler.hpp SVGCharHandler.cpp \ - SVGCharHandlerFactory.hpp SVGCharHandlerFactory.cpp \ - SVGCharPathHandler.hpp SVGCharPathHandler.cpp \ - SVGCharTspanTextHandler.hpp SVGCharTspanTextHandler.cpp \ - SVGElement.hpp SVGElement.cpp SVGOutput.hpp SVGOutput.cpp \ - SVGSingleCharTextHandler.hpp SVGSingleCharTextHandler.cpp \ - SVGTree.hpp SVGTree.cpp System.hpp System.cpp \ - TensorProductPatch.hpp TensorProductPatch.cpp Terminal.hpp \ - Terminal.cpp TFM.hpp TFM.cpp ToUnicodeMap.hpp ToUnicodeMap.cpp \ - TpicSpecialHandler.hpp TpicSpecialHandler.cpp \ - TriangularPatch.hpp TriangularPatch.cpp TrueTypeFont.hpp \ - TrueTypeFont.cpp TTFAutohint.hpp TTFAutohint.cpp Unicode.hpp \ - Unicode.cpp utility.hpp utility.cpp VectorIterator.hpp \ - VectorStream.hpp VFActions.hpp VFReader.hpp VFReader.cpp \ - windows.hpp XMLDocument.hpp XMLDocument.cpp XMLNode.hpp \ - XMLNode.cpp XMLParser.hpp XMLParser.cpp XMLString.hpp \ - XMLString.cpp XXHashFunction.hpp ZLibOutputStream.hpp \ - ffwrapper.c ffwrapper.h -@ENABLE_WOFF_TRUE@am__objects_1 = ffwrapper.lo +libdvisvgm_la_DEPENDENCIES = fonts/libbase14fonts.la \ + optimizer/liboptimizer.la $(am__append_9) am_libdvisvgm_la_OBJECTS = BasicDVIReader.lo Bezier.lo \ BgColorSpecialHandler.lo Bitmap.lo BoundingBox.lo \ Calculator.lo CharMapID.lo CLCommandLine.lo CMap.lo \ @@ -208,19 +148,19 @@ am_libdvisvgm_la_OBJECTS = BasicDVIReader.lo Bezier.lo \ InputReader.lo JFM.lo Length.lo MapLine.lo Matrix.lo \ Message.lo MetafontWrapper.lo NoPsSpecialHandler.lo Opacity.lo \ PageRanges.lo PageSize.lo PapersizeSpecialHandler.lo \ - PathClipper.lo PDFParser.lo PdfSpecialHandler.lo \ - PreScanDVIReader.lo Process.lo psdefs.lo PSInterpreter.lo \ - PSPattern.lo PSPreviewFilter.lo PsSpecialHandler.lo \ - RangeMap.lo ShadingPatch.lo SignalHandler.lo SourceInput.lo \ - SpecialManager.lo StreamReader.lo StreamWriter.lo Subfont.lo \ - SVGCharHandler.lo SVGCharHandlerFactory.lo \ - SVGCharPathHandler.lo SVGCharTspanTextHandler.lo SVGElement.lo \ - SVGOutput.lo SVGSingleCharTextHandler.lo SVGTree.lo System.lo \ + PathClipper.lo PDFHandler.lo PDFParser.lo PdfSpecialHandler.lo \ + PDFToSVG.lo PreScanDVIReader.lo Process.lo psdefs.lo \ + PSInterpreter.lo PSPattern.lo PSPreviewFilter.lo \ + PsSpecialHandler.lo RangeMap.lo ShadingPatch.lo \ + SignalHandler.lo SourceInput.lo SpecialManager.lo \ + StreamReader.lo StreamWriter.lo Subfont.lo SVGCharHandler.lo \ + SVGCharHandlerFactory.lo SVGCharPathHandler.lo \ + SVGCharTspanTextHandler.lo SVGElement.lo SVGOutput.lo \ + SVGSingleCharTextHandler.lo SVGTree.lo System.lo \ TensorProductPatch.lo Terminal.lo TFM.lo ToUnicodeMap.lo \ - TpicSpecialHandler.lo TriangularPatch.lo TrueTypeFont.lo \ - TTFAutohint.lo Unicode.lo utility.lo VFReader.lo \ - XMLDocument.lo XMLNode.lo XMLParser.lo XMLString.lo \ - $(am__objects_1) + TpicSpecialHandler.lo TriangularPatch.lo Unicode.lo utility.lo \ + VFReader.lo XMLDocument.lo XMLNode.lo XMLParser.lo \ + XMLString.lo libdvisvgm_la_OBJECTS = $(am_libdvisvgm_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) @@ -231,8 +171,8 @@ dvisvgm_OBJECTS = $(am_dvisvgm_OBJECTS) am__DEPENDENCIES_1 = am__DEPENDENCIES_2 = $(am__append_4) am__DEPENDENCIES_3 = $(am__append_2) -@ENABLE_WOFF_TRUE@am__DEPENDENCIES_4 = ../libs/ff-woff/libfontforge.a \ -@ENABLE_WOFF_TRUE@ $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_3) +@ENABLE_WOFF_TRUE@am__DEPENDENCIES_4 = $(am__DEPENDENCIES_2) \ +@ENABLE_WOFF_TRUE@ $(am__DEPENDENCIES_3) @USE_BUNDLED_MD5_FALSE@am__DEPENDENCIES_5 = $(am__DEPENDENCIES_1) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) @@ -277,7 +217,8 @@ am__depfiles_remade = ./$(DEPDIR)/BasicDVIReader.Plo \ ./$(DEPDIR)/MapLine.Plo ./$(DEPDIR)/Matrix.Plo \ ./$(DEPDIR)/Message.Plo ./$(DEPDIR)/MetafontWrapper.Plo \ ./$(DEPDIR)/NoPsSpecialHandler.Plo ./$(DEPDIR)/Opacity.Plo \ - ./$(DEPDIR)/PDFParser.Plo ./$(DEPDIR)/PSInterpreter.Plo \ + ./$(DEPDIR)/PDFHandler.Plo ./$(DEPDIR)/PDFParser.Plo \ + ./$(DEPDIR)/PDFToSVG.Plo ./$(DEPDIR)/PSInterpreter.Plo \ ./$(DEPDIR)/PSPattern.Plo ./$(DEPDIR)/PSPreviewFilter.Plo \ ./$(DEPDIR)/PageRanges.Plo ./$(DEPDIR)/PageSize.Plo \ ./$(DEPDIR)/PapersizeSpecialHandler.Plo \ @@ -295,34 +236,15 @@ am__depfiles_remade = ./$(DEPDIR)/BasicDVIReader.Plo \ ./$(DEPDIR)/SpecialManager.Plo ./$(DEPDIR)/StreamReader.Plo \ ./$(DEPDIR)/StreamWriter.Plo ./$(DEPDIR)/Subfont.Plo \ ./$(DEPDIR)/System.Plo ./$(DEPDIR)/TFM.Plo \ - ./$(DEPDIR)/TTFAutohint.Plo ./$(DEPDIR)/TensorProductPatch.Plo \ - ./$(DEPDIR)/Terminal.Plo ./$(DEPDIR)/ToUnicodeMap.Plo \ + ./$(DEPDIR)/TensorProductPatch.Plo ./$(DEPDIR)/Terminal.Plo \ + ./$(DEPDIR)/ToUnicodeMap.Plo \ ./$(DEPDIR)/TpicSpecialHandler.Plo \ - ./$(DEPDIR)/TriangularPatch.Plo ./$(DEPDIR)/TrueTypeFont.Plo \ - ./$(DEPDIR)/Unicode.Plo ./$(DEPDIR)/VFReader.Plo \ - ./$(DEPDIR)/XMLDocument.Plo ./$(DEPDIR)/XMLNode.Plo \ - ./$(DEPDIR)/XMLParser.Plo ./$(DEPDIR)/XMLString.Plo \ - ./$(DEPDIR)/dvisvgm.Po ./$(DEPDIR)/ffwrapper.Plo \ + ./$(DEPDIR)/TriangularPatch.Plo ./$(DEPDIR)/Unicode.Plo \ + ./$(DEPDIR)/VFReader.Plo ./$(DEPDIR)/XMLDocument.Plo \ + ./$(DEPDIR)/XMLNode.Plo ./$(DEPDIR)/XMLParser.Plo \ + ./$(DEPDIR)/XMLString.Plo ./$(DEPDIR)/dvisvgm.Po \ ./$(DEPDIR)/psdefs.Plo ./$(DEPDIR)/utility.Plo am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) -am__v_CC_0 = @echo " CC " $@; -am__v_CC_1 = -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) -am__v_CCLD_0 = @echo " CCLD " $@; -am__v_CCLD_1 = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -341,8 +263,26 @@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = SOURCES = $(libdvisvgm_la_SOURCES) $(dvisvgm_SOURCES) -DIST_SOURCES = $(am__libdvisvgm_la_SOURCES_DIST) $(dvisvgm_SOURCES) +DIST_SOURCES = $(libdvisvgm_la_SOURCES) $(dvisvgm_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ @@ -381,7 +321,7 @@ am__define_uniq_tagged_files = \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` -DIST_SUBDIRS = $(SUBDIRS) +DIST_SUBDIRS = fonts optimizer ttf am__DIST_COMMON = $(srcdir)/../libs/defs.am $(srcdir)/Makefile.in \ $(srcdir)/version.hpp.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) @@ -414,7 +354,7 @@ ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_CPPFLAGS = @AM_CPPFLAGS@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AM_LDFLAGS = $(KPSE_LIBS) $(CODE_COVERAGE_LDFLAGS) $(am__append_13) +AM_LDFLAGS = $(KPSE_LIBS) $(CODE_COVERAGE_LDFLAGS) $(am__append_11) AR = @AR@ ASCIIDOC = @ASCIIDOC@ AUTOCONF = @AUTOCONF@ @@ -430,7 +370,6 @@ CODE_COVERAGE_CFLAGS = @CODE_COVERAGE_CFLAGS@ CODE_COVERAGE_CPPFLAGS = @CODE_COVERAGE_CPPFLAGS@ CODE_COVERAGE_CXXFLAGS = @CODE_COVERAGE_CXXFLAGS@ CODE_COVERAGE_ENABLED = @CODE_COVERAGE_ENABLED@ -CODE_COVERAGE_LDFLAGS = @CODE_COVERAGE_LDFLAGS@ CODE_COVERAGE_LIBS = @CODE_COVERAGE_LIBS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ @@ -546,6 +485,8 @@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ +ifGNUmake = @ifGNUmake@ +ifnGNUmake = @ifnGNUmake@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ @@ -565,16 +506,12 @@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ -target = @target@ target_alias = @target_alias@ -target_cpu = @target_cpu@ -target_os = @target_os@ -target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libdvisvgm.la -SUBDIRS = optimizer +SUBDIRS = fonts optimizer ttf $(am__append_5) dvisvgm_SOURCES = \ CommandLine.hpp \ dvisvgm.cpp @@ -584,91 +521,152 @@ dvisvgm_SOURCES = \ @HAVE_XXHASH_FALSE@XXHASH_CFLAGS = -I$(dvisvgm_srcdir)/libs/xxHash @HAVE_XXHASH_FALSE@XXHASH_LIBS = ../libs/xxHash/libxxhash.a dvisvgm_LDADD = $(noinst_LTLIBRARIES) ../libs/clipper/libclipper.a \ - $(FREETYPE_LIBS) $(FONTFORGE_LIBS) $(POTRACE_LIBS) \ - $(XXHASH_LIBS) $(ZLIB_LIBS) $(am__append_5) $(am__append_6) \ - $(am__append_7) + $(FREETYPE_LIBS) $(POTRACE_LIBS) $(XXHASH_LIBS) $(ZLIB_LIBS) \ + $(am__append_6) $(am__append_7) $(am__append_8) dvisvgm_DEPENDENCIES = $(noinst_LTLIBRARIES) -libdvisvgm_la_SOURCES = AGLTable.hpp BasicDVIReader.hpp \ - BasicDVIReader.cpp Bezier.hpp Bezier.cpp \ - BgColorSpecialHandler.hpp BgColorSpecialHandler.cpp Bitmap.hpp \ - Bitmap.cpp BoundingBox.hpp BoundingBox.cpp Calculator.hpp \ - Calculator.cpp Character.hpp CharMapID.hpp CharMapID.cpp \ - CLCommandLine.hpp CLCommandLine.cpp CMap.hpp CMap.cpp \ - CMapManager.hpp CMapManager.cpp CMapReader.hpp CMapReader.cpp \ - CLOption.hpp Color.hpp Color.cpp ColorSpecialHandler.hpp \ - ColorSpecialHandler.cpp CommandLine.hpp Directory.hpp \ - Directory.cpp DVIActions.hpp DLLoader.hpp DLLoader.cpp \ - DVIReader.hpp DVIReader.cpp DvisvgmSpecialHandler.hpp \ - DvisvgmSpecialHandler.cpp DVIToSVG.hpp DVIToSVG.cpp \ - DVIToSVGActions.hpp DVIToSVGActions.cpp EllipticalArc.hpp \ - EllipticalArc.cpp EmSpecialHandler.hpp EmSpecialHandler.cpp \ - EncFile.hpp EncFile.cpp EPSFile.hpp EPSFile.cpp EPSToSVG.hpp \ - FileFinder.hpp FileFinder.cpp FilePath.hpp FilePath.cpp \ - FileSystem.hpp FileSystem.cpp FixWord.hpp Font.hpp Font.cpp \ - FontCache.hpp FontCache.cpp FontEncoding.hpp FontEncoding.cpp \ - FontEngine.hpp FontEngine.cpp FontManager.hpp FontManager.cpp \ - FontMap.hpp FontMap.cpp FontMetrics.hpp FontMetrics.cpp \ - FontStyle.hpp FontWriter.hpp FontWriter.cpp GFGlyphTracer.hpp \ - GFGlyphTracer.cpp GFReader.hpp GFReader.cpp GFTracer.hpp \ - GFTracer.cpp Ghostscript.hpp Ghostscript.cpp Glyph.hpp \ - GlyphTracerMessages.hpp GraphicsPath.hpp \ - GraphicsPathParser.hpp HashFunction.hpp HashFunction.cpp \ - HtmlSpecialHandler.hpp HtmlSpecialHandler.cpp \ - HyperlinkManager.hpp HyperlinkManager.cpp ImageToSVG.hpp \ - ImageToSVG.cpp InputBuffer.hpp InputBuffer.cpp InputReader.hpp \ - InputReader.cpp JFM.hpp JFM.cpp Length.hpp Length.cpp \ - macros.hpp MapLine.hpp MapLine.cpp Matrix.hpp Matrix.cpp \ - MD5HashFunction.hpp Message.hpp Message.cpp \ - MessageException.hpp MetafontWrapper.hpp MetafontWrapper.cpp \ - NoPsSpecialHandler.hpp NoPsSpecialHandler.cpp \ - NumericRanges.hpp Opacity.hpp Opacity.cpp PageRanges.hpp \ - PageRanges.cpp PageSize.hpp PageSize.cpp Pair.hpp \ - PapersizeSpecialHandler.hpp PapersizeSpecialHandler.cpp \ - PathClipper.hpp PathClipper.cpp PDFParser.hpp PDFParser.cpp \ - PdfSpecialHandler.hpp PdfSpecialHandler.cpp PDFToSVG.hpp \ - PreScanDVIReader.hpp PreScanDVIReader.cpp Process.hpp \ - Process.cpp psdefs.cpp PSFilter.hpp PSInterpreter.hpp \ - PSInterpreter.cpp PSPattern.hpp PSPattern.cpp \ - PSPreviewFilter.hpp PSPreviewFilter.cpp PsSpecialHandler.hpp \ - PsSpecialHandler.cpp RangeMap.hpp RangeMap.cpp \ - ShadingPatch.hpp ShadingPatch.cpp SignalHandler.hpp \ - SignalHandler.cpp SourceInput.hpp SourceInput.cpp \ - SpecialActions.hpp SpecialHandler.hpp SpecialManager.hpp \ - SpecialManager.cpp StreamReader.hpp StreamReader.cpp \ - StreamWriter.hpp StreamWriter.cpp Subfont.hpp Subfont.cpp \ - SVGCharHandler.hpp SVGCharHandler.cpp \ - SVGCharHandlerFactory.hpp SVGCharHandlerFactory.cpp \ - SVGCharPathHandler.hpp SVGCharPathHandler.cpp \ - SVGCharTspanTextHandler.hpp SVGCharTspanTextHandler.cpp \ - SVGElement.hpp SVGElement.cpp SVGOutput.hpp SVGOutput.cpp \ +libdvisvgm_la_SOURCES = \ + AGLTable.hpp \ + BasicDVIReader.hpp BasicDVIReader.cpp \ + Bezier.hpp Bezier.cpp \ + BgColorSpecialHandler.hpp BgColorSpecialHandler.cpp \ + Bitmap.hpp Bitmap.cpp \ + BoundingBox.hpp BoundingBox.cpp \ + Calculator.hpp Calculator.cpp \ + Character.hpp \ + CharMapID.hpp CharMapID.cpp \ + CLCommandLine.hpp CLCommandLine.cpp \ + CMap.hpp CMap.cpp \ + CMapManager.hpp CMapManager.cpp \ + CMapReader.hpp CMapReader.cpp \ + CLOption.hpp \ + Color.hpp Color.cpp \ + ColorSpecialHandler.hpp ColorSpecialHandler.cpp \ + CommandLine.hpp \ + Directory.hpp Directory.cpp \ + DVIActions.hpp \ + DLLoader.hpp DLLoader.cpp \ + DVIReader.hpp DVIReader.cpp \ + DvisvgmSpecialHandler.hpp DvisvgmSpecialHandler.cpp \ + DVIToSVG.hpp DVIToSVG.cpp \ + DVIToSVGActions.hpp DVIToSVGActions.cpp \ + EllipticalArc.hpp EllipticalArc.cpp \ + EmSpecialHandler.hpp EmSpecialHandler.cpp \ + EncFile.hpp EncFile.cpp \ + EPSFile.hpp EPSFile.cpp \ + EPSToSVG.hpp \ + FileFinder.hpp FileFinder.cpp \ + FilePath.hpp FilePath.cpp \ + FileSystem.hpp FileSystem.cpp \ + FixWord.hpp \ + Font.hpp Font.cpp \ + FontCache.hpp FontCache.cpp \ + FontEncoding.hpp FontEncoding.cpp \ + FontEngine.hpp FontEngine.cpp \ + FontManager.hpp FontManager.cpp \ + FontMap.hpp FontMap.cpp \ + FontMetrics.hpp FontMetrics.cpp \ + FontStyle.hpp \ + FontWriter.hpp FontWriter.cpp \ + GFGlyphTracer.hpp GFGlyphTracer.cpp \ + GFReader.hpp GFReader.cpp \ + GFTracer.hpp GFTracer.cpp \ + Ghostscript.hpp Ghostscript.cpp \ + Glyph.hpp \ + GlyphTracerMessages.hpp \ + GraphicsPath.hpp \ + GraphicsPathParser.hpp \ + HashFunction.hpp HashFunction.cpp \ + HtmlSpecialHandler.hpp HtmlSpecialHandler.cpp \ + HyperlinkManager.hpp HyperlinkManager.cpp \ + ImageToSVG.hpp ImageToSVG.cpp \ + InputBuffer.hpp InputBuffer.cpp \ + InputReader.hpp InputReader.cpp \ + JFM.hpp JFM.cpp \ + Length.hpp Length.cpp \ + macros.hpp \ + MapLine.hpp MapLine.cpp \ + Matrix.hpp Matrix.cpp \ + MD5HashFunction.hpp \ + Message.hpp Message.cpp \ + MessageException.hpp \ + MetafontWrapper.hpp MetafontWrapper.cpp \ + NoPsSpecialHandler.hpp NoPsSpecialHandler.cpp \ + NumericRanges.hpp \ + Opacity.hpp Opacity.cpp \ + PageRanges.hpp PageRanges.cpp \ + PageSize.hpp PageSize.cpp \ + Pair.hpp \ + PapersizeSpecialHandler.hpp PapersizeSpecialHandler.cpp \ + PathClipper.hpp PathClipper.cpp \ + PDFHandler.hpp PDFHandler.cpp \ + PDFParser.hpp PDFParser.cpp \ + PdfSpecialHandler.hpp PdfSpecialHandler.cpp \ + PDFToSVG.hpp PDFToSVG.cpp \ + PreScanDVIReader.hpp PreScanDVIReader.cpp \ + Process.hpp Process.cpp \ + psdefs.cpp \ + PSFilter.hpp \ + PSInterpreter.hpp PSInterpreter.cpp \ + PSPattern.hpp PSPattern.cpp \ + PSPreviewFilter.hpp PSPreviewFilter.cpp \ + PsSpecialHandler.hpp PsSpecialHandler.cpp \ + RangeMap.hpp RangeMap.cpp \ + ShadingPatch.hpp ShadingPatch.cpp \ + SignalHandler.hpp SignalHandler.cpp \ + SourceInput.hpp SourceInput.cpp \ + SpecialActions.hpp \ + SpecialHandler.hpp \ + SpecialManager.hpp SpecialManager.cpp \ + StreamReader.hpp StreamReader.cpp \ + StreamWriter.hpp StreamWriter.cpp \ + Subfont.hpp Subfont.cpp \ + SVGCharHandler.hpp SVGCharHandler.cpp \ + SVGCharHandlerFactory.hpp SVGCharHandlerFactory.cpp \ + SVGCharPathHandler.hpp SVGCharPathHandler.cpp \ + SVGCharTspanTextHandler.hpp SVGCharTspanTextHandler.cpp \ + SVGElement.hpp SVGElement.cpp \ + SVGOutput.hpp SVGOutput.cpp \ SVGSingleCharTextHandler.hpp SVGSingleCharTextHandler.cpp \ - SVGTree.hpp SVGTree.cpp System.hpp System.cpp \ - TensorProductPatch.hpp TensorProductPatch.cpp Terminal.hpp \ - Terminal.cpp TFM.hpp TFM.cpp ToUnicodeMap.hpp ToUnicodeMap.cpp \ - TpicSpecialHandler.hpp TpicSpecialHandler.cpp \ - TriangularPatch.hpp TriangularPatch.cpp TrueTypeFont.hpp \ - TrueTypeFont.cpp TTFAutohint.hpp TTFAutohint.cpp Unicode.hpp \ - Unicode.cpp utility.hpp utility.cpp VectorIterator.hpp \ - VectorStream.hpp VFActions.hpp VFReader.hpp VFReader.cpp \ - windows.hpp XMLDocument.hpp XMLDocument.cpp XMLNode.hpp \ - XMLNode.cpp XMLParser.hpp XMLParser.cpp XMLString.hpp \ - XMLString.cpp XXHashFunction.hpp ZLibOutputStream.hpp \ - $(am__append_8) -libdvisvgm_la_LIBADD = optimizer/liboptimizer.la + SVGTree.hpp SVGTree.cpp \ + System.hpp System.cpp \ + TensorProductPatch.hpp TensorProductPatch.cpp \ + Terminal.hpp Terminal.cpp \ + TFM.hpp TFM.cpp \ + ToUnicodeMap.hpp ToUnicodeMap.cpp \ + TpicSpecialHandler.hpp TpicSpecialHandler.cpp \ + TriangularPatch.hpp TriangularPatch.cpp \ + Unicode.hpp Unicode.cpp \ + utility.hpp utility.cpp \ + VectorIterator.hpp \ + VectorStream.hpp \ + VFActions.hpp \ + VFReader.hpp VFReader.cpp \ + windows.hpp \ + XMLDocument.hpp XMLDocument.cpp \ + XMLNode.hpp XMLNode.cpp \ + XMLParser.hpp XMLParser.cpp \ + XMLString.hpp XMLString.cpp \ + XXHashFunction.hpp \ + ZLibOutputStream.hpp + +libdvisvgm_la_LIBADD = fonts/libbase14fonts.la \ + optimizer/liboptimizer.la $(am__append_9) EXTRA_DIST = options.xml options.dtd iapi.h ierrors.h MiKTeXCom.hpp MiKTeXCom.cpp -AM_CFLAGS = -Wall $(ZLIB_CFLAGS) $(CODE_COVERAGE_CFLAGS) \ - $(am__append_9) +AM_CFLAGS = -Wall \ + $(ZLIB_CFLAGS) \ + $(CODE_COVERAGE_CFLAGS) + AM_CXXFLAGS = -Wall -Wnon-virtual-dtor \ -I$(dvisvgm_srcdir)/libs/clipper \ -I$(dvisvgm_srcdir)/libs/variant/include $(KPSE_CFLAGS) \ $(FREETYPE_CFLAGS) $(ZLIB_CFLAGS) $(CODE_COVERAGE_CFLAGS) \ $(POTRACE_CFLAGS) $(XXHASH_CFLAGS) $(am__append_10) \ - $(am__append_11) $(am__append_12) + $(am__append_12) $(am__append_13) CLEANFILES = *.gcda *.gcno all: all-recursive .SUFFIXES: -.SUFFIXES: .c .cpp .lo .o .obj +.SUFFIXES: .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(srcdir)/../libs/defs.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ @@ -678,9 +676,9 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(srcdir)/../libs/defs.am $(am__co exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu src/Makefile + $(AUTOMAKE) --foreign src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -827,7 +825,9 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MetafontWrapper.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/NoPsSpecialHandler.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Opacity.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PDFHandler.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PDFParser.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PDFToSVG.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PSInterpreter.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PSPattern.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PSPreviewFilter.Plo@am__quote@ # am--include-marker @@ -857,13 +857,11 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Subfont.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/System.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TFM.Plo@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TTFAutohint.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TensorProductPatch.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Terminal.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ToUnicodeMap.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TpicSpecialHandler.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TriangularPatch.Plo@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TrueTypeFont.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Unicode.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/VFReader.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/XMLDocument.Plo@am__quote@ # am--include-marker @@ -871,7 +869,6 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/XMLParser.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/XMLString.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dvisvgm.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ffwrapper.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/psdefs.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/utility.Plo@am__quote@ # am--include-marker @@ -881,30 +878,6 @@ $(am__depfiles_remade): am--depfiles: $(am__depfiles_remade) -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< - .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @@ -1188,7 +1161,9 @@ distclean: distclean-recursive -rm -f ./$(DEPDIR)/MetafontWrapper.Plo -rm -f ./$(DEPDIR)/NoPsSpecialHandler.Plo -rm -f ./$(DEPDIR)/Opacity.Plo + -rm -f ./$(DEPDIR)/PDFHandler.Plo -rm -f ./$(DEPDIR)/PDFParser.Plo + -rm -f ./$(DEPDIR)/PDFToSVG.Plo -rm -f ./$(DEPDIR)/PSInterpreter.Plo -rm -f ./$(DEPDIR)/PSPattern.Plo -rm -f ./$(DEPDIR)/PSPreviewFilter.Plo @@ -1218,13 +1193,11 @@ distclean: distclean-recursive -rm -f ./$(DEPDIR)/Subfont.Plo -rm -f ./$(DEPDIR)/System.Plo -rm -f ./$(DEPDIR)/TFM.Plo - -rm -f ./$(DEPDIR)/TTFAutohint.Plo -rm -f ./$(DEPDIR)/TensorProductPatch.Plo -rm -f ./$(DEPDIR)/Terminal.Plo -rm -f ./$(DEPDIR)/ToUnicodeMap.Plo -rm -f ./$(DEPDIR)/TpicSpecialHandler.Plo -rm -f ./$(DEPDIR)/TriangularPatch.Plo - -rm -f ./$(DEPDIR)/TrueTypeFont.Plo -rm -f ./$(DEPDIR)/Unicode.Plo -rm -f ./$(DEPDIR)/VFReader.Plo -rm -f ./$(DEPDIR)/XMLDocument.Plo @@ -1232,7 +1205,6 @@ distclean: distclean-recursive -rm -f ./$(DEPDIR)/XMLParser.Plo -rm -f ./$(DEPDIR)/XMLString.Plo -rm -f ./$(DEPDIR)/dvisvgm.Po - -rm -f ./$(DEPDIR)/ffwrapper.Plo -rm -f ./$(DEPDIR)/psdefs.Plo -rm -f ./$(DEPDIR)/utility.Plo -rm -f Makefile @@ -1332,7 +1304,9 @@ maintainer-clean: maintainer-clean-recursive -rm -f ./$(DEPDIR)/MetafontWrapper.Plo -rm -f ./$(DEPDIR)/NoPsSpecialHandler.Plo -rm -f ./$(DEPDIR)/Opacity.Plo + -rm -f ./$(DEPDIR)/PDFHandler.Plo -rm -f ./$(DEPDIR)/PDFParser.Plo + -rm -f ./$(DEPDIR)/PDFToSVG.Plo -rm -f ./$(DEPDIR)/PSInterpreter.Plo -rm -f ./$(DEPDIR)/PSPattern.Plo -rm -f ./$(DEPDIR)/PSPreviewFilter.Plo @@ -1362,13 +1336,11 @@ maintainer-clean: maintainer-clean-recursive -rm -f ./$(DEPDIR)/Subfont.Plo -rm -f ./$(DEPDIR)/System.Plo -rm -f ./$(DEPDIR)/TFM.Plo - -rm -f ./$(DEPDIR)/TTFAutohint.Plo -rm -f ./$(DEPDIR)/TensorProductPatch.Plo -rm -f ./$(DEPDIR)/Terminal.Plo -rm -f ./$(DEPDIR)/ToUnicodeMap.Plo -rm -f ./$(DEPDIR)/TpicSpecialHandler.Plo -rm -f ./$(DEPDIR)/TriangularPatch.Plo - -rm -f ./$(DEPDIR)/TrueTypeFont.Plo -rm -f ./$(DEPDIR)/Unicode.Plo -rm -f ./$(DEPDIR)/VFReader.Plo -rm -f ./$(DEPDIR)/XMLDocument.Plo @@ -1376,7 +1348,6 @@ maintainer-clean: maintainer-clean-recursive -rm -f ./$(DEPDIR)/XMLParser.Plo -rm -f ./$(DEPDIR)/XMLString.Plo -rm -f ./$(DEPDIR)/dvisvgm.Po - -rm -f ./$(DEPDIR)/ffwrapper.Plo -rm -f ./$(DEPDIR)/psdefs.Plo -rm -f ./$(DEPDIR)/utility.Plo -rm -f Makefile @@ -1431,8 +1402,6 @@ $(srcdir)/psdefs.cpp: psdefs.ps psdefs.ps: ; -@CODE_COVERAGE_RULES@ - # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: diff --git a/dviware/dvisvgm/src/MapLine.cpp b/dviware/dvisvgm/src/MapLine.cpp index 0c432cab23..3455e1f243 100644 --- a/dviware/dvisvgm/src/MapLine.cpp +++ b/dviware/dvisvgm/src/MapLine.cpp @@ -2,7 +2,7 @@ ** MapLine.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/MapLine.hpp b/dviware/dvisvgm/src/MapLine.hpp index 569472d14c..ddde94f9b0 100644 --- a/dviware/dvisvgm/src/MapLine.hpp +++ b/dviware/dvisvgm/src/MapLine.hpp @@ -2,7 +2,7 @@ ** MapLine.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/Matrix.cpp b/dviware/dvisvgm/src/Matrix.cpp index 7e335cef2c..2be2ebb0ed 100644 --- a/dviware/dvisvgm/src/Matrix.cpp +++ b/dviware/dvisvgm/src/Matrix.cpp @@ -2,7 +2,7 @@ ** Matrix.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -85,6 +85,17 @@ Matrix::Matrix (const std::vector<double> &v, int start) { } +Matrix::Matrix (const string &svgMatrix) { + istringstream iss(svgMatrix); + for (int col=0; col < 3; col++) { + for (int row=0; row < 2; row++) + iss >> _values[row][col]; + _values[2][col] = 0; + } + _values[2][2] = 1; +} + + Matrix::Matrix (const string &cmds, Calculator &calc) { *this = parse(cmds, calc); } @@ -261,9 +272,17 @@ Matrix& Matrix::invert () { Matrix& Matrix::operator *= (double c) { - for (int i=0; i < 3; i++) - for (int j=0; j < 3; j++) - _values[i][j] *= c; + for (auto &row : _values) + for (auto &val : row) + val *= c; + return *this; +} + + +Matrix& Matrix::operator /= (double c) { + for (auto &row : _values) + for (auto &val : row) + val /= c; return *this; } diff --git a/dviware/dvisvgm/src/Matrix.hpp b/dviware/dvisvgm/src/Matrix.hpp index f9b6552dd3..140d0f0e0e 100644 --- a/dviware/dvisvgm/src/Matrix.hpp +++ b/dviware/dvisvgm/src/Matrix.hpp @@ -2,7 +2,7 @@ ** Matrix.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -43,9 +43,10 @@ class Matrix { Matrix () {set(0);} Matrix (double d); Matrix (const std::string &cmds, Calculator &calc); + explicit Matrix (const std::string &svgMatrix); explicit Matrix (const double *v, unsigned size=9); explicit Matrix (const std::vector<double> &v, int start=0); - explicit Matrix (std::initializer_list<double> initlist); + Matrix (std::initializer_list<double> initlist); Matrix& set (double d); Matrix& set (const double *v, unsigned size); Matrix& set (const std::vector<double> &v, int start=0); @@ -66,6 +67,7 @@ class Matrix { Matrix& yskewByRatio (double xyratio); Matrix& flip (bool h, double a); Matrix& operator *= (double c); + Matrix& operator /= (double c); DPair operator * (const DPair &p) const; bool operator == (const Matrix &m) const; bool operator != (const Matrix &m) const; diff --git a/dviware/dvisvgm/src/Message.cpp b/dviware/dvisvgm/src/Message.cpp index dc8a8a7871..8ff4563974 100644 --- a/dviware/dvisvgm/src/Message.cpp +++ b/dviware/dvisvgm/src/Message.cpp @@ -2,7 +2,7 @@ ** Message.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/Message.hpp b/dviware/dvisvgm/src/Message.hpp index e552458d70..a2b8a3e412 100644 --- a/dviware/dvisvgm/src/Message.hpp +++ b/dviware/dvisvgm/src/Message.hpp @@ -2,7 +2,7 @@ ** Message.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/MessageException.hpp b/dviware/dvisvgm/src/MessageException.hpp index 2baa4d98fe..18721badcd 100644 --- a/dviware/dvisvgm/src/MessageException.hpp +++ b/dviware/dvisvgm/src/MessageException.hpp @@ -2,7 +2,7 @@ ** MessageException.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/MetafontWrapper.cpp b/dviware/dvisvgm/src/MetafontWrapper.cpp index 03c3e2b5ef..d20a61fff0 100644 --- a/dviware/dvisvgm/src/MetafontWrapper.cpp +++ b/dviware/dvisvgm/src/MetafontWrapper.cpp @@ -2,7 +2,7 @@ ** MetafontWrapper.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/MetafontWrapper.hpp b/dviware/dvisvgm/src/MetafontWrapper.hpp index cb54bba6a7..e6fd81acdd 100644 --- a/dviware/dvisvgm/src/MetafontWrapper.hpp +++ b/dviware/dvisvgm/src/MetafontWrapper.hpp @@ -2,7 +2,7 @@ ** MetafontWrapper.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/MiKTeXCom.cpp b/dviware/dvisvgm/src/MiKTeXCom.cpp index 6f9d6f6e13..c44b4c688d 100644 --- a/dviware/dvisvgm/src/MiKTeXCom.cpp +++ b/dviware/dvisvgm/src/MiKTeXCom.cpp @@ -2,7 +2,7 @@ ** MiKTeXCom.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/MiKTeXCom.hpp b/dviware/dvisvgm/src/MiKTeXCom.hpp index b4d56b0365..48b7334d2c 100644 --- a/dviware/dvisvgm/src/MiKTeXCom.hpp +++ b/dviware/dvisvgm/src/MiKTeXCom.hpp @@ -2,7 +2,7 @@ ** MiKTeXCom.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/NoPsSpecialHandler.cpp b/dviware/dvisvgm/src/NoPsSpecialHandler.cpp index 769dcabb91..2c17e30690 100644 --- a/dviware/dvisvgm/src/NoPsSpecialHandler.cpp +++ b/dviware/dvisvgm/src/NoPsSpecialHandler.cpp @@ -2,7 +2,7 @@ ** NoPsSpecialHandler.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/NoPsSpecialHandler.hpp b/dviware/dvisvgm/src/NoPsSpecialHandler.hpp index 099320fb9f..f7132d2c75 100644 --- a/dviware/dvisvgm/src/NoPsSpecialHandler.hpp +++ b/dviware/dvisvgm/src/NoPsSpecialHandler.hpp @@ -2,7 +2,7 @@ ** NoPsSpecialHandler.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/NumericRanges.hpp b/dviware/dvisvgm/src/NumericRanges.hpp index 6c0015609d..8e83766411 100644 --- a/dviware/dvisvgm/src/NumericRanges.hpp +++ b/dviware/dvisvgm/src/NumericRanges.hpp @@ -2,7 +2,7 @@ ** NumericRanges.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/Opacity.cpp b/dviware/dvisvgm/src/Opacity.cpp index 058f794a86..027992028b 100644 --- a/dviware/dvisvgm/src/Opacity.cpp +++ b/dviware/dvisvgm/src/Opacity.cpp @@ -2,7 +2,7 @@ ** Opacity.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -45,6 +45,50 @@ string Opacity::cssBlendMode (BlendMode bm) { } +static string to_lower_drop_nonalpha (const string &str) { + string ret; + if (!str.empty()) { + ret.reserve(str.length()); + for (char c : str) { + if (isalpha(c)) + ret += char(tolower(c)); + } + } + return ret; +} + + +Opacity::BlendMode Opacity::blendMode (const std::string &name) { + struct { + const char *name; + BlendMode mode; + } modes[] = { + {"normal", BM_NORMAL }, + {"multiply", BM_MULTIPLY }, + {"screen", BM_SCREEN }, + {"overlay", BM_OVERLAY }, + {"softlight", BM_SOFTLIGHT }, + {"hardlight", BM_HARDLIGHT }, + {"colordodge", BM_COLORDODGE}, + {"colorburn", BM_COLORBURN }, + {"darken", BM_DARKEN }, + {"lighten", BM_LIGHTEN }, + {"difference", BM_DIFFERENCE}, + {"exclusion", BM_EXCLUSION }, + {"hue", BM_HUE }, + {"saturation", BM_SATURATION}, + {"color", BM_COLOR }, + {"luminosity", BM_LUMINOSITY} + }; + string compname = to_lower_drop_nonalpha(name); + for (const auto &m : modes) { + if (compname == m.name) + return m.mode; + } + return BM_NORMAL; +} + + bool Opacity::operator == (const Opacity &opacity) const { return opacity._fillalpha == _fillalpha && opacity._strokealpha == _strokealpha @@ -56,4 +100,4 @@ bool Opacity::operator != (const Opacity &opacity) const { return opacity._fillalpha != _fillalpha || opacity._strokealpha != _strokealpha || opacity._blendMode != _blendMode; -}
\ No newline at end of file +} diff --git a/dviware/dvisvgm/src/Opacity.hpp b/dviware/dvisvgm/src/Opacity.hpp index 84880e7b66..867e69993a 100644 --- a/dviware/dvisvgm/src/Opacity.hpp +++ b/dviware/dvisvgm/src/Opacity.hpp @@ -2,7 +2,7 @@ ** Opacity.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -27,6 +27,7 @@ class OpacityAlpha { public: OpacityAlpha () =default; OpacityAlpha (double constalpha, double shapealpha) : _constalpha(constalpha), _shapealpha(shapealpha) {} + explicit OpacityAlpha (double alpha) : _constalpha(alpha) {} void setConstAlpha (double alpha) { _constalpha = alpha;} void setShapeAlpha (double shapealpha) {_shapealpha = shapealpha;} double value () const {return _constalpha * _shapealpha;} @@ -66,6 +67,8 @@ class Opacity { bool operator == (const Opacity &opacity) const; bool operator != (const Opacity &opacity) const; + static BlendMode blendMode (const std::string &name); + private: OpacityAlpha _fillalpha; OpacityAlpha _strokealpha; diff --git a/dviware/dvisvgm/src/PDFHandler.cpp b/dviware/dvisvgm/src/PDFHandler.cpp new file mode 100644 index 0000000000..9703124e2c --- /dev/null +++ b/dviware/dvisvgm/src/PDFHandler.cpp @@ -0,0 +1,858 @@ +/************************************************************************* +** PDFHandler.cpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#include <fstream> +#include <iterator> +#include <limits> +#include <sstream> +#include "FilePath.hpp" +#include "FileSystem.hpp" +#include "FontEngine.hpp" +#include "FontManager.hpp" +#include "GraphicsPath.hpp" +#include "Color.hpp" +#include "Matrix.hpp" +#include "Opacity.hpp" +#include "PDFHandler.hpp" +#include "Process.hpp" +#include "SVGElement.hpp" +#include "SVGTree.hpp" +#include "Unicode.hpp" +#include "XMLParser.hpp" +#include "XXHashFunction.hpp" + +using namespace std; + +template <typename T> +static T parse_value (const string &str) { + T value{}; + istringstream iss(str); + iss >> value; + return value; +} + +template<> +string parse_value (const string &str) { + return str; +} + +template<> +vector<double> parse_value (const string &str) { + vector<double> vec; + istringstream iss(str); + while (iss) { + double val; + if (iss >> val) + vec.push_back(val); + } + return vec; +} + + +istream& operator >> (istream &is, PDFHandler::ObjID &objId) { + is >> objId.num; + is >> objId.gen; + is >> ws; + if (is.peek() == 'R') + is.get(); + return is; +} + + +template <typename T> +static vector<T> parse_pdf_array (const string &str) { + vector<T> vec; + istringstream iss(str); + if (iss.get() == '[') { + while (iss) { + T val; + if (iss >> val) + vec.push_back(val); + } + } + return vec; +} + +template <typename T> +static map<string, T> parse_pdf_dict (const string &str) { + map<string, T> dict; + istringstream iss(str); + if (iss.get() == '<' && iss.get() == '<') { + string name; + T val; + while (iss) { + iss >> ws >> name >> val; + if (iss) + dict.emplace(name, val); + } + } + return dict; +} + + +template <typename T> +static T parse_attr_value (const XMLElement *elem, const string &attr) { + T ret{}; + if (const char *value = elem->getAttributeValue(attr)) + ret = parse_value<T>(value); + return ret; +} + +template<> +Matrix parse_attr_value (const XMLElement *elem, const string &attr) { + Matrix matrix(1); + if (const char *val = elem->getAttributeValue(attr)) + matrix = Matrix(val); + return matrix; +} + +/////////////////////////////////////////////////////////////////////////////// + + +PDFHandler::~PDFHandler () { + finishFile(); +} + + +string PDFHandler::mutoolVersion () { + static string version; + if (version.empty()) + version = mutool("-v", SearchPattern("([0-9.]+)", "$1"), true); + return version; +} + + +/** Returns the bounding box of a selected PDF page. */ +BoundingBox PDFHandler::bbox (string &fname, int pageno) { + BoundingBox bbox; + string arraystr = mtShow(fname, "pages/" + to_string(pageno) + "/MediaBox"); + if (arraystr.substr(0, 4) == "null") + arraystr = mtShow(fname, "pages/" + to_string(pageno) + "/Parent/MediaBox"); + auto vec = parse_pdf_array<double>(arraystr); + if (vec.size() == 4) + bbox = BoundingBox(vec[0], vec[1], vec[2], vec[3]); + return bbox; +} + + +/** Converts a single page of a PDF file to SVG. If no context element is given, + * the SVG page contents are added to a page group element of the SVG tree. + * Otherwise, they are added to the context element which is not inserted into + * the SVG tree but returned for further processing. + * @param[in] fname PDF filename + * @param[in] pageno number of page to convert + * @param[in] context element the generated page contents are appended to + * @return the context element holding the page contents */ +unique_ptr<SVGElement> PDFHandler::convert (const string &fname, int pageno, unique_ptr<SVGElement> context) { + if (_fname != fname) + initFile(fname); + if (!_svg || pageno < 1 || pageno > _numPages) + return context; + initPage(pageno, std::move(context)); + + // create trace XML and convert it to SVG + XMLParser xmlParser; + auto openfunc = std::bind(&PDFHandler::elementOpened, this, std::placeholders::_1); + auto closefunc = std::bind(&PDFHandler::elementClosed, this, std::placeholders::_1); + xmlParser.setNotifyFuncs(openfunc, closefunc); + xmlParser.setRootElement(nullptr); + string xmlfname = FileSystem::tmpdir()+FilePath(fname, true).filename()+"-"+ to_string(_pageno)+".xml"; + mutool("draw -Ftrace -o"+xmlfname+" "+_fname+" "+to_string(_pageno)); + ifstream ifs(xmlfname); + xmlParser.parse(ifs); + ifs.close(); + // remove trace XML + if (!PhysicalFont::KEEP_TEMP_FILES) + FileSystem::remove(xmlfname); + return finishPage(); +} + + +void PDFHandler::initFile (const string &fname) { + finishFile(); + _fname = FilePath(fname, true).absolute(); + _numPages = parse_value<int>(mtShow("trailer/Root/Pages/Count")); + // extract image and font files from the PDF + string cwd = FileSystem::getcwd(); + string tmpdir = FileSystem::tmpdir(); + FileSystem::chdir(tmpdir); + string out = mtExtract(_fname, SearchPattern(R"(extracting\s+([a-z]+-\d+\.\S+))", "$1\n")); + FileSystem::chdir(cwd); + for (const string &extrfname : util::split(out, "\n")) { + auto dashpos = extrfname.rfind('-'); + if (dashpos != string::npos) { + int objnum; + istringstream iss(extrfname.substr(dashpos+1)); + iss >> objnum; + _extractedFiles.emplace(objnum, extrfname); + } + } +} + + +void PDFHandler::finishFile () { + if (!PhysicalFont::KEEP_TEMP_FILES) { + // remove extracted image and font files + for (auto &entry : _extractedFiles) + FileSystem::remove(FileSystem::tmpdir() + entry.second); + } + _fname.clear(); + _numPages = 0; +} + + +void PDFHandler::initPage (int pageno, unique_ptr<SVGElement> context) { + _pageno = pageno; + _bbox = bbox(_fname, pageno); + if (context) { + _context = context.get(); + _svg->pushPageContext(std::move(context)); + } + else { + _svg->newPage(_pageno); + _svg->setBBox(_bbox); + } + // collect sequence of images referenced on current page + collectObjects(); + _imgSeq.clear(); + SearchPattern pattern{R"((/[a-zA-Z0-9]+)\s+Do)", "$1\n"}; + string content = mtShow("pages/" + to_string(_pageno) + "/Contents", pattern); + if (content.empty()) + content = mtShow("pages/" + to_string(_pageno) + "/Contents/*", pattern); + for (const string &entry : util::split(content, "\n")) { + if (!entry.empty()) + _imgSeq.push_back(entry); + } +} + + +unique_ptr<SVGElement> PDFHandler::finishPage () { + if (!_context) { + // add glyph outlines of used characters + for (auto &fontchars: FontManager::instance().getUsedChars()) { + if (auto font = font_cast<const PhysicalFont *>(fontchars.first)) + _svg->append(*font, fontchars.second); + } + _svg->appendFontStyles(FontManager::instance().getUsedFonts()); + } + // pop clipping paths still active + while (!_clipPathStack.empty()) { + _svg->popPageContext(); + if (_clipPathStack.top().groupElement->empty()) + XMLElement::detach(_clipPathStack.top().groupElement); + _clipPathStack.pop(); + } + _pageno = 0; + _x = _y = 0; + _currentFont = nullptr; + _objDict.clear(); + auto context = util::static_unique_ptr_cast<SVGElement>(XMLElement::detach(_context)); + if (context) + _svg->popPageContext(); + _context = nullptr; + return context; +} + + +/** Called by the XMLParser after an opening tag of an element has been processed. + * @param[in] trcElement opened element of trace XML */ +void PDFHandler::elementOpened (XMLElement *trcElement) { + const string &name = trcElement->name(); + if (name == "tile") + doOpenTile(trcElement); // start defining a tiling pattern +} + + +/** Called by the XMLParser after a closing tag of an element has been processed. + * @param[in] trcElement closed element of trace XML */ +void PDFHandler::elementClosed (XMLElement *trcElement) { + const string &name = trcElement->name(); + struct Handler { + const char *name; + void (PDFHandler::*func)(XMLElement*); + } handlers[9] = { + {"stroke_path", &PDFHandler::doStrokePath}, + {"fill_path", &PDFHandler::doFillPath}, + {"fill_image", &PDFHandler::doFillImage}, + {"fill_text", &PDFHandler::doFillText}, + {"clip_path", &PDFHandler::doClipPath}, + {"clip_stroke_path", &PDFHandler::doClipStrokePath}, + {"clip_text", &PDFHandler::doClipText}, + {"pop_clip", &PDFHandler::doPopClip}, + {"tile", &PDFHandler::doCloseTile}, + }; + auto it = find_if(begin(handlers), end(handlers), [&name](const Handler &handler) { + return handler.name == name; + }); + if (it != end(handlers)) + (this->*it->func)(trcElement); + else + return; + XMLElement::detach(trcElement); // remove element from XML tree, it's no longer needed +} + + +/** Returns a color object from color data given in the trace XML. + * @param[in] colorspace currently supported: DeviceGray, DeviceRGB, DeviceCMYK + * @param[in] value color components depending on color space */ +static Color to_color (const string &colorspace, const string &value) { + Color color; + if (colorspace == "DeviceGray") + color.setGray(parse_value<double>(value)); + else if (colorspace == "DeviceRGB") { + auto comp = util::split(value, " "); + if (comp.size() == 3) + color.setRGB(parse_value<double>(comp[0]), parse_value<double>(comp[1]), parse_value<double>(comp[2])); + } + else if (colorspace == "DeviceCMYK") { + auto comp = util::split(value, " "); + if (comp.size() == 4) + color.setCMYK(parse_value<double>(comp[0]), parse_value<double>(comp[1]), parse_value<double>(comp[2]), parse_value<double>(comp[3])); + } + return color; +} + + +static double matrix_extent (const Matrix &m) { + // signed area of the parallelogram spanned by the scale/rotation components of the matrix + // v1 x v2 = det(v1,v2) = sin(v1,v2) * |v1| * |v2| + double area = m.get(0,0)*m.get(1,1) - m.get(0,1)*m.get(1,0); + return sqrt(abs(area)); +} + + +static double matrix_max_extent (const Matrix &matrix) { + double max1 = max(abs(matrix.get(0,0)), abs(matrix.get(0,1))); + double max2 = max(abs(matrix.get(1,0)), abs(matrix.get(1,1))); + return max(max1, max2); +} + + +/** Creates a GraphicsPath object from a sequence of command elements + * (moveto, lineto, curveto, closepath) read from the trace XML file. + * @param[in] srcPathElement parent of the command elements */ +static GraphicsPath<double> create_path (XMLElement *srcPathElement) { + GraphicsPath<double> path; + for (const XMLNode *child : *srcPathElement) { + if (const XMLElement *cmd = child->toElement()) { + string name = cmd->name(); + if (name == "moveto") + path.moveto(parse_attr_value<double>(cmd, "x"), parse_attr_value<double>(cmd, "y")); + else if (name == "lineto") + path.lineto(parse_attr_value<double>(cmd, "x"), parse_attr_value<double>(cmd, "y")); + else if (name == "curveto") + path.cubicto( + parse_attr_value<double>(cmd, "x1"), parse_attr_value<double>(cmd, "y1"), + parse_attr_value<double>(cmd, "x2"), parse_attr_value<double>(cmd, "y2"), + parse_attr_value<double>(cmd, "x3"), parse_attr_value<double>(cmd, "y3")); + else if (name == "closepath") + path.closepath(); + } + } + if (!path.empty()) + path.removeRedundantCommands(); + return path; +} + + +/** Creates a new SVG path element from XML drawing commands. + * @param[in] srcPathElement element holding the drawing commands + * @param[in] stroke create a stroke path if true, a fill path otherwise + * @param[out] bbox if not 0, gets the bounding box of the resulting path */ +static unique_ptr<SVGElement> create_path_element (XMLElement *srcPathElement, bool stroke, BoundingBox *bbox=nullptr) { + unique_ptr<SVGElement> pathElement; + auto path = create_path(srcPathElement); + if (!path.empty()) { + auto matrix = parse_attr_value<Matrix>(srcPathElement, "transform"); + path.transform(matrix); + if (bbox) + *bbox = path.computeBBox(); + pathElement = util::make_unique<SVGElement>("path"); + ostringstream oss; + path.writeSVG(oss, SVGTree::RELATIVE_PATH_CMDS); + pathElement->addAttribute("d", oss.str()); + string colorspace = parse_attr_value<string>(srcPathElement, "colorspace"); + string color = parse_attr_value<string>(srcPathElement, "color"); + if (!stroke) { // create path for filling? + if (parse_attr_value<string>(srcPathElement, "winding") == "evenodd") + pathElement->setFillRule(SVGElement::FR_EVENODD); + if (!colorspace.empty()) + pathElement->setFillColor(to_color(colorspace, color)); + } + else { // create path for stroking + if (!colorspace.empty()) + pathElement->setStrokeColor(to_color(colorspace, color)); + pathElement->setNoFillColor(); + double linewidth=1; + if (const char *valstr = srcPathElement->getAttributeValue("linewidth")) { + double lwScale = matrix_extent(matrix); + linewidth = parse_value<double>(valstr); + pathElement->setStrokeWidth(linewidth * lwScale); + } + double miterlimit=0; + SVGElement::LineJoin linejoin=SVGElement::LJ_MITER; + if (const char *valstr = srcPathElement->getAttributeValue("miterlimit")) + pathElement->setStrokeMiterLimit(miterlimit = parse_value<double>(valstr)); + if (const char *valstr = srcPathElement->getAttributeValue("linejoin")) { + linejoin = SVGElement::LJ_MITER; + switch (parse_value<int>(valstr)) { + case 1: linejoin = SVGElement::LJ_ROUND; break; + case 2: linejoin = SVGElement::LJ_BEVEL; break; + } + pathElement->setStrokeLineJoin(linejoin); + } + if (const char *valstr = srcPathElement->getAttributeValue("linecap")) { + SVGElement::LineCap captype = SVGElement::LC_BUTT; + switch (parse_value<int>(valstr)) { + case 1: captype = SVGElement::LC_ROUND; break; + case 2: captype = SVGElement::LC_SQUARE; break; + } + pathElement->setStrokeLineCap(captype); + } + if (const char *valstr = srcPathElement->getAttributeValue("dash")) { + auto offset = parse_attr_value<double>(srcPathElement, "dash_phase"); + pathElement->setStrokeDash(valstr, offset); + } + if (bbox) { + double extent = (linewidth != 0 ? linewidth : 1.0) * matrix_max_extent(matrix); + if (linejoin == SVGElement::LJ_MITER && miterlimit > 1) + extent *= miterlimit; + bbox->expand(extent); + } + } + } + return pathElement; +} + + +void PDFHandler::doFillPath (XMLElement *trcFillPathElement) { + if (auto pathElement = create_path_element(trcFillPathElement, false)) { + if (XMLElement *parent = trcFillPathElement->parent()->toElement()) { + if (parent->name() == "group") { + if (const char *valstr = parent->getAttributeValue("blendmode")) + pathElement->setFillOpacity(Opacity::blendMode(valstr)); + if (const char *valstr = parent->getAttributeValue("alpha")) + pathElement->setFillOpacity(OpacityAlpha(parse_value<double>(valstr))); + } + } + _svg->appendToPage(std::move(pathElement)); + } +} + + +void PDFHandler::doStrokePath (XMLElement *trcStrokePathElement) { + if (auto pathElement = create_path_element(trcStrokePathElement, true)) { + if (XMLElement *parent = trcStrokePathElement->parent()->toElement()) { + if (parent->name() == "group") { + Opacity opacity; + if (const char *valstr = parent->getAttributeValue("blendmode")) + opacity.setBlendMode(Opacity::blendMode(valstr)); + if (const char *valstr = parent->getAttributeValue("alpha")) + opacity.strokealpha().setConstAlpha(parse_value<double>(valstr)); + pathElement->setStrokeOpacity(opacity); + } + } + _svg->appendToPage(std::move(pathElement)); + } +} + + +void PDFHandler::doClipPath (XMLElement *trcClipPathElement) { + if (auto pathElement = create_path_element(trcClipPathElement, false)) { + string id = "cp"+to_string(_numClipPath++); + auto clipPathElement = util::make_unique<SVGElement>("clipPath"); + clipPathElement->addAttribute("id", id); + auto groupElement = util::make_unique<SVGElement>("g"); + _clipPathStack.emplace(ClipPathData{std::move(id), groupElement.get()}); + groupElement->setClipPathUrl(_clipPathStack.top().id); + clipPathElement->append(std::move(pathElement)); + _svg->appendToDefs(std::move(clipPathElement)); + _svg->pushPageContext(std::move(groupElement)); + } +} + + +void PDFHandler::doClipStrokePath (XMLElement *trcClipStrokePathElement) { + BoundingBox pathbox; + if (auto pathElement = create_path_element(trcClipStrokePathElement, true, &pathbox)) { + pathElement->setStrokeColor(Color::WHITE); + string id = "cm"+to_string(_numClipPath++); + auto maskElement = util::make_unique<SVGElement>("mask"); + maskElement->addAttribute("id", id); + maskElement->addAttribute("x", pathbox.minX()); + maskElement->addAttribute("y", pathbox.minY()); + maskElement->addAttribute("width", pathbox.width()); + maskElement->addAttribute("height", pathbox.height()); + maskElement->addAttribute("maskUnits", "userSpaceOnUse"); + maskElement->append(std::move(pathElement)); + auto groupElement = util::make_unique<SVGElement>("g"); + groupElement->setMaskUrl(id); + _clipPathStack.emplace(ClipPathData{std::move(id), groupElement.get()}); + _svg->appendToDefs(std::move(maskElement)); + _svg->pushPageContext(std::move(groupElement)); + } +} + + +void PDFHandler::doClipText (XMLElement *trcClipTextElement) { + string id = "cp"+to_string(_numClipPath++); + auto clipPathElement = util::make_unique<SVGElement>("clipPath"); + clipPathElement->addAttribute("id", id); + auto groupElement = util::make_unique<SVGElement>("g"); + _clipPathStack.emplace(ClipPathData{std::move(id), groupElement.get()}); + groupElement->setClipPathUrl(_clipPathStack.top().id); + SVGElement *cpElementPtr = clipPathElement.get(); + _svg->pushPageContext(std::move(clipPathElement)); + doFillText(trcClipTextElement); + _svg->popPageContext(); + _svg->appendToDefs(XMLElement::detach(cpElementPtr)); // move clipPath element from page to defs section + _svg->pushPageContext(std::move(groupElement)); +} + + +void PDFHandler::doPopClip (XMLElement*) { + if (!_clipPathStack.empty()) { + _svg->popPageContext(); + if (_clipPathStack.top().groupElement->empty()) + XMLElement::detach(_clipPathStack.top().groupElement); + _clipPathStack.pop(); + } +} + + +static unique_ptr<SVGElement> create_use_element (double x, double y, const string &refID) { + auto useElement = util::make_unique<SVGElement>("use"); + useElement->addAttribute("x", x); + useElement->addAttribute("y", y); + useElement->addAttribute("xlink:href", "#"+refID); + return useElement; +} + + +void PDFHandler::doFillImage (XMLElement *trcFillImageElement) { + if (_numImages < _imgSeq.size()) { + auto it = _objDict.find(_imgSeq[_numImages]); + if (it != _objDict.end()) { + string imgID = "img"+to_string(it->second.num)+"-"+XXH32HashFunction(_fname).digestString(); + auto w = parse_attr_value<double>(trcFillImageElement, "width"); + auto h = parse_attr_value<double>(trcFillImageElement, "height"); + auto alpha = parse_attr_value<double>(trcFillImageElement, "alpha"); + if (w == 0 || h == 0 || alpha == 0) + return; + // add base64 encoding of the image to the defs section if it hasn't been referenced yet + auto last = _imgSeq.begin()+int(_numImages); + if (find(_imgSeq.begin(), last, it->first) == last) { + string fname = it->second.fname; + auto symbolElement = util::make_unique<SVGElement>("symbol"); + symbolElement->addAttribute("id", imgID); + symbolElement->addAttribute("viewBox", BoundingBox(0, 0, w, h).svgViewBoxString()); + auto imgElement = util::make_unique<SVGElement>("image"); + imgElement->addAttribute("width", parse_attr_value<double>(trcFillImageElement, "width")); + imgElement->addAttribute("height", parse_attr_value<double>(trcFillImageElement, "height")); + imgElement->addAttribute("@@xlink:href", "data:"+util::mimetype(fname)+";base64,"+fname); + symbolElement->append(std::move(imgElement)); + _svg->appendToDefs(std::move(symbolElement)); + } + // add reference to image + auto useElement = create_use_element(0, 0, imgID); + useElement->setOpacity(OpacityAlpha(alpha)); + Matrix matrix = parse_attr_value<Matrix>(trcFillImageElement, "transform"); + matrix.rmultiply(ScalingMatrix(1/w, 1/h)); + useElement->setTransform(matrix); + if (!_clipPathStack.empty()) + useElement->setClipPathUrl(_clipPathStack.top().id); + _svg->appendToPage(std::move(useElement)); + } + _numImages++; + } +} + + +static string to_utf8 (const string &str) { + if (str.empty()) + return ""; + if (str.front() != '&' || str.back() != ';') + return str; + string ent = str.substr(1, str.length()-2); + if (ent == "amp") return Unicode::utf8('&'); + if (ent == "apos") return Unicode::utf8('\''); + if (ent == "gt") return Unicode::utf8('>'); + if (ent == "lt") return Unicode::utf8('<'); + if (ent == "quot") return Unicode::utf8('"'); + if (ent[0] == '#') { + try { + int32_t cp; + cp = (ent[1] == 'x' ? stoi(ent.substr(2), nullptr, 16) : stoi(ent.substr(1))); + return Unicode::utf8(cp); + } + catch (exception&) {} + } + return ""; +} + + +static string strip_subset_prefix (const std::string &fontname) { + auto pos = fontname.find('+'); + if (pos != string::npos) + return fontname.substr(pos+1); + return fontname; +} + + +static string compose_utf8_char (const XMLElement *charElement, int glyph) { + string utf8 = to_utf8(parse_attr_value<string>(charElement, "unicode")); + string nonlig; + for (XMLElement *elem=charElement->nextElement(); elem && !elem->hasAttribute("glyph"); elem=elem->nextElement()) + nonlig += to_utf8(parse_attr_value<string>(elem, "unicode")); + if (!nonlig.empty()) { + if (uint32_t lig_cp = Unicode::toLigature(utf8+nonlig)) // known Unicode ligature? + utf8 = Unicode::utf8(lig_cp); + else if (glyph <= 0x1900) // unknown ligature fitting in Private Use Zone? + utf8 = Unicode::utf8(0xE000+glyph); + // TODO: handle unknown ligatures with glyph indices > 0x1900 + } + return utf8; +} + + +void PDFHandler::doFillText (XMLElement *trcFillTextElement) { + for (const XMLNode *textchild : *trcFillTextElement) { + if (const XMLElement *spanElement = textchild->toElement()) { + auto trm = parse_attr_value<vector<double>>(spanElement, "trm"); + if (trm.size() < 4 || trm[0] == 0) + continue; + auto fontname = strip_subset_prefix(parse_attr_value<string>(spanElement, "font")); + string filename; + auto it = _objDict.find(fontname); + if (it != _objDict.end()) + filename = it->second.fname; + if (filename.empty()) + filename = "sys://"+fontname; + double ptsize = abs(trm[0]); + int fontID = FontManager::instance().registerFont(filename, ptsize); + if (fontID >= 0) { + auto font = font_cast<NativeFont*>(FontManager::instance().getFontById(fontID)); + if (font != _currentFont) { + _svg->setFont(FontManager::instance().fontID(font), *font); + _currentFont = font; + _svg->setX(0); + _svg->setY(0); + _x = _y = numeric_limits<double>::max(); + } + Matrix fontMatrix({trm[0]/ptsize, -trm[2]/ptsize, 0, trm[1]/ptsize, -trm[3]/ptsize}); + fontMatrix.invert(); + Matrix matrix = parse_attr_value<Matrix>(trcFillTextElement, "transform"); + matrix.rmultiply(fontMatrix); + _svg->setMatrix(matrix); + string colorspace = parse_attr_value<string>(trcFillTextElement, "colorspace"); + string colorval = parse_attr_value<string>(trcFillTextElement, "color"); + _svg->setColor(to_color(colorspace, colorval)); + for (const XMLNode *spanchild : *spanElement) { + const XMLElement *charElement = spanchild->toElement(); + if (!charElement || charElement->name() != "g" || !charElement->hasAttribute("glyph")) + continue; + int glyph; + if (font->isCIDFont()) + glyph = parse_attr_value<int>(charElement, "glyph"); + else { + glyph = font->charIndexByName(parse_attr_value<string>(charElement, "glyph")); + if (glyph == 0) + glyph = parse_attr_value<int>(charElement, "glyph"); + } + // determine code point of current character + string utf8; + if (charElement->hasAttribute("unicode")) + utf8 = parse_attr_value<string>(charElement, "unicode"); + if (utf8.empty()) + utf8 = compose_utf8_char(charElement, glyph); + if (glyph == 0 || utf8.empty()) + continue; + DPair p(parse_attr_value<double>(charElement, "x"), parse_attr_value<double>(charElement, "y")); + p = fontMatrix * p; + if (abs(_x-p.x()) > 0.2) {_x = p.x(); _svg->setX(_x);} + if (abs(_y-p.y()) > 0.2) {_y = p.y(); _svg->setY(_y);} + font->mapCharToUnicode(glyph, Unicode::utf8ToCodepoint(utf8)); + if (font->verticalLayout()) + _y += font->charHeight(glyph); + else + _x += font->charWidth(glyph); + _svg->appendChar(glyph, p.x(), p.y()); + FontManager::instance().addUsedChar(*font, glyph); + } + } + } + } +} + + +void PDFHandler::doOpenTile (XMLElement *trcTileElement) { + auto patternSymbol = util::make_unique<SVGElement>("symbol"); + patternSymbol->addAttribute("id", "tile"+ to_string(_numPatterns)); + patternSymbol->addAttribute("style", "overflow:visible"); + _svg->pushPageContext(std::move(patternSymbol)); +} + + +static unique_ptr<SVGElement> rect_path_elem (const vector<double> &coords) { + GraphicsPath<double> path; + path.moveto(coords[0], coords[1]); + path.lineto(coords[2], coords[1]); + path.lineto(coords[2], coords[3]); + path.lineto(coords[0], coords[3]); + path.closepath(); + ostringstream oss; + path.writeSVG(oss, SVGTree::RELATIVE_PATH_CMDS); + auto pathElement = util::make_unique<SVGElement>("path"); + pathElement->addAttribute("d", oss.str()); + return pathElement; +} + + +void PDFHandler::doCloseTile (XMLElement *trcTileElement) { + _svg->popPageContext(); // definition of symbol finished + auto xstep = parse_attr_value<double>(trcTileElement, "xstep"); + auto ystep = parse_attr_value<double>(trcTileElement, "ystep"); + if (xstep == 0 || ystep == 0) + return; + auto view = parse_attr_value<vector<double>>(trcTileElement, "view"); + auto patternElement = util::make_unique<SVGElement>("pattern"); + patternElement->addAttribute("id", "pat"+ to_string(_numPatterns)); + patternElement->addAttribute("x", 0); + patternElement->addAttribute("y", 0); + patternElement->addAttribute("width", xstep); + patternElement->addAttribute("height", ystep); + patternElement->addAttribute("patternUnits", "userSpaceOnUse"); + + SVGElement *contextElement = patternElement.get(); + view.resize(4); + if (view[0] > 0 || view[2] > xstep || view[1] > 0 || view[3] > ystep) { + auto clipPathElement = util::make_unique<SVGElement>("clipPath"); + clipPathElement->addAttribute("id", "patcp"+to_string(_numPatterns)); + auto pathElement = rect_path_elem(view); + clipPathElement->append(std::move(pathElement)); + patternElement->append(std::move(clipPathElement)); + + auto clipGroupElement = util::make_unique<SVGElement>("g"); + clipGroupElement->setClipPathUrl("patcp"+to_string(_numPatterns)); + contextElement = clipGroupElement.get(); + patternElement->append(std::move(clipGroupElement)); + } + Matrix matrix = parse_attr_value<Matrix>(trcTileElement, "transform"); + auto transformGroupElement = util::make_unique<SVGElement>("g"); + transformGroupElement->setTransform(matrix); + // Most SVG renderers don't support overflow:visible on patterns. Thus, parts of + // the pattern graphics that lie outside the tile area are clipped. To work around + // this, we place the pattern graphics at all 4 corners of the tile rectangle. This + // way, the outside parts of all quadrants are drawn inside as well so that adjacent + // tiles are enabled to compose the pattern. If the pattern graphics falls completely + // inside the tile area, the additional drawings are empty and thus redundant. For now, + // we keep them anyway. + Matrix invmatrix{matrix.get(0,0), matrix.get(0,1), 0, matrix.get(1,0), matrix.get(1,1)}; + invmatrix.invert(); + for (int i=0; i < 2; i++) { + for (int j=0; j < 2; j++) { + DPair p = invmatrix * DPair(xstep*i, ystep*j); + transformGroupElement->append(create_use_element(p.x(), p.y(), "tile"+to_string(_numPatterns))); + } + } + contextElement->append(std::move(transformGroupElement)); + _svg->appendToPage(std::move(patternElement)); + auto area = parse_attr_value<vector<double>>(trcTileElement, "area"); + area.resize(4); + auto pathElement = rect_path_elem(area); + pathElement->setFillPatternUrl("pat"+to_string(_numPatterns)); + pathElement->setTransform(matrix); + _svg->appendToPage(std::move(pathElement)); + _numPatterns++; +} + + +void PDFHandler::collectObjects () { + string tmpdir = FileSystem::tmpdir(); + _objDict = parse_pdf_dict<ObjID>(mtShow("pages/" + to_string(_pageno) + "/Resources/XObject")); + // replace referenced font IDs by actual IDs used for extracted fonts + for (auto &entry : _objDict) { + string objtype = mtShow(to_string(entry.second.num)+"/Type", SearchPattern(R"(/(\w+))", "$1")); + // store filenames of non-font object in object map + auto fnameIt = _extractedFiles.find(entry.second.num); + entry.second.fname = fnameIt != _extractedFiles.end() ? tmpdir+fnameIt->second : ""; + } + for (auto &entry : _extractedFiles) { + if (entry.second.substr(0, 5) == "font-") { + string filepath = tmpdir+entry.second; // path to font file + string fontname = strip_subset_prefix(FontEngine::instance().getPSName(filepath)); + _objDict.emplace(fontname, ObjID(entry.first, 0, filepath)); + } + } +} + +/////////////////////////////////////////////////////////////////////////////// + +string PDFHandler::mutool (const string &cmd, bool readFromStderr) { + string out; + Process("mutool", cmd).run(&out, readFromStderr ? Process::PF_STDERR : Process::PF_STDOUT); + return out; +} + + +string PDFHandler::mutool (const string &cmd, const SearchPattern &pattern, bool readFromStderr) { + string out; + Process("mutool", cmd).run(&out, pattern, readFromStderr ? Process::PF_STDERR : Process::PF_STDOUT); + return out; +} + + +string PDFHandler::mtExtract (const string &fname, const SearchPattern &pattern) { + return mutool("extract -a "+fname, pattern); +} + + +/** Calls "mutool show" to retrieve select data from a PDF file. + * @param[in] fname name of PDF file + * @param[in] path path expression locating the requested data + * @param[in] fmtmode flag specifying the output format + * @return mutool output, result of the query */ +string PDFHandler::mtShow (const string &fname, const string &path, char fmtmode) { + string cmd = "show -"; + cmd += fmtmode; + cmd += " " + fname + " " + path; + return mutool(cmd); +} + + +string PDFHandler::mtShow (const string &fname, const string &path, const SearchPattern &pattern, char fmtmode) { + string cmd = "show -"; + cmd += fmtmode; + cmd += " " + fname + " " + path; + return mutool(cmd, pattern); +} + +#if 0 +int main (int argc, char *argv[]) { + if (argc < 2) + return 0; + SVGTree::USE_FONTS=true; + SVGTree::FONT_FORMAT = FontWriter::FontFormat::SVG; + SVGTree svg; + PDFHandler page(svg); + page.convert(argv[1], argc > 2 ? stoi(argv[2]) : 1); + svg.write(cout); +} +#endif diff --git a/dviware/dvisvgm/src/PDFHandler.hpp b/dviware/dvisvgm/src/PDFHandler.hpp new file mode 100644 index 0000000000..fd34ce0568 --- /dev/null +++ b/dviware/dvisvgm/src/PDFHandler.hpp @@ -0,0 +1,109 @@ +/************************************************************************* +** PDFHandler.hpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#ifndef PDFHANDLER_HPP +#define PDFHANDLER_HPP + +#include <map> +#include <string> +#include "BoundingBox.hpp" +#include "Process.hpp" +#include "SVGTree.hpp" + +class XMLElement; + +class PDFHandler { + public: + struct ObjID { + ObjID () : num(-1), gen(0) {} + ObjID (int number, int generation) : num(number), gen(generation) {} + ObjID (int number, int generation, std::string filename) : num(number), gen(generation), fname(std::move(filename)) {} + bool valid () const {return num >= 0;} + int num, gen; ///< object and generation number + std::string fname; + }; + + protected: + struct ClipPathData { + ClipPathData (std::string cpid, SVGElement *group) : id(std::move(cpid)), groupElement(group) {} + std::string id; + SVGElement *groupElement; + }; + + public: + PDFHandler () =default; + explicit PDFHandler (SVGTree &svg) : _svg(&svg) {} + PDFHandler (const PDFHandler &page) =delete; + PDFHandler (PDFHandler &&page) =delete; + ~PDFHandler (); + void assignSVGTree (SVGTree &svg) {_svg = &svg;} + const BoundingBox& bbox () const {return _bbox;} + std::unique_ptr<SVGElement> convert (const std::string &fname, int pageno, std::unique_ptr<SVGElement> context=nullptr); + static std::string mutoolVersion (); + static BoundingBox bbox (std::string &fname, int pageno); + static bool available () {return !mutoolVersion().empty();} + + protected: + static std::string mutool (const std::string &cmd, bool readFromStderr=false); + static std::string mutool (const std::string &cmd, const SearchPattern &pattern, bool readFromStderr=false); + static std::string mtExtract (const std::string &fname, const SearchPattern &pattern); + static std::string mtShow (const std::string &fname, const std::string &path, char fmtmode= 'b'); + static std::string mtShow (const std::string &fname, const std::string &path, const SearchPattern &pattern, char fmtmode= 'b'); + std::string mtShow (const std::string &path, char fmtmode= 'b') const {return mtShow(_fname, path, fmtmode);} + std::string mtShow (const std::string &path, const SearchPattern &pattern, char fmtmode= 'b') const { + return mtShow(_fname, path, pattern, fmtmode); + } + void initFile (const std::string &fname); + void finishFile (); + void initPage (int pageno, std::unique_ptr<SVGElement> context); + std::unique_ptr<SVGElement> finishPage (); + void collectObjects (); + void elementOpened (XMLElement *trcElement); + void elementClosed (XMLElement *trcElement); + void doClipPath (XMLElement *trcClipPathElement); + void doClipStrokePath (XMLElement *trcClipStrokePathElement); + void doClipText (XMLElement *trcClipTextElement); + void doPopClip (XMLElement *trcPopClipElement); + void doFillPath (XMLElement *trcFillPathElement); + void doStrokePath (XMLElement *trcStrokePathElement); + void doFillImage (XMLElement *trcFillImageElement); + void doFillText (XMLElement *trcFillTextElement); + void doOpenTile (XMLElement *trcTileElement); + void doCloseTile (XMLElement *trcTileElement); + + private: + std::string _fname; + int _pageno=0; + int _numPages=0; + std::map<int,std::string> _extractedFiles; + std::map<std::string,ObjID> _objDict; ///< object names => object IDs + std::vector<std::string> _imgSeq; + NativeFont *_currentFont=nullptr; ///< currently selected font + size_t _numClipPath=0; ///< number of clipping paths processed + size_t _numImages=0; ///< number of embedded images already processed + size_t _numPatterns=0; ///< number of patterns processed + std::stack<ClipPathData> _clipPathStack; + double _x=0, _y=0; ///< current character position + BoundingBox _bbox; ///< bounding box of current/last page processed + SVGTree *_svg=nullptr; + XMLElement *_context=nullptr; ///< node holding the generated page contents +}; + +#endif diff --git a/dviware/dvisvgm/src/PDFParser.cpp b/dviware/dvisvgm/src/PDFParser.cpp index 5d00a5da58..b92ce54e7f 100644 --- a/dviware/dvisvgm/src/PDFParser.cpp +++ b/dviware/dvisvgm/src/PDFParser.cpp @@ -2,7 +2,7 @@ ** PDFParser.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/PDFParser.hpp b/dviware/dvisvgm/src/PDFParser.hpp index 02cd7078e7..bf76a94616 100644 --- a/dviware/dvisvgm/src/PDFParser.hpp +++ b/dviware/dvisvgm/src/PDFParser.hpp @@ -2,7 +2,7 @@ ** PDFParser.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/PDFToSVG.cpp b/dviware/dvisvgm/src/PDFToSVG.cpp new file mode 100644 index 0000000000..b0e3df58ba --- /dev/null +++ b/dviware/dvisvgm/src/PDFToSVG.cpp @@ -0,0 +1,92 @@ +/************************************************************************* +** PDFToSVG.cpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#include <cstdlib> +#include "Message.hpp" +#include "PDFToSVG.hpp" + +using namespace std; + + +PDFToSVG::PDFToSVG (const string &fname, SVGOutputBase &out) : ImageToSVG(fname, out) { + _useGS = (gsVersion() > 0 && gsVersion() < 10010); + if (const char *pdfproc = getenv("DVISVGM_PDF_PROC")) { + if (strcmp(pdfproc, "gs") == 0) + _useGS = true; + else if (strcmp(pdfproc, "mutool") == 0) + _useGS = false; + } + if (!_useGS) + _pdfHandler.assignSVGTree(_svg); +} + + +void PDFToSVG::checkGSAndFileFormat () { + if (_useGS) + ImageToSVG::checkGSAndFileFormat(); + else { + if (!PDFHandler::available()) { + ostringstream oss; + if (gsVersion() > 0) { + oss << "To process PDF files, either Ghostscript < 10.1 or mutool is required.\n"; + oss << "The installed Ghostscript version " << Ghostscript().revisionstr() << " isn't supported.\n"; + throw MessageException(oss.str()); + } + } + } + if (!imageIsValid()) + throw MessageException("invalid "+imageFormat()+" file"); +} + + +/** Returns the total number of pages in the PDF file. */ +int PDFToSVG::totalPageCount () const { + if (_totalPageCount < 0) { + _totalPageCount = psInterpreter().pdfPageCount(filename()); + if (_totalPageCount < 1) + throw MessageException("can't retrieve number of pages from file " + filename()); + } + return _totalPageCount; +} + + +bool PDFToSVG::imageIsValid () const { + ifstream ifs(filename()); + if (ifs) { + char buf[16]; + ifs.getline(buf, 16); + return std::strncmp(buf, "%PDF-1.", 7) == 0; + } + return false; +} + + +void PDFToSVG::convert (int pageno) { + if (_useGS) + ImageToSVG::convert(pageno); + else { + Message::mstream().indent(0); + Message::mstream(false, Message::MC_PAGE_NUMBER) << "processing PDF file\n"; + Message::mstream().indent(1); + _pdfHandler.convert(filename(), pageno); + embed(_pdfHandler.bbox()); + writeSVG(pageno); + } +}
\ No newline at end of file diff --git a/dviware/dvisvgm/src/PDFToSVG.hpp b/dviware/dvisvgm/src/PDFToSVG.hpp index 4385612b69..4319c59c51 100644 --- a/dviware/dvisvgm/src/PDFToSVG.hpp +++ b/dviware/dvisvgm/src/PDFToSVG.hpp @@ -2,7 +2,7 @@ ** PDFToSVG.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -23,40 +23,27 @@ #include <fstream> #include "ImageToSVG.hpp" +#include "PDFHandler.hpp" -class PsSpecialHandler; class PDFToSVG : public ImageToSVG { public: - PDFToSVG (const std::string &fname, SVGOutputBase &out) : ImageToSVG(fname, out) {} + PDFToSVG (const std::string &fname, SVGOutputBase &out); bool isSinglePageFormat() const override {return false;} - - /** Returns the total number of pages in the PDF file. */ - int totalPageCount() const override { - if (_totalPageCount < 0) { - _totalPageCount = psInterpreter().pdfPageCount(filename()); - if (_totalPageCount < 1) - throw MessageException("can't retrieve number of pages from file " + filename()); - } - return _totalPageCount; - } + int totalPageCount() const override; + void convert (int pageno) override; protected: - bool imageIsValid () const override { - std::ifstream ifs(filename()); - if (ifs) { - char buf[16]; - ifs.getline(buf, 16); - return std::strncmp(buf, "%PDF-1.", 7) == 0; - } - return false; - } + void checkGSAndFileFormat () override; + bool imageIsValid () const override; std::string imageFormat () const override {return "PDF";} - BoundingBox imageBBox () const override {return BoundingBox();} + BoundingBox imageBBox () const override {return {};} std::string psSpecialCmd () const override {return "pdffile=";} private: mutable int _totalPageCount = -1; + PDFHandler _pdfHandler; + bool _useGS = true; }; #endif diff --git a/dviware/dvisvgm/src/PSFilter.hpp b/dviware/dvisvgm/src/PSFilter.hpp index 30ca010809..17dcf0d93e 100644 --- a/dviware/dvisvgm/src/PSFilter.hpp +++ b/dviware/dvisvgm/src/PSFilter.hpp @@ -2,7 +2,7 @@ ** PSFilter.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/PSInterpreter.cpp b/dviware/dvisvgm/src/PSInterpreter.cpp index cb74120309..1c20bb6bb4 100644 --- a/dviware/dvisvgm/src/PSInterpreter.cpp +++ b/dviware/dvisvgm/src/PSInterpreter.cpp @@ -2,7 +2,7 @@ ** PSInterpreter.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -81,6 +81,16 @@ void PSInterpreter::init () { } +/** Sets or replaces the filter applied to the PS code. + * @param[in] filter the new filter being used + * @return the previous, replaced filter (nullptr if there was none) */ +PSFilter* PSInterpreter::setFilter (PSFilter *filter) { + PSFilter *prevFilter = _filter; + _filter = filter; + return prevFilter; +} + + PSActions* PSInterpreter::setActions (PSActions *actions) { PSActions *old_actions = _actions; _actions = actions; diff --git a/dviware/dvisvgm/src/PSInterpreter.hpp b/dviware/dvisvgm/src/PSInterpreter.hpp index b2e2616d5e..6562e3bf98 100644 --- a/dviware/dvisvgm/src/PSInterpreter.hpp +++ b/dviware/dvisvgm/src/PSInterpreter.hpp @@ -2,7 +2,7 @@ ** PSInterpreter.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -108,13 +108,14 @@ class PSInterpreter { bool executeRaw (const std::string &str, int n); bool active () const {return _mode != PS_QUIT;} void limit (size_t max_bytes) {_bytesToRead = max_bytes;} - void setFilter (PSFilter *filter) {_filter = filter;} + PSFilter* setFilter (PSFilter *filter); PSActions* setActions (PSActions *actions); int pdfPageCount (const std::string &fname); BoundingBox pdfPageBox (const std::string &fname, int pageno); const std::vector<std::string>& rawData () const {return _rawData;} bool setImageDevice (const std::string &deviceStr); bool hasFullOpacitySupport () const {return _gs.revision() >= 952;} + bool supportsPDF () const {return _gs.revision() > 0 && _gs.revision() < 10010;} static std::vector<PSDeviceInfo> getImageDeviceInfos (); static void listImageDeviceInfos (std::ostream &os); static bool imageDeviceKnown (std::string deviceStr); diff --git a/dviware/dvisvgm/src/PSPattern.cpp b/dviware/dvisvgm/src/PSPattern.cpp index cbb4f10807..a2c935d579 100644 --- a/dviware/dvisvgm/src/PSPattern.cpp +++ b/dviware/dvisvgm/src/PSPattern.cpp @@ -2,7 +2,7 @@ ** PSPattern.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/PSPattern.hpp b/dviware/dvisvgm/src/PSPattern.hpp index ca152f8e2a..33d5762f56 100644 --- a/dviware/dvisvgm/src/PSPattern.hpp +++ b/dviware/dvisvgm/src/PSPattern.hpp @@ -2,7 +2,7 @@ ** PSPattern.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/PSPreviewFilter.cpp b/dviware/dvisvgm/src/PSPreviewFilter.cpp index fb55435a95..960812a4e0 100644 --- a/dviware/dvisvgm/src/PSPreviewFilter.cpp +++ b/dviware/dvisvgm/src/PSPreviewFilter.cpp @@ -2,7 +2,7 @@ ** PSPreviewFilter.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/PSPreviewFilter.hpp b/dviware/dvisvgm/src/PSPreviewFilter.hpp index 3ffe6ffdb1..24426529bf 100644 --- a/dviware/dvisvgm/src/PSPreviewFilter.hpp +++ b/dviware/dvisvgm/src/PSPreviewFilter.hpp @@ -2,7 +2,7 @@ ** PSPreviewFilter.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/PageRanges.cpp b/dviware/dvisvgm/src/PageRanges.cpp index 4af8ff2bc4..e80aa4839b 100644 --- a/dviware/dvisvgm/src/PageRanges.cpp +++ b/dviware/dvisvgm/src/PageRanges.cpp @@ -2,7 +2,7 @@ ** PageRanges.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -24,6 +24,11 @@ using namespace std; +using FilterFunc = bool (*)(int); + +static bool is_even (int n) {return n % 2 == 0;} +static bool is_odd (int n) {return n % 2 == 1;} + /** Analyzes a string describing a range sequence. * Syntax: ([0-9]+(-[0-9]*)?)|(-[0-9]+)(,([0-9]+(-[0-9]*)?)|(-[0-9]+))* @@ -33,32 +38,31 @@ using namespace std; bool PageRanges::parse (const string &str, int max_page) { StringInputBuffer ib(str); BufferInputReader ir(ib); - while (ir) { + while (ir && ir.peek() != ':') { int first=1; int last=max_page; ir.skipSpace(); if (!isdigit(ir.peek()) && ir.peek() != '-') return false; - if (isdigit(ir.peek())) first = ir.getInt(); ir.skipSpace(); - if (ir.peek() == '-') { + if (ir.peek() != '-') + last = first; + else { while (ir.peek() == '-') ir.get(); ir.skipSpace(); if (isdigit(ir.peek())) last = ir.getInt(); } - else - last = first; ir.skipSpace(); if (ir.peek() == ',') { ir.get(); if (ir.eof()) return false; } - else if (!ir.eof()) + else if (!ir.eof() && ir.peek() != ':') return false; if (first > last) swap(first, last); @@ -70,10 +74,40 @@ bool PageRanges::parse (const string &str, int max_page) { } addRange(first, last); } + // apply filter if present + if (ir.peek() == ':') { + ir.get(); + string filterName = ir.getWord(); + FilterFunc filterFunc; + if (filterName == "even") + filterFunc = &is_even; + else if (filterName == "odd") + filterFunc = &is_odd; + else + return false; + *this = filter(filterFunc); + } return true; } +/** Returns a new PageRanges object that contains only the values + * for which the given filter function returns true. */ +PageRanges PageRanges::filter (FilterFunc filterFunc) const { + PageRanges newRanges; + if (filterFunc == nullptr) + newRanges = *this; + else { + for (const auto &range : *this) { + for (int i=range.first; i <= range.second; i++) + if (filterFunc(i)) + newRanges.addRange(i, i); + } + } + return newRanges; +} + + /** Returns the number of pages. */ size_t PageRanges::numberOfPages () const { size_t sum=0; diff --git a/dviware/dvisvgm/src/PageRanges.hpp b/dviware/dvisvgm/src/PageRanges.hpp index 1a2de678a1..d998d28c9f 100644 --- a/dviware/dvisvgm/src/PageRanges.hpp +++ b/dviware/dvisvgm/src/PageRanges.hpp @@ -2,7 +2,7 @@ ** PageRanges.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -27,6 +27,7 @@ class PageRanges : public NumericRanges<int> { public: bool parse (const std::string &str, int max_page=0); + PageRanges filter (bool (*filterFunc)(int)) const; size_t numberOfPages () const; }; diff --git a/dviware/dvisvgm/src/PageSize.cpp b/dviware/dvisvgm/src/PageSize.cpp index a1d29bfcb6..1af696fe58 100644 --- a/dviware/dvisvgm/src/PageSize.cpp +++ b/dviware/dvisvgm/src/PageSize.cpp @@ -2,7 +2,7 @@ ** PageSize.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/PageSize.hpp b/dviware/dvisvgm/src/PageSize.hpp index 735b526bed..8670f718c1 100644 --- a/dviware/dvisvgm/src/PageSize.hpp +++ b/dviware/dvisvgm/src/PageSize.hpp @@ -2,7 +2,7 @@ ** PageSize.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/Pair.hpp b/dviware/dvisvgm/src/Pair.hpp index 44236717ef..c1fdd5b6d5 100644 --- a/dviware/dvisvgm/src/Pair.hpp +++ b/dviware/dvisvgm/src/Pair.hpp @@ -2,7 +2,7 @@ ** Pair.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -73,6 +73,7 @@ inline T det (const Pair<T> &p1, const Pair<T> &p2) { struct Pair32 : public Pair<int32_t> { explicit Pair32 (int32_t x=0, int32_t y=0) : Pair<int32_t>(x, y) {} explicit Pair32 (double x, double y) : Pair<int32_t>(lround(x), lround(y)) {} + explicit Pair32 (const Pair<double> &p) : Pair32(p.x(), p.y()) {} Pair32 (const Pair<int32_t> &p) : Pair<int32_t>(p) {} }; @@ -82,6 +83,11 @@ inline DPair round (const DPair &p) { return DPair(std::lround(p.x()), std::lround(p.y())); } + +template<> template<> +inline Pair<int>::Pair (const Pair<double> &p) : _x(int(round(p.x()))), _y(int(round(p.y()))) {} + + template <typename T> IMPLEMENT_ARITHMETIC_OPERATOR(Pair<T>, +) diff --git a/dviware/dvisvgm/src/PapersizeSpecialHandler.cpp b/dviware/dvisvgm/src/PapersizeSpecialHandler.cpp index 557bea8679..b070643f6d 100644 --- a/dviware/dvisvgm/src/PapersizeSpecialHandler.cpp +++ b/dviware/dvisvgm/src/PapersizeSpecialHandler.cpp @@ -2,7 +2,7 @@ ** PapersizeSpecialHandler.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/PapersizeSpecialHandler.hpp b/dviware/dvisvgm/src/PapersizeSpecialHandler.hpp index ab20a22091..621de709db 100644 --- a/dviware/dvisvgm/src/PapersizeSpecialHandler.hpp +++ b/dviware/dvisvgm/src/PapersizeSpecialHandler.hpp @@ -2,7 +2,7 @@ ** PapersizeSpecialHandler.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/PathClipper.cpp b/dviware/dvisvgm/src/PathClipper.cpp index b6a26c418e..50030f9657 100644 --- a/dviware/dvisvgm/src/PathClipper.cpp +++ b/dviware/dvisvgm/src/PathClipper.cpp @@ -2,7 +2,7 @@ ** PathClipper.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -51,7 +51,7 @@ inline DPair to_DPair (const IntPoint &p) { * is called. */ class FlattenActions : public CurvedPath::IterationActions { public: - FlattenActions (vector<Bezier> &curves, Polygons &polygons, int &numLines) + FlattenActions (vector<CubicBezier> &curves, Polygons &polygons, int &numLines) : _polygons(polygons), _curves(curves), _numLines(numLines) {} void moveto (const CurvedPath::Point &p) override { @@ -74,12 +74,12 @@ class FlattenActions : public CurvedPath::IterationActions { } void quadto (const CurvedPath::Point &p1, const CurvedPath::Point &p2) override { - Bezier bezier(_currentPoint, p1, p2); - addCurvePoints(bezier); + QuadBezier qbezier(_currentPoint, p1, p2); + addCurvePoints(CubicBezier(qbezier)); } void cubicto (const CurvedPath::Point &p1, const CurvedPath::Point &p2, const CurvedPath::Point &p3) override { - Bezier bezier(_currentPoint, p1, p2, p3); + CubicBezier bezier(_currentPoint, p1, p2, p3); addCurvePoints(bezier); } @@ -98,7 +98,7 @@ class FlattenActions : public CurvedPath::IterationActions { } protected: - void addCurvePoints (const Bezier &bezier) { + void addCurvePoints (const CubicBezier &bezier) { if (_currentPoly.empty()) // this shouldn't happen but in case it does, ... _currentPoly.emplace_back(IntPoint(0, 0, 0)); // ...add a start point first vector<DPair> points; // points of flattened curve @@ -122,7 +122,7 @@ class FlattenActions : public CurvedPath::IterationActions { CurvedPath::Point _startPoint, _currentPoint; Polygon _currentPoly; ///< polygon being created Polygons &_polygons; ///< all polygons created - vector<Bezier> &_curves; + vector<CubicBezier> &_curves; int &_numLines; }; @@ -288,7 +288,7 @@ void PathClipper::reconstruct (const Polygon &polygon, CurvedPath &path) { if (diff == 1 || label1.id <= 0) // line segment? path.lineto(to_DPair(polygon[index2])); else { // Bézier curve segment - Bezier bezier(_curves[label1.id-1], label1.t, label2.t); + CubicBezier bezier(_curves[label1.id-1], label1.t, label2.t); if (label1.t > label2.t) bezier.reverse(); path.cubicto(bezier.point(1), bezier.point(2), bezier.point(3)); diff --git a/dviware/dvisvgm/src/PathClipper.hpp b/dviware/dvisvgm/src/PathClipper.hpp index 93b3f6a3da..c398c38db8 100644 --- a/dviware/dvisvgm/src/PathClipper.hpp +++ b/dviware/dvisvgm/src/PathClipper.hpp @@ -2,7 +2,7 @@ ** PathClipper.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -47,7 +47,7 @@ class PathClipper { static void callback (IntPoint &e1bot, IntPoint &e1top, IntPoint &e2bot, IntPoint &e2top, IntPoint &ip); private: - std::vector<Bezier> _curves; + std::vector<CubicBezier> _curves; int _numLines=0; ///< negative number of straight line segments in path been processed }; diff --git a/dviware/dvisvgm/src/PdfSpecialHandler.cpp b/dviware/dvisvgm/src/PdfSpecialHandler.cpp index f54b18de2d..0af7303e8d 100644 --- a/dviware/dvisvgm/src/PdfSpecialHandler.cpp +++ b/dviware/dvisvgm/src/PdfSpecialHandler.cpp @@ -2,7 +2,7 @@ ** PdfSpecialHandler.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/PdfSpecialHandler.hpp b/dviware/dvisvgm/src/PdfSpecialHandler.hpp index 53f9d94548..b5267939d7 100644 --- a/dviware/dvisvgm/src/PdfSpecialHandler.hpp +++ b/dviware/dvisvgm/src/PdfSpecialHandler.hpp @@ -2,7 +2,7 @@ ** PdfSpecialHandler.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/PreScanDVIReader.cpp b/dviware/dvisvgm/src/PreScanDVIReader.cpp index bdd3ff1901..dfcb4b1ddb 100644 --- a/dviware/dvisvgm/src/PreScanDVIReader.cpp +++ b/dviware/dvisvgm/src/PreScanDVIReader.cpp @@ -2,7 +2,7 @@ ** PreScanDVIReader.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/PreScanDVIReader.hpp b/dviware/dvisvgm/src/PreScanDVIReader.hpp index 6d22f1bf24..2668815a48 100644 --- a/dviware/dvisvgm/src/PreScanDVIReader.hpp +++ b/dviware/dvisvgm/src/PreScanDVIReader.hpp @@ -2,7 +2,7 @@ ** PreScanDVIReader.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/Process.cpp b/dviware/dvisvgm/src/Process.cpp index f89d502418..72465c0c73 100644 --- a/dviware/dvisvgm/src/Process.cpp +++ b/dviware/dvisvgm/src/Process.cpp @@ -2,7 +2,7 @@ ** Process.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -29,6 +29,7 @@ #endif #include <cstdlib> +#include <regex> #include "FileSystem.hpp" #include "Process.hpp" #include "SignalHandler.hpp" @@ -43,25 +44,60 @@ class Subprocess { enum class State {RUNNING, FINISHED, FAILED}; public: - Subprocess () =default; + Subprocess () : _rdbuf(4096) {} Subprocess (const Subprocess&) =delete; Subprocess (Subprocess&&) =delete; ~Subprocess (); - bool run (const string &cmd, string params); - bool readFromPipe (string &out); + bool run (const string &cmd, string params, Process::PipeFlags flags); + bool readFromPipe (string &out, const SearchPattern &pattern); State state (); + protected: + string read (const SearchPattern &pattern, bool *error=nullptr); + size_t readFromPipe (char *buf, size_t size, bool *error=nullptr) const; + private: + vector<char> _rdbuf; + size_t _bufstartpos = 0; #ifdef _WIN32 - HANDLE _pipeReadHandle=NULL; ///< handle of read end of pipe - HANDLE _childProcHandle=NULL; ///< handle of child process + HANDLE _pipeReadHandle = nullptr; ///< handle of read end of pipe + HANDLE _childProcHandle = nullptr; ///< handle of child process #else - int _readfd=-1; ///< file descriptor of read end of pipe - pid_t _pid=-1; ///< PID of the subprocess + int _readfd = -1; ///< file descriptor of read end of pipe + pid_t _pid = -1; ///< PID of the subprocess #endif }; +string Subprocess::read (const SearchPattern &pattern, bool *error) { + string result; + const size_t bytesRead = readFromPipe(&_rdbuf[_bufstartpos], _rdbuf.size()-_bufstartpos, error); + const size_t bufendpos = _bufstartpos + bytesRead; + smatch matches; + size_t matchendpos= bufendpos; // buffer position after last match + if (pattern.search.empty()) + result.assign(_rdbuf.data(), matchendpos); + else { + bool matched=false; + regex re(pattern.search); + for (auto it = cregex_iterator(&_rdbuf[0], &_rdbuf[bufendpos], re); it != cregex_iterator(); ++it) { + result += it->format(pattern.replace, regex_constants::format_no_copy); + matchendpos = it->position() + it->length(); + matched = true; + } + const size_t MAX_OVERLAP=50; + size_t overlappos; + if (matched) + overlappos = max(bufendpos - min(bufendpos, MAX_OVERLAP), matchendpos); + else + overlappos = matchendpos - min(MAX_OVERLAP, matchendpos); + copy(_rdbuf.begin()+overlappos, _rdbuf.begin()+bufendpos, _rdbuf.begin()); + _bufstartpos = bufendpos-overlappos; + } + return result; +} + + Process::Process (string cmd, string paramstr) : _cmd(std::move(cmd)), _paramstr(std::move(paramstr)) { @@ -72,14 +108,20 @@ Process::Process (string cmd, string paramstr) * @param[out] out takes the output written to stdout by the executed subprocess * @return true if process terminated properly * @throw SignalException if CTRL-C was pressed during execution */ -bool Process::run (string *out) { + +bool Process::run (string *out, PipeFlags flags) { + return run(out, SearchPattern(), flags); +} + + +bool Process::run (string *out, const SearchPattern &pattern, PipeFlags flags) { Subprocess subprocess; - if (!subprocess.run(_cmd, _paramstr)) + if (!subprocess.run(_cmd, _paramstr, flags)) return false; for (;;) { if (out) { out->clear(); - subprocess.readFromPipe(*out); + subprocess.readFromPipe(*out, pattern); } Subprocess::State state = subprocess.state(); if (state != Subprocess::State::RUNNING) @@ -94,11 +136,11 @@ bool Process::run (string *out) { * @param[out] out takes the output written to stdout by the executed process * @return true if process terminated properly * @throw SignalException if CTRL-C was pressed during execution */ -bool Process::run (const string &dir, string *out) { +bool Process::run (const string &dir, string *out, PipeFlags flags) { bool ret = false; string cwd = FileSystem::getcwd(); if (FileSystem::chdir(dir)) { - ret = run(out); + ret = run(out, flags); ret &= FileSystem::chdir(cwd); } return ret; @@ -110,46 +152,61 @@ bool Process::run (const string &dir, string *out) { static inline void close_and_zero_handle (HANDLE &handle) { CloseHandle(handle); - handle = NULL; + handle = nullptr; } Subprocess::~Subprocess () { - if (_pipeReadHandle != NULL) + if (_pipeReadHandle != nullptr) CloseHandle(_pipeReadHandle); - if (_childProcHandle != NULL) { + if (_childProcHandle != nullptr) { TerminateProcess(_childProcHandle, 1); CloseHandle(_childProcHandle); } } -/** Retrieves output generated by child process. +/** Retrieves output generated by the child process and optionally filters + * the lines by a regular expression and replaces them. If the search pattern + * is not empty and the line currently processed doesn't match, the line isn't + * appended to the output string. * @param[out] out read output is appended to this string + * @param[in] searchPattern regex pattern applied to each line + * @param[in] replacePattern replacement for all lines matching the search pattern * @returns false on errors */ -bool Subprocess::readFromPipe (string &out) { +bool Subprocess::readFromPipe (string &out, const SearchPattern &pattern) { if (!_pipeReadHandle) return false; - - bool success=false; + bool finished=false; bool processExited=false; DWORD len=0; - while (PeekNamedPipe(_pipeReadHandle, NULL, 0, NULL, &len, NULL)) { // prevent blocking + while (PeekNamedPipe(_pipeReadHandle, nullptr, 0, nullptr, &len, nullptr)) { // prevent blocking if (len == 0) { if (processExited) break; // process still busy processExited = (!_childProcHandle || WaitForSingleObject(_childProcHandle, 100) != WAIT_TIMEOUT); } - else { - char buf[4096]; - success = ReadFile(_pipeReadHandle, buf, sizeof(buf), &len, NULL); - if (!success || len == 0) - break; - out.append(buf, len); - } + string buf = read(pattern, &finished); + if (buf.empty()) + break; + out.append(buf); } - return success; + return !finished; +} + + +/** Reads a sequence of bytes from the pipe into a buffer. The function stops reading + * when either all bytes have been read from the pipe or the buffer is completely filled. + * @param[in] buf pointer to start of the buffer + * @param[in] size maximal number of bytes that can be stored in the buffer + * @return number of bytes read */ +size_t Subprocess::readFromPipe (char *buf, size_t size, bool *error) const { + DWORD bytesRead; + bool success = ReadFile(_pipeReadHandle, buf, size, &bytesRead, nullptr); + if (error) + *error = !success; + return success ? bytesRead : 0; } @@ -157,7 +214,7 @@ bool Subprocess::readFromPipe (string &out) { * @param[in] cmd name of command to execute * @param[in] paramstr parameters required by command * @returns true if child process started properly */ -bool Subprocess::run (const string &cmd, string paramstr) { +bool Subprocess::run (const string &cmd, string paramstr, Process::PipeFlags flags) { SECURITY_ATTRIBUTES securityAttribs; ZeroMemory(&securityAttribs, sizeof(SECURITY_ATTRIBUTES)); securityAttribs.nLength = sizeof(SECURITY_ATTRIBUTES); @@ -168,7 +225,7 @@ bool Subprocess::run (const string &cmd, string paramstr) { return false; SetHandleInformation(_pipeReadHandle, HANDLE_FLAG_INHERIT, 0); - HANDLE nullFile = CreateFile("NUL", GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, &securityAttribs, OPEN_EXISTING, 0, NULL); + HANDLE nullFile = CreateFile("NUL", GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, &securityAttribs, OPEN_EXISTING, 0, nullptr); bool success = false; if (nullFile != INVALID_HANDLE_VALUE) { STARTUPINFO startupInfo; @@ -176,15 +233,15 @@ bool Subprocess::run (const string &cmd, string paramstr) { startupInfo.cb = sizeof(STARTUPINFO); startupInfo.dwFlags = STARTF_USESTDHANDLES; startupInfo.hStdInput = nullFile; - startupInfo.hStdOutput = pipeWriteHandle; - startupInfo.hStdError = GetStdHandle(STD_ERROR_HANDLE); + startupInfo.hStdOutput = (flags & Process::PF_STDOUT) ? pipeWriteHandle : nullFile; + startupInfo.hStdError = (flags & Process::PF_STDERR) ? pipeWriteHandle : nullFile; PROCESS_INFORMATION processInfo; ZeroMemory(&processInfo, sizeof(PROCESS_INFORMATION)); string cmdline = cmd + " " + paramstr; // put subprocess in separate process group to prevent its termination in case of CTRL-C - success = CreateProcess(NULL, (LPSTR)cmdline.c_str(), NULL, NULL, true, CREATE_NEW_PROCESS_GROUP, NULL, NULL, &startupInfo, &processInfo); + success = CreateProcess(nullptr, (LPSTR)cmdline.c_str(), nullptr, nullptr, true, CREATE_NEW_PROCESS_GROUP, nullptr, nullptr, &startupInfo, &processInfo); if (success) { _childProcHandle = processInfo.hProcess; CloseHandle(processInfo.hThread); @@ -222,22 +279,31 @@ Subprocess::~Subprocess () { /** Retrieves output generated by child process. * @param[out] out read output is appended to this string * @returns false on errors */ -bool Subprocess::readFromPipe (string &out) { +bool Subprocess::readFromPipe (string &out, const SearchPattern &pattern) { if (_readfd < 0 || _pid < 0) return false; - - char buf[1024]; - ssize_t len; - while ((len = read(_readfd, buf, sizeof(buf))) > 0) - out.append(buf, len); - if (len < 0) { + bool finished=false; + for (;;) { + string buf = read(pattern, &finished); + if (buf.empty()) + break; + out.append(buf); + } + if (finished) { close(_readfd); _readfd = -1; } - return len >= 0; + return !finished; } +size_t Subprocess::readFromPipe (char *buf, size_t size, bool *error) const { + auto len = ::read(_readfd, buf, size); + if (error) + *error = len < 0; + return len >= 0 ? size_t(len) : 0; +} + /** Extracts whitespace-separated parameters from a string. * @param[in,out] paramstr the parameter string * @param[out] params vector holding pointers to the extracted parameters */ @@ -272,7 +338,7 @@ static void split_paramstr (string ¶mstr, vector<const char*> ¶ms) { * @param[in] cmd name of command to execute or absolute path to executable * @param[in] paramstr parameters required by the command * @returns true if child process started properly */ -bool Subprocess::run (const string &cmd, string paramstr) { +bool Subprocess::run (const string &cmd, string paramstr, Process::PipeFlags flags) { int pipefd[2]; if (cmd.empty() || pipe(pipefd) < 0) return false; @@ -284,10 +350,12 @@ bool Subprocess::run (const string &cmd, string paramstr) { return false; } if (_pid == 0) { // child process - dup2(pipefd[1], STDOUT_FILENO); // redirect stdout to the pipe - dup2(pipefd[1], STDERR_FILENO); // redirect stderr to the pipe + int devnull = open("/dev/null", O_WRONLY); + dup2((flags & Process::PF_STDOUT) ? pipefd[1] : devnull, STDOUT_FILENO); // redirect stdout to the pipe + dup2((flags & Process::PF_STDERR) ? pipefd[1] : devnull, STDERR_FILENO); // redirect stdout to the pipe close(pipefd[0]); close(pipefd[1]); + close(devnull); vector<const char*> params; params.push_back(cmd.c_str()); diff --git a/dviware/dvisvgm/src/Process.hpp b/dviware/dvisvgm/src/Process.hpp index a0668c354f..5fa5e9765b 100644 --- a/dviware/dvisvgm/src/Process.hpp +++ b/dviware/dvisvgm/src/Process.hpp @@ -2,7 +2,7 @@ ** Process.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -23,13 +23,30 @@ #include <string> +struct SearchPattern { + SearchPattern () =default; + + explicit SearchPattern (std::string searchRegex) + : search(std::move(searchRegex)) {} + + SearchPattern (std::string searchRegex, std::string replExpr) + : search(std::move(searchRegex)), replace(std::move(replExpr)) {} + + std::string search; + std::string replace; +}; + + class Process { public: + enum PipeFlags {PF_STDOUT=1, PF_STDERR=2}; + Process (std::string cmd, std::string paramstr); Process (const Process &orig) =delete; Process (Process &&orig) =delete; - bool run (std::string *out=nullptr); - bool run (const std::string &dir, std::string *out=nullptr); + bool run (std::string *out=nullptr, PipeFlags flags=PF_STDOUT); + bool run (const std::string &dir, std::string *out=nullptr, PipeFlags flags=PF_STDOUT); + bool run (std::string *out, const SearchPattern &pattern, PipeFlags flags=PF_STDOUT); private: std::string _cmd; diff --git a/dviware/dvisvgm/src/PsSpecialHandler.cpp b/dviware/dvisvgm/src/PsSpecialHandler.cpp index 7ece9b16ba..7645adea02 100644 --- a/dviware/dvisvgm/src/PsSpecialHandler.cpp +++ b/dviware/dvisvgm/src/PsSpecialHandler.cpp @@ -2,7 +2,7 @@ ** PsSpecialHandler.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -20,7 +20,6 @@ #include <array> #include <cmath> -#include <fstream> #include <memory> #include <sstream> #include "FileFinder.hpp" @@ -45,6 +44,7 @@ bool PsSpecialHandler::SHADING_SEGMENT_OVERLAP = false; int PsSpecialHandler::SHADING_SEGMENT_SIZE = 20; double PsSpecialHandler::SHADING_SIMPLIFY_DELTA = 0.01; string PsSpecialHandler::BITMAP_FORMAT; +bool PsSpecialHandler::EMBED_BITMAP_DATA = false; PsSpecialHandler::PsSpecialHandler () : _psi(this), _previewFilter(_psi) @@ -155,7 +155,9 @@ void PsSpecialHandler::executeAndSync (istream &is, bool updatePos) { _actions->getColor().getRGB(r, g, b); ostringstream oss; oss << '\n' << r << ' ' << g << ' ' << b << " setrgbcolor "; + PSFilter *filter = _psi.setFilter(nullptr); // don't apply any filters here _psi.execute(oss.str(), false); + _psi.setFilter(filter); } _psi.execute(is); if (updatePos) { @@ -220,7 +222,7 @@ bool PsSpecialHandler::process (const string &prefix, istream &is, SpecialAction string fname = in.getQuotedString(in.peek() == '"' ? "\"" : nullptr); fname = FileSystem::ensureForwardSlashes(fname); FileType fileType = FileType::EPS; - if (prefix == "pdffile") + if (prefix == "pdffile=") fileType = FileType::PDF; else { // accept selected non-PS files in psfile special @@ -308,6 +310,7 @@ void PsSpecialHandler::imgfile (FileType filetype, const string &fname, const ma double urx = (it = attr.find("urx")) != attr.end() ? stod(it->second) : 0; double ury = (it = attr.find("ury")) != attr.end() ? stod(it->second) : 0; int pageno = (it = attr.find("page")) != attr.end() ? stoi(it->second, nullptr, 10) : 1; + _pdfProc = ((it = attr.find("proc")) != attr.end() ? it->second : ""); if (filetype == FileType::BITMAP || filetype == FileType::SVG) swap(lly, ury); @@ -357,24 +360,21 @@ void PsSpecialHandler::imgfile (FileType filetype, const string &fname, const ma _actions->setX(0); _actions->setY(0); moveToDVIPos(); - auto imgNode = createImageNode(filetype, fname, pageno, BoundingBox(llx, lly, urx, ury), clipToBbox); - if (imgNode) { // has anything been drawn? - Matrix matrix(1); + if (imgNode.element) { // has anything been drawn? if (filetype == FileType::EPS || filetype == FileType::PDF) sy = -sy; // adapt orientation of y-coordinates - matrix.scale(sx, sy).rotate(-angle).scale(hscale/100, vscale/100); // apply transformation attributes - matrix.translate(x+hoffset, y-voffset); // move image to current DVI position - matrix.lmultiply(_actions->getMatrix()); + imgNode.matrix.scale(sx, sy).rotate(-angle).scale(hscale/100, vscale/100); // apply transformation attributes + imgNode.matrix.translate(x+hoffset, y-voffset); // move image to current DVI position + imgNode.matrix.lmultiply(_actions->getMatrix()); // update bounding box BoundingBox bbox(0, 0, urx-llx, ury-lly); - bbox.transform(matrix); + bbox.transform(imgNode.matrix); _actions->embed(bbox); - // insert element containing the image data - matrix.rmultiply(TranslationMatrix(-llx, -lly)); // move lower left corner of image to origin - imgNode->setTransform(matrix); - _actions->svgTree().appendToPage(std::move(imgNode)); + imgNode.matrix.rmultiply(TranslationMatrix(-llx, -lly)); // move lower left corner of image to origin + imgNode.element->setTransform(imgNode.matrix); + _actions->svgTree().appendToPage(std::move(imgNode.element)); } // restore DVI position _actions->setX(x); @@ -397,8 +397,8 @@ static string image_base_path (const SpecialActions &actions) { * @param[in] bbox bounding box of the image * @param[in] clip if true, the image is clipped to its bounding box * @return pointer to the element or nullptr if there's no image data */ -unique_ptr<SVGElement> PsSpecialHandler::createImageNode (FileType type, const string &fname, int pageno, BoundingBox bbox, bool clip) { - unique_ptr<SVGElement> node; +PsSpecialHandler::ImageNode PsSpecialHandler::createImageNode (FileType type, const string &fname, int pageno, BoundingBox bbox, bool clip) { + ImageNode imgnode; string pathstr; if (const char *path = FileFinder::instance().lookup(fname, false)) pathstr = FileSystem::ensureForwardSlashes(path); @@ -406,48 +406,100 @@ unique_ptr<SVGElement> PsSpecialHandler::createImageNode (FileType type, const s pathstr = fname; if (pathstr.empty()) Message::wstream(true) << "file '" << fname << "' not found\n"; - else if (type == FileType::BITMAP || type == FileType::SVG) { - node = util::make_unique<SVGElement>("image"); - node->addAttribute("x", 0); - node->addAttribute("y", 0); - node->addAttribute("width", bbox.width()); - node->addAttribute("height", bbox.height()); - - // Only reference the image with an absolute path if either an absolute path was given by the user - // or a given plain filename is not present in the current working directory but was found through - // the FileFinder, i.e. it's usually located somewhere in the texmf tree. - string href = pathstr; - if (!FilePath::isAbsolute(fname) && (fname.find('/') != string::npos || FilePath(fname).exists())) - href = FilePath(pathstr).relative(FilePath(_actions->getSVGFilePath(pageno))); - node->addAttribute("xlink:href", href); + else if (type == FileType::BITMAP || type == FileType::SVG) + imgnode = createBitmapNode(fname, pathstr, pageno, bbox); + else if (type == FileType::EPS) + imgnode = createPSNode(fname, pathstr, pageno, bbox, clip); + else + imgnode = createPDFNode(fname, pathstr, pageno, bbox, clip); + return imgnode; +} + + +PsSpecialHandler::ImageNode PsSpecialHandler::createBitmapNode (const string &fname, const string &path, int pageno, BoundingBox bbox) { + ImageNode imgnode(util::make_unique<SVGElement>("image")); + imgnode.element->addAttribute("x", 0); + imgnode.element->addAttribute("y", 0); + imgnode.element->addAttribute("width", bbox.width()); + imgnode.element->addAttribute("height", bbox.height()); + + // Only reference the image with an absolute path if either an absolute path was given by the user + // or a given plain filename is not present in the current working directory but was found through + // the FileFinder, i.e. it's usually located somewhere in the texmf tree. + string href = path; + if (!FilePath::isAbsolute(fname) && (fname.find('/') != string::npos || FilePath(fname).exists())) + href = FilePath(path).relative(FilePath(_actions->getSVGFilePath(pageno))); + if (EMBED_BITMAP_DATA) + imgnode.element->addAttribute("@@xlink:href", "data:" + util::mimetype(fname) + ";base64," + fname); + else + imgnode.element->addAttribute("xlink:href", href); + return imgnode; +} + + +PsSpecialHandler::ImageNode PsSpecialHandler::createPSNode (const string &fname, const string &path, int pageno, BoundingBox bbox, bool clip) { + ImageNode imgnode(util::make_unique<SVGElement>("g")); // put SVG nodes created from the EPS/PDF file in this group + _xmlnode = imgnode.element.get(); + _psi.execute( + "\n@beginspecial @setspecial" // enter special environment + "/setpagedevice{@setpagedevice}def " // activate processing of operator "setpagedevice" + "/@imgbase("+image_base_path(*_actions)+")store " // path and basename of image files + "matrix setmatrix" // don't apply outer PS transformations + "/FirstPage "+to_string(pageno)+" def" // set number of first page to convert (PDF only) + "/LastPage "+to_string(pageno)+" def" // set number of last page to convert (PDF only) + "(" + path + ")run " // execute file content + "@endspecial\n" // leave special environment + ); + if (imgnode.element->empty()) + imgnode.element.reset(nullptr); + else if (clip) { + // clip image to its bounding box if flag 'clip' is given + auto clippath = util::make_unique<SVGElement>("clipPath"); + clippath->addAttribute("id", "imgclip"+ to_string(_imgClipCount)); + clippath->append(bbox.createSVGPath()); + imgnode.element->setClipPathUrl("imgclip" + to_string(_imgClipCount++)); + _actions->svgTree().appendToDefs(std::move(clippath)); } - else { // PostScript or PDF - node = util::make_unique<SVGElement>("g"); // put SVG nodes created from the EPS/PDF file in this group - - _xmlnode = node.get(); - _psi.execute( - "\n@beginspecial @setspecial" // enter special environment - "/setpagedevice{@setpagedevice}def " // activate processing of operator "setpagedevice" - "/@imgbase("+image_base_path(*_actions)+")store " // path and basename of image files - "matrix setmatrix" // don't apply outer PS transformations - "/FirstPage "+to_string(pageno)+" def" // set number of first page to convert (PDF only) - "/LastPage "+to_string(pageno)+" def" // set number of last page to convert (PDF only) - "(" + pathstr + ")run " // execute file content - "@endspecial\n" // leave special environment - ); - if (node->empty()) - node.reset(nullptr); - else if (clip) { - // clip image to its bounding box if flag 'clip' is given - auto clippath = util::make_unique<SVGElement>("clipPath"); - clippath->addAttribute("id", "imgclip"+ to_string(_imgClipCount)); - clippath->append(bbox.createSVGPath()); - node->setClipPathUrl("imgclip"+ to_string(_imgClipCount++)); - _actions->svgTree().appendToDefs(std::move(clippath)); + _xmlnode = nullptr; // append following elements to page group again + return imgnode; +} + + +PsSpecialHandler::ImageNode PsSpecialHandler::createPDFNode (const string &fname, const string &path, int pageno, BoundingBox bbox, bool clip) { + if (_pdfProc == "gs" || (_pdfProc.empty() && _psi.supportsPDF())) + return createPSNode(fname, path, pageno, bbox, clip); + + ImageNode imgnode; + if (PDFHandler::available()) { + // save SVG state + auto savedFont = _actions->svgTree().getFontPair(); + auto savedMatrix = _actions->svgTree().getMatrix(); + auto savedColor = _actions->svgTree().getColor(); + + imgnode.element = util::make_unique<SVGElement>("g"); + _pdfHandler.assignSVGTree(_actions->svgTree()); + imgnode.element = _pdfHandler.convert(path, pageno, std::move(imgnode.element)); + + // restore SVG state + if (savedFont.second) + _actions->svgTree().setFont(savedFont.first, *savedFont.second); + _actions->svgTree().setMatrix(savedMatrix); + _actions->svgTree().setColor(savedColor); + + if (imgnode.element->empty()) + imgnode.element.reset(nullptr); + else { + imgnode.matrix.translate(0, -bbox.height()).scale(1, -1); + if (clip) { + auto clippath = util::make_unique<SVGElement>("clipPath"); + clippath->addAttribute("id", "imgclip" + to_string(_imgClipCount)); + clippath->append(bbox.createSVGPath()); + imgnode.element->setClipPathUrl("imgclip" + to_string(_imgClipCount++)); + _actions->svgTree().appendToDefs(std::move(clippath)); + } } - _xmlnode = nullptr; // append following elements to page group again } - return node; + return imgnode; } @@ -789,8 +841,7 @@ void PsSpecialHandler::image (std::vector<double> &p) { // To prevent memory issues, only add the filename to the href attribute and tag it by '@' // for later base64 encoding. - image->addAttribute("@xlink:href", string("data:image/")+(suffix == ".png" ? "png" : "jpeg")+";base64,"+fname); - + image->addAttribute("@xlink:href", "data:"+util::mimetype(fname)+";base64,"+fname); // if set, assign clipping path to image if (_clipStack.path()) { auto group = util::make_unique<SVGElement>("g"); diff --git a/dviware/dvisvgm/src/PsSpecialHandler.hpp b/dviware/dvisvgm/src/PsSpecialHandler.hpp index 6a35052b27..695eb78d03 100644 --- a/dviware/dvisvgm/src/PsSpecialHandler.hpp +++ b/dviware/dvisvgm/src/PsSpecialHandler.hpp @@ -2,7 +2,7 @@ ** PsSpecialHandler.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -27,6 +27,7 @@ #include <string> #include <vector> #include "GraphicsPath.hpp" +#include "PDFHandler.hpp" #include "PSInterpreter.hpp" #include "Opacity.hpp" #include "PSPattern.hpp" @@ -76,6 +77,14 @@ class PsSpecialHandler : public SpecialHandler, protected PSActions { std::stack<Entry> _stack; ///< stack holding the clipping information of the current graphics context }; + struct ImageNode { + ImageNode () : matrix(1) {} + explicit ImageNode (std::unique_ptr<SVGElement> elem) : element(std::move(elem)), matrix(1) {} + ImageNode (std::unique_ptr<SVGElement> elem, const Matrix &m) : element(std::move(elem)), matrix(m) {} + std::unique_ptr<SVGElement> element; + Matrix matrix; + }; + enum PsSection {PS_NONE, PS_HEADERS, PS_BODY}; enum class FileType {EPS, PDF, SVG, BITMAP}; @@ -97,6 +106,7 @@ class PsSpecialHandler : public SpecialHandler, protected PSActions { static int SHADING_SEGMENT_SIZE; static double SHADING_SIMPLIFY_DELTA; static std::string BITMAP_FORMAT; + static bool EMBED_BITMAP_DATA; protected: void initialize (); @@ -105,7 +115,10 @@ class PsSpecialHandler : public SpecialHandler, protected PSActions { void executeAndSync (std::istream &is, bool updatePos); void processHeaderFile (const char *fname); void imgfile (FileType type, const std::string &fname, const std::map<std::string,std::string> &attr); - std::unique_ptr<SVGElement> createImageNode (FileType type, const std::string &fname, int pageno, BoundingBox bbox, bool clip); + ImageNode createImageNode (FileType type, const std::string &fname, int pageno, BoundingBox bbox, bool clip); + ImageNode createBitmapNode (const std::string &fname, const std::string &path, int pageno, BoundingBox bbox); + ImageNode createPSNode (const std::string &fname, const std::string &path, int pageno, BoundingBox bbox, bool clip); + ImageNode createPDFNode (const std::string &fname, const std::string &path, int pageno, BoundingBox bbox, bool clip); void dviBeginPage (unsigned int pageno, SpecialActions &actions) override; void dviEndPage (unsigned pageno, SpecialActions &actions) override; void clip (Path path, bool evenodd); @@ -164,6 +177,7 @@ class PsSpecialHandler : public SpecialHandler, protected PSActions { private: PSInterpreter _psi; + PDFHandler _pdfHandler; SpecialActions *_actions=nullptr; PSPreviewFilter _previewFilter; ///< filter to extract information generated by the preview package PsSection _psSection=PS_NONE; ///< current section processed (nothing yet, headers, or body specials) @@ -189,6 +203,7 @@ class PsSpecialHandler : public SpecialHandler, protected PSActions { std::map<int, std::unique_ptr<PSPattern>> _patterns; PSTilingPattern *_pattern; ///< current pattern bool _patternEnabled; ///< true if active color space is a pattern + std::string _pdfProc; ///< tool to process PDF files ("gs" or "mutool") }; #endif diff --git a/dviware/dvisvgm/src/RangeMap.cpp b/dviware/dvisvgm/src/RangeMap.cpp index 8de4ff42bf..bac95b3093 100644 --- a/dviware/dvisvgm/src/RangeMap.cpp +++ b/dviware/dvisvgm/src/RangeMap.cpp @@ -2,7 +2,7 @@ ** RangeMap.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/RangeMap.hpp b/dviware/dvisvgm/src/RangeMap.hpp index c141346446..7ddcd3b9ba 100644 --- a/dviware/dvisvgm/src/RangeMap.hpp +++ b/dviware/dvisvgm/src/RangeMap.hpp @@ -2,7 +2,7 @@ ** RangeMap.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -111,7 +111,7 @@ class RangeMap { }; public: - void addRange (uint32_t first, uint32_t last, uint32_t cid); + void addRange (uint32_t cmin, uint32_t cmax, uint32_t vmin); bool valueExists (uint32_t c) const {return lookup(c) >= 0;} uint32_t valueAt (uint32_t c) const; uint32_t minKey () const {return _ranges.empty() ? 0 : _ranges.front().min();} diff --git a/dviware/dvisvgm/src/SVGCharHandler.cpp b/dviware/dvisvgm/src/SVGCharHandler.cpp index 567a2ceda5..b7a1b425a5 100644 --- a/dviware/dvisvgm/src/SVGCharHandler.cpp +++ b/dviware/dvisvgm/src/SVGCharHandler.cpp @@ -2,7 +2,7 @@ ** SVGCharHandler.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/SVGCharHandler.hpp b/dviware/dvisvgm/src/SVGCharHandler.hpp index 157c1b6a64..2df8957d68 100644 --- a/dviware/dvisvgm/src/SVGCharHandler.hpp +++ b/dviware/dvisvgm/src/SVGCharHandler.hpp @@ -2,7 +2,7 @@ ** SVGCharHandler.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -76,6 +76,7 @@ class SVGCharHandler { Color getColor () const {return _color.get();} const Opacity& getOpacity () const {return _opacity.get();} const Font* getFont () const {return _font.get();} + int getFontID () const {return _fontnum;} const Matrix& getMatrix () const {return _matrix.get();} protected: diff --git a/dviware/dvisvgm/src/SVGCharHandlerFactory.cpp b/dviware/dvisvgm/src/SVGCharHandlerFactory.cpp index 342571a154..3f83f18e29 100644 --- a/dviware/dvisvgm/src/SVGCharHandlerFactory.cpp +++ b/dviware/dvisvgm/src/SVGCharHandlerFactory.cpp @@ -2,7 +2,7 @@ ** SVGCharHandlerFactory.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/SVGCharHandlerFactory.hpp b/dviware/dvisvgm/src/SVGCharHandlerFactory.hpp index bbb431c8cd..7c195e63a4 100644 --- a/dviware/dvisvgm/src/SVGCharHandlerFactory.hpp +++ b/dviware/dvisvgm/src/SVGCharHandlerFactory.hpp @@ -2,7 +2,7 @@ ** SVGCharHandlerFactory.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/SVGCharPathHandler.cpp b/dviware/dvisvgm/src/SVGCharPathHandler.cpp index 8f973be293..fc59d2280e 100644 --- a/dviware/dvisvgm/src/SVGCharPathHandler.cpp +++ b/dviware/dvisvgm/src/SVGCharPathHandler.cpp @@ -2,7 +2,7 @@ ** SVGCharPathHandler.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/SVGCharPathHandler.hpp b/dviware/dvisvgm/src/SVGCharPathHandler.hpp index 01b2ac5ae0..32fb1b3b74 100644 --- a/dviware/dvisvgm/src/SVGCharPathHandler.hpp +++ b/dviware/dvisvgm/src/SVGCharPathHandler.hpp @@ -2,7 +2,7 @@ ** SVGCharPathHandler.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/SVGCharTspanTextHandler.cpp b/dviware/dvisvgm/src/SVGCharTspanTextHandler.cpp index c17b8bd180..9c23f33050 100644 --- a/dviware/dvisvgm/src/SVGCharTspanTextHandler.cpp +++ b/dviware/dvisvgm/src/SVGCharTspanTextHandler.cpp @@ -2,7 +2,7 @@ ** SVGCharTspanTextHandler.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/SVGCharTspanTextHandler.hpp b/dviware/dvisvgm/src/SVGCharTspanTextHandler.hpp index 34443961c1..168d616d8e 100644 --- a/dviware/dvisvgm/src/SVGCharTspanTextHandler.hpp +++ b/dviware/dvisvgm/src/SVGCharTspanTextHandler.hpp @@ -2,7 +2,7 @@ ** SVGCharTspanTextHandler.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/SVGElement.cpp b/dviware/dvisvgm/src/SVGElement.cpp index 78ffd36b50..68f7d2231c 100644 --- a/dviware/dvisvgm/src/SVGElement.cpp +++ b/dviware/dvisvgm/src/SVGElement.cpp @@ -2,7 +2,7 @@ ** SVGElement.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -78,11 +78,23 @@ void SVGElement::setFillPatternUrl (const std::string &url) { } +void SVGElement::setMaskUrl (const string &url) { + if (!url.empty()) + addAttribute("mask", "url(#"+url+")"); +} + + void SVGElement::setNoFillColor () { addAttribute("fill", "none"); } +void SVGElement::setOpacity (const OpacityAlpha &alpha) { + if (!alpha.isOpaque()) + addAttribute("opaque", alpha.value()); +} + + void SVGElement::setPoints (const vector<DPair> &points) { if (!points.empty()) { ostringstream oss; @@ -106,7 +118,14 @@ void SVGElement::setStrokeDash (const vector<double> &pattern, double offset) { for (double dashValue : pattern) patternStr += XMLString(dashValue)+" "; patternStr.pop_back(); - addAttribute("stroke-dasharray", patternStr); + setStrokeDash(patternStr, offset); + } +} + + +void SVGElement::setStrokeDash (const string &pattern, double offset) { + if (!pattern.empty()) { + addAttribute("stroke-dasharray", pattern); if (offset != 0) addAttribute("stroke-dashoffset", offset); } @@ -150,4 +169,4 @@ void SVGElement::setStrokeWidth (double width) { void SVGElement::setTransform (const Matrix &matrix) { if (!matrix.isIdentity()) addAttribute("transform", matrix.toSVG()); -} +}
\ No newline at end of file diff --git a/dviware/dvisvgm/src/SVGElement.hpp b/dviware/dvisvgm/src/SVGElement.hpp index d1103a8551..632b6a4a84 100644 --- a/dviware/dvisvgm/src/SVGElement.hpp +++ b/dviware/dvisvgm/src/SVGElement.hpp @@ -2,7 +2,7 @@ ** SVGElement.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -45,10 +45,13 @@ class SVGElement : public XMLElement { void setFillOpacity (Opacity::BlendMode blendMode); void setFillPatternUrl (const std::string &url); void setFillRule (FillRule rule); + void setMaskUrl (const std::string &url); void setNoFillColor (); + void setOpacity (const OpacityAlpha &alpha); void setPoints (const std::vector<DPair> &points); void setStrokeColor (Color color); void setStrokeDash (const std::vector<double> &pattern, double offset=0); + void setStrokeDash (const std::string &pattern, double offset=0); void setStrokeLineCap (LineCap cap); void setStrokeLineJoin (LineJoin join); void setStrokeOpacity (const Opacity &opacity); diff --git a/dviware/dvisvgm/src/SVGOutput.cpp b/dviware/dvisvgm/src/SVGOutput.cpp index 013dd8f8f9..d5f219e7cd 100644 --- a/dviware/dvisvgm/src/SVGOutput.cpp +++ b/dviware/dvisvgm/src/SVGOutput.cpp @@ -2,7 +2,7 @@ ** SVGOutput.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/SVGOutput.hpp b/dviware/dvisvgm/src/SVGOutput.hpp index a0ae43c68b..9032543c47 100644 --- a/dviware/dvisvgm/src/SVGOutput.hpp +++ b/dviware/dvisvgm/src/SVGOutput.hpp @@ -2,7 +2,7 @@ ** SVGOutput.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -47,6 +47,7 @@ struct SVGOutputBase { virtual ~SVGOutputBase () =default; virtual std::ostream& getPageStream (int page, int numPages, const HashTriple &hashes=HashTriple()) const =0; virtual FilePath filepath (int page, int numPages, const HashTriple &hashes= HashTriple()) const =0; + virtual void finish () =0; virtual bool ignoresHashes () const {return true;} }; @@ -59,6 +60,7 @@ class SVGOutput : public SVGOutputBase { SVGOutput (const std::string &base, std::string pattern, int zipLevel); std::ostream& getPageStream (int page, int numPages, const HashTriple &hash=HashTriple()) const override; FilePath filepath (int page, int numPages, const HashTriple &hash=HashTriple()) const override; + void finish () override {_osptr.reset();} bool ignoresHashes () const override; void setFileNumbers (int fileNumber, int fileCount) {_fileNumber = fileNumber; _fileCount = fileCount;} diff --git a/dviware/dvisvgm/src/SVGSingleCharTextHandler.cpp b/dviware/dvisvgm/src/SVGSingleCharTextHandler.cpp index 84ba8591c1..d2a4f53ad1 100644 --- a/dviware/dvisvgm/src/SVGSingleCharTextHandler.cpp +++ b/dviware/dvisvgm/src/SVGSingleCharTextHandler.cpp @@ -2,7 +2,7 @@ ** SVGSingleCharTextHandler.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/SVGSingleCharTextHandler.hpp b/dviware/dvisvgm/src/SVGSingleCharTextHandler.hpp index c1cd48bc24..b97f463cfa 100644 --- a/dviware/dvisvgm/src/SVGSingleCharTextHandler.hpp +++ b/dviware/dvisvgm/src/SVGSingleCharTextHandler.hpp @@ -2,7 +2,7 @@ ** SVGSingleCharTextHandler.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/SVGTree.cpp b/dviware/dvisvgm/src/SVGTree.cpp index 1fed40b443..edfb926d0c 100644 --- a/dviware/dvisvgm/src/SVGTree.cpp +++ b/dviware/dvisvgm/src/SVGTree.cpp @@ -2,7 +2,7 @@ ** SVGTree.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -91,6 +91,13 @@ void SVGTree::setFont (int num, const Font &font) { } +pair<int,const Font*> SVGTree::getFontPair () const { + if (_charHandler) + return {_charHandler->getFontID(), _charHandler->getFont()}; + return {0, nullptr}; +} + + bool SVGTree::setFontFormat (string formatstr) { auto pos = formatstr.find(','); string opt; @@ -258,7 +265,7 @@ void SVGTree::append (const PhysicalFont &font, const set<int> &chars, GFGlyphTr auto fontNode = util::make_unique<XMLElement>("font"); string fontname = font.name(); fontNode->addAttribute("id", fontname); - fontNode->addAttribute("horiz-adv-x", font.hAdvance()); + fontNode->addAttribute("horiz-adv-x", font.hAverageAdvance()); auto faceNode = util::make_unique<XMLElement>("font-face"); faceNode->addAttribute("font-family", fontname); diff --git a/dviware/dvisvgm/src/SVGTree.hpp b/dviware/dvisvgm/src/SVGTree.hpp index 0669d47cef..0453e53ac3 100644 --- a/dviware/dvisvgm/src/SVGTree.hpp +++ b/dviware/dvisvgm/src/SVGTree.hpp @@ -2,7 +2,7 @@ ** SVGTree.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -61,6 +61,7 @@ class SVGTree { void popPageContext (); void setBBox (const BoundingBox &bbox); void setFont (int id, const Font &font); + std::pair<int,const Font*> getFontPair () const; static bool setFontFormat (std::string formatstr); void setX (double x) {_charHandler->notifyXAdjusted();} void setY (double y) {_charHandler->notifyYAdjusted();} diff --git a/dviware/dvisvgm/src/ShadingPatch.cpp b/dviware/dvisvgm/src/ShadingPatch.cpp index 3a99b98e7c..0f6a20e9d3 100644 --- a/dviware/dvisvgm/src/ShadingPatch.cpp +++ b/dviware/dvisvgm/src/ShadingPatch.cpp @@ -2,7 +2,7 @@ ** ShadingPatch.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/ShadingPatch.hpp b/dviware/dvisvgm/src/ShadingPatch.hpp index 6999a817a3..a11b5dd359 100644 --- a/dviware/dvisvgm/src/ShadingPatch.hpp +++ b/dviware/dvisvgm/src/ShadingPatch.hpp @@ -2,7 +2,7 @@ ** ShadingPatch.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/SignalHandler.cpp b/dviware/dvisvgm/src/SignalHandler.cpp index 230410e077..e1a99a581e 100644 --- a/dviware/dvisvgm/src/SignalHandler.cpp +++ b/dviware/dvisvgm/src/SignalHandler.cpp @@ -2,7 +2,7 @@ ** SignalHandler.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/SignalHandler.hpp b/dviware/dvisvgm/src/SignalHandler.hpp index 2ecef0960e..9c343e0463 100644 --- a/dviware/dvisvgm/src/SignalHandler.hpp +++ b/dviware/dvisvgm/src/SignalHandler.hpp @@ -2,7 +2,7 @@ ** SignalHandler.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/SourceInput.cpp b/dviware/dvisvgm/src/SourceInput.cpp index 478532de03..b63df62113 100644 --- a/dviware/dvisvgm/src/SourceInput.cpp +++ b/dviware/dvisvgm/src/SourceInput.cpp @@ -2,7 +2,7 @@ ** SourceInput.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/SourceInput.hpp b/dviware/dvisvgm/src/SourceInput.hpp index 3d201c31d7..5ce6c8302a 100644 --- a/dviware/dvisvgm/src/SourceInput.hpp +++ b/dviware/dvisvgm/src/SourceInput.hpp @@ -2,7 +2,7 @@ ** SourceInput.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/SpecialActions.hpp b/dviware/dvisvgm/src/SpecialActions.hpp index df80ac434b..9a55331605 100644 --- a/dviware/dvisvgm/src/SpecialActions.hpp +++ b/dviware/dvisvgm/src/SpecialActions.hpp @@ -2,7 +2,7 @@ ** SpecialActions.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -50,7 +50,7 @@ class SpecialActions { virtual void setOpacity (const Opacity &opacity) =0; virtual const Opacity& getOpacity () const =0; virtual const SVGTree& svgTree () const =0; - SVGTree& svgTree () {return const_cast<SVGTree&>(const_cast<const SpecialActions*>(this)->svgTree());} + virtual SVGTree& svgTree () {return const_cast<SVGTree&>(const_cast<const SpecialActions*>(this)->svgTree());} virtual BoundingBox& bbox () =0; virtual BoundingBox& bbox (const std::string &name, bool reset=false) =0; virtual void embed (const BoundingBox &bbox) =0; diff --git a/dviware/dvisvgm/src/SpecialHandler.hpp b/dviware/dvisvgm/src/SpecialHandler.hpp index 2beda4e7bb..81c3146d35 100644 --- a/dviware/dvisvgm/src/SpecialHandler.hpp +++ b/dviware/dvisvgm/src/SpecialHandler.hpp @@ -2,7 +2,7 @@ ** SpecialHandler.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/SpecialManager.cpp b/dviware/dvisvgm/src/SpecialManager.cpp index fb78ffd57b..0955f61aa4 100644 --- a/dviware/dvisvgm/src/SpecialManager.cpp +++ b/dviware/dvisvgm/src/SpecialManager.cpp @@ -2,7 +2,7 @@ ** SpecialManager.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/SpecialManager.hpp b/dviware/dvisvgm/src/SpecialManager.hpp index c124994d2b..55da303b70 100644 --- a/dviware/dvisvgm/src/SpecialManager.hpp +++ b/dviware/dvisvgm/src/SpecialManager.hpp @@ -2,7 +2,7 @@ ** SpecialManager.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/StreamReader.cpp b/dviware/dvisvgm/src/StreamReader.cpp index f0e9bf8e5d..196ce7affa 100644 --- a/dviware/dvisvgm/src/StreamReader.cpp +++ b/dviware/dvisvgm/src/StreamReader.cpp @@ -2,7 +2,7 @@ ** StreamReader.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/StreamReader.hpp b/dviware/dvisvgm/src/StreamReader.hpp index 1a9d76abe1..138751c33c 100644 --- a/dviware/dvisvgm/src/StreamReader.hpp +++ b/dviware/dvisvgm/src/StreamReader.hpp @@ -2,7 +2,7 @@ ** StreamReader.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/StreamWriter.cpp b/dviware/dvisvgm/src/StreamWriter.cpp index 59ee7ffe8b..c534d31862 100644 --- a/dviware/dvisvgm/src/StreamWriter.cpp +++ b/dviware/dvisvgm/src/StreamWriter.cpp @@ -2,7 +2,7 @@ ** StreamWriter.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/StreamWriter.hpp b/dviware/dvisvgm/src/StreamWriter.hpp index 3e2dbda510..473306f16a 100644 --- a/dviware/dvisvgm/src/StreamWriter.hpp +++ b/dviware/dvisvgm/src/StreamWriter.hpp @@ -2,7 +2,7 @@ ** StreamWriter.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/Subfont.cpp b/dviware/dvisvgm/src/Subfont.cpp index 09a2607688..bb06429a53 100644 --- a/dviware/dvisvgm/src/Subfont.cpp +++ b/dviware/dvisvgm/src/Subfont.cpp @@ -2,7 +2,7 @@ ** Subfont.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/Subfont.hpp b/dviware/dvisvgm/src/Subfont.hpp index ac5359a84a..c6978ed46d 100644 --- a/dviware/dvisvgm/src/Subfont.hpp +++ b/dviware/dvisvgm/src/Subfont.hpp @@ -2,7 +2,7 @@ ** Subfont.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/System.cpp b/dviware/dvisvgm/src/System.cpp index 6baf5a40ed..fc6db8b9e2 100644 --- a/dviware/dvisvgm/src/System.cpp +++ b/dviware/dvisvgm/src/System.cpp @@ -2,7 +2,7 @@ ** System.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/System.hpp b/dviware/dvisvgm/src/System.hpp index 686c24af82..f62f815165 100644 --- a/dviware/dvisvgm/src/System.hpp +++ b/dviware/dvisvgm/src/System.hpp @@ -2,7 +2,7 @@ ** System.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/TFM.cpp b/dviware/dvisvgm/src/TFM.cpp index a5b88f180d..c29de267bb 100644 --- a/dviware/dvisvgm/src/TFM.cpp +++ b/dviware/dvisvgm/src/TFM.cpp @@ -2,7 +2,7 @@ ** TFM.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/TFM.hpp b/dviware/dvisvgm/src/TFM.hpp index ad242ad258..5e968ff201 100644 --- a/dviware/dvisvgm/src/TFM.hpp +++ b/dviware/dvisvgm/src/TFM.hpp @@ -2,7 +2,7 @@ ** TFM.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/TensorProductPatch.cpp b/dviware/dvisvgm/src/TensorProductPatch.cpp index 6a334b1711..20c1e6aa93 100644 --- a/dviware/dvisvgm/src/TensorProductPatch.cpp +++ b/dviware/dvisvgm/src/TensorProductPatch.cpp @@ -2,7 +2,7 @@ ** TensorProductPatch.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -147,10 +147,10 @@ DPair TensorProductPatch::valueAt (double u, double v) const { // compute tensor product DPair p[4]; for (int i=0; i < 4; i++) { - Bezier bezier(_points[i][0], _points[i][1], _points[i][2], _points[i][3]); + CubicBezier bezier(_points[i][0], _points[i][1], _points[i][2], _points[i][3]); p[i] = bezier.valueAt(u); } - Bezier bezier(p[0], p[1], p[2], p[3]); + CubicBezier bezier(p[0], p[1], p[2], p[3]); return bezier.valueAt(v); } @@ -224,7 +224,7 @@ GraphicsPath<double> TensorProductPatch::getBoundaryPath () const { * runs "vertically" from P(u,0) to P(u,1) through the patch P. * @param[in] u "horizontal" parameter in the range from 0 to 1 * @param[out] bezier the resulting Bézier curve */ -void TensorProductPatch::verticalCurve (double u, Bezier &bezier) const { +void TensorProductPatch::verticalCurve (double u, CubicBezier &bezier) const { // check for simple cases (boundary curves) first if (u == 0) bezier.setPoints(_points[0][0], _points[1][0], _points[2][0], _points[3][0]); @@ -234,7 +234,7 @@ void TensorProductPatch::verticalCurve (double u, Bezier &bezier) const { // compute "inner" curve DPair p[4]; for (int i=0; i < 4; i++) { - Bezier bezier(_points[i][0], _points[i][1], _points[i][2], _points[i][3]); + CubicBezier bezier(_points[i][0], _points[i][1], _points[i][2], _points[i][3]); p[i] = bezier.valueAt(u); } bezier.setPoints(p[0], p[1], p[2], p[3]); @@ -246,7 +246,7 @@ void TensorProductPatch::verticalCurve (double u, Bezier &bezier) const { * runs "horizontally" from P(0,v) to P(1,v) through the patch P. * @param[in] v "vertical" parameter in the range from 0 to 1 * @param[out] bezier the resulting Bézier curve */ -void TensorProductPatch::horizontalCurve (double v, Bezier &bezier) const { +void TensorProductPatch::horizontalCurve (double v, CubicBezier &bezier) const { // check for simple cases (boundary curves) first if (v == 0) bezier.setPoints(_points[0][0], _points[0][1], _points[0][2], _points[0][3]); @@ -256,7 +256,7 @@ void TensorProductPatch::horizontalCurve (double v, Bezier &bezier) const { // compute "inner" curve DPair p[4]; for (int i=0; i < 4; i++) { - Bezier bezier(_points[0][i], _points[1][i], _points[2][i], _points[3][i]); + CubicBezier bezier(_points[0][i], _points[1][i], _points[2][i], _points[3][i]); p[i] = bezier.valueAt(v); } bezier.setPoints(p[0], p[1], p[2], p[3]); @@ -293,10 +293,10 @@ void TensorProductPatch::subpatch (double u1, double u2, double v1, double v2, T DPair TensorProductPatch::blossomValue (double u1, double u2, double u3, double v1, double v2, double v3) const { DPair p[4]; for (int i=0; i < 4; i++) { - Bezier bezier(_points[i][0], _points[i][1], _points[i][2], _points[i][3]); + CubicBezier bezier(_points[i][0], _points[i][1], _points[i][2], _points[i][3]); p[i] = bezier.blossomValue(u1, u2, u3); } - Bezier bezier(p[0], p[1], p[2], p[3]); + CubicBezier bezier(p[0], p[1], p[2], p[3]); return bezier.blossomValue(v1, v2, v3); } @@ -313,10 +313,10 @@ static inline double snap (double x) { /** Computes a single row of segments approximating the patch region between v1 and v1+inc. */ -void TensorProductPatch::approximateRow (double v1, double inc, bool overlap, double delta, const vector<Bezier> &vbeziers, Callback &callback) const { +void TensorProductPatch::approximateRow (double v1, double inc, bool overlap, double delta, const vector<CubicBezier> &vbeziers, Callback &callback) const { double v2 = snap(v1+inc); double ov2 = (overlap && v2 < 1) ? snap(v2+inc) : v2; - Bezier hbezier1, hbezier2; + CubicBezier hbezier1, hbezier2; horizontalCurve(v1, hbezier1); horizontalCurve(ov2, hbezier2); double u1 = 0; @@ -324,10 +324,10 @@ void TensorProductPatch::approximateRow (double v1, double inc, bool overlap, do double u2 = snap(u1+inc); double ou2 = (overlap && u2 < 1) ? snap(u2+inc) : u2; // compute segment boundaries - Bezier b1(hbezier1, u1, ou2); - Bezier b2(vbeziers[i + (overlap && i < vbeziers.size()-1 ? 1 : 0)], v1, ov2); - Bezier b3(hbezier2, u1, ou2); - Bezier b4(vbeziers[i-1], v1, ov2); + CubicBezier b1(hbezier1, u1, ou2); + CubicBezier b2(vbeziers[i + (overlap && i < vbeziers.size()-1 ? 1 : 0)], v1, ov2); + CubicBezier b3(hbezier2, u1, ou2); + CubicBezier b4(vbeziers[i-1], v1, ov2); GraphicsPath<double> path; path.moveto(b1.point(0)); if (inc > delta) { @@ -366,7 +366,7 @@ void TensorProductPatch::approximate (int gridsize, bool overlap, double delta, else { const double inc = 1.0/gridsize; // collect curves dividing the patch into several columns (curved vertical stripes) - vector<Bezier> vbeziers(gridsize+1); + vector<CubicBezier> vbeziers(gridsize+1); double u=0; for (int i=0; i <= gridsize; i++) { verticalCurve(u, vbeziers[i]); @@ -384,7 +384,7 @@ void TensorProductPatch::approximate (int gridsize, bool overlap, double delta, BoundingBox TensorProductPatch::getBBox () const { BoundingBox bbox; - Bezier bezier; + CubicBezier bezier; for (int i=0; i <= 1; i++) { horizontalCurve(i, bezier); bbox.embed(bezier.getBBox()); @@ -398,10 +398,10 @@ BoundingBox TensorProductPatch::getBBox () const { #if 0 void TensorProductPatch::approximate (int gridsize, Callback &callback) const { const double inc = 1.0/gridsize; - Bezier ubezier0; verticalCurve(0, ubezier0); - Bezier ubezier1; verticalCurve(1, ubezier1); - Bezier vbezier0; horizontalCurve(0, vbezier0); - Bezier vbezier1; horizontalCurve(1, vbezier1); + CubicBezier ubezier0; verticalCurve(0, ubezier0); + CubicBezier ubezier1; verticalCurve(1, ubezier1); + CubicBezier vbezier0; horizontalCurve(0, vbezier0); + CubicBezier vbezier1; horizontalCurve(1, vbezier1); for (double v1=0; v1 < 1; v1=snap(v1+inc)) { double v2 = snap(v1+inc); DPair p0 = valueAt(0, v1); @@ -423,25 +423,25 @@ void TensorProductPatch::approximate (int gridsize, Callback &callback) const { if (v1 > 0) path.lineto(p1); else { - Bezier bezier(vbezier0, u1, u2); + CubicBezier bezier(vbezier0, u1, u2); path.cubicto(bezier.point(1), bezier.point(2), bezier.point(3)); } if (u2 < 1) path.lineto(p3); else { - Bezier bezier(ubezier1, v1, v2); + CubicBezier bezier(ubezier1, v1, v2); path.cubicto(bezier.point(1), bezier.point(2), bezier.point(3)); } if (v2 < 1) path.lineto(p2); else { - Bezier bezier(vbezier1, u1, u2); + CubicBezier bezier(vbezier1, u1, u2); path.cubicto(bezier.point(2), bezier.point(1), bezier.point(0)); } if (u1 > 0) path.closepath(); else { - Bezier bezier(ubezier0, v1, v2); + CubicBezier bezier(ubezier0, v1, v2); path.cubicto(bezier.point(2), bezier.point(1), bezier.point(0)); path.closepath(); } @@ -472,10 +472,10 @@ DPair CoonsPatch::valueAt (double u, double v) const { // Compute the value of P(u,v) using the Coons equation rather than the // tensor product since the "inner" control points of the tensor matrix // might not be set yet. - Bezier bezier1(_points[3][0], _points[3][1], _points[3][2], _points[3][3]); - Bezier bezier2(_points[0][0], _points[0][1], _points[0][2], _points[0][3]); - Bezier bezier3(_points[3][0], _points[2][0], _points[1][0], _points[0][0]); - Bezier bezier4(_points[3][3], _points[2][3], _points[1][3], _points[0][3]); + CubicBezier bezier1(_points[3][0], _points[3][1], _points[3][2], _points[3][3]); + CubicBezier bezier2(_points[0][0], _points[0][1], _points[0][2], _points[0][3]); + CubicBezier bezier3(_points[3][0], _points[2][0], _points[1][0], _points[0][0]); + CubicBezier bezier4(_points[3][3], _points[2][3], _points[1][3], _points[0][3]); DPair ph = bezier1.valueAt(u)*(1-v) + bezier2.valueAt(u)*v; DPair pv = bezier3.valueAt(v)*(1-u) + bezier4.valueAt(v)*u; DPair pc = (_points[3][0]*(1-u) + _points[3][3]*u)*(1-v) + (_points[0][0]*(1-u) + _points[0][3]*u)*v; diff --git a/dviware/dvisvgm/src/TensorProductPatch.hpp b/dviware/dvisvgm/src/TensorProductPatch.hpp index 47a7d840a5..7150d189c8 100644 --- a/dviware/dvisvgm/src/TensorProductPatch.hpp +++ b/dviware/dvisvgm/src/TensorProductPatch.hpp @@ -2,7 +2,7 @@ ** TensorProductPatch.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -49,8 +49,8 @@ class TensorProductPatch : public ShadingPatch { virtual DPair valueAt (double u, double v) const; Color colorAt (double u, double v) const; Color averageColor () const override; - void horizontalCurve (double v, Bezier &bezier) const; - void verticalCurve (double u, Bezier &bezier) const; + void horizontalCurve (double v, CubicBezier &bezier) const; + void verticalCurve (double u, CubicBezier &bezier) const; GraphicsPath<double> getBoundaryPath () const override; void subpatch (double u1, double u2, double v1, double v2, TensorProductPatch &patch) const; DPair blossomValue (double u1, double u2, double u3, double v1, double v2, double v3) const; @@ -62,7 +62,7 @@ class TensorProductPatch : public ShadingPatch { protected: Color averageColor (const Color &c1, const Color &c2, const Color &c3, const Color &c4) const; - void approximateRow (double v1, double inc, bool overlap, double delta, const std::vector<Bezier> &beziers, Callback &callback) const; + void approximateRow (double v1, double inc, bool overlap, double delta, const std::vector<CubicBezier> &beziers, Callback &callback) const; void setFirstMatrixColumn (const DPair source[4], bool reverse); void setFirstMatrixColumn (DPair source[4][4], int col, bool reverse); diff --git a/dviware/dvisvgm/src/Terminal.cpp b/dviware/dvisvgm/src/Terminal.cpp index 1b5405a342..e3b3e4c13a 100644 --- a/dviware/dvisvgm/src/Terminal.cpp +++ b/dviware/dvisvgm/src/Terminal.cpp @@ -2,7 +2,7 @@ ** Terminal.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/Terminal.hpp b/dviware/dvisvgm/src/Terminal.hpp index e1a0ce38ad..897d2d8c03 100644 --- a/dviware/dvisvgm/src/Terminal.hpp +++ b/dviware/dvisvgm/src/Terminal.hpp @@ -2,7 +2,7 @@ ** Terminal.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/ToUnicodeMap.cpp b/dviware/dvisvgm/src/ToUnicodeMap.cpp index a29911c173..4414223572 100644 --- a/dviware/dvisvgm/src/ToUnicodeMap.cpp +++ b/dviware/dvisvgm/src/ToUnicodeMap.cpp @@ -2,7 +2,7 @@ ** ToUnicodeMap.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/ToUnicodeMap.hpp b/dviware/dvisvgm/src/ToUnicodeMap.hpp index 5db95e1f38..447ca46232 100644 --- a/dviware/dvisvgm/src/ToUnicodeMap.hpp +++ b/dviware/dvisvgm/src/ToUnicodeMap.hpp @@ -2,7 +2,7 @@ ** ToUnicodeMap.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/TpicSpecialHandler.cpp b/dviware/dvisvgm/src/TpicSpecialHandler.cpp index 220accdcb4..86b49b1d20 100644 --- a/dviware/dvisvgm/src/TpicSpecialHandler.cpp +++ b/dviware/dvisvgm/src/TpicSpecialHandler.cpp @@ -2,7 +2,7 @@ ** TpicSpecialHandler.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/TpicSpecialHandler.hpp b/dviware/dvisvgm/src/TpicSpecialHandler.hpp index a13613087d..e8a56649f8 100644 --- a/dviware/dvisvgm/src/TpicSpecialHandler.hpp +++ b/dviware/dvisvgm/src/TpicSpecialHandler.hpp @@ -2,7 +2,7 @@ ** TpicSpecialHandler.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/TriangularPatch.cpp b/dviware/dvisvgm/src/TriangularPatch.cpp index 41444b8b30..a5867ac9f8 100644 --- a/dviware/dvisvgm/src/TriangularPatch.cpp +++ b/dviware/dvisvgm/src/TriangularPatch.cpp @@ -2,7 +2,7 @@ ** TriangularPatch.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/TriangularPatch.hpp b/dviware/dvisvgm/src/TriangularPatch.hpp index fc9c15e7fd..1ea03421a5 100644 --- a/dviware/dvisvgm/src/TriangularPatch.hpp +++ b/dviware/dvisvgm/src/TriangularPatch.hpp @@ -2,7 +2,7 @@ ** TriangularPatch.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/TrueTypeFont.cpp b/dviware/dvisvgm/src/TrueTypeFont.cpp deleted file mode 100644 index b642c169f4..0000000000 --- a/dviware/dvisvgm/src/TrueTypeFont.cpp +++ /dev/null @@ -1,175 +0,0 @@ -/************************************************************************* -** TrueTypeFont.cpp ** -** ** -** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** -** ** -** This program is free software; you can redistribute it and/or ** -** modify it under the terms of the GNU General Public License as ** -** published by the Free Software Foundation; either version 3 of ** -** the License, or (at your option) any later version. ** -** ** -** This program is distributed in the hope that it will be useful, but ** -** WITHOUT ANY WARRANTY; without even the implied warranty of ** -** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** -** GNU General Public License for more details. ** -** ** -** You should have received a copy of the GNU General Public License ** -** along with this program; if not, see <http://www.gnu.org/licenses/>. ** -*************************************************************************/ - -#include <iterator> -#include <sstream> -#include <woff2/encode.h> -#include <zlib.h> -#include "StreamReader.hpp" -#include "StreamWriter.hpp" -#include "TrueTypeFont.hpp" -#include "utility.hpp" - -using namespace std; - - -/** Reads the font data from a TTF file. - * OTF specification: https://www.microsoft.com/typography/otspec/otff.htm - * @param[in] fname name/path of file to read - * @return true on success */ -bool TrueTypeFont::read (const string &fname) { - _tableRecords.clear(); - _buffer = util::read_file_contents(fname); - if (_buffer.empty()) - return false; - istringstream iss(_buffer); - StreamReader reader(iss); - _version = reader.readUnsigned(4); - uint16_t numTables = reader.readUnsigned(2); - if (numTables == 0 || _buffer.size() <= 12u+16u*numTables) - return false; - - // read table records - reader.seek(12); // skip searchRange, entrySelector, and rangeShift - for (uint16_t i=0; i < numTables; i++) { - uint32_t tag = reader.readUnsigned(4); - uint32_t checksum = reader.readUnsigned(4); - uint32_t offset = reader.readUnsigned(4); - uint32_t length = reader.readUnsigned(4); - if ((offset | length) > _buffer.size() || offset+length > _buffer.size()) - return false; - TTFTableRecord record = {tag, checksum, length, reinterpret_cast<const uint8_t*>(_buffer.data())+offset}; - _tableRecords.push_back(std::move(record)); - } - return true; -} - - -/** Compresses the data of the referenced TTF table and updated the record data accordingly. - * @return true if the data was compressed */ -bool TrueTypeFont::WOFFTableRecord::compressTableData () { - if (ttfRecord.size < 16) - return false; - uLong compressedSize = compressBound(ttfRecord.size); - compressedData.resize(compressedSize); - // Compress with zlib for now. We could also use zopfli for slightly better but much slower compression. - // Only use the compressed data if it actually leads to a size reduction. Otherwise, use the original table data. - if (compress2(compressedData.data(), &compressedSize, ttfRecord.data, ttfRecord.size, Z_BEST_COMPRESSION) != Z_OK - || compressedSize >= ttfRecord.size) { - compressedData.clear(); - return false; - } - size = compressedSize; - data = compressedData.data(); - return true; -} - - -/** Writes font data in WOFF format to a given output stream. - WOFF specifiction: https://www.w3.org/TR/WOFF */ -void TrueTypeFont::writeWOFF (ostream &os) const { - // compute WOFF table records first - vector<WOFFTableRecord> woffRecords; - uint32_t woffSize = static_cast<uint32_t>(44 + 20*_tableRecords.size()); - uint32_t ttfSize = static_cast<uint32_t>(12 + 16*_tableRecords.size()); - for (const TTFTableRecord &ttfRecord : _tableRecords) { - WOFFTableRecord woffRecord(woffSize, ttfRecord); - woffRecord.compressTableData(); - woffSize += woffRecord.paddedSize(); - ttfSize += ttfRecord.paddedSize(); - woffRecords.push_back(std::move(woffRecord)); - } - // write WOFF header - StreamWriter writer(os); - writer.writeUnsigned(0x774F4646, 4); // "WOFF" - writer.writeUnsigned(_version, 4); // version of contained TTF font - writer.writeUnsigned(woffSize, 4); // total length of WOFF file - writer.writeUnsigned(_tableRecords.size(), 2); // number of tables - writer.writeBytes(0, 2); // reserved - writer.writeUnsigned(ttfSize, 4); // size of uncompressed TTF data - writer.writeBytes(0, 4); // WOFF version (not required) - writer.writeBytes(0, 12); // offset, compressed and uncompressed size of metadata block - writer.writeBytes(0, 8); // offset and size of private data block - - // write WOFF table directory - for (const WOFFTableRecord &woffRecord : woffRecords) { - writer.writeUnsigned(woffRecord.ttfRecord.tag, 4); - writer.writeUnsigned(woffRecord.offset, 4); - writer.writeUnsigned(woffRecord.size, 4); - writer.writeUnsigned(woffRecord.ttfRecord.size, 4); - writer.writeUnsigned(woffRecord.ttfRecord.checksum, 4); - } - - // write WOFF tables - for (const WOFFTableRecord &woffRecord : woffRecords) { - writer.writeBytes(woffRecord.data, woffRecord.size); - size_t padding = woffRecord.paddedSize()-woffRecord.size; - writer.writeBytes(0, padding); - } -} - - -void TrueTypeFont::writeWOFF (const string &fname) const { - ofstream ofs(fname, ios::binary); - writeWOFF(ofs); -} - - -/** Puts the TrueType data in a WOFF2 container and writes the resulting data to a given stream. - * @param[out] os stream to write the WOFF2 data to - * @return true on success */ -bool TrueTypeFont::writeWOFF2 (ostream &os) const { - auto input_data = reinterpret_cast<const uint8_t*>(_buffer.data()); - size_t output_size = woff2::MaxWOFF2CompressedSize(input_data, _buffer.size()); - string output(output_size, 0); - auto output_data = reinterpret_cast<uint8_t*>(&output[0]); - woff2::WOFF2Params params; - if (woff2::ConvertTTFToWOFF2(input_data, _buffer.size(), output_data, &output_size, params)) { - output.resize(output_size); - copy(output.begin(), output.end(), ostream_iterator<uint8_t>(os)); - return true; - } - return false; -} - - -bool TrueTypeFont::writeWOFF2 (const string &fname) const { - ofstream ofs(fname, ios::binary); - return writeWOFF2(ofs); -} - - -/** Converts the numeric table tag (which represents a four-character ID) to a string. */ -string TrueTypeFont::TTFTableRecord::name () const { - string ret; - for (int i=24; i >= 0; i-= 8) - ret += static_cast<char>(tag >> i); - return ret; -} - - -uint32_t TrueTypeFont::TTFTableRecord::computeChecksum () const { - uint32_t sum=0; - auto startptr = reinterpret_cast<const uint32_t*>(data); - auto endptr = startptr + paddedSize()/sizeof(uint32_t); - while (startptr < endptr) - sum += *startptr++; - return sum; -} diff --git a/dviware/dvisvgm/src/TrueTypeFont.hpp b/dviware/dvisvgm/src/TrueTypeFont.hpp deleted file mode 100644 index cc00001147..0000000000 --- a/dviware/dvisvgm/src/TrueTypeFont.hpp +++ /dev/null @@ -1,74 +0,0 @@ -/************************************************************************* -** TrueTypeFont.hpp ** -** ** -** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** -** ** -** This program is free software; you can redistribute it and/or ** -** modify it under the terms of the GNU General Public License as ** -** published by the Free Software Foundation; either version 3 of ** -** the License, or (at your option) any later version. ** -** ** -** This program is distributed in the hope that it will be useful, but ** -** WITHOUT ANY WARRANTY; without even the implied warranty of ** -** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** -** GNU General Public License for more details. ** -** ** -** You should have received a copy of the GNU General Public License ** -** along with this program; if not, see <http://www.gnu.org/licenses/>. ** -*************************************************************************/ - -#ifndef TRUETYPEFONT_HPP -#define TRUETYPEFONT_HPP - -#include <istream> -#include <fstream> -#include <ostream> -#include <string> -#include <vector> -#include "MessageException.hpp" - - -class TrueTypeFont { - struct TTFTableRecord { - std::string name () const; - uint32_t paddedSize () const {return (size+3) & ~3;} - uint32_t computeChecksum () const; - uint32_t tag; ///< table tag - uint32_t checksum; ///< checksum of the table data - uint32_t size; ///< number of bytes in the table - const uint8_t *data; ///< points to the begin of the table - }; - - struct WOFFTableRecord { - WOFFTableRecord (uint32_t off, const TTFTableRecord &rec) : offset(off), size(rec.size), data(rec.data), ttfRecord(rec) {} - size_t paddedSize () const {return (size+3) & ~3;} - bool compressTableData (); - uint32_t offset; ///< file offset to first byte of the table - uint32_t size; ///< number of bytes in the table - const uint8_t *data; ///< points to the begin of the WOFF table - std::vector<uint8_t> compressedData; ///< compressed table data - const TTFTableRecord &ttfRecord; ///< corresponding TTF table record - }; - - public: - TrueTypeFont () : _version(0) {} - explicit TrueTypeFont (const std::string &fname) {read(fname);} - bool read (const std::string &fname); - void writeWOFF (std::ostream &os) const; - void writeWOFF (const std::string &fname) const; - bool writeWOFF2 (std::ostream &os) const; - bool writeWOFF2 (const std::string &fname) const; - - private: - uint32_t _version; ///< TTF version - std::string _buffer; ///< contents of TTF file - std::vector<TTFTableRecord> _tableRecords; -}; - - -struct TrueTypeFontException : public MessageException { - explicit TrueTypeFontException (const std::string &msg) : MessageException(msg) {} -}; - -#endif diff --git a/dviware/dvisvgm/src/Unicode.cpp b/dviware/dvisvgm/src/Unicode.cpp index 2293be0399..91b01e90a6 100644 --- a/dviware/dvisvgm/src/Unicode.cpp +++ b/dviware/dvisvgm/src/Unicode.cpp @@ -2,7 +2,7 @@ ** Unicode.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -52,9 +52,12 @@ bool Unicode::isValidCodepoint (uint32_t c) { /** Returns a valid Unicode point for the given character code. Character codes * that are invalid code points because the XML standard forbids or discourages - * their usage, are mapped to the Private Use Zone U+E000-U+F8FF. */ -uint32_t Unicode::charToCodepoint (uint32_t c) { - uint32_t ranges[] = { + * their usage, are mapped to the Private Use Zone U+E000-U+F8FF. + * @param[in] c character code to map + * @param[in] permitSpace if true, space characters are treated as allowed code points + * @return the code point */ +uint32_t Unicode::charToCodepoint (uint32_t c, bool permitSpace) { + static uint32_t ranges[] = { 0x0000, 0x0020, 0xe000, // basic control characters + space 0x007f, 0x009f, 0xe021, // use of control characters is discouraged by the XML standard 0x202a, 0x202e, 0xe042, // bidi control characters @@ -78,9 +81,12 @@ uint32_t Unicode::charToCodepoint (uint32_t c) { 0xffffe, 0xfffff, 0xe885, 0x10fffe, 0x10ffff, 0xe887 }; - for (size_t i=0; i < sizeof(ranges)/sizeof(unsigned) && c >= ranges[i]; i+=3) - if (c <= ranges[i+1]) - return ranges[i+2]+c-ranges[i]; + if (!permitSpace || c != 0x20) { + for (size_t i=0; i < sizeof(ranges)/sizeof(uint32_t) && c >= ranges[i]; i+=3) { + if (c <= ranges[i+1]) + return ranges[i+2]+c-ranges[i]; + } + } return c; } @@ -114,6 +120,32 @@ string Unicode::utf8 (int32_t cp) { } +uint32_t Unicode::utf8ToCodepoint (const string &utf8) { + auto len = utf8.length(); + if (len > 0) { + unsigned char c0 = utf8[0]; + if (c0 >= 0 && c0 <= 127) + return c0; + if (len > 1) { + unsigned char c1 = utf8[1]; + if (c0 >= 0xC0 && c0 <= 0xDF) + return ((c0-0xC0) << 6) + (c1-0x80); + if (len > 2 && (c0 != 0xED || (c1 & 0xA0) != 0xA0)) { + unsigned char c2 = utf8[2]; + if (c0 >= 0xE0 && c0 <= 0xEF) + return ((c0-0xE0) << 12) + ((c1-0x80) << 6) + (c2-0x80); + if (len > 3) { + unsigned char c3 = utf8[3]; + if (c0 >= 0xF0 && c0 <= 0xF7) + return ((c0-0xF0) << 18) + ((c1-0x80) << 12) + ((c2-0x80) << 6) + (c3-0x80); + } + } + } + } + return 0; +} + + /** Converts a surrogate pair to its code point. * @param[in] high high-surrogate value (upper 16 bits) * @param[in] low low-surrogate value (lower 16 bits) @@ -148,6 +180,43 @@ uint32_t Unicode::toSurrogate (uint32_t cp) { } +uint32_t Unicode::toLigature (const string &nonlig) { + struct Ligature { + const char *nonlig; + uint32_t lig; + } ligatures[39] = { + {u8"AA", 0xA732}, {u8"aa", 0xA733}, + {u8"AE", 0x00C6}, {u8"ae", 0x00E6}, + {u8"AO", 0xA734}, {u8"ao", 0xA735}, + {u8"AU", 0xA736}, {u8"au", 0xA737}, + {u8"AV", 0xA738}, {u8"av", 0xA739}, + {u8"AY", 0xA73C}, {u8"ay", 0xA73D}, + {u8"et", 0x1F670}, + {u8"ff", 0xFB00}, + {u8"ffi", 0xFB03}, + {u8"ffl", 0xFB04}, + {u8"fi", 0xFB01}, + {u8"fl", 0xFB02}, + {u8"Hv", 0x01F6}, {u8"hv", 0x0195}, + {u8"lb", 0x2114}, + {u8"lL", 0x1EFA}, {u8"ll", 0x1EFB}, + {u8"OE", 0x0152}, {u8"oe", 0x0153}, + {u8"OO", 0xA74E}, {u8"oo", 0xA74F}, + {u8"OO", 0xA74E}, + {u8"\u0254e", 0xAB62}, + {u8"\u017Fs", 0x1E9E}, {u8"\u017Az", 0x00DF}, + {u8"Tz", 0xA728}, {u8"tz", 0xA729}, + {u8"ue", 0x1D6B}, + {u8"uo", 0xAB63}, + {u8"VV", 0x0057}, {u8"tz", 0x0077}, + {u8"VY", 0xA760}, {u8"tz", 0xA761}, + }; + auto it = find_if(begin(ligatures), end(ligatures), [&nonlig](const Ligature &l) { + return l.nonlig == nonlig; + }); + return it != end(ligatures) ? it->lig : 0; +} + #include "AGLTable.hpp" /** Tries to extract the codepoint from AGL character names like "uni1234" or "u1234". diff --git a/dviware/dvisvgm/src/Unicode.hpp b/dviware/dvisvgm/src/Unicode.hpp index 75d0d0e2db..1211887bb6 100644 --- a/dviware/dvisvgm/src/Unicode.hpp +++ b/dviware/dvisvgm/src/Unicode.hpp @@ -2,7 +2,7 @@ ** Unicode.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -25,11 +25,13 @@ struct Unicode { static bool isValidCodepoint (uint32_t code); - static uint32_t charToCodepoint (uint32_t c); + static uint32_t charToCodepoint (uint32_t c, bool permitSpace=false); static std::string utf8 (int32_t c); + static uint32_t utf8ToCodepoint (const std::string &utf8); static uint32_t fromSurrogate (uint32_t high, uint32_t low); static uint32_t fromSurrogate (uint32_t cp); static uint32_t toSurrogate (uint32_t cp); + static uint32_t toLigature (const std::string &nonlig); static int32_t aglNameToCodepoint (const std::string &name); }; diff --git a/dviware/dvisvgm/src/VFActions.hpp b/dviware/dvisvgm/src/VFActions.hpp index 150a551021..6ab3c1e854 100644 --- a/dviware/dvisvgm/src/VFActions.hpp +++ b/dviware/dvisvgm/src/VFActions.hpp @@ -2,7 +2,7 @@ ** VFActions.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/VFReader.cpp b/dviware/dvisvgm/src/VFReader.cpp index 7467b78d6b..76fabb4994 100644 --- a/dviware/dvisvgm/src/VFReader.cpp +++ b/dviware/dvisvgm/src/VFReader.cpp @@ -2,7 +2,7 @@ ** VFReader.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/VFReader.hpp b/dviware/dvisvgm/src/VFReader.hpp index 9d81745f7e..fb397898f6 100644 --- a/dviware/dvisvgm/src/VFReader.hpp +++ b/dviware/dvisvgm/src/VFReader.hpp @@ -2,7 +2,7 @@ ** VFReader.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/VectorIterator.hpp b/dviware/dvisvgm/src/VectorIterator.hpp index 49390c945a..486402ca62 100644 --- a/dviware/dvisvgm/src/VectorIterator.hpp +++ b/dviware/dvisvgm/src/VectorIterator.hpp @@ -2,7 +2,7 @@ ** VectorIterator.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/VectorStream.hpp b/dviware/dvisvgm/src/VectorStream.hpp index a8f2df5b19..04e7a99a8f 100644 --- a/dviware/dvisvgm/src/VectorStream.hpp +++ b/dviware/dvisvgm/src/VectorStream.hpp @@ -2,7 +2,7 @@ ** VectorStream.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/XMLDocument.cpp b/dviware/dvisvgm/src/XMLDocument.cpp index fc4651012c..ddaa3daa0d 100644 --- a/dviware/dvisvgm/src/XMLDocument.cpp +++ b/dviware/dvisvgm/src/XMLDocument.cpp @@ -2,7 +2,7 @@ ** XMLDocument.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/XMLDocument.hpp b/dviware/dvisvgm/src/XMLDocument.hpp index e766580bc4..7a2e06fd01 100644 --- a/dviware/dvisvgm/src/XMLDocument.hpp +++ b/dviware/dvisvgm/src/XMLDocument.hpp @@ -2,7 +2,7 @@ ** XMLDocument.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/XMLNode.cpp b/dviware/dvisvgm/src/XMLNode.cpp index 0f2602f8f0..d5342e4d1e 100644 --- a/dviware/dvisvgm/src/XMLNode.cpp +++ b/dviware/dvisvgm/src/XMLNode.cpp @@ -2,7 +2,7 @@ ** XMLNode.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -63,6 +63,14 @@ unique_ptr<XMLNode> XMLNode::removeNext () { return oldnext; } + +XMLElement* XMLNode::nextElement () const { + for (XMLNode *node = next(); node; node = node->next()) + if (node->toElement()) + return node->toElement(); + return nullptr; +} + ///////////////////////////////////////////////////////////////////// XMLElement::XMLElement (string name) : _name(std::move(name)) { @@ -375,7 +383,8 @@ ostream& XMLElement::write (ostream &os) const { if (attrib.name.front() != '@') os << attrib.name << "='" << attrib.value << '\''; else { - os << attrib.name.substr(1) << "='"; + bool keep = (attrib.name.size() > 1 && attrib.name[1] == '@'); + os << attrib.name.substr(keep ? 2 : 1) << "='"; auto pos = attrib.value.find("base64,"); if (pos == string::npos) os << attrib.value; @@ -387,7 +396,7 @@ ostream& XMLElement::write (ostream &os) const { os << '\n'; util::base64_copy(ifs, os, 200); ifs.close(); - if (!KEEP_ENCODED_FILES) + if (!KEEP_ENCODED_FILES && !keep) FileSystem::remove(fname); } } diff --git a/dviware/dvisvgm/src/XMLNode.hpp b/dviware/dvisvgm/src/XMLNode.hpp index fc34f05db8..829ea7c81c 100644 --- a/dviware/dvisvgm/src/XMLNode.hpp +++ b/dviware/dvisvgm/src/XMLNode.hpp @@ -2,7 +2,7 @@ ** XMLNode.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -62,6 +62,7 @@ class XMLNode { XMLNode* parent () const {return _parent;} XMLNode* prev () const {return _prev;} XMLNode* next () const {return _next.get();} + XMLElement* nextElement () const; static bool KEEP_ENCODED_FILES; diff --git a/dviware/dvisvgm/src/XMLParser.cpp b/dviware/dvisvgm/src/XMLParser.cpp index 166a49e0cf..c1da5373a6 100644 --- a/dviware/dvisvgm/src/XMLParser.cpp +++ b/dviware/dvisvgm/src/XMLParser.cpp @@ -2,7 +2,7 @@ ** XMLParser.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -19,29 +19,90 @@ *************************************************************************/ #include "InputReader.hpp" -#include "GraphicsPathParser.hpp" #include "XMLParser.hpp" using namespace std; +XMLElement* XMLParser::setRootElement (XMLElement *root) { + _elementStack.clear(); + if (root) + _elementStack.push_back(root); + else { + _root = util::make_unique<XMLElement>("root"); + _elementStack.push_back(_root.get()); + } + return _elementStack.back(); +} + + +/** Parses an XML fragment from an input stream. */ +void XMLParser::parse (istream &is) { + while (is) { + string buf; + buf.resize(1024); + is.read(&buf[0], 1024); + buf.resize(is.gcount()); + parse(std::move(buf)); + } + finish(); +} + + +static string::size_type find_end_of_tag (const string &str, string::size_type startpos) { + char attrval_delim = 0; + bool expect_attrval = false; + for (auto i=startpos; i < str.length(); i++) { + if (attrval_delim) { // inside attrubute value? + if (str[i] == attrval_delim) // end of attribute value? + attrval_delim = 0; + } + else if (str[i] == '>') + return i; + else if (str[i] == '"' || str[i] == '\'') { // start of attribute value? + if (expect_attrval) + attrval_delim = str[i]; + else { + ostringstream oss; + oss << "misplaced " << str[i] << " inside tag"; + throw XMLParserException(oss.str()); + } + } + else if (str[i] == '=') { + expect_attrval = true; + continue; + } + else if (str[i] == '<') + throw XMLParserException("invalid '<' inside tag"); + expect_attrval = false; + } + return string::npos; +} + + /** Parses a fragment of XML code, creates corresponding XML nodes and adds them * to an SVG tree. The code may be split and processed by several calls of this * function. Incomplete chunks that can't be processed yet are stored and picked * up again together with the next incoming XML fragment. If a call of this function * is supposed to finish the parsing of an XML subtree, parameter 'finish' must be set. * @param[in] xml XML fragment to parse - * @param[in] svgTree the parsed nodes are added to this SVG tree * @param[in] finish if true, no more XML is expected and parsing is finished */ -void XMLParser::parse (const string &xml, SVGTree &svgTree, bool finish) { +void XMLParser::parse (string xml, bool finish) { + if (_elementStack.empty()) // no root element set? + return; // collect/extract an XML fragment that only contains complete tags // incomplete tags are held back - _xmlbuf += xml; + if (_xmlbuf.empty()) + _xmlbuf.assign(std::move(xml)); + else + _xmlbuf.append(xml); string::size_type left=0; try { while (left != string::npos) { auto right = _xmlbuf.find('<', left); - if (left < right && left < _xmlbuf.length()) // plain text found? - (svgTree.*_append)(util::make_unique<XMLText>(_xmlbuf.substr(left, right - left))); + if (left < right && left < _xmlbuf.length()) {// plain text found? + string text = (right == string::npos ? _xmlbuf.substr(left) : _xmlbuf.substr(left, right-left)); + appendNode(util::make_unique<XMLText>(std::move(text))); + } if (right != string::npos) { left = right; if (_xmlbuf.compare(left, 9, "<![CDATA[") == 0) { @@ -50,7 +111,7 @@ void XMLParser::parse (const string &xml, SVGTree &svgTree, bool finish) { if (finish) throw XMLParserException("expected ']]>' at end of CDATA block"); break; } - (svgTree.*_append)(util::make_unique<XMLCData>(_xmlbuf.substr(left + 9, right - left - 9))); + appendNode(util::make_unique<XMLCData>(_xmlbuf.substr(left+9, right-left-9))); right += 2; } else if (_xmlbuf.compare(left, 4, "<!--") == 0) { @@ -59,7 +120,7 @@ void XMLParser::parse (const string &xml, SVGTree &svgTree, bool finish) { if (finish) throw XMLParserException("expected '-->' at end of comment"); break; } - (svgTree.*_append)(util::make_unique<XMLComment>(_xmlbuf.substr(left + 4, right - left - 4))); + appendNode(util::make_unique<XMLComment>(_xmlbuf.substr(left+4, right-left-4))); right += 2; } else if (_xmlbuf.compare(left, 2, "<?") == 0) { @@ -68,7 +129,7 @@ void XMLParser::parse (const string &xml, SVGTree &svgTree, bool finish) { if (finish) throw XMLParserException("expected '?>' at end of processing instruction"); break; } - (svgTree.*_append)(util::make_unique<XMLText>(_xmlbuf.substr(left, right - left + 2))); + appendNode(util::make_unique<XMLText>(_xmlbuf.substr(left, right-left+2))); right++; } else if (_xmlbuf.compare(left, 2, "</") == 0) { @@ -77,15 +138,15 @@ void XMLParser::parse (const string &xml, SVGTree &svgTree, bool finish) { if (finish) throw XMLParserException("missing '>' at end of closing XML tag"); break; } - closeElement(_xmlbuf.substr(left+2, right-left-2), svgTree); + closeElement(_xmlbuf.substr(left+2, right-left-2)); } else { - right = _xmlbuf.find('>', left+1); + right = find_end_of_tag(_xmlbuf, left+1); if (right == string::npos) { if (finish) throw XMLParserException("missing '>' or '/>' at end of opening XML tag"); break; } - openElement(_xmlbuf.substr(left+1, right-left-1), svgTree); + openElement(_xmlbuf.substr(left+1, right-left-1)); } } left = right; @@ -104,79 +165,93 @@ void XMLParser::parse (const string &xml, SVGTree &svgTree, bool finish) { } +void XMLParser::appendNode (unique_ptr<XMLNode> node) { + context()->append(std::move(node)); +} + + +XMLElement* XMLParser::finishPushContext (unique_ptr<XMLElement> elem) { + XMLElement *elemPtr = elem.get(); + context()->append(std::move(elem)); + return elemPtr; +} + + /** Processes an opening element tag. * @param[in] tag tag without leading and trailing angle brackets */ -void XMLParser::openElement (const string &tag, SVGTree &svgTree) { +XMLElement* XMLParser::openElement (const string &tag) { StringInputBuffer ib(tag); BufferInputReader ir(ib); string name = ir.getString("/ \t\n\r"); - bool isPathElement = (name == "path" || name == "svg:path"); ir.skipSpace(); - auto elemNode = util::make_unique<SVGElement>(name); + unique_ptr<XMLElement> elemNode{createElementPtr(name)}; map<string, string> attribs; if (ir.parseAttributes(attribs, true, "\"'")) { - for (const auto &attrpair : attribs) { - if (!isPathElement || attrpair.first != "d") - elemNode->addAttribute(attrpair.first, attrpair.second); - else { - try { - // parse and reformat path definition - auto path = GraphicsPathParser<double>().parse(attrpair.second); - ostringstream oss; - path.writeSVG(oss, SVGTree::RELATIVE_PATH_CMDS); - elemNode->addAttribute("d", oss.str()); - } - catch (const GraphicsPathParserException &e) { - throw XMLParserException(string("error in path data: ")+e.what()); - } - } - } + for (const auto &attrpair : attribs) + elemNode->addAttribute(attrpair.first, attrpair.second); } ir.skipSpace(); + XMLElement *elemPtr = elemNode.get(); if (ir.peek() == '/') // end of empty element tag - (svgTree.*_append)(std::move(elemNode)); - else if (ir.peek() < 0) { // end of opening tag - _nameStack.push_back(name); - (svgTree.*_pushContext)(std::move(elemNode)); - } + appendNode(std::move(elemNode)); + else if (ir.peek() < 0) // end of opening tag + _elementStack.push_back(finishPushContext(std::move(elemNode))); else throw XMLParserException("'>' or '/>' expected at end of opening tag <"+name); + if (_notifyElementOpened) + _notifyElementOpened(elemPtr); + if (ir.peek() == '/' && _notifyElementClosed) + _notifyElementClosed(elemPtr); + return elemPtr; } /** Processes a closing element tag. * @param[in] tag tag without leading and trailing angle brackets */ -void XMLParser::closeElement (const string &tag, SVGTree &svgTree) { +void XMLParser::closeElement (const string &tag) { StringInputBuffer ib(tag); BufferInputReader ir(ib); string name = ir.getString(" \t\n\r"); ir.skipSpace(); if (ir.peek() >= 0) throw XMLParserException("'>' expected at end of closing tag </"+name); - if (_nameStack.empty()) + if (_elementStack.size() <= 1) throw XMLParserException("spurious closing tag </" + name + ">"); - if (_nameStack.back() != name) - throw XMLParserException("expected </" + _nameStack.back() + "> but found </" + name + ">"); - (svgTree.*_popContext)(); - _nameStack.pop_back(); + if (_elementStack.back()->name() != name) + throw XMLParserException("expected </" + _elementStack.back()->name() + "> but found </" + name + ">"); + finishPopContext(); + if (_notifyElementClosed) + _notifyElementClosed(_elementStack.back()); + _elementStack.pop_back(); } /** Processes any remaining XML fragments, checks for missing closing tags, * and resets the parser state. */ -void XMLParser::finish (SVGTree &svgTree) { +void XMLParser::finish () { if (!_xmlbuf.empty()) { if (!_error) - parse("", svgTree, true); + parse("", true); _xmlbuf.clear(); } string tags; - while (!_nameStack.empty()) { - tags += "</"+_nameStack.back()+">, "; - _nameStack.pop_back(); + while (_elementStack.size() > 1) { + tags += "</" + _elementStack.back()->name() + ">, "; + _elementStack.pop_back(); } if (!tags.empty() && !_error) { - tags.resize(tags.length()-2); - throw XMLParserException("missing closing tag(s): "+tags); + tags.resize(tags.length()-2); // drop trailing ", " + throw XMLParserException("missing closing tag(s): " + tags); } } + + +XMLElement* XMLParser::createElementPtr (std::string name) const { + return new XMLElement(std::move(name)); +} + + +void XMLParser::setNotifyFuncs (NotifyFunc notifyElementOpened, NotifyFunc notifyElementClosed) { + _notifyElementOpened = std::move(notifyElementOpened); + _notifyElementClosed = std::move(notifyElementClosed); +} diff --git a/dviware/dvisvgm/src/XMLParser.hpp b/dviware/dvisvgm/src/XMLParser.hpp index 51f6a62544..7dbbcc25a4 100644 --- a/dviware/dvisvgm/src/XMLParser.hpp +++ b/dviware/dvisvgm/src/XMLParser.hpp @@ -2,7 +2,7 @@ ** XMLParser.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -21,38 +21,45 @@ #ifndef XMLPARSER_HPP #define XMLPARSER_HPP +#include <functional> #include <string> #include "MessageException.hpp" -#include "SVGTree.hpp" +#include "XMLNode.hpp" struct XMLParserException : MessageException { explicit XMLParserException (const std::string &msg) : MessageException(msg) {} }; class XMLParser { - using AppendFunc = void (SVGTree::*)(std::unique_ptr<XMLNode>); - using PushFunc = void (SVGTree::*)(std::unique_ptr<SVGElement>); - using PopFunc = void (SVGTree::*)(); - using NameStack = std::vector<std::string>; + using ElementStack = std::vector<XMLElement*>; + using NotifyFunc = std::function<void(XMLElement*)>; public: - XMLParser (AppendFunc append, PushFunc push, PopFunc pop) - : _append(append), _pushContext(push), _popContext(pop) {} - - void parse (const std::string &xml, SVGTree &svgTree, bool finish=false); - void finish (SVGTree &svgTree); + XMLParser () =default; + virtual ~XMLParser() {} + explicit XMLParser (XMLElement *root) {setRootElement(root);} + XMLElement* setRootElement (XMLElement *root); + void parse (std::istream &is); + void parse (std::string xml, bool finish=false); + void finish (); + void setNotifyFuncs (NotifyFunc notifyElementOpened, NotifyFunc notifyElementClosed); protected: - void openElement (const std::string &tag, SVGTree &svgTree); - void closeElement (const std::string &tag, SVGTree &svgTree); + XMLElement* context () {return _elementStack.back();} + virtual void appendNode (std::unique_ptr<XMLNode> node); + virtual XMLElement* finishPushContext (std::unique_ptr<XMLElement> elem); + virtual void finishPopContext () {} + virtual XMLElement* openElement (const std::string &tag); + virtual void closeElement (const std::string &tag); + virtual XMLElement* createElementPtr (std::string name) const; private: - AppendFunc _append; - PushFunc _pushContext; - PopFunc _popContext; std::string _xmlbuf; - NameStack _nameStack; ///< names of nested elements still missing a closing tag + std::unique_ptr<XMLElement> _root; ///< element holding the parsed nodes + ElementStack _elementStack; ///< elements not yet closed bool _error=false; + std::function<void(XMLElement*)> _notifyElementOpened; + std::function<void(XMLElement*)> _notifyElementClosed; }; #endif diff --git a/dviware/dvisvgm/src/XMLString.cpp b/dviware/dvisvgm/src/XMLString.cpp index ae489ea16c..53f8bc1de1 100644 --- a/dviware/dvisvgm/src/XMLString.cpp +++ b/dviware/dvisvgm/src/XMLString.cpp @@ -2,7 +2,7 @@ ** XMLString.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/XMLString.hpp b/dviware/dvisvgm/src/XMLString.hpp index 832ac43468..6f58756f19 100644 --- a/dviware/dvisvgm/src/XMLString.hpp +++ b/dviware/dvisvgm/src/XMLString.hpp @@ -2,7 +2,7 @@ ** XMLString.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/XXHashFunction.hpp b/dviware/dvisvgm/src/XXHashFunction.hpp index ecc2fd5f2b..f93ae3eb38 100644 --- a/dviware/dvisvgm/src/XXHashFunction.hpp +++ b/dviware/dvisvgm/src/XXHashFunction.hpp @@ -2,7 +2,7 @@ ** XXHashFunction.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/ZLibOutputStream.hpp b/dviware/dvisvgm/src/ZLibOutputStream.hpp index 7537dcf41e..bc99621bd8 100644 --- a/dviware/dvisvgm/src/ZLibOutputStream.hpp +++ b/dviware/dvisvgm/src/ZLibOutputStream.hpp @@ -2,7 +2,7 @@ ** ZLibOutputStream.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/dvisvgm.cpp b/dviware/dvisvgm/src/dvisvgm.cpp index 488e9e2b47..4c5bf550b2 100644 --- a/dviware/dvisvgm/src/dvisvgm.cpp +++ b/dviware/dvisvgm/src/dvisvgm.cpp @@ -2,7 +2,7 @@ ** dvisvgm.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -40,6 +40,7 @@ #include "HyperlinkManager.hpp" #include "Message.hpp" #include "PageSize.hpp" +#include "PDFHandler.hpp" #include "PDFToSVG.hpp" #include "PSInterpreter.hpp" #include "PsSpecialHandler.hpp" @@ -48,6 +49,7 @@ #include "optimizer/SVGOptimizer.hpp" #include "SVGOutput.hpp" #include "System.hpp" +#include "ttf/TTFWriter.hpp" #include "XMLParser.hpp" #include "XXHashFunction.hpp" #include "utility.hpp" @@ -56,8 +58,7 @@ #ifndef DISABLE_WOFF #include <brotli/encode.h> //#include <woff2/version.h> -#include "ffwrapper.h" -#include "TTFAutohint.hpp" +#include "ttf/TTFAutohint.hpp" #endif using namespace std; @@ -156,7 +157,7 @@ static bool set_temp_dir (const CommandLine &args) { if (!args.tmpdirOpt.value().empty()) FileSystem::TMPDIR = args.tmpdirOpt.value(); else { - cout << "temporary folder: " << FileSystem::tmpdir() << '\n'; + cout << "temporary folder: " << FileSystem::ensureSystemSlashes(FileSystem::tmpdir(true)) << '\n'; return false; } } @@ -255,9 +256,9 @@ class VersionInfo { static void print_version (bool extended) { string versionstr = string(PROGRAM_NAME)+" "+PROGRAM_VERSION; -#ifdef TARGET_SYSTEM - if (extended && strlen(TARGET_SYSTEM) > 0) - versionstr += " (" TARGET_SYSTEM ")"; +#ifdef HOST_SYSTEM + if (extended && strlen(HOST_SYSTEM) > 0) + versionstr += " (" HOST_SYSTEM ")"; #endif cout << versionstr << '\n'; if (extended) { @@ -269,11 +270,11 @@ static void print_version (bool extended) { versionInfo.add("xxhash", XXH64HashFunction::version(), 3, 100); versionInfo.add("zlib", zlibVersion()); versionInfo.add("Ghostscript", Ghostscript().revisionstr(), true); + versionInfo.add("mutool", PDFHandler::mutoolVersion(), true); #ifndef DISABLE_WOFF versionInfo.add("brotli", BrotliEncoderVersion(), 3, 0x1000); // versionInfo.add("woff2", woff2::version, 3, 0x100); - versionInfo.add("fontforge", ff_version()); - versionInfo.add("ttfautohint", TTFAutohint().version(), true); + versionInfo.add("ttfautohint", ttf::TTFAutohint().version(), true); #endif #ifdef MIKTEX versionInfo.add("MiKTeX", FileFinder::instance().version()); @@ -371,6 +372,10 @@ static void set_variables (const CommandLine &cmdline) { PsSpecialHandler::SHADING_SEGMENT_SIZE = max(1, cmdline.gradSegmentsOpt.value()); PsSpecialHandler::SHADING_SIMPLIFY_DELTA = cmdline.gradSimplifyOpt.value(); PsSpecialHandler::BITMAP_FORMAT = util::tolower(cmdline.bitmapFormatOpt.value()); +#ifdef TTFDEBUG + ttf::TTFWriter::CREATE_PS_GLYPH_OUTLINES = cmdline.debugGlyphsOpt.given(); +#endif + PsSpecialHandler::EMBED_BITMAP_DATA = cmdline.embedBitmapsOpt.given(); if (!PSInterpreter::imageDeviceKnown(PsSpecialHandler::BITMAP_FORMAT)) { ostringstream oss; oss << "unknown image format '" << PsSpecialHandler::BITMAP_FORMAT << "'\nknown formats:\n"; diff --git a/dviware/dvisvgm/src/ffwrapper.c b/dviware/dvisvgm/src/ffwrapper.c deleted file mode 100644 index 7b6247366a..0000000000 --- a/dviware/dvisvgm/src/ffwrapper.c +++ /dev/null @@ -1,84 +0,0 @@ -/************************************************************************* -** ffwrapper.c ** -** ** -** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** -** ** -** This program is free software; you can redistribute it and/or ** -** modify it under the terms of the GNU General Public License as ** -** published by the Free Software Foundation; either version 3 of ** -** the License, or (at your option) any later version. ** -** ** -** This program is distributed in the hope that it will be useful, but ** -** WITHOUT ANY WARRANTY; without even the implied warranty of ** -** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** -** GNU General Public License for more details. ** -** ** -** You should have received a copy of the GNU General Public License ** -** along with this program; if not, see <http://www.gnu.org/licenses/>. ** -*************************************************************************/ - -#include <fontforge.h> -#include "ffwrapper.h" - -#ifdef _NDEBUG -static void no_post_error (const char *title, const char *error, ...) {} -static void no_warning (const char *format, ...) {} -#endif - - -/** Initializes the FontForge library. */ -void ff_init () { - InitSimpleStuff(); -#ifdef _NDEBUG - ui_interface.post_error = &no_post_error; - ui_interface.logwarning = &no_warning; -#endif -} - - -int ff_version () { - return FONTFORGE_VERSIONDATE_RAW; -} - - -/** Runs the autohinter for all glyphs in a given font. - * @param[in,out] sf the font to be autohinted - * @param[in] order2 if != 0, target font requires quadratic rather than cubic splines */ -static void ff_autohint (SplineFont *sf, int order2) { - BlueData bd; - GlobalInstrCt gic; - if (order2) - SFConvertToOrder2(sf); - QuickBlues(sf, ly_fore, &bd); - if (order2) - InitGlobalInstrCt(&gic, sf, ly_fore, &bd); - for (int i=0; i < sf->glyphcnt; i++) { - SplineChar *sc = sf->glyphs[i]; - if (sc != NULL) { - SplineChar *sc = sf->glyphs[i]; - SplineCharAutoHint(sc, ly_fore, &bd); // generate hints - if (order2) - NowakowskiSCAutoInstr(&gic, sc); // generate TTF instructions - } - } - if (order2) - FreeGlobalInstrCt(&gic); -} - - -/** Creates a TrueType font from a FontForge SFD file. - * @param[in] sfdname name of SFD file - * @param[in] ttfname name of TrueType file - * @param[in] autohint run the autohinter if != 0 */ -int ff_sfd_to_ttf (const char *sfdname, const char *ttfname, int autohint) { - int ret=0; - SplineFont *sf = SFDRead((char*)sfdname); - if (sf) { - if (autohint) - ff_autohint(sf, true); - ret = WriteTTFFont((char*)ttfname, sf, ff_ttf, 0, 0, 0, sf->map, ly_fore); - SplineFontFree(sf); - } - return ret; -} diff --git a/dviware/dvisvgm/src/fonts/Base14Fonts.cpp b/dviware/dvisvgm/src/fonts/Base14Fonts.cpp new file mode 100644 index 0000000000..07f4850bc1 --- /dev/null +++ b/dviware/dvisvgm/src/fonts/Base14Fonts.cpp @@ -0,0 +1,65 @@ +/************************************************************************* +** Base14Fonts.cpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#include <algorithm> +#include "Base14Fonts.hpp" + +using namespace std; + +extern const MemoryFontData Dingbats_cff; +extern const MemoryFontData NimbusMonoPS_Bold_cff; +extern const MemoryFontData NimbusMonoPS_BoldItalic_cff; +extern const MemoryFontData NimbusMonoPS_Italic_cff; +extern const MemoryFontData NimbusMonoPS_Regular_cff; +extern const MemoryFontData NimbusRoman_Bold_cff; +extern const MemoryFontData NimbusRoman_BoldItalic_cff; +extern const MemoryFontData NimbusRoman_Italic_cff; +extern const MemoryFontData NimbusRoman_Regular_cff; +extern const MemoryFontData NimbusSans_Bold_cff; +extern const MemoryFontData NimbusSans_BoldItalic_cff; +extern const MemoryFontData NimbusSans_Italic_cff; +extern const MemoryFontData NimbusSans_Regular_cff; +extern const MemoryFontData StandardSymbolsPS_cff; + +const MemoryFontData* find_base14_font (const string &fontname) { + struct FontData { + const char *name; + const MemoryFontData *font; + } names[14] = { + {"Courier", &NimbusMonoPS_Regular_cff}, + {"Courier-Oblique", &NimbusMonoPS_Italic_cff}, + {"Courier-Bold", &NimbusMonoPS_Bold_cff}, + {"Courier-BoldOblique", &NimbusMonoPS_BoldItalic_cff}, + {"Helvetica", &NimbusSans_Regular_cff}, + {"Helvetica-Oblique", &NimbusSans_Italic_cff}, + {"Helvetica-Bold", &NimbusSans_Bold_cff}, + {"Helvetica-BoldOblique", &NimbusSans_BoldItalic_cff}, + {"Times-Roman", &NimbusRoman_Regular_cff}, + {"Times-Italic", &NimbusRoman_Italic_cff}, + {"Times-Bold", &NimbusRoman_Bold_cff}, + {"Times-BoldItalic", &NimbusRoman_BoldItalic_cff}, + {"Symbol", &StandardSymbolsPS_cff}, + {"ZapfDingbats", &Dingbats_cff} + }; + auto it = find_if(begin(names), end(names), [&fontname](const FontData &data) { + return data.name == fontname; + }); + return it != end(names) ? it->font : nullptr; +} diff --git a/dviware/dvisvgm/src/ffwrapper.h b/dviware/dvisvgm/src/fonts/Base14Fonts.hpp index 2732a9f1d7..4e410fdc61 100644 --- a/dviware/dvisvgm/src/ffwrapper.h +++ b/dviware/dvisvgm/src/fonts/Base14Fonts.hpp @@ -1,5 +1,5 @@ /************************************************************************* -** ffwrapper.h ** +** Base14Fonts.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** ** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** @@ -18,20 +18,15 @@ ** along with this program; if not, see <http://www.gnu.org/licenses/>. ** *************************************************************************/ -#ifndef FFWRAPPER_H -#define FFWRAPPER_H +#pragma once -#ifdef __cplusplus -extern "C" { -#endif +#include <cstddef> +#include <string> -void ff_init (); -int ff_version (); -int ff_sfd_to_ttf (const char *sfdname, const char *ttfname, int autohint); - -#ifdef __cplusplus -} -#endif - -#endif +struct MemoryFontData { + MemoryFontData () =delete; + const char *data; + size_t size; +}; +const MemoryFontData* find_base14_font (const std::string &name); diff --git a/dviware/dvisvgm/src/fonts/Dingbats.cff.cpp b/dviware/dvisvgm/src/fonts/Dingbats.cff.cpp new file mode 100644 index 0000000000..f293b4c2dd --- /dev/null +++ b/dviware/dvisvgm/src/fonts/Dingbats.cff.cpp @@ -0,0 +1,785 @@ +#include "Base14Fonts.hpp" + +extern const MemoryFontData Dingbats_cff = { +"\x01\x00\x04\x02\x00\x01\x01\x01\x09\x44\x69\x6e\x67\x62\x61\x74\x73\x00\x01\x01\x01\x39\xf8\xe4\x00\xf8\xe5\x01\xf8\xe6\x0c\x00" +"\xf8\xe7\x02\xf8\xe7\x03\xf8\x18\x04\x43\x0c\x03\xaf\x0c\x04\x8a\xfb\x24\xfa\x69\xf9\xc7\x05\x1d\x00\x4c\x9a\x04\x0d\x1c\x05\x2a" +"\x0f\x1c\x05\x31\x10\x1c\x05\x3b\x11\x9f\x1c\x60\x1e\x12\x00\xcd\x02\x00\x01\x00\x03\x00\x05\x00\x09\x00\x0b\x00\x0d\x00\x0f\x00" +"\x13\x00\x17\x00\x1b\x00\x1e\x00\x21\x00\x24\x00\x27\x00\x2a\x00\x2d\x00\x31\x00\x34\x00\x37\x00\x3a\x00\x3d\x00\x40\x00\x43\x00" +"\x46\x00\x49\x00\x4c\x00\x4f\x00\x52\x00\x55\x00\x57\x00\x59\x00\x5b\x00\x5d\x00\x60\x00\x63\x00\x66\x00\x69\x00\x6c\x00\x6f\x00" +"\x72\x00\x75\x00\x78\x00\x7b\x00\x7e\x00\x81\x00\x84\x00\x87\x00\x8a\x00\x8d\x00\x90\x00\x93\x00\x96\x00\x99\x00\x9c\x00\x9f\x00" +"\xa2\x00\xa5\x00\xa8\x00\xab\x00\xae\x00\xb1\x00\xb4\x00\xb7\x00\xba\x00\xbd\x00\xc0\x00\xc3\x00\xc6\x00\xc9\x00\xcc\x00\xcf\x00" +"\xd2\x00\xd5\x00\xd8\x00\xdb\x00\xde\x00\xe1\x00\xe4\x00\xe7\x00\xea\x00\xee\x00\xf1\x00\xf5\x00\xf8\x00\xfb\x00\xfe\x01\x01\x01" +"\x04\x01\x07\x01\x0a\x01\x0d\x01\x10\x01\x13\x01\x16\x01\x1a\x01\x1d\x01\x20\x01\x23\x01\x26\x01\x29\x01\x2c\x01\x30\x01\x33\x01" +"\x37\x01\x3a\x01\x3d\x01\x40\x01\x43\x01\x46\x01\x4a\x01\x4e\x01\x52\x01\x56\x01\x5a\x01\x5e\x01\x62\x01\x66\x01\x6a\x01\x6e\x01" +"\x72\x01\x76\x01\x7a\x01\x7e\x01\x82\x01\x86\x01\x8a\x01\x8e\x01\x92\x01\x96\x01\x9a\x01\x9e\x01\xa2\x01\xa6\x01\xaa\x01\xae\x01" +"\xb2\x01\xb6\x01\xba\x01\xbe\x01\xc2\x01\xc6\x01\xca\x01\xce\x01\xd2\x01\xd6\x01\xda\x01\xde\x01\xe2\x01\xe6\x01\xea\x01\xee\x01" +"\xf2\x01\xf6\x01\xfa\x01\xfe\x02\x02\x02\x06\x02\x0a\x02\x0e\x02\x12\x02\x16\x02\x1a\x02\x1e\x02\x22\x02\x26\x02\x2a\x02\x2e\x02" +"\x32\x02\x36\x02\x3a\x02\x3e\x02\x42\x02\x46\x02\x4a\x02\x4e\x02\x52\x02\x56\x02\x5a\x02\x5e\x02\x62\x02\x66\x02\x6a\x02\x6e\x02" +"\x72\x02\x76\x02\x7a\x02\x7e\x02\x82\x02\x86\x02\x8a\x02\x8e\x02\x92\x02\x96\x02\x9a\x02\x9e\x02\xa2\x02\xa6\x02\xaa\x02\xae\x02" +"\xb2\x02\xb6\x02\xba\x02\xbe\x02\xf4\x03\x34\x03\x3c\x61\x31\x61\x32\x61\x32\x30\x32\x61\x33\x61\x34\x61\x35\x61\x31\x31\x39\x61" +"\x31\x31\x38\x61\x31\x31\x37\x61\x31\x31\x61\x31\x32\x61\x31\x33\x61\x31\x34\x61\x31\x35\x61\x31\x36\x61\x31\x30\x35\x61\x31\x37" +"\x61\x31\x38\x61\x31\x39\x61\x32\x30\x61\x32\x31\x61\x32\x32\x61\x32\x33\x61\x32\x34\x61\x32\x35\x61\x32\x36\x61\x32\x37\x61\x32" +"\x38\x61\x36\x61\x37\x61\x38\x61\x39\x61\x31\x30\x61\x32\x39\x61\x33\x30\x61\x33\x31\x61\x33\x32\x61\x33\x33\x61\x33\x34\x61\x33" +"\x35\x61\x33\x36\x61\x33\x37\x61\x33\x38\x61\x33\x39\x61\x34\x30\x61\x34\x31\x61\x34\x32\x61\x34\x33\x61\x34\x34\x61\x34\x35\x61" +"\x34\x36\x61\x34\x37\x61\x34\x38\x61\x34\x39\x61\x35\x30\x61\x35\x31\x61\x35\x32\x61\x35\x33\x61\x35\x34\x61\x35\x35\x61\x35\x36" +"\x61\x35\x37\x61\x35\x38\x61\x35\x39\x61\x36\x30\x61\x36\x31\x61\x36\x32\x61\x36\x33\x61\x36\x34\x61\x36\x35\x61\x36\x36\x61\x36" +"\x37\x61\x36\x38\x61\x36\x39\x61\x37\x30\x61\x37\x31\x61\x37\x32\x61\x37\x33\x61\x37\x34\x61\x32\x30\x33\x61\x37\x35\x61\x32\x30" +"\x34\x61\x37\x36\x61\x37\x37\x61\x37\x38\x61\x37\x39\x61\x38\x31\x61\x38\x32\x61\x38\x33\x61\x38\x34\x61\x39\x37\x61\x39\x38\x61" +"\x39\x39\x61\x31\x30\x30\x61\x38\x39\x61\x39\x30\x61\x39\x33\x61\x39\x34\x61\x39\x31\x61\x39\x32\x61\x32\x30\x35\x61\x38\x35\x61" +"\x32\x30\x36\x61\x38\x36\x61\x38\x37\x61\x38\x38\x61\x39\x35\x61\x39\x36\x61\x31\x30\x31\x61\x31\x30\x32\x61\x31\x30\x33\x61\x31" +"\x30\x34\x61\x31\x30\x36\x61\x31\x30\x37\x61\x31\x30\x38\x61\x31\x31\x32\x61\x31\x31\x31\x61\x31\x31\x30\x61\x31\x30\x39\x61\x31" +"\x32\x30\x61\x31\x32\x31\x61\x31\x32\x32\x61\x31\x32\x33\x61\x31\x32\x34\x61\x31\x32\x35\x61\x31\x32\x36\x61\x31\x32\x37\x61\x31" +"\x32\x38\x61\x31\x32\x39\x61\x31\x33\x30\x61\x31\x33\x31\x61\x31\x33\x32\x61\x31\x33\x33\x61\x31\x33\x34\x61\x31\x33\x35\x61\x31" +"\x33\x36\x61\x31\x33\x37\x61\x31\x33\x38\x61\x31\x33\x39\x61\x31\x34\x30\x61\x31\x34\x31\x61\x31\x34\x32\x61\x31\x34\x33\x61\x31" +"\x34\x34\x61\x31\x34\x35\x61\x31\x34\x36\x61\x31\x34\x37\x61\x31\x34\x38\x61\x31\x34\x39\x61\x31\x35\x30\x61\x31\x35\x31\x61\x31" +"\x35\x32\x61\x31\x35\x33\x61\x31\x35\x34\x61\x31\x35\x35\x61\x31\x35\x36\x61\x31\x35\x37\x61\x31\x35\x38\x61\x31\x35\x39\x61\x31" +"\x36\x30\x61\x31\x36\x31\x61\x31\x36\x33\x61\x31\x36\x34\x61\x31\x39\x36\x61\x31\x36\x35\x61\x31\x39\x32\x61\x31\x36\x36\x61\x31" +"\x36\x37\x61\x31\x36\x38\x61\x31\x36\x39\x61\x31\x37\x30\x61\x31\x37\x31\x61\x31\x37\x32\x61\x31\x37\x33\x61\x31\x36\x32\x61\x31" +"\x37\x34\x61\x31\x37\x35\x61\x31\x37\x36\x61\x31\x37\x37\x61\x31\x37\x38\x61\x31\x37\x39\x61\x31\x39\x33\x61\x31\x38\x30\x61\x31" +"\x39\x39\x61\x31\x38\x31\x61\x32\x30\x30\x61\x31\x38\x32\x61\x32\x30\x31\x61\x31\x38\x33\x61\x31\x38\x34\x61\x31\x39\x37\x61\x31" +"\x38\x35\x61\x31\x39\x34\x61\x31\x39\x38\x61\x31\x38\x36\x61\x31\x39\x35\x61\x31\x38\x37\x61\x31\x38\x38\x61\x31\x38\x39\x61\x31" +"\x39\x30\x61\x31\x39\x31\x32\x2e\x30\x30\x28\x55\x52\x57\x29\x2b\x2b\x2c\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x32\x30\x31\x33" +"\x20\x62\x79\x20\x28\x55\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69\x67\x6e\x20\x26\x20\x44\x65\x76\x65\x6c\x6f\x70\x6d\x65\x6e\x74" +"\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x28\x55\x52\x57\x29\x2b\x2b\x2c\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x32\x30\x31\x33" +"\x20\x62\x79\x20\x28\x55\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69\x67\x6e\x20\x26\x20\x44\x65\x76\x65\x6c\x6f\x70\x6d\x65\x6e\x74" +"\x44\x69\x6e\x67\x62\x61\x74\x73\x00\x00\x01\x00\x01\x00\x01\x87\xc8\x01\x04\x20\x5e\x80\x0d\xa1\x4e\xf1\x0d\x00\xcb\x02\x00\x01" +"\x00\x04\x00\x07\x00\xba\x01\x6f\x02\x26\x03\xec\x04\xf2\x05\xf3\x06\x9c\x07\x66\x07\xcc\x08\x9f\x0a\x5d\x0c\x0f\x0d\xb9\x0e\x7b" +"\x0f\x43\x10\x02\x10\xbf\x11\x71\x11\xc6\x12\x66\x12\x92\x12\xc6\x13\xe2\x15\x02\x15\x52\x15\x6f\x15\x9b\x15\xc7\x15\xe2\x16\x21" +"\x16\x73\x16\xd9\x17\x54\x17\xe5\x18\x89\x19\x12\x1a\x02\x1a\x6a\x1a\xea\x1b\x12\x1b\x5d\x1b\x89\x1b\xc5\x1c\x49\x1c\xb7\x1d\x60" +"\x1d\xc1\x1e\x1a\x1e\x5a\x1e\xac\x1e\xf9\x1f\xa1\x20\x4c\x20\xd0\x21\x84\x21\xc1\x22\x16\x22\xa3\x23\x64\x24\xca\x25\xe4\x27\x1e" +"\x28\x15\x29\x99\x2c\x26\x2c\xeb\x2e\x13\x2e\xbd\x2f\xff\x30\xa1\x31\xe3\x33\x14\x33\xca\x34\xd1\x35\xdc\x36\x04\x36\x60\x36\x6c" +"\x36\x88\x36\xa3\x36\xc3\x36\xe5\x36\xf3\x37\x01\x37\x13\x37\x5c\x37\x7b\x37\x86\x37\x94\x37\xa2\x37\xe9\x38\x2d\x38\x86\x38\xdd" +"\x39\x1d\x39\x58\x39\x83\x39\xae\x39\xc5\x39\xdb\x39\xf5\x3a\x10\x3a\x28\x3a\x40\x3a\x5d\x3a\x7b\x3a\xe4\x3b\x4a\x3b\xe7\x3c\x41" +"\x3c\x9f\x3c\xf3\x3d\x57\x3e\x64\x3f\x37\x3f\xa9\x3f\xd3\x40\x1a\x40\x6a\x40\xa3\x41\x06\x41\x96\x41\xf9\x42\x68\x42\xdc\x43\x3e" +"\x43\x9e\x44\x11\x44\x7e\x44\xc0\x45\x30\x45\xbd\x45\xf9\x46\x63\x46\xde\x47\x35\x47\x99\x48\x04\x48\x93\x48\xac\x48\xf7\x49\x67" +"\x49\x90\x49\xd0\x4a\x32\x4a\x5a\x4a\xc4\x4b\x29\x4b\x88\x4b\x9d\x4b\xed\x4c\x61\x4c\x8d\x4c\xeb\x4d\x58\x4d\x81\x4d\xde\x4e\x44" +"\x4e\x95\x4e\xb9\x4e\xd6\x4f\x0e\x4f\x4d\x4f\x69\x4f\x84\x4f\xa0\x4f\xd4\x50\x25\x50\x3d\x50\x56\x50\x89\x50\xcd\x50\xe4\x51\x04" +"\x51\x23\x51\x36\x51\x6a\x51\x9b\x51\xb3\x51\xd9\x52\x0b\x52\x3d\x52\x78\x52\xb1\x52\xe0\x53\x13\x53\x4c\x53\x82\x53\xce\x54\x66" +"\x54\xc8\x55\x26\x55\x8b\x56\x00\x56\x52\x56\xbc\x57\x36\x57\xad\x58\x49\x58\xf0\x59\x49\xfc\xc5\x0e\xfc\xc5\x0e\xf7\x1b\xf8\xfd" +"\xf7\x0c\x15\x2b\xf7\x02\xf8\x36\xc2\x05\xb4\x42\x4a\x9f\x4b\x1b\x7e\x79\x8a\x8a\x7a\x1f\xfb\x9d\x7c\x5d\xb7\x69\xa4\x6d\x97\x19" +"\x49\xa4\x8a\x8c\x95\x1a\x8e\x8c\x90\x8d\x8f\x1e\x99\xa6\x8d\x93\x9b\x1a\xc4\x54\xbe\x4e\x5d\x66\x67\x5d\x59\xb3\x62\xcb\x7b\x1e" +"\xee\x79\xc8\x65\xb4\x45\x08\x68\x69\x57\x71\x67\x1b\x7b\x73\x8f\x92\x6f\x1f\x90\x74\x75\x8f\x7a\x1b\x5d\x64\x65\x5d\x52\xc0\x5a" +"\xc7\xc1\xb1\xaf\xbe\x91\x8a\x91\x8a\x90\x1f\x88\x99\x89\x94\x8e\x1a\x93\x93\x91\x97\x1e\xbc\x8a\x05\x97\xcc\x91\x91\xb8\x1f\xf0" +"\xfb\x06\x05\xfc\x09\xf8\x71\x15\xb5\xb5\x65\x65\x6b\x75\x74\x70\x5e\x5d\xb1\xb1\xa9\xa5\xa4\xa9\x1f\x73\xfb\xf8\x15\xba\xaf\x6b" +"\x61\x69\x70\x70\x68\x5f\x62\xb1\xb3\xab\xa7\xa4\xaf\x1f\x0e\xf7\x0e\xf8\xb9\xf7\xef\x15\xf8\x0d\xf7\x25\x05\xab\x68\x76\x94\x67" +"\x1b\x70\x68\x84\x7c\x64\x1f\xfb\xcc\xfb\x0a\x05\xa2\x59\x3e\xa2\x70\x1b\x6f\x8d\x81\x90\x96\x1a\x8e\x8d\x91\x8e\x92\x1e\x91\x99" +"\x8f\x9c\x99\x1a\xbe\x5d\xb4\x50\x4e\x60\x63\x51\x4f\xbe\x62\xd5\x1e\xd1\x8d\x05\xc8\xb7\x74\x60\x9e\x1f\x63\x7d\x5b\x70\x50\x1b" +"\x47\x8c\x05\x40\x57\x5f\x4d\x53\xb5\x65\xc8\xc8\xb7\xb3\xc1\x97\x89\x96\x87\x94\x1f\x81\xa2\x8b\x8b\x90\x1a\x95\x93\x90\x9b\x8d" +"\x1e\xcc\x94\x92\x8d\xea\xb1\xf7\xc9\xfb\x06\x18\x7d\xb3\xa9\x85\xab\x1b\xb5\xa4\x95\xa8\xa7\x1f\xfd\xa9\xf8\x08\x15\xb5\xab\x6e" +"\x63\x64\x70\x70\x64\x5f\x69\xaa\xb2\xb1\xa8\xa6\xb4\x1f\x94\xfb\xdd\x15\xb2\xa6\x70\x65\x60\x6e\x6f\x5d\x64\x6f\xa5\xaf\xb2\xae" +"\xae\xb4\x1f\x0e\xf7\x1b\xf8\xfd\xf8\xcb\x15\x2f\x93\x26\xfb\x06\x05\x91\x5e\x4c\x91\x7d\x1b\x5b\x8a\x05\x7e\x83\x90\x94\x8e\x8d" +"\x94\x8e\x99\x1f\x8c\x90\x8c\x90\x91\x1a\xbe\x65\xaf\x55\x4f\x56\x5a\x52\x5d\xb1\x65\xba\x9b\xa2\x8f\x90\xa2\x1e\x92\xa7\xa3\x8f" +"\x9b\x1b\xaf\xbf\x72\x68\xad\x1f\x75\x5d\x44\x53\x56\x7f\x3f\x79\x8b\x8b\x7c\x84\x08\x61\x77\x71\x66\x65\x1a\x5d\xb0\x67\xb9\xc8" +"\xc2\xbe\xc4\x9b\x88\x94\x7e\xa5\x1e\x89\x90\x8a\x8f\x8e\x1a\x95\x8d\x8d\xcc\xa4\x1e\xa9\x96\xac\xa3\xba\xb9\xf7\x9d\x7c\x18\x8a" +"\x9c\x9f\x8a\x96\x1b\xcb\xcb\x9e\xb5\xd5\x1f\xfc\x36\xc1\x05\xfb\xe2\xfb\x77\x15\xa6\xa1\x73\x6c\x64\x61\x65\x60\x6d\x72\xa5\xa9" +"\xb1\xb9\xb1\xb8\x1f\x62\xf7\xfa\x15\xb1\xa6\x72\x67\x62\x67\x6b\x5c\x67\x6f\xa4\xab\xb3\xb2\xb0\xb6\x1f\x0e\xf7\x21\xf7\x4a\xf7" +"\x7a\x15\x59\x63\x64\x5a\x59\xb2\x63\xbd\xbc\xb3\xb3\xbc\xbc\x63\xb3\x5b\x1f\x91\x72\x15\xab\xa5\x6e\x67\x67\x71\x6f\x6a\x68\x6e" +"\xa8\xaf\xae\xa8\xa8\xaf\x1f\x84\xf8\x46\x15\x59\x63\x63\x5b\x59\xb2\x63\xbc\xbd\xb2\xb3\xbc\xbb\x64\xb4\x5b\x1f\x8e\x72\x15\xab" +"\xa5\x6f\x68\x68\x71\x6f\x6a\x69\x6f\xa8\xad\xae\xa8\xa7\xad\x1f\xf7\xb2\xfb\x69\x15\x72\x77\x75\x6d\x6e\x9e\x74\xa4\xa4\xa0\xa4" +"\xa8\xa7\x77\xa1\x72\x1f\x8d\x78\x15\x98\x96\x7f\x7b\x79\x7f\x7c\x7d\x7c\x81\x98\x9c\x9d\x97\x98\x9a\x1f\xf8\x6d\xf7\x2d\x15\xc0" +"\x5a\x65\x9d\x53\x1b\x58\x52\x79\x65\x4a\x1f\xfb\x36\x2c\x05\x9f\x74\x7d\x92\x7c\x1b\x87\x85\x8a\x89\x84\x1f\x83\x6b\x7b\x89\x76" +"\x1b\x7e\x85\x8c\x8f\x81\x1f\xa0\xab\x94\xa3\xa7\x1a\xd4\x49\xc7\x39\x33\x50\x50\x33\x58\x9f\x60\xb0\x70\x1e\xaa\x75\xb4\x80\xd0" +"\x88\xc7\x88\x94\x89\x9b\x84\x08\x97\x85\x93\x7f\x7e\x1a\x71\x71\x7d\x59\x89\x1e\x2e\x89\x6d\x85\x66\x74\x08\x61\x71\x75\x61\x54" +"\x1a\x32\xc5\x50\xe3\xe0\xc7\xc3\xd8\xaa\x83\xa3\x76\xac\x1e\x8e\x9c\x93\x8d\x94\x1b\x96\x9d\x88\x88\x9f\x1f\x89\x93\x93\x8a\x91" +"\x1b\x91\x8f\x8c\x8e\x8f\x1f\xbb\xa9\xf7\x53\xfb\x13\x05\x6f\xb6\xc5\x77\xb2\x1b\xc3\xc2\xa2\xb1\xac\x1f\xfb\xd6\xf7\x60\x05\xfb" +"\x58\x35\x15\x87\x85\x84\x8a\x84\x1b\x45\x8d\x05\x6b\x69\x7b\x7c\x87\x8c\x86\x8e\x88\x1f\x9e\x74\x91\x7b\x6f\x1a\x46\x5b\x5a\x47" +"\x43\x5c\xbb\xd5\xdd\xbe\xb9\xe7\x1e\xc4\x06\xd0\xa8\xa0\xbb\x8c\x8b\x8e\x8a\x8d\x1f\xf7\xb9\xf7\x3f\xc2\xab\x8b\x8b\x96\x90\x19" +"\x9c\xb0\xa9\x94\xa6\x1b\xaf\xa6\x7f\x6d\xae\x1f\xfc\x37\xfb\xa9\x15\xf2\xca\xf7\xc5\xfb\x56\x05\x70\x68\x71\x80\x6b\x1b\x5e\x62" +"\x9c\xbb\x42\x1f\xfb\xc0\xf7\x75\x15\x7e\x9e\x6d\x97\x64\x8c\x08\x48\x06\x37\x54\xbd\xd8\xd3\xbb\xbe\xcf\xd0\xbe\x5b\x4a\x76\x86" +"\x77\x82\x7e\x1f\x7c\x74\x8b\x8b\x85\x1a\x7a\xa4\x82\xb9\x99\x96\x8c\x8d\x90\x1e\x95\xad\x8b\x8b\x96\x1b\x98\x92\x87\x7d\x94\x1f" +"\x0e\xfb\x0c\xf7\x37\xf7\x1e\x15\xf8\x1c\x06\x98\x8c\x8c\x8b\x8c\x8c\x8e\x8c\x8e\xa2\x8c\xaf\x5a\xf7\x21\x7d\xab\x78\x9e\x08\x6d" +"\xad\x8b\x8b\x99\x1a\x96\x8b\x92\x8d\x97\x1e\xac\x84\x97\x81\x95\x71\x08\x85\xa9\xa6\x88\xbb\x1b\xa6\x94\x8c\x8f\x9f\x1f\x87\xbc" +"\x82\xa4\x78\x99\x08\xa9\x66\xfb\x1b\xa4\xfb\x0c\x1b\xfb\x0d\xfb\x1a\x72\x6d\x65\x1f\x79\x7d\x82\x72\x86\x5a\x08\x87\xa0\x93\x8a" +"\xa7\x1b\xba\xa7\x8e\x91\xa9\x1f\x95\xa5\x97\x95\xab\x92\x08\x8d\x7f\x8c\x84\x80\x1a\x7e\x8a\x8a\x81\x80\x1e\x84\x82\x83\x83\x83" +"\x82\x81\x7f\x8a\x89\x87\x83\x68\x35\x88\x85\x71\x40\x8d\x5c\x8d\x7e\x92\x8a\x08\xf7\x08\xf7\xe1\x15\x93\xcd\x8c\x8b\xa4\x1b\xa5" +"\x8b\x8b\x83\xcd\x1f\x7a\x62\x05\x8d\x62\x7a\x8c\x7a\x1b\x7b\x79\x8a\x89\x62\x1f\xd9\x6d\x15\xbf\xb6\x5f\x57\x55\x60\x60\x55\x56" +"\x5f\xb6\xc1\xc1\xb7\xb5\xc2\x1f\xf7\xd7\x92\x15\x86\x75\x7d\x89\x66\x1b\x6c\x7c\x8c\x91\x64\x1f\x70\x92\x97\x87\xde\x1b\xb6\x8e" +"\x8d\xa8\x95\x1f\xfd\x1f\x16\x6f\x96\x90\x88\xae\x1b\xb3\xac\x8d\x8f\x98\x1f\x98\x8e\x8e\x8f\x91\x9d\x08\x86\x67\x6b\x89\x63\x1b" +"\x71\x85\x8c\x91\x78\x1f\x0e\x59\xf7\x2d\xf7\x17\x15\x51\xce\x70\xd0\xdb\x1a\xf7\x45\xf7\x28\xf7\x26\xf7\x46\xf7\x48\xf7\x29\xfb" +"\x26\xfb\x45\xfb\x4a\xfb\x2d\xfb\x25\xfb\x53\x2e\x48\xb3\xc2\x9a\x91\x98\x91\x8c\x8e\x8a\x8a\x8d\x1e\x88\x90\x94\x88\x91\x1b\xa5" +"\xc3\xd3\xae\x90\x89\x8e\x87\x8f\x1f\x7d\x98\x88\x92\x96\x1a\xa9\xbc\xf4\xa8\xaa\x1e\x9a\x9b\x91\x8e\xa1\x8e\x96\x8d\x8f\x8d\x90" +"\x92\x08\x9f\xa5\x97\xb3\xb4\x1a\x99\x83\x8f\x6e\x62\x84\x88\x63\x69\x1e\x2f\x23\x41\xfb\x3c\x25\x1a\x82\x8c\x84\x8e\x88\x1e\x92" +"\x84\x8c\x89\x89\x1a\x89\x89\x89\x89\x88\x1e\x7f\x7b\x86\x7d\x78\x1a\x47\xdc\x58\xf7\x01\xf7\x63\xf7\x37\xf7\x32\xf7\x5c\xf7\x5a" +"\xfb\x37\xf7\x38\xfb\x5a\xfb\x57\xfb\x38\xfb\x36\xfb\x54\x37\xb1\x2a\xbc\x61\x1e\x85\x92\x94\x88\x93\x1b\x8e\x8f\x8b\x8e\x92\x1f" +"\xf7\xf3\xf8\x68\x15\x87\x53\x7f\x69\x71\x68\x08\x86\x98\x97\x89\x9a\x1b\x9a\x8c\x8c\x9c\x95\x1f\x9a\xa6\x91\x9f\xa6\x1a\x95\x8a" +"\x8c\x84\x92\x1e\x7e\x97\x81\x90\x7d\x90\x08\xfb\x2f\xfb\xf9\x15\x7b\x54\x74\x6a\x64\x74\x08\x80\x9b\xa0\x82\x94\x1b\xa2\xb8\xc8" +"\xa9\x93\x86\x91\x75\x9d\x1f\x0e\x5a\xf8\xfd\xf7\x26\x15\x99\x95\xae\xc2\x90\xa0\xfb\x25\xf7\x09\x18\x58\x6f\x5e\x5f\x76\x1e\xfb" +"\xe6\x98\x15\x96\x6c\xa3\x62\x9c\x7a\xf7\x3a\xd7\x18\x5d\xa6\x75\xb2\xc4\x1a\xf7\x43\xf7\xb0\x15\x90\x7c\x81\x8c\x76\x1b\x76\x7c" +"\x89\x87\x7d\x1f\x76\xfb\x4d\x05\x9a\xa4\xa1\x92\xa6\x1b\xa8\xa0\x84\x7c\xa0\x1f\x43\x84\x15\x52\x5e\x5e\x53\x53\xb8\x5e\xc3\xc3" +"\xb8\xb8\xc3\xc2\x5e\xb9\x54\x1f\x8f\xf7\x97\x15\xfb\x5f\xfb\x37\x26\x0a\xfb\x5e\xf7\x34\xfb\x35\xf7\x5c\xf7\x5b\xf7\x35\xf7\x35" +"\xf7\x5b\xf7\x58\x25\x0a\x71\x04\xd7\xde\x6a\x56\xc5\x1f\xd4\x49\xb1\x35\x2b\x1a\xfb\x4c\xfb\x2a\xfb\x2a\xfb\x4c\xfb\x4e\xfb\x28" +"\xf7\x29\xf7\x50\xdb\xaa\xdb\xc2\xc7\x1e\xd5\xce\xe0\xb0\xf1\x1b\x0e\x5b\xae\xf7\xef\x15\xae\x7e\x6a\xfb\x0b\xbe\x92\xd5\xee\x05" +"\x86\xb9\xde\x84\x91\x1b\xc3\x8a\x8b\x8b\x94\x87\x08\x94\x87\x90\x83\x80\x1a\x81\x8a\x87\x75\x38\x1e\x34\xfb\x59\x05\xb0\x06\x9f" +"\x8c\x8f\x8d\x9c\xa4\xb2\xc1\x18\xc8\x06\x91\x90\x93\x94\x93\x86\x94\x85\x1f\x6a\x06\xbc\xd0\x05\xc7\x06\x91\x91\x93\x93\x94\x85" +"\x94\x84\x1f\x6c\x06\xd5\xee\x93\x8c\x8b\x8b\xb6\x8d\x19\xb1\x8c\x97\x8c\xa6\x8e\x08\xbb\x91\xa2\x96\x9d\x1a\x9e\x5f\x97\x3f\x8f" +"\x1e\x45\x8d\x82\x8c\x41\xef\x05\xaa\x06\x92\x91\x93\x94\x94\x85\x93\x85\x1f\x4f\x06\x5a\xd0\x05\xac\x06\x91\x90\x93\x94\x93\x86" +"\x93\x85\x1f\x4e\x06\x64\xc2\x7a\xa3\x87\x8e\x77\x8c\x19\x66\x06\xe2\xfb\x59\x05\xa0\x3b\x8d\x83\x81\x1a\x7a\x7f\x82\x71\x8a\x1e" +"\x62\x8a\x05\x81\x76\x89\x88\x6b\x1f\x77\x89\x77\x89\x77\x8a\x7f\x89\x18\x41\xee\x58\x93\xac\xfb\x0b\x05\x0e\xfb\x29\xf9\x23\xf8" +"\xc0\x15\xfd\x00\xfc\x37\xf9\x00\x06\xfc\xed\xf8\x0e\x15\xf7\x64\xfb\x36\x05\x85\x07\x85\x07\xfb\x64\xfb\x36\x05\xf8\xda\x74\x15" +"\xfc\xda\x06\xf7\x64\xf7\x36\x05\x67\x9b\xa8\x78\xb1\x1b\xb1\xa8\x9e\xaf\x9b\x1f\xf7\x64\xf7\x59\x15\xfb\xe4\x07\xfb\x64\xf7\x36" +"\x05\x91\x07\x91\x07\xf7\x64\xf7\x4c\x15\xfb\x64\xfb\x36\x05\xaf\x7b\x6e\x9e\x65\x1b\x65\x6e\x78\x67\x7b\x1f\xfb\x64\xf7\x36\x05" +"\x0e\xf7\x0d\xf9\x2a\xf8\x3c\x15\xa0\xb3\x85\x83\xad\x1f\x82\xb2\x93\x89\x9e\x1b\xa2\xaf\x90\x8f\x9c\x1f\x9d\x90\x93\x92\x96\x1a" +"\x98\x7f\x97\x6e\x9a\x1e\x66\x9e\xfb\x00\xb3\x5b\x97\x08\x96\x5d\xfb\x19\x9a\x58\x1b\x73\x7e\x88\x80\x71\x1f\x5d\x78\x5c\x74\x6c" +"\x7a\x6e\x7b\x84\x89\x67\x88\x5b\x87\x8a\x8b\x80\x82\x08\x74\x79\x7b\x55\x50\x1a\x5b\x97\x54\x9b\x72\x1e\x8f\x84\x8b\x8b\xba\x82" +"\xa1\x88\x97\x8a\x9c\x89\x9f\x89\x8d\x8b\x91\x89\x90\x89\x90\x88\x95\x85\x08\x61\xd7\x8d\x8a\xb5\x1b\xad\xcf\x94\x99\xc7\x1f\xb0" +"\x93\x9c\x9a\xa6\x1a\x93\x8a\x92\x8a\x94\x1e\xaa\x95\x95\x95\xa3\x1a\x9d\x87\x95\x7c\x9b\x1e\xae\x99\x9c\x9c\xa1\x1a\xa0\x83\x95" +"\x66\xac\x1e\xfc\x8b\xd1\x15\x97\x83\x86\x8f\x82\x1b\x5c\x66\x36\xfb\x00\x21\xa9\x4a\xbb\x96\x93\x8e\x96\x94\x1f\x8a\x88\x89\x8b" +"\x8a\x1b\x5b\x6f\xc5\xef\xd2\x9c\xcd\xa3\xa4\x1f\x97\x97\x92\x8d\xa1\x8c\x08\x0e\xef\xae\xf8\x8f\x15\xfb\xee\x07\xf5\x7e\x96\xa4" +"\x05\xde\xbc\x06\xa2\x8a\xa0\x88\x91\x88\x92\x89\x9b\x83\xa4\x7d\x08\x72\xb9\xa2\x86\xc8\x1b\xb5\x06\x95\x06\x78\x98\x9e\x82\xa9" +"\x1b\xd4\xd1\xb3\xb4\x99\x85\x97\x78\xa1\x1f\x93\x95\x8c\x90\x97\x1a\xa3\x82\x9c\x73\x9a\x1e\x90\x96\x8d\x91\x91\x1a\x97\x86\x94" +"\x7e\x9a\x1e\xa9\xea\x90\x8f\xa8\x1f\xc8\x91\xa8\x9d\xaa\x1a\xa0\x78\xa0\x6b\x98\x1e\x99\x68\xfb\x02\x94\xfb\x15\x1b\x70\x79\x8a" +"\x87\x69\x1f\x98\x78\x7b\x90\x76\x1b\x6c\x6d\x80\x6d\x5d\x1f\x71\x61\x76\x82\x72\x1b\x86\x89\x8b\x8c\x84\x1f\xad\x07\x2b\x69\x15" +"\xca\xfb\xa4\x56\x06\xe1\xf7\x81\x15\xae\x8c\x96\x8f\xa9\x9d\xbf\xac\x8b\x8b\x9a\x93\x08\x97\xa5\xa0\x92\x99\x1b\xa0\xa2\x81\x7c" +"\x9a\x1f\xd2\x44\x05\x97\x7e\x93\x7d\x81\x1a\x7b\x78\x7d\x76\x75\x7d\x92\xa4\x6e\x1e\x51\xbc\x7f\x7d\xb5\x55\x05\x70\x73\x6c\x7d" +"\x6a\x1b\x7f\x77\x8e\x90\x75\x1f\x7e\x8e\x83\x7c\xce\x74\x05\xc1\x06\x99\x5d\x94\x81\xae\x85\x8c\x69\x95\x7c\xa4\x86\x08\x7e\x07" +"\x8a\x75\x82\x8b\x7f\x1b\x56\x62\x94\x9f\x6b\x1f\x84\x90\x83\x90\x83\x90\x7d\x93\x80\x91\x84\x8e\x7d\x8f\x80\x8d\x73\x8c\x08\xf7" +"\xbf\xf7\x9d\x15\x8e\xb4\x9f\x8c\xa3\x1b\xde\xf3\x83\x83\xa5\x1f\xa5\x83\x98\x7f\x7d\x1a\x82\x85\x82\x82\x87\x1e\x83\x77\x29\x85" +"\x2b\x1b\x86\x7e\x8b\x8c\x78\x1f\xa3\x62\x15\x98\x82\x8f\x85\x82\x1a\x79\x7e\x7e\x66\x7b\x1e\x73\x58\x59\x79\x7c\x1b\x77\x79\x9b" +"\x9d\xa0\xa6\xa7\xa0\x8d\x8f\x8a\x89\x90\x1f\x85\x9b\x99\x89\x9a\x1b\xaa\xa5\x96\xa4\xa1\x1f\x8d\x8e\x8b\x8b\x8d\x8d\x08\x9f\x3f" +"\x15\x96\x97\x7e\x7e\x77\x78\x76\x6f\x80\x1f\x7e\x6b\x61\x80\x76\x1b\x7c\x7e\x96\x99\x99\x90\x8f\xa7\x93\x1f\x90\x8c\x96\x90\x9a" +"\x92\x08\xb1\xd9\x8b\x8b\x90\x1b\x4c\xfb\x06\x15\x8e\x97\x94\x8d\x8c\x1b\xa3\x96\x9a\x92\x97\x91\x08\x8e\x8f\x8e\x8c\x8c\x1b\x93" +"\x96\x79\x7f\x74\x4d\x6d\x5b\x73\x79\x97\x9b\x93\x8d\x8d\x9a\x8e\x1f\x0e\xfb\xb6\xf7\xcc\xf8\x55\x15\x7f\xa8\x84\xa0\x7c\xb6\x08" +"\xf7\x0f\x62\x72\xb4\x69\x1b\x6c\x6e\x6e\x6b\x76\x9d\x49\x9e\x56\x1f\xa9\x3a\x8c\x88\x90\x78\x08\x91\x7c\x7f\x8f\x83\x1b\x6d\x63" +"\x63\x6e\x7d\x8e\x79\x90\x77\x1f\x67\x6e\x6d\x64\x5f\xa0\x50\xab\x5c\x1f\x56\xb0\xc9\x6e\xdb\x1b\xd9\xde\xb5\xc7\xb7\x1f\xa9\xb5" +"\x9f\xcf\xc6\x1a\xb3\x85\xae\x7e\xa9\x1e\x84\x9d\x84\x90\x72\x91\x88\x8c\x81\x8e\x81\x8e\x08\xc0\xf7\x2a\x97\xb4\xb1\x1a\xac\x74" +"\xa6\x70\x81\x80\x87\x83\x82\x1e\x71\x76\x7e\x73\x71\x42\x85\x7c\x79\x5c\x78\x59\x08\xfb\x7e\xfb\x8e\x15\x74\x07\x98\x73\x98\x77" +"\x95\x82\x08\x7a\x9e\xa6\x7e\x9d\x1b\x94\x9a\x91\x92\x94\x1f\x95\x93\x8f\x93\x9b\x1a\x8f\x8b\x92\x8a\x92\x1e\xa1\x06\x90\x5a\x90" +"\x80\xab\x6c\x95\x94\x18\x8a\x90\x8a\x90\x8a\x8d\x08\x83\xa9\x86\x9f\x92\x1a\xa0\xa8\xbc\xa8\xa7\x1e\xa4\xa5\x9c\x93\xb1\x92\x08" +"\xa6\x07\x76\x8b\x8b\x86\x5b\x1f\x81\x8a\x55\x99\x7c\x92\x08\x79\x94\x7b\xa2\x9b\x1a\x92\x8e\x96\x90\x97\x1e\xa7\x82\x8b\x8b\xb0" +"\x85\xf7\x15\x75\x8b\x8b\x8f\x89\x08\xa8\x7d\x97\x72\x5a\x1a\xfb\x26\x2c\x25\xfb\x1c\x5b\x5b\x98\xa0\x73\x1e\x7e\x96\x69\xc0\x85" +"\x9b\x08\x74\xd3\x8b\x8b\x90\x1a\x9d\xa5\xa5\x9d\x9b\x8f\x86\x57\xae\x1e\xb0\x54\x8b\x8b\x86\x1a\x81\x79\x7f\x7e\x75\x60\xb6\xac" +"\x7f\x1e\xf7\x59\xf7\x76\x15\x8e\x7c\x80\x8c\x83\x1b\x85\x80\x89\x89\x7e\x1f\x86\x94\x8b\x8b\x7d\xb2\x08\x61\xf7\x07\x84\xa1\xac" +"\x1a\x9a\x95\x97\x97\x97\x93\x84\x7a\x94\x1e\x97\x73\xb4\xfb\x04\xa7\x36\x08\xc4\x16\xf7\x71\xd7\x91\x98\xa3\x1b\x96\x95\x7f\x7d" +"\x76\x65\xfb\x14\x6e\x44\x1f\xfb\x8f\x63\x15\xa0\x87\x93\x85\x94\x7d\x08\xb3\x4d\xaa\x4d\x7c\x1a\x81\x80\x80\x7f\x80\x7a\x96\x9a" +"\x7d\x1e\x65\xb5\x67\xc7\x9f\x1a\x95\x90\x92\x9c\x98\x1e\x8f\x8e\x8b\x8c\x8f\x8d\x08\xf7\x1d\xfb\x1e\x15\x74\xc2\xa5\x83\x96\x89" +"\xaa\x87\x19\x0e\x9b\xdd\xf7\x5e\x15\x98\x7a\x53\xfb\x03\x05\x88\x85\x89\x87\x8a\x1a\x89\x8e\x89\x8d\x8d\x8e\x8c\x8d\x90\x1e\xe3" +"\xab\xbf\xc3\x05\x7b\xc7\xa6\x86\xae\x1b\x9e\xad\x8e\x91\xd4\x1f\xf3\x80\xe7\xa2\x99\x53\x05\xf7\x2a\x06\xa2\xf7\x22\x05\xf2\x07" +"\x74\xd2\xfb\x2a\x94\x7d\x77\x6d\x8c\x80\x8f\x74\x9a\x19\x2f\xc6\xd5\xdf\x05\x90\x91\x8d\x8f\x92\x1a\xa6\x77\xa4\x75\x83\x82\x88" +"\x86\x87\x1e\x35\x2b\x4f\xae\x4a\x6e\x65\x6f\x30\x35\x19\x74\x48\x87\x7d\x80\x5d\x08\xf8\xa2\xe1\x15\x96\x57\x8e\x72\x6b\x1a\x72" +"\x89\x75\x83\x5e\x1e\x79\x4f\x71\x86\x71\x1b\x78\x81\x8c\x95\x50\x1f\x6f\x87\x74\x88\x7d\x88\x08\x86\x73\x78\x88\x80\x1b\x81\x62" +"\x92\x8d\x85\x1f\x89\x8c\x89\x8d\x8c\x1a\x8c\x8d\x8c\x8d\x8d\x8c\x08\x97\x95\x8f\x91\x96\x1a\x9f\x7a\x9e\x78\x89\x8a\x8a\x8a\x8b" +"\x8b\x8a\x8c\x8a\x1e\x94\x80\x90\x7c\x7f\x1a\x7c\x85\x81\x83\x1e\x7d\x8c\x05\x77\x06\x7d\x82\x94\x98\x9f\x96\x9d\x9b\x93\x1f\xa7" +"\x98\x9f\x98\x8d\x8b\xa1\x8c\x19\xf7\x10\x06\xa1\x9e\x8f\x90\x91\x9c\x08\x7a\x62\x76\x84\x77\x1b\x7d\x8c\xba\xc0\x8c\x94\x8c\x93" +"\x8c\x8f\x19\x8c\x93\x8c\x90\x8e\x1a\x8e\x89\x91\x88\x95\x1e\xc7\xd1\xf7\x0c\x45\x05\xfb\xef\x4e\x15\x71\x49\x85\x7c\x78\x75\x72" +"\x76\x19\x79\x06\xa6\xc5\x82\xa6\x79\x95\xa6\xe5\x8f\x97\x8c\x8c\xa0\x9e\x19\xd6\xcd\x05\x9f\xa1\xc0\xaa\x96\x1b\x93\x94\x85\x74" +"\xa9\x1f\xfb\xcd\xfc\x3c\x15\x8a\x88\x88\x8b\x88\x1b\x84\x85\x90\x92\x8e\x8d\x94\x8d\x8e\x1f\x9a\xa5\x05\x9c\x95\x8b\x8b\x90\x1b" +"\x94\xa1\x6c\x7d\x85\x87\x87\x83\x88\x1f\xa0\xf7\x55\x15\x92\x84\x8d\x86\x7f\x1a\x67\x7c\x71\x77\x88\x86\x8b\x8c\x86\x1e\xf7\xb0" +"\xf7\x3c\x15\x5e\x6e\x59\x71\x84\x83\x8c\x8d\x82\x1e\xf8\x5b\xf7\x01\x15\x9c\x61\x92\x68\x52\x1a\x5a\x86\x6b\x7f\x5e\x1e\x21\x82" +"\x05\x9b\xc2\x92\xbb\xbe\x1a\xa7\x89\x99\x81\xd4\x1e\x0e\xd3\xf7\x56\xf8\xbe\x15\x6a\x64\x58\x61\x78\x9a\x7a\x9b\xaa\xb1\xbe\xb6" +"\x9e\x7e\x9b\x7c\x1f\xd2\xe2\x15\xfb\x29\x72\x3a\xfb\x1c\xb4\xfb\x2e\xf8\x46\xfb\x99\x9b\x82\x93\x88\xa8\x89\x19\xf7\xa9\x06\xa3" +"\x97\x93\x9b\x91\x89\x8f\x86\x95\x1f\xfb\x23\xf7\x8f\x80\x9f\x86\x90\x7b\x94\x19\x81\x91\x05\xfc\x3f\xf7\x7a\x15\xad\xfb\x0b\x42" +"\xfb\x0f\xfb\x0d\x71\x6a\xf7\x16\xd0\xf7\x07\x05\xf9\x29\xfc\x33\x15\xa1\x6a\x8b\x8a\x82\x1a\x7f\x7d\x72\x7d\x7f\x1e\x84\x84\x7d" +"\x87\x7c\x1b\xfb\x49\x06\xe9\xca\xb3\xd0\x93\xf7\x01\x08\xfc\x3b\xf7\xaf\x15\xf8\x1e\xfb\x84\x05\x8e\x79\x8c\x83\x7d\x1a\x7d\x8a" +"\x81\x88\x77\x1e\xfc\x02\xf7\x6f\x05\x7f\x77\x15\xf8\x05\xfb\x73\x87\x70\x67\x4f\x74\x79\x19\xfc\x05\xf7\x73\x05\x7f\x77\x15\xf8" +"\x01\xfb\x70\x7b\x78\x6a\x6e\x7e\x85\x19\xfc\x32\xf7\x91\x05\x0e\xe9\xf7\x25\xf8\x3c\x15\x72\x7d\x6f\x59\x58\x98\x6f\xa5\xa4\x99" +"\xa7\xbd\xbe\x7d\xa7\x72\x1f\x82\xfb\xaf\x15\xf8\x60\x06\x8c\x9e\x8c\x8b\x8e\x1b\x95\x8d\x8b\x8b\x99\x95\xf7\x75\xf7\x31\x18\xa9" +"\x9f\x8c\x8d\x98\x1a\x97\x8a\x8d\x6d\x9f\x1e\xfb\x75\xf7\x31\x88\x8d\x88\x8d\x87\x8e\x19\x88\x8e\x86\x8c\x85\x8c\x08\x89\x83\x8b" +"\x8c\x7e\x1f\xfc\x60\x06\x26\xfb\x0b\x05\xfb\x40\x07\xf7\x54\x94\x15\x39\x28\x39\xea\x05\xf7\x36\x07\xdd\xea\xdd\x29\x05\xf8\x38" +"\xfb\x7b\x15\xa7\xc8\x97\xbb\xb8\x1a\xb7\x7f\xb9\x6f\xc9\x1e\xf7\x32\xfb\x01\x05\x92\x7a\x8d\x81\x7a\x1a\x7a\x89\x81\x84\x7b\x1e" +"\xfb\x61\xf7\x6d\x15\x97\x79\x97\x6d\x96\x6b\x08\xfc\x14\x06\x49\xdb\x05\xd1\xfb\x85\x15\xf7\x17\xf8\x18\x07\x90\x79\x8d\x7c\x6a" +"\x1a\x6b\x89\x7c\x86\x79\x1e\x88\x6c\x15\x7a\x60\x87\x80\x81\x75\x08\xfc\x42\x06\xcf\xd7\x05\x0e\xd3\xf7\x2d\xf7\x9c\x15\x7a\x7d" +"\x7b\x78\x61\xb2\x58\xac\x9b\x97\x9b\x9e\xb6\x66\xbd\x6b\x1f\xf7\x04\xfb\x6a\x15\xf8\x37\xf7\x91\xa6\x9a\x8d\x8d\x98\xa2\x19\xf7" +"\x22\xf7\x8d\x05\x91\x95\x8d\x90\x90\x1a\x9b\x7f\x93\x73\x1e\xfb\xa9\x06\x70\x89\x81\x88\x7b\x82\xfc\x46\xfb\x97\x18\x62\xfb\x2e" +"\xdc\xfb\x1a\x05\xf7\x21\x8a\x15\xfb\x10\xa2\x46\xf7\x07\xac\xf7\x15\xf7\x0d\x71\xd4\xfb\x0f\x05\xf8\x3a\xf7\x49\x15\x83\xf7\x00" +"\x63\xd0\x2d\xc9\x08\xf7\x49\x06\x97\x9b\x88\x87\x90\x1f\x9a\x7f\x9b\x70\x7e\x1a\x81\x8b\x8a\x75\x6b\x1e\xfc\x8c\xfc\x37\x15\xa7" +"\xf3\xf8\x02\xf7\x6f\x05\x8e\x77\x8c\x81\x7d\x1a\x7d\x8a\x82\x88\x7a\x1e\xfc\x0e\xfb\x07\x15\x4c\xf4\xf8\x05\xf7\x71\xa2\x7a\xaf" +"\x4f\x8e\x70\x19\xfc\x4f\x2a\x15\xfb\x03\xa0\xf8\x32\xf7\x8f\x98\x85\xab\x6f\x9b\x78\x19\x0e\xf5\xf7\x3b\xf8\x83\x15\x3e\x54\x4b" +"\x31\x50\xa5\x5a\xb7\x70\x1f\x81\x9c\x95\x89\xa7\x1b\xf7\x33\x06\xb6\x97\xa3\xa2\xad\x1b\xa2\x9e\x7d\x69\xa0\x1f\x4e\xb2\x99\x7f" +"\xb0\x1b\xb8\xc8\xa6\xce\xf7\x02\x1f\xce\xb4\xb4\xa9\xb6\xb2\x3f\xcb\x81\x92\x61\xa6\x08\xdc\xfb\x16\x4e\xa7\x5d\x1b\x66\x75\x7a" +"\x60\x74\x1f\x5c\x74\x72\x75\x6e\x1b\x6c\x75\xa4\xbc\x7e\x1f\xf8\x35\xfb\x20\x15\x2b\x06\xba\x7f\x77\xa2\x6c\x1b\x65\x6c\x65\x5c" +"\x5e\xa8\x66\xb0\xab\xa1\xa3\xbc\x97\x1f\xeb\x42\x06\x64\x58\x25\x5b\x6b\x1b\x70\x77\x99\xae\x76\x1f\xc4\x68\x77\x9a\x65\x1b\x60" +"\x68\x72\x63\x7c\x1f\xfb\x1e\x06\x5b\x60\xc2\xc8\xcd\xb7\xc0\xc2\x1f\xf7\x16\x06\x5a\x9f\xa9\x73\xb4\x1b\xb0\xa1\x9d\xc2\xac\x1f" +"\xb6\xa5\x9c\x98\xaa\x1b\xa1\x9b\x85\x72\xbb\x1f\xbb\x71\xa3\x7d\xa3\x7a\x08\x0e\xf7\x1b\xfa\x3e\xf7\xee\x15\x8c\x87\x8a\x8c\x87" +"\x1b\x88\x8c\x8b\x8b\x84\x8d\x40\x9e\x5f\xaf\x42\xef\x08\xc5\x61\x69\xa2\x61\x1b\x5b\x5b\x62\x53\x7b\x1f\x7f\x5e\x8b\x8b\x86\x7e" +"\x08\x6e\x80\x7e\x82\x6f\x1b\x73\x7e\x93\xa7\x7b\x1f\xc3\x6b\x8b\x8b\xfb\x37\x1b\x50\x79\x88\x7f\x77\x1f\x6c\x77\x7a\x5e\x4c\x1a" +"\x4a\xa0\x5a\xae\x7b\x1e\x83\x9e\x99\x8a\xcc\x1b\xf7\x2c\x8b\x8b\xcb\xb3\x1f\xa0\x99\x94\x91\xa2\x1b\xac\x9a\x7c\x5d\x98\x1f\x9b" +"\x51\x8b\x8b\x93\x7e\x08\x66\xa1\xb0\x75\xb2\x1b\xb6\xac\xa2\xc6\xb6\x1f\xd5\xf3\xb9\xaf\xe4\x9f\x08\xfb\x94\x9b\x15\xd2\x89\x05" +"\xf2\x85\x93\x8a\x84\x1a\x84\x63\x86\x45\x89\x1e\x43\x89\x7f\x8a\x05\x68\x7d\x76\x78\x6e\x1b\x68\x70\xaa\xb2\xb2\xa7\xab\xad\xa7" +"\xa1\x78\x68\x99\x1f\x0e\x37\xf9\x65\x23\x0a\x53\x8c\x47\x77\x63\x6e\x3e\x3e\xfb\x23\xfb\x5b\x21\xfb\x47\x08\x74\x7e\x85\x84\x85" +"\x1b\x85\x84\x94\x9b\x84\x1f\x6e\xd2\x05\x9b\x85\x86\x8f\x7f\x1b\x75\x6b\x7e\x75\x6f\x1f\x7e\x81\x86\x83\x7e\x1a\x61\xad\x25\xb1" +"\x42\x1e\x7a\x93\x91\x89\xb4\x1b\xbd\x97\x8f\x9f\x96\x1f\xf6\xf7\x5b\xf7\x7b\xf7\xd6\xf7\x29\xf7\x32\x08\x0e\x92\xf9\xbf\xf9\x2f" +"\x15\x97\x07\xa1\x86\x90\x75\x76\x83\x89\x7d\x7a\x1e\x39\x4a\x5c\x61\x31\x2e\x4f\x4d\x60\x5f\x73\x75\x3e\x42\x18\x6f\x6e\x89\x8a" +"\x82\x1b\x88\x84\x8e\x8f\x84\x1f\x7f\x92\x87\x94\x88\xa0\x84\xb5\x86\xa9\x8a\x92\x86\xa7\x87\xaa\x8c\x8d\x08\x9e\x88\x90\x7d\x95" +"\x1e\x90\x83\x82\x8e\x81\x1b\x7c\x75\x88\x85\x7c\x1f\x7c\x86\x83\x84\x6b\x64\x72\x6d\x8b\x8b\x8a\x80\x08\x89\x80\x88\x57\x7d\x1a" +"\x74\x8d\x70\x8f\x6b\x1e\x93\x4d\x90\x61\x8c\x7a\x8c\x72\x8e\x85\x95\x7f\x9a\x7b\x9e\x7a\x9e\x7e\x08\x73\xad\x98\x86\xa1\x1b\x9e" +"\x9a\x94\xb1\xb7\x1f\xef\xe1\xf7\x60\xf7\x5b\xcf\xd9\xd6\xe2\xbf\xc4\x9a\x99\x9a\x99\x94\x96\x8e\x90\x08\x0e\x3e\xf9\x6b\xf9\x0d" +"\x15\x50\xc6\xfb\xb3\xfb\xb4\xfb\xb3\xf7\xb4\x50\x50\xf7\xb4\xfb\xb2\xfb\xb4\xfb\xb4\xc6\x50\xf7\xb3\xf7\xb5\xf7\xb3\xfb\xb5\xc6" +"\xc6\xfb\xb4\xf7\xb4\x05\x0e\x3d\xf9\x6b\xf8\x9a\x15\xfb\x42\xf7\x42\xfb\x40\xfb\x42\xfb\x40\xf7\x42\xfb\x42\xfb\x42\xf7\x42\xfb" +"\x3f\xfb\x42\xfb\x41\xf7\x42\xfb\x42\xf7\x40\xf7\x42\xf7\x40\xfb\x42\xf7\x42\xf7\x42\xfb\x42\xf7\x41\x05\x0e\xfb\xa0\xf8\xb4\xf9" +"\x28\x15\x8b\x89\x89\x89\x8a\x1e\x81\x80\x8a\x8a\x89\x89\x87\x88\x19\x96\x7d\x7b\x94\x86\x1b\x87\x89\x89\x63\x68\x1f\x44\x39\x63" +"\x5d\x7a\x74\x87\x93\x89\x90\x8a\x8c\x68\xcc\x18\x63\xde\x8b\x8b\x89\x8c\x08\x8f\x88\x88\x8c\x87\x1b\x88\x88\x8a\x89\x89\x1f\x85" +"\x83\x85\x85\x05\x8c\x87\x88\x8b\x89\x1b\x8a\x88\x8b\x8a\x88\x1f\x90\x83\x87\x8d\x87\x1b\x81\x7a\x76\x7f\x8a\x1f\x8a\x98\x66\xa5" +"\x40\x1e\x97\x6b\x97\x6c\x96\x6c\x8d\x87\x8e\x81\x91\x7c\xfb\x0d\xfb\x26\x63\x57\x79\x6b\x78\x68\x7e\x75\x87\x85\x08\x81\x7e\x85" +"\x81\x86\x1a\x8a\x8e\x84\x8f\x81\x1e\x8c\x88\x8c\x88\x8a\x1a\x89\x89\x84\x88\x81\x1e\x8a\x88\x8a\x89\x88\x1a\x83\x8b\x8b\xa1\x69" +"\x1e\x82\x90\x8d\x8a\x93\x1b\x9e\xa1\x90\x92\x96\x1f\xba\xdc\xdb\xf7\x11\xd2\xf0\xac\x53\x8b\x8b\xcf\x28\x08\x6f\x9e\x90\x86\x93" +"\x1b\x97\x9f\x9a\x94\x8d\x89\x8e\x89\x8f\x1f\x8a\x8f\x05\x8d\x8e\x8e\x92\x90\x1e\x95\x93\x05\x92\x07\x94\x8f\x8d\x8e\x8f\x92\x87" +"\x95\x18\x88\x93\x8a\x8c\x7f\xa6\x78\xb2\x79\xb2\x71\xc2\x88\x91\x82\x9d\x7d\xa5\xbe\xd3\xf7\x00\xf7\x1f\xa6\xa8\x08\x94\x94\x8d" +"\x8f\x8e\x1a\x8d\x88\x91\x87\x8f\x1e\x82\x95\x8b\x8c\x87\x91\x08\x92\x87\x8a\x8c\x8a\x1b\x0e\xfb\x36\xf8\xf2\xf9\x1a\x15\x88\x8a" +"\x7d\x98\x8e\x1a\x8d\x8b\x8c\x8c\x8d\x1e\x8e\x8e\x8b\x8d\x8c\x1a\x90\x8a\x6c\xa7\x86\x1b\x83\xfb\x1d\xfb\x1f\x2a\x33\x1f\x5d\xcb" +"\x75\xac\x56\xe1\x08\x94\x83\x87\x8e\x83\x1b\x7e\x82\x81\x79\x89\x1f\x83\x8a\x85\x84\x86\x1b\x89\x87\x8d\x8f\x88\x1f\x88\x8e\x86" +"\x90\x84\x90\x77\x78\x88\x88\x7d\x75\x90\x68\xcb\xfb\x23\xbb\x37\x88\x88\x88\x87\x89\x88\x70\x6c\x70\x6b\x6f\x6c\x70\x6b\x74\x6f" +"\x71\x68\x8e\x80\x8b\x8b\x90\x80\x08\x92\x7e\x8b\x8b\x88\x1a\x86\x88\x84\x87\x85\x1e\x88\x87\x89\x88\x89\x1a\x84\xa9\x62\x93\x87" +"\x1e\x91\x98\x92\x8e\x8e\x1b\x8e\x8e\x88\x88\x8a\x8b\x89\x8a\x88\x1f\x8a\x8a\x8a\x88\x87\x1a\x9e\x76\x05\x98\x06\xb9\xcc\x9f\xa6" +"\x93\x95\xd0\xe5\x18\x95\x99\x9a\x78\x8d\x88\xa7\x61\x19\xa9\x5f\x96\x7d\xa6\x6f\x08\x8a\x8e\x8e\x8a\x8c\x1b\x93\x98\x95\x9c\x99" +"\x1f\x8f\x8f\x8d\x8d\x8d\x1b\x8c\x8e\x89\x89\x8e\x1f\x80\x9a\x8d\x8a\x8f\x1b\x8e\xa5\xa0\x8e\x8c\x1f\x88\x96\x05\x8c\x07\x8c\x8d" +"\x8c\x99\x97\x1e\xa6\x9f\x90\x93\x90\xa6\x7d\x97\x4e\xd6\x42\xeb\xc9\xd9\xdb\xe3\xd8\xd9\x08\x8a\x8d\x8a\x8c\x8d\x1a\x8c\x8d\x8d" +"\x8d\x8e\x1e\x93\x95\x8b\x8b\x8d\x93\x88\x8f\x86\x93\x82\x98\x08\x89\x8e\x89\x8e\x8a\x1a\x0e\x3f\xf8\x40\xf9\x04\x15\x2f\xfb\x7a" +"\xfb\x7b\x2f\xf7\x7b\xfb\x7b\xe7\xf7\x7b\xf7\x7a\xe7\xfb\x7a\x06\xd0\xf7\xc0\x15\xfb\x7c\xfb\x7b\xfb\x7a\xfb\x7c\xf7\x7a\xfb\x7a" +"\xf7\x7c\xf7\x7a\xf7\x7b\xf7\x7c\xfb\x7b\x06\x68\xf7\x58\x15\xfb\x7b\xf7\x7b\xfb\x35\xfb\x7b\xfb\x7b\xfb\x35\xf7\x7b\xfb\x7b\xf7" +"\x35\xf7\x7b\xf7\x7b\x07\x0e\x3c\xf8\x84\x20\x0a\xfb\x7b\xfb\x7a\xfb\x7a\xfb\x7b\xf7\x7a\xfb\x7a\xf7\x7b\xf7\x7a\xf7\x7a\xf7\x7b" +"\xfb\x7a\x06\x0e\x3b\xf7\xd9\x16\xf7\x02\xf7\xb6\xfb\x02\x06\xf7\x02\x04\xf7\x02\xf7\xb6\xfb\x02\x06\xfb\xb6\xfb\xb6\x15\xfb\x02" +"\xf7\xb6\xf7\x02\x07\xf7\x02\x16\xfb\x02\xf7\xb6\xf7\x02\x07\x0e\x36\xf7\xa5\x16\xf7\x65\xf7\x82\xfb\x65\x06\xf7\x65\x04\xf7\x65" +"\xf7\x82\xfb\x65\x06\xfb\x82\xfb\x82\x15\xfb\x65\xf7\x82\xf7\x65\x07\xf7\x65\x16\xfb\x65\xf7\x82\xf7\x65\x07\x0e\xfb\xed\xf7\x5e" +"\x20\x0a\xfb\x49\xfb\x3b\x2f\xf7\x3b\xfc\x36\xe6\xf8\x36\xf7\x3b\xe7\xfb\x3b\xf7\x49\x07\x0e\xfb\xb3\xf7\x49\x20\x0a\xfb\x28\xfb" +"\x26\xfb\x09\x07\xe5\x40\x05\xc3\xfb\xac\x06\xe1\x44\x05\xf6\xf7\xf3\xf7\x23\xf7\x0f\x06\x3d\xd0\x05\x4a\xd8\x06\x3f\xd2\x05\x2e" +"\x73\x15\xe8\xfb\x27\xf7\x21\x2d\xfb\x21\xfb\xf7\x2e\xf7\xf7\xfb\x26\xe9\xf7\x26\x06\x0e\xfb\xc2\xf7\x75\xf9\x15\x15\xfb\x2c\xfb" +"\x20\x36\xf7\x20\xfb\xf6\xe6\xf7\xf6\xf7\x1d\xe0\xfb\x1d\xf7\x2c\x07\xfb\x20\xbc\x15\xfb\x2b\xfb\x21\xfb\x4d\xf7\x21\xfb\xf6\xf7" +"\x53\xf7\xf6\xf7\x1c\xf7\x4d\xfb\x1c\xf7\x2b\x07\xfb\x3a\x73\x15\xf7\x21\xfb\x2c\xf7\x1c\xfb\x1b\xfb\x1c\xfb\xf6\xfb\x21\xf7\xf6" +"\xfb\x21\xf7\x1b\xf7\x21\x06\x0e\xfb\x9a\xf4\xf8\xe7\x15\x75\x07\xef\x89\xd0\x32\x85\xfb\x09\x08\x79\x06\x51\x63\x98\xa9\x67\x1f" +"\x62\xad\x7b\xad\xc0\x1a\x73\xfc\x03\xa3\x06\x8c\xea\xe1\xd3\xf7\x00\x87\x08\x99\x7d\x06\xfb\x02\x8f\x45\x39\x2a\x1b\x74\xf8\x02" +"\xa2\x07\x2b\x8d\x48\xda\xf7\x03\x1a\x99\x07\xa2\x8c\x05\xf7\x02\xd8\x47\x2b\x1f\xa3\xf8\x03\x73\x06\x88\x28\x38\x47\xfb\x02\x8f" +"\x7d\x8a\x18\x84\xf7\x0a\xd2\xe6\xee\x8a\x08\xa1\x07\x0e\xfb\x27\xf7\xee\xf9\x52\x15\x21\xfb\x49\x05\xfb\x61\x06\xf1\xfb\x43\x25" +"\xfb\x45\x05\xf7\x61\x06\xf5\xfb\x4b\xf4\xf7\x4b\x05\xf7\x62\x06\x25\xf7\x45\xf1\xf7\x43\x05\xfb\x62\x06\xfb\x51\x6a\x15\xf7\x3c" +"\x06\xdd\xfb\x22\x39\xfb\x24\x05\xfb\x3c\x06\x39\xf7\x24\x05\xf7\x3a\xf7\xb0\x15\xc9\xfb\x01\x05\xfb\x11\x06\xf7\x52\x6a\x15\xf7" +"\x0d\x06\x4f\x23\x05\x3e\x04\xc6\x22\x05\xfb\x0b\x06\x4c\x6a\x15\x4a\xfb\x00\x50\xf7\x00\x05\x48\xac\x15\xfb\x0f\x06\xc8\xf4\x05" +"\xd8\x04\x50\xf3\x05\xf7\x0b\x06\x0e\x56\xf8\x2e\xf7\xfd\x15\x8a\xa4\x96\xbd\x9e\xca\x08\xaa\xe8\x8b\x8b\xa5\x1a\xbc\x6a\xb1\x61" +"\x60\x69\x63\x5b\x7a\x8e\x79\x90\x7b\x1e\xb0\xfb\x07\x97\x59\x8d\x63\x4b\x93\x78\x8f\x65\x98\x08\xaf\xfb\x00\x8b\x8b\x70\x1b\x5a" +"\x66\x6b\x60\x60\xb1\x6a\xbb\x9f\xa0\x8e\x91\x9e\x1f\xf0\xac\xba\x97\xbb\x8f\x8c\x7b\x85\x69\x79\x48\x08\x67\xfb\x01\x8b\x8b\x6e" +"\x1a\x59\xac\x66\xb5\xb5\xad\xb1\xbc\x9d\x87\xa0\x84\xa0\x1e\x67\xf7\x05\x84\xa8\x86\xc0\xab\x89\xbb\x81\xb9\x7c\x08\x6a\xef\x8b" +"\x8b\xa7\x1b\xbd\xb0\xa9\xb6\xb7\x65\xac\x58\x78\x79\x89\x85\x7b\x1f\xfb\x07\x66\x85\x89\x3d\x80\x08\x0e\xf8\x16\xf8\x2c\x15\x6c" +"\x86\x77\x77\x86\x6c\x47\x8c\x7b\x90\x71\xad\x08\xae\x6e\x71\x9a\x69\x1b\x57\x5f\x5f\x55\x56\xb7\x5f\xbf\xae\xa4\x99\xaf\xa8\x1f" +"\xa4\xac\x9b\x90\xd0\x8c\x90\x6d\x9f\x77\xa9\x86\x08\x48\x85\x7a\x6a\x71\x1e\x67\x6e\x7d\x71\x69\x1a\x57\xb8\x5f\xc0\xc0\xb7\xb7" +"\xbf\xad\x7d\xa5\x67\xa8\x1e\x6a\xa4\x85\x9b\xd0\x1a\xa9\x90\x9f\x9f\x90\xa9\xd0\x8a\x9b\x86\xa4\x6a\x08\x67\xa8\xa4\x7d\xae\x1b" +"\xbf\xb7\xb7\xc0\xc1\x5f\xb7\x57\x68\x72\x7c\x68\x6e\x1f\x6c\x73\x78\x83\x54\x1b\x7f\x8a\x86\xaa\x77\x9f\x6d\x90\x19\xd0\x91\x9b" +"\xac\xa4\x1e\xae\xa8\x9a\xa5\xad\x1a\xbf\x5f\xb7\x56\x56\x5e\x5f\x57\x69\x9a\x71\xae\x6e\x1e\xaa\x73\x93\x78\x54\x1a\x0e\xf8\x0f" +"\xf7\xd7\x15\x6c\x79\x6b\x67\x69\x1e\x5e\x61\x7e\x72\x60\x1a\x44\xc6\x50\xd2\xd3\xc5\xc6\xd2\xad\x7c\xae\x72\xa3\x1e\x55\xbd\x76" +"\xab\xb2\x1a\xaf\xa2\x7e\x5e\xb6\x1f\x62\xb2\xa8\x7d\xb5\x1b\xd3\xc4\xc4\xd3\xd3\x51\xc6\x44\x67\x66\x7a\x70\x73\x1f\x59\x5e\x6c" +"\x77\x64\x1b\x8f\xb7\x95\x9e\xb7\xb4\x08\xb2\xaf\x9b\xab\xb4\x1a\xd1\x50\xc6\x44\x44\x50\x50\x45\x62\x9a\x6e\xb4\x63\x1e\xb3\x63" +"\x9c\x6d\x8c\x6a\x08\x5f\x81\x91\xc8\x50\x1f\xaa\x6c\x6b\x9a\x65\x1b\x44\x50\x50\x45\x43\xc8\x4f\xd2\xb0\xa8\x98\xa8\xa8\x1f\xc4" +"\xc6\x97\x92\xbb\x92\x08\x0e\x5a\xf8\x31\xf7\xe4\x15\xf7\x20\x06\x7c\x78\x87\x7e\x79\x1a\x68\xa7\x6f\xae\xaf\xa2\xa2\xb8\x92\x1e" +"\x86\x97\x93\x89\x97\x1b\xaf\xa4\xa4\xb1\xaf\x73\xa5\x69\x80\x83\x89\x84\x7b\x1f\xbc\x80\x76\xa1\x69\x1b\x67\x70\x70\x68\x77\x8f" +"\x7f\x9a\x7a\x1f\xfb\x20\xf7\x1f\x06\x7d\xa1\x96\x87\x9b\x1b\xae\xa6\xa8\xaf\xae\x70\xa6\x63\x90\x1f\x90\x96\x8d\x92\x94\x1a\xb0" +"\x6c\xa9\x66\x69\x6d\x71\x6d\x81\x8d\x84\x91\x76\x1e\x5b\x85\x73\x76\x66\x1a\x65\xa6\x6e\xb0\x9d\x98\x90\x97\x9c\x1e\xfb\x1f\xfb" +"\x1d\x07\x98\x9e\x90\x96\x9b\x1a\xad\x6c\xa9\x68\x6f\x72\x79\x72\x83\x1e\x89\x85\x8a\x85\x8a\x7c\x08\x90\x7d\x84\x8c\x81\x1b\x68" +"\x6e\x70\x6a\x69\xa9\x6e\xae\x95\x92\x8d\x91\x98\x1f\x5f\x91\xa5\x71\xaf\x1b\xad\xa7\xa8\xad\x9e\x86\x98\x7f\x9f\x1f\xf7\x1d\xfb" +"\x23\x06\x98\x7a\x7e\x8f\x79\x1b\x67\x71\x71\x66\x65\xa6\x71\xb6\x88\x1f\x86\x7e\x89\x85\x81\x1a\x67\xa9\x6e\xaf\xaf\xaa\xa9\xae" +"\x95\x89\x91\x84\x98\x1e\xb6\x90\xa4\xa4\xb1\x1a\xaf\x70\xa5\x68\x79\x7d\x87\x7f\x79\x1e\x0e\x5d\xf8\x1f\x23\x0a\x87\x89\x87\x84" +"\x89\x1f\x81\x55\x4f\x2b\x4c\x4a\x52\x52\x4b\x66\x35\x72\x08\x82\x89\x88\x88\x87\x1a\x87\x8e\x88\x93\x89\x1e\xbf\x81\xf6\x4a\xc2" +"\x56\xc8\x51\xbc\x35\x98\x42\x08\x84\x8c\x8d\x88\x8f\x1b\x8f\x8d\x8e\x92\x8d\x1f\x97\xc6\xbe\xe0\xc9\xcd\xcd\xd0\xd6\xb7\xde\x9c" +"\x08\x94\x8d\x8e\x8e\x90\x1a\x8f\x88\x8d\x83\x8d\x1e\xfb\x2c\xb0\xfb\x28\xf7\x20\x62\xf7\x23\x08\xa7\x85\x8b\x8d\x85\x1b\x0e\x5e" +"\xf8\x14\x23\x0a\x5a\xfb\x3f\xfb\x1c\xfb\x1b\xfb\x38\x62\x08\x78\x07\xf7\x45\x59\xf7\x1d\xfb\x1e\xae\xfb\x39\x08\x9c\x06\xb6\xf7" +"\x3f\xf7\x2c\xf7\x2a\xf7\x37\xab\x08\x9e\x07\xfb\x3f\xb1\xfb\x25\xf7\x21\x61\xf7\x3c\x08\x82\x61\x15\xa3\xfb\x13\x9b\x59\xae\x4c" +"\xd2\x65\xb6\x7e\xf7\x1d\x74\x75\x86\x77\x87\x85\x89\x66\x84\x6c\x84\x7b\x87\x60\x80\x6a\x7e\x60\x73\x69\x52\x7a\x54\x73\xfb\x13" +"\x70\xf7\x16\x79\xc1\x6c\xc2\x08\x48\xaf\x6e\x94\xfb\x2b\xab\xf7\x1d\xa5\xba\x99\xca\xad\xaf\xcc\x97\xb1\xa7\xf7\x1d\x08\x0e\x74" +"\xf8\x2d\xf9\x57\x15\x34\xfb\xa2\x05\xfb\xb3\x06\xf7\x7e\xfb\x42\x31\xfb\xa8\xf7\x7a\xf7\x3e\xf7\x7b\xfb\x3e\x32\xf7\xa8\xf7\x7b" +"\xf7\x42\x05\xfb\xb4\x06\x0e\x7b\xf8\x32\xf9\x63\x15\x24\xfb\x86\xfb\xa8\x75\xf7\x65\xfb\x4c\x4f\xfb\xa1\xf7\x7a\xf7\x2b\xf7\x80" +"\xfb\x2b\x45\xf7\xa1\xf7\x63\xf7\x4c\xfb\xa7\xa1\x05\x29\xf7\x66\x15\xc8\xfb\x9a\xf7\xaa\x9d\xfb\x7c\xfb\x2e\xf5\xfb\x95\xfb\x69" +"\xf7\x4c\xfb\x65\xfb\x4c\xef\xf7\x95\xfb\x7f\xf7\x2e\xf7\xab\x79\x05\x0e\x59\xf8\x24\xf9\x56\x36\x0a\x85\x71\x15\xd7\xfb\x74\x05" +"\xf7\x88\x06\xfb\x5a\xfb\x26\xd3\xfb\x7e\xfb\x56\xf7\x26\xfb\x61\xfb\x26\xda\xf7\x7e\xfb\x53\xf7\x26\x05\xf7\x86\x06\x0e\x8d\xf8" +"\x31\xf9\x56\x15\x38\xfb\xb8\xfb\xbb\x97\xf7\x8e\xfb\x30\x23\xfb\xb0\xf7\x7c\xf7\x53\xf7\x86\xfb\x53\xfb\x05\xf7\xb0\xf7\x9d\xf7" +"\x30\xfb\xcc\x7f\x05\x3b\x90\x15\xc4\xbb\x5a\x51\x50\x5c\x5c\x50\x4f\x5c\xba\xc7\xc6\xbb\xba\xc7\x1f\x0e\x7b\xf8\x33\xf9\x56\x15" +"\x25\xfb\x88\xfb\xaa\x76\xf7\x67\xfb\x4c\x4b\xfb\xa1\xf7\x7d\xf7\x2b\xf7\x7e\xfb\x2b\x46\xf7\xa1\xf7\x65\xf7\x4c\xfb\xa7\xa0\x05" +"\x28\xf7\x66\x15\xc8\xfb\x99\x05\x97\x73\x7a\x8f\x75\x1b\x74\x7b\x87\x7f\x75\x1f\xf8\x28\x9e\x15\xfb\x7c\xfb\x2e\x05\x90\x9a\x8c" +"\x95\x97\x1a\xb0\x7b\xaa\x68\xa9\x1e\xf7\x29\xfc\x1c\x15\xfb\x69\xf7\x48\xbe\x91\xad\xa2\xa3\xb9\x19\xfb\xd3\xfb\x97\x15\xf2\xf7" +"\x97\xa6\x58\xab\x75\xbb\x89\x19\xfb\xef\xf7\x7b\x15\xf7\xae\x78\x05\x6a\x6e\x7a\x6c\x6e\x1a\x7f\x8e\x7b\x8f\x78\x1e\x0e\x85\xf8" +"\x35\xf8\xbb\x15\x48\xfb\x45\x05\xfb\x2f\x06\xf7\x08\x2e\x5e\xfb\x37\xf7\x2b\xed\xf7\x28\x29\x54\xf7\x38\xf7\x0e\xe7\x05\xfb\x26" +"\x06\x46\xf7\xe0\x15\x22\xfb\xaa\x05\xfb\xa9\x06\xf7\x69\xfb\x3b\x3e\xfb\xa7\xf7\x8a\xf7\x37\xf7\x8d\xfb\x37\x31\xf7\xa7\xf7\x72" +"\xf7\x3b\x05\xfb\xa6\x06\x20\xf7\x60\x15\xe4\xfb\x78\x05\xf7\x6b\x06\xfb\x44\xfb\x19\xd1\xfb\x70\xfb\x5a\xf7\x17\xfb\x5b\xfb\x17" +"\xc8\xf7\x70\xfb\x3c\xf7\x19\x05\xf7\x6e\x06\x0e\x74\xf8\x2e\xf8\x7d\x15\x5e\xfb\x09\x05\xfb\x08\x06\xe3\x44\x66\xfb\x16\xf7\x02" +"\xd8\xf5\x3e\x69\xf7\x16\xe8\xd2\x05\xfb\x0c\x06\xcc\xe5\x15\x24\xf7\x82\x05\x8f\x8a\x89\x8c\x87\x1b\x88\x89\x8a\x87\x89\x1f\x25" +"\xfb\x82\xfb\x96\x70\x05\x86\x88\x88\x87\x8a\x8d\x88\x8d\x89\x1f\xf7\x57\xfb\x30\x4e\xfb\x9d\x05\x87\x07\x88\x8e\x87\x8d\x8c\x1e" +"\x8d\x8d\x8c\x8c\x8d\x1f\xf7\x76\xf7\x23\xf7\x73\xfb\x27\x05\x8a\x8d\x8d\x8a\x8d\x1b\x8d\x8e\x8e\x8f\x1f\x8e\x07\x50\xf7\xa1\xf7" +"\x55\xf7\x30\x05\x8e\x8e\x8c\x8d\x8d\x1a\x8f\x89\x8d\x85\x1e\xfc\x00\xf7\x34\x15\xd5\xfb\x4b\xf7\x52\x7f\xfb\x27\xfb\x05\xbd\xfb" +"\x61\xfb\x3b\xf7\x08\xfb\x3f\xfb\x08\xc0\xf7\x61\xfb\x25\xf7\x05\xf7\x53\x97\x05\x0e\x83\xf8\x38\xf9\x57\x15\x2a\xfb\xa6\x05\xfb" +"\xb4\x06\xf7\x7c\xfb\x39\x2b\xfb\xad\xf7\x8d\xf7\x44\xf7\x94\xfb\x44\x26\xf7\xad\xf7\x71\xf7\x39\x05\xfb\xad\x06\xfb\x45\x78\x15" +"\xdd\xf7\x85\x05\xfb\xe7\x07\xd9\xed\x15\xf7\x87\x06\xfb\xd5\x29\x05\xf7\x18\x5b\x15\xe5\xfb\x80\xfb\x72\xf7\xb0\x05\xfb\x17\x04" +"\xfb\x69\xfb\x2d\xf7\x69\xf7\xaf\x05\xfb\x15\x5c\x15\xfb\x60\xf7\x26\xf7\xe1\x28\x05\x0e\xdf\xf8\x2b\xf9\x56\x15\x33\xfb\x9c\x05" +"\xfb\xb0\x06\xf7\x76\xfb\x40\x35\xfb\x98\xf7\x17\x74\xf7\x46\xf7\x16\xf7\x26\x20\x05\xf7\x19\x06\x31\xf7\x98\xf7\x6b\xf7\x2d\x4c" +"\x9e\x05\xfb\x69\x06\x39\xf7\x89\x05\xfb\x06\x79\x15\xdd\xfb\x8a\x05\xf7\x8b\x06\xfb\x5f\xfb\x21\xd6\xfb\x83\xfb\x5d\xf7\x2c\xfb" +"\x66\xfb\x2c\xdc\xf7\x83\xfb\x52\xf7\x21\x05\xf7\x82\x06\x0e\x2c\xf8\x54\x20\x0a\xfb\x2a\xfb\x73\x06\xfb\x4d\xf7\x0a\x3d\xfb\x19" +"\xf7\x59\xfb\x01\xfb\x59\xfb\x02\xd9\xfb\x18\xf7\x4d\xf7\x09\x05\xfb\x6f\xf7\x2a\xf7\x6f\x07\xf7\x4c\xfb\x09\xd9\xf7\x18\xfb\x59" +"\xf7\x02\xf7\x59\xf7\x01\x3d\xf7\x19\xfb\x4c\xfb\x0a\x05\x0e\xfb\x08\xf8\x34\x20\x0a\xfb\x01\xfb\x87\xf7\x01\x06\xfb\x01\xfc\x54" +"\x15\xf7\x01\xf7\x87\xfb\x01\x06\xf8\x11\xf7\x78\x15\x54\xe9\xfb\x66\xfb\x0d\xc1\x2c\x05\xfc\x4e\xfb\x15\x15\xc2\x2c\xf7\x66\xf7" +"\x0e\x55\xea\x05\xfb\x30\xf7\x73\x15\x54\x2d\xf7\x67\xfb\x0e\xc1\xea\x05\xf7\xe1\xfb\xd3\x15\xc2\xea\xfb\x67\xf7\x0e\x55\x2c\x05" +"\x0e\x31\xf8\x21\x20\x0a\x5a\x06\x99\xfb\xd4\xfb\x6c\xf7\x7a\x70\x6c\xf7\x79\xfb\x68\xfb\xcd\x98\x05\x60\xf7\xcd\x07\xfb\x79\xfb" +"\x66\xb0\x6b\xf7\x62\xf7\x79\x7d\xfb\xcf\x05\xbc\x06\x7f\xf7\xcf\xf7\x6b\xfb\x79\xaa\xab\xfb\x7e\xf7\x66\x05\xf7\xd1\xb6\x06\xfb" +"\xd1\x7e\xf7\x7e\xf7\x68\x6c\xaa\xfb\x6b\xfb\x7a\x05\x0e\x5a\xf7\xfa\xf8\x39\x15\xfb\x6b\xf7\x47\x05\x8c\x89\x89\x8d\x89\x1b\x88" +"\x88\x87\x88\x89\x8b\x8a\x8c\x8a\x1f\xf7\x48\xfb\x6b\xfb\xa3\x6f\x05\x86\x8a\x89\x89\x87\x1a\x87\x8d\x89\x8e\x8a\x1e\xf7\xa5\x76" +"\xfb\x45\xfb\x67\x05\x89\x88\x8a\x89\x89\x1a\x88\x8f\x87\x8e\x8d\x8c\x8c\x8c\x8c\x1e\xf7\x6b\xf7\x46\xa7\xfb\xa8\x05\x86\x8e\x88" +"\x8f\x8e\x8f\x8d\x8e\x1e\xa1\xf7\xab\xf7\x65\xfb\x46\x91\x88\x05\x8e\x8e\x8f\x8e\x8d\x8b\x8c\x8a\x8c\x1f\xfb\x41\xf7\x6b\xf7\xac" +"\xa5\x05\x8f\x8c\x8e\x8e\x8f\x1a\x8f\x89\x8e\x88\x1e\xfb\xae\xa1\xf7\x48\xf7\x6e\x05\x8d\x8d\x8c\x8e\x8d\x1a\x8e\x87\x8e\x87\x8a" +"\x89\x8b\x8a\x1e\xfb\x6f\xfb\x4e\x6e\xf7\xaa\x05\x8f\x88\x8e\x87\x88\x88\x89\x89\x1e\x0e\x5c\xf8\x29\x23\x0a\x80\x06\x51\xfb\x71" +"\xfb\x50\xf7\x0d\x83\x84\xf7\x0b\xfb\x5f\xfb\x74\x58\x05\x81\x07\xf7\x74\x56\xfb\x0b\xfb\x51\x93\x83\xf7\x5c\xf7\x0a\xb9\xfb\x6c" +"\x05\x96\x06\xc3\xf7\x75\xf7\x50\xfb\x0b\x94\x93\xfb\x09\xf7\x57\xf7\x6d\xbc\x05\x97\x07\xfb\x71\xc1\xf7\x11\xf7\x54\x84\x93\xfb" +"\x5f\xfb\x0f\x05\x26\x78\x15\xbc\xf7\x5e\x05\xfb\xc9\x07\xc0\xf4\x15\xf7\x45\xf7\x04\xfb\x70\xfb\x6f\x05\xf7\x06\xaf\x15\xf7\x57" +"\x5d\x05\xfb\xc4\x06\xf1\x55\x15\xf7\x03\xfb\x42\xfb\x6b\xf7\x69\x05\xac\xfb\x03\x15\x5d\xfb\x5d\x05\xf7\xc9\x07\x57\xfb\x00\x15" +"\xfb\x49\xfb\x05\xf7\x73\xf7\x74\x05\xfb\x06\x64\x15\xfb\x65\xb9\xf7\xcd\x8e\x05\x26\xbe\x15\xfb\x01\xf7\x46\xf7\x6b\xfb\x6d\x05" +"\x0e\xfb\x24\xf8\x66\xf7\xed\x15\xf7\x54\xf7\x41\x05\x8d\x8d\x8c\x8c\x8d\x1a\x8d\x89\x8d\x88\x1e\x88\x06\xfb\x8a\x3b\x55\xf7\x91" +"\x05\x8f\x8a\x8a\x8d\x88\x1b\x88\x8a\x89\x87\x8a\x1f\x55\xfb\x91\xfb\x8a\xdb\x05\x88\x06\x88\x89\x89\x89\x89\x8c\x8a\x8d\x89\x1f" +"\xf7\x54\xfb\x41\xfb\x54\xfb\x42\x05\x89\x8a\x8a\x89\x8a\x1a\x88\x8d\x89\x8e\x1e\x8b\x8d\x8b\x8c\x8c\x1e\xf7\x8a\xdb\xc1\xfb\x92" +"\x05\x88\x8c\x8d\x89\x8d\x1b\x8e\x8c\x8d\x8e\x8c\x1f\xc1\xf7\x92\xf7\x8a\x3b\x05\x8c\x8a\x8d\x8b\x8b\x1a\x8e\x8d\x8d\x8e\x8c\x8a" +"\x8d\x89\x8c\x1f\x0e\x4c\xf8\x7e\xf8\x5c\x15\xb6\xf7\x7a\x05\x8c\x8d\x8b\x8c\x8b\x1a\x8e\x87\x8e\x87\x88\x88\x8a\x88\x89\x1e\xfb" +"\x18\xfb\x53\xfb\x1d\xf7\x56\x05\x8d\x8a\x88\x8c\x89\x1b\x87\x89\x88\x86\x8c\x1f\xb6\xfb\x7d\xfb\x7e\xb7\x05\x88\x06\x88\x88\x88" +"\x88\x88\x8c\x89\x8e\x89\x1f\xf7\x58\xfb\x21\xfb\x5a\xfb\x19\x05\x87\x88\x8a\x8a\x88\x1a\x88\x8e\x88\x8f\x8c\x1e\x8e\x06\xf7\x80" +"\xb2\x60\xfb\x83\x05\x87\x8a\x8d\x87\x8f\x1b\x8d\x8d\x8c\x8d\x8d\x1f\xf7\x1d\xf7\x58\xf7\x1c\xfb\x57\x05\x88\x8d\x8e\x8a\x8d\x1b" +"\x8d\x8d\x8d\x8f\x8c\x1f\x8c\x8b\x8d\x8a\x8c\x1e\x60\xf7\x81\xf7\x86\x5b\x05\x8d\x8c\x8a\x8b\x1f\x8e\x8e\x8e\x8e\x8e\x89\x8d\x89" +"\x8d\x1f\xfb\x5f\xf7\x22\xf7\x5f\xf7\x22\x05\x8e\x8d\x8c\x8d\x8d\x1a\x8f\x89\x8d\x87\x1e\x88\x06\x0e\x44\xf8\xa7\xf9\x4e\x15\xfb" +"\x28\xfb\x3c\xfb\x25\xf7\x3c\x99\xfb\x6d\xfb\x6d\x9b\xf7\x3c\xfb\x27\xfb\x3c\xfb\x26\xf7\x6d\x9a\x7d\xfb\x76\xf7\x25\xf7\x3d\xf7" +"\x28\xfb\x3d\x7d\xf7\x76\xf7\x6d\x7c\xfb\x3b\xf7\x26\xf7\x3b\xf7\x27\xfb\x6d\x7b\x05\x0e\x5c\xf8\xdb\xf9\x34\x15\xfb\x20\xfb\x17" +"\x59\xf7\x47\x5e\xfb\x47\xfb\x17\xf7\x17\xb8\xfb\x43\xfb\x44\xb7\xf7\x17\xfb\x16\xfb\x4a\x59\xf7\x4a\x55\xfb\x17\xfb\x17\xf7\x44" +"\xb9\x5e\xfb\x43\xf7\x17\xf7\x15\xb8\xfb\x45\xbd\xf7\x45\xf7\x20\xfb\x15\x5a\xf7\x43\xf7\x42\x5d\xfb\x11\xf7\x17\xf7\x42\xc1\xfb" +"\x42\xbd\xf7\x11\xf7\x16\xfb\x42\x5f\x05\x0e\x3b\xf8\x00\xf9\x49\x15\xfb\xa1\x07\x2a\xf7\x8e\x67\x7d\xf5\xfb\x8c\xfb\x4f\xf7\x55" +"\x70\x70\xf7\x57\xfb\x51\xfb\x8e\xf6\x7d\x68\xf7\x92\x28\x05\xfb\xa5\x6a\xf7\xa5\x06\xfb\x92\x2a\x99\x67\xf7\x8e\xf7\x02\xfb\x57" +"\xfb\x53\xa6\x70\xf7\x4f\xf7\x59\x21\xfb\x8f\xaf\x7d\xec\xf7\x93\x05\xfb\xa7\xac\xf7\xa7\x07\xeb\xfb\x93\xae\x99\x20\xf7\x8f\xf7" +"\x51\xfb\x59\xa6\xa6\xfb\x55\xf7\x53\xf7\x8b\xfb\x02\x9a\xaf\xfb\x8f\xec\x05\xf7\xa2\xac\xfb\xa2\x06\xf7\x8f\xee\x7c\xae\xfb\x8b" +"\x20\xf7\x55\xf7\x51\x70\xa6\xfb\x51\xfb\x55\xf6\xf7\x8c\x68\x99\x2b\xfb\x8e\x05\xf7\xa1\x07\x0e\xfb\x18\xf7\x9c\xf7\xbb\x15\x37" +"\x84\x5a\x80\x59\x74\x08\x69\x7c\x7f\x7c\x72\x1a\x6b\xa7\x6d\xa9\x98\x97\x90\x99\x9f\x1e\xb9\xad\xa7\xaa\xbd\xd2\x08\xf7\x49\xf5" +"\x15\xe0\x92\xb8\x95\xc0\xa3\x08\xad\x99\x97\x9b\xa4\x1a\xab\x70\xa9\x6d\x65\x46\x4b\x2d\x4a\x1e\xfb\x49\x8e\x15\x5a\xd1\x6e\xab" +"\x5d\xac\x08\x9a\x77\x7f\x90\x7e\x1b\x6d\x6f\x6d\x6b\x72\x97\x7c\xad\x7c\x1f\xbe\x74\xbc\x80\xde\x84\x08\xf7\x47\x24\x15\x2d\xcb" +"\xd1\x4b\xb1\x1b\xa9\xa6\xa9\xab\xa4\x7f\x9a\x69\x9a\x1f\x57\xa3\x5d\x95\x36\x92\x08\x32\xf7\x1c\x15\x5d\x64\x65\x5e\x5c\xb0\x64" +"\xba\xba\xb1\xb1\xba\xb9\x65\xb1\x5d\x1f\x8c\xa1\x15\xb2\xe0\x9c\xc4\xbf\x1a\xad\x74\xa2\x68\x69\x74\x74\x6a\x56\x9c\x51\xb4\x34" +"\x1e\xfb\x63\x04\x62\x34\x7a\x51\x56\x1a\x69\xa2\x75\xae\xad\xa2\xa2\xad\xbe\x7a\xc6\x64\xdf\x1e\x0e\xfb\x17\xf7\xa1\xf7\x9e\x15" +"\x8e\x92\x87\x83\x97\x1f\x92\x85\x92\x87\x91\x89\x08\x9b\x86\x8e\x88\x7c\x1a\x7d\x87\x79\x80\x6b\x1e\x7b\x5a\x85\x71\x74\x1a\x64" +"\xa6\x6b\xab\xaf\xa5\xa9\xb5\xa5\x85\xa7\x7b\xb6\x1e\x82\xa4\x86\xa2\x99\x1a\x9b\x8e\x90\x9a\x8f\x1e\x92\x8d\x94\x90\x94\x93\x08" +"\x90\x92\x91\x8f\x8f\x1b\x96\xa4\x76\x6f\xa4\x1f\x4d\xc1\xa5\x79\xaf\x1b\xaa\xa5\xa4\xa8\xa4\x7d\xa3\x75\x98\x1f\x75\x98\x73\x93" +"\x57\x95\x08\x59\x94\x72\x97\x9b\x1a\x8c\x8b\x8f\x8c\x8f\x1e\x8c\x8f\x8b\x90\x91\x1a\x91\x8b\x90\x8a\x8e\x1e\x8a\x90\x8b\x8f\x8c" +"\x1a\x9b\xa3\x97\xbe\x94\x1e\xbf\x95\xa3\x93\xa1\x98\x08\xa1\x98\x99\xa3\xa3\x1a\xa9\x71\xa4\x6c\x67\x71\x79\x4d\x55\x1e\x6e\x72" +"\x72\x77\x80\x1b\x87\x85\x8f\x90\x84\x1f\x82\x92\x82\x91\x84\x8d\x08\x7c\x8f\x88\x90\x9b\x1a\x99\x90\xa2\x94\xa4\x1e\x9b\xb6\x91" +"\xa7\xa5\x1a\xb5\x71\xa9\x68\x6a\x70\x6b\x64\x74\x90\x72\x9c\x59\x1e\x95\x6c\x8f\x78\x7e\x1a\x7c\x88\x87\x7b\x86\x1e\x84\x89\x82" +"\x85\x82\x84\x08\x86\x84\x85\x87\x88\x1b\x80\x74\x9f\xa8\x70\x1f\xca\x53\x73\x9c\x67\x1b\x6d\x70\x71\x6e\x73\x9a\x73\xa1\x7e\x1f" +"\xa0\x7e\xa1\x84\xc2\x80\x08\xbc\x82\xa5\x7e\x7e\x1a\x89\x8a\x87\x8a\x85\x1e\x8a\x88\x8b\x86\x85\x1a\x85\x8b\x86\x8c\x87\x1e\x8c" +"\x86\x8c\x87\x89\x1a\x7e\x70\x7e\x5b\x81\x1e\x55\x81\x74\x84\x76\x7e\x08\x75\x7d\x7c\x74\x73\x1a\x6d\xa6\x72\xaa\xae\xa4\x9c\xca" +"\xc3\x1e\xa5\xa9\xa2\x9d\x96\x8c\x08\xe0\xf7\x2d\x15\xb4\xab\x6a\x61\x63\x6a\x6a\x63\x63\x6a\xac\xb4\xb4\xac\xac\xb3\x1f\x0e\xfb" +"\x31\xf7\xd1\xf7\xec\x15\x62\x73\x75\x86\xfb\x02\x7c\x62\x86\x6f\x81\x7d\x7c\x08\x7b\x7a\x81\x73\x76\x1a\x82\x8c\x7e\x8e\x7c\x1e" +"\x72\xa9\x9c\x83\xa7\x1b\xac\xa2\x9a\xb7\xac\x1f\xcc\xdf\xa0\xa2\xb5\xa2\x08\x5c\x82\x6c\x63\x2a\x1e\x7f\x6f\x85\x73\x78\x1a\x7a" +"\x94\x76\x9a\x7b\x1e\x97\x7e\x98\x84\xa7\x81\xa2\x93\x97\x91\x96\x94\x08\x9d\x9b\x98\xa4\x9f\x1a\x9e\x85\xa3\x80\xa7\x1e\x61\xed" +"\x83\xa9\xba\x1a\xb6\x72\x9d\x79\xce\x34\x08\x5f\xac\xa2\x7c\xac\x1b\xa7\x9c\x93\xa4\xa9\x1f\x8d\x9a\x8d\x97\x95\x1a\x9e\x83\x9f" +"\x7e\x9c\x1e\x7c\x9e\x71\x96\x5c\x91\x21\x99\x6f\x92\x61\xa3\xb3\xa3\xab\x93\xf3\x99\xb4\x90\xa7\x95\x99\x9a\x08\x9b\x9c\x95\xa3" +"\xa0\x1a\x94\x89\x98\x89\x9a\x1e\xa4\x6d\x7a\x93\x6f\x1b\x6b\x73\x7b\x60\x6a\x1f\x4a\x36\x76\x75\x61\x73\x08\xbb\x93\xa8\xb5\xee" +"\x1e\x96\xa7\x91\xa3\x9e\x1a\x9c\x82\xa0\x7c\x9b\x1e\x7f\x98\x7e\x92\x6f\x95\x74\x83\x7f\x84\x81\x83\x08\x78\x7a\x7e\x72\x78\x1a" +"\x78\x91\x73\x97\x6f\x1e\xb3\x2a\x94\x6c\x5b\x1a\x61\xa3\x76\xa1\x4a\xe0\x08\xb6\x6a\x74\x9b\x6a\x1b\x70\x79\x83\x72\x6d\x1f\x88" +"\x7c\x8a\x7e\x82\x1a\x78\x92\x77\x99\x7a\x1e\x9a\x77\xa5\x81\xba\x85\xf4\x7d\xa9\x83\xb4\x73\x08\x0e\xfb\x1e\xf7\xdc\xf8\x1a\x15" +"\x28\xf7\x11\x05\xaa\x72\x65\x9f\x69\x1b\x74\x6f\x81\x74\x5f\x1f\x8a\x77\x8a\x7a\x7c\x1a\x46\xaf\x65\xd4\x83\x1e\xf7\x36\x78\xfb" +"\x36\x79\x05\x42\x82\x67\x65\x47\x1a\x7c\x8c\x7a\x8c\x77\x1e\x75\xb5\xa9\x80\x9d\x1b\xab\xbb\xa3\xa6\xa1\x1f\xee\xf7\x11\x4a\xfb" +"\x23\x05\x7e\x6e\x87\x7d\x76\x1a\x5d\xa9\x6c\xd5\x69\x1e\xd6\xad\xa8\xaa\xbb\x1a\xa0\x88\x96\x7e\xa9\x1e\x4a\xf7\x23\xee\xfb\x11" +"\x05\x6f\xa2\xb9\x74\xae\x1b\x9b\xa9\x96\xa1\xb5\x1f\x8c\x9f\x8c\x9b\x9a\x1a\xd0\x67\xb1\x42\x94\x1e\xfb\x36\x9d\xf7\x36\x9e\x05" +"\xd4\x93\xaf\xb1\xd0\x1a\x9a\x8a\x9c\x8a\x9f\x1e\xa2\x5f\x70\x95\x74\x1b\x69\x64\x77\x6c\x72\x1f\x28\xfb\x11\xcc\xf7\x23\x05\x95" +"\xa2\x91\xa3\x9f\x1a\xb6\x6d\xaa\x41\xad\x1e\x42\x69\x6c\x6c\x60\x1a\x78\x92\x73\x95\x73\x1e\xe3\xfb\x37\x15\x97\x95\x81\x7e\x7f" +"\x81\x81\x7e\x7f\x81\x95\x98\x97\x95\x95\x98\x1f\x93\x9f\x15\x7a\x06\x55\xf7\x2d\x05\x85\x9b\x89\x9b\x9b\x1a\xbb\xa0\xa7\xbc\x9d" +"\x1e\xbd\x79\xa0\x6f\x5b\x1a\x7b\x88\x7b\x86\x7b\x1e\x29\xfb\x76\x15\x21\xfb\x0f\x05\x6f\x73\x6f\x7b\x71\x1b\x71\x79\x92\xa0\x6f" +"\x1f\x8a\x96\x8a\x96\x92\x1a\xbd\xae\xb2\xc0\x93\x1e\xf7\x35\xa6\x05\xdb\x7d\x15\x94\x99\xf7\x35\x70\x05\xc0\x83\xae\x64\x58\x1a" +"\x84\x8a\x80\x8a\x81\x1e\x76\x6f\x79\x84\x71\x1b\x72\x6d\x9c\xa6\x74\x1f\x0e\x7e\xf8\x26\xf7\x2f\x15\x90\x90\x90\x91\x91\x90\x86" +"\x86\x8a\x8b\x88\x8a\x89\x1e\x89\x85\x8a\x85\x85\x1a\x77\x94\x69\x96\x76\x1e\x5c\xa2\xb5\x70\xbb\x1b\xd8\xd5\xd0\xd4\xc1\x68\xbb" +"\x4f\xa8\x1f\x7f\x90\x84\x8d\x81\x8c\x08\x83\x86\x8e\x92\x91\x90\x91\x91\x8d\x8d\x8a\x88\x8f\x1f\x82\x9a\xa1\x86\xab\x1b\xdb\xc3" +"\xc0\xd7\xdf\x4f\xce\x42\x62\x64\x78\x66\x67\x1f\x82\x82\x87\x84\x88\x82\x08\x84\x88\x89\x89\x85\x1b\x85\x86\x90\x91\x8f\x8c\x8d" +"\x90\x8f\x1f\xa2\x9c\x9f\xbe\xb4\x1a\xd6\x51\xc1\x39\x39\x51\x55\x40\x63\x9f\x57\xa2\x7a\x1e\x90\x87\x8c\x89\x87\x1a\x85\x86\x86" +"\x85\x85\x89\x8d\x92\x88\x1e\x88\x94\x86\x92\x83\x94\x08\xb0\x67\x64\x9e\x62\x1b\x42\x4f\x48\x37\x3f\xc3\x56\xdb\xab\xa1\x90\x94" +"\x9a\x1f\x8e\x8f\x8d\x8c\x8d\x1b\x91\x90\x85\x85\x84\x86\x88\x83\x1f\x81\x8a\x83\x89\x80\x86\x08\x4f\x6e\x68\x5b\x55\x1a\x42\xd5" +"\x46\xd8\xb8\xb4\xa4\xb4\xa2\x1e\x98\xa1\x96\xb2\xa1\x1a\x91\x8a\x91\x89\x91\x1e\x97\xf7\xbb\x15\xc9\xc0\x56\x4b\x4b\x56\x56\x4b" +"\x4a\x57\xc0\xcc\xcc\xc0\xbe\xcd\x1f\x0e\x73\xf7\xcf\xf8\x53\x15\xc9\x48\x67\x9e\x5b\x1b\x44\x51\x51\x45\x3a\xc8\x56\xe9\x9d\x9b" +"\x8c\x90\xad\x1f\x5b\x70\x75\x7b\x77\x77\x08\x71\x6f\x7d\x6a\x69\x1a\x43\xc5\x51\xd3\xb8\xb3\xa2\xb2\xa5\x1e\x9c\xa7\x94\xa5\x97" +"\xca\x98\x4f\x93\x71\x9b\x70\x08\x61\xa4\xb5\x73\xb9\x1b\xd3\xc5\xc5\xd3\xad\x7d\xac\x71\xa7\x1f\x77\x9f\x75\x9a\x5b\xa7\x08\x86" +"\xad\x9b\x8a\x9d\x1b\xe9\xc8\xc0\xdc\xd1\x51\xc5\x44\x5b\x67\x78\x4d\x48\x1f\xa7\xc9\x94\xa9\xad\x1a\xd5\x52\xc5\x42\x43\x52\x51" +"\x41\x69\x94\x6d\xa7\x4d\x1e\xd0\x90\x15\x6a\x7e\x05\x6c\xb8\x83\xa3\xb3\x1a\xcb\xb3\xb9\xc2\xc3\xb3\x5d\x4b\x63\x82\x73\x6d\x5e" +"\x1e\x6a\x98\x7d\xea\x05\x93\x8a\x87\x90\x86\x1b\x86\x88\x86\x83\x8a\x1f\xf4\xfb\x1c\x15\x9c\xa0\x93\x94\x96\x94\x08\xa3\xa8\xb0" +"\x99\xad\x1b\xbf\xb6\x62\x59\x4f\x52\x5e\x3f\x79\x7e\x8d\x94\x6b\x1f\x8d\xae\xe1\xb6\x05\x92\x8e\x8e\x8f\x8e\x1a\x91\x87\x8d\x85" +"\x1e\x85\x06\x2d\x7b\x05\x88\xfb\x12\x15\xae\x7f\x96\x85\x9c\x7d\x08\xaf\x6f\xa1\x63\x67\x1a\x58\x63\x62\x57\x65\x68\xa3\xb5\x73" +"\x1e\x7a\xa8\x86\x9f\x8a\xba\xad\x93\x18\xce\x47\x05\x87\x8f\x8f\x89\x8e\x1b\x8f\x8f\x8e\x8f\x8e\x89\x8e\x89\x8f\x1f\x5f\xe0\x05" +"\xfb\x6b\xf7\x30\x15\x2d\x9b\x05\x85\x06\x85\x88\x89\x85\x88\x8e\x87\x91\x88\x1f\xe1\x60\x8d\x68\x05\x82\x6b\x7e\x89\x79\x1b\x3f" +"\x52\xb8\xc7\xbd\xb6\xb4\xbf\xab\xae\x7f\x75\xa8\x1f\x98\x81\x93\x82\x9e\x73\x08\x8c\xfb\x45\x15\x5d\x2f\x05\x89\x87\x8a\x88\x88" +"\x1a\x87\x8e\x88\x8f\x8e\x8f\x8d\x8f\x8f\x1e\xce\xcf\xad\x83\x8a\x60\x87\x79\x7e\x70\x19\x5d\x74\x65\x6f\x62\x1b\x58\x62\xb4\xbe" +"\xaf\xa1\xb3\xaf\xa7\x1f\x9c\x99\x96\x90\xae\x98\x08\x0e\x59\xf9\x22\xf7\x7d\x15\xac\x93\x9e\x94\x98\x97\x08\xa1\x9e\x98\xaa\xac" +"\x1a\xa8\x82\xa6\x79\x9e\x1e\x7c\x9d\x78\x94\x64\x95\x08\x9b\xa7\x95\xa5\x9d\x1a\x9f\x79\xac\x77\x9e\x1e\x9f\x77\x72\x96\x74\x1b" +"\x7a\x78\x84\x79\x6a\x1f\x81\xab\x83\x9d\x7e\x98\x08\xa0\x76\x6d\x98\x6e\x1b\x72\x73\x82\x7a\x76\x1f\x78\x7b\x82\x7a\x7f\x65\x08" +"\x9d\x6a\x78\x92\x7a\x1b\x74\x72\x7f\x78\x77\x1f\x77\x78\x79\x6a\x77\x1a\x79\x94\x71\x9c\x6f\x1e\x6a\x83\x78\x82\x7e\x7f\x08\x75" +"\x78\x7e\x6c\x6a\x1a\x6e\x95\x70\x9c\x78\x1e\x9a\x79\x9e\x82\xb2\x81\x08\x7b\x6f\x82\x71\x7a\x1a\x77\x9c\x69\x9f\x78\x1e\x78\x9f" +"\xa4\x80\xa2\x1b\x9c\x9e\x92\x9c\xac\x1f\x95\x6b\x93\x79\x98\x7e\x08\x76\xa0\xa9\x7e\xa7\x1b\xa5\xa3\x94\x9c\xa0\x1f\x9e\x9b\x95" +"\x9c\x96\xb1\x08\x7a\xac\x9e\x84\x9c\x1b\xa2\xa5\x96\x9e\x9e\x1f\x9f\x9e\x9d\xad\x9f\x1a\x9c\x81\xa5\x7b\xa7\x1e\xfb\x96\xf7\x5e" +"\x15\xbc\xb3\x62\x5a\x59\x63\x63\x59\x59\x62\xb3\xbd\xbd\xb3\xb3\xbf\x1f\xa4\xfb\x63\x15\x96\x8d\xb4\x21\x05\x8e\x82\x8d\x82\x81" +"\x1a\x5e\x65\x66\x5e\x5d\x65\xb0\xb8\x96\x8d\x94\x8e\x93\x1e\xb4\xf5\x96\x89\x72\xfb\x01\x05\x8a\x86\x8b\x86\x87\x1a\x6b\xa2\x72" +"\xa8\xa9\xa2\xa4\xab\x90\x8b\x8f\x8a\x90\x1e\xfb\x08\xf7\x11\x15\x95\x84\x5d\x24\x05\x6e\x7e\x6e\x79\x6b\x1b\x5d\x65\xb1\xb9\xab" +"\x9d\xa7\xa8\x98\x1f\xf3\xb9\x91\x82\x2c\x4f\x05\x7a\x80\x80\x78\x77\x1a\x6f\xa1\x75\xa7\x9f\x9f\x96\x9c\x95\x1e\x93\xf7\x3e\x15" +"\x8d\x7f\x21\x63\x05\x87\x82\x81\x8a\x82\x1b\x5e\x66\xb0\xb9\xb9\xb0\xb0\xb8\x94\x95\x8a\x87\x94\x1f\xf5\x63\x89\x7f\xfb\x02\xa4" +"\x05\x8c\x87\x87\x8b\x85\x1b\x6c\x71\x74\x6e\x6e\xa5\x73\xab\x90\x8f\x8c\x8c\x8f\x1f\xf7\x11\xf7\x07\x15\x85\x82\x23\xb9\x05\x6e" +"\x98\x79\xa7\xac\x1a\xb9\xb1\xb1\xb9\xab\xa7\x79\x6d\x99\x1e\xb9\x24\x81\x84\x50\xea\x05\x9d\x7f\x78\x96\x77\x1b\x6f\x75\x75\x6e" +"\x78\x96\x77\x9c\x80\x1f\xf7\x3e\x84\x15\x80\x89\x62\xf5\x05\x88\x93\x89\x95\x95\x1a\xb8\xb1\xb0\xb9\xb9\xb0\x66\x5e\x81\x89\x82" +"\x88\x82\x1e\x62\x21\x80\x8d\xa4\xf7\x01\x05\x8c\x90\x8b\x8f\x90\x1a\xab\x74\xa4\x6d\x6e\x74\x72\x6b\x87\x8b\x86\x8c\x86\x1e\xf7" +"\x08\xfb\x11\x15\x81\x92\xb9\xf2\x05\xa9\x99\xa7\x9d\xab\x1b\xb9\xb1\x65\x5d\x6a\x79\x6f\x6e\x7e\x1f\x23\x5d\x85\x94\xea\xc7\x05" +"\x9c\x96\x96\x9f\x9f\x1a\xa7\x75\xa1\x6f\x77\x78\x80\x79\x80\x1e\x83\xfb\x3e\x15\x89\x97\xf5\xb3\x05\x8f\x94\x95\x8c\x95\x1b\xb8" +"\xaf\x66\x5d\x5d\x67\x66\x5d\x82\x81\x8c\x8f\x82\x1f\x21\xb3\x8d\x97\xf7\x02\x72\x05\x8a\x8f\x8f\x8a\x91\x1b\xab\xa4\xa3\xa8\xa8" +"\x71\xa2\x6c\x85\x87\x8b\x8a\x87\x1f\xfb\x11\xfb\x07\x15\x91\x94\xf3\x5d\x05\xa8\x7e\x9d\x6f\x6a\x1a\x5d\x65\x66\x5d\x6b\x6e\x9d" +"\xa8\x7e\x1e\x5d\xf2\x95\x92\xc7\x2c\x05\x7a\x95\x9f\x80\x9f\x1b\xa7\xa1\xa1\xa7\x9f\x81\x9e\x79\x96\x1f\x0e\x59\xf8\x23\xf9\x54" +"\x15\xfb\x5f\xfb\x35\xfb\x33\xfb\x5d\xfb\x59\xf7\x36\xfb\x35\xf7\x5a\xf7\x5a\xf7\x35\xf7\x35\xf7\x5a\x27\x0a\xfb\x56\x1f\x86\x82" +"\x15\xd0\xfb\x38\x05\x94\x73\x78\x8e\x71\x1b\x72\x78\x88\x82\x73\x1f\xcf\xfc\xab\x15\x47\xf7\x38\x05\x81\xa3\x9e\x88\xa5\x1b\xa4" +"\x9e\x8e\x95\xa3\x1f\xf7\x47\xf8\x44\x15\x47\xfb\x38\x7a\xb3\x63\xb3\x63\x9c\x19\xfb\xde\xfc\x3f\x15\xcf\xf7\x39\x9c\x62\xb3\x63" +"\xb3\x7a\x19\xf8\x44\xf7\x48\x15\xfb\x38\x46\x05\x94\xa3\x8e\x9d\xa6\x1a\xa6\x88\x9d\x82\xa3\x1e\xfc\xab\x46\x15\xf7\x38\xd0\x05" +"\x82\x74\x88\x79\x6f\x1a\x70\x8e\x79\x94\x73\x1e\x4d\xf7\xd0\x15\xf7\x39\x48\x63\x7a\x63\x63\x7a\x63\x19\xf8\x3f\xfb\xde\x15\xfb" +"\x39\xce\xb3\x9c\xb3\xb3\x9c\xb4\x19\xfb\x46\xf7\x92\x15\xe8\xd8\x3c\x2d\x2d\x3f\x3e\x2d\x2c\x3d\xd8\xea\xec\xd7\xd6\xec\x1f\x0e" +"\xfb\x18\xf7\xe6\xf8\x15\x15\xf7\x20\x21\x4d\xc3\x58\x1b\x79\x72\x7d\x6e\x6a\x1f\x85\x74\x88\x74\x7a\x1a\x47\xc4\x74\xf7\x7b\x71" +"\x1e\xfb\x68\x71\x41\x6b\x4a\x1a\x7d\x8d\x76\x90\x76\x1e\x69\xb0\xa3\x7c\xa2\x1b\xbb\xbe\xbc\xf7\x2d\xf7\x04\x1f\x56\xfb\x10\x77" +"\x49\x53\x1a\x61\xa3\x74\xcb\x76\x1e\xce\x9d\xa9\xa5\xb3\x1a\xbb\x75\xcf\x51\xf7\x18\x1e\xfb\x1f\xf3\xcb\x52\xbd\x1b\x9d\xa4\x99" +"\xa8\xad\x1f\x90\xa2\x8e\xa2\x9c\x1a\xce\x50\xa3\xfb\x79\xa4\x1e\xf7\x68\xa6\xd5\xab\xcc\x1a\x99\x89\xa0\x87\xa0\x1e\xad\x66\x72" +"\x9a\x75\x1b\x5b\x57\x59\xfb\x2c\xfb\x03\x1f\xbe\xf7\x0c\xa0\xd1\xc2\x1a\xb6\x73\xa2\x4b\xa0\x1e\x48\x78\x6d\x71\x64\x1a\x5b\xa2" +"\x44\xc5\xfb\x15\x1e\x9b\x90\x15\x53\xf7\x10\x7a\xc2\xc1\x1a\xba\x9d\x9c\xc2\x92\x1e\xa7\xfb\xd4\x15\xc0\xd3\xa3\xa8\xa7\xa8\x08" +"\xb2\xb1\xb0\xa1\xa7\x1b\x9d\x9a\x80\x6f\xa1\x1f\xfb\x9b\xfb\x4b\x15\xf7\x00\x7e\xb6\x83\xb2\x7e\x08\xc2\x78\xa9\x72\x70\x1a\x7e" +"\x87\x7b\x83\x78\x1e\xfb\xb8\xf7\x1d\x15\xc3\xfb\x10\x9c\x54\x55\x1a\x5c\x79\x79\x54\x84\x1e\x70\xf7\xd5\x15\x54\x41\x74\x6f\x70" +"\x6f\x08\x64\x64\x66\x75\x6f\x1b\x79\x7c\x96\xa6\x75\x1f\xf7\x9c\xf7\x4c\x15\xfb\x03\x98\x61\x93\x65\x98\x08\x54\x9d\x6d\xa5\xa6" +"\x1a\x98\x8f\x9b\x93\x9d\x1e\x0e\xfb\x2c\xf8\x0e\xf7\xec\x15\xf7\x1f\xdc\xf7\x03\x54\x9e\xa5\x2b\xbb\xef\xc3\x78\xab\x29\x50\x92" +"\xf7\x00\x6a\x87\x83\xfb\x0f\xfb\x1f\x3a\x05\xf7\x36\x07\xf1\xcf\x7e\xa9\x32\x50\x8d\xf7\x06\x05\x65\x06\x8d\xfb\x06\x31\xc6\x7e" +"\x6d\xf2\x47\x05\xfb\x36\x07\xfb\x20\xdc\x83\xf7\x0f\x6b\x8f\x91\xfb\x00\x29\xc6\x78\x6b\xef\x53\x2b\x5b\x9e\x71\xf7\x03\xc2\xf7" +"\x1f\x3a\xfb\x1f\x3a\xfb\x03\xc2\x78\x71\xeb\x5b\x27\x53\x9e\x6b\xed\xc5\x85\x20\xab\x8f\x93\xf7\x0f\xf7\x20\xdc\x05\xfb\x36\x07" +"\x24\x47\x98\x6d\xe5\xc6\x89\xfb\x06\x05\xb1\x06\x89\xf7\x06\xe4\x50\x98\xa9\x25\xcf\x05\xf7\x36\x07\xf7\x1f\x3a\x93\xfb\x0f\xac" +"\x87\x84\xf6\xed\x51\x9e\xab\x27\xc3\xeb\xbb\x78\xa5\xfb\x03\x54\x05\x0e\xfb\x23\xf7\x57\xf8\xf7\x15\xfb\x2c\x07\xfb\x12\xdf\x05" +"\x8c\x89\x8a\x8b\x8a\x1b\x89\x88\x88\x88\x8a\x1f\x84\x77\x7d\x7a\x05\x89\x89\x8a\x89\x89\x1a\x89\x8c\x8a\x8e\x8a\x1e\xf7\x1b\x47" +"\xfb\x18\x3e\xf7\x18\x3f\xfb\x1b\x47\x05\x88\x8a\x8a\x8a\x8a\x1a\x89\x8c\x87\x8d\x8a\x1e\x99\x7a\x92\x77\x05\x88\x8c\x8e\x88\x8d" +"\x1b\x8c\x8c\x8b\x8c\x8d\x1f\xf7\x12\xdf\x05\xfb\x2c\x07\xf7\x18\xd6\x82\xfb\x2b\x05\x87\x8d\x89\x92\x1e\xa0\x8f\xa0\x87\x05\x92" +"\x8d\x8d\x8f\x1f\x81\xf7\x2b\xf7\x19\x40\x05\xf7\x2c\x07\xf7\x12\x37\x05\x8a\x8d\x8c\x8b\x8c\x1b\x8d\x8e\x8e\x8e\x8c\x1f\x92\x9f" +"\x99\x9c\x05\x8c\x8c\x8c\x8e\x8d\x1a\x8d\x8a\x8d\x89\x1e\xfb\x1b\xcf\xf7\x17\xd7\xfb\x17\xd8\xf7\x1b\xcf\x05\x8e\x8c\x8c\x8c\x8c" +"\x1a\x8d\x8a\x8f\x89\x8c\x1e\x7d\x9c\x84\x9f\x05\x8e\x8a\x88\x8e\x89\x1b\x8a\x8a\x8b\x8a\x89\x1f\xfb\x12\x37\x05\xf7\x2c\x07\xfb" +"\x19\x40\x95\xf7\x2b\x05\x8f\x89\x8d\x84\x1e\x76\x87\x76\x8f\x05\x84\x89\x89\x87\x1f\x94\xfb\x2b\x05\xfb\x04\xb4\x15\xf7\x06\x4a" +"\x05\xfb\x19\x07\xfb\x06\xce\x05\xf7\x9e\xf7\x17\x15\xfb\x17\x07\xfb\x06\x48\x05\xf7\x19\x07\xf7\x8b\xfb\x3a\x15\xfb\x05\x4a\xfb" +"\x07\xcc\xf7\x07\xcd\x05\x77\xfb\xbc\x15\xfb\x06\xcc\x05\xf7\x18\x07\xf7\x06\x49\x05\xfb\x9e\xfb\x17\x15\xf7\x17\x07\xf7\x06\xcd" +"\x05\xfb\x18\x07\xfb\x8b\xf7\x39\x15\xf7\x05\xcd\xf7\x07\x49\xfb\x07\x4a\x05\x0e\xfb\x2a\xf8\x06\xf7\xe9\x15\xf4\xc8\xf7\x32\x69" +"\xa1\xbb\x28\xaa\xe7\xbc\x7a\xa9\x33\x53\xa1\xf1\x57\x8f\x59\xfb\x2e\x22\x50\x89\xf7\x0d\xf7\x01\xf7\x0c\x6d\xb6\x3e\x45\x8f\xf3" +"\x05\x69\x06\x8f\x23\x3e\xd1\x6d\x60\xf7\x01\xfb\x0c\x89\xfb\x0d\x22\xc6\x59\xf7\x2e\x57\x87\xa1\x25\x33\xc3\x7a\x6d\xe7\x5a\x28" +"\x6c\xa1\x5b\xf7\x32\xad\xf4\x4e\x22\x4d\xfb\x32\xad\x75\x5b\xee\x6c\x2f\x5a\x9c\x6e\xe3\xc2\x05\x75\x25\xbf\x87\xbd\xf7\x2e\xf4" +"\xc6\x8d\xfb\x0d\xfb\x01\xfb\x0c\xa9\x60\xd8\xd1\x87\x23\x05\xad\x06\x87\xf3\xd8\x45\xa9\xb6\xfb\x01\xf7\x0c\x8d\xf7\x0d\xf4\x50" +"\xbd\xfb\x2e\xbf\x8f\x75\xf1\xe3\x54\x9c\xa8\x2f\xbc\xee\xaa\x75\xbb\xfb\x32\x69\x05\x0e\x56\xf7\xc5\xf8\x32\x15\x92\x06\x94\x8e" +"\x8d\x93\x8c\x8b\x8f\x8a\x8e\x1f\xfb\x61\xf7\x6e\x7f\x76\x88\x89\x77\x80\x19\xf8\x21\xfb\xe9\x15\x84\x06\x82\x88\x89\x83\x8a\x8b" +"\x87\x8c\x88\x1f\xf7\x61\xfb\x6e\x97\xa0\x8e\x8d\x9f\x96\x19\xfc\x0f\xf7\x4c\x15\x92\x07\x93\x88\x8f\x85\x1e\x89\x06\x84\x06\xfb" +"\x6e\xfb\x62\xa0\x7f\x8d\x88\x96\x77\x19\xf7\xe9\xf8\x21\x15\x84\x07\x82\x8d\x88\x93\x8c\x8f\x8b\x8c\x8e\x1e\xf7\x6e\xf7\x61\x76" +"\x97\x89\x8e\x80\x9f\x19\xfb\xa5\xfb\x8e\x15\x6b\x70\x71\x6a\x6a\xa5\x70\xad\xab\xa6\xa6\xac\xac\x71\xa5\x69\x1f\xf7\xbf\x04\x82" +"\x8c\x86\x88\x7a\x81\x08\x79\x80\x8b\x8b\x7f\x1a\x2c\x8f\x61\x96\x69\x1e\x5a\x9c\x98\x6e\x91\x1b\x8e\x8f\x92\xa1\x95\x1f\xa3\xc1" +"\x94\xc8\xf1\x1a\xa1\x81\x93\x62\x93\x1e\x8d\xfd\x61\x15\x94\x91\x8d\x95\x9b\x1f\x9d\x96\x8b\x8b\x97\x1a\xe9\x87\xb6\x80\xad\x1e" +"\xbc\x7a\x7e\xa8\x85\x1b\x88\x87\x84\x75\x81\x1f\x73\x56\x82\x4d\x25\x1a\x75\x95\x83\xb3\x83\x1e\xf7\xfb\xf7\xfb\x15\x8a\x91\x8a" +"\x91\x88\x92\x08\xa4\x82\x85\x91\x7c\x1b\x2b\x62\x87\x80\x69\x1f\x5a\x7a\x6f\x7e\x8a\x85\x08\x88\x93\x87\xa0\x81\x1e\x73\xc2\xc7" +"\x82\xf1\x1b\xa1\x93\x95\xb4\x93\x1f\xfd\x61\x89\x15\x83\x8e\x82\x94\x7d\x1e\x79\x95\x8b\x8b\x9a\x1b\xe7\xb7\x8f\x96\xad\x1f\xbb" +"\x9b\xa8\x99\x91\x1a\x8e\x85\x8f\x74\x95\x1e\xa3\x55\x4f\x94\x25\x1b\x74\x83\x81\x63\x83\x1f\x0e\x57\xe0\xf9\x0d\x15\xf7\x5b\xfb" +"\x5b\x9f\xa0\xfb\x5a\xf7\x5b\x05\xf8\xe8\xfc\xea\x15\xfb\x5b\xf7\x5b\x77\x76\xf7\x5a\xfb\x5b\x05\xf8\xff\x04\xfb\x5a\xfb\x5b\x9f" +"\x76\xf7\x5b\xf7\x5b\x05\xfc\xe8\xfc\xea\x15\xf7\x5a\xf7\x5b\x77\xa0\xfb\x5b\xfb\x5b\x05\xf7\xc9\xf8\x06\x15\x5e\x66\x66\x5e\x5e" +"\xb0\x66\xb8\xb8\xb0\xb0\xb7\xba\x67\xaf\x5d\x1f\x83\xf7\xaa\x15\x67\x62\x56\x5d\x6f\x95\x73\xaa\x5b\x1f\x95\x7b\x95\x7b\x8d\x87" +"\x08\x6a\x9c\x8c\x8a\x8f\x1b\x8f\x8d\x8e\xab\x9d\x1f\x8e\x92\x94\x9a\x95\x9b\x08\xa8\xbb\x94\xa3\xa9\x1a\xbb\x72\xa6\x4f\x9d\x1e" +"\x93\xfd\x62\x15\xae\xb5\xc0\xb9\xa7\x81\xa3\x6c\xbb\x1f\x80\x9b\x81\x9c\x8a\x8e\x08\xad\x7a\x8a\x8b\x87\x1b\x87\x88\x87\x6c\x7a" +"\x1f\x88\x84\x82\x7d\x81\x7a\x08\x6e\x5b\x82\x73\x6d\x1a\x5b\xa4\x70\xc6\x79\x1e\xf7\xfa\xf7\xfb\x15\x8c\x8e\x8b\x8e\x8c\x1a\xaf" +"\x55\xb4\x5d\x70\x74\x81\x6c\x5b\x1e\x7b\x81\x7b\x81\x86\x89\x08\x6a\x7a\x8b\x8b\x86\x1a\x87\x8f\x88\xaa\x7a\x1e\x92\x87\x99\x83" +"\x9b\x81\x08\x6e\xbc\xa2\x82\xa9\x1b\xbb\xa6\xa3\xc8\x9d\x1f\xfd\x5f\x16\x8a\x87\x8b\x89\x89\x1a\x67\xc0\x62\xb9\xa7\xa3\x95\xaa" +"\xba\x1e\x9b\x95\x9a\x95\x90\x8d\x08\xac\x9c\x8c\x8b\x90\x1a\x8f\x88\x8e\x6b\x9c\x1e\x84\x8e\x7d\x94\x7a\x95\x08\xa8\x5b\x73\x94" +"\x6e\x1b\x5b\x70\x73\x4f\x79\x1f\x0e\xfb\x12\xf8\x09\xf8\x0c\x15\xf7\x31\x07\xb9\x9d\xa3\xa9\xb4\x1a\xba\x63\xb2\x5b\x5d\x64\x63" +"\x5b\x63\xa2\x6e\xba\x79\x1e\xfb\x31\x07\xfb\x19\xd8\x05\x8e\x97\x8c\x97\x91\x1a\xb9\x63\xb1\x5c\x5a\x64\x67\x5c\x59\xb3\x62\xbb" +"\xa5\x9e\x94\xa3\xa1\x1e\xf7\x18\x3d\xfb\x18\x3d\x05\xa2\x75\x77\x94\x72\x1b\x5b\x62\x62\x5a\x5d\xb3\x65\xbc\xba\xb4\xb2\xb9\x94" +"\x8a\x91\x87\x9a\x1f\xf7\x19\xd7\x05\xfb\x31\x07\x5d\x7a\x73\x6d\x61\x1a\x5d\xb3\x63\xbb\xb9\xb2\xb3\xbb\xb3\x74\xa8\x5c\x9d\x1e" +"\xf7\x31\x07\xf7\x19\x3f\x05\x88\x7e\x8a\x80\x84\x1a\x5e\xb3\x64\xba\xbc\xb2\xb0\xba\xbc\x64\xb4\x5a\x72\x77\x82\x74\x75\x1e\xfb" +"\x17\xd9\xf7\x17\xd9\x05\x74\xa1\x9e\x82\xa6\x1b\xbb\xb3\xb3\xbc\xba\x64\xb0\x5a\x5b\x62\x64\x5f\x82\x8c\x85\x8f\x7b\x1f\x0e\x5b" +"\xf8\x28\xf8\x72\x15\xab\xf7\x30\x05\x8e\x96\x8c\x95\x91\x1a\xa3\x76\xa1\x73\x74\x76\x76\x72\x86\x8c\x80\x8e\x80\x1e\xab\xfb\x30" +"\x05\xfb\x9b\x04\x6b\xfb\x30\x05\x88\x80\x8a\x80\x86\x1a\x72\xa0\x76\xa2\xa3\xa0\xa0\xa4\x91\x8a\x95\x88\x96\x1e\x6b\xf7\x30\x05" +"\xe5\xf7\x6e\x15\xf7\x1a\xe3\x05\xa5\x9c\x93\x98\x9f\x1a\xa3\x79\x9d\x73\x77\x7e\x82\x72\x7a\x1e\x33\xfb\x1a\x05\xfb\x4d\xfb\x4d" +"\x15\xfb\x1a\x33\x05\x72\x7a\x82\x7e\x77\x1a\x73\x9d\x79\xa3\xa0\x97\x93\xa5\x9c\x1e\xe3\xf7\x1a\x05\xf7\x6e\xe5\x15\xf7\x30\x6b" +"\x05\x89\x96\x94\x89\x92\x1b\xa4\xa0\xa0\xa2\xa3\x76\xa0\x72\x84\x81\x89\x89\x81\x1f\xfb\x30\x6b\x05\xfb\x9b\x16\xfb\x30\xab\x05" +"\x8d\x81\x81\x8d\x84\x1b\x72\x76\x76\x73\x74\xa1\x76\xa3\x92\x94\x8d\x8d\x96\x1f\xf7\x30\xab\x05\xf7\x6e\x31\x15\xe3\xfb\x1a\x05" +"\x71\x9c\x98\x83\x9f\x1b\xa3\x9d\x9d\xa3\x9f\x83\x98\x71\x9c\x1f\xfb\x1a\xe3\x05\xfb\x4d\xf7\x4d\x15\x33\xf7\x1a\x05\xa4\x7a\x7e" +"\x94\x78\x1b\x72\x79\x79\x73\x77\x94\x7e\xa4\x7a\x1f\xf7\x1a\x33\x05\xef\x94\x15\x55\x60\x61\x55\x57\xb6\x60\xc0\xbf\xb6\xb6\xbf" +"\xc0\x61\xb6\x57\x1f\x0e\x55\xf8\x05\xf8\x3c\x15\x84\x89\x84\x88\x86\x87\xfb\x01\xf7\x2d\x18\xaa\x75\x7b\x95\x72\x1b\x6c\x73\x74" +"\x6c\x72\x96\x7b\xaa\x75\x1f\xf7\x2f\xfb\x02\x88\x86\x88\x83\x8a\x85\x19\xfb\x4e\xaa\x05\x8e\x7e\x7f\x8c\x85\x1b\x6b\x6f\x70\x6d" +"\x6c\xa7\x71\xab\x92\x96\x8c\x8d\x98\x1f\xf7\x4f\xab\x8d\x84\x8e\x84\x8e\x86\x19\xfb\x2d\xfb\x01\x05\x6c\x75\x80\x7b\x72\x1a\x6c" +"\xa3\x73\xaa\xa4\x9a\x96\xaa\xa2\x1e\xf7\x01\xf7\x2e\x91\x88\x91\x89\x93\x89\x19\x6c\xfb\x4d\x05\x88\x7e\x8a\x80\x83\x1a\x6c\xa6" +"\x6f\xa9\xa9\xa6\xa7\xab\x93\x8a\x95\x89\x98\x1e\x6b\xf7\x4e\x91\x8d\x92\x8e\x91\x8f\x19\xf7\x01\xfb\x2d\x05\x6c\xa1\x9b\x81\xa5" +"\x1b\xaa\xa2\xa2\xaa\xa4\x81\x9a\x6b\xa2\x1f\xfb\x2f\xf7\x01\x8e\x91\x8e\x93\x8c\x91\x19\xf7\x4e\x6b\x05\x89\x98\x96\x8a\x92\x1b" +"\xab\xa7\xa6\xa9\xaa\x6f\xa5\x6b\x85\x80\x8a\x89\x7d\x1f\xfb\x4f\x6b\x88\x93\x89\x91\x88\x90\x19\xf7\x2d\xf7\x01\x05\xaa\xa1\x96" +"\x9b\xa4\x1a\xaa\x73\xa3\x6c\x72\x7c\x80\x6c\x74\x1e\xfb\x01\xfb\x2e\x85\x8e\x86\x8d\x82\x8d\x19\xaa\xf7\x4d\x05\x8e\x99\x8c\x97" +"\x90\x1a\xab\x70\xa7\x6d\x6d\x70\x6f\x6b\x84\x8c\x80\x8d\x7e\x1e\x0e\x5b\xf8\x26\xf9\x58\x15\xfb\x60\xfb\x37\xfb\x33\xfb\x5b\xfb" +"\x5e\xf7\x35\xfb\x36\xf7\x5c\xf7\x5b\xf7\x36\xf7\x36\xf7\x5b\xf7\x59\xfb\x36\xf7\x38\xfb\x55\x1f\x0e\xad\xf8\x4b\x23\x0a\xfb\x80" +"\xfb\x3c\xfb\x29\xfb\x66\xfb\x04\xc1\xfb\x00\xe5\x4a\x1f\x5b\xce\xe2\x71\xed\x1b\xf7\x82\xf7\x3d\xf7\x29\xf7\x66\xed\x61\xeb\x44" +"\xcb\x1f\xc9\x45\xfb\x01\xb2\x20\x1b\x61\x69\x15\xd5\xdc\x6b\x58\xc3\x1f\xd2\x4b\xb0\x37\x2e\x1a\xfb\x47\xfb\x25\xfb\x25\xfb\x47" +"\xfb\x48\xfb\x24\xf7\x25\xf7\x4a\xd9\xa9\xd8\xc0\xc6\x1e\xd2\xcc\xdd\xaf\xee\x1b\x0e\x3d\xf9\x6a\x16\xf9\x47\xfd\x47\xfd\x47\x07" +"\x0e\x3e\xf9\x02\x20\x0a\xfc\xdf\xfc\xe6\xf6\x2a\xf8\xdd\xf8\xdf\x22\x06\x6b\xd2\x15\xfc\xa4\xfc\x9e\xf8\xa4\x07\x0e\x3e\xf9\x02" +"\x16\xf3\xf4\xf8\xdf\xfc\xdd\x25\x20\xfc\xe1\x07\xf8\xbf\xac\x15\xfc\x9e\xf8\xa0\xf8\x9e\x06\x0e\x3b\xf8\xeb\x20\x0a\xfc\xc8\xfc" +"\xd4\x06\xf7\x0b\xfb\x07\x05\xf8\xcf\xf8\xd0\x06\xfb\x13\xe1\x15\xfc\xab\xfc\xa6\xf8\xab\x07\x0e\x3b\xf8\xeb\x16\xf7\x12\xf7\x0c" +"\x05\xf8\xcf\xfc\xcf\x07\xfb\x0b\xfb\x07\x05\xfc\xd4\x07\xf8\xc7\xac\x15\xfc\xa6\xf8\xab\xf8\xa6\x06\x0e\xc0\xf9\xee\x16\xfc\x2f" +"\xf9\x55\xfc\x30\xfd\x55\x05\x0e\xc0\xf9\xee\x20\x0a\xfd\xcb\x06\xf8\x30\xfd\x55\x05\x0e\xf8\x1f\x7d\x15\xf7\xfb\xf7\xfc\xfb\xfb" +"\xf7\xfb\xfb\xfc\xfb\xfb\x05\x0e\x54\xf8\x1c\x23\x0a\xfb\x29\xfb\x35\xf7\x29\xfb\x29\xf7\x27\xf7\x29\x05\xf7\x66\xfb\x58\x15\xfb" +"\x34\xf7\x29\xfb\x29\xfb\x29\xf7\x29\xfb\x2d\x05\xfb\x59\xfb\x65\x15\xf7\x2b\xf7\x38\xfb\x2b\xf7\x2a\xfb\x29\xfb\x2a\x05\xfb\x64" +"\xf7\x5a\x15\xf7\x33\xfb\x28\xf7\x29\xf7\x28\xfb\x29\xf7\x29\x05\x0e\xfc\x25\xae\x7d\x15\xc8\x8c\xb8\x94\xb8\x9e\x08\xf7\x14\xc1" +"\xe4\xf7\x1b\xf7\x22\x1a\xf7\x5b\xfb\x39\xf7\x34\xfb\x5f\x1e\x0e\xfd\x51\xf3\x20\x0a\x46\xfd\x47\xd0\x06\x0e\xfc\xc6\xf7\x86\x20" +"\x0a\xfb\x63\xfd\x47\xf7\x63\x06\x0e\xfc\x3c\xf8\x10\x20\x0a\xfb\xed\xfd\x47\xf7\xed\x06\x0e\xfc\x53\xf7\xee\xf9\x54\x15\x8c\x7f" +"\x7f\x8b\x86\x1b\x2e\x44\x72\x57\x5b\x1f\x5f\x5d\x71\x45\x44\x1a\x20\xcb\x44\xed\xe6\xd0\xca\xdd\xdc\x4b\xcb\x3a\x7a\x7c\x88\x87" +"\x80\x1e\x86\x7e\x8b\x8b\x85\x1b\x7b\x81\x96\x9b\x9f\x9a\xa6\xa0\x9f\x1f\xa5\xa8\xcd\xa2\xbc\x1b\xaa\x8a\x05\x96\x06\x0e\xfc\x53" +"\xb8\xf7\x9c\x15\x8a\x9b\x96\x8b\x93\x1b\xe1\xd6\xa7\xbc\xb9\x1f\xb6\xb9\xa6\xd3\xcf\x1a\xf7\x00\x4a\xd2\x29\x30\x46\x4c\x39\x3b" +"\xcb\x4b\xdc\x9b\x9b\x8d\x8f\x96\x1e\x91\x99\x8b\x8b\x91\x1b\x9a\x95\x7f\x7b\x6d\x6d\x64\x66\x79\x1f\x79\x68\x5b\x81\x5f\x1b\x6f" +"\x06\x0e\xfb\x3f\xf7\xd2\x23\x0a\x6d\x7f\x8a\x86\x75\x1f\xfb\x12\x72\x2e\xfb\x02\xfb\x10\x1a\x26\xcf\x3f\xe6\xcc\xc5\xb4\xc8\x9f" +"\x1e\x46\xaa\xba\x6a\xcd\x1b\xe0\xce\xce\xdf\xdf\x47\xcf\x37\x72\x78\x87\x7d\x6d\x1f\x9e\xd2\xee\xc7\xf0\x8c\x77\xa4\x18\xfb\x1e" +"\x8d\x21\x38\x67\xfb\x1d\x08\xc0\x6a\x5e\xa5\x53\x1b\x71\x78\x87\x7d\x6f\x1f\xa2\xd7\xe9\xc4\xf0\x8a\x08\x0e\xfb\x3f\xf7\xf3\xf7" +"\x9b\x15\xc0\xb5\x95\xa0\xb4\x1f\xe4\xb8\xc5\xe8\xeb\x1a\xf1\x47\xd6\x30\x4a\x51\x62\x4e\x76\x1e\xd0\x6d\x5c\xac\x49\x1b\x36\x48" +"\x49\x36\x37\xcf\x46\xde\xa4\x9c\x90\x99\xab\x1f\x79\x44\x25\x4d\x29\x8c\x9f\x72\x18\xf7\x1d\x89\xf6\xdf\xae\xf7\x1c\x08\x56\xad" +"\xb8\x70\xc2\x1b\xa5\x9f\x91\x98\xa7\x1f\x74\x3f\x2c\x52\x26\x8c\x08\x0e\xfc\x55\xf7\xf0\x23\x0a\x49\x79\x6d\x80\x67\x79\x08\xfb" +"\x01\x53\x43\xfb\x10\xfb\x18\x1a\xfb\x19\xd3\xfb\x11\xf7\x01\x54\x1e\xac\x7b\xaa\x80\xcf\x77\x93\x96\x18\xfb\x14\xb8\x3a\xf7\x1a" +"\xf7\x3d\x1a\xf7\x05\xb0\xee\xce\xd2\x1e\xa8\xaa\xa9\x9e\xb9\x9b\x08\x0e\xfc\x55\xae\xf9\x4a\x15\xf7\x13\x5f\xdc\xfb\x1b\xfb\x3e" +"\x1a\xfb\x3d\x3a\xfb\x1c\xfb\x13\x60\x1e\x93\x80\xce\x9e\xaa\x96\xad\x9c\x19\xf7\x00\xc2\xd3\xf7\x11\xf7\x19\x1a\xf7\x18\x43\xf7" +"\x10\xfb\x00\xc3\x1e\x68\x9c\x6c\x96\x49\x9e\x08\x0e\xfc\x9e\xf7\x42\x20\x0a\x2e\xfb\x04\x5d\xfb\x06\xfb\x0c\x1a\xfb\x0c\xbb\xfb" +"\x0b\xe6\x21\x1e\xf7\x01\x06\x4f\xf7\x12\x73\xf1\xf7\x0d\x1a\xf7\x0f\xb2\xf7\x31\xb8\xc9\x1e\x0e\xfc\x9e\xae\x20\x0a\xc9\xfb\x14" +"\xa1\x2f\xfb\x11\x1a\xfb\x0a\x71\xfb\x00\x51\xfb\x0c\x1e\xf7\x01\x06\xe5\xf2\xbc\xf7\x0e\xf7\x0c\x1a\xf7\x0c\x5d\xf7\x07\x2e\xf7" +"\x03\x1e\x0e\xfc\xc7\xf7\x1d\x20\x0a\x25\xfb\xee\xf1\xfb\xed\x05\xf4\x06\x23\xf7\xed\xf3\xf7\xee\x05\x0e\xfc\xc7\xf7\x1e\x20\x0a" +"\x24\x06\xf2\xfb\xee\x24\xfb\xed\x05\xf2\x06\xf3\xf7\xed\x05\x0e\xfb\xde\xf7\xaa\x16\xf7\x59\x06\xfb\x87\xf7\xee\xf7\x87\xf7\xed" +"\x05\xfb\x59\x06\xfb\x87\xfb\xed\x05\x0e\xfb\xde\xf7\x7c\x16\xf7\x87\xf7\xee\xfb\x87\xf7\xed\x05\xfb\x59\x06\xf7\x87\xfb\xed\xfb" +"\x87\xfb\xee\x05\x0e\xfc\x41\xf7\x1b\x20\x0a\x27\xfb\xed\xef\xfb\xee\x05\xf7\x84\x06\x27\xf7\xee\xef\xf7\xed\x05\x0e\xfc\x41\xf7" +"\xa7\x20\x0a\xfb\x84\x06\xef\xfb\xed\x27\xfb\xee\x05\xf7\x84\x06\xef\xf7\xee\x05\x0e\xfc\xf1\xf7\x5b\xf9\x4a\x15\x75\x96\xfb\x22" +"\x32\x05\xfc\xb1\x07\xf7\x22\x32\xa1\x96\xfb\x06\xd9\x05\xf8\xb1\x07\x0e\xfc\xf1\xae\xf9\x4a\x15\xf7\x06\x3d\x05\xfc\xb1\x07\xfb" +"\x06\x3d\xa1\x80\xf7\x22\xe4\x05\xf8\xb1\x07\xfb\x22\xe4\x05\x0e\xfc\x8d\xf7\xbf\x20\x0a\x60\x06\x3b\x71\x89\x83\x76\x1f\x6c\x7e" +"\x7e\x74\x60\x1a\x7f\x07\x8c\x78\x05\xfb\x18\x07\x8d\x4c\x7f\x76\x62\x87\x08\x7f\x07\xb5\x88\x96\x7a\x89\x48\x08\xfb\x18\x07\x8a" +"\x6b\x05\x65\x96\x74\xa4\x7e\x1e\x80\xa0\xa5\x88\xd8\x1b\xc1\x97\x86\x06\x76\x77\x92\x95\x82\x1f\x80\x98\x8a\x94\xc4\x1a\xf7\x01" +"\x07\x8d\xe0\x79\xa8\x4b\x99\xcb\x9a\x9d\xa7\x89\xe1\x08\xf7\x01\x07\x89\xda\x95\x9a\xc6\x8d\x08\x0e\xfc\x8d\xae\x20\x0a\x7f\x07" +"\xc6\x89\x96\x7c\x88\x3c\x08\xfb\x01\x07\x8a\x35\x9c\x6f\xcb\x7c\x4b\x7d\x7a\x6e\x8c\x36\x08\xfb\x01\x07\x51\x8a\x83\x80\x7e\x1e" +"\x81\x83\x76\x84\x76\x1b\x86\x7f\xb6\x06\xdd\xa3\x8d\x93\xa0\x1f\xaa\x97\x98\xa3\xb5\x1a\x8a\xab\x05\xf7\x18\x07\x8a\xce\x95\x9c" +"\xb5\x8e\x08\x97\x07\x62\x8f\x7f\xa0\x8d\xca\x08\xf7\x18\x07\x8c\xaa\x05\xb3\x80\xa1\x73\x98\x1e\x96\x75\x70\x8e\x3d\x1b\x0e\x20" +"\xf9\x4d\x20\x0a\xfb\x46\xf7\x06\x06\x64\x81\x05\x23\x2a\x07\x31\x60\x88\x81\x5d\x1f\x27\x76\x46\x33\x21\x1a\x2e\xc0\x3d\xe3\x67" +"\x1e\x7b\xb4\xba\x83\xc8\x1b\xbb\xbf\x8f\x94\xc2\x1f\x89\xfb\x05\x84\x51\x7c\x5c\x08\x35\x6f\x50\x57\x45\x1b\x5b\x63\xa8\xad\x94" +"\x8f\x93\x91\x90\x1f\x90\x90\x8c\x8c\xa4\x8c\x08\xaa\x8e\xa2\xa5\xad\x1a\xb6\x65\xae\x5c\x50\x5b\x56\x4a\x38\xd4\x4a\xe9\xb8\xb5" +"\x9a\xa8\xb1\x1e\xb8\xac\xa6\xb5\x9d\xcc\x08\x9e\xcb\x8f\xc9\xf7\x3b\x1a\xf7\xd3\x07\x8a\x9e\x99\x8b\x95\x1b\xb7\xa6\x8f\x98\xba" +"\x1f\xfb\x5c\x7b\x15\xfc\x19\x07\x6e\x8e\x6b\x95\x67\x9c\x08\x82\xb2\x86\xc5\xcc\x1a\xcb\x91\xe2\x93\xb9\x1e\x0e\xfb\xbb\xf7\xa4" +"\xf7\xbd\x15\xa2\xcd\x96\x99\xc4\xa9\xb6\xa2\x9b\x94\x99\x97\x08\xae\xa7\x9c\xad\xb7\x1a\xae\x7e\xae\x73\xa5\x1e\xb4\x66\x64\x96" +"\x24\x1b\x24\x64\x80\x62\x66\x1f\x73\x71\x7e\x68\x68\x1a\x64\x98\x6b\xa6\x72\x1e\x9c\x7a\x9b\x82\xbf\x6f\xc4\x6d\x96\x7e\xa2\x48" +"\x08\x8d\x70\x15\x3b\x4b\x4d\x3c\x3b\xca\x4c\xda\xda\xca\xca\xda\xd9\x4c\xcb\x3e\x1f\x0e\xfb\xbb\xf7\xa3\xf9\x06\x15\x7f\x9f\x87" +"\x92\x85\x92\x08\xa7\x75\x68\x9b\x66\x1b\x42\x5b\x54\x37\x4e\xa9\x56\xb9\x76\x1f\xf6\x5b\xa5\x75\xa7\x4b\xa2\xc1\xa5\xa4\xcb\xab" +"\xc9\xa8\x8b\x8b\x97\x96\x08\xab\xa6\x9d\xb6\xbb\x1a\xdf\x5c\xc2\x42\x65\x67\x7b\x6f\x76\x1e\x85\x84\x87\x85\x7f\x76\x08\x8d\xfb" +"\xf8\x15\x3b\x4b\x4c\x3d\x3b\xca\x4c\xda\xd9\xcb\xca\xda\xd8\x4b\xcc\x3f\x1f\x0e\xd2\xf8\x5b\xf8\x6e\x15\x7b\xb4\x84\x9a\x7f\xa0" +"\x08\xc8\x65\x45\xb2\x41\x1b\xfb\x09\x35\x35\xfb\x0b\x44\xa2\x57\xbc\x65\x1f\xaa\x72\xac\x7a\xe0\x66\xf7\x0c\x56\xb1\x6c\xb4\x39" +"\xb5\xdd\xb0\xaa\xf7\x0c\xc0\xd1\xa9\xad\x9c\xa4\x9c\x08\xcb\xb7\xa7\xbf\xd9\x1a\xf7\x0c\x36\xe2\xfb\x0a\x41\x44\x64\x4e\x66\x1e" +"\x7f\x77\x84\x7b\x7b\x62\x08\x0e\xfb\x40\xf9\x0d\xf8\x11\x15\x89\x7b\x7d\x8a\x81\x1b\x6a\x67\x97\xa0\x6b\x1f\x62\xa5\x6c\xb6\x70" +"\xcf\x76\xc1\x83\x9c\x7d\x9d\x08\xb7\x6a\x5a\xa4\x54\x1b\x29\x3b\x3c\x2b\x56\xa4\x57\xb6\x6a\x1f\xa2\x78\x9e\x83\xb5\x81\x08\x79" +"\x07\x67\x82\x79\x83\x77\x7e\x08\x5b\x69\x6d\x54\x52\x1a\x2a\xda\x3d\xed\xd5\xcd\xb8\xd1\xa4\x1e\xaf\xed\x90\x94\xab\xb1\x08\xb8" +"\xb2\xc4\xa6\xc3\x1b\x94\x92\x8a\x89\x9a\x1f\x0e\x3c\xf7\xd9\xf9\x0e\x15\xb2\x5b\x6a\x9a\x65\x1b\x3d\x2e\x2c\x3a\x74\x9a\x7a\x9f" +"\x9e\xa0\x9d\x9c\x8f\x8b\x8c\x80\x98\x1f\x82\x95\x86\x99\x99\x1a\xbc\xb6\xb6\xbd\xaf\xb9\x76\x4e\xea\x1e\xc2\x68\x91\x87\xa4\x7e" +"\x7a\x5e\x88\x84\x83\x7b\x08\x7b\x6c\x89\x85\x7d\x1a\x85\x8c\x87\x8d\x82\x1e\x8d\x8f\x8d\x90\x8e\x90\x92\x98\x92\x99\x93\x99\x93" +"\x9a\x97\xa6\x97\xac\x08\x7c\xaf\xa1\x84\x9b\x1b\x98\xa3\x8f\x8f\x9a\x1f\xdf\xa2\xc4\xc5\xc7\x1a\xb0\x71\xa7\x69\x6a\x73\x6f\x64" +"\x82\x8d\x86\x90\x88\x1e\xa2\x7c\x90\x83\x76\x1a\x67\x69\x6c\x65\x6a\x64\x98\xa1\x6c\x1e\x91\xa5\x8d\x9a\x9b\x1a\xc4\x66\xb7\x5c" +"\x71\x7a\x81\x6f\x72\x1e\xf7\x11\xfb\x03\x15\x7e\x90\x77\x97\x77\x9b\x08\x75\x9c\x82\x99\x9e\x1a\x9e\x9a\x9a\x9d\xaa\xa7\x67\x61" +"\x80\x89\x80\x87\x80\x1e\x42\xfb\x5b\x15\x96\x07\xca\x66\xb2\x4e\x3c\x52\x3f\x21\xfb\x38\xf7\x21\xfb\x21\xf7\x39\xe0\xd6\xb5\xbc" +"\xa1\x79\x9b\x72\x7e\x85\x88\x81\x83\x1e\x4d\x82\x71\x6d\x5e\x1b\x69\x71\xa3\xa9\xaa\xa0\x9e\xd7\xb0\x1f\xbe\xa4\xab\x9f\x9c\x9e" +"\x08\xa7\xa8\x9a\xb1\xb1\x1a\xd1\x58\xc3\x4e\x6d\x6a\x80\x79\x77\x1e\x7a\x7d\x7f\x7c\x77\x68\x08\x0e\x3c\x98\xf7\x6c\x15\x94\x06" +"\x54\x91\xad\x67\xbb\x1b\xb2\xa1\xa1\xb1\x94\x8a\x91\x8a\x9b\x1f\x7d\x7b\x80\x86\x7a\x1b\x70\x7b\x99\xa8\x84\x1f\xdf\xac\xc2\xc9" +"\x8a\xc6\xb7\x89\xb3\x75\x9a\x6c\x08\x5b\x71\x7b\x76\x64\x1a\x41\xdd\x51\xf2\xd5\xe2\xab\xc9\xe1\x1e\xc3\xb2\xa1\xa4\xa3\x1a\x9f" +"\x7e\x97\x77\x7d\x83\x86\x7d\x82\x1e\x90\x7c\x8c\x84\x81\x1a\x6b\x73\x74\x6b\x75\x77\x96\xa0\x7e\x1e\x82\x9a\x88\x9a\x86\xb9\x84" +"\xd7\x89\x95\x76\xaa\x08\xb5\x70\x58\xa6\x59\x1b\x54\x5d\x63\x5a\x77\x8f\x7c\x98\x6d\x1f\x67\xaa\x62\x9b\x63\x8a\x80\xa5\x7e\x9a" +"\x6d\x9e\x08\x5d\xa7\x80\x97\xa3\x1a\x97\x91\x94\x98\x95\x1e\x81\x06\x62\x6f\x72\x67\x6a\x9d\x7a\xb9\x81\x1f\xc7\x7f\x8e\x89\x95" +"\x77\x3a\x7e\x42\x45\x88\x46\x7c\x7c\x87\x81\x88\x75\x08\xd2\xc9\x15\x88\xc4\xc5\xc5\xc8\x8c\x08\x8c\x85\x8b\x86\x88\x1a\x76\x79" +"\x6f\x71\x79\x1e\x76\x7c\x7b\x83\x67\x7f\x08\x0e\x4c\xf9\x0a\x16\x9f\x07\x2f\x9c\x6c\x9a\x5f\xba\x5e\xbf\x80\xae\x86\xf6\x9c\x6b" +"\x93\x7d\x99\x7b\x08\x5f\xaf\xc5\x6d\xbd\x1b\xe1\xd1\xd4\xe4\xe2\x4c\xd1\x3c\x73\x7c\x86\x7b\x6a\x1f\x85\x88\x84\x88\x84\x87\x08" +"\xa7\xb4\x96\xa8\xb0\x1a\xe0\x44\xcf\x34\x34\x44\x47\x36\x66\x96\x6e\xa7\x62\x1e\xa9\x4e\x89\x8c\x6e\x1b\x3c\x4c\x45\x34\x32\xd1" +"\x42\xe1\xbd\xc5\xa8\xb8\xb0\x1f\x98\x9b\x93\x99\x9c\xab\x86\x21\x80\x67\x5e\x57\x5f\x5c\x6c\x7c\x2f\x7a\x08\x77\x07\x0e\xfb\x88" +"\xb9\xf7\xdf\x15\xec\xfb\x06\xf7\x04\xfb\x30\xb4\x40\xb6\xda\xf7\x13\xf7\x41\xe9\xf7\x00\x3f\xde\xfb\x30\xf7\x69\x6b\xca\x58\x2e" +"\x43\x29\xfb\x1f\xfb\x3c\x08\x0e\xfb\x25\xf7\xf0\x7d\x15\xa0\xe2\xc3\xeb\xf7\x04\xf7\x1d\x08\xe6\xf7\x07\xaa\xcc\xd6\x1a\xd9\x48" +"\xcc\x3b\x5d\x60\x77\x67\x6b\x1e\x77\x73\x80\x77\x7f\x5f\x80\xad\x83\x9c\x7f\x9d\x08\xbb\x6b\x5a\xa6\x55\x1b\x38\x4b\x4a\x37\x4d" +"\xa1\x5d\xdb\x20\x1f\xf7\x27\xfb\x53\xb1\x4b\xa5\x28\x08\x0e\xfb\x69\xd3\x16\xf8\x75\x9f\x06\x2f\x9c\x6c\x99\x5f\xbb\x66\xb6\x7d" +"\xad\x85\xc9\x08\x58\xac\xbb\x6e\xc0\x1b\xd3\xc3\xc3\xd2\xca\x73\xb1\x27\xe6\x1f\x29\xe3\x6d\xb7\x71\xeb\x70\x2b\x6d\x5f\x2a\x33" +"\x08\x27\x30\x72\x65\x4c\x1a\x44\xc4\x53\xd2\xc0\xbb\xa8\xbe\xac\x1e\x85\x4d\x7d\x69\x66\x60\x5f\x5b\x6c\x7d\x2f\x7a\x08\x0e\xf8" +"\x52\xf8\xe0\x15\x6b\x06\x6c\x60\x5a\x73\x42\x83\x08\x70\xd1\x07\xa4\x8a\x8e\x87\x70\x1a\xfb\x83\x07\x8d\x59\x7f\x7e\x5c\x8a\x08" +"\x70\x6a\xf7\x97\xac\x67\x06\x63\x8c\x7f\x9a\xbb\x1a\x5d\xf8\x7f\x22\x0a\xfb\x32\xfb\x5b\x31\x0a\xf8\xa8\xf7\xbd\x15\x60\x07\x8a" +"\x5f\x84\x84\x62\x8d\x08\xfb\x59\x06\x99\xb0\xbf\xb6\xd2\xab\x08\xeb\xb8\xae\xb3\xcb\x1a\xda\x4b\xbd\x25\x39\x51\x61\x51\x6b\x9f" +"\x74\xa8\xa5\xa1\xa1\xa5\x91\x8a\x90\x89\x8f\x1e\x83\x9e\x8b\x8b\x8e\x1a\x9c\xa8\x9f\xa3\xb0\xa4\x69\x58\x4f\x6e\x62\x32\x48\x1e" +"\x46\x56\x67\x54\x52\x1a\x85\x8c\x82\x8c\x80\x1e\xf7\xe4\xf7\x47\x06\xfb\x38\xf8\x2d\x22\x0a\x26\x0a\x31\x0a\xf7\xd5\xf7\xf7\x15" +"\x90\xa4\x96\x8d\x9a\x1b\xc8\xb0\x67\x51\x4b\x5f\x56\x54\x6c\x75\x99\x9e\x8e\x8c\x8f\x8c\x8d\x1f\x91\x9b\x8b\x8b\x94\x1a\xa8\x76" +"\x9f\x6c\x6b\x76\x76\x6c\x4e\xcc\x60\xe6\xf7\x05\xdd\xc9\xe2\xb2\x7a\xac\x6d\xa0\x1e\x7b\x96\x64\x99\x74\x8d\x08\x83\x88\x8d\x8e" +"\x8e\x8f\x8d\x9a\x8f\x1f\xc1\x9a\xa8\xae\xbb\x1a\xce\x57\xb0\x2e\x32\x4e\x67\x57\x71\x9e\x77\xa4\xa5\xa1\xa1\xa4\x90\x89\x94\x8a" +"\x8e\x1e\x87\x92\x8b\x8b\x8d\x1a\x99\xa4\x99\xa4\xb4\xa7\x6d\x5e\x50\x62\x64\x4e\x85\x83\x8b\x8c\x81\x1e\xda\xf7\xcf\x15\xfb\x5e" +"\xfb\x37\x32\x0a\x37\x2e\x1a\xfb\x49\x28\x0a\xf8\x60\xf8\xe0\x15\x48\x06\xfb\x69\xfb\xd5\x05\x6f\xf7\x55\x65\x07\x8c\x64\x84\x82" +"\x6b\x89\x08\x5b\x6a\xf7\x85\xac\x6b\x06\x6c\x8e\x85\x91\x8c\xad\x08\xb8\xf7\x02\xb8\xfb\x02\x07\x34\xf7\x67\x15\xfb\x67\xfb\x1b" +"\x07\xf7\x37\xf8\x39\x15\xfb\x60\xfb\x36\x2d\x0a\xf7\x5c\xf7\x5b\xf7\x34\xf7\x35\xf7\x5a\x3f\x0a\xf7\x38\xfb\x54\x1f\x8a\x6a\x15" +"\xd5\xde\x6a\x58\xc3\x2f\x0a\x37\x2d\x1a\xfb\x48\x28\x0a\xf7\xb2\xf7\xcf\x15\xad\xa6\xa4\x9b\xa8\x1b\xb9\xad\x5f\x4e\x4b\x60\x57" +"\x56\x6f\x74\x99\x9c\x91\x8b\x8b\x92\x9a\x1f\x8e\x92\x8d\x93\x93\x1a\xa3\x74\x9f\x6e\x6d\x76\x75\x6b\x53\xcc\x61\xe1\xf7\x05\xe1" +"\xce\xe3\xdc\x49\xc6\x2e\x5c\x66\x7f\x73\x6d\x1e\x96\xf7\x0d\x05\x88\xac\x9c\x8a\xac\x1b\xe0\xa2\x8f\x9a\xa0\x1f\x9e\x98\x9a\xa8" +"\x95\xb7\x08\x7d\x64\x6a\x86\x55\x1b\x67\x6b\x8f\x9a\x32\x1f\x88\x57\x80\xfb\x0b\x80\x32\x08\xf7\x2f\xf8\x0a\x21\x0a\xf7\xc3\xf7" +"\xe2\x15\x8a\xa1\x8b\x99\x90\x1a\xd1\xa1\xd0\xac\xaa\x1e\x96\x97\x9f\x92\x9e\x1b\xa8\xa2\x7c\x78\x88\x8a\x87\x8a\x87\x1f\x87\x80" +"\x89\x80\x86\x1a\x75\xa1\x77\xa3\xa7\x9f\xa2\xaa\xc0\x4d\xb2\x36\x52\x5e\x79\x67\x6b\x1e\x61\x5b\x72\x41\x40\x1a\x4b\x9c\x51\xac" +"\x60\x1e\x5e\xad\xbc\x74\xca\x1b\xf3\xd7\xd1\xea\xd8\x51\xc3\x3c\x54\x5e\x72\x59\x69\x1f\xed\xa9\x15\xbd\xac\x5e\x48\x4b\x66\x5f" +"\x58\x56\x66\xb8\xcc\xca\xb4\xba\xc1\x1f\x8a\xf7\xea\x22\x0a\x30\x0a\xf7\x6f\xf8\xdd\x15\xfb\x3b\xa9\x07\x93\xae\x97\xb7\x8c\x8c" +"\xac\x8c\x19\xf7\x4a\x06\x43\x27\x47\x33\x8b\x8b\x7c\x72\x19\x73\x62\x7d\x63\x6d\x1a\x66\xa5\x70\xae\xae\xa4\xa2\xac\x91\x8a\x91" +"\x8a\x90\x1e\x80\xb6\x8b\x8b\x98\x1a\xa7\x97\xb3\x9d\xac\x1e\x91\x97\x8e\x8f\xe3\xf7\x29\xb5\xce\x18\x8c\x8e\x8f\x8e\x92\x1e\xfb" +"\x43\xf7\x0d\x15\xfb\x5e\xfb\x37\x26\x0a\x34\x0a\x37\x2e\x1a\xfb\x49\x28\x0a\xf8\x5e\xf8\x24\x15\xc1\xaf\x9d\xa3\xb1\x1a\xc3\x55" +"\xb4\x41\x36\x4e\x58\x43\x5e\x9b\x72\xbf\x6a\x1e\x40\x60\x72\x6a\x53\x1a\x3f\xcc\x59\xed\xf4\xd5\xca\xe3\xc7\x6d\xb3\x3d\xb1\x1e" +"\x3f\xb2\x15\x68\x9e\x7c\x9d\xa5\x1a\xad\xa9\xa5\xb3\xb5\xa9\x6f\x63\x6b\x7b\x71\x69\x77\x1e\x82\x28\x15\xb9\x71\x9e\x72\x67\x1a" +"\x5a\x62\x66\x56\x53\x62\xb4\xc3\xb7\xa3\xb2\xb7\xa5\x1e\xb6\xf7\xf8\x21\x0a\xf8\x7a\xf7\xfc\x15\x8c\x7c\x8b\x86\x82\x1a\x45\x75" +"\x46\x69\x6c\x1e\x80\x80\x76\x84\x78\x1b\x6e\x74\x9a\x9e\x8e\x8c\x8f\x8d\x90\x1f\x8e\x96\x8d\x95\x90\x1a\xa1\x75\x9f\x73\x6f\x77" +"\x74\x6c\x56\xc9\x64\xe1\xc3\xb9\x9d\xaf\xaa\x1e\xb6\xbb\xa4\xd5\xd6\x1a\xcb\x7a\xc5\x69\xb7\x1e\xb7\x69\x5b\xa2\x4c\x1b\x22\x3f" +"\x45\x2c\x3e\xc5\x53\xda\xc3\xb7\xa4\xbd\xad\x1f\x2f\xf7\x52\x15\xc0\xb1\x5e\x4a\x4c\x62\x5c\x54\x59\x6a\xb7\xcf\xcb\xaf\xb7\xbf" +"\x1f\x92\xf7\x24\x21\x0a\xf7\xd2\xf8\xe1\x15\x69\x06\x73\x63\x64\x78\x46\x87\x08\x71\xbe\x07\xab\x88\x8c\x8b\x64\x1a\xfb\x9d\x07" +"\x6a\x8c\x86\x84\x6e\x1b\x72\x68\xf7\x5a\xae\x78\x06\x69\x8e\x85\x91\x8c\xb1\x08\xf7\x4f\xf8\x1f\x15\x2e\x59\x35\xfb\x30\xfb\x36" +"\xba\x3b\xeb\xc2\xb0\x9d\xb0\xa1\x1f\xa3\xb3\x98\xc9\xd7\x1a\xf7\x3d\x5a\xdd\x25\x1e\x8f\x6a\x15\xad\x9c\x46\xfb\x20\xfb\x1f\x7a" +"\x47\x68\x6a\x79\xd3\xf7\x1c\xf7\x1d\x9d\xd2\xad\x1f\xfb\x01\xf7\x24\x21\x0a\xf8\x24\xf9\x56\x39\x0a\xf7\x58\xfb\x35\xf7\x37\xfb" +"\x55\x1f\xc1\x2e\x15\xfc\x32\x07\x8a\x57\x9a\x78\xb7\x8a\x08\xb3\x69\xfb\xb8\xad\xa9\x06\xb8\x9e\x9c\xb2\x1f\x91\x07\x8a\x95\x05" +"\xf7\x9d\x07\x8c\xa9\x86\x8f\x70\x8c\x08\x3e\xa9\x06\xd9\x93\xc6\xa8\xaf\xba\x08\x0e\xf8\x24\xf9\x56\x22\x0a\x2a\x0a\xf7\x26\xfc" +"\x31\x15\xb0\xfb\x5c\xfc\x09\x06\x8a\x97\x8a\x95\x90\x1a\xce\xb0\xc6\xda\xc6\x1e\xc5\xb6\x99\x98\xa2\xa9\x08\xa1\xa8\x97\xad\xac" +"\x1a\xc3\x70\xb0\x63\x70\x6c\x75\x7a\x88\x8c\x89\x8c\x89\x1e\x94\x74\x8b\x8b\x82\x1a\x6f\x74\x75\x6d\x6b\x74\xa4\xad\xca\xcc\xb9" +"\xe6\xf7\x04\xd4\x54\x36\x66\x7e\x6b\x70\x6e\x1e\x75\x73\x72\x7c\x51\x6f\x39\x66\x55\x60\x7b\x60\x08\xf7\x6d\x06\xa0\x8a\x05\xa3" +"\x94\x9a\xb4\x1f\x0e\x33\x0a\x34\xfb\xcf\x15\x8a\x96\x94\x8a\x92\x1b\xa0\xa2\x91\x96\x9e\x1f\xac\x9e\x9b\xa7\xb5\x1a\xbd\x6c\xac" +"\x5e\x70\x71\x7c\x7b\x8a\x1e\x8a\x8b\x8a\x8c\x8a\x1e\x8f\x82\x8c\x85\x82\x1a\x6f\x73\x74\x6e\x6f\x76\xa0\xa8\xc0\xcf\xb2\xea\xf2" +"\xc4\x62\x41\x56\x6a\x64\x53\x7b\x1e\x7a\x86\x88\x89\x88\x1a\x87\x8e\x8a\x94\x8a\x1e\x9c\x8a\xb7\x7d\x9b\x82\x08\xb2\x75\xa1\x64" +"\x5c\x1a\x2c\x31\x46\xfb\x10\x26\x43\xbc\xd0\xaf\xa2\xa3\xae\xad\xa2\x75\x6b\x85\x8a\x85\x8a\x86\x1e\x85\x7c\x8b\x8b\x85\x1a\x76" +"\xa3\x7c\xac\xc5\xbb\xc5\xd1\xcb\x63\xb2\x49\x7b\x7f\x8a\x86\x71\x1e\x0e\xf8\x06\xf8\x92\x15\xfb\x2a\xfb\x7a\x05\xf7\x2a\x06\xa9" +"\xf8\x3e\x35\x0a\xcf\x2e\x15\xfb\xe1\xf7\x0c\x55\xfb\x0c\x59\x07\x65\x90\x85\xae\x87\x1e\xae\x68\xfb\xa0\xae\xbf\x06\xaf\x8e\x92" +"\x94\xb6\x1a\xb6\xfb\x6a\xac\x07\xf7\x81\xf7\xf6\x05\x0e\x29\x0a\xfb\x12\xfb\xe3\x15\xa6\xad\xb4\x98\xbf\x1b\xf1\xd5\x4a\x31\x2a" +"\x2b\x41\xfb\x13\x2e\x43\xba\xc8\xae\xa2\xa4\xad\xab\xa5\x74\x6f\x83\x89\x82\x87\x83\x1f\x83\x7b\x8b\x8b\x84\x1a\x77\xa4\x7b\xa9" +"\xc6\xba\xc5\xd4\xce\x65\xbc\x58\x6c\x70\x7b\x65\x6d\x1e\x5f\x9e\x97\xf0\x94\xe9\x90\xe8\x19\x79\xf7\x06\x9f\x89\xb7\x1b\xc5\xab" +"\x90\x9a\xb9\x1f\x82\x60\x7a\x68\x7b\x7d\x08\x77\x72\x72\x86\x27\x1b\x67\x79\x8c\x8e\x66\x1f\x0e\xf8\x26\xf8\x03\x15\x50\x5f\x58" +"\x46\x45\xb3\x5a\xc4\xc3\xb3\xbb\xd0\xd5\x67\xbb\x55\x1f\x89\xf7\xe7\x24\x0a\x21\xfc\x05\x15\xc2\xb1\xbc\xa6\xc8\x1b\xe3\xcb\x4c" +"\x34\x20\x37\x3e\xfb\x08\x45\x56\xa4\xbd\x65\x1f\x66\xbb\x78\xca\xd3\x1a\xd4\xa1\xd5\xb0\xbf\x1e\xc2\xb2\xbf\xa5\xd4\x1b\xe8\xd0" +"\x60\x51\x69\x75\x73\x6c\x70\x74\xa1\xa4\x91\x8d\x96\x8d\x97\x1f\x8d\x90\x8b\x8f\x8e\x1a\xa1\x73\x9b\x6b\x76\x74\x83\x7f\x7f\x1e" +"\x66\x68\x73\x40\x3c\x1a\x82\x8b\x8b\x8c\x7c\x1e\x80\x8b\x8b\x8c\x82\x1e\x0e\x38\x0a\xf7\x57\x25\x0a\xfb\x5c\x2c\x15\xf8\x1e\x06" +"\x88\x84\x88\x86\x8a\x89\x5e\x40\x18\x2a\xfb\x3a\x87\x84\x86\x81\x08\x78\x67\x7e\x5f\x6b\x1a\x82\x8c\x82\x8d\x81\x1e\x91\x62\x8b" +"\x8b\x83\x1a\x63\x72\x72\x62\x63\x71\xa8\xb7\xbc\xa8\xc8\xc6\xd7\x1e\x9a\x9f\x9a\x9f\x9a\x9e\xdc\xf7\x03\x18\xfb\x5e\x06\x66\x8a" +"\x8a\x8a\x7e\x5a\x82\x65\x18\x6a\x06\x0e\xf8\x40\xf8\x40\x15\xae\xa1\x9c\xa7\xae\x1a\xb6\x6b\xab\x5e\x5f\x6b\x6f\x66\x6e\x9c\x75" +"\xb0\x78\x1e\x6f\x28\x15\x5d\x70\x72\x61\x5b\x1a\x4f\xb7\x5e\xc7\xc4\xb8\xb3\xbf\xb2\x76\xa6\x5a\xa7\x1e\x79\xf8\x18\x24\x0a\xcc" +"\xfb\xbc\x15\xe0\x60\xae\x5f\x47\x1a\x28\x38\x44\xfb\x07\xfb\x01\x43\xc3\xe0\xcb\xa7\xb1\xdd\xba\x1e\x52\xb1\x79\xa6\xbc\x1a\xdb" +"\xcf\xc3\xe9\xde\xc7\x5f\x4d\x60\x77\x70\x4e\x64\x1e\x0e\xf8\x19\xf8\xdf\x15\x53\x64\x5b\x45\x42\xb0\x5d\xc4\xc4\xb5\xbd\xd0\xcf" +"\x62\xbd\x52\x1f\x96\xf7\x0b\x35\x0a\xe8\xfb\xeb\x15\x5d\x65\x60\x77\x4c\x1b\x2d\x4c\xc6\xe4\xf3\xdf\xd7\xf7\x06\xf7\x17\xe1\x26" +"\xfb\x2f\x3d\x76\x40\x64\x54\x1f\x58\x67\x56\x72\x40\x1b\x2f\x47\xb7\xc7\xaf\xa3\xa6\xa9\xa7\xa1\x74\x6d\x86\x8a\x86\x8a\x85\x1f" +"\x88\x80\x8a\x83\x88\x1a\x75\xa3\x7b\xaa\xa4\xa4\x95\x9c\x99\x1e\xac\xb1\x9f\xd0\xd7\x1a\x95\x07\x0e\xf8\xa0\xf8\xe0\x15\x63\x76" +"\x3b\xfb\x2f\xfb\x2e\xa0\x3a\xb3\xb4\x9f\xd7\xf7\x32\xf7\x32\x77\xd9\x62\x1f\xfb\x13\xf7\x0a\x15\xfb\x5d\xfb\x35\xfb\x34\xfb\x5c" +"\xfb\x5a\xf7\x35\xfb\x35\xf7\x5a\xf7\x5b\xf7\x35\xf7\x34\xf7\x5b\xf7\x5a\xfb\x35\xf7\x36\xfb\x58\x1f\x33\x2e\x15\xfc\x42\x07\x61" +"\x90\x84\xb1\x88\x1e\xa0\x65\xfb\x70\xb1\xa7\x06\xaa\x8c\x91\x92\x8a\xaf\x08\xf7\xba\x07\xb5\x8a\x8c\x67\x8d\x1e\x52\xa8\x06\xda" +"\x91\xb3\x9e\xa8\xb8\x08\xf7\x8d\x93\x15\xf7\x04\xc2\x30\xfb\x4f\x47\x80\x48\x79\x63\x1f\x51\x70\x62\x72\x45\x1b\x21\x56\xe4\xf7" +"\x46\xf7\x43\xc2\xe9\xf3\x1f\x0e\xf8\x1d\xf8\xe0\x15\x80\x55\x6a\x77\x3e\x8c\x08\x62\xec\xfb\xf8\xc8\xf8\x6a\x07\x6d\xf7\x0a\x21" +"\x0a\xf8\xae\xf7\x3d\x15\xfb\x75\x06\x99\xa8\x94\x94\xc2\xb0\x08\xf7\x0d\xdc\xa9\xb3\xd7\x1a\xe1\x4b\xc9\x32\x35\x4d\x4e\x36\x1e" +"\x7d\xc8\x07\x8a\x92\x8b\x8f\x8f\x1a\xc7\xae\xb3\xc0\xc1\xb1\x61\x4f\x4e\x73\x6c\x2d\x4e\x1e\x3c\x58\x66\x5a\x54\x1a\x88\x8c\x85" +"\x8c\x84\x1e\xf7\xb5\x06\xfb\x1e\xf8\xe0\x21\x0a\xf7\xca\xf8\x62\x15\x8c\x9d\x8c\x93\x8e\x97\x08\xa9\x94\xa8\x9e\xb0\x1b\xbe\xab" +"\x6b\x59\x6c\x82\x76\x78\x7e\x1f\x7c\x76\x74\x83\x75\x1b\x88\x84\x8c\x8c\x81\x1f\x82\x60\xac\x06\xd0\xb2\x6b\x51\x58\x65\x66\x56" +"\x6b\x70\x98\xa2\x7b\x1f\x80\x9a\x87\x9d\xab\x1a\x55\x80\x8a\x77\x05\x46\xc7\x58\xdc\xe3\xc9\xc4\xdd\xc6\x71\xb0\x55\x9d\x1e\xbb" +"\xa1\x9f\xa9\xbc\x1a\xd6\x4f\xc2\x3a\x58\x5d\x74\x66\x75\x1e\x80\x77\x86\x78\x89\x6a\x08\xf7\x24\xf7\x88\x21\x0a\xf8\xae\xf7\xb1" +"\x15\x40\xf7\xc8\x53\x06\xfb\x63\xfb\xc8\x05\x59\xf7\x64\xfb\x09\xc2\xf7\x09\xd6\x07\xfb\x16\xf7\xab\x15\xfb\x79\xfb\x2c\x07\xf7" +"\x24\xf8\x39\x21\x0a\xf7\xa1\xf8\xdd\x15\xfb\x9e\xb8\x07\xbf\x95\xac\xa8\xba\x1b\xc3\xb1\x62\x4f\x31\x69\x5a\x4d\x57\x68\xad\xbc" +"\x8a\x1f\x5e\x7f\x05\x41\x8f\xbd\x5c\xd6\x1b\xe8\xce\xd5\xf1\xea\x4e\xcc\x34\x5c\x70\x7e\x6c\x75\x1f\xf7\x19\xf7\x5d\xbd\x07\xfb" +"\x07\xf7\x0d\x21\x0a\xf8\x9c\xf8\x7c\x15\xd1\x7e\x61\xaf\x49\x1b\x51\x53\x67\x56\x72\x1f\x78\x63\x83\x5a\x46\x1a\x41\x96\x54\xa0" +"\x65\x1e\x61\xa4\xbb\x6f\xbd\x1b\xde\xc9\xd1\xe7\xe2\x53\xc8\x3c\x58\x67\x74\x5e\x76\x1f\x8a\x96\x8b\x8c\x96\x1a\xf7\x00\xb4\xcd" +"\xcd\xa5\xa1\x7f\x77\x96\x1e\x91\x81\x8d\x83\x91\x72\x08\x3c\x2d\x15\xc0\xad\x5e\x44\x49\x69\x60\x58\x53\x62\xbd\xcf\xc8\xb4\xb9" +"\xc1\x1f\x95\xf7\xda\x21\x0a\xf7\x82\xf8\xdc\x15\x59\xf7\x92\x07\x24\xfb\x0e\x3c\xfb\x38\x79\xfb\x16\x08\xce\x06\xa4\xf7\x1f\xc2" +"\xf7\x0f\xf7\x03\xf7\x37\x08\xb4\x07\xfb\x2a\xf7\x0e\x21\x0a\xf8\x5e\xf8\x02\x15\x9c\x92\x94\x90\x93\x90\x08\xa5\x9d\x9a\xab\xb1" +"\x1a\xd4\x55\xbd\x3d\x3b\x52\x58\x44\x59\xa1\x6a\xbc\x74\x1e\x76\x84\x7f\x85\x81\x84\x08\x6d\x77\x7a\x67\x61\x1a\x3a\xc8\x52\xe2" +"\xe2\xca\xc5\xdc\xc7\x70\xb0\x51\x9f\x1e\x4e\xf7\x51\x15\xc0\xac\x6b\x56\x59\x67\x68\x59\x58\x6b\xac\xbf\xbe\xac\xad\xbd\x1f\x88" +"\xfb\x6b\x15\xc6\xad\x68\x50\x53\x65\x63\x55\x54\x64\xb3\xc3\xc4\xb1\xb0\xc2\x1f\x91\xf8\x02\x21\x0a\xf7\x9c\xf7\x69\x15\x90\x70" +"\x8f\x7e\x94\x7c\x08\x6e\x9e\xb1\x78\xb4\x1b\xaf\xae\x98\xa2\xa4\x1f\xba\xb5\xa0\xcb\xf3\x1a\xcf\x80\xc6\x79\xae\x1e\xbc\x71\x5f" +"\xa6\x55\x1b\x37\x4c\x48\x2f\x34\xc1\x4f\xda\xc1\xad\xa0\xba\xa2\x1f\x89\x3b\x85\x68\x7c\x6e\x08\x67\x78\x6f\x77\x6a\x1b\x66\x73" +"\xa2\xb7\x80\x1f\xd4\xf7\xe0\x15\xc2\xb3\x59\x46\x4b\x65\x5f\x54\x53\x6b\xb5\xd5\xcf\xac\xb6\xc0\x1f\x99\xf7\x2b\x21\x0a\xf8\x74" +"\xf8\xe6\x15\x61\x66\x79\x69\x72\x1f\x6f\x65\x7d\x50\x33\x1a\x2e\x9e\x43\xac\x63\x1e\x71\xa2\xac\x7b\xae\x1b\xb3\xad\x9c\xad\xa5" +"\x1f\xa8\xaf\x9b\xce\xdd\x1a\xf7\x3a\x5c\xdd\x2c\x1e\x89\x64\x15\xc4\xa7\x46\xfb\x20\xfb\x17\x70\x4a\x54\x53\x6b\xd6\xf7\x18\xf7" +"\x17\xa8\xce\xc3\x1f\xfb\x75\xac\x15\x86\x5d\x64\x6e\x51\x8a\x08\x63\xde\xfb\xf6\xc7\xf8\x6a\x07\xf5\xf7\x0a\x21\x0a\x29\x0a\xb8" +"\x22\x15\xfc\x78\x30\xf7\xf9\x2c\xc1\x07\xe1\x8a\xa2\x99\x97\xc7\x08\x0e\x29\x0a\xf7\x2c\xfc\x9f\x15\x49\xfb\xd1\x07\x8a\x94\x8b" +"\x93\x8f\x1a\xc7\xb0\xbc\xe2\xc4\x1e\xdf\xc1\xa4\xac\xc4\x1a\xc4\x6c\xb2\x5d\x5c\x6f\x66\x4e\x86\x8b\x85\x8c\x81\x1e\x33\x93\x05" +"\x8a\x94\x8b\x92\x90\x1a\xe2\xd0\xcb\xe9\xed\xd2\x49\x31\x4f\x71\x5d\x4d\x5c\x1e\x78\x7c\x73\x7a\x6c\x77\x5d\x6b\x7f\x81\x82\x78" +"\x08\x0e\x33\x0a\xfb\x32\xfb\x83\x15\x8d\xb2\x91\xa0\x99\xa1\x08\xaf\xa4\xbc\xa2\xc1\x1b\xe3\xcc\x51\x3c\x5d\x78\x6b\x64\x75\x1f" +"\x9c\x81\x96\x83\x92\x85\x08\xa2\x76\x98\x6b\x64\x1a\x34\x48\x4d\x2c\x31\x4a\xc2\xd8\x91\x8b\x94\x8c\x93\x1e\xdd\x9c\x05\x65\x8d" +"\x7e\x91\x7e\x1e\x73\x97\xa3\x7d\xa8\x1b\xb7\xaa\xac\xbb\xc0\x6c\xa8\x55\x7d\x7f\x8a\x88\x72\x1f\xc9\x07\x88\xa0\x95\x8b\x92\x1b" +"\xc0\xaa\xa7\xb9\xbe\x73\xa7\x60\x73\x77\x82\x79\x80\x1f\x82\x7d\x89\x7e\x8a\x68\x08\x0e\xf8\x1e\xf8\x79\x15\xfb\x0f\xfb\x4c\x05" +"\xf7\x0f\x06\x91\xf8\x29\x36\x0a\xf7\x2b\xfc\x29\x15\x49\x40\xfb\x0a\x39\xf7\x0a\xfb\x64\xcd\x07\xf7\x6e\xf7\xc5\x05\xd3\xfb\xc5" +"\x06\x0e\xf8\x24\xf9\x56\x22\x0a\x2d\x0a\xf7\x5c\xf7\x5b\xf7\x34\xf7\x35\xf7\x5b\x27\x0a\xfb\x55\x1f\xfb\x25\x21\x15\xf7\xad\x4a" +"\xfb\x66\x2d\x06\x9a\xad\x9c\x8f\xaa\x1b\xed\xcd\x48\x27\x20\x43\x3f\x24\x38\x54\xbe\xdc\x87\x1f\xd2\x9e\x05\x73\x8c\x84\x8f\x7f" +"\x1e\x6e\x96\xa5\x79\xaa\x1b\xc0\xa9\xb6\xd8\xb1\x87\x9c\x80\x9e\x1f\xa0\x7d\x72\x99\x71\x1b\x62\x72\x70\x55\x81\x1f\x44\x06\x0e" +"\xf8\x19\xf8\x0c\x15\x5d\x69\x61\x53\x4e\xae\x5d\xbb\xb6\xa6\xb1\xc7\xcd\x6f\xb4\x5e\x1f\x96\xf7\xde\x24\x0a\xc5\xfb\x7f\x15\x85" +"\xa3\x86\x9a\x89\x91\x08\x9e\x82\x79\x95\x72\x1b\x67\x71\x77\x64\x7f\x1f\x82\x72\x89\x7a\x86\x58\x08\xa9\xae\xa2\x95\xb3\x1b\xe0" +"\xc8\x49\x30\x2a\x47\x42\x30\x56\x57\xa7\xb6\x6f\x1f\x73\xb1\x7f\xc3\xdb\x1a\xd4\x94\xb9\xa2\xb7\x1e\xc2\xa7\xc5\xae\xc9\x1b\xba" +"\xb4\x78\x6c\xa2\x1f\x98\x7a\x90\x7d\x91\x6b\x08\x0e\x38\x0a\x27\x0a\xfb\x55\x1f\xfb\x45\x20\x15\xf7\xe8\x59\x06\x22\xfb\x42\x5f" +"\xfb\x02\x74\xfb\x27\x08\x2c\x06\x9e\xf7\x1a\xd2\xf7\x31\xee\xf7\x11\x08\xfb\x9a\x06\x0e\xf8\x22\xf8\xbb\x15\x62\x72\x6e\x5c\x5b" +"\xa3\x6e\xb4\xb4\xa7\xab\xb9\xba\x71\xa7\x61\x1f\x87\xfb\x67\x15\x5b\x6c\x6a\x59\x57\xac\x67\xba\xba\xab\xaf\xbf\xc0\x6d\xa9\x59" +"\x1f\x91\xf8\x02\x24\x0a\xdb\xfb\xe0\x15\xc4\x6a\x9e\x6d\x56\x1a\x34\x45\x49\x2e\x2f\x46\xcb\xe0\xc5\xa6\xb3\xc2\xa1\x1e\x62\x9f" +"\x74\xb1\xb9\x1a\xd5\xcd\xc4\xdf\xe0\xc8\x53\x3f\x5a\x79\x70\x5b\x70\x1e\x0e\xf8\x14\xf8\xbb\x15\x60\x70\x65\x4f\x49\xa7\x62\xb8" +"\xb9\xad\xb5\xc3\xc8\x68\xb9\x5b\x1f\x9b\xf7\x2f\x24\x0a\x40\xfc\x67\x15\x58\x95\x9d\x76\xab\x1b\x9b\x9d\x92\x98\x97\x1f\xa5\xa7" +"\x95\xab\x90\xd5\x08\x70\x70\x6d\x80\x61\x1b\x38\x4f\xcd\xe7\xeb\xcf\xd2\xe7\xbe\xb4\x77\x64\xa9\x1f\xa9\x65\x9a\x4c\x35\x1a\x43" +"\x7f\x4b\x77\x68\x1e\x55\x6c\x55\x6b\x4f\x1b\x5e\x62\x9f\xaa\x75\x1f\x7f\x9c\x86\x9c\x85\xae\x08\x0e\xf8\x78\xf8\xb9\x15\x5d\x73" +"\x4a\xfb\x0f\xfb\x0e\xa6\x41\xb9\xb8\xa2\xcb\xf7\x0f\xf7\x16\x72\xce\x5d\x1f\x37\xf7\x31\x24\x0a\x28\x22\x15\xfc\x77\x35\xf7\xf6" +"\x38\xc1\x07\xce\x8a\xa9\xa1\x91\xc1\x08\xf7\x8f\x92\x15\xf3\xc0\x36\xfb\x3d\xfb\x35\x53\x34\x23\x25\x54\xe5\xf7\x3a\xe5\x9a\xc9" +"\xab\xb4\x1f\xad\xa6\xb3\x9e\xb9\x1b\x0e\xc2\xf8\x22\xf9\x0d\x15\xf7\x6b\xfb\x6f\x05\xfc\xd6\xfb\x18\xf8\xd6\x06\xfb\x6b\xfb\x74" +"\x05\xf7\x47\x06\xf7\xaf\xf7\xb3\xfb\xaf\xf7\xb4\x05\x0e\x8a\xae\xf7\xf6\x15\x77\xf8\xe1\x07\x53\x46\x75\x56\x8c\x4f\xc6\xe0\xf7" +"\x04\xdf\xe0\xa1\x36\xa4\x26\xd7\x45\x3d\x0a\xf7\x45\xf7\x69\xf7\xf6\x15\xc1\xcd\xa4\xc7\x89\xc5\x50\x35\xfb\x05\x35\x37\x75\xde" +"\x74\xf6\x3b\xcd\x32\x8d\xc7\x68\xde\x5f\xb2\x08\xf8\xe2\x06\x53\x47\x74\x54\x8d\x50\xc6\xe0\xf7\x04\xe0\xdf\xa1\x37\xa2\x25\xd8" +"\x46\x3d\x0a\xfc\x11\xf7\x82\xf9\x14\x15\xcd\x55\xc6\x72\xc6\x8d\x36\xc4\x36\xf7\x05\x73\xe1\x73\x35\x3f\x26\x2e\x46\xc8\x89\xde" +"\xae\xb3\xb7\x08\xfc\xe1\x07\x46\xc3\x52\xa2\x51\x89\xe1\x50\xdf\xfb\x03\xa2\x35\xa4\xe1\xd9\xf2\xe6\xce\x4e\x8d\x36\x68\x65\x5f" +"\x08\x0e\x30\xf7\x0f\xf8\xe9\x15\x33\xfb\x11\xf8\x04\xfb\x6b\x38\xfb\x04\xf8\x0e\x58\xfb\x40\xf7\xeb\x3d\xfb\x09\x05\x0e\xe0\xae" +"\xf8\x4c\x15\xfb\x50\x07\xf8\xb2\xcd\x3b\xfb\x46\xf8\x1d\xf7\x62\xfc\x1d\xf7\x61\xdb\xfb\x46\x05\x0e\x30\xf7\x0f\xe9\x15\xf7\xd9" +"\xf7\xa9\xd9\xfb\x08\xf7\x40\xf7\xea\xfc\x0e\x59\xde\xfb\x05\xfc\x04\xfb\x6b\x05\x0e\xda\xae\xf8\x04\x15\x5e\x07\xf7\xff\x9a\x66" +"\x5b\x61\x47\x71\x54\x19\xf7\x2c\xcc\xc4\xa1\xd5\xa2\xf7\x0a\xae\xf7\x19\xa8\xc4\x8f\xfb\x7f\xb2\x27\xaa\xfb\x94\xf7\x03\x08\x87" +"\x07\xa6\x54\xb4\x4a\xb0\x5b\x08\x0e\xe3\xf8\xda\xf7\x98\x15\x56\x56\x05\x68\x68\x7e\x74\x6f\x1a\x58\xb5\x61\xbe\xac\x9e\x97\xb7" +"\xb1\x1e\xf7\x78\xf7\x9e\xfb\x78\xf7\x98\x05\xb6\x66\x79\x96\x6b\x1b\x59\x61\x61\x5a\x71\x9a\x6f\xab\x6d\x1f\xbd\x59\x05\xfc\x3b" +"\x06\x5d\x81\x89\x82\x76\x1f\x70\x7e\x77\x6a\x6b\x1a\x6b\x9f\x6a\xa6\x7e\x1e\x81\xa0\x96\x89\xb8\x1b\x0e\xe4\xae\xf7\xfe\x15\x6a" +"\xf9\x11\xfb\x5c\x07\xf7\x6f\xf7\x6c\xfb\x6f\xf7\x6d\x05\xfb\x5c\x07\x0e\xe4\xae\xf8\x24\x15\xfb\x04\xf9\x13\xfb\x33\x07\xf7\x6f" +"\xf7\x6b\xfb\x6f\xf7\x6d\x05\xfb\x35\x07\x0e\x86\xf7\xca\xf8\x46\x15\xfb\x45\xf7\x99\x25\x07\xf7\x78\xf7\x53\xfb\x78\xf7\x53\x05" +"\x24\x07\xfb\xff\x16\xfb\x45\xd7\xf7\x45\x07\xfb\x33\x16\xfb\x45\xb8\xf7\x45\x07\xfb\x1b\x16\xfb\x45\xa3\xf7\x45\x07\x0e\xad\xf8" +"\x2c\xf8\x7c\x15\xfb\xb3\xf7\x43\x23\x92\x07\xb0\xee\xf2\xf1\xf7\x00\xb6\xfb\x07\xba\x28\xf1\x69\xf3\x08\x84\x21\x06\xfb\xa6\x16" +"\xfb\xb3\xd2\xf7\xb3\x07\xfb\x34\x16\xfb\xb3\xbd\xf7\xb3\x07\xfb\x21\x16\xfb\xb3\xac\xf7\xb3\x07\xfb\x13\x16\xfb\xb3\x9e\xf7\xb3" +"\x07\x0e\x80\xae\xf8\x7f\x15\xfb\xb6\xf8\x93\x2a\x07\xf7\x89\xf7\x86\xfb\x89\xf7\x86\x05\x2a\x07\x0e\xe0\xae\xf8\xf6\x15\xf7\xba" +"\xfb\xa4\xfb\xba\xfb\x94\xf9\xea\xf7\x8c\x05\xfd\x70\xf7\x63\x15\xf9\x12\xfb\x63\xfc\x39\x95\x05\x0e\xe0\xae\xdd\x15\xf9\xea\xf7" +"\xab\xfd\xea\xf7\x8d\xf7\xba\xfb\x95\x05\xfb\x40\xfb\x5b\x15\xf7\x6d\xf7\x59\xf8\x39\x95\x05\x0e\xd9\xae\xf9\x44\x15\xf7\x5d\xfb" +"\xea\xfb\x5d\xfb\xea\xf9\xe3\xf7\xea\x05\x0e\xe6\xf8\xb6\xf8\xb8\x15\x38\xfb\xb7\x07\x60\x8a\x05\x3b\x6a\x9d\xbd\x7c\x1f\x84\xa0" +"\x8a\x95\xb7\x1a\x63\xfb\x76\x06\x8a\x2b\x94\x6b\xb1\x61\xb0\x67\xae\x80\xd8\x8d\x08\xf7\xcf\x38\x06\xf7\xf3\xf7\x7d\x05\x0e\xe7" +"\xf8\xb5\xf7\x24\x15\xf7\xf3\xf7\x7b\xfb\xf3\xf7\x7d\x05\x38\xfb\xcf\x07\x3e\x8d\x69\x80\x65\x67\x08\x65\x61\x83\x6f\x28\x1a\xfb" +"\x78\xb3\x97\x07\xf2\xab\xa9\xf7\x01\x1e\xb1\x06\xf7\xb7\x06\x0e\xfc\x0c\xf8\x41\xf7\xee\x15\xfb\x9e\xf8\x50\x05\xfb\x24\xfb\x14" +"\xfc\xed\xf7\x14\xfb\x25\x07\x0e\xb7\xae\xf8\xa4\x15\xfc\x01\xf8\x1f\x2e\x96\x07\xef\xf7\x2f\xf7\x17\xe2\xf7\x44\xa9\x08\x93\x07" +"\xfb\x3b\xa1\xfb\x22\xe9\x29\xf7\x2f\x08\x80\x2e\x06\x0e\x88\xf8\x2e\xf9\x1c\x15\xfb\x32\xfc\x0b\xfb\xb7\xf8\x0b\xfb\x30\xf7\x14" +"\x07\xf7\x9c\xf7\xc1\xfb\x9c\xf7\xc4\x05\x22\x75\x15\xf7\x8e\xfb\xae\xfb\x8e\xfb\xad\x05\xf7\x34\xfc\x0a\xf7\x87\xf8\x0a\x07\x0e" +"\x88\xf8\x2b\xf9\x1c\x15\xfb\x32\xfc\x08\xfb\xb7\xf8\x08\xfb\x30\xf7\x16\x07\xf7\x9d\xf7\xc0\xfb\x9d\xf7\xc5\x05\x7a\x75\x15\xf7" +"\x8e\xfb\xaf\xfb\x8e\xfb\xac\x05\xf7\x34\xfc\x09\xf7\x87\xf8\x09\x07\x0e\xa7\xf9\x30\xf8\xe1\x15\x47\x36\x05\xfc\x15\x06\xfb\x48" +"\xfb\x4c\x05\xfb\x13\xf7\xf0\x2f\x07\xf8\x55\xf7\x51\x05\xf7\x09\x07\xfb\x37\xf7\x2a\x15\xf7\x21\xfb\x31\xfc\x23\xfb\x3b\xc6\xd8" +"\x05\xfc\x32\x06\xf7\x3c\xf7\x43\x05\xf8\x15\x06\x0e\xa7\xf9\x31\xf0\x15\xf7\x37\xf7\x4b\x05\xf7\x0a\x07\xfc\x54\xf7\x51\x05\x2f" +"\xfb\xf1\xfb\x13\x07\xf7\x48\xfb\x4e\x05\xf8\x16\x06\xd0\x56\x15\x4f\xd3\x05\xfc\x16\x06\xfb\x3c\xf7\x45\x05\xf8\x33\x06\x50\xd7" +"\xf8\x22\xfb\x3b\x05\x0e\xfb\x23\xf7\xaf\xf9\x1f\x15\x22\xfb\x8c\xfb\xe9\x07\xdd\x3a\x05\xf7\x3a\x7a\x06\xdf\x4c\xf7\xba\xf7\xab" +"\x05\xfb\xf6\xfb\x5b\x15\xec\xfb\x8c\xf7\xba\xf7\x8c\xd9\x07\xf7\x97\xfb\x77\x05\x0e\xfb\x23\xf7\xaf\xb7\x15\xf8\x0e\xf7\xd9\xfb" +"\xba\xf7\xa9\x37\x4c\x05\x7a\xfb\x3a\x07\x39\x3b\x05\xfb\xe5\xf7\x8c\x07\xa3\xf7\xd4\x15\xec\x07\xf7\x97\xfb\x83\xfb\x97\xfb\x75" +"\x05\xdb\xfb\x8c\xf7\xb3\x07\x0e\xae\xf8\xcf\xf8\xfa\x15\x30\xfc\xa6\x07\xc9\xfb\x2f\x47\xfb\x18\xcf\x4a\x05\xf8\x62\x2b\x06\xf7" +"\xa7\xf7\x9f\x05\xfb\x8e\xf7\x6b\x15\xf7\x4e\xfb\x51\xfb\x54\xfb\x4a\x05\xbd\xfc\x9d\x07\xce\xf7\x18\x55\xf7\x18\x05\xf8\x96\x06" +"\x0e\xae\xf8\xcf\xd6\x15\xf7\xa1\xf7\xa3\xfb\xa7\xf7\x9f\x05\x2c\xfc\x62\x07\x47\x49\xcf\xfb\x17\x47\xfb\x30\x05\xf8\xac\x06\x9e" +"\x6a\x15\xc4\xfc\x96\x07\xc1\xf7\x18\x48\xf7\x17\x05\xf8\x9d\xbe\x06\xf7\x54\xfb\x4a\x05\x0e\x3c\xf8\x19\xf8\xb2\x15\xf7\x0d\x07" +"\xf7\xcb\xfb\xd1\xfb\xcb\xfb\xd1\x05\xf7\x0c\xfb\xf6\x07\x8f\x69\x96\x77\xa3\x75\x08\x61\xba\xf7\x01\x6d\xf4\x1b\xf2\xec\xaa\xc2" +"\xcd\x1f\xd9\xcb\xb9\xeb\xee\x1a\xe1\x69\xde\x4d\xcb\x1e\xd2\x46\x21\xb3\xfb\x0b\x1b\x2a\x22\x70\x66\x5a\x1f\x6c\x74\x7e\x74\x86" +"\x65\x08\x0e\xf6\xf8\x94\xf7\xf6\x15\xfb\x0d\xf7\x46\x05\xfb\xf8\x06\xf7\x16\xfb\x51\xfb\x16\xfb\x4c\x05\xf7\xf8\x06\xf7\x0d\xf7" +"\x3f\x05\xf7\x6f\x06\x73\x73\x81\x71\x68\x1a\x67\x96\x70\xa2\x74\x1e\xbf\xf5\xc0\xc1\xd6\xa3\x46\x9c\x48\xd2\x5f\xf0\x08\x73\x6f" +"\x81\x70\x67\x1a\x69\x95\x72\xa3\x6f\x1e\xfd\x1c\x3e\x0a\x5b\x06\x74\xf7\x2e\x15\xbd\x2e\x0a\x59\x06\x76\x3e\x0a\x59\x06\x75\xf7" +"\x2e\x15\xbc\x2e\x0a\x5a\x06\xfb\x89\x73\x15\xbc\x06\x26\xfb\x2c\x05\x5b\x06\xf7\x4a\xf7\x2c\x15\xbd\x06\x26\xfb\x2c\x05\x58\x06" +"\xf7\x4c\xf7\x2c\x15\xbc\x06\x25\xfb\x2c\x05\x5a\x06\xf7\x4b\xf7\x2c\x15\xbb\x06\x25\xfb\x2c\x05\x5b\x06\x0e\x47\xf8\x7e\xf7\x9f" +"\x15\x73\x6e\xf7\x11\x22\x05\x67\x86\x63\x5e\x68\x1a\x94\xa5\x9c\x8e\xa2\x1b\xbc\xc1\x82\x7c\xb7\x1f\x93\x97\x05\x68\xcc\x7a\xc5" +"\xbf\x1a\x92\x8c\x96\x8c\x99\x1e\x68\x83\x6b\x62\x87\x5f\x08\xfb\xd4\xcc\x15\x96\xcd\xb6\x8e\xc5\x1b\xfb\x97\xf7\x6e\x3c\x88\x55" +"\x87\x67\x84\x19\xf7\x44\xf7\x66\x15\x6d\x95\x24\x92\x68\x1e\xf7\x97\xfb\x6d\x05\x81\xbc\x85\xcb\xb6\x1a\x96\x07\x0e\xa5\xf8\x87" +"\xf7\xfc\x15\x69\xf7\x35\x07\x7e\x78\x85\x7a\x74\x1a\x71\x90\x7c\x99\x7a\x1e\xa3\xb8\xd5\xc4\xd3\xa9\x08\x97\x07\x35\xad\x65\xa8" +"\x5d\xce\x08\x7d\x79\x87\x7f\x71\x1a\x73\x8f\x7a\x99\x71\x1e\xfb\xb1\xfb\x2b\x15\xc0\xc5\xa3\xa1\xba\xb1\x08\xfb\xeb\x06\x5b\x61" +"\x5c\x5d\x72\x6d\x08\x8a\xf7\xa6\x15\xbb\x56\xc1\x54\x9e\x7c\x08\xf7\xeb\x06\x66\xa8\x57\xbf\x67\xb5\x08\x0e\x47\xf8\x7e\xf8\x3d" +"\x15\xf7\x11\xf4\x8f\x5f\xab\x61\xae\x83\x19\x8a\x99\x8a\x96\x92\x1a\xbd\x9d\xc9\xad\xca\x1e\x83\x97\x05\x7b\x5d\x59\x82\x60\x1b" +"\x6f\x79\x8e\x95\x6f\x1f\x68\xb3\x5e\xaf\x86\x1e\xfb\x11\x22\x05\xfc\x44\xfb\x63\x15\xb0\x84\xc1\x87\xd9\x89\xf7\x97\xf7\x6d\x18" +"\x48\x8c\x73\x8d\x3f\x97\x08\xf7\x43\xfb\x67\x15\x96\x07\xb6\x91\xcc\x95\xbc\x1e\xfb\x97\xfb\x6e\x05\x84\x68\x81\x24\x6d\x1a\x0e" +"\xbc\xf7\xbb\xf9\x5b\x15\x6d\x58\x7e\x61\x5c\x1a\x5f\x91\x74\xa0\x61\x1e\x95\x6a\x7d\x8e\x7a\x1b\x46\x55\x75\x56\x51\x1f\xf7\x99" +"\xfb\x6e\x05\xb6\xbd\xc1\xa2\xbd\x1b\xb2\xbe\x73\x61\xbc\x1f\xf1\x34\x47\x80\x5b\x6e\x44\x42\x19\x9c\xdc\xb6\x90\xc6\x1b\xcd\xbe" +"\x84\x7c\xbd\x1f\x76\xb6\x7e\xad\x7f\xb7\x08\x81\xb0\x7f\xe9\xb5\x1a\x90\x8c\x97\x8c\x9b\x1e\x8c\x8e\x8b\x90\x92\x1a\x5c\x50\x6d" +"\x44\x55\x1a\x8c\x77\x26\xe0\x05\x42\xc9\x75\xb1\xcb\x1a\xb6\x96\xb1\xa6\xb7\x1e\x0e\xf7\x14\xae\xf8\xb8\x15\x9b\x25\xbe\x46\xdb" +"\x6b\x3b\x6e\x53\x3e\x80\x2a\x08\xf7\xe6\x06\x93\xc6\xa9\xc3\xb5\xb0\x08\xa2\xa7\xbe\x97\xcf\x1b\xf7\x1a\x06\x5d\x57\x79\x57\x82" +"\x25\xe5\xf7\x04\xeb\xda\xe0\xaa\x25\xb6\x36\xd1\x37\xf7\x02\x8d\x37\xa8\x3a\xb5\x62\x08\xfb\x18\x06\x40\x8a\x5e\x96\x69\xa7\x64" +"\xac\x6d\xc6\x85\xc3\x08\x0e\xbc\xf8\xbd\xf7\x59\x15\x6e\xbc\x80\xad\xb7\x1a\xc6\xa5\xb6\xd2\xc7\x1e\xf0\xe0\x8a\x78\x05\x55\xa9" +"\x43\xba\x50\x1e\x89\xa3\x8b\x95\x98\x1a\xf7\x02\xa4\xf7\x00\xb6\xd9\x1e\x7b\x56\x5a\x84\x4a\x1b\x51\x64\x90\x9c\x34\x1f\xd3\x42" +"\xba\x6e\xcf\x81\x25\x33\x18\x62\x5b\x56\x72\x65\x1b\x59\x55\xa2\xb6\x59\x1f\xfb\x98\xfb\x6f\x05\x57\xc6\xc0\x75\xd0\x1b\x9b\x99" +"\x8e\x96\xac\x1f\x77\x62\x84\x70\x63\x1a\x5a\x94\x6c\xad\x4d\x1e\x0e\x83\xf9\xb0\xf7\xf4\x15\x30\xa3\x64\xaf\x69\xe4\x7d\xb1\x87" +"\x92\x7c\x98\x08\x97\x7e\x79\x92\x79\x1b\x63\x6b\x6c\x64\x79\x93\x78\x96\x7e\x1f\xac\x67\xb0\x79\xf7\x0a\x65\x98\x87\x9b\x86\x98" +"\x86\xfb\x52\x92\x33\x99\xfb\x44\xbf\x08\x9e\x49\x6b\x91\x6a\x1b\x49\x62\x63\x4a\x4b\xb4\x63\xcc\xac\xab\x91\x9e\xce\x1f\xf7\x45" +"\xbf\xe6\x9a\xf7\x4e\x91\x2d\x6c\x77\x84\x61\x7a\x08\x50\x73\x69\x65\x62\x1a\x66\xab\x6c\xb3\x9d\x9d\x92\x97\x98\x1e\x9a\x98\x8f" +"\x92\x99\xb2\xad\xe4\xb2\xae\xe6\xa3\x08\x0e\xad\xf9\xda\xf7\xf2\x15\x28\xb4\x21\xf7\x04\x82\xd4\x08\x5a\x6b\x70\x5b\x57\x1a\x66" +"\x9e\x6f\xb6\x70\x1e\xfb\x09\x8d\x50\x9f\x45\xcb\x08\xc9\x43\x70\x99\x5a\x1b\x69\x70\x80\x76\x75\x1f\x7a\x7a\x82\x7a\x7b\x5f\x7b" +"\x62\x83\x83\x6c\x86\xaa\x85\x95\x81\x99\x62\x98\x66\x95\x75\x97\x7d\x08\x70\xa2\xab\x7c\xab\x1b\xb8\xb2\x9e\xba\xc1\x1f\xbd\xb6" +"\x90\x8f\xa6\x99\x08\xa0\xb4\xc6\x98\xc2\x1b\xa1\x06\x5d\x6e\x7c\x72\x63\x1a\x57\xa5\x5e\xbc\x6a\x1e\x94\xd4\xf3\xf7\x01\xf0\xb6" +"\x08\x0e\xe3\xdb\xf8\xb2\x15\x6f\x7b\x81\x79\x82\x90\x7d\x94\x7d\x1f\xc6\x31\x05\x9b\x72\x8d\x85\x82\x1a\x80\x8b\x8a\x7b\x71\x1e" +"\x4d\x27\x05\x7d\x78\x8b\x8b\x81\x1a\x79\x9b\x7e\xa0\x1e\xf7\x88\x06\xb7\x8f\x8d\xae\xa9\x1f\xbb\xc6\xab\xb5\x99\x92\xbe\x8a\x19" +"\xdc\x06\xa1\x96\x82\x7b\x82\x89\x84\x7e\x70\x1f\x86\x82\x89\x81\x85\x1a\x78\xac\x77\xaa\x9e\x9c\x94\xa1\xa3\x1e\xf6\xf0\x05\x9f" +"\x9e\x94\x9b\x9d\x1a\x9e\x81\x9e\x7a\x9a\x1e\xfb\x0d\xf7\x02\x05\x97\x7e\x7a\x92\x7b\x1b\x64\x70\x7b\x75\x83\x8d\x84\x8e\x85\x1f" +"\x9c\x6c\x8b\x8a\x7e\x1a\x79\x81\x84\x71\x1e\x39\x06\x5a\x8c\x81\x90\x68\xb5\x55\xcd\x18\x75\xa6\x82\x8f\x69\x89\x08\x0e\xf7\x17" +"\xf7\x14\xf8\xfb\x15\x49\x70\x76\x56\x7a\x8d\x81\x94\x6f\x1f\xa9\x2d\x05\x95\x67\x8c\x86\x84\x1a\x84\x88\x7f\x86\x7c\x1e\x87\x80" +"\x88\x82\x88\x82\x70\x31\x18\x86\x7b\x89\x7e\x7d\x1a\x71\x94\x76\x9a\x7f\x1e\x80\x99\x9b\x88\xb4\x1b\xf7\x70\x06\xd5\x8a\xa0\x97" +"\xaf\xcc\xb2\xd0\x18\xc4\xab\x96\x94\xb2\x1b\xa0\x98\x81\x79\x83\x89\x7f\x87\x7d\x1f\x82\x6d\x85\x69\x7e\x1a\x6d\xa7\x70\xaa\x9f" +"\x99\x93\xab\xaa\x1e\xf7\x24\xf7\x24\x05\xbb\xbe\x8b\x8b\xa0\x1a\xa0\x8a\x8d\x62\xb4\x1e\xfb\x28\xf7\x2b\x05\xaa\x6d\x7c\x94\x75" +"\x1b\x68\x74\x71\x65\x7e\x8d\x7d\x8e\x7e\x1f\x9a\x55\x8b\x8b\x7f\x1a\x79\x7d\x82\x71\x6d\x7c\x97\xb6\x74\x1e\x60\xd9\x05\xcc\x68" +"\x75\x98\x3d\x1b\x0e\xda\xf8\xc9\xf8\xe4\x15\xd0\x23\xce\x45\xf0\x41\xfb\x0c\x30\x67\x66\x3a\xfb\x09\x08\xc9\x06\xc8\xeb\xd9\xd5" +"\xf7\x0a\xd6\xfb\x0b\xd8\x33\xe0\x59\xe1\x08\xfb\x60\x16\x9d\x65\xc3\x3f\xba\x5b\x08\xfc\x92\x5e\xf9\x0f\x06\x47\xbc\x3b\xe2\x61" +"\xd2\x08\xfc\x51\xfb\xe2\x15\xf8\x92\x06\x6b\x71\x4e\x39\x71\x58\x08\xc3\x06\xb9\xd8\xd5\xda\xcf\xbb\x08\xfd\x0f\x06\x0e\xfb\x8e" +"\x8b\x1c\x05\x46\x8b\x06\x8b\x0a\x8b\x0b\xf9\xa8\x14\xf9\xdb\x15\x9f\x13\x00\x20\x02\x00\x01\x00\x05\x00\x0c\x00\x12\x00\x16\x00" +"\x1e\x00\x26\x00\x2b\x00\x30\x00\x37\x00\x3e\x00\x43\x00\x50\x00\x5a\x00\x63\x00\x69\x00\x6e\x00\x79\x00\x84\x00\x90\x00\x9d\x00" +"\xa9\x00\xb3\x00\xba\x00\xc0\x00\xcc\x00\xd5\x00\xdc\x00\xed\x00\xfc\x01\x05\x01\x0c\x01\x11\xf9\x47\x15\x0b\x15\xfb\x5e\xfb\x37" +"\x30\x0a\x15\xfb\x5f\xfb\x36\x0b\xf9\x55\x15\x0b\x15\xfb\x5e\xfb\x37\x2a\x0a\x0b\xfb\x35\xf7\x38\xfb\x55\x1f\x0b\xfb\x33\xfb\x5a" +"\x0b\x3f\x0a\xf7\x37\x0b\x3c\x0a\xd9\xa9\xda\x2c\x0a\xf8\x24\xf9\x56\x24\x0a\x0b\x26\x0a\x3a\x0a\x0b\x2d\x0a\xf7\x5b\xf7\x5b\xf7" +"\x35\xf7\x35\xf7\x5b\x0b\xc1\xc6\x1e\xd3\xcc\xde\xaf\xef\x1b\x0e\x26\x0a\xfb\x5d\xf7\x34\xfb\x35\x0b\x06\xf3\xfb\x2e\x05\x0b\x1f" +"\xd2\x4a\xb1\x0b\x32\x0a\x38\x2d\x37\x0a\xda\xa9\xd9\x2c\x0a\x34\x0a\x38\x2d\x37\x0a\xda\xa9\xd9\x2c\x0a\x2a\x0a\x6a\x04\xd5\xdd" +"\x6b\x57\xc4\x2f\x0a\x0b\xf8\x24\xf9\x56\x22\x0a\x2b\x0a\xf7\x57\x25\x0a\x0b\x3a\x0a\x6a\x04\xd5\xde\x6b\x57\xc3\x2f\x0a\x0b\x22" +"\x0a\x2b\x0a\x27\x0a\xfb\x55\x1f\x0b\x39\x0a\xf7\x57\x25\x0a\x0b\x1a\xfb\x49\x3c\x0a\x0b\xf8\x24\xf9\x56\x15\xfb\x5e\xfb\x37\x2b" +"\x0a\x0b\x22\x0a\xfb\x32\xfb\x5b\x3b\x0a\x0b\x3b\x0a\xf7\x57\x25\x0a\x0b\xfb\x5d\xf7\x34\xfb\x35\xf7\x5c\xf7\x5a\xf7\x35\xf7\x35" +"\xf7\x5b\x0b\xfb\x27\xfb\x26\xfb\x48\xfb\x4a\xfb\x25\xf7\x26\xf7\x4b\x0b\xe9\x89\x4e\xaf\x35\xb6\x66\x08\x0e\xf7\x2e\x15\xbb\x2e" +"\x0a\x0b\xf7\x58\xfb\x35\x0b", 24967 +}; diff --git a/dviware/dvisvgm/src/fonts/Makefile.am b/dviware/dvisvgm/src/fonts/Makefile.am new file mode 100644 index 0000000000..4f455d1228 --- /dev/null +++ b/dviware/dvisvgm/src/fonts/Makefile.am @@ -0,0 +1,19 @@ +noinst_LTLIBRARIES = libbase14fonts.la + +libbase14fonts_la_SOURCES = \ + Base14Fonts.cpp \ + Base14Fonts.hpp \ + Dingbats.cff.cpp \ + NimbusMonoPS-Bold.cff.cpp \ + NimbusMonoPS-BoldItalic.cff.cpp \ + NimbusMonoPS-Italic.cff.cpp \ + NimbusMonoPS-Regular.cff.cpp \ + NimbusRoman-Bold.cff.cpp \ + NimbusRoman-BoldItalic.cff.cpp \ + NimbusRoman-Italic.cff.cpp \ + NimbusRoman-Regular.cff.cpp \ + NimbusSans-Bold.cff.cpp \ + NimbusSans-BoldItalic.cff.cpp \ + NimbusSans-Italic.cff.cpp \ + NimbusSans-Regular.cff.cpp \ + StandardSymbolsPS.cff.cpp diff --git a/dviware/dvisvgm/src/fonts/Makefile.in b/dviware/dvisvgm/src/fonts/Makefile.in new file mode 100644 index 0000000000..4d46348ce4 --- /dev/null +++ b/dviware/dvisvgm/src/fonts/Makefile.in @@ -0,0 +1,743 @@ +# Makefile.in generated by automake 1.16.5 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2021 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = src/fonts +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/ax_ac_append_to_file.m4 \ + $(top_srcdir)/m4/ax_ac_print_to_file.m4 \ + $(top_srcdir)/m4/ax_add_am_macro_static.m4 \ + $(top_srcdir)/m4/ax_am_macros_static.m4 \ + $(top_srcdir)/m4/ax_check_compile_flag.m4 \ + $(top_srcdir)/m4/ax_code_coverage.m4 \ + $(top_srcdir)/m4/ax_cxx_compile_stdcxx.m4 \ + $(top_srcdir)/m4/ax_file_escapes.m4 \ + $(top_srcdir)/m4/ax_gcc_builtin.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +LTLIBRARIES = $(noinst_LTLIBRARIES) +libbase14fonts_la_LIBADD = +am_libbase14fonts_la_OBJECTS = Base14Fonts.lo Dingbats.cff.lo \ + NimbusMonoPS-Bold.cff.lo NimbusMonoPS-BoldItalic.cff.lo \ + NimbusMonoPS-Italic.cff.lo NimbusMonoPS-Regular.cff.lo \ + NimbusRoman-Bold.cff.lo NimbusRoman-BoldItalic.cff.lo \ + NimbusRoman-Italic.cff.lo NimbusRoman-Regular.cff.lo \ + NimbusSans-Bold.cff.lo NimbusSans-BoldItalic.cff.lo \ + NimbusSans-Italic.cff.lo NimbusSans-Regular.cff.lo \ + StandardSymbolsPS.cff.lo +libbase14fonts_la_OBJECTS = $(am_libbase14fonts_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = ./$(DEPDIR)/Base14Fonts.Plo \ + ./$(DEPDIR)/Dingbats.cff.Plo \ + ./$(DEPDIR)/NimbusMonoPS-Bold.cff.Plo \ + ./$(DEPDIR)/NimbusMonoPS-BoldItalic.cff.Plo \ + ./$(DEPDIR)/NimbusMonoPS-Italic.cff.Plo \ + ./$(DEPDIR)/NimbusMonoPS-Regular.cff.Plo \ + ./$(DEPDIR)/NimbusRoman-Bold.cff.Plo \ + ./$(DEPDIR)/NimbusRoman-BoldItalic.cff.Plo \ + ./$(DEPDIR)/NimbusRoman-Italic.cff.Plo \ + ./$(DEPDIR)/NimbusRoman-Regular.cff.Plo \ + ./$(DEPDIR)/NimbusSans-Bold.cff.Plo \ + ./$(DEPDIR)/NimbusSans-BoldItalic.cff.Plo \ + ./$(DEPDIR)/NimbusSans-Italic.cff.Plo \ + ./$(DEPDIR)/NimbusSans-Regular.cff.Plo \ + ./$(DEPDIR)/StandardSymbolsPS.cff.Plo +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CXXFLAGS) $(CXXFLAGS) +AM_V_CXX = $(am__v_CXX_@AM_V@) +am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) +am__v_CXX_0 = @echo " CXX " $@; +am__v_CXX_1 = +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ + $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) +am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) +am__v_CXXLD_0 = @echo " CXXLD " $@; +am__v_CXXLD_1 = +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(libbase14fonts_la_SOURCES) +DIST_SOURCES = $(libbase14fonts_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AM_CPPFLAGS = @AM_CPPFLAGS@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AM_LDFLAGS = @AM_LDFLAGS@ +AR = @AR@ +ASCIIDOC = @ASCIIDOC@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +BROTLI_CFLAGS = @BROTLI_CFLAGS@ +BROTLI_LIBS = @BROTLI_LIBS@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CODE_COVERAGE_CFLAGS = @CODE_COVERAGE_CFLAGS@ +CODE_COVERAGE_CPPFLAGS = @CODE_COVERAGE_CPPFLAGS@ +CODE_COVERAGE_CXXFLAGS = @CODE_COVERAGE_CXXFLAGS@ +CODE_COVERAGE_ENABLED = @CODE_COVERAGE_ENABLED@ +CODE_COVERAGE_LIBS = @CODE_COVERAGE_LIBS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CSCOPE = @CSCOPE@ +CTAGS = @CTAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATE = @DATE@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ETAGS = @ETAGS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +FILECMD = @FILECMD@ +FREETYPE_CFLAGS = @FREETYPE_CFLAGS@ +FREETYPE_LIBS = @FREETYPE_LIBS@ +GCOV = @GCOV@ +GENHTML = @GENHTML@ +GREP = @GREP@ +HAVE_CXX11 = @HAVE_CXX11@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +KPSE_CFLAGS = @KPSE_CFLAGS@ +KPSE_LIBS = @KPSE_LIBS@ +LCOV = @LCOV@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBCRYPTO_CFLAGS = @LIBCRYPTO_CFLAGS@ +LIBCRYPTO_LIBS = @LIBCRYPTO_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +TTFAUTOHINT_CFLAGS = @TTFAUTOHINT_CFLAGS@ +TTFAUTOHINT_LIBS = @TTFAUTOHINT_LIBS@ +VERSION = @VERSION@ +WOFF2_CFLAGS = @WOFF2_CFLAGS@ +WOFF2_LIBS = @WOFF2_LIBS@ +XMLTO = @XMLTO@ +XSLTPROC = @XSLTPROC@ +ZLIB_CFLAGS = @ZLIB_CFLAGS@ +ZLIB_LIBS = @ZLIB_LIBS@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +dvisvgm_srcdir = @dvisvgm_srcdir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +ifGNUmake = @ifGNUmake@ +ifnGNUmake = @ifnGNUmake@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +runstatedir = @runstatedir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +noinst_LTLIBRARIES = libbase14fonts.la +libbase14fonts_la_SOURCES = \ + Base14Fonts.cpp \ + Base14Fonts.hpp \ + Dingbats.cff.cpp \ + NimbusMonoPS-Bold.cff.cpp \ + NimbusMonoPS-BoldItalic.cff.cpp \ + NimbusMonoPS-Italic.cff.cpp \ + NimbusMonoPS-Regular.cff.cpp \ + NimbusRoman-Bold.cff.cpp \ + NimbusRoman-BoldItalic.cff.cpp \ + NimbusRoman-Italic.cff.cpp \ + NimbusRoman-Regular.cff.cpp \ + NimbusSans-Bold.cff.cpp \ + NimbusSans-BoldItalic.cff.cpp \ + NimbusSans-Italic.cff.cpp \ + NimbusSans-Regular.cff.cpp \ + StandardSymbolsPS.cff.cpp + +all: all-am + +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/fonts/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign src/fonts/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +clean-noinstLTLIBRARIES: + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +libbase14fonts.la: $(libbase14fonts_la_OBJECTS) $(libbase14fonts_la_DEPENDENCIES) $(EXTRA_libbase14fonts_la_DEPENDENCIES) + $(AM_V_CXXLD)$(CXXLINK) $(libbase14fonts_la_OBJECTS) $(libbase14fonts_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Base14Fonts.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Dingbats.cff.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/NimbusMonoPS-Bold.cff.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/NimbusMonoPS-BoldItalic.cff.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/NimbusMonoPS-Italic.cff.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/NimbusMonoPS-Regular.cff.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/NimbusRoman-Bold.cff.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/NimbusRoman-BoldItalic.cff.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/NimbusRoman-Italic.cff.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/NimbusRoman-Regular.cff.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/NimbusSans-Bold.cff.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/NimbusSans-BoldItalic.cff.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/NimbusSans-Italic.cff.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/NimbusSans-Regular.cff.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/StandardSymbolsPS.cff.Plo@am__quote@ # am--include-marker + +$(am__depfiles_remade): + @$(MKDIR_P) $(@D) + @echo '# dummy' >$@-t && $(am__mv) $@-t $@ + +am--depfiles: $(am__depfiles_remade) + +.cpp.o: +@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< + +.cpp.obj: +@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ +@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.cpp.lo: +@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ + mostlyclean-am + +distclean: distclean-am + -rm -f ./$(DEPDIR)/Base14Fonts.Plo + -rm -f ./$(DEPDIR)/Dingbats.cff.Plo + -rm -f ./$(DEPDIR)/NimbusMonoPS-Bold.cff.Plo + -rm -f ./$(DEPDIR)/NimbusMonoPS-BoldItalic.cff.Plo + -rm -f ./$(DEPDIR)/NimbusMonoPS-Italic.cff.Plo + -rm -f ./$(DEPDIR)/NimbusMonoPS-Regular.cff.Plo + -rm -f ./$(DEPDIR)/NimbusRoman-Bold.cff.Plo + -rm -f ./$(DEPDIR)/NimbusRoman-BoldItalic.cff.Plo + -rm -f ./$(DEPDIR)/NimbusRoman-Italic.cff.Plo + -rm -f ./$(DEPDIR)/NimbusRoman-Regular.cff.Plo + -rm -f ./$(DEPDIR)/NimbusSans-Bold.cff.Plo + -rm -f ./$(DEPDIR)/NimbusSans-BoldItalic.cff.Plo + -rm -f ./$(DEPDIR)/NimbusSans-Italic.cff.Plo + -rm -f ./$(DEPDIR)/NimbusSans-Regular.cff.Plo + -rm -f ./$(DEPDIR)/StandardSymbolsPS.cff.Plo + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f ./$(DEPDIR)/Base14Fonts.Plo + -rm -f ./$(DEPDIR)/Dingbats.cff.Plo + -rm -f ./$(DEPDIR)/NimbusMonoPS-Bold.cff.Plo + -rm -f ./$(DEPDIR)/NimbusMonoPS-BoldItalic.cff.Plo + -rm -f ./$(DEPDIR)/NimbusMonoPS-Italic.cff.Plo + -rm -f ./$(DEPDIR)/NimbusMonoPS-Regular.cff.Plo + -rm -f ./$(DEPDIR)/NimbusRoman-Bold.cff.Plo + -rm -f ./$(DEPDIR)/NimbusRoman-BoldItalic.cff.Plo + -rm -f ./$(DEPDIR)/NimbusRoman-Italic.cff.Plo + -rm -f ./$(DEPDIR)/NimbusRoman-Regular.cff.Plo + -rm -f ./$(DEPDIR)/NimbusSans-Bold.cff.Plo + -rm -f ./$(DEPDIR)/NimbusSans-BoldItalic.cff.Plo + -rm -f ./$(DEPDIR)/NimbusSans-Italic.cff.Plo + -rm -f ./$(DEPDIR)/NimbusSans-Regular.cff.Plo + -rm -f ./$(DEPDIR)/StandardSymbolsPS.cff.Plo + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ + clean-generic clean-libtool clean-noinstLTLIBRARIES \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am + +.PRECIOUS: Makefile + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/dviware/dvisvgm/src/fonts/NimbusMonoPS-Bold.cff.cpp b/dviware/dvisvgm/src/fonts/NimbusMonoPS-Bold.cff.cpp new file mode 100644 index 0000000000..4b1541c6e9 --- /dev/null +++ b/dviware/dvisvgm/src/fonts/NimbusMonoPS-Bold.cff.cpp @@ -0,0 +1,1636 @@ +#include "Base14Fonts.hpp" + +extern const MemoryFontData NimbusMonoPS_Bold_cff = { +"\x01\x00\x04\x02\x00\x01\x01\x01\x12\x4e\x69\x6d\x62\x75\x73\x4d\x6f\x6e\x6f\x50\x53\x2d\x42\x6f\x6c\x64\x00\x01\x01\x01\x35\xf9" +"\xbc\x00\xf9\xbd\x01\xf9\xbe\x0c\x00\xf9\xbf\x02\xf9\xc0\x03\xf8\x14\x04\x8c\x0c\x01\x33\x0c\x03\xf7\x02\x0c\x04\x39\xfc\x1d\xf9" +"\x4e\xfa\x83\x05\x1c\x32\x32\x0f\x1c\x32\x45\x11\xb7\x1d\x00\x00\xb7\x0a\x12\x01\xa6\x02\x00\x01\x00\x08\x00\x0e\x00\x13\x00\x1d" +"\x00\x24\x00\x2b\x00\x35\x00\x39\x00\x3f\x00\x45\x00\x50\x00\x5a\x00\x5d\x00\x63\x00\x69\x00\x6e\x00\x74\x00\x7a\x00\x84\x00\x8b" +"\x00\x8e\x00\x95\x00\x9c\x00\xa8\x00\xab\x00\xb3\x00\xb7\x00\xbc\x00\xc2\x00\xcd\x00\xd9\x00\xe3\x00\xe7\x00\xf2\x00\xf4\x00\xfa" +"\x01\x04\x01\x0b\x01\x12\x01\x16\x01\x22\x01\x2b\x01\x31\x01\x3c\x01\x41\x01\x4d\x01\x53\x01\x59\x01\x5f\x01\x6b\x01\x6f\x01\x71" +"\x01\x77\x01\x7d\x01\x89\x01\x8b\x01\x91\x01\x9e\x01\xa5\x01\xaf\x01\xb6\x01\xc2\x01\xcd\x01\xd0\x01\xd2\x01\xd5\x01\xdb\x01\xe1" +"\x01\xed\x01\xf0\x01\xf6\x01\xfe\x02\x09\x02\x15\x02\x1a\x02\x1d\x02\x21\x02\x27\x02\x33\x02\x38\x02\x3e\x02\x4b\x02\x52\x02\x59" +"\x02\x60\x02\x6f\x02\x7b\x02\x80\x02\x86\x02\x8c\x02\x97\x02\xa0\x02\xa6\x02\xa8\x02\xb3\x02\xb9\x02\xbf\x02\xc9\x02\xcd\x02\xd3" +"\x02\xda\x02\xe3\x02\xec\x02\xf5\x02\xfe\x03\x07\x03\x10\x03\x19\x03\x22\x03\x2b\x03\x34\x03\x3d\x03\x46\x03\x4f\x03\x58\x03\x61" +"\x03\x6a\x03\x73\x03\x7c\x03\x85\x03\x8e\x03\x97\x03\xa0\x03\xa9\x03\xb2\x03\xbb\x03\xc4\x03\xcd\x03\xd6\x03\xdf\x03\xe8\x03\xf1" +"\x03\xfa\x04\x03\x04\x0c\x04\x15\x04\x1e\x04\x27\x04\x30\x04\x39\x04\x42\x04\x4b\x04\x54\x04\x5d\x04\x66\x04\x6f\x04\x78\x04\x81" +"\x04\x8a\x04\x93\x04\x9c\x04\xa5\x04\xae\x04\xb7\x04\xc0\x04\xc9\x04\xd2\x04\xdb\x04\xe4\x04\xed\x04\xf6\x04\xff\x05\x08\x05\x11" +"\x05\x1a\x05\x23\x05\x2c\x05\x35\x05\x3e\x05\x47\x05\x50\x05\x59\x05\x62\x05\x6b\x05\x74\x05\x7d\x05\x86\x05\x8f\x05\x98\x05\xa1" +"\x05\xaa\x05\xb3\x05\xbc\x05\xc5\x05\xce\x05\xd7\x05\xe0\x05\xe9\x05\xf2\x05\xfb\x06\x04\x06\x0d\x06\x16\x06\x1f\x06\x28\x06\x31" +"\x06\x3a\x06\x43\x06\x4c\x06\x55\x06\x5a\x06\x64\x06\x6b\x06\x74\x06\x7e\x06\x85\x06\x90\x06\x9a\x06\xa3\x06\xac\x06\xb5\x06\xbf" +"\x06\xc6\x06\xcf\x06\xdb\x06\xdf\x06\xe5\x06\xeb\x06\xf6\x07\x00\x07\x03\x07\x11\x07\x15\x07\x1b\x07\x21\x07\x26\x07\x2d\x07\x3a" +"\x07\x40\x07\x46\x07\x50\x07\x57\x07\x5e\x07\x61\x07\x68\x07\x6f\x07\x7b\x07\x86\x07\x8f\x07\x92\x07\x9a\x07\xa3\x07\xae\x07\xb4" +"\x07\xb9\x07\xbe\x07\xc4\x07\xcf\x07\xdb\x07\xe5\x07\xf1\x07\xf5\x08\x00\x08\x05\x08\x0a\x08\x10\x08\x12\x08\x19\x08\x21\x08\x29" +"\x08\x33\x08\x3d\x08\x49\x08\x55\x08\x5c\x08\x60\x08\x6c\x08\x7d\x08\x86\x08\x8c\x08\x97\x08\x9c\x08\xa8\x08\xb4\x08\xba\x08\xc0" +"\x08\xc6\x08\xd2\x08\xd6\x08\xdf\x08\xe3\x08\xe8\x08\xec\x08\xf2\x08\xfd\x09\x0b\x09\x11\x09\x1c\x09\x22\x09\x2e\x09\x38\x09\x40" +"\x09\x42\x09\x48\x09\x55\x09\x5c\x09\x61\x09\x6b\x09\x72\x09\x7e\x09\x88\x09\x93\x09\x9e\x09\xa4\x09\xa7\x09\xa9\x09\xb0\x09\xbc" +"\x09\xca\x09\xcd\x09\xda\x09\xe0\x09\xe7\x09\xed\x09\xf9\x0a\x06\x0a\x09\x0a\x0f\x0a\x17\x0a\x22\x0a\x2e\x0a\x34\x0a\x39\x0a\x42" +"\x0a\x47\x0a\x50\x0a\x53\x0a\x56\x0a\x5a\x0a\x60\x0a\x6c\x0a\x71\x0a\x76\x0a\x7c\x0a\x89\x0a\x90\x0a\x9d\x0a\xa4\x0a\xab\x0a\xb2" +"\x0a\xb9\x0a\xc0\x0a\xc7\x0a\xce\x0a\xd5\x0a\xdc\x0a\xe3\x0a\xea\x0a\xf1\x0a\xf8\x0a\xff\x0b\x06\x0b\x0d\x0b\x14\x0b\x1b\x0b\x22" +"\x0b\x29\x0b\x30\x0b\x37\x0b\x3e\x0b\x45\x0b\x4c\x0b\x53\x0b\x5a\x0b\x61\x0b\x68\x0b\x6f\x0b\x76\x0b\x7d\x0b\x84\x0b\x8b\x0b\x92" +"\x0b\x99\x0b\xa0\x0b\xa7\x0b\xae\x0b\xb5\x0b\xbc\x0b\xc3\x0b\xca\x0b\xd1\x0b\xd8\x0b\xdf\x0b\xe6\x0b\xed\x0b\xf4\x0b\xfb\x0c\x02" +"\x0c\x09\x0c\x10\x0c\x17\x0c\x1e\x0c\x25\x0c\x2c\x0c\x33\x0c\x3a\x0c\x41\x0c\x48\x0c\x4d\x0c\x56\x0c\x5d\x0c\x64\x0c\x73\x0c\x87" +"\x0c\x93\x0c\x98\x0c\x9e\x0c\xa4\x0c\xaf\x0c\xb8\x0c\xbe\x0c\xc0\x0c\xcb\x0c\xd1\x0c\xd7\x0c\xe1\x0c\xe5\x0c\xe9\x0d\x1f\x0d\x5f" +"\x0d\x72\x0d\x80\x41\x45\x61\x63\x75\x74\x65\x41\x62\x72\x65\x76\x65\x41\x6c\x70\x68\x61\x41\x6c\x70\x68\x61\x74\x6f\x6e\x6f\x73" +"\x41\x6d\x61\x63\x72\x6f\x6e\x41\x6f\x67\x6f\x6e\x65\x6b\x41\x72\x69\x6e\x67\x61\x63\x75\x74\x65\x42\x65\x74\x61\x43\x61\x63\x75" +"\x74\x65\x43\x63\x61\x72\x6f\x6e\x43\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x43\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x43\x68\x69" +"\x44\x63\x61\x72\x6f\x6e\x44\x63\x72\x6f\x61\x74\x44\x65\x6c\x74\x61\x45\x62\x72\x65\x76\x65\x45\x63\x61\x72\x6f\x6e\x45\x64\x6f" +"\x74\x61\x63\x63\x65\x6e\x74\x45\x6d\x61\x63\x72\x6f\x6e\x45\x6e\x67\x45\x6f\x67\x6f\x6e\x65\x6b\x45\x70\x73\x69\x6c\x6f\x6e\x45" +"\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x45\x74\x61\x45\x74\x61\x74\x6f\x6e\x6f\x73\x45\x75\x72\x6f\x47\x61\x6d\x6d\x61\x47" +"\x62\x72\x65\x76\x65\x47\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x47\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x47\x64\x6f\x74" +"\x61\x63\x63\x65\x6e\x74\x48\x62\x61\x72\x48\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x49\x4a\x49\x62\x72\x65\x76\x65\x49\x64\x6f" +"\x74\x61\x63\x63\x65\x6e\x74\x49\x6d\x61\x63\x72\x6f\x6e\x49\x6f\x67\x6f\x6e\x65\x6b\x49\x6f\x74\x61\x49\x6f\x74\x61\x64\x69\x65" +"\x72\x65\x73\x69\x73\x49\x6f\x74\x61\x74\x6f\x6e\x6f\x73\x49\x74\x69\x6c\x64\x65\x4a\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x4b" +"\x61\x70\x70\x61\x4b\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4c\x61\x63\x75\x74\x65\x4c\x61\x6d\x62\x64\x61\x4c\x63\x61\x72" +"\x6f\x6e\x4c\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4c\x64\x6f\x74\x4d\x75\x4e\x61\x63\x75\x74\x65\x4e\x63\x61\x72\x6f\x6e" +"\x4e\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4e\x75\x4f\x62\x72\x65\x76\x65\x4f\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75" +"\x74\x4f\x6d\x61\x63\x72\x6f\x6e\x4f\x6d\x65\x67\x61\x74\x6f\x6e\x6f\x73\x4f\x6d\x69\x63\x72\x6f\x6e\x4f\x6d\x69\x63\x72\x6f\x6e" +"\x74\x6f\x6e\x6f\x73\x4f\x73\x6c\x61\x73\x68\x61\x63\x75\x74\x65\x50\x68\x69\x50\x69\x50\x73\x69\x52\x61\x63\x75\x74\x65\x52\x63" +"\x61\x72\x6f\x6e\x52\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x52\x68\x6f\x53\x61\x63\x75\x74\x65\x53\x63\x65\x64\x69\x6c\x6c" +"\x61\x53\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x53\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x53\x69\x67\x6d\x61\x54\x61\x75" +"\x54\x62\x61\x72\x54\x63\x61\x72\x6f\x6e\x54\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x54\x68\x65\x74\x61\x55\x62\x72\x65\x76" +"\x65\x55\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x55\x6d\x61\x63\x72\x6f\x6e\x55\x6f\x67\x6f\x6e\x65\x6b\x55\x70\x73\x69" +"\x6c\x6f\x6e\x55\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x55\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x55\x72" +"\x69\x6e\x67\x55\x74\x69\x6c\x64\x65\x57\x61\x63\x75\x74\x65\x57\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x57\x64\x69\x65\x72\x65" +"\x73\x69\x73\x57\x67\x72\x61\x76\x65\x58\x69\x59\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x59\x67\x72\x61\x76\x65\x5a\x61\x63\x75" +"\x74\x65\x5a\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x5a\x65\x74\x61\x61\x62\x72\x65\x76\x65\x61\x65\x61\x63\x75\x74\x65\x61\x66\x69" +"\x69\x30\x30\x32\x30\x38\x61\x66\x69\x69\x31\x30\x30\x31\x37\x61\x66\x69\x69\x31\x30\x30\x31\x38\x61\x66\x69\x69\x31\x30\x30\x31" +"\x39\x61\x66\x69\x69\x31\x30\x30\x32\x30\x61\x66\x69\x69\x31\x30\x30\x32\x31\x61\x66\x69\x69\x31\x30\x30\x32\x32\x61\x66\x69\x69" +"\x31\x30\x30\x32\x33\x61\x66\x69\x69\x31\x30\x30\x32\x34\x61\x66\x69\x69\x31\x30\x30\x32\x35\x61\x66\x69\x69\x31\x30\x30\x32\x36" +"\x61\x66\x69\x69\x31\x30\x30\x32\x37\x61\x66\x69\x69\x31\x30\x30\x32\x38\x61\x66\x69\x69\x31\x30\x30\x32\x39\x61\x66\x69\x69\x31" +"\x30\x30\x33\x30\x61\x66\x69\x69\x31\x30\x30\x33\x31\x61\x66\x69\x69\x31\x30\x30\x33\x32\x61\x66\x69\x69\x31\x30\x30\x33\x33\x61" +"\x66\x69\x69\x31\x30\x30\x33\x34\x61\x66\x69\x69\x31\x30\x30\x33\x35\x61\x66\x69\x69\x31\x30\x30\x33\x36\x61\x66\x69\x69\x31\x30" +"\x30\x33\x37\x61\x66\x69\x69\x31\x30\x30\x33\x38\x61\x66\x69\x69\x31\x30\x30\x33\x39\x61\x66\x69\x69\x31\x30\x30\x34\x30\x61\x66" +"\x69\x69\x31\x30\x30\x34\x31\x61\x66\x69\x69\x31\x30\x30\x34\x32\x61\x66\x69\x69\x31\x30\x30\x34\x33\x61\x66\x69\x69\x31\x30\x30" +"\x34\x34\x61\x66\x69\x69\x31\x30\x30\x34\x35\x61\x66\x69\x69\x31\x30\x30\x34\x36\x61\x66\x69\x69\x31\x30\x30\x34\x37\x61\x66\x69" +"\x69\x31\x30\x30\x34\x38\x61\x66\x69\x69\x31\x30\x30\x34\x39\x61\x66\x69\x69\x31\x30\x30\x35\x30\x61\x66\x69\x69\x31\x30\x30\x35" +"\x31\x61\x66\x69\x69\x31\x30\x30\x35\x32\x61\x66\x69\x69\x31\x30\x30\x35\x33\x61\x66\x69\x69\x31\x30\x30\x35\x34\x61\x66\x69\x69" +"\x31\x30\x30\x35\x35\x61\x66\x69\x69\x31\x30\x30\x35\x36\x61\x66\x69\x69\x31\x30\x30\x35\x37\x61\x66\x69\x69\x31\x30\x30\x35\x38" +"\x61\x66\x69\x69\x31\x30\x30\x35\x39\x61\x66\x69\x69\x31\x30\x30\x36\x30\x61\x66\x69\x69\x31\x30\x30\x36\x31\x61\x66\x69\x69\x31" +"\x30\x30\x36\x32\x61\x66\x69\x69\x31\x30\x30\x36\x35\x61\x66\x69\x69\x31\x30\x30\x36\x36\x61\x66\x69\x69\x31\x30\x30\x36\x37\x61" +"\x66\x69\x69\x31\x30\x30\x36\x38\x61\x66\x69\x69\x31\x30\x30\x36\x39\x61\x66\x69\x69\x31\x30\x30\x37\x30\x61\x66\x69\x69\x31\x30" +"\x30\x37\x31\x61\x66\x69\x69\x31\x30\x30\x37\x32\x61\x66\x69\x69\x31\x30\x30\x37\x33\x61\x66\x69\x69\x31\x30\x30\x37\x34\x61\x66" +"\x69\x69\x31\x30\x30\x37\x35\x61\x66\x69\x69\x31\x30\x30\x37\x36\x61\x66\x69\x69\x31\x30\x30\x37\x37\x61\x66\x69\x69\x31\x30\x30" +"\x37\x38\x61\x66\x69\x69\x31\x30\x30\x37\x39\x61\x66\x69\x69\x31\x30\x30\x38\x30\x61\x66\x69\x69\x31\x30\x30\x38\x31\x61\x66\x69" +"\x69\x31\x30\x30\x38\x32\x61\x66\x69\x69\x31\x30\x30\x38\x33\x61\x66\x69\x69\x31\x30\x30\x38\x34\x61\x66\x69\x69\x31\x30\x30\x38" +"\x35\x61\x66\x69\x69\x31\x30\x30\x38\x36\x61\x66\x69\x69\x31\x30\x30\x38\x37\x61\x66\x69\x69\x31\x30\x30\x38\x38\x61\x66\x69\x69" +"\x31\x30\x30\x38\x39\x61\x66\x69\x69\x31\x30\x30\x39\x30\x61\x66\x69\x69\x31\x30\x30\x39\x31\x61\x66\x69\x69\x31\x30\x30\x39\x32" +"\x61\x66\x69\x69\x31\x30\x30\x39\x33\x61\x66\x69\x69\x31\x30\x30\x39\x34\x61\x66\x69\x69\x31\x30\x30\x39\x35\x61\x66\x69\x69\x31" +"\x30\x30\x39\x36\x61\x66\x69\x69\x31\x30\x30\x39\x37\x61\x66\x69\x69\x31\x30\x30\x39\x38\x61\x66\x69\x69\x31\x30\x30\x39\x39\x61" +"\x66\x69\x69\x31\x30\x31\x30\x30\x61\x66\x69\x69\x31\x30\x31\x30\x31\x61\x66\x69\x69\x31\x30\x31\x30\x32\x61\x66\x69\x69\x31\x30" +"\x31\x30\x33\x61\x66\x69\x69\x31\x30\x31\x30\x34\x61\x66\x69\x69\x31\x30\x31\x30\x35\x61\x66\x69\x69\x31\x30\x31\x30\x36\x61\x66" +"\x69\x69\x31\x30\x31\x30\x37\x61\x66\x69\x69\x31\x30\x31\x30\x38\x61\x66\x69\x69\x31\x30\x31\x30\x39\x61\x66\x69\x69\x31\x30\x31" +"\x31\x30\x61\x66\x69\x69\x31\x30\x31\x34\x35\x61\x66\x69\x69\x31\x30\x31\x39\x33\x61\x66\x69\x69\x31\x30\x38\x34\x36\x61\x66\x69" +"\x69\x36\x31\x32\x34\x38\x61\x66\x69\x69\x36\x31\x32\x38\x39\x61\x66\x69\x69\x36\x31\x33\x35\x32\x61\x6c\x70\x68\x61\x61\x6c\x70" +"\x68\x61\x74\x6f\x6e\x6f\x73\x61\x6d\x61\x63\x72\x6f\x6e\x61\x6e\x67\x6c\x65\x6c\x65\x66\x74\x61\x6e\x67\x6c\x65\x72\x69\x67\x68" +"\x74\x61\x6f\x67\x6f\x6e\x65\x6b\x61\x70\x70\x72\x6f\x78\x65\x71\x75\x61\x6c\x61\x72\x69\x6e\x67\x61\x63\x75\x74\x65\x61\x72\x72" +"\x6f\x77\x62\x6f\x74\x68\x61\x72\x72\x6f\x77\x64\x6f\x77\x6e\x61\x72\x72\x6f\x77\x6c\x65\x66\x74\x61\x72\x72\x6f\x77\x72\x69\x67" +"\x68\x74\x61\x72\x72\x6f\x77\x75\x70\x61\x72\x72\x6f\x77\x75\x70\x64\x6e\x61\x72\x72\x6f\x77\x75\x70\x64\x6e\x62\x73\x65\x62\x65" +"\x74\x61\x63\x61\x63\x75\x74\x65\x63\x63\x61\x72\x6f\x6e\x63\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x63\x64\x6f\x74\x61\x63\x63" +"\x65\x6e\x74\x63\x68\x69\x63\x69\x72\x63\x6c\x65\x6d\x75\x6c\x74\x69\x70\x6c\x79\x63\x6c\x75\x62\x64\x63\x61\x72\x6f\x6e\x64\x63" +"\x72\x6f\x61\x74\x64\x65\x6c\x74\x61\x64\x69\x61\x6d\x6f\x6e\x64\x64\x69\x65\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73\x65\x62\x72" +"\x65\x76\x65\x65\x63\x61\x72\x6f\x6e\x65\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x65\x6c\x65\x6d\x65\x6e\x74\x65\x6d\x61\x63\x72\x6f" +"\x6e\x65\x6e\x67\x65\x6f\x67\x6f\x6e\x65\x6b\x65\x70\x73\x69\x6c\x6f\x6e\x65\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x65\x71" +"\x75\x69\x76\x61\x6c\x65\x6e\x63\x65\x65\x73\x74\x69\x6d\x61\x74\x65\x64\x65\x74\x61\x65\x74\x61\x74\x6f\x6e\x6f\x73\x65\x78\x63" +"\x6c\x61\x6d\x64\x62\x6c\x65\x78\x69\x73\x74\x65\x6e\x74\x69\x61\x6c\x66\x65\x6d\x61\x6c\x65\x66\x72\x61\x6e\x63\x67\x61\x6d\x6d" +"\x61\x67\x62\x72\x65\x76\x65\x67\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x67\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x67\x64" +"\x6f\x74\x61\x63\x63\x65\x6e\x74\x67\x72\x65\x61\x74\x65\x72\x65\x71\x75\x61\x6c\x68\x62\x61\x72\x68\x63\x69\x72\x63\x75\x6d\x66" +"\x6c\x65\x78\x68\x65\x61\x72\x74\x68\x6f\x75\x73\x65\x69\x62\x72\x65\x76\x65\x69\x6a\x69\x6d\x61\x63\x72\x6f\x6e\x69\x6e\x66\x69" +"\x6e\x69\x74\x79\x69\x6e\x74\x65\x67\x72\x61\x6c\x69\x6e\x74\x65\x67\x72\x61\x6c\x62\x74\x69\x6e\x74\x65\x67\x72\x61\x6c\x74\x70" +"\x69\x6e\x74\x65\x72\x73\x65\x63\x74\x69\x6f\x6e\x69\x6e\x76\x73\x6d\x69\x6c\x65\x66\x61\x63\x65\x69\x6f\x67\x6f\x6e\x65\x6b\x69" +"\x6f\x74\x61\x69\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69\x73\x69\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73" +"\x69\x6f\x74\x61\x74\x6f\x6e\x6f\x73\x69\x74\x69\x6c\x64\x65\x6a\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x6b\x61\x70\x70\x61\x6b" +"\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6b\x67\x72\x65\x65\x6e\x6c\x61\x6e\x64\x69\x63\x6c\x61\x63\x75\x74\x65\x6c\x61\x6d" +"\x62\x64\x61\x6c\x63\x61\x72\x6f\x6e\x6c\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6c\x64\x6f\x74\x6c\x65\x73\x73\x65\x71\x75" +"\x61\x6c\x6c\x69\x72\x61\x6c\x6f\x6e\x67\x73\x6d\x61\x6c\x65\x6d\x69\x6e\x75\x74\x65\x6d\x75\x73\x69\x63\x61\x6c\x6e\x6f\x74\x65" +"\x6d\x75\x73\x69\x63\x61\x6c\x6e\x6f\x74\x65\x64\x62\x6c\x6e\x61\x63\x75\x74\x65\x6e\x61\x70\x6f\x73\x74\x72\x6f\x70\x68\x65\x6e" +"\x63\x61\x72\x6f\x6e\x6e\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6e\x6f\x74\x65\x6c\x65\x6d\x65\x6e\x74\x6e\x6f\x74\x65\x71" +"\x75\x61\x6c\x6e\x75\x6f\x62\x72\x65\x76\x65\x6f\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x6f\x6d\x61\x63\x72\x6f\x6e\x6f" +"\x6d\x65\x67\x61\x6f\x6d\x65\x67\x61\x74\x6f\x6e\x6f\x73\x6f\x6d\x69\x63\x72\x6f\x6e\x6f\x6d\x69\x63\x72\x6f\x6e\x74\x6f\x6e\x6f" +"\x73\x6f\x72\x74\x68\x6f\x67\x6f\x6e\x61\x6c\x6f\x73\x6c\x61\x73\x68\x61\x63\x75\x74\x65\x70\x61\x72\x74\x69\x61\x6c\x64\x69\x66" +"\x66\x70\x65\x73\x65\x74\x61\x70\x68\x69\x70\x69\x70\x72\x6f\x64\x75\x63\x74\x70\x72\x6f\x70\x65\x72\x73\x75\x62\x73\x65\x74\x70" +"\x72\x6f\x70\x65\x72\x73\x75\x70\x65\x72\x73\x65\x74\x70\x73\x69\x71\x75\x6f\x74\x65\x72\x65\x76\x65\x72\x73\x65\x64\x72\x61\x63" +"\x75\x74\x65\x72\x61\x64\x69\x63\x61\x6c\x72\x63\x61\x72\x6f\x6e\x72\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x72\x65\x76\x6c" +"\x6f\x67\x69\x63\x61\x6c\x6e\x6f\x74\x72\x68\x6f\x73\x61\x63\x75\x74\x65\x73\x63\x65\x64\x69\x6c\x6c\x61\x73\x63\x69\x72\x63\x75" +"\x6d\x66\x6c\x65\x78\x73\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x73\x65\x63\x6f\x6e\x64\x73\x69\x67\x6d\x61\x73\x6d\x69\x6c" +"\x65\x66\x61\x63\x65\x73\x70\x61\x64\x65\x73\x75\x6d\x6d\x61\x74\x69\x6f\x6e\x73\x75\x6e\x74\x61\x75\x74\x62\x61\x72\x74\x63\x61" +"\x72\x6f\x6e\x74\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x74\x68\x65\x74\x61\x74\x6f\x6e\x6f\x73\x75\x62\x72\x65\x76\x65\x75" +"\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x75\x6d\x61\x63\x72\x6f\x6e\x75\x6e\x64\x65\x72\x73\x63\x6f\x72\x65\x64\x62\x6c" +"\x75\x6e\x69\x30\x30\x41\x30\x75\x6e\x69\x30\x30\x41\x44\x75\x6e\x69\x30\x32\x31\x41\x75\x6e\x69\x30\x32\x31\x42\x75\x6e\x69\x30" +"\x32\x43\x39\x75\x6e\x69\x30\x33\x38\x37\x75\x6e\x69\x30\x33\x39\x34\x75\x6e\x69\x30\x33\x41\x39\x75\x6e\x69\x30\x33\x42\x43\x75" +"\x6e\x69\x30\x33\x43\x32\x75\x6e\x69\x30\x34\x30\x30\x75\x6e\x69\x30\x34\x30\x44\x75\x6e\x69\x30\x34\x35\x30\x75\x6e\x69\x30\x34" +"\x35\x44\x75\x6e\x69\x30\x34\x39\x32\x75\x6e\x69\x30\x34\x39\x33\x75\x6e\x69\x30\x34\x39\x36\x75\x6e\x69\x30\x34\x39\x37\x75\x6e" +"\x69\x30\x34\x39\x38\x75\x6e\x69\x30\x34\x39\x39\x75\x6e\x69\x30\x34\x39\x41\x75\x6e\x69\x30\x34\x39\x42\x75\x6e\x69\x30\x34\x39" +"\x43\x75\x6e\x69\x30\x34\x39\x44\x75\x6e\x69\x30\x34\x41\x30\x75\x6e\x69\x30\x34\x41\x31\x75\x6e\x69\x30\x34\x41\x32\x75\x6e\x69" +"\x30\x34\x41\x33\x75\x6e\x69\x30\x34\x41\x41\x75\x6e\x69\x30\x34\x41\x42\x75\x6e\x69\x30\x34\x41\x45\x75\x6e\x69\x30\x34\x41\x46" +"\x75\x6e\x69\x30\x34\x42\x30\x75\x6e\x69\x30\x34\x42\x31\x75\x6e\x69\x30\x34\x42\x32\x75\x6e\x69\x30\x34\x42\x33\x75\x6e\x69\x30" +"\x34\x42\x36\x75\x6e\x69\x30\x34\x42\x37\x75\x6e\x69\x30\x34\x42\x38\x75\x6e\x69\x30\x34\x42\x39\x75\x6e\x69\x30\x34\x42\x41\x75" +"\x6e\x69\x30\x34\x42\x42\x75\x6e\x69\x30\x34\x43\x30\x75\x6e\x69\x30\x34\x43\x42\x75\x6e\x69\x30\x34\x43\x43\x75\x6e\x69\x30\x34" +"\x44\x38\x75\x6e\x69\x30\x34\x45\x32\x75\x6e\x69\x30\x34\x45\x33\x75\x6e\x69\x30\x34\x45\x38\x75\x6e\x69\x30\x34\x45\x39\x75\x6e" +"\x69\x30\x34\x45\x45\x75\x6e\x69\x30\x34\x45\x46\x75\x6e\x69\x32\x30\x33\x45\x75\x6e\x69\x32\x30\x41\x46\x75\x6e\x69\x32\x31\x32" +"\x36\x75\x6e\x69\x32\x32\x31\x35\x75\x6e\x69\x32\x32\x31\x39\x75\x6e\x69\x32\x32\x32\x37\x75\x6e\x69\x32\x32\x32\x38\x75\x6e\x69" +"\x32\x32\x39\x35\x75\x6e\x69\x32\x35\x41\x31\x75\x6e\x69\x6f\x6e\x75\x6e\x69\x76\x65\x72\x73\x61\x6c\x75\x6f\x67\x6f\x6e\x65\x6b" +"\x75\x70\x73\x69\x6c\x6f\x6e\x75\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x75\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65" +"\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73\x75\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x75\x72\x69\x6e\x67\x75\x74\x69\x6c\x64" +"\x65\x77\x61\x63\x75\x74\x65\x77\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x77\x64\x69\x65\x72\x65\x73\x69\x73\x77\x67\x72\x61\x76" +"\x65\x78\x69\x79\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x79\x67\x72\x61\x76\x65\x7a\x61\x63\x75\x74\x65\x7a\x64\x6f\x74\x61\x63" +"\x63\x65\x6e\x74\x7a\x65\x74\x61\x31\x2e\x30\x30\x28\x55\x52\x57\x29\x2b\x2b\x2c\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x32\x30" +"\x31\x34\x20\x62\x79\x20\x28\x55\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69\x67\x6e\x20\x26\x20\x44\x65\x76\x65\x6c\x6f\x70\x6d\x65" +"\x6e\x74\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x28\x55\x52\x57\x29\x2b\x2b\x2c\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x32\x30" +"\x31\x34\x20\x62\x79\x20\x28\x55\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69\x67\x6e\x20\x26\x20\x44\x65\x76\x65\x6c\x6f\x70\x6d\x65" +"\x6e\x74\x4e\x69\x6d\x62\x75\x73\x20\x4d\x6f\x6e\x6f\x20\x50\x53\x20\x42\x6f\x6c\x64\x4e\x69\x6d\x62\x75\x73\x20\x4d\x6f\x6e\x6f" +"\x20\x50\x53\x01\x43\x02\x00\x01\x00\x08\x00\x70\x00\x7a\x00\xa0\x00\xe2\x01\x19\x01\x21\x01\x25\x01\x2c\x01\x37\x01\x3f\x01\x45" +"\x01\xa3\x01\xae\x01\xbb\x01\xc1\x01\xee\x01\xfb\x02\x03\x02\x0c\x02\x14\x02\x1d\x02\x44\x02\x5e\x02\x6a\x02\x75\x02\x79\x02\x8b" +"\x02\x99\x02\xa4\x02\xaf\x02\xb7\x02\xbe\x03\x54\x03\xe5\x04\x1b\x04\x5a\x04\x7d\x04\x89\x04\xbe\x04\xe2\x04\xf7\x04\xfb\x05\x0a" +"\x05\x15\x05\x27\x05\x34\x05\x3e\x05\x47\x05\x51\x05\x5b\x05\x64\x05\x6d\x05\x74\x05\x7b\x05\x80\x05\xdc\x06\x2c\x06\x8e\x06\xa4" +"\x06\xba\x06\xc1\x06\xc7\x06\xce\x06\xe6\x06\xf4\x06\xff\x07\x08\x07\x18\x07\x27\x07\x32\x07\x3d\x07\x43\x07\x55\x07\x5f\x07\x69" +"\x07\x79\x07\x84\x07\x8c\x07\x95\x07\x9e\x07\xa5\x07\xad\x07\xb5\x07\xbd\x07\xc5\x07\xd0\x07\xdb\x07\xe2\x08\x5e\x08\xa2\x09\x05" +"\x09\x4d\x09\xac\x09\xd2\x0a\x06\x0a\x37\x0a\x59\x0a\x7f\x0a\x8c\x0a\xad\x0a\xbe\x0a\xe1\x0a\xf0\x0b\x0a\x0b\x12\x0b\x27\x0b\x35" +"\x0b\x4a\x0b\x5d\x0b\x6f\x0b\x77\x0b\x7f\x0b\x8a\x0b\x9e\x0b\xaa\x0b\xb9\x0b\xd2\x0b\xe0\x0b\xed\x0b\xfd\x0c\x11\x0c\x1d\x0c\x29" +"\x0c\x35\x0c\x47\x0c\x59\x0c\x5d\x0c\x68\x0c\x79\x0c\x83\x0c\x88\x0c\x90\x0c\x9e\x0c\xac\x0c\xba\x0c\xc7\x0c\xd4\x0c\xdc\x0c\xe8" +"\x0c\xee\x0c\xf6\x0c\xfe\x0d\x06\x0d\x11\x0d\x18\x0d\x6b\x0d\x8b\x0d\xd9\x0e\x23\x0e\x73\x0e\xe6\x0f\x01\x0f\x4a\x0f\xb7\x0f\xc8" +"\x10\x0c\x10\x45\x10\xa0\x11\x0a\x11\x3d\x11\x79\x11\xc8\x11\xf5\x12\x3c\x12\x7e\x12\xac\x12\xb7\x12\xf6\x12\xff\x13\x2a\x13\x36" +"\x13\x5b\x13\x67\x13\x84\x13\xc9\x14\x04\x14\x34\x14\x72\x14\xac\x14\xc7\x14\xf8\x15\x22\x15\x4b\x15\x67\x15\x88\x15\x9f\x15\xae" +"\x15\xde\x15\xe2\x16\x03\x16\x15\x16\x36\x16\x5f\x16\x69\x16\x86\x16\x96\x16\xaa\x16\xc8\x16\xef\x16\xf7\x17\x07\x17\x17\x17\x2a" +"\x17\x48\x17\x6d\x17\x87\x17\x9b\x17\xbb\x17\xc7\x17\xe9\x17\xf7\x17\xfb\x18\x09\x18\x29\x18\x36\x18\x45\x18\x63\x18\x7a\x18\x91" +"\x18\xa9\x18\xb8\x18\xbf\x18\xce\x18\xd9\x18\xf3\x18\xf8\x19\x11\x19\x2a\x19\x30\x19\x36\x19\x4f\x19\x5d\x19\x75\x19\x7c\x19\x85" +"\x19\x9b\x19\xa7\x19\xb3\x19\xc3\x19\xd5\x19\xda\x19\xf1\x1a\x08\x1a\x1d\x1a\x33\x1a\x45\x1a\x55\x1a\x6b\x1a\x75\x1a\x85\x1a\x9a" +"\x1a\xaf\x1a\xc4\x1a\xd7\x1a\xeb\x1a\xff\x1b\x13\x1b\x1a\x1b\x2d\x1b\x40\x1b\x53\x1b\x66\x1b\x6f\x1b\x82\x1b\x86\x1b\x98\x1b\xaa" +"\x1b\xbc\x1b\xce\x1b\xde\x1b\xef\x1c\x00\x1c\x11\x1c\x22\x1c\x33\x1c\x44\x1c\x54\x1c\x64\x1c\x74\x1c\x84\x1c\x94\x1c\xa4\x1c\xb4" +"\x1c\xc4\x1c\xd4\x1c\xe2\x1c\xf1\x1d\x00\x1d\x0f\x1d\x16\x1d\x20\x1d\x2e\x1d\x37\x1d\x45\x1d\x53\x1d\x61\x1d\x6a\x1d\x77\x1d\x84" +"\x1d\x91\x1d\x9e\x1d\xab\x1d\xb8\x1d\xc3\x1d\xcf\x1d\xdb\x1d\xe0\x1d\xec\x1d\xf8\x1e\x04\x1e\x10\x1e\x1c\x1e\x28\x1e\x30\x1e\x38" +"\x1e\x43\x1e\x4e\x1e\x59\x1e\x64\x1e\x6f\x1e\x7a\x1e\x85\x83\x34\x1d\x7a\x7a\x1a\x0b\xf8\x32\xf7\x2b\x15\x9e\x5c\x05\x7a\x06\x71" +"\x83\x89\x9d\x1d\x99\x88\xa3\x1b\xf7\x1f\x06\xa0\x9a\xf7\x3a\x1d\x80\x92\x82\x8d\x70\x8c\xfb\x5b\xf8\x60\x18\xfb\x6f\x06\x70\x20" +"\x1d\x7a\x93\x7c\x9a\x81\x1e\x83\x95\x96\x89\xa6\x1b\xc4\x06\xfb\x2c\xfb\xf9\x05\x5f\x73\x79\x69\x68\xa2\x7a\xba\x1f\xf7\x19\x06" +"\xa0\x9a\x8d\x90\x3a\x1d\x93\x80\x82\x8d\x6f\x1b\x7a\x06\x9f\xba\x05\xf7\x50\xf2\x15\xfb\x25\x06\xd4\xf7\x3d\x05\x0b\x1a\x9c\x83" +"\x9a\x7d\x95\x1e\x71\x1d\x0b\x15\x95\x99\x8f\x95\x93\x1a\xa0\x79\x9c\x75\x79\x82\x85\x77\x7d\x1e\x39\xfb\x0c\x05\x83\x7f\x86\x7f" +"\x82\x1a\x77\x9d\x7a\xa2\x9b\x95\x92\x9f\x98\x1e\x0e\xf7\xc0\xf8\xd6\x15\x48\x4a\x71\x5a\x53\x1f\x4e\x55\x69\x3c\x34\x1a\xfb\x38" +"\xf7\x13\xfb\x18\xf7\x30\xf7\x2f\xf7\x14\xf7\x18\xf7\x33\xe8\x6b\xd6\x4c\xc4\x1e\xbc\x55\x49\xa5\x47\x1b\x24\x04\xea\xdb\x34\x24" +"\xfb\x00\x3d\x34\x2a\x2b\x3c\xe2\xf5\xf4\xda\xe2\xeb\x1f\x0b\xf7\xc3\xf8\x49\x15\xfb\x2a\xfb\x07\x29\xfb\x14\xfb\x13\xf7\x07\x28" +"\xf7\x27\xf7\x27\xf7\x07\xee\xf7\x13\xf7\x12\xfb\x07\xef\xfb\x24\x1f\x86\x24\x15\xe4\xce\x56\x45\x46\x48\x55\x34\x34\x48\xc1\xd0" +"\xd0\xce\xc1\xe0\x1f\x0b\x15\x9c\x99\x92\x95\x98\xf3\x1d\x06\x4f\x1d\x0b\x1a\xb1\x74\x99\x4b\x1e\x0b\x06\x5c\x73\x79\x69\x69\xa3" +"\x79\xba\x1f\x0b\x83\x9a\x7d\x95\x1f\x93\x80\x0b\x06\xb9\xa3\x9d\xad\x0b\xf8\x96\xf8\x3d\x15\xfb\x1f\x06\x3d\x1d\x7a\x1a\x7a\x93" +"\x7c\x99\x81\x3f\x1d\xaa\xfb\x3c\x06\x58\x58\x74\x7f\x5a\x1b\x51\x71\x9f\xb8\x1f\xf7\xa1\xfb\x0c\x07\x3d\x1d\x7a\x1a\x7a\x93\x7c" +"\x99\x81\x1e\x84\x95\x96\x88\xa6\x1b\x97\xfb\x3e\x06\x52\x9f\x61\xb3\x6e\x1e\x73\xad\xb5\x7f\xb9\x1b\xc1\xab\x98\xb3\xba\x1f\x62" +"\xee\x07\xa0\x9a\x8d\x90\x3a\x1d\x81\x91\x83\x8d\x76\x8c\x08\x0b\x1b\x9c\x9b\x93\x98\x96\x1f\x93\x96\x8d\x0b\x76\x84\x8a\x88\x82" +"\x1f\x78\x85\x7c\x76\x76\x1a\x0b\x81\x80\x8d\x70\x1b\x0b\xf7\x5a\xf7\x7c\x15\xd8\x88\x06\x47\x1d\x9b\x93\x98\x96\x72\x1d\xf7\x27" +"\xfc\x59\x07\x6b\x1d\x7b\x79\x92\x1d\x7b\x79\x1a\x69\xa3\x79\xb9\x1e\xf8\x6f\xf7\x29\x06\xf7\x07\x1d\x07\x0b\x06\xb9\xa3\x9c\xae" +"\x9b\x2a\x1d\x82\x8d\x6f\x1b\x0b\x8d\x90\x94\x1f\x9b\x95\x95\x0b\x1a\x9b\x83\x9a\x7d\x95\x1e\x93\x0b\x8a\x85\x81\x1f\x7b\x81\x81" +"\x0b\x5d\x1d\x5d\x1b\x38\x59\x5e\x1d\x0b\x15\x68\x6e\x6f\x6a\x69\xa8\x6f\xae\xae\xa8\xa7\xac\xae\x6f\xa6\x67\x1f\xf7\x64\x16\x68" +"\x6e\x6f\x6a\x69\xa8\x6f\xae\xae\xa8\xa7\xac\xae\x6f\xa6\x67\x1f\x0e\x15\x67\x76\x7c\x70\x82\x90\x7f\x92\x83\x1f\x81\x95\x93\x88" +"\xa6\x1b\xf7\x88\x06\xae\xa7\x1d\x73\x1b\x0e\x8d\x90\x94\xa6\x1d\x92\x80\x82\x8d\x6f\x1b\x0b\x06\xba\xa3\x9d\xad\xad\x73\x9d\x5c" +"\x1f\x0b\x93\xa6\x1d\x0b\x15\x73\x7c\x7b\x73\x3f\xe0\x47\xe9\xe9\xe0\x6f\x1d\x81\x6b\xf7\x1d\x1d\x1f\x7b\x81\x81\x7a\x79\x1a\x7b" +"\x93\x7b\x99\x81\x1e\x0b\x72\x81\x89\x86\x82\x1f\x7b\x81\x81\x7a\x0b\x1b\x9c\x9b\x93\x98\x96\x1f\x93\x95\x8d\x0b\x1e\x84\x95\x98" +"\x88\xa4\x1b\x0b\x1b\x74\x79\x7a\x75\x7e\x0b\xf8\xbe\xf7\x41\x15\xa6\x93\x9a\x9d\xa4\x33\x1d\x80\x81\x8d\x6f\x1b\xfb\x43\x06\x71" +"\x83\x50\x1d\x9a\x81\x1e\x83\x95\x97\x89\xa4\x1b\xeb\x4f\x06\x7d\x68\x64\x84\x5b\x1b\x4d\x5b\x99\xa6\x69\x1f\x6e\xa3\x7d\xaf\xc0" +"\x1a\xc8\x07\xba\x9e\xba\xac\xaa\x1e\xa8\xa9\xb7\x9a\xc1\x1b\xd3\xbc\x77\x6b\x94\x1f\x94\x6c\x8b\x8b\x91\x84\x08\x81\x94\x99\x85" +"\x9a\x2d\x1d\x93\xa6\x1a\xd5\x07\xa4\x8a\x93\x85\x95\x1e\x9a\x82\x7a\x95\x79\x1b\x77\x80\x83\x76\x80\x1f\x9e\x60\x5b\x95\x56\x1b" +"\x37\x4b\x73\x58\x55\x1f\x54\x57\x6c\x44\x41\x1a\x48\x07\x47\xa5\x48\xb4\x63\x1e\x5a\xbd\xe1\x6f\xef\x1b\xda\xbd\x99\xba\xe8\x1f" +"\x0b\xf8\x92\xf8\x06\x15\x9e\x8a\x92\x88\x94\x1e\x9e\x86\x77\x98\x75\x1b\x7b\x82\x85\x7a\x82\x1f\x9a\x66\x61\x93\x5b\x1b\xfb\x0e" +"\x33\x53\x3c\x3e\xc7\x63\xf7\x22\x7c\x1f\xc1\x86\xa0\x87\x9b\x85\x08\x9f\x83\x97\x80\x80\x1a\x77\x56\x7a\x50\x56\x61\x97\xa2\x6f" +"\x1e\xa9\x82\x7a\x99\x6f\x1b\x78\x54\x1d\x82\x71\x1a\x6b\x07\x5d\x9d\x76\xb0\x98\x94\x8e\x93\x96\x1e\x79\xb2\xbe\x82\xc5\x1b\xf7" +"\x17\xea\xc5\xdb\xb9\x70\xb5\x5e\xa3\x1f\x6d\x9b\x61\x96\x41\x94\x4b\x94\x85\x8c\x7e\x8f\x08\x7c\x91\x82\x92\x92\x1a\x99\xbb\x9a" +"\xba\xb4\xac\x82\x79\xa5\x1e\x6c\x9d\x97\x83\xa4\x3e\x1d\x95\xa5\x1a\x0b\xf7\x98\xf8\x61\x15\xc0\x69\x1d\xfb\x6a\x06\x6b\x1d\x7b" +"\x79\x1a\x7a\x93\x7b\x99\x82\x1e\x83\x96\x96\x89\xa5\x1b\xc0\xfb\xfa\x56\x06\x71\x83\x34\x1d\x7b\x79\x1a\x68\xa3\x7a\xb9\x1e\xf8" +"\x70\xf7\x04\x1d\xfb\x63\x07\x0b\xf7\x66\xf2\x15\xf7\xbe\xf7\xff\x05\xed\xfc\x34\xfb\x3a\x07\x73\x8d\x82\x91\x82\x1e\x7b\x95\x9d" +"\x82\x9d\x2d\x1d\x93\xa6\x1a\xca\xf7\x3a\x07\xfb\xbd\xfb\xfd\x05\x27\xf8\x62\xf7\x3c\x07\xa4\x8a\x93\x84\x95\x1e\x99\x82\x79\x95" +"\x78\xf7\x50\x1d\x4a\x07\x0b\x15\xfb\x03\xe5\x05\x96\x7e\x84\x8e\x81\x1b\x76\x79\x7a\x76\xf7\x46\x1d\xa2\x9e\x8d\x8e\x9a\x1a\xa0" +"\x79\x9c\x77\x80\x83\x87\x81\x7f\x1e\x0e\xc7\x1d\xba\xb8\xaa\x9b\xb8\x1b\xc7\xd5\x1d\x0b\x73\x8c\x82\x91\x82\x1e\x7c\x95\x9d\x81" +"\xac\x1d\x93\xa6\x1a\xf7\x00\x07\x9f\x8a\x91\x88\x95\x1e\x9d\x84\x76\x99\x75\x1b\x7a\x7b\x83\x7e\x81\x1f\x83\x80\x89\x81\x71\x1a" +"\x88\x3e\xf7\x13\xf7\x76\x5f\xf7\x48\x1d\x0b\x15\x74\x7c\x7b\x73\x3f\xe0\x47\xe9\xe9\xe0\x6f\x1d\x82\x6a\x84\x1f\x61\x81\x63\x70" +"\x56\x1b\x56\x62\xa6\xb5\x82\x1f\xab\x84\x82\x95\x75\x1b\x0e\xb2\xaa\xa8\xb1\xb0\x6c\xa9\x64\x1f\x79\x06\x65\x6b\x6d\x66\x66\xaa" +"\x6d\xb2\x1f\x0b\x16\x9e\x1d\x0e\x80\x82\x8d\x6f\x1b\x26\x06\x72\x81\x89\x86\x82\x73\x1d\x0b\x71\x20\x1d\x7a\x93\x7c\x99\x81\x1e" +"\x84\x0b\x95\x1e\x9a\x81\x7a\x94\x78\x1b\x7a\x7b\x83\x7e\x80\x1f\x83\x81\x89\x0b\x7e\x1a\x77\x9e\x78\x9f\x95\x96\x91\x96\x96\x1e" +"\x0b\xb9\xa3\x9d\xad\xad\x73\x9d\x5d\x1f\x0b\x34\x1d\x7b\x79\x1a\x7a\x93\x7c\x0b\x88\x7e\x7b\x1e\xfb\x1a\x21\x05\x7a\x0b\x5d\x72" +"\x79\x69\x69\xa3\x79\xba\x1f\x0b\x87\x81\x7f\x1e\xfb\x00\x38\x05\x0b\x7c\x84\x7d\x80\x1f\x83\x80\x89\x0b\x82\x1b\x76\x79\x7a\x76" +"\x0b\x78\xa2\x68\x68\x78\x74\x0b\x90\x94\x97\x1e\x0e\xf7\xae\xf8\x3e\x15\xfb\x1f\x06\x79\x78\x88\x86\x84\x1f\x7b\x82\x81\x7a\x79" +"\x1a\x69\xa3\x79\xb9\x1e\xaa\xfb\x6f\x55\xf7\x2c\x1d\xf7\xbd\x06\xba\xa3\x9c\xae\x9b\x2a\x1d\x81\x8d\x6f\x1b\xfb\x1b\xf7\x1b\x06" +"\xd3\xe6\xb3\xa3\xa9\x1b\x98\x94\x87\x7f\x99\x1f\x7d\x9b\x96\x86\x9a\x1b\xa8\xa4\xa3\xa8\x9d\x83\x98\x76\x9c\x1f\xa4\x6b\x6a\x97" +"\x67\x1b\x59\x68\x7c\x55\x3d\x1f\x0b\xf7\x29\x1d\x79\x1a\x7b\x93\x7c\x99\x81\x1e\x83\x95\x98\x89\xa4\x1b\xf7\x6b\x06\xa2\x97\x6c" +"\x1d\x71\x1b\xf7\x76\xf8\x33\x05\xad\x8f\x9e\x9d\xa8\x22\x1d\x2f\x06\x2e\x1d\x7b\x93\x7b\x99\x81\x1e\x95\x85\x92\x89\xa1\x8a\xfb" +"\x04\xfb\x5e\x18\xfb\x01\xf7\x5e\x05\xb0\x8d\x9f\x9e\xa9\x1a\x9c\x83\x9b\x7d\x95\x1e\x92\x83\x1d\x0b\xf7\x0d\x1d\x9a\x7d\x96\x1e" +"\x92\x80\x82\x8d\x6f\x1b\xfb\x17\x06\x71\x83\x8a\x85\x81\x1f\x7b\x82\x81\x79\x7a\xf7\x5f\x1d\xa5\x1b\xbc\x06\x6a\xfb\x82\x43\xf7" +"\x5f\x05\xfb\x00\x06\x43\xfb\x5f\x6a\xf7\x82\x05\xb6\x06\xa3\x96\x8d\x90\x95\x77\x1d\x7d\x95\x1e\x93\x80\x81\x8d\x6f\x1b\xfb\x17" +"\x06\x70\x84\x8a\x85\x81\x1f\x7a\x81\x82\x7b\x77\x1a\x6f\x9b\x7a\xa9\x87\x1e\xc9\xfc\x62\x05\xf7\x0a\x06\x0b\x5b\x6c\x76\x69\x5e" +"\x1a\x54\x60\x1d\x80\x1e\x7d\x6e\x83\x88\x7f\x1b\x7e\x84\x90\x95\x0b\x83\x8a\x85\x81\x1f\x7b\x82\x81\x79\x7a\x1a\x7a\x93\x7c\x99" +"\x81\x1e\x83\x96\x96\x89\x0b\xd9\x1d\x74\x31\x71\x87\x0b\xa3\xbf\xf7\x36\x1d\x0b\x71\x83\x8a\x85\x61\x1d\x0b\xb0\x69\xc8\xa7\xaa" +"\x92\x97\xa5\x1e\xa5\x96\x97\x99\x9f\x1a\xa1\x78\x9d\x74\x83\x85\x89\x86\x0b\x81\x1f\x7b\x81\x81\x7a\xf7\x6b\x1d\x9a\x88\xa2\x1b" +"\x0b\x06\x64\x6c\x6d\x66\x66\xaa\x6d\xb2\x1f\x0e\x2b\x1d\x9b\x83\x9b\x7d\x95\x1f\x0b\x1a\xa7\x72\xa3\x6e\x7d\x7e\x86\x7f\x7f\x1e" +"\x71\x72\x8b\x8b\x0b\x9c\xae\x9b\x83\x9a\x7d\x96\x1f\x92\x80\x82\x8d\x6f\x1b\x0b\xf8\x87\x15\xfb\x12\xfb\x00\xf7\x12\x06\x0b\x06" +"\xb9\xa4\x9d\xad\xad\x72\x9d\x5d\x1f\x0b\x06\x5d\x72\x75\x1d\x0b\x06\xa2\x97\x8d\x90\x94\x77\x1d\x7d\x95\x1e\x93\x80\x82\x8d\x6f" +"\x1b\x0b\x9a\x80\x1e\x84\x96\x98\x88\xa5\x1b\x0b\x70\x84\x8a\x85\x81\x1f\x7b\x81\x81\x0b\x32\x1d\x9c\x9d\x1a\x9b\x83\x9b\x7d\x94" +"\x1e\x93\x80\x82\x8d\x0b\x06\x72\x82\x89\x86\x81\x1f\x7b\x81\x81\x0b\xae\x1a\xad\x73\x9d\x5d\x1e\x0b\xcf\xd7\xa3\x7c\x9b\x74\x75" +"\x82\x0b\x9c\x93\x98\x95\x1f\x93\x96\x8d\x0b\x93\x80\x81\x8d\x70\x1b\x0b\x1f\x93\x96\x8d\x94\xa6\x1a\x0b\x1f\x7b\x81\x81\x7a\x7a" +"\x1a\x0b\xfb\x0b\xfb\x0a\xfb\x2f\x1f\x0b\x79\x69\x69\xa4\x79\xb9\x1f\x0b\x1b\xab\x9c\x81\x79\x7e\x80\x84\x76\x7b\x0b\x1f\x9b\x95" +"\x95\x9c\x9d\x1a\x9b\x83\x9a\x0b\xf8\x9d\xf8\x93\xb5\x1d\x0b\xf8\x06\xf7\xb4\x15\xf7\x2c\xf7\x41\x05\xb1\x8c\xa1\x9e\xaa\x22\x1d" +"\x31\x06\x2e\x1d\x76\x95\x7d\xf7\x35\x1d\x7c\x95\x1e\x93\x2f\x1d\x30\x06\x77\x84\x8a\x88\x82\x1f\x78\x85\x7c\x76\x76\x1a\x7b\x94" +"\x7b\x98\x82\x1e\x94\x84\x92\x89\xa1\x8a\xf7\x2f\xfb\x41\x18\xfb\x37\xfb\x4d\x05\x65\x74\x77\x6c\x68\xa3\x7a\xb9\x1f\xf7\x03\x06" +"\xb9\xa3\x9c\xae\xa7\x78\x9e\x6c\x8e\x1f\xe9\xf5\xe8\x22\x05\x6b\x87\x78\x78\x6f\x1a\x68\xa3\x7a\xb9\x1e\xf7\x03\x06\xa0\x9a\x8d" +"\x90\x3a\x1d\x81\x91\x84\x8d\x75\x8c\x08\x0e\xf8\x2a\xf8\x1f\x15\xa7\x66\x5a\x9a\xe1\x1d\x79\x1a\x7b\x93\x7c\x99\x81\x1e\x83\x95" +"\x98\x89\xa4\x1b\xf7\x04\x06\xf7\x04\xdf\xda\xf1\x8a\x1f\xf7\xe5\x97\x07\xa3\x96\x38\x1d\xfb\x0c\x06\xfb\x1b\x31\x15\xd6\xc7\x55" +"\x48\x45\x50\x55\x3f\x41\x4f\xc2\xcf\xcf\xc7\xc1\xd5\x1f\x0b\xa8\xf7\x85\x15\xfb\x27\xf7\x12\x20\xf7\x40\xd4\xd0\x9d\xa9\xb7\x1e" +"\xaf\xa4\x9e\xa4\xa2\x64\x1d\x81\x85\x08\x7d\x71\x65\x83\x5d\x1b\xfb\x08\x3f\xc7\xe8\x1f\xc8\x07\xef\xd3\xd2\xef\xad\xad\x83\x7c" +"\xa6\x1e\xa7\x7c\x95\x80\x8f\x75\x08\x65\x92\x9a\x7b\xaa\x3e\x1d\x96\xa4\x1a\xdb\x07\xa4\x8a\x93\x84\x95\x1e\x9a\x81\x7a\x94\x78" +"\x1b\x79\x7f\x85\x7b\x7e\x1f\xa9\x46\x71\x91\x53\x1b\xfb\x31\x74\x1d\x0b\xf7\xf5\xf8\x61\x15\xf0\x37\x06\x73\x8d\x81\x91\x82\x1e" +"\x7b\x95\x9c\x82\x9e\x2d\x1d\x93\xa7\x1a\xf7\x4f\xfc\xa0\xfb\x4f\x07\x73\x8d\x81\x91\x82\x1e\x7b\x95\x9d\x82\x9d\x2d\x1d\x93\xa7" +"\x1a\xdf\xee\xfb\xfa\x4e\x07\x5f\x1d\xf7\x7b\x06\xb9\xa3\x9c\xae\x9b\x2a\x1d\x81\x8d\x70\x1b\x4d\x06\x0b\xd1\xf2\x15\x63\x8a\x77" +"\x7a\x6a\x1a\x69\xa2\x79\xb5\x1e\xef\x06\xf7\x77\xf7\xa4\x05\xfb\x3c\x84\x07\x5d\x73\x79\x69\x69\xa3\x79\xb9\x1f\xf7\x03\x06\xba" +"\xa3\x9d\xac\xad\x75\x9c\x5e\x8c\x1f\xf7\x6e\x95\x07\xba\xa3\x9d\xad\xad\x73\x9d\x5c\x1f\xfb\x07\x06\xfb\x77\xfb\xa3\x05\xf7\x3b" +"\x98\x07\xc0\xa3\x9b\xaf\xaf\x73\x9b\x56\x1f\xfb\x03\x06\x5c\x73\x79\x69\x6a\x9f\x7a\xb4\x8a\x1f\x0b\xf8\x80\xf7\x6e\x15\xa2\x98" +"\x8d\x90\x93\x1f\x9b\x95\x95\x9c\x9d\x22\x1d\xfc\x14\x06\x3d\x1d\x79\x1a\x7a\x93\x7c\x99\x81\x1e\x83\x95\x97\x89\xa5\x1b\x0e\x15" +"\xfb\x0c\x6a\x05\x70\x84\x83\x83\x79\x1a\x78\x99\x7c\x9b\x92\x92\x8c\x8e\x93\x1e\xaf\x97\x05\xfb\x79\x5d\x07\x6e\x7d\x80\x76\x76" +"\x9a\x7f\xa7\x1f\xf7\x37\x06\xa4\x98\x96\xa1\xa0\x7f\x96\x71\x1f\x59\x06\x0b\x15\xfb\x03\xe5\x05\x95\x7f\x83\x8e\x81\x1b\x76\x79" +"\x7a\x76\x7f\x8f\x84\x98\x81\x1f\x93\x84\xf7\x2f\xfb\x10\xf7\x2e\xf7\x10\x05\xa3\x9e\x8c\x8d\x9b\x1a\x9f\x79\x9c\x77\x80\x82\x87" +"\x82\x80\x1e\x0e\x15\x98\x7b\x85\x8e\x7f\x40\x1d\x92\x81\x9c\x7d\x1f\xf7\x1a\x20\x05\x7e\x9b\x92\x88\x96\x1b\xa1\x9e\x9d\xa0\x98" +"\x84\x96\x7a\x99\x1f\x0e\x15\x4b\x57\x59\x4d\x4d\xbf\x59\xcb\xca\xc0\xbd\xc8\xca\x58\xbd\x4a\x1f\x53\x04\xab\xa5\x72\x6d\x6b\x71" +"\x72\x6b\x6b\x71\xa4\xaa\xaa\xa5\xa4\xab\x1f\x0b\x2f\x1d\x31\xf7\x11\x1d\x6f\x9d\x79\xab\x86\x1e\x0b\xa4\x8a\x93\x84\x4d\x1d\x81" +"\x71\x1a\x3b\x6c\x07\x70\x84\x8a\x85\x81\x1f\x7b\x82\x81\x79\x7a\x1a\x7a\x93\x7c\x99\x81\x3f\x1d\xaa\x0b\xf7\xc9\xf7\x60\x15\xb2" +"\xaa\xa9\xb0\xb0\x6c\xa9\x64\x1f\x79\x62\x1d\xf7\xf6\xf8\x3d\x15\xfb\x4a\x06\x70\x83\x34\x1d\x7b\x79\x1a\x68\xa3\x7a\xba\x1e\xd5" +"\xfb\x6f\xfb\x0a\x06\x71\x20\x1d\x69\xa3\x79\xb9\x1e\x0b\x06\x72\x81\x89\x86\x82\x3c\x1d\x84\x96\x96\x89\xa5\x1b\x0b\x06\x5d\x73" +"\x79\x69\x6d\x9c\x7a\xae\x87\x1f\xfb\xfa\x07\x58\x8a\x76\x7c\x68\x1a\x69\xa3\x79\xb9\x1e\x0b\x4c\x1d\x95\x99\x88\xa3\x1b\x0b\xf9" +"\x2f\x15\x68\x6e\x6f\x6a\x69\xa8\x6f\xae\xae\xa8\xa7\xac\xae\x6f\xa6\x67\x1f\x0e\x74\x8d\x81\x91\x82\x1e\x7b\x95\x9c\x82\x9e\x2d" +"\x1d\x0b\x94\x1f\x9b\x95\x95\x9b\x9d\x1a\x9c\x83\x9a\x7d\x95\x1e\x93\x80\x82\x8d\x6f\x1b\x0b\xf8\x14\x16\xf7\x0d\xf7\x33\x1d\x7f" +"\xf7\x51\x06\xe6\x40\xc1\xfb\x12\x58\x0b\x06\x77\x84\x8a\x88\x81\x1f\x79\x85\x7c\x76\x76\x1a\x7b\x93\x7b\x99\x0b\x9f\x98\xaf\x28" +"\x1d\x37\x06\x0b\x91\xf7\x5e\x1d\x80\x1e\x25\x0b\x9b\x2a\x1d\x81\x8d\x70\x1b\xfb\x0a\x06\x0b\x1a\x7a\x93\x7c\x99\x81\x1e\x83\x96" +"\x96\x89\xa5\x1b\x96\xfb\xfa\x80\x6d\x1d\x0b\x89\xf7\x4e\x1d\x7b\x93\x7b\x99\x81\x3f\x1d\x0b\x86\x90\xa3\x88\xad\x1b\x96\x06\xcb" +"\xa2\x99\xb0\xb2\x75\x0b\x15\x46\x51\x55\x4a\x4a\xc5\x55\xd0\xd0\xc5\xc1\xcb\xcd\x52\xc1\x45\x1f\x50\x04\xae\xaa\x70\x6b\x0b\xf7" +"\x64\x1d\x81\x80\x79\x78\x1a\x79\x94\x7b\x6a\x1d\x0b\x94\x78\x1b\x7a\x7b\x83\x7e\x80\x1f\x83\x81\x89\x0b\x15\x98\x7b\x85\x8e\x7f" +"\x40\x1d\x91\x81\x9d\x7d\x1f\xf7\x1a\x0b\x1f\x9b\x95\x95\x9b\x9d\x1a\x9c\x83\x9a\x7d\x95\x1e\x93\x80\x80\x8d\x71\x1b\x0b\x7d\x66" +"\x68\xa3\x79\xbb\x1f\x8f\xfb\x17\x06\x0b\x1a\x7b\x9b\x7c\x9c\x98\x95\x93\x9c\x95\x1e\x0b\xb9\x1b\xa9\x9e\x86\x7f\x9a\x1f\x9b\x7e" +"\x8f\x0b\x85\x81\x1f\x7b\x82\x81\x7a\x79\x1a\x7a\x93\x7c\x99\x81\x1e\x84\x95\x0b\x6b\x72\x73\x6d\x6c\xa4\x73\xab\xab\xa4\xa3\xa9" +"\xaa\x72\xa3\x6b\x1f\x0b\x07\xa3\x1d\x0b\x68\x6e\x70\x69\x6a\xa8\x6f\xae\xae\xa8\x0b\xb9\xa3\x9c\xae\x9b\x83\x9b\x7d\x95\x1f\x92" +"\x80\x82\x8d\x6f\x1b\x0b\x94\x54\x1b\xfb\x2d\x20\x2a\xfb\x1f\x0b\x5c\x73\x75\x1d\x0b\x9b\x94\xf7\x69\x1d\x93\x80\x0b\x7d\x84\x80" +"\x7e\x1a\x76\x9e\x79\xa1\x96\x92\x8e\x98\x0b\x1f\x9b\x95\x95\x9c\x9d\x1a\x9b\x83\x9b\x7d\x95\x1e\x0b\xa1\x9b\xa5\x94\x85\x99\x85" +"\x92\x1f\x94\x83\x7e\x8e\x0b\x7d\xa3\x1b\xa9\xa3\x99\xac\xa7\x1f\xa1\xa6\x93\x0b\x9b\x83\x9b\x7d\x95\x1f\x93\x80\x82\x8c\x6f\x1b" +"\x0b\x9d\xad\x9b\x2a\x1d\x81\x8d\x0b\x1b\x80\x80\x90\x9e\x69\x1f\xa9\x59\x78\x92\x0b\x9d\x1b\x9c\x70\x1d\x0b\xd5\xc1\xc9\xa1\x7c" +"\x9a\x75\x0b\x1e\x3d\x06\x61\x75\x79\x69\x0b\x72\x81\x8a\x85\x82\x1f\x7b\x0b\x9d\x5c\x1f\xfb\x0c\x06\x5d\x73\x79\x68\x0b\xf8\x29" +"\xf7\x7a\xb2\x1d\x0b\x15\xfb\x13\x80\x07\xde\x1d\xf7\xfa\x06\xad\x8f\x9d\x9d\xa9\x1a\x9b\x83\x9a\x7d\x96\x1e\x92\x4b\x1d\x7a\x93" +"\x7b\x99\x81\x1e\x84\x96\x95\x89\xa6\x1b\x96\xfb\x14\xfb\x62\xf7\x14\x96\x06\xa4\x95\x8c\x91\x94\x1f\x9b\x95\x95\x9b\x9e\x33\x1d" +"\x4b\x1d\x6d\x9d\x79\xad\x87\x1e\xfb\xfa\x93\x1d\xf7\x0d\x06\xba\xa2\x65\x1d\x80\xf7\x13\x06\x0b\xf7\x26\x1d\x9c\xae\x9b\x83\x9b" +"\x7d\x95\x1f\x93\x80\x81\x8c\xf0\x1d\x85\x8a\x88\x81\xbd\x1d\x92\x80\x82\x8d\x6f\x1b\x6c\x06\x0b\xf8\x9d\xf8\x93\xf7\x13\x1d\x59" +"\x1b\xfb\x13\x2d\x41\x28\xf7\x55\x1d\xce\x80\x9a\x87\xa1\x80\x08\x9f\x81\x98\x79\x79\x1a\x64\x53\x6d\x42\x4c\x4d\xa6\xab\x81\x1e" +"\x83\xa6\x8b\x8b\x84\x92\x08\x95\xee\x1d\xf7\x20\xe8\xcf\xf2\xbe\x77\xb3\x63\xaa\x1f\x6b\xa4\x64\x98\x33\x9a\x41\x99\x86\xf7\x39" +"\x1d\x73\x66\xd8\x1d\x0b\xf7\x13\x1d\x58\x1b\xfb\x12\x2d\x41\x29\xf7\x55\x1d\xcd\x7f\x9b\x87\xa1\x81\x08\x9f\x81\x98\x79\x79\x1a" +"\x64\x53\x6d\x43\x4b\x4d\xa6\xab\x81\x1e\x83\xa5\x8b\x8b\x84\x93\x08\x94\xee\x1d\xf7\x1f\xe9\xd0\xf1\xbe\x77\xb3\x63\xaa\x1f\x6b" +"\xa3\x64\x99\x33\x9a\x3f\x99\x88\xf7\x39\x1d\x72\x67\xd8\x1d\x0b\xf7\x29\x1d\x7a\x1a\x7a\x93\x7c\x99\x81\x1e\x83\x95\x98\x89\xa4" +"\x1b\xf7\x6b\x06\xa2\x97\x6c\x1d\x71\x1b\xf7\x76\xf8\x33\x05\xad\x8f\x9e\x9d\xa8\x22\x1d\x2f\x06\x2e\x1d\x7b\x93\x7b\x99\x81\x1e" +"\x95\x85\x92\x89\xa1\x8a\xfb\x04\xfb\x5e\x18\xfb\x01\xf7\x5e\x05\xaf\x8d\xa0\x9e\xa9\x1a\x9c\x83\x9a\x7d\x95\x1e\x93\x83\x1d\x0b" +"\xf7\x6f\xf7\x33\x15\x99\x95\xec\x39\x05\x81\x7e\x87\x82\x7e\x1a\x69\xa3\x79\xb9\x1e\xf7\x0a\x06\xba\xa3\x9c\xae\x9c\x2a\x1d\x81" +"\x8c\x6f\x1b\x6b\x06\xfb\x2f\xf7\x17\xf7\x06\xe3\x05\xa5\x06\xa3\x96\x8c\x91\x8c\x1d\xfb\x04\x06\x72\x80\x89\x86\x82\x73\x1d\x7d" +"\x8f\x81\x95\x7f\x1e\x46\x57\x05\xf7\xd1\xfb\x0c\x07\x78\x83\x8b\x88\x81\x1f\x79\x85\x7c\x76\xf7\x45\x1d\xfc\x20\x7f\x06\x72\x81" +"\x89\x85\x82\x1f\x7b\x82\x81\x7a\x79\x1a\x69\xa3\x79\xb9\x1e\xf7\x0c\x06\x0b\xf7\x3d\x1d\xf7\x13\x22\xe8\xfb\x23\x4f\x61\x7d\x66" +"\x5c\x1f\xb2\xfb\x0c\x07\xf7\x0f\x1d\x97\xfc\x33\xc2\x1d\xd1\xf7\x7c\x15\xfb\x15\x07\x65\x8a\x74\x78\x6c\x1a\x69\xa3\x79\xb9\x1e" +"\xf7\x61\xe0\x1d\x98\x82\x1e\x95\x84\x92\x89\xa1\x8a\x08\xfb\x12\x88\x07\x70\x20\x1d\x68\xa3\x7a\xb9\x1e\xf7\x04\x16\xd1\x31\x1d" +"\x45\xf7\x12\xf5\x06\xe7\x8f\xcf\x46\x8d\x28\x08\x5f\x07\x2b\x4d\x51\x28\x8f\x1e\x20\x06\x0e\xf8\x53\xf7\xcf\x15\xf7\x1c\x1d\x05" +"\x73\x74\x86\x88\x75\x1b\x81\xb6\x06\xc1\x8d\xa0\x99\xaf\x28\x1d\x36\x06\x4b\x74\x7d\x66\x66\xa0\x7c\xc2\x8a\x1f\xfb\x6d\x07\x54" +"\x8a\x76\x7c\x67\x1a\x65\xa2\x7d\xcb\x1e\xe0\x06\xcb\xa2\x99\xb0\xae\x73\x9d\x5c\x1f\x89\x06\x89\xd1\xa3\x06\xa5\x8c\xa8\x77\xab" +"\x62\xbd\x48\x18\xad\x5f\x8f\x89\xb1\x8a\x08\xb7\x06\xb5\xa0\x9d\xae\xb1\x75\x97\x47\x8c\x1f\x58\xcf\x76\xa8\x75\xa0\x74\x9a\x19" +"\xcd\xcd\x05\x0b\xf7\x6e\xf7\xd6\x15\xf7\x45\xf7\x32\x1d\xfb\x45\xdb\x06\xc0\x1d\x0b\xf8\x2a\xf8\x1f\x15\xa6\x68\x58\x9b\xe1\x1d" +"\x7a\x1a\x7a\x93\x7c\x99\x81\x1e\x83\x95\x98\x89\xa4\x1b\xf7\x04\x06\xf7\x04\xdf\xda\xf1\x8a\x1f\xf7\xe5\x97\x07\xa3\x96\x38\x1d" +"\xfb\x0c\x06\xfb\x1b\x31\x15\xd6\xc7\x55\x48\x45\x50\x55\x3f\x41\x4f\xc2\xcf\xcf\xc7\xc1\xd5\x1f\x0b\x1f\x78\x85\x7d\x76\x75\x1a" +"\x76\x95\x7c\x9c\x83\x1e\xfb\x3a\xfb\x1c\x05\xf7\x16\xaa\x07\xa3\x96\x8c\x91\x94\x1f\xa4\x1d\x81\x8d\x70\x1b\xfb\x2a\x87\x1d\x96" +"\xfb\xfa\x80\x06\x72\x82\x8a\x9d\x1d\x9a\x88\xa2\x1b\xf7\x2a\x63\x1d\x0b\xf7\x98\xf8\x61\x15\xf7\x63\x37\x06\x72\x8d\x82\x91\x82" +"\x1e\x7b\x95\x9c\x82\x9e\x1b\x9d\x9a\x92\x99\x96\x72\x1d\xf7\x4f\xfc\x70\x07\x5d\x73\x79\x69\x7b\x93\x7c\x99\x81\x1f\x83\x97\x93" +"\x89\xa7\x1b\xc0\xfb\xfa\x56\x06\x74\x7f\x89\x86\x82\x1f\x7b\x81\x81\x7a\x79\x1a\x7b\x93\x7c\x99\x80\x1e\x84\x96\x93\x89\xa8\x1b" +"\xf7\x6a\x06\xa4\x95\x8d\x90\x94\x99\x1d\x56\x06\x0e\x15\x78\x7e\x7d\x78\x79\x97\x80\x9e\x89\x1f\xa3\x8a\x92\x8a\x95\x86\x08\xa3" +"\x80\x9b\x76\x77\x1a\x6a\x70\x7a\x55\x68\x7d\x8e\x94\x7d\x1e\x92\x83\x87\x8c\x84\x1b\x7b\x7e\x7d\x78\x6c\xb9\x76\xd1\xb9\xaa\x93" +"\x9e\xa3\x1f\xa5\x9f\x9b\xad\xac\x1a\xaf\x77\xac\x68\x9f\x1e\xa9\xa1\x99\xa3\xab\x1a\xc8\x5a\xb7\x48\x4e\x54\x6b\x67\x79\x98\x7c" +"\x9b\x93\x93\x8e\x92\x90\x1e\x9f\x9c\x99\x91\xa7\x1b\xad\xa1\x7b\x73\x74\x75\x77\x72\x1f\x0b\x84\x1d\xfb\x5e\x06\x38\xd3\x57\xf7" +"\x09\xc1\xd9\x9b\xa1\xbc\x1e\xb3\x9d\x98\x98\xa4\x1a\xa8\x74\xa2\x6e\x7f\x85\x89\x82\x78\x1e\x76\x5f\x5b\x80\x57\x1b\x66\x70\x91" +"\x97\x80\x1f\x86\x90\x89\x94\x9e\x1a\x0b\xd1\xf2\x15\x65\x8a\x74\x78\x6c\x1a\x7a\x94\x7b\x98\x82\x1e\x84\x95\x9a\x88\xa3\x1b\xf7" +"\x60\xe0\x1d\x99\x82\x1e\x94\x84\x92\x89\xa1\x8a\x08\xf7\x00\xfb\xfa\x15\xf7\xfa\xf5\x07\xe7\x8f\xcf\x46\x8d\x28\x08\x5e\x07\x2c" +"\x4d\x51\x28\x8f\x1e\x0b\x7f\x06\x72\x81\x89\x86\x82\x1f\x7b\x82\x81\x79\x7a\x1a\x7a\x93\x7c\x99\x81\x1e\x83\x95\x97\x89\xa5\x1b" +"\xf7\x42\x06\xa2\x98\x8d\x90\x3a\x1d\x92\x2f\x1d\x55\x06\xf7\x25\xf8\x3f\x15\xdf\xc7\x5d\x4a\x6c\x79\x6a\x6f\x77\x1f\x79\x72\x6a" +"\x82\x63\x1b\x62\x6a\x94\x9d\x72\x1f\x70\x9f\x78\xac\xa9\x1a\xcd\xc6\xb9\xe1\x1e\x0e\x08\xd2\xb0\xad\xba\xc8\x1a\xf1\x30\xd2\xfb" +"\x19\x1e\xfb\x73\x06\xf7\x0b\x1d\xfb\xf9\x80\x06\x72\x82\xf7\x3f\x1d\xf7\x2a\x06\xa0\x9a\x8e\x8f\x3a\x1d\x93\x80\x82\x8d\x6f\x1b" +"\x6c\x0b\xf7\xf6\xf7\xd6\x15\xe0\x06\xa3\x97\x8d\x90\x94\x77\x1d\x7c\x96\x1e\x92\x81\x81\x8d\x6f\x1b\x36\xf7\x01\x06\xa5\x8a\x92" +"\x84\x95\x1e\x9a\x82\x79\x97\x1d\x81\x71\x1a\xfb\x01\x35\x07\x72\x81\x89\x86\x82\x1f\x7b\x82\x81\x79\x7a\x1a\x7a\x93\x7c\x99\x81" +"\x1e\x83\x96\x96\x89\xa5\x1b\xe1\x0b\xf8\xa7\x15\x7d\x7e\x81\x77\x7b\x1f\x6f\x77\x87\x88\x7e\xab\x1d\x74\x1b\x6c\x6e\x7c\x6d\x71" +"\x1f\x79\x76\x81\x78\x7d\x1a\x78\x9a\x7d\x9f\x96\x94\x90\x96\x94\x1e\xaf\xa7\x93\x91\x9b\x1b\x99\x92\x88\x7a\xa6\x1f\x70\xb8\xac" +"\xa8\x1d\x9a\x9a\x1a\x9b\x7a\x9a\x78\x1e\x0e\x15\x7d\x7e\x81\x77\x7b\x1f\x70\x77\xf7\x5b\x1d\x59\x79\x92\x72\x1b\x6d\x6e\x7c\x6e" +"\x71\x1f\x79\x75\x81\x79\x7d\x1a\x78\x9a\x7d\x9e\x97\x94\x8f\x97\x94\x1e\xaf\xa8\x92\x90\x9b\xf5\x1d\xf8\x3d\x15\x29\x06\xcc\x1d" +"\xf7\x3c\x06\x0b\xf8\x14\xf7\xd6\x15\xfb\xe5\x07\x5c\x67\x6c\x55\x1e\xfb\x03\x06\x71\x83\x8a\x85\x81\x1f\x7b\x82\x81\x79\x7a\x1a" +"\x7a\x93\x7c\x99\x81\x1e\x83\x95\x98\x89\xa4\x1b\xf7\x06\x06\xf7\x03\xe0\xda\xf1\x8a\x1f\xf8\x4c\xfb\xc6\x07\x4c\x1d\x96\x97\x88" +"\xa4\x1b\x0b\x5d\x1d\x5d\x1b\x37\x5a\x5e\x1d\x0b\x15\x9a\x9a\x90\x1d\x23\x05\x76\x75\x89\x88\x4e\x1d\xf7\x9e\xf4\x15\xa0\xa2\x8b" +"\x8b\x99\x1a\x9f\x79\x9d\x77\x7f\x82\x87\x7f\x80\x1e\x25\x23\x05\x77\x75\x89\x88\x4e\x1d\x0e\xf7\x45\x07\xa1\x1d\xfb\x45\xdb\x06" +"\x84\x1d\x0b\x2e\x1d\x7b\x93\x7b\x99\x81\x1e\x95\x85\x92\x89\xa1\x8a\x08\xfb\x6f\x93\x1d\xf7\x04\x2b\x1d\x9b\x83\x9a\x7d\x96\x1f" +"\x92\x80\x82\x8d\x6f\x1b\x89\x0b\x86\x1d\xf7\xec\x06\xb9\xa3\x9c\xae\x91\x1d\x0b\xb2\x8c\xa1\x9d\xab\x22\x1d\xfb\x16\x87\x1d\xaa" +"\xfb\x9a\x06\xfb\x90\xf8\x01\x05\xfb\x09\x06\x3d\x1d\x79\x1a\x7b\x0b\x06\x73\x6b\x76\x61\x7c\x1a\x83\x92\x84\x94\x92\x8f\x8d\x92" +"\x91\x1e\xad\xb2\xa3\x9f\xbc\xa8\x99\x94\x18\x91\x8e\x8f\x8d\x8c\x8c\x08\x99\x93\x8e\x8e\x93\x1a\x92\x87\x8f\x78\x95\x1e\x4f\xad" +"\x6e\xa2\x6c\xae\x08\x98\x80\x87\x8e\x84\x1b\x82\x83\x85\x83\x7c\x9b\x6b\xa8\x5f\x1f\x0b\x06\x5d\x73\x79\x69\x69\xa3\x7a\xb9\x1f" +"\x90\x55\xfb\x5c\xc1\x90\x06\xb9\xa3\x9c\xad\xad\x73\x9d\x5d\x1f\x2c\x06\x5d\x73\x79\x69\x6d\x9c\x7a\xae\x87\x1f\xfb\x6e\x07\x58" +"\x8a\x76\x7b\x69\x1a\x68\xa3\x79\xb9\x1e\xf7\x07\x27\x1d\x86\xc7\x0b\xe5\xf2\x15\x80\x06\x72\x82\x89\x86\x61\x1d\xf7\xbb\x06\xf7" +"\x0d\xdb\xc9\xea\xc6\x69\xba\x47\xab\x1f\xb4\xaa\x9d\xac\xb7\x1a\xe8\x36\xcf\xfb\x07\x1e\xfb\x91\x06\x72\x81\x89\x86\x82\x1f\x7b" +"\x0b\x15\x8c\x98\x8c\x97\x93\x1a\xb9\x64\xaf\x5a\x59\x64\x67\x5d\x84\x8c\x7e\x8c\x7e\x1e\xa8\xfb\xac\x05\x6a\x8e\xa1\x77\xac\x1b" +"\xab\xa1\x9f\xac\x8e\x1f\x5a\xfb\x80\x15\xb5\xac\xaa\xb2\xb2\x6a\xaa\x61\x1f\x7a\x06\x62\x6a\x6c\x64\x64\xac\x6c\xb4\x1f\x0b\xf7" +"\x63\x1d\x88\x8f\x84\x91\x1f\x63\xac\x78\xa1\x6d\xbc\x88\x8f\x88\x90\x88\x90\x08\x88\x90\x87\x91\x8b\x1a\x98\x84\x88\x8e\x82\x1b" +"\x84\x87\x87\x79\x81\x1f\x6a\x52\x72\x6b\x67\x6f\x08\x7e\x80\x88\x86\x85\x1a\x81\x92\x84\x93\x99\x0b\xf7\xf6\xf8\x60\x15\xe9\x67" +"\x1d\xfb\xbc\x68\x1d\xe9\xfb\xf8\x2d\x68\x1d\xf7\xbc\x67\x1d\x2d\x06\xfb\x31\x0b\xa5\x77\x5e\x1f\xfb\x3a\x07\x65\x74\x78\x6b\x68" +"\xa3\x7a\xba\x1f\xe4\x06\xb9\xa3\x9c\xae\x9b\x83\x9b\x7d\x95\x1f\x81\x91\x84\x8d\x75\x8c\x08\xf7\x3e\xf7\x5a\x1d\x5c\x1b\x56\x6a" +"\x7e\x63\x5d\x1f\x0b\x07\x8c\x98\x94\x8c\x8f\x76\x1d\x75\x91\x94\x7a\x1f\x96\x77\x89\x8c\x55\x1d\x7a\x94\x7e\xa0\x80\x1f\x7e\xa5" +"\xb2\x81\xa7\x1b\xcd\xb9\xb3\xc3\xbe\x72\xa8\x59\x96\x1f\x0e\x8c\x98\x94\x8c\x8f\x76\x1d\x75\x91\x94\x7a\x1f\x96\x77\x89\x8c\x55" +"\x1d\x7a\x94\x7e\xa0\x80\x1f\x7e\xa5\xb3\x81\xa7\x1b\xcc\xb9\xb3\xc3\xbd\x72\xa9\x59\x96\x1f\x0b\x94\x1e\x92\x6b\x8b\x8b\x93\x83" +"\x08\x82\x94\x9a\x85\x9a\x1b\x9c\x9a\x93\x98\x96\x1f\x93\x96\x8d\x93\xa6\x1a\x0b\xf7\x21\x1d\xfb\x17\xf7\x02\x2e\xf7\x32\xd3\xf2" +"\x9c\x9f\xb8\x1e\xa4\x95\x97\x9a\xa0\x1a\xa8\x75\xa2\x6e\x80\x80\x89\x88\x7e\x1e\x0b\xfc\x6f\x07\x71\x83\xf7\x19\x1d\x96\xfb\xfa" +"\x80\x6d\x1d\x7a\x7a\x1a\x69\xa3\x79\xb9\x1e\x0b\x71\x83\x50\x1d\x99\x81\x1e\x84\x96\x95\x88\xa6\x1b\x97\x0b\x15\xfb\x28\xfb\x17" +"\x05\x7f\x81\x86\x82\x82\x1a\x78\x9b\x7d\x9f\x97\x8e\x8c\x98\x9b\x1e\xf7\x90\xf7\x46\xfb\x90\xf7\x47\x05\x98\x7a\x89\x8c\x7f\x1b" +"\x77\x7b\x7d\x78\x81\x90\x84\x97\x80\x1f\x0b\xf8\xc5\xdf\x1d\x72\x82\x8a\x85\x81\x1f\x7b\x82\x81\x79\x7a\x1a\x7a\x93\x7b\x99\x82" +"\x1e\x84\x95\x99\x88\xa3\x1b\xf7\x0d\x06\xb9\xa3\x65\x1d\x89\x0b\x15\x73\x7c\x7b\x73\x3f\xdf\x47\xea\xea\xdf\x6f\x1d\x82\x6a\xf7" +"\x1d\x1d\x06\xf7\x32\x87\xf7\x03\xf1\x8c\xf7\x2c\x08\xb7\x07\xf7\x2d\xfb\x07\xf7\x0b\xfb\x27\x89\x1e\xfb\x68\x06\x70\x20\x1d\x7a" +"\x94\x7b\x0b\x58\x1b\xfb\x1d\x24\x2a\xfb\x15\xfb\x14\xf3\x29\xf7\x1c\xbd\xb8\x99\xa9\xb5\x1f\x5e\x07\x5c\x67\x6c\x55\x1e\xfb\x01" +"\x06\x71\x83\x8a\x85\x81\x1f\x7b\x82\x81\x79\x0b\xf7\x12\x1d\x82\x87\x80\x84\x9b\x1d\x0e\x15\x9d\xf7\x57\x1d\x7e\x7b\x1e\xfb\x19" +"\x21\x05\x7b\x7e\x83\x7f\x7e\x1a\x77\x9e\x79\xa1\x95\x94\x8f\x97\x9a\x1e\x0e\x95\x1d\x6a\x6d\x70\x67\x67\x6d\xa6\xac\xab\xa9\xa6" +"\xaf\x1f\x0e\xf7\x1f\x1d\x7f\x9b\x93\x87\x95\x1b\xa2\x9e\x9d\xa0\x99\x85\x94\x78\x9a\x1f\x0e\xf7\x6f\xf7\x0d\x15\x34\xb9\x5a\xde" +"\xbf\xad\xa2\xaf\xa7\x73\xa3\x6f\x84\x82\x89\x89\x83\x1e\x89\x85\x85\xf7\x53\x1d\x0b\xa1\x9b\x9d\x9e\x95\x97\x88\x86\x9b\x1e\x86" +"\x9c\x8f\x8a\x95\x1b\xa9\xa2\xa2\xa8\x9d\x83\x99\x7c\x95\x1f\x98\x76\x5f\x95\x66\x1b\x3d\x4d\x4c\x3b\x1f\x69\x0b\xf7\x53\x1d\x56" +"\x1d\x5e\x1e\x0b\xaf\x1d\x81\x81\x7a\x7a\x1a\x7a\x93\x7c\x99\x81\x1e\x84\x95\x0b\x95\x1d\x69\x6d\x70\x67\x67\x6d\xa7\xab\xac\xa9" +"\xa6\xaf\x1f\x0b\x70\x20\x1d\x69\xa3\x79\xba\x1e\xf7\x7a\x06\xba\xa3\xaa\x1d\x6f\x1b\x4e\x0b\x6a\x1d\xf8\xb4\x06\xa2\x98\x8d\x91" +"\x95\x1f\x9c\x95\x96\x9d\x9e\x1a\x9d\x82\x9c\x7c\x95\x1e\x93\x7f\x82\x8d\x6e\x1b\x0b\xaa\x9b\x98\xa4\xa4\x7b\x98\x6c\x1f\xfb\x01" +"\x06\xbc\x89\x7c\x9f\x66\x1b\x66\x7b\x77\x5a\x8a\x1f\x5f\x06\x6c\x7b\x7e\x72\x72\x9b\x7e\xaa\x1f\xb7\x0b\x81\x7d\x90\x7c\xf7\x50" +"\x1d\x4c\x07\x5e\x9d\x75\xaf\x9c\x94\x90\x9c\x9b\x1e\x72\xbe\xbd\x80\xc1\x1b\x0b\x9d\x2d\x1d\x94\xa6\x1a\xf6\x07\xa4\x8a\x93\x84" +"\x95\xf7\x60\x1d\x81\x1f\x83\x0b\x70\x1b\x6e\x06\x5e\xf6\x4e\xda\x50\xa9\xf7\x3e\xf7\x22\x18\xb5\xa2\x9d\xac\x9c\x83\x9a\x7d\x95" +"\x1f\x93\x2f\x1d\x27\x06\x76\x0b\xf8\x82\xf8\x61\x15\xc0\x69\x1d\xfb\xa8\x06\x0b\x15\xf7\x01\x30\x05\x82\x97\x93\x87\x96\x1b\x9f" +"\x9d\x9c\xa0\x9a\x88\x8f\x75\x9c\x1f\xfb\x2d\xf7\x11\xfb\x2f\xfb\x11\x05\x73\x79\x89\x0b\x1a\xa1\x79\x9c\x74\x7f\x85\x51\x1d\xa5" +"\x1d\x9b\x1e\x0e\xf7\x01\x1d\x0e\xf7\x24\x1d\xa5\x93\x9a\x9a\x1a\x9b\x7a\x9a\x78\x1e\x0e\x87\x1e\xf7\x10\x26\xfb\x21\xfb\x0a\x05" +"\x67\x88\x77\x79\x6d\x1a\x69\xa3\x79\xb9\x1e\xf7\x03\x06\xba\xa2\x9c\xaf\xa2\x82\x97\x0b\xab\xa4\xa3\xa9\xaa\x72\xa3\x6b\x1f\xf7" +"\x61\x4a\x1d\xf7\x6c\xf7\x1c\xf7\x5d\x1d\x79\xf7\x61\x1d\xf7\x9a\x05\x0b\x1e\x29\x06\x4c\x74\x7e\x65\x66\xa4\x7a\xc3\x8c\x1f\xfb" +"\xf8\x07\x4f\x8a\x76\x7d\x65\x1a\x66\xa2\x7d\xca\x1e\xed\x06\x0b\x15\x99\x97\x92\x96\x97\x1a\x9d\x7a\x9b\x78\x82\x81\x53\x1d\x7d" +"\x80\x84\x80\x7e\x1a\x79\x0b\xf7\x4f\x06\xa4\x89\x94\x85\x94\x1e\x9b\x81\x7a\x94\x78\x1b\x79\x54\x1d\x82\x70\x1a\x37\x0b\xcb\x07" +"\xc6\x8d\x9e\x97\xb0\x28\x1d\x3a\x06\x4d\x73\x7d\x67\x68\xa1\x7a\xb9\x8a\x1f\x4b\x07\x0b\xf7\xc4\x15\xe4\xf7\x58\x05\x97\xa6\x8e" +"\x94\xf7\x3b\x1d\x0b\xa3\x89\x95\xf7\x0c\x1d\x0b\x06\x70\x84\x8a\x85\x81\x3c\x1d\x84\x96\x96\x89\xa5\x1b\x0b\x06\xa4\x8a\x93\x84" +"\x4d\x1d\x80\x72\x1a\x0b\x46\xfb\x5c\x05\x88\x85\x8a\x83\x85\x1a\x7b\x9b\x7d\x9e\x99\x94\x91\x9d\x97\x1e\xf7\x25\xf7\x76\x05\x0b" +"\xf7\x0e\x1d\x96\x0b\x85\x94\x1e\x9b\x81\x7a\x94\x78\x1b\x7a\x7b\x83\x7e\x80\x1f\x83\x80\x89\x82\x70\x1a\x5d\xfb\x8c\x0b\xf7\xc0" +"\xf7\x95\x15\xe6\xfb\x95\x05\xf7\x08\x06\xc7\xf8\x62\x05\xa9\x90\x9c\x9e\xa6\x1a\x9b\x83\x0b\x70\x84\xf7\x19\x1d\x0b\x72\x81\xf7" +"\x17\x1d\x0b\x77\x1a\x6d\xa6\x71\xab\xa0\x95\x91\xac\xa6\x1e\xa8\xa4\x94\x93\x92\x1b\x90\x99\x82\x7c\x9d\x1f\x0b\x06\x77\x84\x8a" +"\x88\x82\x1f\x77\x85\x7d\x76\x76\x1a\x0b\x15\x8e\x91\x8f\x9b\x90\x1a\x9b\x7b\x9a\x7b\x7d\x81\x84\x79\x82\x1e\xfb\x7d\xfc\x47\x05" +"\x87\x0b\x15\xf7\x25\x1d\x5e\x96\x0b\xf7\x30\x1d\x66\x77\x59\x68\x1f\x0b\xfb\x2f\xfb\x11\x05\x73\x78\x89\x88\x7d\x1a\x76\x9d\x7a" +"\xa0\x95\x94\x8f\x94\x97\x1e\x0e\xf7\x48\x1d\x9b\x93\x99\x96\x1f\x93\x95\x8d\x0b\x89\x86\x82\x3c\x1d\x84\x96\x95\x89\xa6\x1b\x0b" +"\x8a\x84\x80\x1f\x7a\x82\x80\x78\x78\x1a\x79\x94\x7b\x6a\x1d\x0b\x34\x1d\x7a\x7a\x1a\x7a\x94\x7b\x98\x82\x1e\x83\x96\x96\x89\xa5" +"\x1b\x0b\xf7\x20\x1d\x7d\x0b\x1f\xfb\xc1\xed\x07\xb9\xa3\x9c\xae\x9b\x83\x9b\x7d\x95\x1f\x81\x91\x84\x8d\x76\x8c\x08\x0b\x6d\x92" +"\x9c\x7d\xa9\x1b\xb1\x9a\xa2\xc6\xbf\x77\x9f\x57\x57\x5f\x7a\x6a\x6d\x1f\x4a\x45\x0b\x84\x1f\x61\x82\x62\x70\x56\x1b\x56\x62\xa6" +"\xb5\x82\x1f\xab\x84\x82\x95\x76\x1b\x0e\x83\x1b\x85\x7f\x92\x98\x7c\x1f\xc9\x44\x70\x99\x5e\x1b\x5f\x69\x79\x5f\x63\x1f\x6d\x0b" +"\x15\x98\x7b\x85\x8e\x7f\x40\x1d\x92\x80\x9c\x7e\x1f\xf7\x1a\x20\x05\x0b\x15\x9a\x97\x92\x96\x97\x1a\x9d\x7a\x9b\x78\x82\x80\x53" +"\x1d\x0b\xf8\xbe\xf7\x38\x15\xb4\x07\xf7\x1a\xfb\x03\xed\xfb\x2c\xfb\x29\xfb\x05\x28\xfb\x15\x0b\x06\x72\x81\x89\x86\x82\x3c\x1d" +"\x83\x0b\x15\xf7\x1d\x06\xa2\x98\x32\x1d\x9c\x9d\x1a\x9b\x83\x9b\x7d\x0b\x1b\x99\x92\x88\x7b\xa6\x1f\x6f\xb9\xab\x7e\xa2\x1b\xaa" +"\xa3\x99\xac\xa7\x1f\xa1\x0b\xa5\x8a\x92\x85\x95\x1e\x9a\x82\x79\x94\x78\x1b\x77\x80\x83\x75\x81\x1f\x9e\x6a\x0b\xf7\x5a\xf7\x5c" +"\x15\xc3\xb9\xc5\x7b\xcf\x28\xb6\xfb\x17\x19\xf7\x05\x06\xb9\xa3\x0b\x1e\x87\x7b\x8a\x85\x7d\x1a\xf7\x00\xfb\xf8\x15\xf7\x6f\xcc" +"\xfb\x6f\x07\x0e\xf8\x60\x15\xfb\xf8\x81\x07\x5c\x73\x79\x69\x69\xa3\x79\xba\x1f\xf7\x0c\x06\x0b\xf7\x82\x91\x15\x56\x28\x05\x29" +"\x06\x72\x82\x89\x86\x81\x1f\x7b\x82\x81\x79\x0b\x76\x7d\x6c\x6a\x1a\x4a\xbb\x5f\xd3\xd3\xbb\xb6\xcd\xac\x7d\xaa\x71\xa0\x1e\x0b" +"\x34\x1d\x7a\x7a\x1a\x7a\x0b\x06\x71\x83\x8a\x85\x81\x1f\x7b\x82\x81\x79\x7a\x1a\x69\xa3\x79\xb9\x1e\x0b\xfb\x2e\xf7\x11\xfb\x2f" +"\xfb\x11\x05\x74\x79\x89\x87\x7d\x1a\x76\x9d\x7a\x0b\x15\xa3\x9e\x78\x74\x73\x78\x78\x74\x73\x78\x9e\xa3\xa1\x9e\x9f\xa2\x1f\x0b" +"\x1a\x6d\xa1\x76\xa9\x1e\xac\x06\xb2\x8c\x96\x94\x9f\xbd\xb4\xf5\x18\x99\x0b\xa1\xc6\x1f\x94\x07\xf7\x51\x1d\x0b\x74\x8d\x80\x91" +"\x81\x1e\x7b\x96\x9e\x81\x9f\x1b\x9e\x9c\x93\x9a\x96\x1f\x0b\x06\xa1\x1d\x0b\x06\xba\xa2\x9c\xae\x9b\x83\x9b\x7d\x95\x1f\x92\x80" +"\x82\x8d\x6f\x1b\x0b\x15\xfb\x3f\xfb\x1f\xfb\x19\xfb\x37\xfb\x36\xf7\x1f\xfb\x1b\xf7\x3c\x0b\xa4\x7e\x1e\x35\x2b\x33\xeb\x05\xa4" +"\x98\x95\x98\xa2\x1a\x9b\x83\x9a\x0b\x72\x1f\x8d\xe7\x15\xb9\x9b\xc5\xab\xcf\x1b\xcf\xc4\x6b\x5d\x9c\x1f\x0b\x79\x5d\x1b\x5e\x68" +"\x9e\xa7\x83\x1f\xa5\x84\x82\x94\x77\x1b\x0e\x8a\x84\x80\x1f\x7a\x81\x80\x79\x78\x1a\x7a\x94\x7a\x9a\x80\x1e\x0b\x8c\x77\x95\x08" +"\x77\x94\x7d\xa0\x9e\x1a\xb1\xbb\xa9\xc8\xc8\xb8\x0b\x8d\x90\x93\x1f\x9b\x94\x95\x9d\x9d\x1a\x9b\x83\x9b\x7d\x95\x1e\x0b\x98\x1a" +"\xa2\x7a\x9a\x6f\x61\x80\x7e\x48\x7f\x1e\x67\xfb\x5f\x05\x0b\x1e\xfb\x7d\xfc\x47\x05\x87\x82\x87\x80\x84\x1a\x7b\x9b\x7c\x9c\x0b" +"\xf7\x46\xc6\x15\x68\xbb\xb9\x7c\xc5\x1b\xf7\x21\xf3\xe3\xf7\x0c\x0b\x7e\x81\x87\x83\x81\x1e\x6a\x63\x6b\x82\x3b\x1b\xfb\x07\x52" +"\x0b\x89\x85\x81\x1f\x7b\x82\x81\x7a\x79\x1a\x69\xa3\x79\xb9\x1e\x0b\x15\xf7\x28\xf7\x17\x05\x97\x96\x90\x92\x95\x1a\x9e\x7b\x99" +"\x0b\x15\xf7\x02\x31\x05\x82\x96\x94\x87\x96\x1b\x9f\x9d\x9c\xa0\x0b\x15\xfb\x03\xe5\x05\x96\x7e\x83\x8e\x81\x1b\x76\x79\x7a\x76" +"\x0b\x94\x1f\x9b\x95\x95\x9c\x9c\x1a\x9c\x83\x9a\x7d\x95\x1e\x93\x0b\xf7\xc1\xf7\x39\x15\xd0\xfb\x39\x05\xec\x06\xdf\xf7\xd6\x05" +"\x0b\x76\x1a\x7a\x93\x7c\x99\x81\x1e\x83\x96\x95\x89\xa6\x1b\x97\x0b\x7c\x8e\x87\xa1\x79\x1f\xf7\x2f\xfb\x10\xf7\x2e\xf7\x10\x05" +"\x0b\xb2\x1f\x9c\x06\xb2\xab\xa9\xb0\xb0\x6b\xa9\x64\x1f\x0e\x07\x74\x8d\x80\x91\x82\x1e\x7c\x95\x9d\x81\x9d\x1b\x9c\x0b\x15\xf7" +"\x01\x31\x05\x82\x97\x94\x87\x95\x1b\xa0\x9d\x9c\x0b\x20\x05\x7a\x7e\x84\x80\x7d\x1a\x77\x9e\x79\xa1\x96\x92\x0b\xad\xad\x72\xb0" +"\x1d\x69\x0b\x7e\x1a\x79\x9c\x7b\x9e\x94\x95\x57\x1d\xc0\xcd\x57\x05\x75\x82\x7e\x79\x76\x1a\x67\xa2\x7a\x0b\x07\xaf\x1d\x82\x81" +"\x79\x7a\x1a\x0b\x15\x70\x83\x8a\x84\x80\x1f\x7a\x82\x80\x78\x78\x1a\x0b\x1b\x7a\x7b\x83\x7e\x80\x1f\x84\x81\x88\x80\x72\x1a\x0b" +"\xb1\x89\x97\x84\x96\x1e\x9b\x80\x79\x91\x69\x1b\x4e\x0b\x81\x1e\x84\x96\x96\x89\xa5\x1b\x0b\x8a\x87\x1b\x80\x87\x91\x9a\x1f\xf7" +"\x8b\x07\xb8\x0b\x8c\x92\x96\x1f\x9b\x94\x95\x9c\x9d\x1a\x9b\x82\x0b\x53\xab\x57\xbf\x6f\x1f\xac\x79\xaa\x82\xce\x80\x0b\x93\x1a" +"\xa0\x79\x9d\x75\x79\x82\x85\x76\x7d\x1e\x0b\x9a\x91\x94\x98\x1a\xa1\x79\x9c\x74\x7f\x84\x88\x0b\xac\x52\x08\x79\x95\x8f\x87\x92" +"\x1b\x92\x90\x8e\x0b\xf7\xac\x15\xfb\x13\xfb\x00\xf7\x13\x06\x0e\x07\xc4\x77\xb5\x62\xa8\x1e\xa3\x6a\x61\x97\x0b\x87\x88\x7e\x1b" +"\x80\x7f\x90\x9e\x6a\x1f\xa8\x0b\x8f\xf7\x68\x1d\x0b\x15\x46\xfb\x80\x05\x88\x81\x8a\x87\x86\x1a\x0b\x95\x97\x1a\x9f\x79\x9d\x77" +"\x7f\x83\x87\x7f\x0b\x1a\x7a\x93\x7b\x99\x82\x1e\x83\x96\x96\x89\x0b\x1e\x9a\x82\x79\x95\x78\x1b\x7a\x7b\x83\x7e\x0b\x9b\x7d\x9e" +"\x99\x97\x94\x9b\x94\x1e\xf7\x25\x0b\x74\x8a\x19\x83\xf7\x00\x06\xc9\x8d\x9e\x97\x0b\x9a\x1b\x93\x92\x92\x94\x92\x0b\x70\x83\x8a" +"\x84\x80\x1f\x7a\x0b\x06\x5e\x9d\x74\xaf\xae\x9e\xa2\xb8\x1e\x0b\x06\x5d\x9c\x75\xb0\xae\x9e\xa2\xb8\x1e\x0b\x8a\x88\x81\x1f\x78" +"\x85\x7d\x76\x76\x1a\x0b\x91\x91\x92\x08\x5f\x8f\x9c\x79\xad\x1b\x0b\x95\x9c\x9d\x1a\x9c\x83\x9a\x7d\x95\x1e\x0b\xae\xfb\x8b\x05" +"\x70\x8e\x95\x80\xa1\x1b\x0b\x7a\x1a\x7b\x94\x7a\x98\x82\x1e\x84\x95\x0b\x01\x00\x01\xe3\x01\x05\x00\x01\x0a\x02\x01\x40\x03\x01" +"\x87\xff\x02\x87\xa0\x02\x8e\x02\x00\x01\x00\x02\x00\x03\x00\x3c\x00\x5f\x01\x32\x02\x05\x02\x82\x03\x07\x03\x16\x03\x59\x03\x9a" +"\x04\x05\x04\x44\x04\x46\x04\x48\x04\x4f\x04\x7a\x04\xca\x04\xf8\x05\x58\x05\xd8\x06\x1a\x06\x7e\x06\xe7\x07\x1e\x07\x7a\x07\xe3" +"\x08\x02\x08\x1b\x08\x65\x08\x80\x08\xca\x09\x30\x09\xb4\x09\xb7\x09\xbe\x09\xc1\x09\xc4\x09\xc7\x09\xf8\x09\xfb\x09\xfd\x0a\x00" +"\x0a\x3b\x0a\x3e\x0a\x41\x0a\x9b\x0a\x9e\x0a\xa1\x0a\xe1\x0b\x78\x0b\x7b\x0b\x7e\x0b\x80\x0b\x83\x0b\xa9\x0b\xac\x0b\xae\x0b\xb1" +"\x0b\xb4\x0b\xd6\x0c\x01\x0c\x27\x0c\x5b\x0c\x6e\x0c\x73\x0c\x76\x0c\xed\x0c\xf0\x0d\x39\x0d\x3c\x0d\x8f\x0d\x92\x0d\xc4\x0d\xca" +"\x0d\xee\x0d\xf1\x0d\xf4\x0e\x57\x0e\x5c\x0e\x5f\x0e\x61\x0e\xeb\x0e\xee\x0e\xf1\x0e\xf4\x0e\xf7\x0f\x2c\x0f\x2f\x0f\x3f\x0f\x42" +"\x0f\x45\x0f\xa3\x0f\xb0\x10\x0c\x10\x3c\x10\x72\x10\xf6\x11\x68\x11\x6a\x11\xff\x12\x5f\x13\x11\x13\xb1\x13\xbe\x13\xd8\x14\x2b" +"\x14\x4c\x14\x4f\x14\xb9\x15\x2b\x15\x2d\x15\x34\x15\x70\x15\x72\x15\xe1\x15\xf8\x15\xfa\x16\x06\x16\x14\x16\x1c\x16\x2d\x16\x67" +"\x16\xc7\x16\xcd\x16\xd8\x16\xde\x17\x0b\x17\x11\x17\x17\x17\x1e\x17\x24\x17\x2a\x17\x35\x17\x3b\x17\x62\x17\x68\x17\x6a\x17\x6d" +"\x17\xdb\x18\x3b\x18\x3e\x18\xaf\x18\xd9\x18\xdc\x18\xdf\x19\x39\x19\x3c\x19\xba\x1a\x4c\x1a\x84\x1a\xa4\x1b\x1a\x1b\xc4\x1b\xc6" +"\x1c\x3b\x1c\x78\x1c\xdd\x1d\x41\x1d\x6e\x1d\xc9\x1d\xf3\x1e\x18\x1e\x60\x1e\xb3\x1f\x48\x1f\x4b\x1f\xea\x20\x42\x20\xb0\x21\x35" +"\x21\x4e\x21\x68\x21\x70\x21\x77\x21\x7e\x21\xa2\x22\x09\x22\x17\x22\x31\x22\x38\x22\x46\x22\x4d\x22\x7b\x22\x83\x22\x8b\x22\xcd" +"\x22\xe6\x22\xf2\x22\xf9\x23\x00\x23\x24\x23\x50\x23\x6f\x23\x8d\x23\x95\x23\x9d\x23\xbd\x23\xc5\x24\x01\x24\x25\x24\x3a\x24\x85" +"\x24\xa0\x24\xcb\x25\x06\x25\x71\x25\x8f\x25\xcd\x25\xdf\x25\xfa\x26\x01\x26\x12\x26\x1a\x26\x22\x26\x75\x26\x7d\x26\xad\x26\xb4" +"\x26\xbb\x26\xf4\x27\xa9\x27\xc6\x27\xd5\x27\xdd\x27\xf8\x28\x00\x28\x08\x28\x31\x28\x94\x28\xe1\x29\x36\x29\x7e\x29\xc1\x29\xea" +"\x2a\x7e\x2a\xec\x2a\xf4\x2a\xfc\x2a\xff\x2b\x51\x2b\x59\x2b\xc4\x2b\xe0\x2b\xe2\x2b\xea\x2b\xf2\x2b\xfa\x2c\x03\x2c\x05\x2c\x0a" +"\x2c\x0c\x2c\x27\x2c\x2e\x2c\x33\x2c\x38\x2c\x3f\x2c\xa3\x2c\xd7\x2c\xd9\x2d\x16\x2d\x18\x2d\x24\x2d\xd7\x2d\xd9\x2d\xe1\x2d\xe9" +"\x2d\xf1\x2d\xfa\x2e\x77\x2e\x7e\x2e\xe3\x2e\xeb\x2e\xf0\x2e\xf8\x2f\x13\x2f\x16\x2f\x1c\x2f\x3b\x2f\x42\x2f\x4a\x2f\x6a\x2f\x72" +"\x2f\x7a\x2f\xb7\x2f\xe3\x2f\xea\x2f\xfd\x2f\xff\x30\x07\x30\x0d\x30\x15\x30\x2c\x30\x34\x30\x3b\x30\x43\x30\xa1\x30\xa4\x30\xf5" +"\x30\xfc\x31\x9c\x31\xc2\x32\x36\x32\x3e\x32\x45\x32\x4c\x32\x4e\x32\x55\x32\xf5\x32\xfd\x33\x05\x33\x48\x33\x4a\x33\x84\x33\x89" +"\x33\xbc\x34\x33\x34\x3b\x34\x43\x34\x4b\x34\x82\x34\x85\x34\xe4\x34\xf0\x34\xf8\x34\xff\x35\x07\x35\x6d\x35\x74\x35\x7b\x35\xdc" +"\x35\xe3\x35\xeb\x35\xf2\x35\xf8\x35\xfb\x36\x03\x36\x0a\x36\x0c\x36\x0f\x36\x34\x36\x36\x36\x38\x36\xaf\x36\xb1\x37\x13\x37\x9a" +"\x38\x29\x38\x2c\x38\x4f\x38\x52\x38\xba\x38\xbc\x38\xbe\x38\xc1\x38\xe1\x38\xe3\x38\xe6\x38\xe8\x38\xeb\x39\x6f\x39\x71\x39\xa2" +"\x39\xe5\x3a\x33\x3a\x77\x3a\xbb\x3b\x2a\x3b\x4a\x3b\xc1\x3c\x34\x3c\x96\x3c\xcc\x3d\x5f\x3d\xa8\x3e\x1f\x3e\x22\x3e\x25\x3e\x2b" +"\x3e\x2e\x3e\xaa\x3f\x21\x3f\xa7\x3f\xd3\x3f\xf1\x40\x1c\x40\x96\x40\xeb\x40\xee\x41\x4e\x41\x51\x41\xbd\x42\x68\x42\xdd\x42\xe0" +"\x42\xff\x43\x02\x43\x67\x43\xb0\x43\xd0\x43\xd3\x44\x25\x44\x27\x44\x2e\x44\x4f\x44\x52\x44\xea\x44\xfa\x45\x2b\x45\x66\x45\xb9" +"\x45\xf4\x46\x34\x46\xa6\x46\xe8\x47\x57\x47\xa2\x47\xee\x48\x0c\x48\x6b\x48\x7d\x48\xe5\x48\xe8\x48\xee\x49\x1b\x49\x22\x49\xa3" +"\x4a\x05\x4a\x14\x4a\x23\x4a\xac\x4a\xd5\x4a\xd7\x4b\x24\x4c\x01\x4c\x9f\x4d\x4f\x4d\xb6\x4e\x26\x4e\x2e\x4e\x62\x4e\x96\x4f\x01" +"\x4f\x86\x4f\xa5\x4f\xf4\x50\x3a\x50\x80\x50\x8c\x50\xd9\x51\x0e\x51\x4c\x51\xac\x51\xb3\x51\xbb\x51\xc7\x51\xd0\x52\x28\x52\x9e" +"\x53\x0a\x53\x62\x53\xb7\x54\x1d\x54\x41\x54\x64\x54\x6c\x54\x74\x54\x7d\x54\xbb\x54\xc3\x55\x03\x55\x3b\x55\xaa\x56\x41\x56\x7e" +"\x56\xd3\x56\xd6\x56\xeb\x56\xf8\x57\x12\x57\x58\x57\xde\x58\x30\x58\x38\x58\x3f\x58\x62\x58\x72\x58\xd4\x58\xe3\x58\xee\x59\x24" +"\x59\x48\x59\x4e\x59\x99\x59\xa1\x5a\x0c\x5a\x5c\x5a\x8a\x5a\xb8\x5b\x19\x5b\x82\x5b\xa9\x5b\xb0\x5b\xbb\x5b\xe4\x5b\xfb\x5c\x00" +"\x5c\x16\x5c\x70\x5c\x9c\x5c\xfa\x5d\x01\x5d\x42\x5d\x6e\x5d\x75\x5d\x88\x5d\xeb\x5e\x50\x5e\x99\x5f\x13\x5f\x19\x5f\x5b\x5f\xe0" +"\x5f\xea\x60\x17\x60\x20\x60\x2a\x60\xb2\x61\x23\x61\x67\x61\x6f\x61\x76\x61\x7e\x62\x14\x62\xc0\x62\xc3\x63\x0d\x63\x1a\x63\x3a" +"\x63\x9d\x64\x52\x64\xb9\x65\x48\x65\xc5\x66\x1a\x66\x6d\x66\xc8\x67\x3e\x67\x46\x67\x7c\x67\x83\x67\x8a\x67\xaa\x67\xef\x67\xf6" +"\x68\x9c\x68\xa4\x68\xac\x68\xc0\x69\x10\x69\xbc\x6a\x02\x6a\x80\x6a\xfa\x6b\x56\x6b\x9c\x6b\xd9\x6c\x42\x6c\x84\x6c\xa5\x6c\xf8" +"\x6d\x23\x6d\x2b\x6d\x58\x6d\x59\x6d\x5b\x6d\x62\x6d\x6a\x6d\x70\x6d\x72\x6d\x8f\x6e\x09\x6e\x62\x6e\xd4\x6e\xdb\x6e\xf0\x6f\x18" +"\x6f\x39\x6f\x66\x6f\x9e\x70\x25\x70\xce\x71\x63\x71\xe3\x72\x6d\x72\xdc\x73\x64\x74\x0e\x74\x89\x74\xe3\x75\x4c\x75\x77\x75\xb2" +"\x76\x06\x76\x09\x76\x5b\x76\xab\x76\xf3\x77\x5e\x77\xbc\x77\xf6\x78\x34\x78\xb3\x79\x2e\x79\x9c\x79\xbc\x79\xbf\x79\xf5\x7a\x5d" +"\x7a\xab\x7a\xb3\x7a\xbb\x7b\x07\x7b\x09\x7b\x10\x7b\x18\x7b\x24\x7b\xdd\x7c\x5a\x7c\x5c\x7c\x5e\x7c\x75\x7c\x93\x7c\xee\x7d\x04" +"\x7d\x65\x7d\x92\x7d\xea\x7d\xed\x7d\xf5\x7e\x28\x7e\x41\x7e\x49\x7e\x4e\x7e\x56\x7e\x91\x7e\x98\x7e\x9f\x7f\x22\x7f\x2a\x7f\x32" +"\x7f\x39\x7f\x42\x7f\xa5\x0e\x0e\xf8\x13\xf8\x8c\x15\x8c\x98\x8c\x98\x93\x1a\xb7\x66\xae\x5c\x5b\x66\x68\x5f\x83\x8c\x7e\x8c\x7e" +"\x1e\xa8\xfb\xaf\x05\x6c\x8e\x9f\x78\xaa\x1b\xa9\x9f\x9e\xaa\x8e\x1f\x5e\xfb\x7f\x15\xb3\xaa\xa8\xb1\xb0\x6c\xa9\x63\x1f\x7a\x62" +"\x1d\xf7\x17\xf8\xdb\x15\xf7\x6a\x1d\xa0\x96\x96\xa6\x8e\x1f\xab\xf7\x8b\x05\xca\x16\xae\xfb\x8b\x05\x70\x8e\x95\x80\xa1\x1b\xa0" +"\x96\xf7\x11\x0a\xf8\x57\xf8\x44\x15\x96\xf7\x29\x8d\xa2\x05\xa2\x8d\x6f\xa5\x6f\x1b\x7b\x7b\x84\x7e\x80\x1f\x82\x81\x89\x84\x8a" +"\x70\x80\xfb\x31\x18\x4b\x06\x96\xf7\x29\x8c\x9e\x05\xa9\x74\xa2\x6c\x7b\x7b\x84\x7e\x80\x1e\x82\x80\x89\x84\x8a\x71\x80\xfb\x31" +"\x18\x74\x06\x70\x83\x8a\x85\x81\x3b\x0a\x7a\x93\x7c\x9a\x81\x1e\x83\x95\x95\x89\xa7\x1b\x9a\x06\x84\x2e\x05\x6e\x06\x71\x83\x8a" +"\x85\x81\x32\x0a\x83\x96\x96\x89\xa5\x1b\xa1\x06\x80\xfb\x29\x05\x8a\x84\x8b\x84\x87\x1a\x6c\xa2\x74\xaa\xae\x9e\xa2\xb5\x1e\x97" +"\xf7\x30\x05\xcb\x06\x80\xfb\x29\x89\x76\x05\x72\x89\xa6\x71\xa7\x1b\x9b\x9b\x92\x98\x95\x1f\x91\x91\x92\xa1\x8c\x9b\x96\xf7\x31" +"\x18\xa2\x06\xa2\x97\x8d\x90\xf7\x43\x1d\x80\x80\x8d\x70\x1b\x7d\x06\x92\xe8\x05\xa7\x06\xa4\x94\x8d\x90\x95\x1f\x9b\x95\x95\x9c" +"\x9c\x1a\x9c\x83\x9b\x7d\x94\x1e\x71\x1d\xfb\x1c\x24\x15\x84\x2e\x05\x4b\x06\x92\xe8\x05\x0e\xf7\xf7\xf8\xe6\x15\xa4\x8a\x93\x84" +"\x94\x1e\x9b\x82\x79\x94\x79\x1b\x79\x7b\x83\x7e\x81\x1f\x83\x80\x89\x82\x71\x1a\x75\x07\x36\x7c\x4f\x4c\x40\x1a\x3c\xc1\x56\xf1" +"\x77\x1e\xd4\x7d\x05\xc2\x81\xa1\x7a\x6d\x1a\x63\x5d\x6e\x4c\x56\x57\xa2\xa6\x83\x1e\x84\xa5\x8b\x8b\x83\x93\x08\x95\x81\x7c\x90" +"\x7d\x1b\x7a\x7b\x83\x7e\x80\x1f\x83\x80\x89\x82\x71\x1a\x50\x07\x72\x8d\x82\x91\x82\x1e\x7b\x96\x9b\x82\x9f\x1b\x9a\x94\x8f\x98" +"\x9b\x1f\xa8\x7e\x92\x89\xb1\x83\x08\x3f\x07\x73\x8d\x82\x91\x82\x1e\x7c\x94\x9d\x81\x9e\x1b\x9b\x70\x1d\x93\xa6\x1a\xd7\x07\xf2" +"\x9f\xca\xcb\xdf\x1a\xb5\x7b\xb1\x70\xa6\x1e\x6f\xa5\x67\x9a\x4c\x98\x4a\x97\x18\x5b\x95\x74\x9b\xa4\x1a\xac\xb0\xa1\xc5\xb2\xb1" +"\x7c\x7b\x8f\x1e\x6f\x90\x9f\x7b\xa9\x2d\x1d\x92\xa7\x1a\xa9\x07\xb8\x79\xa1\x67\x81\x84\x89\x87\x80\x1e\x8c\x87\x88\x8c\x8a\x1b" +"\x74\x93\x83\x8d\x82\x8d\x7c\x8d\x19\x0e\xf7\x78\xf8\xe8\x15\x3e\x4d\x4f\x40\x41\xca\x4e\xd8\xd7\xca\xc7\xd5\xd7\x4e\xc7\x3c\x1f" +"\x4c\x04\xb4\xad\x6b\x64\x62\x6a\x6b\x61\x63\x69\xac\xb2\xb3\xac\xab\xb4\x1f\xf7\x9b\xfb\x6a\x15\xa1\x92\x93\x93\x9a\x1a\x9c\x7d" +"\x99\x7c\x86\x85\x8a\x88\x82\x1e\xfb\xfe\xfb\x05\x05\x74\x84\x84\x84\x7b\x1a\x7a\x98\x7d\x9b\x90\x93\x8d\x8d\x92\x1e\xf7\x83\xbc" +"\x15\x3e\x4d\x4f\x41\x40\xc9\x4f\xd9\xd7\xca\xc7\xd4\xd7\x4e\xc7\x3c\x1f\x8c\x4c\x15\xb3\xad\x6b\x64\x63\x6a\x6b\x61\x63\x69\xab" +"\xb3\xb2\xac\xab\xb5\x1f\x0e\xf7\xff\xf7\x5d\x15\x2c\xf7\x18\x05\x7a\xa3\x81\x9f\x95\x1a\xa2\xa1\x9f\xa6\x9f\x96\x85\x6f\xaa\x1e" +"\xb7\xa2\x05\xac\x9c\x95\x97\xa2\x1a\xa7\x72\xa3\x6f\x86\x83\x89\x87\x7d\x1e\x96\x71\x77\x90\x74\x1b\x37\x42\x47\x3b\x6d\x92\x78" +"\xa4\x62\x1f\x4f\x69\x69\x53\x4b\x1a\x2d\xd4\x4f\xf7\x06\xbe\xab\x92\x9e\xa7\x1e\x95\x7e\x05\xca\x06\xb9\xa3\x65\x1d\x8a\x06\x95" +"\x9d\x91\x9a\x95\xaf\x08\xa5\x8f\x9d\x9f\xa6\x1a\x9c\x84\x9a\x7c\x95\x1e\x93\x20\x0a\x53\x06\x3c\xfb\x43\x15\x83\x7a\x82\x89\x75" +"\x1b\x55\x72\x9b\xae\xa9\x9b\xa1\xab\x9b\x1f\x0e\xf7\x6c\xf8\xee\xf7\x5d\x1d\x7a\xf7\x61\x1d\xf7\x99\x05\x0e\xf8\x49\xf8\xf7\x15" +"\x73\x7f\x82\x68\x72\x1f\x42\x22\x60\xfb\x0f\x24\x1a\x21\xaf\xfb\x02\xd3\xfb\x01\x1e\x5d\xa9\x98\x80\xa6\x1b\xa9\xa3\xa1\xa8\x98" +"\x89\x90\x81\x9b\x1f\x45\xf5\x6c\xe7\xeb\x1a\xeb\xaa\xe4\xd1\xf7\x00\x1e\x95\x9b\x8d\x90\x98\x1a\xa8\x74\xa1\x6b\x1e\x0e\xf7\x3c" +"\xf8\xf7\x15\x6c\x73\x75\x6e\x7e\x8d\x86\x95\x7b\x1f\xd1\x21\xaa\x2f\x2b\x1a\x2b\x6c\x30\x45\x21\x1e\x81\x7b\x89\x86\x7e\x1a\x6e" +"\xa3\x75\xaa\xa3\x97\x94\xae\xa4\x1e\xd4\xf4\xb6\xf7\x0f\xf2\x1a\xf5\x67\xf7\x02\x43\xf7\x01\x1e\xb9\x6e\x7d\x96\x71\x1b\x0e\xf7" +"\x68\xf7\xf9\x15\x5b\x4c\x05\x7b\x75\x87\x83\x7e\x1a\x6e\xa3\x74\xa9\xa1\x96\x92\xa6\x9f\x1e\xbc\xcb\xbc\x4b\x05\x70\x9f\x96\x84" +"\xa1\x1b\xa9\xa3\xa2\xa8\x98\x87\x93\x7b\xa1\x1f\x5b\xca\xdb\xa4\x05\xb1\x96\x9a\x9a\xa6\x1a\xa7\x73\xa3\x6f\x81\x88\x8a\x85\x76" +"\x1e\x3a\x72\x05\xda\x07\xa3\x89\x94\x85\x95\x1e\x9a\x82\x79\x97\x1d\x80\x72\x1a\x3c\x07\x3a\xa4\x05\x91\x76\x87\x8c\x82\x1b\x6f" +"\x73\x73\x70\x6f\x9a\x7c\xb1\x80\x1f\x0e\xf7\xf6\xf7\x6f\xf7\x23\x1d\x94\x1e\x93\x7f\x83\x8d\x6e\x1b\xfb\x1d\xf7\x2c\x06\xa5\x8a" +"\x92\x84\x95\x1e\x9a\x81\x7a\x97\x1d\x81\x71\x1a\xfb\x2c\xfb\x1e\x07\xd5\x0a\x95\x98\x88\xa4\x1b\xf7\x1e\xfb\x2c\x06\x74\x8d\x81" +"\x91\x82\x1e\x7c\x94\x9e\xe5\x0a\x0e\xf4\x1d\x7e\x1d\xf7\xc9\x7d\x15\x49\x1d\x0e\xf8\x91\xf8\xdc\x15\x95\x9e\x8d\x93\x96\x1a\xa5" +"\x72\xa2\x6f\x71\x7e\x81\x69\x7a\x1e\xfb\xd5\xfd\x1b\x05\x82\x79\x88\x81\x80\x1a\x71\xa5\x74\xa7\xa5\x98\x95\xad\x9c\x1e\x0e\xf8" +"\x9d\xf7\xee\x15\xe3\x6e\xda\x59\xbe\x1e\xae\x67\x5b\x9d\x51\x1b\x51\x5b\x79\x68\x67\x1f\x59\x58\x6e\x3c\x33\x1a\x31\x07\x34\xa8" +"\x3b\xbd\x59\x1e\x68\xaf\xbb\x79\xc5\x1b\xc5\xbb\x9d\xae\xaf\x1f\xbd\xbd\xa8\xdb\xe2\x1a\xfb\xe2\xec\x15\xed\xb7\xca\xd0\xd0\xb7" +"\x4c\x29\x1e\x24\x07\x2a\x5e\x4b\x47\x47\x5e\xcb\xec\x1e\x0e\xf7\xf6\xf8\xfd\x15\xfb\x6d\x56\x05\x61\x81\x7d\x7d\x6e\x1a\x6d\xa1" +"\x73\xa7\x95\x8e\x8c\x90\x9f\x1e\xdd\xa0\x05\xfc\x11\x2a\x07\x5f\x1d\xf7\xc2\x06\xb9\xa3\xaa\x1d\x70\x1b\x2a\x06\x0e\xf7\x6e\xf3" +"\x15\xf7\x98\xf7\x65\xa8\xac\xde\x1a\xf6\x2e\xdc\xfb\x10\x4e\x53\x77\x68\x62\x1e\x68\x6d\x70\x5c\x6b\x1a\x70\xa4\x74\xa8\xa2\x9f" +"\x97\x9d\x91\x1e\x96\xaa\x8c\x8d\x94\x95\x08\xa3\xa1\xac\x99\xb2\x1b\xca\xbb\x68\x5c\x6c\x7b\x78\x27\x34\x1f\x62\x67\x45\x52\xfb" +"\x08\x31\x85\x86\x18\x20\xf8\x62\xe3\x07\xa3\x89\x94\x85\x95\x1e\x9a\x81\x7a\x94\x78\x1b\x6b\x7a\x7b\x68\x87\x1f\x0e\xf7\xa8\xf8" +"\x09\x15\x6b\x73\x75\x6e\x6e\x9f\x7a\xae\x89\x1f\xb8\x89\x96\x89\x9f\x83\x08\xb9\x79\xa7\x6b\x69\x1a\x76\x80\x74\x7b\x7e\x1e\x74" +"\x71\x67\x82\x47\x1b\x4b\x6e\x90\x9b\x73\x1f\x95\x7a\x86\x8d\x7e\x1b\x6c\x74\x74\x6e\x58\xde\x6a\xf7\x12\xe3\xc0\x98\xac\xb8\x1f" +"\xba\xad\xa8\xc2\xc4\x1a\xc7\x66\xbd\x44\xad\x1e\xc7\xae\xa5\xb1\xbe\x1a\xb5\x78\xb5\x6b\xaa\x1e\xb0\x64\x57\x9e\x47\x1b\xfb\x03" +"\x28\x57\x51\x6e\xa3\x74\xa8\x9a\x99\x91\x95\x94\x1f\xac\xab\xa5\x95\xc1\x1b\xce\xb5\x71\x61\x64\x63\x69\x5c\x1f\x0e\xf8\x57\xf8" +"\xed\x15\xfb\x1d\x06\xfb\x87\xfc\x15\x05\x37\xf7\xa4\x6e\x69\x07\xde\x0a\xf7\x18\x06\xba\xa3\x9d\xad\x9b\x83\x9b\x7d\x94\x1f\x81" +"\x92\x84\x8d\x75\x8c\x08\xa8\x07\xb2\x8c\xa1\x9e\xab\x4c\x0a\x81\x91\x4d\x0a\xfb\x00\x16\xfb\x1e\x06\xf7\x1e\xf7\x6a\x05\x0e\xf7" +"\x73\xf8\x86\x15\xf7\x5a\x06\xa1\x99\x8d\x90\x93\x1f\x9b\x95\xf7\x69\x1d\x92\x80\x81\x8d\x70\x1b\xfb\xc6\xfb\xa7\x06\x6a\xa2\x73" +"\xaa\x96\x8f\x8c\x92\x99\x1e\x9f\xb4\xb9\x98\xaa\x1b\xcd\xb6\x5e\x47\x41\x5d\x69\x26\x49\x6f\x92\xa2\x6d\x1f\x98\x7c\x83\x8e\x7c" +"\x1b\x6e\x72\x74\x6f\x53\xe7\x61\xf7\x10\xeb\xc5\x9e\xba\xb8\x1f\xaf\xb1\x9f\xbe\xc3\x1a\xf7\x11\x30\xe6\xfb\x10\x6e\x6c\x86\x81" +"\x68\x1e\x0e\xf7\x6a\xf7\xda\x15\xf7\x00\xa6\xe4\xd8\xee\x1b\x94\x8f\x8a\x87\x96\x1f\x85\x9c\x95\x89\x94\x1b\xa9\xa4\xa3\xa8\xb3" +"\x5b\xa5\x42\x2e\x37\x62\x3c\x48\x1f\x57\x4e\x71\x41\x36\x1a\x45\x9d\x3f\xa6\x5d\x1e\x49\xb1\xc9\x6a\xe0\x1b\xcf\xbd\x9d\xb2\xb0" +"\x1f\xad\xb0\x9e\xbc\xc3\x1a\xf7\x02\x34\xe4\xfb\x00\x5b\x65\x7a\x62\x5f\x1e\x93\xfb\x10\x15\xb9\xa5\xbc\xac\xb5\x1b\xbe\xb4\x61" +"\x56\x4f\x66\x66\x4f\x4c\x68\xae\xd9\x7d\x1f\x0e\xf8\x21\xf8\x86\x15\xfb\x27\xfc\x34\x05\x85\x7c\x89\x81\x82\x1a\x71\xa4\x74\xa8" +"\xa8\x9a\x98\xb0\x98\x1e\xf7\x33\xf8\x59\x05\xee\xfc\x4d\x34\x07\x73\x8d\x81\x91\x82\x1e\x7b\x95\x9c\x82\x9e\x1b\xab\x9c\x9c\xae" +"\x8f\x1f\x0e\xf8\x3f\xf7\xc8\x15\xc3\xaf\xa8\xb8\xbc\x1a\xef\x2e\xda\xfb\x0b\xfb\x0b\x2e\x3c\x27\x59\xa8\x60\xc3\x66\x1e\x4d\x66" +"\x6b\x58\x50\x1a\x23\xe4\x44\xf7\x17\xf7\x18\xe5\xd2\xf3\xc6\x6b\xbe\x4d\xb0\x1e\xfb\x13\xf7\x62\x15\xc8\xb6\x6b\x5d\x5a\x61\x6b" +"\x4d\x4e\x60\xac\xba\xba\xb5\xab\xc9\x1f\xfb\x9b\x04\xc9\xbe\x67\x5e\x5b\x5d\x6a\x48\x49\x5c\xac\xba\xb9\xbe\xaf\xc9\x1f\x0e\xf8" +"\x44\xf7\xa9\x15\xfb\x01\x70\x33\x3f\x26\x1b\x82\x88\x8c\x8e\x81\x1f\x91\x7a\x81\x8d\x81\x1b\x6d\x72\x74\x6d\x64\xbb\x71\xd3\xea" +"\xdd\xb3\xdb\xcf\x1f\xbf\xc8\xa5\xd5\xe1\x1a\xd0\x79\xd7\x70\xb9\x1e\xcd\x64\x4e\xac\x36\x1b\x47\x59\x78\x64\x66\x1f\x69\x67\x78" +"\x59\x54\x1a\xfb\x03\xe2\x32\xf7\x00\xbb\xb1\x9c\xb5\xb7\x1e\x83\xf7\x0f\x15\x5e\x71\x5a\x6a\x62\x1b\x57\x62\xb5\xc0\xc8\xaf\xaf" +"\xc7\xcb\xad\x68\x3c\x9a\x1f\x0e\xf7\xc9\x7d\x15\x49\x1d\x9d\xf7\xc4\x15\xb2\xaa\xa9\xb0\xb1\x6c\xa8\x64\x1f\x79\x06\x64\x6c\x6d" +"\x66\x66\xab\x6d\xb1\x1f\x0e\xf7\x01\x1d\x3a\xf7\xb4\x15\x5b\x6b\x71\x62\x62\xab\x71\xbb\xb9\xab\xa6\xb2\xb4\x6c\xa6\x5c\x1f\x0e" +"\xf7\xaa\xf7\xa3\x15\xf7\x8c\xf7\x0a\x05\xa5\x98\x98\x9a\x9c\x1a\x93\x89\x93\x87\x93\x1e\x8a\x8d\x05\x9c\x83\x74\x96\x72\x1b\x7c" +"\x7d\x88\x85\x7e\x1f\xfc\x51\xfb\x63\xf8\x51\xfb\x68\x05\x85\x98\x99\x88\x9a\x1b\xa4\xa2\x96\x9c\x93\x1f\x8c\x8d\x05\x8f\x93\x8d" +"\x93\x92\x1a\x9e\x80\x97\x6e\x9a\x1e\x0e\xf7\x00\xf8\x2f\x15\x4c\x1d\x96\x97\x88\xa4\x1b\xf8\x14\x06\xa1\x98\x6c\x1d\x6f\x1b\xfc" +"\x14\xfb\x44\x94\x0a\xf7\xcd\xf7\xa3\x15\xfb\x8b\xfb\x0d\x05\x6e\x7c\x80\x7f\x78\x1a\x84\x8d\x83\x8f\x83\x1e\x8c\x89\x05\x7a\x93" +"\xa2\x80\xa4\x1b\x9a\x99\x8e\x91\x98\x1f\xf8\x51\xf7\x68\xfc\x51\xf7\x63\x05\x91\x7e\x7d\x8e\x7c\x1b\x72\x74\x80\x7a\x83\x1f\x8a" +"\x89\x05\x87\x83\x89\x83\x83\x1a\x7a\x98\x7c\xa5\x7e\x1e\x0e\xef\xf8\x9d\x15\x3d\x07\x71\x0a\x7d\x94\x9d\x81\x9e\x2d\x1d\x92\xa7" +"\x1a\x96\x07\x9a\xad\xa9\x92\xb0\x1b\xc9\xb5\x6c\x5d\x65\x62\x6f\xfb\x0f\x5f\x1f\x53\x07\x75\x8d\x80\x91\x82\x1e\x7c\x95\x9c\x81" +"\x9e\x1b\xa9\x9e\x9d\xad\x8f\x1f\xf7\x0c\xbd\xb8\xbb\xd9\x1a\xf7\x02\x35\xd6\xfb\x13\x4b\x5e\x7f\x61\x30\x1e\xf7\x5f\xfc\xaf\x15" +"\xb2\xaa\xa8\xb1\xb0\x6c\xa9\x64\x1f\x7a\x06\x64\x6b\x6d\x66\x66\xab\x6d\xb2\x1f\x0e\xf8\x27\xf8\x17\x15\xfb\x03\x82\x3d\x47\x30" +"\x1a\x3a\xd4\x46\xe0\x94\x92\x8c\x8c\x9a\x1e\x89\xbe\x07\xb2\x9f\x99\xa8\x9c\x83\x97\x7c\x92\x1f\xf7\x9d\x07\xf7\x01\x3c\xd9\xfb" +"\x01\xfb\x1a\x2b\xfb\x0d\xfb\x3b\x1e\xfb\x35\x07\x45\x9c\x45\xaa\x57\x1e\x43\xb6\xc2\x6b\xde\x1b\xee\xde\xb2\xba\xa3\x78\x9e\x71" +"\x80\x83\x87\x7e\x7d\x1f\x79\x79\x65\x80\x5f\x1b\x5f\x6f\x98\xac\x73\x1f\x6a\xb7\x7a\xc6\xd2\x1a\xf7\x29\x07\xf7\x0c\xc8\xe5\xde" +"\xc6\xb4\x61\x4d\x1e\xfb\x96\x04\x8a\x80\x86\x8b\x85\x1b\x5d\x69\xa7\xb0\xb6\xb4\xac\xc8\x91\x1f\x0e\x21\x1d\x0e\xd1\x1d\x82\x81" +"\x79\x8e\x0a\x53\x0a\x0e\xc1\x1d\x0e\x30\x1d\x0e\xf7\x5a\xf7\x7c\x15\xd8\x88\x06\x74\x8d\x80\x90\x82\x1e\x7c\x95\x9d\x81\xef\x1d" +"\x80\x89\x81\x71\x1a\x89\x3e\xf7\x13\xf7\x8c\x5e\x07\x8b\x1d\x94\xa5\x1a\xf7\x28\xda\x1d\xf7\x6b\x29\x0a\x2b\x06\x0e\x41\x1d\x0e" +"\x50\x0a\x21\x0a\x0e\xf1\x1d\x70\x84\xb6\x0a\x89\x84\x76\x78\x1e\x77\x75\x68\x7e\x6a\x1b\x68\x6b\x93\x9f\x5b\x1f\xe4\x07\xa3\x89" +"\x94\x85\x4d\x1d\x80\x72\x1a\xfb\x32\x07\x93\x88\x05\x61\xe5\xcc\x79\xc3\x1b\xc7\xc3\x9e\xaf\xb6\x1f\xbc\xb2\x9c\xb0\xcb\x1a\x0e" +"\xb3\x1d\x0e\x43\x1d\x0e\xaf\x0a\x7b\x93\x7b\x99\x81\x1e\x84\x95\x99\x88\xa3\x1b\xf7\x16\x2b\x1d\x9c\x83\x9a\x7d\x95\x1f\x81\x92" +"\x4d\x0a\xf7\xf9\x07\xad\x90\x9d\x9c\xa9\x33\x1d\x80\x81\x8d\x70\x1b\xfb\x04\x06\xfb\x19\xfb\xaa\xfb\x1c\xf7\xaa\x05\xfb\x03\xd7" +"\x0a\x77\x1a\x6d\x9d\x7a\xad\x86\x1e\xfb\xf9\x07\x65\x8a\x74\x78\x6b\x70\x0a\xf7\x15\x06\xb9\x67\x0a\x82\x8d\x6f\x1b\x6c\x06\x0e" +"\x33\x0a\x0e\x24\x1d\x0e\xf7\x5a\xf7\x53\x15\xe9\x06\xe9\xbe\x9c\xba\xb8\x1f\xab\xad\x9e\xb9\xb8\x1a\xf7\x00\x2f\xd7\xfb\x15\x1e" +"\xfb\x7d\x06\x71\x20\x1d\x7a\x94\x7b\x98\x82\x1e\x83\x96\x96\x89\xa5\x96\x0a\xf7\xfa\x04\xf7\x06\x06\xce\xb3\x6c\x57\x56\x63\x6c" +"\x48\x1f\xfb\x06\x06\x0e\xf7\xa6\x85\x15\xe9\x8c\xb6\x98\xc4\xb7\x08\xd7\xc7\xb2\xda\xe9\x1a\xf7\x35\xfb\x13\xf7\x18\xfb\x30\xfb" +"\x30\xfb\x13\xfb\x18\xfb\x37\x32\xae\x39\xc8\x58\x1e\x9a\x7e\xa2\x7d\xb4\x73\x51\x55\x18\x7a\x7c\x87\x83\x7b\x1a\x6e\xa2\x73\xa7" +"\x92\x96\x8d\x8e\x97\x1e\x96\xba\xc3\x94\xa2\x1b\xa0\x97\x88\x7e\xaf\x1f\x83\x9f\x9a\x88\x9f\x1b\xac\xa6\x93\xa1\xb0\x1f\xa8\x9b" +"\x96\x99\xa1\x1a\xa9\x74\xa1\x6c\x7d\x86\x89\x7c\x73\x1e\x80\x79\x83\x88\x7c\x1b\x80\x84\x8c\x91\x75\x1f\x94\x6a\x73\x8e\x6e\x1b" +"\x7d\x80\x8a\x88\x77\x1f\xa7\xf8\x83\x15\xea\xdb\x34\x24\xfb\x01\x3d\x34\x2a\x2b\x3c\xe3\xf4\xf5\xda\xe2\xeb\x1f\x0e\x3c\x0a\x0e" +"\x78\x1d\x0e\x54\x0a\x22\x0a\x0e\x8b\x0a\xf7\x61\xf8\x61\x05\x9f\x92\x8b\x8e\x94\x1f\x9f\x92\x99\x9f\xa0\x31\x0a\x81\x7f\x8d\x71" +"\x1b\xfb\x18\xf7\x22\x1d\x96\x95\x8a\xa6\x1b\x9d\x06\x0e\x5a\x1d\x0e\x79\x1d\x2b\x0a\x0e\x44\x1d\x0e\xf7\xf6\xf8\x8b\x15\xc1\x06" +"\xba\xa2\x9c\xae\x9b\x83\x9b\x7d\x94\x1f\x93\x20\x0a\xfb\x36\xfd\x7f\xf7\x37\x06\xa2\x97\x38\x1d\x54\x06\x0e\xf7\x50\xf9\x07\x15" +"\xad\x7a\x7e\x95\x71\x1b\x6f\x72\x74\x71\x80\x8d\x83\x95\x78\x1f\xf7\xd4\xfd\x1c\x05\x69\x9c\x98\x81\xa5\x1b\xa7\xa5\xa3\xa4\x96" +"\x88\x95\x82\x9d\x1f\x0e\xf7\x8a\x65\x15\x55\x06\x74\x7e\x89\x86\x83\x6d\x0a\x7c\x99\x81\x1e\x83\x96\x94\x89\xa7\x1b\xf7\x36\xf9" +"\x7f\xfb\x37\x06\x73\x80\xf7\x17\x1d\xc2\x06\x0e\xf7\xbf\xf8\x62\x15\xf7\x05\xfb\x11\x05\x72\xa2\x95\x85\xa1\x1b\xab\xa5\xa4\xa9" +"\x9c\x86\x94\x78\xa1\x1f\xfb\x5e\xf7\x76\xfb\x5c\xfb\x76\x05\x78\x75\x86\x81\x7c\x1a\x6c\xa5\x72\xab\xa1\x95\x91\xa5\xa2\x1e\x0e" +"\xa7\x6a\x15\x71\x82\xf7\x18\x1d\xf8\xb4\x06\xa2\x99\x8d\x91\x94\x37\x0a\x0e\xf8\x16\xbd\x0a\x0e\x23\x0a\x0e\xf7\x46\xf8\xef\x15" +"\xfb\x0c\x06\xd6\x0a\x95\x96\x89\xa6\x1b\x97\xfc\x21\x7f\x06\x72\x81\x8a\x85\x82\x1f\x7b\x82\x81\x7a\x79\x4b\x0a\x84\x95\x98\x88" +"\xa4\x1b\xf7\x0c\xa9\x06\x6c\xbc\xb3\x7f\xc5\x1b\xf7\x27\xf2\xe8\xf7\x19\xca\x73\xc3\x5c\xb6\x1f\xb6\x5c\x52\x9f\x3f\x1b\x52\x59" +"\x7c\x6e\x64\x1f\xf7\x23\x50\x15\xbc\xaa\x80\x71\xa7\x1f\xa3\x74\x99\x6c\x6c\x1a\x6c\x7d\x6b\x73\x74\x1e\x72\x70\x6a\x7f\x5d\x1b" +"\x5c\x6a\x97\xa4\x70\x1f\x73\xa2\x7d\xaa\xa9\x1a\xd4\xc6\xbe\xdf\x1e\x0e\x3d\x0a\x0e\xf8\xab\xf8\xef\x15\xfb\x0c\x06\x71\x83\x50" +"\x1d\x99\x81\x1e\x84\x96\x95\x88\xa6\x1b\x97\x21\x06\xa8\x64\x59\x9a\x52\x1b\x3e\x52\x77\x60\x5c\x1f\x5c\x60\x73\x53\x4c\x1a\x4b" +"\xa3\x53\xba\x60\x1e\x60\xba\xc4\x77\xd7\x1b\xc5\xb3\x97\xaa\xbc\x1f\x6d\xf7\x0c\x45\x0a\x7f\x06\xfb\x91\xf7\x7c\x9b\x0a\x35\x1d" +"\x0e\xf7\xc3\xf7\xd6\x15\xf7\x27\xf7\x32\x1d\xfb\x27\xaa\x06\xa8\xa5\x99\xc2\xab\xb5\x87\x85\xb0\x1e\x89\x98\x95\x8a\x92\x1b\xa7" +"\xa1\xa2\xa9\xa3\x7b\x9c\x6e\x93\x1f\x93\x6a\x4d\x92\x60\x1b\xfb\x0d\x3f\x53\x30\x1f\x6c\x61\x07\x70\x83\x8a\x4f\x0a\x7a\x79\x1a" +"\x68\xa3\x7a\xb9\x1e\xb6\xfb\x6f\x55\x06\x89\x1d\xf7\xbd\x31\x1d\xfb\x1b\x06\x0e\x7a\x1d\x0e\xf7\x5b\xad\x0a\x89\x06\x41\x0a\xbf" +"\xc3\x9f\x95\x9c\x1d\x81\x6b\x1a\xfb\x33\x89\x07\x71\x82\x50\x1d\x9a\x81\x3f\x1d\xf7\x04\xf7\x33\x1d\x89\xf7\x40\x06\xec\x42\xcc" +"\xfb\x00\x59\x5c\x78\x69\x67\x1e\x0e\x25\x0a\x7d\x66\x1d\x0e\xf8\x14\xf7\xd6\x15\xfb\xe5\x07\x5c\x67\x6c\x55\x1e\xfb\x03\x5e\x0a" +"\x96\x97\xb8\x0a\xfb\xc6\x07\x4c\x1d\x96\x97\x88\xa4\x1b\xf7\x8c\xf7\x59\x1d\xb7\x1d\x0e\x34\x0a\x0e\xf7\x25\xf8\x3d\x15\x2a\x06" +"\x2e\x1d\x7b\x93\x7b\x99\x81\x1e\x94\x85\x92\x89\xa1\x8a\x08\xfb\x6f\x07\x66\x74\x77\x6c\x69\xa3\x79\xba\x1f\xe3\x63\x1d\x81\x91" +"\x4d\x0a\xf7\x53\x07\xaa\xa8\x9c\x94\xa6\x1b\xa1\x93\x82\x73\xf7\x1b\x1d\xf7\x53\x07\xab\xab\x9a\x93\xa5\x1b\xa2\x92\x83\x72\xf7" +"\x1b\x1d\xf7\x62\x07\xd5\x52\xc1\x3c\x63\x6a\x7d\x6c\x6d\x1e\xa8\x6f\x68\x9b\x64\x1b\x6d\x78\x84\x73\x6b\x1f\x0e\xf7\x5b\x46\x1d" +"\x0e\x25\x1d\x0e\xb8\x1d\xf8\x3f\x2e\x15\x55\x06\x73\x80\x89\x86\x82\x1f\x7b\x81\x81\x7b\x79\x4b\x0a\x83\x95\x97\x89\xa5\x1b\xf7" +"\x42\x06\xa2\x98\xe0\x0a\x92\x80\x81\x8d\x70\x1b\x7f\xf8\x33\x97\x06\xa4\x95\x8c\x91\x94\x1f\x9b\x94\x95\x9d\x9c\x1a\x9c\x83\x9b" +"\x7d\x94\x1e\x93\x20\x0a\xfb\x0c\x64\x06\xb0\x5c\x61\x99\x4e\x1b\xfb\x23\x22\x2e\xfb\x13\xfb\x0c\xf3\x33\xf7\x22\xc5\xb9\x9a\xae" +"\xbb\x1f\xfb\x25\xf7\xa7\x15\xb4\xab\x82\x79\xa5\x1f\xa6\x78\x9e\x69\x6d\x1a\x49\x50\x5d\x34\x63\x6a\x94\x9d\x72\x1e\x6f\x9f\x79" +"\xac\xaa\x1a\xaa\x9d\xac\xa7\x9f\x1e\x9d\xa4\xab\x94\xb5\x1b\x0e\x58\x1d\x0e\x42\x1d\x0e\xbb\x1d\x0e\x2c\x1d\x0e\xf7\xc2\xf7\x15" +"\x15\x24\xf7\x55\x05\xa3\x95\x8c\x91\xf7\x43\x1d\x2f\x1d\xfb\x18\xbf\x0a\x96\x06\xf7\x3c\xfb\xd6\x05\xf7\x00\x06\xf7\x3b\xf7\xd6" +"\x05\x99\x06\xa4\x94\x8c\x91\x95\x99\x1d\xfb\x1b\xbf\x0a\x8f\x06\x0e\x3e\x0a\x0e\x7a\x0a\xbb\x1e\xf7\x04\x63\x1d\x82\x91\x84\x8d" +"\x78\x8c\x08\x0e\x59\x1d\x0e\x40\x0a\x0e\xf7\xf4\xf8\x67\x15\xa3\x8c\x92\x92\xa3\x1b\xaa\x8d\xa1\xa0\xa8\x1a\xaa\x73\xa0\x67\x43" +"\x4e\x50\x46\x1e\xfb\x31\x07\x73\x86\x85\x73\x89\x1e\x69\x87\x79\x79\x6d\x1a\x6c\x9d\x79\xad\x87\x1e\xa3\x89\x90\x85\x73\x1a\xfb" +"\x39\x07\x45\xc8\x50\xd4\xae\xa3\xa0\xaa\xa8\x75\xa0\x6c\x8d\x1e\x72\x8c\x85\x91\x8a\xa4\x08\xf7\x29\x07\xbe\x86\x9b\x74\xa6\x1e" +"\xa1\xa3\x90\x9d\x8c\xb5\x08\x0e\xf7\xfa\xf9\xcd\x15\xfb\x08\xfe\xc7\xf7\x08\x06\x0e\xf7\x8c\x81\x15\x72\x8a\x84\x84\x73\x1b\x6c" +"\x8a\x75\x75\x6e\x1a\x6c\xa3\x76\xae\xd4\xc8\xc6\xd1\x1e\xf7\x30\x07\xa4\x90\x90\xa3\x8e\x1e\xad\x8e\x9d\x9d\xaa\x1a\xa9\x79\x9d" +"\x69\x8f\x1e\x73\x8d\x86\x91\xa3\x1a\xf7\x3a\x07\xd0\x4e\xc6\x42\x68\x73\x76\x6c\x6e\xa1\x76\xaa\x89\x1e\xa4\x91\x84\x73\x8c\x1f" +"\xfb\x2a\x07\x58\x90\x7c\xa2\x70\x1e\x76\x72\x85\x79\x8a\x61\x08\x0e\xf8\x7c\xf8\x0b\x15\x75\x7e\x83\x6f\x75\x1f\x6e\x75\x7f\x80" +"\xf7\x1e\x1d\x6a\x80\x78\xf7\x10\x1d\x56\xc8\xb2\x77\xb5\x1b\xb5\xab\x9d\xb6\xb1\x1f\xae\xb3\x93\x98\xa0\x1a\xaa\x71\xa4\x6b\x1e" +"\x0e\xf7\x6e\x23\x15\x8a\x7e\x8a\x7e\x83\x1a\x5e\xb0\x69\xba\xbb\xb0\xae\xb7\x93\x8a\x98\x8a\x98\x1e\x6e\xf7\xaf\x05\xaa\x88\x77" +"\x9e\x6c\x1b\x6d\x77\x78\x6c\x88\x1f\xb8\xf7\x80\x15\x64\x6c\x6d\x66\x65\xaa\x6e\xf7\x47\x1d\xf7\xf7\xea\x15\xe4\x9a\xc6\xb1\xb4" +"\x1a\xa7\x72\xa4\x6e\x7d\x82\x88\x82\x7d\x1e\x74\x6a\x6b\x80\x66\x1b\x45\x56\xb8\xc6\xca\xc3\xb8\xd8\xb7\xa0\x80\x70\x92\x1f\x92" +"\x6e\x8b\x8a\x94\x83\x08\x83\x93\x9b\x85\x98\x1b\x9c\x9c\x93\x98\x95\x1f\x93\x96\x8d\x94\xa5\x1a\xb3\x07\xa4\x66\x0a\x84\x85\x8a" +"\x88\x84\x1f\x79\x96\x73\x92\x6f\x90\x08\xc7\x07\xa5\x66\x0a\x7a\x7b\x84\x7d\x80\x1f\x83\x80\x89\x81\x71\x1a\x45\x07\x29\x74\x45" +"\x38\x2e\x1a\x28\xcd\x3b\xf1\x73\x1e\x41\x07\x74\x8d\x80\x91\x83\x1e\x7b\x95\x9d\x82\xac\x1d\x94\xa5\x1a\x0e\xf7\xce\xf7\x7c\x15" +"\xa3\x97\x32\x1d\x9b\x9d\x31\x0a\x80\x81\x8d\x6f\x1b\x4a\x06\x89\x93\x05\x7a\xc6\x8b\x8b\x9f\xc4\x0a\x3a\x24\x41\x47\x2d\x6f\x8f" +"\x76\x97\x6a\x1f\x64\x06\x71\xdc\x0a\x7b\x78\x1a\x7b\x93\x7c\x99\x81\x1e\x83\x96\x96\x89\xa5\x1b\xcc\x06\x8c\x85\x8b\x84\x89\x1a" +"\x6a\x85\x6e\x7f\x74\x1e\x82\x7a\x80\x84\x74\x87\x08\x66\x83\x7b\x7c\xef\x0a\xae\x75\xa1\x6a\x6e\x79\x7c\x6e\x86\x1f\xfb\x56\x06" +"\x9b\xb2\x90\xa5\xb4\x1a\x8e\x8b\x94\x8a\x95\x1e\x0e\x9a\x0a\xf7\xc1\xf7\xeb\x15\x34\xf7\x0a\x05\xa1\x92\x99\x9e\xa2\x33\x1d\x80" +"\x83\x8d\x6d\x1b\x2f\x06\x71\x83\x8a\x85\x81\x32\x0a\x96\x84\x94\x89\xa5\x8a\xf7\x18\xfb\x4a\x18\x4b\x06\x74\x7f\x81\x77\x77\x98" +"\x80\xa1\x1f\xe8\x72\x2e\xf7\x0b\x0a\xe8\x71\x61\x06\x70\x20\x1d\x7a\x93\x7b\x99\x82\x1e\x84\x95\x9a\x88\xa2\x1b\xf7\x56\x06\xb9" +"\xa3\x9c\xae\x9b\x83\x9b\x7d\x94\x1f\x93\x7f\x83\x8d\x6f\x1b\x60\xa5\xe8\x69\x0a\x2e\xa4\xe8\x06\xa1\x98\x96\x9f\x9e\x7f\x96\x74" +"\x1f\x4b\x06\xf7\x19\xf7\x4a\x05\xb7\xa2\x9d\xad\x9b\x83\x9b\x7d\x94\x1f\x93\x20\x0a\x30\x06\x70\xdc\x0a\x7a\x79\x1a\x75\x9a\x78" +"\xa2\x84\x1e\x0e\xf7\xfa\xf8\x1d\x15\xb8\x07\xb5\xaa\xac\xb1\x9d\x9a\x88\x86\x9a\x1e\x86\x97\x91\x8a\x92\x1b\xa8\xa2\xa3\xa9\xb3" +"\x5d\xa2\x3d\x29\x3b\x3d\x2a\x1f\x5b\x56\x07\x70\x83\xd1\x0a\xa6\x1b\xc0\xfb\x73\x06\x5b\x6d\x6a\x5f\x7a\x7f\x8d\x91\x79\x1e\x8f" +"\x7c\x89\x8c\x84\x1b\x6f\x73\x73\x6f\x63\xba\x73\xda\xf0\xd9\xdb\xf3\x1f\xf7\x73\xc0\x07\xa3\x97\x32\x1d\x9b\x9e\x33\x1d\x7f\x83" +"\x8d\x6e\x1b\x0e\xf8\x3f\xf8\x6a\x15\x6c\x07\x65\x9b\x78\xab\x9b\x9a\x92\x97\x94\x1e\x92\x94\x8c\x91\xa2\x1a\xf7\x11\xfb\x79\x07" +"\x55\x66\x7d\x6a\x6b\x1f\x6f\x6f\x7c\x67\x65\x1a\x82\x8c\x86\x8e\x80\x1e\x4c\x7a\x66\x61\x52\x1a\x53\xae\x65\xf0\x53\x1e\xf5\x51" +"\x05\xd0\x66\xad\x6d\x74\x1a\x73\x6d\x75\x6a\x1e\xfb\x21\xac\x06\xb1\x7b\x9d\x6b\x6b\x7b\x78\x66\x1e\xfb\x11\xf7\x7f\x07\xc1\xae" +"\x99\xac\xaa\x1f\xa5\xa6\x98\xaa\xae\x1a\x96\x8a\x92\x88\x9a\x1e\xcb\x99\xb0\xb6\xc6\x1a\xc9\x6b\xac\xfb\x0a\xca\x1e\x2f\xbc\x05" +"\x45\xb1\x68\xa8\xa1\x1a\xa5\xa8\xa0\xb0\x1e\xdd\xfb\x9e\x15\xc6\x6b\xaf\x6b\x76\x1a\x78\x7a\x83\x64\x1e\x7a\x99\x7c\x95\x56\xaa" +"\x24\xc3\x18\x51\xab\x71\xa4\xa1\x1a\x9e\x9d\x95\xaf\x1e\xb3\x6e\x92\x86\xac\x79\x08\x0e\xf7\x12\xf8\x09\x15\x79\x6a\x85\x74\x69" +"\x1a\x69\x91\x74\x9d\x69\x1e\x6d\x6d\x05\x74\x74\x87\x84\x79\x1a\x6e\xa4\x73\xa9\x9e\x92\x8f\xa2\xa3\x1e\xa9\xa7\x05\x7a\xaf\xa3" +"\x85\xaf\x1b\xae\xa3\x91\x9c\xae\x1f\xab\x6e\x05\x75\xa2\x93\x87\x9d\x1b\xaa\xa4\xa3\xa8\x9c\x86\x94\x75\xa1\x1f\x6c\xa8\x05\x9e" +"\xae\x91\xa2\xad\x1a\xac\x85\xa2\x79\xad\x1e\xa8\xa8\x05\xa2\xa0\x8f\x93\x9d\x1a\xa8\x73\xa2\x6c\x78\x84\x87\x75\x73\x1e\x6f\x71" +"\x05\x9e\x66\x73\x91\x67\x1b\x67\x73\x85\x78\x67\x1f\x6c\xa7\x05\xa1\x74\x83\x8f\x79\x1b\x6d\x72\x74\x6e\x7d\x96\x78\x9b\x7b\x1f" +"\xf7\x60\x6c\x15\xbd\xb3\x64\x5c\x5a\x63\x63\x59\x5a\x62\xb3\xbb\xbb\xb3\xb2\xbd\x1f\x0e\xf7\x7b\xf8\xdb\x15\xf7\x6a\x1d\xa1\x95" +"\xf7\x11\x0a\xf7\x7d\xbd\x0a\xf7\x19\xf7\x60\xf7\x01\x0a\x94\x85\x9a\x1b\x9e\x9b\x99\x9c\x91\x8a\x92\x88\x92\x1f\x0e\xf7\x49\xf7" +"\x68\xf7\x40\x1d\x77\x7f\x88\x8a\x7e\x7b\x1e\xfb\x91\xfb\x46\xf7\x91\xfb\x47\x05\x7e\x9b\x8e\x8a\x97\x1b\x9f\x9b\x99\x9e\x95\x86" +"\x92\x7f\x96\x1f\xdc\xf7\x18\x15\xf7\x28\xf7\x17\x05\x97\x96\x90\x92\x95\x1a\x9e\x7b\x99\x77\x7f\x88\x8a\x7e\x7b\x1e\xfb\x91\xfb" +"\x46\xf7\x91\xfb\x47\x05\x7e\x9b\x8e\x8a\x97\x1b\x9f\xf7\x05\x0a\xf7\x49\xf7\x68\xf7\x40\x1d\x76\x80\x88\x8a\x7e\x7b\x1e\xfb\x91" +"\xfb\x46\xf7\x91\xfb\x47\x05\x7e\x9c\x8d\x8a\x96\x1b\xa0\xf7\x05\x0a\x97\x0a\x0e\xf7\x5b\xf7\xd6\x15\x8d\x0a\x69\x07\x70\x5c\x1d" +"\xa6\x1b\xad\xfb\x6f\x65\x06\x70\x20\x1d\x69\xa3\x79\xba\x1e\xf7\x43\x06\x9f\x9b\x8e\x8f\x93\x61\x0a\x82\x8d\x6f\x1b\x6e\x06\xf7" +"\xd6\xf7\xd6\x15\xfb\x10\x06\x71\x83\x8a\x85\x81\x1f\x7b\x82\x81\x79\x79\x1a\x7b\x93\x7c\x99\x80\x1e\x84\x96\x95\x89\xa6\x1b\x9b" +"\xfb\x6f\x69\x06\x70\x20\x1d\x69\xa3\x79\xba\x1e\xf7\x42\x31\x1d\x6b\x06\x7a\xf8\x88\x15\xfb\x12\xfb\x00\xf7\x12\x06\x0e\xf7\x58" +"\xf7\xd6\x15\xa8\x06\xa3\x96\x38\x1d\x6e\xac\x06\xa4\x99\x9b\xa1\x96\x91\x8a\x84\xa3\x1e\x87\x98\x94\x89\x93\x1b\x9c\x99\x93\x9b" +"\x96\x1f\x94\x84\x94\x89\x9b\x8a\x08\xa9\xfc\x20\x69\x06\x70\x49\x0a\x69\xa3\x79\xba\x1e\xf7\x43\xb2\x0a\x6a\xf8\x87\xfb\x1a\x06" +"\x72\x7c\x84\x79\x81\x1f\x9b\x6e\x66\x94\x62\x1b\x3e\x4e\x4b\x3a\x1f\x6b\x6a\x07\x70\x5c\x1d\xa6\x1b\xac\xfb\x6f\x64\x5b\x0a\xf7" +"\x44\x06\x9f\x9b\x8e\x8f\x93\x61\x0a\x81\x8d\x70\x1b\x6e\x06\x0e\x7e\x1d\xc4\x1d\xfb\xea\xc0\x0a\x0e\xc4\x1d\x65\x35\x06\x73\x80" +"\x89\x86\x82\x32\x0a\x83\x96\x94\x89\xa7\x1b\xe1\xfb\x5e\x06\x74\x8d\x80\x91\x83\xe3\x0a\x93\xa6\x1a\xf7\x5e\xe0\x07\xa5\x94\x8d" +"\x90\x95\x1f\x9b\x95\x95\x9c\x9c\x1a\x9c\x83\x9a\x7c\x95\x1e\x93\x2f\x1d\x36\x06\x0e\x85\x1d\xf8\x6f\xf8\x76\x15\xa9\x06\xb2\x9e" +"\x99\xa6\xa6\x78\x99\x64\x1f\xfb\x59\x06\xfb\x23\x8c\xfb\x0b\x3c\x8d\x2e\x08\x5f\x07\x88\x37\xee\x3e\xf7\x11\x80\x08\xfb\x99\x40" +"\x07\x76\x84\x8a\x86\x83\x1f\x7e\x83\x83\x7e\x7d\x1a\x70\x9e\x7d\xb1\x1e\xf7\x1d\x06\xa3\x95\x91\x9f\x94\x1f\x79\x93\x99\x83\x9d" +"\x1b\xe8\x06\xb2\x9e\x98\xa7\xa6\x78\x99\x64\x1f\x6b\x06\x37\xf8\xca\x15\xfc\xcc\x07\x82\x86\x88\x87\x86\x83\x86\x94\x87\x8e\x81" +"\x91\x08\xf8\xcb\x07\x0e\xf7\xbc\xf8\x59\x15\x38\x49\x49\x37\x38\xcd\x48\xdd\xdc\xcd\xce\xde\xdd\x49\xcf\x3b\x1f\x0e\xf4\x1d\xf7" +"\x30\xf7\x1c\x15\xc1\x0a\xc5\x16\xc1\x0a\x0e\xf7\x30\xf8\xdb\x15\xf7\x0a\x1d\xc5\x16\xf7\x0a\x1d\x0e\x97\x0a\x39\xfb\x18\xdc\x1d" +"\x0e\xf7\x01\x7d\x15\x49\x1d\xf7\x6e\x16\x49\x1d\xf7\x6e\x16\x49\x1d\x0e\xf8\x69\xf8\x00\x15\xa0\x92\x93\x93\x9a\x1a\x9c\x7e\x99" +"\x7b\x86\x89\x8b\x87\x7f\x1e\xfc\x01\xfb\x05\x05\x76\x85\x83\x82\x7c\x1a\x7a\x98\x7c\x9a\x91\x8d\x8b\x90\x97\x1e\x97\xf7\xee\x82" +"\x1d\xed\xfb\xd1\x82\x1d\xf7\xa2\xc3\x82\x1d\x0e\xf8\x88\xfb\x33\x15\xd9\x07\xa2\x89\x96\x85\x93\xf7\x60\x1d\x80\x1f\x83\x80\x89" +"\x84\x6f\x1a\x80\x07\x7c\x69\x6d\x84\x67\x1b\x4c\x61\xaa\xb9\xb2\xae\xa3\xf7\x15\xba\x1f\xc3\x07\xa2\x89\x95\x85\x94\x1e\x9a\x81" +"\x79\x95\x79\x1b\x6d\x78\x79\x69\x87\x1f\xfb\x0d\x58\x5f\x5c\x3d\x1a\xfb\x02\xe1\x40\xf7\x13\xca\xb9\x97\xb5\xe6\x1e\xfb\x5f\xf8" +"\xaf\x15\x64\x6c\x6e\x65\x66\xaa\x6d\xf7\x47\x1d\xf7\x58\xf9\x24\x5a\x0a\xf8\x5b\xf8\xe8\xac\x0a\x90\x96\x99\x1e\x0e\xf7\xc1\xf8" +"\xd6\x2e\x0a\xf8\x59\xf9\x0e\x15\x7d\x7e\x81\x77\x7b\x1f\x6f\x77\x87\x88\x7e\xe7\x0a\x7c\x6d\x71\x1f\x79\x76\x81\x78\x7d\x1a\x78" +"\x9a\x7d\x9f\x96\x94\x90\x96\x94\x1e\xaf\xa7\x93\x91\x9b\xb1\x0a\xf7\x46\xf8\xf1\x37\x1d\xf7\x34\xf9\x2c\x3b\x1d\xf7\xc0\xf9\x0c" +"\x36\x0a\x0e\xf7\x58\xf9\x0c\x28\x0a\xf7\xc0\xf9\x52\xe4\x1d\xf7\x96\x93\x15\x21\x07\xd7\x1d\xb3\x07\x0e\xf7\xba\xf8\xe7\xca\x1d" +"\xf7\xdc\x93\x15\x4f\x66\x75\x6c\x59\x1a\x54\x60\x1d\x80\x1e\x7d\x6e\x83\x88\x7f\x1b\x7e\x84\x90\x95\x9a\x97\xa1\x9b\x9b\x1f\x9c" +"\x9c\x98\x94\xbe\xac\x08\x0e\xf7\xc1\xf8\xcc\x45\x1d\x91\x0a\x75\x0a\x0e\xf7\xf2\xf7\xa3\x15\xe4\x06\xae\x9e\x9a\xa5\xa7\x79\x99" +"\x66\x1f\x89\xf7\x0a\x06\xcd\x56\xb1\x30\x67\x5a\x83\x7f\x6a\x1e\x79\x85\x82\x7f\x79\x1a\x74\x9e\x78\xa1\x92\x96\x8d\x8e\x97\x1e" +"\x93\xae\x9e\x8e\xa4\x1b\xb1\x9a\x85\x7b\x1f\x87\x07\x8f\x71\x7e\x8c\x78\x1b\x46\x5c\x7b\x67\x6a\x1f\x79\x78\x80\x73\x75\x1a\x56" +"\xc5\x60\xd5\xb1\xa7\x90\x9a\xb1\x1e\xe6\x04\x7a\x6e\x65\x80\x6c\x1b\x74\x7b\x92\x95\x9f\xaf\x9d\xb1\x9f\x98\x8a\x86\xa9\x1f\x0e" +"\xf7\x98\xf8\x61\x15\xc0\x69\x1d\xfb\x6a\x06\x5d\x0a\xc0\xfb\x2c\x06\x25\x53\x05\x6a\x79\x82\x80\x74\x1a\x6f\xa4\x72\xa6\x98\x96" +"\x8f\x96\x9f\x1e\xbb\xa6\x05\x34\x56\x07\x71\x20\x1d\x2d\x0a\x1e\xf8\x70\xf7\x4e\x06\xa4\x89\x94\x85\x94\x74\x0a\x79\x54\x1d\x81" +"\x71\x1a\x38\xfb\x63\xf7\x17\x07\xf7\x1b\xd7\x05\xab\x9d\x94\x96\xa3\x1a\xa6\x73\xa3\x70\x7f\x7d\x86\x82\x7a\x1e\x39\x5d\x05\x0e" +"\x7e\x0a\x0e\xf8\x06\xf7\x7c\x15\x96\x06\x69\x8d\xa0\x77\xaa\x1b\x9b\x9b\x93\x98\x96\x1f\x93\x96\x8d\x94\xa5\x1a\xd5\x07\xa5\x66" +"\x0a\x6c\x79\x79\x68\x87\x1f\x80\xf7\x13\xf7\x0b\x51\xc0\x0a\xf7\x35\xfb\xe6\x07\xfb\x39\xfb\x0a\xfb\x09\xfb\x39\xfb\x38\xf7\x0a" +"\xfb\x0a\xf7\x39\x1f\xf7\xf9\xf7\x0c\x06\xa5\x8a\x92\x85\x4d\x1d\x82\x70\x1a\x7a\xfb\x1f\x07\xfb\x00\x16\x60\x73\x91\x9b\x70\x1f" +"\x59\xa9\x69\xca\xcb\x1a\xc5\xa9\xc8\xb6\xaa\x1e\xa8\x9f\xa8\x93\xba\x8c\x08\x0e\xf7\xc1\xf8\xd4\x15\x2c\x3c\x42\x33\x35\xd8\x47" +"\xec\xeb\xd9\xcf\xdf\xe6\x3e\xd3\x2a\x1f\x39\x04\xba\xb3\x67\x61\x63\x63\x6a\x5c\x5d\x62\xad\xb0\xb7\xb2\xaf\xbb\x1f\x0e\x76\x0a" +"\x0e\x25\x0a\x0e\xf7\xf6\xf8\xef\x15\xfb\x47\x06\x71\x82\x89\x86\x81\x3c\x1d\x83\x96\x97\x89\xa5\x1b\xd2\xfb\x2b\x06\x3a\x60\x05" +"\x6d\x7b\x80\x7c\x75\x1a\x6f\xa3\x72\xa7\x97\x95\x8f\x95\x9f\x1e\xa7\x9b\x05\xfb\x12\xfb\x0a\x07\x71\x49\x0a\x2d\x0a\x1e\xf7\xec" +"\x29\x0a\xfb\x0a\xf7\x3c\x06\xde\xb9\x05\xaa\x9b\x95\x98\xa2\x1a\xa8\x73\xa4\x6f\x7d\x84\x88\x7f\x75\x1e\x6e\x7a\x05\x0e\x80\x0a" +"\x0e\xf8\xfc\xf7\x37\x15\xba\x07\xd1\x77\xc6\x67\xb2\x1e\xb2\x67\x60\x9f\x5e\x1b\x56\x5c\x71\x5c\x6a\x1f\xbb\x67\x5d\xa4\x58\x1b" +"\x23\x3a\x26\xfb\x16\xfb\x0f\xde\x29\xf2\xbd\xba\xa3\xb6\xae\x1f\x5f\xac\xb9\x74\xc2\x1b\xb5\xcb\x98\x9b\xae\x1f\xa8\x99\x95\x99" +"\xa3\x1a\xa9\x73\xa3\x6e\x82\x83\x89\x88\x83\x1e\x73\x53\x80\x88\x6f\x1b\x63\x71\xa4\xbd\x7e\x1f\xfb\x54\xf7\x3e\x15\xb6\xaf\x54" +"\x49\x45\x68\x55\x5e\x60\x67\xc2\xce\xcf\xaf\xc2\xb7\x1f\xf7\x57\x3b\x15\xc3\x98\x9f\xa3\xac\x1b\xab\xa0\x72\x54\x97\x1f\x0e\xe6" +"\xf7\xb0\x15\xfb\x49\x7f\x07\xaf\x1d\x82\x81\x79\xf7\x6b\x1d\x98\x88\xa4\x1b\xf7\x0c\xf8\x50\x06\xaf\xa3\x9e\xb8\xb7\xa9\x74\x69" +"\x7c\x82\x7c\x7d\x82\x1e\x80\x84\x84\x8a\x71\x88\x08\x67\x87\x77\x79\x6d\x1a\x6d\x9e\x7a\xb3\x87\x1e\xbe\x86\xa9\x7f\xa5\x73\x08" +"\xa5\x74\x99\x6c\x69\x1a\x5f\x7a\x6f\x71\x7d\x82\x93\x9b\x88\x1e\xac\x83\x7d\x97\x6e\x1b\x6a\x76\x74\x66\x4a\xbf\x5c\xd2\xb9\xb1" +"\x9a\xa6\xa5\x1f\xaa\xad\x9d\xbc\xbe\x1a\xdc\x62\xcf\x41\xb6\x1e\xa3\xa8\x93\xa0\xaf\x1a\xe8\x3d\xd1\x23\x23\x42\x50\x38\x1e\x43" +"\x7f\x07\xce\x0a\x7b\x94\x7b\x98\x81\x1e\x84\x95\x98\x88\xa4\x1b\x0e\xf7\xe2\xf8\xfc\x15\xfb\x18\x6a\x05\x72\x85\x82\x82\x79\x1a" +"\x78\x99\x7c\x9c\x91\x8d\x8b\x8f\x97\x1e\xbb\x97\x05\xfb\x79\x52\x07\x6d\x7d\x80\x76\x76\x9a\x7f\xa8\x1f\xf7\x49\x06\xa7\x9a\x97" +"\xa0\xa0\x7d\x96\x6e\x1f\x52\x06\x0e\xf8\x76\xf8\x19\x15\xfb\x55\x07\x77\x94\x80\x9c\x9c\x94\x96\x9f\x1e\xf7\x88\xfc\x46\x07\x75" +"\x80\x82\x7a\x7b\x96\x82\xa1\x1f\x0e\xf7\x5f\x82\x15\x86\xa0\x95\x8a\x9e\x1b\xbd\xbc\x95\xa1\xbd\x1f\x7a\xf2\x07\xa1\x9a\x8d\x91" +"\x94\x1f\x9d\x95\x95\x9d\x9e\x1a\xac\x75\x9f\x64\x8d\x1e\xf7\xd2\xfb\x23\x07\x71\x81\x89\x85\x81\x1f\x7a\x81\x80\x79\x78\x1a\x7a" +"\x94\x7a\x9a\x81\x1e\x83\x96\x98\x88\xa5\x1b\xa6\xfb\x43\x06\x68\x4e\x63\x7e\x61\x1b\x62\x7c\x98\xaf\x1f\xf7\xb0\xfb\x10\x07\x7b" +"\x06\x6b\x71\x73\x6c\x7a\x94\x7a\x9a\x81\x1f\x83\x96\x98\x88\xa5\x1b\x93\xfc\x1c\x06\xf7\x31\x1d\x94\x96\x8d\x95\xa5\x1a\x0e\xf7" +"\x37\xf8\x81\x15\xb0\x5a\x06\x6f\x96\x7d\xa0\xa0\x96\x99\xa7\x1e\xf7\x06\xfb\x9d\xfb\x06\x07\x6f\x96\x7d\xa0\xa0\x95\x99\xa7\x1e" +"\xbc\xb0\xfb\x68\x74\x07\x6f\x7e\x80\x76\x75\x99\x80\xa5\x1f\xf7\x03\x06\xa6\x99\x96\xa1\xa0\x7e\x96\x6f\x1f\x74\x06\xf7\x67\xf7" +"\x24\x15\xc7\xfb\x16\x05\x99\x06\xc3\xf7\x15\x05\xfb\x23\x07\x7a\x8a\x8b\x89\x85\x1f\x80\x87\x83\x7e\x7e\x1a\x75\x99\x80\xa5\x1e" +"\xc7\x06\xa5\x99\x96\xa1\x9e\x80\x96\x75\x8d\x1f\xf7\x69\x07\x9f\x8e\x94\x96\x9d\x1a\xa1\x7e\x95\x6f\x1e\x47\x06\x5a\xfb\x13\x59" +"\xf7\x13\x05\x49\x06\x6f\x7e\x81\x75\x79\x95\x80\x9e\x88\x1f\xfb\x69\x07\x74\x89\x80\x80\x78\x1a\x75\x99\x80\xa6\x1e\xc6\x06\xa5" +"\x99\x96\xa1\xa1\x7f\x95\x6c\x1f\x0e\xb9\x1d\xf7\x36\xf9\x10\x7f\x1d\xf7\xbd\xf7\x4e\x15\x8f\x93\x8f\x99\x90\x1a\x9b\x7b\x9a\x7a" +"\x7d\x82\x84\x79\x81\xf7\x3c\x1d\x99\x95\x93\x9c\x94\x1e\xf7\x6d\x68\x15\xf7\x19\xf7\x0e\x9e\xa4\xbc\x1a\xce\x56\xbc\x42\x68\x6a" +"\x7f\x76\x74\x1e\x76\x78\x7c\x6e\x77\x1a\x7a\x9a\x7d\x9c\x98\x96\x93\x96\x8f\x1e\x92\x9e\x8b\x8b\x90\x91\x08\x9a\x97\x9e\x93\xa0" +"\x1b\xae\xa6\x76\x6f\x71\x77\x76\xfb\x33\xfb\x21\x1f\x81\x82\x05\x49\xf7\x95\xc2\x07\xa6\x81\x99\x76\x79\x81\x80\x77\x88\x1e\x0e" +"\xf7\xf6\xf7\xcf\xf7\x23\x1d\x95\x1e\x92\x80\x82\x8d\x6e\x1b\xfb\x1d\xf7\x0a\xf7\x09\x1d\xfb\x0a\xfb\x1e\x07\x71\x83\x8a\x85\x81" +"\x48\x0a\x84\x96\x97\x88\xa4\x1b\xf7\x1e\x30\x06\x74\x8d\x81\x91\x82\x1e\x7c\x94\x9e\xe5\x0a\xfb\x8a\xfb\x0d\x94\x0a\xf7\x5b\xf7" +"\x1a\x15\xe9\x06\xf3\xbf\x9b\xb6\xb5\x1f\xa2\xa3\x98\xac\xac\x1a\xac\x7e\xab\x74\xa3\x1e\xb6\x61\x57\x9b\x23\x1b\x2d\xa9\xea\x06" +"\xa4\x95\x32\x1d\x9b\x9d\x1a\xae\x73\x9c\x5d\x1e\xfb\x6a\x06\x76\x7c\x89\x86\x83\x6d\x0a\x7b\x99\x82\x1e\x83\x96\x94\x89\xa7\x1b" +"\x96\xfb\xfa\x80\x06\x72\x82\x89\x86\x61\x1d\xf7\x6a\x29\x0a\x2c\x06\xf7\x1a\x04\xe6\xf7\x13\x07\xcb\xa6\x7e\x6a\x6b\x70\x7e\x4b" +"\x1f\x0e\xf8\xb5\xf7\xe9\x15\x37\x06\xfb\x26\xfb\x7e\x05\x56\xf7\x37\x7c\x78\x07\x6e\x7d\x80\x76\x75\x9a\x80\xa7\x1f\xda\x06\xa8" +"\x9a\x96\xa1\x9e\x7e\x97\x73\x8c\x1f\x9a\x07\xa3\x8c\x98\x97\x9f\x1a\x9e\x7d\x97\x74\x8c\x1e\x48\x16\x3c\x06\xda\xf7\x10\x05\xfb" +"\xd0\xf8\x1d\x7f\x1d\xf7\xca\xf7\x4e\x15\x8f\x92\x8f\x9a\xf5\x0a\xfb\x7c\xfc\x47\x05\x85\x80\x88\x82\x84\x1a\x7b\x9b\x7c\x9c\x99" +"\x95\x93\x9c\x95\x1e\x0e\x92\x0a\xfb\x54\xfb\x35\x15\x5c\x6b\x70\x63\x62\xab\x70\xb9\xbb\xab\xa5\xb4\xb5\x6c\xa5\x5b\x1f\xf7\xf7" +"\x04\x5c\x6b\x70\x63\x62\xab\x70\xba\xba\xab\xa5\xb4\xb5\x6c\xa5\x5b\x1f\x0e\xf7\xfa\xf8\xa8\x15\x9f\x8a\x91\x88\x95\x1e\x9e\x83" +"\x74\x9a\x74\x1b\x79\x79\x83\x7d\x80\x1f\x83\x80\x88\x80\x71\x1a\xfb\x53\x07\x74\x8d\x80\x91\x81\x1e\x7b\x96\x9e\x81\x9f\x1b\xad" +"\xa3\xa3\xaf\x1f\x95\x07\xfb\x74\x04\xa3\x89\x95\x85\x95\x1e\x9b\x80\x78\x95\x77\x1b\x79\x79\x83\x7d\x80\x1f\x83\x80\x88\x80\x71" +"\x1a\xfb\x53\x07\xf7\x31\x1d\x93\x95\x8e\x96\xa5\x1a\x0e\xf7\xc0\xf8\xd5\x15\x28\x3b\x3e\x2c\x2c\xdb\x3d\xec\xf0\xdb\xd7\xec\xea" +"\x3b\xd8\x28\x1f\x49\x04\xc8\xbc\x5c\x4f\x52\x59\x5a\x50\x4d\x5a\xba\xc7\xc6\xbc\xba\xc8\x1f\x0e\xf7\x3d\x1d\xf7\x12\x21\xe9\xfb" +"\x22\x4f\x61\x7d\x67\x5c\x1f\xf7\x6c\xfb\x0c\x07\x77\x84\x8b\x88\x81\x1f\x78\x84\x7d\x77\xf7\x45\x1d\xfc\xe5\xc2\x1d\xf7\x0a\xf8" +"\x79\xbf\x1d\xf8\x2a\xfb\x24\x15\x37\x06\xfb\x26\xfb\x7e\x05\x56\xf7\x37\x7c\x78\x07\x6e\x7d\x80\x76\x75\x9a\x80\xa7\x1f\xda\x06" +"\xa8\x9a\x96\xa1\x9e\x7e\x97\x73\x8c\x1f\x9a\x07\xa3\x8c\x98\x97\x9f\x1a\x9e\x7d\x97\x74\x8c\x1e\x48\x16\x3c\x06\xda\xf7\x10\x05" +"\x85\xf7\x9e\xe2\x1d\xf7\x91\xf7\xc3\x15\xf7\x2b\xf7\x0f\xa0\xa3\xbd\x1a\xcc\x53\xbd\x40\x66\x69\x7f\x76\x72\x1e\x76\x78\x7b\x6e" +"\x77\x1a\x7a\x9a\x7d\x9d\x99\x98\x93\x96\x8f\x1e\x91\x9e\x8c\x8b\x90\x91\x08\x9a\x98\x9f\x93\xa2\x1b\xb0\xa7\x76\x6f\x71\x75\x76" +"\xfb\x44\xfb\x21\x1f\x80\x82\x05\x49\xf7\xac\xc2\x07\xa6\x80\x99\x74\x78\x80\x80\x77\x88\x1e\x0e\xf7\xa5\xf7\x7e\x15\x95\x06\xa8" +"\x7e\xae\x56\x98\x5b\x08\xb6\x06\xa9\x9d\x99\xa3\xa0\x7e\x99\x72\x8e\x1f\x77\xac\x84\x94\x76\x9d\x08\xb0\x9f\xa0\xa9\xae\x1a\xc8" +"\x56\xb6\x3d\x1e\x2e\x06\x6b\x7a\x7e\x72\x74\x9a\x7e\xa7\x89\x1f\xfb\x41\x07\x70\x8a\x7b\x7d\x74\x1a\x73\x9d\x7d\xaa\x1e\xcf\x06" +"\xa9\x9d\x99\xa3\xa2\x7c\x98\x70\x8d\x1f\xf7\x05\x04\xc7\xa0\x07\xa9\x9f\x80\x7b\x79\x75\x7c\x6f\x1f\x90\xf7\xa2\xf7\x34\x1d\xf7" +"\x43\xf7\x1f\xf7\x17\xf7\x3a\xf7\x37\xfb\x1f\xf7\x19\xfb\x40\x1f\x8c\x3d\x15\xf7\x12\xf2\x29\xfb\x0c\xfb\x0c\x24\x28\xfb\x10\xfb" +"\x16\x25\xec\xf7\x0e\xf7\x0c\xf2\xed\xf7\x13\x1f\x0e\x92\x0a\x0e\xf8\x37\xf8\xc0\x15\x9b\x93\x94\x97\x98\x1a\x9f\x7c\x9a\x77\x81" +"\x7e\x88\x85\x7f\x1e\x40\x65\x5c\x9f\x73\x95\x89\x8c\x19\x93\x72\x7b\x8e\x7d\x1b\x74\x77\x79\x76\x7c\x95\x7f\x9d\x85\x1f\x91\x8a" +"\x91\x89\x90\x89\x08\x8c\x92\x88\x87\x95\x1f\x98\x85\x60\x74\x05\x75\x7f\x87\x86\x7c\x1a\x75\x9a\x7a\x9e\x95\x8f\x8c\x95\x9f\x1e" +"\xe5\xba\xb2\x76\xbb\x64\xab\x66\x19\xa7\x56\x71\x92\x5d\x1b\xfb\x1f\xfb\x02\x27\xfb\x11\xfb\x0f\xf7\x09\x29\xf7\x25\xd2\xd1\xa4" +"\xb7\xbd\x1f\xbc\xb5\xa1\xc0\xd9\x1a\xf7\x13\x52\xec\xfb\x11\xe0\x1e\x3b\xfb\x5e\x15\xdf\xcf\x53\x44\x69\x80\x75\x6e\x73\x1f\x71" +"\x6c\x65\x7e\x5f\x1b\x38\x47\xc0\xcc\xd3\xce\xc3\xe0\x1f\x0e\xf7\xc0\xf7\x5a\x15\xef\x2c\x05\x75\xa2\x94\x86\x9c\x1b\xaa\xa3\xa2" +"\xa8\x9c\x85\x95\x75\xa0\x1f\x28\xea\xee\xeb\x05\xa1\x9f\x91\x95\x9c\x1a\xa8\x73\xa2\x6c\x7a\x82\x86\x76\x74\x1e\x27\x2b\x27\xeb" +"\x05\x9f\x75\x81\x91\x7a\x1b\x6c\x73\x74\x6e\x79\x90\x83\xa2\x76\x1f\xef\x2b\x27\x2c\x05\x75\x76\x85\x81\x7a\x1a\x6e\xa3\x74\xaa" +"\x9c\x94\x90\xa1\xa2\x1e\x0e\xf7\xb2\xf8\x67\x15\x78\x7c\x7e\x78\x79\x98\x7f\xa0\x8a\x1f\xa6\x8a\x92\x8a\x96\x86\x08\xa6\x80\x9c" +"\x76\x77\x1a\x6a\x6c\x7a\x4e\x64\x7a\x8e\x94\x7c\x1e\x92\x81\x87\x8c\x83\x1b\x78\x7d\x7d\x78\x6b\xbd\x77\xd9\xbd\xad\x93\x9e\xa6" +"\x1f\xa7\x9f\x9d\xac\xac\x1a\xb0\x74\xab\x62\xa0\x1e\xaf\xa1\x9a\xa3\xaa\x1a\xc8\x56\xb7\x41\x48\x4f\x6b\x68\x79\x9a\x7c\x9d\x94" +"\x94\x8f\x91\x91\x1e\x9f\x9e\x9a\x91\xac\x1b\xb1\xa4\x7b\x73\x73\x73\x77\x70\x1f\x0e\xf7\x17\xf7\x98\x15\x36\xd4\x4c\xed\xd6\xcd" +"\xaf\xb3\xa0\x79\x9c\x75\x81\x82\x87\x83\x82\x1e\x75\x75\x80\x87\x64\x1b\x52\x67\xa8\xb7\x1f\xac\x07\xbc\xad\xad\xbc\xab\xa7\x7d" +"\x7b\x8e\x1e\x71\x90\x97\x7f\xa1\x1b\xa5\x99\x9b\xa9\x1f\xbe\x07\xab\x7f\x9a\x72\x7d\x81\x86\x7f\x85\x1e\x97\x70\x75\x90\x6f\x1b" +"\x30\x46\x47\x31\x1f\xf7\x3c\xf7\xb0\xf7\x34\x1d\xf7\x44\xf7\x1e\xf7\x17\xf7\x3a\xf7\x38\xfb\x1f\xf7\x18\xfb\x40\x1f\x8c\x3d\x15" +"\xf7\x12\xf2\x29\xfb\x0c\xfb\x0c\x24\x28\xfb\x10\xfb\x16\x25\xec\xf7\x0e\xf7\x0c\xf2\xed\xf7\x13\x1f\x0e\x21\x1d\xf7\x08\xf7\xca" +"\xcf\x0a\x7b\x7e\x83\x7f\x7e\x1a\x76\x9d\x79\xa2\x96\x91\x8e\x98\x9c\x1e\x0e\x21\x1d\x7e\xf7\xb7\xf7\x41\x1d\x98\x87\x92\x7b\x97" +"\x1f\x86\x8f\xfb\x2e\xf7\x11\xed\x0a\x9f\x96\x6f\x0a\x21\x1d\xfb\x0a\xf7\xef\x36\x1d\x21\x1d\x36\xf8\x06\xe5\x1d\x21\x1d\x7d\xf8" +"\x34\xa1\x0a\x21\x1d\xf7\x1f\xf7\xef\x15\x7f\x7b\x81\x7c\x80\x1f\x6b\x73\x88\x88\x7d\xf7\x03\x0a\x73\x1b\x6b\x6d\x7a\x6c\x71\x1f" +"\x79\x77\x83\x7a\x7e\x98\x0a\xf7\xe9\x7e\x15\xcc\x8e\xbb\x97\xb2\xa0\x08\xb9\xa3\xa8\xac\xa7\x64\x1d\x80\x85\x08\x7d\x72\x65\x83" +"\x5d\x1b\xfb\x09\xd8\x0a\x94\x80\x8f\x75\x08\x64\x93\x9f\x0a\x52\x1b\xfb\x30\x74\x1d\x4b\x07\x8c\xfb\x13\xe8\x28\xf7\x20\x74\x08" +"\x31\x07\x8d\x9e\x8f\x8b\x91\x1b\xa8\x9c\x80\x7a\x7e\x80\x84\x76\x7a\x76\x91\x94\x7a\x1f\x96\x77\x89\x8c\x55\x1d\x7d\x92\x7e\x98" +"\x83\x1f\x7a\xa7\xb5\x7f\xb0\x1b\xc9\xb9\xb4\xc2\x4e\x0a\x30\x1d\xf7\x73\xf9\x0a\xcf\x0a\x79\xa5\x1d\x9c\x1e\x0e\x51\x0a\xe9\xf8" +"\xf7\xf7\x41\x1d\x97\x87\x92\x7e\x95\x1f\x88\x8e\x89\x8d\x88\xc6\x0a\x8f\x94\x97\x1e\x0e\x51\x0a\x80\xf9\x2f\x36\x1d\x51\x0a\x9a" +"\xf9\x46\x98\x1d\x20\x05\x7e\x9c\x92\x62\x0a\x21\x0a\xf0\xf9\x0a\x26\x1d\x21\x0a\x56\xf8\xf7\xb9\x0a\x98\x87\x93\x7e\x94\x1f\x87" +"\x8e\x87\x8e\x8a\x8c\xfb\x2d\xf7\x11\x18\xfb\x2f\xfb\x11\x05\x73\x78\x89\x89\x7c\x1a\x76\x9d\x7a\xa0\x95\x94\x8f\x94\x97\x1e\x0e" +"\x21\x0a\xfb\x32\xf9\x2f\x36\x1d\x21\x0a\xfb\x18\xf9\x46\xe5\x1d\x33\x0a\xf7\xa6\xf9\x2f\x15\x7c\x8a\x7f\x83\x7d\x77\x08\x6f\x76" +"\xf7\x5b\x1d\x58\x79\x92\x73\x1b\x6d\x6d\x7b\x6e\x71\x1f\x79\x75\x82\x7a\x7d\x1a\x78\x9a\x7d\x9e\x97\x94\x90\x95\x93\x1e\xb0\xa9" +"\x91\x90\x9c\xf7\x24\x1d\xa6\x93\x99\x9a\x1a\x9c\x7d\x97\x74\x8d\x1e\x0e\x24\x1d\xf7\x12\xf7\x96\xf7\x0d\x0a\x73\x7f\x85\x63\x0a" +"\x76\x9d\x79\xa2\x96\x91\x8e\x98\x9c\x1e\x0e\x24\x1d\x8c\xf7\x83\xf7\x49\x1d\xa0\x99\xb0\x0a\x24\x1d\x23\xf7\xbb\x36\x1d\x24\x1d" +"\x40\xf7\xd2\xa3\x0a\x24\x1d\xf7\x34\xf7\xbb\x15\x7e\x7d\x81\x77\x7c\x1f\x70\x76\x88\x88\x7d\xf7\x03\x0a\x73\x1b\x6c\x6e\x7c\x6e" +"\x72\x1f\x78\x75\x81\x79\x7d\x98\x0a\xf7\xce\xf9\x55\x15\xfb\x03\xe5\x05\x95\x7f\x83\x8e\x81\x1b\x76\x79\x7a\x77\xf7\x46\x1d\xa3" +"\x9f\x8c\x8c\x9a\x1a\xa0\x79\x9c\x76\x81\x82\x87\x82\x80\x1e\xec\xfb\xb0\xb5\x1d\x0e\x22\x0a\x20\xf8\xa9\x15\x9f\x9a\x90\x93\x99" +"\x1a\xa1\x79\x9c\x73\x7f\x85\x63\x0a\x76\x9d\x79\xa2\x96\x91\x8e\x98\x9c\x1e\x0e\x22\x0a\xfb\x7c\xf8\x96\x15\xf7\x01\x31\xf1\x0a" +"\x92\x7e\x95\x1f\x88\x8e\x88\x8d\x88\x8d\xfb\x2d\xf7\x11\x18\xf7\x15\x1d\x22\x0a\xfb\xe5\xf8\xce\x36\x1d\x22\x0a\xfb\xc8\xf8\xe5" +"\xa3\x0a\x2b\x0a\xd6\xf9\x0a\x15\x9e\x9a\x91\x93\x99\x1a\xa1\x79\x9c\x74\x7e\x86\x88\x7e\x7a\x1e\xfb\x1a\x21\x05\x7a\xa5\x1d\x9b" +"\x1e\x0e\x2b\x0a\xfb\x32\xf9\x2f\x36\x1d\x44\x1d\xfb\x0e\xf8\xee\x15\xfb\x03\xe5\x05\x94\x7f\x82\x8f\x81\x1b\x76\x79\x7a\x76\x7f" +"\x8f\x83\x9b\x80\x1f\x8c\x89\x8d\x8a\x8e\x89\xf7\x2f\xfb\x10\x18\xf7\x2d\xf7\x10\x05\xa5\xa0\x8b\x8b\x9a\x1a\xa0\x79\x9c\x77\x80" +"\x81\x87\x82\x80\x1e\x0e\x23\x0a\xb0\xf8\x37\x15\x9e\x9a\x91\x94\x98\x1a\xa1\x79\x9c\x74\x7f\x84\x51\x1d\x7d\x84\x81\x7d\x1a\x76" +"\x9e\x7a\xa1\x96\x95\x90\x96\x98\x1e\x0e\x23\x0a\x2d\xf8\x25\xf2\x1d\x88\x7c\x1a\x76\x9d\x7a\xa0\x95\x93\x8e\x95\x98\x1e\x0e\x8d" +"\x1d\x47\x80\x7a\x58\x1e\x73\x83\x7f\x7d\x75\x1a\x6d\xa2\x74\xa8\x95\x99\x8d\x8f\x9d\x1e\x96\xbb\xad\x90\xad\x1b\xc8\xa6\x7e\x6e" +"\x1f\x79\x07\x91\x68\x6a\x8e\x6a\x1b\x32\x46\x72\x5a\x5c\x1f\x72\x71\x7c\x68\x6c\x1a\x42\xde\x50\xf2\xc2\xc5\x97\xa1\xba\x1e\x8c" +"\xf7\x08\x44\x0a\xfb\x5c\xf8\x5b\x28\x0a\x23\x0a\xfb\x45\xf8\x73\x15\x98\x7c\x84\x8e\x7f\xa9\x0a\x96\x1b\xa1\x9e\x9d\x9f\x99\x85" +"\x95\x78\x99\x1f\x0e\x23\x0a\x2b\xf8\xa1\x15\x46\x51\x55\x4a\x4a\xc5\x55\xd0\xd0\xc5\xc1\xcb\xcd\x52\xc1\x45\x1f\x50\x04\xaf\xa9" +"\x70\x6b\x6a\x6d\x70\x67\x68\x6d\xa6\xac\xab\xa9\xa6\xae\x1f\x0e\x23\x0a\xc8\xf8\x5d\x15\x7f\x7b\x81\x7c\x80\x1f\x6a\x73\x88\x88" +"\x7e\x1b\x7f\x7f\x90\x9e\x6a\x1f\xa8\x5a\x77\x93\x74\x1b\x6d\x6d\x7c\x6f\x72\x1f\x78\x75\x81\x78\x7c\x1a\x78\x9a\x7d\x9f\x95\x95" +"\x90\x93\x91\x1e\xb3\xab\x91\x90\x9c\xb1\x0a\xf7\xee\x7c\x15\xc2\x8d\xb0\x91\xb2\x97\x08\xc2\x9d\xb0\xad\xac\x1a\xa7\x72\xa3\x6e" +"\x90\x0a\xd4\x07\xa5\x8a\x94\x85\x94\x1e\x99\x83\x78\x94\x77\x1b\x77\x80\x83\x78\x84\x1f\x9d\x65\x5a\xa2\x1d\xfb\x0b\xdf\x39\xf7" +"\x1a\x7e\x1f\x36\x07\x8d\x9c\x8b\x8b\x90\x1b\xae\x9c\x82\x78\x7e\x80\x84\x76\x7b\x75\x91\x94\x7a\x1f\x96\x78\x89\x8c\x55\x1d\x7d" +"\x92\x7e\x98\x83\x1f\x7a\xa7\xb5\x7f\xaf\x1b\xc9\xb9\xb4\xc2\xbd\x72\xa9\x5a\x96\x1f\x0e\xc9\x1d\xf7\xe8\x04\x9d\x99\x91\x95\x98" +"\x1a\xa1\x79\x9c\x74\x80\x84\x63\x0a\x77\x9e\x79\xa1\x95\x95\x90\x96\x99\x1e\x0e\x5d\x1d\x5e\x1b\x36\x5a\xa2\xc0\xf7\x36\x1d\xfb" +"\x14\xf7\xd6\x15\xf7\x01\x30\x05\x82\x97\x93\x87\x96\x1b\x9f\x9d\x9c\xa0\x99\x88\x90\x75\x9c\x1f\xfb\x2d\xf7\x11\xfb\x2f\xfb\x11" +"\x05\x74\x79\x88\x87\x7d\x1a\x76\x9d\x7a\xa0\x95\x93\x8e\x95\x98\x1e\x0e\xd9\x1d\x75\x31\x70\x86\x5e\x1b\x37\x5a\x5e\x1d\xfb\x7e" +"\xf8\x0c\x28\x0a\xc9\x1d\xfb\x6a\xf8\x24\x15\x98\x7b\x84\x8e\x80\xa9\x0a\x95\x1b\xa1\x9e\x9d\x9f\x98\x84\x97\x7a\x98\x1f\x0e\x25" +"\x0a\xc6\xf8\x81\xe3\x1d\x25\x0a\x45\xc8\x0a\x88\x8d\x88\x8d\x89\xc6\x0a\x8e\x95\x97\x1e\x0e\x25\x0a\xfb\x43\xf8\xa5\x28\x0a\x25" +"\x0a\xfb\x25\xf8\xbd\xa2\x0a\xf7\x5b\xc7\x1d\xbe\xbe\xa2\x97\xbc\x1b\xc5\xd5\x1d\xf7\x8b\xf7\x8e\x15\x7d\x89\x7e\x83\x80\x7c\x08" +"\x6a\x73\x88\x88\x7d\xab\x1d\x73\x1b\x6d\x6d\x7b\x6e\x72\x1f\x78\x75\x82\x79\x7d\x1a\x78\x9a\x7d\x9f\x96\x94\x90\x95\x93\x1e\xb0" +"\xa8\x92\x91\x9b\x1b\x9a\x93\x88\x7a\xa5\x1f\x70\xb7\xad\xa8\x1d\x99\x9b\x1a\x9c\x7d\x96\x74\x8e\x1e\x0e\x25\x1d\xf7\x1b\xf7\x9a" +"\xe3\x1d\x25\x1d\x8e\xf7\x88\x15\xf7\x01\x30\xf1\x0a\x93\x7e\x94\x1f\x87\x8e\x88\x8e\x89\x8c\xfb\x2d\xf7\x11\x18\xfb\x2f\xfb\x11" +"\x05\x73\x79\x89\x87\x7d\x1a\x76\x9d\x7a\xa0\x95\x94\x8f\x94\x97\x1e\x0e\x25\x1d\x25\xf7\xbe\x28\x0a\x25\x1d\x3c\xf7\xd6\xa2\x0a" +"\x25\x1d\xf7\x36\xf7\xc0\x15\x7e\x7c\x81\x78\x7d\x1f\x6e\x76\x88\x88\x7d\xe7\x0a\x7b\x6e\x71\x1f\x78\x76\x82\x78\x7d\x1a\x79\x9a" +"\x7c\x9e\x97\x94\x90\x95\x93\x1e\xb0\xa8\x93\x91\x9a\x1b\x9a\x92\x88\x7a\xa6\x1f\x70\xb7\xad\xcd\x0a\xf7\xcb\xf8\xcc\xf7\x42\x1d" +"\x7f\x8f\x83\x98\x81\x1f\x94\x84\xf7\x2f\xfb\x10\xf7\x2d\xf7\x10\x05\xa2\x9d\x8e\x8f\x9a\x1a\xa0\x79\x9c\x76\x81\x82\x87\x81\x7f" +"\x1e\xe5\xfb\xb4\x15\x9e\x8a\x92\x88\x94\x1e\x9e\x86\x77\x98\x75\x1b\x7b\x82\x85\x7a\x82\x1f\x9a\x66\x61\x93\x5b\x1b\xfb\x0e\x33" +"\x53\x3c\x3e\xc7\x63\xf7\x22\x7c\x1f\xc1\x86\xa0\x87\x9b\x85\x08\x9f\x83\x97\x80\x80\x1a\x77\x56\x7a\x50\x56\x61\x97\xa2\x6f\x1e" +"\xa9\x82\x7a\x99\x6f\x1b\x78\x54\x1d\x82\x71\x1a\x6b\x07\x5d\x9d\x76\xb0\x98\x94\x8e\x93\x96\x1e\x79\xb2\xbe\x82\xc5\x1b\xf7\x17" +"\xea\xc5\xdb\xb9\x70\xb5\x5e\xa3\x1f\x6d\x9b\x61\x96\x41\x94\x4b\x94\x85\x8c\x7e\x8f\x08\x7c\x91\x82\x92\x92\x1a\x99\xbb\x9a\xba" +"\xb4\xac\x82\x79\xa5\x1e\x6c\x9d\x97\x83\xa4\x47\x0a\x0e\x2c\x1d\x2e\xf8\x81\xf7\x0d\x0a\x74\x7f\x84\x51\x1d\x7d\x84\x80\x7e\x1a" +"\x77\x9e\x79\xa1\x95\x95\x90\x96\x99\x1e\x0e\x2c\x1d\xfb\x6e\xc8\x0a\x83\x91\xf7\x2d\x1d\x9f\x96\x6f\x0a\x2c\x1d\xfb\xd7\xf8\xa5" +"\x28\x0a\x2c\x1d\xfb\xbd\xf8\xbd\x98\x1d\x21\x05\x80\x99\x95\x86\x96\x1b\xa1\x9e\x9c\xa0\x99\x85\x94\x78\x9a\x1f\x0e\x59\x1d\xf8" +"\x18\xf7\xa6\x27\x0a\x59\x1d\xf7\x15\xf7\xca\x28\x0a\x40\x0a\xfb\x05\xf8\x65\xf7\x42\x1d\x7c\x8e\x87\xa2\x79\x1f\xf7\x2f\xfb\x10" +"\xf7\x2d\xf7\x10\x05\xa4\x9f\x8c\x8d\x9a\x1a\xa0\x79\x9c\x77\x80\x82\x87\x81\x7f\x1e\x0e\xf7\x70\xf8\x98\x15\x48\x06\x6a\x7b\x7f" +"\x73\x7a\x9a\x7b\x9d\x89\x1f\x90\xfb\x0b\x06\x6f\x7a\x7e\x74\x74\x9c\x7e\xab\x1f\xd1\x06\xab\x9c\x97\xa3\xa2\x7c\x97\x6d\x8c\x1f" +"\xe7\x07\xa5\xa7\x9a\x93\xa5\x1b\xad\x99\x81\x74\x1f\x2e\x07\x74\x89\x7c\x7d\x77\x1a\x73\x9c\x7f\xab\x1e\xc3\x06\xab\x9c\x97\xa3" +"\x9d\x7c\x9b\x79\x8c\x1f\x86\x8c\x05\xea\x07\xca\x5c\xb3\x44\x70\x70\x83\x7e\x7a\x1e\x85\x86\x05\x0e\xf8\x74\x16\x9f\x9b\x8e\x8f" +"\xa6\x0a\x6e\xf7\x6e\x8d\x0a\xfb\x29\xad\x07\xe7\x1d\x7d\x07\x71\x5c\x1d\xa5\x1b\x99\xfb\x6e\x79\x06\x71\x83\xf7\x3f\x1d\xf7\x1c" +"\x06\xae\x97\x90\x9c\x98\x1f\x7a\x99\x97\x86\xae\x1b\xfb\x17\xf3\x15\xf7\x6e\xf7\x29\xfb\x6e\x79\x07\x6a\x7d\x86\x7a\x7d\x1f\x9c" +"\x7e\x7d\x90\x6a\x1b\x0e\xf8\x9f\xf2\x15\xf7\xd6\xfb\x41\xad\x07\xa1\x9b\x9d\x9f\x95\x97\x89\x85\x9b\x1e\x86\x9c\x8f\x8a\x95\x1b" +"\xa8\xa3\xa2\xa8\x9d\x83\x99\x7c\x95\x1f\x98\x76\x5f\x95\x66\x1b\x6f\x76\x86\x7d\x74\x1f\x98\x6c\x6e\x91\x69\x1b\x3d\x4d\x4b\x3c" +"\x8c\x0a\xfb\xba\x16\x52\xf7\x6f\xc4\x06\xf2\x04\x52\xad\x06\xa1\x9b\x9d\x9e\x93\x93\x8a\x88\x96\xf7\x27\x1d\xf8\x9f\xf2\x15\xf8" +"\x87\xfb\x1a\x07\x69\x78\x87\x7c\x72\x1f\x98\x6c\x6e\x91\x69\x1b\x3d\x4d\x4c\x3b\x8c\x0a\xfb\x0d\xf7\xd6\x15\x4a\xad\x06\xa1\x9b" +"\x9e\x9e\x94\x91\x8a\x87\x9a\x1e\xfb\x41\xfc\x1c\x15\x52\xf7\x6f\xc4\x06\xf2\x04\x52\xad\x06\xa1\x9b\x9e\x9e\x93\x92\x8a\x87\x97" +"\xf7\x27\x1d\xf8\xba\xf7\x34\x15\xa3\xa1\x97\xa7\xaa\x1a\xc9\x58\xbb\x4a\x4a\x58\x5b\x4c\x6d\x97\x70\xa3\x74\x1e\x71\xf7\x2a\x1d" +"\x3b\xf7\x12\x15\xa8\x9f\x78\x70\x6e\x77\x78\x6e\x6e\x77\x9e\xa7\xa7\x9f\x9e\xa8\x1f\xfb\x33\x04\x60\x0a\xfb\xc5\xf8\x91\x7f\x1d" +"\xf7\xc4\xf7\x4e\xe2\x1d\xf8\x5c\xf8\x91\xf7\x12\x1d\x83\x87\x7e\x85\x9b\x1d\x22\xf8\x2f\xbf\x1d\xf8\x2f\xfb\xd9\xc7\x0a\x7d\x6c" +"\x6a\x1a\x4a\xbb\x5f\xd3\xd3\xb3\x0a\xfb\x33\x04\x60\x0a\x0e\xf8\x5b\xf8\x91\x15\x8e\x91\x90\x9b\xf5\x0a\xfb\x7c\xfc\x47\x05\x87" +"\x83\x87\x7e\x85\x9b\x1d\xf7\xdc\xe1\xc7\x0a\x7c\x6c\x6a\x1a\x4a\xbb\x5f\xd3\xd4\xb3\x0a\x8a\xfb\x33\x15\xa8\xa4\x72\x6e\x71\x76" +"\x7b\x6a\x6c\x75\x9c\xa3\xa9\xa3\xa4\xa8\x1f\xfc\x03\xf8\x47\x15\xea\x06\xa8\x9a\x96\xa1\xa0\x7d\x96\x6d\x1f\xfb\x36\xfb\x3c\x06" +"\x77\x98\x7c\x9c\x90\x8e\x8c\x8f\x93\x1e\x97\xa1\xa2\x92\x9c\x1b\xad\xa1\x70\x62\x5e\x75\x79\x55\x69\x7c\x8f\x99\x7c\x1f\x92\x82" +"\x88\x8d\x82\x1b\x7b\x7e\x7d\x79\x69\xbd\x71\xcf\xbf\xae\x97\xa6\xa1\x1f\x9e\xa1\x96\xac\xae\x1a\xd7\x5a\xc2\x49\x7c\x7b\x88\x86" +"\x79\x1e\x0e\xf7\x7a\xf8\xc4\x15\x33\xfb\x8f\x05\x89\x82\x89\x84\x86\x1a\x7a\x9b\x7d\x9d\x9c\x94\x93\xa2\x93\x1e\xeb\xf7\xa7\x05" +"\xc9\xfb\x9f\x54\x07\x70\x96\x7d\xa2\x9e\x96\x96\x9f\x8e\x1e\xf7\xf5\x58\x15\x8f\x93\x8f\x99\x90\x1a\x9b\x7b\x9a\x7a\x7d\x82\x84" +"\x79\x81\xf7\x3c\x1d\x99\x95\x93\x9c\x94\x1e\xf7\xdc\xe1\x15\xa3\xa2\x97\xa6\xaa\x1a\xc9\x59\xbb\x4a\x49\x59\x5b\x4c\x6d\x97\x70" +"\xa2\x74\x1e\x71\xf7\x2a\x1d\x3c\xd2\x0a\x8a\xfb\x33\x15\x60\x0a\x0e\x75\x0a\xf7\x54\xf7\xc5\x26\x1d\x21\x1d\xfb\x1e\xf8\x0e\x48" +"\x1d\x21\x1d\x0e\xf8\x34\xf7\x2b\x15\x9e\x5c\x05\x7b\x06\x5c\x73\xe8\x0a\x76\x9b\x5b\x8d\x1f\xfb\x57\xf8\x60\x05\xfb\x51\x39\x0a" +"\xa9\x06\xfb\x2a\xfb\xf8\x05\x86\x06\x61\x74\xe8\x0a\x73\x9d\x5d\x1f\x7a\x06\x9f\xba\x05\xf7\x4f\xf2\x15\xfb\x23\x06\xd3\xf7\x3c" +"\x05\xfb\x78\xec\x15\xa8\x7e\x9b\x73\x74\x7e\x7b\x6e\x73\x0a\xa2\xa3\x98\x9b\xa8\x1e\x0e\x21\x1d\xfb\x0b\xf7\xd3\x35\x0a\xf7\xf9" +"\xf8\xc8\x15\xfb\x6f\x06\x70\x20\x1d\x7a\x93\x7c\x9a\x81\x1e\x83\x95\x96\x89\xa6\x1b\xc4\x06\xfb\x2c\xfb\xf9\x05\x5f\x73\x79\x69" +"\x68\xa2\x7a\xba\x1f\xf7\x19\x06\xa0\x9a\x8d\x90\xa6\x0a\x7a\x06\x9f\xba\x05\xf7\x7d\x06\x9e\x5c\x05\x7a\x06\x71\x83\x89\x9d\x1d" +"\x99\x88\xa3\x1b\xc1\x06\x5b\x1d\xa8\xb1\xb4\xc1\xa8\x1f\xb0\x9f\x95\x98\xa3\x4c\x0a\x80\x92\x82\x8d\x70\x8c\x08\xfb\x4f\xf7\x2a" +"\x15\xfb\x25\x06\xd4\xf7\x3d\x05\x0e\x21\x1d\x93\xf8\x34\xea\x1d\xbd\xf7\x2b\x15\x9d\xf7\x57\x1d\x7f\x7b\x1e\xfb\x19\xf7\x4a\x1d" +"\x8e\x98\x9b\x1e\x0e\x7c\x0a\x53\x0a\xf8\x3e\xf8\x40\x26\x1d\x53\x0a\xf7\xa4\xf8\x24\x80\x1d\x7b\x1d\xf7\xa4\xf8\x2d\x26\x0a\x7b" +"\x1d\xf7\xa3\xf8\x65\xab\x0a\x0e\x79\x1d\xc1\x1d\x9b\x42\x0a\xb9\x1d\x8f\x16\xf8\xe4\x06\xfb\x96\xf8\xc7\x05\x3f\x06\xfb\x0c\xfc" +"\x70\x15\xf7\x32\xf7\xe6\xf7\x32\xfb\xe6\x05\x0e\x30\x1d\x64\xf9\x4e\x48\x1d\x30\x1d\xf2\x42\x0a\x30\x1d\xf1\x8a\x1d\x30\x1d\x77" +"\xf9\x13\x35\x0a\xf8\x40\x8e\x15\x7d\x44\x74\x75\x4d\x88\x08\x68\x06\xaa\x0a\x95\x97\x89\xa5\x1b\xb1\x06\xf7\x07\xe0\xde\xf7\x09" +"\x8f\x1f\x8a\xf8\x5d\x05\xb2\x8c\xa1\x9d\xab\x22\x1d\xfb\x16\x87\x1d\xaa\xfb\x9a\x06\xfb\x90\xf8\x01\x05\xfb\x09\x06\x3d\x1d\x79" +"\x1a\x7b\x94\x7b\x98\x81\x1e\x84\x96\x96\x89\xa5\x1b\x96\xfb\xfa\x06\x65\x74\x78\x6b\x69\xa3\x79\xba\x1f\xf7\x15\x06\xb9\xa3\x9c" +"\xae\xa9\x1d\x6c\xf7\x9c\x06\x0e\xf8\xa8\xf8\xc8\x15\xfc\x59\x06\x57\x0a\xf7\xfb\x06\x5c\x6b\x76\x6a\x89\x0a\x9a\x97\xa1\x9b\x9b" +"\x1f\x9c\x9b\x96\x93\xb6\xa8\x08\xf7\x27\x07\xf7\x07\x1d\xf7\x15\xd8\x88\x07\x47\x1d\x9b\x93\x98\x96\x72\x1d\x0e\x78\x0a\x83\xf8" +"\x9b\x38\x0a\xf7\x62\xfb\x2f\x15\xd8\x88\x06\x47\x1d\x70\x1d\x94\xa6\x1a\xf7\x27\xfc\x59\x07\x57\x0a\xf8\x6f\xf7\x29\x06\xa3\x89" +"\x95\x85\x94\x1e\x9b\x81\x79\x94\x79\x1b\x79\x7c\x83\x7e\x80\x1f\x83\x80\x89\x82\x70\x1a\x5d\xfb\x8c\x07\x0e\x50\x0a\x98\xf8\x9b" +"\x38\x0a\xf8\x1c\xfb\x31\xb2\x1d\x0e\xf7\x46\xf7\xf2\x15\xdb\x9d\xba\xb8\xcd\x1b\xa8\xaa\x83\x7c\xa3\x1f\xa4\x7c\x94\x80\x8f\x75" +"\x08\x64\x91\x99\x7c\xa7\x1b\x9b\x99\x93\x98\x95\x1f\x92\x95\x8d\x96\xa4\x1a\xdb\x07\xa4\x8a\x93\x85\x94\x1e\x9b\x82\x7b\x94\x7a" +"\x1b\x7b\x80\x85\x7b\x7f\x1f\xa8\x50\x71\x92\x58\x1b\xfb\x12\x2a\x32\xfb\x1f\x75\x1f\x70\x06\x76\x80\x80\x78\x77\x96\x80\xa0\x1f" +"\xa3\x6c\x73\x06\x76\x80\x80\x77\x77\x96\x80\xa0\x1f\xa6\x06\xfb\x15\xa4\xf1\x3b\xf7\x1f\x1b\xcc\xc9\x9d\xa9\xb3\x1f\xab\xa4\x9c" +"\xa4\xa2\x1a\xa7\x75\xa3\x70\x7e\x80\x86\x7f\x80\x1e\x73\x72\x8b\x8b\x82\x85\x08\x7e\x75\x68\x83\x64\x1b\x3e\x56\xb0\xcf\x78\x1f" +"\xf7\x36\x06\x9f\x97\x96\x9f\x9f\x80\x96\x76\x1f\xfb\x3b\xaa\xf7\x56\x06\x9f\x97\x96\x9f\x9e\x80\x96\x76\x1f\x0e\xbe\x1d\x41\x1d" +"\xfc\x12\xf9\x85\x48\x1d\x41\x1d\xfb\x91\xf9\x2e\x26\x0a\x41\x1d\xfb\x69\xfb\x3b\x23\x1d\x41\x1d\xfb\x92\xf9\x66\xab\x0a\x0e\xe6" +"\xf8\x48\x15\x86\x06\x88\x06\x65\x71\x7b\x73\x71\xa4\x7d\xba\x1f\xfb\x91\x93\x1d\xf7\x0d\x06\xba\xa2\x65\x1d\x80\xf7\x13\xf7\x62" +"\xfb\x13\x80\x06\xde\x1d\xf7\x91\x06\xbb\xa3\x99\xa5\xa3\x72\x9b\x64\x1f\x88\x06\x86\xa5\x06\xad\x8f\x9d\x9c\xa9\x4c\x0a\x92\x20" +"\x0a\x26\x06\x72\x81\x89\x86\x82\x48\x0a\x83\x96\x95\x89\xa6\x1b\x96\x72\xfb\x62\xa4\x96\x06\xa4\x95\x8d\x91\x94\x1f\x9b\x94\x95" +"\x9c\x9d\x1a\x9b\x83\x9a\x7d\x96\x1e\x92\x4b\x1d\x6e\x9d\x79\xad\x87\x1e\xf7\xce\x21\x15\x68\xfb\x62\xae\x07\x0e\xb1\x1d\xf1\xf8" +"\x78\x26\x0a\xf7\x6a\xf8\x61\x15\xa9\x06\xa3\x96\x8d\x90\x8c\x1d\xfb\x3c\xf7\x08\x1d\xa9\xfb\xfa\x6d\xf7\x2c\x1d\xf7\x3c\x2b\x1d" +"\xa9\x1d\x6d\x06\xf7\x9b\xf7\xfa\x15\xfc\x2a\x07\x5f\x88\x84\x77\x78\x1e\x77\x76\x67\x7d\x6b\x1b\x6e\x6a\x92\x9a\x63\x1f\x90\x7e" +"\x7f\x8e\x84\x1b\x72\x72\x72\x70\x7a\x93\x7c\x99\x81\x1f\x77\xaa\xd8\x78\xc3\x1b\xc1\xc4\x9f\xae\xb4\x1f\xbc\xb3\x9c\xb0\xcb\x1a" +"\xf8\x9c\xfb\x35\x07\x5d\x0a\x0e\x21\x0a\xfb\x56\xf9\x4e\x58\x0a\x21\x0a\x55\x8a\x1d\x21\x0a\xfb\x44\xf9\x13\x35\x0a\x85\x0a\xf7" +"\x6f\x06\x5b\x6b\x76\x6a\x89\x0a\xa7\xb0\xb3\xc1\xaa\x1f\xb0\xa0\x94\x97\xa2\x22\x1d\x2a\x06\x0e\x21\x0a\x0e\xd4\x1d\xf9\x06\x43" +"\x0a\xf8\x0f\xf8\x60\x15\xea\x27\x1d\xfb\xbd\x39\x0a\xe9\xfb\xf8\x2d\x39\x0a\xf7\xbd\x27\x1d\x2c\x06\xfb\xc6\xf8\x33\x38\x0a\x0e" +"\x21\x0a\xee\xf9\x2f\xc6\x1d\x7d\x0a\xfb\x55\xf8\xa8\x26\x0a\xf7\x26\x1d\x9d\xad\x9b\x83\x9b\x7d\x95\x1f\x92\x80\x81\x8d\xf0\x1d" +"\x84\x8a\x88\x82\xbd\x1d\x93\x80\x82\x8c\x6f\x1b\x6c\x06\x0e\xb3\x1d\xf7\x23\xfb\x72\x23\x1d\x43\x1d\xf7\x07\xf9\x0a\x26\x1d\xf8" +"\x49\xf3\x15\x7b\x29\x1d\xf7\x18\x06\xb8\xa4\x9d\xac\xaa\x73\xa1\x69\x1f\x80\x06\xfb\x57\xf8\x60\x05\xfb\x6c\x06\xa3\x1d\xc4\x06" +"\xfb\x2a\xfb\xf8\x05\x81\x06\x67\x73\x76\x6b\x6a\xa4\x79\xb9\x1f\xf7\x18\x27\x1d\x7a\x06\xf7\x1c\xf7\xd2\x05\x0e\x43\x1d\xf7\xc1" +"\xf8\x29\x15\x94\x99\x8f\x95\x93\x1a\xa0\x79\x9c\x75\x79\x82\x85\x77\x7d\x1e\x39\xfb\x0c\x05\x82\x7e\x87\x80\x82\x1a\x77\x9e\x7a" +"\xa0\x9c\x95\x92\x9e\x98\x1e\x0e\x43\x1d\xdc\xfb\x72\x23\x1d\x43\x1d\xf7\x0d\xf7\x06\x15\xb2\xaa\xa9\xb0\xb0\x6c\xa9\x64\x1f\x79" +"\x62\x1d\x79\x0a\x33\x0a\xf7\xaa\xf9\x0a\x26\x1d\x33\x0a\xf7\x10\x42\x0a\x33\x0a\xf7\x38\xfb\x72\x23\x1d\xf7\x45\xf8\x03\x15\xf7" +"\x91\xfc\x03\x05\xf4\xf8\x61\x06\xce\x1d\x93\x7b\x99\x9c\x0a\x06\x0e\x24\x1d\xfb\x20\xf7\xda\x58\x0a\x24\x1d\xad\xf7\x94\x87\x0a" +"\x24\x1d\xfb\x0e\xf7\x9f\x35\x0a\xf7\x27\xec\x15\x9f\x88\x80\x96\x79\x1b\x74\x80\x77\x62\x1f\x48\xf7\x7d\xf7\x38\x07\x34\xa1\x67" +"\xb6\xe0\x1a\xe7\xc6\xcf\xdb\xdb\xc5\x47\x2e\x39\x62\x59\x39\x7a\x1e\xfb\x38\xf7\x7c\xce\x07\xb3\x7f\xa0\x75\x79\x81\x81\x76\x87" +"\x1e\x51\x06\xde\xb7\xb3\xd2\xf1\x1a\xf7\x28\xfb\x00\xf7\x08\xfb\x20\xfb\x1d\xfb\x01\xfb\x09\xfb\x28\x25\xb3\x45\xdf\x5f\x1e\xfb" +"\x19\xf8\x3a\x38\x0a\x0e\x24\x1d\x0e\xf7\xdf\xf8\xd6\x15\xfb\x21\xfb\x03\xfb\x17\xfb\x3a\xfb\x38\xf7\x04\xfb\x17\xf7\x20\xf7\x21" +"\xf7\x03\xf7\x16\xf7\x39\xe1\x72\xd0\x59\xc4\x1f\xc4\x59\x4f\xa7\x48\x1b\x23\x04\xdb\xcb\x35\x21\x21\x4a\x35\x3c\x3c\x4a\xe1\xf4" +"\xf6\xcb\xe1\xdb\x1f\xfb\x96\xb8\x15\xa8\x7e\x9b\x73\x73\x7e\x7c\x6d\x73\x0a\xa3\xa3\x98\x9b\xa8\x1e\x0e\x7e\x0a\xd5\xf7\xad\x26" +"\x1d\xf7\xf4\xf8\xad\x15\x98\x06\xa2\x91\x8c\x8f\x92\x1f\x98\x91\x93\x97\x98\x1a\xa3\x79\x96\x64\x1e\xfb\x18\x06\x64\x79\x80\x73" +"\x73\x9e\x7f\xb1\x1f\x96\x76\x06\x54\x85\x69\x81\x65\x76\x08\x40\x62\x5b\x3c\x38\x1a\xfb\x15\xf3\x28\xf7\x26\x82\x1e\x76\x80\x07" +"\x7f\x8c\x05\x71\x78\x7c\x77\x73\x9e\x7f\xb1\x1f\xf7\x18\x06\xa3\x90\x8c\x8f\x92\x1f\x98\x91\x93\x97\x97\x1a\x97\x84\x95\x80\x92" +"\x1e\x91\x82\x86\x8b\x72\x1b\x7e\x9f\x06\xf7\x24\x92\xf7\x02\xf2\xf7\x15\x1a\xe5\x51\xe1\x35\xb1\x1e\x6a\x99\x6b\x92\x5e\x8f\x08" +"\xfb\x00\xfc\x1b\x15\x39\x92\x4f\xcb\xdc\x1a\xdd\xc4\xc8\xe0\x94\x1e\xf7\x00\x16\xe3\x83\xc5\x4e\x38\x1a\x39\x4f\x4c\x35\x84\x1e" +"\x0e\xf8\x24\xf7\x28\x1d\xb8\xa4\x9d\xac\xa2\x7b\xa0\x77\x90\x1f\x8e\x83\x80\x8b\x7a\x1b\xf7\xfa\x30\x0a\xfc\x10\x88\x1d\xf7\x0c" +"\x39\x1d\x81\xf7\xf8\x06\x0e\xf7\x8b\xf7\x8b\x15\x48\x95\x7a\xa6\x89\xf4\x08\xf7\x43\x2f\x07\x5d\x72\x79\x6a\x6c\xa0\x78\xad\x89" +"\x1f\x43\x07\xfb\x31\xc8\x3e\xf7\x19\x7f\x1e\x63\x07\x63\x8a\x77\x7a\x6a\x2a\x0a\xe3\x2b\x1d\xac\x77\x9c\x63\x8c\x1f\xb3\x07\xf7" +"\x19\x96\xcc\xde\x87\xf7\x2c\x08\xd3\x07\xaf\x8d\x9e\x9c\xab\x1a\xad\x73\x9d\x5c\x1e\x2f\xfb\x43\x06\x89\x22\x7b\x70\x47\x81\x08" +"\xf7\x6a\x07\xb4\x8c\x9e\x9c\xae\x1a\xaf\x74\x99\x4b\x1e\x55\x06\x4b\x74\x7d\x66\x69\x9f\x7a\xb3\x8a\x1f\x0e\x3c\x0a\xf7\x4d\xf8" +"\x36\x26\x1d\x3c\x0a\xaa\xf8\x1a\x80\x1d\x3c\x0a\xd2\xfc\x46\x23\x1d\x7f\x0a\x78\x1d\x49\xf7\xc7\x26\x1d\xf7\xe4\x7f\x15\xf7\x17" +"\x96\xd6\xc9\xeb\x1a\xbf\x77\xb3\x62\xaa\x1e\x6b\xa3\x64\x98\x34\x9b\x3e\x99\x88\x8c\x77\x94\x08\x77\x95\x7d\xa0\x9e\x1a\xb1\xbb" +"\xa9\xc8\xc8\xb9\x72\x67\x93\x1e\x92\x6b\x8b\x8b\x94\x83\x08\x82\x94\x9a\x85\x99\x1b\x9d\x9a\x93\x98\x96\x1f\x93\x96\x8d\x93\xa6" +"\x1a\xe0\x07\xf7\x25\x1d\x5d\x96\x59\x1b\xfb\x12\x2d\x41\x28\x53\xab\x57\xbf\x6f\x1f\xab\x79\xab\x82\xcd\x80\xcf\x7f\x9a\x88\xa1" +"\x80\x08\x9f\x81\x98\x79\x79\x1a\x64\x53\x6d\x42\x4b\x4e\xa6\xab\x81\x1e\x83\xa6\x8b\x8b\x83\x92\x08\x95\x82\x7d\x90\x7c\x1b\x67" +"\x79\x75\x5e\x1f\x4c\x07\x5e\x9d\x75\xaf\x9c\x94\x90\x9c\x9b\x1e\xa8\x7c\xb8\x7d\xa9\x87\x08\x33\xd6\x1d\xb4\x1d\xfb\x70\xf7\xb4" +"\x26\x0a\x78\x1d\xfb\x48\xfc\xb5\x23\x1d\xf8\xb2\xf8\xc8\x15\xfc\x4b\x35\x06\xf7\x3c\xfb\x52\xfb\x3c\xfb\x59\x05\x30\xf8\x51\xf7" +"\x33\x07\xb0\x7b\x9d\x6b\x6a\x7b\x7a\x65\x89\x1e\x88\x53\x05\xfb\x69\x06\xf7\x38\xf7\x4f\xfb\x2f\xf7\x43\x05\xf7\x57\x06\x90\x47" +"\x05\x65\x8e\x9b\x7a\xaa\x1b\xac\x9c\x9d\xb0\x1f\x0e\x54\x0a\xf7\xf5\xf7\xea\x15\xf7\x0b\xf0\x70\xf7\x16\x1d\x93\xa7\x1a\xf7\x16" +"\xfc\xa0\xfb\x16\xf7\x16\x1d\x94\xa6\x1a\xa6\xee\xfb\x0b\x58\x07\x4c\x1d\x95\x9a\x88\xa2\x1b\xbe\xfb\x1c\x4e\x06\x5f\x1d\xf7\x7b" +"\x29\x0a\x4d\xf7\x1c\xbf\x31\x1d\x0e\x7c\x1d\x57\x42\x0a\xf7\xeb\x16\xd3\x29\x0a\x4d\xf7\xfa\xf0\x37\x06\x73\x8d\x81\xd9\x0a\x93" +"\xa7\x1a\xf7\x4f\xfc\xa0\xfb\x4f\x07\x73\x8d\x81\x91\x82\xe3\x0a\x93\xa7\x1a\xdf\xee\xfb\xfa\x4e\x07\x5f\x1d\xdc\x29\x06\xd7\x1d" +"\x0e\xf7\x82\xf7\xcb\x15\x98\x07\xa3\x7d\x99\x73\x74\x7d\x7d\x73\x1e\x27\x07\x73\x99\x7d\xa2\xa3\x99\x99\xa3\x1e\x9a\xf7\x12\x7c" +"\x07\x73\x99\x7d\xa3\xa2\x99\x99\xa3\x1e\xef\x07\xa3\x7d\x99\x74\x73\x7d\x7d\x73\x1e\x7e\x07\x4b\xf7\x9f\x15\x48\x4a\x71\x5a\x53" +"\x1f\x4e\x55\x69\x3c\x34\x1a\xfb\x38\xf7\x13\xfb\x18\xf7\x30\xf7\x2f\xf7\x14\xf7\x18\xf7\x33\xe8\x6b\xd6\x4c\xc4\x1e\xbc\x55\x49" +"\xa5\x47\x1b\x24\x04\xea\xdb\x34\x24\xfb\x00\x3d\x34\x2a\x2b\x3c\xe2\xf5\xf4\xda\xe2\xeb\x1f\x0e\x22\x0a\xfc\x09\xf8\xed\x58\x0a" +"\x22\x0a\xfb\x5b\xf8\xa7\x87\x0a\x22\x0a\xfb\xf7\xf8\xb2\x35\x0a\x81\x0a\x3c\xb1\x4d\xd4\x61\x1e\x79\xab\xbc\x7e\xb2\x1b\x91\x94" +"\x8c\x8c\x97\x1f\x64\x69\x7e\x73\x64\x1a\x53\x60\x1d\x81\x1e\x7e\x71\x80\x87\x7e\x1b\x7e\x85\x90\x94\xaf\xa8\xb7\xc3\xbe\x1f\xcc" +"\xc3\xa1\xb6\x8d\xd6\x08\x0e\x2b\x0a\x0e\xf7\xf6\xf7\x80\x15\xf7\x33\xf7\x74\x05\xb8\x8d\xa1\x9c\xac\x1a\xad\x73\x9c\x5c\x8c\x1e" +"\x2f\x06\x5e\x71\x79\x69\x74\x97\x7c\xa5\x80\x1f\x37\xfb\x0c\x36\xf7\x0c\x05\xa5\x98\x95\x99\xa2\x1a\xac\x72\x9c\x5e\x8c\x1e\x32" +"\x06\x5d\x72\x79\x69\x6b\xa0\x7a\xb7\x88\x1f\xf7\x34\xfb\x74\x05\xfb\x18\x4e\x07\x5e\x72\x79\x69\x69\xa4\x79\xb8\x1f\xf7\x7a\x67" +"\x1d\x4e\x06\xfb\x31\xf9\x06\x59\x0a\x83\xf8\x9b\x38\x0a\xf7\xfe\xfb\x2b\x7b\x0a\x0e\x22\x0a\xfb\x7d\xf9\x13\xa1\x0a\x22\x0a\x42" +"\xf8\xce\xc6\x1d\x5a\x1d\xf7\x87\xf9\x71\x26\x1d\xf7\x0d\x1d\x9b\x7d\x95\x1e\x92\x20\x0a\xfb\x17\x06\x71\x83\x8a\x85\x81\x1f\x7b" +"\x82\x81\x79\x7a\x1a\x7a\x94\x7b\x98\x82\x1e\x83\x96\x96\x89\xa5\x1b\xbc\x06\x6a\xfb\x82\x43\xf7\x5f\x05\xfb\x00\x06\x43\xfb\x5f" +"\x6a\xf7\x82\x05\xb6\x06\xa3\x96\x8d\x90\x95\x61\x0a\x81\x8d\x6f\x1b\xfb\x17\x06\x70\x84\x8a\x85\x81\x1f\x7a\x81\x82\x7b\x77\x1a" +"\x6f\x9b\x7a\xa9\x87\x1e\xc9\xfc\x62\x05\xf7\x0a\x06\xe4\xf9\x5e\x26\x0a\x5a\x1d\x7b\xf9\x96\x36\x1d\x5a\x1d\x7b\xf9\xad\x81\x1d" +"\xf8\x4e\xf8\x60\x15\x5e\x2f\x0a\xf7\x29\xfc\x87\xfb\x29\x2f\x0a\xb8\x07\xf7\x4d\xfb\x76\x15\x6c\x91\x9a\x7c\xa6\x1b\xad\x9a\xa0" +"\xbd\x1f\xb9\x07\xbc\x7c\xa1\x69\x70\x7c\x7c\x6c\x85\x1e\x32\x06\xab\x85\x7d\x99\x6f\x1b\x6a\x7c\x75\x5a\x1f\x5d\x07\x5a\x9b\x75" +"\xad\xa5\x9a\x9a\xaa\x90\x1e\x2b\xfb\x16\x15\xb8\x07\xb8\x56\x1d\x5e\x1e\xfb\x29\xf8\x87\xf7\x29\x07\xb8\x56\x1d\x5e\x1e\x5e\x07" +"\x0e\x2b\x0a\x56\xf8\xf7\x26\x0a\x2b\x0a\xfb\x32\xf9\x46\x81\x1d\x44\x1d\xab\xf9\x0a\x26\x1d\x44\x1d\xfb\x0f\x8a\x1d\x44\x1d\x0e" +"\x23\x0a\xfb\x75\xf8\x7b\x3b\x1d\x76\x0a\x61\xf7\xea\x27\x0a\x91\x0a\x21\x1d\x0e\xf8\xbb\xf8\xc8\x15\xfc\x66\x9d\x0a\xf7\x12\xf7" +"\x84\x7a\xf7\x65\x1d\xfb\xf0\xfb\xe7\x15\xf7\x12\xf7\x11\x07\xe6\xba\x74\x5d\x65\x6a\x78\x4a\x1f\x0e\x7c\x0a\xbe\x1d\xf8\x69\x16" +"\x8f\x5e\x05\x52\x90\x99\x77\xaf\x1b\xb2\x99\xa1\xc7\x1f\xc7\x07\x8d\xcd\x7d\x9b\x4f\x8d\x08\xf7\xf8\x07\xbc\x8c\xa2\x9d\xae\x1a" +"\xaf\x73\x99\x4c\x1e\xfb\xd9\x06\x4a\x74\x7e\x65\x68\xa4\x79\xbe\x1f\x91\x06\x8d\x06\x8d\xfb\x4b\x06\x47\x80\x5e\x74\x71\x1e\x74" +"\x76\x6e\x7f\x68\x1b\x83\x06\x80\x8c\x05\x89\x06\x8a\x06\x85\xfb\x24\x06\x4e\x99\x76\xb2\xaf\x99\x9f\xc6\x8f\x1e\x8d\xb6\x05\xf7" +"\x26\xf8\x60\x15\xf7\x12\xfb\xf8\x06\xfb\x35\x8d\xa1\xb1\x97\xc9\x8c\xd2\x19\x0e\x78\x0a\xf7\x60\xf7\x7b\x15\xd8\x06\x74\x8c\x82" +"\x8f\x83\x1e\x78\x93\x9e\x80\xa1\x1b\xaf\x9d\xa1\xb9\x1f\xf7\x00\x07\xb6\x78\xa3\x68\x76\x78\x80\x7a\x83\x1e\x86\x83\x8a\x81\x74" +"\x1a\x3e\xf7\x11\xf7\x6f\x5f\x06\x60\x9e\x73\xae\xae\x9e\xa2\xb7\x1e\xf7\x28\xfc\x51\x07\x65\x0a\x95\xfb\xf8\x81\x06\x5d\x72\x75" +"\x1d\xf8\x67\xf7\x2a\x06\xb6\x78\xa3\x68\x68\x78\x73\x60\x1e\x5d\xfb\x85\x07\x84\xf9\x13\x43\x0a\xf7\x8a\xf2\x15\x65\x86\x7a\x7b" +"\x6c\x1a\x66\xa2\x7d\xcb\x1e\xb6\x06\xc9\xa3\x99\xb0\xa9\x7a\x9b\x67\x91\x1f\xf7\x24\x07\x95\x81\xa1\x62\x96\x6d\xb4\x21\x18\xa0" +"\x59\x95\x82\xb4\x8a\x08\xab\x06\xaa\xa1\x9f\xa9\xaa\x78\x9d\x64\x8f\x1f\x64\xf3\x7a\xb7\x74\xac\x6a\xa7\xf7\x0e\x0a\x6f\x94\x99" +"\x7f\xa4\x1b\xae\x98\xa0\xc3\x1f\x98\x07\xce\x80\x9b\x5f\x4a\x78\x77\xfb\x46\x29\x1e\xea\x07\xac\x92\x9b\x9b\xa7\x1a\xb1\x74\x99" +"\x4d\xbc\x0a\x7b\x48\xcc\x0a\x6a\x6c\x73\x68\x7c\x62\x64\x24\x18\x64\x87\x79\x7b\x6b\xf7\x2f\x1d\xaf\x9c\xaa\x99\x99\x08\x0e\xf7" +"\x4f\xf8\xc6\x15\xa6\x8c\x72\xa2\x6f\x1b\x6d\x74\x75\x6e\x1f\x80\x07\x8c\x63\x05\x60\x8a\x80\x87\x70\x1e\x86\x72\x88\x74\x86\x1a" +"\x71\xa3\x76\xa8\xa6\x99\x98\xad\x95\x1e\xd2\x9f\xb0\xa6\xd5\x1b\xcc\xb6\x71\x65\x61\x5c\x72\x40\x1f\x78\x06\x4b\x74\x7d\x65\x64" +"\xa3\x7e\xcf\x1f\xab\x06\xe4\xaf\x77\x5b\x56\x5c\x6f\x31\x44\x59\x99\xaf\x50\x1f\xa2\x66\x7c\x91\x7b\x1b\x6f\x72\x71\x6f\x76\x95" +"\x7a\xa1\x7d\x1f\x57\xd8\xe1\x71\xea\x1b\xe6\xc7\x9b\xaf\xb9\x1f\xb4\xab\xa2\xba\xbf\x1a\xc4\x73\xb6\x59\xac\x1e\xaf\xac\x9c\xaf" +"\xb8\x1a\xea\x34\xcf\xfb\x0e\x5b\x62\x82\x77\x62\x1e\x0e\x56\x0a\x0e\x56\x0a\xf7\x06\xf7\xc7\x15\x74\x7c\x7c\x75\x4d\xd6\x55\xe1" +"\xe0\xd6\xc1\xc9\xa1\x7c\x9a\x75\x78\x81\x82\x75\x84\x1f\x6a\x82\x6c\xf7\x37\x1d\x77\x0a\x0e\xf8\x90\xf8\x60\x15\xbe\x8d\xa0\x9a" +"\xae\x1a\xb1\x74\x99\x4c\x1e\xfb\xd8\x06\x4b\x74\x7d\x66\x68\xa3\x7a\xbb\x8a\x1f\x90\x06\x92\xfb\x94\x06\x3f\x7a\x67\x69\x89\x1e" +"\x8a\x06\x87\x95\x06\xbb\x79\xa4\x67\x64\x7c\x74\x54\x1e\x52\x07\x6a\xaf\x77\xc9\xca\xb5\x9d\xb3\xa7\x1e\xa7\xb0\x99\xc2\xd0\x1a" +"\xf7\x94\xf7\x10\xfb\xf9\x07\x58\x8a\x76\x7c\x68\x1a\x64\xa2\x7e\xcb\x1e\xda\x06\xca\xa2\x99\xb1\xae\x76\x9a\x58\x8c\x1f\x0e\x79" +"\x0a\x50\x0a\x24\x1d\x0e\xf8\x26\xf7\x28\x1d\xb9\xa3\x9d\xad\xae\x76\x9a\x58\x8c\x1f\xf7\xfa\x30\x0a\xfc\x10\x88\x1d\xf7\x0c\x39" +"\x1d\x81\xf7\xf8\x06\x0e\x7f\x0a\x7b\x1d\x0e\x54\x0a\x83\x0a\x0e\xf7\xf6\xf8\x69\x15\xa2\x06\xb5\xa1\x9b\xaa\xaa\x74\x9c\x5e\x1f" +"\xfb\x24\x06\x5e\x74\x7b\x6c\x6c\xa1\x7a\xb3\x1f\xa2\x70\x06\x43\x89\x63\x85\x71\x80\x08\x54\x75\x6c\x58\x4b\x1a\x22\xcf\x52\xf7" +"\x10\x1e\xab\x6e\x74\x06\x62\x75\x7a\x6c\x6c\xa1\x7b\xb4\x1f\xf7\x2e\x06\xb5\xa2\x9c\xaa\xaa\x76\x9b\x62\x1f\x71\xa8\x99\x06\xf7" +"\x1f\xd2\xc2\xf7\x01\xc5\x6f\xbb\x5c\xa3\x1f\x6e\x9a\x5e\x92\x40\x8d\x08\xfb\x00\x2d\x15\xfb\x16\x7c\x07\x48\x69\xa2\xb7\xb5\xa9" +"\xa0\xc7\x1f\xf7\x1a\x16\xa2\x06\xc9\xaa\x76\x61\x5e\x67\x75\x43\x1f\x83\x06\x0e\x79\x1d\xf8\x83\xf8\x60\x15\xc0\x8e\x9f\x98\xaf" +"\xd3\x0a\xfb\xf9\xfb\x5c\xf7\xf9\x95\x06\xb9\xa4\x9d\xad\xad\x73\xb0\x1d\x68\x9e\x7e\xc0\x88\x1f\xfb\xf9\x2c\x0a\xf8\x19\x55\xf7" +"\x66\x1d\xf7\x31\x28\x07\x0e\xf8\x20\xf3\x15\x55\x06\x4b\x74\x7d\x64\x66\xa2\x7d\xcb\x1f\xf7\x29\xba\x0a\x4c\x73\x9a\x1d\x62\x50" +"\x63\x7b\xf7\x07\x0a\xf7\x04\x07\xca\x8c\x9f\x98\xb0\x1a\xb2\x74\x98\x4a\x1e\x32\x06\x4b\x74\x7d\x65\x68\x9f\x7d\xc0\x89\x1f\xfb" +"\x08\x07\xfb\x09\xc2\x4e\xf7\x09\x0a\x0e\xf7\x8a\xf3\x15\x3f\xf8\x60\xfb\x02\x06\x5d\x73\x79\x68\x69\x9e\x7d\xc0\x89\x1f\xfb\xfa" +"\x2c\x0a\xf8\x5f\x06\xaf\xa3\xa0\xaa\xac\x76\x9c\x63\x8d\x1f\xf7\xf9\x07\xbf\x8d\x9f\x99\xae\x1a\xad\x73\x9d\x5c\x1e\xfb\x01\xfc" +"\x60\x3f\xf7\xf9\x06\xac\x8e\x9c\x9c\xaa\x1a\xad\x75\x9d\x5f\xae\x1d\x6e\x9c\x7a\xac\x86\x1f\x0e\xf7\x7f\xf2\x15\x3f\xf8\x61\xfb" +"\x02\x06\x5d\x73\x79\x68\x68\x9e\x7e\xc0\x88\x1f\xfb\xf9\x2c\x0a\xf8\x54\x55\x4a\x0a\xf7\x31\x29\xf7\xf9\x07\xc0\x8e\x9e\x99\x6e" +"\x1d\xfb\x02\xfc\x61\x3f\xf7\xfa\x06\xaa\x8e\x9e\x9e\xa9\x1a\xac\x74\x9d\x60\xae\x1d\x6d\x9c\x7a\xac\x87\x1f\x0e\x7c\xf8\xc8\x15" +"\xfb\x0d\x07\x5e\x9e\x74\xae\xaf\x9d\xa2\xb8\x1e\x9c\xf7\x06\xfb\xf8\x81\x9f\x1d\xf7\x50\x06\xf7\x21\xd4\xc0\xf2\xbd\x77\xb8\x67" +"\xaa\x1f\xae\x63\x4c\x9c\x2f\x1b\x6a\xf7\x12\xb2\x39\x1d\x64\xfc\x60\x15\xf7\x12\xb1\x07\xe4\xbb\x72\x5d\x67\x6a\x78\x4b\x1f\x0e" +"\xca\xf3\x15\x81\x06\x64\x76\x79\x6b\x67\xa3\x79\xba\x1f\xf7\x20\x06\xf7\x1e\xd3\xc2\xf5\xf4\x32\xcf\xfb\x1d\x1f\x7a\xf7\x12\xb3" +"\x27\x1d\xfb\x32\x29\x1d\x95\x06\xf7\x00\xfb\xf8\x15\xf7\x13\xa1\x07\xd6\xb1\x74\x5d\x64\x6f\x78\x52\x1f\xf7\x7d\x16\x63\x89\x75" +"\x78\x6b\x1a\x69\xa3\x7a\xb9\x1e\xed\x06\xb9\xa4\x9d\xac\xad\x74\x9c\x5d\x8c\x1f\xf7\xfa\x07\xb4\x8c\x9f\x9c\xad\x1a\xac\x74\x9d" +"\x60\x1e\x26\x06\x62\x75\x79\x6a\x69\x9f\x7a\xb4\x8a\x1f\x0e\xf7\x5f\xf8\x60\x15\xa3\x06\x4f\x1d\xfb\x22\x9d\x0a\x06\xfb\x7a\x04" +"\xf7\x12\xf7\x11\x07\xe6\xba\x74\x5d\x65\x6a\x78\x4a\x1f\x0e\xf7\x7f\xf7\xe3\x15\x5f\x74\x79\x69\x69\xa2\x79\xb7\x1f\xf7\x75\x06" +"\x32\x83\x44\x57\xfb\x08\x1b\x53\x64\x97\xa7\x6e\x1f\xa3\x72\x80\x91\x79\x1b\x6f\x72\x72\x71\x6e\xa3\x6d\xb8\x73\x1f\x6f\xbd\xbe" +"\x7f\xcd\x1b\xf7\x44\xf7\x0f\xf4\xf7\x2a\x1f\xca\x07\xf7\x31\xfb\x0a\xf7\x09\xfb\x32\x55\x5d\x80\x71\x5d\x1e\x9c\x7e\x7e\x91\x78" +"\x1b\x69\x78\x73\x60\x1f\x3b\x07\x60\x9e\x73\xad\xa9\x9c\x9c\xaf\x93\x1e\x8f\x9e\x91\x94\x9b\x97\x08\x9d\xa4\xb9\x98\xb2\x1b\xdf" +"\xcf\x53\x38\x99\x1f\x0e\xf7\x5b\xf7\x79\x15\xfb\x32\x98\xd5\x36\xf7\x0f\x1b\xbd\xb6\x9a\xa7\xad\x1f\xbd\xb6\xa9\xed\xf7\x0e\x1a" +"\xee\x78\xd4\x65\xba\x1e\xb7\x67\x57\xa2\x4e\x1b\xfb\x10\x3c\x2f\xfb\x2d\x83\x1f\x67\xf7\x13\x90\x27\x1d\x2c\x88\x1d\xf7\x07\x2b" +"\x1d\xad\x73\x9c\x5d\x1f\x86\xf7\x12\x06\xf7\x87\xf7\x89\x15\xa1\x9e\x84\x7e\x9a\x1f\xa7\x74\x9d\x45\x37\x1a\xfb\x13\x6b\x4f\x46" +"\x6d\x71\x99\xa2\x7a\x1e\x78\xa8\x81\xbc\xd3\x1a\xe5\x97\xc0\xa6\xa7\x1e\x9c\x9c\xa0\x94\xa3\x1b\x0e\xf8\x20\xf7\x68\x15\xfb\x00" +"\x6d\x07\x65\x0a\xf7\x28\x06\xb9\xa4\x9d\xad\xac\x72\x9e\x5d\x1f\x81\xf7\xf8\x95\x67\x1d\xfb\x72\x06\x45\x55\x7a\x69\x63\x1f\x65" +"\x6b\x76\x60\x5d\x1a\x4f\xad\x5c\xd1\x64\x1e\x5c\x62\x71\x6b\x5c\x46\x74\x8a\x80\x8a\x82\x87\x08\x79\x84\x7f\x79\x76\x2a\x0a\xc6" +"\x06\xd9\xf7\x08\xd2\xd7\xba\x9f\x08\xe6\xf3\x15\x43\x06\x3d\x46\xaf\xb5\xb1\xba\xa7\xcb\x1f\xf7\x00\x06\x0e\xf7\x2c\xf8\x61\x15" +"\xfb\xfa\x56\x07\x74\x7f\x89\x86\x82\x6d\x0a\x7c\x99\x80\x1e\x84\x96\x93\x89\xa8\x1b\xf7\x6a\x06\xa4\x95\x8d\x90\x94\x99\x1d\x56" +"\xf7\xfa\xf7\xcf\xf7\x04\x1d\xfc\x04\x07\x71\x49\x0a\x2d\x0a\x1e\x0e\xf7\x3e\xf8\x60\x15\xfb\xf7\x07\x4e\x89\x77\x7e\x65\x1a\x69" +"\xa3\x77\xb3\x8d\x1e\xa2\x8c\xe1\x8a\x05\xcb\x8a\xa3\x9a\xb1\x1a\xaf\x77\x9a\x57\x8d\x1e\xd8\x07\xb3\xcb\xb3\x9c\xaa\x1b\xb1\xa6" +"\x6b\x5d\x5f\x80\x7d\x5f\x7d\x1f\x69\x80\x7e\x7c\x6e\x1a\x6d\xa0\x79\xaf\xdf\xd0\xe0\xf3\xef\x4a\xcf\x2c\x5c\x60\x7e\x6a\x51\x1e" +"\xf7\x37\xc2\x07\x8c\x66\x8c\x80\x8f\x82\x08\x77\x92\x9f\x7e\xa2\x1b\xac\x9d\x9f\xaf\x8e\x8b\x9d\x8a\x92\x1f\x8a\xa9\x88\xd4\x86" +"\x90\x3b\x8d\x19\xfb\x91\x06\x3f\x89\x85\x86\x82\x42\x87\x69\x18\x89\x79\x8b\x85\x84\x1a\x69\x9f\x77\xad\xae\x98\x9d\xc2\x92\x1e" +"\x8e\xa1\x05\x0e\xf7\x9c\xf3\x15\xf7\xf8\xf7\x5e\x37\x07\x60\x9e\x74\xae\xae\x9e\xa2\xb6\x1e\xf7\x50\xfc\x6a\x9f\x1d\xbf\xfb\xf8" +"\x57\x06\x46\x0a\xc7\xf8\xf3\x15\x99\x97\x92\x95\x97\x1a\x9d\x7a\x9b\x78\x81\x81\x87\x82\x80\x1e\xfb\x00\x37\x05\x7d\x81\x84\x80" +"\x7e\x1a\x79\x9b\x7b\x9f\x95\x94\x8f\x95\x97\x1e\x0e\xf7\x22\xf7\xe3\x15\xde\x9a\xcd\xc3\xe0\x1b\xae\xb5\x80\x7c\xa4\x1f\xa0\x7e" +"\x93\x80\x90\x76\x08\x67\x93\x9c\x7a\xa9\x1b\xad\x9e\xa3\xb6\x1f\xdb\x07\xb6\x78\xa3\x6a\x77\x7d\x84\x7b\x7f\x1e\xa4\x5e\x5d\x97" +"\x54\x1b\xfb\x32\xfb\x0a\xfb\x09\xfb\x31\x1f\x4c\x07\xfb\x2a\xf7\x0f\x22\xf7\x44\xcd\xbe\x97\xa7\xbd\x1e\xb8\xa3\xa3\xa9\xa8\x1a" +"\xa6\x72\xa3\x6f\x7c\x7c\x83\x7a\x79\x1e\x69\x67\x6a\x80\x4e\x1b\xfb\x08\x44\xbf\xe4\x83\x1f\xf7\x75\x06\xb7\xa2\x9d\xad\xad\x74" +"\x9d\x5f\x1f\x0e\xb4\x1d\x0e\x21\x0a\x0e\xd4\x1d\xf9\x13\x43\x0a\x7d\x0a\x0e\xf7\xa1\xf8\x60\x15\xb2\xfb\xf9\x06\x68\x86\x7a\x7a" +"\x6e\x1a\x68\xa3\x7a\xbb\x1e\xd2\x06\xd0\xbc\x9c\xae\xad\x1f\xaa\xaa\x9c\xb6\xb8\x1a\xc0\x73\xbb\x60\xaa\x1e\x6c\xa2\x6a\x96\x57" +"\x90\x08\xf7\x0a\x07\xcb\x8c\xa0\x98\xb1\x28\x1d\xfb\x88\x06\x4b\x74\x7d\x66\x68\xa3\x79\xbb\x1f\x91\xfb\x94\x06\x3c\x89\x7d\x68" +"\x6e\x1b\x89\x06\x87\x8c\x05\x99\x07\xbd\x7d\x9d\x63\x64\x7c\x77\x56\x1e\x61\x07\x5a\xad\x73\xd2\xf5\xc3\xd6\xf7\x24\x1e\xf7\x27" +"\xac\x15\xbc\x81\xa1\x77\x65\x1a\x66\x75\x78\x5a\x84\x1e\x0e\xf8\x11\xf7\xe1\x15\xf7\x14\x30\x0a\x3f\x06\x61\x74\x79\x6a\x6e\x9f" +"\x76\xaa\x88\x1f\xfb\x13\xfb\x01\xf7\x13\x07\xab\x8e\x9f\xa0\xa8\x1a\xac\x74\x9d\x60\x1e\x3f\x5f\x0a\xfb\xf9\x07\x58\x8a\x76\x7c" +"\x68\x1a\x68\xa3\x79\xb9\x1e\xeb\x06\xb6\xa2\x9d\xac\xa9\x77\x9f\x6b\x8e\x1f\xf7\x12\xf7\x01\xfb\x12\x07\x6c\x88\x77\x76\x6e\x1a" +"\x6a\xa2\x79\xb5\x1e\xf7\x1a\x06\xf7\x13\xd3\xc3\xef\xf7\x03\x35\xcd\xfb\x24\x1f\x82\xfb\x79\x15\xf7\x12\x9d\x07\xcd\xba\x6e\x61" +"\x67\x6c\x78\x50\x1f\x0e\xf7\xaa\xf8\x60\x15\xc4\x82\x06\x79\x07\x63\x9f\x74\xae\xac\x9d\xa0\xb2\x1e\xa4\x07\x89\xa9\x88\xd0\x7e" +"\x96\x42\x8a\x19\xfb\x92\x06\x44\x8e\x7d\x7e\x87\x46\x8a\x6d\x18\x8a\x7a\x8b\x8b\x85\x1a\x63\x9d\x75\xad\xb3\x99\xa2\xce\x8c\x1e" +"\xc5\xfb\xf9\x06\x4f\x76\x7d\x65\x66\xa2\x7d\xca\x1f\xe2\x06\xca\xa3\x99\xb0\xad\x74\x9c\x5b\x8c\x1f\xe1\x07\xb3\xb6\xa8\x9a\xab" +"\x1b\xaf\x9d\x71\x59\x1f\x4a\x07\x5a\x8a\x75\x7a\x68\x1a\x67\xa3\x7d\xca\x1e\xca\x06\xca\xa2\x99\xb0\xab\x79\x9b\x64\x8f\x1f\xce" +"\x07\xf4\x4b\xd2\x2e\x67\x68\x80\x75\x65\x1e\x0e\x77\x0a\xfb\x40\xf7\x83\x15\x9b\x97\x91\x95\x97\x1a\x9d\x7a\x9b\x78\x81\x81\x87" +"\x82\x7f\x1e\xfb\x00\x37\x05\x7d\x80\x84\x80\x80\x1a\x78\x9c\x7b\x9f\x94\x94\x8f\x95\x98\x1e\x0e\x83\x0a\xfb\x0c\xf8\x7d\x15\x74" +"\x7c\x7c\x75\x4d\xd5\x55\xe2\xe1\xad\x1d\x78\x82\x83\x74\x84\x1f\x6a\x80\x6d\xf7\x37\x1d\x8d\x1d\x42\x7f\x7b\x5a\x1e\x75\x83\x80" +"\x7c\x75\x1a\x6e\xb5\x0a\x45\x72\x5a\x5d\x1f\x72\x71\x7c\x68\x6d\x1a\x41\xdd\x50\xf3\xc2\xc6\x97\xa1\xb9\x1e\x8c\xf7\x08\x44\x0a" +"\x0e\xf7\xec\xf8\x4f\x15\xc9\xb2\x95\xa0\xa0\x1f\x9c\x9e\x96\xa9\xaa\x1a\xaf\x75\xa3\x69\x79\x7c\x83\x7d\x80\x1e\x86\x85\x84\x73" +"\x8c\x82\x08\x80\x07\x7f\x88\x8a\x62\x8a\x1e\x36\x06\x45\x5b\x79\x62\x68\x1f\x68\x62\x7d\x51\x23\x1a\x20\x9a\x56\xb8\x5e\x1e\x5b" +"\xb9\xcc\x72\xd6\x1b\xf7\x23\xf4\xe7\xf7\x10\xf7\x13\x2a\xe4\xfb\x1c\x52\x61\x80\x71\x63\x1f\x95\xbb\x99\x95\xc7\x8d\x08\xb5\xfb" +"\x0e\x15\xd9\xc3\x5a\x47\x47\x53\x5a\x3c\x3d\x53\xbc\xce\xa9\x97\xa8\xa0\xa1\x1f\xa5\xa5\xa8\x96\xba\x1b\x0e\xea\xf3\x15\x81\x29" +"\x1d\xf7\xa3\x06\xce\xbb\x97\xa2\xaa\x1f\xa8\xa1\x9c\xac\xad\x1a\xb9\x71\xaa\x53\xa1\x1e\xa9\xa6\x99\xa8\xac\x1a\xa5\x82\xa2\x7a" +"\x9d\x1e\xa7\x70\x49\x9d\x3d\x1b\xfb\x78\x29\x1d\x95\x06\xf7\x00\x54\x15\xc2\xf5\x07\xc6\xad\x81\x7b\x75\x71\x84\x34\x1f\x35\xfb" +"\x36\x15\xc5\xf7\x13\x07\xe5\x9f\x86\x76\x76\x6c\x80\x50\x1f\x0e\x8f\x0a\x0e\xf8\x5f\x16\x68\x07\x58\x9d\x72\xb0\xb2\x99\xa1\xc7" +"\x1e\xbd\x07\x8d\xcb\x7d\x9c\x53\x8d\x08\xf7\x6d\x07\xba\x8d\xa0\x9b\xae\x1a\xb0\x73\x99\x4c\x1e\xfb\xc2\x06\x4c\x74\x7d\x66\x67" +"\xa3\x7a\xbb\x1f\x8e\x06\x90\xfb\x04\x06\x89\x34\x7b\x7c\x35\x88\x08\x69\xfb\x19\x06\x4b\x96\x79\xb4\xb5\x99\x9f\xc5\x1e\xac\x07" +"\xf7\x1e\xf7\xd5\x15\xf7\x03\xfb\x6d\xfb\x1d\x06\x9b\xa4\x95\xb0\xb6\x1a\x0e\x35\x1d\x0e\xf8\xbb\xf7\x34\x15\xb8\x07\xc9\x6f\xca" +"\x5d\xb5\x1e\xb2\x61\x40\xa5\x46\x1b\xfb\x27\xfb\x04\x29\xfb\x14\xfb\x1b\xf7\x00\x30\xf7\x34\xd5\xed\x9d\xa1\xbc\x1f\x9e\x93\x96" +"\x9c\x9e\x1a\xa7\x75\xa2\x6e\x81\x7c\x88\x85\x6f\x1e\x7a\x40\x6d\x86\x60\x1b\x42\x59\xa3\xba\x72\x1f\x8f\xf3\x15\xbb\xaa\xb6\xa1" +"\xca\x1b\xc9\xb7\x75\x5b\xaa\x1f\xfb\x7c\xf7\xe1\x15\x6b\x72\x73\x6d\x6c\xa5\x73\xaa\xab\xa4\xa3\xaa\xa9\x72\xa3\x6b\x1f\xf7\x61" +"\x4a\x1d\xf7\xf5\xf7\x9f\x15\xc3\x07\xa4\x9b\x94\x9a\xa0\x1a\xab\x71\x9d\x5d\x1e\x6b\x06\x5e\x71\x79\x6b\x76\x94\x7d\xa4\x7a\x1f" +"\x53\x07\x46\xf5\x05\xad\x74\x69\x9d\x62\x1b\x5f\x76\x77\x63\x1f\x63\x07\x65\x9c\x77\xaa\xa2\x99\x94\xa2\x95\x1e\x97\x69\x9c\x76" +"\xa3\x7d\x7a\x7e\x77\x73\x7d\x72\x66\x4a\x18\x5d\x8a\x76\x7a\x68\x1a\x6a\x9e\x7a\xad\x1e\xce\x06\xcf\xf7\x0a\x9b\xa7\xa0\x9f\x99" +"\x8e\x19\x47\x07\x73\x7b\x81\x7c\x77\xe1\x0a\x9b\x1f\xd0\x07\x99\x88\xa0\x76\x9c\x6f\xcf\xfb\x0a\x18\xcd\x06\xae\x9e\x9c\xab\xaf" +"\x76\x9c\x5d\x8c\x1f\x66\xcc\x7b\xa5\x7a\xa0\x78\x9a\x19\xa4\x99\x9a\x9f\x98\xae\x08\x75\x95\x99\x81\xa3\x1b\xaa\x9c\x9f\xb1\x1f" +"\xb3\x07\xb3\x75\x9f\x5f\x62\x69\x79\x69\x74\x1e\x0e\xf7\xc6\xf7\x3b\x15\xda\xba\x7f\x76\x74\x58\x79\x4a\x4b\x4e\x9b\xab\x4e\x1f" +"\x95\x78\x81\x8e\x7e\x1b\x70\x71\x72\x71\x6b\xab\x70\xcb\x74\x1f\x74\xcc\xc5\x81\xcb\x1b\xf7\x1f\xe2\xc2\xe2\xb4\x79\xa9\x65\xa6" +"\x1f\xa3\xa6\x96\xa3\xa8\x1a\xd6\x3b\xc1\xfb\x02\x58\x62\x80\x73\x63\x1e\xc1\x81\x80\x99\x6a\x1b\x6f\x73\x76\x72\x84\x8d\x80\x8d" +"\x80\x1f\x8e\x7d\x8c\x7c\x6e\x1a\x79\x8b\x76\x8a\x83\x1e\xb4\x0a\x67\x7f\x8a\x89\x82\x1f\x70\x84\x7e\x7b\x6f\x1a\x66\xa2\x7e\xcb" +"\x1e\x0e\x7d\x1d\x0e\x7d\x1d\xf7\x00\xf7\xc0\x15\x74\x7c\x7c\x75\x4d\xd5\x55\xe2\xe1\xad\x1d\x77\x83\x83\x70\x82\x1f\x6f\x82\x69" +"\x78\x61\xea\x0a\xba\x1d\x0e\xf8\x82\xf7\xd5\x15\xba\x8c\xa0\x9c\xad\x28\x1d\xfb\xd0\x06\x4b\x74\x7d\x65\x64\xa0\x7f\xce\x8a\x1f" +"\xfb\x38\x07\x74\x87\x79\x84\x82\x1e\x83\x83\x7d\x85\x81\x8c\x08\x88\x06\x85\x8c\x05\xb2\x88\x7a\x9e\x6a\x1b\x67\x7d\x76\x55\x1f" +"\x5c\x07\x70\xad\x7b\xc5\xf7\x05\xc5\xc4\xf7\x04\x1e\xf7\x38\xf7\x0a\xfb\x6e\x07\x5e\x8a\x75\x7a\x68\x1a\x67\xa2\x7d\xcb\x1e\xd0" +"\x06\xca\xa3\x99\xaf\xae\x75\x9c\x5d\x8c\x1f\x0e\xf7\x3f\xf7\x9d\x15\xe8\xfb\x2d\x05\xd7\x06\xe4\xf7\x2c\x05\xfb\x34\x6c\x07\x3a" +"\x0a\xf7\x15\x06\xb9\xa4\x9d\xad\xac\x77\x9c\x62\x8d\x1f\xf7\x6e\x30\x0a\xfb\x01\x06\xfb\x02\xfb\x4b\xfb\x04\xf7\x4b\x05\x20\x5f" +"\x0a\xfb\x6e\x88\x07\x69\x73\x76\x6c\x69\xa4\x79\xb9\x1f\xf7\x14\x39\x1d\x6d\x06\x0e\xf8\x26\xf7\x38\x15\x4f\x86\x07\x3a\x0a\xf7" +"\x07\x06\xb9\xa3\x9d\xae\xad\x76\x9b\x58\x8c\x1f\xf7\x6e\x30\x0a\x2c\xd0\x1d\x06\x0e\x25\x1d\x0e\xf8\x23\xf7\xd5\x15\xfb\x6e\x81" +"\x07\x5c\x73\x7a\x69\x69\xa3\x79\xba\x1f\xf7\x0c\x2b\x1d\xae\x76\x9a\x58\x8c\x1f\xf7\x6e\x07\xae\x90\x9c\x9b\xa9\x1a\xae\x73\x9d" +"\x5d\x1e\xfc\x10\x06\x5d\x73\x79\x69\x6c\x9c\x7a\xae\x87\x1f\xfb\x6e\x07\x58\x8a\x76\x7c\x68\x2a\x0a\xf7\x0c\x06\xb9\xa4\x9d\xad" +"\xad\x73\x9c\x5c\x1f\x81\xf7\x6e\x06\x0e\xb8\x1d\x6c\x0a\x64\x5b\x55\x0a\x0e\xf7\xf4\xf7\xd5\x15\xee\x37\x06\x24\x0a\xf7\x50\xfc" +"\x9b\xfb\x50\x2f\x0a\xdf\xeb\xfb\x6d\x4f\x07\xeb\x0a\xf7\x7a\x39\x1d\x4d\x06\x0e\xb6\x1d\x0e\xf7\xf5\xf8\x8e\x15\x8a\xcb\x80\x9b" +"\x61\x8d\x08\x5a\x50\x82\x81\x7f\x1f\x80\x82\x85\x7b\x79\x1a\x6b\x9e\x7d\xb8\x1e\x9e\x5d\x06\x8d\x79\x86\x8c\x82\x1b\x2d\x42\x29" +"\xfb\x11\xfb\x15\xcf\x2d\xea\x94\x92\x8b\x8d\x9f\x1f\x76\x7d\x07\x4b\x74\x7e\x65\x64\xa1\x7e\xcc\x1f\xf7\x1d\x06\xcb\xa3\x99\xb0" +"\xb2\x75\x98\x49\x1f\x7c\xa0\x06\x89\xa2\x90\x8b\x94\x1b\xec\xce\xe6\xf7\x17\xf7\x12\x42\xed\x2e\x82\x85\x8a\x89\x77\x1f\xfb\x00" +"\xfb\xe5\x15\x8a\x82\x85\x8a\x84\x1b\x61\x70\xb9\xd4\xcf\xa9\xbe\xb3\x90\x92\x8a\x89\x94\x1f\xf7\x00\x16\x8d\x97\x93\x8c\x8d\x1b" +"\xb6\xa7\x5c\x44\x42\x70\x5b\x62\x84\x85\x8c\x8d\x7f\x1f\x0e\x7a\x0a\xba\x1e\xf7\x05\x63\x1d\x82\x91\x84\x8d\x78\x8c\x08\x0e\xf8" +"\x83\xf7\xd5\x15\xbf\x8d\xa0\x9a\xae\xd3\x0a\xfb\x6e\xfb\x5c\xf7\x6e\x95\x06\xba\xa3\x9d\xad\xad\x73\xb0\x1d\x69\xa0\x7c\xbe\x89" +"\x1f\xfb\x6e\x2c\x0a\xf8\x19\x60\xf7\x66\x1d\xf7\x26\x28\x07\x0e\xf8\x16\xf3\x15\x5e\x06\x4b\x74\x7d\x65\x65\xa2\x7d\xcb\x1f\xf7" +"\x1c\x06\xca\xa3\x99\xb0\xae\x75\x9c\x5b\x8c\x1f\xf7\x6e\xc2\x0a\x4c\x07\x6f\x59\x6b\x81\x62\x1b\x62\x7c\x95\xa6\x1f\xf7\x05\x1d" +"\x35\xc0\x5d\xef\xbc\xb7\x95\xa0\xb4\x1e\x0e\xf7\x8a\xf3\x15\x3f\xf7\xd5\xfb\x02\x06\x5d\x73\x79\x68\x69\xa0\x7c\xbe\x8a\x1f\xfb" +"\x6f\x2c\x0a\xf8\x4c\x06\xc2\xa3\x9a\xaf\xad\x77\x9c\x62\x8d\x1f\xf7\x6e\x07\xbe\x8c\xa0\x9a\xae\x1a\xad\x73\x9d\x5c\x1e\xfb\x01" +"\xfb\xd5\x3f\xf7\x6e\x06\xac\x8e\x9c\x9c\xaa\x1a\xad\x74\x9d\x60\x1e\x3d\x06\x61\x75\x79\x6a\x6b\x9c\x79\xac\x89\x1f\x0e\xf7\x7f" +"\xf2\x15\x3f\xf7\xd6\xfb\x02\x72\x0a\xfb\x6e\x2c\x0a\xf8\x54\x60\x4a\x0a\xf7\x26\x29\xf7\x6e\x07\xbe\x8d\xa0\x9a\x6e\x1d\xfb\x02" +"\xfb\xd6\x3f\xf7\x6f\x06\xad\x8f\x9b\x9b\xa9\x1a\xae\x75\x9d\x5f\xae\x1d\x6d\x9b\x7a\xad\x87\x1f\x0e\xf7\x87\xf7\xd5\x15\xfb\x6d" +"\x81\x07\xeb\x0a\xf7\x3a\x06\xf7\x13\xcd\xb7\xdf\xb1\x7c\xae\x70\xa3\x1f\xa7\x6c\x59\x98\x3e\x1b\x62\xc2\xa2\x06\x4f\x1d\xfc\x04" +"\xfb\x50\x06\x24\x0a\xdf\x07\xf7\x81\xfb\x6d\x15\xc6\xa2\x07\xe1\xa3\x85\x75\x77\x6b\x80\x51\x1f\x0e\xf7\x4c\xf7\xd5\x15\x9c\x06" +"\x4f\x1d\xfb\x18\x06\x52\x1d\x92\xfb\x6d\x84\x06\xa3\x1d\xf7\x1e\x06\xf7\x0b\xce\xb9\xdd\xb2\x7b\xae\x70\xa3\x1f\xa6\x6b\x5c\x98" +"\x44\x1b\x7b\x06\xfb\x36\x04\xc5\x95\x07\xce\xa3\x84\x76\x77\x6d\x81\x55\x1f\xf7\x85\xf7\x6d\x15\xfb\x6d\x86\x07\x6d\x74\x74\x6d" +"\x6a\xa1\x79\xb4\x1f\xe0\x06\xba\xa3\x9c\xad\xaa\x79\x9d\x68\x8e\x1f\xf7\x6f\x07\xae\x90\x9d\x9c\xa9\x1a\xad\x73\x9c\x5c\x1e\x36" +"\x06\x62\x75\x79\x6a\x6d\xa2\x74\xa9\x1f\x0e\xf7\x5f\xf7\xd5\x15\x9e\x06\xb9\xa4\x9d\xad\xad\x73\x9d\x5c\x1f\xfb\x1d\x29\x1d\x95" +"\xfb\x6d\x81\x29\x1d\xf7\xa3\x06\xf7\x12\xcd\xb7\xde\xb1\x7b\xaf\x71\xa3\x1f\xa7\x6c\x59\x98\x3e\x1b\xfb\x25\x06\xfb\x36\x04\xc5" +"\xf7\x13\x07\xe2\xa2\x85\x75\x78\x6b\x80\x51\x1f\x0e\xf7\x9f\xf7\x9d\x15\x5f\x74\x7a\x69\x68\xa2\x79\xb7\x1f\xf7\x36\x06\x59\x79" +"\x57\x74\x2f\x1b\x4a\x5d\x97\xa4\x6c\x1f\x98\x7b\x81\x8f\x7d\x1b\x6f\x72\x73\x6f\x4e\xf0\x5f\xf7\x1f\xe0\xc7\x9b\xad\xb9\x1f\xc0" +"\xb3\xa7\xc5\xcf\x1a\xf7\x1f\x21\xec\xfb\x2d\x57\x60\x82\x78\x61\x1e\x96\x7d\x81\x8f\x7c\x1b\x69\x79\x73\x60\x1f\x4f\x07\x5e\x9e" +"\x74\xaf\xa8\x9c\x99\xa9\x92\x1e\x8e\x98\x8c\x8e\x8f\x91\x08\xa3\x9a\xb3\x9a\xc0\x1b\xd1\xb5\x76\x5b\xa6\x1f\x0e\xf7\x6e\xf7\x38" +"\x15\x20\x97\xda\x43\xf3\x1b\xf7\x0e\xd7\xe2\xf7\x1f\xf7\x1f\x3f\xe2\xfb\x0d\x23\x42\x4b\x22\x7a\x1f\x56\xc1\x90\x06\xb9\xa3\x9c" +"\xad\xad\x73\x9d\x5d\x1f\x2c\x5c\x0a\xf7\x07\x27\x1d\x86\xc7\x06\xf7\x8a\xf7\x3e\x15\xc1\xaf\x5a\x42\x42\x66\x59\x56\x56\x66\xbd" +"\xd4\xd3\xb0\xbd\xc0\x1f\x0e\xf8\x1a\xf3\x15\x78\x06\x52\x1d\xf7\x1d\x39\x1d\x81\xf7\x6d\x95\x39\x1d\xfb\xa3\x06\xfb\x13\x4a\x5f" +"\x36\x48\xb3\x5e\xd6\x79\x1f\x72\x75\x7e\x7e\x75\x70\x08\x56\x8a\x76\x7c\x67\x70\x0a\xc6\x06\x8f\x91\xc4\xd5\xc9\xbd\xd2\xa8\x19" +"\xb3\x06\xf7\x36\x04\x51\xfb\x12\x07\x34\x73\x91\xa0\x9f\xaa\x96\xc6\x1f\x0e\xf7\x30\xf7\xd5\x15\xfb\x6d\x57\x07\x46\x0a\x56\xf7" +"\x6d\xf7\xca\xf7\x50\x06\xb7\x56\x1d\x5f\x1e\x37\xfb\xfe\x9f\x1d\x0e\xeb\xf2\x15\x89\x06\x41\x0a\xbf\xc3\x9f\x95\x9c\x1d\x80\x6c" +"\x1a\xfb\xa9\x07\x5c\x8c\x68\x6d\x53\x1b\xfb\x00\x68\x1d\xf7\x03\x06\xf7\x05\x8c\xdd\xd8\xf2\x1a\xf7\xb6\x07\xec\x42\xcc\xfb\x00" +"\x59\x5c\x78\x69\x67\x1e\xde\xf7\x01\x07\xaa\x9b\x98\xa4\xa4\x7b\x98\x6c\x1f\xfb\x01\x06\xbc\x89\x7c\x9f\x66\x1b\x66\x7b\x77\x5a" +"\x8a\x1f\x5f\x06\x6c\x7b\x7e\x72\x72\x9b\x7e\xaa\x1f\xb7\x06\x0e\x8f\x0a\xc7\xf8\x61\xf7\x03\x1d\x9b\x7b\x9f\x94\x95\x8f\x95\x97" +"\x1e\x0e\xf7\x47\xf7\x9d\x15\xbb\xa6\xb5\xa0\xd1\x1b\xcd\xb3\x78\x66\x94\x1f\x67\x94\x99\x7e\xaa\x1b\xaf\x9e\xa2\xb8\x1f\xc7\x07" +"\xb6\x79\xa3\x69\x7c\x81\x87\x80\x7d\x1e\x9e\x60\x61\x94\x57\x1b\xfb\x2d\x21\x2a\xfb\x1f\x47\xa7\x51\xc0\x63\x1f\x69\xb9\xc7\x7b" +"\xe0\x1b\xf7\x1f\xf0\xb7\xc8\xa7\x72\xa3\x6f\x7d\x81\x87\x7e\x7b\x1f\x72\x6c\x5e\x7f\x4a\x1b\x2e\x57\xa2\xbd\x79\x1f\xf7\x36\x06" +"\xb7\xa2\x9d\xae\xad\x74\x9c\x5f\x1f\x0e\x42\x1d\x0e\xcd\x1d\x7d\x66\x1d\x0e\xf7\xf5\xf8\x3d\x15\xfb\x4a\x68\x1d\xd5\xfb\x6d\xfb" +"\x05\x06\x5e\x72\x79\x69\x69\xa4\x79\xb8\x1f\xf7\xe2\x06\xb8\xa4\x9d\xad\xad\x72\x9d\x5e\x1f\xfb\x05\x06\xfb\x58\xf8\x81\x43\x0a" +"\xc8\x1d\xf7\x8c\xf7\x59\x1d\xf8\x2f\xf7\xd5\x15\xb6\x8c\xa1\x9d\xac\x28\x1d\xfb\x7e\x06\x4c\x74\x7d\x66\x68\xa3\x79\xbb\x1f\x8e" +"\x06\x8f\xfb\x38\x06\x8a\x58\x83\x80\x65\x8a\x08\x86\x06\xb3\x88\x7a\x9e\x6b\x1b\x69\x7d\x76\x55\x1f\x5c\x07\x7d\x8f\x82\x94\x87" +"\x1e\x82\x9f\xae\x84\xa9\x1b\xed\xc4\xc9\xf6\x1f\xf7\x38\xc1\xfb\x6e\x07\x6a\x85\x7a\x7a\x6f\x1a\x69\xa5\x79\xbc\x1e\xb5\x06\xda" +"\xb4\x92\x9d\xa9\x1f\xb2\xa3\xa3\xb3\xb7\x1a\xb6\x76\xb3\x67\xa4\x1e\x6f\x9e\x69\x94\x56\x8c\x08\x23\x04\xb9\x89\x99\x83\x75\x1a" +"\x77\x79\x80\x68\x1e\x84\x06\x0e\xf8\x17\xf7\xa0\x15\xc1\x30\x0a\x3f\x06\x61\x74\x79\x6b\x6d\x9f\x77\xaa\x88\x1f\x55\xfb\x08\xc1" +"\x07\xaa\x8d\xa0\xa0\xa9\x1a\xab\x74\x9d\x60\x1e\x3f\x5c\x0a\xeb\x06\xb6\xa2\x9d\xac\xa9\x77\x9f\x6b\x8e\x1f\xc7\xf7\x08\x4f\x07" +"\x6c\x87\x77\x77\x6e\x1a\x6a\xa2\x79\xb5\x1e\xf7\x17\x06\xf7\x13\xcc\xb7\xe1\xe6\x47\xba\xfb\x17\x1f\x6d\xfb\x38\x15\xc7\x96\x07" +"\xe3\xa1\x85\x74\x77\x6c\x80\x50\x1f\x0e\xf7\x60\xf8\x67\x15\xf7\x01\x06\xed\x1d\xfc\x00\x52\x0a\x0e\xba\x1d\x52\xf7\x9a\xf7\x03" +"\x1d\x9c\x7b\x9d\x95\x95\x57\x1d\xf7\x68\xf7\xd7\x15\xab\x92\x99\x9b\xa7\x1a\xb0\x74\x99\x4b\x1e\x4c\x06\x4b\x74\x7d\x66\x68\xa0" +"\x7b\xba\x8a\x1f\xf7\x30\xfb\xa0\x79\x6c\x7b\x70\x7a\x7a\x81\x8d\x19\x8a\x06\x8a\x06\xc6\x89\x7f\x9d\x63\x1b\x62\x7d\x77\x4f\x1f" +"\x59\x07\x7a\x8f\x80\x94\x87\x1e\x80\xa3\xb6\x81\xa7\x1b\xc2\xba\xac\xcd\xb2\x1f\xf7\x5f\xf7\xf0\x05\xb9\x8c\x9f\x9b\xae\x1a\xb0" +"\x73\x99\x4c\x1e\x4e\x06\x4c\x74\x7d\x66\x6f\x99\x7b\xab\x84\x1f\x2b\xfb\x37\x05\xfb\x15\xf8\x62\x15\x74\x7c\x7c\x75\x4d\xd5\x55" +"\xe1\xe2\xad\x1d\x78\x82\x83\x74\x83\x1f\x6a\x81\x6c\x79\x5e\xea\x0a\xf7\x5b\xf3\x15\xf7\xf8\x95\x07\xba\xa4\x9d\xf7\x4b\x1d\x9e" +"\x7d\xc0\x89\x1f\xfb\xfa\xa0\x0a\xf7\xfa\x07\xc0\x8d\x9e\x99\x6e\x1d\xfb\x0c\x39\x0a\x95\xfb\xf8\x06\x0e\x82\x0a\xa8\xf7\x96\x15" +"\x62\x07\xfb\x1a\xf7\x03\x29\xf7\x2c\xf7\x29\xf7\x05\xee\xf7\x15\xf7\x18\xfb\x02\xe7\xfb\x32\x43\x25\x7a\x78\x5d\x1e\x72\x80\x7f" +"\x7c\x76\x1a\x6e\xa1\x74\xa8\x96\x96\x8d\x8e\x98\x1e\xa2\xe8\xa2\x8f\xb8\x1b\xdf\xbd\x73\x57\xa4\x1f\x89\x2f\x15\x59\x76\x57\x6f" +"\x46\x1b\x46\x58\xa7\xbd\x75\x1f\x0e\xf2\xcf\x15\x85\x80\x87\x80\x82\x1a\x74\xa2\x77\xa4\x9d\x9a\x94\x9d\x96\x1e\xee\xf7\x30\x05" +"\x89\x7c\x8a\x84\x81\x1a\x32\xcc\x4b\xe7\xe5\xcd\xcb\xe3\xe3\x49\xcb\x31\x64\x71\x83\x75\x6a\x1e\xf7\x2b\xf7\x84\x05\x92\x95\x8e" +"\x95\x96\x1a\xa2\x75\x9f\x72\x78\x7d\x82\x79\x80\x1e\xfb\x08\xfb\x4b\x05\xa1\x85\x7c\x96\x76\x1b\x7f\x86\x89\x7e\x78\x1f\x7d\x78" +"\x77\x84\x7a\x1b\x67\x71\xa8\xb5\xb4\xa6\xa7\xb2\xa5\x98\x82\x77\x8f\x1f\x75\x8e\x9c\x7d\xa1\x1b\x8c\x8d\x8b\x8c\x8e\x1f\x8d\x06" +"\xa0\x8e\x9a\x9a\x9f\x1a\x8a\x95\x05\x87\x9d\x8b\x8b\x91\x1a\x90\x8c\x93\x8d\x92\x1e\x8d\x93\x8b\x8c\x8f\x1a\x9f\x7d\x9b\x76\x8e" +"\x1e\x81\x8d\x05\x8c\x85\x86\x8c\x89\x1b\x84\x83\x88\x87\x85\x1f\x88\x86\x8b\x8b\x8a\x1b\x8a\x87\x8c\x8e\x82\x1f\x8d\x82\x7d\x8d" +"\x7f\x1b\x35\x49\x49\x35\x35\xcc\x49\xe1\xae\xaa\x95\xa1\xb0\x1f\xf7\x43\x24\x15\xb4\xa5\x6f\x61\x61\x70\x6f\x64\x64\x71\xa7\xb5" +"\xb5\xa5\xa7\xb1\x1f\x0e\xf7\x50\xf7\x22\x15\x8d\x45\x8e\x76\x95\x76\x08\x72\x98\x9f\x7d\xa3\x1b\xa8\xa3\x99\xab\xa8\x1f\x9d\x9f" +"\x9b\xa0\x96\x9e\x90\x94\x18\x8d\x8e\x8c\x8f\x8f\x1a\x92\x85\x90\x84\x84\x86\x87\x82\x84\x1e\x80\x7b\x05\x6c\x75\x7a\x7d\x7c\x1b" +"\x79\x84\x9e\xc0\x97\x8b\xa4\x8c\xa0\x1f\x9e\x07\xaf\x07\xf7\x1e\xf7\x44\xbe\xec\xe1\x1a\xc1\x6e\xae\x5f\x5f\x5a\x6a\x52\x64\x1e" +"\x60\x4b\x74\xfb\x01\x88\xfb\x3d\x8a\x4e\x18\x74\x6f\x86\x85\x79\x76\x88\x88\x19\x76\x75\x05\x85\x85\x89\x86\x86\x1a\x87\x07\x84" +"\x8f\x8e\x88\x91\x1b\x96\x8b\x8b\xb9\xb7\x1f\xec\xf7\x3d\x15\x8d\xb1\x05\xf7\x6d\x95\x9e\xd0\xbc\x1b\xa2\x9a\x76\x6b\x44\x64\x2f" +"\x45\x2b\x1f\x0e\xf8\x25\xf8\x61\x15\xad\x91\x9c\x9c\xa8\x1a\xb0\x74\x99\x4b\x1e\x52\x06\x4c\x73\x7d\x67\x68\xa2\x7a\xbc\x8a\x1f" +"\xfb\x51\x07\x2e\xf7\x7a\x73\xc3\x85\x90\x5f\x8c\x19\x5d\x06\x62\x73\x78\x6a\x70\x9c\x79\xab\x85\x1f\xfb\xfa\x07\x6a\x84\x7b\x7b" +"\x6f\x1a\x65\xa2\x7d\xcb\x1e\xc2\x06\xcc\xa2\x99\xb1\xae\x76\x9a\x57\x8d\x1f\xf7\x57\x07\xe6\xfb\x75\x05\x4f\xa3\x9a\x7d\xad\x1b" +"\xa3\x9f\x96\x9e\x97\x1f\x92\x96\x8d\x99\xb7\x1a\xa8\xf7\x5f\x15\x55\xa8\x6f\xc1\xc1\xa7\xa7\xc1\x1e\xf1\x07\xbb\x6b\xa9\x59\x59" +"\x6a\x6c\x5c\x1e\xd8\x85\x15\x92\x8c\x8f\x8e\x90\x8d\x88\x83\x1e\x2d\x07\x83\x8a\x88\x87\x87\x89\x8e\x93\x1e\x84\xfb\x00\x15\x57" +"\x76\x7d\x68\x6e\xa4\x7b\xb8\x1f\xa5\x06\xb6\xa4\x9b\xa8\xae\x77\x99\x58\x1f\x0e\xf8\x5a\xf7\xe2\x15\xd0\x61\x4e\xad\x3d\x1b\xfb" +"\x17\x23\x27\xfb\x12\xfb\x15\xf3\x2a\xf7\x1f\xdf\xbe\xa8\xcc\xaa\x1f\x9f\x4b\x05\x7a\x91\x9c\x80\xa0\x1b\xa9\x9e\x9d\xa6\x93\x8a" +"\x8f\x8a\x90\x1f\x55\xf7\x37\xd7\xf7\x2d\x05\x8f\x93\x8d\x94\x94\x1a\xa2\x73\x9f\x6e\x77\x82\x85\x76\x80\x1e\x32\xfb\x58\x15\x33" +"\x6f\x66\x68\x4a\x1b\x43\x53\xc1\xd0\xd0\xc3\xc1\xd3\xac\xa9\x7f\x75\xa1\x1f\x9e\x77\x95\x76\x9b\x5b\x08\x0e\xf8\xa0\xf7\xe3\x15" +"\x96\xa7\x91\x9f\x94\x1a\xa5\x76\x9e\x6c\x6c\x81\x81\x56\x76\x1e\x7a\x5f\x05\xda\x52\x5f\xa7\x45\x1b\xfb\x06\x35\x2a\xfb\x15\xfb" +"\x13\xe4\x28\xf7\x08\xce\xbf\xa9\xce\xba\x1f\xaa\x39\x05\xcb\x06\xb9\xa4\x9d\xad\xab\x78\x9c\x63\x8d\x1f\x89\x92\x88\x92\x85\x9a" +"\x83\xa2\x7d\xad\x82\x9e\x08\xfb\x09\x87\x15\x37\x62\x6b\x6c\x60\x1b\x56\x61\xc1\xd1\xcf\xb2\xbf\xbf\xb3\xad\x66\x2f\xb9\x1f\xa7" +"\xf7\xfd\xf7\x1a\x1d\x80\x84\x80\xf7\x4c\x1d\x23\x0a\xfb\x63\xf8\x40\x37\x1d\xf7\x4f\xf7\x98\x15\xf7\x51\xfb\xfe\x05\x7c\x93\x95" +"\x83\x95\x1b\x92\x8e\x8e\x93\x90\x8a\x8f\x87\x97\x1f\xfb\x24\xf7\xf5\xf7\x24\xf7\xf6\x05\x8e\x92\x8d\x94\x92\x1a\x91\x88\x8e\x84" +"\x81\x86\x87\x78\x7e\x1e\x0e\xf8\x32\xf7\x98\x15\xfb\x51\xf7\xff\x05\x9d\x7f\x85\x90\x81\x1b\x84\x88\x88\x85\x84\x8d\x82\x8e\x84" +"\x1f\xf7\x24\xfb\xf6\xfb\x24\xfb\xf5\x05\x87\x7f\x8a\x87\x86\x1a\x83\x8e\x88\x92\x95\x95\x93\x9a\x93\x1e\x0e\xf8\x81\xf2\x15\xf7" +"\x51\x07\xe6\x40\xc1\xfb\x12\x58\x42\x7f\x7b\x5a\x1e\x75\x83\x80\x7c\x75\x1a\x6e\xa2\x74\xa8\x95\x99\x8d\x8f\x9d\x1e\x96\xbb\xad" +"\x90\xad\x1b\xc8\xa6\x7e\x6e\x1f\x79\x07\x91\x68\x6a\x8e\x6a\x1b\x32\x46\x72\x5a\x5c\x1f\x72\x71\x7c\x68\x6c\x1a\x42\xde\x50\xf2" +"\xc2\xc5\x97\xa1\xba\x1e\x78\xbb\x07\x5b\x1d\xa2\xa0\xa6\xb4\xa9\x1f\xc7\xb8\x90\x90\xa5\x1a\x9b\x83\x9a\x7d\x96\x1e\x92\x20\x0a" +"\xfb\x0c\xab\x44\x0a\x0e\xf8\x76\xf8\x4b\x15\x74\x80\x84\x6e\x74\x1f\x6f\x75\x7f\x7f\xf7\x1e\x1d\x6b\x80\x77\xf7\x10\x1d\x57\xc7" +"\xb4\x76\xb4\x1b\xb5\xab\x9d\xb6\xb1\x1f\xae\xb2\x93\x99\xa0\x1a\xaa\x71\xa4\x6b\x1e\x8d\xfb\x4a\x15\x75\x7f\x84\x6f\x74\x1f\x6e" +"\x75\x7f\x80\x83\x1b\x85\x7f\x92\x98\x7c\x1f\xc8\x44\x70\x99\x5e\x1b\x5f\x69\x79\x60\x63\x1f\x6d\x6a\x80\x78\x77\x1a\x6d\xa6\x71" +"\xab\xa0\x95\x91\xab\xa6\x1e\xa7\xa3\x95\x94\x92\x1b\x91\x97\x83\x7b\x9e\x1f\x57\xc8\xb2\x77\xb5\x1b\xb5\xab\x9c\xb7\xb1\x1f\xae" +"\xb2\x93\x99\xa0\x1a\xa9\x71\xa4\x6b\x1e\x0e\x23\x0a\x2e\xf8\xa1\x95\x1d\x6a\x6d\x70\x67\x67\x6d\xa6\xac\xab\xa9\xa6\xaf\x1f\xbf" +"\xf7\x30\x15\x9d\x99\x91\x94\x99\xf3\x1d\xf7\x35\xf7\x9e\x15\xa9\xb8\x9a\xaa\x9a\x1a\x93\x83\x91\x82\x84\x87\x88\x7e\x80\x1e\x6c" +"\x68\x6e\x74\x4f\x69\x08\x78\x81\x87\x87\x84\x1a\x85\x8f\x85\x92\x87\x1e\x91\x88\x8c\x8a\x8f\x89\x91\x88\x19\x99\x82\xbc\x6e\xa3" +"\x77\xad\x64\x19\x84\x91\x8f\x89\x92\x1b\x94\x92\x92\x93\x9a\x76\xb5\x73\xab\x1f\xf7\xb3\xcf\x1d\x0e\xf7\x9b\xf8\xae\x15\xfc\x34" +"\x07\xa2\x6c\x5e\xa1\x7c\x1b\x83\x84\x84\x82\x84\x8d\x87\x93\x85\x1f\xb8\x65\x9a\x79\xb8\x41\x08\x7e\x92\x8e\x88\x94\x1b\x92\x8f" +"\x90\x9c\x95\x1f\xab\xc3\xa5\xab\xaf\xa9\x08\x98\x96\x8e\x90\x91\x1a\x94\x85\x93\x83\x7c\x6b\x7c\x6e\x5d\x1e\xf8\x33\x07\x0e\xf8" +"\xdd\xf7\x9f\x15\xfc\x3c\x06\xa3\xab\xa0\xb5\x9a\x1a\x93\x84\x92\x82\x84\x87\x89\x84\x85\x1e\x64\x5e\x78\x7c\x41\x60\x08\x7d\x83" +"\x88\x88\x83\x1a\x84\x8f\x87\x9e\x81\x1e\xc6\x6a\xaa\x73\xa9\x68\x08\x7f\x95\x90\x87\x91\x1b\x95\x93\x91\x93\x9a\x7b\xab\x6e\xb7" +"\x1f\xf8\x3c\x06\x0e\xa3\xf7\x6b\x15\xf8\x3c\xcf\x1d\xfc\x3c\x06\x0e\xf7\xd0\x7f\x15\xf8\x34\x07\x75\xaa\xb8\x75\xf7\x63\x1d\x89" +"\x8f\x83\x91\x1f\x63\xac\x79\xa0\x6c\xbd\x88\x8f\x88\x8f\x88\x91\x88\x90\x88\x90\x8a\x8c\x08\x98\x84\x88\x8e\x82\x1b\x84\x87\x87" +"\x79\x81\x1f\x69\x51\x74\x6e\x66\x6c\x08\x7e\x81\x88\x86\x85\x1a\x81\x91\x84\x93\x9a\xa9\x99\xa9\xbb\x1e\xfc\x34\x07\x0e\xf7\xa6" +"\xf7\x02\xda\x0a\x6e\xa5\x6b\xf7\x58\x1d\x93\x8f\x1f\xb7\xd4\x9e\xa4\xb8\xb0\x08\x92\x91\x8e\x8f\x92\x1a\x94\x84\x92\x83\x7c\x5f" +"\x75\x74\x6b\x1e\xf7\xae\x07\x74\xab\xb7\x76\xd3\x1d\xab\x9a\xa8\xb9\x1e\x0e\xf7\x57\x63\x15\x5f\xf7\x6a\xb7\x07\xfb\x18\xf7\x51" +"\xda\x0a\x70\xa5\x6a\xf7\x58\x1d\x92\x8f\x1f\xb6\xd5\x9f\xa3\xb8\xb0\x08\x92\x91\x8e\x8f\x92\x1a\x94\x84\x92\x83\x7c\x5e\x75\x75" +"\x6c\x1e\xf7\xad\x07\x75\xaa\xb8\x75\xd3\x1d\xac\x9a\xa8\xb8\x1e\x0e\xf7\x6f\x99\x15\x76\xad\xa8\x83\xb5\x1b\xf7\x03\xdf\xdf\xf7" +"\x03\xdd\x6a\xbc\x3f\xa9\x1f\xb1\xaa\x9c\xad\xb9\x1a\xe3\x43\xca\x27\x4c\x54\x72\x5e\x6c\x1e\x73\x6a\x82\x5b\x35\x1a\xfc\xc2\xf7" +"\x00\x07\xa8\xf8\x70\x15\x96\x06\xc4\x8a\x94\x8a\xa5\x81\x08\xb8\x7b\x9a\x76\x5a\x1a\x51\x6a\x64\x58\x5e\x68\x9c\xaf\x6f\x1e\xf7" +"\x88\x07\xe2\x9c\xa5\xc5\xb3\xa2\x77\x69\x58\x63\x6c\x46\x89\x1e\x0e\x3d\x0a\x32\xf7\xbf\x27\x0a\x3d\x0a\xfb\x73\xf7\xa3\x45\x1d" +"\x6c\x0a\x64\x5b\x55\x0a\xfb\x87\xf7\xad\x2e\x0a\x3d\x0a\xfb\x74\xf7\xe3\x36\x0a\x0e\xf7\xbf\xf7\x74\x15\xfb\x16\xf7\x5d\x05\x48" +"\x29\x1d\x91\x06\xf7\x12\xfb\x57\xfb\x2f\xfb\x84\x05\x7f\x78\x86\x7f\x7f\x1a\x71\xa5\x72\xa8\x9e\x9d\x98\xa3\x9b\x1e\xf7\x14\xf7" +"\x5a\xf7\x28\xfb\x73\x05\xce\x06\xba\xa3\x9d\xad\xad\x72\x9d\x5d\x1f\x84\x06\xfb\x24\xf7\x70\xf7\x22\xf7\x6b\x05\x97\x9d\x90\x97" +"\x98\x1a\xa6\x71\xa3\x6e\x78\x79\x7e\x73\x7c\x1e\x0e\xf7\xad\xf8\x88\x15\xfb\x1e\xfb\x07\xfb\x03\xfb\x1a\xfb\x22\xf7\x06\xfb\x05" +"\xf7\x24\xf7\x1f\xf7\x05\xf7\x03\xf7\x1c\xf7\x1f\xfb\x08\xf7\x06\xfb\x21\x1f\x8f\xfb\xbe\x15\xf5\x23\x05\x72\x67\x68\x80\x61\x1b" +"\x60\x6e\x94\xa3\x6c\x1f\x5d\xb8\x15\x70\xaf\x82\xa6\xb4\x1a\xb6\x96\xaf\xa3\xac\x1e\xf7\x02\xfb\x00\x05\xe8\x16\xf7\x02\xf6\x05" +"\xa1\x6d\x94\x72\x66\x1a\x5a\x80\x66\x73\x6a\x1e\xfb\x2c\xf7\x29\x15\xfb\x03\xf7\x00\x05\xa3\xac\xae\x96\xb5\x1b\xb7\xaa\x81\x72" +"\xae\x1f\x0e\xf8\x82\x16\x9b\x07\xfb\x15\x9e\x50\xce\xf7\x18\x1a\x9c\x6e\x91\x81\x94\x80\x08\x68\xa9\xba\x73\xb5\x1b\xd1\xc2\xc4" +"\xd4\xd1\x59\xc2\x4c\x78\x80\x88\x7e\x70\x1f\x89\x8a\x82\x86\x86\x89\x08\xa1\xaa\x93\xa3\xa8\x1a\xd0\x53\xc1\x44\x44\x54\x55\x45" +"\x70\x90\x7d\xa5\x61\x1e\x9c\x68\x78\x91\x76\x1b\x4f\x58\x52\x46\x43\xc3\x53\xd2\xca\xc0\xb1\xd2\xad\x1f\x8c\x78\x05\x85\x07\x8a" +"\x53\x6e\x4c\x62\x6a\x72\x78\x79\x84\x42\x7c\x08\x7b\x07\x0e\xf8\xab\xf8\x7d\x15\xf7\x06\xfb\x0c\x07\xdb\x1d\x21\x06\xa8\x64\x59" +"\x9a\x52\x1b\x3e\x52\x77\x60\x5c\x1f\x5c\x60\x73\x53\x4c\x1a\x4b\xa3\x53\xba\x60\x1e\x60\xba\xc4\x77\xd7\x1b\xc5\xb3\x97\xaa\xbc" +"\x1f\x6d\xf7\x0c\x45\x0a\x7f\xf7\xbf\x06\x89\x91\x91\x8a\x8e\x1b\x9a\x96\x93\x9e\x98\x1f\xdd\xf7\x0c\x05\x95\x9a\x8f\x93\xf7\x56" +"\x1d\xfb\xd6\xfb\x92\x9b\x0a\xf8\xab\xf8\x7f\x15\xf7\x04\xfb\x0c\x07\xdb\x1d\x24\x06\xa6\x5d\x5e\x98\x54\x1b\xfb\x23\xfb\x01\x25" +"\xfb\x18\xfb\x15\xf3\x32\xf7\x2a\xc0\xb8\x96\xa3\xb9\x1f\x77\xf7\x0c\x45\x0a\x7f\xf7\xb1\x97\x06\xba\xa2\x9d\xad\x9c\x83\x9a\x7d" +"\x95\x1f\x92\x20\x0a\xfb\x9d\xfb\x31\x15\xdc\xcb\x52\x41\x43\x54\x60\x30\x33\x53\xb7\xd1\xd6\xca\xc4\xdd\x1f\x0e\xf7\x87\xf8\x41" +"\x15\x6b\x84\x78\x84\x72\x7f\x08\x3d\x65\x58\x3f\x3c\x1a\xfb\x12\xf7\x07\x28\xf7\x27\xf7\x28\xf7\x06\xee\xf7\x14\xda\x64\xc3\x27" +"\xce\x1e\xfb\x1f\xe8\x7d\x97\xa0\x1a\xa0\x9e\x93\xbc\x1e\xd9\x06\xae\x9d\x9b\xa8\xa6\x79\x99\x68\x1f\x4d\x06\x5d\x5f\x85\x81\x72" +"\x1f\x5d\x79\x6b\x60\x60\x1a\x6b\x9b\x74\xbb\x66\x1e\xd4\x27\x15\xe4\xce\x54\x41\x44\x48\x54\x34\x34\x48\xc2\xd2\xd3\xce\xc4\xe0" +"\x1f\x0e\xf6\xf7\xa2\x15\xe1\x20\xdc\xfb\x09\xaf\x47\xba\xe0\xe3\xf7\x0f\xdb\xeb\x4d\xd1\xfb\x10\xf7\x44\x6e\xc4\x60\x3a\x53\x3c" +"\xfb\x06\xfb\x23\x08\x0e\xf8\x17\xf8\xe1\x6a\x0a\x78\x7b\x7f\x83\x7a\x80\x1e\x44\x6b\x0a\x9b\x7c\x9f\x99\x97\x93\x9c\x96\x1e\xf7" +"\x0e\xdf\x15\x9e\x1d\xfb\xaa\x4a\x1d\x35\x1d\xfb\xa6\xf8\x2c\x3b\x1d\x35\x1d\xfb\x19\xf7\xcc\x45\x1d\x35\x1d\xfb\x1a\xf8\x0c\x36" +"\x0a\x0e\xf8\xd9\xf7\x7b\x15\xbe\xfc\x8d\x07\x8f\xf7\x10\xcd\xc7\xf7\x15\x88\x08\xf7\xc6\xbe\xfb\xba\xf2\x0a\x49\x99\x50\xa4\x65" +"\x1e\xa2\x68\xae\x6c\xac\x7e\x08\x7c\xaf\xa7\x87\xd4\x1b\xf7\xba\xbe\xfb\xc6\x06\xfb\x14\x88\x4a\xc5\x85\xf7\x0c\x08\x90\x07\x0e" +"\x35\x1d\xfb\x94\xf7\xf1\x37\x1d\xf7\x5b\xf7\xa3\x15\xbd\xbd\xa4\x98\xba\x1b\xc4\xa7\x76\x5f\x1f\xfb\xb0\x07\x8a\x5a\x6b\x6f\x52" +"\x8a\x08\x5f\x5e\x0a\x95\x97\x89\xa5\x1b\xba\x06\xf7\x07\x8c\xdd\xd8\x89\xf2\x08\xf7\xb4\xf7\x5a\x1d\x5d\x1b\x55\x6a\x7e\x63\x5d" +"\x1f\xb4\x29\x07\xcc\x1d\x06\x0e\xf7\x21\x1d\xfb\x18\xf7\x03\x2f\xf7\x33\x97\x8d\x8b\x8c\x9a\x1e\x69\x6e\x7c\x6e\x65\x8a\x0a\xb3" +"\xc3\xbb\xe4\xad\x1f\xab\x98\x98\x99\xa2\x1a\xa8\x75\xa2\x6e\x80\x80\x89\x88\x7e\x1e\x74\x31\x71\x87\x5d\x1b\x38\x59\x5e\x1d\x0e" +"\xf8\x1c\xf7\xa2\x15\x88\x76\x80\x8b\x75\x1b\x51\x60\x9e\xa3\x9e\xa9\x97\xb6\x9c\xa6\x88\x88\x9d\x1f\x87\xa2\x8b\x8b\x94\x1b\xa3" +"\x9e\x9f\xa4\x9e\x81\x99\x79\x93\x1f\x96\x71\x5a\x94\x65\x1b\x22\x42\x59\x42\x6a\x97\x7a\xb9\x66\x1f\x5b\x72\x6f\x64\x5e\x1a\x3e" +"\xdc\x53\xf7\x05\xb8\xcb\x98\x9a\xaa\x1e\x9d\x95\x93\x98\xa1\x1a\xa4\x79\xa0\x74\x84\x81\x8a\x89\x81\x1e\x81\x5d\x78\x88\x6e\x1b" +"\x58\x64\x9d\xa2\xa6\xbe\xa0\xcf\x9e\x9b\x8a\x89\x9f\x1f\x0e\xf8\x14\xf7\xa1\x15\x57\x06\x43\x61\x98\xa2\x9b\xa7\x98\xb1\xbe\xb0" +"\x7a\x64\xad\x1f\x78\x9c\x98\x84\x9c\x1b\xa9\xa6\xa6\xa6\x88\x1f\x8e\x07\x89\xb7\x8c\xa3\x05\x8e\x07\xab\x8e\x74\xa4\x6b\x1b\x75" +"\x7d\x84\x78\x7e\x1f\x9d\x66\x68\x93\x5f\x1b\x25\x3e\x54\x42\x6b\x9a\x72\xab\x72\x1f\x66\x70\x78\x69\x63\x1a\x64\x9e\x69\xae\x70" +"\x1e\x6f\xb1\xbb\x7e\xce\x1b\xbc\xb7\x92\x99\xb6\x1f\xb4\x99\xa1\x9f\xa3\x1a\xa7\x70\xa2\x6b\x81\x7f\x89\x87\x7e\x1e\x7c\x5c\x6e" +"\x86\x67\x1b\x58\x62\x9c\x9f\xa3\xbe\x9c\xd4\x1f\xbe\x06\x9c\xf8\x22\x15\x9b\x97\x91\x96\x97\x1a\x9d\x7a\x9b\x78\x82\x80\x53\x1d" +"\x7d\x80\x84\x7f\xf0\x0a\xf7\x00\xf7\xdb\x15\x70\x83\xf7\x38\x1d\x84\x96\x98\x88\xa5\x1b\xf8\x14\x06\xa2\x98\x8d\x91\x95\x37\x0a" +"\xfc\x14\xfb\x42\x15\x96\x1d\xf8\x14\x06\xa2\x99\x8d\x91\x94\x37\x0a\xfc\x14\xf7\xef\x15\x96\x1d\xf8\x14\x06\xa2\x98\x8d\x91\x95" +"\x37\x0a\x0e\xf8\x71\xf7\x54\x15\x8a\xcf\x87\xa8\x7d\xaa\x08\xcc\x6e\x47\xb2\x35\x1b\xfb\x14\x3b\x37\xfb\x1a\xfb\x1a\xd8\x3c\xf7" +"\x15\xeb\xce\xb4\xd7\xa5\x1f\x8c\x8e\x8d\x8f\x05\x5e\x06\x8a\x89\x8b\x8a\x88\x87\x08\x5a\x72\x5a\x70\x4a\x1b\x41\x69\xa1\xc8\x77" +"\x1f\xd6\x07\xf7\x96\xb4\x15\xfb\x94\xd3\x06\xc5\xa9\xab\xa0\xc8\x1b\xcb\xbd\x6d\x5a\x9e\x1f\x0e\x84\x0a\x0e\x84\x0a\xf7\x3a\xf7" +"\x39\xcb\x0a\x7f\x84\x80\x7f\x1a\x79\x9c\x7b\x9e\x94\x96\x57\x1d\xf7\xb2\xf8\x8a\xd2\x1d\xf7\xbb\xf8\x98\xd2\x1d\x0e\xf8\x30\xf7" +"\x9e\x15\xfb\x6b\xfb\xb9\x58\xf7\xed\xf8\xc6\xfb\xed\x58\xf7\xb9\xfb\x56\xfb\xb9\x58\x07\x0e\xf7\xd6\xf7\xac\x15\xf6\x94\xe0\xe9" +"\xf7\x01\x1a\xf7\x0a\x2b\xea\xfb\x0a\xfb\x0a\x2c\x2c\xfb\x0a\xfb\x01\xe0\x2d\xf5\x82\x1e\x32\xfb\x29\x64\xf7\x29\xfb\x2c\xb7\xf7" +"\x2c\xf7\x28\xb2\xfb\x28\x07\x72\xf8\x69\x15\xeb\xd8\x40\x2f\x2d\x3f\x3f\x2d\x2e\x3f\xd6\xe9\xe6\xd7\xd8\xe5\x1f\x0e\xf7\x17\xf7" +"\x7c\x15\xb6\x88\x06\x71\x0a\x7b\x95\x9d\x82\xef\x1d\x81\x88\x80\x71\x1a\x89\x60\xf7\x13\xf7\x8c\x07\x76\x8d\x83\x91\x82\x1e\x7b" +"\x94\x9d\x82\x9e\x1b\x9c\x9c\x93\x98\x95\x1f\x93\x95\x8d\x94\xa6\x1a\xee\xda\x1d\xf7\x49\xb2\x0a\x4d\x06\xf7\xe5\xf7\x9d\x15\x24" +"\x8e\x1d\x81\x1e\x95\x84\x95\x89\xa3\x8a\x08\xfb\x35\x78\x07\x89\x1d\xf7\x58\x29\x0a\x45\x06\x8c\xd9\x05\xc8\xb3\xad\xad\xa1\x1b" +"\x96\x96\x86\x80\x97\x1f\x7c\x9e\x93\x87\x9c\x1b\xa8\xa2\xa2\xa8\x9d\x82\x9a\x76\x9c\x1f\xa2\x6d\x67\x99\x6d\x1b\x67\x7d\x82\x54" +"\x58\x1f\x0e\xf7\xbe\xf7\x1d\x15\xfb\x1d\xf7\xb4\x05\x46\x06\x5c\x73\x79\x69\x69\xa0\x7b\xbc\x8a\x1f\xf7\x2b\xfb\xd2\x05\x81\x5d" +"\x87\x6f\x68\x1a\x48\xa3\x67\xb8\xb8\xa3\xaf\xce\xae\x87\xad\x81\xb3\x1e\xf7\x1e\xf7\xaf\x05\x97\x91\x93\x99\x8c\x1b\x8d\x8d\x8f" +"\x8c\x93\x8c\x08\xb7\x92\x9d\x9b\xac\x1a\xad\x75\x9d\x60\x4f\x6b\x6f\x32\x60\x1e\x0e\x7a\x1d\xfb\x03\xf7\xdd\x3b\x1d\xbc\x1d\xa9" +"\xf7\x87\x2e\x0a\x7a\x1d\xf7\x02\xf7\xb7\x15\x95\x98\x8f\x95\xf7\x56\x1d\x39\xfb\x0c\x05\x82\x7e\x87\x81\x81\x1a\x77\x9d\x7a\xa2" +"\x9a\x96\x92\x9f\x98\x1e\x0e\xbc\x1d\xa8\xf7\xbd\x15\xa0\x1d\xa6\xac\xae\x6f\xa6\x67\x1f\x0e\xf8\xee\xf7\xf8\x15\xfc\x81\xf7\x65" +"\x05\x90\x7e\x80\x8e\x82\x1b\x7b\x78\x7f\x7b\x83\x1f\x8a\x89\x05\x88\x85\x89\x84\x83\x1a\x75\x97\x7d\xa6\x7f\x1e\xf7\xb2\xfb\x0b" +"\xfb\xb2\xfb\x0f\x05\x70\x7f\x7f\x7d\x75\x1a\x85\x8d\x83\x8e\x84\x1e\x8c\x8a\x05\x7a\x93\x9e\x7f\x9c\x1b\x93\x97\x8e\x90\x97\x1f" +"\x7f\x5f\x15\x65\x74\x79\x6d\x6d\xa2\x79\xb1\x1f\xf8\x1e\x06\xb0\xa2\x9d\xa9\xa9\x74\x9d\x66\x1f\x0e\xf7\x5b\xf8\x67\x15\xf7\x01" +"\x06\xed\x1d\xfc\x00\x52\x0a\x0e\xf7\x5b\xad\x0a\x52\x0a\xf1\xf7\xde\x26\x0a\xf7\xc0\x75\x15\x9b\xd2\xba\xdb\xe3\xf7\x02\x08\xd5" +"\xe9\xa4\xbf\xc9\x1a\xca\x55\xc0\x4a\x4b\x5d\x62\x3f\x76\x1e\xd9\x72\x5f\xb2\x4b\x1b\x4a\x58\x56\x47\x57\x9b\x68\xcc\x33\x1f\xf7" +"\x09\xfb\x30\xa9\x56\xa0\x3b\x08\x0e\xd1\x16\xf8\x61\xf7\xcb\x06\xfb\x7b\xf7\x92\xfb\x7a\xfb\x92\x05\xbd\xfb\x99\x15\xf7\x85\x07" +"\xf7\x48\xf7\x5a\xf7\x49\xfb\x5a\x05\xfb\x85\x07\x0e\xcd\x1d\xfb\x56\xdd\x1d\xf7\x90\xf8\x3d\x15\xfb\x43\x06\x70\x49\x0a\x68\xa3" +"\x7a\xba\x1e\xce\xfb\x6f\x47\x5b\x0a\xf7\x84\x06\xba\xa3\xaa\x1d\x6f\x1b\x4b\x06\x84\x66\x1d\xf7\x83\xfb\x40\x15\xfb\xe5\x07\x5c" +"\x67\x6c\x55\x1e\xfb\x03\x5e\x0a\x96\x97\xb8\x0a\xfb\x6a\x07\xc5\x0a\xf7\x30\xf7\xac\x15\xfb\x13\xfb\x00\xf7\x13\x06\x0e\x25\x0a" +"\xfb\x44\xf8\x8a\x37\x1d\xf7\xc0\xf7\x8a\x15\x52\xba\xc8\x69\xbf\x1b\xa7\xa5\x93\x98\x9f\x1f\xaa\xa1\xa2\xba\xb2\x1a\xd0\x50\xc3" +"\x43\x54\x4f\x68\x54\x61\x1e\xc6\x59\x56\xa9\x55\x1b\x43\x50\x52\x44\x47\xc4\x52\xd1\xc7\xb8\xa4\xca\xc1\x1f\xae\xb2\x15\xb9\xab" +"\xbd\xa9\xb6\x1b\xba\xaa\x6d\x5e\x5e\x6c\x6b\x61\x77\x76\x91\x97\x75\x1f\x7a\x94\x8b\x8b\x5c\xb9\x08\x47\x8f\x15\x5c\x66\x58\x6d" +"\x61\x1b\x5e\x6e\xaa\xba\xb6\xaa\xa9\xb8\xb4\xb3\x74\x58\xba\x1f\x0e\xf7\xa7\x5c\x15\x44\x84\x6f\x7b\x84\x88\x8d\x99\x83\x1e\x9a" +"\x80\x7c\x94\x7a\x1b\x71\x79\x7a\x72\x6d\xa5\x76\xb0\xa7\xa7\x98\xa3\xa2\x1f\xa9\xab\x93\xa9\xe4\x1a\xf8\x8a\x07\xca\x92\xa6\x9d" +"\x90\x8f\x87\x82\x91\x1e\x77\x99\x95\x85\x9f\x1b\xa5\x9d\x9c\xa3\xa9\x72\xa0\x68\x73\x72\x82\x7c\x77\x1f\x66\x6e\x7d\x60\x32\x1a" +"\x0e\xf7\xda\xf9\x0e\x15\x57\xfd\x35\x06\x4b\x83\x70\x7a\x86\x87\x8f\x94\x85\x1e\xa0\x7d\x81\x92\x77\x1b\x72\x78\x7a\x72\x6e\xa4" +"\x75\xae\xa3\xa4\x94\x9a\x9f\x1f\xb0\xa8\x99\xb6\xe4\x1a\x0e\xf7\xa6\xfb\x4a\x15\xbf\xf9\x35\x06\xca\x93\xa6\x9c\x90\x8f\x87\x82" +"\x91\x1e\x77\x99\x95\x85\x9f\x1b\xa5\x9d\x9c\xa3\xa9\x72\xa0\x68\x73\x72\x82\x7c\x77\x1f\x66\x6e\x7d\x60\x32\x1a\x0e\xf8\xad\xf7" +"\x74\x15\xf7\x2a\x86\xae\x70\xb8\x1e\xce\x61\x3e\xb4\x35\x1b\x57\x5b\x7c\x70\x62\x1f\x58\x68\x6e\x5d\x81\x4d\x08\x86\x69\x8a\x75" +"\x2a\x1a\xfb\x52\x07\x75\x94\x7f\x9c\x9b\x95\x98\xa0\x1e\xf7\x55\x07\x8c\xe3\x8b\x8b\x95\x1a\x8e\xbf\x92\xa9\x9a\xa1\x08\xbd\xad" +"\xc8\xab\xcb\x1b\xc8\xc6\x6e\x5e\xab\x1f\xa6\x66\x91\x66\xfb\x1c\x1a\xfb\x55\x07\x75\x94\x7f\x9b\x9b\x96\x99\x9f\x1e\x0e\xf7\xc5" +"\xf8\xc7\x15\xfb\x33\xfb\x13\xfb\x10\xfb\x2f\xfb\x32\xf7\x11\xfb\x12\xf7\x31\xf7\x2f\xf7\x12\xf7\x12\xf7\x30\xf7\x2d\xfb\x12\xf7" +"\x14\xfb\x2b\x1f\x30\xfb\x34\xf7\x2e\x1d\xf7\xa2\x34\x15\x86\x48\x82\x6c\x74\x69\x08\x5a\x6a\x5a\x72\x4b\x1b\x4f\x5e\xa0\xb4\x6a" +"\x1f\x6e\xb0\x80\xad\x85\xd4\x95\x63\x93\x7a\x9e\x75\x08\x61\xae\xbc\x76\xca\x1b\xc9\xbc\xa0\xb5\xae\x1f\x9e\xa1\x93\x9c\x95\xb3" +"\x08\x29\xe2\xf7\x2e\x1d\x0e\x86\x1d\xf7\x9c\x06\x5b\x1d\x95\x91\x99\x94\x98\x1f\x95\x9a\xb9\xb1\xa5\x9a\x08\xa8\x9c\x93\x96\xa2" +"\x33\x1d\x80\x81\x8d\x70\x1b\xfb\x0a\x06\x7d\x66\x1d\x0e\xc3\x0a\x85\x85\xe8\x1d\x0e\xc3\x0a\x86\x84\xe8\x1d\x66\xf7\x84\x59\x0a" +"\xe6\x1d\x56\x1d\x5e\x1e\xf7\x33\xf7\x93\x6a\x0a\x77\x7c\x7f\x83\x7a\x80\x1e\x44\x6b\x0a\x9b\x7c\x9f\x99\x97\x93\x9c\x96\x1e\xf7" +"\x0e\xdf\x15\x9e\x1d\xfb\xaa\x4a\x1d\xe6\x1d\x79\xa2\x67\x68\x78\x73\x5f\x1e\xf7\x3b\xf7\x64\xf7\x1a\x1d\x7f\x84\x81\xf7\x4c\x1d" +"\x25\x0a\xc5\xc5\x1d\xc8\x1d\xf7\x15\xf7\x94\xf2\x1d\x87\x7d\x1a\x76\x9d\x7a\xa0\x95\x93\x8e\x95\x97\x1e\x0e\xf7\x85\xf7\xd6\x15" +"\xaf\x8e\x9d\x9c\xaa\x1a\xad\x73\x9d\x5d\x1e\x2d\x72\x0a\xfb\x6d\x07\x58\x89\x76\x7c\x68\x2a\x0a\xf7\x04\x06\xb9\xa3\x9d\xae\xad" +"\x76\x9a\x58\x8d\x1f\xc9\x07\xc2\x86\xba\x5e\xca\x20\x8d\x87\x18\x8e\x86\x05\xdd\x27\x1d\x78\x06\x68\xc2\x63\xb7\x67\xa2\xf7\x05" +"\xea\x18\xb8\x8d\xa0\x9b\xad\x1a\xad\x73\x9d\x5c\x1e\x65\x06\xfb\x54\xfb\x38\x05\x0e\xb7\x1d\xf7\x0e\xfb\x0b\x15\x95\x99\x8f\x95" +"\x93\x1a\xa0\x79\x9c\x75\x79\x82\x85\x77\x7d\x1e\x39\xfb\x0c\x05\x83\x7f\x86\x7f\x82\x1a\x77\x9d\x7a\xa2\x9b\x95\x92\x9f\x98\x1e" +"\x0e\xf7\x6f\xf7\x33\x15\x99\x95\xec\x39\x05\x81\x7e\x87\x82\x7e\x2a\x0a\xf7\x0a\x06\xba\x67\x0a\x81\x8c\x6f\x1b\x6b\x06\xfb\x2f" +"\xf7\x17\xf7\x06\xe2\x05\xa5\x06\xa3\x96\x8d\x91\x8c\x1d\xfb\x04\x06\x72\x80\xbe\x0a\x7d\x8f\x81\x95\x7f\x1e\x46\x57\x05\xf7\x1f" +"\xfb\x0c\x07\x73\x80\x89\x86\x82\x3b\x0a\x7a\x93\x7b\x99\xf7\x52\x1d\x97\xfb\x6e\x7f\x06\xce\x0a\x2d\x0a\x1e\xf7\x0c\x06\x0e\x34" +"\x0a\xf0\xf9\x0a\x26\x1d\xe6\xf2\x15\x5e\xf7\x0c\x0a\xe9\x06\xba\xa3\x9d\xad\xa9\x7b\x9b\x6a\x90\x1f\xe2\xf7\x3e\xec\xfb\x3e\x05" +"\x6a\x85\x7c\x7b\x6e\x1a\x69\xa4\x79\xb9\x1e\xec\x06\xb9\xa4\x9d\xad\xad\x75\x9b\x5d\x8c\x1f\xfb\xb0\xf8\x88\x05\x23\x06\x52\x1d" +"\xb4\x06\xcc\xfb\x08\x05\x0e\x34\x0a\xf7\x3b\xf8\x4f\x15\x94\x98\x8f\x95\x94\x1a\x9f\x79\x9d\x75\x7a\x81\x85\x76\x7d\x1e\x39\xfb" +"\x0b\x05\x82\x7e\x87\x80\x81\x1a\x77\x9e\x7a\xa1\x9b\x94\x91\xa0\x99\x1e\x0e\x34\x0a\x7e\xfb\x72\x23\x1d\x34\x0a\xf7\x44\xf7\x3e" +"\x15\xb3\xaa\xa9\xb0\xb1\x6c\xa8\x63\x1f\x7a\x62\x1d\xf7\x7d\xf7\xf7\x15\xf7\xb1\xf7\x0b\x05\xa6\x97\x97\x99\xa1\x1a\x92\x89\x92" +"\x88\x92\x1e\x8a\x8d\x05\x9a\x84\x78\x98\x7a\x1b\x82\x80\x88\x86\x7e\x1f\xfc\x80\xfb\x65\xf8\x80\xfb\x6b\x05\x86\x97\x97\x88\x93" +"\x1b\x9c\x9f\x98\x9b\x92\x1f\x8c\x8c\x05\x8e\x92\x8d\x93\x91\x1a\xa1\x7f\x99\x70\x97\x1e\x6c\xfb\x7b\x15\xb0\xa2\x9d\xa9\xa9\x75" +"\x9d\x65\x1f\xfc\x1d\x06\x65\x74\x79\x6d\x6d\xa2\x79\xb1\x1f\x0e\xf7\x36\xf7\x4b\x15\x83\x57\x7a\x74\x6a\x87\x08\x66\x84\x7b\x7b" +"\xef\x0a\xad\x76\xa1\x69\x6e\x79\x7c\x6f\x86\x1f\xfb\x56\x06\x97\xa9\x8f\x9a\x8f\xad\x08\xf7\x03\x69\x0a\xfb\x06\x06\x87\xa5\x05" +"\xf7\x0a\x69\x0a\xfb\x1a\x06\x88\x98\x05\x7b\xc0\x8a\x91\x9e\xc4\x0a\x39\x24\x42\x47\x2c\x70\x8e\x7c\x99\x60\x1f\x58\x06\x74\x7f" +"\x81\x77\x77\x97\x80\xa2\x1f\xcf\x06\x8d\x82\x8c\x88\x8d\x7d\x08\x42\xf7\x0b\x0a\x0e\xf7\xc3\xf2\x15\xf7\xf5\x07\xa8\xa5\x99\xc2" +"\xab\xb5\x87\x85\xb0\x1e\x89\x98\x95\x8a\x92\x1b\xa7\xa1\xa2\xa9\xa3\x7b\x9c\x6e\x93\x1f\x93\x6a\x4d\x92\x60\x1b\xfb\x0d\x3f\x53" +"\x30\x1f\x6c\x61\x07\x70\x83\x8a\x4f\x0a\x7a\x79\x1a\x68\xa3\x7a\xb9\x1e\xb6\xfb\x6f\x55\x06\x89\x1d\xf7\xbd\x31\x1d\x0e\xf7\xe4" +"\xf8\x30\x15\x92\x75\x77\x8e\x76\x1b\xfb\x0b\x2c\x2c\xfb\x0a\xfb\x0a\xea\x2c\xf7\x0a\xf7\x0a\xea\xea\xf7\x0a\xdb\x5e\xd4\x45\xb0" +"\x1f\xe3\xf7\x53\x05\x61\xaa\xaa\x6d\x95\x1b\x92\x8f\x8f\x90\x8f\x89\x8f\x85\x95\x1f\x75\xad\x78\xc0\x88\xaf\x08\x9e\x8a\x8a\x8e" +"\x85\x1b\x87\x87\x89\x83\x81\x1f\x78\x7a\x4a\x73\x67\x88\x08\x79\x88\x87\x89\x83\x1a\x80\xa3\x84\xb2\x1e\x9f\x06\x9f\x8c\x05\x8d" +"\x06\xfb\x31\xfb\x79\x15\xea\xd8\x40\x2f\x2d\x40\x3f\x2d\x2e\x3f\xd6\xe8\xe7\xd7\xd8\xe5\x1f\x0e\xf7\xb5\xf7\x06\x1d\x0e\xf7\xa6" +"\xf7\x28\x15\x90\x7e\x7a\x8f\x7d\x1b\x57\x5d\x5e\x59\x6e\xa1\x78\xad\xd3\xbe\xc2\xda\x1f\xf7\x8b\x07\xba\x84\xb3\x4b\x46\x1a\x60" +"\x83\x69\x77\x5e\x1e\xa2\x06\xa9\xb0\x9b\xb9\xbc\x1a\xca\x73\xc7\x59\xc7\x1e\x61\xbe\x8a\x8c\x86\x90\x85\x94\x19\xbc\x66\x07\x0e" +"\xf7\xd8\xf8\x71\x15\xa1\x70\xa2\x77\xa2\x7e\xc8\x6a\x96\x84\x90\x82\x08\x92\x7f\x8f\x78\x74\x1a\xfb\x89\x07\x92\x79\x71\x90\x76" +"\x1b\x3f\x48\x53\x4c\x66\xaa\x74\xbd\xc3\xc0\xa3\xb4\xac\x1f\xa2\xa7\x92\xa2\x8e\xbe\x08\xf8\x14\x07\x8c\xd8\x67\xd8\x59\xa9\x34" +"\xc1\x18\x80\x94\x05\x7d\x9a\x84\x9e\xa3\x1a\x99\x5b\xfc\x9b\x07\x92\x79\x73\x8f\x76\x1b\x41\x49\x53\x4c\x66\xaa\x74\xbb\xc2\xbf" +"\xa3\xb4\xac\x1f\xa1\xa7\x92\xa2\x8e\xbf\x08\xf7\x2c\xf7\x40\x15\xfb\x0d\xca\x70\xb3\x88\xf7\x0d\x8e\x89\x18\xf7\x0d\x4c\xa5\x64" +"\x90\xfb\x0e\x08\x0e\xf7\x5b\x46\x1d\xf7\x94\xf7\x68\x27\x0a\xf7\x73\x46\x1d\x56\xf7\x44\x15\x93\x98\x90\x96\x93\x1a\xa0\x79\x9c" +"\x75\x7a\x81\x85\x77\x7d\x1e\x39\xfb\x0c\x05\x82\x7e\x87\x80\x82\x1a\x77\x9d\x7a\xa2\x9b\x95\x92\x9e\x99\x1e\x0e\xf7\x5b\x46\x1d" +"\xf1\xf7\x4c\x45\x1d\xf7\x5b\x46\x1d\xf7\x22\xfc\x8b\x23\x1d\xf7\xda\xf7\x7c\x15\xf7\x93\xbd\xfb\x79\x06\xec\xf7\x49\x05\xf7\x18" +"\xbe\x22\x06\x97\xa9\x96\xa1\x96\x9a\x08\x8f\x90\x8d\x8f\x8e\x1a\x96\x7e\x96\x7f\x7e\x85\x87\x7b\x83\x1e\x60\x3a\x05\xfb\x1a\xf2" +"\x0a\xfb\x10\xb7\x3b\xe6\x63\x1e\x6e\x55\x05\x87\x83\x89\x85\x86\x1a\x7f\x97\x80\x98\x97\x92\x90\x9a\x93\x1e\xac\xca\x05\x87\xac" +"\x8f\x8b\xb8\x1b\xf7\xba\xbe\xfb\xc6\x06\x73\x84\x8b\x8d\x7e\x1f\xb2\xf7\x47\x15\x31\xfb\x3c\x4a\xa1\x68\xc3\x87\xe0\x19\x90\x07" +"\xf7\xd2\xf7\x7b\x15\x2a\xfb\x49\x05\xfb\x71\x90\x06\x91\xf7\x0c\xcc\xc6\xf7\x14\x88\x08\x0e\xf8\x54\xf8\x32\x15\x92\x97\x05\x91" +"\x96\x8e\x94\x95\x1a\xa9\x71\xa4\x6c\x78\x77\x7d\x77\x7f\x1e\x67\x4c\x05\xfb\x68\x06\x96\x1d\xf7\x29\x06\x67\x4b\x05\xfb\x05\x06" +"\x71\x82\xf7\x18\x1d\xbd\x06\x7c\x71\x05\x85\x81\x87\x7d\x81\x1a\x71\xa5\x74\xa9\xa1\x9e\x97\x9f\x97\x1e\xb7\xd8\x05\xf7\x62\x06" +"\xa2\x98\x8d\x91\x95\x1f\x9c\x94\x96\x9e\x9e\x1a\x9d\x82\x9c\x7c\x95\x1e\x93\x7f\x81\x8d\x6f\x1b\xfb\x23\x06\xaf\xcb\x05\xf6\x06" +"\xa2\x99\x8d\x91\x94\x37\x0a\x0e\xf7\x3f\xf8\x3d\x15\x28\x06\x67\x73\x78\x6e\x6d\xa3\x78\xaf\x1f\xa2\x06\xf7\x42\xfb\xe2\x05\xd8" +"\x06\xf7\x14\xf7\x0b\xca\xee\xdd\x1a\xb3\x7a\xbd\x72\xaa\x1e\x9a\x7f\x7c\x92\x79\x1b\x6d\x72\x74\x6f\x84\x8d\x83\x8e\x85\x1f\x9f" +"\x63\x8e\x81\x71\x1a\x59\x6c\x55\x49\x48\x1e\x0e\x25\x1d\xfb\x1e\xf7\xde\xdf\x1d\x25\x1d\xaf\xf7\x99\xca\x1d\x25\x1d\xfb\x0c\xf7" +"\xa3\x37\x1d\xf7\xc0\xba\x15\x60\xa7\xaa\x78\xb8\x1b\xb5\xb2\x9e\xaa\xa6\x1f\xa6\xad\x99\xbc\xcf\x1a\xd9\x76\xd0\x67\xb8\x1e\xae" +"\x6f\x62\xa3\x6b\x1b\x6f\x74\x73\x6e\x76\x92\x82\xa6\x7b\x1f\x96\x84\x8e\x89\x8f\x88\x08\xaa\x73\x9d\x55\x41\x1a\x57\x7b\x6a\x72" +"\x6f\x7a\xb0\xd0\x87\x1e\x8a\xa5\x8a\x91\x88\x93\x08\xa2\x84\x7a\x97\x71\x1b\x73\x7a\x81\x77\x83\x1f\x87\x81\x8b\x87\x89\x6c\x08" +"\x45\x87\x7b\x67\x6e\x1b\x72\x7b\xac\xc1\xc1\x99\xc5\x9e\xa2\x1f\x93\x94\x93\x92\x99\x93\x08\xa9\x9d\x93\x95\x9f\x1a\xa9\x74\xa3" +"\x6e\x69\x60\x70\x62\x6e\x1e\x6a\x5e\x79\x4a\x42\x1a\xfb\x12\xc2\x40\xe8\xb9\xa9\x9d\xb7\xa8\x1e\x0e\xf7\xc0\xa8\x15\x6d\xa7\xaa" +"\x7d\xb5\x1b\xec\xc2\xd4\xf7\x13\xd9\x76\xd1\x67\xb8\x1f\xae\x6f\x62\xa3\x6b\x1b\x6f\x74\x73\x6e\x76\x92\x82\xa6\x7b\x1f\x96\x84" +"\x8e\x89\x8f\x88\x08\xaa\x73\x9d\x55\x41\x1a\x57\x7b\x6a\x72\x6f\x7a\xb0\xd0\x87\x1e\x8a\xa5\x8a\x91\x88\x93\x08\xa2\x84\x7a\x97" +"\x71\x1b\x73\x7a\x81\x77\x83\x1f\x87\x81\x8b\x87\x89\x6c\x08\x45\x87\x7b\x67\x6e\x1b\x72\x7b\xac\xc1\xc1\x99\xc5\x9e\xa2\x1f\x93" +"\x94\x93\x92\x99\x93\x08\xa9\x9d\x93\x95\x9f\x1a\xa9\x74\xa3\x6e\x69\x60\x6f\x63\x6e\x1e\x6a\x5e\x79\x4a\x42\x1a\xfb\x14\xc2\x42" +"\xec\xb6\xa8\x98\xaa\xa8\x1e\xf0\xf8\xac\x15\x9b\x97\x91\x95\x98\x1a\x9d\x7a\x9b\x78\x82\x80\x86\x82\x7f\x1e\xfb\x00\x38\x05\x7d" +"\x80\x84\x7f\xf0\x0a\x25\x1d\x0e\xf7\xc1\xf8\x49\x15\xfb\x22\xfb\x09\x23\xfb\x13\xfb\x0f\xf7\x07\x29\xf7\x24\xf7\x24\xf7\x07\xec" +"\xf7\x0e\xf7\x15\xfb\x08\xf3\xfb\x23\x1f\x23\x04\xde\xcf\x51\x45\x4d\x45\x55\x3a\x39\x46\xc1\xca\xd1\xcf\xc4\xde\x1f\xf4\xf7\x7c" +"\xcb\x0a\x80\x85\x80\x7e\x1a\x79\x9c\x7b\x9d\x95\x95\x8f\x95\x97\x1e\x0e\xcf\x8e\x15\xf8\x66\xec\xfc\x02\xf7\xf5\x27\x06\x0e\x80" +"\x0a\xe1\xf7\xa1\x15\x9d\x99\x91\x95\x99\x1a\xa0\x79\x9c\x74\x7f\x84\x88\x7f\x7c\x1e\xfb\x1a\xf7\x4a\x1d\x8f\x97\x9b\x1e\x0e\xf7" +"\x2b\xf8\xbc\x15\x7d\x8c\x95\x82\x9a\x1b\xac\x8c\x05\xbb\xc4\x77\x6c\xb5\x1f\xa8\x76\x9e\x76\xa7\x60\x08\xa7\x5e\x67\x96\x57\x1b" +"\xfb\x16\x24\x28\xfb\x11\xfb\x11\xf2\x27\xf7\x17\xf7\x15\xf3\xee\xf7\x10\xe9\x64\xf7\x00\x4e\xd1\x1f\xcb\x55\x33\xb0\x29\x1b\x70" +"\x88\x8a\x84\x84\x1f\x87\x87\x89\x84\x84\x1a\xf7\x27\xfb\x40\x15\xf3\xdb\x40\x28\x2b\x3b\x3e\x26\x26\x3a\xd8\xec\xea\xdb\xd9\xee" +"\x1f\x0e\xf8\x50\xf7\x49\x15\xd3\x06\xa6\x99\x99\xa3\xa4\x7d\x98\x70\x1f\x43\xb2\x06\xaa\x80\x9b\x75\x75\x80\x7b\x6c\x1e\x64\x85" +"\x07\x71\x7d\x7e\x72\x73\x99\x7d\xa5\x1f\x91\xfb\x01\x06\x56\xb0\x69\xc5\xa5\xb0\x95\x98\xa3\x1e\xa0\x97\x92\x95\x9d\x1a\xa0\x7d" +"\x9c\x79\x84\x87\x8a\x85\x81\x1e\x7f\x77\x77\x85\x75\x1b\x72\x87\x8e\x9d\x1f\xfb\xaa\xf7\x00\x15\xce\x8e\xa4\x91\xa8\x9e\x08\xbf" +"\xac\xad\xca\xcd\x1a\xf6\x3a\xd8\xfb\x05\x1e\x23\x06\x75\x82\x89\x86\x83\x1f\x7d\x81\x82\x7a\x79\x1a\x7b\x93\x7b\x96\x81\x1e\x84" +"\x95\x93\x89\xa0\x1b\xfb\xfa\x07\x65\x77\x79\x6a\x69\xa0\x79\xb4\x1f\xf7\x41\x06\xb4\xa0\x9d\xad\x9b\x84\x9a\x7f\x95\x1f\x93\x81" +"\x82\x8d\x73\x1b\x39\x06\xf7\xf9\x04\x99\x06\xc4\xae\x6c\x57\x57\x68\x6b\x52\x1f\x7d\x06\x0e\xf7\x7d\xfb\x21\x15\x24\x0a\xf7\x12" +"\x07\xc4\x93\xad\x98\xae\xa5\x08\xc3\xb4\xac\xcc\xd2\x1a\xf7\x05\x2c\xf2\x22\x62\x65\x78\x6c\x75\x1e\x7b\x76\x85\x6d\x5a\x1a\xfb" +"\x4e\x07\x53\x9a\x72\xb0\xcf\x1a\xbc\x9a\xaf\xae\xb2\x1e\x99\x9a\x90\x96\x9a\x1a\xa6\x73\xa3\x70\x4d\x4b\xfb\x02\x20\x39\xa7\x4d" +"\xc2\x64\x1e\xa8\x76\xa3\x82\xc0\x81\x08\xf7\x00\xf7\xb6\x15\xb3\x8d\x91\x97\xba\xb9\x53\x51\x4e\x62\x5d\x49\x80\x1e\x0e\xf7\x6b" +"\xf7\xd6\x15\xf7\x3e\xfb\x6e\x8a\x06\x70\x83\x89\x85\x81\x3b\x0a\x7b\x94\x7b\x98\x81\x1e\x83\x96\x94\x89\xa8\x1b\xf7\x04\x06\xa6" +"\x92\x8c\x92\x95\x1f\x9b\x96\x95\x9b\x9c\x1a\x9b\x83\x99\x7c\x96\x1e\x94\x7f\x84\x8d\x6f\x1b\x88\xf7\x6e\x93\x06\xa5\x92\xf7\x54" +"\x1d\x9b\x7d\x94\x1e\x93\x80\x82\x8d\x70\x1b\xfc\x26\x06\x72\x83\xc9\x0a\x93\xfb\x6e\x88\x06\x71\x84\x89\x85\x80\x1f\x7a\x80\x82" +"\x7b\x7a\x1a\x7b\x93\x7c\x9a\x80\x1e\x83\x97\x92\x89\xa7\x1b\xf7\x04\x06\xa6\x93\x8c\x92\x95\x1f\x9b\x94\x95\x9c\x9d\x1a\x9b\x82" +"\x9b\x7e\x95\x1e\x93\x80\x82\x8d\x6e\x1b\x8a\x06\x0e\xf8\x93\xf8\xae\x15\x92\x06\xae\x8a\xa3\x9f\xab\x1a\x93\x07\x8a\xac\x74\x9f" +"\x66\x89\x08\xfc\x44\x06\x66\x8d\x74\x77\x8a\x6a\x08\x83\x07\x8c\x6a\xa2\x77\xb0\x8d\x08\x98\xfc\x9b\x7e\x06\x66\x8d\x74\x77\x8a" +"\x6a\x08\x83\x07\x8c\x6a\xa2\x77\xb0\x8d\x08\xf7\x13\x06\xb0\x89\xa2\x9f\x8c\xac\x08\x93\x07\xaa\x74\xa0\x6a\x8a\x1e\x88\xf8\x9b" +"\xf7\x4a\xfc\x9b\x83\x06\x68\x8d\x73\x77\x6a\x1a\x83\x07\x8c\x6a\xa2\x77\xb0\x8d\x08\xf7\x13\x06\xb0\x89\xa2\x9f\x8c\xac\x08\x93" +"\x07\xab\x73\x9f\x68\x8a\x1e\x84\x06\x0e\xf7\xe9\xf8\x64\x15\xfb\x2b\x65\x86\x71\x5e\x1f\x46\x62\x61\x3f\x37\x1a\x3e\xad\x46\xc8" +"\x5f\x1e\x67\xbd\xae\x85\xf7\x39\x1b\xf7\x56\x06\xa0\x99\x95\x9b\x9b\x7f\x94\x74\x1f\xfb\x58\x06\xfb\x14\x60\x90\x9e\x68\x1f\x54" +"\xa8\x65\xcb\xcb\x1a\xc5\xab\xc7\xba\xaa\x1e\xa6\xb3\xb0\x90\xf7\x23\x1b\xf7\x58\x06\xa1\x98\x95\x9b\x9b\x7e\x94\x75\x1f\x0e\xf7" +"\x74\x16\xf7\x2d\xb0\x90\xa5\xb8\x1f\xd0\xb4\xb5\xd7\xdf\x1a\xd8\x68\xd0\x4f\xb7\x1e\xaf\x59\x67\x91\xfb\x39\x1b\xfb\x55\x06\x75" +"\x7e\x82\x7b\x7b\x98\x81\xa1\x1f\xf7\x58\x06\xf7\x16\xb3\x86\x78\xaf\x1f\xc2\x6f\xb1\x4a\x4b\x1a\x51\x6b\x50\x5b\x6b\x1e\x71\x65" +"\x63\x85\xfb\x21\x1b\xfb\x58\x06\x74\x7f\x82\x7b\x7c\x99\x80\xa0\x1f\x0e\xf7\x8a\xfb\x21\x15\x24\x0a\xf7\x15\x07\xf7\x03\x91\xc9" +"\xce\x89\xf7\x02\x08\xf7\x2b\x07\xb4\x8d\x9f\x9b\xac\x1a\xad\x73\x9d\x5c\x1e\x29\xfb\x98\x06\x5b\x7c\x78\x5b\x81\x1e\xf8\x53\x07" +"\xb7\x78\xa3\x68\x68\x78\x74\x5e\x1e\xfc\x53\x07\x5b\x96\x7e\x9c\x8a\xbc\x08\xf7\x98\x29\x07\x5c\x73\x79\x69\x6b\x9f\x7a\xb4\x89" +"\x1f\xfb\x2b\x07\x88\xfb\x01\xcd\x45\xf6\x87\x08\x0e\xf8\x68\xf7\x5d\x15\x89\x8c\x8b\x8c\x8a\x8c\x7b\x9c\x83\x94\x77\x9b\xc3\x1d" +"\xf7\x00\xe7\x06\x9e\x83\x9d\x7d\xa6\x6f\x88\x8a\x18\x6e\x81\x7f\x7e\x75\x1a\x76\x9f\x76\x9f\x90\x97\x8e\x8f\x98\x1e\xab\x96\x90" +"\x84\xaa\x61\x97\x79\x94\x78\x19\x8e\x85\x05\xdc\xec\x0a\x82\x9c\x7e\x94\x1e\x71\x1d\x80\x06\x84\x94\x89\x8e\x82\x99\x9b\x91\x18" +"\xa8\x95\x97\x98\xa1\x1a\x9f\x78\xa0\x78\x82\x80\x89\x87\x7e\x1e\xfb\xcc\xee\x15\xf7\x26\xf7\x00\x07\xc8\xb8\x6f\x64\x5d\x4f\x6a" +"\x39\x1f\x0e\x58\x1d\xf7\x41\xf7\x78\x27\x0a\xf7\x2e\xf7\xd1\x15\x22\x06\x79\x8c\x80\x82\x8a\x7a\x08\x8a\x07\x8c\x7a\x96\x82\x9d" +"\x8c\x08\xc7\x06\xe4\xfb\xb0\xf7\x85\xf9\x2f\x05\xf7\x3b\x06\x9c\x98\x96\x9a\x9b\x80\x94\x78\x1f\xfb\x66\x06\xfb\x55\xfc\xcc\x05" +"\x0e\x58\x1d\xb2\xf7\x5c\x45\x1d\x58\x1d\xc6\xfc\x7b\x23\x1d\xf7\x0b\xf8\x19\x15\xf8\x12\x06\xa1\x96\x94\x9b\x9c\x80\x94\x75\x1f" +"\xfc\x46\xfb\x88\x06\x77\x94\x80\x9c\x9c\x94\x96\x9f\x1e\x0e\xf7\x53\xa3\x15\x71\xb5\xb4\x7e\xba\x1b\xf7\x10\xf2\xf3\xf7\x12\xf7" +"\x13\x2a\xea\xfb\x17\x3d\x48\x6d\x53\x5f\x1f\x65\x5d\x81\x66\x32\x1a\xfb\xd4\x2f\x0a\xf7\x14\xf8\x6e\x15\xd2\xbd\x5a\x45\x47\x55" +"\x52\x4a\x67\x64\x9d\xa8\x70\x1f\x78\xa0\x82\xa5\xaa\x1a\xd0\xc0\xbd\xd6\x1e\x0e\x42\x1d\x54\xf7\x99\x27\x0a\xf7\xe4\x7d\x15\xf7" +"\x0c\x96\xd6\xbf\xd5\x1a\xb9\x70\xb4\x5e\xa4\x1e\x6d\x9b\x61\x96\x41\x94\x4b\x94\x85\x8c\x7e\x8f\x08\x7c\x91\x82\x92\x92\x1a\x99" +"\xbb\x9a\xba\xb4\xac\x82\x79\xa5\x1e\x6c\x9d\x97\x83\xa4\x47\x0a\xae\x07\x9e\x8a\x92\x88\x94\x1e\x9e\x86\x77\x98\x75\x1b\x7a\x83" +"\x85\x7a\x81\x1f\x9a\x66\x62\x93\x5b\x1b\xfb\x0f\x34\x53\x3c\x3e\xc7\x63\xf7\x22\x7c\x1f\xc1\x86\xa0\x87\x9b\x85\x08\x9f\x83\x97" +"\x80\x80\x1a\x77\x56\x7a\x4f\x56\x61\x97\xa2\x70\x1e\xa9\x82\x79\x99\x6f\x1b\x79\x54\x1d\x84\x6f\x1a\x6b\x07\x71\x8c\x84\x92\x81" +"\x1e\x7c\x95\x9c\x82\x9f\x1b\x98\x93\x8e\x93\x96\x1f\xa6\x7e\xab\x83\xb6\x87\x08\x36\x88\x0a\xb2\x81\xa8\x1b\xcc\xb9\xb3\xc3\x4e" +"\x0a\x42\x1d\xfb\x65\xf7\x87\x2e\x0a\x42\x1d\xfb\x3d\xfc\x5a\x23\x1d\xf7\x5f\xf7\x06\x1d\xf7\x60\x16\xe4\xf7\x58\x05\x97\xa5\x8e" +"\x95\xf7\x3b\x1d\x0e\xf7\xe8\xf8\x49\x15\x35\x59\x82\x72\x5b\x1f\x44\x66\x5c\x3f\x3c\x1a\xfb\x13\xf7\x04\x28\xf7\x24\xf7\x22\xf7" +"\x05\xee\xf7\x11\xb8\x7b\xb4\x6b\xb2\x1e\xb9\x06\xa5\x94\x32\x1d\x9b\x9d\x1a\xa0\x7d\xa0\x78\x91\x1e\x8e\x81\x84\x8c\x77\x1b\xfb" +"\x93\x24\x15\xe0\xcb\x56\x45\x46\x4b\x55\x38\x37\x4b\xc1\xd0\xd0\xcb\xc1\xdd\x1f\x0e\xf7\x6d\xf8\x23\x15\x75\x79\x7a\x75\x76\x9c" +"\x79\xa1\xa1\x9c\x9c\xa1\xa0\x7a\x9d\x76\x1f\xf7\x41\x8c\x15\x75\x79\x79\x76\x75\x9d\x79\xa1\xa0\x9d\x9d\xa0\xa1\x79\x9d\x76\x1f" +"\xe9\x37\x15\x82\x64\x83\x7b\x77\x73\x08\x61\x66\x5c\x77\x4d\x1b\x4c\x5d\x9f\xb5\x66\x1f\x77\xa3\x83\x9b\x82\xb2\x90\x48\x93\x6c" +"\xa2\x68\x08\x5b\xac\xbd\x72\xcb\x1b\xc6\xba\xa0\xb4\xab\x1f\xa8\xb0\x96\xae\x90\xd3\x08\xfb\x47\xf7\x8b\x15\xfb\x33\xfb\x13\xfb" +"\x10\xfb\x2f\xfb\x32\xf7\x11\xfb\x12\xf7\x31\xf7\x2f\xf7\x12\xf7\x12\xf7\x30\xf7\x2d\xfb\x12\xf7\x14\xfb\x2b\x1f\x83\x66\x15\xf7" +"\x1d\xf7\x03\xfb\x00\xfb\x1b\xfb\x1d\xfb\x01\xfb\x01\xfb\x1c\xfb\x1b\xfb\x01\xf7\x01\xf7\x1c\xf7\x19\xf7\x02\xf7\x03\xf7\x17\x1f" +"\x0e\xf7\x22\x16\xf8\x09\x9d\x06\xfb\x11\x91\x51\xcd\x8d\xf7\x17\x08\x4a\xad\xaf\x72\xc3\x1b\xc1\xb8\xba\xc5\xc0\x77\xaa\x38\xd7" +"\x1f\x37\xd8\x7c\xa1\x6d\xe5\x7f\x44\x5c\x47\x3a\x4a\x08\x4d\x58\x70\x5f\x5a\x1a\x51\xba\x5b\xc4\xc3\xb3\xa8\xc8\xa8\x1e\xfb\x14" +"\x90\x47\x40\xfb\x0e\x1b\x0e\xf8\x37\xf8\xab\x15\x91\x42\x8c\x6d\xa2\x75\xaa\x8a\x19\x90\x06\xac\x8c\xa1\xa3\x8a\xab\x08\xf7\x0f" +"\x07\xad\x8c\x72\xa2\x67\x1b\xfb\xeb\x06\x67\x8c\x72\x74\x6b\x1a\x7e\x07\x7b\x8e\x82\x95\x7e\x1e\xf7\x39\xfb\x73\xfb\x3d\xfb\xba" +"\x05\x84\x7f\x89\x84\x7e\x1a\x7c\x07\x6a\xa4\x74\xaf\x8c\x1e\xf7\xf2\x06\xaf\xa3\xa2\xad\x1f\xf7\x10\x07\xab\x75\xa3\x6a\x8c\x1e" +"\x86\x06\x6c\x8a\x74\x74\x8a\x6c\x88\x43\x18\xfb\x62\x06\xf7\x2a\xf7\x93\x05\x91\x97\x8e\x93\x95\x1a\x97\x88\x94\x82\x97\x1e\xfb" +"\x1a\xf7\x4c\x05\x0e\xf7\x23\xf8\x2a\x15\x73\x6e\x7d\x68\x86\x65\x08\x2c\x5e\xeb\x06\x8f\x64\x99\x68\xa2\x6e\x48\x48\x18\xab\x6b" +"\xce\xcf\xa9\x73\xab\x7e\xb4\x85\x19\x2c\xb8\xea\x07\xb4\x91\xad\x99\xa7\xa2\xce\x47\x18\xab\xab\x48\xcf\xa1\xa4\x9a\xaf\x90\xb4" +"\x19\xeb\xb8\x2b\x06\x86\xb3\x7c\xaf\x75\xa6\xce\xce\x18\x6b\xab\x48\x48\x70\xa1\x64\x9b\x66\x8f\x19\xea\x5e\x2d\x07\x67\x87\x62" +"\x79\x72\x75\x47\xcf\x18\x6b\x6b\x05\xf7\x72\x5d\x15\xdc\xcc\x4b\x3d\x3a\x4b\x4b\x3b\x3c\x4b\xcb\xda\xda\xcb\xcc\xd8\x1f\x0e\xf7" +"\xed\xf7\xd7\x15\xd7\x06\xa7\x92\x8c\x91\x94\x1f\x9c\x95\x94\x9b\x9d\x1a\xa5\x79\x9f\x71\x8e\x1e\x8e\x74\x8b\x8b\x88\x1b\xfb\x9f" +"\x06\x71\x83\x8a\x84\x81\x1f\x7b\x81\x81\x7b\x7a\x1a\x7a\x94\x7a\x99\x82\x1e\x84\x96\x95\x89\xa5\x1b\xde\xfb\x8a\x06\x53\xb3\x6c" +"\xd2\xd1\xbb\xa6\xb2\xa3\x7a\xa0\x78\x84\x81\x89\x87\x81\x1e\x82\x75\x82\x89\x7e\x1b\x80\x88\x8f\x99\x1f\x0e\xf7\x6e\xf7\xa4\x15" +"\xbd\xcb\x1d\x59\x76\x06\xc5\x0a\xa0\x5a\x06\x38\xd3\x57\xf7\x09\xc0\xda\x9b\xa1\xbc\x1e\xb1\x9b\x9a\x9b\xa3\x1a\xa7\x74\xa3\x6e" +"\x80\x84\x89\x82\x79\x1e\x75\x5b\x5f\x81\x57\x1b\x65\x70\x91\x97\x80\x1f\x86\x90\x89\x94\x9d\x1a\xaa\xf7\x1d\x07\xa2\x97\x38\x1d" +"\x0e\xf7\x6e\xf8\x3d\x15\xdb\x07\xc0\x1d\xf7\x4b\xf7\x45\x07\xb9\xa3\x9c\xae\x9f\x7f\x9d\x78\x93\x1f\xe2\xf7\x12\x05\x94\x98\x8f" +"\x95\x94\x1a\x9f\x79\x9d\x75\x7a\x81\x85\x76\x7d\x1e\x39\xfb\x0b\x05\x81\x7d\x88\x82\x80\x1a\x87\x8b\x89\x8d\x86\x1e\x0e\xf7\xc2" +"\x7c\x15\xbd\x8c\xc6\x96\xbf\x9e\x08\xbe\x9d\x9e\x9c\xa7\x1a\xa8\x74\xa2\x6e\x7f\x85\x89\x82\x79\x1e\x76\x5f\x5a\x80\x58\x1b\x65" +"\x71\x91\x97\x80\x1f\x85\x91\x89\x93\x9e\x1a\xf7\x4b\xcb\x1d\xfb\x5e\x06\x4b\xb4\x5e\xd4\x7a\x1e\x2f\x07\x8d\x9c\x8d\x8b\x92\x76" +"\x1d\x74\x91\x94\x7a\x1f\x97\x77\x89\x8b\x82\x1b\x76\x79\x7a\x76\x7a\x94\x7e\xa0\x80\x1f\x7e\xa5\xb3\x81\xa7\x1b\xcd\xb9\xb3\xc4" +"\xbd\x72\xa9\x59\x95\x1f\x0e\xf7\xc0\xf8\xef\x15\xfb\x1c\x2b\xfb\x13\xfb\x4a\xfb\x4b\xea\xfb\x12\xf7\x1d\xf7\x1d\xea\xf7\x13\xf7" +"\x4a\xf7\x4b\x2c\xf7\x12\xfb\x1d\x1f\xfb\x0c\xfb\x96\x15\xed\x9a\xb7\xc3\xc8\x1b\xc8\xb6\x54\x28\x9b\x1f\x23\x04\x29\x7b\x60\x54" +"\x4e\x1b\x4e\x60\xc2\xed\x7b\x1f\x0e\xf8\x0b\xf8\xc9\x15\x9a\x97\x92\x96\x96\x1a\x9e\x7a\x9b\x78\x82\x80\x53\x1d\x7d\x80\x84\x80" +"\x7f\x1a\x78\x9c\x7b\x9d\x95\x95\x57\x1d\xbb\x0a\x96\x97\x88\xa4\x1b\xaa\xfb\x3c\x06\x58\x58\x74\x7f\x5a\x1b\x51\x71\x9f\xb8\x1f" +"\xf7\xa1\xfb\x0c\x07\x72\x81\x89\x86\x82\x32\x0a\x84\x95\x96\x88\xa6\x1b\x97\xfb\x3e\x06\x52\x9f\x61\xb3\x6e\x1e\x73\xad\xb5\x7f" +"\xb9\x1b\xc1\xab\x98\xb3\xba\x1f\x62\xee\x07\xa0\x9a\x8d\x90\x93\xa6\x1d\x81\x91\x83\x8d\x76\x8c\x08\xfb\xf6\xdd\x1d\x2c\x1d\xfb" +"\x5c\xf8\x80\x15\x9a\x9a\x90\x1d\x23\x05\x76\x9e\x0a\xf7\x9e\xf4\x15\xa0\xa2\x8b\x8b\x99\x1a\x9f\x79\x9d\x77\x7f\x82\x87\x7f\x80" +"\x1e\x25\x23\x05\x77\x9e\x0a\x0e\x2c\x1d\xfb\xe4\xf8\x8a\x37\x1d\xa7\xfb\xaf\xf7\x4f\x1d\x79\x94\x7b\xec\x1d\xfc\xb4\xf7\x2f\x15" +"\xf7\x64\x1d\x81\x80\x79\x78\x1a\x7a\x94\x7a\x6a\x1d\xf8\xb4\x06\xa2\x98\x8d\x91\x95\x1f\x9c\x94\x96\x9e\xee\x0a\x0e\x0e\x7e\x1d" +"\x7c\x1d\x7f\xfb\x72\x23\x1d\xbb\x1d\xf7\x0f\xfb\x96\x23\x1d\xf7\x46\xf8\xf1\x37\x1d\x85\x1d\xf8\xe8\x16\xfb\x82\xf8\xc8\x05\xfb" +"\x08\x06\xfb\x82\xfc\xc8\x05\xf8\x44\xf3\x15\xfb\xa3\x06\xf7\x1b\xf7\xd3\x05\x0e\xf7\x9b\xe9\x15\x69\x9a\x7d\x92\x7d\x98\x08\x63" +"\xac\x72\xd0\xd7\x1a\xf7\x0f\xc4\xcd\xf7\x00\xf5\xc4\x48\xfb\x0e\x3f\x72\x46\x63\x6a\x1e\x7d\x7e\x7d\x84\x69\x7c\x08\x2d\xf7\x5b" +"\x07\xa4\x93\xf7\x54\x1d\x9a\x7e\x95\x1e\x93\x7f\x82\x8d\x71\x1b\x4d\x06\xa8\x99\x96\x93\x99\x9b\x08\xad\xb1\xa0\xcd\xce\x1a\xd9" +"\x6e\xd7\x5e\xb6\x1e\xb6\x5e\x3c\xa5\x35\x1b\x35\x3c\x71\x60\x5e\x1f\x5e\x60\x6e\x3f\x3d\x1a\x4e\x9d\x4c\xa8\x65\x1e\x9c\x76\x97" +"\x81\xac\x7b\x08\x4d\x06\x72\x84\xc9\x0a\xf7\x5b\x06\x0e\xf7\x61\x84\x15\x85\xa1\x9d\x88\x9f\x1b\xa9\xba\x93\x94\xa0\x1f\xb6\x9d" +"\x05\x78\xed\x07\xb9\xa4\x9d\xad\xaa\x75\x9e\x64\x8c\x1f\xf7\xd6\xfb\x1f\x07\x5d\x72\x79\x69\x6a\xa4\x78\xb9\x1f\xaa\xfb\x4b\x06" +"\x67\x4e\x61\x7d\x62\x1b\x63\x7a\x9b\xb0\x1f\xf7\xb0\xfb\x0c\x07\x5e\x72\x79\x69\x6a\xa4\x78\xb8\x1f\x97\xfc\x55\x06\x5f\x9e\x73" +"\xae\xae\x9e\xa3\xb7\x1e\x0e\xf8\xa9\xf8\x0f\x15\xad\x75\xa3\x6b\x76\x7d\x83\x79\x80\x1e\x9d\x70\x6b\x93\x5c\x1b\x3c\x50\x74\x5c" +"\x5f\x1f\x62\x5e\x75\x50\x47\x1a\x3e\xa7\x4f\xc0\x65\x1e\xa7\x77\xac\x7d\xc7\x78\x08\xcd\x75\x8b\x8b\x81\x1a\x7b\x7a\x83\x60\x87" +"\x1e\x65\x87\x78\x7b\x6b\x1a\x69\xa1\x7a\xb7\xe6\xcf\xc5\xd8\xad\x7d\xa7\x71\xa1\x1e\x78\x9b\x72\x95\x51\x9c\x08\x24\xa9\x74\xa3" +"\xd6\x1a\xe8\xbf\xc0\xe6\xc5\xa3\x79\x55\x98\x1e\x65\x95\x9a\x7c\xa8\x1b\xaa\x9e\xa3\xb1\x8c\x1f\x0e\x30\x1d\x89\xf9\x46\x81\x1d" +"\x56\x0a\xf7\x30\xf7\xe0\x15\x99\x7a\x86\x8d\x7f\x64\x0a\x20\x05\x7e\x9c\x92\x62\x0a\x8b\x0a\xf7\x41\xf8\x13\x05\xb7\x9d\x91\x95" +"\x94\x1b\x8f\x91\x89\x87\x92\x1f\x7d\xa0\x9e\x85\x9d\x1b\xaf\xaa\xab\xb0\xba\x5f\xad\x4d\x41\x5e\x68\x2f\x61\x1f\x0e\x7d\x1d\xf7" +"\x2a\xf7\xe2\x15\x98\x7b\x84\x8e\x80\x64\x0a\x21\x05\x80\x99\x95\x86\x96\x1b\xa1\x9e\x9d\x9f\x99\x85\x95\x78\x99\x1f\x0e\xf7\x5a" +"\xf7\x7c\x15\xf4\xf1\x22\xf7\x13\xf7\x8c\x5e\x06\x8b\x1d\x94\xa5\x1a\xf7\x28\xfc\x6f\x07\xf7\x0b\x1d\xfb\x13\x50\x25\xc6\xfb\x15" +"\x80\x06\xde\x0a\xf7\x6b\x31\x1d\x2b\x06\x0e\xf7\x30\xf7\x4a\x15\x3d\x57\x07\x46\x0a\x56\xd9\xbd\x06\xae\xa1\x9b\xa5\x94\x85\x99" +"\x85\x92\x1f\x94\x82\x7e\x8e\x74\x1b\x59\xc2\xf7\x5e\x37\x06\x24\x0a\xf7\x50\xfc\x6a\x07\x52\x1d\xbf\x54\x65\x06\x67\x76\x7b\x71" +"\xf4\x0a\x0e\xf8\xad\xf3\x15\x64\xf1\x7a\xb8\x76\xaa\x69\xa9\xf7\x0e\x0a\x6e\x94\x99\x80\xa4\x1b\xae\x98\xa0\xc3\x1f\x98\x07\xce" +"\x80\x9b\x5f\x65\x6f\x7d\x6e\x74\x1e\x7a\x76\x69\x52\x60\x3d\x08\xeb\x07\xad\x92\x9b\x9b\xa7\x1a\xb1\x74\x99\x4c\xbc\x0a\x7a\x49" +"\xcc\x0a\x69\x6b\x74\x69\x7c\x62\x64\x24\x18\x64\x87\x79\x7a\x6c\xf7\x2f\x1d\xae\x9c\xaa\x99\x99\x08\xfb\x23\x07\x65\x86\x7a\x7b" +"\x6b\x1a\x67\xa2\x7d\xcb\x1e\xb6\x06\xc9\xa3\x99\xb0\xa8\x7a\x9c\x67\x91\x1f\xf7\x23\x07\x95\x82\xa1\x61\x96\x6e\xb5\x21\x18\x9f" +"\x59\x96\x82\xb4\x8a\x08\x9e\x56\xe9\x0a\xf8\xa2\xf4\x15\x66\xca\x7b\xa6\x7a\xa0\x78\x99\x19\xa4\x99\x9b\xa0\x98\xae\x08\x75\x94" +"\x9a\x81\xa2\x1b\xaa\x9c\x9f\xb0\x1f\xb3\x07\xb3\x75\x9f\x60\x61\x69\x79\x69\x75\x1e\x45\x21\x05\xc4\x07\xa5\x9b\x94\x99\xa0\x1a" +"\xab\x71\x9d\x5c\x1e\x6b\x06\x5e\x71\x79\x6b\x76\x94\x7e\xa4\x7a\x1f\x52\x07\x46\xf5\x05\xad\x75\x68\x9d\x62\x1b\x5f\x76\x77\x63" +"\x1f\x63\x07\x65\x9c\x77\xaa\xa2\x99\x95\xa1\x95\x1e\x97\x69\x9c\x76\xa3\x7d\x7a\x7f\x77\x72\x7d\x72\x66\x4b\x18\x5e\x8a\x75\x79" +"\x68\x1a\x6a\x9e\x7a\xad\x1e\xce\x06\xcf\xf7\x0b\x9b\xa6\xa0\xa0\x99\x8e\x19\x47\x07\x73\x7a\x81\x7d\x76\xe1\x0a\x9c\x1f\xcf\x07" +"\x99\x88\xa0\x76\x9c\x70\xcf\xfb\x0b\x18\xb7\x61\xf7\x0a\x0a\xf7\x27\x07\x0e\xf7\xce\x7d\x15\xc5\x8e\xb8\x95\xa9\x9a\x08\xc9\xaa" +"\xb0\xc4\xcd\x1a\xc4\x73\xb6\x59\xac\x1e\xb0\xad\x9c\xae\xb8\x1a\xea\x34\xcf\xfb\x0e\x5b\x62\x82\x77\x61\x1e\x8c\x98\x05\xa6\x8c" +"\x72\xa2\x6e\x1b\x6e\x74\x75\x6e\x1f\x80\x07\x8c\x63\x05\x60\x8a\x80\x87\x70\x1e\x86\x72\x88\x74\x86\x1a\x71\xa3\x76\xa8\xa6\x99" +"\x98\xad\x95\x1e\xd2\x9f\xb0\xa6\xd5\x1b\xcc\xb6\x71\x65\x61\x5c\x72\x3f\x1f\x78\x06\x4b\x74\x7d\x65\x64\xa3\x7e\xd0\x1f\xab\x06" +"\xe3\xaf\x77\x5b\x56\x5c\x6f\x32\x43\x5a\x99\xaf\x4f\x1f\xa2\x66\x7d\x91\x7b\x1b\x6f\x72\x71\x6f\x6f\x99\x7b\xbc\x70\x1f\xc5\x6b" +"\xc6\x78\xc7\x85\x08\x36\x93\x0a\xf7\xe0\x7f\x15\xbd\x8d\xb6\x93\xa7\x98\x08\xc4\xa4\xac\xb6\xbe\x1a\xb4\x7a\xa9\x65\xa6\x1e\xa3" +"\xa6\x95\xa3\xa8\x1a\xd6\x3b\xc1\xfb\x01\x57\x62\x80\x73\x64\x1e\xc1\x80\x80\x99\x6b\x1b\x6f\x73\x76\x72\x84\x8d\x7e\x8c\x82\x1f" +"\x8e\x7e\x8c\x7b\x6e\x1a\x8a\x5c\x05\xb4\x0a\x1f\x67\x8a\x7f\x8b\x82\x89\x08\x71\x84\x7e\x7b\x6f\x1a\x66\xa2\x7e\xcb\x1e\x95\x06" +"\xd9\xba\x7f\x76\x74\x58\x79\x4a\x4b\x4f\x9a\xac\x4e\x1f\x95\x78\x80\x8e\x7f\x1b\x70\x71\x72\x71\x65\xb5\x6d\xe7\x71\x1f\xab\x82" +"\xa3\x86\xa8\x88\x08\x31\x93\x0a\xf8\x02\xf7\xd1\x15\x90\x92\x98\x9d\xa1\xaa\x8c\x8c\x8d\x8f\x90\x92\x90\x92\x8f\x91\x8d\x8f\xa3" +"\xaf\x18\x8c\x8c\x8f\x91\x92\x93\x08\x60\x8f\x9c\x78\xad\x1b\xb0\x99\xf7\x30\x1d\x65\x77\x59\x69\x1f\x44\x24\x72\x69\x85\x87\x75" +"\x8a\x19\x82\xf7\x00\x06\xc9\x8d\x9e\x97\xb1\x1a\xb2\x75\x98\x4b\x1e\x29\x06\x4c\x74\x7e\x65\x66\xa4\x7a\xc3\x8c\x1f\xfb\xf9\x07" +"\x4f\x8a\x76\x7e\xdb\x0a\x81\xf7\x24\xa2\x06\xa9\x8d\xae\x6d\xaa\x52\xc6\x20\x18\x9b\x6c\x98\x7a\x91\x89\x92\x88\x95\x8a\xae\x89" +"\x08\x55\x2f\x0a\xf7\x32\x25\x07\x50\xf4\x6e\xbe\x77\xa4\x6d\xa4\x19\x0e\xf8\x79\xf4\x15\x59\xcf\x76\xa7\x74\xa1\x74\x99\x19\xcd" +"\xcd\x99\x97\x05\x6d\x92\x9c\x7d\xa8\x1b\xb1\x9a\xa2\xc6\xbf\x77\x9f\x57\x58\x5f\x7a\x6a\x6d\x1f\x49\x45\x74\x73\x86\x89\x75\x8a" +"\x19\x81\xb7\x06\xc1\x8c\xa0\x99\xaf\x28\x1d\x36\x06\x4b\x74\x7d\x66\x66\xa0\x7c\xc2\x8a\x1f\xfb\x6d\x07\x54\x8a\x76\x7c\x67\x1a" +"\x65\xa2\x7d\xcb\xe2\x0a\xa3\x06\xa5\x8c\xa9\x77\xab\x62\xbd\x48\x18\xad\x5f\x8f\x89\xb1\x8a\x08\x92\x64\x06\x24\x0a\xf7\x24\x07" +"\x0e\xf7\xdd\xf7\x57\x15\x9f\x6c\xc5\xfb\x00\x98\x72\x99\x76\x90\x89\x19\x94\x1d\x99\x4a\x1f\x7c\x06\x53\xf4\x73\xb8\x72\xaa\x6d" +"\xa4\x19\x8e\x92\x92\x94\x98\x9e\x9f\xa7\x19\x8e\x91\x8d\x8d\x8e\x8f\x90\x93\x8f\x91\x8e\x8e\x92\x97\x93\x97\x93\x97\x8d\x8d\xf7" +"\x5c\x1d\xb1\x98\xf7\x14\x1d\x66\x55\x05\x9a\x84\x7c\x95\x79\x1b\x82\x7e\x86\x84\x83\x1f\x80\x83\x88\x82\x72\x1a\x50\x7f\xf7\x00" +"\x07\xca\x8d\x9e\x97\xb2\x1a\xb1\x75\x98\x4a\xf7\x02\x1d\xcb\xa2\x98\xb1\xae\x73\x9d\x5c\x1f\x86\x06\x85\xf7\x24\x97\x44\x06\x6a" +"\x9c\x76\xa6\xa8\x9a\x9d\xaf\x1e\x0e\xf8\x04\xf7\x06\x15\xbd\x48\xad\x5f\x8f\x89\xb1\x8a\x19\xb7\x06\xb5\xa0\x9d\xae\xb1\x75\x97" +"\x47\x8c\x1f\x58\xcf\x65\xbe\x88\x8f\x6e\xa4\x19\xd0\xbd\x99\x98\x05\x6d\x92\x9c\x7d\xa9\x1b\xb1\x9a\xa2\xc6\xbf\x77\x9f\x57\x57" +"\x5f\x7a\x6a\x6d\x1f\x5c\x59\x05\x97\x84\x81\x91\x7e\x1b\x89\x89\x8b\x8a\x87\x1f\x91\x94\x8e\x95\x98\x1a\xb0\x73\x99\x4c\x1e\x36" +"\x06\x4b\x74\x7d\x66\x66\xa0\x7c\xc2\x8a\x1f\xfb\x6d\x07\x54\x8a\x76\x7c\x67\x1a\x65\xa2\x7d\xcb\x1e\xe0\x06\xcb\xa2\x99\xb0\xae" +"\x73\x9d\x5c\x1f\x89\x06\x89\xd1\x06\xaf\x8a\x05\x86\x07\x6b\x9a\x77\xa2\x9c\x98\x96\x9d\x90\x1e\x42\xf7\x1e\x15\x88\x84\x85\x89" +"\x7e\x1b\x81\xb6\x06\xa2\x8c\x91\x8c\x99\x8f\x08\x85\x83\x8a\x86\x74\x1a\x0e\xef\xf8\x60\x15\x8e\x06\x92\x06\x91\x06\x90\xfb\xf9" +"\x06\x4f\x8a\x76\x7e\xdb\x0a\x81\xf7\x24\xa2\x06\xa9\x8d\xad\x6d\xab\x52\xc5\x20\x18\x98\x72\x99\x76\x90\x89\x08\x94\x1d\x98\x4a" +"\x1f\x7c\x06\x53\xf5\x73\xb7\x72\xab\x6c\xa4\x19\x8f\x92\x92\x94\x98\x9d\x9f\xa8\x19\x8d\x8f\x8e\x8f\x8e\x8f\x90\x92\x8f\x91\x8d" +"\x8f\x94\x97\x92\x96\x93\x97\x8d\x8e\xf7\x5c\x1d\xb0\x99\xf7\x14\x1d\x44\x24\x73\x68\x85\x88\xf7\x62\x1d\xb1\x1a\xad\x7c\x98\x5c" +"\x8f\x1e\x8c\x8c\x05\xfb\x9c\xfb\x0d\x4a\x0a\x9c\x07\x0e\xf4\xf7\xd5\x15\xac\xfb\x6d\x06\x53\x8a\x76\x7c\x67\x1a\x64\xa2\x7e\xcc" +"\xe2\x0a\xa3\x06\xa5\x8c\xa8\x77\xab\x62\xbd\x48\x18\xae\x5f\x8e\x89\xb1\x8a\x08\xb7\x06\xb5\xa0\x9d\xae\xb1\x75\x98\x47\x1f\x58" +"\xd0\x76\xa6\x75\xa2\x74\x99\x19\xcd\xcd\x98\x97\x05\xf7\x1c\x1d\x74\x73\x86\x89\x75\x8a\x19\x81\xb7\x06\xc1\x8c\xa0\x99\xaf\x28" +"\x1d\xfb\x81\xfb\x4f\x4a\x0a\x0e\xf8\x93\xf2\x15\xf7\xfa\x07\xad\x8f\x9d\x9d\xa9\x1a\x9b\x83\x9a\x7d\x96\x1e\x92\x4b\x1d\x7a\x93" +"\x7b\x99\x81\x1e\x84\x96\x95\x89\xa6\x1b\x96\xfb\x14\xfb\x62\xf7\x14\x96\x06\xa4\x95\x8c\x91\x94\x1f\x9b\x95\x95\x9b\x9e\x33\x1d" +"\x4b\x1d\x6d\x9d\x79\xad\x87\x1e\xfb\xfa\x89\x07\xf7\x10\x0a\x7a\x1a\x7a\x93\x7b\x99\x82\x3f\x1d\xf7\x0d\x31\x1d\x80\xf7\x13\xf7" +"\x62\xfb\x13\x80\x06\x72\x82\x89\x4f\x0a\x7a\x7a\xf3\x0a\x55\xe9\x0a\xf8\x92\xf3\x15\xf7\x6e\x07\xaf\x8f\x9c\x9c\xa9\x1a\xad\x73" +"\x9d\x5d\x1e\x2b\xd0\x1d\xf7\x5c\x4f\x86\x39\x0a\xf1\x63\x06\x5d\x9c\x75\xaf\xaf\x9e\xa2\xb8\x1e\xf7\x23\x07\x0e\xf7\xe9\x7e\x15" +"\xc7\x8d\xc0\x98\xb2\xa0\x08\xb9\xa3\xa8\xac\xa7\x64\x1d\x80\x85\x08\x7d\x72\x65\x83\x5d\x1b\xfb\x09\xd8\x0a\x94\x80\x8f\x75\x08" +"\x64\x93\x9f\x0a\x52\x1b\xfb\x30\x74\x1d\x4b\x07\xfb\x12\xea\x26\xf7\x1f\x75\x1e\x31\xd6\x1d\xf7\xf4\x7c\x15\xf7\x13\x90\xe5\xb7" +"\xc3\x1a\xa7\x72\xa3\x6e\xf7\x3e\x1d\xb0\xd7\xf7\x00\x0a\x90\x83\x8f\x7b\x90\x75\x8e\x85\x93\x84\x08\x83\x94\x9b\x85\x99\x47\x0a" +"\xd4\x07\xb9\x7b\xa0\x67\x75\x80\x83\x78\x84\x1e\x9d\x65\x5a\xa2\x1d\x41\xad\x4d\xc9\x63\x1f\xad\x75\xaf\x81\xc5\x85\x08\x36\x88" +"\x0a\xb2\x81\xa8\x1b\xcc\xb9\xb3\xc3\x4e\x0a\x2b\x0a\x0e\xf7\xf7\x8e\x15\xf7\x42\xf7\xd3\xa7\x0a\x82\x1e\x95\x84\x92\x89\xa1\x8a" +"\xfb\x04\xfb\x5d\x18\xfb\x00\xf7\x5d\x05\xaf\x8d\xa0\x9e\xa9\x22\x1d\x31\x06\x77\x84\xf7\x67\x1d\x6f\x9d\x79\xab\x86\x1e\xf7\x42" +"\xfb\xd3\x05\x27\x89\xf7\x4e\x1d\x7a\x93\x7c\x99\x81\x1e\x84\x95\x99\x88\xa3\x1b\xf7\x0a\xd0\x0a\x81\x82\x8c\x6e\x1b\x89\x06\x0e" +"\xf7\xf6\xf7\x6a\x15\xa1\x07\xf7\x36\xf7\x75\x05\xb7\xa2\x9d\xad\x9b\xae\x0a\xfb\x0c\x32\xf7\x0d\x05\xa3\x95\xb7\x0a\x77\x4b\x0a" +"\x95\x84\x94\x89\xa4\x8a\xf7\x37\xfb\x75\x18\x75\x46\x07\xf7\x04\x0a\x95\x94\x88\xa5\x1b\xd0\x70\x4e\x06\xeb\x1d\xa6\xcf\x06\xad" +"\xa1\x9b\xa5\x94\x85\x99\x85\x92\x1f\x94\x83\x7e\x8e\x74\x1b\x0e\xf7\x85\x88\x15\x4e\x06\x67\x76\x7b\x71\xf4\x0a\xc8\x81\x89\x06" +"\xe9\x1d\x9a\x88\xa2\x1b\xf7\x0b\xd0\x0a\x80\x83\x8c\x6e\x1b\x89\x95\xd0\x06\xad\xa7\x1d\x73\x1b\x47\x91\x06\xf7\x42\xf7\xd3\x99" +"\x0a\xfb\x5d\x18\xfb\x01\xf7\x5d\x05\xaf\x8d\xa0\x9e\xa9\x31\x0a\x83\x1d\xf7\x42\xfb\xd4\x05\x0e\xf8\xa8\xf3\x15\xfb\x36\xf7\x4c" +"\xf7\x2d\xf7\x41\x05\xb0\x8c\xa1\x9e\xaa\x22\x1d\x31\x06\x2e\x1d\x75\x95\x7e\xf7\x35\x1d\x7d\x95\x1e\x93\x80\x80\x8d\x71\x1b\x30" +"\x06\x2e\x1d\x7b\x94\x7b\x99\x82\x1e\x93\x84\x93\x89\xa0\x8a\xf7\x2f\xfb\x41\x18\xfb\x37\xfb\x4d\x05\x65\x74\x77\x6c\x68\xa3\x7a" +"\xba\x1f\xf7\x02\x06\xba\xa2\x9c\xae\xa7\x78\x9e\x6c\x8e\x1f\xe9\xf5\xe8\x22\x05\x6b\x87\x78\x78\x6f\xf3\x0a\x55\x06\x24\x0a\xf7" +"\x32\x07\x0e\xf8\xa2\xf2\x15\xfb\x26\xf7\x0a\xf7\x13\xf0\x9b\x8d\x91\x8c\x92\x8f\x19\x9b\x94\x95\x9c\x9d\x1a\x9c\x83\x9a\x7c\x95" +"\x1e\x93\x2f\x1d\x30\x06\x76\x85\x8a\x88\x81\x1f\x78\x85\x7d\x76\x76\x1a\x7a\x92\x7e\x9b\x7f\x1e\x55\x60\x55\xb5\x05\x9a\x97\x93" +"\x9a\x9c\x1a\x9b\x68\x0a\x81\x1f\x78\x85\x7d\x76\x76\x1a\x6d\x9d\x7a\xaf\xf6\x1d\x71\x97\x1f\xcd\xf7\x4d\x1d\xba\x1e\xf7\x08\xe4" +"\x0a\xf8\x8c\xf3\x15\xf7\xf8\x07\xc1\x8e\x8f\x1d\x4c\x73\x9a\x1d\x62\x4f\x64\x7b\xa8\x0a\xfb\x09\xc2\x4e\xf7\x09\x0a\x23\x55\x07" +"\x4b\x74\x7d\x65\x65\xa2\x7e\xcb\x8a\x1f\xf7\x1d\x56\x06\x5f\x9e\x73\xae\xae\x9e\xa2\xb8\x1e\xf7\x31\x07\x0e\xf8\x82\xf3\x15\xf7" +"\x6e\xc2\x0a\x4c\x07\x6f\x59\x6b\x81\x62\x1b\x62\x7c\x95\xa6\x1f\xcb\x07\xc6\x8d\x9e\x97\xb0\x28\x1d\x3a\x06\x4d\x73\xdf\x0a\x35" +"\xc0\x5d\xef\xbc\xb7\x95\xa0\xb4\x1e\x56\x5e\x07\x4b\x74\x7d\x65\x65\xa2\x7d\xcb\x1f\xf7\x14\xe4\x0a\xf7\xe1\xf7\x48\x15\xa3\x92" +"\x9a\x92\xa3\x99\x08\x23\x54\x07\x4b\x74\x7d\x64\x66\xa2\x7d\xcb\x1f\xf7\x2a\xba\x0a\x4b\x73\x7d\x66\x68\xa4\x79\xbb\x1f\x8f\xfb" +"\x17\x06\x76\x7c\x84\x87\x68\x79\x08\xbe\x07\xad\x7b\x9f\x6f\x81\x7f\x86\x84\x83\x1e\x80\x82\x88\x83\x72\x1a\x45\x07\x66\x90\x82" +"\x98\x8a\xc5\x08\xf7\x04\x07\xc9\x8c\x9f\x98\xb0\x28\x1d\x32\x06\x4b\x74\x7d\x65\x68\x9f\x7d\xc0\x89\x1f\xfb\x08\x07\x8e\xfb\x0c" +"\xb9\x57\xf5\x85\x08\x85\x07\x6a\x9c\x76\xa6\x94\x9a\x90\x91\x92\x1e\x94\x93\x8f\x97\xa2\x1a\x0e\xf7\xbf\xf7\x15\x15\xb0\x91\xa1" +"\x92\xa7\x9a\x08\x55\x84\x07\x50\x74\x7c\x66\x66\xa3\x7c\xc5\x1f\xed\x8c\x05\xcb\x8c\xa2\x98\xb0\x1a\xad\x75\x9c\x5b\x8c\x1e\xf7" +"\x6f\x07\xbb\x8c\xa1\x9c\xae\x1a\xaf\x73\x99\x4c\x1e\x40\x06\x4c\x73\x7d\x67\x68\xa1\x7a\xbc\x8a\x1f\x4b\x07\x67\x77\x76\x83\x6d" +"\x85\x08\x98\x07\xad\x7d\x9e\x72\x81\x82\x87\x85\x84\x1e\x7f\x81\x89\x83\x72\x1a\x82\x07\x82\x90\x88\x94\x8a\x9b\x08\xf7\x05\x1d" +"\x8c\x3c\xb2\x61\xdc\x81\x08\x72\x07\x6a\x9a\x77\xa4\xa5\x98\x9c\xaf\x1e\x0e\xf7\x5b\xf8\x60\x15\xc1\x06\xcb\xa2\x99\xb1\xb1\x74" +"\x99\x4b\x1f\xfb\x29\x06\x4b\x74\x7d\x65\x67\xa0\x7d\xc0\x89\x1f\xfb\xf9\x07\x55\x8a\x77\x7c\x68\x1a\x65\xa2\x7d\xcb\x1e\xdf\x06" +"\xca\xa3\x99\xb0\xae\x73\x9d\x5b\x1f\x87\xf7\x17\x06\xb4\xc6\xb3\x9b\xb5\x1b\xb7\x98\x79\x50\x1f\xfb\x04\x07\x4d\x8a\x76\x7e\x66" +"\x1a\x64\xa2\x7e\xcc\x1e\xe4\x06\xcb\xa2\x99\xb1\xae\x76\x9a\x57\x8c\x1f\xf7\x08\x07\xf7\x09\x54\xc8\x20\x58\x5f\x7f\x6e\x5a\x1e" +"\x0e\xf7\x61\xf8\xaf\x15\xbe\x7b\xa1\x65\x65\x7b\x75\x58\x1e\xfc\x48\x89\x07\x41\x0a\xbe\xc2\xa0\x96\x86\x0a\x5b\x78\x69\x68\x1e" +"\x0e\x21\x0a\x0e\xf8\x20\xf3\x15\xfb\x21\xfb\x32\x06\x24\x0a\xc1\xf7\x1e\x07\xcb\xa2\x99\xb1\xb1\x76\x98\x4c\x8c\x1f\xf7\xf8\x07" +"\xc1\x8e\x8f\x1d\x4b\x74\x9a\x1d\x61\x4e\x65\x7c\xa8\x0a\xfb\x0a\xc2\x4f\xf6\xbe\xb7\x97\xa8\xbc\x1e\x0e\xf8\x16\xf2\x15\x5a\x06" +"\x38\x8a\x05\xfb\x23\x07\x5f\x9e\x74\xae\xaf\x9d\xa2\xb7\x1e\xb4\xf7\x14\x07\xcb\xa2\x99\xb1\xb0\x76\x98\x4d\x8c\x1f\xf7\x6e\x07" +"\xbb\x8d\xa1\x9c\xad\x1a\xb0\x73\x99\x4c\x1e\x40\x06\x4b\x74\x7d\x66\x68\xa1\x7b\xbc\x89\x1f\x4c\x07\x6f\x58\x6b\x81\x63\x1b\x62" +"\x7c\x95\xa7\x1f\xca\x07\xc6\x8e\x9d\x97\xb0\x1a\xb1\x74\x99\x4c\x1e\x3a\x06\x4c\x74\xdf\x0a\x34\xc0\x5d\xee\xbd\xb6\x95\xa1\xb5" +"\x1e\x0e\x9d\xf7\xb4\x15\x96\x30\x93\x6e\xa1\x63\x08\x35\xbc\xea\x54\xec\x1b\xf7\x30\xf7\x13\xf7\x18\xf7\x37\xf7\x38\xfb\x12\xf7" +"\x18\xfb\x31\xfb\x02\x26\x47\x22\x5c\x1f\xf6\x6f\x05\xc6\xa9\xc6\xb1\xc9\x1b\xbf\xbe\x70\x5d\xad\x1f\xa3\x6a\x95\x6f\x8f\x57\x08" +"\x7c\x37\x15\x43\x6a\x51\x61\x46\x1b\x46\x4d\xb8\xd0\x6e\x1f\x0e\x21\x1d\xfb\x1e\xf8\x0e\x48\x1d\x23\x0a\xfb\x75\xf8\x7b\x3b\x1d" +"\xf7\xc0\xf8\xd6\x15\xfb\x30\xfb\x13\xfb\x19\xfb\x37\xfb\x37\xf7\x13\xfb\x18\xf7\x30\xf7\x2e\xf7\x15\xf7\x18\xf7\x33\xe8\x6b\xd5" +"\x4c\xc5\x1f\xbc\x55\x49\xa5\x47\x1b\xf7\x3f\xfb\xe7\x15\x32\x76\x46\x4f\x3a\x1b\x3a\x46\xc7\xe4\x76\x1f\xdf\x04\xe3\x9e\xd1\xca" +"\xdd\x1b\xdd\xd1\x4d\x32\x9e\x1f\xfb\xea\x06\x0e\x82\x0a\x30\x1d\x64\xf9\x4e\x48\x1d\x35\x1d\xfb\xa6\xf8\x2c\x3b\x1d\xa7\xf9\x6c" +"\xf7\x4f\x1d\x7a\x94\x7a\xec\x1d\x0e\xf8\x3d\x95\x15\x7f\x9b\x96\x87\x9c\x1b\xd2\xba\xe5\xf7\x1e\xf7\x19\x5a\xe5\x43\x39\x61\x33" +"\xfb\x3f\x1f\xfb\xd1\x07\x71\x9c\x79\xa4\xa3\x9c\x9d\xa5\x1e\xf7\xe6\x04\x9e\x07\xd0\xa1\xd3\xa0\xa1\x9e\x47\x3f\x2f\x7b\x51\x71" +"\x75\x7c\xaf\xc3\x88\x1e\xfc\x04\xf7\xc0\x15\xfb\xd0\x07\x8a\x67\x81\x6f\x7c\x86\x08\x7c\x83\x82\x7c\x7a\x1a\x89\x07\x8c\x73\x9e" +"\x7a\xa5\x8d\x08\xee\x06\xf7\x06\xca\xec\xf7\x43\xf7\x06\x6d\xe1\x55\xb4\x1f\x6d\xa2\x73\x93\x5b\x8c\x8d\x93\x8c\x8e\x8e\x8e\x08" +"\x90\x92\x8d\x91\x93\x1a\x96\x85\x96\x80\x91\x1e\x89\x8c\x05\x8f\x85\x83\x8d\x84\x1b\x71\x71\x6c\x64\x85\x1f\x86\x06\x6f\x79\x7b" +"\x73\x74\x9d\x7b\xa7\x1f\xe1\x16\xdb\x8a\xa6\x57\xfb\x28\x1a\x2a\x79\x50\x69\x77\x1e\x83\x7c\x7a\x88\x61\x1b\x95\x9d\x94\xb2\xa9" +"\x1a\x0e\xf7\x9f\xef\x15\x86\x8d\x69\x9a\x80\x91\x7d\x96\x19\x64\xab\x73\xce\xd6\x1a\xf7\x0a\xc3\xcb\xf3\xf3\xc3\x4c\xfb\x0b\x36" +"\x6e\x46\x5a\x6d\x1e\x80\x84\x80\x85\x70\x80\x08\x27\xf7\x5f\x07\xa5\x94\x8c\x92\x96\x1f\x9c\x95\x96\x9e\x9d\x1a\x9c\x82\x9c\x7c" +"\x95\x1e\x94\x7f\x81\x8d\x70\x1b\x5e\x06\xc8\xac\xae\xd5\xeb\x1a\xd9\x6e\xd7\x5d\xb6\x1e\xb6\x5d\x3b\xa5\x34\x1b\x34\x3b\x71\x60" +"\x5d\x1f\x5d\x60\x6e\x3f\x3d\x1a\x2b\xae\x41\xc8\x6a\x1e\x5e\x06\x72\x82\xf7\x38\x1d\x83\x97\x95\x89\xa7\x1b\xf7\x5f\x06\x0e\x9a" +"\x0a\x85\x1d\xe6\x16\xbe\x06\xf7\x34\xf8\x19\xf7\x35\xfc\x19\x05\xbe\x06\xfb\x42\xf8\x47\x05\x40\x06\x0e\xe6\xf8\x46\x15\xf7\x42" +"\xfc\x46\x05\xd6\x06\xf7\x42\xf8\x47\x05\x58\x06\xfb\x35\xfc\x19\xfb\x34\xf8\x19\x05\x58\x06\x0e\xf7\xbd\xf8\x89\x15\xfb\x1b\xfb" +"\x05\xfb\x04\xfb\x1b\xfb\x22\xf7\x02\xfb\x04\xf7\x20\xf7\x1c\xf7\x03\xf7\x04\xf7\x1f\xf7\x1f\xfb\x03\xf7\x03\xfb\x1e\x1f\x70\xfb" +"\xad\x15\xfb\x36\x07\x35\x94\x3e\xd6\x87\xd9\x08\xc2\x04\x91\xde\xd5\xd5\xe2\x96\x08\xfb\x3c\x07\xc2\x54\x15\xf7\x3b\x06\x88\x42" +"\x3b\x3d\x37\x80\x08\xf7\x6d\x04\xf7\x3c\x07\xdf\x82\xd7\x3f\x92\x38\x08\x0e\x9c\x16\xf8\xcb\xf8\xcb\xfc\xcb\x06\xf8\x92\xfc\x92" +"\x15\xfc\x59\xf8\x59\xf8\x59\x06\x0e\xca\xf7\xe7\x15\xfb\x2b\x90\x68\xa6\x5f\x1e\x47\xb5\xd8\x62\xe1\x1b\xbf\xbb\x9a\xa6\xb4\x1f" +"\xbe\xae\xa8\xb9\x95\xca\x08\x90\xac\x8c\xa1\xed\x1a\xf7\x51\x07\x9f\x80\x99\x7b\x7b\x82\x7f\x75\x1e\xfb\x54\x07\xfb\x10\x86\x62" +"\x78\x6a\x1e\x57\x6d\x4a\x68\x49\x1b\x63\x62\x98\xa2\x6a\x1f\x62\xa8\x78\xac\x85\xbb\x87\xa9\x8b\x8b\x8a\xf7\x01\x08\xf7\x54\x07" +"\xa0\x81\x98\x7b\x7a\x82\x7f\x75\x1e\x0e\xf7\xe1\x16\xf7\x67\xf8\xeb\x05\x55\x06\x4c\xfb\x37\x05\xfb\x97\x06\x4d\xf7\x37\x05\x58" +"\x06\xf7\x5f\xfc\xeb\x05\xf7\x2a\xf8\x15\x15\xfb\x03\xfb\xe2\x05\x84\x06\x24\xf7\xe2\x05\x0e\xbb\x0a\x95\x98\x88\xa4\x1b\xaa\xfb" +"\x3c\x06\x58\x58\x74\x7f\x5a\x1b\x51\x71\x9f\xb8\x1f\xf7\xa1\xfb\x0c\x07\x72\x81\x89\x86\x82\x32\x0a\x84\x95\x96\x88\xa6\x1b\x97" +"\xfb\x3e\x06\x52\x9f\x61\xb3\x6e\x1e\x73\xad\xb5\x7f\xb9\x1b\xc1\xab\x98\xb3\xba\x1f\x62\x9b\x07\x5b\x1d\xa8\xb8\xba\xc0\xa8\x1f" +"\xaa\x9c\x93\x96\xa2\x4c\x0a\x81\x91\x83\x8d\x76\x8c\x08\x0e\x3f\x0a\x0e\x3f\x0a\xfb\xb9\xf8\x2e\x59\x0a\x3f\x0a\x23\xf8\x3d\x6a" +"\x0a\x78\x7b\x7f\x83\x7a\x81\x1e\x43\x6b\x0a\x9c\x7c\x9e\x9a\x97\x93\x9c\x95\x1e\xf7\x0e\xdf\x15\x6b\x72\x73\x6d\x6c\xa4\x73\xab" +"\xaa\xa5\xa3\xa9\xaa\x72\xa3\x6b\x1f\xfb\xaa\x4a\x1d\x3f\x0a\x36\xf8\x0e\xf7\x20\x1d\x7c\x7f\x85\x81\x7e\x1a\x79\x9c\x7b\x9e\x94" +"\x95\x8f\x95\x97\x1e\x0e\x2c\x1d\xfb\x6a\xf8\xeb\xe4\x1d\x2c\x1d\x4e\xc5\x1d\x3e\x0a\xf7\x6f\xf8\xe8\x27\x0a\xf7\x44\x1d\xae\x8f" +"\x9d\x9d\xa8\x22\x1d\x2e\x8e\x1d\x82\x1e\x83\x96\x95\x89\xa6\xd4\x0a\xb3\xa1\x9d\xac\x9c\x83\x9a\x7d\x95\x1f\x93\x81\x80\x8d\x70" +"\x1b\x2f\xf7\x11\x1d\x6d\x9e\x79\xaf\x88\x1e\xe0\xfb\xd6\x05\xef\x06\xcc\xf8\xd6\x2e\x0a\x3e\x0a\x63\xf9\x0c\x28\x0a\x3e\x0a\x63" +"\xf9\x24\x5a\x0a\xf8\x44\xf7\xe1\x15\x22\x8e\x5f\xa3\xc1\x1a\xa3\x99\xa4\xa0\x9a\x1e\x99\x94\xa1\x91\xa8\x8e\x08\xcb\x8f\xa1\x99" +"\xb0\x1a\xad\x72\x9d\x5e\x1e\xfb\x45\x06\x5e\x71\x79\x6a\x6b\xa1\x7b\xbc\x87\x1f\x6a\x72\x7d\x71\x63\x1a\x5c\x9f\x62\xb0\x6a\x1e" +"\x4c\x6a\x6d\x5b\x44\x1a\x55\xa3\x5b\xb6\x6e\x1e\xa2\x7b\xad\x80\xcd\x7c\x08\xc3\x7e\x93\x86\x78\x1a\x77\x7f\x84\x69\x88\x1e\x5a" +"\x87\x76\x7b\x6a\x1a\x69\xa2\x7a\xb9\xe9\xc8\xc0\xdc\xb7\x78\xb0\x68\xa3\x1e\x77\x98\x68\x97\x5c\x95\x08\x3d\x9a\x77\x9a\xb4\x1a" +"\xc7\xcb\xab\xf7\x0d\x1e\x0e\xb6\x1d\xf7\x7e\xf7\x94\x2e\x0a\x59\x1d\xf7\x15\xf7\xe2\x5a\x0a\x40\x0a\xb2\xf8\x81\x27\x0a\x40\x0a" +"\xfb\x08\xf8\xa5\x36\x0a\x0e\xf7\xd8\xf8\x87\x15\xfb\x0f\xfb\x11\x57\x29\x23\x1a\x51\xa6\x52\xb5\x69\x1e\xa5\x77\xab\x7d\xcb\x79" +"\x08\xc6\x7a\x8f\x89\x77\x1a\x75\x7b\x7f\x6b\x89\x1e\x59\x87\x78\x7c\x69\x1a\x69\xa2\x7a\xb7\xe7\xcd\xc6\xdd\xd0\x65\xb3\x32\xa4" +"\x1e\x56\x99\x74\x93\x7e\x93\x08\x73\x9a\x7d\xa8\xab\x1a\xac\x93\xaa\x99\xa6\x1e\xad\xcd\xbf\xcc\xce\xc7\x9a\x99\x92\x91\xa4\xa0" +"\x91\x91\x18\xf0\xfb\x64\x07\x3a\x0a\x0e\x7e\x98\xf8\xed\x9b\x06\xf2\x0a\xf7\x00\x0b\xaf\x9c\x90\x8f\x8f\x93\x8f\x8e\x8e\x97\x92" +"\x92\x0c\x0c\xba\x8f\x8e\x8f\x90\x8e\x98\x93\xa0\x90\x90\xaa\x0c\x0d\xf8\xec\x14\xb7\x13\x00\xe9\x02\x00\x01\x00\x07\x00\x10\x00" +"\x20\x00\x4b\x00\x55\x00\x61\x00\x66\x00\x6d\x00\x7c\x00\x89\x00\x90\x00\x97\x00\xa0\x00\xa5\x00\xb4\x00\xb8\x00\xc5\x00\xce\x00" +"\xd7\x00\xee\x01\x1f\x01\x31\x01\x3c\x01\x44\x01\x56\x01\x5a\x01\x64\x01\x6c\x01\xa3\x01\xaa\x01\xe4\x02\x2a\x02\x61\x02\x82\x02" +"\x86\x02\x92\x02\xb0\x02\xb6\x02\xbd\x02\xc3\x02\xcc\x02\xd3\x02\xde\x02\xe6\x02\xee\x02\xf4\x02\xfb\x03\x02\x03\x05\x03\x31\x03" +"\x41\x03\x79\x03\x7c\x03\x9d\x03\xe7\x03\xf2\x04\x16\x04\x22\x04\x37\x04\x3f\x04\x50\x04\x55\x04\x59\x04\x65\x04\x77\x04\x7f\x04" +"\x8d\x04\x95\x04\x9f\x04\xa4\x04\xab\x04\xb7\x04\xc6\x04\xd1\x04\xdc\x04\xe7\x04\xf8\x04\xfe\x05\x07\x05\x0d\x05\x14\x05\x1b\x05" +"\x20\x05\x28\x05\x30\x05\xa9\x06\x6c\x06\xda\x07\x12\x07\x6c\x07\xb2\x07\xe4\x07\xeb\x08\x26\x08\xa4\x08\xe4\x09\x5f\x09\xa0\x09" +"\xd1\x0a\x32\x0a\x7f\x0a\x9a\x0a\xc1\x0a\xe4\x0a\xe8\x0a\xec\x0a\xfd\x0b\x33\x0b\x47\x0b\x53\x0b\x92\x0b\xb4\x0b\xcf\x0b\xe7\x0b" +"\xee\x0b\xfb\x0b\xfe\x0c\x1f\x0c\x32\x0c\x39\x0c\x4b\x0c\x58\x0c\x83\x0c\xad\x0c\xc8\x0c\xe2\x0c\xe8\x0c\xed\x0d\x0b\x0d\x0e\x0d" +"\x29\x0d\x31\x0d\x4c\x0d\x6b\x0d\x71\x0d\x82\x0d\xa3\x0d\xb3\x0d\xbc\x0d\xcf\x0d\xea\x0d\xfb\x0e\x0f\x0e\x2c\x0e\x38\x0e\x44\x0e" +"\x51\x0e\x5e\x0e\x7d\x0e\x9b\x0e\xa4\x0e\xb8\x0e\xc8\x0e\xcd\x0e\xe0\x0e\xf1\x0f\x0d\x0f\x21\x0f\x2c\x0f\x31\x0f\x3f\x0f\x59\x0f" +"\x72\x0f\x8b\x0f\xa4\x0f\xb2\x0f\xbe\x0f\xd6\x0f\xe1\x0f\xf8\x0f\xfd\x10\x0e\x10\x25\x10\x30\x10\x36\x10\x4c\x10\x57\x10\x64\x10" +"\x79\x10\x85\x10\x99\x10\xa8\x10\xb7\x10\xc3\x10\xc7\x10\xd2\x10\xe5\x10\xf2\x10\xf6\x11\x08\x11\x13\x11\x1e\x11\x23\x11\x34\x11" +"\x3f\x11\x50\x11\x58\x11\x5f\x11\x6f\x11\x76\x11\x7f\x11\x86\x11\x94\x11\x9a\x11\x9f\x11\xae\x11\xbd\x11\xcc\x11\xd6\x11\xe4\x11" +"\xf2\x11\xfb\x12\x08\x12\x15\x12\x22\x12\x2f\x12\x3b\x12\x47\x12\x53\x12\x5f\x12\x69\x12\x71\x12\x79\x12\x81\x12\x89\x12\x94\x12" +"\x9f\x12\xaa\x12\xb5\x12\xc0\x12\xcb\x12\xd6\x12\xdf\x80\x82\x8d\x6f\x1b\x0b\x85\x0a\xf7\xc2\x29\x0a\x2a\x06\x0b\x81\x0a\xfb\x0d" +"\xf0\x2f\xf7\x18\xf7\x18\xf0\xe7\xf7\x0d\x1e\x0b\x8d\x1d\x42\x7f\x7b\x5a\x1e\x75\x83\x80\x7c\x75\x1a\x6e\xb5\x0a\x46\x72\x5a\x5c" +"\x1f\x72\x71\x7c\x68\x6c\x1a\x42\xde\x50\xf2\xc2\xc5\x97\xa1\xba\x1e\x8c\xf7\x08\x44\x0a\x0b\x5f\x9e\x74\xae\xae\x9e\xa2\xb7\x1e" +"\x0b\x86\x1d\xf7\xec\x06\xb9\xa3\x9d\xad\x91\x1d\x0b\xb9\x0a\x9a\xb0\x0a\xac\x0a\x8f\x97\x99\x1e\x0e\x36\x0a\xf7\x64\x16\xa0\x1d" +"\xa7\xab\xae\x6f\xa6\x67\x1f\x0e\x06\xb9\xa3\x9c\xae\x9b\x2a\x1d\x81\x8d\x70\x1b\x0b\x1a\x69\xa3\x79\xb9\x1e\x0b\xf7\xf6\xf7\x80" +"\x7b\x0a\x0b\x07\x68\x87\x7a\x7a\x6d\x2a\x0a\x0b\x69\xa3\x79\xb9\x0b\xe6\x0a\x9a\x88\x8e\x75\x9d\x1f\xf7\x2d\x1d\xa0\x95\x6f\x0a" +"\x07\x24\x0a\x0b\x07\xae\x8f\x9c\x9c\xa9\x1a\xad\x73\x9d\x5d\x1e\x0b\x1a\x9c\x83\x9a\x7d\x95\x1e\x93\x0b\x73\x1d\x7a\x93\x7c\x99" +"\x81\x1e\x0b\xf7\x45\xf8\x03\x15\xf7\x91\xfc\x03\x05\xf4\xf8\x61\x06\xce\x1d\x94\x7b\x98\x9c\x0a\x06\x0b\xf7\xf6\xf8\xef\x15\xfb" +"\x4a\x06\x71\x82\x89\x86\x81\xf7\x06\x0a\x7a\x93\x7c\x9a\x81\x1e\x83\x95\x97\x89\xa5\x1b\xd5\xfc\x20\xfb\x0a\x06\x71\x20\x1d\x69" +"\xa3\x79\xb9\x1e\xf7\xec\x2b\x1d\x91\x1d\x0b\x15\xf7\x04\x0a\x94\x94\x88\xa6\x1b\xf7\x88\x06\xae\xa7\x1d\x73\x1b\x0e\x15\xa0\x1d" +"\xa7\xab\xae\x6f\xa6\x67\x1f\x0b\x1f\x9c\x95\x96\x9d\xee\x0a\x0b\x15\xa8\x7e\x9b\x73\x73\x7e\x7c\x6d\x73\x0a\xa3\xa3\x98\x9b\xa8" +"\x1e\x0b\x06\x3a\x0a\x0b\x5d\x73\x79\x69\x69\xa3\x79\xb9\x1f\x0b\x1f\x7b\x82\x81\x79\x7a\x1a\x0b\xf7\x5a\xf7\x68\x15\xe7\x06\xb3" +"\x7d\xe2\x28\xbf\x2e\x8e\x85\x18\xdc\xec\x0a\x82\x9c\x7e\x94\x1e\x71\x1d\x80\x06\x65\xc5\x63\xba\x60\xb0\xc3\x1d\x06\xf7\x67\x04" +"\xf7\x26\xf7\x00\x07\xc8\xb8\x6f\x64\x5d\x4f\x6a\x39\x1f\x0b\x6c\x0a\x65\x5a\x55\x0a\x0b\xf7\x44\x1d\xad\x8f\x9e\x9d\xa8\x22\x1d" +"\x2e\x8e\x1d\x81\x1e\x84\x96\x96\x89\xa5\xd4\x0a\x9f\x93\x8d\x90\x94\x1f\x9a\x94\x95\x9d\x9c\x1a\x9c\x68\x0a\x82\x1f\x77\x85\x7d" +"\x76\x76\x1a\x6d\x9e\x79\xaf\x88\x1e\xe0\xfb\xd6\x05\xef\x06\x0b\xf8\x7f\xf7\xd5\x15\x8d\x27\x1d\xfb\x04\x06\x5c\x73\x79\x68\x69" +"\xa0\x7c\xbf\x89\x1f\xfb\x19\x07\x45\x74\x6e\x52\x72\x76\x91\x96\x7c\x1e\x7b\x98\x83\xa6\xb5\x1a\xf7\x81\xfb\x02\x07\xf7\x0f\x0a" +"\xfb\x1a\x07\xfb\x16\xcf\x43\xf7\x0e\xc4\xba\x9b\xab\xad\x1e\xae\xac\x9d\xbe\xd1\x1a\x0b\xf7\x92\xf2\x15\xf7\x94\xf7\x83\x05\xde" +"\xfc\x35\x20\x07\x74\x8d\x80\xd9\x0a\x94\xa6\x1a\x8f\xf7\x1a\x07\xfb\x92\xfb\x82\x05\x37\xf8\x4e\xe3\x07\xa4\x8a\x93\x84\x94\x1e" +"\x9b\x82\x79\x94\x78\x1b\x6c\x78\x79\x69\x88\x1f\x0b\xe9\x1d\x99\x88\xa3\x1b\xf7\x04\x06\xa1\x99\x32\x1d\x9c\x9d\x1a\x9b\x83\x9a" +"\x7c\x96\x1e\x93\x81\x81\x8c\x6f\x1b\x89\xf7\x3d\x06\x0b\xf8\xee\x80\x1d\x15\x6b\x72\x73\x6d\x6c\xa4\x73\xab\xf7\x00\x1d\x15\x6c" +"\x55\x55\x7b\x55\x1b\x64\x6b\x9a\x9d\x99\x97\x9a\x9f\x98\x1f\x9c\xa6\xa7\x92\xb3\x1b\xac\xa9\x88\x84\xb6\x1f\x0b\x07\xa3\x96\x38" +"\x1d\x0b\x65\x0a\xf7\x69\x27\x1d\x0b\x3e\x1d\x95\xa5\x1a\x0b\x3b\x0a\x7a\x93\x7c\x99\x81\x1e\x0b\x83\x34\x1d\x7b\x79\x1a\x0b\x06" +"\x5e\x9e\x74\xae\xae\x9e\xa2\xb8\x1e\x0b\x1a\x7a\x93\x7c\x99\x81\x1e\x0b\x1a\x9b\x83\x9b\x7d\x95\x1e\x0b\x84\x8d\x75\x8c\x08\x0b" +"\xbe\x72\xa8\x59\x96\x1f\x0e\x85\x81\x1f\x7b\x82\x81\x0b\xb1\x1d\x0e\xf7\x5a\xf7\x7c\x15\xd8\x88\x06\x47\x1d\x9b\x93\x98\x96\x72" +"\x1d\xf7\x27\xfc\x59\x07\x6b\x1d\x7a\x7a\x92\x1d\x7a\x7a\x2a\x0a\xf8\x6f\xf7\x29\x06\xa4\x89\x94\xf7\x0c\x1d\x07\x0b\x89\x06\x41" +"\x0a\xbf\xc3\x9f\x95\x86\x0a\x5c\x78\x69\x67\x1e\x0b\xa8\xf7\x85\x15\xfb\x27\xf7\x12\x20\xf7\x40\xd4\xd0\x9d\xa9\xb7\x1e\xaf\xa4" +"\x9e\xa4\xa2\x64\x1d\x81\x85\x08\x7d\x71\x65\x83\x5e\x1b\xfb\x0a\x40\xdd\x0a\x95\x80\x8f\x75\x08\x64\x92\x9a\x7c\xa5\x0a\x53\x1b" +"\xfb\x31\x74\x1d\x0b\x7c\x1d\x0e\xa2\x1d\x50\xa0\x58\xb4\x64\x1f\x5c\xbd\xca\x77\xed\x1b\xd5\xcb\x96\x9f\xb4\x1f\xb7\xa0\xa2\xa5" +"\xa6\x1a\xa7\x73\xa3\x6d\x90\x0a\x0b\xcb\xf2\x15\x5f\xf7\x0c\x0a\xf0\x06\xf7\x87\xf8\x02\x05\xfb\x9a\x78\x07\x3a\x0a\xf7\x15\x06" +"\xb9\xa3\x9d\xae\xad\x76\x9a\x58\x8d\x1f\xf7\xf8\x96\x07\x4f\x1d\xfb\x09\x06\xfb\x87\xfc\x00\x05\xf7\x98\xaa\x07\xba\xa3\x9d\xad" +"\xad\x72\x9d\x5d\x1f\xfb\x15\x06\x5c\x73\x79\x6a\x69\x9f\x7a\xb4\x8a\x1f\x0b\x6b\x1d\x7b\x79\x92\x1d\x7b\x79\x2a\x0a\x0b\x15\x73" +"\x7c\x7b\x73\x3f\xe0\x47\xe9\xe9\xe0\x6f\x1d\x82\x6a\x84\x1f\x61\x81\x63\x70\x56\x1b\x56\x62\xa6\xb5\x82\x1f\xab\x84\x82\x95\x76" +"\x1b\x0e\x15\x6b\x72\x73\x6d\x6c\xa5\x73\xaa\xf7\x00\x1d\x98\x1d\x21\x05\x7f\x99\x95\x87\x95\x1b\xa1\x9e\x9d\x9f\x98\x84\x96\x7a" +"\x99\x1f\x0e\x06\x71\x20\x1d\x2d\x0a\x1e\x0b\x5f\x0a\xfb\x6e\x07\x58\x8a\x76\x7b\x69\x1a\x68\xa3\x79\xb9\x1e\x0b\x71\x83\xca\x0a" +"\x0b\x06\xaa\x0a\x0b\x06\x5d\x73\x79\x69\x6d\x9c\x7a\xae\x87\x1f\x0b\xa7\xa4\x72\x6e\x71\x76\x7b\x6b\x6b\x76\x9c\xa3\xa9\xa3\xa4" +"\xa8\x1f\x0b\x77\x1d\x7d\x95\x1e\x93\x80\x0b\x88\x96\x1b\xa1\x9e\x9d\xa0\x98\x85\x95\x78\x9a\x1f\x0e\x51\x1d\x7e\x84\x7f\x7e\x1a" +"\x0b\x40\x1d\x92\x80\x9c\x7e\x1f\xf7\x19\x0b\x5d\x72\x75\x1d\x0b\x8a\x92\x84\x95\x74\x0a\x0b\xa3\x9c\xae\x9c\x83\x9a\x7d\x95\x1f" +"\x93\x80\x0b\x83\x9a\x7d\x95\x1e\x93\x2f\x1d\x2f\x06\x77\x84\x8a\x88\x0b\x06\xa2\x97\x96\x9f\x9e\x7f\x96\x74\x1f\x0b\x15\x92\x97" +"\x8e\x93\x93\x1a\x9d\x7b\x9b\x0b\xfb\x06\x05\x84\x81\x88\x82\x83\x1a\x78\x0b\xf8\xb4\xf8\x06\x15\xb9\x7b\xa0\x67\x75\x80\x83\x78" +"\x84\x1e\x9d\x0b\xf7\x06\x0a\x7b\x93\x0b\xa2\x99\xb0\xae\x73\x9d\x5c\x1f\x0b\x93\x8e\x95\x97\x1e\x0e\x1a\x69\xa3\x79\xba\x1e\x0b" +"\x74\x8d\x80\x91\x82\x1e\x0b\x06\xf7\x0f\x0a\x0b\x1e\xfb\x18\x07\x6e\x98\x7b\x0b\x1e\x9b\x81\x7a\x94\x78\x1b\x0b\xbd\xf2\x15\x87" +"\x6d\x1d\x7b\x79\x1a\x68\xa3\x7a\xb9\x1e\xea\x06\xb1\xa2\x9f\xad\xa5\x7d\x9c\x71\x90\x1f\x9a\xbc\x05\xe1\x5b\x87\x06\x6c\x74\x75" +"\x70\x6a\xa3\x76\xaf\x1f\xf7\xf5\xf7\x0d\xf7\x09\x1d\x79\xfb\x1f\xf7\x15\x96\x07\x6a\x8d\xa0\x77\xaa\x3e\x1d\x94\xa6\x1a\xd5\x07" +"\xa5\x8a\x92\x84\x94\x74\x0a\x7a\x7b\x83\x7e\x80\x1f\x85\x82\x89\x86\x89\x79\x08\x80\xf7\x13\xf7\x0a\x51\x06\x8b\x1d\x93\xa6\x1a" +"\xf7\x35\xfc\x4f\x07\xf7\x0e\x1d\x93\x06\xf0\xfb\x62\x15\x55\x06\xc1\xf7\x41\x05\x0b\xf8\xfb\xf7\x38\x15\xbb\x07\xcc\x7a\xc2\x6b" +"\xb1\x1e\xb6\x67\x5d\xa3\x5a\x1b\x60\x6b\x7c\x66\x66\x1f\xaf\x6a\x66\x9b\x5d\x1b\x72\x51\x80\x7f\x65\x1f\x6e\x82\x7c\x7a\x72\x1a" +"\x6e\xa2\x73\xa8\x92\x93\x8c\x8e\x94\x1e\x9d\xcc\x92\x8d\x9c\x1b\xa5\x9d\x79\x72\x1f\x7c\x07\x8e\x74\x79\x8d\x7c\x1b\x5b\x4c\x79" +"\x73\x62\x1f\x5f\x70\x7b\x71\x5e\x1a\x2c\xd1\x4d\xf5\xb6\xaa\x94\xa1\xae\x1e\x80\x96\x96\x86\x9a\x1b\x9b\x97\x90\x95\x95\x1f\x75" +"\xae\xa3\x84\xb4\x1b\xbb\xc9\x9a\xa0\xaf\x1f\x9c\x96\x95\x9b\x9e\x1a\xaa\x76\xa2\x6e\x7d\x7c\x87\x7e\x6e\x1e\x7f\x6f\x7a\x87\x75" +"\x1b\x65\x75\xa1\xc1\x7b\x1f\xfb\x06\x69\x15\x6a\x62\x75\x81\x6e\x1b\x62\x71\x9f\xaa\x96\x8f\x93\x93\x91\x1f\x9a\x9e\xb2\x95\xb0" +"\x1b\x9c\x98\x89\x86\xa1\x1f\xf7\x08\xd4\x15\xc0\x94\xa1\xa6\xad\x1b\xae\xa1\x70\x56\x93\x1f\x0b\xf8\xca\xf8\x75\x15\xf7\x51\x1d" +"\x65\x77\x59\x69\x1f\x44\x24\x73\x69\x85\x87\xf7\x62\x1d\xb2\x1a\xb1\x75\x98\x4b\xf7\x02\x1d\xca\x6e\x0a\x86\x06\x86\xf7\x24\xa2" +"\x06\xa9\x8d\xad\x6d\xab\x53\xc5\xfb\x00\x18\x98\x72\x99\x76\x90\x89\x08\x94\x1d\x99\x4a\x1f\x7c\x06\x53\xf4\x72\xb8\x73\xaa\x6c" +"\xa4\x19\x8f\x92\x92\x94\x98\x9e\x9f\xa7\x19\x8e\x91\x8d\x8d\x8e\x8f\x90\x93\x8f\x91\x8d\x8e\xa3\xaf\x18\x8c\x8d\x90\xf7\x68\x1d" +"\xb0\x99\xa1\xc6\x1f\x0b\xf7\x5a\xf7\x7c\x15\xd8\x88\x06\x47\x1d\x70\x1d\x94\xa6\x1a\xf7\x27\xfc\x59\x07\x57\x0a\xf8\x6f\xf7\x29" +"\x06\xa3\x89\x95\x85\x94\x1e\x9b\x81\x79\x94\x79\x1b\x79\x7c\x83\x7e\x80\x1f\x83\x80\x89\x82\x70\x1a\x5d\xfb\x8c\x07\x0e\xaf\x0a" +"\x7a\x93\x7c\x99\x81\x1e\x84\x95\x99\x88\xa3\x1b\xf7\x16\x2b\x1d\x9c\x83\x9a\x7d\x95\x1f\x81\x92\x4d\x0a\xf7\xf9\x07\xad\x90\x9d" +"\x9c\xa9\x33\x1d\x80\x81\x8d\x70\x1b\xfb\x04\x06\xfb\x19\xfb\xaa\xfb\x1c\xf7\xaa\x05\xfb\x03\xd7\x0a\x77\x1a\x6d\x9d\x7a\xad\x86" +"\x1e\xfb\xf9\x07\x65\x8a\x74\x78\x6b\x70\x0a\xf7\x15\x06\xb9\x67\x0a\x82\x8d\x6f\x1b\x6c\x06\x0e\xf8\x10\xf7\x71\x15\xf7\x13\xf0" +"\x9c\x8d\x90\x8c\x92\x8f\x19\xa4\x1d\x80\x8d\x70\x1b\x30\x06\x77\x84\xf7\x67\x1d\x7a\x92\x7e\x9b\x7f\x1e\x55\x60\x55\xb5\x05\x9a" +"\x97\x93\x9a\x9c\x1a\x9b\x68\x0a\x81\x1f\x78\x85\x7d\x76\x76\x1a\x6d\x9e\x7a\xae\xf6\x1d\x72\x97\x1f\xcc\xf7\x4d\x1d\x0b\x15\xf7" +"\x36\xf7\x75\x05\xb7\xa2\x9d\xac\x9c\xae\x0a\xfb\x0d\x32\xf7\x0d\x05\xa3\x96\xb7\x0a\x76\x1a\x7b\x93\x7b\x99\x81\x1e\x95\x85\x94" +"\x89\xa4\x8a\xf7\x37\xfb\x75\x18\xfb\x19\x4e\x07\xeb\x1d\x06\x0b\xd1\x1d\x81\x81\x7a\x8e\x0a\xf1\x1d\x71\x83\xb6\x0a\x88\x83\x77" +"\x78\x1e\x77\x75\x68\x7e\x6a\x1b\x68\x6d\x93\xa0\x59\x1f\xe4\x07\xa3\x89\x94\x85\x4d\x1d\x80\x72\x1a\xfb\x32\x07\x93\x88\x05\x61" +"\xe5\xcc\x79\xc3\x1b\xc7\xc3\x9e\xaf\xb6\x1f\xbc\xb2\x9c\xb0\xcb\x1a\x0b\xf7\x33\xa5\x15\x6f\xbc\xb5\x80\xbd\x1b\xf7\x30\xf7\x13" +"\xf7\x18\xf7\x37\xd2\x79\xc2\x61\xc4\x1f\xbd\xc7\x05\x9c\x9f\x8f\x93\x99\x1a\xa7\x74\xa1\x6e\x77\x82\x85\x72\x76\x1e\x5f\x56\x05" +"\xaa\x5a\x5c\x99\x57\x1b\xfb\x31\xfb\x13\xfb\x18\xfb\x38\x41\x9f\x51\xb9\x51\x1f\x54\x48\x05\x79\x76\x87\x83\x7d\x1a\x70\xa3\x75" +"\xa8\x9f\x94\x90\xa4\xa0\x1e\xf7\xec\xf8\x33\x15\x99\x6f\x94\x67\x69\x1a\x24\x3b\x34\x2c\x71\x75\x90\x98\x72\x1e\x41\xd0\x15\x77" +"\xac\x82\xad\xb2\x1a\xf4\xda\xe2\xeb\xa8\xa5\x84\x7b\xa6\x1e\x0b\xf7\x5a\xf7\x53\x15\xe9\x06\xea\xbd\x9c\xba\xb8\x1f\xab\xad\x9e" +"\xb9\xb8\x1a\xf7\x00\x2f\xd7\xfb\x15\x1e\xfb\x7d\x06\x71\x20\x1d\x7a\x94\x7b\x98\x82\x1e\x83\x96\x96\x89\xa5\x96\x0a\xf7\xfa\x04" +"\xf7\x06\x06\xce\xb3\x6c\x57\x56\x63\x6c\x48\x1f\xfb\x06\x06\x0e\xf8\xbb\xf8\x15\x15\xa0\x9f\x90\x93\x9c\x1a\xa6\x74\xa1\x6f\x78" +"\x82\x86\x77\x76\x1e\x5e\x5e\x05\x9c\x66\x56\x96\x5e\x1b\xfb\x24\xfb\x07\x27\xfb\x12\x5a\x9d\x5c\xae\x61\x1f\x5d\x5e\x05\x76\x77" +"\x86\x82\x7b\x1a\x6f\xa2\x75\xa8\x9c\x93\x90\xa0\xa2\x1e\xc0\xc0\x05\x78\xb6\xb2\x83\xba\x1b\xf7\x26\xf7\x07\xef\xf7\x12\xbb\x7a" +"\xb8\x6a\xb5\x1f\x3e\x40\x15\x98\x78\x91\x77\x76\x1a\x45\x48\x56\x32\x7c\x82\x8c\x8f\x78\x1e\x33\xc2\x15\x7d\xa0\x84\x9f\xa1\x1a" +"\xd0\xce\xc1\xe2\x9b\x96\x8a\x86\xa1\x1e\x0b\xf8\xa9\xf8\x61\x15\xb2\x8c\xa1\x9d\xab\x31\x0a\x20\x0a\xfb\x16\xf7\x08\x1d\xaa\xfb" +"\xa2\x06\x53\x53\x5e\x46\x46\x53\xb8\xc3\x1e\xf7\xa2\xaa\x07\xa3\x96\x8c\x91\x94\x1f\xa4\x1d\x83\x8d\x6e\x1b\xfb\x16\x06\x3d\x1d" +"\x79\x1a\x6c\xa1\x78\xb2\x8a\x1e\xfb\x99\x07\x0b\xf7\x5b\xf3\x15\xf7\x6e\x95\x07\xba\xa4\x9c\xf7\x4b\x1d\xa0\x7c\xbe\x8a\x1f\xfb" +"\x6f\xa0\x0a\xf7\x6f\x07\xbf\x8c\x9f\x9a\x6e\x1d\xfb\x0c\x06\x5d\x73\x79\x69\x69\xa3\x7a\xb9\x1f\x95\xfb\x6e\x06\x0e\xf7\x5d\xf8" +"\x62\x15\xab\x92\x99\x9b\xa7\x1a\xb1\x74\x98\x4b\x1e\x48\x06\x4c\x73\x7d\x67\x67\xa1\x7b\xbc\x89\x1f\xf7\x3d\xfb\xb3\x76\x68\x78" +"\x6b\x79\x7a\x7e\x8d\x19\x8a\x06\x87\x91\x06\xc1\x7b\xa1\x65\x64\x7d\x76\x50\x1e\x5a\x07\x66\xb3\x75\xd1\xcb\xb1\xa6\xd8\xb8\x1e" +"\xf7\x6e\xf8\x07\x05\xba\x8d\xa1\x9c\xac\x28\x1d\x4b\x06\x4b\x74\x7d\x66\x6f\x99\x7b\xab\x84\x1f\xfb\x00\xfb\x4b\x05\x0b\xf7\x7f" +"\xf8\x3d\x15\xfb\x02\x72\x0a\xfb\x6d\x7e\x07\x68\x73\x76\x6c\x2d\x0a\x1f\xf7\x04\x06\xb9\xa4\x9d\xac\xa2\x7b\xa0\x77\x90\x1f\x8d" +"\x83\x7f\x8d\x7a\x1b\xf0\x07\xb8\x91\xa0\x9d\xa0\x1e\xa7\xa3\xa5\x99\xa7\x1b\xb7\x9e\x6c\x46\x1f\xfc\x0b\x2f\x0a\xf8\x0a\x07\xf7" +"\x14\x4c\xd7\x21\x60\x6e\x81\x70\x6b\x1e\x0b\xf7\xf6\xf8\x61\x15\xec\x69\x1d\xfb\xc2\x06\x5d\x0a\xec\xfb\xfa\x2a\x06\x71\x20\x1d" +"\x68\xa3\x7a\xb9\x1e\x0b\x9c\x1d\x80\x6c\x1a\xfb\x33\x89\x07\x71\x82\x50\x1d\x9a\x81\x3f\x1d\xf7\x04\x06\xa1\x99\xf7\x3a\x1d\x92" +"\x20\x0a\x89\xf7\x40\x06\xec\x42\xcc\xfb\x00\x59\x0b\x15\x9a\x9b\x90\x1d\x22\x05\x75\x74\x8a\x8a\x4e\x1d\xf7\x9e\xf3\x15\x9b\x9b" +"\x90\xf7\x5e\x1d\x7f\x1e\x25\x22\x05\x76\x74\x8a\x8a\x4e\x1d\x0e\x07\xa4\x0a\x0b\x5e\x8a\x0a\x0b\x1a\x54\x60\x1d\x80\x1e\x7d\x6e" +"\x83\x88\x7f\x1b\x7e\x84\x90\x95\x0b\xf7\xc3\xf7\x2b\x15\xfb\x1e\xf7\xca\x05\x98\x06\xa4\x95\x8c\x91\x94\x1f\x9b\x94\x95\x9d\x9c" +"\x31\x0a\x81\x7f\x8d\x71\x1b\xfb\x19\x06\x72\x82\x89\x86\x81\x3c\x1d\x84\x96\x95\x89\xa5\x1b\xf7\x5f\xfc\x61\x05\xf2\x06\x0b\x1f" +"\x69\x84\x07\x71\x5c\x1d\xa5\x1b\x92\xfb\x6f\x80\x5b\x0a\xf8\x6a\x31\x1d\x0b\xa8\x06\xa2\x97\x38\x1d\x6e\xad\x06\xe7\x1d\x0b\x7a" +"\x1a\x7a\x94\x7b\x98\x82\x1e\x83\x96\x96\x89\xa5\x1b\x96\x06\xf7\x00\xfb\x13\x15\xf7\x13\xf7\x15\x07\xc8\xaf\x75\x68\x61\x5b\x6f" +"\x46\x1f\xfb\x01\xfb\x7b\x15\xf7\x14\xf7\x17\x07\xb4\xaa\x84\x7d\xa4\x1f\xa3\x7d\x9c\x73\x76\x1a\x6b\x6a\x7b\x4a\x1e\x0e\xf7\x9c" +"\xf3\x15\xf7\x6d\xf7\x5e\x38\x07\x5e\x9e\x74\xae\xae\x9e\xa2\xb8\x1e\xf7\x4f\xfc\x6a\x07\x52\x1d\xbf\xfb\x6d\x57\x06\x46\x0a\x0b" +"\xf7\x3e\x1d\xb1\xd6\xf7\x00\x0a\x91\x83\x8e\x7b\x90\x75\x8e\x85\x93\x84\x08\x83\x94\x9b\x85\x99\x47\x0a\x0b\xf8\xc7\xf7\x6e\x15" +"\xa2\x97\x32\x1d\x9c\x9d\x22\x1d\xfc\xa2\xf7\x22\x1d\x95\x97\x89\xa5\x1b\x0e\xf7\x00\xf7\xd6\x95\x0a\x0b\x07\xa4\x0a\xb3\x81\xa7" +"\x1b\xcc\xb9\xb3\xc3\x4e\x0a\x95\x0a\x0e\x15\xd5\x0a\x96\x97\x88\xa4\x1b\xf8\x14\x06\xa1\x98\x8d\x90\x94\x1f\x9b\x94\x95\x9d\x9d" +"\x1a\x9b\x83\x9b\x7d\x94\x1e\x93\x20\x0a\x0b\x1b\x96\xfb\xfa\x80\x06\x72\x82\x89\x86\x61\x1d\xf7\x6a\x29\x0a\x2c\x06\x0b\xf8\x3c" +"\xf7\x67\xdc\x1d\x0b\x1a\x78\x9a\x7d\x9f\x95\x95\x90\x93\x91\x1e\xb2\xab\x91\x90\x9c\xf5\x1d\xa7\x0a\x81\x1e\x95\x85\x92\x89\xa1" +"\x8a\xfb\x04\x0b\xf8\xb3\xf8\x15\x15\xa8\x9d\x93\x95\xa0\x1a\xa4\x74\xa3\x71\x7e\x84\x88\x7d\x75\x1e\xfc\x43\xfb\xa1\x05\x6d\x79" +"\x84\x81\x77\x1a\x71\xa2\x73\xa4\x97\x9a\x91\x95\x9b\x1e\x0e\x15\xbb\xaa\x80\x71\xa7\x1f\xa3\x75\x99\x6b\x6d\x1a\x41\x50\x59\x34" +"\x5d\x6a\x97\xa4\x70\x1e\x73\xa2\x7d\xaa\xab\x1a\xaa\x99\xaa\xa3\xa2\x1e\xa5\xa6\xab\x96\xbb\x1b\x0e\xf7\x52\x1d\x96\xfb\xfa\x06" +"\x65\x74\x78\x6b\x69\xa3\x79\xba\x1f\xf7\x15\x06\xb9\xa3\x9c\xae\xa9\x1d\x6c\x0b\x29\x1d\x95\xfb\xf8\x81\x29\x1d\xf7\xa7\x06\xf7" +"\x21\xd4\xc0\xf3\xf7\x07\x34\xc9\xfb\x37\x1f\xfb\x0d\x0b\x75\x89\x88\x4e\x1d\x0b\x9a\x7c\xa5\x0a\x0b\x2c\x0a\xf7\x1c\x63\x06\x5f" +"\x9e\x74\xae\xaf\x9e\xa2\xb7\x1e\xb3\xf7\x1b\x07\xb9\xa3\x9d\xad\xaa\x7a\x9b\x68\x8f\x1f\x0b\xea\x1d\x0e\x15\x98\x7a\x86\x8e\x7f" +"\x64\x0a\x21\x05\x80\x99\x96\x86\x95\x1b\xa1\x9e\x9c\xa0\x99\x84\x95\x7a\x99\x1f\x0e\xf7\x1f\x1d\x7e\x9b\x93\x62\x0a\x8c\x98\x94" +"\x8c\x8f\x76\x1d\x75\x91\x94\x7a\x1f\x96\x77\x89\x8c\x55\x1d\x7a\x94\x7e\xa0\x80\x1f\x7e\xa5\x0b\xaa\x3e\x1d\x96\xa4\x1a\xdb\x07" +"\xa4\x8a\x93\x84\x95\x1e\x9a\x81\x7a\x94\x78\x1b\x79\x7f\x85\x7b\x7e\x1f\xa9\x46\x71\x91\x0b\x3a\x1d\x93\x20\x0a\x0b\x05\xad\x8f" +"\x9e\x9d\xa8\x22\x1d\x2f\x06\x2e\x1d\x7b\x93\x7b\x99\x0b\xf7\x07\x0a\xf7\x03\x07\xca\x8d\x9f\x98\xb0\x1a\xb2\x74\x98\x4a\x1e\x32" +"\x06\x4b\x74\x7d\x65\x68\x9f\x7d\xc0\x88\x1f\xfb\x07\x07\x0b\x40\x1d\x91\x81\x9d\x7d\x1f\xf7\x1a\x21\x05\x80\x99\x95\x86\x0b\x71" +"\x83\x8a\x85\x81\x48\x0a\x83\x0b\x15\x68\x6e\x6f\x6a\x69\xa8\x6f\xae\xae\xa8\xa7\xac\xae\x6f\xa6\x67\x1f\x0b\x15\x9d\x99\x91\x95" +"\x98\x1a\xa1\x79\x9c\x74\x7f\x85\x51\x1d\x7d\x84\x80\x7e\x1a\x77\x9e\x79\xa1\x95\x95\x0b\xf8\xef\x15\xfb\x0c\x06\xd6\x0a\x95\x96" +"\x89\xa6\x1b\x97\xfc\x21\x0b\x2a\x1d\x81\x8d\x70\x1b\x2f\x06\x73\x7f\xbe\x0a\x74\x97\x7a\xa4\x81\x1e\x34\x0b\xf7\x26\xf7\xfa\x15" +"\xf7\x04\xfb\x76\x05\xea\x06\xf4\xf7\x75\x05\xfb\x91\x6c\x07\x71\x83\x89\x4f\x0a\x7a\x79\x1a\x0b\x88\x8f\x74\x9d\x1f\xfb\x2d\xf7" +"\x11\xf7\x15\x1d\x1b\x99\x92\x88\x7a\xa6\x1f\x70\xb8\xac\xcd\x0a\x06\xba\xa3\x9c\xae\x9b\x2a\x1d\x81\x8d\x6f\x1b\x0b\xbb\xb6\xcd" +"\xac\x7d\xaa\x71\xa0\x1e\x3b\xd2\x0a\x0b\x8a\x84\x8b\x80\x82\x1a\x6c\xa0\x76\xa9\xa5\x9c\x9b\xb0\x94\x1e\xc1\x9a\xa2\x99\xd8\x1b" +"\xbf\xb3\x7e\x79\x7a\x5f\x7e\x4e\x0b\xa2\x74\xa8\x95\x99\x8d\x8f\x9d\x1e\x96\xbb\xad\x90\xad\x1b\xc8\xa6\x7e\x6e\x1f\x79\x07\x91" +"\x68\x6a\x8e\x6a\x1b\x32\x0b\xca\x0a\xf7\x07\xfb\xa0\x06\x60\x0b\x97\x9b\xa1\x31\x0a\x2f\x1d\x32\x06\x76\x84\x8a\x88\x82\x1f\x78" +"\x85\x7c\x76\x0b\x89\xa4\x1b\xf7\x06\x06\xf7\x03\xe0\xda\xf1\x8a\x1f\xf8\x4c\x0b\xf7\x49\x1d\x9f\x0b\x06\xcb\xa2\x99\xb1\xaf\x75" +"\x9a\x57\x8c\x1f\xf7\xf9\x07\xc1\x8d\x8f\x1d\x0b\xf8\x96\xf8\x3d\x15\xfb\x1f\x06\x72\x81\x89\x86\x82\x32\x0a\x84\x0b\x1e\x69\x06" +"\x4c\x74\x7d\x66\x6e\x9a\x7a\xac\x85\x1f\x2b\x07\x4c\xf7\x02\x05\xcd\x65\x6c\xa2\x58\x1b\x5f\x81\x0b\xf8\xe4\xf7\x01\x0a\x93\x85" +"\x9b\x1b\x9e\x9b\x99\x9c\x90\x8a\x93\x88\x92\x1f\x0b\x89\x86\x82\x1f\x7b\x81\x81\x7a\x7a\x1a\x0b\x06\xf7\x0f\x1d\x0b\x06\x71\x0a" +"\x7c\x95\x9d\x82\x9d\x3e\x1d\x94\xa6\x1a\x0b\x46\xfb\x5c\x05\x88\x84\x8a\x84\x85\x1a\x7b\x9b\x7d\x9e\x9a\x93\x91\x9d\x97\x1e\xf7" +"\x25\xf7\x76\x05\x0b\x07\xbb\x8c\xa1\x9c\xae\x1a\xaf\x73\x99\x4c\x1e\x40\x06\x4c\x73\x7d\x67\x68\xa1\x7a\xbc\x8a\x1f\x0b\xf7\x6f" +"\xf7\x0d\x15\x34\xb9\x5a\xde\xbf\xad\xa2\xaf\xa7\x73\xa3\x6f\x84\x81\x89\x89\x84\x1e\x89\x0b\x1a\xaa\xa8\xa2\xb2\xa5\x9e\x84\x7a" +"\x9b\x1e\x72\xa2\x91\x88\x9f\x1b\xa9\xa2\xa2\xa9\xbe\x3a\xbe\x0b\x70\x84\x8a\x85\x81\x48\x0a\x84\x95\x98\x88\xa4\x1b\x0b\x8d\xfb" +"\x2e\xf7\x11\x18\xed\x0a\xa0\x95\x93\x0b\x15\xa2\xa2\x97\xa6\xaa\x1a\xc9\x59\xbb\x4a\x49\x59\x5b\x4c\x6d\x97\x70\xa2\x74\x1e\x72" +"\x76\x0b\xf8\x6f\xe6\x0a\x97\x87\x93\x7e\x95\x1f\x0b\x8a\x84\x80\x1f\x7b\x82\x81\x7a\x7a\x1a\x7b\x94\x7b\x98\x81\x1e\x83\x97\x94" +"\x89\xa6\x1b\x0b\xd1\x0a\xa5\x1b\x0b\x15\x99\x97\x92\x96\x97\x1a\x9d\x7a\x9b\x78\x82\x81\x53\x1d\x7c\x0b\x1f\x7e\x07\x53\x98\x76" +"\xae\xa4\x98\x96\xa7\x94\x1e\xc0\x2d\x8e\x85\x8e\x87\x95\x7e\x19\x0b\xa8\x1d\x9a\x9a\x1a\x9b\x7a\x9a\x78\x1e\x0e\xf7\x10\x0a\x79" +"\x1a\x0b\x15\x9d\x99\x91\x95\x98\x1a\xa1\x79\x9c\x74\x7f\x85\x88\x7e\x7a\x1e\xfb\x19\x21\x05\x0b\x06\xa0\xf6\x0a\x83\x9a\x7c\x96" +"\x1e\x93\x0b\xf7\x2b\x1d\x93\x7b\x99\x82\x1e\x83\x96\x96\x89\x0b\xf7\x12\x15\xa7\x9f\x78\x70\x6e\x78\x78\x6d\x6f\x77\x9e\xa7\xa7" +"\x9f\x9e\xa8\x1f\x0b\x1a\xad\x73\x9d\x5c\x1e\xfb\x0c\x29\x1d\x95\x0b\x1b\x8d\x06\x67\xfb\x16\x52\xf7\x23\x05\x2d\x06\x53\xfb\x22" +"\x69\xf7\x15\x05\x0b\x71\x83\x8a\x85\x81\x3b\x0a\x7a\x93\x7b\x99\x82\x1e\x84\x0b\x77\x84\x8b\x88\x81\x1f\x78\x84\x7d\x77\x76\x4b" +"\x0a\x83\x0b\x06\x77\x84\x8a\x88\x82\x1f\x77\x85\x7d\x76\x0b\x40\xdd\x0a\x0b\x91\x82\x1e\x7b\x95\x9c\x82\x9e\x2d\x1d\x0b\x15\xa7" +"\x5f\x69\x9b\x7c\x1b\x84\x84\x83\x82\x85\x8f\x86\x97\x80\x1f\xae\x0b\x65\x1a\x66\xa2\x7d\xca\x1e\xed\x06\xca\x6e\x0a\x0b\x83\x34" +"\x1d\x0b\xc7\xe8\x1f\xc8\x07\xef\xd3\xd2\xef\xad\xad\x83\x7c\xa6\x1e\xa7\x7c\x0b\x72\x82\x89\x86\x81\x73\x1d\x2d\x0a\x1e\x0b\x7d" +"\x67\x68\xa1\x7a\xb9\x8a\x1f\x4b\x07\x0b\x8d\x90\x3a\x1d\x0b\x1a\x6b\xa5\x79\xb8\x1e\xab\x06\xba\xa5\x9d\xac\xa0\x82\x98\x71\x0b" +"\x1e\xe0\x06\xcb\x6e\x0a\x89\x06\x89\xd1\x0b\x1e\x7b\x95\x9d\x82\x9d\x1b\x9c\x9b\x93\x98\x96\x1f\x93\x96\x8d\x0b\x62\xf7\x0a\x0a" +"\xf7\x24\x07\x0e\x81\xac\x1d\x93\xa6\x1a\x0b\x15\xf7\x02\x30\x05\x82\x97\x93\x87\x95\x1b\xa0\x9d\x9c\xa0\x0b\xab\x1d\x74\x1b\x6c" +"\x6e\x0b\xf7\x08\x0a\xf7\x18\x2b\x1d\xad\x0b\xf7\x65\x1d\xf7\x31\x07\x0e\x1b\x5e\x68\x9e\xa7\x83\x1f\xa6\x83\x83\x93\x77\x1b\x0e" +"\x5c\x73\xf7\x08\x0a\x0b\x06\x9f\xf6\x0a\x0b\xfb\x2f\xfb\x11\x05\x75\x79\x88\x87\x7d\x1a\x76\x9d\x7a\x0b\x9e\x1a\x9d\x82\x9b\x7c" +"\x96\x1e\x93\x7f\x82\x8d\x6e\x1b\x0b\x6f\x1a\x68\xa3\x79\xb9\x1e\xf7\xd5\x06\xd4\xb2\xab\xc6\x0b\x7f\x1a\x79\x9c\x7b\x9e\x94\x96" +"\x57\x1d\x05\x82\x97\x94\x87\x95\x1b\xa0\x9d\x9c\xa0\x97\x87\x0b\x06\x33\x66\x84\x71\x64\x1f\x47\x5e\x68\x40\x27\x1a\x0b\x1a\x68" +"\xa3\x7a\xb9\x1e\xf7\x03\x0b\x82\x90\x7f\x92\x83\x1f\x81\x95\x93\x88\xa6\x1b\x0b\x90\x1a\x9b\x7b\x9a\x7a\x7d\x82\x84\x79\x81\x1e" +"\x0b\x9b\x8e\x8f\x93\x1f\x9b\x95\x95\x9c\x9d\x1a\x9b\x0b\xdc\xc7\xbf\xe8\xb6\xae\x83\x7b\xa4\x1f\x97\x84\x0b\x15\xfb\x25\x06\xf7" +"\x28\xfb\x7a\x05\x78\x97\x0b\x93\x7c\x99\x81\x1e\x83\x95\x98\x89\xa4\x1b\x0b\x1b\x80\x7f\x90\x9e\x6a\x1f\xa8\x59\x79\x92\x0b\x67" +"\x76\x7c\x70\x82\x90\x7f\x92\x83\x1f\x81\x0b\x9b\x99\x9e\x95\x86\x92\x7f\x96\x1f\x0e\x1f\x7b\x81\x81\x7a\x79\x1a\x0b\x61\x1b\x5f" +"\x7e\x9d\xc6\x1f\x0b\x79\x69\x69\xa3\x79\xba\x1f\x0b\xf6\xbe\xb7\x97\xa8\xbc\x1e\x0b\x06\x5f\x9d\x74\xaf\xae\x9e\xa2\xb7\x1e\x0b" +"\x06\x74\x7f\x80\x78\x77\x97\x80\xa2\x1f\x0b\x8a\x75\x7a\x6a\x1a\x69\xa4\x79\xb9\x1e\x0b\x15\x9f\x9a\x90\x93\x99\x1a\xa1\x79\x9c" +"\x0b\x19\x8f\x8f\x94\x98\x90\x94\xbf\xe8\x18\x0b\x5d\x73\x79\x68\x69\xa0\x7c\xbe\x89\x1f\x0b\x72\x81\x89\x85\x82\x1f\x7b\x82\x81" +"\x7a\x0b\x96\xa6\x8e\x1f\xab\xf7\x8b\x05\x0e", 52203 +}; diff --git a/dviware/dvisvgm/src/fonts/NimbusMonoPS-BoldItalic.cff.cpp b/dviware/dvisvgm/src/fonts/NimbusMonoPS-BoldItalic.cff.cpp new file mode 100644 index 0000000000..3e86110058 --- /dev/null +++ b/dviware/dvisvgm/src/fonts/NimbusMonoPS-BoldItalic.cff.cpp @@ -0,0 +1,1855 @@ +#include "Base14Fonts.hpp" + +extern const MemoryFontData NimbusMonoPS_BoldItalic_cff = { +"\x01\x00\x04\x02\x00\x01\x01\x01\x18\x4e\x69\x6d\x62\x75\x73\x4d\x6f\x6e\x6f\x50\x53\x2d\x42\x6f\x6c\x64\x49\x74\x61\x6c\x69\x63" +"\x00\x01\x01\x01\x38\xf9\xbc\x00\xf9\xbd\x01\xf9\xbe\x0c\x00\xf9\xbf\x02\xf9\xc0\x03\xf8\x14\x04\x8c\x0c\x01\x7f\x0c\x02\x33\x0c" +"\x03\xf7\x02\x0c\x04\x2e\xfc\x1d\xf9\xe0\xfa\x79\x05\x1c\x35\xaf\x0f\x1c\x35\xc2\x11\xa9\x1d\x00\x00\xd1\x60\x12\x01\xa6\x02\x00" +"\x01\x00\x08\x00\x0e\x00\x13\x00\x1d\x00\x24\x00\x2b\x00\x35\x00\x39\x00\x3f\x00\x45\x00\x50\x00\x5a\x00\x5d\x00\x63\x00\x69\x00" +"\x6e\x00\x74\x00\x7a\x00\x84\x00\x8b\x00\x8e\x00\x95\x00\x9c\x00\xa8\x00\xab\x00\xb3\x00\xb7\x00\xbc\x00\xc2\x00\xcd\x00\xd9\x00" +"\xe3\x00\xe7\x00\xf2\x00\xf4\x00\xfa\x01\x04\x01\x0b\x01\x12\x01\x16\x01\x22\x01\x2b\x01\x31\x01\x3c\x01\x41\x01\x4d\x01\x53\x01" +"\x59\x01\x5f\x01\x6b\x01\x6f\x01\x71\x01\x77\x01\x7d\x01\x89\x01\x8b\x01\x91\x01\x9e\x01\xa5\x01\xaf\x01\xb6\x01\xc2\x01\xcd\x01" +"\xd0\x01\xd2\x01\xd5\x01\xdb\x01\xe1\x01\xed\x01\xf0\x01\xf6\x01\xfe\x02\x09\x02\x15\x02\x1a\x02\x1d\x02\x21\x02\x27\x02\x33\x02" +"\x38\x02\x3e\x02\x4b\x02\x52\x02\x59\x02\x60\x02\x6f\x02\x7b\x02\x80\x02\x86\x02\x8c\x02\x97\x02\xa0\x02\xa6\x02\xa8\x02\xb3\x02" +"\xb9\x02\xbf\x02\xc9\x02\xcd\x02\xd3\x02\xda\x02\xe3\x02\xec\x02\xf5\x02\xfe\x03\x07\x03\x10\x03\x19\x03\x22\x03\x2b\x03\x34\x03" +"\x3d\x03\x46\x03\x4f\x03\x58\x03\x61\x03\x6a\x03\x73\x03\x7c\x03\x85\x03\x8e\x03\x97\x03\xa0\x03\xa9\x03\xb2\x03\xbb\x03\xc4\x03" +"\xcd\x03\xd6\x03\xdf\x03\xe8\x03\xf1\x03\xfa\x04\x03\x04\x0c\x04\x15\x04\x1e\x04\x27\x04\x30\x04\x39\x04\x42\x04\x4b\x04\x54\x04" +"\x5d\x04\x66\x04\x6f\x04\x78\x04\x81\x04\x8a\x04\x93\x04\x9c\x04\xa5\x04\xae\x04\xb7\x04\xc0\x04\xc9\x04\xd2\x04\xdb\x04\xe4\x04" +"\xed\x04\xf6\x04\xff\x05\x08\x05\x11\x05\x1a\x05\x23\x05\x2c\x05\x35\x05\x3e\x05\x47\x05\x50\x05\x59\x05\x62\x05\x6b\x05\x74\x05" +"\x7d\x05\x86\x05\x8f\x05\x98\x05\xa1\x05\xaa\x05\xb3\x05\xbc\x05\xc5\x05\xce\x05\xd7\x05\xe0\x05\xe9\x05\xf2\x05\xfb\x06\x04\x06" +"\x0d\x06\x16\x06\x1f\x06\x28\x06\x31\x06\x3a\x06\x43\x06\x4c\x06\x55\x06\x5a\x06\x64\x06\x6b\x06\x74\x06\x7e\x06\x85\x06\x90\x06" +"\x9a\x06\xa3\x06\xac\x06\xb5\x06\xbf\x06\xc6\x06\xcf\x06\xdb\x06\xdf\x06\xe5\x06\xeb\x06\xf6\x07\x00\x07\x03\x07\x11\x07\x15\x07" +"\x1b\x07\x21\x07\x26\x07\x2d\x07\x3a\x07\x40\x07\x46\x07\x50\x07\x57\x07\x5e\x07\x61\x07\x68\x07\x6f\x07\x7b\x07\x86\x07\x8f\x07" +"\x92\x07\x9a\x07\xa3\x07\xae\x07\xb4\x07\xb9\x07\xbe\x07\xc4\x07\xcf\x07\xdb\x07\xe5\x07\xf1\x07\xf5\x08\x00\x08\x05\x08\x0a\x08" +"\x10\x08\x12\x08\x19\x08\x21\x08\x29\x08\x33\x08\x3d\x08\x49\x08\x55\x08\x5c\x08\x60\x08\x6c\x08\x7d\x08\x86\x08\x8c\x08\x97\x08" +"\x9c\x08\xa8\x08\xb4\x08\xba\x08\xc0\x08\xc6\x08\xd2\x08\xd6\x08\xdf\x08\xe3\x08\xe8\x08\xec\x08\xf2\x08\xfd\x09\x0b\x09\x11\x09" +"\x1c\x09\x22\x09\x2e\x09\x38\x09\x40\x09\x42\x09\x48\x09\x55\x09\x5c\x09\x61\x09\x6b\x09\x72\x09\x7e\x09\x88\x09\x93\x09\x9e\x09" +"\xa4\x09\xa7\x09\xa9\x09\xb0\x09\xbc\x09\xca\x09\xcd\x09\xda\x09\xe0\x09\xe7\x09\xed\x09\xf9\x0a\x06\x0a\x09\x0a\x0f\x0a\x17\x0a" +"\x22\x0a\x2e\x0a\x34\x0a\x39\x0a\x42\x0a\x47\x0a\x50\x0a\x53\x0a\x56\x0a\x5a\x0a\x60\x0a\x6c\x0a\x71\x0a\x76\x0a\x7c\x0a\x89\x0a" +"\x90\x0a\x9d\x0a\xa4\x0a\xab\x0a\xb2\x0a\xb9\x0a\xc0\x0a\xc7\x0a\xce\x0a\xd5\x0a\xdc\x0a\xe3\x0a\xea\x0a\xf1\x0a\xf8\x0a\xff\x0b" +"\x06\x0b\x0d\x0b\x14\x0b\x1b\x0b\x22\x0b\x29\x0b\x30\x0b\x37\x0b\x3e\x0b\x45\x0b\x4c\x0b\x53\x0b\x5a\x0b\x61\x0b\x68\x0b\x6f\x0b" +"\x76\x0b\x7d\x0b\x84\x0b\x8b\x0b\x92\x0b\x99\x0b\xa0\x0b\xa7\x0b\xae\x0b\xb5\x0b\xbc\x0b\xc3\x0b\xca\x0b\xd1\x0b\xd8\x0b\xdf\x0b" +"\xe6\x0b\xed\x0b\xf4\x0b\xfb\x0c\x02\x0c\x09\x0c\x10\x0c\x17\x0c\x1e\x0c\x25\x0c\x2c\x0c\x33\x0c\x3a\x0c\x41\x0c\x48\x0c\x4d\x0c" +"\x56\x0c\x5d\x0c\x64\x0c\x73\x0c\x87\x0c\x93\x0c\x98\x0c\x9e\x0c\xa4\x0c\xaf\x0c\xb8\x0c\xbe\x0c\xc0\x0c\xcb\x0c\xd1\x0c\xd7\x0c" +"\xe1\x0c\xe5\x0c\xe9\x0d\x1f\x0d\x5f\x0d\x79\x0d\x87\x41\x45\x61\x63\x75\x74\x65\x41\x62\x72\x65\x76\x65\x41\x6c\x70\x68\x61\x41" +"\x6c\x70\x68\x61\x74\x6f\x6e\x6f\x73\x41\x6d\x61\x63\x72\x6f\x6e\x41\x6f\x67\x6f\x6e\x65\x6b\x41\x72\x69\x6e\x67\x61\x63\x75\x74" +"\x65\x42\x65\x74\x61\x43\x61\x63\x75\x74\x65\x43\x63\x61\x72\x6f\x6e\x43\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x43\x64\x6f\x74" +"\x61\x63\x63\x65\x6e\x74\x43\x68\x69\x44\x63\x61\x72\x6f\x6e\x44\x63\x72\x6f\x61\x74\x44\x65\x6c\x74\x61\x45\x62\x72\x65\x76\x65" +"\x45\x63\x61\x72\x6f\x6e\x45\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x45\x6d\x61\x63\x72\x6f\x6e\x45\x6e\x67\x45\x6f\x67\x6f\x6e\x65" +"\x6b\x45\x70\x73\x69\x6c\x6f\x6e\x45\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x45\x74\x61\x45\x74\x61\x74\x6f\x6e\x6f\x73\x45" +"\x75\x72\x6f\x47\x61\x6d\x6d\x61\x47\x62\x72\x65\x76\x65\x47\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x47\x63\x6f\x6d\x6d\x61\x61" +"\x63\x63\x65\x6e\x74\x47\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x48\x62\x61\x72\x48\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x49\x4a" +"\x49\x62\x72\x65\x76\x65\x49\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x49\x6d\x61\x63\x72\x6f\x6e\x49\x6f\x67\x6f\x6e\x65\x6b\x49\x6f" +"\x74\x61\x49\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69\x73\x49\x6f\x74\x61\x74\x6f\x6e\x6f\x73\x49\x74\x69\x6c\x64\x65\x4a\x63\x69" +"\x72\x63\x75\x6d\x66\x6c\x65\x78\x4b\x61\x70\x70\x61\x4b\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4c\x61\x63\x75\x74\x65\x4c" +"\x61\x6d\x62\x64\x61\x4c\x63\x61\x72\x6f\x6e\x4c\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4c\x64\x6f\x74\x4d\x75\x4e\x61\x63" +"\x75\x74\x65\x4e\x63\x61\x72\x6f\x6e\x4e\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4e\x75\x4f\x62\x72\x65\x76\x65\x4f\x68\x75" +"\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x4f\x6d\x61\x63\x72\x6f\x6e\x4f\x6d\x65\x67\x61\x74\x6f\x6e\x6f\x73\x4f\x6d\x69\x63\x72" +"\x6f\x6e\x4f\x6d\x69\x63\x72\x6f\x6e\x74\x6f\x6e\x6f\x73\x4f\x73\x6c\x61\x73\x68\x61\x63\x75\x74\x65\x50\x68\x69\x50\x69\x50\x73" +"\x69\x52\x61\x63\x75\x74\x65\x52\x63\x61\x72\x6f\x6e\x52\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x52\x68\x6f\x53\x61\x63\x75" +"\x74\x65\x53\x63\x65\x64\x69\x6c\x6c\x61\x53\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x53\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e" +"\x74\x53\x69\x67\x6d\x61\x54\x61\x75\x54\x62\x61\x72\x54\x63\x61\x72\x6f\x6e\x54\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x54" +"\x68\x65\x74\x61\x55\x62\x72\x65\x76\x65\x55\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x55\x6d\x61\x63\x72\x6f\x6e\x55\x6f" +"\x67\x6f\x6e\x65\x6b\x55\x70\x73\x69\x6c\x6f\x6e\x55\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x55\x70\x73\x69\x6c" +"\x6f\x6e\x74\x6f\x6e\x6f\x73\x55\x72\x69\x6e\x67\x55\x74\x69\x6c\x64\x65\x57\x61\x63\x75\x74\x65\x57\x63\x69\x72\x63\x75\x6d\x66" +"\x6c\x65\x78\x57\x64\x69\x65\x72\x65\x73\x69\x73\x57\x67\x72\x61\x76\x65\x58\x69\x59\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x59" +"\x67\x72\x61\x76\x65\x5a\x61\x63\x75\x74\x65\x5a\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x5a\x65\x74\x61\x61\x62\x72\x65\x76\x65\x61" +"\x65\x61\x63\x75\x74\x65\x61\x66\x69\x69\x30\x30\x32\x30\x38\x61\x66\x69\x69\x31\x30\x30\x31\x37\x61\x66\x69\x69\x31\x30\x30\x31" +"\x38\x61\x66\x69\x69\x31\x30\x30\x31\x39\x61\x66\x69\x69\x31\x30\x30\x32\x30\x61\x66\x69\x69\x31\x30\x30\x32\x31\x61\x66\x69\x69" +"\x31\x30\x30\x32\x32\x61\x66\x69\x69\x31\x30\x30\x32\x33\x61\x66\x69\x69\x31\x30\x30\x32\x34\x61\x66\x69\x69\x31\x30\x30\x32\x35" +"\x61\x66\x69\x69\x31\x30\x30\x32\x36\x61\x66\x69\x69\x31\x30\x30\x32\x37\x61\x66\x69\x69\x31\x30\x30\x32\x38\x61\x66\x69\x69\x31" +"\x30\x30\x32\x39\x61\x66\x69\x69\x31\x30\x30\x33\x30\x61\x66\x69\x69\x31\x30\x30\x33\x31\x61\x66\x69\x69\x31\x30\x30\x33\x32\x61" +"\x66\x69\x69\x31\x30\x30\x33\x33\x61\x66\x69\x69\x31\x30\x30\x33\x34\x61\x66\x69\x69\x31\x30\x30\x33\x35\x61\x66\x69\x69\x31\x30" +"\x30\x33\x36\x61\x66\x69\x69\x31\x30\x30\x33\x37\x61\x66\x69\x69\x31\x30\x30\x33\x38\x61\x66\x69\x69\x31\x30\x30\x33\x39\x61\x66" +"\x69\x69\x31\x30\x30\x34\x30\x61\x66\x69\x69\x31\x30\x30\x34\x31\x61\x66\x69\x69\x31\x30\x30\x34\x32\x61\x66\x69\x69\x31\x30\x30" +"\x34\x33\x61\x66\x69\x69\x31\x30\x30\x34\x34\x61\x66\x69\x69\x31\x30\x30\x34\x35\x61\x66\x69\x69\x31\x30\x30\x34\x36\x61\x66\x69" +"\x69\x31\x30\x30\x34\x37\x61\x66\x69\x69\x31\x30\x30\x34\x38\x61\x66\x69\x69\x31\x30\x30\x34\x39\x61\x66\x69\x69\x31\x30\x30\x35" +"\x30\x61\x66\x69\x69\x31\x30\x30\x35\x31\x61\x66\x69\x69\x31\x30\x30\x35\x32\x61\x66\x69\x69\x31\x30\x30\x35\x33\x61\x66\x69\x69" +"\x31\x30\x30\x35\x34\x61\x66\x69\x69\x31\x30\x30\x35\x35\x61\x66\x69\x69\x31\x30\x30\x35\x36\x61\x66\x69\x69\x31\x30\x30\x35\x37" +"\x61\x66\x69\x69\x31\x30\x30\x35\x38\x61\x66\x69\x69\x31\x30\x30\x35\x39\x61\x66\x69\x69\x31\x30\x30\x36\x30\x61\x66\x69\x69\x31" +"\x30\x30\x36\x31\x61\x66\x69\x69\x31\x30\x30\x36\x32\x61\x66\x69\x69\x31\x30\x30\x36\x35\x61\x66\x69\x69\x31\x30\x30\x36\x36\x61" +"\x66\x69\x69\x31\x30\x30\x36\x37\x61\x66\x69\x69\x31\x30\x30\x36\x38\x61\x66\x69\x69\x31\x30\x30\x36\x39\x61\x66\x69\x69\x31\x30" +"\x30\x37\x30\x61\x66\x69\x69\x31\x30\x30\x37\x31\x61\x66\x69\x69\x31\x30\x30\x37\x32\x61\x66\x69\x69\x31\x30\x30\x37\x33\x61\x66" +"\x69\x69\x31\x30\x30\x37\x34\x61\x66\x69\x69\x31\x30\x30\x37\x35\x61\x66\x69\x69\x31\x30\x30\x37\x36\x61\x66\x69\x69\x31\x30\x30" +"\x37\x37\x61\x66\x69\x69\x31\x30\x30\x37\x38\x61\x66\x69\x69\x31\x30\x30\x37\x39\x61\x66\x69\x69\x31\x30\x30\x38\x30\x61\x66\x69" +"\x69\x31\x30\x30\x38\x31\x61\x66\x69\x69\x31\x30\x30\x38\x32\x61\x66\x69\x69\x31\x30\x30\x38\x33\x61\x66\x69\x69\x31\x30\x30\x38" +"\x34\x61\x66\x69\x69\x31\x30\x30\x38\x35\x61\x66\x69\x69\x31\x30\x30\x38\x36\x61\x66\x69\x69\x31\x30\x30\x38\x37\x61\x66\x69\x69" +"\x31\x30\x30\x38\x38\x61\x66\x69\x69\x31\x30\x30\x38\x39\x61\x66\x69\x69\x31\x30\x30\x39\x30\x61\x66\x69\x69\x31\x30\x30\x39\x31" +"\x61\x66\x69\x69\x31\x30\x30\x39\x32\x61\x66\x69\x69\x31\x30\x30\x39\x33\x61\x66\x69\x69\x31\x30\x30\x39\x34\x61\x66\x69\x69\x31" +"\x30\x30\x39\x35\x61\x66\x69\x69\x31\x30\x30\x39\x36\x61\x66\x69\x69\x31\x30\x30\x39\x37\x61\x66\x69\x69\x31\x30\x30\x39\x38\x61" +"\x66\x69\x69\x31\x30\x30\x39\x39\x61\x66\x69\x69\x31\x30\x31\x30\x30\x61\x66\x69\x69\x31\x30\x31\x30\x31\x61\x66\x69\x69\x31\x30" +"\x31\x30\x32\x61\x66\x69\x69\x31\x30\x31\x30\x33\x61\x66\x69\x69\x31\x30\x31\x30\x34\x61\x66\x69\x69\x31\x30\x31\x30\x35\x61\x66" +"\x69\x69\x31\x30\x31\x30\x36\x61\x66\x69\x69\x31\x30\x31\x30\x37\x61\x66\x69\x69\x31\x30\x31\x30\x38\x61\x66\x69\x69\x31\x30\x31" +"\x30\x39\x61\x66\x69\x69\x31\x30\x31\x31\x30\x61\x66\x69\x69\x31\x30\x31\x34\x35\x61\x66\x69\x69\x31\x30\x31\x39\x33\x61\x66\x69" +"\x69\x31\x30\x38\x34\x36\x61\x66\x69\x69\x36\x31\x32\x34\x38\x61\x66\x69\x69\x36\x31\x32\x38\x39\x61\x66\x69\x69\x36\x31\x33\x35" +"\x32\x61\x6c\x70\x68\x61\x61\x6c\x70\x68\x61\x74\x6f\x6e\x6f\x73\x61\x6d\x61\x63\x72\x6f\x6e\x61\x6e\x67\x6c\x65\x6c\x65\x66\x74" +"\x61\x6e\x67\x6c\x65\x72\x69\x67\x68\x74\x61\x6f\x67\x6f\x6e\x65\x6b\x61\x70\x70\x72\x6f\x78\x65\x71\x75\x61\x6c\x61\x72\x69\x6e" +"\x67\x61\x63\x75\x74\x65\x61\x72\x72\x6f\x77\x62\x6f\x74\x68\x61\x72\x72\x6f\x77\x64\x6f\x77\x6e\x61\x72\x72\x6f\x77\x6c\x65\x66" +"\x74\x61\x72\x72\x6f\x77\x72\x69\x67\x68\x74\x61\x72\x72\x6f\x77\x75\x70\x61\x72\x72\x6f\x77\x75\x70\x64\x6e\x61\x72\x72\x6f\x77" +"\x75\x70\x64\x6e\x62\x73\x65\x62\x65\x74\x61\x63\x61\x63\x75\x74\x65\x63\x63\x61\x72\x6f\x6e\x63\x63\x69\x72\x63\x75\x6d\x66\x6c" +"\x65\x78\x63\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x63\x68\x69\x63\x69\x72\x63\x6c\x65\x6d\x75\x6c\x74\x69\x70\x6c\x79\x63\x6c\x75" +"\x62\x64\x63\x61\x72\x6f\x6e\x64\x63\x72\x6f\x61\x74\x64\x65\x6c\x74\x61\x64\x69\x61\x6d\x6f\x6e\x64\x64\x69\x65\x72\x65\x73\x69" +"\x73\x74\x6f\x6e\x6f\x73\x65\x62\x72\x65\x76\x65\x65\x63\x61\x72\x6f\x6e\x65\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x65\x6c\x65\x6d" +"\x65\x6e\x74\x65\x6d\x61\x63\x72\x6f\x6e\x65\x6e\x67\x65\x6f\x67\x6f\x6e\x65\x6b\x65\x70\x73\x69\x6c\x6f\x6e\x65\x70\x73\x69\x6c" +"\x6f\x6e\x74\x6f\x6e\x6f\x73\x65\x71\x75\x69\x76\x61\x6c\x65\x6e\x63\x65\x65\x73\x74\x69\x6d\x61\x74\x65\x64\x65\x74\x61\x65\x74" +"\x61\x74\x6f\x6e\x6f\x73\x65\x78\x63\x6c\x61\x6d\x64\x62\x6c\x65\x78\x69\x73\x74\x65\x6e\x74\x69\x61\x6c\x66\x65\x6d\x61\x6c\x65" +"\x66\x72\x61\x6e\x63\x67\x61\x6d\x6d\x61\x67\x62\x72\x65\x76\x65\x67\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x67\x63\x6f\x6d\x6d" +"\x61\x61\x63\x63\x65\x6e\x74\x67\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x67\x72\x65\x61\x74\x65\x72\x65\x71\x75\x61\x6c\x68\x62\x61" +"\x72\x68\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x68\x65\x61\x72\x74\x68\x6f\x75\x73\x65\x69\x62\x72\x65\x76\x65\x69\x6a\x69\x6d" +"\x61\x63\x72\x6f\x6e\x69\x6e\x66\x69\x6e\x69\x74\x79\x69\x6e\x74\x65\x67\x72\x61\x6c\x69\x6e\x74\x65\x67\x72\x61\x6c\x62\x74\x69" +"\x6e\x74\x65\x67\x72\x61\x6c\x74\x70\x69\x6e\x74\x65\x72\x73\x65\x63\x74\x69\x6f\x6e\x69\x6e\x76\x73\x6d\x69\x6c\x65\x66\x61\x63" +"\x65\x69\x6f\x67\x6f\x6e\x65\x6b\x69\x6f\x74\x61\x69\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69\x73\x69\x6f\x74\x61\x64\x69\x65\x72" +"\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73\x69\x6f\x74\x61\x74\x6f\x6e\x6f\x73\x69\x74\x69\x6c\x64\x65\x6a\x63\x69\x72\x63\x75\x6d\x66" +"\x6c\x65\x78\x6b\x61\x70\x70\x61\x6b\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6b\x67\x72\x65\x65\x6e\x6c\x61\x6e\x64\x69\x63" +"\x6c\x61\x63\x75\x74\x65\x6c\x61\x6d\x62\x64\x61\x6c\x63\x61\x72\x6f\x6e\x6c\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6c\x64" +"\x6f\x74\x6c\x65\x73\x73\x65\x71\x75\x61\x6c\x6c\x69\x72\x61\x6c\x6f\x6e\x67\x73\x6d\x61\x6c\x65\x6d\x69\x6e\x75\x74\x65\x6d\x75" +"\x73\x69\x63\x61\x6c\x6e\x6f\x74\x65\x6d\x75\x73\x69\x63\x61\x6c\x6e\x6f\x74\x65\x64\x62\x6c\x6e\x61\x63\x75\x74\x65\x6e\x61\x70" +"\x6f\x73\x74\x72\x6f\x70\x68\x65\x6e\x63\x61\x72\x6f\x6e\x6e\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6e\x6f\x74\x65\x6c\x65" +"\x6d\x65\x6e\x74\x6e\x6f\x74\x65\x71\x75\x61\x6c\x6e\x75\x6f\x62\x72\x65\x76\x65\x6f\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75" +"\x74\x6f\x6d\x61\x63\x72\x6f\x6e\x6f\x6d\x65\x67\x61\x6f\x6d\x65\x67\x61\x74\x6f\x6e\x6f\x73\x6f\x6d\x69\x63\x72\x6f\x6e\x6f\x6d" +"\x69\x63\x72\x6f\x6e\x74\x6f\x6e\x6f\x73\x6f\x72\x74\x68\x6f\x67\x6f\x6e\x61\x6c\x6f\x73\x6c\x61\x73\x68\x61\x63\x75\x74\x65\x70" +"\x61\x72\x74\x69\x61\x6c\x64\x69\x66\x66\x70\x65\x73\x65\x74\x61\x70\x68\x69\x70\x69\x70\x72\x6f\x64\x75\x63\x74\x70\x72\x6f\x70" +"\x65\x72\x73\x75\x62\x73\x65\x74\x70\x72\x6f\x70\x65\x72\x73\x75\x70\x65\x72\x73\x65\x74\x70\x73\x69\x71\x75\x6f\x74\x65\x72\x65" +"\x76\x65\x72\x73\x65\x64\x72\x61\x63\x75\x74\x65\x72\x61\x64\x69\x63\x61\x6c\x72\x63\x61\x72\x6f\x6e\x72\x63\x6f\x6d\x6d\x61\x61" +"\x63\x63\x65\x6e\x74\x72\x65\x76\x6c\x6f\x67\x69\x63\x61\x6c\x6e\x6f\x74\x72\x68\x6f\x73\x61\x63\x75\x74\x65\x73\x63\x65\x64\x69" +"\x6c\x6c\x61\x73\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x73\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x73\x65\x63\x6f\x6e\x64" +"\x73\x69\x67\x6d\x61\x73\x6d\x69\x6c\x65\x66\x61\x63\x65\x73\x70\x61\x64\x65\x73\x75\x6d\x6d\x61\x74\x69\x6f\x6e\x73\x75\x6e\x74" +"\x61\x75\x74\x62\x61\x72\x74\x63\x61\x72\x6f\x6e\x74\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x74\x68\x65\x74\x61\x74\x6f\x6e" +"\x6f\x73\x75\x62\x72\x65\x76\x65\x75\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x75\x6d\x61\x63\x72\x6f\x6e\x75\x6e\x64\x65" +"\x72\x73\x63\x6f\x72\x65\x64\x62\x6c\x75\x6e\x69\x30\x30\x41\x30\x75\x6e\x69\x30\x30\x41\x44\x75\x6e\x69\x30\x32\x31\x41\x75\x6e" +"\x69\x30\x32\x31\x42\x75\x6e\x69\x30\x32\x43\x39\x75\x6e\x69\x30\x33\x38\x37\x75\x6e\x69\x30\x33\x39\x34\x75\x6e\x69\x30\x33\x41" +"\x39\x75\x6e\x69\x30\x33\x42\x43\x75\x6e\x69\x30\x33\x43\x32\x75\x6e\x69\x30\x34\x30\x30\x75\x6e\x69\x30\x34\x30\x44\x75\x6e\x69" +"\x30\x34\x35\x30\x75\x6e\x69\x30\x34\x35\x44\x75\x6e\x69\x30\x34\x39\x32\x75\x6e\x69\x30\x34\x39\x33\x75\x6e\x69\x30\x34\x39\x36" +"\x75\x6e\x69\x30\x34\x39\x37\x75\x6e\x69\x30\x34\x39\x38\x75\x6e\x69\x30\x34\x39\x39\x75\x6e\x69\x30\x34\x39\x41\x75\x6e\x69\x30" +"\x34\x39\x42\x75\x6e\x69\x30\x34\x39\x43\x75\x6e\x69\x30\x34\x39\x44\x75\x6e\x69\x30\x34\x41\x30\x75\x6e\x69\x30\x34\x41\x31\x75" +"\x6e\x69\x30\x34\x41\x32\x75\x6e\x69\x30\x34\x41\x33\x75\x6e\x69\x30\x34\x41\x41\x75\x6e\x69\x30\x34\x41\x42\x75\x6e\x69\x30\x34" +"\x41\x45\x75\x6e\x69\x30\x34\x41\x46\x75\x6e\x69\x30\x34\x42\x30\x75\x6e\x69\x30\x34\x42\x31\x75\x6e\x69\x30\x34\x42\x32\x75\x6e" +"\x69\x30\x34\x42\x33\x75\x6e\x69\x30\x34\x42\x36\x75\x6e\x69\x30\x34\x42\x37\x75\x6e\x69\x30\x34\x42\x38\x75\x6e\x69\x30\x34\x42" +"\x39\x75\x6e\x69\x30\x34\x42\x41\x75\x6e\x69\x30\x34\x42\x42\x75\x6e\x69\x30\x34\x43\x30\x75\x6e\x69\x30\x34\x43\x42\x75\x6e\x69" +"\x30\x34\x43\x43\x75\x6e\x69\x30\x34\x44\x38\x75\x6e\x69\x30\x34\x45\x32\x75\x6e\x69\x30\x34\x45\x33\x75\x6e\x69\x30\x34\x45\x38" +"\x75\x6e\x69\x30\x34\x45\x39\x75\x6e\x69\x30\x34\x45\x45\x75\x6e\x69\x30\x34\x45\x46\x75\x6e\x69\x32\x30\x33\x45\x75\x6e\x69\x32" +"\x30\x41\x46\x75\x6e\x69\x32\x31\x32\x36\x75\x6e\x69\x32\x32\x31\x35\x75\x6e\x69\x32\x32\x31\x39\x75\x6e\x69\x32\x32\x32\x37\x75" +"\x6e\x69\x32\x32\x32\x38\x75\x6e\x69\x32\x32\x39\x35\x75\x6e\x69\x32\x35\x41\x31\x75\x6e\x69\x6f\x6e\x75\x6e\x69\x76\x65\x72\x73" +"\x61\x6c\x75\x6f\x67\x6f\x6e\x65\x6b\x75\x70\x73\x69\x6c\x6f\x6e\x75\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x75" +"\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73\x75\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x75" +"\x72\x69\x6e\x67\x75\x74\x69\x6c\x64\x65\x77\x61\x63\x75\x74\x65\x77\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x77\x64\x69\x65\x72" +"\x65\x73\x69\x73\x77\x67\x72\x61\x76\x65\x78\x69\x79\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x79\x67\x72\x61\x76\x65\x7a\x61\x63" +"\x75\x74\x65\x7a\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x7a\x65\x74\x61\x31\x2e\x30\x30\x28\x55\x52\x57\x29\x2b\x2b\x2c\x43\x6f\x70" +"\x79\x72\x69\x67\x68\x74\x20\x32\x30\x31\x34\x20\x62\x79\x20\x28\x55\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69\x67\x6e\x20\x26\x20" +"\x44\x65\x76\x65\x6c\x6f\x70\x6d\x65\x6e\x74\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x28\x55\x52\x57\x29\x2b\x2b\x2c\x43\x6f\x70" +"\x79\x72\x69\x67\x68\x74\x20\x32\x30\x31\x34\x20\x62\x79\x20\x28\x55\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69\x67\x6e\x20\x26\x20" +"\x44\x65\x76\x65\x6c\x6f\x70\x6d\x65\x6e\x74\x4e\x69\x6d\x62\x75\x73\x20\x4d\x6f\x6e\x6f\x20\x50\x53\x20\x42\x6f\x6c\x64\x20\x49" +"\x74\x61\x6c\x69\x63\x4e\x69\x6d\x62\x75\x73\x20\x4d\x6f\x6e\x6f\x20\x50\x53\x01\x4d\x02\x00\x01\x00\x06\x00\x16\x00\x7d\x00\xb0" +"\x00\xb6\x00\xbb\x00\xc6\x00\xcd\x00\xd6\x00\xdb\x00\xe4\x00\xea\x00\xf6\x01\x25\x01\x64\x01\x7f\x01\x8e\x01\x96\x01\x9c\x01\xa1" +"\x01\xd8\x01\xf1\x01\xf9\x02\x07\x02\x12\x02\x1e\x02\x26\x02\x2c\x02\x30\x02\x39\x02\x42\x02\x4a\x02\x52\x02\x5a\x02\x60\x02\x7d" +"\x02\xd2\x02\xf5\x03\x21\x03\x2a\x03\x3c\x03\x46\x03\x4d\x03\x58\x03\x67\x03\x6f\x03\x7a\x03\x80\x03\x89\x03\x92\x03\x9b\x03\xa1" +"\x03\xa7\x03\xb2\x04\x21\x04\x26\x04\x76\x04\xac\x04\xb8\x04\xcb\x04\xd9\x04\xe7\x04\xfa\x05\x07\x05\x13\x05\x1f\x05\x2e\x05\x3a" +"\x05\x4c\x05\x54\x05\x5d\x05\x66\x05\x73\x05\x7a\x05\x86\x05\x8e\x05\x96\x06\x0a\x06\x9f\x06\xf3\x07\x4a\x07\xa6\x08\x06\x08\x2a" +"\x08\x4e\x08\x80\x08\x8f\x08\xad\x08\xc9\x08\xe3\x08\xea\x08\xf9\x09\x0b\x09\x24\x09\x50\x09\x58\x09\x6d\x09\x72\x09\x7c\x09\x90" +"\x09\xb4\x09\xd5\x09\xe6\x09\xf0\x09\xfc\x0a\x17\x0a\x1b\x0a\x2a\x0a\x38\x0a\x41\x0a\x4b\x0a\x61\x0a\x6e\x0a\x76\x0a\x7e\x0a\x8a" +"\x0a\x96\x0a\xa2\x0a\xad\x0a\xb8\x0a\xc0\x0a\xd0\x0a\xda\x0a\xe4\x0a\xec\x0a\xf3\x0b\x02\x0b\x10\x0b\x16\x0b\x24\x0b\x32\x0b\x3b" +"\x0b\x44\x0b\x4a\x0b\x57\x0b\x5e\x0b\x6a\x0b\x76\x0b\x7e\x0b\x86\x0b\x8e\x0b\x96\x0b\xa1\x0b\xac\x0b\xb7\x0c\x83\x0d\x10\x0d\xa5" +"\x0d\xc5\x0e\x32\x0e\x90\x0e\xfd\x0f\x34\x0f\x44\x0f\x53\x0f\xdd\x0f\xf1\x10\x54\x10\xbf\x11\x3c\x11\x9b\x11\xd9\x12\x39\x12\xaf" +"\x12\xbf\x13\x2c\x13\x6c\x13\x90\x13\xf6\x14\x46\x14\x90\x14\xc2\x15\x1b\x15\x75\x15\xaf\x15\xb6\x15\xd0\x16\x0d\x16\x1d\x16\x3e" +"\x16\x6f\x16\x90\x16\xce\x16\xea\x16\xed\x17\x18\x17\x53\x17\x6f\x17\x9a\x17\xc2\x17\xd3\x17\xe1\x18\x09\x18\x25\x18\x55\x18\x84" +"\x18\xb0\x18\xdd\x19\x0a\x19\x13\x19\x29\x19\x52\x19\x7b\x19\x7e\x19\x88\x19\x9a\x19\xc1\x19\xe7\x1a\x0c\x1a\x2c\x1a\x4f\x1a\x66" +"\x1a\x89\x1a\xac\x1a\xce\x1a\xf0\x1b\x12\x1b\x2a\x1b\x41\x1b\x5e\x1b\x7d\x1b\x9b\x1b\xb8\x1b\xc9\x1b\xe6\x1c\x02\x1c\x1e\x1c\x34" +"\x1c\x50\x1c\x6a\x1c\x85\x1c\x8d\x1c\xa1\x1c\xba\x1c\xca\x1c\xde\x1c\xec\x1c\xf7\x1c\xff\x1d\x17\x1d\x1f\x1d\x25\x1d\x3c\x1d\x41" +"\x1d\x52\x1d\x62\x1d\x6d\x1d\x83\x1d\x98\x1d\xa5\x1d\xb0\x1d\xc5\x1d\xd4\x1d\xdb\x1d\xe9\x1d\xfd\x1e\x11\x1e\x15\x1e\x28\x1e\x3b" +"\x1e\x4e\x1e\x52\x1e\x5c\x1e\x6f\x1e\x82\x1e\x94\x1e\xa6\x1e\xb8\x1e\xca\x1e\xdc\x1e\xee\x1e\xf9\x1f\x0a\x1f\x1b\x1f\x25\x1f\x36" +"\x1f\x47\x1f\x58\x1f\x69\x1f\x7a\x1f\x7f\x1f\x89\x1f\x99\x1f\xa4\x1f\xb4\x1f\xbc\x1f\xcc\x1f\xd6\x1f\xe0\x1f\xef\x1f\xf7\x20\x00" +"\x20\x0f\x20\x18\x20\x26\x20\x34\x20\x42\x20\x50\x20\x5c\x20\x65\x20\x6e\x20\x77\x20\x84\x20\x91\x20\x9e\x20\xab\x20\xb8\x20\xc5" +"\x20\xd2\x20\xdf\x20\xe8\x20\xf5\x21\x01\x21\x0d\x21\x19\x21\x25\x21\x31\x21\x3d\x21\x49\x21\x51\x21\x5c\x21\x67\x21\x72\x21\x7d" +"\x21\x88\x21\x93\x21\x9e\x21\xa9\x21\xb4\x21\xbf\x21\xca\x21\xd5\x21\xde\x84\x8c\x77\x1b\x0b\x78\x9c\x71\x68\x75\x75\x5e\x81\x1e" +"\x80\x5c\x05\xfb\x8b\x06\x0b\xf8\x53\xf7\x2b\x15\x94\x5c\x05\x79\x06\x6b\x81\x88\x7f\x7c\x1f\x7b\x7f\x82\x79\x7a\x1a\x6d\x9d\x7f" +"\xb5\x1e\xf7\x1f\x06\xa8\x99\x3d\x1d\x9c\x1a\xa6\x79\x9a\x6b\x1e\x82\x06\x2b\xf8\x60\x05\xfb\x70\x06\x6a\x83\x99\x1d\xc3\x06\xfb" +"\x7b\xfb\xf9\x6b\x8a\x81\x89\x7d\x7f\x19\x7b\x7e\x31\x1d\xb6\x1e\xf7\x18\x06\xa9\x98\x3d\x1d\x9c\x1a\x9c\x2c\x1d\x7c\x06\xa9\xba" +"\x05\xf7\x67\xf2\x15\xfb\x25\x06\xf7\x03\xf7\x3d\x05\x0b\x15\x8c\x8c\x8c\x8c\x8d\x8c\x8e\x8f\x8e\x8e\x8c\x8d\x08\x93\x94\x8e\x92" +"\x96\x1a\x9d\x7d\x98\x78\x7a\x7d\x83\x7b\x7d\x1e\x23\xfb\x0e\x05\x7a\x79\x87\x83\x7d\x1a\x7b\x9a\x7d\x9d\x9a\x9b\x94\x9b\x99\x1e" +"\x0e\xb9\x1d\xf8\x6d\x06\x0b\x39\x1d\x7a\x1a\x0b\x06\x6b\x81\x4e\x1d\x6d\x9d\x7f\xb6\x1e\x0b\x49\x1d\x9c\x7f\xb6\x1e\x0b\x8f\x96" +"\x99\x1f\x9b\x97\x94\x9d\x0b\x3d\x1d\x9b\x1a\x0b\x88\x7f\x7c\x1f\x7c\x7f\x81\x79\x0b\x06\xa7\xf7\x13\x05\x0b\x81\x9b\x7c\x90\x1e" +"\x8e\x82\x85\x8c\x76\x1b\x0b\xf8\x13\x16\xf7\x0e\x06\xa9\x98\x28\x1d\x9b\x1a\x9d\x81\x9b\x41\x1d\x77\x1b\x7f\x06\xb5\xf7\x50\x05" +"\x8e\x97\x8c\x95\x97\x69\x1d\x2a\x7b\x7b\x67\x1e\x76\x4f\x1d\x73\x9d\x7a\xa3\x73\x1d\x0b\xf8\x3f\xf8\xd6\x15\xfb\x4a\xfb\x42\xfb" +"\x45\xfb\x4d\xfb\x17\xea\x29\xf7\x14\xf7\x4e\xf7\x41\xf7\x43\xf7\x50\xf7\x18\x2b\xeb\xfb\x16\x1f\x75\x24\x15\xdb\xc4\x4e\x36\xfb" +"\x0b\xfb\x03\xfb\x0c\xfb\x02\x39\x52\xc7\xe1\xf7\x0d\xf7\x02\xf7\x0a\xf7\x05\x1f\x0b\x15\xa3\x9b\x94\x97\x9c\x1a\x9d\xf7\x4a\x1d" +"\x7c\x81\x7d\x7c\x1a\x78\x99\x7e\x9f\x95\x97\x90\x95\x9a\x1e\x0e\x7c\x1f\x7b\x7f\x82\x7a\x7a\x1a\x7a\x95\x7b\x9a\x86\x1e\x0b\x82" +"\x7a\x7a\x1a\x6d\x9d\x7f\x0b\x90\x1e\x8e\x82\x84\x0b\xf8\xe2\xcf\x1d\x0b\x39\x1d\x7b\x1a\x77\x93\x7f\x9e\x83\x1e\xfb\x07\xfb\x0e" +"\x4e\xf7\x0d\xf7\x04\x1d\x79\x7b\x1a\x6e\x9c\x7e\xb1\x1e\xf7\x05\xfb\x74\x6d\xfb\x1a\x05\x4d\x06\x6b\x81\x3a\x1d\xf7\x7b\x06\xa7" +"\x9a\x8f\x96\x99\x91\x1d\x4f\x06\x0b\x67\x1d\x4e\x1d\x6d\x9d\x7f\xb7\x1e\xd4\x06\x5a\xfb\x6f\x05\xfb\x0a\x06\x6b\x81\x88\x7f\xe8" +"\x1d\x0b\x4e\x1d\x6d\x9d\x7f\xb6\x1e\x0b\x06\x6b\x81\x88\x7f\x7c\x1f\x7b\x7f\x82\x79\x7b\x1a\x0b\x06\x6b\x81\x3b\x1d\x6e\x9d\x7e" +"\xb6\x1e\x0b\x06\x6b\x81\x88\x7f\x7c\x1f\x7b\x7f\x82\x7a\x0b\x3b\x1d\x6d\x9d\x7f\xb6\x1e\x0b\x3f\x1d\x7a\x7a\x1a\x0b\x9c\x3e\x1d" +"\x0b\x8f\x96\x99\x1f\x9a\x97\x95\x9d\x0b\x1a\x9c\x81\x9b\x7c\x90\x1e\x8e\x0b\x89\x7e\x7c\x1f\x7b\x7f\x82\x0b\x74\x64\x6e\x9e\x7e" +"\xb5\x1f\x0b\x7c\x90\x1e\x8e\x83\x84\x8b\x0b\x06\x6a\x82\x89\x7e\x0b\xf8\x7c\xf8\xef\x15\xfb\x4b\x06\x6b\x80\xf7\x19\x1d\xd5\x06" +"\x32\xfc\x20\x05\xfb\x0a\x06\x6b\x81\x89\x7e\xe8\x1d\x0b\x15\x6f\xfb\x13\x05\x7f\x06\x6b\x81\x3f\x1d\x7a\x7b\x1a\x6c\x9c\x7f\xb7" +"\x1e\xf7\x0d\x06\xa8\x98\x29\x1d\x9c\x81\x9c\x41\x1d\x77\x1b\x8a\x06\xdb\xf7\xfa\x05\xb2\x8f\xa4\xa3\xac\xa8\x1d\x76\x1b\x27\x06" +"\x6b\x81\x88\x7f\x30\x1d\x88\x94\x91\x8a\x9f\x1b\x95\x06\x6f\xfb\x14\x05\xfb\x62\x06\xa7\xf7\x14\x05\x97\x06\xaa\x96\x7f\x1d\x27" +"\x39\x1d\x0b\x8c\x1d\x74\x80\x8c\x8a\x9c\x79\x1f\xf7\x14\xfb\x10\xf7\x49\xf7\x10\x05\xa7\x9e\x91\x92\x9d\x1a\x9d\x7e\x98\x78\x81" +"\x82\x87\x81\x7d\x1e\x0e\xf7\x55\x1d\xe1\xee\xf5\xdb\xd5\x9d\x7f\x97\x7a\x74\x7f\x80\x6d\x7f\x1f\x61\x7b\x5c\x6e\x56\x1b\x72\x75" +"\x92\x9a\x78\x1f\x7b\x97\x88\x92\x88\xa8\x08\xac\x88\x84\x94\x75\x1b\x0e\x1f\x9c\x95\x96\x9d\xf7\x4d\x1d\x0b\x7d\x1f\xa3\xe7\x15" +"\xbd\xac\xc4\xa7\xd1\x1b\xcf\xbd\x6b\x5d\x90\x1f\x0b\x06\x6a\x82\x3f\x1d\x7a\x7a\x1a\x6d\x0b\x06\x6b\x81\xf7\x41\x1d\x0b\x96\x06" +"\x66\xfb\x3d\x05\x87\x7c\x8a\x7e\x0b\x78\x1a\x79\x94\x7b\x9a\x80\x1e\x84\x96\x98\x88\xa5\x1b\x0b\x7a\x1a\x79\x99\x7e\x9d\x95\x0b" +"\x88\x7f\x7c\x1f\x7b\x7f\x82\x7a\x7a\x1a\x0b\x82\x7d\x77\x74\x1a\x0b\x8e\x97\x99\x1f\x9b\x97\x94\x9d\x0b\x1a\x9c\x80\x9b\x7d\x90" +"\x1e\x8e\x0b\x1a\x9b\x80\x9b\x7d\x90\x1e\x8e\x0b\x06\x3b\xfb\xf8\x05\x0b\x5f\x7a\x92\x74\x1b\x0b\x1b\x9c\x9d\x93\x98\x98\x1f\x95" +"\x95\x8f\x0b\xf8\xe4\xf8\x05\x15\x8e\x9b\x8c\x91\x94\x1a\xa1\x7a\x9a\x73\x7a\x81\x85\x7a\x7e\x1e\x9a\x6a\x63\x93\x5b\x1b\xfb\x1d" +"\x22\x46\x31\x4c\xbf\x6c\xf7\x10\x63\x1d\x4b\x56\x64\x97\xa2\x75\x1e\xa9\x88\x7c\x99\x6f\x1b\x66\x75\x75\x5f\x81\x1f\x84\x6b\x05" +"\x88\x7b\x8a\x87\x83\x1a\x73\x9d\x7b\xa6\x99\x93\x8e\x93\x98\x1e\x79\xaf\xbb\x82\xc5\x1b\xf7\x26\xf7\x05\xd2\xe6\xb0\x79\xaa\x6a" +"\x9f\x1f\x72\x9b\x62\x96\x44\x94\x4e\x93\x84\x8d\x7f\x8f\x84\x1d\x08\x0b\xf8\xf4\xbc\x1d\x0b\x15\x40\x27\x05\x29\x06\x6c\x80\xf7" +"\x41\x1d\xf7\x6a\xf7\x23\x1d\x83\x85\x8c\x79\x1b\xf7\xd2\xf8\x33\x05\xb2\x8f\xa5\xa3\xac\x1a\x9c\x2c\x1d\x2f\x06\x6c\x7f\x88\x7f" +"\x7d\x1f\x7b\x7f\x82\x79\x7b\x1a\x6f\x9a\x7f\xae\x89\x1e\xfb\x31\xfb\x5e\x4c\xf7\x5e\xf7\x69\x1d\x7d\x32\x1d\xf7\x42\x1d\x7a\x1a" +"\x73\x98\x7e\xa7\x87\x1e\x0b\xf8\xee\x15\x2e\xe5\x05\x94\x81\x83\x8f\x82\x1b\x74\x72\x74\x76\x81\x8f\x84\x99\x7e\x1f\xf7\x17\xfb" +"\x11\xf7\x43\xf7\x10\x99\x95\x92\x91\x8d\x8c\x19\x91\x91\x90\x98\x94\x1a\x9b\x7c\x99\x7a\x81\x7e\x86\x83\x81\x1e\x0e\x05\xfb\x0d" +"\x06\x6b\x81\x88\x7f\x30\x1d\x88\x0b\x15\x62\x65\x68\x66\x6e\xa1\x76\xa9\xb4\xb1\xae\xb1\xa8\x75\x9f\x6d\x1f\x0e\x1a\x9c\x81\x9a" +"\x7c\x91\x1e\x8d\x85\x84\x8c\x7e\x1b\x0e\xf8\x87\x15\xfb\x13\x06\x73\xfb\x00\x05\xf7\x13\x06\x0b\x06\xab\x95\x8e\x97\x9a\x1f\x9b" +"\x97\x94\x9c\x9c\x1a\xa9\x79\x97\x60\x1e\x0b\x7e\x1a\x76\x9a\x7c\x9f\x94\x9c\x93\x94\x95\x1e\x0b\x06\x59\x6b\x72\x64\x6f\x9b\x81" +"\xb9\x8a\x1f\x0b\xc1\xac\x97\xb3\xc4\x1e\x82\x63\x05\xee\x06\x0b\x65\x68\x66\x6e\xa1\x76\xa9\xb4\xb1\xae\xb1\xa7\x75\xa0\x0b\x7d" +"\x1f\xe1\x82\xa5\x81\x75\x1a\x75\x52\x78\x0b\x68\x6c\x6e\x6a\x73\x9d\x79\xa5\xae\xaa\xa8\xac\xa4\x79\x9c\x71\x1f\x0b\xfb\x3c\x05" +"\x58\x4d\x70\x7f\x0b\x06\x61\xfb\x4f\x05\x88\x7e\x8a\x0b\xf8\x3d\x15\xfb\x4b\x06\x6a\x81\x0b\x97\x94\x9d\x9b\x1a\x9d\x81\x9a\x7c" +"\x90\x1e\x8e\x0b\x1a\xd0\x49\xb6\x21\x53\x0b\x96\x7b\x99\x86\x1e\x88\x93\x96\x8a\x9c\x1b\x0b\x06\xa8\x99\x8f\x96\x99\x1f\x0b\x1f" +"\xa4\xab\xb3\x98\xbc\x1b\x0b\xf9\x0d\xf8\x92\x15\x90\x9e\x8b\x8d\x93\x1a\xa2\x79\x9b\x72\x76\x7f\x83\x75\x7c\x1e\x9e\x6e\x60\x96" +"\x59\x1b\xfb\x24\xfb\x0a\x2e\xfb\x06\x64\xa2\x62\xae\x76\x1f\xa7\x79\xa8\x82\xcd\x80\xcc\x7f\x99\x87\x9e\x81\x08\x9a\x83\x94\x7d" +"\x7d\x1a\x60\x49\x67\x3a\x4c\x54\xa5\xab\x88\x1e\x89\xa5\xdb\x1d\x6c\x93\x55\x95\x3d\x9a\x83\xae\x1d\xb5\xc6\xb0\xcf\xc7\xb3\x73" +"\x67\x6b\x8b\x8b\x92\x82\x1e\x82\x92\x99\x85\x9a\x1b\x9c\x9c\x93\x98\x98\x1f\x96\x95\x8f\x94\x91\xa5\x08\x0b\xf8\xe4\xf7\x41\x15" +"\xac\x94\xa0\xa3\xa7\x1a\x9c\x80\x9a\x7d\x32\x1d\x8c\x77\x1b\xfb\x43\x06\x6b\x81\x3b\x1d\x7a\x6a\x1d\xe9\x06\x7e\x50\x05\x7c\x63" +"\x63\x84\x5b\x1b\x27\x52\xb0\xcd\x9b\x8d\x9c\x8f\x9c\x1f\x98\xc8\x05\xf1\xa2\xe3\xcf\xf7\x00\x1b\xd2\xb7\x78\x6b\x8d\x1f\x8d\x6c" +"\x8b\x8b\x90\x83\x08\x81\x91\x99\x85\x9a\x55\x1d\x94\x91\xa5\x9c\xd6\x18\x8f\x9d\x8b\x8c\x94\x1a\xa3\x7b\x9b\x72\x77\x7e\x83\x76" +"\x7b\x1e\x9e\x65\x5d\x95\x56\x1b\x38\x44\x73\x58\x4b\x1f\x48\x58\x5d\x44\x7b\x41\x7c\x47\x18\x86\x78\x89\x77\x77\x1a\x48\xa4\x57" +"\xba\x6d\x1e\x6f\xb7\xcc\x7b\xd3\x1b\xdb\xbe\x98\xba\xf4\x1f\x0b\xaf\xf7\x86\x15\x87\x7a\x89\x7a\x7a\x1a\xfb\x10\xed\x3b\xf7\x2a" +"\xe6\xda\xa3\xb9\xc6\x1e\xa5\xa0\x98\x9e\x9f\x7e\x1d\xcb\xc5\x6c\x6a\x89\x1f\x8a\x76\x05\x74\x8a\x9d\x7a\xa5\x55\x1d\x95\x91\xa4" +"\x9d\xdb\x18\x8f\x9d\x8b\x8c\x94\x1a\xa2\x79\x9c\x71\x79\x7e\x85\x7b\x7a\x1e\xa9\x4c\x73\x91\x52\x1b\xfb\x30\xfb\x25\xfb\x0a\xfb" +"\x2e\x69\x1f\x0b\xf8\x80\xf8\x1e\x15\xa7\x6d\x5d\x9b\x58\x1b\xfb\x32\xfb\x1e\xfb\x15\xfb\x26\x23\xdb\x42\xf7\x08\xbd\xbb\x99\xa8" +"\xbb\x1f\x81\x60\x82\x5c\x5e\x6a\x55\x8c\x19\xfb\x01\x4a\x1d\xf7\x03\x06\xf7\x04\xf1\xd9\xf1\xa0\x1f\xd6\xf7\xe6\x05\x98\x06\xaa" +"\x97\x8e\x97\x9a\x1f\x9a\x97\xaf\x1d\x8e\x82\xf7\x3a\x1d\x3b\x43\x37\x49\x5e\xb2\xc6\xd7\xdb\xd2\xe1\x1f\x0b\xf7\x8b\xf8\x60\x15" +"\xa7\x06\xb8\xab\xa4\xaf\xa8\x77\x99\x62\x1f\xfb\x28\x06\x59\x6b\x73\x67\x6e\x9f\x7c\xb4\x1f\x9c\x06\x3a\xfb\xf8\xf7\x4b\x1d\xf7" +"\xb4\xf7\xfd\x50\xfb\x95\x05\x72\x06\x59\x6b\x72\x64\x72\xa1\x7c\xb3\x1f\xf7\x2d\x06\xb8\xab\xa4\xae\xa8\x77\x9a\x62\x1f\x7b\x06" +"\xd9\xf7\xf8\x05\x97\x06\xb1\xaa\xa7\xad\xa7\x76\x99\x62\x1f\x24\x06\xfb\xaf\xfb\xfd\x05\x0b\xf8\x99\xf7\xd5\x15\x92\x06\xb2\xa9" +"\xa6\xae\xa9\x7a\x97\x60\x1f\xfb\x04\x06\x59\x6c\x73\x66\x6d\x9d\x7e\xb5\x1f\x90\x06\x6f\xfb\x14\x05\x45\x7c\x67\x69\x4f\x1b\x63" +"\x76\x9b\xa8\x96\x8d\x99\x93\xac\x1f\xc0\xf7\x7d\x05\xfb\x0b\x06\x58\x6d\x74\x64\x6e\x9d\x7e\xb5\x1f\x90\x06\x6e\xfb\x15\x05\x87" +"\x77\x88\x73\x7b\x1a\x34\xd0\x4f\xf0\xc9\xbf\xa0\xb4\xb5\x1e\xa9\xa9\x9d\xb1\x9a\xcf\x08\x0b\xf7\x3d\x1d\x86\x8b\x8a\xf4\x1d\xa6" +"\xf7\x08\x15\x6c\x4f\x50\x7b\x55\x1b\x68\x6f\x98\x9b\x94\x93\x96\x99\x97\x6c\x1d\xac\xa9\x88\x84\xb3\x1f\x0b\x90\x1e\x8e\x82\x85" +"\x8c\x76\x1b\xfb\xc1\x27\x1d\xeb\x06\x3b\xfb\xfa\x05\x2a\x26\x1d\xf7\xc1\x06\xa8\x99\x28\x1d\x9b\x1a\x9c\x2c\x1d\x2c\x06\x0b\x15" +"\xfb\x20\x26\x1d\xa9\x06\x65\x65\x1d\x5a\x1b\x5d\x72\x9a\xa7\x91\x8c\x92\x8d\x93\x1f\xc7\xf7\xa2\x5a\x1d\x93\x94\x8a\x9d\x1b\x4b" +"\x1d\x7b\x1a\x42\xc8\x5b\xe5\xc1\xac\x97\xb3\xc4\x1e\x82\x63\x05\x0b\xf8\xb1\xf7\x0c\x1d\xfc\x13\x37\x1d\x6c\x9c\x7f\xb7\x1e\x0e" +"\x15\xa7\x9e\x90\x92\x9d\x1a\x9d\x7c\x98\x77\x80\x80\x87\x80\x7d\x1e\xfb\x2b\x21\x05\x73\x7a\x83\xf7\x61\x1d\x98\x1e\x0e\x1a\xa5" +"\x7a\x9c\x72\x7f\x84\x89\x82\x77\x1e\x76\x5a\x58\x80\x58\x1b\x5b\x71\x94\x9d\x92\x8c\x92\x8d\x94\x1f\x0b\xf7\xf6\xf7\x60\x15\xb8" +"\xb4\xb2\xb4\xab\x73\xa1\x69\x1f\x7a\x06\x5f\x61\x65\x62\x6b\xa3\x74\xad\x1f\x0e\x06\xa8\x99\xf7\x1a\x1d\x0b\x06\xa9\x98\x8e\x97" +"\x99\xa0\x1d\x8f\x81\x87\x8b\x75\x1b\x0b\x69\x6c\x6e\x6b\x73\x9d\x79\xa5\xae\xaa\xa8\xac\xa3\x79\x9c\x70\x1f\x0b\x9f\x99\xaf\x1a" +"\xb1\x74\x99\x4b\x1e\x39\x06\x4c\x73\x7d\x67\x68\xa1\x7a\xb9\x8a\x1f\x6f\xfb\x15\x0b\x1a\xa4\x78\x9d\x71\x7d\x7e\x86\x80\x7d\x1e" +"\x6b\x71\x8b\x8b\x7f\x85\x08\x7d\x6f\x62\x83\x5d\x1b\x27\x4e\xb8\xd4\x96\x8c\x97\x8e\x96\x1f\x99\xc8\x05\xef\xa1\xe3\xd3\xf0\x1b" +"\x0b\x96\x1d\x82\x85\x8c\x76\x1b\x0b\xf9\x2a\x15\x65\x64\x66\x66\x70\xa3\x73\xa7\xb4\xb0\xae\xb2\xa8\x75\xa1\x6c\x1f\x0e\xf7\x23" +"\x1d\x82\x0b\x05\x4e\x25\x1d\x6e\x9d\x7e\xb5\x1e\x0b\x1f\x9b\x97\x94\x9d\x9c\x1a\x97\x86\x96\x81\x93\x1e\x93\x82\x82\x8d\x6f\x1b" +"\x0b\x08\x80\x90\x83\x91\x91\x1a\x9b\xbf\x9b\xbd\xb5\xa8\x83\x79\xa2\x1e\x6b\x96\x95\x83\xa5\x1b\x9b\x9d\x93\x98\x99\x1f\x95\x95" +"\x8f\x93\x91\xa6\x0b\x08\x94\x84\x7d\x91\x7c\x1b\x67\x75\x76\x5e\x81\x1f\x7d\x4c\x05\x88\x7e\x8a\x82\x84\x1a\x75\x9e\x7a\xa4\x9c" +"\x94\x8f\x9d\xa0\x1e\x0b\x98\x1a\xa2\x7a\x9a\x6f\x61\x80\x7e\x48\x7f\x1e\x67\xfb\x5f\x05\x0b\x86\x84\x4d\x1d\x95\x8f\x94\x98\x1e" +"\x0e\x3a\x6a\x4d\x4e\x1f\x58\x56\x6c\x44\x4a\x1a\x0b\xf7\x38\x15\x94\xb3\x05\x8e\x9a\x8d\x9b\x9b\x1a\xf7\x05\x36\xd4\xfb\x18\xfb" +"\x3d\xfb\x28\xfb\x13\xfb\x25\x0b\x37\x1d\x6d\x0b\x1e\x3e\x06\x4c\x73\x7d\x67\x68\xa1\x7a\xb9\x8a\x1f\x5a\x0b\x15\x30\xe5\x05\x96" +"\x80\x85\x8e\x80\x1b\x73\x74\x75\x0b\x1e\xfb\x12\xf7\x40\x1d\x99\x1e\x0e\x91\x9e\x1d\xae\xa8\x9c\xb6\xb5\x1f\x0b\x70\xa2\x76\xa9" +"\x9d\x9c\x94\x98\x91\x1e\x96\xa1\x9a\xc7\x9f\x1a\xab\x72\x9c\x5d\x51\x0b\x95\x06\x3b\xfb\xfa\x05\x80\x06\x6c\x80\x4e\x1d\x0b\xf7" +"\x45\x1d\x85\x8c\x76\x1b\x0b\x1f\x9b\x68\x1d\x82\x20\x1d\x0b\xf7\x03\xf7\x17\xf7\x0e\xe7\xf7\x0c\xa5\x1e\x0b\xf8\x61\x15\xc1\x06" +"\xa9\x97\x8e\x97\x9a\x1f\x0b\x7c\x1f\x7b\x7f\x82\x79\x7b\x1a\x6d\x9d\x7f\x0b\x8e\x97\x9a\x1f\x9b\x97\x94\x9c\x3c\x1d\x0b\x06\x58" +"\x6c\x74\x65\x6d\x9d\x7e\xb6\x1f\x0b\x90\x9e\x6e\x1f\xa9\x54\x1d\x0b\x89\x7e\x7b\x1f\x7b\x7f\x82\x7a\x7a\x1a\x6d\x9c\x7f\xb7\x1e" +"\x0b\x84\x79\x7d\x1e\xfb\xd4\xfc\x47\x05\x0b\x8e\x96\x8c\x95\x92\x1a\xab\x72\x9d\x0b\x06\xca\xa3\x99\xb0\xad\x75\x0b\x1a\x6d\x9c" +"\x7f\xb6\x1e\x0b\x9c\x1b\x99\x91\x88\x7a\xa2\x1f\x70\xb1\xaa\x7d\xa2\x1b\x0b\x06\xa9\x98\x8e\x97\x9a\x1f\x9a\x97\x95\x9d\x9c\x1a" +"\x0b\x1f\x9b\x97\xaf\x1d\x0b\xa2\xa1\xa2\x96\x8a\x8c\x7a\x9c\x1f\xfb\x12\xf7\x11\x0b\x7c\x1f\x7c\x7f\x81\x79\x7b\x1a\x6d\x9d\x7f" +"\xb6\x1e\x0b\x83\x72\x78\x19\x76\x70\x65\x7e\x0b\x1b\xc8\xa5\x9b\xaf\xac\x72\x9e\x0b\xa4\x7e\x95\x67\x1f\x0e\x9e\x7a\xa4\x9c\x9c" +"\x93\x98\x99\x1e\x95\x95\x8f\x0b\x06\xcb\xa2\x99\xb0\xa8\x0b\x1a\x9d\x81\x9a\x7c\x90\x1e\x8e\x82\x85\x8c\x0b\x9e\x7a\xa4\x9c\x9c" +"\x93\x98\x98\x1e\x96\x95\x0b\x06\x6c\x80\x88\x7f\x7c\x1f\x0b\x90\x80\x95\x82\x1e\x83\x95\x0b\x1f\xa7\xa2\x9e\xa8\xa1\x1a\x0b\x1f" +"\x7c\x7f\x81\x79\x7a\x1a\x0b\x8d\x7d\x96\x08\x80\x94\x84\x99\x97\x1a\x0b\x94\x9c\x9c\x1a\x9d\x81\x9a\x7c\x90\x1e\x0b\x9e\x7a\xa4" +"\x9c\x9d\x93\x98\x98\x1e\x95\x0b\xf9\x1f\xf7\x38\x15\x95\xba\x05\x90\xa3\x8e\xa2\xa3\x1a\xe5\x51\xcc\x3b\x60\x66\x7b\x67\x5f\x1e" +"\xaf\x72\x6a\x9b\x5c\x1b\x70\x40\x7d\x80\x6c\x1f\x6d\x80\x79\x75\x70\x1a\x73\x9d\x79\xa3\x92\x94\x8c\x8e\x94\x1e\x9d\xd0\x92\x8d" +"\x9d\x1b\x9f\x99\x7e\x7a\x84\x8b\x8a\x8a\x87\x1f\x88\x7b\x05\x8f\x72\x7b\x8c\x7c\x1b\x4c\x39\x70\x67\x5a\x1f\x69\x71\x79\x65\x5b" +"\x1a\x3e\xc1\x5e\xe6\xb7\xaa\x93\xa1\xb4\x1e\x81\x93\x96\x86\x9a\x1b\x9b\x98\x90\x95\x97\x1f\x75\xa9\xa1\x84\xb3\x1b\xc0\xd9\x9f" +"\xa0\xab\x1f\xa0\x99\x95\x9d\xa2\x1a\xa2\x7a\x9c\x74\x7d\x7c\x87\x7e\x69\x1e\x7f\x6d\x79\x87\x75\x1b\x65\x7b\xa1\xc1\x87\x1f\xfb" +"\x0e\x69\x15\x6c\x5f\x6d\x7f\x6f\x1b\x68\x76\x9a\xa4\x97\x8f\x95\x93\x93\x1f\x9c\x9c\xbc\x99\xb5\x1b\x9b\x97\x89\x86\xa0\x1f\xf7" +"\x19\xd4\x15\xc0\xa0\xa7\xa5\xaf\x1b\xa8\x9c\x74\x64\x88\x8b\x85\x8a\x83\x1f\x0b\xd3\xf2\x15\x87\x06\x6c\x80\x36\x1d\xe9\x06\xb7" +"\xa9\xa6\xb3\x9d\x81\x97\x76\x90\x1f\xa5\xbc\x05\xe1\x06\x80\x5b\x05\x86\x06\x68\x6d\x6f\x6b\x6f\x9d\x7c\xac\x1f\xf7\xf3\x06\xa6" +"\xf7\x0c\x05\x8e\x96\x8c\x95\xf7\x5d\x1d\x87\x78\x05\xfb\x1e\x06\xa7\xf7\x15\x05\x96\x06\x8a\x85\x8b\x88\x88\x1a\x73\xf7\x46\x1d" +"\x9b\xd5\x18\x90\x9e\x8b\x8c\x93\x1a\xa2\x78\x9c\x72\x6b\x75\x79\x68\x80\x1e\x80\x2b\x1d\xf7\x0a\x06\x7e\x52\x05\x88\x7f\x8a\x81" +"\x84\x1a\x75\x9e\x7a\xa3\xb0\xa1\xa0\xb8\x95\x1e\xaf\xf7\x36\x05\xfc\x4f\x27\x1d\x92\x06\xc2\xfb\x62\x15\x55\x06\xe7\xf7\x3f\x05" +"\x0b\xf8\xb6\xf7\x41\x15\xac\x94\xa0\xa3\xa7\x1a\x9c\x80\x9a\x7d\x32\x1d\x8c\x77\x1b\xfb\x43\x06\x6b\x81\x3b\x1d\x7a\x6a\x1d\xe9" +"\x06\x7e\x50\x05\x7c\x63\x63\x84\x5b\x1b\x27\x52\xb0\xcd\x9b\x8d\x9c\x8f\x9c\x1f\x98\xc8\x05\xf1\xa2\xe3\xcf\xf7\x00\x1b\xd2\xb7" +"\x78\x6b\x8d\x1f\x8d\x6c\x8b\x8b\x90\x83\x08\x81\x91\x99\x85\x9a\x55\x1d\x94\x91\xa5\x9c\xd6\x18\x8f\x9d\x8b\x8c\x94\x1a\xa3\x7b" +"\x9b\x72\x77\x7e\x83\x76\x7b\x1e\x9e\x65\x5d\x95\x56\x1b\x38\x44\x73\x58\x4b\x1f\x48\x58\x5d\x44\x7b\x41\x7c\x47\x18\x86\x78\x89" +"\x77\x77\x1a\x48\xa4\x57\xba\x6d\x1e\x6f\xb7\xcc\x7b\xd3\x1b\xdb\xbe\x98\xba\xf4\x1f\x0b\xf7\x5f\xd1\x1d\x7e\x8a\x82\x84\x1a\x74" +"\x9f\x7a\xa3\xd7\x1d\xf8\x6d\x06\xad\xf7\x28\x05\x8e\x9b\x8c\x91\x92\x1a\xa2\x21\x1d\x0e\xf8\xdf\xf8\x92\x15\x8f\x9c\x8c\x90\x93" +"\x1a\xa1\x79\x9b\x71\x77\x7f\x83\x75\x7c\x1e\x9e\x6e\x60\x96\x59\x1b\xfb\x24\xfb\x0a\x2d\xfb\x06\x64\xa2\x63\xae\x75\x1f\xa7\x79" +"\xa8\x83\xcd\x7f\xcd\x7f\x98\x88\x9e\x80\x08\x9a\x83\x94\x7d\x7e\x1a\x5f\x49\x67\x3a\x4c\x54\xa6\xaa\x88\x1e\x89\xa6\xdb\x1d\x6d" +"\x93\x54\x95\x3e\x9a\x82\xae\x1d\xb6\xc6\xaf\xd0\xc6\xb3\x73\x67\x6b\x8b\x8b\x92\x82\x1e\x82\x92\x99\x85\x9a\x1b\xae\xa2\xa1\xb7" +"\x95\x1f\x0b\xf7\x0d\xf7\x7c\x15\x6f\xfb\x15\x05\x5f\x8a\x6d\x72\x68\x1a\x6e\x9d\x7e\xb6\x1e\xf7\x61\x06\xf7\x30\x86\xf7\x1a\xf3" +"\xad\xf7\x2a\x95\xb8\x18\x90\x9f\x8d\xa0\xf1\x1d\x6f\xfb\x12\x18\x87\x06\x6b\x81\x3a\x1d\xf7\x02\x16\xd2\x6b\x1d\x9a\x97\x95\x9c" +"\x3c\x1d\x82\x20\x1d\x46\x06\xa7\xf7\x12\xf7\x4f\x1d\x63\x1a\x7e\x8a\x7e\x88\x7d\x1e\x81\x60\x76\x2b\x3e\x50\x29\x8f\x19\x22\x06" +"\x0e\x8c\x76\x1b\x31\x25\x1d\x79\x91\x81\x9e\x81\x1e\xfb\x00\x2a\x49\xeb\x05\xab\x9a\x9a\x9d\xa4\x51\x1d\x82\x20\x1d\x30\x06\x6b" +"\x81\x88\x7f\x30\x1d\x90\x89\x92\x8a\x98\x8a\xf7\x08\xfb\x40\x18\xfb\x61\xfb\x4e\x05\x60\x8a\x6d\x72\x68\x1a\x6d\x9d\x7f\xb6\x1e" +"\xf7\x02\x06\xa8\x99\x29\x1d\xa4\x7e\x98\x71\x8e\x1e\xf7\x09\xf5\xd1\x22\x05\x65\x87\x71\x72\x6b\x1a\x6d\x9d\x7f\xb6\x1e\xf7\x02" +"\x06\xa9\x98\x28\x1d\x9b\x3e\x1d\x86\x84\x8c\x7d\x1b\x0e\xf8\x8b\xf8\x4b\x15\x8f\x1d\x65\x79\x5a\x5e\x1e\x2d\x24\x71\x70\x73\x7b" +"\x7e\x8c\x19\x88\x06\xa3\xf7\x00\x05\xcb\x8c\xa0\x98\xb1\xe2\x1d\xa6\x06\xa9\x8d\xa4\x70\x9e\x53\xab\x27\x18\xa1\x4c\x8e\x89\xd0" +"\x89\x08\xf5\x1d\x0b\xf7\x8d\xd1\x1d\x7d\x8a\x84\x83\x1a\x74\x9e\x7a\xa4\xd7\x1d\x0b\xf9\x31\xf8\xef\x15\xca\x1d\xfb\x5e\xf7\x7c" +"\xf7\x00\x1d\x0b\xf7\x3a\xa5\x15\x70\xb5\xb2\x7f\xbe\x1b\xdf\xe7\xb5\xd1\xd1\x1f\xd1\xd0\xb2\xe7\xe8\x1a\xb6\x85\xa3\x76\xb7\x1e" +"\xcb\xc7\x05\xa4\xa4\x91\x94\x9e\x1a\xa2\x79\x9c\x72\x77\x81\x86\x71\x71\x1e\x53\x56\x05\xa9\x62\x5e\x9a\x56\x1b\xfb\x4b\xfb\x41" +"\xfb\x45\xfb\x4f\x5c\x94\x68\xa2\x64\x1f\x44\x47\x05\x70\x72\x86\x82\x78\x1a\x75\x9e\x7a\xa4\x9f\x95\x90\xa4\xa5\x1e\xf8\x48\xf8" +"\x33\x15\x90\x78\x8c\x81\x79\x1a\xfb\x10\xfb\x01\xfb\x09\xfb\x08\x73\x7a\x8f\x98\x72\x1e\x50\xd1\x15\x83\xa3\x89\x97\xa0\x1a\xf7" +"\x0f\xf7\x02\xf7\x0a\xf7\x05\xa8\xa2\x84\x7c\xa3\x1e\x0b\xf8\x3d\x75\x1d\xee\x9f\x1d\x9c\x81\x9a\x7c\x91\x1e\x8d\x85\x84\x8c\x7e" +"\x1b\x0b\xcc\xf2\x15\x80\x06\x6c\x80\x36\x1d\xf7\xbb\x06\xd4\xc7\x9f\xb4\xb7\x1f\xb0\xac\xa3\xbc\xb5\x1a\xb9\x72\xb0\x59\xa6\x1e" +"\xc5\xaf\xa8\xba\xc1\x1a\xac\x7d\xac\x72\xa2\x1e\xa9\x6c\x62\x98\x51\x1b\xfb\x90\xf7\x39\x1d\xb6\x1e\x95\x06\xdb\xfb\x13\x15\xa7" +"\xf7\x13\x05\xf7\x16\x06\xc1\xaa\x7a\x6e\x5d\x51\x68\x3e\x1f\xfb\x33\xfb\x7b\x15\xa7\xf7\x14\x05\xf7\x18\x06\xd5\xb9\x71\x60\x65" +"\x65\x76\x43\x1f\x0e\xf7\xc5\x16\xf7\x27\x06\xbd\xab\xa3\xb0\xa4\x7e\x98\x6f\x8f\x1f\xba\xf7\x6f\xf7\x62\x1d\xa1\x1a\xa6\x76\x9a" +"\x63\x1e\xfb\x0d\x06\x59\x6b\x74\x66\x6e\x9f\x7d\xb4\x1f\x94\x06\x5c\xfb\x6e\x05\xfb\x70\x06\xba\xf7\x6e\x05\x97\x06\xbd\xab\xa2" +"\xaf\xa8\x76\x9a\x63\x1f\xfb\x0d\x60\x1d\x5c\xfb\x6e\x05\x63\x85\x72\x74\x6b\x1a\x6f\x9f\x7c\xb4\x1e\xf7\x25\x06\x81\x61\x05\x88" +"\x7e\x89\x7f\x85\x1a\x76\xa2\x7a\xaa\xac\x9a\x9b\xbe\x96\x1e\x0e\xf9\x10\xf8\x15\x15\xa7\xa0\x94\x98\x9f\x1a\xa2\x79\x9c\x72\x7a" +"\x80\x86\x77\x72\x1e\x53\x5e\x05\x9c\x68\x5b\x96\x5d\x1b\xfb\x36\xfb\x2b\xfb\x14\xfb\x1e\x66\x94\x6c\x9d\x6e\x1f\x53\x5d\x05\x6e" +"\x75\x83\x7e\x77\x1a\x74\x9d\x7a\xa4\x9c\x94\x8f\xa1\xa6\x1e\xcd\xc0\x05\x79\xb0\xb3\x82\xb9\x1b\xf7\x38\xf7\x2b\xf7\x14\xf7\x1f" +"\xae\x83\xa8\x7a\xa9\x1f\x2e\x40\x15\x91\x7c\x8d\x83\x7d\x1a\x3c\x34\x48\x26\x7c\x83\x8c\x8f\x7a\x1e\x3f\xc3\x15\x85\x97\x87\x99" +"\x97\x1a\xda\xe1\xcf\xee\x9b\x95\x8a\x86\xa0\x1e\x0b\xf8\x52\xf8\x1e\x15\xa7\x6d\x5d\x9b\x58\x1b\xfb\x32\xfb\x1e\xfb\x14\xfb\x27" +"\x23\xdb\x42\xf7\x08\xbd\xbb\x99\xa8\xbb\x1f\x81\x60\x82\x5c\x5e\x6a\x55\x8c\x19\xfb\x01\x4a\x1d\xf7\x03\x06\xf7\x04\xf1\xd9\xf1" +"\xa0\x1f\xd6\xf7\xe6\x05\x98\x06\xaa\x97\x8e\x97\x9a\x1f\x9a\x97\x94\x9c\x9c\x1a\x9d\x81\x9b\x7d\x8f\x1e\x8e\x81\xf7\x3a\x1d\x3a" +"\x43\x38\x49\x5e\xb3\xc5\xd7\xdb\xd2\xe1\x1f\x0b\xf8\x61\x15\xf0\x06\x78\x37\x05\x88\x7f\x8a\x81\x85\x1a\x74\xf7\x2a\x1d\x8f\x93" +"\x91\xa7\xb5\xf7\x50\x18\xfc\xa0\x66\x1d\x83\x84\x1a\x74\xa6\x1d\x94\x91\xa6\x9e\xe0\x18\xee\x06\x3b\xfb\xfa\x82\x1d\xf7\x7b\x06" +"\xa7\x9a\x8f\x96\x99\x92\x1d\x4e\x06\x0b\xf8\x61\x15\xf7\x63\x06\x79\x38\x05\x86\x77\x8b\x8a\x83\x1a\x74\x9e\x7a\xa4\x9d\x9c\x92" +"\x99\x98\x1e\x96\x96\x8e\x92\x91\xa7\xb5\xf7\x50\x18\xfc\x70\x06\x6e\x7d\x87\x80\x7d\x1f\x7b\x7f\x82\x79\x7a\x1a\x7f\x90\x80\x95" +"\x83\x1e\x83\x94\x93\x89\xa8\x1b\xbe\x06\x3c\xfb\xfa\x05\x55\xaa\x1d\x7b\x7f\x82\x79\x7a\x1a\x7f\x90\x80\x95\x83\x1e\x83\x94\x93" +"\x89\xa8\x1b\xf7\x69\x5e\x1d\x58\x06\x0e\xf7\xb7\xf8\x3d\x15\xfb\x06\x06\x58\x6c\x73\x66\x6b\x99\x82\xbb\x8a\x1f\x5b\xfb\x6e\x05" +"\x7c\x06\x64\x6c\x6f\x69\x6d\x9c\x7f\xb6\x1f\xf7\x09\x06\xbd\xaa\xa2\xb1\xaa\x7c\x96\x5c\x8c\x1f\xa1\xef\x95\xb8\x96\xa2\xa4\xa1" +"\x19\xa5\xa8\xa9\x99\xa6\x1b\xa7\x9f\x78\x70\x83\x88\x7a\x85\x70\x1f\x37\xfc\x00\x05\x86\x74\x89\x7f\x84\x1a\x72\x9d\x7b\xa6\x9f" +"\x9d\x93\x9a\x98\x1e\x93\x93\x8e\x96\x93\xac\xdf\xf8\x00\x18\x91\xa5\x8e\xa5\xa1\x1a\xdd\x56\xc0\x39\x62\x6b\x80\x71\x67\x1e\x0b" +"\xcb\x1d\x9b\x97\x94\x9d\x3c\x1d\x83\x84\x8b\x77\x1b\x6d\x06\x0b\xf7\x8c\xf8\x61\x15\xb2\x8e\x9e\x9d\xaa\x1a\xb0\x74\x99\x4b\x1e" +"\x4c\x06\x4c\x73\x7d\x67\x69\x9f\x7b\xb4\x88\x1f\xf3\xfb\xad\x6a\x64\x77\x72\x6e\x73\x81\x8a\x19\x8f\x9b\x8c\x95\x94\x1a\xa8\x77" +"\x9d\x6b\x67\x7c\x7a\x57\x7f\x1e\x7e\x51\x05\x89\x7f\x8a\x87\x88\x1a\x76\xc1\x76\xc0\xc6\xc0\xab\xd0\xc3\x1e\xf7\xc3\xf8\x0a\x05" +"\xbe\x8d\xa2\x9b\xaf\x1a\xaf\x73\x99\x4c\x1e\x3d\x06\x4c\x73\x7d\x66\x6f\x99\x7b\xab\x84\x1f\xfb\x28\xfb\x4a\x05\x0b\xe8\xf2\x15" +"\x5f\x8a\x6d\x72\x68\x1a\x6e\x9d\x7e\xb6\x1e\xf7\x61\x06\xf7\x2f\x86\xf7\x1b\xf3\xad\xf7\x2a\x95\xb8\x18\x90\xa0\x8d\x9f\xf1\x1d" +"\x08\xa8\xfb\xfa\x15\xda\xf7\xfa\xf7\x4f\x1d\x64\x1a\x7d\x8a\x7e\x88\x7d\x1e\x81\x5f\x76\x2c\x3e\x50\x29\x8f\x19\x0b\xd4\x1d\x81" +"\x9b\x7c\x32\x1d\x8c\x77\x1b\xfb\x17\x42\x1d\x7b\x1f\x7b\x7f\x82\x78\x78\x1a\x76\x96\x7f\xa5\x87\x1e\x62\xfc\x62\x05\xf7\x0a\x06" +"\x0b\xf8\x5d\xf8\x60\x15\x3c\xfb\xf8\x05\x7f\x06\x5a\x6a\x73\x67\x6d\x9e\x7d\xb5\x1f\xf7\x0d\x06\xbe\xaa\xa2\xb1\xaa\x7c\x96\x5c" +"\x8c\x1f\xdb\xf7\xf9\x05\xb2\x90\xa4\xa2\xac\x1a\xa9\x7a\x97\x5f\x1e\xfc\x18\x06\x56\x6e\x76\x63\x6e\x9a\x7d\xa8\x1f\x91\x06\x3c" +"\xfb\xf9\x05\x73\x7d\x8a\x86\x81\x1f\x76\x82\x7b\x73\x74\x1a\x6e\x9d\x7f\xb6\x1e\xf7\x0d\x06\xbd\xaa\xa2\xb1\xa9\x7a\x98\x5f\x1f" +"\x82\x06\xda\xf7\xf8\x05\x0e\xf8\x6a\xf3\x15\xda\xf7\xf8\x05\xc5\x8d\x7d\x1d\x05\x60\x43\x5e\x7a\x61\x1b\x70\x7e\x94\x9d\x96\x8e" +"\xa0\x8e\x98\x1f\xa5\xf7\x08\x05\xcc\x8c\xa0\x98\xb1\x1a\xb2\x74\x98\x4b\x1e\x33\x06\x4c\x73\x7d\x67\x68\xa0\x7a\xb8\x8a\x1f\x72" +"\xfb\x04\x05\x86\x75\x88\x73\x7c\x1a\x44\xc5\x59\xdd\xbb\xb9\x97\xa3\xba\x1e\x75\x28\x05\x0b\xfb\x0d\x06\x6b\x81\x88\x7f\x7c\xf7" +"\x3f\x1d\x8b\x9e\x1b\x96\x06\x73\x20\x05\xa9\x68\x5f\x99\x52\x1b\x30\x42\x6f\x4f\x4e\x1f\x57\x59\x6c\x45\x4a\x1a\x55\xa3\x58\xb3" +"\x6a\x1e\x71\xac\xbd\x7d\xc8\x1b\xc4\xb4\x96\xab\xc4\x1f\x84\x6d\x05\xf7\x0d\x06\xaa\x97\x8e\x97\x99\x1f\x9b\xf7\x33\x1d\x80\x06" +"\x0b\xb7\x8c\xa9\xa4\xae\x1a\x9c\x2c\x1d\xfb\x16\x06\x6b\xe7\x1d\xa9\x06\x51\xfb\x9b\xfb\x3f\xf8\x02\x05\xfb\x09\x06\x6b\x80\x88" +"\x7f\x7d\xf7\x2f\x1d\x60\x6d\x72\x67\x6d\x9d\x7f\xb6\x1f\xf7\x15\x6b\x1d\x0b\x15\x90\x88\x91\x87\x93\x86\x08\x7a\xa4\x99\x85\x9e" +"\x1b\xa7\xa7\x9b\xb4\xb6\x1f\xa4\xa2\x92\x96\x9b\x1a\x9e\x7d\x9a\x79\x80\x80\x85\x80\x81\x1e\x68\x6c\x7e\x81\x7c\x1b\x83\x8b\x8b" +"\xa5\x63\x1f\xaa\x5c\x81\x90\x73\x1b\x67\x68\x77\x60\x65\x1f\x7a\x79\x85\x7f\x7d\x1a\x79\x99\x7e\x9e\x95\x94\x8f\x93\x93\x1e\xb4" +"\xb6\x95\x93\x97\x1b\x92\x90\x88\x7d\xa0\x1f\x0e\xbc\xf7\x6e\x05\xc2\x8c\x9f\x99\xaf\x1a\xb1\x74\x99\x4b\x1e\x42\x06\x4c\x73\x7d" +"\x66\x6a\xa0\x7a\xb5\x89\x1f\x7e\x4e\x05\x6f\x4d\x5f\x7f\x5c\x1b\x78\x7f\x90\x94\x8d\x8c\x8e\x8e\x9c\x1f\x9a\xcc\x05\xc9\xa1\x98" +"\xb1\xb1\x74\x99\x4a\x1f\x3d\x06\x4c\x73\x7d\x66\x6b\x9e\x7a\xb4\x88\x1f\x7e\x50\x05\x87\x78\x89\x7e\x7d\x1a\x4e\xc2\x63\xde\xb4" +"\xb3\x93\x9d\xba\x1e\x0b\x08\xe9\xb7\xba\xc6\xd4\x1a\xe3\x43\xc1\xfb\x09\x1e\xfb\x73\x27\x1d\x95\x06\x3b\xfb\xf9\x05\x80\x06\x6b" +"\x81\x88\x7f\x7c\x1f\x7b\x7e\x31\x1d\xb6\x1e\xf7\x29\x06\xa8\x9a\x8f\x96\x98\x1f\x9a\x97\x95\x9d\x3c\x1d\x83\x20\x1d\x6d\x06\x0b" +"\xd5\x1d\xa3\xbf\x48\x1d\x0b\xf8\xc9\x15\x9e\x97\x93\xf7\x07\x1d\x95\x8f\x94\x99\x1e\xfb\x10\xe6\x15\x64\x1d\xf7\xd7\x16\x64\x1d" +"\x0b\xf7\x7c\x15\xd8\x06\x8a\x89\x05\x87\x79\x8b\x8a\x82\x1a\x74\xa9\x1d\x8e\x93\x91\xa6\xa3\xf7\x00\x18\x90\x9d\x8b\x8e\x93\x1a" +"\xa2\x78\x9c\x72\x7a\x7a\x83\x7e\x7e\x1e\x80\x80\x88\x84\x84\x6f\x8a\x87\x18\x3f\x2b\x1d\xf7\x76\x06\x81\x60\x05\x88\x0b\xf7\x0b" +"\x1d\xae\xa2\xa2\xb7\x95\x1e\x8c\x90\x05\xf7\x02\x1d\x0b\x1f\x9b\x98\x94\x9c\x9c\x1a\x9c\x2c\x1d\xfb\x29\x42\x1d\x7c\xf7\x2f\x1d" +"\x80\x06\x6c\x80\x89\xf7\x57\x1d\xb6\x1e\xf7\x29\x06\xa8\x0b\x81\x9a\x7c\x90\x1e\x8e\x82\x85\x8c\x77\x1b\xfb\x17\x49\x1d\x9c\x7f" +"\xb7\x1e\xba\x06\x35\xfb\x82\x71\xf7\x5f\x05\xfb\x01\x06\xfb\x09\xfb\x5e\x9f\xf7\x81\x05\xb8\x06\xa9\x98\x8e\x97\xf7\x49\x1d\x0b" +"\x89\x1d\xfb\x03\xe0\x46\xf7\x1f\xdc\xf7\x07\x9f\xa1\xb7\x1e\xa2\x96\x98\x9e\xa2\x1a\xa2\xf7\x38\x1d\x29\x72\x87\x5d\x1b\x37\x60" +"\x0b\x15\x8c\x98\x8c\x97\x93\x1a\xb9\x64\xaf\x5a\x59\x64\x67\x5d\x84\x8c\x7e\x8c\x7e\x1e\xa8\xfb\xac\x05\x6a\x8e\xa1\x77\xac\x1b" +"\xab\xa1\x9f\xac\x8e\x1f\x5a\xfb\x80\x15\xb5\xac\xaa\xb2\xb2\x6a\xaa\x61\x1f\x7a\x06\x62\x6a\x6c\x64\x64\xac\x6c\xb4\x1f\x0b\x9c" +"\x9d\x93\x98\x98\x1e\x95\x95\x8f\x95\x91\xa5\xac\xf7\x28\x18\xfc\x59\x27\x1d\x90\x1d\x6e\x9d\x7e\xb6\x1e\x0b\xda\x1d\x0e\xf8\x2d" +"\xf8\x60\x15\xea\xf7\x6b\x1d\xfb\xbc\x06\x57\x6d\x40\x1d\xe7\x06\x3c\xfb\xf8\x05\x2c\x06\x58\x6c\x40\x1d\xf7\xbd\x06\xbf\xa9\xa2" +"\xb2\xa8\x79\x98\x60\x1f\x2e\x06\x0b\xf7\xf5\xf8\x49\x15\x2e\x2f\x65\x4d\x50\x1f\x5c\x59\x6f\x4e\x54\x1a\xfb\x03\xe2\x40\xf7\x16" +"\xf7\x39\xf7\x2b\xf7\x13\xf7\x1f\xf7\x02\x34\xd7\xfb\x13\x1e\x70\x24\x15\xd9\xc0\x63\x50\x3c\x35\x47\x28\x40\x56\xb4\xc5\xd8\xe1" +"\xd1\xeb\x1f\x0b\x8b\x8b\x85\x93\x85\x1d\x72\xb9\xba\x80\xc1\x1b\xf7\x31\xf7\x09\xe3\xf7\x0b\xbb\x6f\xb4\x5d\x9f\x1f\x71\x97\x0b" +"\xfb\x44\x06\x9d\xda\x05\x8f\x9d\x8b\x8d\x93\x1a\xa2\x78\x9c\x72\x67\x74\x75\x5f\x82\x1e\x79\x3a\x05\x6b\x42\x1d\xa2\x1d\xa9\x06" +"\x5e\xfb\x5d\x05\x89\x82\x8a\x83\x7f\x1a\x0b\xf7\x28\x1d\xa7\xc5\xab\x99\xaf\xa3\xa8\x1f\xb5\xaf\xbc\xa0\xca\x1b\xb6\xad\x83\x7c" +"\xa0\x1f\x95\x83\x8f\x83\x7c\x1a\x68\x98\x7c\xaa\xaf\xa2\xa1\xb7\x95\x1e\x0b\x15\xf0\x1d\x82\x7d\x1a\x7b\x9a\x7d\x9d\x9a\x9b\x94" +"\x9b\x99\x1e\x0e\x05\x80\x06\x6c\x80\x36\x1d\xf7\x6a\x7a\x1d\x2d\x06\x0e\x1f\x9a\x97\x95\x9e\x9b\x1a\x9c\x80\x9b\x7d\x90\x1e\x8f" +"\x82\x87\x8b\x75\x1b\xfb\x16\x25\x1d\x6f\x9b\x7e\xae\x8a\x1e\x51\xfb\x98\x05\x87\x7a\x89\x7c\x7e\x1a\x0b\xf8\x61\x15\xb7\x8c\xa9" +"\xa4\xae\x51\x1d\x82\x85\x8c\x76\x1b\xfb\x15\x27\x1d\xa9\x06\x50\xfb\xa1\x05\x53\x7e\x0b\x1a\xb1\x74\x99\x4b\x1e\x2c\x06\x4b\x74" +"\x7e\x66\x67\xa3\x79\xbb\x1f\x8d\x06\x3c\xfb\xf8\x05\x4d\x74\x7d\x64\x66\xa2\x7d\xcb\x1f\xea\x06\xca\xa3\x99\xb0\xaf\x74\x9c\x58" +"\x1f\xaa\xf7\x24\x05\x0b\x15\x3d\x3f\x44\x43\x56\xb8\x61\xc3\xb5\xb4\x9d\xab\xac\x1f\xa7\xa8\x97\xa6\xb1\x1a\xc1\x60\xb3\x4f\x1e" +"\x7f\x4f\x15\xac\x9f\x79\x6d\x68\x63\x67\x64\x6b\x75\x9e\xa7\xb0\xb2\xae\xb4\x1f\x0b\x1f\x9f\xe4\x05\x8d\x96\x8d\x96\x92\x1a\xa1" +"\x78\x9c\x72\x67\x75\x75\x5f\x81\x1e\x68\xfb\x32\x05\x5a\xeb\xbd\x7c\xc7\x1b\xc7\xc8\x9e\xae\xbd\x1f\xc4\xb3\xa4\xb0\x9a\xca\x08" +"\x0e\x06\x4c\x67\x6b\x5f\x57\x1a\x61\xa9\x72\xbe\xb0\xba\x97\x9c\xa7\x1e\x9a\x95\x96\x9c\x9a\x1a\x9f\x7d\x98\x76\x83\x85\x89\x86" +"\x80\x1e\x7e\x6c\x80\x87\x7f\x1b\x80\x86\x8e\x92\xa1\x0b\xf7\x02\x06\xad\xa0\x9d\xa8\x9e\x7e\x95\x70\x1f\xfb\x00\x06\x8d\x98\x8c" +"\x91\x93\x1a\xa7\x7d\x99\x6f\x66\x77\x77\x5a\x7e\x1e\x5e\x06\x69\x76\x79\x6e\x77\x98\x82\xa6\x1f\xb6\x06\x0b\x82\x3b\x1d\x6d\x9c" +"\x7f\xb6\x1e\x0b\x7c\x1f\x7b\x7f\x31\x1d\xb6\x1e\xf7\xeb\x06\xa8\x99\x29\x1d\x9c\x2c\x1d\xfb\x08\x06\x0b\xf9\x47\x15\x97\x7f\x87" +"\x8d\x7f\x1b\x74\x75\x77\x76\x81\x91\x7f\x98\x80\x1f\xf7\x0c\xfb\x00\x05\x82\x95\x97\x85\x91\x1b\xa3\xa0\x9f\xa2\x96\x86\x93\x7d" +"\x98\x1f\x0e\x95\x97\x1a\x9b\x7e\x96\x79\x82\x83\x88\x84\x81\x1e\x85\x87\xfb\xb8\xfb\x46\xf7\x69\xfb\x47\x05\x7e\x99\x8e\x8a\x96" +"\x1b\xa1\xa1\x9d\x9e\x92\x87\x94\x83\x93\x1f\x0b\xee\x1d\x0e\x99\x84\x7c\x7a\x7d\x82\xf7\x01\x1d\x0b\x15\x9e\x97\x93\x97\x99\x1a" +"\x9a\x80\x95\x7b\x82\x80\x87\x82\x7e\x8d\x1d\x15\x3c\x3f\x46\x44\x52\xb6\x62\xc7\xdb\xd7\xd0\xd3\xc3\x60\xb4\x4e\x1f\x80\x50\x15" +"\xaa\xa1\x77\x6f\x67\x62\x68\x62\x6c\x75\x9f\xa7\xaf\xb4\xae\xb4\x1f\x0b\x7e\x84\x81\x7f\x1a\x7b\x98\x80\x9d\x94\x93\x8e\x92\x95" +"\x1e\x91\x8f\xf7\xb7\xf7\x46\xfb\x68\xf7\x47\x05\x98\x7c\x89\x8c\x80\x1b\x75\x75\x79\x78\x84\x0b\x8c\x8c\x8c\x8c\x8c\x8d\x8f\x8f" +"\x8e\x8d\x8c\x8d\x08\x93\x95\x8e\x92\x96\x1a\x9d\x7d\x98\x77\x7b\x7d\x83\x7a\x7d\x1e\x23\xfb\x0e\x05\x7b\x7a\x86\x0b\x9f\x1a\xf7" +"\x11\x37\xdf\xfb\x11\x1e\xfb\x69\x06\x6a\x82\x3f\x1d\x7a\x7b\x1a\x79\x95\x7b\x9a\x86\x1e\x90\x89\x92\x8a\x98\x8a\x0b\x22\xee\xfb" +"\x26\x1f\x7b\x3d\x15\xf6\xd8\x43\x27\xfb\x1b\xfb\x1e\xfb\x16\xfb\x23\xfb\x03\x3e\xd1\xf1\xf7\x1d\xf7\x1e\xf7\x14\xf7\x27\x1f\x0e" +"\x15\xfb\x05\xfb\x5b\x05\x85\x81\x88\x81\x84\xf7\x3e\x1d\xc3\x16\xfb\x05\xfb\x5b\x05\x85\x0b\x8a\x88\x1f\x87\x79\x05\x91\x66\x6d" +"\x8e\x6b\x1b\x24\x35\x69\x4e\x55\x1f\x70\x6d\x7d\x6b\x6e\x1a\x4b\xce\x5b\xe6\xc3\xc7\x97\xa1\xbf\x1e\x0b\x9e\x06\xca\xa2\x99\xb0" +"\xb2\x75\x99\x4b\x1f\x7c\x06\x69\xf7\x01\x80\xb0\x79\xa8\x74\xa3\x19\xaf\xb1\xd4\xdd\x90\x91\x90\x90\x97\x97\x19\x0b\x81\x9b\x7c" +"\x90\x1e\x8e\x83\x84\x8b\x76\x1b\x8a\x06\xb2\xf7\x3f\x05\x8e\x99\x8c\x98\x98\x1a\xd5\x50\xbc\x30\x59\x58\x78\x6a\x60\x1e\x0b\x15" +"\xd8\xb7\x67\x4d\x6e\x7e\x6b\x74\x71\x1f\x63\x68\x5d\x77\x51\x1b\x3f\x5e\xaf\xc9\xa8\x98\xab\xa2\xa5\x1f\xb3\xaf\xb8\x9f\xc5\x1b" +"\x0b\x73\x7b\x77\x91\x94\x7b\x1f\x96\x79\x8a\x8c\x82\x1b\x72\x74\x75\x74\x7d\x92\x81\x9b\x81\x1f\x7e\xa1\xb2\x81\xa7\x1b\xd5\xc7" +"\xc0\xcd\x0b\xf7\x19\x06\xfb\xc6\xf7\x5e\x1d\x9b\x8c\x8f\x93\x1a\xa2\x78\x9c\x72\x6b\x76\x7a\x68\x80\x1e\x0b\x32\x1d\x8c\x77\x1b" +"\x2f\x06\x6c\x80\x2a\x1d\x7a\x1a\x7e\x8f\x82\x96\x81\x1e\x4b\x60\x5f\x0b\x05\xaa\x97\x9c\xa0\xa6\x1a\x9c\x81\x9b\x7c\x8f\x1e\x8e" +"\x83\x20\x1d\x31\x06\x6b\x81\x88\x7f\x7c\x1f\x7b\x7f\x82\x0b\x15\xe4\x31\x05\x82\x94\x94\x87\x95\x1b\xa3\xa2\xa1\xa1\x97\x8a\x8c" +"\x7a\x9c\x1f\xfb\x12\xf7\x11\xfb\x4b\xfb\x11\x05\x6e\x0b\x06\x92\xac\x05\xa1\x90\xa0\x9e\x9f\x1b\x94\x97\x89\x85\x99\x1f\x86\x9b" +"\x8f\x8a\x95\x1b\xad\xaa\xa9\xac\xab\x5e\xa1\x0b\x97\x99\x1a\x9a\x80\x95\x7c\x81\x81\x87\x82\x7e\x1e\xfb\x13\x38\x05\x79\x7f\x82" +"\x7f\x7d\x1a\x7c\x96\x80\x9b\x94\x0b\x98\x9f\x9f\x3e\x1d\x82\x85\x8c\x77\x1b\x2e\x06\x6c\x81\x2a\x1d\x0b\x6f\x82\x7e\x7b\x71\x1a" +"\x69\xa4\x79\xbc\x1e\xb0\x06\xba\xa5\x9d\xad\xa3\x81\x99\x73\x97\x1f\x99\xde\x95\x7a\x8f\x0b\x80\x1a\x74\xa1\x77\xa4\xa2\x9a\x96" +"\xad\x9e\x1e\xd8\xb7\xc0\xac\xdb\x1b\xc0\xad\x78\x6d\x5d\x50\x66\x42\x1f\x0b\xf7\xa9\xf2\x15\xf7\xc8\xf7\x82\x9e\xdf\x05\xfc\x35" +"\x06\x73\x21\x05\x89\x81\x89\x7e\x84\x1a\x75\x9e\x7a\xa4\x0b\xf7\x6e\x15\xa9\x97\x8e\x97\x9a\x1f\x9b\x97\x94\x9d\x9c\x51\x1d\x83" +"\x82\x8c\x78\x1b\x0b\x15\x37\x06\xfb\x55\xfb\x7e\x80\x56\x05\xf7\x37\x06\x88\x7c\x05\x78\x06\x6c\x78\x7c\x73\x79\x97\x83\xa4\x1f" +"\x0b\xfb\x12\xf7\x11\xfb\x4a\xfb\x11\x05\x6e\x78\x86\x84\x7a\x1a\x79\x98\x7e\x9e\x95\x94\x8f\x94\x99\x1e\x0e\xfb\xd5\x05\x40\x06" +"\xbd\xf7\x6e\x05\xae\x94\x9d\x9f\xa9\x1a\xa9\x77\x99\x62\x1e\x5f\x06\x51\x6c\x76\x64\x0b\xf7\x64\x1d\x7f\x7d\xf7\x53\x1d\x06\xa8" +"\x99\x8f\x96\xf7\x49\x1d\x81\x9b\x7c\x91\x1e\x8d\x86\x84\x8c\x7e\x1b\x0b\x05\xb6\x91\xa1\x9f\xac\x1a\xa9\x77\x99\x61\x1e\x48\x06" +"\x52\x6c\x76\x64\x70\x99\x7e\xa9\x88\x1f\x0b\x1a\x9c\x2c\x1d\x2f\x06\x6b\x81\x88\x7f\x7c\x1f\x7b\x7f\x82\x0b\xf7\x11\x18\xfb\x4a" +"\xfb\x10\x05\x6f\x78\x85\x83\x4d\x1d\x93\x8e\x95\x9a\x1e\x0b\x1f\x7b\x7f\x82\x79\x7b\x1a\x7a\x95\x7b\x9a\x86\x1e\x0b\x81\x87\x82" +"\x7e\x1e\xfb\x13\xf7\x40\x1d\x0b\xf7\x27\x1d\x88\x93\x94\x8a\x0b\x64\xfb\x41\x05\x89\x7e\x89\x81\x85\x1a\x75\x9e\x7a\xa5\xad\xa3" +"\xa2\xb6\x94\x1e\x9b\xd2\x05\x0b\x2a\x1d\x7a\x1a\x7a\x6a\x1d\x0b\x29\x1d\x9c\x2c\x1d\x0b\x74\x75\x72\x83\x91\x80\x96\x81\x1f\xf7" +"\x02\x21\x05\x7e\x98\x93\x87\x95\x1b\xa5\xa3\xa1\x0b\x1a\x75\xb0\x1d\x0b\xaa\x1d\x7b\x7f\x82\x79\x7a\x1a\x7a\x95\x7c\x9a\x86\x1e" +"\x87\x94\x0b\xf7\xb3\x15\xf7\x54\xf7\x42\x05\xb5\x8c\xa9\xa5\xad\x3e\x1d\x0b\x95\x93\x87\x96\x1b\xa2\xa1\x1d\xfb\x4b\x0b\xdc\x06" +"\xa8\x9a\x8f\x96\x98\x1f\x9b\x97\x94\x9d\x9b\x1a\xaa\x7b\x97\x5e\x1e\x81\x06\x0b\x7e\x8c\x19\x88\x06\xa3\xf7\x00\x05\xcb\x8c\xa0" +"\x98\xb1\x1a\xb1\x74\x99\x4b\x1e\x0b\x06\xa8\x99\x29\x1d\x9d\x81\x9b\x7c\x90\x1e\x8e\x0b\x06\xa9\x98\x8e\x97\x99\x1f\x9b\x68\x1d" +"\x0b\xfb\x33\x15\xa6\x9c\x79\x70\x6d\x71\x76\x67\x6f\x79\x98\x9f\xaa\xac\xab\xaa\x1f\x0b\x28\x1d\x9c\x1a\x97\x86\x96\x81\x94\x1e" +"\x92\x82\x83\x8d\x0b\xf7\x35\x1d\xb2\x8a\x93\x0b\x06\x6b\x81\x2a\x1d\x7b\x1a\x7a\x95\x7b\x9a\x86\x1e\x0b\x1a\xa4\x78\x9d\x72\x7e" +"\x81\x87\x83\x7f\x1e\x6a\x5b\x69\x82\x3b\x1b\x26\x5b\x0b\x9a\x80\x1e\x84\x96\x98\x88\xa5\x1b\xf8\xb4\x06\xa2\x98\x8d\x91\x95\x1f" +"\x9c\x0b\xb0\x1d\x95\x0b\x86\x95\x19\xad\x79\x6c\x9c\x5e\x1b\x66\x7a\x7e\x65\x81\x1f\x82\x66\x05\x0b\x15\xa3\x9e\x78\x74\x73\x78" +"\x78\x74\x73\x78\x9e\xa3\xa1\x9e\x9f\xa2\x1f\x0b\x16\x62\x65\x68\x66\x6e\xa1\x76\xa9\xb4\xb1\xae\xb0\xa9\x75\x9f\x6d\x1f\x0b\x96" +"\x96\x1d\x0b\xf7\x5f\x1d\x95\x06\x3b\xfb\xfa\x05\x0b\x9f\x1a\x9d\x7f\x97\x78\x75\x81\x82\x6b\x7d\x1e\x60\x77\x5d\x70\x55\x1b\x0b" +"\x31\x05\x81\x94\x94\x87\x95\x1b\xa3\xa2\xa1\xa2\x94\x88\x90\x82\x94\x1f\x0b\x80\x1f\xf7\x02\x21\x05\x80\x97\x94\x86\x95\x1b\xa5" +"\xa3\xa1\xa2\x95\x0b\x97\x94\x9d\x9b\x1a\x9d\x81\x9b\x7d\x90\x1e\x8e\x82\x84\x8b\x77\x1b\x0b\x1f\xf7\x02\x21\x05\x80\x96\x95\x86" +"\x95\x1b\xa5\xa3\xa1\xa2\x95\x86\x0b\xe1\x06\xca\xa3\x99\xaf\xae\x75\x9c\x5d\x8c\x1f\x9a\xd2\x05\xa2\x06\x0b\x7a\x1a\x6d\x9d\x7f" +"\xb6\x1e\xf7\x02\x06\xa9\x99\x8f\x96\x99\x1f\x9b\x0b\x7c\x82\x76\x77\x1f\x6e\x6f\x88\x89\x7d\x1b\x80\x81\x90\x9e\x6e\x1f\x0b\x7a" +"\x9c\x73\x80\x7f\x89\x88\x7e\x1e\x74\x0b\x06\x6b\x80\x88\x7f\x7d\x1f\x7b\x7f\x82\x7a\x7a\x1a\x6d\x9c\x7f\x0b\x85\x8c\x77\x1b\xfb" +"\x0c\x06\xfb\x2d\x31\x15\xcb\xb8\x63\x51\x40\x0b\x89\x87\x82\xf7\x71\x1d\x92\x8e\x8b\x0b\x8f\x9d\x8b\x8c\x93\x1a\xa4\x7b\x9a\x71" +"\x75\x7e\x83\x78\x80\x1e\x0b\x95\x9a\x8d\x8f\x9d\x1e\x96\xbb\xb1\x90\xad\x1b\xc2\xa3\x81\x74\x0b\x1a\x7e\x99\x80\x9a\x9a\x95\x91" +"\x9d\x9b\x1e\xf7\x58\xf7\x76\x05\x0b\x1f\x7b\x7f\x82\x7a\x7b\x1a\x79\x95\x7b\x9a\x86\x1e\x88\x93\x94\x0b\x38\x05\x79\x7f\x82\x7f" +"\x7d\x1a\x7b\x96\x81\x9b\x94\x94\x8f\x94\x0b\x88\x7f\xa2\x1d\x0b\x8c\x77\x1b\x31\x06\x6b\x81\x2a\x1d\x0b\x15\x63\x71\x77\x6e\x72" +"\x99\x81\xae\x1f\xf7\x88\x06\xb2\xa6\x0b\xac\x1d\x9c\x80\x95\x79\x7a\x80\x83\x78\x0b\x1f\x9a\x97\x95\x9d\x9c\x1a\x9b\x81\x9b\x7c" +"\x90\x1e\x8e\x82\x0b\xb0\x1d\x94\x8f\x95\x91\xa5\x0b\x79\x7a\x72\x82\x8f\x82\x90\x85\x1f\x78\x9e\xba\x7c\xb4\x1b\x0b\x1a\x9e\x7d" +"\x98\x77\x7f\x84\x88\x7e\x0b\x99\x1f\x9a\x97\x95\x9d\x9b\x1a\x9c\x0b\x7d\x98\x77\x7f\x84\x88\x7e\x78\x1e\xfb\x31\x21\x05\x74\x0b" +"\x05\x7d\xf7\x6c\x1d\xf4\x06\x0b\x1f\x9a\x97\x95\x9d\x9b\x51\x1d\x0b\x9e\x1a\x9d\x82\x9b\x7c\x96\x1e\x93\x7f\x82\x8d\x6e\x1b\x0b" +"\x7e\x82\x7b\x7b\x1a\x7e\xab\x1d\x0b\x05\xf6\x06\xb0\xa9\x83\x7b\x9e\x1f\xa5\x76\x9c\x64\x0b\xf7\x39\x15\xab\xfb\x39\x05\xec\x06" +"\xf7\x2f\xf7\xd6\x0b\x15\xe5\x31\x05\x82\x94\x93\x87\x96\x1b\xa3\xa2\xa1\x0b\xf7\xfa\x15\xc8\xfb\x76\x05\xeb\x06\xf7\x2e\xf7\x74" +"\x0b\x1a\x7b\x96\x81\x9b\x94\x95\x8f\x94\x99\x1e\x0e\x83\x1b\x85\x7f\x92\x98\x7c\x1f\x0b\x15\x70\x77\x74\x6b\x43\xcf\x52\x0b\x63" +"\x65\x68\x66\x6e\xa1\x76\xa9\x0b\x7f\x7c\x1f\x7b\x7e\x82\x7a\x7a\x1a\x6e\x9d\x7e\x0b\x05\xb1\x8d\xa6\xa5\xac\x1a\xa7\x76\x99\x63" +"\x1e\x0b\x06\x67\x6b\x6e\x6a\x70\xa0\x7c\xb3\x1f\xaf\x06\x0b\x83\x1a\x75\x9e\x7a\xa4\x9c\x9d\x93\x98\x98\x1e\x0b\xf7\x6e\x05\xa2" +"\x06\xb0\xab\xa7\xac\xa7\x76\x99\x0b\x8a\x19\x89\x87\x84\x8a\x82\x1b\x80\x06\x93\xb6\x0b\x92\x1a\xa2\x78\x9c\x72\x67\x75\x75\x5f" +"\x81\x1e\x0b\xfb\x81\x78\x36\x05\xf8\x4e\x06\x9f\xe2\x05\x8e\x0b\x1f\x7b\x7f\x82\x79\x7b\x9d\x1d\x0b\xfb\x1c\xf4\x27\xf7\x24\xf7" +"\x5c\xf7\x4e\xf7\x40\x0b\x7f\x7c\x1a\x78\x99\x7e\x9f\x94\x9a\x91\x95\x0b\x05\xa4\x98\x8d\x8f\x94\x1f\xa0\x94\x9c\xa3\x0b\x06\x6b" +"\x81\x89\x7f\x7c\x1f\x7b\x7e\x82\x7a\x0b\x87\x82\x7e\x1e\xfb\x12\x38\x05\x78\x7f\x82\x0b\x15\x98\x7d\x86\x8e\x7f\x1b\x70\x74\x75" +"\x72\x0b\x1f\x7a\x81\x80\x79\x78\x1a\x7a\x94\x7a\x9a\x0b\xe1\x15\xae\xa7\x9e\xb0\xb0\x1a\xc0\x64\xaf\x0b\x96\x80\x9b\x99\x97\x93" +"\x9c\x0b\x05\xb4\x8d\xa7\xa4\xad\x1a\x9d\x81\x9a\x0b\x06\xbd\xab\xa3\xaf\xa9\x77\x99\x62\x1f\x0b\x06\xbf\xa9\xa2\xb2\xa8\x78\x98" +"\x61\x1f\x0b\x06\x66\x6b\x6e\x6a\x6f\xa0\x7d\xb3\x1f\x0b\x06\x59\x6b\x73\x66\x6c\x9d\x7f\xb6\x1f\x0b\x86\x1e\x88\x93\x94\x8a\x9e" +"\x1b\x96\x06\x0b\xf7\x78\xf7\x67\x15\xf7\x45\xf7\x17\x05\x0b\x15\xfb\x24\x06\xeb\xfb\x78\x05\x78\x93\x0b\x1e\x88\x83\x86\x8a\x87" +"\x1b\x83\x88\x8e\x0b\x1f\xa0\xa1\x94\x99\x98\x1a\x99\x7d\x97\x0b\xfb\x10\x05\x6e\x77\x86\x84\x7a\x1a\x79\x0b\x78\x9c\x72\x7a\x79" +"\x83\x7e\x7e\x1e\x81\x0b\x06\x73\xfb\x00\x05\xf7\x13\x06\x0e\x01\x00\x01\xe3\x01\x05\x00\x01\x0a\x02\x01\x40\x03\x01\x87\xff\x02" +"\x87\xa0\x02\x8e\x02\x00\x01\x00\x02\x00\x03\x00\x39\x00\x71\x01\x31\x02\x06\x02\x84\x03\x15\x03\x35\x03\x7d\x03\xc4\x04\x31\x04" +"\x6f\x04\x71\x04\x73\x04\x7a\x04\xa5\x05\x06\x05\x38\x05\x9d\x06\x16\x06\x66\x06\xd3\x07\x4b\x07\x83\x07\xec\x08\x64\x08\x83\x08" +"\xa9\x08\xf3\x09\x0a\x09\x54\x09\xbe\x0a\x62\x0a\x65\x0a\xc9\x0a\xcc\x0a\xcf\x0a\xdf\x0b\x31\x0b\x34\x0b\x59\x0b\x5c\x0b\x87\x0b" +"\x8a\x0b\x8d\x0b\xeb\x0b\xee\x0b\xf1\x0b\xff\x0c\x9f\x0c\xa2\x0c\xa5\x0c\xa8\x0c\xab\x0c\xfe\x0d\x26\x0d\x2f\x0d\x3b\x0d\x51\x0d" +"\x89\x0d\xb4\x0d\xee\x0e\x22\x0e\x3c\x0e\x4d\x0e\x50\x0e\xc4\x0e\xc7\x0e\xca\x0e\xcd\x0f\x22\x0f\x25\x0f\x69\x0f\x71\x0f\xa6\x0f" +"\xa9\x0f\xac\x10\x28\x10\x2b\x10\x2e\x10\x32\x10\xb8\x10\xbb\x10\xbe\x10\xc1\x10\xc4\x11\x0f\x11\x12\x11\x1f\x11\x22\x11\x38\x11" +"\xb1\x11\xbe\x12\x36\x12\x72\x12\xb9\x13\x43\x13\xc4\x13\xc6\x14\x72\x14\xde\x15\x8e\x16\x2e\x16\x4c\x16\x6e\x16\x86\x16\xb5\x16" +"\xc8\x17\x29\x17\xbd\x17\xbf\x18\x08\x18\x6d\x18\x6f\x18\xf8\x19\x0f\x19\x11\x19\x1f\x19\x3a\x19\x82\x19\x92\x19\xcf\x1a\x3c\x1a" +"\x58\x1a\x5e\x1a\x64\x1a\x97\x1a\x99\x1a\x9f\x1a\xa5\x1a\xab\x1a\xb1\x1a\xc7\x1a\xcd\x1a\xed\x1a\xf3\x1a\xf5\x1a\xf8\x1b\x77\x1b" +"\xe2\x1b\xe5\x1c\x65\x1c\x92\x1c\x95\x1c\x9a\x1c\xea\x1c\xed\x1d\x6f\x1d\xff\x1e\x38\x1e\x58\x1e\xd5\x1f\x96\x1f\x98\x20\x1f\x20" +"\x59\x20\xb6\x21\x02\x21\x3a\x21\x70\x21\x9e\x21\xd4\x22\x22\x22\x7e\x22\xfd\x23\x0a\x23\xab\x24\x06\x24\x74\x24\xef\x25\x12\x25" +"\x2d\x25\x34\x25\x4c\x25\x78\x25\xc3\x26\x30\x26\x60\x26\x82\x26\xaa\x26\xdb\x26\xe1\x27\x02\x27\x09\x27\x16\x27\x6b\x27\x97\x27" +"\x9e\x27\xb5\x27\xc2\x28\x0d\x28\xc7\x28\xe3\x29\x07\x29\x15\x29\x2c\x29\x57\x29\x75\x29\xde\x2a\x77\x2a\x96\x2a\xc3\x2a\xca\x2a" +"\xf6\x2b\xb5\x2c\x4d\x2c\x7e\x2c\xb1\x2c\xcc\x2c\xf2\x2d\x3f\x2d\x63\x2d\x98\x2d\xaf\x2e\x02\x2e\x24\x2e\x51\x2e\x62\x2e\x8d\x2e" +"\xcb\x2f\x49\x2f\x97\x2f\xdf\x30\x03\x30\x54\x30\x5c\x30\x72\x30\xcf\x31\x41\x31\xae\x32\x18\x32\x9c\x32\xfb\x33\x67\x34\x01\x34" +"\x6e\x34\x8c\x34\x93\x34\x95\x34\xfc\x35\x03\x35\x66\x35\x96\x35\x98\x35\xae\x35\xe8\x35\xf0\x35\xf8\x35\xfa\x35\xff\x36\x01\x36" +"\x1c\x36\x30\x36\x43\x36\x56\x36\x6a\x36\xa1\x36\xc2\x36\xc4\x37\x69\x37\x78\x37\xab\x38\x56\x38\x5a\x38\x62\x38\x69\x38\x71\x38" +"\x78\x39\x18\x39\x2c\x39\xaa\x39\xbc\x39\xc1\x39\xc8\x39\xfc\x39\xfe\x3a\x1b\x3a\x3c\x3a\x6b\x3a\xc2\x3a\xda\x3a\xe1\x3a\xe7\x3b" +"\x1b\x3b\x3a\x3b\x41\x3b\x5a\x3b\x5c\x3b\x62\x3b\x68\x3b\x70\x3b\x88\x3b\x91\x3b\xaa\x3b\xb1\x3c\x28\x3c\x2d\x3c\x97\x3c\xb5\x3d" +"\x52\x3d\x54\x3d\xec\x3d\xf4\x3e\x2d\x3e\x34\x3e\x36\x3e\x3d\x3e\xea\x3f\x02\x3f\x0a\x3f\x5c\x3f\x5e\x3f\xd0\x3f\xd5\x40\x41\x40" +"\xc9\x40\xe3\x40\xfc\x41\x13\x41\x3a\x41\x46\x41\xbe\x42\x1d\x42\x25\x42\x8f\x42\xb6\x42\xe3\x43\x00\x43\x2d\x43\xe2\x43\xf2\x44" +"\x00\x44\x13\x44\x25\x44\x53\x44\x5b\x44\x62\x44\x64\x44\x66\x44\xc5\x44\xc7\x44\xcb\x45\x39\x45\x3b\x45\xc3\x46\x95\x47\x18\x47" +"\x1b\x47\x46\x47\x49\x47\xae\x47\xb0\x47\xbf\x47\xc4\x47\xc6\x47\xc8\x47\xcb\x47\xcd\x47\xd0\x48\x65\x48\x67\x48\x89\x48\xd8\x49" +"\x1b\x49\x72\x49\xd2\x4a\x52\x4a\x99\x4b\x1f\x4b\xa0\x4c\x2f\x4c\x76\x4d\x0c\x4d\x4c\x4d\xcd\x4d\xd0\x4d\xd2\x4d\xf0\x4e\x15\x4e" +"\xa3\x4f\x41\x4f\xec\x50\x00\x50\x2b\x50\x48\x50\xb5\x51\x08\x51\x0b\x51\x83\x51\x88\x51\xf5\x52\xae\x53\x49\x53\x4c\x53\x7e\x53" +"\x81\x53\xea\x54\x4f\x54\x8e\x54\x90\x54\xdc\x54\xe0\x54\xee\x55\x30\x55\x36\x55\xf4\x56\x01\x56\x58\x56\x77\x56\xa6\x56\xe9\x57" +"\x39\x57\xc4\x58\x14\x58\x8b\x59\x0e\x59\x85\x59\xb0\x5a\x06\x5a\x1b\x5a\x90\x5a\xc3\x5a\xcb\x5b\x18\x5b\x26\x5b\xa5\x5c\x3a\x5c" +"\x46\x5c\x4e\x5c\xe4\x5d\x10\x5d\x12\x5d\x66\x5e\x16\x5e\xb4\x5f\x87\x5f\xef\x60\x67\x60\x6f\x60\xa3\x60\xd7\x61\x3d\x61\xb5\x61" +"\xda\x62\x29\x62\x6f\x62\xb5\x62\xc1\x63\x09\x63\x57\x63\xae\x64\x1e\x64\x25\x64\x2d\x64\x40\x64\x48\x64\xa4\x65\x1a\x65\x86\x65" +"\x8e\x65\xbf\x66\x29\x66\x4d\x66\x52\x66\x5a\x66\x61\x66\x6d\x66\xac\x66\xb4\x67\x4f\x67\x89\x67\xf8\x68\x8e\x68\xde\x69\x33\x69" +"\x36\x69\x5b\x69\x68\x69\x82\x69\xc8\x6a\xd2\x6b\x26\x6b\x2d\x6b\x34\x6b\x69\x6b\x70\x6b\xd2\x6c\x08\x6c\x5f\x6c\x95\x6c\xb9\x6c" +"\xc0\x6d\x1c\x6d\x25\x6d\x90\x6d\xc1\x6d\xef\x6d\xfe\x6e\x5f\x6e\xc8\x6e\xf3\x6e\xf6\x6f\x42\x6f\x74\x6f\x83\x6f\xd9\x6f\xf0\x70" +"\x64\x70\x7d\x70\xe8\x70\xee\x71\x36\x71\x3e\x71\x45\x71\x5e\x71\xc1\x72\x62\x72\xa9\x73\x23\x73\x33\x73\x75\x73\xfa\x74\x02\x74" +"\x9b\x74\xa3\x74\xaa\x75\x33\x75\xb5\x75\xff\x76\x06\x76\x0d\x76\x14\x76\x39\x76\x79\x76\x7b\x76\xcc\x76\xd9\x76\xe1\x77\x44\x78" +"\x15\x78\x8b\x79\x06\x79\x83\x79\xd8\x7a\x2b\x7a\xbf\x7b\x27\x7b\x53\x7b\x89\x7b\x90\x7b\x97\x7b\xb7\x7c\x11\x7c\x18\x7c\x72\x7c" +"\x87\x7c\x8f\x7c\xac\x7c\xef\x7d\x9b\x7d\xe1\x7e\x5f\x7e\xd9\x7f\x37\x7f\xef\x80\x61\x80\xbd\x81\x17\x81\x2a\x81\x32\x81\x3a\x81" +"\x42\x81\x6b\x81\x6c\x81\x6e\x81\x75\x81\x8e\x81\x90\x81\x92\x81\xaf\x82\x2e\x82\x95\x83\x12\x83\x24\x83\x50\x83\x9d\x83\xa4\x83" +"\xe2\x84\x1d\x84\xf5\x85\xb2\x86\x4c\x86\xf6\x87\x85\x87\xf1\x88\x4f\x88\xef\x89\x63\x89\xfd\x8a\x74\x8a\xa6\x8a\xd3\x8b\x0d\x8b" +"\x19\x8b\x4e\x8b\xb3\x8c\x1c\x8c\xa5\x8d\x19\x8d\x3c\x8d\x66\x8d\xea\x8e\xa8\x8f\x1f\x8f\x39\x8f\x3b\x8f\x66\x8f\xe5\x90\x52\x90" +"\x5a\x90\x62\x90\xb2\x90\xb4\x90\xc8\x90\xd0\x90\xdd\x91\x96\x92\x12\x92\x14\x92\x16\x92\x2d\x92\x4b\x92\xa6\x92\xbc\x93\x1d\x93" +"\x4a\x93\x5f\x93\xbf\x93\xda\x94\x1c\x94\x23\x94\x2a\x94\xba\x94\xe8\x95\x22\x95\x29\x95\x3d\x95\xd0\x95\xdb\x95\xfe\x96\x06\x96" +"\x0d\x96\x7e\x0e\x0e\xf8\x82\xf8\x8b\x15\x94\xa8\x8d\x95\x98\x1a\xaf\x6e\xa5\x62\x6f\x6e\x7e\x76\x77\x1e\x79\x78\x85\x7b\x86\x60" +"\x69\xfb\xaf\x18\x8a\x88\x8b\x88\x89\x1a\x70\x9b\x7b\xa7\xa9\xa3\x9e\xaa\x95\x1e\x2a\xfb\x7f\x15\x2c\x0a\x0e\xf7\x98\xf8\xdb\x15" +"\x77\xfb\x8a\x05\x8a\x85\x8b\x86\x89\x1a\x7c\x97\x80\x9b\xa1\x97\x95\xa6\x94\x1e\xe3\xf7\x8c\x05\xc9\x16\x77\xfb\x8a\x05\x8a\x85" +"\x8b\x86\x89\x1a\x7c\x97\x80\x9b\xa1\x97\x96\xa5\x94\x1e\xe3\xf7\x8c\x05\x0e\xf8\xb7\xf8\x44\x15\xb7\xf7\x28\x05\x92\xa4\x8b\x8b" +"\x91\x1a\xa3\x78\x9d\x72\x7a\x7b\x84\x7f\x7d\x1e\x80\x81\x88\x84\x83\x6f\x5d\xfb\x31\x18\x4b\x06\xb7\xf7\x28\x05\x90\x9d\x8d\x92" +"\x93\x1a\xa1\x78\x9d\x72\x68\x74\x76\x60\x81\x1e\x5c\xfb\x31\x05\x73\x06\x6b\x81\x89\x7e\x30\x1d\x88\x94\x92\x8a\x9f\x1b\x99\x06" +"\x70\x2e\x05\x6d\x06\x6b\x81\x88\x7f\x30\x1d\x88\x94\x94\x8a\x9d\x1b\x9f\x06\x5f\xfb\x28\x05\x87\x7b\x89\x82\x84\x1a\x74\x9e\x79" +"\xa4\xae\xa3\xa1\xb5\x94\x1e\xba\xf7\x31\x05\xca\x06\x5f\xfb\x28\x05\x87\x7c\x89\x82\x83\x1a\x74\x9e\x79\xa2\x9b\x9c\x92\x97\x99" +"\x1e\x91\x92\x97\xa1\x90\x9a\xb9\xf7\x32\x18\xa2\x06\xaa\x97\x50\x1d\x9b\x1a\x9c\x80\x51\x0a\x83\x8c\x78\x1b\x7d\x06\xa7\xe8\x05" +"\xa8\x06\xaa\x96\xd7\x0a\xfb\x32\x24\x15\x6f\x2e\x05\x4c\x06\xa7\xe8\x05\x0e\xf8\x7b\xf8\xe5\x15\xf7\x29\x0a\x7a\x7a\x83\x7e\x7e" +"\x1e\x81\x81\x86\x82\x86\x70\x86\x75\x18\x24\x7a\x3b\x3b\x35\x1a\x4b\xb5\x62\xdf\x7a\x1e\xd2\x7d\x05\xb9\x82\x9e\x7e\x74\x1a\x5e" +"\x52\x67\x46\x55\x5d\xa1\xa6\x89\x1e\x8a\xa6\x8b\x8b\x84\x93\x08\x94\x83\x7d\x91\x7d\x1b\x7a\x79\x83\x7e\x7e\x1f\x81\x81\x86\x82" +"\x86\x71\x7d\x50\x18\x88\x7a\x8a\x87\x83\x1a\x74\x9e\x7a\xa5\x9a\x95\x8f\x98\x9e\x1e\xa5\x7e\x92\x89\xae\x83\x7a\x40\x18\x88\x7f" +"\x8a\x81\x84\x1a\x75\x9e\x7a\xa4\x9b\x9c\x93\x98\x99\x1e\x95\x95\x8f\x93\x91\xa6\x9c\xd8\x18\xf7\x10\xa2\xdf\xdc\xee\x1a\xd0\x63" +"\xaf\x28\xa0\x1e\x4d\x97\x05\x63\x94\x76\x99\x9e\x1a\xb0\xb9\xa6\xcb\xae\xb0\x7c\x7d\x6d\x9b\x7b\xaa\x9c\x9c\x92\x99\x99\x1e\x95" +"\x95\x8e\x92\x92\xa7\x92\xaa\x18\x8e\x99\x8c\x91\x93\x1a\xa1\x78\x9c\x72\x81\x83\x89\x87\x7f\x1e\x8c\x88\x88\x8c\x8a\x1b\x76\x93" +"\x84\x8d\x82\x8d\x7d\x8d\x19\x0e\xf7\xfd\xf8\xe8\x15\x31\x38\x3c\x37\x4d\xba\x5e\xcc\xe4\xdf\xd9\xe0\xca\x5d\xb7\x49\x1f\x7d\x4c" +"\x15\xae\xa4\x73\x6b\x5d\x5f\x61\x5a\x68\x72\xa3\xad\xb7\xb8\xb5\xbb\x1f\xf7\x6b\xfb\x6a\x15\xa5\x93\x96\x95\x9d\x1a\x9a\x82\x95" +"\x7e\x85\x85\x8a\x88\x81\x1e\xfc\x17\xfb\x05\x05\x70\x83\x81\x81\x79\x1a\x7c\x94\x81\x98\x90\x94\x8d\x8d\x92\x1e\xf7\x90\xbc\x15" +"\x31\x38\x3d\x37\x4d\xba\x5e\xcc\xe4\xdf\xd9\xdf\xca\x5d\xb7\x49\x1f\x7d\x4c\x15\xae\xa4\x73\x6b\x5e\x5f\x61\x5b\x68\x72\xa3\xac" +"\xb7\xb8\xb5\xba\x1f\x0e\xf8\x2b\xf7\x5d\x15\x4a\xf7\x18\x05\x81\x9d\x84\x9f\x92\x1a\xa6\xa8\xa4\xab\x9e\x95\x85\x6f\xa5\x1e\xbb" +"\xa2\x05\xb5\x9e\x99\x9b\xa7\x1a\xa2\x77\x9e\x73\x85\x83\x89\x86\x7d\x1e\x96\x74\x77\x90\x74\x1b\x2d\x29\x33\x38\x78\x8f\x78\x97" +"\x6e\x1f\x38\x62\x59\x42\x3e\x1a\x43\xc8\x5e\xeb\xbe\xad\x93\x9d\xab\x1e\x92\x7e\x05\xca\x20\x0a\x9b\x1a\x9c\x80\x9c\x7d\x8f\x1e" +"\x8f\x82\x85\x8b\x77\x1b\x98\x9c\x95\x9b\x9d\xaf\x08\xaa\x8f\xa4\xa6\xaa\x1a\x9b\x80\x9b\x7d\x90\x1e\x8e\x83\x84\x8c\x76\x1b\x54" +"\x06\xfb\x0a\xfb\x42\x15\x82\x79\x81\x89\x74\x1b\x5d\x75\x97\xa4\xad\xa3\xa8\xb5\x9e\x1f\x0e\xf7\xf0\xf8\xee\x15\xfb\x0d\xfb\x7f" +"\x05\x83\x7d\x8a\x86\x83\x1a\x7e\x99\x80\x9b\x98\x99\x93\x9b\x98\x1e\xf7\x5f\xf7\x9a\x05\x0e\xf8\xd0\xf8\xf7\x15\x6d\x77\x7b\x48" +"\x55\x1f\xfb\x08\xfb\x23\x57\xfb\x0f\xfb\x19\x1a\x37\xa8\xfb\x04\xb0\x50\x1e\x7e\x94\x97\x84\x9d\x1b\xae\xaa\xa8\xac\x91\x8a\x90" +"\x86\x97\x1f\x6b\xd6\x7e\xc5\xcc\x1a\xf7\x16\xc1\xf7\x0c\xf7\x0e\xf7\x1e\x1e\x9b\x9e\x90\x95\x9b\x1a\xa3\x78\x9c\x71\x1e\x0e\xf7" +"\xc2\xf8\xf7\x15\x68\x6c\x6e\x6a\x85\x8c\x86\x90\x7f\x1f\xab\x41\x98\x50\x4a\x1a\xfb\x15\x54\xfb\x0d\xfb\x0d\xfb\x1e\x1e\x7b\x79" +"\x86\x7f\x7c\x1a\x73\x9e\x7a\xa5\xa9\xa0\x9b\xce\xc0\x1e\xf7\x09\xf7\x25\xbe\xf7\x0d\xf7\x19\x1a\xdf\x6e\xf7\x04\x65\xc6\x1e\x98" +"\x83\x7e\x92\x7a\x1b\x0e\xf7\xb7\xf7\xfa\x15\x4c\x4b\x05\x73\x72\x85\x81\x79\x1a\x72\x9d\x7a\xa5\xa1\x97\x92\xa5\xa5\x1e\xcb\xcc" +"\xad\x4b\x05\x70\x99\x95\x84\xa2\x1b\xab\xac\xa9\xa8\x96\x89\x90\x81\x9e\x1f\x69\xcb\xe2\xa4\x05\xb8\x97\x9f\x9f\xaa\x1a\xa2\x79" +"\x9e\x73\x81\x87\x8a\x85\x75\x1e\x36\x73\x9c\xd8\x05\x8e\x9a\x8c\x91\x93\x1a\xa1\x78\x9c\x72\x68\x74\x75\x5f\x81\x1e\x79\x3b\x3f" +"\xa4\x05\x91\x77\x88\x8c\x82\x1b\x6a\x6c\x6d\x6b\x75\x96\x80\xab\x81\x1f\x0e\xf8\x27\xf7\x6f\x15\xf7\x1e\x7b\x1d\xfb\x1c\x06\xac" +"\xf7\x2b\x05\x90\x9e\x8b\x8c\x94\x1a\xa1\x78\x9c\x72\x67\x74\x75\x5f\x82\x1e\x68\xfb\x2d\x05\xfb\x1e\x4a\x1d\xf7\x1c\x06\x6a\xfb" +"\x2b\x05\x89\x81\x89\x80\x83\x1a\x75\xa9\x1d\x8f\x94\x91\xa5\x08\x0e\xc3\x0a\x76\x1d\xf7\xc5\x7d\x15\x2c\x0a\x0e\xf9\x13\xf8\xdb" +"\x15\x9c\xa3\x8f\x94\x98\x1a\xa4\x78\x9c\x72\x71\x7c\x81\x6a\x73\x1e\xfc\x65\xfd\x1c\x05\x7c\x76\x85\x7e\x7e\x1a\x74\x9f\x79\xa3" +"\xa6\x99\x95\xad\xa3\x1e\x0e\xf8\xe9\xf7\xee\x15\x91\xa6\x8e\xa6\xa7\x1a\xf7\x0c\x4e\xd0\xfb\x00\x4f\x57\x79\x68\x60\x1e\x4d\x57" +"\x5e\x3e\x77\x33\x77\x31\x18\x85\x70\x88\x6f\x70\x1a\xfb\x0d\xc8\x47\xf7\x00\xc7\xbf\x9d\xae\xb6\x1e\xc9\xbe\xb8\xd9\x9f\xe2\x08" +"\xfb\xcd\xec\x15\xee\xa1\xc6\xca\xd0\x1b\xc0\xa9\x66\x4a\x78\x89\x77\x86\x78\x1f\x75\x23\x05\x2a\x75\x4f\x4b\x47\x1b\x56\x6d\xb0" +"\xcb\x9f\x8d\x9e\x8f\x9f\x1f\x0e\xf8\x7f\xf8\xfe\x15\xfb\x7a\x55\x05\x5b\x80\x77\x78\x68\x1a\x72\x9b\x7a\xa3\x95\x8f\x8c\x90\xa0" +"\x1e\xe0\x9f\x36\xfc\x10\x05\x2a\x26\x1d\xf7\xc1\x06\xa7\x9a\x3d\x1d\x9c\x52\x1d\x82\x20\x1d\x2b\x06\x0e\xf7\x85\xf3\x15\xa7\x9f" +"\xf7\x1e\xe8\xc1\xb3\xc3\xb9\x19\xc7\xbd\xa8\xbf\xc9\x1a\xe3\x41\xc9\x21\x4e\x4e\x77\x68\x5b\x1e\x5a\x68\x65\x57\x6b\x1a\x75\x9f" +"\x79\xa4\xa1\xa2\x97\x9d\x95\x1e\x9c\xa9\x8d\x8d\x96\x96\x08\xa3\xa7\xaf\x99\xb3\x1b\xc1\xb2\x70\x64\x64\x7b\x7a\xfb\x19\x2a\x1f" +"\x5b\x68\x50\x62\xfb\x34\x20\x84\x87\x18\x73\xfb\x00\x05\xf8\x62\x06\x9f\xe2\x05\x8f\x9d\x83\x0a\x6b\x76\x7a\x69\x80\x1e\x0e\xf7" +"\xf9\xf8\x09\x15\x68\x6b\x6f\x6b\x73\x9b\x7d\xa9\x8a\x1f\xb5\x89\x98\x89\x9d\x83\x08\xac\x7d\xa2\x70\x71\x1a\x71\x7b\x6d\x72\x79" +"\x1e\x74\x6b\x65\x82\x47\x1b\x4b\x70\x90\x9b\x76\x1f\x95\x7c\x86\x8d\x7e\x1b\x69\x6c\x6e\x69\x5f\xd7\x6e\xf7\x07\xf5\xce\x9f\xbd" +"\xc4\x1f\xb9\xb4\xab\xc8\xbb\x1a\xba\x70\xb3\x57\xa7\x1e\xdb\xb5\xb0\xbc\xcb\x1a\xe1\x47\xc2\x20\xfb\x0d\xfb\x07\x50\x4d\x74\x9e" +"\x79\xa4\x9a\x9a\x91\x94\x96\x1e\xad\xb2\xa8\x95\xc1\x1b\xc6\xae\x77\x68\x60\x57\x60\x56\x1f\x0e\xf8\xdc\xf8\xed\x15\xfb\x1e\x06" +"\xfb\xdc\xfc\x14\x78\x36\x05\xf7\xa4\x06\x85\x6e\x05\x68\x06\x6c\x80\x36\x1d\xf7\x18\x06\xa8\x9a\x29\x1d\x9c\x81\x9b\x7c\x90\x1e" +"\x85\x8d\x84\x8c\x7e\x8c\x91\xa8\x18\xb8\x8c\xa8\xa4\xae\x1a\x9d\x81\x9a\x7c\x90\x1e\x85\x8d\x85\x8c\x7d\x8c\x08\xfb\x00\x16\xfb" +"\x1d\x06\xf7\x4c\xf7\x69\x05\x0e\xf7\xe2\xf8\x86\x15\xf7\x5a\x06\xa9\x98\x28\x1d\x9c\x1a\xa9\x7a\x96\x5f\x1e\xfb\xc5\x06\x4e\xfb" +"\xa6\x05\x8a\x85\x8a\x84\x88\x1a\x73\x9e\x79\xa4\x96\x90\x8c\x92\x9a\x1e\x9f\xb8\xbc\x98\xac\x1b\xbf\xac\x6c\x5a\x6b\x80\x6b\x79" +"\x73\x1f\x66\x6e\x5f\x7b\x41\x1b\x4a\x70\x92\xa2\x73\x1f\x98\x7e\x84\x8e\x7c\x1b\x69\x6b\x6d\x6b\x59\xde\x66\xf7\x04\xf7\x03\xd3" +"\xa6\xcb\xc5\x1f\xb5\xbb\xa4\xc9\xc7\x1a\xef\x47\xcd\x23\x6d\x69\x86\x81\x68\x1e\x0e\xf7\xb2\xf7\xdb\x15\xf7\x00\xbe\xf6\xd7\xee" +"\x1b\x93\x90\x8a\x88\x94\x1f\x84\x9c\x94\x89\x94\x1b\xae\xab\xa9\xac\xad\x61\xa1\x49\xfb\x0b\xfb\x18\x40\xfb\x05\x3b\x1f\x58\x43" +"\x70\x33\x2e\x1a\xfb\x13\xc6\x4c\xf7\x0b\xdb\xcb\xa6\xc2\xbc\x1e\xb3\xb8\xa3\xc9\xc3\x1a\xe2\x47\xcd\x32\x5b\x65\x7c\x61\x53\x1e" +"\x77\xfb\x11\x15\xba\xb0\xc3\xab\xb5\x1b\xb5\xaa\x6c\x61\x74\x81\x6e\x7a\x75\x1f\x6d\x75\x6c\x7c\x61\x1b\x6e\x72\x94\x99\x80\x1f" +"\x7f\x99\x81\xad\xa8\x1a\x8d\x8b\x90\x8c\x91\x1e\x0e\xf8\x8e\xf8\x86\x15\xfb\x83\xfc\x33\x05\x80\x77\x86\x7f\x7f\x1a\x75\xa0\x79" +"\xa3\xa7\x9c\x97\xb0\xa0\x1e\xf7\x99\xf8\x59\xa1\xef\x05\xfc\x4d\x06\x77\x34\x05\x88\x7d\x8a\x85\x83\x1a\x75\x9e\x7a\xa5\xaa\xa0" +"\x9c\xad\x96\x1e\x0e\xf8\x83\xf7\xc8\x15\xd9\xb7\xb2\xc1\xcc\x1a\xe1\x42\xc7\x23\x4a\x48\x73\x61\x5b\x1e\x5f\x65\x6d\x54\x5f\x1a" +"\x62\x9e\x6a\xb3\x6c\x1e\x38\x5e\x5c\x4a\x43\x1a\x34\xd2\x55\xf7\x06\xdc\xdb\xa8\xba\xb8\x1e\xae\xaf\xa2\xbf\xb5\x1a\xb9\x75\xb3" +"\x61\xa9\x1e\x3a\xf7\x62\x15\xc0\xad\x73\x65\x54\x55\x61\x44\x56\x69\xa3\xb2\xc1\xc1\xb5\xd2\x1f\x51\xfb\x9b\x15\xc2\xb3\x6e\x63" +"\x59\x4f\x60\x44\x4d\x67\xa4\xb4\xbe\xca\xb8\xd2\x1f\x0e\xf8\x80\xf7\xa8\x15\xfb\x00\x58\x21\x3f\x26\x1b\x83\x87\x8c\x8e\x82\x1f" +"\x91\x7b\x82\x8d\x81\x1b\x68\x6b\x6d\x6b\x69\xb6\x75\xcc\xf7\x0b\xf7\x17\xd5\xf7\x06\xdc\x1f\xbe\xd3\xa6\xe3\xe8\x1a\xf7\x13\x50" +"\xca\xfb\x0a\x3a\x4b\x70\x54\x5a\x1e\x63\x5d\x73\x4e\x52\x1a\x34\xcf\x49\xe4\xbb\xb1\x9a\xb6\xc3\x1e\x9f\xf7\x11\x15\x5c\x66\x53" +"\x6b\x61\x1b\x61\x6c\xaa\xb4\xa3\x95\xa8\x9c\xa1\x1f\xaa\xa2\xa9\x99\xb5\x1b\xa9\xa3\x83\x7c\x97\x1f\x97\x7c\x94\x6a\x6d\x1a\x89" +"\x8b\x86\x8a\x86\x1e\x0e\xf7\xc5\x7d\x15\x2c\x0a\xe0\xf7\xc4\x15\xb8\xb4\xb2\xb5\xaa\x73\xa1\x69\x1f\x7a\x06\x5f\x61\x65\x62\x6b" +"\xa3\x74\xad\x1f\x0e\xf7\x1c\x0a\x7e\x89\x86\x83\x1a\x7e\x99\x7f\x9b\x98\xf7\x2c\x0a\x7a\xf7\xb5\x15\x55\x61\x68\x5d\x69\xa3\x77" +"\xb5\xc1\xb4\xae\xb8\xae\x73\x9f\x62\x1f\x0e\xf7\xaa\xf7\xa3\x15\xf7\x8c\xf7\x0a\x05\xa5\x98\x98\x9a\x9c\x1a\x93\x89\x93\x87\x93" +"\x1e\x8a\x8d\x05\x9c\x83\x74\x96\x72\x1b\x7c\x7d\x88\x85\x7e\x1f\xfc\x51\xfb\x63\xf8\x51\xfb\x68\x05\x85\x98\x99\x88\x9a\x1b\xa4" +"\xa2\x96\x9c\x93\x1f\x8c\x8d\x05\x8f\x93\x8d\x93\x92\x1a\x9e\x80\x97\x6e\x9a\x1e\x0e\xf7\x5a\xf8\x2f\x15\x6b\x7c\x0a\x32\x0a\xfc" +"\x3a\xfb\x44\x15\x38\x0a\x7c\x7f\x81\x32\x0a\x0e\xf7\xcd\xf7\xa3\x15\xfb\x8b\xfb\x0d\x05\x6e\x7c\x80\x7f\x78\x1a\x84\x8d\x83\x8f" +"\x83\x1e\x8c\x89\x05\x7a\x93\xa2\x80\xa4\x1b\x9a\x99\x8e\x91\x98\x1f\xf8\x51\xf7\x68\xfc\x51\xf7\x63\x05\x91\x7e\x7d\x8e\x7c\x1b" +"\x72\x74\x80\x7a\x83\x1f\x8a\x89\x05\x87\x83\x89\x83\x83\x1a\x7a\x98\x7c\xa5\x7e\x1e\x0e\xf7\x59\xf8\x50\x15\x88\x7d\x8a\x83\x84" +"\xf7\x1c\x1d\x95\x8f\x92\x91\xa7\x8e\x96\x18\x9b\xae\xad\x92\xb1\x1b\xc3\xaa\x74\x62\x5d\x60\x70\xfb\x27\x5a\x1f\x7f\x53\x05\x86" +"\x78\x8b\x8a\x82\x1a\x75\x9e\x7a\xa3\xab\xa0\x9c\xae\x98\x1e\xd1\xa6\xb4\xa1\xad\xa8\x08\xb2\xab\xa3\xbf\xc0\x1a\xe6\x48\xc2\xfb" +"\x01\x4f\x54\x7e\x69\x39\x1e\x80\x86\x82\x88\x86\x88\x08\xe9\xfc\xab\x15\xb7\xb4\xb1\xb5\xaa\x73\xa2\x6a\x1f\x79\xf7\x24\x0a\x0e" +"\xf8\x7c\xf8\x17\x15\xfb\x13\x81\x24\x34\x28\x1a\x42\xc3\x5a\xdd\x1e\xd4\x06\xa5\x95\x8d\x95\x97\x1f\x99\x96\x92\x99\x99\x1a\x99" +"\x86\x93\x80\x91\x1e\xc6\xf7\x9c\x05\x8e\x9a\x8d\x99\x99\x1a\xe4\x50\xc3\x2d\xfb\x19\xfb\x0e\xfb\x0c\xfb\x3b\x65\x1e\x67\xfb\x35" +"\x05\x84\x6c\x88\x6c\x6d\x1a\x53\x97\x5c\xa2\x66\x1e\x5f\xa8\xb7\x76\xcd\x1b\xf7\x00\xe9\xb7\xbd\xa0\x7c\x99\x75\x7f\x84\x88\x7d" +"\x7a\x1f\x79\x74\x63\x80\x5e\x1b\x6c\x78\x91\x9a\x7b\x1f\x72\xa1\x7c\xb8\xc0\x1a\xa1\x8e\xa6\x92\xa8\x1e\xac\xf7\x29\x05\xf7\x0d" +"\xa6\xdd\xe5\xde\x1b\xbc\xa9\x6e\x5b\x82\x8a\x83\x89\x82\x1f\x52\xfb\x97\x15\x8a\x7f\x86\x8b\x85\x1b\x63\x70\xa0\xa9\xba\xc1\xb5" +"\xcf\x92\x1f\x0e\x22\x1d\x0e\xf7\x03\xf2\x15\x80\x06\x6c\x80\x36\x1d\xf7\xbb\x06\xd4\xc7\x9f\xb4\xb7\x1f\xb0\xac\xa3\xbc\xb5\x1a" +"\xb9\x72\xb0\x59\xa6\x1e\xc5\xaf\xa8\xba\xc1\x1a\xac\x7d\xac\x72\xa2\x1e\xa9\x6c\x62\x98\x51\x1b\xfb\x90\xf7\x39\x1d\xb6\x1e\x95" +"\x06\xdb\xfb\x13\x15\xa7\xf7\x13\x05\xf7\x16\x06\xc1\xaa\x7a\x6e\x5d\x51\x68\x3e\x1f\xfb\x33\xfb\x7b\x15\xa7\xf7\x14\x05\xf7\x18" +"\x06\xd5\xb9\x71\x60\x65\x65\x76\x43\x1f\x0e\x56\x0a\x0e\xc6\x1d\x0e\x24\x1d\xad\xf7\x28\x05\x8e\x9b\x8c\x91\x93\x1a\xa1\x21\x1d" +"\x0e\xf7\x8d\xf7\x7c\x15\xd8\x06\x8a\x89\x05\x89\x81\x89\x7f\x83\x1a\x75\x9e\x7a\xa4\x9b\xf7\x1b\x0a\xa3\xf6\x18\x8e\x96\x8c\x95" +"\x93\x1a\xa2\x79\x9c\x71\x68\x74\x74\x5f\x82\x1e\x8a\x88\x05\x3f\x2b\x1d\xf7\x8c\x06\x81\x5f\xf7\x08\x0a\x92\x99\x99\x1e\x95\x95" +"\x8f\x94\x91\xa6\xac\xf7\x28\x18\xfc\x6f\x27\x1d\x95\x06\x3b\xfb\xfa\xdf\x1d\x6e\x1d\x0e\xf8\x5b\xf7\x7a\x44\x1d\x7a\x1a\x72\x98" +"\x7e\xa7\x87\x1e\x3b\xfb\xfa\x05\x89\xf7\x1e\x0a\x7b\x7f\x66\x0a\x9c\x81\x9c\x41\x1d\x76\x1b\x82\x2b\x1d\x0e\x28\x0a\x0e\xf8\xe7" +"\x94\x1d\x9a\x97\x95\x9d\x9b\x1a\x9c\x80\x9c\x7d\x8f\x1e\x8e\x82\x84\x8c\x77\x62\x0a\x82\x60\x86\x83\x72\x78\x19\x76\x70\x65\x7f" +"\x67\x1b\x6b\x6e\x92\x9f\x5f\xe4\x1d\x8b\x0a\x0e\x2f\x0a\x0e\xf7\x75\xf7\x52\x1d\x53\xfb\x90\x05\x6b\x06\x6b\x81\x37\x0a\x79\x7a" +"\x21\x0a\xf7\x15\x20\x0a\x9c\x1a\x9c\x81\x9a\x7c\x91\x1e\x86\x8d\x84\x8c\x7e\x8c\xdb\xf7\xf9\x18\xb2\x90\xa4\xa3\xab\x41\x0a\xfb" +"\x03\x06\xfb\x57\xfb\xaa\x41\xf7\xaa\x05\xfb\x03\x25\x1d\x72\x98\x7e\xa7\x88\x1e\x3c\xfb\xfa\x05\x5f\x8a\x6d\x72\x67\x1a\x6d\x9d" +"\x7f\xb6\x1e\xf7\x15\xb3\x0a\x8c\x77\x1b\x6d\x06\x0e\x3c\x0a\x0e\x2e\x1d\x0e\xf7\x84\xf7\x53\x15\xea\x06\xf5\xcb\xa3\xc9\xc3\x9b" +"\x0a\xf7\xa4\x85\x15\xd9\x8c\xb2\x93\xbb\xa3\x08\xf7\x18\xcf\xdf\xf7\x12\xf7\x16\x1a\xf7\x17\x2b\xeb\xfb\x16\xfb\x4a\xfb\x42\xfb" +"\x45\xfb\x4d\x4e\x9f\x53\xae\x66\x1e\x97\x7d\x9f\x7c\xae\x75\x45\x55\x18\x74\x79\x83\x7e\x76\x1a\x75\x9e\x78\xa1\x93\x96\x8d\x8e" +"\x97\x1e\x95\xb9\xca\x95\xa2\x1b\x9f\x96\x88\x7e\xac\x1f\x83\x9e\x99\x88\x9f\x1b\xb1\xba\x9b\xa5\xb4\x1f\x9e\x97\x96\x9e\x9e\x1a" +"\xa4\x79\x9c\x70\x7e\x86\x89\x7c\x6f\x1e\x80\x76\x82\x88\x7d\x1b\x7f\x85\x8c\x91\x76\x1f\x94\x6c\x73\x8e\x6f\x1b\x7c\x80\x8a\x89" +"\x78\x1f\xf7\x1e\xf8\x82\x15\xda\xc5\x4e\x36\xfb\x0c\xfb\x03\xfb\x0c\xfb\x03\x3a\x51\xc7\xe1\xf7\x0e\xf7\x02\xf7\x0a\xf7\x06\x1f" +"\x0e\x3b\x0a\x0e\x6d\x1d\x0e\x57\x0a\x0e\x23\x0a\x0e\xf7\xe3\xf7\x2b\x15\x46\xf7\xca\x05\x99\x06\xab\x96\x8d\x97\x9a\x1f\x9a\x98" +"\x94\x9c\x9c\x1a\xa9\x7a\x97\x60\x1e\xfb\x19\x8a\x1d\x9c\x7f\xb5\x1e\xef\xfc\x61\x05\xf3\x06\xf7\xc7\xf8\x61\x05\xa4\x95\x8c\x91" +"\x96\x1f\xa0\x96\x9a\xa1\xa0\x1a\xa9\x7a\x97\x5f\x1e\xfb\x17\x37\x1d\x79\x95\x7c\x9a\x85\x1e\x88\x94\x91\x8b\x9f\x1b\x9c\x06\x0e" +"\xf7\xf9\x6a\x0a\xaa\x1a\x9c\xd4\x1d\x80\x9b\x7d\x74\x0a\xfb\x17\x42\x1d\x7b\x1f\x7b\x7f\x82\x78\x79\x1a\x75\x96\x7f\xa5\x87\x1e" +"\x62\xfc\x62\x05\xf7\x0a\x06\x0e\xf8\x44\xf7\x1e\x1d\x82\x85\xb7\x1d\xf8\x2a\xf7\x7f\x29\x0a\x77\x1b\x2e\x34\x1d\x0e\xf7\x7c\x71" +"\x0a\x9d\x9d\x93\x98\x98\x1e\x95\x95\x8f\x94\x91\xa5\x99\xcb\x18\x43\x0a\x0e\xf8\x65\xf8\x8b\x15\xc2\x06\xa9\x98\x50\x1d\x9c\x1a" +"\x9c\x81\x9a\x7c\x90\x1e\x8e\x82\x85\x8c\x77\x1b\xfb\x36\x06\xfb\x3a\xfd\x7f\x05\xf7\x38\x06\xa9\x97\x2a\x0a\x9d\x9b\x1a\x9d\x80" +"\x9b\x7d\x8f\x1e\x8e\x82\x20\x1d\x55\x06\x0e\xf7\xda\xf9\x07\x15\xac\x82\x80\x96\x72\x1b\x68\x6c\x6e\x6c\x84\x8c\x86\x8f\x7d\x1f" +"\xf7\x44\xfd\x1c\x05\x69\x94\x96\x80\xa6\x1b\xac\xab\xa8\xaa\x92\x89\x94\x88\x96\x1f\x0e\xf7\x81\x65\x15\x54\x06\x6d\x7e\x88\x7f" +"\x7d\xad\x1d\x7a\x95\x7c\x9a\x86\x1e\x88\x94\x91\x8a\x9f\x1b\xf7\x36\x06\xf7\x3a\xf9\x7f\x05\xfb\x38\x06\x6d\x7f\x37\x0a\x79\x7b" +"\x1a\x79\x95\x7c\x9a\x86\x1e\x88\x94\x92\x8a\x9f\x1b\xc1\x06\x0e\xf7\xbf\xf8\x62\x15\xf7\x05\xfb\x11\x05\x72\xa2\x95\x85\xa1\x1b" +"\xab\xa5\xa4\xa9\x9c\x86\x94\x78\xa1\x1f\xfb\x5e\xf7\x76\xfb\x5c\xfb\x76\x05\x78\x75\x86\x81\x7c\x1a\x6c\xa5\x72\xab\xa1\x95\x91" +"\xa5\xa2\x1e\x0e\xa7\x6a\x15\x71\x82\x8a\x84\x80\x1f\x7a\x82\x80\x78\x4c\x1d\xf8\xb4\x06\xa2\x99\x8d\x91\x94\x47\x1d\x0e\xf8\x98" +"\xf0\x0a\xa2\xa0\x9f\xa1\x89\x1f\x8c\x8b\x8e\x8a\x8f\x1e\x0e\x2d\x1d\x0e\xf7\xcc\xf8\xef\x15\xfb\x0d\x06\x6c\x80\x88\x7f\x7c\xf7" +"\x15\x1d\x88\x93\x94\x8a\x9e\x1b\x96\x06\x32\xfc\x21\x05\x7f\x06\x6b\x80\x89\x7f\xf7\x0e\x0a\xf7\x0c\x06\x91\xaa\x05\x6b\xb5\xb1" +"\x7f\xc4\x1b\xe4\xd4\xa8\xc6\xc8\x1f\xbf\xbd\xaa\xd1\xcc\x1a\xc2\x73\xbe\x63\xab\x1e\xa5\x6a\x59\x99\x4e\x1b\x53\x59\x7d\x6e\x5b" +"\x1f\xf7\x17\x4f\x15\xd7\xb7\x67\x4d\x6e\x7e\x6c\x74\x70\x1f\x63\x68\x5d\x77\x53\x1b\x3e\x5f\xaf\xc9\xa8\x98\xab\xa2\xa5\x1f\xb3" +"\xae\xb8\x9f\xc5\x1b\x0e\x3e\x0a\x0e\xba\x1d\x0e\x33\x1d\x0e\xf8\x09\xf7\xd6\x15\xf7\x28\x81\x1d\x85\x8c\x76\x1b\xfb\x25\x06\x91" +"\xa9\x05\xa9\x92\xa8\x99\xc3\x1b\xab\xb2\x87\x85\xb1\x1f\x89\x97\x95\x8a\x92\x1b\xaa\xaa\xaa\xaa\x9f\x7f\x98\x73\x92\x1f\x93\x6c" +"\x4e\x92\x61\x1b\xfb\x0e\x33\x53\x31\x77\x1f\x84\x6b\x05\x60\x06\xe9\x0a\xb4\x39\x0a\x54\x8a\x1d\x9d\x7f\xb5\x1e\xf7\xbe\x7a\x1d" +"\xfb\x1a\x06\x0e\x70\x1d\x0e\xf7\xe1\xf8\xef\x15\xfb\x0d\x06\x6c\x80\x2a\x1d\x7b\xf4\x0a\x32\xfc\x21\x05\xf7\x05\x0a\x6d\x9d\x7f" +"\xb5\x1e\xf7\x04\x06\xa9\x99\x29\x1d\x9c\x80\x9c\x7d\x32\x1d\x8b\x77\x4e\x0a\xcd\xa3\x96\xbb\x1b\xb6\xbe\x0a\xa9\x98\x8f\x96\x99" +"\x1f\x9a\x97\x95\x9d\x9c\x1a\x9c\xf6\x1d\x0e\xf8\x54\x35\x1d\xec\x5d\x1d\x0e\xf8\x5b\xf7\xd6\x84\x0a\x54\x8c\x19\xfb\x02\x6d\x0a" +"\xb7\x1e\xf7\x05\x06\xf7\x04\xf0\xd9\xf1\xa1\x1f\xed\xf8\x4d\x05\xfb\xc7\x06\x6b\x82\x89\x7e\x7b\x86\x0a\x9d\x7f\xb6\x1e\xf7\xca" +"\xf7\xac\x15\xfb\x14\xf7\x75\x1d\x8e\x0a\x0e\x43\x1d\x0e\xf7\x83\xf8\x3d\x15\x29\xf7\x27\x1d\x90\x89\x91\x8a\x98\x8a\x5b\xfb\x6f" +"\x18\x61\x6c\x71\x69\x6c\x9d\x7f\xb6\x1f\xe3\xf7\x11\x1d\xb5\xf7\x52\x05\xaa\xae\xa0\x95\xa6\x1b\x9b\x93\x85\x81\x87\x8a\x85\x89" +"\x85\x1f\x48\xfb\xc2\x05\xee\xd3\x0a\x7f\x1b\xb5\xf7\x52\x05\xad\xb4\x9a\x92\xa5\x1b\x9b\x92\x86\x81\x8c\x1f\x85\x8b\x86\x89\x85" +"\x1e\x48\xfb\xc2\x05\xee\xf7\x11\x1d\xb9\xf7\x61\x05\x8d\x95\x8c\x92\x98\x1a\xc5\x5e\xb4\x49\x63\x67\x7d\x6c\x66\x1e\xaa\x74\x6d" +"\x99\x65\x1b\x6c\x78\x84\x74\x65\x1f\x0e\x3a\x0a\x0e\x24\x0a\x0e\xf7\x52\x91\x0a\xf8\x29\x2e\x15\x54\x06\x6c\x7f\x88\x7f\x7d\xad" +"\x1d\x7b\x96\x7b\x99\x86\x1e\x88\x93\x96\x8a\x9c\x1b\xf7\x42\x06\xa9\x98\x8e\x97\x99\xa0\x1d\x8e\x82\x85\x8c\x76\x1b\x80\x06\xe8" +"\xf8\x33\x05\x97\x06\xab\x95\x96\x1d\x82\x85\x8c\x77\x1b\xfb\x0c\x06\x83\x64\x05\xb0\x64\x64\x99\x4e\x1b\xfb\x38\xfb\x1e\xfb\x0e" +"\xfb\x24\x2c\xe0\x48\xf7\x0d\xc4\xbd\x9a\xad\xc2\x1f\x39\xf7\xa8\x15\xd6\xb9\x69\x53\x65\x70\x61\x63\x72\x1f\x79\x6d\x69\x82\x60" +"\x1b\x63\x6b\x94\x9d\x77\x1f\x7a\x9a\x7f\xa5\xa0\x1a\xb2\xa6\xb5\xb4\xa4\x1e\x9e\xa9\xac\x93\xb6\x1b\x0e\x3f\x0a\x0e\x56\x1d\x0e" +"\x94\x0a\x0e\x57\x1d\x0e\xf7\xdd\xf7\x15\x15\x50\xf7\x55\x05\xa4\x94\x8c\x91\x96\x1f\xa1\x97\x99\xa0\xa0\x1a\x9c\x81\x51\x0a\x82" +"\x8c\x79\x1b\xfb\x18\xf7\x1d\x1d\x92\x8b\x9f\x1b\x95\x06\xeb\xfb\xd6\x05\xf7\x00\x06\xf7\x83\xf7\xd6\x05\x99\x06\xaa\xf7\x2e\x1d" +"\x83\x82\x8c\x78\x1b\xfb\x1a\xf7\x1d\x1d\x91\x8b\xa0\x1b\x8d\x06\x0e\x3d\x0a\x0e\xf8\x40\xec\x0a\x9c\x9c\x1a\x9c\x81\x9b\x7c\x8d" +"\x0a\x53\x0a\x0e\xf7\x0b\x1d\x9c\x9c\x92\x99\x98\x1e\x96\x96\x8e\x92\x92\xa7\x8c\x90\x18\xf7\x02\x1d\x0e\xf8\x5b\xf8\x66\x15\xa4" +"\x92\x93\x92\xa4\x1b\xaf\x8d\xa8\xa7\xab\x1a\xa5\x79\x9b\x6c\x42\x41\x51\x45\x7c\x1e\x68\xfb\x30\x85\x72\x84\x85\x73\x89\x19\x64" +"\x87\x72\x72\x68\x1a\x72\x99\x7e\xa8\x88\x1e\x9c\x89\x91\x88\x81\x1a\x88\x8a\x85\x89\x84\x1e\x67\xfb\x39\x05\x89\x82\x8a\x83\x82" +"\x1a\x50\xb9\x5e\xc9\xb4\xaa\xa6\xaf\xa3\x7a\x9b\x70\x8c\x1e\x76\x8c\x86\x8e\x98\x1a\x8e\x8c\x91\x8c\x90\x1e\xac\xf7\x29\x05\x90" +"\xa1\x8e\x9e\x96\x1a\x98\x87\x98\x80\x9b\x1e\xa6\xa3\x95\x9d\x95\xb5\x08\x0e\xf7\xfa\xf9\xcd\x15\xfb\x08\xfe\xc7\xf7\x08\x06\x0e" +"\xf7\x89\x82\x15\x71\x85\x82\x84\x72\x1b\x67\x89\x6e\x6f\x6b\x1a\x71\x9d\x7b\xaa\xd4\xd5\xc5\xd1\x9a\x1e\xae\xf7\x31\x90\xa3\x93" +"\x91\xa3\x8e\x19\xb2\x8f\xa4\xa4\xad\x1a\xa4\x7d\x98\x6e\x8e\x1e\x7a\x8d\x85\x8f\x94\x1a\x8e\x8c\x92\x8d\x91\x1e\xaf\xf7\x3a\x05" +"\x8d\x93\x8c\x93\x94\x1a\xc7\x5d\xb7\x4d\x63\x6b\x70\x68\x73\x9c\x7b\xa6\x89\x1e\xa0\x8a\x90\x88\x7e\x1a\x88\x8a\x86\x8a\x86\x1e" +"\x6a\xfb\x2a\x05\x86\x75\x88\x78\x80\x1a\x7e\x8f\x7f\x96\x7a\x1e\x70\x74\x81\x78\x81\x61\x08\x0e\xf8\x7c\xf8\x0b\x15\x75\x7e\x83" +"\x6f\x75\x1f\x6e\x75\x7f\x80\xf7\x54\x1d\xc9\x44\x70\x99\x5e\x1b\x5f\x69\x79\x5f\x63\x1f\x6d\x6a\x80\x78\xd1\x0a\x56\xc8\xb2\x77" +"\xb5\x1b\xb5\xab\x9d\xb6\xb1\x1f\xae\xb3\x93\x98\xa0\x1a\xaa\x71\xa4\x6b\x1e\x0e\xf7\x56\x24\x15\x81\x6e\x89\x81\x7e\x1a\x67\xa8" +"\x71\xb4\xa7\xa8\x98\xa0\x9f\x1e\x9d\x9f\x91\x9a\x90\xb6\xad\xf7\xaf\x18\x8c\x8e\x8b\x8e\x8d\x1a\xa6\x7b\x9b\x6f\x6d\x73\x78\x6d" +"\x81\x1e\xec\xf7\x7f\x15\x5e\x62\x64\x62\x6b\xa3\x75\xac\x1f\x9d\x06\xb7\xb5\xb1\xb4\xab\x73\xa2\x69\x1f\x0e\xf8\x0b\xea\x15\xf1" +"\x9c\xcf\xb4\xb9\x1a\xa3\x78\x9e\x72\x7d\x81\x88\x82\x7c\x1e\x73\x64\x68\x81\x66\x1b\x4f\x62\xad\xbc\xd1\xd5\xc6\xe1\xb7\x9d\x80" +"\x71\x8c\x1f\x8c\x6f\x8b\x88\x92\x83\x08\x83\x92\x9a\x85\x98\x1b\x9c\x9d\x93\x98\x98\x1f\x95\x94\x8f\x95\x91\xa5\x94\xb3\x18\x8e" +"\x9b\x8c\x90\x92\x1a\xa2\x78\x9c\x71\x85\x86\x8a\x88\x82\x1e\x7a\x96\x77\x92\x70\x8f\x98\xc7\x18\x90\x9e\x83\x0a\x67\x74\x75\x5e" +"\x81\x1e\x7b\x44\x05\xfb\x0f\x6f\x2d\x22\xfb\x03\x1a\x3c\xba\x51\xdc\x76\x1e\x7b\x42\x05\x86\x78\x8b\x8a\x82\xf7\x1c\x1d\x95\x90" +"\x94\x90\xa5\x08\x0e\xf8\x02\xf7\x7c\x15\xa9\x97\xd7\x0a\x4a\x06\x88\xba\x8b\x8b\x99\x1a\xba\xad\xac\xbe\xa4\x9c\x84\x7b\x97\x1e" +"\x71\x9e\x8f\x88\xa0\x1b\xac\xab\xaa\xaa\xbc\x47\xb7\x41\xfb\x0e\x2c\x30\xfb\x0a\x7f\x8c\x84\x8d\x7b\x1f\x64\x06\x6b\x80\x2a\x1d" +"\x7b\x1a\x79\x95\x7c\x9a\x86\x1e\x88\x94\x94\x8a\x9d\x1b\xcb\x06\x7c\x3d\x6a\x5c\x62\x88\x08\x60\x83\x75\x76\x6b\x1a\x6c\x9d\x7f" +"\xb6\x1e\xf7\xd5\x06\xb9\xa8\x95\xa3\xa4\x1f\x9e\x9d\x99\xaa\xa4\x1a\xa3\x78\x9b\x71\x6e\x75\x7c\x6e\x80\x1e\xfb\x55\x06\xa5\xb5" +"\x97\xaa\x96\xc2\x08\x0e\xb0\x0a\xf8\x0c\xf7\xeb\x15\x4f\xf7\x0a\x05\xa7\x93\x9f\xa3\xa5\x1a\x9c\x81\x9b\x7c\x90\x1e\x8f\x82\x87" +"\x8b\x74\x1b\x2f\x25\x1d\x76\x97\x7c\xa0\x87\x1e\x89\x91\x8e\x8b\x9b\x1b\xe6\xfb\x4a\x05\x4a\x06\x72\x7b\x7d\x75\x7a\x94\x83\x9f" +"\x1f\xe7\x06\x86\x72\x05\x2d\x06\x72\x7a\x7d\x75\x79\x93\x84\xa1\x1f\xe7\x06\x85\x71\x05\x60\x06\x6b\x81\x36\x1d\xf7\x55\x20\x0a" +"\x9c\x1a\x9c\x81\x9a\x7c\x88\x0a\x75\x1b\x62\x06\x90\xa5\x05\xe9\x06\xa4\x9c\x9a\xa1\x9b\x82\x93\x76\x1f\x2f\x06\x90\xa4\x05\xe9" +"\x06\xa4\x9c\x9a\xa0\x9d\x82\x92\x76\x1f\x4c\x06\xf7\x42\xf7\x4a\x05\xa7\x97\x50\x1d\x9b\x1a\x9c\x81\x9b\x7c\x88\x0a\x75\x1b\x30" +"\x06\x6b\x81\x88\x7f\x7b\x1f\x7c\x7f\x82\x79\x7b\x1a\x78\x95\x7d\x9d\x85\x1e\x0e\xf8\x51\xf8\x1d\x15\x95\xb8\x05\xb4\x94\xb2\xad" +"\xb2\x1b\x9c\x9a\x88\x86\x99\x1f\x86\x96\x90\x8a\x93\x1b\xac\xaa\xaa\xad\xab\x61\x9f\x47\x27\x2a\x3e\x2a\x76\x1f\x80\x5a\x05\x55" +"\x06\x6a\x82\x99\x1d\xc0\x06\x59\xfb\x72\x05\x5a\x80\x66\x6a\x5e\x1b\x7a\x7f\x8d\x91\x7b\x1f\x8f\x7e\x88\x8c\x85\x1b\x6a\x6b\x6d" +"\x6b\x6a\xb6\x76\xcf\xf2\xeb\xda\xf3\xa2\x1f\xbd\xf7\x74\x05\xc1\x06\xaa\x97\x35\x0a\x9c\x1a\x9c\x80\x9a\x7d\x88\x0a\x74\x1b\x0e" +"\xf8\xa7\xf8\x6a\x15\x84\x6d\x05\x8a\x84\x89\x7f\x86\x1a\x78\x9c\x7c\xa1\xac\x9d\x9d\xb1\x94\x1e\xa7\xf7\x12\x05\xfb\x7a\x06\x4d" +"\x5c\x77\x60\x61\x1f\x6f\x6d\x76\x61\x6e\x1a\x81\x07\x3e\x77\x57\x54\x4c\x1a\x5f\xa9\x67\xd8\x5b\x1e\xe8\x52\x05\xc0\x6a\xa9\x6d" +"\x77\x1a\x70\x66\x70\x65\x1e\xfb\x20\x06\x92\xab\x05\x8f\x9b\x8b\x8c\x91\x1a\x9e\x7a\x9a\x74\x6b\x77\x79\x66\x83\x1e\x6f\xfb\x12" +"\x05\xf7\x80\x06\xed\x85\xed\xe2\x87\xe6\x08\xd8\x9c\xc0\xc4\xce\x1a\xbc\x72\xa8\x2e\xc3\x1e\x3a\xbc\x05\x54\xac\x6d\xa9\x9f\x1a" +"\xa6\xb1\xa5\xb3\x1e\xa2\xfb\x9e\x15\xba\x6e\xa7\x6d\x76\x1a\x75\x76\x81\x61\x1e\x7f\x98\x79\x98\x60\xa8\x31\xc3\x18\x5c\xa9\x77" +"\xa0\xa1\x1a\xa1\xa2\x98\xb2\x1e\xab\x6f\x92\x85\xa8\x79\x08\x0e\xf7\x64\xf8\x0a\x15\x6b\x62\x7a\x5e\x63\x1a\x7f\x8e\x7b\x91\x6f" +"\x1e\x66\x6d\x05\x6c\x72\x83\x7f\x76\x1a\x72\x9e\x79\xa5\x9e\x93\x8f\xa1\xa7\x1e\xb1\xa8\x05\x7a\xab\xa2\x85\xae\x1b\xae\xa5\x91" +"\x9c\xb2\x1f\xa4\x6f\x05\x75\x9d\x92\x86\x9d\x1b\xad\xae\xaa\xa9\x98\x87\x93\x7c\x9d\x1f\x74\xa9\x05\xac\xb5\x9c\xb7\xb4\x1a\x96" +"\x88\x9b\x85\xa6\x1e\xae\xa8\x05\xaa\xa3\x93\x97\xa0\x1a\xa4\x78\x9d\x71\x78\x83\x87\x76\x6f\x1e\x68\x70\x05\x9e\x6a\x75\x91\x65" +"\x1b\x68\x72\x85\x78\x63\x1f\x73\xa7\x05\xa1\x79\x83\x8f\x79\x1b\x6b\x68\x6d\x6e\x82\x95\x74\x92\x82\x1f\xf7\x5b\x6b\x15\xb5\xa9" +"\x6f\x64\x54\x54\x56\x52\x60\x6d\xa7\xb4\xc2\xc1\xbe\xc6\x1f\x0e\xf7\xfc\xf8\xdb\x15\x77\xfb\x8a\x05\x8a\x85\x8b\x86\x89\x1a\x7c" +"\x97\x80\x9b\xa1\x97\x95\xa6\x94\x1e\xe3\xf7\x8c\x05\x0e\xf8\xca\xf0\x0a\xa3\x9f\x9f\xa2\x89\x1f\x8d\x8b\x8d\x8a\x8e\x1e\xfb\x78" +"\xf7\x60\xf7\x70\x1d\x93\x84\x9a\x1b\xa5\x9e\xa2\xa6\x88\x1f\x0e\xf7\x6f\x1d\x9c\x98\x92\xea\x1d\xf7\x03\xf7\x17\x15\xf7\x45\xf7" +"\x17\x05\x9d\x98\x91\xea\x1d\x0e\xf7\x6f\x1d\x9d\x99\x91\x93\x98\x1a\x9b\x7e\x96\x79\x82\x83\x88\x84\x81\x1e\x85\x87\xfb\xb8\xfb" +"\x46\xf7\x69\xfb\x47\x05\x7e\x99\x8e\x8a\x96\x1b\xa1\xa1\x9d\x9e\x92\x87\x94\x83\x93\x1f\x0e\xf8\x6a\xf7\x68\x15\xfb\x45\xfb\x17" +"\x05\x7a\xef\x1d\x8f\x82\x93\x83\x1f\x0e\xf7\xa2\xf7\xd6\x15\xa9\x06\xa9\x97\x2a\x0a\x9d\x9b\x41\x0a\x6f\x06\x93\xac\x05\xa1\x90" +"\xc2\x0a\x68\xf3\x0a\x7f\xb6\x1e\xac\x2e\x0a\x64\x25\x0a\xf7\x43\x63\x0a\x70\x06\xf8\x1d\xf7\xd6\x15\xfb\x10\x42\x1d\x30\x1d\x87" +"\x94\x91\x8b\x9f\x1b\x9a\x2e\x0a\x68\x25\x0a\xf7\x43\x06\xa7\x99\x28\x1d\x9c\x1a\x9c\x81\x9a\x7d\x74\x0a\x6c\x06\xe9\xf8\x88\x15" +"\xfb\x12\x06\x73\xfb\x00\x05\xf7\x12\x06\x0e\xf7\x9e\xf7\xd5\x15\xa9\x06\xaa\x96\x8e\x97\x9a\x1f\x9b\x98\x94\x9c\x9c\x41\x0a\x6f" +"\x06\x92\xab\x05\xa5\x91\x9d\x9b\xa2\x1b\x95\x93\x89\x85\xa0\x1f\x87\x97\x93\x89\x93\x1b\x9d\x9a\x93\x9b\x99\x1f\x85\x93\x95\x87" +"\x99\x1b\xa9\x06\x33\xfc\x20\x05\x68\x06\x6a\x81\x3b\x1d\x6e\x9d\x7e\xb6\x1e\xf7\x44\x63\x0a\x6b\x06\xf7\x03\xf8\x87\x05\xfb\x1b" +"\x06\x72\x7b\x84\x79\x7c\x1f\x9b\x71\x68\x94\x65\x1b\x3c\x40\x4c\x3a\x79\x1f\x84\x6a\x05\x69\xf3\x0a\x7e\xb6\x1e\xab\x06\x5b\xfb" +"\x6e\x05\x63\x06\x6b\x81\x88\x7f\xe2\x0a\xb5\x1e\xf7\x44\x06\xa8\x99\x8f\x96\x99\xf7\x4c\x1d\x83\x82\x8c\x78\x1b\x70\x06\x0e\x76" +"\x1d\xf8\x3d\xf7\xd6\x15\xe0\x06\xab\xf7\x2e\x1d\x82\x20\x1d\x37\x06\xa3\xf7\x00\x05\x8e\x9c\x8c\x8f\x92\x1a\xa2\x78\x9c\x72\x7a" +"\x7a\x83\x7e\x7d\x1e\x81\x82\x86\x80\x86\x72\x72\xfb\x02\x18\x35\xf7\x17\x1d\x9d\x1b\xe0\x06\x3f\xfb\xe9\x05\x87\x78\x8b\x89\xf7" +"\x5a\x1d\x95\x94\x90\x96\x90\xa4\x08\x0e\xf8\x3c\xf7\xd6\x15\xe1\x06\xaa\x97\x2a\x0a\x9c\x9c\x1a\x9c\x80\x51\x0a\x84\x8c\x76\x1b" +"\x37\x06\xa3\xf7\x00\x05\x90\x9e\x8b\x8c\x94\x1a\xa1\x78\x9c\x72\x67\x74\x75\x5f\x81\x1e\x73\xfb\x02\x05\x34\xf7\x17\x1d\x9e\x1b" +"\xe0\x06\x81\x5f\x05\x34\x06\x6d\x80\xd6\x0a\xe0\x06\x60\xfb\x56\x05\x89\x81\x89\x7f\x84\x1a\x75\xcf\x0a\xa5\xb7\xf7\x58\x18\xe1" +"\x06\xaa\x96\x8e\x97\x9a\xf5\x0a\x82\x8c\x79\x1b\x37\x06\x0e\x79\x1d\xf8\xd6\xf8\x76\x15\xab\x06\xa0\x92\x8c\x90\x94\x1f\x9d\x94" +"\x96\x9c\x9c\x1a\xa2\x7c\x95\x68\x1e\xfb\x59\x06\xfb\x23\x8c\xfb\x1c\x3d\x78\x2d\x82\x60\x18\x89\x82\x8a\x83\x81\x1a\x40\xd5\x50" +"\xf7\x03\x7f\x1e\x51\xfb\x99\x05\x40\x06\x75\x84\x8a\x86\x82\x1f\x7a\x82\x7f\x79\x7c\x1a\x73\x99\x81\xaf\x1e\xf7\x1d\x06\xa2\x97" +"\x92\x9e\x98\x1f\x7a\x8f\x97\x82\x9e\x1b\xe8\x06\xa0\x92\x8c\x90\x94\x1f\x9d\x94\x96\x9c\x9c\x1a\xa2\x7d\x95\x68\x1e\x6b\x06\xb5" +"\xf8\xca\x15\xfb\x12\xfc\xcb\x81\x86\x86\x86\x84\x83\x19\x88\x94\x89\x8e\x82\x90\xf7\x12\xf8\xcc\x18\x0e\xf7\xbc\xf8\x59\x15\x38" +"\x49\x49\x37\x38\xcd\x48\xdd\xdc\xcd\xce\xde\xdd\x49\xcf\x3b\x1f\x0e\xc3\x0a\xf7\x4c\xf7\x1c\xf3\x1d\x80\x88\x83\x83\xf7\x3e\x1d" +"\x0e\xf7\xb0\xf8\xdb\xf3\x1d\x81\x88\x81\x84\x1a\x7e\x99\x80\x9b\x99\x95\x91\x9d\x9b\x1e\xf7\x58\xf7\x76\x05\x0e\xf8\x6a\xf7\x68" +"\x15\xfb\x46\xfb\x17\x05\x7b\xef\x1d\x90\x82\x92\x83\x1f\xfb\x04\xfb\x17\x15\xfb\x45\xfb\x17\x05\x7a\x7e\x84\x81\x7f\x1a\x7b\x98" +"\x80\x9d\x94\x93\x8e\x92\x95\x1e\x91\x8f\xf7\xb7\xf7\x46\xfb\x68\xf7\x47\x05\x98\x7d\x88\x8c\x80\x1b\x75\x75\x79\x78\x84\x8f\x82" +"\x93\x83\x1f\x0e\xf4\x7d\x15\x2c\x0a\xf7\x6d\x16\x2c\x0a\xf7\x6d\x16\x2c\x0a\x0e\xf8\xb9\xf8\x00\x15\xa4\x93\x96\x96\x9c\x1a\x9a" +"\x82\x95\x7e\x85\x89\x8b\x87\x7e\x1e\xfc\x19\xfb\x05\x05\x71\x84\x80\x7f\x79\x1a\x7d\x94\x80\x98\x91\x8d\x8b\x90\x98\x1e\xe4\xf7" +"\xee\x15\x41\x45\xbd\x0a\xa8\xfb\xd1\xb8\x0a\xf7\xaf\xc3\xb8\x0a\x0e\xf8\x64\xfb\x33\x15\x9c\xd8\x05\x8e\x99\x8c\x92\x93\x1a\xa1" +"\xf7\x74\x1d\x81\x88\x84\x84\x6f\x89\x80\x18\x7c\x68\x67\x83\x67\x1b\x52\x6c\xa2\xb3\xb9\xb1\xa4\xf7\x24\xbd\x1f\x93\x8d\x97\xc3" +"\x05\x90\x9e\x8b\x8c\x79\x0a\x6c\x75\x79\x69\x7f\x1e\x46\x71\x62\x74\x68\x6e\x08\x64\x6a\x73\x58\x55\x1a\x32\xce\x53\xf7\x01\xcc" +"\xba\x97\xb5\xf0\x1e\x36\xf8\xaf\x15\x5f\x62\x65\x61\x6c\xa3\x74\xac\x1f\x9d\x06\xb7\xb5\xb2\xb4\xab\x73\xa1\x69\x1f\x0e\xf7\xe9" +"\xf9\x24\x15\x98\x7e\x84\x8e\x80\x1b\x70\x74\x75\x73\x82\x91\x81\x96\x80\xf7\x34\x1d\x95\x7f\x96\x1f\x0e\xf8\xdf\xf8\xe8\x2f\x1d" +"\xf8\x42\xf8\xd6\x60\x0a\xf8\xe4\xf9\x0e\x15\x7e\xf7\x37\x1d\xa9\x54\x1d\x6c\x6b\x7c\x6e\x6b\x1f\x6f\x71\x7e\x78\x7a\x1a\x7c\xf7" +"\x2b\x0a\xaf\x94\x91\x9e\x1d\xad\xa9\x9c\xb6\xb5\x1f\xa0\xa0\x94\x9a\x98\x1a\x99\x7c\x97\x7b\x1e\x0e\xcb\x0a\xf7\xc6\xf9\x2c\x2b" +"\x0a\xf8\x4c\xf9\x0c\x5b\x1d\xf7\xe3\xf9\x0c\x40\x0a\xf8\x5a\xf9\x52\xeb\x1d\xf7\x97\x93\x15\x73\x21\x05\x8c\x99\x94\x42\x0a\xb2" +"\x7b\x9e\x62\x94\x1f\x94\xb4\x05\x0e\xf8\x3e\xf8\xe6\x5b\x0a\xf7\xdc\x93\x15\x69\x79\x81\x84\x7a\x7c\x08\x6c\x6e\x79\x68\x67\x5d" +"\x0a\x95\x94\x9a\x9a\x9c\x1f\x9e\xa0\x9f\x98\xd3\xb4\x08\x0e\xf8\x3e\xf8\xcc\x45\x1d\xaa\x0a\xb2\x1d\x0e\xf8\x2d\xf7\xa3\x15\xe6" +"\x06\xb1\xa4\x9e\xa9\xa3\x7e\x95\x68\x1f\x8a\x06\xa5\xf7\x09\x05\x8d\x94\x8c\x93\x92\x1a\xbe\x5d\xa9\x3e\x62\x4a\x80\x80\x72\x1e" +"\x7a\x83\x80\x7b\x79\x1a\x77\x99\x7d\x9f\x92\x96\x8d\x8e\x98\x1e\x93\xae\xa0\x8e\xa4\x1b\xad\x9a\x86\x7f\x8a\x1f\x8a\x8b\x89\x8a" +"\x8a\x1e\x8a\x86\x05\x8f\x71\x7f\x8c\x78\x1b\x3d\x50\x75\x5e\x64\x1f\x78\x76\x81\x74\x77\x1a\x5b\xbb\x69\xcd\xb0\xa9\x90\x9a\xb2" +"\x1e\xa0\xe7\x15\x79\x6b\x61\x80\x6b\x1b\x78\x7c\x91\x93\x9f\xb6\xa0\xb5\x9d\x98\x8a\x86\xa8\x1f\x0e\xf7\xfe\xf8\x61\x15\xc0\x06" +"\xaa\x97\x8e\x97\x9a\xdf\x0a\xfb\x69\x27\x1d\xbf\x06\x69\xfb\x2b\xfb\x07\x52\x05\x63\x78\x7e\x7b\x6e\x1a\x75\x9f\x78\xa1\x98\x95" +"\x8e\x97\xa3\x1e\xc0\xa6\x77\x34\x05\x56\x25\x0a\xf8\x6e\x06\xb5\xf7\x4d\x05\x8e\x9c\x8c\x8f\x93\x1a\xa2\x79\x9c\x71\x67\x75\x75" +"\x5e\x81\x1e\x78\x37\x05\xfb\x62\x06\xa8\xf7\x17\xf7\x2c\xd7\x05\xb3\x9f\x98\x9a\xa8\x1a\xa0\x78\x9e\x75\x7f\x7c\x86\x82\x77\x1e" +"\x30\x5d\x05\x0e\xbb\x1d\x0e\xf8\x39\xf7\x7c\x15\x95\x06\x8a\x7d\x05\x74\xa6\x1d\x95\x91\xa4\x9b\xd5\x18\x90\x9e\x83\x0a\x6b\x76" +"\x79\x68\x7f\x1e\x81\x2b\x1d\xf7\x0b\x06\x7e\x52\x05\x89\x80\x89\x80\x84\x1a\x75\xf7\x46\x1d\xaf\xf7\x36\x18\xfb\xe7\x06\xfb\x54" +"\xfb\x35\xfb\x34\xfb\x52\xfb\x16\xe6\x37\xf7\x1e\x1f\xf7\xf8\x06\xa6\xf7\x0b\x05\x8e\x99\x8c\x92\x93\x1a\xa2\x79\x9b\x72\x67\x74" +"\x75\x5f\x82\x1e\x87\x79\x05\xfb\x1f\x06\xfb\x00\x16\x6a\x7b\x8e\x93\x76\x1f\x5e\x9d\x6f\xbb\xc7\x1a\xc9\xae\xd1\xc1\xb6\x1e\xb2" +"\xab\xb1\x98\xc4\x8c\x08\x0e\xf8\x41\xf8\xd4\x15\xfb\x01\x22\x2e\x2a\x43\xc7\x56\xdd\xf7\x05\xef\xe2\xed\xd6\x50\xc2\x39\x1f\x79" +"\x39\x15\xb4\xa8\x70\x66\x5e\x58\x61\x54\x65\x6a\xa5\xaa\xbb\xc0\xb9\xc1\x1f\x0e\xb1\x1d\x0e\xf8\x54\x35\x1d\x0e\xf8\x7c\xf8\xef" +"\x15\xfb\x48\x06\x6a\x81\xf7\x19\x1d\xd2\x06\x69\xfb\x2a\x30\x5f\x05\x63\x78\x7d\x7a\x6f\x1a\x74\x9e\x78\xa2\x97\x98\x8f\x95\xa0" +"\x1e\xa9\x9a\x6f\xfb\x11\x05\xfb\x0a\x38\x1d\xf7\xeb\x63\x0a\xfb\x09\x06\xb1\xf7\x3c\xe9\xb9\x05\xb2\x9d\x99\x9d\xa7\x1a\xa2\x78" +"\x9e\x74\x7c\x84\x89\x7e\x72\x1e\x6c\x7b\x05\x0e\xbf\x1d\x0e\xf9\x20\xf7\x37\x15\x95\xb9\x05\x90\xa3\x8e\xa4\xa2\x1a\xe6\x51\xcc" +"\x3b\x56\x58\x72\x5b\x5e\x1e\xba\x71\x63\xa5\x5a\x1b\x4b\x4c\x68\x4e\x5c\x1f\x5f\x51\x71\x45\x4b\x1a\x2b\xc6\x47\xe1\xbc\xbf\xa3" +"\xb6\xb7\x1e\x5f\xa3\xb4\x74\xc3\x1b\xbb\xd5\x9c\x9e\xb1\x1f\xa3\x97\x98\xa0\xa3\x1a\xa3\x78\x9d\x74\x82\x81\x89\x88\x83\x1e\x73" +"\x4d\x7f\x88\x6f\x1b\x64\x77\xa3\xbe\x8a\x1f\xfb\x2e\xf7\x3d\x15\xad\xa0\x6c\x58\x3b\x53\x39\x54\x67\x77\xa8\xc2\xda\xc4\xdc\xc2" +"\x1f\xf7\x45\x3c\x15\xc3\xa5\xa4\xa2\xad\x1b\xaa\x9a\x71\x56\x1f\x0e\xf7\x30\xf7\xbe\x15\x60\xfb\x57\x05\x7e\x06\x6b\x80\x89\x7e" +"\x7d\xf7\x3f\x1d\x8a\x9d\x1b\xf7\x0d\x89\xed\xf8\x51\x05\xb0\x93\xa7\x9e\xba\x1b\xb1\xa1\x7a\x6e\x7c\x84\x7d\x7e\x80\x1f\x7c\x7d" +"\x7f\x87\x6a\x88\x08\x62\x87\x70\x72\x6a\x1a\x72\x9a\x7f\xae\x87\x1e\xdb\x83\xb4\x68\x4f\x1a\x59\x6c\x5b\x6a\x7e\x84\x93\x9a\x1e" +"\x98\x07\x9e\x7a\x99\x72\x63\x6e\x68\x5c\x54\xb2\x68\xc9\xc6\xba\xa1\xb8\xb1\x1e\xb1\xb7\xa1\xc5\xc1\x1a\xc8\x70\xbd\x58\xad\x1e" +"\xb1\xaf\x9c\xaf\xb9\x1a\xda\x4f\xbf\x31\x24\x34\x50\x39\x79\x1e\x7e\x4f\x05\x7d\x06\x6b\x80\x88\x7f\x7d\x86\x0a\x9c\x7f\xb7\x1e" +"\x0e\xf8\x69\xf8\xfc\x15\xfb\x1f\x6a\x05\x6d\x84\x7e\x7f\x75\x1a\x7c\x95\x80\x99\x92\x8d\x8b\x8f\x98\x1e\xbd\x97\x59\xfb\x79\x05" +"\x52\x06\x6b\x77\x7c\x73\x79\x97\x83\xa4\x1f\xf7\x4a\x06\xaa\x9f\x9b\xa2\x9e\x81\x92\x70\x1f\x52\x06\x0e\xf8\x76\xf8\x19\x15\xfb" +"\x55\x07\x77\x94\x80\x9c\x9c\x94\x96\x9f\x1e\xf7\x88\xfc\x46\x07\x75\x80\x82\x7b\x7a\x96\x82\xa1\x1f\x0e\xf7\x5f\x82\x15\x86\xa0" +"\x95\x8a\x9e\x1b\xbd\xbc\x95\xa1\xbd\x1f\x7a\xf2\x07\xa1\x9a\x8d\x91\x94\x1f\x9d\x95\x95\x9d\x9e\x1a\xac\x75\x9f\x64\x8d\x1e\xf7" +"\xd2\xfb\x23\x07\x71\x81\x89\x85\x81\xf7\x66\x1d\x81\x1e\x83\x96\x98\x88\xa5\x1b\xa6\xfb\x43\x06\x68\x4e\x63\x7e\x61\x1b\x62\x7c" +"\x98\xaf\x1f\xf7\xb0\xfb\x10\x07\x7b\x06\x6b\x71\x73\x6c\x7a\x94\x7a\x9a\x81\x1f\x83\x96\x98\x88\xa5\x1b\x93\xfc\x1c\x06\x74\x8d" +"\x80\x91\x81\x1e\x7b\x96\x9e\x81\x9f\x1b\x9e\x9c\x93\x9a\x96\x1f\x94\x96\x8d\x95\xa5\x1a\x0e\xf7\xa4\xf8\x81\x15\xb0\x06\x80\x5b" +"\x05\x88\x80\x8b\x88\x87\x1a\x7d\x97\x80\x9a\xa0\x98\x98\xa7\x91\x1e\xa5\xf7\x07\x05\xfb\x9e\x06\x72\xfb\x05\x05\x88\x7e\x8b\x8a" +"\x87\x1a\x7d\x96\x80\x9a\xa0\x98\x99\xa6\x91\x1e\x96\xbd\x05\xb0\x06\x5c\xfb\x68\x05\x73\x06\x6d\x79\x7d\x72\x79\x96\x83\xa3\x1f" +"\xf7\x02\x06\xa8\x9e\x9a\xa3\x9d\x81\x93\x72\x1f\x75\x06\xf7\x87\xf7\x25\x15\xaa\xfb\x17\x05\x9a\x06\xdf\xf7\x14\x6b\xfb\x22\x05" +"\x86\x06\x6f\x79\x7b\x74\x79\x96\x83\xa3\x1f\xc6\x06\xa8\x9e\x9a\xa3\x9b\x83\x93\x78\x8d\x1f\xba\xf7\x68\x05\xa2\x8f\x99\x9a\x9f" +"\x1a\x9e\x81\x92\x72\x1e\x48\x06\x3e\xfb\x13\x74\xf7\x13\x05\x48\x06\x6d\x79\x7d\x73\x7b\x92\x83\x9a\x89\x1f\x5c\xfb\x69\x05\x71" +"\x89\x7c\x7c\x76\x1a\x78\x96\x83\xa2\x1e\xc7\x06\xa8\x9e\x9a\xa3\x9d\x80\x93\x75\x1f\x87\x06\x0e\xb6\x1d\xf7\xb7\xf9\x10\x5e\x0a" +"\xf7\xe2\xf7\x4e\x15\x92\x96\x91\x98\x93\x1a\x9a\x80\x96\x7c\x7c\x80\x84\x79\x7e\x1e\xfb\xd4\xfc\x47\x05\x82\x7e\x86\x81\x83\x1a" +"\x7b\xf7\x68\x1d\x97\x1e\xf7\x66\x68\x15\xf7\x40\xf7\x19\xa1\xa4\xc9\x1a\xc1\x60\xb1\x4e\x5e\x5f\x78\x6a\x6d\x1e\x79\x78\x7f\x75" +"\x7e\x1a\x7c\x96\x80\x9a\x98\x98\x93\x96\x91\x1e\x95\x9e\x8c\x8b\x91\x91\x08\x9a\x9b\x9f\x93\xa0\x1b\xab\xa0\x7a\x73\x6e\x77\x79" +"\xfb\x5a\xfb\x29\x1f\x7f\x82\x7e\x49\x05\xf7\x95\x06\x96\xc2\x05\x8c\x90\x8c\x93\x8f\x1a\x98\x80\x96\x7d\x79\x7f\x81\x76\x84\x1e" +"\x0e\xf8\x3c\xf7\xcf\x15\xf7\x1e\x7b\x1d\xfb\x1c\x06\xa5\xf7\x09\x05\x8e\x9b\x8c\x90\xf7\x5d\x1d\x71\xfb\x0b\x05\xfb\x1f\x4a\x1d" +"\xf7\x1d\x06\x76\x31\xe6\x0a\x95\x95\x8f\x94\x91\xa5\x08\xfb\xa5\xfb\x0c\x15\x38\x0a\x7c\x7f\x81\x32\x0a\x0e\xf7\x77\xf7\x1a\x15" +"\xea\x06\xf3\xc4\x9b\xb6\xbd\x1f\xb0\xaa\xa1\xb9\xb4\x1a\xb0\x76\xae\x6a\x9f\x1e\x9f\x6a\x60\x93\x40\x1b\x2e\x06\x91\xa9\x05\xeb" +"\x5e\x1d\xfb\x69\x06\x6e\x7d\x87\x80\x72\x0a\x87\x94\x8f\x8b\xa1\x1b\x90\x1d\x6d\x9d\x7f\xb6\x1e\xf7\x69\x06\xa8\x9a\x8f\x96\x98" +"\x91\x1d\x2e\x06\xa9\xf7\x1a\x15\x9f\xe6\x05\xf7\x13\x06\xc6\xa2\x81\x71\x66\x69\x79\x45\x1f\x0e\xf8\xfa\xf7\xe9\xf7\x0d\x1d\xdb" +"\x06\xaa\x9f\x9a\xa3\x9b\x80\x94\x76\x8c\x1f\x8e\x9a\x05\xa6\x8d\x9d\x9a\xa1\x1a\x9b\x80\x94\x76\x8c\x1e\x48\x16\x3c\x06\xf4\xf7" +"\x10\x05\xfb\x81\xf8\x1d\x5e\x0a\xf7\xef\xf7\x4e\x15\x92\x95\x91\x99\x93\x1a\x9a\x80\x96\x7c\x7c\x81\x76\x0a\x83\x1a\x7b\xf7\x68" +"\x1d\x98\x1e\x0e\xf7\x47\xf7\xd6\x15\x38\x0a\x7c\x7f\x81\x32\x0a\xfb\x78\xfb\x35\x15\x57\x61\x67\x5e\x69\xa3\x77\xb4\xc2\xb4\xae" +"\xb9\xae\x73\x9e\x60\x1f\xda\xf7\xf7\x15\x57\x61\x67\x5f\x68\xa3\x77\xb4\xc2\xb4\xae\xb8\xaf\x74\x9e\x5f\x1f\x0e\xf7\xfa\xf8\xa8" +"\x15\x9f\x8a\x91\x88\x95\x1e\x9e\x83\x74\x9a\x74\xca\x0a\xad\xa3\xa3\xaf\x1f\x95\x07\xfb\x74\x04\xa3\x89\x95\x85\x95\x1e\x9b\x80" +"\x78\x95\x77\xca\x0a\x9e\x9c\x93\x9a\x96\x1f\x93\x95\x8e\x96\xa5\x1a\x0e\xf8\x3f\xf8\xd5\x15\xfb\x06\x20\x27\x20\x3b\xc7\x51\xdf" +"\xf7\x07\xf6\xef\xf7\x00\xdb\x4f\xc4\x36\x1f\x7e\x49\x15\xbe\xb0\x69\x5a\x49\x48\x4b\x46\x55\x67\xad\xbd\xcd\xce\xca\xd2\x1f\x0e" +"\xf7\x52\xc7\x15\x67\xb3\xb7\x7c\xf7\x14\x0a\x3b\xd0\xfb\x10\x4f\x5e\x7d\x67\x54\x1f\xbc\xf7\x6c\x05\xfb\x0d\x82\x0a\x7f\x82\x7a" +"\x7a\x1a\x7a\x95\x7b\x99\x86\x1e\x88\x94\x94\x8a\x9d\x1b\x96\x06\xfb\x18\xfc\xe5\x9f\x0a\xf7\x6b\xf8\x79\x9c\x0a\xf8\x0d\xfb\x24" +"\xf7\x0d\x1d\xda\x06\xaa\x9f\x9a\xa3\x9b\x81\x94\x76\x8c\x1f\x8e\x9a\x05\xa6\x8d\x9c\x9a\xa1\x1a\x9c\x80\x93\x77\x8c\x1e\x48\x16" +"\x3c\x06\xf3\xf7\x10\x05\xbb\xf7\x9e\x15\x92\x95\x91\x99\x93\x1a\x9a\x80\x96\x7c\x7c\x81\x9a\x1d\x81\x7e\x87\x81\x50\x0a\x96\x93" +"\x9c\x98\x1e\x0e\xf7\xd5\xf7\xc3\x15\xf7\x55\xf7\x19\xa3\xa4\xc9\x1a\xc2\x5f\xb0\x4b\x5c\x5e\x78\x6a\x6a\x1e\x79\x78\x7e\x75\x7d" +"\x1a\x7d\x96\x80\x9b\x99\x99\x93\x96\x92\x1e\x96\x9e\x8b\x8b\x92\x91\x08\x9a\x9b\xa1\x93\xa2\x1b\xab\xa2\x7a\x74\x6d\x78\x7b\xfb" +"\x72\xfb\x2b\x1f\x7f\x82\x7c\x49\x05\xf7\xac\x06\x97\xc2\x05\x8c\x90\x8c\x93\x8f\x1a\x98\x7f\x96\x7d\x77\x7e\x81\x76\x84\x1e\x0e" +"\xf7\xd8\xf7\x7e\x15\x96\x06\x9f\x83\xa6\x55\x8d\x66\x8c\x83\x18\x8c\x84\x05\xb7\x06\xac\xa2\x9d\xa6\x9e\x82\x93\x76\x8f\x1f\x7e" +"\xab\x86\x95\x7b\x9d\x08\xbb\xa1\xa9\xb3\xb5\x1a\xbf\x61\xac\x46\x1e\x2e\x06\x69\x74\x79\x70\x77\x96\x82\xa3\x89\x1f\x65\xfb\x41" +"\x05\x6b\x8a\x76\x78\x72\x1a\x76\x99\x81\xa7\x1e\xd0\x06\xac\xa2\x9d\xa6\x9f\x80\x94\x74\x8d\x1f\xa4\xf7\x05\x15\x98\xc7\x05\xa1" +"\x06\xa7\x9b\x83\x7d\x77\x6f\x79\x6d\x1f\xcd\xf7\xa2\x15\xfb\x5a\xfb\x4e\xfb\x41\xfb\x4c\xf7\x60\x1d\xf7\x4c\xf7\x1e\xf2\x1d\xf7" +"\x47\xf7\xd6\x15\x38\x0a\x7c\x7f\x81\x32\x0a\x0e\xf8\xb3\xf8\xc0\x15\xa0\x95\x97\x99\x9b\x1a\x9b\x7f\x97\x7a\x81\x7d\x88\x85\x7e" +"\x1e\x37\x65\x61\x9f\x75\x95\x89\x8c\x19\x93\x74\x7c\x8e\x7d\x1b\x71\x71\x75\x74\x7f\x93\x82\x9a\x86\x1f\x9a\x85\x91\x89\x90\x88" +"\x90\x89\x19\x8d\x8a\x8f\x89\x90\x89\x5b\x73\x18\x70\x7e\x85\x84\x77\x1a\x78\x96\x7f\x9b\x95\x8e\x8c\x95\xa2\x1e\xf0\xba\xad\x76" +"\xb2\x63\xa3\x66\x19\xa8\x5b\x72\x92\x5e\x1b\x36\x38\x68\x4e\x50\x1f\x5b\x58\x6e\x4c\x53\x1a\x22\xe6\x40\xf7\x13\xe1\xe7\xb0\xc6" +"\xc8\x1e\xc0\xbf\xab\xde\xe1\x1a\xe9\x66\xd3\x36\xcf\x1e\xfb\x10\xfb\x5e\x15\xd4\xbf\x60\x4f\x6d\x7e\x6d\x76\x75\x1f\x65\x64\x55" +"\x74\x57\x1b\x41\x53\xb5\xc1\xd8\xe5\xd4\xe9\x1f\x0e\xf7\xeb\xf7\x5a\x15\xda\x2c\x05\x75\x9d\x93\x86\x9d\x1b\xac\xad\xa9\xa9\x98" +"\x87\x93\x7c\x9d\x1f\x3c\xeb\xf7\x0e\xea\x05\xa9\xa3\x94\x98\xa0\x1a\xa3\x78\x9d\x71\x79\x81\x86\x76\x71\x1e\xfb\x0e\x2b\x3c\xea" +"\x05\xa0\x7a\x81\x91\x7a\x1b\x6a\x69\x6d\x6d\x7d\x8f\x84\x9a\x79\x1f\xda\x2c\xfb\x0e\x2b\x05\x6c\x73\x83\x7f\x76\x1a\x72\x9d\x79" +"\xa6\x9c\x95\x90\xa0\xa7\x1e\x0e\xf8\x19\xf8\x67\x15\x75\x77\x79\x77\x7b\x94\x83\x9e\x8a\x1f\xa3\x8a\x94\x89\x95\x87\x08\x9e\x82" +"\x99\x79\x7b\x1a\x65\x66\x76\x48\x64\x7b\x8e\x94\x7e\x1e\x92\x82\x88\x8c\x83\x1b\x75\x78\x78\x76\x70\xb9\x79\xd2\xc8\xb5\x98\xa8" +"\xad\x1f\xa7\xa3\x9e\xaf\xa8\x1a\xa9\x7b\xa4\x6d\x9c\x1e\xbb\xa5\xa1\xaa\xb2\x1a\xc0\x63\xac\x4a\x41\x45\x67\x64\x7d\x97\x80\x9a" +"\x94\x94\x8f\x91\x93\x1e\x9f\xa2\x9c\x91\xac\x1b\xad\xa0\x7e\x77\x71\x6c\x72\x6c\x1f\x0e\xf7\x50\xf7\x99\x15\x89\x81\x8a\x83\x7f" +"\x1a\x44\xc4\x5c\xe0\xdb\xd9\xb3\xb5\x9d\x7d\x98\x78\x81\x81\x87\x84\x81\x1e\x75\x6f\x7f\x87\x65\x1b\x5a\x71\x9e\xaf\x88\x1f\x91" +"\x8b\x90\x8c\x91\x1e\x93\xac\x05\xbb\x95\xb6\xae\xbc\x1b\xa8\xa6\x7e\x7e\x6c\x93\x80\xa3\xa4\x9c\x9b\xa9\x91\x1f\x97\xbd\x05\x8e" +"\x99\x8b\x8b\x90\x1a\x9c\x7e\x97\x7a\x7c\x81\x86\x7f\x82\x1e\x97\x72\x77\x90\x6e\x1b\x30\x38\x48\x31\x77\x1f\xf7\x7c\xf7\xaf\x15" +"\xfb\x5b\xfb\x4d\xfb\x40\xfb\x4d\xf7\x60\x1d\xf7\x4d\xf7\x1d\xf2\x1d\x22\x1d\xf7\x4d\xf7\xc9\x15\xa3\x9c\x94\x97\x9b\x1a\x9e\x7d" +"\x98\x77\x7f\x85\x89\x7d\x77\x4c\x0a\x78\x99\x7e\x9f\x96\x91\x8e\x98\x9f\x1e\x0e\x22\x1d\xbf\xf7\xb7\x15\xe5\x31\x05\x82\x94\x93" +"\x87\x96\x1b\xa2\xa1\x1d\xfb\x4a\xfb\x11\x05\x6e\x78\x6f\x0a\x22\x1d\x61\xf7\xee\x40\x0a\x22\x1d\x88\xf8\x06\x15\x98\x7d\x86\x8e" +"\x7e\x1b\x71\xf7\x1b\x1d\xa2\x96\x86\x94\x7f\x97\x1f\x0e\x22\x1d\xd9\xf8\x34\x15\x3c\x3f\x46\x43\x53\xb6\x62\xc6\xdb\xd7\xcf\xd3" +"\xc5\x60\xb3\x4f\x1f\x80\x50\x15\xaa\xa0\x77\x6e\x68\x62\x67\x64\x6b\x75\x9f\xa6\xb1\xb3\xae\xb5\x1f\x0e\x22\x1d\xf7\x6c\xf7\xef" +"\x15\x7f\x78\x81\x7d\x7e\x1f\x6a\x6c\x86\x88\x7d\x1b\x81\x7f\x91\x9d\x6f\x1f\xa8\x54\x1d\x6b\x69\x7b\x6c\x6a\x1f\x71\x72\x80\x79" +"\x7c\x1a\x7c\x98\x80\x9b\x95\x96\x8f\x93\x93\x1e\xb3\xb3\x93\x90\x9d\x1b\x98\x91\x88\x7b\xa2\x1f\x6f\xb2\xa9\x7e\xa2\x1b\xad\xaa" +"\x9c\xb5\xb4\x75\x0a\xf7\xe5\x7e\x15\xda\x8f\xc3\x9a\xbb\xa8\x08\xbb\xa7\xa3\xa7\xa5\x7e\x1d\xcc\xc4\x6c\x69\x89\x1f\x8a\x78\x05" +"\x73\x8a\x9d\x7a\xa5\x1b\xaf\xa1\xa1\xb7\x95\x1f\x9d\xdb\x05\x98\x0a\x7d\x4b\x05\x80\x0a\x3c\xb5\x4a\xd1\x6a\x1e\xa2\x81\x9c\x86" +"\xab\x84\x77\x31\x18\x8d\xa2\x8d\x8b\x92\x1b\xa3\x99\x83\x7d\x7b\x7d\x81\x73\x7b\x77\x91\x94\x7c\x1f\x96\x7a\x88\x8c\x83\x1b\x72" +"\x74\x75\x74\x6c\xc0\x71\xc8\xd3\xc6\xc1\xcc\xb2\x7b\x9e\x62\x94\x1f\x0e\x24\x1d\xad\xf7\x28\x05\x8e\x9b\x8c\x91\x93\x1a\xa1\x21" +"\x1d\xf7\xff\xf9\x09\x15\xa1\x9b\x95\x98\x9b\x1a\x9e\x7d\x98\x77\x7f\x85\x88\x7e\x78\x4c\x0a\x79\x99\x7d\x9f\x96\x91\x8e\x98\x9f" +"\x1e\x0e\x24\x1d\xac\xf7\x28\x05\x90\x9e\x8b\x8d\x93\x1a\xa2\x21\x1d\xf7\x7a\xf8\xf7\xf7\x51\x1d\xa2\x94\x88\x90\x82\x93\x1f\x84" +"\x92\xf7\x0e\x1d\x24\x1d\xac\xf7\x28\x05\x90\x9e\x8b\x8d\x93\x1a\xa2\x21\x1d\xf7\x1c\xf9\x2e\x15\x4d\x0a\xb1\xa8\x75\x9f\x6d\x1f" +"\xf7\x64\x16\x4d\x0a\xb1\xa7\x75\xa0\x6d\x1f\x0e\x24\x1d\xac\xf7\x28\x05\x90\x9e\x8b\x8d\x93\x1a\xa2\x21\x1d\xf7\x3c\xf9\x46\xf7" +"\x65\x1d\x82\x90\x82\x97\x80\x1f\xf7\x02\x21\x05\x7e\x99\x92\x87\x95\x1b\xa5\xa3\xa1\xa3\x94\x85\x96\x80\x96\x1f\x0e\x28\x0a\xf7" +"\x56\x30\x0a\x28\x0a\xde\xf8\xf7\x15\xe4\x31\x05\x82\xf7\x1f\x1d\xfb\x11\x05\x6f\x78\x86\x84\x7a\x1a\x79\x98\x7e\x9d\x96\x94\x8e" +"\x95\x99\x1e\x0e\x28\x0a\x80\xf9\x2e\x40\x0a\x28\x0a\xa0\xf9\x46\xc4\x0a\x85\x96\x80\x96\x1f\x0e\xf8\x10\xf9\x4c\x15\x99\x92\x88" +"\x7b\xa2\x1f\x70\xb0\xab\x7d\xa2\x1b\xad\xa9\x9c\xb5\xb5\xf7\x72\x1d\x7a\x7e\x7b\x81\x78\x78\x1e\x6f\x70\x87\x88\x7d\x1b\x80\x80" +"\x91\x9d\x6f\x1f\xa8\x5e\x7b\x92\x73\x1b\x6c\x6a\x7c\x6d\x6b\x1f\x6f\x72\x7f\x78\x7a\x1a\x7d\x98\x80\x9b\x96\x95\x90\x94\x95\x1e" +"\xb0\xb0\x94\x91\x9c\x1b\xfb\x0e\xfb\xdd\x96\x0a\x0e\x2e\x1d\xf7\x4c\xf7\x95\x15\xa3\x9c\x94\x97\x9c\x1a\x9d\x7d\x98\x77\x7f\x85" +"\x89\x7d\x77\x1e\xfb\x31\x21\x05\x74\x7c\x81\x7d\x7b\x1a\x78\x99\x7e\x9f\x96\x92\x8e\x98\x9e\x1e\x0e\x2e\x1d\xc2\xf7\x83\x31\x0a" +"\x2e\x1d\x63\xf7\xba\x15\x63\x73\x0a\x6c\x1f\xf7\x65\x16\x4d\x0a\xb1\xa8\x75\x9f\x6d\x1f\x0e\x2e\x1d\x87\xf7\xd2\xc4\x0a\x86\x96" +"\x7f\x96\x1f\x0e\x2e\x1d\xf7\x75\xf7\xbb\x15\x7d\x7b\x81\x78\x78\x1f\x6f\x70\x87\x88\x7d\x1b\x81\x7f\x90\x9e\x6f\x1f\xa8\x54\x1d" +"\x6c\x6b\x7c\x6e\x6b\x1f\x6f\x72\x7e\x77\x7b\x1a\x7c\x98\x80\x9b\x95\x96\x90\x92\x93\x1e\xb2\xb2\x94\x91\x9c\x1b\x99\x91\x88\x7b" +"\xa2\x1f\x70\xb2\xa9\x7d\xa2\x1b\xad\xaa\x9c\xb5\xb4\x75\x0a\xf8\x69\xf9\x55\x15\x30\xe5\x05\x94\x82\x83\x8f\x80\x1b\x73\x74\x75" +"\x75\x81\x8e\x86\x96\x81\x1f\x90\x86\xf7\x13\xfb\x11\xf7\x49\xf7\x11\x05\xa9\x9f\x8f\x90\x9d\x1a\x9d\x7e\x98\x79\x80\x81\x87\x82" +"\x7e\x1e\xad\xfb\xb1\x15\x90\x9e\x8b\x8c\x94\x1a\xa2\x79\x9b\x71\x77\xb4\x0a\x2e\xfb\x06\x63\xa2\x63\xae\x76\x1f\xa7\x79\xa8\x82" +"\xcd\x80\xcd\x7f\x98\x87\x9e\x81\x08\x9a\x83\x94\x7d\x7d\x1a\x60\x49\x67\x3a\x4c\x54\xa5\xab\x88\x1e\x89\xa6\x8b\x8b\x85\x92\x85" +"\x1d\x73\xb8\xbb\x7f\xc1\x1b\xf7\x31\xf7\x09\xe3\xf7\x0b\xbb\x6f\xb4\x5d\x9f\x1f\x71\x97\x6d\x93\x54\x95\x3d\x9a\x83\x8d\x7d\x96" +"\x08\x80\x94\x84\x99\x97\x1a\xb5\xc6\xb0\xcf\xc7\xb3\x73\x67\x6b\x8b\x8b\x92\x82\x1e\x82\x92\x99\x85\x9a\x1b\x9c\x9c\x93\x98\x98" +"\x1f\x95\x95\x90\x94\x91\xa5\x08\x0e\x23\x0a\x97\xf8\xa9\x15\xa5\x9c\x93\x96\x9c\xf7\x48\x1d\x78\x4c\x0a\x78\x99\x7e\x9e\x96\x92" +"\x8e\x98\x9f\x1e\x0e\x23\x0a\xfb\x09\xf8\x97\xf7\x51\x1d\xa1\x95\x89\x90\x82\x93\x1f\x87\x8e\x88\x8e\x8a\x8c\xfb\x12\xf7\x11\x18" +"\xfb\x4a\xfb\x11\x05\x6e\x78\x6f\x0a\x23\x0a\xfb\x67\xf8\xce\xc1\x0a\xa7\x75\xa0\x6c\x1f\x0e\x23\x0a\xfb\x44\xf8\xe6\x15\x98\x7e" +"\x86\x8e\x7e\x1b\x71\xd5\x0a\x95\x86\x93\x7f\x98\x1f\x0e\xf8\xe4\xf9\x70\x15\xa4\x9c\x94\x97\x9b\x1a\x9e\x7d\x98\x77\x7e\x85\x88" +"\x7e\x78\x4c\x0a\x78\x99\x7e\x9f\x95\x92\x8e\x98\x9f\x1e\x6e\xfc\x1b\x29\x0a\x77\x1b\x2e\x34\x1d\x0e\xf8\x02\xf9\x95\x15\x63\x62" +"\x1d\x6c\x1f\xf7\x64\x16\x63\x62\x1d\x6c\x1f\xfb\x3c\xfc\xaa\x29\x0a\x77\x1b\x2e\x34\x1d\x0e\xf7\x7c\xf1\x0a\x86\x78\x8b\x8a\x83" +"\x1a\x75\x9e\x79\xa4\xaf\xa2\xa0\xb8\x95\x1e\x99\xcb\x05\xf7\x39\x06\xfc\x0c\xfb\xfc\x74\x26\x05\xf8\x62\x06\xb0\xf7\x3b\x05\x90" +"\x9e\x8b\x8c\xd9\x0a\x7c\x49\x05\x96\xf8\xee\x15\x30\xe5\x05\x95\x81\x84\x8e\x80\x1b\x73\x74\x75\x75\x81\x8e\x86\x96\x81\x1f\x8d" +"\x89\x8c\x89\x8d\x8a\xf7\x13\xfb\x11\x18\xf7\x49\xf7\x11\x05\xa7\x9d\x91\x93\x9c\x1a\x9d\x7d\x98\x79\x81\x81\x87\x82\x7e\x1e\x0e" +"\xf8\x14\x16\xf7\x0e\x06\xa8\x98\x8f\x96\x9a\x1f\x9a\xf7\x33\x1d\x80\x06\xb5\xf7\x50\x05\x8d\x97\x8c\x93\x99\x69\x1d\x2b\x7b\x7b" +"\x67\x1e\x75\x82\x7e\x77\x74\x1a\x73\x9c\x7a\xa4\x95\x9a\x8d\x8f\x9d\x1e\x96\xbb\xb1\x90\xac\x1b\xc3\x9f\x82\x73\x8e\x1f\x82\x07" +"\x87\x79\x05\x91\x65\x6e\x8e\x6b\x1b\x24\x34\x69\x4e\x56\x1f\x70\x6d\x7d\x6b\x6e\x1a\x4b\xce\x5b\xe6\xc3\xc7\x97\xa1\xbf\x1e\xa6" +"\xf7\x08\x15\x6c\x4e\x51\x7b\x54\x1b\x68\x6f\x98\x9b\x95\x92\x95\x9a\x97\x6c\x1d\xac\xa9\x88\x84\xb3\x1f\xf7\x17\xf8\x37\x15\xa3" +"\x9b\x94\x97\x9b\xf7\x48\x1d\x79\x1e\xfb\x32\x21\x05\x74\x7b\x81\x7e\x52\x0a\x97\x90\x95\x9b\x1e\x0e\x2d\x1d\x86\xf8\x25\x15\xe5" +"\x31\x05\x81\x36\x0a\xa2\x94\x88\x90\x83\x93\x1f\x88\x8e\x8a\x8c\x87\x8e\xfb\x12\xf7\x14\x1d\x0e\xf8\x13\xbc\x0a\x41\x1d\x77\x1b" +"\x7f\x06\xcc\x0a\x30\x7c\x7b\x64\x1e\x73\x4f\x1d\x72\x9c\x7a\xa4\x73\x1d\x27\xf8\x5b\x15\x63\x4a\x0a\xb0\xa9\x75\x9f\x6c\x1f\xf7" +"\x65\xf7\x2d\x1d\x0e\x2d\x1d\x45\xf8\x73\xb7\x0a\x2d\x1d\x9f\xf8\xa1\x15\x3c\x3f\x46\x43\x53\xb6\x62\xc7\xdb\xd7\xd0\xd2\xc4\x60" +"\xb4\x4e\x1f\x81\x50\x15\xaa\xa0\x77\x6f\x68\x62\x67\x64\x6b\x75\x9e\xa7\xb0\xb3\xae\xb5\x1f\x0e\xf8\x13\x16\xf7\x0e\xf7\x22\x1d" +"\x83\x84\x8b\x76\x1b\x80\x06\xb5\xf7\x50\x05\x8d\x97\x8d\x97\x95\x1a\xd0\x49\xb6\x21\x53\x2a\x7b\x7b\x67\x1e\x76\x4f\x1d\x73\x9d" +"\x7a\xa3\x95\x9a\x8d\x8f\x9d\x1e\x96\xbb\xb1\x90\xad\x1b\xc2\xa3\x81\x74\x88\x8b\x88\x8a\x88\x1f\x87\x79\x05\x91\x66\x6d\x8e\x6b" +"\x1b\x24\x35\x69\x4e\x55\x1f\x70\x6d\x7d\x6b\x6e\x1a\x4b\xce\x5b\xe6\xc3\xc7\x97\xa1\xbf\x1e\xa6\xf7\x08\x15\x6c\x4f\x50\x7b\x54" +"\xf7\x21\x0a\x97\x99\x96\x6c\x1d\xad\xa8\x88\x84\xb3\x1f\xf7\x37\xf8\x5d\x15\x7f\x78\x81\x7c\x7e\x1f\x6a\x6b\x87\x88\x7d\x1b\x81" +"\x7f\x91\x9d\x6f\x1f\xa9\x54\x1d\x6d\x6a\x7c\x6f\x6c\x1f\x6e\x71\x7e\x77\x7a\x1a\x7c\x98\x80\x9b\x96\x95\x8f\x94\x93\x1e\xb3\xb3" +"\x93\x90\x9c\x1b\x99\x91\x88\x7a\xa2\x1f\x70\xb1\xaa\x7d\xa2\x1b\xae\xa8\x9c\xb6\xb5\x75\x0a\xf7\xe9\x7c\x15\xd3\x8e\xbd\x94\xb6" +"\x9e\x08\xc0\xa2\xa9\xa9\xa9\xf7\x28\x1d\xa6\xc6\xab\x99\xaf\xa3\xa8\x1f\xb5\xaf\xbc\xa0\xc9\x1b\xb7\xac\x83\x7c\xa1\x1f\x95\x83" +"\x8f\x83\x8a\x7b\x08\x69\x99\x7c\xaa\xaf\xa1\xa1\xb7\x95\x1e\x9b\xd5\x05\x90\x9e\x8b\x8d\x94\x1a\xa1\x79\x9a\x71\x77\x7e\x83\x78" +"\x7f\x1e\x9c\x6a\x5b\x95\x55\x1b\x2d\x88\x1d\x42\xb7\x50\xd3\x75\x1e\x9e\x85\x99\x88\xa6\x88\x78\x36\x18\x8d\x9c\x8c\x8b\x90\x1b" +"\xab\x99\x84\x7c\x7b\x7d\x81\x73\x7b\x77\x91\x94\x7c\x1f\x96\x79\x89\x8c\x83\x1b\x72\x74\x75\x74\x80\x90\x81\x94\x85\x1f\x79\xa2" +"\xb4\x7f\xaf\x1b\xd3\xc6\xc1\xcc\xb3\x7b\x9d\x62\x94\x1f\x0e\xf8\xe2\xd5\x1d\xa2\xc0\x48\x1d\xd7\xf7\xe8\x15\xa3\x9a\x94\x98\x9c" +"\x1a\x9d\x7d\x98\x77\x7f\x85\x88\x7e\x78\x1e\xfb\x32\x21\x05\x73\x7b\x82\x7f\x7b\x1a\x78\x99\x7e\x9f\x95\x98\x90\x95\x9a\x1e\x0e" +"\xa8\x0a\x71\x87\x5e\x1b\x36\x60\xa2\xc0\x48\x1d\x53\xf7\xd6\xf7\x10\x0a\x96\x1b\xa3\xa2\xa1\xa2\x94\x88\x90\x83\x93\x1f\x83\x92" +"\xfb\x12\xf7\x11\xfb\x4a\xf7\x73\x1d\x98\x7e\x9e\x95\x93\x8e\x95\x9a\x1e\x0e\xa8\x0a\x70\x87\x5e\x1b\x37\x60\xa3\xbf\x48\x1d\xfb" +"\x2a\xf8\x0c\x15\x4d\x0a\xb0\xa9\x76\x9f\x6c\xda\x0a\x0e\x33\x1d\xfb\x11\xf8\x24\x15\x98\x7e\x85\x8e\x7f\x1b\x70\x74\x75\x72\x83" +"\x90\x82\x97\x7f\x1f\xf7\x03\x21\x05\x80\x96\x94\xf7\x01\x0a\x95\x7f\x96\x1f\x0e\xf8\x54\xf8\x3d\x15\xfb\x4c\x26\x1d\xd4\x39\x0a" +"\xfb\x0b\x06\x6b\x81\x89\x7e\xf7\x11\x0a\x6d\x9d\x7f\xb6\x1e\xf7\xeb\x06\xa8\x9a\x8f\x96\x99\xdf\x0a\xfb\x09\x06\xf7\x3d\xf8\x81" +"\x15\xa4\x9b\x93\x97\x9c\x1a\x9d\x7d\x98\x77\x7f\x83\x88\x7e\x79\x1e\xfb\x32\x21\x05\x75\x7d\x81\x7c\x52\x0a\x96\x90\x95\x9b\x1e" +"\x0e\xf8\x54\x35\x1d\xaf\xf8\x6f\x15\xe4\xf7\x31\x1d\x85\x91\xfb\x12\xf7\x11\xfb\x4b\xfb\x10\x05\x6e\x76\x86\x86\x79\x1a\x79\x98" +"\x7e\x9e\x95\x26\x0a\xf8\x54\x67\x1d\x89\x7e\xb6\x0a\xf7\xeb\x20\x0a\x9b\x1a\x9c\x80\x9b\x7d\x69\x0a\xfb\x09\x06\x52\xf8\xa5\x15" +"\x63\x65\x68\x65\x6f\xa1\x76\xa9\xb3\xb1\xae\xb1\xa7\x75\xa0\x6d\x1f\xf7\x64\x16\x62\x62\x1d\x6d\x1f\x0e\xf8\x54\x35\x1d\x74\xf8" +"\xbd\xf7\x65\x1d\x83\x91\x81\x96\xf7\x32\x1d\x86\x94\x7f\x97\x1f\x0e\xf7\xee\xf8\xc4\x15\x99\x92\x88\x7a\xa1\x1f\x71\xb0\xac\x7c" +"\xa1\x1b\xad\xa9\x9c\xb4\xb4\x1f\xa0\xa1\x95\x9b\x98\x1a\x99\x7d\x97\x7a\x80\x78\x80\x7d\x7e\x1e\x6a\x6b\x87\x88\x7d\x1b\x81\x80" +"\x98\x1d\x6c\x6a\x7c\x6d\x6b\x1f\x6f\x71\x7f\x78\x7b\x1a\x7c\x98\x80\x9b\x96\x95\x90\x95\x95\x1e\xb0\xb0\x94\x91\x9c\x1b\x56\xfb" +"\x1b\x92\x0a\x0e\x24\x0a\xf7\x55\xf7\x9a\x15\xa5\x9c\x93\x95\x9c\x1a\x9e\xf7\x06\x0a\x76\x7d\x80\x7c\x7c\x1a\x78\x99\x7e\x9e\x96" +"\x95\x8f\x96\x9c\x1e\x0e\x24\x0a\xc5\xf7\x88\x15\xe4\x31\x05\x81\x36\x0a\xa2\x96\x8a\x8d\x7a\x9b\x1f\xfb\x12\xf7\x11\xfb\x4b\xfb" +"\x10\x05\x6e\x76\x86\x86\x79\x1a\x79\x99\x7e\x9d\x95\x94\x8e\x95\x99\x1e\x0e\x24\x0a\x67\xf7\xbe\xc7\x0a\xb4\xb1\xae\xb1\xa7\x75" +"\xa0\x6c\x1f\x0e\x24\x0a\x83\xf7\xd6\x15\x98\x7d\x86\x8e\x7f\x1b\x70\x74\x75\x73\x82\x91\x81\x96\x80\x1f\xf7\x02\x21\x05\x80\x97" +"\x94\x86\x96\x1b\xa5\xa3\xa1\xa2\x95\x87\x93\x7d\x98\x1f\x0e\x24\x0a\xf7\x78\xf7\xc0\x15\x7d\x7b\x81\x78\x79\x1f\x6e\x6f\x87\x88" +"\x7d\x1b\x81\x80\x98\x1d\x6c\x6a\x7c\x6e\x6c\x1f\x6f\x71\x7e\x78\x7a\x1a\x7c\x98\x80\x9b\x96\x95\x8f\x96\x95\x1e\xb0\xb1\x93\x8e" +"\x1d\xa0\xa1\x94\x99\x98\x1a\x99\x7d\x97\x7b\x1e\x0e\xf8\x48\xf8\xcc\x8c\x1d\x75\x7f\x8c\x8a\x9c\x79\x1f\xf7\x14\xfb\x10\xf7\x49" +"\xf7\x10\x05\xa7\x9e\x91\x92\x9d\x1a\x9d\x7e\x98\x78\x81\x82\x87\x81\x7d\x1e\xa5\xfb\xb5\x15\x8e\x98\x8c\x95\x93\x7f\x0a\x7f\x1e" +"\x9a\x69\x78\x0a\xf7\x11\x63\x1d\x4a\x61\x0a\x94\x8e\x93\x97\x1e\x79\xaf\xbc\x82\xc5\x1b\xf7\x26\xf7\x05\xd2\xe6\xb0\x79\xaa\x6a" +"\x9f\x1f\x71\x9b\x63\x96\x43\x94\x4e\x93\x84\x8d\x7f\x8f\x08\x80\x90\x83\x91\x91\x1a\x9b\xbf\x9b\xbd\xb5\xa9\x83\x79\xa1\x1e\x6b" +"\x96\x95\x83\xa5\x55\x1d\x93\x91\xa6\x08\x0e\xf8\xbd\xf8\xe8\x15\xa5\x9c\x93\x96\x9b\x1a\x9e\xf7\x06\x0a\x75\x7d\x81\x7c\x52\x0a" +"\x96\x90\x95\x9b\x1e\xf7\x68\x4b\x15\xfb\x20\x26\x1d\xa9\x06\x65\x65\x1d\x5a\x1b\x5d\x72\x9a\xa7\x91\x8c\x92\x8d\x93\x1f\xc7\xf7" +"\xa2\x5a\x1d\x93\x94\x8a\x9d\x1b\x4b\x1d\x7b\x1a\x42\xc8\x5b\xe5\x61\x1d\xa9\x98\x35\x0a\x9c\x5c\x1d\xf8\x3c\xf8\xd6\x15\xe5\xf7" +"\x31\x1d\x88\x8d\x89\x8e\x8a\x8c\xfb\x13\xf7\x14\x1d\xf7\xcf\x4d\x15\xfb\x20\x26\x1d\xa9\x06\x65\x65\x1d\x5a\x1b\x5d\x72\x9a\xa7" +"\x91\x8c\x92\x8d\x93\x1f\xc7\xf7\xa2\x5a\x1d\x93\x94\x8a\x9d\x1b\x4b\x1d\x7b\x1a\x42\xc8\x5b\xe5\x61\x1d\xa9\x98\x35\x0a\x9c\x5c" +"\x1d\xf7\xdf\xf9\x0c\x15\x62\x4a\x0a\xb0\xa9\x75\x9f\x6d\xda\x0a\xd0\xfb\x63\x75\x1d\xee\x9f\x1d\x9c\x81\x9a\x7c\x91\x1e\x8d\x85" +"\x84\x8c\x7e\x1b\x0e\xf7\xfe\xf9\x24\x15\x98\x7d\x86\xf7\x28\x0a\x95\x81\x1f\xf7\x03\x21\x05\x80\x96\x95\xf7\x01\x0a\x93\x7e\x98" +"\x1f\xf7\x1c\xfb\x11\x15\xfb\x20\x26\x1d\xa9\x06\x65\x65\x1d\x5a\x1b\x5d\x72\x9a\xa7\x91\x8c\x92\x8d\x93\x1f\xc7\xf7\xa2\x5a\x1d" +"\x93\x94\x8a\x9d\x1b\x4b\x1d\x7b\x1a\x42\xc8\x5b\xe5\x61\x1d\xa9\x98\x35\x0a\x9c\x5c\x1d\x53\x0a\xf8\x54\xf7\xa6\x2f\x1d\xf7\xe4" +"\xf9\x0c\xc7\x0a\xb3\xb1\xae\xb1\xa7\x75\xa0\x6d\x1f\xfb\xc5\xfd\x05\x58\x1d\x0e\xf7\xa9\xf2\x15\xf7\xc9\xf7\x82\x9d\xdf\x05\xfc" +"\x35\x06\x73\x21\x05\x89\x81\x89\x7e\x84\x1a\x75\x9e\x7a\xa4\xae\xa2\xa2\xb7\x95\x1e\x8c\x90\x05\xf7\x1a\x06\xfb\xc7\xf7\x5e\x1d" +"\x99\x8c\x91\x79\x0a\x6c\x75\x7a\x68\x80\x1e\x81\xf8\x65\x8c\x1d\x74\x80\x8c\x89\x9c\x7a\x1f\xf7\x14\xfb\x10\xf7\x49\xf7\x10\x05" +"\xa8\x9e\x90\x92\x9d\x1a\x9d\x7e\x98\x79\x80\x82\x87\x81\x7d\x1e\x0e\xf7\xf9\xf8\x98\x15\x48\x06\x67\x75\x7b\x71\x7c\x97\x7f\x9a" +"\x89\x1f\x8f\x06\x71\xfb\x0b\x05\x6a\x76\x7a\x72\x76\x98\x82\xa9\x1f\xd0\x06\xae\xa1\x9c\xa5\x9e\x7f\x94\x72\x8c\x1f\x9f\xe6\x05" +"\xa6\xad\x9d\x93\xa4\x1b\xa7\x99\x84\x7c\x89\x8a\x87\x8a\x87\x1f\x77\x2d\x05\x6f\x89\x78\x7a\x74\x1a\x76\x98\x82\xa9\x1e\xc2\x06" +"\xae\xa1\x9b\xa6\x9a\x80\x97\x7b\x8c\x1f\x88\x8c\xa0\xe9\x05\x8d\x95\x8c\x95\x93\x1a\xb9\x63\xa9\x50\x6f\x71\x83\x7e\x75\x1e\x85" +"\x87\x05\x0e\xf8\x73\x16\xa8\x99\x28\x1d\x9c\xf7\x0c\x0a\x70\x06\xbb\xf7\x6e\x05\xa8\x06\xaa\x97\x2a\x0a\x9d\x9b\xf7\x0c\x0a\x6f" +"\x06\x92\xac\x05\xa1\x91\xc2\x0a\xfb\x28\xf7\x06\x1d\x4a\x3a\x81\x0a\x7d\x25\x0a\x97\x06\x5b\xfb\x6e\x05\x78\x06\x6b\x81\x88\xf7" +"\x04\x0a\xf7\x1b\x06\xb0\x8c\x95\x8e\x9d\x9d\x08\x7a\x96\x95\x86\xaf\x1b\xfb\x01\xf3\x15\xbb\xf7\x6e\x05\xf7\x29\x06\x5a\xfb\x6e" +"\x05\x79\x06\x69\x7e\x87\x79\x79\x1f\x9d\x80\x7f\x8f\x6a\x1b\x0e\xf8\xb6\xf2\x15\xd2\xf7\xd6\x05\xfb\x40\xf7\x06\x1d\x48\x6f\x76" +"\x86\x7d\x70\x1f\x98\x6f\x6f\x91\x6c\x1b\x3a\x81\x0a\x84\x25\x0a\x90\x39\x0a\x7f\x38\x1d\xf8\x6a\x06\xa7\x9a\x8f\x96\x98\x1f\x9b" +"\x97\x94\x9d\x9c\x1a\xa8\x7a\x97\x60\x1e\xfb\xb9\x16\x52\x06\xbc\xf7\x6f\x05\xc3\x06\xa3\xf2\x15\x52\x89\x0a\x9d\x9f\x1b\x92\x90" +"\x8a\x89\x97\x1f\x83\x7a\x89\x85\x88\x7d\x08\xa8\xfb\xf8\x15\xbc\xf7\x6f\x05\xcb\x06\x5a\xfb\x6f\x05\x0e\xf8\xb5\xf2\x15\xf7\x03" +"\xf8\x87\x05\xfb\x1b\x06\x6c\x8c\x73\x85\x70\x7d\x08\x98\x70\x6e\x91\x6c\x1b\x3a\x40\x4e\x39\x79\x1f\x83\x69\x05\x84\x06\x6b\x81" +"\x3a\x1d\x90\x39\x0a\x7f\x38\x1d\xf8\x6a\x06\xa7\x9a\x8f\x96\x98\x1f\x9b\x97\x94\x9d\x9c\x1a\xa8\x7a\x97\x60\x1e\x5a\xf7\xd6\x15" +"\x4b\x89\x0a\x9e\x9f\x1b\x92\x92\x8a\x87\x98\x1f\xfb\x98\xfc\x1c\x15\x52\x06\xbc\xf7\x6f\x05\xc3\x06\xa3\xf2\x15\x52\x89\x0a\x9e" +"\x9f\x1b\x92\x90\x8a\x88\x97\x1f\x83\x7a\x89\x85\x88\x7d\x08\xa8\xfb\xf8\x15\xbc\xf7\x6f\x05\xcb\x06\x5a\xfb\x6f\x05\x0e\xf8\xdb" +"\xf7\x34\x15\xad\xa7\x9e\xb0\xb0\x1a\xc0\x65\xaf\x52\xf7\x07\x0a\x62\x60\x7b\x0a\xa2\x7b\x9b\x1e\x54\xf7\x12\x15\xa3\x9b\x7d\x75" +"\x6b\x71\x71\x6a\x8a\x0a\xac\x1f\x6a\xf7\x24\x1d\xfb\x5d\xf8\x91\x5e\x0a\xf7\xe8\xf7\x4e\x15\x93\x96\x91\x98\x93\x1a\x9a\x80\x96" +"\x7b\x7d\x80\x84\x79\x7e\x1e\xfb\xd5\xfc\x47\x05\x83\x7f\x86\x7f\x84\x1a\x7b\x96\x80\x9b\x98\x97\x93\x9c\x98\x1e\x0e\xf8\xc2\xf8" +"\x91\x15\x92\x96\x91\x98\x93\x1a\x9a\x80\x96\x7b\x7d\x81\x9a\x1d\x82\x7e\x86\x81\x50\x0a\x96\x93\x9c\x98\x1e\x75\xf8\x2f\x9c\x0a" +"\xf7\xee\xfb\xd9\x15\xad\xa7\x9e\xb0\xb0\x1a\xc0\x64\xaf\x53\xf7\x07\x0a\x61\x61\x1a\x58\xb2\x6a\xc8\xdc\xcb\xc5\xd4\xa3\x82\xa2" +"\x7b\x9b\x1e\x54\xf7\x12\x15\xa3\x9b\x7d\x76\x6a\x71\x71\x6a\x8a\x0a\xac\x1f\x6b\xfb\x33\x15\xa4\x9d\x79\x71\x6c\x71\x76\x67\x6f" +"\x79\x98\x9f\xaa\xac\xab\xab\x1f\x0e\xf8\xc2\xf8\x91\x15\x92\x95\x91\x99\x93\x1a\x9a\x80\x96\x7c\x7d\x80\x76\x0a\x50\x0a\x97\x93" +"\x9c\x98\x1e\xf7\xed\xf7\x67\x1d\x53\x41\x48\x4d\x46\x74\x92\x78\x9a\x79\x1e\x65\x70\x75\x63\x60\x7b\x0a\xa3\x7b\x9a\xb1\x0a\xfb" +"\xab\xf8\x47\x15\xeb\x06\xaa\x9e\x9a\xa3\x9e\x80\x92\x71\x1f\xfb\x37\x06\x69\xfb\x3c\x8a\x81\x05\x7d\x95\x80\x98\x91\x8e\x8c\x8f" +"\x93\x1e\x97\xa5\xa2\x92\x9d\x1b\xa6\x9c\x79\x6e\x78\x85\x77\x82\x7d\x1f\x75\x7e\x74\x82\x63\x1b\x6a\x7c\x8f\x99\x7f\x1f\x92\x84" +"\x88\x8d\x83\x1b\x78\x79\x78\x77\x6c\xb8\x75\xc7\xca\xb3\x9c\xb1\xa9\x1f\xa2\xa9\x98\xb2\xb0\x1a\xc7\x67\xb2\x54\x7c\x7f\x89\x85" +"\x73\x1e\x0e\xf7\xec\xf8\xc4\x15\xfb\x1f\xfb\x8f\x05\x85\x80\x88\x82\x84\x1a\x7d\x98\x80\x9a\x9d\x95\x93\xa2\x98\x1e\xf7\x2b\xf7" +"\xa7\x97\xc9\x05\xfb\x9f\x06\x80\x54\x05\x8a\x83\x8a\x87\x87\x1a\x7d\x97\x80\x9a\x9f\x98\x95\xa0\x92\x1e\xf7\xeb\x58\x15\x92\x95" +"\x91\x99\x93\x1a\x9a\x80\x96\x7b\x7e\x80\x76\x0a\x50\x0a\x97\x93\x9c\x97\x1e\xf7\xee\xf7\x67\x1d\x52\x42\x48\x4d\x46\x74\x92\x78" +"\x9a\x79\x1e\x66\x71\x74\x62\x60\x7b\x0a\xa2\x7b\x9b\xb1\x0a\x0e\xb2\x1d\xf7\x95\xf7\xc7\x15\xa5\x9d\x91\x93\x6e\x0a\x74\x7a\x82" +"\x7f\x7c\x1a\x78\x99\x7e\x9f\x94\x9a\x91\x95\x99\x1e\x0e\x22\x1d\x25\xf8\x0e\x46\x1d\x93\x0a\xf8\x28\xf7\x2b\x15\x93\x5c\xdb\x0a" +"\x78\x9f\x72\x8a\x1f\x81\x8a\x05\x89\x06\x87\x06\x2e\xf8\x60\x05\xfb\x48\x97\x1d\x9f\x06\xfb\x7a\xfb\xf8\x73\x8a\x80\x8a\x80\x86" +"\x19\x76\x80\x7c\x74\x76\x1a\x6d\xe5\x0a\xaa\xba\x05\xf7\x66\xf2\x15\xfb\x24\x06\xf7\x01\xf7\x3c\x05\xfb\x60\xea\x15\x8d\x95\x8b" +"\x8b\x8f\x1a\xa1\x81\x96\x79\x79\x7f\x7e\x73\x85\x1e\x6a\xfb\x2b\x05\x89\x84\x8b\x88\x86\x1a\x77\xf7\x20\x0a\x90\x1e\x0e\x22\x1d" +"\x2c\xf7\xd9\x47\x0a\xf8\x76\xf8\xc8\x15\xfb\x70\x6b\x0a\xc3\x06\xfb\x7b\xfb\xf9\x6b\x8a\x81\x89\x7d\x7f\x19\x7b\x7e\x31\x1d\xb6" +"\x1e\xf7\x18\xdc\x0a\x82\x85\x8c\x76\x1b\x7c\x06\xa9\xba\x05\xf7\x7d\x06\x94\x5c\x05\x79\x06\x6b\x81\x37\x0a\x79\x7a\x1a\x6d\x9d" +"\x7f\xb5\x1e\xcf\x06\x3f\xb2\x0a\xb8\xb6\xc9\xa6\x1f\xb4\x9d\x9b\x9d\xa7\x1a\xa6\x79\x9a\x6b\x1e\x82\x06\xfb\x2d\xf7\x2a\x15\xfb" +"\x25\x06\xf7\x03\xf7\x3d\x05\x0e\x22\x1d\xb9\xf8\x34\xe3\x1d\xc0\xf7\x22\x15\xa5\x9d\x91\x94\x9c\x1a\x9d\x7c\x99\x77\x7f\x85\x88" +"\x7f\x79\x1e\xfb\x2b\x20\x05\x74\x7b\x82\x7f\x7b\x1a\x78\x99\x7e\xa1\x92\x9a\x92\x94\x98\x1e\x0e\xbd\x1d\x56\x0a\xf8\x97\xf8\x3f" +"\x15\xa7\x9e\x90\x92\x6e\x0a\x73\x7a\x83\xf7\x61\x1d\x98\x1e\x0e\x56\x0a\xf7\xf7\xf8\x23\x15\x2e\xe5\x05\x94\x81\x83\x8f\x82\x1b" +"\x74\x72\x74\x76\x81\x8f\x84\x99\x7e\x1f\xf7\x17\xfb\x11\xf7\x43\xf7\x10\x99\x95\x92\x91\x8d\x8c\x19\x91\x91\x90\x98\x94\x1a\x9b" +"\x7c\x99\x7a\x81\x7e\x86\x83\x81\x1e\x0e\x6f\x1d\xf8\x00\xf8\x2c\x31\x0a\x6f\x1d\xf8\x04\xf8\x5f\xb9\x0a\x8c\x0a\xc6\x1d\xf4\x59" +"\x1d\xb6\x1d\x8f\x16\xf8\xe4\x06\xfb\x96\xf8\xc7\x05\x3f\x06\xfb\x0c\xfc\x70\x15\xf7\x32\xf7\xe6\xf7\x32\xfb\xe6\x05\x0e\x24\x1d" +"\xad\xf7\x28\x05\x8e\x9b\x8c\x91\x93\x1a\xa1\x21\x1d\xe3\xf9\x4e\x46\x1d\x24\x1d\xad\xf7\x28\x05\x8e\x9b\x8c\x91\x93\x1a\xa1\x21" +"\x1d\xf7\x66\x59\x1d\x24\x1d\xad\xf7\x28\x05\x8e\x9b\x8c\x91\x93\x1a\xa1\x21\x1d\xf7\x73\x80\x1d\x24\x1d\xad\xf7\x28\x05\x8e\x9b" +"\x8c\x91\x93\x1a\xa1\x21\x1d\xea\xf9\x19\x47\x0a\xf8\x40\x8f\x15\x76\x48\x6a\x6f\x4c\x89\x08\x29\x06\x6a\x83\x89\x7e\x7b\x1f\x7a" +"\x7e\x82\x7b\x7b\x1a\x6c\x9c\x7f\xb7\x1e\xf0\x06\xc8\xcb\xa4\xb6\xb9\x1f\xa5\x9f\xa0\xb4\xa1\xd3\xf3\xf8\x5c\x18\xc4\x1d\xc6\xf7" +"\x9c\x05\x0e\xb9\x1d\xf8\x04\x06\x40\x64\x71\xb5\x0a\xb7\xb6\xc8\xa4\x1f\x90\x8d\x92\x8e\xac\xf7\x27\x05\x8e\x9b\x8c\x91\x93\x1a" +"\xa1\x21\x1d\x0e\xb4\x1d\xd0\xf8\x99\x15\x8d\x96\x8b\x8b\x8f\x1a\xa0\x81\x96\x79\x79\x7f\x7e\x73\x85\x1e\x6a\xfb\x2b\x05\x8a\x87" +"\x8a\x84\x85\x1a\x79\x95\x80\x9d\x9d\x97\x98\xa4\x90\x1e\xf7\x4a\xfb\x1c\x15\xd8\x06\x8a\x89\x05\x87\x78\x8b\x8a\x83\x1a\x74\xa9" +"\x1d\x8e\x93\x91\xa6\xa4\xf7\x00\x18\x8e\x9b\x8c\x90\x93\x1a\xa2\x78\x9c\x72\x7a\x7a\x83\x7e\x7e\x1e\x80\x80\x88\x84\x85\x6f\x8a" +"\x87\x18\x3e\x2b\x1d\xf7\x76\x06\x81\x60\x05\x88\x7b\x8a\x86\x83\x1a\x74\x9f\x7a\xa3\x9c\xf7\x1b\x0a\xac\xf7\x28\x18\xfc\x59\x27" +"\x1d\x95\x06\x3c\xfb\xfa\x05\x7f\x06\x6c\x80\x36\x1d\xf8\x6d\x06\xad\xf7\x28\x05\x8e\x99\x8c\x93\x92\x1a\xa2\x78\x9c\x72\x67\x75" +"\x75\x5e\x81\x1e\x80\x5c\x05\xfb\x8b\x06\x0e\xf8\x2d\xf7\x7a\x44\x1d\x7b\x1a\x71\x97\x7e\xa8\x45\x0a\x0e\xdb\xf8\x99\x15\x8d\x93" +"\x8b\x8d\x8f\x1a\xa1\x81\x96\x79\x79\x7f\x7e\x73\x85\x1e\x6a\xfb\x2b\x05\x8a\x86\x8a\x86\x86\x1a\x77\xf7\x20\x0a\x91\x1e\xf7\xfe" +"\xfb\x1e\x44\x1d\x7b\x1a\x71\x97\x7e\xa8\x45\x0a\x0e\xf7\x93\xf7\xf2\x15\xdc\xb0\xc4\xb7\xce\x1b\xc1\xbd\x6d\x6b\x1f\x8a\x72\x05" +"\x74\x9a\x7c\xa2\xab\xa0\xa1\xb7\x95\x1e\x9d\xdb\x05\x8e\x9a\x8c\x91\x93\x1a\xa2\x7b\x9b\x74\x7a\x7f\x85\x7b\x7c\x1e\xa8\x57\x72" +"\x92\x58\x1b\xfb\x11\xfb\x0f\x2d\xfb\x1a\x5c\x1f\x6f\x06\x75\x7b\x7c\x75\x7a\x93\x84\x9d\x1f\xa2\x06\x84\x6c\x05\x72\x06\x75\x7b" +"\x7c\x75\x7a\x93\x83\x9d\x1f\xa6\x7e\x06\xfb\x0a\xe3\x3d\xf7\x17\xdd\xd4\xa4\xb8\xc0\x1e\xa4\xa1\x97\x9e\x9f\x1a\xa3\x7a\x9d\x74" +"\x7e\x7f\x86\x80\x7e\x1e\x6d\x71\x8b\x8b\x81\x86\x08\x7d\x72\x65\x83\x64\x1b\x3e\x5f\xb0\xcf\x88\x1f\xf7\x36\x06\xa2\x9b\x9b\xa1" +"\x9c\x83\x92\x78\x1f\xfb\x3a\x06\x92\xaa\x05\xf7\x57\x06\xa2\x9b\x9b\xa0\x9c\x83\x92\x78\x1f\x0e\xf7\xfd\xc2\x1d\x6e\x1d\xfb\x7f" +"\xf9\x86\x46\x1d\xb3\x1d\x23\xf9\x2f\x31\x0a\x6e\x1d\xfb\x84\xfb\x3a\x23\x1d\xb3\x1d\x27\xf9\x62\xb9\x0a\xf7\x21\xf8\x48\x15\x84" +"\x06\x89\x06\x61\x6c\x78\x70\x75\xa0\x80\xb6\x8a\x1f\x52\xfb\x91\x05\x89\xc9\x0a\x7a\x1a\x6e\x9d\x7e\xb5\x1e\xf7\x0d\x06\xa9\x98" +"\xf7\x25\x1d\x6e\x1b\x82\x2b\x1d\xf7\x62\x06\x6e\xfb\x13\x05\x80\x38\x1d\xf7\x0d\x06\xa8\x98\x28\x1d\x9b\x1a\x98\x86\x97\x82\x93" +"\x1e\x92\x82\x82\x8d\x6f\x1b\x8a\x06\xc3\xf7\x91\x05\x9d\x94\x8c\x8d\x95\x1f\xa4\x90\x9e\x9e\x9e\x1a\xa0\x76\x98\x68\x1e\x88\x06" +"\x87\x06\x90\xa5\x05\xb3\x8f\xa4\xa3\xac\xce\x0a\x6e\x9d\x7e\xb5\x1e\x95\x06\x86\x72\x05\xfb\x62\x06\x90\xa4\x05\x97\x06\xaa\x96" +"\x2a\x0a\x9d\x9c\xce\x0a\x73\x99\x7d\xa6\x88\x1e\xf7\xb7\x21\x15\x83\x68\x05\xfb\x62\x06\x93\xae\x05\x0e\xf8\x2d\xf7\x7a\x44\x1d" +"\x7b\x1a\x71\x97\x7e\xa8\x45\x0a\xf7\x67\xf8\x78\x31\x0a\xf7\xd1\xf8\x61\x15\xa9\x06\xaa\x97\x8e\x96\x9a\x1f\x9a\x98\x95\xf6\x0a" +"\xfb\x3c\x42\x1d\x95\x1d\xb5\x1e\xa8\x06\x3c\xfb\xfa\x05\x6c\xeb\x0a\xb6\x1e\xf7\x3c\x20\x0a\x9c\x1a\x97\x86\x96\x81\x94\x1e\x93" +"\x82\x82\x8c\x6f\x1b\x6e\x06\xf7\xea\xf7\xfa\x15\x31\xfc\x2a\x81\x60\x87\xa3\x1d\x68\x1b\x70\x6f\x92\x9a\x63\x1f\x90\x7e\x81\x8e" +"\x84\x1b\x6d\x6b\x6b\x6d\x7d\x90\x81\x95\x83\x1f\x77\xa4\xd5\x78\xbf\x1b\xc5\xc7\x9f\xae\xbe\x1f\xc4\xb2\xa4\xb0\x99\xcb\xf7\x08" +"\xf8\x9d\x18\xfb\x35\x49\x1d\x9d\x7f\xb5\x1e\x0e\xf8\x2e\x49\x0a\x9c\x9c\x1a\x9c\x81\x9b\x7c\x74\x1d\x47\xf9\x4e\x5f\x0a\x28\x0a" +"\xe2\x80\x1d\x28\x0a\x62\xf9\x19\x47\x0a\xf8\x5c\x49\x0a\x9d\x9c\x52\x1d\x82\x85\x8c\x76\x1b\xfb\xc1\x27\x1d\xeb\x06\x3b\xfb\xfa" +"\x05\x2a\x26\x1d\xf7\x77\x06\x40\xb2\x0a\xbb\xb9\xc8\xa4\x1f\xb4\x9c\x9b\x9c\xa7\x1a\x9c\x81\x9b\x7c\x69\x0a\x2c\x06\x0e\x58\x0a" +"\xd9\x1d\x6a\xf9\x0d\x15\x7c\x1d\xf7\x61\x16\x69\x6c\x6e\x6b\x73\x9d\x79\xa5\xae\xaa\xa8\xac\xa3\x78\x9c\x71\x1f\x0e\xf8\x50\xf8" +"\x60\x15\xea\xf7\x25\x0a\xfb\xbc\x97\x1d\xe8\x53\x1d\x2c\xf7\x6d\x1d\xf7\xbd\xf7\x25\x0a\x2e\x06\xfb\x6d\xf8\x31\xbb\x0a\xf8\x5c" +"\xf8\x61\x15\xed\x06\xa9\x97\x8e\x97\x9a\x83\x1d\xfb\xc1\x49\x1d\x9d\x7f\xb5\x1e\xeb\x06\x3b\xfb\xfa\x05\x2a\x38\x1d\xf7\xc1\x6b" +"\x1d\x9a\x97\x95\xf6\x0a\x2c\x06\xba\xf8\xcb\xcc\x1d\xf8\xb9\x94\x1d\x9a\x97\x95\x9c\x9c\x1a\x9c\x80\x51\x0a\x85\x8c\x76\x62\x0a" +"\x81\x60\x87\xa3\x1d\x67\x1b\x6b\x6f\x93\x9f\x5e\x1f\x9f\xe4\xf7\x23\x0a\x72\x67\x75\x75\x5f\x81\x1e\x68\xfb\x32\x05\x5b\xe9\xbf" +"\x7b\xc7\x1b\xc7\xc8\x9e\xae\xbd\x1f\xc4\xb3\xa4\xb0\x9a\xca\x08\x41\xf8\xa9\x15\xe5\x31\x05\x82\x36\x0a\xa1\x97\x8a\x8c\x79\x9c" +"\x1f\xf7\x0e\x1d\xf7\x57\x9d\x0a\x97\x8e\x96\x9a\xd3\x1d\x9a\x8f\x96\x98\x48\x0a\x82\x85\x8b\x77\x1b\x6d\x06\x0e\x8b\x0a\xf3\xfb" +"\x72\x23\x1d\x2f\x0a\xf7\x8d\x30\x0a\xf7\xf3\xf8\x3a\x15\xcc\xfb\xd2\xdb\x0a\x79\x9e\x71\x1f\x81\x8a\x05\x89\x06\x87\x06\x2e\xf8" +"\x60\x05\xfb\x6c\x97\x1d\xc3\x06\xfb\x7a\xfb\xf9\x05\x72\x80\x89\x86\x80\x1f\x76\x80\x7d\x75\x75\x1a\x6e\xe5\x0a\x0e\x2f\x0a\xf8" +"\x10\xf8\x29\x15\x8c\x8c\x8c\x8b\x8c\x8d\x8f\x64\x0a\x7c\x83\x7b\x7e\x1e\x23\xfb\x0e\x05\x7b\x7a\x86\x82\x65\x0a\x2f\x0a\xb5\xfb" +"\x72\x23\x1d\x2f\x0a\xf7\x6d\xf7\xbf\x15\x60\x60\x64\x63\x6c\xf7\x2e\x0a\xb2\xb3\xab\x73\xa2\x69\x1f\x82\x06\x0e\x8f\x0a\x3c\x0a" +"\xf8\x08\x30\x0a\x3c\x0a\xf7\x7c\x59\x1d\x3c\x0a\xf7\x11\xfb\x72\x23\x1d\xf7\x68\xf8\x03\x15\xf7\x3f\xfc\x03\x05\xf4\x06\xf1\xf8" +"\x61\x05\xcb\x1d\x9a\x97\x95\xe8\x0a\x0e\xf8\x11\x5c\x0a\x2b\xf7\xda\x5f\x0a\x2e\x1d\xe2\xf7\x92\x46\x0a\x6e\x72\x88\x87\x5f\x1d" +"\xf7\xa9\xf0\x46\x0a\x6e\x72\x88\x87\x5f\x1d\x0e\x2e\x1d\x46\xf7\xa5\x47\x0a\xf7\x35\xec\x15\x8e\x07\x8e\x07\x9a\x81\x95\x7d\x75" +"\x81\x7c\x5e\x81\x1e\x7c\x47\x05\xf7\x58\x06\xae\xf7\x38\x7f\x8f\x83\x8d\x88\x8d\x19\x60\x9c\x76\xaf\xc4\x1a\xf2\xd3\xe4\xde\xc7" +"\xb2\x5a\x41\x34\x5a\x44\x3d\x71\x1e\x84\x88\x68\xfb\x38\x05\xf7\x6c\x06\x99\xcd\x05\x8d\x95\x8d\x98\x94\x1a\x9f\x82\x95\x7b\x7a" +"\x80\x81\x76\x85\x1e\x66\x06\xe4\xc4\xbd\xe6\xf4\x1a\xf7\x1a\x35\xe9\xfb\x0d\x41\x4d\x6d\x4e\x57\x1e\x5b\x52\x70\x42\x41\x1a\x38" +"\xa9\x4e\xc8\x61\x1e\x43\xf8\x38\xbb\x0a\xf8\x11\x5c\x0a\x0e\xf8\x28\xf8\xd6\x15\x3c\x46\x67\x42\x4c\x1f\x51\x46\x6a\x31\x2c\x1a" +"\xfb\x20\xd8\x32\xf7\x0e\xe9\xe1\xc0\xed\xca\x1e\xb2\xc9\xa0\xd5\xd8\x1a\xf7\x1f\x3c\xe4\xfb\x0d\x1e\x23\x04\xc5\xad\x5f\x3f\x44" +"\x77\x4e\x62\x55\x1f\x57\x63\x5e\x71\x5b\x1b\x50\x6a\xb7\xdb\xce\x9f\xc8\xb4\xc0\x1f\xc0\xb4\xb6\xa5\xbc\x1b\xfb\x9e\xb6\x15\x8c" +"\x9b\x05\x9f\x81\x96\x79\x79\x80\xf7\x18\x0a\x85\x85\x1a\x78\x95\x80\x9d\x9d\x96\x97\xa5\x91\x1e\x0e\xbb\x1d\xf7\x0b\xf7\xac\x15" +"\xa5\x9d\x91\x93\x6e\x0a\x74\x7a\x82\x80\x7b\x1a\x78\x99\x7e\x9f\x95\x99\x91\x95\x98\x1e\x0e\xf8\x6b\xf8\xad\x15\x98\x06\xa7\x91" +"\x8c\x94\x98\x1f\x96\x93\x92\x97\x96\x1a\xa1\x7d\x93\x66\x1e\xfb\x17\x06\x61\x74\x7c\x71\x76\x9a\x82\xaf\x1f\x95\x06\x86\x76\x3d" +"\x82\x56\x78\x56\x65\x19\x3f\x54\x5a\x35\x3b\x1a\x20\xda\x41\xf7\x10\x82\x1e\x86\x77\x05\x80\x06\x7f\x06\x6e\x73\x78\x75\x76\x9b" +"\x82\xae\x1f\xf7\x17\x06\xa7\x91\x8c\x94\x97\x1f\x97\x93\x92\x96\x97\x1a\xa1\x7d\x93\x66\x1e\x7f\x06\x90\x9f\x05\xf7\x3d\x92\xf7" +"\x23\xf7\x19\xf7\x2a\x1a\xce\x61\xcd\x4e\xa8\x1e\x6d\x99\x6d\x92\x60\x8f\x08\xfb\x57\xfc\x1b\x15\x47\x91\x5f\xb9\xcc\x1a\xe9\xda" +"\xdd\xef\x96\x1e\xf7\x01\x16\xd5\x84\xb5\x61\x47\x1a\x2d\x38\x37\x26\x83\x1e\x0e\xc8\x1d\xf7\x94\xf7\x8b\x15\x5e\x91\x76\x9f\xb1" +"\x1a\x9a\x8f\xa8\x93\xac\x1e\xb2\xf7\x44\x05\x2e\x06\x57\x6c\x74\x64\x71\x99\x7e\xaa\x89\x1f\x7b\x45\x05\x84\x6b\x86\x69\x77\x1a" +"\x39\xc1\x53\xec\x74\x1e\x82\x63\x05\x5f\x89\x6e\x72\x68\x1a\x6e\x9e\x7e\xb5\x1e\xe3\x06\xbe\xaa\xa2\xb0\xa7\x7c\x98\x68\x8d\x1f" +"\x94\xb3\x05\xc8\xbf\x9b\xa8\xb2\x1f\xc7\xbe\x91\x97\xaa\xf7\x1d\x9b\xd4\x18\xb4\x8e\xa6\xa3\xad\x1a\xa7\x76\x99\x62\x1e\x30\x06" +"\x64\xfb\x41\x71\x21\x76\x70\x45\x80\x19\xba\xf7\x69\x05\xb9\x8e\xa5\xa2\xb1\x1a\xaa\x79\x94\x50\x1e\x54\x06\x64\x7a\x88\x84\x7e" +"\x1f\x7a\x80\x7f\x76\x77\x1a\x70\x9a\x7f\xae\x89\x1e\x0e\x3b\x0a\xf7\x7c\xf8\x36\x77\x1d\x3b\x0a\xd3\xf8\x1a\x15\x2e\xe5\x05\x94" +"\x81\x83\x8f\x82\x1b\x74\x72\x74\x76\x81\x8f\x84\x99\x7e\x1f\xf7\x17\xfb\x11\xf7\x43\xf7\x10\x99\x95\x92\x91\x8d\x8c\x19\x91\x91" +"\x90\x98\x94\x1a\x9b\x7c\x99\x7a\x81\x7e\x86\x83\x81\x1e\x0e\x3b\x0a\x7c\xfc\x46\x23\x1d\x99\x0a\x6d\x1d\x5f\xf7\xc8\x77\x1d\xf7" +"\xe7\x7f\x15\xf7\x21\x96\xef\xe0\xf7\x02\x1a\xba\x6f\xb5\x5d\x9f\x1e\x71\x97\x6c\x93\x55\x95\x3d\x9a\x83\xae\x1d\xb5\xc6\xb0\xcf" +"\xc7\xb3\x73\x67\x6b\x8b\x8b\x92\x82\x1e\x82\x92\x99\x85\x9a\x1b\x9c\x9c\x93\x98\x98\x1f\x96\x95\x8f\x94\x91\xa5\x9d\xe0\x18\x90" +"\x9e\x8b\x8d\x93\x1a\xa2\x79\x9b\x72\x76\xb4\x0a\x2d\xfb\x06\x64\xa2\x63\xae\x75\x1f\xa7\x79\xa8\x83\xcd\x7f\xcd\x7f\x98\x88\x9e" +"\x80\x08\x9a\x83\x94\x7d\x7d\x1a\x60\x49\x67\x3a\x4c\x54\xa6\xaa\x88\x1e\x89\xa6\x8b\x8b\x85\x93\x85\x1d\xa5\x7b\xb7\x7d\xaa\x87" +"\x76\x2e\x18\x8c\x9c\x95\x8c\x8d\x1b\xa6\x9a\x82\x7b\x7e\x80\x83\x78\x7a\x74\x92\x95\x7b\x1f\x96\x79\x88\x8c\x7f\x1b\x73\xf7\x47" +"\x1d\xd4\xbf\xba\xcd\xb1\x79\xa1\x64\x94\x1f\x0e\xb5\x1d\xfb\x2f\xf7\xb5\x15\xe4\x31\x05\x82\x36\x0a\xa1\x97\x8a\x8c\x7a\xf7\x17" +"\x0a\x78\x87\x1d\x6d\x1d\xfb\xb7\xfc\xb4\x23\x1d\xf9\x2f\xf8\xc8\x15\xfc\x4b\x06\x78\x35\xf7\x12\xfb\x51\xfb\x69\xfb\x5a\x77\x30" +"\x05\xf8\x51\x06\xae\xf7\x32\x05\x8d\x92\x8c\x93\x92\x1a\xa0\x7c\x98\x73\x6a\x79\x7b\x65\x80\x1e\x7b\x52\x05\xfb\x68\x06\xf7\x61" +"\xf7\x4e\xfb\x08\xf7\x44\x05\xf7\x57\x06\x81\x47\x05\x8a\x84\x8b\x8b\x80\x1a\x73\x99\x7e\xa5\xac\x9e\x9d\xaf\x94\x1e\x0e\x97\x0a" +"\xf8\x41\xf7\xeb\x15\xa5\xf7\x0a\x05\xf0\x06\x7f\x57\xe6\x0a\x96\x95\x8e\x94\x91\xa6\xae\xf7\x30\x18\xfc\xa0\x06\x69\xfb\x2f\x05" +"\x86\x78\x8b\x8a\x83\x1a\x74\x9e\x7a\xa4\x9c\x9d\x93\x98\x98\x1e\x95\x95\x90\x95\x90\xa5\x97\xc0\x18\xee\x06\x71\xfb\x0a\x05\x56" +"\x06\x6b\x83\x89\x7e\x7a\x1f\x7b\xf7\x4e\x1d\x91\x89\xa8\x1b\xbf\x06\x6c\xfb\x1d\x82\x1d\xf7\x7b\x06\xa7\x9b\x8f\x96\x98\x92\x1d" +"\x4f\x06\xa9\xf7\x1d\x05\xbc\x06\xc0\xa7\xa1\xb5\xa6\x79\x97\x62\x1f\x0e\x57\x0a\xcd\x59\x1d\xf7\xf0\x16\xce\x06\xa7\x9a\x8f\x96" +"\x99\x92\x1d\x4e\x06\xdb\xf7\xfa\x05\xf0\x06\x78\x37\x05\x88\x7f\x8a\x81\x85\x1a\x74\xf7\x2a\x1d\x8f\x93\x91\xa7\xb5\xf7\x50\x18" +"\xfc\xa0\x66\x1d\x83\x84\x1a\x74\xcf\x0a\xa6\x9e\xe0\x18\xee\x06\x3b\xfb\xfa\x82\x1d\xdf\x06\x75\x27\x05\x8c\x9c\x94\x8c\x8e\x1b" +"\xa6\x9a\x82\x7b\x7e\x80\x83\x78\x7a\x74\x92\x95\x7b\x1f\x96\x79\x88\x8c\x7f\x1b\x73\xf7\x47\x1d\xd4\xbf\xba\xcd\xb1\x79\xa0\x64" +"\x95\x1f\x0e\xf7\xc6\xf7\xcb\x15\x8e\x97\x8c\x98\x05\x9b\x7f\x95\x78\x74\x7a\x7d\x74\x86\x1e\x75\x27\x05\x8a\x86\x8a\x86\x88\xf7" +"\x1a\x0a\x8f\x9b\x05\xf7\x12\x06\x88\x7d\x05\x8a\x87\x8b\x87\x86\xf7\x1a\x0a\xa1\xef\x05\x8c\x8e\x8b\x8f\x91\x1a\x9b\x7f\x95\x78" +"\x74\x7b\x7d\x74\x86\x1e\x87\x7d\x05\x86\xf7\x9f\x15\x37\x2d\x60\x46\x46\x1f\x46\x47\x63\x2d\x30\x1a\xfb\x14\xeb\x29\xf7\x13\xf7" +"\x4e\xf7\x41\xf7\x44\xf7\x4f\xf7\x18\x2b\xeb\xfb\x16\x1e\x76\x24\x15\xda\xc4\x4e\x37\xfb\x0d\xfb\x02\xfb\x0b\xfb\x03\x39\x52\xc7" +"\xe1\xf7\x0e\xf7\x02\xf7\x09\xf7\x06\x1f\x0e\xf8\xe0\xe1\x1d\x48\x5d\x46\xe4\x0a\x96\x8e\x96\x9a\xe0\x1d\x29\xdc\x44\x93\x1d\xfb" +"\xa0\xf8\xee\x5f\x0a\x23\x0a\x36\xf8\xa6\x46\x0a\x6f\x73\x87\x86\x5f\x1d\xf7\xa9\xf0\x46\x0a\x6f\x73\x87\x86\x5f\x1d\x0e\x23\x0a" +"\xfb\x85\xf8\xb9\x15\x64\x71\x77\x6e\x72\x98\x81\xae\x1f\xf7\x89\x06\xb1\xa7\x4b\x0a\x95\x0a\x2c\xdc\x41\xf2\x98\x96\x8b\x8c\x9a" +"\x1e\x53\x6b\x74\x6a\x5a\x1a\x5e\xc6\x0a\x82\x87\x8e\x93\xa5\x9d\xa0\xe1\xd4\x1f\xe1\xd2\xa4\xaf\xa1\xd9\x08\x0e\xf7\xfc\xf7\x7f" +"\x29\x0a\x76\x1b\x2f\x34\x1d\x0e\xf7\xfc\xf7\x80\x15\xf7\x65\xf7\x75\x05\xa0\x94\x8d\x8f\x96\x1f\xa2\x95\x9a\xa1\xa2\x1a\xa8\x78" +"\x98\x61\x1e\x2f\x06\x72\x7c\x88\x84\x7f\x1f\x79\x80\x7f\x77\x77\x1a\x7a\x93\x7f\x9e\x81\x1e\xfb\x03\xfb\x0c\x51\xf7\x0b\x05\xac" +"\x99\x9a\x9e\xa5\x1a\xa8\x79\x98\x60\x1e\x32\x06\x58\x8c\x6c\x73\x65\x1a\x6f\x9c\x7e\xb1\x8a\x1e\xf7\x02\xfb\x74\x6d\xfb\x19\x05" +"\x4d\x06\x58\x6c\x40\x1d\xf7\x7a\x06\xbf\xaa\xa2\xb2\xa8\x78\x98\x60\x1f\x50\x06\x5e\xf9\x0d\x15\x7c\x1d\xf7\x61\x16\x7c\x1d\x0e" +"\xc4\xf8\x99\xbf\x0a\xf7\xe5\xfb\x19\xd0\x0a\x82\x85\x8c\x76\x1b\x2f\x06\x6a\x81\x37\x0a\x7a\x7b\x1a\x77\x93\x7f\x9f\x83\x1e\xfb" +"\x07\xfb\x0e\x4d\xf7\x0d\x05\xab\x97\x9c\xa0\xa6\x1a\x9c\x80\x9b\x7d\x8f\x1e\x8e\x82\x85\x8c\x76\x1b\x32\x06\x6a\x81\x4e\x1d\x6e" +"\x9c\x7e\xb2\x1e\xf7\x05\xfb\x74\x6d\xfb\x1a\x05\x4d\x25\x0a\xf7\x7b\x06\xa7\x9a\x3d\x1d\x9c\x52\x1d\x82\x20\x1d\x4e\x06\x0e\x23" +"\x0a\x31\xf9\x14\xe3\x1d\x0e\xf9\x0f\xf8\x61\x15\xb7\x8c\xa8\xa4\xaf\x1a\x97\x86\x96\x82\x93\x1e\x93\x81\x82\x8d\x6f\x1b\xfb\x15" +"\x06\x6a\x82\x3a\x1d\xa8\x06\x50\xfb\xa1\x05\x53\x7e\x49\x5d\x45\x1b\x4f\x5f\xae\xba\x90\x8c\x92\xf7\x27\x0a\x97\x8e\x96\x99\x1f" +"\x9b\x98\x94\x9c\x9d\x1a\x97\x86\x96\x82\x93\x1e\x93\x81\x84\x8d\x6e\x1b\xfb\x16\x25\x1d\x70\x9b\x7d\xad\x8a\x1e\x51\xfb\x98\x05" +"\x88\x7a\x89\x7b\x7b\x1a\x2c\xdc\x45\x93\x1d\xfb\x18\xf8\x6b\xcc\x1d\x55\x0a\xf8\x16\xf9\x71\x15\xa5\x9d\x91\x93\x9d\x1a\x9d\x7c" +"\x98\x77\x80\x81\x87\x80\x7c\x1e\xfb\x2b\x21\x05\x73\x7a\x83\x7f\x52\x0a\x99\x91\x95\x99\x1e\x0e\xf7\xca\x6a\x0a\xa9\x1a\x9d\xc7" +"\x1d\xf7\x8c\xf9\x5e\x15\xe4\x31\x05\x82\x95\x93\x87\x96\x1b\xa3\xa2\xa1\xa1\x97\x8a\x8c\x79\xf7\x17\x0a\x77\x86\x85\x4d\x1d\x95" +"\x8f\x94\x99\x1e\x0e\x55\x0a\xf7\x0f\xf9\x91\xe3\x0a\xf7\x64\x16\x65\x64\x66\x66\x70\xa3\x73\xa7\xb4\xb0\xae\xb2\xa8\x75\xa1\x6c" +"\x1f\x0e\x55\x0a\xf7\x00\xf9\xae\x15\x97\x7e\x87\x8d\x7f\x1b\x74\x75\x77\x76\x80\x91\x81\x98\x7f\x1f\xf7\x0c\xfb\x00\x05\x82\x95" +"\x97\x85\x92\x1b\xa3\xa0\x9f\xa2\x97\x87\x90\x7c\x9a\x1f\x0e\xf8\x86\xf8\x60\x15\x81\x5f\x05\x87\x7a\x8a\x84\x86\x1a\x75\x9e\x7a" +"\xa5\xae\xa3\xa2\xb6\x94\x1e\xad\xf7\x2a\x05\xfc\x87\x06\x6a\xfb\x28\x05\x89\x7f\x89\x80\x86\x1a\x74\x9e\x7a\xa5\xad\xa3\xa2\xb6" +"\x94\x1e\x95\xb9\x05\xf7\x1c\xfb\x76\x15\x6b\x8a\x97\x7d\xa5\x1b\xae\x9e\xa0\xbc\x96\x1f\x95\xb9\x05\x8e\x97\x8d\x98\x95\x1a\xa3" +"\x7d\x98\x73\x70\x79\x7d\x6b\x7e\x1e\x33\x8d\x06\x8d\x07\x8e\x07\xa4\x7e\x99\x73\x69\x76\x74\x5c\x81\x1e\x81\x5d\x05\x86\x77\x8a" +"\x83\x83\x1a\x75\x99\x7d\xa4\xa6\x9d\x99\xab\x98\x1e\xfb\x11\xfb\x16\x15\x94\xb7\x05\x8e\x99\x8d\x95\x90\x1a\xa1\x78\x9c\x71\x68" +"\x74\x74\x60\x81\x1e\x6a\xfb\x2a\x05\xf8\x87\x06\xab\xf7\x28\x05\x8f\x9a\x8c\x94\x90\x1a\xa1\x78\x9c\x71\x68\x74\x74\x60\x81\x1e" +"\x81\x5d\x05\x0e\xf7\xfc\xf7\x7f\x29\x0a\x76\x1b\x2f\x34\x1d\xde\xf8\xf7\x31\x0a\xf8\x2a\xf7\x7f\x29\x0a\x77\x1b\x2e\x34\x1d\x51" +"\xe9\x1d\xf7\x7c\x71\x0a\xb0\xa1\xa0\xb8\x95\x1e\x99\xcb\x05\x43\x0a\xf7\x26\x30\x0a\xf7\x7c\x71\x0a\xb0\xa1\xa0\xb8\x95\x1e\x99" +"\xcb\x05\x43\x0a\x94\x80\x1d\xf7\x4e\xf2\x15\xf8\x0f\xf7\xff\xa1\xed\x05\xfc\x34\x06\x66\xfb\x39\x05\x89\x81\x89\x7f\x85\x1a\x75" +"\x9e\x79\xa3\x9d\x9d\x93\x98\x98\x1e\x95\x95\x8f\x94\x91\xa5\x99\xcb\x18\x43\x0a\x0e\x2d\x1d\xfb\x0a\xf8\x7b\x2b\x0a\xb1\x1d\xad" +"\xf7\xea\x2f\x1d\xaa\x0a\x93\x0a\xf8\xf3\xf8\xc8\x15\xfc\x7a\x06\x66\x6b\x6f\x69\x70\xa0\x7c\xb4\x1f\xaf\x53\x1d\x80\x34\x0a\xf7" +"\xb4\x06\xf7\x22\xeb\xd5\xf7\x00\xc1\x77\xb1\x61\xa4\x1f\xa2\x63\x56\x97\x50\x1b\xfb\x0e\x06\xa9\xf7\x12\x05\xf7\x6e\x06\x7e\x5a" +"\x05\x89\x82\x89\x7f\x83\x1a\x74\x9e\x7a\xa5\xad\xa1\xa1\xb7\x96\x1e\xfc\x1c\xfb\xc4\x15\xa7\xf7\x12\x05\xf7\x12\x06\xdb\xb4\x76" +"\x60\x62\x66\x76\x40\x1f\x0e\xbd\x1d\xf7\xcf\xc2\x1d\xf8\x34\x16\x86\x67\x05\x89\x7a\x8a\x7e\x86\x1a\x6d\xa1\x76\xaa\xab\x96\x99" +"\xc3\x98\x1e\x99\xc9\x05\x91\xa4\x8d\x96\x93\x1a\xab\x75\x9c\x60\x8c\x1e\xdb\xf7\xf8\x05\xc3\x8d\x77\x0a\xfb\xd8\x27\x0a\x66\xa2" +"\x7b\xc3\x1f\x63\xfb\x46\x70\xfb\x0d\x5d\x56\x3a\x87\x19\x73\x06\x6b\xfb\x1b\x05\x87\x77\x88\x7b\x84\x1a\x70\xa2\x76\xa9\xa8\x99" +"\x9a\xbe\x99\x1e\x9b\xc3\x05\xf7\x84\xf8\x60\x15\xf7\x10\x53\x1d\xfb\x30\x06\xa5\xa6\xa6\xcd\x9d\xd7\x08\x0e\xb4\x1d\xf7\x64\xf7" +"\x7b\x15\xd7\x06\x88\x7d\x8a\x81\x85\x1a\x74\x9e\x7a\xa4\xaf\xa1\xa0\xb9\x95\x1e\xa3\xf7\x00\xf7\x23\x0a\x73\x75\x76\x80\x7b\x7f" +"\x1e\x86\x83\x88\x81\x85\x73\x08\x3f\x06\xa7\xf7\x11\x05\xf7\x6e\x06\x82\x60\x05\x87\x7e\x8a\x81\x85\x1a\x75\x9e\x7a\xa5\xae\xa2" +"\xa1\xb7\x94\x1e\xad\xf7\x29\x05\xfc\x53\x06\x57\x6d\x40\x1d\x94\x53\x1d\x80\xea\x0a\xf8\x67\x06\xac\xf7\x29\x05\x8d\x97\x8d\x96" +"\x91\x1a\xa1\x77\x9c\x72\x69\x74\x74\x60\x81\x1e\x80\x5c\x05\xfb\x84\x06\xf7\x1a\xef\x0a\x79\x9c\x70\x1f\xf7\x61\x16\xf7\x0d\x0a" +"\x79\x9c\x70\x1f\x0e\xf7\x6d\xf3\x15\x61\x8a\x75\x79\x69\x1a\x66\xa2\x7d\xca\x1e\xbb\xa7\x1d\x7c\x9a\x69\x93\x1f\xad\xf7\x2d\x93" +"\x80\x92\x7d\x8e\x7d\x19\xad\xfb\x25\x8c\x84\x8b\x8b\x8e\x80\x19\x87\x8c\x88\x8c\x89\x1e\x69\x93\x9e\x80\xbc\x1b\xb7\xa3\x9e\xad" +"\xa7\x7a\x9b\x69\x91\x1f\x6b\xf7\x1e\x85\xa3\x80\x9f\x78\x9c\x19\x99\x92\xbf\xca\xb1\xc2\x08\x71\x91\x99\x80\xa6\x1b\xa4\x9a\x9a" +"\xa9\x92\x1f\x95\xb5\x05\x8e\x98\x8d\x9c\x96\x1a\xa8\x77\x9c\x68\x51\x69\x6c\xfb\x3d\xfb\x13\x1e\xa3\xeb\x05\x8f\x06\xae\xa2\xa1" +"\xab\xaf\x73\x99\x4c\x1f\x5f\x06\x4f\x74\x7d\x66\x71\x99\x7b\xa9\x82\x1f\x78\x29\x64\xf7\x08\x82\xa2\xf7\x2b\x1d\x87\x7b\x88\x7b" +"\x82\x1a\x72\xa1\x77\xa7\xa3\x97\x96\xaa\x98\x1e\x94\x5c\x9a\x66\xa3\x6a\x6e\x7d\x75\x78\x79\x71\x21\xfb\x2c\x18\x60\x89\x76\x7b" +"\x69\x1a\x68\xa2\x7a\xbc\xb4\x92\x90\xb9\xa9\x1e\xef\xf7\x2b\x97\x9d\x94\x95\xa5\xa3\x19\x0e\xf7\xad\xf7\xeb\x15\x59\x73\x7b\x68" +"\x77\x95\x7a\x9d\x82\x1f\x86\x95\x96\x89\xb1\x1b\xe7\xb0\x7c\x67\x74\x7d\x72\x73\x79\x1f\x76\x6f\x63\x81\x54\x1b\x45\x57\x9a\xb1" +"\x51\x1f\xa0\x6c\x7b\x92\x7d\x1b\x6f\x70\x70\x70\x70\xa3\x71\xbe\x6d\x1f\x68\xc7\xc9\x7c\xdc\x1b\xf1\xce\x9e\xb7\xbf\x1f\xb8\xb2" +"\xa5\xbe\xbf\x1a\xb7\x7b\xad\x6a\xa6\x1e\xc4\xb1\xa5\xb6\xc4\x1a\xe2\x41\xc5\xfb\x03\x53\x62\x80\x73\x67\x1e\x8c\x95\x8b\x8d\x8f" +"\x1a\xa6\x75\xa0\x6c\x6e\x7b\x7a\x63\x85\x1e\x82\x57\x7f\x65\x75\x5f\x08\x7d\x6e\x86\x7e\xf7\x0a\x1d\x0e\x71\x1d\x0e\x71\x1d\xec" +"\xf8\xc4\x15\x72\x79\x77\x6f\x52\xc5\x60\xd6\xbd\xbe\x9c\xa9\xaf\xf7\x44\x1d\x82\x1e\x68\x7a\x64\x76\x5b\x1b\x5f\x6b\x9f\xa6\x8a" +"\x1f\xa6\x8a\x84\x94\x78\x1b\x0e\xb8\x1d\x0e\xf8\xbf\xf8\x60\x15\xc3\x8d\xa0\x99\xb0\x1a\xb0\x74\x99\x4b\x1e\xfb\xd7\x27\x0a\x68" +"\xa4\x79\xbb\x1f\x90\x06\x53\xfb\x90\x79\x40\x72\x65\x67\x86\x19\x90\x9f\x8d\x94\x93\x1a\xa9\x77\x9b\x67\x69\x7d\x7b\x58\x7f\x1e" +"\x7d\x51\x05\x89\x81\x8a\x85\x87\x1a\x75\xc1\x76\xc5\xf0\xcf\xd4\xf7\x21\xab\x1e\xc5\xf7\x99\x05\xf7\x0f\x06\x3c\xfb\xf9\x05\x54" +"\x76\x7c\x67\x64\xa2\x7e\xcb\x1f\xd8\x9c\x1d\x9c\x60\x8c\x1f\x0e\x8f\x0a\xf8\x2d\xf7\x7a\x44\x1d\x7b\x1a\x71\x97\x7e\xa8\x45\x0a" +"\x0e\xf8\x11\x5c\x0a\x0e\xc8\x1d\x99\x0a\x6f\x1d\x0e\x97\x0a\xc5\x1d\x0e\xf8\x30\xf8\x69\x15\xa2\x06\xba\xa7\xa1\xaf\xa6\x7b\x95" +"\x60\x1f\xfb\x25\x06\x59\x6f\x78\x67\x70\x9d\x7e\xb0\x1f\x9f\x06\x85\x70\x05\x68\x06\x3f\x53\x79\x68\x64\x1f\x67\x6a\x76\x5b\x58" +"\x1a\x35\xc4\x5c\xf2\x1e\xab\x06\x85\x6e\x05\x74\x06\x5e\x6d\x75\x69\x71\x9d\x7e\xb1\x1f\xf7\x2d\x06\xb8\xaa\xa2\xac\xa5\x79\x98" +"\x67\x1f\x73\x06\x91\xa8\x05\xa2\x06\xdb\xc6\x9e\xb2\xb3\x1f\xb1\xaf\xa0\xbe\xc0\x1a\xdc\x57\xb2\x22\x1e\x6a\x06\xfb\x15\x28\x15" +"\x6e\xfb\x0d\x05\x79\x06\x50\x6e\x9d\xaf\xb5\xb3\xa4\xcf\x1f\xf7\x1b\x16\xa2\x06\xc1\xa5\x7d\x6e\x75\x7c\x72\x74\x7d\x1f\x7f\x79" +"\x72\x86\x5f\x1b\x84\x06\x0e\x8c\x0a\xf8\x40\x16\x82\x5a\x05\x88\x80\x8a\x7e\x83\x1a\x71\x9c\x7c\xa8\xad\xa0\xa0\xb9\x95\x1e\xb1" +"\xf7\x33\x05\x29\x06\xda\xf7\xf9\xa0\x0a\x0e\xf7\xfc\xf3\x15\x51\x06\x4c\x74\x7d\x65\x65\xa1\x7d\xcb\x1f\xf7\x28\x9c\x1d\x9d\x5e" +"\x8c\x1f\xda\xf7\xf9\x05\xc5\x8c\x7d\x1d\x05\x60\x44\x5d\x7a\x61\x1b\x70\x7e\x94\x9d\x96\x8e\xa0\x8e\x98\x1f\xa5\xf7\x09\x05\xcc" +"\xa0\x98\xb1\xb2\x74\x98\x4b\x1f\xc5\x0a\x74\x88\x74\x7c\x1a\x44\xc5\x59\xdd\xbb\xb7\x96\xa4\xbc\x1e\x0e\xf8\x87\xf3\x15\xd8\xf7" +"\xf8\x05\xa2\x06\xb1\xaa\xa8\xac\xa7\x76\x99\x63\x1f\xfb\x0a\x06\x28\xfc\x60\x05\x40\x06\xda\xf7\xf9\xf7\x12\x1d\x3c\xfb\xf9\x05" +"\x3f\x06\xee\xf8\x60\x05\xfb\x06\x06\x58\x6c\x74\x65\x6c\x99\x81\xbb\x8a\x1f\x42\xfb\xf9\x2d\x0a\xf8\x78\x7d\x0a\x0e\xf7\x63\xf2" +"\x15\x3f\x06\xee\xf8\x61\x05\xfb\x06\x06\x58\x6c\x74\x65\x6c\x99\x81\xbb\x89\x1f\x42\xfb\xf8\x2d\x0a\xf8\x5a\x06\x7e\x56\x05\x89" +"\x81\x8a\x81\x82\x1a\x71\x9c\x7d\xaa\xb4\xa2\xa7\xc6\x93\x1e\x9e\xf7\x1e\x05\x29\x06\xd9\xf7\xf9\x05\xa2\x06\xb0\xab\xa8\xac\xa6" +"\x76\x9a\x63\x1f\xfb\x09\x06\x27\xfc\x61\x05\x40\x06\xda\xf7\xfa\xf7\x12\x1d\x0e\xf7\x15\xf8\x60\x15\xf7\x11\x06\x3c\xfb\xf8\x05" +"\x80\x06\x59\x6b\x74\x66\x6d\x9f\x7d\xb4\x1f\xf7\x74\x06\xcc\xcb\x9d\xa9\xb5\x1f\xb3\xa8\xa5\xc2\xc0\x1a\xee\x43\xbd\xfb\x22\x1e" +"\x52\x06\xa8\xf7\x12\x05\xbd\x06\xb1\xaa\xa7\xad\xa7\x76\x99\x62\x1f\xfc\x0b\x06\x61\xfb\x4e\x05\x88\x7d\x8a\x82\x84\x70\x0a\xf7" +"\x42\xfb\xa3\x15\xa7\xf7\x12\x05\xc8\x06\xe2\xad\x7a\x5f\x60\x66\x75\x40\x1f\x0e\xf7\x65\xf8\x60\x15\xbb\x06\xaf\xab\xa8\xac\xa7" +"\x76\x99\x63\x1f\xfb\x2b\xf7\x13\x0a\x3b\xfb\xf8\x05\x5d\x89\x73\x78\x66\x1a\x6c\x9d\x7c\xb1\x1e\xf7\x23\x06\xf7\x1b\xe3\xd4\xf7" +"\x04\xea\x47\xc1\xfb\x0c\x1f\x85\x06\x5a\xfb\x7a\x15\xa7\xf7\x13\x05\x95\x06\xce\xa6\x7a\x60\x5e\x6b\x75\x4b\x1f\xf7\x81\x8a\x15" +"\x64\x88\x74\x73\x68\x1a\x70\xa0\x7d\xb2\x1e\xe4\x06\xbf\xaa\xa2\xb1\xaa\x7c\x96\x5c\x8c\x1f\xda\xf7\xf9\x05\xb0\x91\x9e\x9f\xab" +"\x1a\xaa\x78\x99\x61\x1e\x30\x06\x56\x6e\x75\x65\x6d\x9f\x7d\xb4\x1f\x94\x06\x0e\xf7\xa0\xf8\x60\x15\xbc\x06\xb0\xab\xa8\xac\xa7" +"\x76\x99\x63\x1f\xfb\x2d\x34\x0a\x94\x53\x1d\x80\x34\x0a\xf7\xaa\x06\xf7\x2d\xe8\xd2\xf7\x09\xaf\x7f\xab\x75\xa3\x1f\xac\x6c\x43" +"\xa0\x36\x1b\xfb\x04\x06\x5a\xfb\x7a\x15\xa7\xf7\x12\x05\xf7\x07\x06\xeb\xad\x7b\x5f\x5c\x68\x78\x36\x1f\x0e\xf7\xbc\xf7\xdc\x15" +"\x63\x75\x79\x69\x69\xa0\x79\xb4\x1f\xf7\x1c\x06\x2f\x60\x50\x61\x32\x1b\x5a\x5e\x9b\xad\x59\x1f\x9b\x73\x7d\x91\x7c\x1b\x71\x71" +"\x72\x72\x70\xa5\x6f\xbc\x6f\x1f\x6d\xc2\xbe\x7e\xca\x1b\xf0\xd9\xad\xd4\xca\x1f\xc5\xce\xaa\xe1\xe7\x1a\xf7\x25\x37\xea\xfb\x16" +"\x5c\x69\x82\x73\x63\x1e\x8c\x90\x8b\x8d\x8e\x1a\xab\x78\x9d\x69\x6a\x7d\x7a\x5c\x85\x1e\x87\x62\x81\x68\x79\x63\x08\x7d\x6d\x87" +"\x7e\x80\x1a\x75\xa2\x76\xa4\xa1\x9b\x98\xaa\x9b\x1e\xd2\xb2\xba\xaa\xd1\x1b\xb2\xac\x7e\x74\x9f\x1f\x9d\x77\x92\x6d\x8e\x4f\x08" +"\x0e\xf7\x68\xf7\x7a\x15\x8a\x7a\x8b\x88\x86\x1a\xfb\x1b\xce\x37\xf7\x00\xd9\xc7\xb1\xde\xbe\x1e\xba\xd6\xa3\xe1\xe4\x1a\xf7\x21" +"\x4c\xdb\xfb\x03\x3a\x50\x65\x36\x56\x1e\x71\x62\x7b\x64\x82\x62\x08\x5c\x06\xa7\xf7\x12\x05\xc1\x8e\xa7\x9f\xb0\x1a\xa9\x77\x99" +"\x62\x1e\x32\x06\x59\x6b\x73\x67\x71\x98\x7e\xa8\x87\x1f\x3b\xfb\xfa\x05\x5f\x8a\x6e\x72\x69\x1a\x6e\xa0\x7d\xb3\x1e\xf7\x01\x06" +"\xbd\x7e\x0a\xa7\xf7\x13\x05\xf7\xc2\xf7\x89\x15\xbf\xa5\x60\x34\xfb\x1e\x4c\xfb\x09\x40\x55\x70\xb6\xe0\xf7\x28\xc7\xf7\x01\xdc" +"\x1f\x0e\xf8\xa6\xf8\x60\x15\xc3\x8d\xa0\x99\xaf\x1a\xb1\x74\x99\x4b\x1e\xfb\x31\x06\x31\x4b\x7b\x69\x64\x1f\x67\x6d\x76\x5d\x5d" +"\x1a\x4b\xaa\x64\xd0\x73\x1e\x7a\x7d\x74\x73\x7a\x74\x87\x86\x18\x87\x85\x87\x85\x86\x85\x7a\x75\x7b\x76\x7a\x76\x81\x7e\x18\x6e" +"\x06\x61\x74\x79\x69\x77\x95\x7b\x9b\x83\x1f\x85\x97\x9e\x89\xb6\x1b\xb8\x8f\x8d\xca\xba\x1f\xf7\x15\xf7\x41\x8f\x8f\xae\x8d\x08" +"\xa4\x06\x69\xfb\x20\x05\x79\x06\x62\x73\x77\x6a\x66\xa2\x7d\xcb\x1f\xde\x06\xca\xa3\x99\xb0\xad\x76\x9c\x5f\x8c\x1f\x70\xf7\xf9" +"\x15\x72\xfb\x04\x05\x3d\x06\x3e\x76\x95\xae\xb7\xac\xa2\xcc\x1f\x0e\xf8\xb5\xf8\xc8\x15\xfc\x04\x06\x6e\x7d\x87\x80\x7d\xe0\x0a" +"\xbe\x06\x3c\xfb\xfa\x05\x55\x06\x6c\x80\x88\x7f\x7c\xe0\x0a\xf7\x69\x5e\x1d\x58\x06\xda\xf7\xfa\x05\xf7\xcf\x06\xb5\xf7\x4e\x05" +"\x8e\x97\x8c\x95\x92\x1a\xa2\x79\x9c\x71\x7a\x7a\x84\x7d\x7d\x1e\x81\x81\x87\x82\x85\x70\x08\x0e\xf7\x9d\xf7\x51\x15\xb2\xd6\xb5" +"\x9a\xad\x1b\xac\x9a\x79\x64\x6b\x80\x69\x7d\x7d\x1f\x84\x84\x7f\x87\x74\x87\x08\x5d\x82\x78\x7b\x6d\x1a\x6a\xa3\x79\xb5\xed\xd8" +"\xe4\xf7\x05\xf3\x59\xc3\x2e\x63\x63\x80\x6f\x4f\x1e\xad\xf7\x2e\x05\xc0\x06\x86\x76\x8a\x82\x82\x1a\x6a\x9e\x79\xae\xae\x9a\x9f" +"\xc2\x92\x1e\x8f\xa7\x05\x90\xab\x8b\x8b\x90\x1a\xb2\x76\x98\x49\x1e\xfb\x8e\x06\x45\x8a\x86\x87\x78\x4e\x81\x68\x18\x83\x6e\x89" +"\x81\x84\x1a\x72\xa2\x76\xa8\xa8\x97\x98\xbc\x9b\x1e\x94\xa8\x05\xc3\x06\x3c\xfb\xfb\x05\x4d\x8c\x74\x7d\x65\x1a\x64\xa1\x7e\xcc" +"\x1e\xe2\x06\xca\xa2\x99\xb1\xad\x77\x9b\x5e\x8c\x1f\x0e\xf7\x39\xf8\x60\x15\x3c\xfb\xf8\x44\x0a\xdb\xf7\xf8\x05\xf7\x8b\x06\x79" +"\x39\x05\x88\x80\x8a\x80\x84\x1a\x74\x9e\x7a\xa5\xad\xa2\xa2\xb6\x95\x1e\xb5\xf7\x51\x05\xfc\x98\xf7\x6c\x1d\xf7\xd4\xf7\x8f\x15" +"\x9d\x97\x94\x97\x22\x0a\x7b\x82\x81\x87\x82\x7d\x8d\x1d\xf7\x3e\xf7\xe3\x15\xe2\xb0\xd5\xbf\xe4\x1b\xc8\xc2\x6d\x69\x1f\x77\x07" +"\x71\x9a\x7d\xa6\xae\xa3\xa2\xb6\x94\x1e\x9d\xdb\x05\x8d\x94\x8d\x98\x92\x1a\xa1\x78\x9c\x73\x78\x7d\x85\x7a\x7a\x1e\xa4\x64\x5f" +"\x97\x54\x1b\xfb\x31\xfb\x22\xfb\x08\xfb\x31\x67\x1f\x7d\x4c\x05\x87\x7a\x89\x7a\x7b\x1a\x51\xa1\x58\xb5\x65\x1e\x63\xb7\xc6\x78" +"\xdd\x1b\xf7\x16\xf7\x19\xce\xcc\xa2\x77\x9e\x73\x7c\x7b\x84\x7a\x75\x1f\x68\x5f\x68\x80\x4c\x1b\x27\x4d\xb7\xd1\x95\x8b\x92\x8c" +"\x95\x1f\xf7\x73\x06\xbc\xa5\x9e\xad\xaa\x73\x9f\x66\x1f\x0e\xb5\x1d\x0e\x58\x0a\xd9\x1d\x78\xef\x0a\x78\x9c\x71\x1f\xf7\x61\x16" +"\x69\x6c\x6e\x6b\x72\x9d\x7a\xa6\xad\xaa\xa8\xac\xa3\x79\x9c\x70\x1f\x0e\xf8\xb9\x94\x1d\x9b\x97\x94\x9d\x9b\x1a\x9c\x80\x9c\x7d" +"\x8f\x1e\x8e\x82\x84\x8c\x77\x62\x0a\x82\x60\x86\xa3\x1d\x67\x1b\x6b\x6f\x93\x9f\x5e\xe4\x1d\xf7\xc9\xf8\x60\x15\xb6\x06\x3c\xfb" +"\xf9\x05\x65\x87\x79\x7a\x6d\x1a\x69\xa5\x79\xbc\x1e\xb6\x06\xdc\xc7\x9d\xb0\xb5\x1f\xb3\xaf\xa1\xbc\xc3\x1a\xe4\x5e\xb7\x25\x97" +"\x1e\xa7\xf7\x0b\x05\xcb\x8c\xa0\x98\xb1\x1a\xb1\x74\x99\x4b\x1e\xfb\x8f\x06\x4a\x75\x7e\x63\x69\x9f\x7a\xb1\x1f\xa0\x06\x52\xfb" +"\x90\x7b\x41\x6b\x5c\x6a\x8d\x19\x8f\xa5\x8c\x92\x92\x1a\xa7\x77\x9b\x67\x68\x7d\x7c\x5b\x82\x1e\x80\x55\x05\x89\x80\x8a\x85\x86" +"\x1a\x7b\x92\x80\x9c\x84\x1e\x82\x9d\xb0\x85\xac\x1b\xf3\xca\xce\xf7\x27\xac\x1f\xf7\x34\xb2\x15\xb6\x88\x9d\x7c\x6a\x1a\x5a\x6d" +"\x70\x4e\x84\x1e\x0e\xf7\xbc\xf7\x7a\x15\x6e\xfb\x13\x05\x64\x84\x78\x77\x6a\x1a\x6b\x9a\x80\xb6\x1e\xf7\x01\x06\xd7\xd1\xa2\xb0" +"\xb1\x1f\xab\xaa\x9e\xbe\xc0\x1a\xbc\x79\xad\x66\xa3\x1e\x9f\x6a\x62\x97\x64\x1b\x79\x06\xa9\xf7\x12\x05\xbb\x7d\x0a\xfb\x16\x06" +"\x5a\x6b\x73\x67\x6f\x9a\x7e\xac\x88\x1f\x6f\xfb\x12\x05\xfb\x0d\x2b\x1d\xae\x91\xa3\xa4\xa9\x1a\xa6\x78\x9a\x67\x1e\x44\x06\x58" +"\x6b\x72\x64\x75\x99\x7e\xa7\x87\x1f\x3b\xfb\xfa\x05\x8a\x89\x8b\x8b\x88\x1b\x62\x85\x76\x77\x6a\x1a\x6e\x9f\x7d\xb4\x1e\xe1\x06" +"\xba\xab\xa4\xb1\xa4\x7b\x98\x69\x8d\x1f\xa7\xf7\x13\x05\xf7\x63\xfb\x13\x15\xa7\xf7\x13\x05\x95\x06\xc3\xa6\x77\x63\x5f\x6c\x74" +"\x4c\x1f\x0e\xf7\xd9\xf8\x60\x15\xc2\x06\x89\x7e\x05\x89\x7e\x89\x7d\x85\x1a\x73\xa3\x77\xa7\xa9\x9b\x9c\xb3\x92\x1e\x8c\x92\x8c" +"\x93\x91\xaa\x05\x8e\x9a\x8d\x98\x96\x1a\xb2\x76\x98\x4a\x1e\xfb\x90\x06\x64\x72\x86\x84\x86\x1f\x85\x87\x80\x73\x83\x71\x7c\x5b" +"\x18\x84\x73\x88\x7f\x85\x1a\x74\x9f\x7a\xa5\xad\x9a\x9b\xbf\x9e\x1e\x94\xa3\x05\xc3\x06\x3d\xfb\xf9\x05\x4c\x8c\x74\x7d\x64\x1a" +"\x66\xa2\x7d\xcb\x1e\xd7\x06\xcb\xa2\x99\xb0\xaa\x7a\x9b\x65\x90\x1f\xa0\xe4\x05\xb5\xc5\xad\x9b\xaa\x1b\xa2\x98\x7f\x76\x80\x89" +"\x81\x87\x79\x1f\x7a\x40\x05\x57\x8a\x76\x7c\x68\x1a\x65\xa2\x7d\xcb\x1e\xc6\xa7\x1d\x7a\x9c\x69\x91\x1f\x9c\xcf\x05\x8f\x9f\x8d" +"\x96\x98\x1a\xdb\x53\xc6\x40\x67\x6d\x83\x75\x61\x1e\x0e\xb8\x1d\x55\xf7\x9d\x15\x9d\x96\x94\x98\x22\x0a\x7c\x81\xf7\x16\x1d\x99" +"\x1e\x0e\xc5\x1d\x5d\xf8\x77\x15\x71\x7a\x77\x6f\x52\xc5\x60\xd7\xbc\xbe\x9c\xa9\xb0\xf7\x44\x1d\x81\x1e\x67\x7a\x65\x77\x5a\x1b" +"\x5f\x6c\x9e\xa7\x89\x1f\xa6\x8a\x84\x94\x78\x1b\x0e\xf7\xe5\xbc\x0a\x7d\x32\x1d\x8b\x77\x1b\x7f\x06\xcc\x0a\x2a\x7b\x7b\x67\x1e" +"\x76\x4f\x1d\x73\x9d\x7a\xa3\x73\x1d\x0e\xf8\x1a\xf8\x4c\x15\xd4\xb6\x98\xab\xa7\x1f\xa0\xa2\x9c\xb5\xaa\x1a\xa7\x72\xa2\x6d\x6e" +"\x79\x79\x64\x82\x1e\x88\x7d\x88\x82\x87\x85\x08\x88\x8a\x79\x88\x6f\x1b\x37\x06\x2a\x47\x62\x35\x5c\x1f\x63\x41\x73\x33\x42\x1a" +"\xfb\x06\xe5\x3d\xf7\x16\xf7\x32\xf7\x11\xf7\x01\xf7\x1e\xf7\x00\x3b\xd7\xfb\x08\x5e\x66\x82\x75\x5c\x1e\x9f\xb6\x9b\x95\xc0\x8c" +"\x08\x9c\xfb\x13\x15\xd6\xaf\x6f\x50\x3d\x42\x51\x29\x42\x61\xad\xc5\xd9\xd2\xc0\xf3\x1f\x0e\xd5\xf1\x15\x81\x06\x55\x6e\x77\x67" +"\x6c\xa1\x7c\xb5\x1f\xf7\xa3\x06\xf7\x2c\xe2\xb8\xda\xb6\x70\xa5\x4c\x9c\x1f\xcc\x9e\xaf\xb2\xbd\x1a\xce\x4b\xb3\x22\x1e\xfb\xa0" +"\xf7\x12\x0a\xec\x52\x15\x97\xc4\x05\xf7\x27\x06\xc1\xa8\x83\x7c\x73\x66\x81\x2b\x1f\xfb\x23\xfb\x36\x15\x97\xc5\x05\xf7\x18\x06" +"\xe3\xab\x83\x75\x76\x70\x84\x3d\x1f\x0e\xa2\x0a\x0e\xf8\x27\x16\x86\x71\x05\x88\x7f\x8a\x80\x81\x1a\x6d\xa1\x75\xa8\xa8\x9d\x9e" +"\xb4\x94\x1e\x99\xca\x05\x8f\x9c\x8d\x99\x95\x1a\xaa\x79\x9b\x66\x8f\x1e\xbb\xf7\x6d\x05\xc1\x8d\x9f\x99\xae\x1a\xb2\x74\x99\x4b" +"\x1e\xfb\xc0\x06\x4c\x74\x7d\x65\x68\x9f\x7c\xbf\x89\x1f\x73\x20\x78\x39\x62\x6e\x28\x8c\x19\x6e\xfb\x12\x05\x86\x77\x89\x7d\x83" +"\x1a\x70\xa1\x76\xa8\xa8\x99\x9b\xbd\x99\x1e\x98\xb9\x05\xf7\x63\xf7\xd5\x15\xf7\x01\x06\x5b\xfb\x6d\x05\xfb\x15\x06\x9e\xa8\x99" +"\xab\x94\xb2\x08\x0e\xf8\xb4\xcf\x1d\x0e\xf8\xb0\xf7\x34\x15\x95\xb7\x05\x8e\x98\x8d\x9b\x9c\x1a\xf7\x05\x37\xd5\xfb\x14\xfb\x3d" +"\xfb\x27\xfb\x13\xfb\x26\xfb\x02\xe0\x46\xf7\x1c\xd6\xf7\x00\x9d\xa0\xbd\x1e\xa4\x95\x9b\xa1\xa3\x1a\xa2\x79\x9c\x74\x80\x7a\x88" +"\x85\x6e\x1e\x7a\x42\x65\x86\x60\x1b\x42\x5f\xa3\xba\x7e\x1f\xa7\xf3\x15\xba\xb4\xbc\xa2\xca\x1b\xc8\xb3\x74\x5c\x9e\x1f\xfb\x35" +"\xf7\xdc\x15\x69\x6c\x6e\x6b\x72\x68\x0a\x9d\x79\xa5\xae\xaa\xa8\xad\xa3\x79\x9c\x70\x1f\x0e\xf7\x74\xf2\x15\xf7\x09\x1d\x83\x93" +"\x77\x19\xa8\x3f\xa1\x52\x91\x86\xb3\x89\x19\x9f\x06\xab\xa3\xa1\xaa\xa8\x7a\x9b\x67\x90\x1f\x74\xc8\x81\xa5\x7b\xa5\x7d\x95\x19" +"\x9d\x98\xa3\xa2\xa5\xa9\x08\x6f\x91\x99\x7f\xa7\x1b\xaa\x96\x99\xbd\x97\x1f\x92\xaa\x05\x8e\x97\x8c\x94\x92\x1a\xa7\x73\xa1\x6b" +"\x65\x65\x76\x60\x65\x1e\x42\x3a\x92\xb5\x05\xa7\x93\x99\x9c\xa5\x1a\xad\x72\x9d\x5a\x1e\x65\x06\x5c\x71\x78\x6a\x73\x95\x7d\xa4" +"\x7f\x1f\x83\x5f\x65\xd3\x05\xc3\x6d\x73\x9d\x5e\x1b\x6c\x78\x81\x73\x7f\x1f\x81\x77\x85\x71\x72\x1a\x6d\x9e\x78\xa9\xa2\x99\x96" +"\xa6\x94\x1e\x9f\x62\x91\x81\x9b\x77\x73\x81\x79\x7e\x7d\x79\x3d\x2e\x18\x7e\x06\x69\x72\x75\x6d\x6e\xa3\x74\xaa\x1f\xa6\x06\xa5" +"\x8c\x8c\x8c\xaf\xb5\xda\xec\x18\x99\x9c\x9a\x9a\x9a\x96\x08\x0e\xf7\x82\xf8\x2c\x15\x8f\x07\xab\x79\x9c\x6b\x66\x7f\x79\x4c\x84" +"\x1e\x89\x72\x85\x75\x81\x70\x08\x84\x76\x87\x7b\x83\x1a\x73\xa1\x77\xa6\xa1\x98\x95\xa8\x99\x1e\xc7\xa8\xa8\x9b\xe1\x1b\xbd\xac" +"\x81\x7b\x77\x67\x7d\x55\x8a\x1f\x60\x8a\x8b\x8b\x82\x89\x08\x71\x85\x7d\x7a\x72\x1a\x72\x96\x7c\xa3\x83\x1e\x98\x87\x92\x8a\xb0" +"\x8a\x08\xb6\x8a\xa9\x80\x7e\x1a\x72\x50\x74\x49\x47\x56\x99\xab\x53\x1e\x99\x71\x7c\x91\x7e\x1b\x70\x71\x71\x6f\x73\x9a\x78\xb0" +"\x77\x1f\x67\xcf\xd2\x79\xda\x1b\xdd\xc5\x99\xab\xba\x1f\xb4\xa7\xa3\xb1\xb2\x1a\xb1\x7a\xa3\x65\x9d\x1e\xbc\x9f\xa3\xab\xb8\x1a" +"\xd2\x42\xbd\x23\x5a\x63\x81\x74\x65\x1e\x0e\x59\x0a\x0e\x59\x0a\xca\xf8\x4b\x15\x72\x79\x77\x6f\x52\xc5\x60\xd7\xbd\xbc\x9c\xa9" +"\xb0\xac\x1d\x9b\x80\x96\x79\x7a\x80\x83\x78\x82\x1e\x68\x7a\x64\x76\x5c\x1b\x5e\x6c\x9e\xa7\x89\x1f\xa6\x89\x85\x94\x78\x1b\x0e" +"\x90\x0a\x0e\xf8\x96\xf7\xd5\x15\xbf\x8c\xa0\x9a\xaf\x1a\xb1\x74\x99\x4c\x1e\xfb\xb6\x06\x4b\x74\x7d\x66\x68\xa4\x79\xbb\x1f\x8f" +"\x06\x8e\x06\x68\xfb\x31\x81\x5e\x75\x74\x69\x8a\x19\xb4\x89\x7d\x9c\x6a\x1b\x6a\x7e\x7c\x56\x80\x1f\x81\x61\x05\x8a\x85\x8a\x85" +"\x88\x1a\x74\xb6\x7a\xc4\xf0\xcc\xc4\xf6\xa4\x1e\xb0\xf7\x3d\x05\xe7\x06\x5a\xfb\x6e\x05\x58\x75\x7b\x68\x65\xa1\x7d\xcb\x1f\xcf" +"\x06\xcb\xa2\x99\xb0\xab\x78\x9c\x63\x8e\x1f\x0e\xf7\x42\xf7\x95\x15\xcb\xfb\x1f\x05\xe2\x06\xf7\x17\xf7\x18\x63\xfb\x26\x05\x6b" +"\x06\x59\x6b\x73\x66\x6e\x9f\x7d\xb4\x1f\xf7\x15\x06\xbd\xab\xa2\xb0\xa7\x7c\x98\x68\x8d\x1f\xba\xf7\x6f\xf7\x58\x1d\x36\x06\xfb" +"\x53\xfb\x58\x2b\xf7\x58\x05\x37\x06\x59\x6b\x73\x66\x72\x98\x7e\xa8\x87\x1f\x5b\xfb\x6e\x05\x88\x06\x64\x6c\x6f\x69\x70\xa0\x7c" +"\xb3\x1f\xf7\x15\x06\xbd\xab\xa4\xb1\xa5\x75\x9a\x64\x1f\x6e\x06\x0e\xf8\x1e\xf7\x36\x15\x7e\x50\x05\x85\x06\x59\x6b\x74\x66\x6e" +"\xa0\x7d\xb4\x1f\xf7\x0c\x06\xbd\xab\xa4\xb1\xa5\x75\x99\x64\x1f\x84\x06\xbb\xf7\x6f\xa6\x0a\x89\x87\x81\x1f\x77\x82\x7a\x73\x75" +"\x1a\x70\xa0\x7c\xb3\x1e\xf7\x0d\x06\xbc\x7e\x0a\x98\xc6\x05\x0e\xd8\x1d\xf8\x30\xf7\xd5\x15\x5c\xfb\x6e\x05\x7f\x06\x59\x6b\x73" +"\x64\x71\xa1\x7d\xb2\x1f\xf7\x0d\x06\xbe\xaa\xa2\xb1\xaa\x7c\x96\x5c\x1f\xbb\xf7\x6e\x05\xb2\x90\xa4\xa3\xac\x1a\xa7\x76\x99\x63" +"\x1e\xfc\x18\x06\x55\x6e\x76\x63\x6e\x9a\x7d\xa9\x1f\x91\x06\x5c\xfb\x6e\x05\x73\x7d\x8a\x86\xcd\x0a\xbb\xf7\x6e\x05\x0e\xf7\x23" +"\x91\x0a\xf8\xd8\x7a\x0a\x9d\x69\x5c\x94\x55\x1b\x2d\x5a\x0a\x0e\xf8\x00\xf7\xd5\x15\xec\x06\x78\x38\x05\x89\x7f\x89\x80\x85\x70" +"\x0a\xb5\xf7\x51\x05\xfc\x9a\x66\x1d\x81\x85\x1a\x75\x9f\x7a\xa4\xad\xa3\xa2\xb6\x94\x1e\x9e\xe0\x05\xeb\x06\x5c\xfb\x6d\x05\x4d" +"\x06\x59\x6b\x72\x64\x72\xa1\x7c\xb2\x1f\xf7\x7a\xf7\x6a\x1d\x4f\x06\x0e\xf7\x53\x92\x58\x1d\x0e\xf7\xc7\x89\x15\x87\xa0\x9a\x8a" +"\x9a\x1b\xca\xbc\xa8\xc7\xb2\x1f\xae\xc2\x9e\xcd\xd0\x1a\xf4\x5f\xc5\x3c\x7f\x83\x8a\x89\x7e\x1e\x98\xcb\x05\x90\xa0\x8d\x99\x92" +"\x1a\xa7\x74\xa0\x6b\x1e\x6a\x8a\x74\x89\x05\x4d\x85\x77\x7f\x68\x1a\x6b\xa1\x77\xaf\x8d\x90\x8b\x8c\x92\x1e\x81\x5a\x05\x8f\x76" +"\x7f\x8c\x7f\x1b\x59\x58\x6f\x59\x61\x1f\x5d\x55\x75\x4a\x3f\x1a\x51\x97\x64\xa5\x6c\x1e\x70\xa2\xab\x7c\xac\x1b\x96\x93\x8c\x8e" +"\x9a\x1f\x84\x72\x05\x77\x06\x4b\x74\x7e\x65\x64\xa1\x7e\xcc\x1f\xf7\x1b\x06\xcc\xa2\x98\xb1\xb2\x75\x98\x49\x1f\x85\x06\x38\xf7" +"\x12\x15\x87\x7d\x82\x89\x82\x1b\x71\x7e\xa1\xb8\xe0\xc0\xe3\xbe\x91\x8f\x8b\x89\x94\x1f\xf7\x04\x16\x8d\x99\x91\x8b\x93\x1b\xa7" +"\x9b\x74\x62\x67\x82\x62\x7a\x66\x1f\x5f\x76\x74\x79\x66\x1b\x86\x89\x8b\x8d\x83\x1f\x0e\xf8\x12\xec\x0a\x9d\x9b\x1a\x9c\x80\x9b" +"\x7d\x8d\x0a\xf8\xd7\xf3\x15\x2c\x06\xba\xf7\x6e\xf7\x62\x1d\xa0\x1a\xa7\x76\x9a\x63\x1e\xfb\x0d\x06\x5a\x6a\x72\x65\x71\xa1\x7d" +"\xb2\x1f\x95\x06\x5b\xfb\x6e\x05\xfb\x63\x06\xba\xf7\x6e\x05\x97\x06\xbd\xab\xa2\xaf\xa8\x76\x9a\x63\x1f\xfb\x0d\x60\x1d\x5c\xfb" +"\x6e\x2d\x0a\xf8\x1d\x06\x81\x61\x05\x88\x7d\x89\x80\x86\x1a\x75\xa1\x7a\xa7\xac\x9f\xa0\xb9\x95\x1e\x0e\xf7\xf4\xf3\x15\x54\x06" +"\x4b\x74\x7d\x65\x65\xa1\x7d\xcc\x1f\xf7\x1e\x06\xcb\xa2\x99\xb0\xac\x78\x9c\x61\x8e\x1f\xcd\x1d\x0e\xf8\x87\xf3\x15\xbb\xf7\x5b" +"\x1d\x62\x1f\xfb\x09\x06\x45\xf7\x0f\x1d\x75\x95\x7e\xa2\x84\x1f\x59\xfb\x6f\x05\x3f\x06\xd1\xf7\xd5\x05\xfb\x06\x60\x1d\x5f\xfb" +"\x6e\x2d\x0a\xf8\x78\x7d\x0a\x0e\xf7\x63\xf3\x15\x3f\x06\xd1\xf7\xd5\x05\xfb\x06\x60\x1d\x5f\xfb\x6e\x2d\x0a\xf8\x4f\x06\x7f\x61" +"\x05\x88\x81\x89\x81\x82\x1a\x70\x9c\x7e\xac\xb4\x98\x9a\xd2\x9c\x1e\xaa\xf7\x15\x05\x28\x06\xbc\xf7\x5b\x1d\x63\x1f\xfb\x09\x06" +"\x44\xf7\x0f\x1d\x74\x96\x7d\xa1\x86\x1f\x0e\xbd\xf8\x3d\x15\xf7\x18\x1d\xf1\x06\x5e\xfb\x6f\x05\x81\x06\x55\x6e\x77\x67\x6c\xa1" +"\x7c\xb5\x1f\xf7\x29\x06\xe1\xc6\x97\xa4\xac\x1f\xaa\xa1\x9c\xaf\xb3\x1a\xdd\x49\xb9\xfb\x09\x1e\x76\x06\x97\xc5\x05\xc0\x06\xb1" +"\xaa\xa7\xad\xa6\x76\x9a\x62\x1f\x21\xfb\xd7\x15\x97\xc5\x05\xad\x06\xc2\xa8\x81\x78\x78\x70\x81\x58\x1f\x0e\xf7\x50\xf7\xd5\x15" +"\xc2\x06\xb1\xaa\xa7\xad\xa7\x76\x99\x63\x1f\xfb\x33\x06\x56\x6d\x76\x65\x6d\xa0\x7c\xb6\x1f\x91\x06\x5d\xfb\x6f\x05\x7f\x06\x64" +"\x6e\x73\x6a\x6d\xa1\x7c\xb5\x1f\xf7\x0b\x06\xdf\xc3\x97\xa4\xad\x1f\xa9\xa1\x9c\xaf\xb4\x1a\xd9\x49\xbc\x23\x1e\x80\x06\x69\xfb" +"\x35\x15\x96\xc5\x05\x96\x06\x9d\xb5\x84\x85\x97\x1f\x93\x88\x90\x84\x84\x1a\x79\x6b\x81\x53\x1e\xf7\x8a\x8c\x15\x5b\x86\x75\x77" +"\x67\x1a\x6c\x9a\x80\xb8\x1e\xed\x06\xbe\xab\xa4\xb2\xa7\x7a\x96\x5e\x8c\x1f\xbd\xf7\x6e\xf7\x58\x1d\x2f\x06\x59\x6b\x72\x64\x6f" +"\x9a\x81\xb9\x8a\x1f\x0e\xf7\x79\xf7\xd5\x15\xc3\x06\xb1\xaa\xa7\xad\xa6\x76\x9a\x63\x1f\xfb\x37\xf7\x12\x0a\x5e\xfb\x6f\x05\x81" +"\x06\x55\x6e\x77\x67\x6c\xa1\x7c\xb5\x1f\xf7\x96\x06\xed\xc9\x97\xa5\xad\x1f\xa8\xa2\x9b\xae\xb3\x1a\xdf\x47\xb7\xfb\x14\x1e\xfb" +"\x16\x06\x69\xfb\x36\x15\x97\xc5\x05\xf7\x0b\x06\xe4\xaa\x83\x75\x76\x70\x84\x3d\x1f\x0e\xf7\xba\xf7\x9a\x15\x5c\x72\x78\x68\x6a" +"\xa1\x7a\xb2\x1f\xf7\x10\x06\x5c\x6e\x5e\x74\x4a\x1b\x4f\x53\xa1\xb7\x56\x1f\xa1\x71\x7b\x93\x7a\x1b\x70\x71\x72\x71\x71\xa3\x71" +"\xc6\x64\x1f\x62\xca\xbd\x7b\xcf\x1b\xf7\x3b\xf7\x17\xf7\x04\xf7\x23\xf7\x09\x36\xdb\xfb\x10\x57\x60\x80\x74\x67\x1f\xb8\x88\x7f" +"\x99\x69\x1b\x68\x80\x7c\x49\x80\x1f\x85\x6c\x85\x70\x85\x76\x08\x80\x6c\x89\x82\x82\x1a\x75\xa1\x76\xa3\xa2\x9a\x97\xac\x9c\x1e" +"\xc2\xa8\xb7\xa3\xd2\x1b\xcd\xb8\x70\x5e\x94\x1f\x0e\xf7\x6c\xf7\x36\x15\xfb\x01\x90\xd0\x46\xf5\x1b\xd5\xc0\xa7\xc6\xb4\x1f\xb0" +"\xc0\x9f\xcd\xd2\x1a\xca\x7b\xb6\x68\xa8\x1e\xa6\x6c\x60\x99\x5c\x1b\x29\x38\x4c\xfb\x00\x62\x1f\x62\x06\x96\xc3\xa3\x8c\x95\x8d" +"\x97\x93\x19\x9c\x96\x96\xa0\x9e\x1a\xa5\x75\x9a\x64\x1e\x38\x06\x59\x6b\x72\x65\x73\x9a\x7e\xa8\x88\x1f\x5b\xfb\x6f\x05\x61\x89" +"\x75\x77\x67\x1a\x6c\x9f\x7d\xb5\x1e\xee\x06\xbe\xaa\xa2\xb2\xa6\x7c\x99\x6e\x1f\x71\x06\x98\xc6\x05\xf7\xa9\xf7\x40\x15\xb8\xa5" +"\x6a\x51\x37\x57\x44\x4e\x59\x6d\xad\xc2\xde\xc4\xd5\xcc\x1f\x0e\xf8\x8e\xf7\xd5\x15\xa2\x06\xb4\xa3\x9e\xad\xb0\x73\x99\x4c\x1f" +"\xfb\x43\x06\x31\x50\x7d\x6f\x67\x1f\x6b\x72\x78\x65\x64\x1a\x58\xa6\x68\xc2\x76\x1e\x7a\x82\x81\x84\x79\x7a\x5f\x5f\x18\x72\x06" +"\x4f\x75\x7e\x68\x6b\xa0\x7a\xb3\x1f\xcb\x06\xb0\x8c\x8b\x8b\xb7\xba\xde\xe2\x9e\x98\xb8\x8d\x08\xa4\x06\x81\x5c\x05\x72\x06\x60" +"\x75\x7a\x68\x65\xa2\x7e\xcb\x1f\xe8\x06\xca\xa2\x99\xaf\xae\x75\x9c\x5d\x8c\x1f\x4e\xf7\x6e\x15\x7c\x47\x05\x49\x06\x38\x6e\x92" +"\xa1\xa7\xab\x96\xdb\x1f\x0e\xf8\x88\xf8\x3d\x15\xfc\x19\xf7\x59\x1d\x5c\xfb\x6d\x44\x0a\xbb\xf7\x6d\x05\xf7\xe4\x06\xb5\xf7\x4f" +"\x05\x8d\x97\x8d\x96\x92\x1a\xa1\x78\x9c\x71\x69\x74\x74\x5f\x81\x1e\x0e\xd4\xf2\x15\x88\x67\x0a\xa8\xde\x0a\x82\x8d\x6f\x4e\x0a" +"\xcc\xa5\x96\xb9\x1b\xb7\xa6\x7b\x71\x84\x8a\x81\x88\x7f\x1f\x4d\xfb\xa9\x05\x5c\x82\x60\x6c\x53\x1b\x20\x06\x57\x6c\x73\x63\x70" +"\x9f\x7e\xb4\x1f\xf7\x03\x06\xf7\x05\x8c\xed\xd7\xa2\xf2\xcc\xf7\xb6\x18\x8e\x99\x8c\x96\x9a\x1a\xd6\x50\xbb\x30\x59\x58\x78\x6a" +"\x60\x1e\x9e\xdd\x05\xe6\x1d\x0e\xa2\x0a\xf7\xd2\xf7\x88\x15\x9e\x97\x93\x97\x22\x0a\x7b\x82\x80\x87\x82\x7e\x8d\x1d\xf7\x53\xf7" +"\x9d\x15\xba\xac\xba\xa0\xd2\x1b\xb0\xb1\x82\x7e\x9c\x1f\x95\x83\x8f\x82\x7c\x1a\x67\x98\x7d\xab\xae\xa2\xa1\xb8\x95\x1e\x99\xc7" +"\x05\x8e\x98\x8c\x95\x91\x1a\xa0\x77\x9d\x73\x7e\x7f\x87\x80\x7c\x1e\x9e\x65\x62\x94\x56\x1b\x30\x42\x6f\x4f\x4d\x1f\x50\x53\x6c" +"\x46\x45\x1a\xfb\x02\xdc\x50\xf7\x2c\xf7\x23\xf7\x0a\xbf\xca\xa2\x77\x9e\x73\x7f\x7f\x87\x81\x7e\x1e\x6e\x5e\x62\x80\x42\x1b\x31" +"\x5e\xa2\xbd\x84\x1f\xf7\x35\x06\xba\xa5\x9f\xb0\xaa\x77\x9b\x62\x1f\x0e\xf8\xb6\xf8\x05\x15\x8e\x9b\x8c\x91\x94\x7f\x0a\x7e\x1e" +"\x9a\x6a\x78\x0a\xf7\x10\x63\x1d\x4b\x61\x0a\x93\x8e\x93\x98\x1e\x79\xaf\xbb\xf2\x0a\x72\x9b\x62\x96\x44\x94\x4e\x93\x84\x8d\x7f" +"\x8f\x84\x1d\x08\x0e\xf8\x26\x35\x1d\xec\x5d\x1d\x0e\xf8\x25\xf8\x3d\x15\xfb\x4b\xea\x0a\xd3\x06\x5b\xfb\x6d\x05\xfb\x06\x06\x58" +"\x6c\x74\x64\x6e\x9e\x7e\xb5\x1f\xf7\xe2\xf7\x6b\x1d\xfb\x04\x06\x32\xf8\x7c\x15\x69\x6b\x6e\x6b\x72\x9e\x79\xa4\xaf\xaa\xa8\xac" +"\xa4\x79\x9c\x70\x1f\xf7\x61\x16\x68\x6c\x6e\x6b\x72\x9e\x79\xa5\xae\xaa\xa8\xac\xa4\x79\x9c\x70\x1f\x0e\xf8\x2d\xa4\x0a\xf7\xca" +"\xf7\xac\x15\xfb\x14\xf7\x75\x1d\xf8\x4f\xf7\xd5\x15\xc0\x8c\xa0\x9a\xaf\x1a\xb1\x74\x99\x4b\x1e\xfb\x81\x27\x0a\x69\xa0\x7a\xb7" +"\x89\x1f\x68\xfb\x34\x80\x5f\x77\x75\x6b\x89\x19\x8d\x92\x8b\x8e\x8f\x1a\xa9\x78\x9c\x6b\x6b\x78\x76\x61\x83\x1e\x82\x5f\x05\x89" +"\x81\x8b\x87\x88\x1a\x71\xaf\x7b\xc5\xf7\x03\xc1\xba\xf7\x09\xa5\x1e\xb1\xf7\x3d\x05\xc8\x06\x5a\xfb\x6e\x05\x68\x86\x7a\x7a\x6d" +"\x1a\x67\xa5\x7b\xc5\xec\xbd\x92\x9e\xac\x1e\xb9\xa6\xa8\xbc\xc0\x1a\xd5\x60\xae\x26\x92\x1e\x74\x24\x15\xbb\x8a\x93\x88\x7a\x1a" +"\x72\x75\x7e\x5b\x87\x1e\x0e\xf7\xb4\xf7\x34\x15\x7f\x51\x05\x66\x87\x78\x79\x6a\x1a\x69\x9e\x7e\xb9\x1e\xde\x06\xe0\xb9\x93\x9e" +"\xaa\x1f\xb1\xa1\x9f\xb2\xbc\x1a\xdd\x54\xb8\x24\x1e\x7f\x06\x96\xc4\x05\xc4\x06\xb0\xaa\xa7\xad\xa6\x76\x9a\x63\x1f\xfb\x1f\x06" +"\x56\x6d\x76\x64\x6f\x9a\x7d\xae\x89\x1f\x80\x52\x05\xfb\x0c\x06\x97\xc5\x05\xb0\x92\x9e\x9f\xab\x1a\xa9\x77\x99\x62\x1e\x4a\x06" +"\x59\x6b\x72\x64\x74\x9a\x7e\xa8\x87\x1f\x5b\xfb\x6d\x05\x61\x89\x75\x77\x66\x1a\x6c\x9e\x7d\xb6\x1e\xdd\x06\xbe\xaa\xa2\xb2\xa7" +"\x7c\x99\x6d\x1f\x83\x06\x98\xc3\x05\xf7\x6c\x51\x15\x97\xc5\x05\xa2\x06\xb3\x9f\x81\x78\x75\x7d\x84\x60\x1f\x0e\xf7\x9a\xf8\x67" +"\x15\xe6\x1d\x3b\xfc\x00\x54\x0a\x90\x0a\xfb\x2a\xf7\x8e\xed\x1d\xf7\x73\xf7\xd6\x15\xb0\x91\x9b\x9b\xa9\x1a\xb0\x74\x99\x4c\x1e" +"\x54\x27\x0a\x6b\x9e\x7a\xb3\x88\x1f\xea\xfb\x98\x6e\x66\x05\x74\x79\x73\x76\x80\x1b\x8e\x9d\x8b\x8f\x92\x1a\xaa\x78\x9c\x6b\x69" +"\x7c\x7a\x57\x80\x1e\x80\x5c\x05\x8a\x85\x8a\x85\x86\x1a\x6e\xb4\x76\xc5\xc5\xbf\xaa\xcd\xc1\x1e\xf7\xaf\xf7\xf2\x05\xbd\x8c\xa1" +"\x9b\xae\x1a\xb0\x73\x99\x4c\x1e\x40\x27\x0a\x6f\x99\x7b\xaa\x84\x1f\xfb\x17\xfb\x36\x05\x5b\xf8\x5c\x15\x73\x79\x77\x6f\x52\xc5" +"\x60\xd7\xbd\xbc\x9c\xa9\xb0\xac\x1d\x9b\x80\x96\x79\x7a\x80\x82\x78\x82\x1e\x69\x7b\x63\x76\x5c\x1b\x5e\x6c\x9e\xa7\x89\x1f\xa7" +"\x89\x85\x93\x77\x1b\x0e\xf7\xc3\x16\xf7\x1b\x06\xbe\xab\xa4\xb2\xa1\x7c\x99\x70\x8e\x1f\xda\xf7\xfa\xa0\x0a\xf7\x1e\x06\x7c\x56" +"\x05\x89\x83\x89\x7f\x82\x1a\x73\x9e\x7b\xa9\xaf\x9a\x9b\xbe\x97\x1e\x0e\xbe\x1d\xb1\xf7\x96\x15\x82\x63\x05\x88\x7c\x89\x7b\x7b" +"\x1a\xfb\x06\xdf\x43\xf7\x19\xf7\x3d\xf7\x28\xf7\x13\xf7\x25\xf7\x03\x36\xd0\xfb\x1f\x3a\xfb\x07\x77\x75\x5f\x1e\x74\x80\x7e\x78" +"\x74\x1a\x74\x9c\x7a\xa3\x96\x97\x8d\x8e\x98\x1e\xa2\xed\xa4\x8f\xb8\x1b\xdf\xb7\x73\x57\x99\x1f\x73\x2f\x15\x59\x6a\x52\x6f\x45" +"\x1b\x47\x59\xab\xb9\x86\x1f\x0e\xf8\x0d\xf8\x09\x15\x72\xba\x83\x86\x80\x84\x05\x69\x57\x7a\x84\x71\x1b\x6e\x7a\x9d\xac\xbc\xb1" +"\xb3\xb9\xa2\x97\x83\x7c\x86\x8a\x73\x89\x79\x1f\xe7\x96\x05\x8a\x9b\x8b\x99\x98\x1a\xa3\x8c\x8f\x9e\xb2\x1e\x90\x94\x8e\x92\x8e" +"\x90\x34\x9c\x18\x86\x7b\x05\x92\x72\x82\x8d\x7b\x1b\x27\x32\x34\x28\x44\xbb\x5c\xd3\xae\xac\x94\xa1\xb4\x1f\xfb\x67\xfb\x8c\x05" +"\x80\x7e\x84\x7d\x7f\x1a\x78\x9d\x7b\xa1\x9d\x9b\x94\x9c\x9a\x1e\xf7\x19\xf7\x30\x05\x81\x71\x87\x79\x75\x1a\x43\xbc\x5d\xd9\xf3" +"\xe5\xe1\xee\xd3\x59\xba\x3f\x65\x6f\x83\x77\x66\x1e\xf7\x60\xf7\x82\x05\x96\x98\x91\x99\x97\x1a\x9e\x79\x9b\x75\x79\x7b\x83\x79" +"\x7c\x1e\x5b\xfb\xe8\x15\xac\x9e\x79\x6b\x5a\x65\x62\x5d\x6b\x78\x9d\xab\xbc\xb1\xb4\xb8\x1f\x0e\xf7\x50\xf7\x22\x15\x8d\x45\x8e" +"\x76\x95\x76\x08\x72\x98\x9f\x7d\xa3\x1b\xa8\xa3\x99\xab\xa8\x1f\x9d\x9f\x9b\xa0\x96\x9e\x90\x94\x18\x8d\x8e\x8c\x8f\x8f\x1a\x92" +"\x85\x90\x84\x84\x86\x87\x82\x84\x1e\x80\x7b\x05\x6c\x75\x7a\x7d\x7c\x1b\x79\x84\x9e\xc0\x97\x8b\xa4\x8c\xa0\x1f\x9e\x07\xaf\x07" +"\xf7\x1e\xf7\x44\xbe\xec\xe1\x1a\xc1\x6e\xae\x5f\x5f\x5a\x6a\x52\x64\x1e\x60\x4b\x74\xfb\x01\x88\xfb\x3d\x8a\x4e\x18\x74\x6f\x86" +"\x85\x79\x76\x88\x88\x19\x76\x75\x05\x85\x85\x89\x86\x86\x1a\x87\x07\x84\x8f\x8e\x88\x91\x1b\x96\x8b\x8b\xb9\xb7\x1f\xec\xf7\x3d" +"\x15\x8d\xb1\x05\xf7\x6d\x95\x9e\xd0\xbc\x1b\xa2\x9a\x76\x6b\x44\x64\x2f\x45\x2b\x1f\x0e\xa8\xf2\x15\x69\x85\x7b\x7a\x6e\x1a\x66" +"\xa2\x7d\xcb\x1e\xc1\x06\xca\xa2\x99\xaf\xae\x75\x9c\x5e\x8c\x1f\xb6\xf7\x5a\xb2\xfb\x68\x05\x46\x98\x9a\x77\xb6\x1b\xb4\x9a\x9d" +"\xcf\x9a\x1f\xde\xf8\x0b\x05\xae\x91\x9b\x9c\xa7\x1a\xb2\x74\x98\x4b\x1e\x55\x06\x4c\x73\x7d\x67\x68\xa1\x7a\xb9\x8a\x1f\x61\xfb" +"\x53\x62\xf7\x70\x05\xd0\x7f\x85\x90\x42\x1b\x7b\x06\x4b\x74\x7d\x66\x6e\x9a\x7b\xac\x84\x1f\xf7\xe0\xfb\x62\x15\x71\x9a\xa2\x7f" +"\xac\x1b\xc0\xae\xad\xcb\x98\x1f\x9e\xe4\x05\x8c\x91\x8c\x92\x92\x1a\xb3\x6e\xa7\x60\x55\x68\x6a\x49\x7d\x1e\x78\x3b\x05\x88\x7e" +"\x8a\x82\x85\x1a\x88\x8e\x7a\x8c\x85\x1e\x8c\x8a\x05\xe2\xb7\x15\x82\x89\x88\x87\x87\x1b\x88\x8a\x8c\x8d\x8d\x8b\x8b\x8d\x91\x1f" +"\xa5\xf7\x01\x05\x92\x8d\x8d\x8e\x8f\x1b\x90\x8b\x8b\x7c\x87\x1f\x48\xfb\x69\x15\x58\x76\x7d\x69\x6d\xa0\x7a\xb0\x1f\xa6\x06\xbd" +"\xa1\x99\xac\xab\x75\x9b\x61\x1f\x0e\xf8\xa3\xf7\xe3\x15\xcd\x71\x54\xaf\x41\x1b\xfb\x2d\xfb\x20\xfb\x16\xfb\x21\xfb\x03\xd8\x45" +"\xf7\x0d\xdf\xc4\xa7\xcc\xb9\x1f\x91\x4d\x05\x7a\x8c\x9b\x7f\xa0\x1b\xae\xa4\xa3\xac\x1f\x8f\x07\x79\xf7\x38\xf7\x02\xf7\x2c\x05" +"\x94\x97\x8f\x96\x95\x1a\xa1\x79\x9a\x70\x77\x81\x85\x76\x7b\x1e\xfb\x18\xfb\x57\x15\x32\x5b\x5e\x68\x4a\x1b\x4d\x62\xb2\xc5\xd8" +"\xd8\xd3\xde\xab\xa7\x7e\x76\x9b\x1f\x9a\x76\x90\x78\x90\x5b\x08\x0e\xf8\x6f\xf7\x4f\x15\xe4\xf7\x1f\x05\x9e\xaa\x93\x9d\x9c\x1a" +"\xa7\x79\x9c\x6c\x6d\x81\x83\x54\x69\x1e\x6b\x58\x05\xdb\x66\x5b\xad\x41\x1b\xfb\x11\xfb\x05\xfb\x12\xfb\x1f\xfb\x01\xd5\x3d\xf0" +"\xcb\xca\xaa\xc3\xbb\x1f\x96\x43\x05\xc7\x06\xbd\xab\xa3\xaf\xa6\x7c\x99\x6a\x8d\x1f\xfb\x18\xf4\x15\x70\x65\x84\x83\x7b\x7a\x08" +"\x63\x65\x6f\x7b\x6c\x1b\x63\x6f\xac\xbc\xdd\xcc\xdb\xcc\xb3\x9f\x6d\x2c\xa4\x1f\xd2\xf7\xf9\x15\x9e\x97\x93\x97\x22\x0a\x7b\x82" +"\x80\xf7\x64\x1d\x7e\x7e\xf7\x53\x1d\x2d\x1d\xfb\x05\xf8\x40\x33\x0a\xf7\x4f\xf7\x98\x15\xf7\x51\xfb\xfe\x05\x7c\x93\x95\x83\x95" +"\x1b\x92\x8e\x8e\x93\x90\x8a\x8f\x87\x97\x1f\xfb\x24\xf7\xf5\xf7\x24\xf7\xf6\x05\x8e\x92\x8d\x94\x92\x1a\x91\x88\x8e\x84\x81\x86" +"\x87\x78\x7e\x1e\x0e\xf8\x32\xf7\x98\x15\xfb\x51\xf7\xff\x05\x9d\x7f\x85\x90\x81\x1b\x84\x88\x88\x85\x84\x8d\x82\x8e\x84\x1f\xf7" +"\x24\xfb\xf6\xfb\x24\xfb\xf5\x05\x87\x7f\x8a\x87\x86\x1a\x83\x8e\x88\x92\x95\x95\x93\x9a\x93\x1e\x0e\xf8\x97\xf2\x15\xb5\xf7\x50" +"\x05\x8e\x97\x8c\x95\x97\x69\x1d\x2a\x7b\x7b\x67\x1e\x76\x4f\x1d\x73\x9d\x7a\xa3\xf7\x3d\x1d\x86\x8b\x8a\xf4\x1d\x87\x78\x05\xb7" +"\x06\x4b\x67\x6b\x5f\x57\x5d\x0a\x93\x90\x95\x94\x97\x1f\x9d\xa3\x9d\x98\xd1\xb5\x08\xad\xa0\x98\x9c\xa3\x1a\x9c\x81\x9b\x7c\x90" +"\x1e\x8e\x83\x84\x8b\x77\x1b\xfb\x05\xab\x15\x6c\x4f\x50\x7b\x55\xf7\x21\x0a\x96\x99\x97\x6c\x1d\xac\xa9\x88\x84\xb3\x1f\x0e\xf8" +"\x76\xf8\x4b\x15\x74\x7f\x84\x6f\x75\x1f\x6f\x75\x7f\x7f\xe7\x0a\x5f\x63\x1f\x6d\x6b\x80\x77\xd1\x0a\x57\xc7\xb3\x77\xb5\x1b\xb5" +"\xab\x9c\xb7\xb1\x1f\xae\xb2\x93\x99\x9f\x1a\xaa\x71\xa4\x6b\x1e\x8d\xfb\x4a\x15\x75\x7f\x84\x6f\x74\x1f\x6e\x75\x7f\x80\xe7\x0a" +"\x60\x63\x1f\x6d\x6a\x80\x78\x77\x1a\x6d\xa6\x71\xab\xa0\x95\x91\xab\xa6\x1e\xa7\xa3\x95\x94\x92\x1b\x91\x97\x83\x7b\x9e\x1f\x57" +"\xc8\xb2\x77\xb5\x1b\xb5\xab\x9c\xb7\xb1\x1f\xae\xb2\x93\x99\xa0\x1a\xa9\x71\xa4\x6b\x1e\x0e\x2d\x1d\xa9\xf8\xa1\xee\x1d\xd1\xf7" +"\x25\x15\xa3\x9b\x94\x98\x9b\x1a\x9e\xf7\x4a\x1d\x7b\x81\x7e\x7b\x1a\x78\x99\x7e\x9f\x96\x93\x8e\x98\x9d\x1e\x0e\xf7\x35\xf7\x9e" +"\x15\xa9\xb8\x9a\xaa\x9a\x1a\x93\x83\x91\x82\x84\x87\x88\x7e\x80\x1e\x6c\x68\x6e\x74\x4f\x69\x08\x78\x81\x87\x87\x84\x1a\x85\x8f" +"\x85\x92\x87\x1e\x91\x88\x8c\x8a\x8f\x89\x91\x88\x19\x99\x82\xbc\x6e\xa3\x77\xad\x64\x19\x84\x91\x8f\x89\x92\x1b\x94\x92\x92\x93" +"\x9a\x76\xb5\x73\xab\x1f\xf7\xb3\xa3\x0a\x0e\xf7\x9b\xf8\xae\x15\xfc\x34\x07\xa2\x6c\x5e\xa1\x7c\x1b\x83\x84\x84\x82\x84\x8d\x87" +"\x93\x85\x1f\xb8\x65\x9a\x79\xb8\x41\x08\x7e\x92\x8e\x88\x94\x1b\x92\x8f\x90\x9c\x95\x1f\xab\xc3\xa5\xab\xaf\xa9\x08\x98\x96\x8e" +"\x90\x91\x1a\x94\x85\x93\x83\x7c\x6b\x7c\x6e\x5d\x1e\xf8\x33\x07\x0e\xf8\xdd\xf7\x9f\x15\xfc\x3c\x06\xa3\xab\xa0\xb5\x9a\x1a\x93" +"\x84\x92\x82\x84\x87\x89\x84\x85\x1e\x64\x5e\x78\x7c\x41\x60\x08\x7d\x83\x88\x88\x83\x1a\x84\x8f\x87\x9e\x81\x1e\xc6\x6a\xaa\x73" +"\xa9\x68\x08\x7f\x95\x90\x87\x91\x1b\x95\x93\x91\x93\x9a\x7b\xab\x6e\xb7\x1f\xf8\x3c\x06\x0e\xa3\xf7\x6b\x15\xf8\x3c\xa3\x0a\xfc" +"\x3c\x06\x0e\xf7\xd0\x7f\x15\xf8\x34\x07\x75\xaa\xb8\x75\x9a\x1b\x93\x92\x92\x94\x92\x89\x8f\x83\x91\x1f\x63\xac\x79\xa0\x6c\xbd" +"\x88\x8f\x88\x8f\x88\x91\x88\x90\x88\x90\x8a\x8c\x08\xf7\x16\x0a\x69\x51\x74\x6e\x66\x6c\x08\x7e\x81\x88\x86\x85\x1a\x81\x91\x84" +"\x93\x9a\xa9\x99\xa9\xbb\x1e\xfc\x34\x07\x0e\xf7\xa6\xf7\x02\x15\xa7\x5f\x69\x9b\x7c\x1b\x84\x84\x83\x82\x85\x8f\x86\x97\x80\x1f" +"\xae\x6e\xa5\x6b\xac\x52\x08\x79\x95\x8f\x87\x92\x1b\x92\x90\x8e\x93\x8f\x1f\xb7\xd4\x9e\xa4\xb8\xb0\x08\x92\x91\x8e\x8f\x92\x1a" +"\x94\x84\x92\x83\x7c\x5f\x75\x74\x6b\x1e\xf7\xae\x07\x74\xab\xb7\x76\xa7\x0a\xab\x9a\xa8\xb9\x1e\x0e\xf7\x57\x63\x15\x5f\xf7\x6a" +"\xb7\x07\xfb\x18\xf7\x51\x15\xa7\x5f\x69\x9b\x7c\x1b\x84\x84\x83\x82\x85\x8f\x86\x97\x80\x1f\xae\x70\xa5\x6a\xac\x52\x08\x79\x95" +"\x8f\x87\x92\x1b\x92\x90\x8e\x92\x8f\x1f\xb6\xd5\x9f\xa3\xb8\xb0\x08\x92\x91\x8e\x8f\x92\x1a\x94\x84\x92\x83\x7c\x5e\x75\x75\x6c" +"\x1e\xf7\xad\x07\x75\xaa\xb8\x75\xa7\x0a\xac\x9a\xa8\xb8\x1e\x0e\xf7\x43\x9a\x15\x77\xab\xb2\x81\xb8\x1b\xcd\xc1\xa2\xbb\xb8\x1f" +"\xb2\xb5\xa1\xc0\xc2\x1a\xcd\x74\xb3\x55\xa7\x1e\xc3\xae\xa6\xb6\xc1\x1a\xda\x4d\xbf\x2e\x4d\x54\x73\x5e\x63\x1e\x6e\x6a\x7b\x62" +"\x76\x2d\xfb\x10\xfc\xc2\x18\xf7\x00\x06\xf7\x1b\xf8\x70\x15\x98\x06\x9b\x8a\x05\xd9\x8a\xb1\x73\x59\x1a\x49\x5d\x56\x51\x5d\x67" +"\x98\xa5\x75\x1e\xc4\xf7\x95\x05\xec\xa0\xa1\xa6\xc4\x1b\xad\x9e\x7a\x6b\x6b\x75\x6c\x67\x77\x1f\x76\x80\x7a\x87\x6a\x8a\x08\x0e" +"\x3e\x0a\x74\xf7\xc0\x2f\x1d\x3e\x0a\xfb\x42\xf7\xa4\x45\x1d\xf8\xd8\x7a\x0a\x9d\x69\x5c\x94\x55\x1b\x2d\x5a\x0a\xfb\x48\xf7\xae" +"\x60\x0a\x3e\x0a\xfb\x2a\xf7\xe4\x5b\x1d\xf7\xbe\xf7\x78\x15\x39\xf7\x59\x05\x4c\x06\x59\x6b\x74\x65\x6d\x9c\x7e\xb7\x1f\x95\x06" +"\xd8\xfb\x4f\xfb\x62\xfb\x8a\x05\x79\x75\x83\x7a\x7a\x1a\x72\xa0\x79\xa7\xa1\x9f\x97\xa3\x9f\x1e\xf7\x3c\xf7\x5c\xe7\xfb\x71\x05" +"\xcb\x06\xbd\xaa\xa2\xb1\xa9\x79\x98\x60\x1f\x80\x06\x35\xf7\x67\xf7\x4d\xf7\x70\x05\x9c\x9f\x94\x9e\x9b\x1a\xa4\x76\x9d\x6d\x73" +"\x7f\x84\x6f\x73\x1e\x0e\xf7\xad\xf8\x88\x15\xfb\x1e\xfb\x07\xfb\x03\xfb\x1a\xfb\x22\xf7\x06\xfb\x05\xf7\x24\xf7\x1f\xf7\x05\xf7" +"\x03\xf7\x1c\xf7\x1f\xfb\x08\xf7\x06\xfb\x21\x1f\x8f\xfb\xbe\x15\xf5\x23\x05\x72\x67\x68\x80\x61\x1b\x60\x6e\x94\xa3\x6c\x1f\x5d" +"\xb8\x15\x70\xaf\x82\xa6\xb4\x1a\xb7\x96\xae\xa3\xac\x1e\xf7\x02\xfb\x00\x05\xe8\x16\xf7\x02\xf6\x05\xa1\x6d\x94\x72\x66\x1a\x5a" +"\x80\x66\x73\x6a\x1e\xfb\x2c\xf7\x29\x15\xfb\x03\xf7\x00\x05\xa3\xac\xae\x96\xb5\x1b\xb7\xaa\x81\x72\xae\x1f\x0e\xf8\x82\x16\x9b" +"\x07\xfb\x15\x9e\x50\xce\xf7\x18\x1a\x9c\x6e\x91\x81\x94\x80\x08\x68\xa9\xba\x73\xb5\x1b\xd1\xc2\xc4\xd4\xd1\x59\xc2\x4c\x78\x80" +"\x88\x7e\x70\x1f\x89\x8a\x82\x86\x86\x89\x08\xa1\xaa\x93\xa3\xa8\x1a\xd0\x53\xc1\x44\x44\x54\x55\x45\x70\x90\x7d\xa5\x61\x1e\x9c" +"\x68\x78\x91\x76\x1b\x4f\x58\x52\x46\x43\xc3\x53\xd2\xca\xc0\xb1\xd2\xad\x1f\x8c\x78\x05\x85\x07\x8a\x53\x6e\x4c\x62\x6a\x72\x78" +"\x79\x84\x42\x7c\x08\x7b\x07\x0e\xba\x1d\xf8\x66\xf7\x68\xde\x1d\xf9\x19\xf8\x83\x15\xa3\xf7\x00\x05\xca\x1d\xcb\xf7\xb5\x05\x97" +"\x06\xaa\x97\x8d\x97\x99\x1f\x99\x95\x96\xa1\x9c\x1a\x95\x84\x9a\x82\x91\x1e\x92\x82\x81\x8d\x71\x1b\xfb\xbf\xfb\x34\xf7\x00\x1d" +"\x0e\xf7\xe7\xf8\x41\x15\x4d\x7f\x62\x79\x60\x6b\x08\x45\x58\x60\x3f\x45\x1a\xfb\x02\xe2\x40\xf7\x16\xe5\xe7\xb1\xc9\xc6\x1e\xba" +"\xbd\xa7\xc9\xc2\x1a\xc8\x70\xb7\x43\xc4\x1e\xfb\x03\xe2\x7d\x99\x9d\x1a\xa4\xa2\x96\xc0\x1e\xd9\x06\xb2\xa4\xa1\xac\xa0\x7c\x95" +"\x6b\x1f\x4d\x06\x48\x59\x80\x75\x68\x1f\x64\x73\x6e\x5f\x68\x1a\x73\x98\x75\xac\x6d\x1e\xbe\x27\x15\xd9\xbe\x62\x4b\x3c\x34\x44" +"\x28\x3f\x58\xb4\xc9\xd9\xe4\xd5\xea\x1f\x0e\xf6\xf7\xa2\x15\xe1\x20\xdc\xfb\x09\xaf\x47\xba\xe0\xe3\xf7\x0f\xdb\xeb\x4d\xd1\xfb" +"\x10\xf7\x44\x6e\xc4\x60\x3a\x53\x3c\xfb\x06\xfb\x23\x08\x0e\xf8\x62\xd0\x1d\x0e\x33\x1d\xfb\x4c\xf8\x2c\x2b\x0a\x33\x1d\x4b\xf7" +"\xcc\x45\x1d\x33\x1d\x59\xf8\x0c\x15\x62\x73\x0a\x6d\x1f\x0e\xf8\xd9\xf7\x7b\x15\xbe\xfc\x8d\x07\x8f\xf7\x10\xcd\xc7\xf7\x15\x88" +"\x08\xf7\xc6\xbe\xfb\xba\xf7\x09\x0a\x49\x99\x50\xa4\x65\x1e\xa2\x68\xae\x6c\xac\x7e\x08\x7c\xaf\xa7\x87\xd4\x1b\xf7\xba\xbe\xfb" +"\xc6\x06\xfb\x14\x88\x4a\xc5\x85\xf7\x0c\x08\x90\x07\x0e\x33\x1d\xfb\x47\xf7\xf1\x33\x0a\xf7\x98\xf7\xa3\x15\x94\x92\x8b\x8b\x93" +"\x91\xa7\xa2\x8b\x8b\x92\x8f\x08\x9c\xa6\xa1\x91\xb0\x1b\xb9\xa2\x7c\x6c\x85\x8a\x85\x8a\x85\x1f\x4b\xfb\xb0\x81\x5c\x5e\x6a\x56" +"\x8c\x19\x29\x06\x6a\x83\x89\x7e\x7b\x1f\x7a\x7e\x82\x7b\x7b\x1a\x6c\x9c\x7f\xb7\x1e\xf0\x06\xf7\x07\x8d\xeb\xd4\xa3\xf4\xcb\xf7" +"\xb4\x18\x8e\x9a\x8d\x9b\x9a\x1a\xd3\x4f\xba\x2f\x58\x5c\x7b\x6c\x61\x1e\x93\xae\x05\x28\x06\x57\x6e\x75\x61\x72\x99\x7f\xae\x89" +"\x1f\x5b\xfb\x6f\x05\x88\x06\x6b\x83\x89\x7e\x7b\x1f\x7a\x7e\x82\x7b\x7a\x1a\x7f\x90\x81\x95\x81\x1e\x83\x95\x91\x89\xa8\x1b\xf7" +"\x04\x06\xab\x96\x2a\x0a\x9d\x9b\x1a\xa9\x79\x97\x60\x1e\x8a\x06\x0e\xf8\xe2\x89\x1d\xfb\x02\xe1\x45\xf7\x1a\x96\x97\x8b\x8c\x9c" +"\x1e\x59\x65\x75\x67\x5f\x5d\x0a\xae\xd9\xc7\xe4\xab\x1f\xb3\x9a\x9b\x9d\xa7\x1a\xa3\x7a\x9c\x73\x80\x7f\x89\x88\x7e\x1e\x74\x29" +"\x72\x87\x5d\x1b\x37\x60\xa3\xbf\x48\x1d\x0e\xf8\x58\xf7\xa2\x15\x89\x75\x7f\x8a\x75\x1b\x55\x66\x9b\xa2\x9f\xae\x9a\xb9\x9d\xa5" +"\x89\x87\x9c\x1f\x87\xa1\x8c\x8b\x92\x1b\xa8\xa5\xa5\xa7\x99\x84\x96\x7d\x92\x1f\x96\x74\x5c\x94\x64\x1b\xfb\x06\x2f\x4c\x3e\x73" +"\x94\x7c\xaa\x6c\x1f\x4b\x6e\x64\x59\x57\x1a\x48\xce\x5f\xf0\xbd\xd5\x9b\x9b\xa8\x1e\x9d\x95\x96\xa0\xa1\x1a\x9e\x7c\x9a\x79\x84" +"\x81\x8a\x89\x81\x1e\x81\x5c\x76\x88\x6e\x1b\x5b\x6b\x9a\xa1\xa7\xc7\xa3\xd2\x9e\x9b\x8a\x89\x9d\x1f\x0e\xf8\x26\xf7\xa1\x15\x65" +"\x06\x3f\x5f\x97\xa0\x9e\xaf\x98\xc0\xbd\x9b\x83\x6c\x9c\x1f\x6b\x9b\x98\x81\xa4\x1b\xa8\x9d\x9d\xaf\x92\x1f\x8e\xa0\x8d\x93\x91" +"\x9d\x08\x90\x9d\x8d\x95\x94\x1a\xa6\x75\x9e\x6c\x76\x7e\x85\x7b\x7f\x1e\x9b\x6a\x6b\x91\x5d\x1b\xfb\x0b\x3e\x57\x3a\x74\x90\x79" +"\x9a\x74\x1f\x4f\x6a\x71\x65\x58\x1a\x3c\xd5\x55\xf7\x01\xc3\xd1\x96\x9a\xb1\x1e\xb1\x99\x9b\x9d\xa6\x1a\xa7\x75\xa2\x70\x81\x7d" +"\x88\x85\x77\x1e\x78\x4c\x74\x87\x66\x1b\x5f\x6a\x99\x9c\xa5\xcc\xa4\xcf\x9c\xa3\x8a\x8a\x99\x1f\x8f\x06\x8e\x06\x91\x8a\x05\xf7" +"\x00\xf8\x21\x15\x9d\x96\x93\x98\x22\x0a\x7c\x81\x81\xf7\x10\x1d\xf7\x00\xf7\xdb\x15\x70\x83\xed\x0a\x84\x96\x98\x88\xa5\x1b\xf8" +"\x14\x06\xa2\x98\x8d\x91\x95\x47\x1d\xfc\x14\xfb\x42\x15\x70\x83\x8a\x84\x80\x1f\x7a\x81\x80\x79\x4c\x1d\xf8\x14\x06\xa2\x99\x8d" +"\x91\x94\x47\x1d\xfc\x14\xf7\xef\x15\x70\x83\x8a\x84\x80\x1f\x7a\x81\x80\x79\x4c\x1d\xf8\x14\x06\xa2\x98\x8d\x91\x95\x47\x1d\x0e" +"\xf8\x71\xf7\x54\x15\x8a\xcf\x87\xa8\x7d\xaa\x08\xcc\x6e\x46\xb2\x36\x1b\xfb\x14\x3b\x37\xfb\x1a\xfb\x1a\xd8\x3c\xf7\x15\xeb\xce" +"\xb4\xd7\xa5\x1f\x8c\x8e\x8d\x8f\x05\x5e\x06\x8a\x89\x8b\x8a\x88\x87\x08\x5a\x72\x5a\x70\x4a\x1b\x41\x69\xa1\xc8\x77\x1f\xd6\x07" +"\xf7\x96\xb4\x15\xfb\x94\xd3\x06\xc5\xa9\xab\xa0\xc8\x1b\xcb\xbd\x6d\x5a\x9e\x1f\x0e\xc3\x1d\x0e\xc3\x1d\xf7\x75\xf7\x39\x15\x9e" +"\x97\x93\x97\x22\x0a\x7b\x82\x80\x87\x82\x7e\x1e\xfb\x12\x38\x05\x79\x7f\x82\x7f\x7d\x1a\x7c\x96\x80\x9b\x94\x26\x0a\xf7\xb2\xf8" +"\x8a\xd6\x1d\xf7\xbb\xf8\x98\xd6\x1d\x0e\xf8\x30\xf7\x9e\x15\xfb\x6b\xfb\xb9\x58\xf7\xed\xf8\xc6\xfb\xed\x58\xf7\xb9\xfb\x56\xfb" +"\xb9\x58\x07\x0e\xf7\xd6\xf7\xac\x15\xf6\x94\xe0\xe9\xf7\x01\x1a\xf7\x0a\x2b\xea\xfb\x0a\xfb\x0a\x2c\x2c\xfb\x0a\xfb\x01\xe0\x2d" +"\xf5\x82\x1e\x32\xfb\x29\x64\xf7\x29\xfb\x2c\xb7\xf7\x2c\xf7\x28\xb2\xfb\x28\x07\x72\xf8\x69\x15\xeb\xd8\x40\x2f\x2d\x3f\x3f\x2d" +"\x2e\x3f\xd6\xe9\xe6\xd7\xd8\xe5\x1f\x0e\xf7\x50\xf7\x7c\x15\xa8\x89\x06\x8a\x8a\x87\x89\x86\x1e\x8a\x86\x8a\x86\x86\x1a\x71\x9d" +"\x79\xa5\x9c\x9d\x93\x98\x98\x1e\x92\x92\x94\x9e\x8f\x9f\xa3\xf7\x01\x18\x8d\x95\x8d\x98\x91\x1a\xa0\x78\x9c\x73\x6c\x6e\x73\x6c" +"\x85\x1e\x8a\x85\x8a\x88\x8a\x1a\x8a\x87\x05\x6e\x06\xa7\xf7\x12\x05\xf7\x3c\x06\x88\x80\x05\x89\x80\x89\x7e\x85\x1a\x76\x9f\x7b" +"\xa4\x9a\x9c\x92\x99\x9a\x1e\x97\x96\x8e\x92\x90\xa5\xa5\xf7\x08\x18\xfc\x10\x06\x6e\x7d\x88\x80\x7e\x1f\x7c\x80\x81\x77\x7b\x1a" +"\x6f\x9c\x7d\xb0\x1e\x3c\xfb\xfa\x05\x71\x80\x88\x7f\x7c\x1f\x7a\x7e\x82\x7b\x7a\x1a\x7f\xab\x1d\x91\x89\xa8\x1b\xf7\x37\x06\xaa" +"\x98\x8f\x96\x9a\x1f\x98\x96\x95\x9e\x9a\x1a\xaa\x7b\x97\x5f\x1e\x50\x06\xf7\xd6\x16\x99\xc9\x92\x92\x05\xe4\xdc\x8b\x8b\x9c\x1b" +"\x93\x94\x86\x80\x94\x1f\x7d\x98\x92\x87\x99\x1b\xa9\xa3\xa6\xac\xb4\x61\xb0\x5d\x67\x75\x7e\x5b\x60\x1f\x96\xbb\x05\x23\x06\x6e" +"\x7d\x87\x81\x7e\x1f\x7c\x80\x81\x77\x7b\x1a\x6f\x9c\x7d\xb0\x1e\x6b\xfb\x26\x05\x71\x82\x8a\x84\x80\x1f\x73\x7e\x7e\x78\x76\x1a" +"\x7f\xab\x1d\x92\x89\xa7\x1b\xf7\x40\x06\xaa\x96\x4f\x0a\xa9\x79\x97\x61\x1e\x0e\xf7\xa9\xf7\x23\x15\x42\xf7\xae\x05\x4d\x06\x58" +"\x6b\x73\x65\x6d\x9a\x81\xb8\x8a\x1f\xdc\xfb\xd0\x05\x6c\x56\x7e\x62\x5c\x1a\x5c\xa2\x6e\xb1\xc6\xa6\xc8\xf7\x25\x91\x1e\xf7\x4d" +"\xf7\xb5\x05\x9e\x97\x9c\x9e\x90\x1b\x8c\x06\x8a\x8e\x8b\x8f\x8a\x1e\x8d\x06\x8a\x8d\x8d\x8b\x8e\x1b\xa7\xa3\xa3\xa6\xad\x71\xa0" +"\x61\x53\x69\x70\x34\x53\x1f\x0e\x70\x1d\x63\xf7\xdd\x2b\x0a\xc0\x1d\xdf\xf7\x87\xaf\x0a\x70\x1d\xf7\x56\xf7\xb7\x15\x8f\x8f\x8e" +"\x8f\x8e\x8e\x8c\x8c\x19\x93\x95\x8e\x92\x96\x1a\x9d\x7d\x98\x78\x7b\x7c\x83\x7b\x7d\x1e\x23\xfb\x0e\x05\x7b\x79\x86\x82\x7d\x1a" +"\x7b\x9a\x7d\x9d\x9a\x9b\x94\x9c\x99\x1e\x0e\xc0\x1d\xe9\xf7\xbd\x5b\x1d\xf8\xee\xf7\xf8\x15\xfc\x81\xf7\x65\x05\x90\x7e\x80\x8e" +"\x82\x1b\x7b\x78\x7f\x7b\x83\x1f\x8a\x89\x05\x88\x85\x89\x84\x83\x1a\x75\x97\x7d\xa6\x7f\x1e\xf7\xb2\xfb\x0b\xfb\xb2\xfb\x0f\x05" +"\x70\x7f\x7f\x7d\x75\x1a\x85\x8d\x83\x8e\x84\x1e\x8c\x8a\x05\x7a\x93\x9e\x7f\x9c\x1b\x93\x97\x8e\x90\x97\x1f\x7f\x5f\x15\x65\x74" +"\x79\x6d\x6d\xa2\x79\xb1\x1f\xf8\x1e\x06\xb0\xa2\x9d\xa9\xa9\x74\x9d\x66\x1f\x0e\xf7\x94\xf8\x67\x15\xf7\x02\x06\xad\xa0\x9d\xa8" +"\x9e\x7e\x95\x70\x1f\xfb\x00\x06\x8d\x98\x8c\x91\x93\x1a\xa7\x7d\x99\x6f\x66\x77\x77\x5a\x7e\x1e\x5e\x06\x69\x76\x79\x6e\x77\x98" +"\x82\xa6\x1f\xb6\x06\x3b\xfc\x00\x54\x0a\xf7\xb3\xf8\xef\x15\xfb\x0d\x06\x6c\x80\x2a\x1d\x7b\x1a\x7a\x96\x7b\x99\xf7\x6e\x1d\x32" +"\xfc\x21\x05\xf7\x05\x0a\x6d\x9d\x7f\xb5\x1e\xf7\x04\x06\xa9\x99\x29\x1d\x9c\x80\x9c\x7d\x32\x1d\x8b\x77\x4e\x0a\xcd\xa3\x96\xba" +"\x1b\xb7\xbe\x0a\xa8\x9a\x8f\x96\x98\x1f\x9b\x97\x94\x9d\x9b\x1a\x9d\xf6\x1d\xf7\x44\xf7\xdd\xf7\x05\x1d\x77\x86\x85\x4d\x1d\x26" +"\x0a\xf7\xc0\x75\x15\x9b\xd2\xba\xdb\xe3\xf7\x02\x08\xd5\xe9\xa4\xbf\xc9\x1a\xca\x55\xc0\x4a\x4b\x5d\x62\x3f\x76\x1e\xd9\x72\x5f" +"\xb2\x4b\x1b\x4a\x58\x56\x47\x57\x9b\x68\xcc\x33\x1f\xf7\x09\xfb\x30\xa9\x56\xa0\x3b\x08\x0e\xd1\x16\xf8\x61\xf7\xcb\x06\xfb\x7b" +"\xf7\x92\xfb\x7a\xfb\x92\x05\xbd\xfb\x99\x15\xf7\x85\x07\xf7\x48\xf7\x5a\xf7\x49\xfb\x5a\x05\xfb\x85\x07\x0e\xf8\x26\x35\x1d\x44" +"\xa9\x0a\xf7\xee\xf8\x3d\x15\xfb\x44\x06\x6a\x7c\x0a\x79\x7a\x1a\x6f\x9e\x7e\xb6\x1e\xcd\x2e\x0a\x47\x25\x1d\x6e\x9d\x7e\xb6\x1e" +"\xf7\x84\x06\xa7\x9a\x8f\x96\x99\x83\x1d\x4c\x06\xf3\x5d\x1d\xf7\x5c\xfb\x40\x84\x0a\x55\x8c\x19\xfb\x03\x26\x1d\xf7\x05\x06\xf7" +"\x04\xf1\xd9\xf1\xa0\x1f\xed\xf8\x4d\x05\xfb\x6b\x25\x0a\xf7\x6e\xf7\xac\x15\xfb\x13\x06\x73\xfb\x00\x05\xf7\x13\x06\x0e\xf8\x54" +"\x35\x1d\x49\xf8\x8a\x33\x0a\xf7\xc0\xf7\x8a\x15\x52\xba\xc8\x69\xbf\x1b\xa7\xa5\x93\x98\x9f\x1f\xaa\xa1\xa2\xba\xb2\x1a\xd0\x50" +"\xc3\x43\x54\x4f\x68\x54\x61\x1e\xc6\x59\x56\xa9\x55\x1b\x43\x50\x52\x44\x47\xc4\x52\xd1\xc7\xb8\xa4\xca\xc1\x1f\xae\xb2\x15\xb9" +"\xab\xbd\xa9\xb6\x1b\xba\xaa\x6d\x5e\x5e\x6c\x6b\x61\x77\x76\x91\x97\x75\x1f\x7a\x94\x8b\x8b\x5c\xb9\x08\x47\x8f\x15\x5c\x66\x58" +"\x6d\x61\x1b\x5e\x6e\xaa\xba\xb6\xaa\xa9\xb8\xb4\xb3\x74\x58\xba\x1f\x0e\xf7\xa7\x5c\x15\x44\x84\x6f\x7b\x84\x88\x8d\x99\x83\x1e" +"\x9a\x80\x7c\x94\x7a\x1b\x71\x79\x7a\x72\x6d\xa5\x76\xb0\xa7\xa7\x98\xa3\xa2\x1f\xa9\xab\x93\xa9\xe4\x1a\xf8\x8a\x07\xca\x92\xa6" +"\x9d\xc0\x0a\xf7\xda\xf9\x0e\x15\x57\xfd\x35\x06\x4b\x83\x70\x7a\x86\x87\x8f\x94\x85\x1e\xa0\x7d\x81\x92\x77\x1b\x72\x78\x7a\x72" +"\x6e\xa4\x75\xae\xa3\xa4\x94\x9a\x9f\x1f\xb0\xa8\x99\xb6\xe4\x1a\x0e\xf7\xa6\xfb\x4a\x15\xbf\xf9\x35\x06\xca\x93\xa6\x9c\xc0\x0a" +"\xf8\xad\xf7\x74\x15\xf7\x2a\x86\xae\x70\xb8\x1e\xce\x61\x3e\xb4\x35\x1b\x57\x5b\x7c\x70\x62\x1f\x58\x68\x6e\x5d\x81\x4d\x08\x86" +"\x69\x8a\x75\x2a\x1a\xfb\x52\x07\x75\x94\x7f\x9c\x9b\x95\x98\xa0\x1e\xf7\x55\x07\x8c\xe3\x8b\x8b\x95\x1a\x8e\xbf\x92\xa9\x9a\xa1" +"\x08\xbd\xad\xc8\xab\xcb\x1b\xc8\xc6\x6e\x5e\xab\x1f\xa6\x66\x91\x66\xfb\x1c\x1a\xfb\x55\x07\x75\x94\x7f\x9b\x9b\x96\x99\x9f\x1e" +"\x0e\xf7\xc5\xf8\xc7\x15\xfb\x33\xfb\x13\xfb\x10\xfb\x2f\xfb\x32\xf7\x11\xfb\x12\xf7\x31\xf7\x2f\xf7\x12\xf7\x12\xf7\x30\xf7\x2d" +"\xfb\x12\xf7\x14\xfb\x2b\x1f\x30\xfb\x34\xf7\x2c\x1d\xf7\xa2\x34\x15\x86\x48\x82\x6c\x74\x69\x08\x5a\x6a\x5a\x72\x4b\x1b\x4f\x5e" +"\xa0\xb4\x6a\x1f\x6e\xb0\x80\xad\x85\xd4\x95\x63\x93\x7a\x9e\x75\x08\x61\xae\xbc\x76\xca\x1b\xc9\xbc\xa0\xb5\xae\x1f\x9e\xa1\x93" +"\x9c\x95\xb3\x08\x29\xe2\xf7\x2c\x1d\x0e\xf8\x54\x67\x1d\x88\x7f\xb6\x0a\xf7\x9c\xe5\x1d\xab\xac\xbb\xa9\x1f\xce\xb4\x8b\x8b\x95" +"\x99\x08\x91\x93\x8f\x97\x95\x1a\x9c\x81\x9b\x7c\x69\x0a\xfb\x08\x06\xec\x5d\x1d\x0e\xa5\x0a\x0e\xf7\xa4\xf8\xe4\x15\x69\x6c\x6e" +"\x6a\x73\x68\x0a\x9e\x79\xa4\xae\xaa\xa9\xab\xa4\x79\x9c\x70\x1f\xfb\x99\xfc\x67\x15\x86\x74\x89\x7c\x7e\x1a\x56\xb6\x67\xcc\xc6" +"\xb5\xa8\xb4\xa4\x78\x9e\x73\x84\x83\x89\x87\x81\xf7\x71\x1d\x93\x8d\x8b\x8b\x8d\x95\x1f\xc2\xf7\x93\x05\x8d\x94\x8d\x99\x92\x1a" +"\xa2\xf7\x1d\x0a\xf8\x42\xd0\x1d\xfb\xd2\xfc\x53\x15\x87\x77\x89\x7b\x7c\x1a\x55\xb5\x68\xcb\xc6\xb5\xa8\xb4\xa4\x79\x9e\x73\x83" +"\x83\xf7\x3b\x1d\x8e\x8d\x92\x1f\xc2\xf7\x93\x05\x8d\x96\x8d\x96\x92\x1a\xa3\xf7\x1d\x0a\xa5\x0a\xf7\x40\xf7\x58\x15\x9d\x97\x94" +"\xf7\x07\x1d\x26\x0a\xf8\x54\x67\x1d\x89\x7e\x7c\xad\x1d\x6f\x9e\x7e\xb6\x1e\xd4\x2e\x0a\xfb\x0a\x25\x1d\x6e\x9d\x7e\xb6\x1e\xf7" +"\xeb\x06\xa8\x9a\x8f\x96\x98\x83\x1d\xfb\x08\x06\xf7\x41\xf8\xa7\x15\x7d\xf7\x37\x1d\xa8\x5f\x7a\x93\x74\x1b\x6c\x6b\x7c\x6e\x6b" +"\x1f\x6f\x71\x7e\x78\x7a\x1a\x7c\xf7\x2b\x0a\xaf\x94\x8e\x1d\xa0\xa1\x94\x99\x98\x1a\x99\x7d\x97\x7b\x1e\x0e\xf8\x2d\xa4\x0a\xf7" +"\x47\xf7\x94\x15\xe4\x31\x05\x81\xf7\x1f\x1d\xfb\x10\x05\x6e\x77\x87\x1d\xf7\x9c\xf7\xd6\x15\xb4\x90\xa4\xa1\xac\x1a\xaa\x7a\x97" +"\x5f\x1e\x26\x06\x59\x6b\x72\x65\x6f\x9e\x7e\xb5\x1f\x90\x06\x5b\xfb\x6d\x05\x5a\x89\x6e\x74\x66\x1a\x6e\x9d\x7e\xb6\x1e\xf7\x05" +"\x06\xbd\xab\xa3\xb0\xa9\x79\x98\x60\x1f\x84\x06\x9a\xcd\xc5\x8a\xb5\x59\xad\xfb\x01\x19\x87\x8c\x88\x8c\x88\x1e\xda\x06\xbd\xab" +"\xa2\xb1\xa9\x79\x98\x60\x1f\x75\x06\x7c\xb4\x70\xb5\x6a\xa8\xf7\x29\xf4\x18\xbc\x8c\xaa\xa2\xb0\x1a\xa9\x79\x98\x60\x1e\x50\x06" +"\xfb\x78\xfb\x3a\x05\x0e\x8e\x0a\xf5\xfb\x0b\x15\x8c\x8c\x8c\x8c\x8d\x8c\x8e\x64\x0a\x7d\xf7\x0f\x0a\x7a\x79\x87\x83\x65\x0a\xf7" +"\x92\xf7\x32\x15\x9b\x96\xda\x39\x05\x7b\x7c\x84\x7e\x7a\x1a\x6e\x9d\x7e\xb5\x1e\xf7\x0b\x20\x0a\x9c\x1a\x97\x86\x97\x81\x93\x1e" +"\x93\x82\x82\x8c\x6f\xd4\x0a\x9d\x1a\xa8\x7a\x97\x5f\x1e\xfb\x04\x82\x0a\x7e\x82\x7b\x79\x1a\x81\x8c\x86\x91\x82\x1e\x3a\x56\xaa" +"\xf7\x1f\x05\xfb\x0d\x06\x6d\x7f\x88\x80\xf7\x0e\x0a\x96\x06\x5a\xfb\x6e\x05\x7f\x06\x6b\x80\x88\x7f\x7c\x1f\x7c\x7e\x82\x7a\x7a" +"\x1a\x6e\x9d\x7e\xb5\x1e\xf7\x0c\x06\x0e\x43\x1d\xf7\x56\x30\x0a\xcd\xf2\x15\x60\x8a\x6c\x73\x69\x1a\x6d\x9e\x7d\xb5\x1e\xf0\x06" +"\xbd\xab\xa3\xb0\xa3\x7f\x98\x70\x90\x1f\xf7\x0f\xf7\x3b\xc8\xfb\x3b\x05\x64\x85\x73\x74\x6b\x1a\x6d\x9c\x7f\xb8\x1e\xe7\x06\xbd" +"\xab\xa2\xb0\xa9\x7a\x98\x61\x1f\xfb\x47\xf8\x88\x05\x26\xf7\x6d\x1d\xb8\x06\xb1\xfb\x00\x05\x0e\x43\x1d\xf7\xc5\xf8\x50\xde\x1d" +"\x43\x1d\x56\xfb\x72\x23\x1d\x43\x1d\xf7\x73\xf7\xc0\x15\x60\x60\x64\x64\x6b\xf7\x2e\x0a\xb3\xb2\xab\x73\xa2\x69\x1f\x82\x06\x0e" +"\xf7\x7d\xf7\xf7\x15\xf7\xb1\xf7\x0b\x05\xa6\x97\x97\x99\xa1\x1a\x92\x89\x92\x88\x92\x1e\x8a\x8d\x05\x9a\x84\x78\x98\x7a\x1b\x82" +"\x80\x88\x86\x7e\x1f\xfc\x80\xfb\x65\xf8\x80\xfb\x6b\x05\x86\x97\x97\x88\x93\x1b\x9c\x9f\x98\x9b\x92\x1f\x8c\x8c\x05\x8e\x92\x8d" +"\x93\x91\x1a\xa1\x7f\x99\x70\x97\x1e\x6c\xfb\x7b\x15\xb0\xa2\x9d\xa9\xa9\x75\x9d\x65\x1f\xfc\x1d\x06\x65\x74\x79\x6d\x6d\xa2\x79" +"\xb1\x1f\x0e\xf7\x2f\xf7\x4b\x15\x78\x58\x74\x73\x69\x87\x08\x60\x83\x75\x76\x6a\x1a\x6e\x9d\x7e\xb6\x1e\xf7\xd4\x06\xb9\xa9\x95" +"\xa3\xa4\x1f\x9f\x9d\x98\xa9\xa4\x1a\xa3\x79\x9b\x70\x6e\x75\x7c\x6f\x80\x1e\xfb\x55\x06\x9c\xa6\x96\xa2\x95\xa8\x08\xf7\x04\x06" +"\xa3\x9c\x9a\xa1\x9c\x82\x92\x77\x1f\xfb\x06\x06\x8c\xa5\x05\xf7\x0c\x06\xa3\x9c\x9a\xa0\x9d\x82\x92\x77\x1f\xfb\x1a\x06\x89\xaf" +"\x8a\xa0\x91\x1a\xbd\xac\xab\xbe\xa5\x9c\x84\x7b\x97\x1e\x71\x9d\x91\x88\x9f\x1b\xad\xaa\xa9\xac\xbb\x47\xb7\x41\xfb\x0c\x2a\x30" +"\xfb\x06\x81\x8c\x84\x8d\x71\x1f\x57\x06\x72\x7b\x7d\x75\x7a\x94\x83\x9f\x1f\xcf\x06\x8a\x71\x05\x41\x06\x72\x7b\x7d\x75\x79\x94" +"\x84\x9f\x1f\x0e\xf7\xd9\xf2\x15\xd9\xf7\xf4\x05\xa9\x92\xa8\x99\xc3\x1b\xab\xb2\x87\x85\xb1\x1f\x89\x97\x95\x8a\x92\x1b\xaa\xaa" +"\xaa\xaa\x9f\x7f\x98\x73\x92\x1f\x93\x6c\x4e\x92\x61\x1b\xfb\x0e\x33\x53\x31\x77\x1f\x84\x6b\x05\x60\x06\xe9\x0a\xb4\x39\x0a\x54" +"\x8a\x1d\x9d\x7f\xb5\x1e\xf7\xbe\x7a\x1d\x0e\xf7\xe4\xf8\x31\x15\x91\x75\x77\x8e\x76\x1b\xfb\x0b\x2c\x2c\xfb\x0a\xfb\x0a\xea\x2c" +"\xf7\x0a\xf7\x0a\xea\xea\xf7\x0a\xdb\x5e\xd4\x45\xb0\x1f\xe3\xf7\x53\x05\x61\xaa\xaa\x6d\x95\x1b\x92\x8f\x8f\x90\x8f\x89\x8f\x85" +"\x95\x1f\x75\xad\x78\xc0\x88\xaf\x08\x9e\x8a\x8a\x8e\x85\x1b\x87\x87\x89\x83\x81\x1f\x78\x7a\x4a\x73\x67\x88\x08\x79\x88\x87\x89" +"\x83\x1a\x80\xa3\x84\xb2\x1e\x9f\x06\x9f\x8c\x05\x8d\x06\xfb\x31\xfb\x79\x15\xea\xd8\x40\x2f\x2d\x40\x3f\x2d\x2e\x3f\xd6\xe8\xe7" +"\xd7\xd8\xe5\x1f\x0e\xf7\xb5\xf7\xc4\x15\xe4\xf7\x58\x05\x97\xa6\x8e\x94\x86\x1d\x0e\xf7\xa6\xf7\x28\x15\x90\x7e\x7a\x8f\x7d\x1b" +"\x57\x5d\x5e\x59\x6e\xa1\x78\xad\xd3\xbe\xc2\xda\x1f\xf7\x8b\x07\xba\x84\xb3\x4b\x46\x1a\x60\x83\x69\x77\x5e\x1e\xa2\x06\xa9\xb0" +"\x9b\xb9\xbc\x1a\xca\x73\xc7\x59\xc7\x1e\x61\xbe\x8a\x8c\x86\x90\x85\x94\x19\xbc\x66\x07\x0e\xf7\xd8\xf8\x71\x15\xa1\x70\xa2\x77" +"\xa2\x7e\xc8\x6a\x96\x84\x90\x82\x08\x92\x7f\x8f\x78\x74\x1a\xfb\x89\x07\x92\x79\x71\x90\x76\x1b\x3f\x48\x53\x4c\x66\xaa\x74\xbd" +"\xc3\xc0\xa3\xb4\xac\x1f\xa2\xa7\x92\xa2\x8e\xbe\x08\xf8\x14\x07\x8c\xd8\x67\xd8\x59\xa9\x34\xc1\x18\x80\x94\x05\x7d\x9a\x84\x9e" +"\xa3\x1a\x99\x5b\xfc\x9b\x07\x92\x79\x73\x8f\x76\x1b\x41\x49\x53\x4c\x66\xaa\x74\xbb\xc2\xbf\xa3\xb4\xac\x1f\xa1\xa7\x92\xa2\x8e" +"\xbf\x08\xf7\x2c\xf7\x40\x15\xfb\x0d\xca\x70\xb3\x88\xf7\x0d\x8e\x89\x18\xf7\x0d\x4c\xa5\x64\x90\xfb\x0e\x08\x0e\x3a\x0a\xf7\xc3" +"\xf7\x67\x2f\x1d\xf7\xd1\xf8\x3d\x15\x28\x06\x71\x82\x8a\x85\x80\x1f\x75\x7f\x7d\x76\x75\x1a\x7f\x90\x7f\x95\x84\x1e\x93\x84\x92" +"\x89\x9f\x8a\x5a\xfb\x6f\x18\x89\x67\x0a\xa7\x99\xf7\x25\x1d\x6f\x1b\x8a\x06\xb0\xf7\x3c\x05\xba\xc3\xae\x9b\xb8\x1b\xba\xa5\x7c" +"\x71\x83\x8a\x84\x8a\x83\x1f\x66\xfb\x3b\x05\x5f\x6d\x71\x68\x6e\x9d\x7e\xb6\x1f\xe4\x20\x0a\x9c\x1a\xa6\x7c\x97\x68\x8d\x1e\xb0" +"\xf7\x3d\x05\x8f\x9a\x8c\x99\x9c\x1a\xd2\x4e\xbb\x31\x55\x67\x7e\x64\x55\x1e\x76\xf7\x43\x15\x9a\x9b\x91\x96\x97\x1a\x9d\x7d\x98" +"\x78\x7a\x80\x85\x77\x79\x1e\xfb\x01\xfb\x0c\x05\x7c\x7a\x85\x80\x7f\x1a\x7a\x9a\x7e\x9e\x9b\x97\x92\x9e\x9c\x1e\x0e\x3a\x0a\xf7" +"\x22\xf7\x4b\x45\x1d\x3a\x0a\xb3\xfc\x8c\x23\x1d\xf7\xda\xf7\x7c\x15\xf7\x93\xbd\xfb\x79\x06\xec\xf7\x49\x05\xf7\x18\xbe\x22\x06" +"\x97\xa9\x96\xa1\x96\x9a\x08\x8f\x90\x8d\x8f\x8e\x1a\x96\x7e\x96\x7f\x7e\x85\x87\x7b\x83\x1e\x60\x3a\x05\xfb\x1a\xf7\x09\x0a\xfb" +"\x10\xb7\x3b\xe6\x63\x1e\x6e\x55\x05\x87\x83\x89\x85\x86\x1a\x7f\x97\x80\x98\x97\x92\x90\x9a\x93\x1e\xac\xca\x05\x87\xac\x8f\x8b" +"\xb8\x1b\xf7\xba\xbe\xfb\xc6\x06\x73\x84\x8b\x8d\x7e\x1f\xb2\xf7\x47\x15\x31\xfb\x3c\x4a\xa1\x68\xc3\x87\xe0\x19\x90\x07\xf7\xd2" +"\xf7\x7b\x15\x2a\xfb\x49\x05\xfb\x71\x90\x06\x91\xf7\x0c\xcc\xc6\xf7\x14\x88\x08\x0e\xf8\x54\xf8\x32\x15\x92\x97\x05\x91\x96\x8e" +"\x94\x95\x1a\xa9\x71\xa4\x6c\x78\x77\x7d\x77\x7f\x1e\x67\x4c\x05\xfb\x68\x06\x70\x83\x8a\x84\x80\x1f\x7a\x81\x80\x79\x4c\x1d\xf7" +"\x29\x06\x67\x4b\x05\xfb\x05\x06\x71\x82\x8a\x84\x80\x1f\x7a\x82\x80\x78\x4c\x1d\xbd\x06\x7c\x71\x05\x85\x81\x87\x7d\x81\x1a\x71" +"\xa5\x74\xa9\xa1\x9e\x97\x9f\x97\x1e\xb7\xd8\x05\xf7\x62\x06\xa2\x98\x8d\x91\x95\x1f\x9c\x94\x96\x9e\x9e\x1a\x9d\x82\x9c\x7c\x95" +"\x1e\x93\x7f\x81\x8d\x6f\x1b\xfb\x23\x06\xaf\xcb\x05\xf6\x06\xa2\x99\x8d\x91\x94\x47\x1d\x0e\xf7\x7f\xf8\x3d\x15\x28\x06\x62\x6d" +"\x72\x6a\x73\x9e\x7c\xab\x1f\xa2\x06\xee\xfb\xe2\x05\xd9\x06\xab\xa4\x96\x94\xb2\xad\x08\xf7\x13\xf7\x04\xbe\xd9\xdb\x1a\xa9\x84" +"\xaa\x7f\xa0\x1e\x9a\x82\x7e\x93\x78\x1b\x6a\x6a\x6e\x6c\x86\x8b\x88\x8c\x87\x1f\x93\x6d\x8c\x88\x7b\x1a\x52\x60\x4d\x2c\x3c\x1e" +"\x0e\xda\x1d\x49\xf7\xde\xac\x0a\x24\x0a\xc1\xf7\x98\x5b\x0a\x24\x0a\x4e\xf7\xa3\x33\x0a\xf7\xaa\xaf\x15\x68\xa5\xaa\x7b\xb3\x1b" +"\xf6\xd5\xf7\x02\xf7\x32\x9a\x0a\x5c\x98\x69\xa6\x70\x1e\x74\xa3\xad\x7d\xab\x1b\xb0\xac\x9a\xaf\xb3\x1f\x0e\xf7\xa9\xa7\x15\x6e" +"\xa6\xaa\x7d\xb1\x1b\xf7\x01\xd5\xf7\x01\xf7\x33\x9a\x0a\x36\xc1\x4f\xd8\xaf\xab\x98\xa9\xb3\x1e\xf7\x66\xf8\xad\x15\x9e\x97\x93" +"\x97\x22\x0a\x7c\x81\x81\x87\x82\x7d\x1e\xfb\x12\x38\x05\x79\x7f\x82\x7f\x7d\x1a\x7c\x96\x80\x9b\x94\x26\x0a\xd8\x1d\xf7\xf3\xf8" +"\x49\x15\x3e\x32\x69\x57\x52\x1f\x53\x57\x67\x42\x4d\x1a\x23\xe5\x40\xf7\x13\xf7\x39\xf7\x25\xf7\x10\xf7\x21\xf7\x00\x32\xda\xfb" +"\x0f\x1e\x76\x23\x15\xd3\xbe\x5f\x4e\x43\x35\x48\x2e\x43\x54\xb5\xc2\xa9\x9b\xab\xa8\xa7\x1f\xb2\xb3\xb7\x9d\xc1\x1b\xf7\x19\xf7" +"\x7c\x15\x9e\x97\x93\x97\x22\x0a\x7b\x82\x80\xf7\x10\x1d\xcf\x8e\x15\xf8\x66\xec\xfc\x02\xf7\xf5\x27\x06\x0e\xbf\x1d\xf7\x1e\xf7" +"\xa0\x2f\x1d\xf7\x2b\xf8\xbc\x15\x7d\x8c\x95\x82\x9a\x1b\xac\x8c\x05\xbb\xc4\x77\x6c\xb5\x1f\xa8\x76\x9e\x76\xa7\x60\x08\xa7\x5f" +"\x66\x96\x57\x1b\xfb\x16\x24\x28\xfb\x11\xfb\x11\xf2\x27\xf7\x17\xf7\x15\xf3\xee\xf7\x10\xe9\x64\xf7\x00\x4e\xd1\x1f\xcb\x55\x33" +"\xb0\x29\x1b\x70\x88\x8a\x84\x84\x1f\x87\x87\x89\x84\x84\x1a\xf7\x27\xfb\x40\x15\xf3\xdb\x40\x28\x2b\x3b\x3e\x26\x26\x3a\xd8\xec" +"\xea\xdb\xd9\xee\x1f\x0e\xf7\x92\xf7\x6f\x15\x98\x06\xf7\x04\xe0\xe0\xf7\x03\xeb\x55\xc0\x29\x1f\x35\x06\x74\x85\x8a\x85\x7f\x1f" +"\x78\x80\x7e\x76\x75\x1a\x6f\x99\x7d\xab\x1e\x3c\xfb\xfa\x73\x8c\x82\x87\x7c\x7f\x19\x7d\x7e\x83\x7c\x79\x1a\x7f\x8f\x81\x93\x82" +"\x1e\x81\x94\x90\x8a\xa5\x1b\xf7\x18\x06\xaa\x96\x8e\x97\x9a\x1f\x9b\x97\x94\x9d\x9b\x1a\xa9\x79\x97\x61\x1e\x6f\x06\xda\xf7\xf9" +"\x15\xb0\x87\x97\x7e\x69\x1a\x71\x82\x73\x7a\x7b\x1e\x7f\x7e\x7f\x87\x6d\x88\x08\xf7\xa3\x44\x15\x90\x9b\x8c\x8e\x96\x1a\xa2\x79" +"\x9a\x70\x68\x71\x72\x62\x84\x1e\x88\x7b\x05\x76\x83\x8a\x84\x81\x1f\x7a\x81\x7e\x74\x77\x1a\x6e\x99\x7e\xaa\x8a\x1e\x85\x6f\x8a" +"\x80\x7d\x1a\x53\xbd\x63\xd0\xbb\xab\xa2\xb0\xa1\x7d\x9d\x78\x87\x88\x8b\x8a\x88\x1e\x88\x7f\x8b\x8b\x84\x1b\x7b\x82\x95\x9d\x91" +"\x8c\x90\x8d\x99\x1f\xa9\x93\x8d\x91\x98\x1f\xa0\x96\x9a\xa1\x9f\x1a\xab\x7a\x96\x5d\x1e\x0e\xf7\xbf\x7c\x15\xcc\x92\xbb\x99\xb1" +"\xa4\x08\xd1\xb8\xb9\xe0\xe0\x1a\xf6\x40\xdf\x2d\x68\x68\x7d\x72\x72\x1e\x78\x79\x80\x72\x80\x5e\x5a\xfb\x6f\x18\x5e\x97\x76\xa8" +"\xbc\x1a\xc9\xa3\xba\xc7\xc1\x1e\xa0\x9f\x93\x98\x9e\x1a\xa4\x7a\x9b\x6f\x63\x63\x70\x55\x65\x1e\x64\x54\x78\x53\x4e\x1a\x2a\xc4" +"\x41\xe9\x72\x1e\x6f\xfb\x17\x05\x89\x82\x89\x7e\x85\x1a\x73\x9d\x7b\xa7\xae\xa3\xa2\xb6\x94\x1e\xef\xf8\x56\x15\x9e\x8f\x94\x94" +"\x98\x1b\xac\xa7\x63\x5c\x3c\x58\x52\x37\x78\x1f\x0e\xf7\xb1\xf7\xd6\x15\xf7\x3f\x06\x5a\xfb\x6e\x05\x89\x06\x6b\x80\x88\x7e\x7c" +"\x1f\x7b\x7f\x82\x7a\x7b\x1a\x6c\x9d\x7f\xb7\x1e\xf7\x04\x06\xaa\x93\x8d\x98\x9c\x1f\x9b\x98\x94\x9c\x9b\x1a\x97\x86\x96\x81\x94" +"\x1e\x94\x81\x84\x8d\x6f\x1b\x89\x06\xbc\xf7\x6e\x05\x94\x06\xa9\x96\x4f\x0a\xa8\x79\x98\x61\x1e\xfc\x27\x06\x6d\x80\x88\x7f\x7c" +"\xf7\x5f\x1d\x92\x06\x5a\xfb\x6e\x05\x88\x06\x6b\x83\x88\x7e\x7b\x1f\x7a\xf7\x4e\x1d\x92\x89\xa7\x1b\xf7\x04\x06\xac\x95\x4f\x0a" +"\xa9\x79\x98\x60\x1e\x8a\x06\x0e\xf8\x93\xf8\xae\x15\x92\x06\xae\x8a\xa3\x9f\xab\x1a\x93\x07\x8a\xac\x74\x9f\x66\x89\x08\xfc\x44" +"\x06\x66\x8d\x74\x77\x8a\x6a\x08\x83\x07\x8c\x6a\xa2\x77\xb0\x8d\x08\x98\xfc\x9b\x7e\x06\x66\x8d\x74\x77\x8a\x6a\x08\x83\x07\x8c" +"\x6a\xa2\x77\xb0\x8d\x08\xf7\x13\x06\xb0\x89\xa2\x9f\x8c\xac\x08\x93\x07\xaa\x74\xa0\x6a\x8a\x1e\x88\xf8\x9b\xf7\x4a\xfc\x9b\x83" +"\x06\x68\x8d\x73\x77\x6a\x1a\x83\x07\x8c\x6a\xa2\x77\xb0\x8d\x08\xf7\x13\x06\xb0\x89\xa2\x9f\x8c\xac\x08\x93\x07\xab\x73\x9f\x68" +"\x8a\x1e\x84\x06\x0e\xf7\xe9\xf8\x64\x15\xfb\x2b\x65\x86\x71\x5e\x1f\x46\x62\x61\x3f\x37\x1a\x3e\xad\x46\xc8\x5f\x1e\x67\xbd\xae" +"\x85\xf7\x39\x1b\xf7\x56\x06\xa0\x99\x95\x9b\x9b\x7f\x94\x74\x1f\xfb\x58\x06\xfb\x14\x60\x90\x9e\x68\x1f\x54\xa8\x65\xcb\xcb\x1a" +"\xc5\xab\xc7\xba\xaa\x1e\xa6\xb3\xb0\x90\xf7\x23\x1b\xf7\x58\x06\xa1\x98\x95\x9b\x9b\x7e\x94\x75\x1f\x0e\xf7\x74\x16\xf7\x2d\xb0" +"\x90\xa5\xb8\x1f\xd0\xb4\xb5\xd7\xdf\x1a\xd8\x68\xd0\x4f\xb7\x1e\xaf\x59\x67\x91\xfb\x39\x1b\xfb\x55\x06\x75\x7e\x82\x7b\x7b\x98" +"\x81\xa1\x1f\xf7\x58\x06\xf7\x16\xb3\x86\x78\xaf\x1f\xc2\x6f\xb1\x4a\x4b\x1a\x51\x6b\x50\x5b\x6b\x1e\x71\x65\x63\x85\xfb\x21\x1b" +"\xfb\x58\x06\x74\x7f\x82\x7b\x7c\x99\x80\xa0\x1f\x0e\xf7\x3f\xfb\x14\x15\x86\x78\x89\x7c\x82\x1a\x73\x9d\x7b\xa7\x9e\x9d\x93\x9a" +"\x99\x1e\x92\x93\x90\x99\x92\xa9\xa6\xf7\x0c\x18\xf7\x20\x8f\xba\xb4\xa4\xf7\x1e\xad\xf7\x2f\x18\xb9\x8e\xa5\xa2\xad\x1a\xaa\x79" +"\x97\x60\x1e\x29\x06\x4e\xfb\xa6\x80\x5b\x7d\x7f\x59\x88\x19\xec\xf8\x44\x05\x90\xa2\x8d\x98\x93\x1a\xa4\x7a\x99\x6f\x77\x79\x83" +"\x7b\x7d\x1e\x83\x83\x88\x81\x83\x6a\x28\xfc\x4f\x18\x67\x8c\x7c\x94\x9f\x1a\x93\x8d\x9a\x91\xa3\x1e\xc6\xf7\x9b\x05\x26\x06\x59" +"\x6b\x73\x67\x6f\x9a\x7d\xad\x8a\x1f\x6b\xfb\x26\x05\x85\x6e\x88\x76\x7c\x1a\x69\x9a\x6a\xa7\x72\x1e\xa1\x77\xa3\x82\xba\x84\x08" +"\x0e\xf8\x92\xf7\x5f\x15\x7c\x9f\x86\x92\x7c\x9b\xce\x1d\xa3\xf7\x00\x05\xe7\x06\x9d\x82\x9a\x7d\x9f\x70\x89\x8a\x18\x6c\x81\x7c" +"\x79\x71\x1a\x78\x9b\x77\x9a\x8c\x1e\x91\x95\x8e\x8f\x98\x1f\xac\x96\xa3\x5b\x92\x7b\x91\x74\x19\xf7\x20\x1d\x87\x93\x8a\x8e\x85" +"\x98\x91\x8c\x18\xa8\x94\x9c\x9f\xa5\x1a\x9e\x7c\x9d\x7c\x86\x7f\x88\x87\x7e\x1e\xfb\xa9\xf0\x15\xab\xf7\x26\x05\xf7\x01\x06\xc2" +"\xaf\x75\x68\x5a\x42\x63\x33\x1f\x0e\x3f\x0a\xf7\x74\xf7\x78\x15\xa3\x9b\x94\x97\x9c\x1a\x9d\x7d\x98\x77\x7f\x84\x88\x7e\x78\x1e" +"\xfb\x31\x21\x05\x74\x7c\x81\x7d\x7c\x1a\x78\x99\x7e\x9f\x95\x97\x90\x95\x9a\x1e\x0e\xf7\x2e\xf7\xd1\x15\x22\x06\x79\x8c\x80\x82" +"\x8a\x7a\x08\x8a\x07\x8c\x7a\x96\x82\x9d\x8c\x08\xc7\x06\xe4\xfb\xb0\xf7\x85\xf9\x2f\x05\xf7\x3b\x06\x9c\x98\x96\x9a\x9b\x80\x94" +"\x78\x1f\xfb\x66\x06\xfb\x55\xfc\xcc\x05\x0e\x3f\x0a\xca\xf7\x5c\x45\x1d\x3f\x0a\x64\xfc\x7b\x23\x1d\xf7\x0b\xf8\x19\x15\xf8\x12" +"\x06\xa1\x96\x94\x9c\x9b\x80\x94\x75\x1f\xfc\x46\xfb\x88\x06\x77\x94\x80\x9c\x9c\x94\x96\x9f\x1e\x0e\xf7\x30\xa8\x15\x6d\xb4\xb4" +"\x7d\xba\x1b\xcb\xca\xa6\xbe\xbf\x1f\xc1\xc0\xa6\xc8\xd1\x1a\xf7\x05\x3c\xd8\xfb\x09\x43\x3f\x6b\x58\x5a\x1e\x68\x67\x72\x53\x7a" +"\x3c\x48\xfb\xcb\x18\x86\x71\x89\x81\x83\x1a\x72\x9c\x7d\xa8\x9f\x9d\x93\x9a\x99\x1e\x92\x93\x8e\x94\x93\xae\x08\xf7\x7c\xf8\x69" +"\x15\xc2\xab\x6c\x54\x3b\x40\x3d\x3d\x56\x63\xb4\xc1\xda\xd5\xd1\xe0\x1f\x0e\x56\x1d\x8e\xf7\x9a\x2f\x1d\xf7\xe0\x7d\x15\xf7\x19" +"\x95\xea\xce\xdf\x1a\xb0\x79\xaa\x6a\x9f\x1e\x72\x9b\x62\x96\x44\x94\x4e\x93\x84\x8c\x7f\x90\x08\x80\x90\x83\x91\x91\x1a\x9b\xbf" +"\x9b\xbd\xb5\xa8\x83\x79\xa2\x1e\x6b\x96\x95\x83\xa5\x1b\x9b\x9d\x93\x98\x99\x1f\x95\x95\x8f\x93\x91\xa6\x93\xae\x18\xa1\x0a\xa2" +"\x7f\xa9\x83\xb5\x86\x78\x36\x18\x8c\x99\x94\x42\x0a\xb2\x7b\x9e\x62\x94\x1f\x0e\x56\x1d\xfb\x2e\xf7\x88\x15\xe4\x31\x05\x81\x95" +"\x93\x87\x95\x1b\xa3\xc8\x0a\x26\x0a\x56\x1d\xfb\x98\xfc\x59\x23\x1d\xf7\x5f\xf7\xc4\x15\xe4\xf7\x58\x05\x97\xa6\x8e\x94\x86\x1d" +"\xf7\x60\x16\xe4\xf7\x58\x05\x97\xa5\x8e\x95\x86\x1d\x0e\xf8\x48\xf8\x49\x15\xfb\x07\x45\x77\x59\x4b\x1f\x4a\x59\x61\x3d\x45\x1a" +"\xfb\x02\xe0\x41\xf7\x12\xe3\xe5\xb1\xc9\xc5\x1e\xb9\xbd\xa6\xc6\xc0\x1a\xab\x83\xa6\x7a\xa7\x1e\xba\x5e\x1d\xfb\xa8\x24\x15\xd6" +"\xbc\x64\x4e\x3e\x36\x46\x2d\x42\x5a\xb3\xc7\xd7\xe0\xd1\xe7\x1f\x0e\xf7\x6d\xf8\x23\x15\x75\x79\x7a\x75\x76\x9c\x79\xa1\xa1\x9c" +"\x9c\xa1\xa0\x7a\x9d\x76\x1f\xf7\x41\x8c\x15\x75\x79\x79\x76\x75\x9d\x79\xa1\xa0\x9d\x9d\xa0\xa1\x79\x9d\x76\x1f\xe9\x37\x15\x82" +"\x64\x83\x7b\x77\x73\x08\x61\x66\x5c\x77\x4d\x1b\x4c\x5d\x9f\xb5\x66\x1f\x77\xa3\x83\x9b\x82\xb2\x90\x48\x93\x6c\xa2\x68\x08\x5b" +"\xac\xbd\x72\xcb\x1b\xc6\xba\xa0\xb4\xab\x1f\xa8\xb0\x96\xae\x90\xd3\x08\xfb\x47\xf7\x8b\x15\xfb\x33\xfb\x13\xfb\x10\xfb\x2f\xfb" +"\x32\xf7\x11\xfb\x12\xf7\x31\xf7\x2f\xf7\x12\xf7\x12\xf7\x30\xf7\x2d\xfb\x12\xf7\x14\xfb\x2b\x1f\x83\x66\x15\xf7\x1d\xf7\x03\xfb" +"\x00\xfb\x1b\xfb\x1d\xfb\x01\xfb\x01\xfb\x1c\xfb\x1b\xfb\x01\xf7\x01\xf7\x1c\xf7\x19\xf7\x02\xf7\x03\xf7\x17\x1f\x0e\xf7\x22\x16" +"\xf8\x09\x9d\x06\xfb\x11\x91\x51\xcd\x8d\xf7\x17\x08\x4a\xad\xaf\x72\xc3\x1b\xc1\xb8\xba\xc5\xc0\x77\xaa\x38\xd7\x1f\x37\xd8\x7c" +"\xa1\x6d\xe5\x7f\x44\x5c\x47\x3a\x4a\x08\x4d\x58\x70\x5f\x5a\x1a\x51\xba\x5b\xc4\xc3\xb3\xa8\xc8\xa8\x1e\xfb\x14\x90\x47\x40\xfb" +"\x0e\x1b\x0e\xf8\x37\xf8\xab\x15\x91\x42\x8c\x6d\xa2\x75\xaa\x8a\x19\x90\x06\xac\x8c\xa1\xa3\x8a\xab\x08\xf7\x0f\x07\xad\x8c\x72" +"\xa2\x67\x1b\xfb\xeb\x06\x67\x8c\x72\x74\x6b\x1a\x7e\x07\x7b\x8e\x82\x95\x7e\x1e\xf7\x39\xfb\x73\xfb\x3d\xfb\xba\x05\x84\x7f\x89" +"\x84\x7e\x1a\x7c\x07\x6a\xa4\x74\xaf\x8c\x1e\xf7\xf2\x06\xaf\xa3\xa2\xad\x1f\xf7\x10\x07\xab\x75\xa3\x6a\x8c\x1e\x86\x06\x6c\x8a" +"\x74\x74\x8a\x6c\x88\x43\x18\xfb\x62\x06\xf7\x2a\xf7\x93\x05\x91\x97\x8e\x93\x95\x1a\x97\x88\x94\x82\x97\x1e\xfb\x1a\xf7\x4c\x05" +"\x0e\xf7\x23\xf8\x2a\x15\x73\x6e\x7d\x68\x86\x65\x08\x2c\x5e\xeb\x06\x8f\x64\x99\x68\xa2\x6e\x48\x48\x18\xab\x6b\xce\xcf\xa9\x73" +"\xab\x7e\xb4\x85\x19\x2c\xb8\xea\x07\xb4\x91\xad\x99\xa7\xa2\xce\x47\x18\xab\xab\x48\xcf\xa1\xa4\x9a\xaf\x90\xb4\x19\xeb\xb8\x2b" +"\x06\x86\xb3\x7c\xaf\x75\xa6\xce\xce\x18\x6b\xab\x48\x48\x71\xa1\x62\x9c\x67\x8e\x19\xea\x5e\x2d\x07\x68\x87\x61\x79\x72\x75\x47" +"\xcf\x18\x6b\x6b\x05\xf7\x72\x5d\x15\xdc\xcc\x4b\x3d\x3a\x4b\x4b\x3b\x3c\x4b\xcb\xda\xda\xcb\xcc\xd8\x1f\x0e\xf8\x35\xf7\xd7\x15" +"\xd7\x06\xad\x92\x8d\x97\x9b\x1f\x9b\x98\x94\x9c\x9c\x1a\xa1\x7e\x99\x75\x8e\x1e\x8e\x75\x8a\x8b\x89\x1b\xfb\x9f\x06\x6b\x82\x88" +"\x7f\x7b\x1f\x7b\x7e\x82\x7b\x7a\x9d\x1d\xdd\x06\x55\xfb\x89\x05\x89\x84\x8b\x87\x81\x1a\x5f\xac\x74\xc8\xd9\xc2\xab\xb8\x9f\x7f" +"\x99\x7b\x83\x81\x89\x87\x81\x1e\x82\x74\x80\x89\x7e\x1b\x84\x88\x8d\x90\x8e\x8b\x8e\x8c\x8f\x1f\x0e\xf7\xab\xf7\xa5\x15\x96\xbc" +"\x05\xf7\x46\x06\xaa\x96\x4f\x0a\xa9\x7a\x97\x60\x1e\xfb\x44\x06\x9c\xda\x05\x8f\x9b\x8c\x8e\x96\x1a\xa2\x79\x9a\x70\x79\x7e\x85" +"\x7d\x7b\x1e\x82\x82\x83\x7a\x87\x77\x79\x3a\x18\x6c\x06\x6c\x80\x88\x80\x7c\x1f\x7b\x7f\x81\x79\x7a\x1a\x7f\x90\x80\x95\x82\x1e" +"\x82\x95\x92\x8a\xa8\x1b\xa9\x06\x80\x5a\x05\x72\x82\x8a\x85\x7f\x1f\x75\x80\x7c\x75\x76\x1a\x7f\x90\x81\x95\x81\x1e\x82\x95\x91" +"\x8a\xa8\x1b\x81\x5a\x05\x89\x82\x8a\x83\x80\x1a\x6f\x93\x75\x9c\x7b\x1e\x72\xa4\xc3\x7a\xc0\x1b\xd2\xf0\xa2\xa7\xbd\x1f\xa2\x98" +"\x99\x9f\xa0\x1a\xa1\x77\x9e\x73\x83\x83\x89\x87\x82\x1e\x71\x50\x5c\x80\x52\x1b\x5a\x72\x94\x9d\x92\x8c\x92\x8d\x94\x1f\x92\xab" +"\x05\xf7\x1d\x06\xab\x96\x2a\x0a\x9c\x9b\x1a\xaa\x7a\x97\x5f\x1e\x0e\xf8\x81\xf8\x3d\x15\x86\x06\xfb\x44\x06\x9d\xda\x05\x8f\x9d" +"\x8b\x8d\xd9\x0a\x79\x3a\x05\x6b\x06\x6a\x82\x89\x7e\xa2\x1d\xa9\x06\x5e\xfb\x5d\x05\x89\x82\x8a\x83\x7f\x1a\x6b\x99\x6f\xa4\x7b" +"\x1e\x77\xa9\xb7\x80\xb8\x1b\xd2\xeb\xa1\xa8\xc3\x1f\xa4\x98\x97\x9c\xa1\x78\x1d\xb4\xf7\x4c\x05\xf7\x46\x06\xa9\x98\x8e\x97\x99" +"\x1f\x9b\x97\x94\x9c\x9d\x1a\x91\x8a\x8f\x87\x93\x1e\x97\x8e\x8b\x8b\xa2\xa0\xf2\xf7\x0d\x18\xf0\x1d\x81\x7f\x1a\x89\x8b\x89\x8c" +"\x88\x1e\x0e\xf7\xc8\x7c\x15\xc1\x8d\xd4\x9b\xbe\x9f\x08\xbb\x9e\x9c\x9d\xa7\x78\x1d\xb4\xf7\x4c\x05\xf7\x46\x81\x1d\x20\x1d\xdc" +"\x1d\x57\xac\x6a\xcb\x7c\x1e\x74\x26\x05\x8d\x9c\x93\x8b\x90\x1b\xa6\x9a\x82\x7b\x7e\x80\x83\x78\x7a\x74\x92\x95\x7a\x1f\x96\x79" +"\x89\x8c\x7f\x1b\x72\x79\x7a\x72\x82\x8f\x82\x90\x85\x1f\x78\x9e\xba\x7c\xb4\x1b\xd5\xbf\xba\xcd\xb1\x79\xa0\x64\x95\x1f\x0e\xf8" +"\x07\xf8\xef\x15\x2c\x36\x51\x29\x59\x1f\x67\x45\x74\x2b\x3e\x1a\x44\x9d\x56\xb1\x64\x1e\x66\xae\xb9\x78\xc0\x1b\xda\xdb\xb8\xd3" +"\xbb\x1f\xbc\xd4\xab\xf7\x06\xef\x1a\xf7\x14\x3f\xe1\xfb\x05\x1e\xfb\x2d\xfb\x96\x15\xee\xa9\xc1\xc2\xd0\x1b\xc0\xa7\x64\x41\x7f" +"\x8a\x83\x89\x76\x1f\x73\x23\x15\x28\x6b\x55\x55\x47\x1b\x56\x6f\xb2\xd2\x99\x8c\x93\x8d\xa0\x1f\x0e\xf8\x63\xf8\xc9\x15\x9e\x97" +"\x93\x97\x22\x0a\x7b\x82\xf7\x16\x1d\x9a\x1e\x0e\xf8\xc6\xbc\x1d\xfb\x7a\xa9\x0a\x57\x1d\xfb\x02\xf8\x7f\x5b\x0a\x57\x1d\xfb\x75" +"\xf8\x8a\x33\x0a\xa7\xfb\xaf\xf7\x0b\x0a\x79\x94\x7b\xba\x0a\xfc\xb4\xf7\x2f\x15\x70\x83\x8a\x84\x80\x1f\x7a\x81\x80\x79\x78\x1a" +"\x7a\x94\x7a\xf7\x29\x1d\x94\x96\x9e\xf7\x4d\x1d\x0e\x0e\x76\x1d\x57\x0a\x58\xfb\x72\x23\x1d\x94\x0a\xd7\xfb\x95\x15\x8c\x8c\x8c" +"\x8c\x8d\x8c\x8e\x64\x0a\x7d\xf7\x0f\x0a\x7a\x79\x87\x83\x65\x0a\xcb\x0a\x79\x1d\xf8\xb9\x16\xfb\x06\xf8\xc8\x05\xfb\x08\x06\xfb" +"\xff\xfc\xc8\x05\xf8\x62\xf3\x15\xfb\xa1\x06\xf7\x61\xf7\xd2\x05\x0e\xf7\xaf\xe9\x15\x74\x96\x87\x8d\x82\x91\x08\x68\xa2\x7a\xb2" +"\xc5\x1a\xcd\xa1\xd2\xad\xbc\x1e\xbe\xb1\xc0\xa5\xd0\x1b\xe1\xb6\x62\x3a\x3c\x68\x30\x58\x56\x1f\x73\x72\x78\x81\x56\x75\x75\x2d" +"\x18\xf7\x5c\x06\xaa\x96\x35\x0a\x9b\x1a\xa8\x79\x98\x61\x1e\x4f\x06\xc1\xa3\xa2\x9f\xaa\xbc\x08\xae\xc3\x9f\xce\xca\x1a\xd0\x74" +"\xc1\x61\xa8\x1e\xa7\x62\x4d\x9b\x4a\x1b\xfb\x00\x2a\x65\x4b\x53\x1f\x53\x4b\x69\x33\x38\x1a\x59\x99\x62\xa4\x72\x1e\x91\x85\x94" +"\x84\x9c\x82\x08\x4c\xaa\x1d\x7c\x7f\xf7\x00\x0a\xf7\x5a\x06\x0e\xf7\x31\x89\x15\x81\xa2\x9d\x87\xa5\x1b\xb8\xb5\x95\xa3\xbe\x1f" +"\x87\x79\x05\xee\x06\xbe\xaa\xa2\xb2\xa6\x7a\x98\x6a\x8c\x1f\xd3\xf7\xd6\x05\xfb\x20\x06\x57\x6c\x74\x64\x6e\x9e\x7e\xb6\x1f\xa8" +"\x06\x62\xfb\x4b\x05\x67\x46\x5c\x7c\x5e\x1b\x72\x7a\x96\x9b\x90\x8d\x94\x8d\x97\x1f\xcb\xf7\xb1\x05\xfb\x0e\x06\x58\x6d\x40\x1d" +"\x95\x06\x27\xfc\x54\x05\x88\x7e\x8a\x81\x85\x1a\x74\x9e\x7a\xa4\xae\xa3\xa2\xb7\x94\x1e\x0e\xf8\xb7\xf7\xc3\x15\x91\xa8\x05\x93" +"\xac\x8d\x95\x97\x1a\xa7\x74\xa1\x6d\x76\x7c\x83\x7a\x80\x1e\x9c\x6e\x67\x93\x5e\x1b\x39\x44\x6d\x51\x56\x1f\x5a\x56\x6e\x43\x47" +"\x1a\x28\xbd\x50\xf7\x05\x68\x1e\xc1\x7b\x8f\x88\x7f\x1a\x79\x71\x7a\x69\x88\x1e\x77\x89\x87\x8a\x81\x88\x08\x72\x82\x7c\x77\x70" +"\x1a\x6d\x9e\x7e\xb4\xf2\xda\xc9\xdd\xc7\x6b\xae\x39\xa6\x1e\x36\xa8\x79\x9c\xc0\x1a\xf3\xd7\xde\xea\xb7\xb1\x77\x73\x89\x8b\x88" +"\x8a\x86\x1e\x8a\x87\x8b\x86\x86\x1a\x6b\xa1\x75\xad\xab\x99\x9b\xbc\x94\x1e\x0e\x24\x1d\xad\xf7\x28\x05\x8e\x9b\x8c\x91\x93\x1a" +"\xa1\x21\x1d\xed\xe9\x1d\x71\x1d\xbc\xf8\xe3\x15\x97\x7f\x86\x8d\x7f\x1b\x74\x75\x77\x76\x80\x91\x82\x98\x7e\x1f\xf7\x0c\xfb\x00" +"\x05\x83\x95\x97\x84\x92\x1b\xa3\xa0\x9f\xa2\x96\x87\x92\x7c\x99\x1f\x0e\xf7\x79\xf7\x2c\x15\x46\xf7\xc9\x05\x99\x06\xab\x96\x50" +"\x1d\x9b\x1a\xa9\x79\x97\x61\x1e\xfb\x19\x06\x6c\x80\x88\x7f\x95\x1d\xb4\x1e\xef\xfc\x61\x05\xf3\x06\xf7\x87\xf8\x13\x05\xab\xa0" +"\x9d\x9d\x97\x1b\x8f\x8e\x8a\x89\x8e\x1f\x7a\xaa\x8d\x8a\x9d\x1b\xb7\xb5\xb3\xb5\xb4\x68\xa5\x54\x40\x50\x63\x35\x55\x1f\x0e\x59" +"\x0a\xb5\xf8\x72\xb7\x0a\xf7\x8d\xf7\x7c\x15\xf7\x0b\x06\xa2\xf1\x05\xfb\x0b\x06\xa7\xf7\x13\x05\xf7\x8c\x06\x81\x5f\xf7\x08\x0a" +"\x92\x99\x99\x1e\x95\x95\x8f\x94\x91\xa6\xac\xf7\x28\x18\xfc\x6f\x27\x1d\x95\x06\x6f\xfb\x13\x05\x53\x06\x74\x25\x05\xc3\x06\x6e" +"\xfb\x15\xdf\x1d\xf7\x82\xf7\xa2\x15\x96\xbe\x05\xf7\x78\x06\x79\x38\x05\x87\x7c\x8a\x83\xf7\x26\x0a\x95\x1e\xb5\xf7\x51\x05\xfc" +"\x86\xf7\x59\x1d\x80\x58\x05\x6b\x06\x63\x71\xf7\x22\x0a\xaa\x06\x79\x39\x44\x0a\x9d\xdd\x05\xce\x06\xb1\xa6\xa0\xa7\xa5\x1d\xf8" +"\x91\xf7\x00\x15\x6c\xf7\x19\x85\xa4\x80\x9e\x78\x9c\x19\x99\x93\xbf\xca\xb1\xc1\x08\x71\x91\x99\x80\xa6\x1b\xa4\x9a\x9a\xa9\x92" +"\x1f\x95\xb5\x05\x8e\x98\x8d\x9c\x96\x1a\xa8\x77\x9c\x68\x51\x69\x6b\xfb\x3c\xfb\x13\x1e\xa3\xeb\x05\x8f\x06\xae\xa2\xa1\xab\xaf" +"\x73\x99\x4c\x1f\x5f\x06\x4f\x74\x7d\x66\x71\x99\x7b\xa9\x82\x1f\x78\x29\x64\xf7\x06\x82\xa4\xf7\x2b\x1d\x86\x7a\x89\x7d\x81\x1a" +"\x72\xa1\x78\xa7\xa3\x97\x95\xab\x98\x1e\x94\x5b\x9a\x67\xa3\x69\x6e\x7d\x75\x79\x79\x71\x21\xfb\x2d\x18\x60\x8a\x76\x7a\x69\x1a" +"\x68\xa2\x7a\xbc\xb4\x92\x90\xb9\xa9\x1e\xef\xf7\x2b\x97\x9d\x94\x95\xa5\xa3\x19\x64\xfb\x2a\x05\x61\x8a\x75\x79\x69\x1a\x66\xa2" +"\x7d\xca\x1e\xbb\xa7\x1d\x7c\x9b\x69\x92\x1f\xad\xf7\x2d\x93\x80\x92\x7d\x8e\x7d\x19\xad\xfb\x25\x8d\x84\x8b\x88\x8d\x83\x19\x93" +"\x62\x97\x81\xbc\x88\x80\x5a\x18\x88\x82\x8a\x7f\x84\x85\x0a\xc5\x93\x1e\x9e\xf7\x1f\x05\x0e\xf8\xef\xf7\xef\x15\x8e\x97\x8c\x94" +"\x92\x1a\xa7\x73\xa1\x6b\x65\x65\x76\x60\x65\x1e\x42\x3a\x92\xb5\x05\xa7\x93\x99\x9c\xa5\x1a\xad\x72\x9d\x5a\x1e\x65\x06\x5c\x71" +"\x78\x6a\x73\x95\x7d\xa4\x7f\x1f\x83\x5f\x65\xd3\x05\xc3\x6d\x73\x9d\x5e\x1b\x6c\x78\x81\x73\x7f\x1f\x81\x77\x85\x71\x72\x1a\x6d" +"\x9e\x78\xa9\xa2\x99\x96\xa6\x94\x1e\x9f\x62\x91\x81\x9b\x77\x73\x81\x79\x7e\x7d\x79\x3d\x2e\x18\x7e\x06\x69\x72\x75\x6d\x6e\xa3" +"\x74\xaa\x1f\xa6\x06\xa5\x8c\x8c\x8c\xaf\xb5\xda\xec\x18\x99\x9c\x9a\x9a\x9a\x96\x7c\x3a\x18\xf7\x09\x1d\x82\x93\x78\x19\xa8\x3f" +"\xa1\x54\x90\x86\xac\x87\x19\x7e\x62\x05\x89\xe1\x0a\x9b\xd1\x9c\x1e\xaa\xf7\x14\x05\x26\x06\x71\xc7\x7d\xac\x7e\x9e\x7e\x95\x19" +"\x9d\x98\xa3\xa2\xa5\xa9\x08\x6f\x91\x99\x7f\xa7\x1b\xaa\x96\x99\xbd\x97\x1f\x0e\xf7\x97\x7c\x15\xcf\x8d\xc6\x97\xb2\xa1\x08\xd0" +"\xb1\xb5\xcb\xce\x1a\xb7\x7b\xad\x6a\xa6\x1e\xc4\xb1\xa5\xb6\xc4\x1a\xe2\x41\xc5\xfb\x03\x53\x62\x80\x73\x67\x1e\x8c\x95\x8b\x8d" +"\x8f\x1a\xa6\x75\xa0\x6c\x6e\x7b\x7a\x63\x85\x1e\x82\x57\x7f\x66\x75\x5e\x08\x7d\x6f\x86\x7d\xf7\x0a\x1d\x61\x06\x59\x73\x7b\x68" +"\x77\x95\x7a\x9d\x82\x1f\x86\x95\x96\x89\xb1\x1b\xe7\xb0\x7c\x67\x74\x7d\x72\x73\x79\x1f\x76\x6f\x63\x81\x54\x1b\x45\x57\x9a\xb1" +"\x51\x1f\xa0\x6c\x7b\x92\x7d\x1b\x6f\x70\x70\x70\x57\xf7\x00\x4a\xf7\x00\x7f\x1f\x77\x34\x05\x8e\x9f\x8b\x8b\x93\x1b\xa7\x99\x83" +"\x7c\x7b\x7d\x81\xf7\x01\x1d\xb3\x7b\x9d\x62\x95\x1f\x0e\xf7\xaa\x7f\x15\xc4\xbf\x94\x9c\xb0\x1f\xc9\xa7\xb1\xbb\xbc\x1a\xb0\x7a" +"\xa4\x65\x9d\x1e\xbc\x9f\xa3\xab\xb8\x1a\xd2\x42\xbd\x23\x5a\x63\x81\x74\x65\x1e\x8f\x07\x8f\x07\xab\x79\x9c\x6b\x66\x7f\x79\x4c" +"\x84\x1e\x89\x72\x85\x75\x81\x70\x08\x84\x76\x87\x7b\x83\x1a\x73\xa1\x77\xa6\xa1\x98\x95\xa8\x99\x1e\xc7\xa8\xa8\x9b\xe1\x1b\xbd" +"\xac\x81\x7b\x77\x67\x7d\x55\x8a\x1f\x60\x8a\x8b\x8b\x82\x89\x08\x71\x85\x7d\x7a\x72\x1a\x72\x96\x7c\xa3\x83\x1e\x98\x87\x92\x8a" +"\xb0\x8a\x08\xb6\x8a\xa9\x80\x7e\x1a\x72\x50\x74\x49\x47\x56\x99\xab\x53\x1e\x99\x71\x7c\x91\x7e\x1b\x70\x71\x71\x6f\x6e\xa1\x76" +"\xc4\x71\x1f\xb1\x79\xb8\x7e\xb0\x86\x77\x30\x18\x8c\x98\x95\x42\x0a\xb3\x7b\x9d\x62\x94\x1f\x0e\xf8\x5d\xf5\x15\x6a\xf6\x7f\xb0" +"\x7a\xa8\x74\xa2\x19\xaf\xb2\xd4\xdd\x91\x92\x90\x8f\x96\x97\x19\x84\x07\x70\xa2\x76\xa9\x9d\x9c\x94\x98\x91\x1e\x96\xa1\x9a\xc7" +"\x9f\x1a\xab\x72\x9c\x5d\x51\x65\x79\x59\x5e\x1e\x2d\x24\x71\x70\x73\x7c\xf7\x21\x1d\x2c\x06\x4b\x74\x7e\x66\x67\xa3\x79\xbb\x1f" +"\x8d\x06\x3c\xfb\xf9\x05\x4d\x74\x7d\x65\x65\xa2\x7e\xcb\x1f\xea\x06\xca\xa3\x99\xaf\xb0\x74\x9b\x58\x1f\xaa\xf7\x25\x05\xa6\x06" +"\xa9\x8c\xa4\x70\x9e\x54\xab\x26\x18\xa1\x4d\x8d\x8a\xca\x88\x7f\x59\x18\x88\x7d\x8a\x83\x84\x1a\x72\x9c\x7c\xaa\xb5\xa2\xa7\xc6" +"\x93\x1e\x9e\xf7\x1e\x05\x0e\xf8\x54\xf3\x15\x60\xda\x81\x9d\x7d\x9a\x78\x96\x19\xd9\xd0\xdd\x0a\x92\xab\x05\x9b\x1d\x5f\x5e\x65" +"\x7c\x6a\x67\x1e\x3a\x41\x7d\x7f\x80\x82\x88\xf7\x5c\x1d\x05\xbf\x8d\x9e\x9a\xb0\x1a\xb1\x77\x97\x4d\x8b\x1d\xfb\x6f\x05\x50\x8c" +"\x74\x7c\x66\x1a\x65\xa2\x7d\xca\x1e\xf7\x26\x1d\x85\xa2\x63\xb2\x44\x18\xa2\x5d\x92\x85\xa9\x88\x7f\x61\x18\x87\x7e\x8a\x84\x82" +"\x1a\x70\x9c\x7e\xac\xaf\x97\x96\xb4\x99\x1e\x95\xad\x9a\xc7\x9a\xcf\x08\x0e\xf7\xcf\xf7\x5b\x15\x98\x6b\xab\x27\xa1\x4c\x8e\x89" +"\xd0\x89\x19\xf5\x1d\x84\x07\x8f\x1d\x65\x79\x5a\x5e\x1e\x58\x53\x05\x99\x85\x7b\x95\x7b\x1b\xa5\x91\x97\x99\xa6\xe2\x1d\x96\x06" +"\x7a\x3f\x05\x89\x84\x8a\x83\x85\x1a\x75\x9e\x77\xa0\xa6\x97\x97\xad\x93\x1e\x60\xf7\x5a\x15\x8a\x87\x89\x8b\x89\x1b\x88\x06\xa3" +"\xf7\x00\x9a\x8c\x91\x8b\x98\x8d\x19\x77\x84\x85\x84\x85\x6d\x08\x0e\xf8\x02\xf7\x7b\x15\xd5\xcc\x94\x93\x90\x8e\x94\x91\x19\x6a" +"\x8e\x99\x7c\xa9\x1b\xa6\x9b\x9a\xae\x93\x1f\x92\xab\x05\x9b\x1d\x60\x5e\x6f\x80\x69\x5f\x1e\x96\x84\x7d\x94\x81\x1b\x7e\x7c\x7f" +"\x7d\x86\x1f\xb2\x79\x96\x4b\x8c\x8b\x1d\xfb\x6e\x05\x50\x74\x7c\x66\x65\xa2\x7d\xca\x1f\xf7\x35\x1d\x9b\x8a\x8f\x8b\x98\x87\x81" +"\x5b\x18\x89\x83\x8a\x84\x84\x1a\x77\x9e\x76\x9d\x99\x98\x97\x9f\x92\x1e\x9d\x69\x98\x73\x94\x7d\x91\x86\x19\x82\x94\x9e\x87\xb4" +"\xa4\x1d\x5f\x1f\x7d\x06\x8a\x06\x87\x06\x60\xda\x81\x9d\x7c\x9a\x7c\x95\x19\x51\xdd\x15\x87\x86\x7c\x7f\x80\x82\x89\x8a\x19\x89" +"\x87\x84\x8a\x82\x1b\x80\x06\x93\xb6\xaf\x8c\x9d\x93\x95\x9b\x19\x0e\xf7\x15\xf8\x60\x15\xc2\x06\x3c\xfb\xf9\x05\x4d\x8c\x74\x7d" +"\x64\x1a\x66\xa2\x7d\xcb\x1e\xea\x06\xca\xa3\x99\xb0\xaf\x74\x9c\x58\x1f\xab\xf7\x24\x05\xa5\x06\xa9\x8d\xa4\x6f\x9e\x54\xab\x27" +"\x18\xa1\x4c\x8e\x89\xd0\x89\x08\x9e\x06\xca\xa2\x99\xb0\xb2\x75\x99\x4b\x1f\x7c\x06\x69\xf7\x01\x80\xb0\x79\xa8\x74\xa2\x19\xaf" +"\xb2\xd4\xdd\x90\x91\x90\x90\x97\x97\x19\x84\x07\x8f\x1d\x66\x79\x59\x5d\x1e\x2d\x24\x71\x70\x73\x7c\xf7\x21\x1d\xfb\x8c\x66\x1d" +"\x82\x84\x70\x0a\x0e\xf7\x44\xf7\xd5\x15\x5b\xfb\x6e\x05\x4f\x8c\x74\x7c\x66\x1a\x65\xa2\x7d\xcb\x1e\xe0\x06\xca\xa3\x99\xaf\xae" +"\x75\x9c\x5d\x8c\x1f\x9b\xd1\x05\xa1\x06\xb2\x93\x85\x63\xa2\x1f\xb3\x44\x98\x73\x94\x7d\x90\x86\x19\x82\x94\x9f\x87\xb3\xa4\x1d" +"\x60\x1f\x7d\x06\x89\x06\x87\x06\x60\xda\x81\x9d\x7c\x9a\x7a\x96\x19\xd8\xd0\x94\x92\x90\x8f\x94\x91\x19\x6a\x8e\x9a\x7c\xa9\x1b" +"\xa6\x9a\x9a\xae\x93\x1f\x92\xaa\x05\x8f\x9b\x8c\x92\x91\x1a\xab\x72\x9d\x5f\x5e\x64\x7b\x6b\x67\x1e\x3a\x41\x7e\x7f\x7f\x82\x88" +"\x8a\x19\x89\x88\x83\x8a\x82\x1b\x80\x06\x94\xb6\x05\xbe\x8d\x9e\x9a\xb0\x1a\xb1\x78\x97\x4d\x1e\xfb\x73\x06\xf7\x18\x1d\x0e\xf8" +"\x7e\xf6\x15\xdb\xf7\xf6\x05\xb2\x8f\xa4\xa3\xac\xd2\x0a\x27\xae\x0a\x95\x06\x6f\xfb\x14\x05\xfb\x62\x06\xa7\xf7\x14\x05\x97\x06" +"\xaa\x96\x7f\x1d\x27\x39\x1d\x7b\x1a\x71\x97\x7e\xa8\x87\x1e\x3b\xfb\xf9\x05\x89\x06\x38\x0a\x7b\x7e\x66\x0a\x9d\x81\x9b\x7c\x90" +"\x1e\x8e\x83\x84\x8c\x76\x1b\x82\x06\xa7\xf7\x12\x05\xf7\x62\x06\x6f\xfb\x12\x05\x7f\x37\x1d\x6c\x9c\x7f\xb7\x1e\xe5\x06\x80\x59" +"\x05\x88\x80\x8a\x81\x84\x1a\x71\x9c\x7c\xaa\xb4\xa2\xa7\xc6\x93\x1e\x9f\xf7\x1f\x05\x0e\xf8\x7d\xf3\x15\xbb\xf7\x6e\xa6\x0a\x8a" +"\x86\xcd\x0a\x98\xc6\x05\xf7\x70\x06\x7e\x50\x05\x85\x06\x59\x6b\x74\x66\x6e\x9f\x7d\xb5\x1f\xec\x06\x7f\x62\x05\x89\xe1\x0a\x9b" +"\xd1\x9c\x1e\xaa\xf7\x14\x05\x0e\xf7\xe8\x7e\x15\xd1\x8e\xca\x9b\xba\xa8\x08\xbb\xa7\xa3\xa7\xa5\x9e\x0a\x7d\x4b\x05\x80\x0a\x22" +"\xd2\x3f\xf7\x08\x79\x1e\x77\x31\x05\x8c\x99\x94\x42\x0a\xb2\x7b\x9e\x62\x94\x1f\x0e\xf7\xf3\x7c\x15\xf7\x19\x91\xf4\xbd\xc5\xdd" +"\x1d\x9b\xd5\x05\xf7\x3c\x1d\x9c\x6a\x5b\x95\x54\x1b\x2e\x88\x1d\x42\xba\x4d\xd0\x78\x1e\xa0\x85\x9f\x87\xa6\x89\x79\x36\x18\x8c" +"\x98\x94\x8c\x90\x1b\xa8\xec\x1d\xb2\x7b\x9e\x61\x94\x1f\x0e\xf8\x2a\xf7\x7f\x29\x0a\x77\x1b\x2e\x34\x1d\x0e\xf7\x53\x96\x15\x75" +"\x23\x05\x88\x38\x1d\xf7\x04\x9f\x1d\x97\x86\x96\x81\x94\x1e\x92\x82\x82\x8d\x6e\x1b\x8a\x06\x9f\xe7\xf7\x96\xf7\xd7\x05\xb3\x90" +"\xa4\xa2\xac\xee\x0a\x7f\x88\x7f\x72\x0a\x90\x89\x92\xab\x0a\x0e\xf8\x26\xf7\x6e\x15\x8f\x9d\xf7\x69\xf7\x75\x05\xa1\x95\x8d\x90" +"\x96\x1f\xa1\x97\x99\xa1\xa0\x52\x1d\x83\x20\x1d\x2e\x39\x1d\x7b\x1a\x77\x93\x80\x9e\x82\x1e\xfb\x07\xfb\x0d\x4e\xf7\x0c\xf7\x04" +"\x1d\x7a\x7a\x1a\x6e\x9c\x7f\xb1\x8a\x1e\xf7\x05\xfb\x74\x87\x78\x05\x27\x06\x64\x70\xf7\x22\x0a\xed\x06\x84\x6c\x05\x4d\x06\x6b" +"\x81\x3a\x1d\xf7\x7b\x06\xa7\x9a\xd8\x0a\x4f\x06\x91\xaa\x05\xea\x06\xb2\xa6\x4b\x0a\xf7\x51\x8c\x15\x47\x06\x64\x70\x77\x6d\x83" +"\x8f\x80\x90\x85\x1f\x83\x92\x94\x89\xa3\x1b\xce\x06\x89\x81\x05\x88\x06\x6b\x81\x89\x7f\x95\x1d\xb6\x1e\xf7\x04\x06\xa9\x98\xf7" +"\x1f\x0a\x9c\x9c\x1a\x97\x86\x97\x81\x93\x1e\x93\x82\x82\x8c\x6e\x1b\x8a\x06\x8d\x95\x05\xd1\x06\xb1\xa6\xa0\xa8\xa4\x7e\x95\x68" +"\x1f\x48\x06\xf7\x94\xf7\xd5\x05\xb3\x90\xa4\xa2\xac\xee\x0a\x7f\x88\x7f\x72\x0a\x91\x89\x91\xab\x0a\xee\xfb\xcc\x05\x0e\xf8\x90" +"\xf2\x15\xfb\x0e\xf7\x4c\xf7\x54\xf7\x42\x05\xb5\x8c\xa9\xa5\xad\x3e\x1d\x83\x84\x8c\x76\x1b\x31\x25\x1d\x79\x91\x81\x9e\x81\x1e" +"\xfb\x00\x2a\x49\xeb\x05\xab\x9a\x9a\x9d\xa4\x51\x1d\x82\x20\x1d\x30\x06\x6b\x81\x88\x7f\x30\x1d\x90\x89\x92\x8a\x98\x8a\xf7\x08" +"\xfb\x40\x18\xfb\x61\xfb\x4e\x05\x60\x8a\x6d\x72\x68\x21\x0a\xf7\x02\x20\x0a\x9b\x1a\xa4\x7e\x98\x71\x8e\x1e\xf7\x09\xf5\xd1\x22" +"\x05\x65\x87\x71\x72\x6b\x21\x0a\xf7\x02\x06\x91\x06\x8c\x06\x7e\x54\x05\x88\x7f\x8a\x82\x84\x1a\x71\x9c\x7d\xaa\xb4\xa2\xa6\xc6" +"\x94\x1e\x9e\xf7\x1f\x05\x0e\xf8\x89\xf1\x15\xfb\x0b\xf7\x0a\xf7\x2a\xf1\xa2\x8d\x92\x8e\x97\x94\x19\x9b\x98\x94\x9d\x9b\x1a\x9c" +"\x80\x9b\x7d\xf7\x03\x1d\xb4\x05\xa0\x99\xf7\x08\x1d\x7a\x1a\x7a\x95\x7c\x9a\x86\x1e\x8f\x89\x90\x8a\x95\x8a\xf0\x26\x18\xfb\x3c" +"\xfb\x0a\x74\x89\x83\x88\x7f\x81\x19\x7b\x7e\x82\x7b\xf7\x36\x1d\x97\x94\x9d\x9d\x1a\x9d\x85\x94\x78\x94\xf7\x2d\x0a\x72\x21\x0a" +"\xf7\x06\x06\x7f\x60\x05\x89\x83\x89\x7f\x82\x1a\x70\x9c\x7e\xac\xb4\x98\x9a\xd2\x9c\x1e\xa9\xf7\x14\x05\x0e\xc9\x1d\x51\x06\x4c" +"\x74\x7d\x65\x65\xa1\x7e\xcb\x8a\x1f\xf7\x1e\x06\x7f\x54\x05\x88\x81\x8a\x80\x83\x85\x0a\xc6\x93\x1e\x9e\xf7\x21\x05\x0e\xf8\x61" +"\xf3\x15\xcd\x1d\x82\x65\x05\x54\x06\x4b\x74\x7d\x65\x65\xa1\x7e\xcc\x8a\x1f\xf7\x09\x06\x7f\x54\x05\x88\x80\x8a\x81\x83\x85\x0a" +"\xc6\x93\x1e\x9f\xf7\x21\x05\x0e\xf7\xcd\xf7\x44\x15\xaa\x94\x98\x90\xa4\x98\x75\x28\x18\x51\x06\x4c\x74\x7d\x65\x65\xa1\x7d\xcb" +"\x1f\xf7\x28\x9c\x1d\x9d\x5e\x8c\x1f\xda\xf7\xf9\x05\xc5\x8c\x7d\x1d\x71\x7b\x83\x87\x64\x79\x19\x93\xae\x05\x8c\x92\x8c\x92\x93" +"\x1a\xa3\x79\x9d\x74\x72\x7e\x7e\x6a\x83\x1e\x7b\x41\x05\x72\x8e\x83\x91\x9c\x1a\x96\x8e\x9f\x8e\x99\x1e\xa5\xf7\x09\x05\xcc\xa0" +"\x98\xb1\xb2\x74\x98\x4b\x1f\xc5\x0a\x74\x88\x74\x7c\x1a\x65\x9e\x68\xab\x74\x1e\x9e\x7d\x9b\x86\xaf\x86\x08\x89\x81\x8a\x83\x87" +"\x1a\x76\x9f\x77\xa0\xa5\x98\x98\xac\x92\x1e\x0e\xf7\xbe\xf7\x0f\x15\xa4\x90\x9b\x90\xa1\x93\x82\x66\x18\x84\x06\x80\x77\x85\x85" +"\x80\x1f\x7f\x84\x84\x7d\x78\x1a\x78\x92\x7c\x98\x84\x1e\x85\x95\x9f\x86\x96\x1b\xe5\x06\xcb\xa2\x99\xb0\xac\x78\x9b\x61\x8e\x1f" +"\xbc\xf7\x6e\x05\xc2\x8d\x77\x0a\x42\x27\x0a\x69\x9f\x7a\xb6\x8a\x1f\x7e\x4e\x75\x81\x84\x88\x6a\x7f\x19\x90\x9e\x05\x8d\x92\x8c" +"\x92\x92\x1a\xa4\x7a\x9d\x73\x84\x81\x89\x87\x85\x1e\x7e\x84\x88\x86\x84\x6f\x7d\x54\x18\x85\x8d\x85\x8d\x86\x8c\x08\x81\x8f\x89" +"\x8d\x91\x1a\x8d\x8c\x8e\x8e\x9c\x1e\x9a\xcb\x05\xc9\x8c\xa1\x98\xb1\x1a\xb1\x74\x99\x4a\x1e\x3d\x06\x4b\x74\x7d\x66\x6a\x9e\x7b" +"\xb4\x88\x1f\x7e\x50\x05\x87\x78\x89\x7d\x7e\x1a\x5a\xae\x67\xc6\x7f\x1e\x96\x89\x92\x89\x84\x71\x05\x89\x83\x8a\x82\x86\x1a\x75" +"\x9e\x77\xa1\xa5\x97\x96\xae\x94\x1e\x0e\xf7\xe3\xf8\x60\x15\xc5\x06\xcb\xa2\x99\xb1\xb1\x74\x99\x4b\x1f\xfb\x28\x27\x0a\x69\xa1" +"\x79\xb8\x8a\x1f\x3c\xfb\xf9\x05\x52\x8a\x76\x7d\x67\x1a\x65\xa2\x7d\xcb\x1e\xde\x06\xca\xa3\x99\xaf\xae\x75\x9c\x5c\x8c\x1f\xa7" +"\xf7\x15\x05\xb6\xd4\xb8\x9c\xb5\x1b\xa6\x98\x82\x79\x80\x89\x7b\x87\x79\x1f\x70\xfb\x09\x05\x4b\x75\x7e\x65\x64\xa2\x7e\xcb\x1f" +"\xe4\x06\xc9\xa3\x99\xaf\xae\x75\x9c\x5f\x8c\x1f\xa4\xf7\x04\x05\x91\xa5\x8e\xa0\x99\x1a\xd2\x51\xbd\x39\x5a\x5f\x80\x72\x5a\x1e" +"\x0e\xf7\xa9\xf8\xae\x15\x8e\x99\x8c\x93\x96\x1a\xa7\x7d\x98\x6e\x66\x77\x76\x58\x7f\x1e\x2a\xfc\x49\x54\x0a\x58\x0a\xc9\x1d\xfb" +"\x0f\x06\x62\xfb\x2d\x05\x88\x7f\x89\x7d\x81\x1a\x71\x9c\x7e\xaa\xb2\x9c\x9d\xbe\x95\x1e\x96\xc2\x05\xf7\x47\x06\xb8\x8c\xa5\x9f" +"\xaf\x1a\xaa\x74\x9b\x5f\x1e\x0e\xf8\x61\xf3\x15\xbc\xf7\x6e\x05\xc2\x8c\x77\x0a\x42\x27\x0a\x6a\xa0\x7a\xb5\x89\x1f\x7e\x4e\x05" +"\x6f\x4d\x5f\x7f\x5c\x1b\x78\x7f\x90\x94\x8d\x8c\x8e\x8e\x9c\x1f\x9a\xcc\x05\xc9\xa1\x98\xb1\xb1\x74\x99\x4a\x1f\x3d\x06\x4b\x74" +"\x7d\x66\x6b\x9e\x7a\xb4\x88\x1f\x7e\x50\x05\x87\x78\x89\x7e\x7d\x1a\x4e\xc2\x63\xde\xb4\xb2\x93\x9c\xbb\x1e\x82\x66\x05\xfb\x0a" +"\x06\x5f\xfb\x2a\x05\x87\x7f\x89\x7d\x82\x1a\x6f\x9a\x7d\xa9\xb3\x9f\x9e\xbc\x95\x1e\x97\xc2\x05\xf7\x2c\x06\xc2\x8c\xa2\x9a\xb1" +"\x1a\xae\x77\x9a\x5c\x1e\x0e\xf8\xb4\xf7\xd1\x15\xfc\x5f\x06\x85\x6a\x88\x6d\x6e\x1a\x36\xa9\x43\xbe\x66\x1e\x6f\xb2\xbe\x7b\xbd" +"\x1b\xf7\x4b\xf7\x41\xf7\x45\xf7\x4f\xf7\x17\x2b\xeb\xfb\x17\x33\x23\x59\x43\x4c\x1f\xed\x63\x8c\x8d\x8d\x8c\x8d\x8d\x19\x8c\x8c" +"\x8b\x8c\x8c\x1b\xaf\xbb\xb2\x9b\xb5\x1b\xb7\xb2\x78\x6c\xa3\x1f\x9e\x71\x99\x64\x70\x1a\x72\x27\x15\x68\x56\x7d\x79\x74\x76\x08" +"\x6d\x6a\x55\x76\x60\x1b\x61\x62\x9e\xaa\x75\x1f\x7e\x9c\x82\xa6\x80\xbc\x08\x0e\x22\x1d\xfb\x09\xf8\x0e\x46\x1d\x2d\x1d\xfb\x0a" +"\xf8\x7b\x2b\x0a\xf8\x40\xf8\xd6\x15\xfb\x4c\xfb\x41\xfb\x44\xfb\x4f\xfb\x17\xeb\x2a\xf7\x16\xf7\x48\xf7\x44\xf7\x45\xf7\x4a\xf7" +"\x1b\x2d\xec\xfb\x17\x1f\xe7\xfb\xed\x15\x74\x5f\x7a\x75\x6b\x72\x08\x6a\x62\x5d\x79\x5f\x1b\x62\x65\x9d\xab\x72\x1f\x78\xa2\x84" +"\xa0\x86\xbb\x08\x9b\xdf\x15\xeb\xb4\xdd\xc9\xe0\x1b\xde\xc1\x4c\x2c\x8a\x1f\x0e\xbe\x1d\x24\x1d\xad\xf7\x28\x05\x8e\x9b\x8c\x91" +"\x93\x1a\xa1\x21\x1d\xcf\xf9\x4e\x46\x1d\x33\x1d\xfb\x5e\xf8\x2c\x2b\x0a\xf7\x50\xf9\x6c\xf7\x0b\x0a\x7a\x94\x7a\xba\x0a\x0e\xf8" +"\x3d\x95\x15\x7f\x9b\x96\x87\x9c\x1b\xd2\xba\xe5\xf7\x1e\xf7\x19\x5a\xe5\x43\x39\x61\x33\xfb\x3f\x1f\xfb\xd1\x07\x71\x9c\x79\xa4" +"\xa3\x9c\x9d\xa5\x1e\xf7\xe6\x04\x9e\x07\xd0\xa1\xd3\xa0\xa1\x9e\x47\x3f\x2f\x7b\x51\x71\x75\x7c\xaf\xc3\x88\x1e\xfc\x04\xf7\xc0" +"\x15\xfb\xd0\x07\x8a\x67\x81\x6f\x7c\x86\x08\x7c\x83\x82\x7c\x7a\x1a\x89\x07\x8c\x73\x9e\x7a\xa5\x8d\x08\xee\x06\xf7\x06\xca\xec" +"\xf7\x43\xf7\x06\x6d\xe1\x55\xb4\x1f\x6d\xa2\x73\x93\x5b\x8c\x8d\x93\x8c\x8e\x8e\x8e\x08\x90\x92\x8d\x91\x93\x1a\x96\x85\x96\x80" +"\x91\x1e\x89\x8c\x05\x8f\x85\x83\x8d\x84\x1b\x71\x71\x6c\x64\x85\x1f\x86\x06\x6f\x79\x7b\x73\x74\x9d\x7b\xa7\x1f\xe1\x16\xdb\x8a" +"\xa6\x57\xfb\x28\x1a\x2a\x79\x50\x69\x77\x1e\x83\x7c\x7a\x88\x61\x1b\x95\x9d\x94\xb2\xa9\x1a\x0e\xf7\x9f\xef\x15\x86\x8d\x69\x9a" +"\x80\x91\x7d\x96\x19\x64\xab\x73\xce\xd6\x1a\xf7\x0a\xc3\xcb\xf3\xf3\xc3\x4c\xfb\x0b\x36\x6e\x46\x5a\x6d\x1e\x80\x84\x80\x85\x70" +"\x80\x08\x27\xf7\x5f\x07\xa5\x94\x8c\x92\x96\x1f\x9c\x95\x96\x9e\x9d\x1a\x9c\x82\x9c\x7c\x95\x1e\x94\x7f\x81\x8d\x70\x1b\x5e\x06" +"\xc8\xac\xae\xd5\xeb\x1a\xd9\x6e\xd7\x5d\xb6\x1e\xb6\x5d\x3b\xa5\x34\x1b\x34\x3b\x71\x60\x5d\x1f\x5d\x60\x6e\x3f\x3d\x1a\x2b\xae" +"\x41\xc8\x6a\x1e\x5e\x06\x72\x82\xed\x0a\x83\x97\x95\x89\xa7\x1b\xf7\x5f\x06\x0e\xb0\x0a\x79\x1d\xe6\x16\xbe\x06\xf7\x34\xf8\x19" +"\xf7\x35\xfc\x19\x05\xbe\x06\xfb\x42\xf8\x47\x05\x40\x06\x0e\xe6\xf8\x46\x15\xf7\x42\xfc\x46\x05\xd6\x06\xf7\x42\xf8\x47\x05\x58" +"\x06\xfb\x35\xfc\x19\xfb\x34\xf8\x19\x05\x58\x06\x0e\xf7\xbd\xf8\x89\x15\xfb\x1b\xfb\x05\xfb\x04\xfb\x1b\xfb\x22\xf7\x02\xfb\x04" +"\xf7\x20\xf7\x1c\xf7\x03\xf7\x04\xf7\x1f\xf7\x1f\xfb\x03\xf7\x03\xfb\x1e\x1f\x70\xfb\xad\x15\xfb\x36\x07\x35\x94\x3e\xd6\x87\xd9" +"\x08\xc2\x04\x91\xde\xd5\xd5\xe2\x96\x08\xfb\x3c\x07\xc2\x54\x15\xf7\x3b\x06\x88\x42\x3b\x3d\x37\x80\x08\xf7\x6d\x04\xf7\x3c\x07" +"\xdf\x82\xd7\x3f\x92\x38\x08\x0e\x9c\x16\xf8\xcb\xf8\xcb\xfc\xcb\x06\xf8\x92\xfc\x92\x15\xfc\x59\xf8\x59\xf8\x59\x06\x0e\xca\xf7" +"\xe7\x15\xfb\x2b\x90\x68\xa6\x5f\x1e\x47\xb5\xd8\x62\xe1\x1b\xbf\xbb\x9a\xa6\xb4\x1f\xbe\xae\xa8\xb9\x95\xca\x08\x90\xac\x8c\xa1" +"\xed\x1a\xf7\x51\x07\x9f\x80\x99\x7b\x7b\x82\x7f\x75\x1e\xfb\x54\x07\xfb\x10\x86\x62\x78\x6a\x1e\x57\x6d\x4a\x68\x49\x1b\x63\x62" +"\x98\xa2\x6a\x1f\x62\xa8\x78\xac\x85\xbb\x87\xa9\x8b\x8b\x8a\xf7\x01\x08\xf7\x54\x07\xa0\x81\x98\x7b\x7a\x82\x7f\x75\x1e\x0e\xf7" +"\xe1\x16\xf7\x67\xf8\xeb\x05\x55\x06\x4c\xfb\x37\x05\xfb\x97\x06\x4d\xf7\x37\x05\x58\x06\xf7\x5f\xfc\xeb\x05\xf7\x2a\xf8\x15\x15" +"\xfb\x03\xfb\xe2\x05\x84\x06\x24\xf7\xe2\x05\x0e\xf8\xf4\xf8\x3d\x75\x1d\xa7\xe5\x1d\xa6\xa7\xc1\xae\x1f\xcb\xb5\x9a\x9c\xa6\x5c" +"\x1d\xf8\x99\xf7\xd5\x15\x92\x06\xb2\xa9\xa6\xae\xa9\x7a\x97\x60\x1f\xfb\x04\x06\x59\x6c\x73\x66\x6d\x9d\x7e\xb5\x1f\x90\x06\x6f" +"\xfb\x14\x05\x45\x7c\x67\x69\x4f\x1b\x63\x76\x9b\xa8\x96\x8e\x9a\x92\xab\x1f\xc0\xf7\x7d\x05\xfb\x0b\x06\x58\x6d\x74\x64\x6e\x9d" +"\x7e\xb5\x1f\x90\x06\x6e\xfb\x15\x05\x87\x77\x88\x73\x7b\x1a\x34\xd0\x4f\xf0\xc9\xbf\xa0\xb4\xb5\x1e\xa9\xa9\x9d\xb1\x9a\xcf\x08" +"\x0e\x72\x1d\xfb\x69\xf8\x2d\x15\x69\x6c\x6e\x6b\x72\x68\x0a\x9d\x79\xa5\xae\xaa\xa8\xad\xa3\x79\x9c\x70\x1f\x0e\x72\x1d\x6e\xf8" +"\x12\x15\x9d\x97\x94\x97\x22\x0a\x7b\x82\x81\x87\x82\x7e\x1e\xfb\x13\x38\x05\x79\x80\x82\x7e\x7d\x1a\x7b\x96\x81\x9b\x94\x94\x8f" +"\x94\x9a\x1e\xfb\x10\xe6\x15\x68\x6c\x6e\x6a\x73\x9d\x79\xa6\xad\xaa\xa8\xac\xa4\x79\x9c\x71\x1f\xf7\xd7\x16\x64\x1d\x0e\x72\x1d" +"\x82\xf8\x12\xed\x1d\x57\x1d\x39\xf8\xeb\xeb\x1d\xf8\xf4\xf8\x3d\x15\xfb\x20\x25\x1d\x6e\x9d\x7e\xb6\x1e\xa8\x06\x66\xfb\x3c\x05" +"\x58\x4d\x70\x7f\x59\x1b\x5f\x71\x9a\xa6\x93\x8c\x91\x8c\x93\x1f\xc8\xf7\xa2\x05\xfb\x0d\x06\x71\x82\x8a\x85\x80\x1f\x75\x7f\x7d" +"\x76\x76\x9d\x1d\x4b\x1d\x79\x1a\x44\xc7\x5b\xe6\x61\x1d\xa8\x99\x8e\x97\x99\xf7\x02\x0a\x97\x81\x93\x1e\x83\x91\x84\x8d\x77\x8c" +"\x08\xbb\xf8\xa7\x15\x7d\x7b\x81\x77\x78\x1f\x6f\x6f\x88\x88\x7d\x1b\x81\x80\x98\x1d\x67\x63\x75\x63\x66\x1f\x7b\x79\x84\x7e\x7f" +"\x1a\x7b\x97\x80\x9c\x96\x95\x90\x96\x96\x1e\xaf\xb0\x93\x8e\x1d\xa1\xa1\x93\x99\x99\x1a\x98\x7c\x97\x7c\x1e\x0e\x3d\x0a\xf7\xdd" +"\xf8\xe2\x15\xa5\x9d\x91\x94\x9c\x1a\x9e\x7c\x98\x77\x80\x83\x88\x7f\x7a\x1e\xfb\x2b\x20\x05\x74\x7a\x82\x80\x7b\x1a\x78\x98\x7f" +"\xa0\x8a\x1e\x94\x99\x91\x95\x9a\x1f\x0e\xf7\xb8\xf7\x50\x1d\xa1\x8d\x92\x8e\x97\x95\x19\x9b\x97\x94\x9c\x9c\xf7\x13\x1d\x7a\x7a" +"\x1a\x7a\x87\x0a\x87\x94\x91\x8b\xa0\x1b\x4b\xfb\x15\x71\xf7\x22\x05\x2d\x06\x33\xfb\x22\x86\xf7\x15\x05\xa5\x96\xad\x0a\xf7\x56" +"\xf8\xd6\xaf\x0a\x3d\x0a\xdb\xf9\x0c\x40\x0a\x3d\x0a\xe0\xf9\x24\xf7\x15\x0a\x90\x81\x97\xf7\x32\x1d\x85\x95\x80\x96\x1f\x0e\xf8" +"\x48\xf7\x84\x15\xa2\xf7\x00\x87\x8c\x05\x86\x06\x84\x8c\x88\x8b\x83\x8c\x08\x37\x94\x70\x9a\xae\x1a\xa3\x9a\xa4\xa2\x9b\x1e\x9c" +"\x96\xa5\x92\xad\x8e\xab\x8d\x98\x8d\x96\x8e\x08\xa3\x94\x9e\xa3\xa4\x1a\xa8\x79\x98\x60\x1e\xfb\x5c\x06\x5a\x6a\x73\x68\x6e\x9f" +"\x7d\xb7\x89\x1f\x6c\x6d\x7f\x71\x65\x1a\x67\x99\x6a\xa5\x70\x1e\x2e\x5f\x62\x50\x34\x1a\x57\x9f\x61\xb2\x70\x1e\xa2\x7b\xb0\x7e" +"\xcd\x7b\x08\xa5\x85\x91\x86\x7f\x1a\x74\x79\x82\x57\x86\x1e\x61\x87\x74\x74\x65\x1a\x72\xa0\x7d\xb3\xf7\x03\xd2\xc5\xe5\xca\x6d" +"\xa9\x37\xa2\x1e\x30\xa3\x7f\x94\xb1\x1a\xd1\xd6\xb6\xf7\x13\x8e\x1e\x0e\xf7\x54\x92\x58\x1d\xf7\xb7\xf7\x94\x60\x0a\x53\x0a\xf7" +"\x4b\xf7\xe2\xf7\x15\x0a\x91\x81\x96\x80\x1f\xf7\x03\x21\x05\x80\x96\x94\x86\x95\x1b\xa5\xa3\xa1\xa2\x95\x85\x95\x80\x96\x1f\x0e" +"\xd2\x1d\xf7\x29\xf8\x81\x2f\x1d\xd2\x1d\x8d\xf8\xa5\x5b\x1d\xf7\xfa\xf8\x87\x15\x55\x60\x56\x55\x61\x55\x08\x50\x3f\x72\x50\x4b" +"\x1a\x5f\x99\x62\xa4\x6e\x1e\xa2\x71\xac\x79\xd4\x73\xa1\x84\x8b\x8b\x8e\x8a\x08\x99\x85\x92\x83\x7f\x1a\x74\x76\x7f\x5a\x86\x1e" +"\x60\x87\x75\x75\x64\x1a\x71\xa0\x7e\xb3\xf6\xd6\xc7\xe1\xaf\x7c\xac\x72\xa2\x1e\x7c\x99\x72\x96\x5e\x9a\x08\x40\xa4\x7d\x98\xb4" +"\x1a\xc8\xb8\xd2\xf0\xec\x1e\xbc\xbb\xbf\xb5\xb8\xa9\x94\x91\x18\xa1\xf1\x05\xfb\x70\x06\x59\x6b\x72\x63\x71\x9f\x7e\xb4\x1f\x0e" +"\x7e\x98\xf8\xed\x9b\x06\xf2\x0a\xf7\x04\x0b\xaf\x9c\x8f\x90\x8f\x92\x8f\x8f\x8f\x96\x92\x92\x0c\x0c\xf8\xec\x14\xa9\x13\x01\x06" +"\x02\x00\x01\x00\x0d\x00\x14\x00\x1a\x00\x22\x00\x5d\x00\x63\x00\x69\x00\x6f\x00\x7d\x00\x83\x00\x8b\x00\xa6\x00\xb4\x00\xc1\x00" +"\xc7\x00\xfd\x01\x01\x01\x07\x01\x10\x01\x15\x01\x20\x01\x25\x01\x2e\x01\x36\x01\x3d\x01\x43\x01\x4a\x01\x79\x01\x80\x01\xab\x01" +"\xb9\x02\x13\x02\x1b\x02\x20\x02\x27\x02\x4b\x02\x57\x02\x70\x02\x8c\x02\x9d\x02\xa5\x02\xb4\x02\xbf\x02\xc3\x02\xcf\x02\xd6\x02" +"\xdf\x02\xe6\x02\xee\x02\xf5\x02\xfd\x03\x03\x03\x51\x03\x5b\x03\x75\x03\x7a\x03\x88\x03\xdc\x03\xf8\x04\x46\x04\x83\x04\xa9\x04" +"\xde\x05\x0a\x05\x14\x05\x35\x05\x41\x05\x47\x05\x59\x05\x66\x05\x73\x05\x7b\x05\x90\x05\x99\x05\xad\x05\xb3\x05\xb9\x05\xc4\x05" +"\xd5\x05\xdb\x05\xe7\x05\xf4\x05\xf9\x06\x00\x06\x09\x06\x0f\x06\x16\x06\x20\x06\x2d\x06\x34\x06\x3b\x06\x47\x06\x4b\x06\x56\x06" +"\x61\x06\x6b\x06\x72\x06\x7b\x06\x84\x06\x8d\x06\x96\x06\x9f\x06\xa8\x06\xae\x06\xb5\x06\xbd\x06\xc5\x06\xda\x06\xe3\x07\x34\x07" +"\x8e\x07\xe5\x08\x43\x08\x64\x08\xcb\x09\x25\x09\x4c\x09\x5c\x09\x6b\x09\x70\x09\x8a\x09\x98\x0a\x08\x0a\x45\x0a\xaf\x0b\x00\x0b" +"\x1d\x0b\x68\x0b\xae\x0b\xc8\x0b\xf6\x0c\x3b\x0c\x65\x0c\x9a\x0c\xda\x0d\x0f\x0d\x2c\x0d\x30\x0d\x3f\x0d\x5f\x0d\x7a\x0d\x96\x0d" +"\x9c\x0d\xb7\x0d\xe2\x0d\xf8\x0d\xfd\x0e\x08\x0e\x18\x0e\x24\x0e\x30\x0e\x41\x0e\x47\x0e\x4a\x0e\x5f\x0e\x62\x0e\x70\x0e\x94\x0e" +"\xb3\x0e\xce\x0e\xef\x0e\xfd\x0f\x19\x0f\x2a\x0f\x36\x0f\x48\x0f\x68\x0f\x75\x0f\x81\x0f\x87\x0f\xa4\x0f\xaf\x0f\xbb\x0f\xcf\x0f" +"\xe2\x0f\xe7\x0f\xfb\x10\x14\x10\x19\x10\x28\x10\x40\x10\x45\x10\x50\x10\x5a\x10\x60\x10\x6d\x10\x74\x10\x89\x10\x92\x10\xa6\x10" +"\xb4\x10\xb9\x10\xcd\x10\xd9\x10\xe0\x10\xf3\x10\xff\x11\x12\x11\x1b\x11\x28\x11\x33\x11\x3c\x11\x42\x11\x49\x11\x5a\x11\x63\x11" +"\x6c\x11\x73\x11\x7d\x11\x8e\x11\x9e\x11\xae\x11\xb7\x11\xbc\x11\xc4\x11\xce\x11\xd8\x11\xe2\x11\xea\x11\xf0\x11\xf5\x12\x03\x12" +"\x11\x12\x1f\x12\x2d\x12\x33\x12\x41\x12\x47\x12\x55\x12\x63\x12\x6c\x12\x75\x12\x7e\x12\x8b\x12\x98\x12\xa5\x12\xb2\x12\xbf\x12" +"\xcc\x12\xd8\x12\xe4\x12\xf0\x12\xfc\x13\x08\x13\x12\x13\x1a\x13\x22\x13\x2a\x13\x32\x13\x3a\x13\x45\x13\x50\x13\x5b\x13\x66\x13" +"\x71\x13\x7c\x13\x87\x13\x92\x13\x9d\x13\xa8\x13\xb3\x13\xbe\x06\xa8\x99\x8f\x96\x99\x1f\x9a\x97\x95\x9d\x0b\x1a\x6d\x9d\x7f\xb6" +"\x1e\x0b\x99\x1a\x9a\x80\x95\x0b\x95\x0a\x29\xdc\x44\x93\x1d\x0b\xf8\x23\xf8\x49\x15\x2e\x2f\x65\x4d\x50\x1f\x5c\x59\x6f\x4e\x54" +"\x1a\xfb\x03\xe2\x40\xf7\x16\xf7\x39\xf7\x2b\xf7\x13\xf7\x1f\xf7\x02\x34\xd7\xfb\x13\x1e\x70\x24\x15\xd9\xc0\x63\x50\x3d\x35\x46" +"\x28\x40\x56\xb4\xc5\xd9\xe1\xd0\xeb\x1f\x0b\x06\x6b\x81\x3a\x1d\x0b\x94\x8f\x94\x99\x1e\x0e\x06\x4c\x73\x7d\x66\x0b\xf8\x5c\x49" +"\x0a\x9d\x9c\x1a\x9b\x80\x9b\x7d\x74\x1d\x0b\xd0\x0a\x83\x84\x8c\x0b\x8e\x97\x9a\x1f\x9b\x97\x94\x0b\xf7\x2a\x0a\xcb\xa8\xbd\xb8" +"\x1f\xa1\xa3\x9a\xaa\xf7\x30\x1d\x54\x6b\xa6\xb9\x1f\xa6\x8c\x82\x96\x77\x1b\x0e\xb8\xb4\xb1\xb5\xaa\x73\xa2\x69\x1f\x7a\xf7\x24" +"\x0a\x0b\x05\x63\x85\x72\x74\x6b\x1a\x6f\x9f\x7c\xb4\x1e\x0b\x06\x5a\xfb\x6f\x05\x0b\xf7\xfd\xf8\x61\x15\xc1\x06\xa9\x97\x7f\x1d" +"\xfb\x69\x49\x1d\x9c\x7f\xb7\x1e\xbe\x06\x3c\xfb\xfa\x05\x55\x25\x0a\xf8\x6f\x06\xb5\xf7\x4e\x05\x8e\x9b\x8c\x90\x79\x0a\x67\x75" +"\x75\x5e\x81\x1e\x78\x36\x05\xfb\x63\x06\x0b\xf9\x0a\x77\x1d\xf7\x05\x1d\x78\x87\x1d\x79\x7b\x21\x0a\xf8\x13\x7b\x1d\x0b\xf7\x43" +"\x1d\x4b\x0a\x06\x59\x6b\x73\x67\x6e\x9f\x7c\xb4\x1f\x0b\xf7\x1f\x0a\x9d\x0b\x94\x94\x87\x95\x1b\xa3\xa2\xa1\x0b\x88\x7f\x7c\x1f" +"\x7b\x7f\x82\x0b\x6b\x81\x88\x7f\x7c\x1f\x0b\x06\x5b\xfb\x6f\x05\x0b\xf7\xb9\xf8\x3d\x92\x0a\x0b\xf7\x89\xf7\x68\x15\xe7\x06\xb1" +"\x7e\xd1\xfb\x03\xa6\x33\x08\xf7\x20\x1d\x73\xc4\x6d\xbb\x68\xb0\xce\x1d\xba\xf7\x67\x15\xab\xf7\x26\x05\xf7\x01\x06\xc2\xaf\x75" +"\x68\x5a\x42\x63\x33\x1f\x0b\xf7\x96\xf8\x03\x96\x0a\x0b\xf7\xe6\xf7\x50\x1d\x05\xb3\x8f\xa5\xa3\xac\xf7\x13\x1d\x79\x7b\x1a\x6d" +"\x9c\x7f\xb7\x1e\x4b\xfb\x15\x71\xf7\x22\x05\x2d\x06\x33\xfb\x22\x86\xf7\x15\x05\xa6\x95\xad\x0a\x0b\xf9\x06\x7a\x0a\x9c\x6a\x5b" +"\x95\x54\x1b\x2e\x5a\x0a\x0b\xf8\x0c\xf8\x3e\x15\xfb\x20\x06\x71\x7a\x87\x80\x7e\x1f\x7b\x7e\x82\x7a\x7b\x1a\x6d\x9d\x7e\xb5\x1e" +"\xa9\x2e\x0a\x54\x06\x6c\x81\x88\x7f\x7b\x1f\x7c\x7f\x31\x1d\xb5\x1e\xf7\xbe\x06\xa7\x9a\xf7\x1a\x1d\xfb\x1a\x06\xa9\xf7\x1b\x05" +"\xd1\xf2\xbd\xa5\xa9\x1b\x98\x92\x87\x7f\x97\x1f\x7d\x98\x95\x86\x9a\x1b\xac\xac\xaa\xaa\xb1\x52\xb1\x53\x59\x64\x7c\x55\x32\x1f" +"\x0b\xc1\x0a\xa8\x75\x9f\x6c\x1f\x0e\x1a\x9c\x2c\x1d\x0b\x8c\x90\x1b\xa7\xec\x1d\x0b\xf7\x39\x06\xfc\x0c\xfb\xfc\x74\x26\x05\xf8" +"\x62\x06\xb1\xf7\x3b\x05\x8f\x9e\x8b\x8c\x93\x1a\xa2\xf7\x74\x1d\x82\x86\x80\x86\x72\x7c\x49\x18\x0b\x05\x78\x34\x0a\xf7\x66\xf7" +"\x6a\x1d\x38\x06\x0b\x87\x1e\x3b\xfb\xfa\x05\x89\xf7\x1e\x0a\x7b\x7f\x66\x0a\x9c\x81\x9c\x41\x1d\x76\x1b\x82\x2b\x1d\x0b\x15\x98" +"\x97\x92\x91\x8b\x1a\x93\x94\x8e\x92\x96\x1a\x9d\x7c\x99\x78\x7d\x83\x87\x7f\x7d\x1e\xfb\x08\x26\x05\x0b\x15\x64\x71\x77\x6e\x72" +"\x98\x81\xae\x1f\xf7\x89\x06\xb1\xa7\x4b\x0a\x1f\x9a\x97\x95\x9d\x3c\x1d\x0b\xf8\x61\x15\xed\x06\xa9\x97\x8e\x97\x9a\x1f\x9a\x97" +"\x95\x0b\x65\x68\x66\x6e\xa1\x76\xa9\xb4\xb1\xae\x0b\x9f\xa8\xa5\x1d\x1e\xfb\x32\x21\x05\x75\x7c\x81\x7d\x7b\x1a\x0b\xf7\x56\x1d" +"\xb3\xb1\xae\x0b\x1b\x8a\x06\xb0\xf7\x3d\x05\xbe\x0b\x8e\x97\x9b\xf7\x03\x0a\x0b\x82\x1a\x7c\x96\x80\x9b\x99\x0b\x9b\x7d\x90\x1e" +"\x8e\x82\x0b\x7c\x1a\x78\x99\x7e\x9f\x95\x0b\xf7\x82\x92\x58\x1d\x0b\x05\x88\x67\x0a\xa8\xde\x0a\x82\x8d\x6f\x4e\x0a\xcc\xa5\x96" +"\xb9\x1b\xb7\xa6\x7b\x71\x84\x8a\x81\x88\x7f\x1f\x68\xfb\x34\x05\x88\x06\x6b\x80\x89\xf7\x04\x0a\xf7\x04\x06\xa9\x99\x8f\x96\x99" +"\xf7\x03\x0a\xa9\x7a\x97\x60\x1e\x8a\x06\xb1\xf7\x3f\x05\x8e\x99\x8c\x96\x9b\x1a\xd4\x4f\xbc\x31\x59\x58\x78\x6a\x60\x1e\x0e\xf7" +"\xf9\x6a\x0a\xaa\x1a\x9c\xc7\x1d\x0b\xdd\xf7\x86\x15\x80\x0a\xfb\x10\xed\x3b\xf7\x2a\xe6\xda\xa3\xb9\xc6\x1e\xa5\xa0\x98\x9e\x9f" +"\x9e\x0a\x0b\xf8\x5b\xc1\x1d\x0b\xf8\x2e\x49\x0a\x9c\x9c\x1a\x9c\x81\x9b\x7c\x74\x1d\x0e\xf7\x7d\xf7\xd5\x15\xa7\x06\xb9\xaa\xa4" +"\xb1\xa6\x75\x99\x64\x1f\xfb\x28\x34\x0a\x9b\x06\x5b\xfb\x6d\xf7\x4b\x1d\xf7\x88\xf7\x8b\x6a\xfb\x23\x05\x73\x06\x59\x6b\x72\x64" +"\x72\xa1\x7c\xb2\x1f\xf7\x2d\x06\xb9\xab\xa4\xae\xa8\x77\x9a\x62\x1f\x7a\x06\xba\xf7\x6d\x05\x96\x06\xb1\xab\xa7\xad\xa6\x76\x9a" +"\x62\x1f\x24\x06\xfb\x85\xfb\x8b\x05\x0b\x88\x1d\x58\xa2\x5d\xb3\x6c\x1e\x71\xaf\xc2\x7d\xd6\x1b\xef\xd5\x9c\xaf\xc1\x1f\xa7\x9d" +"\x9a\xa1\xa0\xdd\x1d\x0b\x15\xa5\xa3\x8f\x90\x9b\x1a\x9d\x7e\x98\x78\x80\x81\x87\x80\x7e\x1e\xfb\x12\x22\x05\x6f\x73\x88\x86\x7c" +"\x1a\x79\x99\x7c\x9d\x95\x97\x90\x97\x98\x1e\xf7\xb6\xf3\x15\xa6\xa3\x8e\x90\x9b\x1a\x9d\x7e\x98\x79\x7f\x82\x87\x80\x7d\x1e\xfb" +"\x12\x22\x05\x70\x73\x87\x86\x7c\x1a\x79\x99\x7c\x9d\x95\x97\x91\x96\x98\x1e\x0e\xf8\xd6\x15\xfb\x4a\xfb\x42\xfb\x45\xfb\x4d\xfb" +"\x17\xea\x29\xf7\x14\xf7\x4e\xf7\x41\xf7\x43\xf7\x50\xf7\x18\x2b\xeb\xfb\x16\x1f\x75\x24\x15\xdb\xc4\x4e\x36\xfb\x0b\xfb\x03\xfb" +"\x0c\xfb\x02\x39\x52\xc7\xe1\xf7\x0d\xf7\x02\xf7\x0a\xf7\x05\x1f\x0b\x1a\x61\xa9\x72\xbe\xb0\xba\x97\x9c\xa7\x1e\x9a\x95\x96\x9c" +"\x9a\x1a\x9f\x7d\x98\x76\x83\x85\x89\x86\x80\x1e\x7e\x6c\x80\x87\x7f\x1b\x80\x86\x8e\x92\x0b\x15\xfb\x13\x6a\x05\x6c\x83\x80\x80" +"\x76\x1a\x7b\x95\x80\x99\x91\x93\x8c\x8e\x93\x1e\xb2\x97\x5d\xfb\x79\x05\x5d\x06\x6b\x78\x7d\x73\x78\x97\x83\xa5\x1f\xf7\x37\x06" +"\xa6\x9d\x9b\xa3\x9d\x82\x92\x74\x1f\x59\x06\x0b\xf7\x55\x1d\xe0\xef\xf5\xdb\xd5\x9d\x7f\x97\x7a\x74\x7f\x80\x6d\x7f\x1f\x61\x7b" +"\x5c\x6e\x56\x1b\x72\x75\x92\x9a\x78\x1f\x7b\x97\x88\x92\x88\xa8\x08\xac\x88\x84\x94\x75\x1b\x0e\xf7\x10\x0a\x95\x1b\xa3\xc8\x0a" +"\x26\x0a\x56\x64\x97\xa2\x75\x1e\xa9\x88\x7c\x99\x6f\x1b\x66\x75\x75\x5f\x81\x1f\x84\x6b\x05\x88\x7b\x8a\x87\x83\x1a\x73\x9d\x7b" +"\xa6\x99\x0b\x1b\xfb\xa8\x6b\x0a\xf7\x06\x06\x4f\xfb\x9f\x0b\x06\xa8\x99\xd8\x0a\x0b\x8f\x8e\x8e\x8c\x8d\x08\x93\x94\x8e\x92\x96" +"\x1a\x9d\x7d\x98\x78\x7a\x0b\x7d\x1a\x7b\x9a\x7d\x9d\x9a\x9b\x94\x9b\x99\x1e\x0e\xf7\x00\x0a\xf7\x0d\x06\xa9\x98\x3d\x1d\x9b\x1a" +"\x0b\xeb\x0a\xb5\x1e\xf7\x05\x06\x0b\x9d\x79\xa5\xae\xaa\xa8\xac\xa4\x79\x9c\x70\x1f\xf7\x61\x16\x69\x6c\x6e\x6b\x72\x0b\x90\x1e" +"\x8e\x82\x85\x8c\x76\x1b\x0b\xf7\x95\x15\xad\xfb\x95\x05\xf7\x08\x06\xf7\x37\xf8\x62\x05\xae\x91\xa3\xa3\x0b\x06\x6a\x83\x99\x1d" +"\x0b\x06\x6b\x81\x37\x0a\x0b\x06\x6b\x81\x2a\x1d\x7b\x1a\x6d\x9c\x7f\x0b\x9d\x1a\x9d\x7c\x98\x77\x80\x80\x87\x80\x7d\x1e\xfb\x2b" +"\x21\x05\x0b\x86\x84\x4d\x1d\x26\x0a\x1a\x75\x9e\x7a\xa5\xad\xa3\xa2\xb6\x94\x1e\x0b\xf1\x0a\x89\x81\x89\x7f\x85\x1a\x75\x9e\x79" +"\xa3\x0b\x7d\xf7\x15\x1d\x0b\x4a\x0a\xb1\xa8\x75\x9f\x0b\x90\x1e\x8e\x82\x84\x8c\x77\x1b\x0b\xf7\x72\x1d\x7b\x1e\x0e\x9a\x1d\x81" +"\x7d\x87\x82\x0b\x9f\x99\xaf\x1a\xb1\x74\x99\x4b\x1e\x0b\x63\x93\x5b\x1b\xfb\x1d\x22\x46\x31\x4c\xbf\x6c\x0b\x93\x1a\xa2\x78\x9c" +"\x72\x0b\xf8\x06\x15\xf7\x3c\x1d\x0b\x1a\x58\xb2\x6a\xc8\xdc\xcb\xc5\xd4\xa3\x82\x0b\x81\x3f\x1d\x0b\x06\xb0\xab\xa8\xac\xa7\x76" +"\x99\x62\x1f\x0b\xab\xa2\xb0\xa8\x77\x99\x62\x1f\x82\x06\x0b\x1a\xa1\x7a\x9a\x73\x7a\x81\x85\x7a\x0b\x87\x7a\x89\x7a\x7a\x1a\x0b" +"\x40\x4d\x3a\x79\x1f\x83\x69\x05\x0b\x06\x6c\x7f\x88\x7f\x7c\x1f\x7c\x0b\x8b\x8c\x94\x1a\xa2\x78\x9c\x72\x0b\x15\x40\xfb\xe4\x81" +"\x5b\x5f\x6b\x0b\x1a\x72\x9c\x7c\xa9\xb5\xa2\xa7\x0b\x1f\x7b\x7f\x82\x7a\x7a\x1a\x6d\x0b\x95\x7b\x9a\x86\x1e\x0b\x90\x1e\x8f\x81" +"\x87\x8b\x0b\x06\x92\xac\x05\xa2\x90\xa0\x0b\x73\x7b\x99\xa1\xac\xa5\xa4\x0b\xf7\x85\x9d\x0a\x98\x8e\x96\x99\xd3\x1d\x99\x8f\x96" +"\x99\x1f\x9a\x97\x95\xe8\x0a\x0b\xf8\x16\xf7\x1e\x1d\x83\x84\xb7\x1d\xf7\x03\x1d\xb5\x05\xa0\x98\xf7\x08\x1d\x7b\x1a\x7a\x87\x0a" +"\x8f\x89\x90\x8a\x95\x8a\xf0\x27\x18\xfb\x3c\xfb\x0b\x74\x89\x83\x89\x7f\x81\x19\x7b\x7e\x82\x7a\xf7\x36\x1d\x98\x94\x9d\x9d\x1a" +"\x9c\x85\x94\x78\x95\xf7\x2d\x0a\x71\x21\x0a\xf7\x04\x06\xa8\x99\x28\x1d\x9b\x1a\x9c\x81\x9b\x7c\x91\x1e\x87\x8c\x85\x8c\x7f\x8c" +"\x08\x0e\xf7\x91\xf7\x32\x15\x9c\x96\xd9\x39\x05\x7b\x7c\x84\x7e\x7a\x21\x0a\xf7\x0a\xf7\x22\x1d\x82\x85\x8b\x76\xd4\x0a\x9c\xd2" +"\x0a\xfb\x04\x82\x0a\x7e\x82\x7a\x7a\x1a\x81\x8d\x86\x90\x82\x1e\x3b\x56\xd1\xf7\xd1\x05\xfb\x0d\x06\x73\x80\x8a\x85\x80\x1f\x76" +"\x80\x7c\x75\x76\xf4\x0a\x33\xfc\x20\x05\x7e\x06\x6b\x80\x88\x7f\x7d\x1f\x7b\x7e\x31\x1d\xb5\x1e\xf7\x0c\x06\x0b\xf7\x46\xf7\x52" +"\x1d\x52\xfb\x90\x05\x6c\x6c\x0a\x79\x7a\x21\x0a\xf7\x15\x20\x0a\x9c\x1a\x9c\x81\x9a\x7c\x91\x1e\x86\x8d\x84\x8c\x7e\x8c\xdb\xf7" +"\xf9\x18\xb2\x90\xa4\xa3\xab\x41\x0a\xfb\x03\x06\xfb\x57\xfb\xaa\x41\xf7\xaa\x05\xfb\x03\x25\x1d\x72\x98\x7e\xa7\x88\x1e\x3c\xfb" +"\xfa\x05\x5f\x8a\x6d\x72\x67\x21\x0a\xf7\x15\xb3\x0a\x8c\x77\x1b\x6d\x06\x0e\xf8\xcc\xf7\xef\x15\x9b\x1d\x5f\x5e\x65\x7b\x6b\x67" +"\x1e\x3a\x41\x7d\x7f\x80\x82\x88\xf7\x5c\x1d\x05\xbf\x8d\x9e\x9a\xb0\x1a\xb1\x77\x97\x4d\x8b\x1d\xfb\x6e\x05\x50\x74\x7c\x66\x65" +"\xa2\x7d\xca\x1f\xf7\x26\x1d\x86\xa2\x62\xb2\x44\x18\x98\x73\x94\x7d\x91\x86\x08\x82\x94\x9e\x87\xb4\xa4\x1d\x5f\x1f\x7d\x06\x8a" +"\x06\x87\x06\x60\xda\x81\x9d\x7c\x9b\x79\x95\x19\xd9\xd0\xdd\x0a\x0b\xc6\x15\x69\xb3\xb7\x7b\xf7\x14\x0a\x3c\xd0\xfb\x11\x4f\x5e" +"\x7d\x67\x54\x1f\x94\xb1\x05\xfb\x0d\xae\x0a\x97\x06\x2e\xfc\x33\x9f\x0a\x15\x28\x37\x1d\x7a\x87\x0a\x90\x89\x92\x8a\x98\x8a\x5a" +"\xfb\x6f\x18\x89\xf7\x63\x1d\x7b\x1a\x6c\x9c\x7f\xb6\x1e\xf7\x04\x06\xa8\x99\x29\x1d\x9c\x81\x9c\x41\x1d\x77\x1b\x8a\x06\xb0\xf7" +"\x3c\x05\xba\xc3\xae\x9b\xb7\x1b\xbc\xa4\x7c\x6f\x85\x8a\x84\x89\x83\x1f\x66\xfb\x3b\x05\x60\x6d\x72\x68\x6c\x9d\x7f\xb6\x1f\xe4" +"\xd3\x0a\x7d\x1b\xb1\xf7\x3d\x05\x8e\x9a\x8d\x9a\x9a\x1a\xd3\x4e\xbb\x31\x55\x67\x7e\x64\x55\x1e\x0b\xf8\x24\xf7\x2b\x15\x94\x5c" +"\x05\x79\x6c\x0a\x79\x7a\x1a\x6d\x9d\x7f\xb5\x1e\xf7\x1f\x6b\x1d\x9b\x97\x94\x9d\x9b\x1a\xa7\x79\x9a\x6b\x1e\x82\x06\x2b\xf8\x60" +"\x05\xfb\x70\x6b\x0a\xc3\x06\xfb\x7b\xfb\xf9\x6b\x8a\x81\x89\x7d\x7f\x19\x7b\x7e\x31\x1d\xb6\x1e\xf7\x18\xdc\x0a\x82\x85\x8c\x76" +"\x1b\x7c\x06\xa9\xba\x05\xf7\x67\xf2\x15\xfb\x25\x06\xf7\x03\xf7\x3d\x05\x0e\xf7\xb5\xf7\xd6\x15\xf7\x46\x81\x1d\x20\x1d\xdc\x1d" +"\x6b\x99\x6f\xa4\x7b\x1e\x77\xa9\xb7\x80\xb8\x1b\xd2\xeb\xa1\xa8\xc3\x1f\xa4\x98\x97\x9c\xa1\x78\x1d\x0b\xf9\x0f\xe1\x1d\x49\x5d" +"\x45\xe4\x0a\x97\x8e\x96\x99\xe0\x1d\x0b\x15\xf7\x3f\xfc\x03\x05\xf4\x06\xf1\xf8\x61\x05\xc4\x1d\x0b\xf8\x2d\xc1\x1d\x0e\xf7\x29" +"\x0a\x79\x7e\x85\x7b\x7a\x1e\xa9\x4c\x73\x91\x52\x1b\xfb\x30\xfb\x25\xfb\x0a\xfb\x2e\x69\x1f\x0b\xf7\x56\xf7\x53\x15\xea\x06\xf5" +"\xca\xa3\xc9\xc4\x9b\x0a\xca\x7f\xb5\x71\xac\x1f\xa8\x74\x6b\x9c\x6e\x1b\x6c\x73\x73\x6e\x7a\x90\x84\xa4\x7b\x1f\xab\x77\x92\x7d" +"\x58\x1a\x52\x84\x63\x7a\x6c\x1e\x70\x7c\x79\x7c\x79\x1b\x7a\x82\x9a\xa5\x9b\x8e\x9e\x8f\xa0\x1f\x91\xa3\x8c\x92\x97\x1a\xa6\x7c" +"\x99\x6f\x68\x75\x77\x5d\x7e\x1e\x38\x73\x75\x6b\x6b\x1b\x7b\x83\x98\xa7\xbe\xa1\xd4\xa5\xae\x1f\x98\x9c\x9b\x97\xa7\x98\x08\xad" +"\x9a\x99\x9c\xa3\x1a\xa5\x72\xa3\x6f\x61\x51\x68\x5a\x66\x1e\x61\x53\x6e\x30\x3f\x1a\x0b\x1f\xb1\xb4\xa1\xbd\xbb\x1a\xe6\x44\xc4" +"\xfb\x06\x1e\xfb\x7d\x06\x6b\xe7\x1d\x90\x1d\x6d\x9d\x7f\xb6\x1e\xf7\x69\x06\xa7\x9a\x8f\x96\x99\xf7\x45\x1d\x20\x1d\x2e\x06\xda" +"\xf7\xfa\x15\xf7\x07\x06\xc4\xac\x74\x63\x4e\x56\x60\x3f\x1f\xfb\x05\x06\x0e\x15\x76\x79\x78\x76\x7d\x94\x82\x9c\x8a\x1f\xa2\x8a" +"\x92\x8a\x95\x86\x08\x9d\x82\x97\x7a\x7a\x1a\x65\x6a\x76\x4f\x69\x7d\x8e\x94\x7f\x1e\x92\x84\x88\x8c\x84\x1b\x78\x79\x78\x76\x70" +"\xb5\x79\xcb\xc4\xb1\x98\xa8\xaa\x1f\xa5\xa4\x9c\xaf\xa9\x1a\xa7\x7c\xa5\x72\x9b\x1e\xb5\xa6\x9e\xaa\xb2\x1a\xbf\x66\xac\x50\x48" +"\x4b\x66\x65\x7d\x95\x80\x98\x94\x93\x8e\x92\x91\x1e\x9f\xa0\x9a\x91\xa7\x1b\xaa\x9d\x7f\x75\x73\x6f\x72\x6f\x1f\x0b\xf7\x5c\x15" +"\xcf\xb9\xc0\x7b\xb9\x28\x99\xfb\x17\x19\xf7\x05\x06\xa8\x9a\x8f\x96\x98\x48\x0a\x82\x85\x8b\x77\x1b\x6e\x06\x76\xf5\x5f\xdb\x58" +"\xa9\xf7\x5e\xf7\x22\x18\xb9\xaa\xa4\xaf\x9d\x81\x9a\x7c\x90\x1f\x8e\x82\x85\x8c\x77\x1b\x26\x6c\x0a\x78\x79\x1a\x7b\x90\x82\x99" +"\x84\x1e\xfb\x58\xfb\x1c\xa7\xf7\x15\x05\xab\x06\xa9\x0b\x7e\x1d\xcb\xc5\x6c\x6a\x89\x1f\x8a\x76\x05\x74\x8a\x9d\x7a\xa5\x1b\xaf" +"\xa1\xa1\xb7\x95\x1f\x9d\xdb\x05\x98\x0a\x0b\x05\x7f\x6d\x0a\xb6\x1e\xf7\x42\x06\xaa\x97\x50\x1d\x9b\x1a\x9d\x81\x9b\x7c\x8f\x1e" +"\x8e\x83\x82\x8c\x79\x1b\x56\x06\xf7\x85\xf8\x3f\x15\xb3\xaa\x82\x79\x9f\x1f\x9c\x7c\x97\x71\x76\x1a\x65\x70\x60\x63\x72\x1e\x79" +"\x6d\x69\x82\x62\x1b\x40\x5d\xae\xc2\xb1\xa6\xb5\xb3\xa4\x1f\x9e\xa9\xac\x93\xb6\x1b\x0e\x05\xa5\x97\x8d\x8f\x95\x1f\x9f\x94\x9c" +"\xa4\xa0\x1a\xa7\x76\x99\x63\x1e\xfb\x0c\xf7\x13\x0a\x3c\xfb\xf8\x05\xfb\x5c\x06\xda\xf7\xf9\x05\xa6\x97\x8d\x8f\x95\x1f\xa0\x94" +"\x9c\xa3\xa0\x1a\xa8\x77\x99\x62\x1e\xfb\x0c\x06\x58\x6c\x74\x65\x6c\x99\x81\xbb\x8a\x1f\x42\xfb\xf9\x2d\x0a\x0b\x8e\x9b\x8c\x91" +"\x94\x7f\x0a\x7e\x1e\x9a\x6a\x78\x0a\xf7\x10\x63\x1d\x4b\x61\x0a\x93\x8e\x93\x98\x1e\x0b\xf7\x20\xf7\xd5\x15\x5c\xfb\x6d\x44\x0a" +"\xbb\xf7\x6d\x05\xf7\x78\x06\x79\x38\x05\x87\x7c\x8a\x83\xf7\x26\x0a\x95\x1e\xb5\xf7\x51\x05\xfc\x86\x06\x67\x6b\x6e\x6a\x70\xa0" +"\x7c\xb3\x1f\x0b\x06\x73\x6b\x76\x61\x7c\x1a\x83\x92\x84\x94\x92\x8f\x8d\x92\x91\x1e\xad\xb2\xa3\x9f\xbc\xa8\x99\x94\x18\x91\x8e" +"\x8f\x8d\x8c\x8c\x08\x99\x93\x8e\x8e\x93\x1a\x92\x87\x8f\x78\x95\x1e\x4f\xad\x6e\xa2\x6c\xae\x08\x98\x80\x87\x8e\x84\x1b\x82\x83" +"\x85\x83\x7c\x9b\x6b\xa8\x5f\x1f\x0b\xf7\xd6\x84\x0a\x54\x8c\x19\xfb\x02\x6d\x0a\xb7\x1e\xf7\x05\x06\xf7\x04\xf0\xd9\xf1\xa1\x1f" +"\xed\xf8\x4d\x05\xfb\xc7\x06\x6b\x82\x89\x7e\x7b\x86\x0a\x9d\x7f\xb6\x1e\x0b\xf7\x6e\xf7\x11\x15\x86\x76\x89\x7b\x7e\x1a\x55\xb5" +"\x67\xcc\xc6\xb5\xa8\xb4\xa4\x79\x9e\x72\x84\x82\xf7\x3b\x1d\x8b\x8d\x95\x1f\xc2\xf7\x93\x05\x8f\x9c\x8c\x91\x91\x1a\xa3\x78\x9c" +"\x70\x68\x73\x73\x5f\x81\x1e\x0b\x05\xb0\x8d\xa7\xa5\xac\x1a\xa6\x75\x9a\x63\x1e\x27\x06\x59\x6b\x72\x65\x71\xa1\x7c\xb2\x1f\x95" +"\x06\x7f\x54\x05\xfb\x70\x06\x97\xc2\x05\x93\x06\xbd\xab\xa3\xb0\xa8\x77\x99\x62\x1f\x27\x06\x59\x6b\x72\x64\x74\x9a\x7e\xa8\x88" +"\x1f\x5c\xfb\x6f\x05\x73\x7d\x0b\x9a\x1b\x93\x92\x92\x94\x92\x88\x8f\x84\x91\x1f\x63\xac\x78\xa1\x6d\xbc\x88\x8f\x88\x90\x88\x90" +"\x08\x88\x90\x87\x91\x8b\x1a\xf7\x16\x0a\x6a\x52\x72\x6b\x67\x6f\x08\x7e\x80\x88\x86\x85\x1a\x81\x92\x84\x93\x99\x0b\xf8\xe2\x89" +"\x1d\xfb\x03\xe0\x46\xf7\x1f\xdc\xf7\x07\x9f\xa1\xb7\x1e\xa2\x96\x98\x9e\xa2\x1a\xa2\xf7\x38\x1d\x2a\x0b\xf8\xc5\xac\x0a\xf8\xf8" +"\xf7\x0c\x1d\xfc\xa1\x37\x1d\x6c\x9c\x7f\xb7\x1e\x0e\x8a\x98\x8a\xfb\x31\xfb\x5d\x18\x4c\xf7\x5d\xf7\x69\x1d\x7c\x90\x1e\x8e\x82" +"\x85\xf7\x42\x1d\x7b\x1a\x72\x97\x7f\xa7\x86\x1e\x0b\xf7\x2a\x0a\xcc\xa8\xbd\xb7\x1f\xa1\xa4\x9a\xa9\xf7\x30\x1d\x55\x6a\xa6\xb8" +"\x1f\xa7\x8c\x82\x96\x77\x1b\x0e\x8e\x97\x99\x1f\x9a\x68\x1d\x82\x85\x8c\x77\x1b\x2f\x37\x1d\x71\x98\x7e\xab\x88\x1e\x98\xfb\xd6" +"\x05\xef\x06\x0b\x06\x6b\x81\xd6\x0a\x0b\x15\xe4\x31\x05\x81\x36\x0a\xa2\x96\x8a\x8c\x7a\x9c\x1f\xfb\x13\xf7\x11\xfb\x4a\xfb\x10" +"\x05\x6e\x77\x6f\x0a\xf8\xa9\xf7\xdc\x15\xb0\x9e\x97\x9a\xa5\x1a\x9f\x79\x9d\x77\x7d\x83\x88\x7e\x72\x1e\xfc\x20\xfb\x69\x05\x66" +"\x78\x7f\x7c\x72\x1a\x76\x9d\x79\xa0\x96\x99\x90\x96\xa0\x1e\x0e\x1e\x55\xf7\x12\x15\xa3\x9b\x7d\x75\x6b\x71\x71\x69\x8a\x0a\xad" +"\x1f\x69\xf7\x24\x1d\x0b\x64\x72\xb5\x0a\x0b\x06\xa8\x99\x8f\x96\x99\x48\x0a\x83\x84\x0b\x7f\x83\x75\x7c\x1e\x9e\x6e\x60\x96\x59" +"\x1b\xfb\x24\xfb\x0a\x0b\x6b\x55\x1a\x5d\xc6\x0a\x81\x88\x8e\x93\xad\x0b\xe2\x0a\xb7\x1e\xd4\x2e\x0a\xfb\x0a\x26\x1d\x0b\x15\x98" +"\x7d\x85\xf7\x28\x0a\x96\x81\xf7\x34\x1d\x94\x7f\x97\x1f\x0e\x15\x40\x46\xbd\x0a\x0b\xe3\x0a\x0e\xf7\x29\x1d\x95\x96\x9d\x9e\x1a" +"\x9d\x82\x9c\x7c\x95\x1e\x93\x7f\x82\x8d\x6e\x1b\x0b\xbf\x0a\x0e\x16\xf7\x0e\x06\xa9\x98\x28\x1d\x9b\x1a\x9d\x81\x9b\x0b\x4a\x45" +"\x58\xb2\x65\xc1\xd5\xd1\xcc\xd1\xbf\x64\xb0\x55\x1f\x7e\x53\x15\xa6\x9f\x78\x72\x68\x68\x6a\x66\x70\x77\x9e\xa5\xad\xae\xac\xb0" +"\x1f\x0b\xa6\x7b\x71\x84\x8a\x81\x88\x7f\x1f\x67\xfb\x34\x05\x89\x06\x6b\x80\x89\x7f\x7c\x1f\x7b\x7e\x31\x1d\xb6\x1e\xf7\x04\x06" +"\x0b\x15\x8c\x9b\x05\x9f\x81\x96\x79\x79\x80\xf7\x18\x0a\x85\x85\x1a\x78\x95\x80\x9d\x9d\x96\x97\xa5\x91\x1e\x0b\x90\x8f\x87\x82" +"\x91\x1e\x77\x99\x95\x85\x9f\x1b\xa5\x9d\x9c\xa3\xa9\x72\xa0\x68\x73\x72\x82\x7c\x77\x1f\x66\x6e\x7d\x60\x32\x1a\x0e\x15\x63\x73" +"\x0a\x6c\x1f\xf7\x64\x16\x63\x4a\x0a\xb1\x0b\x9f\x9e\x9f\x1b\x95\x96\x89\x85\x9a\x1f\x86\x9a\x8f\x8a\x95\x1b\xad\xaa\xa9\xac\xab" +"\x5e\xa1\x4a\x3b\x81\x0a\x0b\xf7\x1c\x0a\x7d\x89\x87\x83\x1a\x7e\x99\x7f\x9a\x99\xf7\x2c\x0a\x0e\x15\x98\x7d\x86\x8e\x7f\x1b\x70" +"\xd5\x0a\x94\x0b\x33\x06\x4c\x73\x7d\x67\x68\xa0\x7a\xb8\x8a\x1f\x72\xfb\x04\x05\x86\x0b\xaa\x6f\xbd\xad\xbb\x98\x9b\xa5\x1e\x9a" +"\x95\x95\x9b\x9a\x1a\x9f\x7d\x99\x77\x83\x83\x89\x87\x82\x1e\x7c\x67\x87\x8a\x7f\x1b\x0b\x15\x62\x62\x1d\x6d\x1f\xf7\x63\x16\xf7" +"\x56\x1d\x0b\xa1\x1d\xfb\x4b\xf7\x73\x1d\x99\x7e\x9d\x95\x0b\x06\x6b\x7c\x0a\x7a\x0b\x1b\x79\x79\x83\x7d\x80\x1f\x83\x80\x88\x80" +"\x71\x1a\xfb\x53\x07\x74\x8d\x80\x91\x81\x1e\x7b\x96\x9e\x81\x9f\x1b\x0b\xf7\xcb\xf8\xf1\xf7\x43\x1d\xa0\xa7\xa5\x1d\xb5\xf7\x50" +"\x05\x8e\x97\x8c\x95\x97\x69\x1d\x0b\x81\x1f\x77\x82\x7a\x73\x75\x1a\x70\xa0\x7c\xb3\x1e\xf7\x0d\x06\xbc\x7e\x0a\x0b\x1a\x97\x86" +"\x97\x81\x92\x1e\x93\x82\x82\x8d\x6f\x1b\x27\x39\x1d\x7a\x1a\x0b\xa6\x1d\x94\x91\x0b\x15\xf7\x69\xf7\x76\x05\xa1\x95\x8d\x90\x96" +"\x1f\xa0\x96\x9a\xa1\xa1\x52\x1d\x0b\x77\x1a\x6d\xa6\x71\xab\xa0\x95\x91\xac\xa6\x1e\xa8\xa4\x94\x93\x92\x1b\x90\x99\x82\x7c\x9d" +"\x1f\x0b\xa8\x1d\x76\x1b\x0b\x20\x0a\x9b\x1a\x9d\x81\x9a\x7c\x91\x1e\x8d\x86\x84\x8c\x0b\x1b\x6b\x06\xfb\x11\xf7\x16\xf7\x1a\xe4" +"\x05\xa5\x06\xaa\x96\x8d\x97\x9a\x1f\x9b\x98\x94\x9c\x0b\xf7\x1b\x1d\xa3\x0b\x88\x7f\x30\x1d\x88\x94\x91\x8a\x9f\x1b\x0b\x8e\x97" +"\x9a\xa0\x1d\x8e\x82\x20\x1d\x0b\x8f\x96\x99\x91\x1d\x0b\x93\x1a\xa2\x78\x9c\x72\x67\x74\x75\x5f\x82\x1e\x0b\x1f\xf7\x64\xf7\x2d" +"\x1d\x0b\x05\x79\x06\x59\x6b\x73\x66\x6c\x9c\x7f\xb7\x1f\xf7\x18\x06\xbe\xab\xa3\xaf\xa5\x0b\x06\xa9\x98\x8f\x96\x99\x48\x0a\x0b" +"\x94\x93\x90\x8e\x94\x91\x19\x6a\x8e\x99\x7c\xa9\x1b\xa6\x9b\x9a\xae\x93\x1f\x0b\x99\x8f\x96\x99\xf7\x02\x0a\x96\x81\x94\x1e\x92" +"\x82\x0b\xf5\x0a\x20\x1d\x0b\x1f\x7b\x7f\x82\x79\x7a\x1a\x7f\x90\x80\x95\x83\x1e\x83\x94\x93\x89\xa8\x1b\x0b\x81\x89\x81\x82\x1a" +"\x70\x9c\x7e\xac\xb4\x98\x0b\xf7\x11\x0a\x6d\x9d\x7f\x0b\x15\x65\x64\x66\x66\x70\xa3\x73\xa7\xb4\xb0\xae\xb2\xa8\x75\xa1\x6c\x1f" +"\x0b\x1b\x4f\x5f\xae\xba\x8f\x8c\x93\xf7\x27\x0a\x0b\x9d\x7f\xb6\x1e\xf7\x19\x06\xbc\xab\xa2\xaf\xaa\x78\x99\x61\x1f\x7c\x06\x0b" +"\x05\x87\x79\x8b\x88\xf7\x5a\x1d\x0b\xf7\x54\x1d\xc8\x44\x70\x99\x5e\x1b\x5f\x69\x79\x0b\x9d\x3c\x1d\x83\x84\x8b\x77\x1b\x6d\x06" +"\x0b\x6b\x81\x3f\x1d\x79\x7b\x21\x0a\x0b\x06\x58\x6c\x40\x1d\x0b\xf7\x0a\x0a\x6e\x9d\x7e\x0b\xf7\x70\x15\xf7\x2a\xf1\xa2\x8e\x92" +"\x8d\x97\x95\x19\x9b\x97\x94\x0b\x8a\x84\x80\xf7\x66\x1d\x80\x1e\x0b\x3e\x1d\x82\x20\x1d\x2f\x06\x6c\x0b\xf9\x04\x15\xf7\x0d\x0a" +"\x0b\xf8\xe4\xf7\x70\x1d\x94\x84\x9a\x1b\x0b\xf2\x15\xf8\x0f\xf7\xff\xa1\xed\x05\xfc\x34\x06\x66\xfb\x39\x05\x0b\x82\xc5\x1b\xf7" +"\x26\xf7\x05\xd2\xe6\xb0\x79\xaa\x6a\x9f\x1f\x0b\x06\x6b\x81\x89\x7e\x7c\x1f\x7c\x7f\x81\x79\x7b\x1a\x6d\x9d\x0b\x1a\x7a\x96\x7b" +"\x99\xf7\x6e\x1d\x0b\xf7\x4c\x1d\x82\x0b\x9d\x9c\x1a\x97\xf7\x19\x0a\x0b\x82\x7a\x7b\x1a\x6c\x9c\x7f\xb6\x1e\x0b\x86\x95\x1b\xa5" +"\xa3\xa1\xa2\x95\x86\x0b\x1f\x9b\x97\x94\x9d\x9c\x1a\x97\x86\x0b\x1f\x9a\x97\x94\x9d\x9b\x1a\x0b\xf7\x57\x1d\xb6\x1e\x0b\x89\xf7" +"\x0a\x0a\x0b\x7d\x98\x77\x7f\x83\x88\x7e\x79\x1e\xfb\x32\x21\x05\x0b\x41\x49\x4d\x46\x74\x92\x77\x99\x7a\x1e\x66\x71\x75\x0b\x05" +"\x89\x81\x89\x7f\x84\x1a\x75\x9e\x7a\xa4\x9c\x9c\x0b\x06\x33\x66\x84\x71\x64\x1f\x47\x5e\x68\x40\x27\x1a\x0b\xf7\x63\x1d\x7a\x1a" +"\x0b\x15\x70\x83\x8a\x84\x80\x1f\x7a\x82\x80\x78\x78\x1a\x0b\x1a\x98\xf7\x19\x0a\x0b\x69\x6c\x6e\x6b\x72\x9d\x7a\xa6\xad\xaa\xa8" +"\xac\xa3\x0b\x7c\x1f\x7c\x7e\x82\x7a\x7a\x1a\x6d\x9c\x7f\xb6\x1e\x0b\x83\x7b\x7d\x1e\x23\xfb\x0e\x05\x0b\x15\xe4\x31\x05\x81\x95" +"\x93\x87\x0b\x7c\x1f\x7b\x7f\x82\x7a\x7a\x1a\x0b\x06\x55\x6e\x76\x65\x6d\xa0\x7c\xb6\x1f\x94\x06\x0b\x06\x59\x6b\x74\x66\x6e\x9f" +"\x7c\xb4\x1f\x94\x06\x0b\xc4\x1b\xf7\x35\xf7\x1b\xf7\x07\xf7\x1c\xf7\x00\x0b\x15\x98\x7e\x85\x8e\x7f\x1b\x70\x74\x75\x73\x82\x0b" +"\x98\x84\x88\x8e\x82\x1b\x84\x87\x87\x79\x81\x1f\x0b\x9c\x1f\xfb\x12\xf7\x11\xfb\x4b\xfb\x11\x05\x6e\x0b\x7e\x73\x85\x1e\x6a\xfb" +"\x2b\x05\x8a\x87\x8a\x0b\x86\x96\x81\x93\x1e\x93\x82\x82\x8d\x6f\x1b\x0b\x1a\x7b\x97\x81\x9e\xa2\x9c\x99\xa2\x90\x1e\x0b\x9d\x93" +"\x98\x98\x1e\x95\x95\x8f\x95\x91\xa5\x0b\xf7\x88\xf7\x1c\x15\xfb\x0d\xfb\x80\x05\x84\x0b\x78\x9c\x70\x69\x73\x73\x5f\x81\x1e\x0e" +"\x06\x6b\x81\x89\x7e\x7c\x1f\x0b\x8e\x97\x9a\x1f\x9a\x97\x95\x0b\x95\x80\x9d\x9d\x97\x98\xa4\x0b\x1b\x68\x6f\x98\x9b\x94\x93\x0b" +"\x77\x6e\x72\x99\x81\xae\x1f\x0b\x05\x8d\x96\x8d\x96\x92\x1a\xa1\x78\x9c\x0b\x06\x5f\x61\x64\x62\x6b\xa3\x75\xad\x1f\x0b\x06\xbe" +"\xaa\xa2\xb1\xaa\x7a\x97\x5f\x1f\x0b\x85\x1a\x75\x9e\x7a\xa5\xad\xa3\xa2\xb6\x0b\x8c\x92\x1f\xc8\xf7\xa2\x05\xaa\x06\xaa\x0b\x8e" +"\x7f\x1b\x71\x74\x75\x73\x82\x91\x80\x0b\x8f\x9d\x8b\x8c\x94\x1a\xa2\x79\x9c\x71\x0b\x15\x6d\x78\x74\x68\x42\xcb\x56\xe1\xcc\x0b" +"\x97\x80\x9c\x96\x95\x90\x96\x96\x1e\xaf\x0b\x99\x93\x9c\x98\x1e\xf7\x5f\xf7\x9a\x05\x0b\x1e\xd8\xc0\xc2\x57\x05\x6e\x82\x78\x73" +"\x0b\xa4\x73\xac\x1f\x94\x06\x94\x06\xb6\xb6\x0b", 59212 +}; diff --git a/dviware/dvisvgm/src/fonts/NimbusMonoPS-Italic.cff.cpp b/dviware/dvisvgm/src/fonts/NimbusMonoPS-Italic.cff.cpp new file mode 100644 index 0000000000..92a2e9168b --- /dev/null +++ b/dviware/dvisvgm/src/fonts/NimbusMonoPS-Italic.cff.cpp @@ -0,0 +1,1644 @@ +#include "Base14Fonts.hpp" + +extern const MemoryFontData NimbusMonoPS_Italic_cff = { +"\x01\x00\x04\x02\x00\x01\x01\x01\x14\x4e\x69\x6d\x62\x75\x73\x4d\x6f\x6e\x6f\x50\x53\x2d\x49\x74\x61\x6c\x69\x63\x00\x01\x01\x01" +"\x37\xf9\xbc\x00\xf9\xbd\x01\xf9\xbe\x0c\x00\xf9\xbf\x02\xf9\xc0\x03\xf8\x18\x04\x8c\x0c\x01\x7f\x0c\x02\x30\x0c\x03\xbe\x0c\x04" +"\x4d\xfb\xd1\xf9\xac\xfa\x2c\x05\x1c\x31\x0a\x0f\x1c\x31\x1d\x11\xad\x1d\x00\x00\xb8\x40\x12\x01\xa6\x02\x00\x01\x00\x08\x00\x0e" +"\x00\x13\x00\x1d\x00\x24\x00\x2b\x00\x35\x00\x39\x00\x3f\x00\x45\x00\x50\x00\x5a\x00\x5d\x00\x63\x00\x69\x00\x6e\x00\x74\x00\x7a" +"\x00\x84\x00\x8b\x00\x8e\x00\x95\x00\x9c\x00\xa8\x00\xab\x00\xb3\x00\xb7\x00\xbc\x00\xc2\x00\xcd\x00\xd9\x00\xe3\x00\xe7\x00\xf2" +"\x00\xf4\x00\xfa\x01\x04\x01\x0b\x01\x12\x01\x16\x01\x22\x01\x2b\x01\x31\x01\x3c\x01\x41\x01\x4d\x01\x53\x01\x59\x01\x5f\x01\x6b" +"\x01\x6f\x01\x71\x01\x77\x01\x7d\x01\x89\x01\x8b\x01\x91\x01\x9e\x01\xa5\x01\xaf\x01\xb6\x01\xc2\x01\xcd\x01\xd0\x01\xd2\x01\xd5" +"\x01\xdb\x01\xe1\x01\xed\x01\xf0\x01\xf6\x01\xfe\x02\x09\x02\x15\x02\x1a\x02\x1d\x02\x21\x02\x27\x02\x33\x02\x38\x02\x3e\x02\x4b" +"\x02\x52\x02\x59\x02\x60\x02\x6f\x02\x7b\x02\x80\x02\x86\x02\x8c\x02\x97\x02\xa0\x02\xa6\x02\xa8\x02\xb3\x02\xb9\x02\xbf\x02\xc9" +"\x02\xcd\x02\xd3\x02\xda\x02\xe3\x02\xec\x02\xf5\x02\xfe\x03\x07\x03\x10\x03\x19\x03\x22\x03\x2b\x03\x34\x03\x3d\x03\x46\x03\x4f" +"\x03\x58\x03\x61\x03\x6a\x03\x73\x03\x7c\x03\x85\x03\x8e\x03\x97\x03\xa0\x03\xa9\x03\xb2\x03\xbb\x03\xc4\x03\xcd\x03\xd6\x03\xdf" +"\x03\xe8\x03\xf1\x03\xfa\x04\x03\x04\x0c\x04\x15\x04\x1e\x04\x27\x04\x30\x04\x39\x04\x42\x04\x4b\x04\x54\x04\x5d\x04\x66\x04\x6f" +"\x04\x78\x04\x81\x04\x8a\x04\x93\x04\x9c\x04\xa5\x04\xae\x04\xb7\x04\xc0\x04\xc9\x04\xd2\x04\xdb\x04\xe4\x04\xed\x04\xf6\x04\xff" +"\x05\x08\x05\x11\x05\x1a\x05\x23\x05\x2c\x05\x35\x05\x3e\x05\x47\x05\x50\x05\x59\x05\x62\x05\x6b\x05\x74\x05\x7d\x05\x86\x05\x8f" +"\x05\x98\x05\xa1\x05\xaa\x05\xb3\x05\xbc\x05\xc5\x05\xce\x05\xd7\x05\xe0\x05\xe9\x05\xf2\x05\xfb\x06\x04\x06\x0d\x06\x16\x06\x1f" +"\x06\x28\x06\x31\x06\x3a\x06\x43\x06\x4c\x06\x55\x06\x5a\x06\x64\x06\x6b\x06\x74\x06\x7e\x06\x85\x06\x90\x06\x9a\x06\xa3\x06\xac" +"\x06\xb5\x06\xbf\x06\xc6\x06\xcf\x06\xdb\x06\xdf\x06\xe5\x06\xeb\x06\xf6\x07\x00\x07\x03\x07\x11\x07\x15\x07\x1b\x07\x21\x07\x26" +"\x07\x2d\x07\x3a\x07\x40\x07\x46\x07\x50\x07\x57\x07\x5e\x07\x61\x07\x68\x07\x6f\x07\x7b\x07\x86\x07\x8f\x07\x92\x07\x9a\x07\xa3" +"\x07\xae\x07\xb4\x07\xb9\x07\xbe\x07\xc4\x07\xcf\x07\xdb\x07\xe5\x07\xf1\x07\xf5\x08\x00\x08\x05\x08\x0a\x08\x10\x08\x12\x08\x19" +"\x08\x21\x08\x29\x08\x33\x08\x3d\x08\x49\x08\x55\x08\x5c\x08\x60\x08\x6c\x08\x7d\x08\x86\x08\x8c\x08\x97\x08\x9c\x08\xa8\x08\xb4" +"\x08\xba\x08\xc0\x08\xc6\x08\xd2\x08\xd6\x08\xdf\x08\xe3\x08\xe8\x08\xec\x08\xf2\x08\xfd\x09\x0b\x09\x11\x09\x1c\x09\x22\x09\x2e" +"\x09\x38\x09\x40\x09\x42\x09\x48\x09\x55\x09\x5c\x09\x61\x09\x6b\x09\x72\x09\x7e\x09\x88\x09\x93\x09\x9e\x09\xa4\x09\xa7\x09\xa9" +"\x09\xb0\x09\xbc\x09\xca\x09\xcd\x09\xda\x09\xe0\x09\xe7\x09\xed\x09\xf9\x0a\x06\x0a\x09\x0a\x0f\x0a\x17\x0a\x22\x0a\x2e\x0a\x34" +"\x0a\x39\x0a\x42\x0a\x47\x0a\x50\x0a\x53\x0a\x56\x0a\x5a\x0a\x60\x0a\x6c\x0a\x71\x0a\x76\x0a\x7c\x0a\x89\x0a\x90\x0a\x9d\x0a\xa4" +"\x0a\xab\x0a\xb2\x0a\xb9\x0a\xc0\x0a\xc7\x0a\xce\x0a\xd5\x0a\xdc\x0a\xe3\x0a\xea\x0a\xf1\x0a\xf8\x0a\xff\x0b\x06\x0b\x0d\x0b\x14" +"\x0b\x1b\x0b\x22\x0b\x29\x0b\x30\x0b\x37\x0b\x3e\x0b\x45\x0b\x4c\x0b\x53\x0b\x5a\x0b\x61\x0b\x68\x0b\x6f\x0b\x76\x0b\x7d\x0b\x84" +"\x0b\x8b\x0b\x92\x0b\x99\x0b\xa0\x0b\xa7\x0b\xae\x0b\xb5\x0b\xbc\x0b\xc3\x0b\xca\x0b\xd1\x0b\xd8\x0b\xdf\x0b\xe6\x0b\xed\x0b\xf4" +"\x0b\xfb\x0c\x02\x0c\x09\x0c\x10\x0c\x17\x0c\x1e\x0c\x25\x0c\x2c\x0c\x33\x0c\x3a\x0c\x41\x0c\x48\x0c\x4d\x0c\x56\x0c\x5d\x0c\x64" +"\x0c\x73\x0c\x87\x0c\x93\x0c\x98\x0c\x9e\x0c\xa4\x0c\xaf\x0c\xb8\x0c\xbe\x0c\xc0\x0c\xcb\x0c\xd1\x0c\xd7\x0c\xe1\x0c\xe5\x0c\xe9" +"\x0d\x1f\x0d\x5f\x0d\x74\x0d\x82\x41\x45\x61\x63\x75\x74\x65\x41\x62\x72\x65\x76\x65\x41\x6c\x70\x68\x61\x41\x6c\x70\x68\x61\x74" +"\x6f\x6e\x6f\x73\x41\x6d\x61\x63\x72\x6f\x6e\x41\x6f\x67\x6f\x6e\x65\x6b\x41\x72\x69\x6e\x67\x61\x63\x75\x74\x65\x42\x65\x74\x61" +"\x43\x61\x63\x75\x74\x65\x43\x63\x61\x72\x6f\x6e\x43\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x43\x64\x6f\x74\x61\x63\x63\x65\x6e" +"\x74\x43\x68\x69\x44\x63\x61\x72\x6f\x6e\x44\x63\x72\x6f\x61\x74\x44\x65\x6c\x74\x61\x45\x62\x72\x65\x76\x65\x45\x63\x61\x72\x6f" +"\x6e\x45\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x45\x6d\x61\x63\x72\x6f\x6e\x45\x6e\x67\x45\x6f\x67\x6f\x6e\x65\x6b\x45\x70\x73\x69" +"\x6c\x6f\x6e\x45\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x45\x74\x61\x45\x74\x61\x74\x6f\x6e\x6f\x73\x45\x75\x72\x6f\x47\x61" +"\x6d\x6d\x61\x47\x62\x72\x65\x76\x65\x47\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x47\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74" +"\x47\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x48\x62\x61\x72\x48\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x49\x4a\x49\x62\x72\x65\x76" +"\x65\x49\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x49\x6d\x61\x63\x72\x6f\x6e\x49\x6f\x67\x6f\x6e\x65\x6b\x49\x6f\x74\x61\x49\x6f\x74" +"\x61\x64\x69\x65\x72\x65\x73\x69\x73\x49\x6f\x74\x61\x74\x6f\x6e\x6f\x73\x49\x74\x69\x6c\x64\x65\x4a\x63\x69\x72\x63\x75\x6d\x66" +"\x6c\x65\x78\x4b\x61\x70\x70\x61\x4b\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4c\x61\x63\x75\x74\x65\x4c\x61\x6d\x62\x64\x61" +"\x4c\x63\x61\x72\x6f\x6e\x4c\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4c\x64\x6f\x74\x4d\x75\x4e\x61\x63\x75\x74\x65\x4e\x63" +"\x61\x72\x6f\x6e\x4e\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4e\x75\x4f\x62\x72\x65\x76\x65\x4f\x68\x75\x6e\x67\x61\x72\x75" +"\x6d\x6c\x61\x75\x74\x4f\x6d\x61\x63\x72\x6f\x6e\x4f\x6d\x65\x67\x61\x74\x6f\x6e\x6f\x73\x4f\x6d\x69\x63\x72\x6f\x6e\x4f\x6d\x69" +"\x63\x72\x6f\x6e\x74\x6f\x6e\x6f\x73\x4f\x73\x6c\x61\x73\x68\x61\x63\x75\x74\x65\x50\x68\x69\x50\x69\x50\x73\x69\x52\x61\x63\x75" +"\x74\x65\x52\x63\x61\x72\x6f\x6e\x52\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x52\x68\x6f\x53\x61\x63\x75\x74\x65\x53\x63\x65" +"\x64\x69\x6c\x6c\x61\x53\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x53\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x53\x69\x67\x6d" +"\x61\x54\x61\x75\x54\x62\x61\x72\x54\x63\x61\x72\x6f\x6e\x54\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x54\x68\x65\x74\x61\x55" +"\x62\x72\x65\x76\x65\x55\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x55\x6d\x61\x63\x72\x6f\x6e\x55\x6f\x67\x6f\x6e\x65\x6b" +"\x55\x70\x73\x69\x6c\x6f\x6e\x55\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x55\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e" +"\x6f\x73\x55\x72\x69\x6e\x67\x55\x74\x69\x6c\x64\x65\x57\x61\x63\x75\x74\x65\x57\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x57\x64" +"\x69\x65\x72\x65\x73\x69\x73\x57\x67\x72\x61\x76\x65\x58\x69\x59\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x59\x67\x72\x61\x76\x65" +"\x5a\x61\x63\x75\x74\x65\x5a\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x5a\x65\x74\x61\x61\x62\x72\x65\x76\x65\x61\x65\x61\x63\x75\x74" +"\x65\x61\x66\x69\x69\x30\x30\x32\x30\x38\x61\x66\x69\x69\x31\x30\x30\x31\x37\x61\x66\x69\x69\x31\x30\x30\x31\x38\x61\x66\x69\x69" +"\x31\x30\x30\x31\x39\x61\x66\x69\x69\x31\x30\x30\x32\x30\x61\x66\x69\x69\x31\x30\x30\x32\x31\x61\x66\x69\x69\x31\x30\x30\x32\x32" +"\x61\x66\x69\x69\x31\x30\x30\x32\x33\x61\x66\x69\x69\x31\x30\x30\x32\x34\x61\x66\x69\x69\x31\x30\x30\x32\x35\x61\x66\x69\x69\x31" +"\x30\x30\x32\x36\x61\x66\x69\x69\x31\x30\x30\x32\x37\x61\x66\x69\x69\x31\x30\x30\x32\x38\x61\x66\x69\x69\x31\x30\x30\x32\x39\x61" +"\x66\x69\x69\x31\x30\x30\x33\x30\x61\x66\x69\x69\x31\x30\x30\x33\x31\x61\x66\x69\x69\x31\x30\x30\x33\x32\x61\x66\x69\x69\x31\x30" +"\x30\x33\x33\x61\x66\x69\x69\x31\x30\x30\x33\x34\x61\x66\x69\x69\x31\x30\x30\x33\x35\x61\x66\x69\x69\x31\x30\x30\x33\x36\x61\x66" +"\x69\x69\x31\x30\x30\x33\x37\x61\x66\x69\x69\x31\x30\x30\x33\x38\x61\x66\x69\x69\x31\x30\x30\x33\x39\x61\x66\x69\x69\x31\x30\x30" +"\x34\x30\x61\x66\x69\x69\x31\x30\x30\x34\x31\x61\x66\x69\x69\x31\x30\x30\x34\x32\x61\x66\x69\x69\x31\x30\x30\x34\x33\x61\x66\x69" +"\x69\x31\x30\x30\x34\x34\x61\x66\x69\x69\x31\x30\x30\x34\x35\x61\x66\x69\x69\x31\x30\x30\x34\x36\x61\x66\x69\x69\x31\x30\x30\x34" +"\x37\x61\x66\x69\x69\x31\x30\x30\x34\x38\x61\x66\x69\x69\x31\x30\x30\x34\x39\x61\x66\x69\x69\x31\x30\x30\x35\x30\x61\x66\x69\x69" +"\x31\x30\x30\x35\x31\x61\x66\x69\x69\x31\x30\x30\x35\x32\x61\x66\x69\x69\x31\x30\x30\x35\x33\x61\x66\x69\x69\x31\x30\x30\x35\x34" +"\x61\x66\x69\x69\x31\x30\x30\x35\x35\x61\x66\x69\x69\x31\x30\x30\x35\x36\x61\x66\x69\x69\x31\x30\x30\x35\x37\x61\x66\x69\x69\x31" +"\x30\x30\x35\x38\x61\x66\x69\x69\x31\x30\x30\x35\x39\x61\x66\x69\x69\x31\x30\x30\x36\x30\x61\x66\x69\x69\x31\x30\x30\x36\x31\x61" +"\x66\x69\x69\x31\x30\x30\x36\x32\x61\x66\x69\x69\x31\x30\x30\x36\x35\x61\x66\x69\x69\x31\x30\x30\x36\x36\x61\x66\x69\x69\x31\x30" +"\x30\x36\x37\x61\x66\x69\x69\x31\x30\x30\x36\x38\x61\x66\x69\x69\x31\x30\x30\x36\x39\x61\x66\x69\x69\x31\x30\x30\x37\x30\x61\x66" +"\x69\x69\x31\x30\x30\x37\x31\x61\x66\x69\x69\x31\x30\x30\x37\x32\x61\x66\x69\x69\x31\x30\x30\x37\x33\x61\x66\x69\x69\x31\x30\x30" +"\x37\x34\x61\x66\x69\x69\x31\x30\x30\x37\x35\x61\x66\x69\x69\x31\x30\x30\x37\x36\x61\x66\x69\x69\x31\x30\x30\x37\x37\x61\x66\x69" +"\x69\x31\x30\x30\x37\x38\x61\x66\x69\x69\x31\x30\x30\x37\x39\x61\x66\x69\x69\x31\x30\x30\x38\x30\x61\x66\x69\x69\x31\x30\x30\x38" +"\x31\x61\x66\x69\x69\x31\x30\x30\x38\x32\x61\x66\x69\x69\x31\x30\x30\x38\x33\x61\x66\x69\x69\x31\x30\x30\x38\x34\x61\x66\x69\x69" +"\x31\x30\x30\x38\x35\x61\x66\x69\x69\x31\x30\x30\x38\x36\x61\x66\x69\x69\x31\x30\x30\x38\x37\x61\x66\x69\x69\x31\x30\x30\x38\x38" +"\x61\x66\x69\x69\x31\x30\x30\x38\x39\x61\x66\x69\x69\x31\x30\x30\x39\x30\x61\x66\x69\x69\x31\x30\x30\x39\x31\x61\x66\x69\x69\x31" +"\x30\x30\x39\x32\x61\x66\x69\x69\x31\x30\x30\x39\x33\x61\x66\x69\x69\x31\x30\x30\x39\x34\x61\x66\x69\x69\x31\x30\x30\x39\x35\x61" +"\x66\x69\x69\x31\x30\x30\x39\x36\x61\x66\x69\x69\x31\x30\x30\x39\x37\x61\x66\x69\x69\x31\x30\x30\x39\x38\x61\x66\x69\x69\x31\x30" +"\x30\x39\x39\x61\x66\x69\x69\x31\x30\x31\x30\x30\x61\x66\x69\x69\x31\x30\x31\x30\x31\x61\x66\x69\x69\x31\x30\x31\x30\x32\x61\x66" +"\x69\x69\x31\x30\x31\x30\x33\x61\x66\x69\x69\x31\x30\x31\x30\x34\x61\x66\x69\x69\x31\x30\x31\x30\x35\x61\x66\x69\x69\x31\x30\x31" +"\x30\x36\x61\x66\x69\x69\x31\x30\x31\x30\x37\x61\x66\x69\x69\x31\x30\x31\x30\x38\x61\x66\x69\x69\x31\x30\x31\x30\x39\x61\x66\x69" +"\x69\x31\x30\x31\x31\x30\x61\x66\x69\x69\x31\x30\x31\x34\x35\x61\x66\x69\x69\x31\x30\x31\x39\x33\x61\x66\x69\x69\x31\x30\x38\x34" +"\x36\x61\x66\x69\x69\x36\x31\x32\x34\x38\x61\x66\x69\x69\x36\x31\x32\x38\x39\x61\x66\x69\x69\x36\x31\x33\x35\x32\x61\x6c\x70\x68" +"\x61\x61\x6c\x70\x68\x61\x74\x6f\x6e\x6f\x73\x61\x6d\x61\x63\x72\x6f\x6e\x61\x6e\x67\x6c\x65\x6c\x65\x66\x74\x61\x6e\x67\x6c\x65" +"\x72\x69\x67\x68\x74\x61\x6f\x67\x6f\x6e\x65\x6b\x61\x70\x70\x72\x6f\x78\x65\x71\x75\x61\x6c\x61\x72\x69\x6e\x67\x61\x63\x75\x74" +"\x65\x61\x72\x72\x6f\x77\x62\x6f\x74\x68\x61\x72\x72\x6f\x77\x64\x6f\x77\x6e\x61\x72\x72\x6f\x77\x6c\x65\x66\x74\x61\x72\x72\x6f" +"\x77\x72\x69\x67\x68\x74\x61\x72\x72\x6f\x77\x75\x70\x61\x72\x72\x6f\x77\x75\x70\x64\x6e\x61\x72\x72\x6f\x77\x75\x70\x64\x6e\x62" +"\x73\x65\x62\x65\x74\x61\x63\x61\x63\x75\x74\x65\x63\x63\x61\x72\x6f\x6e\x63\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x63\x64\x6f" +"\x74\x61\x63\x63\x65\x6e\x74\x63\x68\x69\x63\x69\x72\x63\x6c\x65\x6d\x75\x6c\x74\x69\x70\x6c\x79\x63\x6c\x75\x62\x64\x63\x61\x72" +"\x6f\x6e\x64\x63\x72\x6f\x61\x74\x64\x65\x6c\x74\x61\x64\x69\x61\x6d\x6f\x6e\x64\x64\x69\x65\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f" +"\x73\x65\x62\x72\x65\x76\x65\x65\x63\x61\x72\x6f\x6e\x65\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x65\x6c\x65\x6d\x65\x6e\x74\x65\x6d" +"\x61\x63\x72\x6f\x6e\x65\x6e\x67\x65\x6f\x67\x6f\x6e\x65\x6b\x65\x70\x73\x69\x6c\x6f\x6e\x65\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e" +"\x6f\x73\x65\x71\x75\x69\x76\x61\x6c\x65\x6e\x63\x65\x65\x73\x74\x69\x6d\x61\x74\x65\x64\x65\x74\x61\x65\x74\x61\x74\x6f\x6e\x6f" +"\x73\x65\x78\x63\x6c\x61\x6d\x64\x62\x6c\x65\x78\x69\x73\x74\x65\x6e\x74\x69\x61\x6c\x66\x65\x6d\x61\x6c\x65\x66\x72\x61\x6e\x63" +"\x67\x61\x6d\x6d\x61\x67\x62\x72\x65\x76\x65\x67\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x67\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65" +"\x6e\x74\x67\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x67\x72\x65\x61\x74\x65\x72\x65\x71\x75\x61\x6c\x68\x62\x61\x72\x68\x63\x69\x72" +"\x63\x75\x6d\x66\x6c\x65\x78\x68\x65\x61\x72\x74\x68\x6f\x75\x73\x65\x69\x62\x72\x65\x76\x65\x69\x6a\x69\x6d\x61\x63\x72\x6f\x6e" +"\x69\x6e\x66\x69\x6e\x69\x74\x79\x69\x6e\x74\x65\x67\x72\x61\x6c\x69\x6e\x74\x65\x67\x72\x61\x6c\x62\x74\x69\x6e\x74\x65\x67\x72" +"\x61\x6c\x74\x70\x69\x6e\x74\x65\x72\x73\x65\x63\x74\x69\x6f\x6e\x69\x6e\x76\x73\x6d\x69\x6c\x65\x66\x61\x63\x65\x69\x6f\x67\x6f" +"\x6e\x65\x6b\x69\x6f\x74\x61\x69\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69\x73\x69\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69\x73\x74" +"\x6f\x6e\x6f\x73\x69\x6f\x74\x61\x74\x6f\x6e\x6f\x73\x69\x74\x69\x6c\x64\x65\x6a\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x6b\x61" +"\x70\x70\x61\x6b\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6b\x67\x72\x65\x65\x6e\x6c\x61\x6e\x64\x69\x63\x6c\x61\x63\x75\x74" +"\x65\x6c\x61\x6d\x62\x64\x61\x6c\x63\x61\x72\x6f\x6e\x6c\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6c\x64\x6f\x74\x6c\x65\x73" +"\x73\x65\x71\x75\x61\x6c\x6c\x69\x72\x61\x6c\x6f\x6e\x67\x73\x6d\x61\x6c\x65\x6d\x69\x6e\x75\x74\x65\x6d\x75\x73\x69\x63\x61\x6c" +"\x6e\x6f\x74\x65\x6d\x75\x73\x69\x63\x61\x6c\x6e\x6f\x74\x65\x64\x62\x6c\x6e\x61\x63\x75\x74\x65\x6e\x61\x70\x6f\x73\x74\x72\x6f" +"\x70\x68\x65\x6e\x63\x61\x72\x6f\x6e\x6e\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6e\x6f\x74\x65\x6c\x65\x6d\x65\x6e\x74\x6e" +"\x6f\x74\x65\x71\x75\x61\x6c\x6e\x75\x6f\x62\x72\x65\x76\x65\x6f\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x6f\x6d\x61\x63" +"\x72\x6f\x6e\x6f\x6d\x65\x67\x61\x6f\x6d\x65\x67\x61\x74\x6f\x6e\x6f\x73\x6f\x6d\x69\x63\x72\x6f\x6e\x6f\x6d\x69\x63\x72\x6f\x6e" +"\x74\x6f\x6e\x6f\x73\x6f\x72\x74\x68\x6f\x67\x6f\x6e\x61\x6c\x6f\x73\x6c\x61\x73\x68\x61\x63\x75\x74\x65\x70\x61\x72\x74\x69\x61" +"\x6c\x64\x69\x66\x66\x70\x65\x73\x65\x74\x61\x70\x68\x69\x70\x69\x70\x72\x6f\x64\x75\x63\x74\x70\x72\x6f\x70\x65\x72\x73\x75\x62" +"\x73\x65\x74\x70\x72\x6f\x70\x65\x72\x73\x75\x70\x65\x72\x73\x65\x74\x70\x73\x69\x71\x75\x6f\x74\x65\x72\x65\x76\x65\x72\x73\x65" +"\x64\x72\x61\x63\x75\x74\x65\x72\x61\x64\x69\x63\x61\x6c\x72\x63\x61\x72\x6f\x6e\x72\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74" +"\x72\x65\x76\x6c\x6f\x67\x69\x63\x61\x6c\x6e\x6f\x74\x72\x68\x6f\x73\x61\x63\x75\x74\x65\x73\x63\x65\x64\x69\x6c\x6c\x61\x73\x63" +"\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x73\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x73\x65\x63\x6f\x6e\x64\x73\x69\x67\x6d\x61" +"\x73\x6d\x69\x6c\x65\x66\x61\x63\x65\x73\x70\x61\x64\x65\x73\x75\x6d\x6d\x61\x74\x69\x6f\x6e\x73\x75\x6e\x74\x61\x75\x74\x62\x61" +"\x72\x74\x63\x61\x72\x6f\x6e\x74\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x74\x68\x65\x74\x61\x74\x6f\x6e\x6f\x73\x75\x62\x72" +"\x65\x76\x65\x75\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x75\x6d\x61\x63\x72\x6f\x6e\x75\x6e\x64\x65\x72\x73\x63\x6f\x72" +"\x65\x64\x62\x6c\x75\x6e\x69\x30\x30\x41\x30\x75\x6e\x69\x30\x30\x41\x44\x75\x6e\x69\x30\x32\x31\x41\x75\x6e\x69\x30\x32\x31\x42" +"\x75\x6e\x69\x30\x32\x43\x39\x75\x6e\x69\x30\x33\x38\x37\x75\x6e\x69\x30\x33\x39\x34\x75\x6e\x69\x30\x33\x41\x39\x75\x6e\x69\x30" +"\x33\x42\x43\x75\x6e\x69\x30\x33\x43\x32\x75\x6e\x69\x30\x34\x30\x30\x75\x6e\x69\x30\x34\x30\x44\x75\x6e\x69\x30\x34\x35\x30\x75" +"\x6e\x69\x30\x34\x35\x44\x75\x6e\x69\x30\x34\x39\x32\x75\x6e\x69\x30\x34\x39\x33\x75\x6e\x69\x30\x34\x39\x36\x75\x6e\x69\x30\x34" +"\x39\x37\x75\x6e\x69\x30\x34\x39\x38\x75\x6e\x69\x30\x34\x39\x39\x75\x6e\x69\x30\x34\x39\x41\x75\x6e\x69\x30\x34\x39\x42\x75\x6e" +"\x69\x30\x34\x39\x43\x75\x6e\x69\x30\x34\x39\x44\x75\x6e\x69\x30\x34\x41\x30\x75\x6e\x69\x30\x34\x41\x31\x75\x6e\x69\x30\x34\x41" +"\x32\x75\x6e\x69\x30\x34\x41\x33\x75\x6e\x69\x30\x34\x41\x41\x75\x6e\x69\x30\x34\x41\x42\x75\x6e\x69\x30\x34\x41\x45\x75\x6e\x69" +"\x30\x34\x41\x46\x75\x6e\x69\x30\x34\x42\x30\x75\x6e\x69\x30\x34\x42\x31\x75\x6e\x69\x30\x34\x42\x32\x75\x6e\x69\x30\x34\x42\x33" +"\x75\x6e\x69\x30\x34\x42\x36\x75\x6e\x69\x30\x34\x42\x37\x75\x6e\x69\x30\x34\x42\x38\x75\x6e\x69\x30\x34\x42\x39\x75\x6e\x69\x30" +"\x34\x42\x41\x75\x6e\x69\x30\x34\x42\x42\x75\x6e\x69\x30\x34\x43\x30\x75\x6e\x69\x30\x34\x43\x42\x75\x6e\x69\x30\x34\x43\x43\x75" +"\x6e\x69\x30\x34\x44\x38\x75\x6e\x69\x30\x34\x45\x32\x75\x6e\x69\x30\x34\x45\x33\x75\x6e\x69\x30\x34\x45\x38\x75\x6e\x69\x30\x34" +"\x45\x39\x75\x6e\x69\x30\x34\x45\x45\x75\x6e\x69\x30\x34\x45\x46\x75\x6e\x69\x32\x30\x33\x45\x75\x6e\x69\x32\x30\x41\x46\x75\x6e" +"\x69\x32\x31\x32\x36\x75\x6e\x69\x32\x32\x31\x35\x75\x6e\x69\x32\x32\x31\x39\x75\x6e\x69\x32\x32\x32\x37\x75\x6e\x69\x32\x32\x32" +"\x38\x75\x6e\x69\x32\x32\x39\x35\x75\x6e\x69\x32\x35\x41\x31\x75\x6e\x69\x6f\x6e\x75\x6e\x69\x76\x65\x72\x73\x61\x6c\x75\x6f\x67" +"\x6f\x6e\x65\x6b\x75\x70\x73\x69\x6c\x6f\x6e\x75\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x75\x70\x73\x69\x6c\x6f" +"\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73\x75\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x75\x72\x69\x6e\x67\x75" +"\x74\x69\x6c\x64\x65\x77\x61\x63\x75\x74\x65\x77\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x77\x64\x69\x65\x72\x65\x73\x69\x73\x77" +"\x67\x72\x61\x76\x65\x78\x69\x79\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x79\x67\x72\x61\x76\x65\x7a\x61\x63\x75\x74\x65\x7a\x64" +"\x6f\x74\x61\x63\x63\x65\x6e\x74\x7a\x65\x74\x61\x31\x2e\x30\x30\x28\x55\x52\x57\x29\x2b\x2b\x2c\x43\x6f\x70\x79\x72\x69\x67\x68" +"\x74\x20\x32\x30\x31\x34\x20\x62\x79\x20\x28\x55\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69\x67\x6e\x20\x26\x20\x44\x65\x76\x65\x6c" +"\x6f\x70\x6d\x65\x6e\x74\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x28\x55\x52\x57\x29\x2b\x2b\x2c\x43\x6f\x70\x79\x72\x69\x67\x68" +"\x74\x20\x32\x30\x31\x34\x20\x62\x79\x20\x28\x55\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69\x67\x6e\x20\x26\x20\x44\x65\x76\x65\x6c" +"\x6f\x70\x6d\x65\x6e\x74\x4e\x69\x6d\x62\x75\x73\x20\x4d\x6f\x6e\x6f\x20\x50\x53\x20\x49\x74\x61\x6c\x69\x63\x4e\x69\x6d\x62\x75" +"\x73\x20\x4d\x6f\x6e\x6f\x20\x50\x53\x01\x3a\x02\x00\x01\x00\x0c\x00\x11\x00\x15\x00\x1a\x00\x20\x00\x25\x00\x2b\x00\x33\x00\x39" +"\x00\x3e\x00\x43\x00\x4e\x00\x5d\x00\x90\x00\xa1\x00\xa7\x00\xf8\x01\x03\x01\x0e\x01\x14\x01\x1a\x01\x20\x01\x2b\x01\x32\x01\x3a" +"\x01\x42\x01\x4b\x01\x67\x01\x6c\x01\x81\x01\x86\x01\x8c\x01\x95\x01\x9b\x01\xa2\x01\xaa\x01\xb0\x02\x31\x02\x4f\x02\x7a\x02\x8a" +"\x02\x93\x02\x9c\x02\xa2\x02\xad\x02\xb4\x02\xbf\x02\xc8\x02\xcf\x02\xd4\x02\xff\x03\x56\x03\x72\x03\xc7\x03\xf0\x04\x03\x04\x0d" +"\x04\x19\x04\x2c\x04\x3e\x04\x4d\x04\x57\x04\x62\x04\x74\x04\x81\x04\x8a\x04\x97\x04\xa0\x04\xaa\x04\xb4\x04\xbf\x04\xc5\x04\xcf" +"\x04\xd7\x04\xdf\x04\xee\x04\xf7\x05\x00\x05\x0c\x05\x14\x05\x36\x05\x5c\x05\xa4\x05\xfa\x06\x2c\x06\x2f\x06\x70\x06\x89\x06\xab" +"\x06\xc6\x06\xe7\x06\xfb\x07\x29\x07\x3f\x07\x46\x07\x57\x07\x6f\x07\x88\x07\x96\x07\xa1\x07\xb1\x07\xc3\x07\xcd\x07\xdc\x07\xeb" +"\x07\xf9\x08\x11\x08\x1d\x08\x26\x08\x31\x08\x3c\x08\x47\x08\x52\x08\x63\x08\x6c\x08\x76\x08\x7e\x08\x8c\x08\x95\x08\x9e\x08\xa7" +"\x08\xb4\x08\xbb\x08\xc7\x08\xcf\x08\xd7\x08\xdf\x08\xea\x08\xf0\x09\xa1\x09\xa4\x0a\x52\x0a\x8f\x0a\x9d\x0b\x24\x0b\xa9\x0c\x07" +"\x0c\x72\x0c\xad\x0c\xf1\x0d\x40\x0d\x85\x0d\xe2\x0e\x0d\x0e\x56\x0e\x73\x0e\xb4\x0e\xe1\x0f\x28\x0f\x6b\x0f\x83\x0f\x8e\x0f\xc8" +"\x10\x10\x10\x3d\x10\x85\x10\xac\x10\xd7\x11\x0b\x11\x46\x11\x67\x11\x94\x11\xd6\x12\x1c\x12\x5f\x12\x85\x12\xc4\x12\xe0\x13\x04" +"\x13\x3c\x13\x76\x13\xb1\x13\xd3\x13\xdf\x13\xfb\x14\x11\x14\x21\x14\x41\x14\x63\x14\x69\x14\x80\x14\x94\x14\xa3\x14\xc0\x14\xd1" +"\x14\xf0\x15\x1b\x15\x45\x15\x6d\x15\x88\x15\xab\x15\xb5\x15\xdc\x16\x03\x16\x14\x16\x29\x16\x2e\x16\x39\x16\x53\x16\x73\x16\x94" +"\x16\xb4\x16\xd4\x16\xe3\x17\x02\x17\x21\x17\x3a\x17\x4e\x17\x5d\x17\x6c\x17\x79\x17\x89\x17\x95\x17\xb1\x17\xc5\x17\xdf\x17\xf2" +"\x18\x08\x18\x22\x18\x3c\x18\x56\x18\x66\x18\x75\x18\x83\x18\x98\x18\xb0\x18\xc8\x18\xd8\x18\xee\x19\x05\x19\x1a\x19\x1f\x19\x35" +"\x19\x43\x19\x59\x19\x6d\x19\x78\x19\x8d\x19\xa0\x19\xb5\x19\xbd\x19\xc6\x19\xd9\x19\xed\x19\xfe\x1a\x12\x1a\x1e\x1a\x25\x1a\x38" +"\x1a\x4b\x1a\x5e\x1a\x67\x1a\x7a\x1a\x8d\x1a\x9e\x1a\xb0\x1a\xc2\x1a\xd3\x1a\xdd\x1a\xe4\x1a\xf2\x1b\x02\x1b\x12\x1b\x1c\x1b\x2c" +"\x1b\x3c\x1b\x4c\x1b\x56\x1b\x65\x1b\x6e\x1b\x7d\x1b\x8c\x1b\x99\x1b\xa8\x1b\xb7\x1b\xbb\x1b\xc9\x1b\xd7\x1b\xe5\x1b\xf3\x1c\x01" +"\x1c\x0f\x1c\x1d\x1c\x29\x1c\x32\x1c\x37\x1c\x3d\x1c\x4a\x1c\x57\x1c\x64\x1c\x71\x1c\x7b\x1c\x88\x1c\x95\x1c\xa1\x1c\xad\x1c\xb9" +"\x1c\xc5\x1c\xcf\x1c\xd7\x1c\xdf\x1c\xe7\x1c\xf2\x1c\xfd\x1d\x08\x1d\x13\x1d\x1e\x1d\x29\x1d\x34\x1d\x3f\x1d\x4a\x1d\x55\x1d\x60" +"\x1d\x69\x06\x74\x7d\x80\x79\x7c\x94\x84\x9e\x1f\x0b\x4a\x1d\x9e\x1f\x0b\xf8\x94\x15\x0b\x06\xa2\x34\x1d\x0b\x06\x74\x7d\x69\x1d" +"\x0b\x94\x84\x9e\x1f\x0b\x06\x27\xfc\x61\x05\x0b\x2f\x1d\x9a\x83\x91\x76\x1f\x0b\x95\x95\xa0\x90\x1e\x0b\x4a\x1d\x9f\x1f\x0b\x06" +"\xa2\x40\x1d\x0b\x06\x73\x7e\x81\x78\x7d\x95\x83\x9e\x1f\x0b\x15\xa1\x9a\x96\x9d\x99\x82\x92\x77\x1f\xfb\x80\x8e\x1d\x0e\xf7\x78" +"\xf7\x9e\x15\x81\x1d\x8e\x1a\x96\x82\x94\x7e\x7a\x81\x81\x76\x87\x1e\x82\x63\x8a\x1d\x98\x9b\x96\x95\xa0\x8f\x1e\xaa\xf7\x23\x05" +"\xfc\x48\x49\x1d\xf8\x5b\x06\xae\xf7\x35\xf7\x11\x1d\xfb\xc3\x06\x0b\xb8\x1d\x7c\x1a\x2d\xce\x4b\xee\xf7\x07\xf6\xe2\xf7\x07\xa4" +"\x1e\x0b\x06\xa2\x9a\x97\x9d\x0b\xf8\xcb\xf7\x57\x15\x92\xb0\x8d\x99\x9c\x1a\xee\x3b\xd2\xfb\x04\xfb\x2c\xfb\x19\xfb\x0e\xfb\x1f" +"\xfb\x04\xdd\x3f\xf7\x0c\xf3\xf7\x17\xbd\xb3\x97\x82\x94\x7f\x85\x87\x89\x85\x81\x1e\x6d\x5d\x3e\x75\x4e\x1b\x2c\x4a\xc5\xe0\x90" +"\x8b\x8f\x8c\x93\x1f\xf8\x09\xbe\x15\xfb\xfe\x06\xdc\xae\xe0\xc2\xe7\x1b\xe3\xcd\x52\x42\x87\x1f\x0b\x06\xa2\x99\x96\x9d\x99\x81" +"\x93\x78\x1f\x0b\x06\x73\x7d\x80\x78\x7d\x94\x84\x9f\x1f\x0b\x06\x73\x7d\x39\x1d\x0b\x9a\x97\x9d\x35\x1d\x0b\x9a\x82\x91\x77\x1f" +"\x0b\x06\x71\x7d\x82\x7b\x7a\x99\x82\xa5\x1f\x0b\x06\x74\x7d\x80\x79\x7c\x0b\x97\x9d\x9a\x83\x91\x77\x1f\x0b\x80\x79\x7c\x94\x84" +"\x9f\x1f\x0b\x99\x94\x9b\x9c\x7d\x94\x71\x1f\x0b\xf8\x48\x22\x1d\xf7\x1b\x27\x1d\xfb\xd4\x83\x1d\xf7\xd4\x06\xa2\x9a\x97\x9c\x9b" +"\x82\x91\x76\x1f\xfb\x18\x06\x0b\xf8\x34\xd0\x1d\x0b\x15\x9a\x96\x8f\x91\x96\x1a\x97\x82\x94\x7e\x84\x86\x7f\x1d\x90\x8d\x93\x96" +"\x1e\x0e\x96\x1d\x78\x1f\x0b\x06\x73\x7d\x69\x1d\x0b\x9a\x97\x9d\x99\x82\x92\x77\x1f\x0b\x1e\xfb\x1b\x29\x05\x0b\x6c\x6a\x72\x9e" +"\x78\xa5\x0b\x81\x78\x7d\x95\x83\x9e\x1f\x0b\x1f\xe8\x29\x05\x83\x0b\xf8\xcd\xf7\x61\x15\x95\x23\x1d\xfb\x56\x21\x1d\xf7\x18\x06" +"\x6e\xfb\x1e\x05\x72\x4b\x6c\x84\x58\x1b\xfb\x09\x45\xc4\xea\x9b\x8d\xa0\x90\x9f\x1f\x9a\xd2\x97\xc3\xb4\xc8\xbf\xb4\x19\xad\xb7" +"\xbb\x9c\xc1\x1b\xc0\xb6\x7e\x74\xa2\x1f\x98\x7e\x95\x80\x88\x1a\x89\x67\x05\x85\x97\x82\x94\x9c\x95\x95\x9f\x8f\x1e\x9f\xe4\x05" +"\x8d\x95\xf7\x48\x1d\x86\x1e\x8a\x87\x05\xaa\x66\x58\x9b\x4c\x1b\x48\x4b\x75\x60\x54\x1f\x4e\x5b\x5b\x42\x7c\x44\x7b\x43\x18\x86" +"\x74\x89\x76\x76\x1a\xfb\x0e\xe2\x40\xf7\x20\xcb\xd5\x9e\xad\xcc\x1e\x0b\xf8\xb8\xf8\x15\x15\x88\x1d\x22\xd5\x47\xf7\x06\xd0\xd2" +"\x9f\xae\xc6\x1f\xb2\xa2\x9c\x9d\x9b\x1a\x96\x82\x94\x71\x1d\x0b\xf8\x12\xf7\x90\x15\xf7\x7b\xf7\x98\x05\xa0\x91\x1d\x79\x7c\x80" +"\x1d\x79\x7c\x25\x1d\xa0\x06\xf7\x0c\xfb\x96\x5f\xfb\x5f\x05\x26\x21\x1d\xf7\x90\x06\xa1\x34\x1d\x29\x06\x0b\x15\x77\x7e\x7c\x75" +"\x4a\xbb\x67\xe0\xc1\xb9\x9a\xa9\xb0\xd8\x1d\x20\x1d\xbb\x26\x1d\x59\x20\x1d\x0b\x06\x74\x7d\x80\x78\x7d\x94\x84\x0b\x06\xa2\x99" +"\x38\x1d\x0b\x06\xa5\x99\x94\x9c\x9b\x7d\x94\x71\x1f\x0b\x05\x59\x4a\x1d\x9e\x1f\x0b\x82\x86\x84\x7f\x1a\x7f\x94\x82\x98\x91\x0b" +"\x06\x73\x7e\x80\x79\x7c\x94\x84\x0b\x92\x84\x1f\xe8\x29\x05\x0b\x7b\x9a\x76\x1f\x0e\xf7\xa9\x92\x15\x28\xfb\x1e\x05\xfb\x10\x20" +"\x1d\xf7\x7d\x06\xa2\x99\x96\x9e\xf7\x1d\x1d\x83\x91\x76\x65\x1d\xfb\xc6\x33\xf7\xc6\x05\xb7\x27\x1d\xfb\x06\x33\x1d\x97\x06\x0b" +"\xf7\xec\xf8\x37\x15\xfb\x0e\x20\x1d\xcf\x06\x46\xfb\xd1\x05\x2f\x06\x75\x7c\x7f\x7a\x7c\x95\x84\x9d\x1f\xf7\xd1\x06\xa1\x9a\x97" +"\x9c\x9a\x81\x92\x78\x1f\xfb\x40\x06\xb8\xf7\x64\x05\xea\xf7\x13\xb5\xa3\xb6\x1b\x9f\x99\x83\x74\x9f\x1f\x83\x92\x8e\x89\x93\x1b" +"\x9c\x9a\x99\x9b\x94\x82\x98\x7a\x9a\x1f\x9d\x77\x78\x92\x70\x1b\x57\x57\x72\x3d\x22\x1f\x0b\xf8\x8e\x16\xf7\x03\xf8\x94\x05\xa8" +"\x23\x1d\xfb\x29\x06\x73\x7d\x80\x79\x7c\xcf\x1d\x9a\x82\x91\xf7\x4d\x1d\x0b\xf8\xdc\xf8\x96\x15\xb3\x64\x55\xa0\x4c\x1b\x47\x49" +"\x71\x5c\x53\x1f\x55\x5c\x60\x46\x7e\x4e\x79\x3a\x18\x88\x7c\x89\x7b\x7b\x1a\xfb\x0c\xe8\x2e\xf7\x0d\xd2\xd5\xa8\xc1\xca\x1e\xa7" +"\xa3\x93\x95\x98\x1a\x96\x82\x93\x7f\x81\x86\x89\x82\x82\x1e\x4d\x48\x54\x72\x47\x7d\x1d\x93\x9c\x60\x1d\x8b\x8f\x1a\x97\x82\x93" +"\x7e\x7a\x81\x81\x77\x86\x1e\x0b\xf8\x45\x15\xfb\x29\xfb\x1e\xfb\x15\xfb\x20\x22\xda\x40\xf7\x01\xf7\x2c\xf7\x1d\xf7\x14\xf7\x21" +"\xf5\x3d\xd5\xfb\x04\x1f\x82\x58\x15\xe2\xc6\x53\x39\x20\x5f\x1d\x0b\x06\x47\x7e\x1d\xf7\x20\x06\xa3\x99\x96\x9d\x99\x81\x93\x78" +"\x1f\x5b\x06\x0b\x26\x1d\x6d\x20\x1d\xf7\x2a\x2f\x1d\x0b\x15\x68\x67\x1d\xaa\xac\xa4\x78\x9e\x71\x1f\x0e\x05\x62\x24\x1d\xf7\x17" +"\x06\xa3\x99\x96\x9d\x99\x81\x93\x78\x1f\x64\x06\x0b\x84\x84\x88\x84\x80\x1e\xfb\x1a\x2b\x05\x7e\x82\x85\x81\x80\x1a\x7f\x0b\xf7" +"\x4a\x1d\xc4\xb8\x69\xab\x5c\x1f\x84\x60\x15\xa5\x9d\x0b\x27\x1d\xfb\x03\x06\x74\x7d\x39\x1d\x0b\x06\xa3\x99\x95\x9e\x9a\x81\x92" +"\x78\x1f\x0b\xfb\x00\x25\xfb\x05\x31\x4f\xc2\xdd\xf7\x01\xf7\x00\xf0\xf7\x09\x1f\x0b\x95\x95\x9f\x90\x1e\xa3\xf7\x02\x05\x8d\x94" +"\x8b\x0b\x15\x98\x95\x91\x94\x96\x1a\x97\x0b\x9e\x70\x93\x3f\x98\x08\x2b\x9b\x6c\xa0\xba\x1a\x0b\x1a\x80\x94\x82\x98\x9b\x28\x1d" +"\x0b\x95\x82\x97\x94\x96\x91\x95\x94\x1e\x0e\x1f\xfb\x02\x20\x1d\xb7\x06\xfb\x6f\x0b\x06\xa2\x99\x96\x9d\x99\x82\x92\x78\x1f\x0b" +"\x6a\x42\x1d\xaf\xab\x0b\x74\x7d\x80\x79\x7d\x94\x84\x9f\x1f\x0b\x81\x79\x7c\x95\x83\x9e\x1f\x0b\x90\x97\x1a\x97\x82\x94\x7e\x0b" +"\x9a\x97\x9d\x9a\x83\x91\x76\x1f\xfb\x0c\x06\x74\x7d\x80\x0b\x8a\x86\x88\x1a\x80\x95\x82\x97\x0b\x99\x96\x9d\x9a\x81\x92\x78\x1f" +"\x0b\x38\x05\x84\x92\x91\x88\x91\x1b\x9b\x9a\x99\x0b\x1a\x96\x82\x94\x7e\x7b\x80\x0b\xf4\x85\x1d\xf7\x16\xf0\xd0\xe4\xa4\x7d\xa7" +"\x76\x9b\x1f\x76\x1d\x40\x52\x9b\x1d\x8e\x8d\x1a\x96\x82\x94\x7e\x7a\x81\x81\x76\x86\x1e\x0b\x7f\x83\x87\x89\x82\x80\x1e\x5c\x4e" +"\x4a\x74\x41\x1b\x31\x53\xbe\xdb\xb9\x9d\xbc\xac\xb3\x1f\xc0\xb5\xc7\xa7\xd2\x1b\xb4\xb2\xe0\x1d\x81\x76\x87\x1e\x0b\xf8\x7c\xf8" +"\x37\x15\xfb\xfc\xfb\xeb\xcc\xf7\xb8\x05\xb6\x06\xa3\x99\x96\x9d\x99\x81\x93\x78\x1f\xfb\x1d\x3f\x1d\xb4\x06\x45\xfb\xd1\x05\x64" +"\x24\x1d\xec\x06\xf7\xfb\xf7\xe9\x4c\xfb\xb6\x05\x63\x3f\x1d\xf7\x14\x06\xa3\x99\x96\x9d\x99\x81\x93\x78\x1f\x68\x06\xd0\xf7\xd1" +"\x05\xb0\x31\x1d\x0b\xf8\x63\xf8\x04\x15\x6b\xfb\x27\x7b\x40\x7c\x65\x70\x6f\x19\x6e\x6f\x67\x7b\x60\x1b\x4b\x67\xac\xc5\xa0\x8f" +"\xaa\x94\xb3\x1f\xb6\xf7\x5d\x05\x20\x8d\x1d\xbe\x06\x6b\xfb\x27\x05\x83\x66\x87\x69\x70\x1a\x36\xc7\x55\xe8\xc3\xc3\xa4\xb4\xb0" +"\x1e\xa9\xad\x9f\xbb\x9d\xe1\xab\xf7\x2a\x18\xb4\x3e\x1d\xfb\x26\x06\x73\x7e\x81\x78\x7d\x95\x83\x9d\x1f\x0b\xf7\x28\x1d\xfb\x09" +"\x2f\x05\x7b\x7f\x88\x86\x80\x1a\x7f\x94\x82\x98\x92\x92\x8e\x93\x94\x1e\xf7\x98\xe6\xf7\x28\x1d\xfb\x0a\x2f\x05\x7c\x80\x87\x86" +"\x7f\x1a\x7f\x94\x82\x98\x92\x92\x8e\x93\x95\x1e\x0e\xc8\x1d\x0e\x6f\xa0\x68\x97\x4e\x91\x40\x94\x8b\x8b\x76\x93\xf7\x21\x1d\x84" +"\x9d\x78\xf7\x0e\x1d\x8e\x1a\x97\x82\x94\x7f\x7d\x80\x81\x7b\x85\x1e\xa5\x6f\x60\x99\x55\x1b\xfb\x04\x32\x4f\x3f\x74\x98\x72\x9f" +"\x7d\x1f\xa4\x79\xa6\x84\xd4\x84\xc0\x85\xa4\x85\xa1\xf7\x46\x1d\x0b\x15\x69\x67\x1d\xaa\xac\xa5\x78\x9d\x70\x1f\xf7\x71\x16\x69" +"\x67\x1d\xaa\xac\xa5\x78\x9d\x70\x1f\x0e\x93\x1a\x95\x81\x95\x80\x81\x83\x87\x7f\x81\x1e\xfb\x03\xfb\x0f\x05\x82\x80\x87\x84\x83" +"\x1a\x80\x95\x82\x97\x94\x95\x91\x95\x95\x1e\x0e\x87\x1a\x88\x61\x05\x85\x97\x82\x95\x9b\x28\x1d\xa1\xef\x05\x8d\x95\x8b\x8b\x8e" +"\x6f\x1d\x81\x77\x87\x1e\x0b\xef\xf8\x61\x05\xb0\x06\xa4\x99\x94\x9c\x9b\x7d\x94\x72\x1f\xfb\x18\x06\x72\x7d\x82\x7b\x7a\x99\x82" +"\xa4\x1f\xb4\x06\x61\xfb\x54\x0b\x94\x84\x9f\x1f\xf7\x02\x06\xfb\xa7\xfc\x61\x05\x6f\x20\x1d\xf7\x2b\x2f\x1d\x0b\x6f\x49\x1b\x62" +"\x70\xa5\xb2\x8f\x8c\x92\x8c\x91\x1f\xcd\xf7\xc2\x05\x25\x20\x1d\xbb\x06\x55\xfb\x8d\x05\x88\x7f\x8a\x80\x80\x1a\x6e\x98\x6e\xa1" +"\x78\x1e\x7b\x9d\xa4\x83\xaf\x1b\xcb\x0b\xf7\x0b\x1d\xb9\xb9\x7c\x73\xa3\x1f\x93\x83\xa0\x6c\x87\x1a\x89\x65\x05\x85\x98\x82\x0b" +"\xfb\xd1\x05\x62\x24\x1d\x0b\x89\x83\x7f\x41\x1d\x7c\x81\x87\x84\x80\x1a\x7f\x94\x82\x98\x92\x0b\x94\x84\x9f\x1f\xa8\x06\xfb\x4c" +"\xfb\x64\x29\xf7\x64\x05\xa9\x27\x1d\xfb\x03\x06\x74\x7d\x80\x0b\xf7\x1a\x06\x83\x65\x05\x8a\x87\x8a\x86\x88\x1a\x80\xf7\x34\x1d" +"\xa7\xf7\x15\x05\x8d\x95\x8b\x8b\x0b\x41\x1d\x7e\x81\x85\x83\x82\x1a\x7e\x94\x82\x99\x91\x0b\x21\x1d\xf7\x19\x26\x1d\xfb\x1b\x21" +"\x1d\x0b\x06\x9b\x8a\x97\x95\x9a\x1a\x8e\x07\x9a\x7f\x95\x7b\x8a\x1e\x0b\xac\x15\x8a\x85\x8a\x87\x88\x63\x1d\x8c\x07\x6b\xac\xba" +"\x7b\xca\x1b\x0b\x7d\x39\x1d\xf7\x20\x06\xa2\x9a\x97\x0b\x8f\x1f\xa5\xf7\x0b\x05\xfc\x67\x06\x72\xfb\x08\x05\x8a\x0b\xaa\x69\x5a" +"\x9c\x50\x1b\xfb\x30\xfb\x19\xfb\x13\xfb\x29\x0b\x26\x06\x74\x7d\x80\x79\x7b\x93\x85\x9f\x1f\xba\x06\x0b\x05\xfb\x1a\x06\xb5\xf7" +"\x57\x05\xf7\xae\x06\x78\x31\x05\x8a\x86\x8a\x87\x88\x1a\x7f\x94\x82\x0b\x15\xfb\x70\x06\xf7\x39\xf7\xa9\x05\x92\x06\x0b\xab\xaa" +"\xac\xa5\x78\x9d\x70\x1f\x0b\x06\x73\x7e\x81\x79\x7c\x95\x83\x9e\x1f\x0b\x06\x74\x7d\x80\x79\x7d\x94\x84\x9e\x1f\x0b\x06\x7a\x7f" +"\x80\x7d\x80\x93\x84\x99\x1f\x0b\x99\x9a\x94\x86\x93\x81\x8f\x1f\x93\x78\x0b\x06\xa0\x9b\x97\x9c\x9a\x81\x92\x78\x1f\xfb\x02\x06" +"\x73\x7d\x80\x0b\x7d\x7c\x82\x8d\x88\x94\x83\x1f\x0e\x15\xf7\x13\x06\xf7\x18\xf7\x07\xe9\x0b\x96\x99\x96\x83\x92\x7d\x1f\x0b\x6c" +"\x69\x6c\x69\x70\x79\x9b\xa3\xab\xac\xa9\xaf\x1f\x0b\x06\xa3\x99\x96\x9d\x9a\x81\x92\x0b\x15\x5c\x61\x64\x5f\x6a\xa4\x74\x0b\x77" +"\x1f\x45\x06\xdb\xf7\x19\x05\x0b\x1f\x77\x7b\x83\x81\x80\x1a\x7f\x94\x83\x98\x92\x0b\x99\x95\x9e\x99\x81\x93\x0b\xa8\xb1\x8e\x8c" +"\x90\x8c\x92\x1e\x8c\x8e\x8b\x0b\x06\xce\xbe\x9c\xb0\xb1\x1f\x0b\x94\x1a\x98\x80\x96\x7d\x1e\x0b\x68\x74\xa0\xaa\xb2\xb4\xae\x0b" +"\x85\x7b\x1b\x80\x82\x8f\x9e\x6d\x1f\x9e\x0b\x1e\xae\xf7\x22\x05\x0e\xa2\x06\xa5\x3a\x1d\x2c\x06\x72\x7d\x82\x7a\x7b\x99\x82\xa4" +"\x1f\x9e\x06\x63\xfb\x4d\x05\x84\x06\x74\x8c\x85\x96\x74\xdd\x79\xce\x87\x97\x7d\xa7\x08\xa3\x7f\x72\x96\x61\x1b\x71\x84\x85\x70" +"\x85\x1f\x7f\x52\x05\x89\x80\x8a\x88\x87\x1a\x7e\x94\x82\x9a\x9a\x94\x94\x9e\x8f\x1e\x97\xbe\xa4\x89\x91\x84\x97\x5d\x19\x9b\x4b" +"\xa1\x47\x96\x7a\x60\x79\x7b\x7a\x53\x35\x34\xfb\x1c\x18\x6e\x06\x72\x7d\x82\x7a\x7b\x99\x82\xa4\x1f\xab\x06\x98\x96\x8c\x8d\x8d" +"\x1f\x8e\x8d\x92\x94\x91\x94\xe3\xf7\x21\x18\xba\xd3\xbb\xb7\xa7\x87\x08\x92\x06\x5a\xfb\x75\x05\x6e\x06\x71\x7d\x82\x7a\x7b\x99" +"\x82\xa5\x1f\xf0\x06\xa5\x3a\x1d\x78\x06\xbc\xf7\x75\x05\x94\x06\xaf\x8a\xa2\x69\x9c\x40\xa5\xfb\x18\x18\x92\x6b\x8d\x8a\xab\x8a" +"\x08\x0b\xa3\x1d\x0e\xf8\x95\xf7\xdd\x15\x8a\x85\x8a\x86\x88\x1a\x7d\x95\x82\x9a\x9b\x94\x95\x9f\x8e\x1e\x94\xc1\x05\x8c\x8e\x8b" +"\x8d\x8b\x1a\x8c\x8c\x05\x8d\x07\x8c\x8e\x8b\x8e\x8f\x1a\x9d\x7d\x93\x6e\x4e\x6e\x7d\x49\x46\x1e\x66\x67\x6f\x73\x76\x7d\x7d\x80" +"\x72\x87\x5d\x8a\x08\x87\x06\xa5\xf7\x0a\x05\xb7\x06\xa4\x99\x94\x9b\x9c\x7d\x94\x72\x1f\xfb\x1e\x36\x1d\xb5\x06\x46\xfb\xd1\x05" +"\x5f\x06\x72\x7d\x82\x7a\x7b\x99\x82\xa4\x1f\xf7\x1f\x06\xa4\x99\x94\x9b\x9c\x7d\x94\x72\x1f\x61\x06\xaa\xf7\x28\x05\x93\x06\xf2" +"\x89\x99\x84\xae\x47\xb9\x2c\x18\x98\x71\x8c\x8b\xa8\x8a\x08\xc6\x06\xa4\x99\x94\x9b\x9c\x7d\x94\x72\x1f\x54\x06\x5f\xe5\x74\xb9" +"\x6f\xaa\x70\x95\x19\xa9\x9c\xa4\x9f\xb8\xb7\xbe\xbb\x99\x93\xaf\x8e\x08\x0b\xf7\x4c\xf7\x9e\x15\x81\x1d\x8d\x1a\x97\x82\x94\x7e" +"\x7a\x81\x81\x77\x87\x1e\x82\x62\x8a\x1d\x97\x9c\x28\x1d\xaa\xf7\x23\x05\xfc\x48\x49\x1d\xf8\x5b\x06\xae\xf7\x35\x05\x8d\x95\x8b" +"\x8b\x8e\x6f\x1d\x81\x76\x86\x1e\x73\xfb\x04\x05\xfb\xc3\x06\x0e\xf7\xf1\xf7\xb3\x15\xaa\x1d\xf7\x17\x2a\x1d\x7d\x06\x0e\xf7\xe1" +"\xf7\x78\x15\x8d\x95\x8c\x91\x8f\x1a\x9a\x82\x94\x7c\x7d\x81\x80\x74\x86\x1e\x84\x6b\x7c\x43\x7f\x69\x79\x73\x19\x71\x78\x71\x7c" +"\x72\x1b\x64\x73\xaf\xc6\xf4\xcf\xf7\x0a\xd8\xa7\x1f\xa3\x93\x90\x90\x99\x1a\x9a\x81\x95\x7a\x65\x54\x62\x52\x63\x1e\x64\x51\x70" +"\x37\x48\x1a\x37\xb9\x51\xd0\xb7\xb1\xa1\xb6\xaa\x1e\x60\x9d\xaa\x75\xb8\x1b\xee\xde\xf7\x0b\xf7\x23\xcb\x7f\xb1\x6d\xb1\x1f\xa8" +"\x72\x71\x9d\x77\x1b\x7e\x81\x81\x7d\x80\x90\x83\x99\x83\x1f\xbb\x6c\x9c\x69\x49\x1a\xfb\x09\x4f\x28\x45\x69\x78\xa6\xba\xa1\x8f" +"\xaa\x94\xb6\x1e\x0b\xf7\x2c\xbb\x15\x5e\xb3\xb7\x78\xc9\x1b\xf7\x3a\xf7\x32\xf7\x48\xf7\x50\xbc\x81\xb3\x77\xb0\x1f\xe0\xde\x05" +"\x96\x96\x8e\x90\x93\x1a\x96\x82\x93\x80\x82\x87\x89\x7f\x80\x1e\x3b\x3d\x05\xb9\x5f\x64\x9c\x4f\x1b\xfb\x3c\xfb\x33\xfb\x46\xfb" +"\x51\x5c\x94\x65\xa0\x63\x1f\x36\x38\x05\x81\x80\x88\x87\x83\x1a\x80\x93\x83\x97\x93\x91\x8e\x95\x95\x1e\xeb\xf7\x2d\x15\x7c\xb0" +"\x87\xa0\xae\x1a\xf7\x30\xf7\x17\xf7\x2b\xf7\x1b\xb7\xae\x7b\x68\xaa\x1e\xa3\x67\x15\x9a\x62\x8f\x78\x69\x1a\xfb\x31\xfb\x16\xfb" +"\x2b\xfb\x1c\x5f\x68\x9c\xaf\x6b\x1e\x0b\xf7\xc0\xf8\xef\x15\x89\x1d\xfb\x00\xfc\x89\x05\x62\x33\x1d\xf7\x18\x2f\x1d\x9a\x82\x91" +"\x76\x1f\x65\x06\xbf\xf7\x86\xbd\xb9\x8b\x8b\x98\x94\x19\xa3\xad\xa9\x95\xb0\x1b\xb3\x9d\x86\x78\x9e\x1f\x9a\x7d\x92\x7b\x77\x1a" +"\x87\x8a\x83\x89\x84\x1e\x58\xfb\x82\x05\x62\x20\x1d\xf7\x18\x23\x1d\x64\x06\xbe\xf7\x83\x05\x8e\x95\x8c\x95\x93\x1a\xd1\x55\xb8" +"\x37\x51\x5d\x77\x57\x50\x1e\x0b\xf7\x63\x22\x1d\xae\x06\xa4\x99\x94\x9b\x9c\x7d\x94\x72\x1f\xfb\x03\x36\x1d\x9e\x06\xf7\x09\xfb" +"\xef\x5f\x51\x05\x5c\x66\x6a\x72\x6f\x1b\x84\x81\x8c\x8e\x7d\x1f\x96\xbc\x05\x8d\x92\x8c\x91\x90\x1a\x99\x81\x94\x7c\x7c\x81\x80" +"\x75\x87\x1e\x7e\x51\x05\x89\x83\x8a\x83\x87\x1a\x76\xa8\x7e\xb9\xc7\xb0\xa2\xd5\xc4\x1e\xf7\xe1\xf8\x43\x05\xa2\x06\xa5\x3a\x1d" +"\x20\x06\x72\x7d\x82\x7b\x7a\x99\x82\xa4\x1f\x9e\x06\xfb\x78\xfb\xbd\x05\x0b\xf7\x74\xf7\x75\x05\x98\x27\x1d\xfb\x03\x29\x1d\xab" +"\x06\xfb\x4a\xfb\x4b\x23\xf7\x4b\x05\xac\x06\xa2\x34\x1d\xfb\x02\x06\x74\x7d\x80\x78\x7d\xf7\x17\x1d\x78\x7d\x94\x84\x9f\x1f\xf7" +"\x16\x2f\x1d\x99\x82\x92\xf7\x32\x1d\x75\x7c\x39\x1d\x0b\xf7\xd5\xf7\x3a\x15\xf7\x7a\xf7\xec\x28\xfc\x5f\x05\x45\x20\x1d\xf7\x29" +"\x2a\x1d\x70\x06\xef\xf8\x61\x05\xa0\x06\xa1\x9a\x97\x9d\x9a\x83\x91\x76\x1f\x25\x06\xfb\x74\xfb\xe2\x3b\xf7\xe2\x05\x23\x20\x1d" +"\x9e\x58\x1d\x99\x82\x92\x77\x1f\x47\x06\xee\xf8\x5f\xdf\xfb\xec\x05\x0e\xf7\x79\xf7\x47\x15\xbb\xad\xf7\x18\xfb\x36\x05\x7a\x20" +"\x1d\xf7\x17\x23\x1d\x61\x06\xfb\x32\xf7\x55\xf7\x46\xf7\x10\x05\xb8\x06\xa2\x9a\x97\x9c\x9b\x83\x91\x76\x1f\xfb\x16\x20\x1d\x91" +"\x06\xfb\x48\xfb\x13\xd9\xf7\xfe\x05\x26\x06\x74\x7d\x80\x79\x7b\x93\x85\x9f\x1f\xbb\x06\xfb\x01\xfc\x89\x05\x59\x20\x1d\xef\x06" +"\x0b\xf8\x49\xbe\x15\x7a\x1d\x05\x50\x36\x50\x73\x4f\x1b\x5f\x75\x9e\xb2\x98\x8d\x97\x8e\x9c\x1f\xb1\xf7\x43\x05\xb9\x4c\x1d\xfb" +"\x1e\x06\x72\x7d\x82\x7b\x7a\x99\x82\xa4\x1f\xb1\x06\x67\xfb\x3d\x05\x86\x74\x89\x7c\x7d\x1a\x4c\xb9\x61\xd0\xc7\xc8\x9f\xb9\xd5" +"\x1e\x60\xfb\x5d\x05\x0b\xf8\x4b\xbe\x15\xcf\xf7\xd1\x05\xb2\x06\xa5\x3a\x1d\xfb\x14\x06\x71\x7d\x82\x7a\x7b\x99\x82\xa5\x1f\xaf" +"\x06\x6f\xfb\x11\x05\x60\x37\x55\x7a\x52\x1b\x60\x74\x99\xa6\x95\x8d\x97\x8e\x9a\x1f\xa3\xf6\x05\xb8\x06\xa5\x3a\x1d\xfb\x18\x06" +"\x72\x7d\x82\x7a\x7b\x99\x82\xa4\x1f\xad\x06\x75\x23\x05\x86\x74\x89\x7f\x7f\x1a\x58\xb8\x6a\xd1\xc7\xc5\x9a\xad\xd0\x1e\x6f\xfb" +"\x17\x05\x0b\xf7\xe6\xf7\x90\x15\xf7\x7a\xf7\x98\x05\xa1\x91\x1d\x78\x7d\x80\x1d\x78\x7d\x25\x1d\xa0\x06\xf7\x0c\xfb\x96\x5f\xfb" +"\x5f\x05\x26\x21\x1d\xf7\x90\x06\xa1\x40\x1d\x29\x06\x0b\x06\xef\xf8\x61\x05\xad\x06\xa3\x99\x95\x9d\x9a\x81\x93\x78\x1f\xfb\x06" +"\x06\x74\x7d\x80\x79\x7d\x95\x83\x9e\x1f\xa6\x26\x1d\xfb\x29\x06\xee\xf8\x61\x05\xa4\x06\xa3\x99\x95\x9d\x9a\x81\x93\x78\x1f\x20" +"\xf7\x5b\x1d\xa8\x26\x1d\xfb\x29\x06\xef\xf8\x61\x05\xa2\x3e\x1d\xfb\x03\x2b\x1d\xae\x06\x0b\xdf\x1d\x78\x7d\xd1\x1d\x74\x7c\x39" +"\x1d\xf7\x20\x06\xa2\x9a\x97\x9c\x9a\x82\x92\x77\x1f\x5c\x06\xba\xf7\x6b\x05\x0b\xf8\x84\x22\x1d\x27\xfc\x61\x05\x5a\x24\x1d\xf7" +"\x1f\x06\xa3\x99\x96\x9d\x99\x81\x93\x78\x1f\x65\x06\xef\xf8\x61\x05\xa8\x06\xa2\x9a\x1d\x79\x1f\xfc\x3e\x2b\x1d\xae\x26\x1d\x62" +"\x24\x1d\xf7\x20\x06\xa3\x99\x96\x9d\x99\x81\x93\x78\x1f\x5b\x06\xef\xf8\x61\x05\x0e\xf7\x7d\x92\x15\x28\xfb\x1e\x05\xfb\x10\x21" +"\x1d\xf7\x7d\x06\xa1\x9a\x97\x9d\xf7\x1d\x1d\x82\x91\x77\x65\x1d\xfb\xc6\x33\xf7\xc6\x05\xb7\x06\xa2\x34\x1d\xfb\x06\x33\x1d\x97" +"\x06\x0b\xf7\x01\xbe\x15\x6d\x29\x1d\xf7\x70\x06\xf7\x16\xf7\x12\xf7\x02\xf7\x23\xab\x1f\x97\xc2\x05\x90\x9f\x8d\xa0\x9c\x1a\xf7" +"\x09\x3f\xdb\xfb\x04\x1e\xfb\x70\x29\x1d\xa6\x06\x5b\xfc\x61\x15\xef\xf8\x61\x05\xf7\x43\x1d\x63\x1a\x80\x89\x7d\x89\x7f\x1e\x7b" +"\x43\x72\x23\x20\x2c\x31\x8e\x19\x0b\x5a\x1d\xc0\xf7\x86\x05\xd7\xe1\xa4\x98\xc2\x1b\xc7\xac\x71\x5b\x85\x8b\x8a\x88\x7f\x1f\x58" +"\xfb\x82\x05\x62\x06\x73\x7e\x81\x78\x7d\x95\x83\x9d\x1f\xf7\x18\x06\xa2\x99\x96\x9d\x99\x81\x93\x79\x1f\x64\x06\xbf\xf7\x82\x05" +"\x8d\x96\x8c\x93\x94\x1a\xd1\x56\xb9\x3b\x52\x0b\x40\x1d\x70\x06\xdb\xf8\x04\x05\xfb\x0e\x32\x1d\xcf\x06\x55\xfb\x8b\x05\x51\x48" +"\x4a\x7c\x1d\x0b\xf7\x08\xbd\x1d\x79\x7c\x25\x1d\x94\x06\x0b\xf8\xfb\x22\x1d\xa8\x27\x1d\xfb\x29\x20\x1d\xcf\x06\x45\xfb\xd8\x05" +"\x35\x78\x39\x48\x35\x1b\x42\x5a\xbb\xd2\x96\x8c\x95\x8d\x96\x1f\xd2\xf7\xda\x05\xd1\x06\xa1\x9a\x38\x1d\xfb\x29\x32\x1d\xa6\x06" +"\x45\xfb\xd8\x05\x88\x7b\x89\x7c\x0b\xf8\xd3\x22\x1d\xe7\x06\xa1\x9a\x38\x1d\xfb\xbc\x21\x1d\xf7\x2c\x06\x41\xfb\xeb\x05\x40\x7b" +"\x3f\x50\x3c\x1b\x5b\x63\x9f\xb6\x64\x1f\xa6\xf7\x11\x05\x8d\x94\x8b\x8b\x8e\x1a\x97\x82\x94\x7e\x7a\x81\x81\x76\x86\x1e\x6b\xfb" +"\x29\x91\x85\x05\x4d\xc4\xba\x73\xcc\x1b\xf4\xf4\xde\xee\xa0\x1f\x0b\x06\xcf\xf7\xd1\x05\xb4\x31\x1d\xfb\x1f\x06\x72\x7e\x43\x1d" +"\xba\x06\x47\xfb\xd1\x05\xfb\x94\x06\xcf\xf7\xd1\x05\xbc\x3e\x1d\xfb\x20\x3f\x1d\xb2\x06\x44\xfb\xd1\x05\x70\x24\x1d\x0b\x1f\x20" +"\x06\xfc\x12\xfc\x6f\xe7\xf8\x3c\x05\xba\x06\xa2\x99\x96\x9d\x99\x81\x93\x79\x1f\xfb\x29\x06\x73\x7d\x81\x78\x7d\x95\x83\x9d\x1f" +"\xbe\x06\x26\xfc\x61\x05\x5d\x24\x1d\xf6\x06\xf8\x10\xf8\x64\x31\xfc\x31\x05\x5d\x06\x74\x7d\x81\x79\x7c\x95\x83\x9d\x1f\xf7\x29" +"\x06\xa3\x99\x95\x9e\x0b\x61\x1d\x83\x93\x7e\x5b\x1d\x94\x83\x97\x92\x92\x8e\x92\x96\xf7\x13\x1d\xf7\x97\x16\x6f\x71\x72\x70\x74" +"\x98\x7e\xa2\xa9\xa5\xa3\xa7\xa0\x7b\x9a\x75\x1f\x0e\xf7\x0a\x1d\x9d\x9a\x83\x91\x77\x1f\xfb\x2a\x21\x1d\xe3\x06\xfb\x27\xfc\x46" +"\x73\xf7\xfe\x05\x45\x06\xfb\x4c\xfb\xfe\xb5\xf8\x46\x05\xe3\x27\x1d\xfb\x29\x06\x74\x7d\x80\x0b\x05\x44\x24\x1d\xf7\x2b\x31\x1d" +"\x71\x06\x34\xf8\x94\x05\xfb\x63\x06\x73\x7d\x80\x79\x7c\x95\x84\x9e\x1f\xf7\x01\x06\xfb\xa6\xfc\x61\x05\x6f\x24\x1d\xf7\x2a\x06" +"\xa3\x99\x96\x9d\x99\x81\x93\x78\x1f\x47\x06\x0b\x15\x84\x85\x89\x84\x83\x1f\x6e\x67\x81\x85\x7b\x1b\x80\x83\x8f\x9e\x6c\x1f\x9e" +"\x6d\x7f\x8f\x76\x1b\x71\x72\xf7\x15\x1d\xa8\xad\x95\x90\x9d\x1b\x96\x95\x87\x80\x9c\x1f\x73\xae\x9d\x84\xa2\x1b\xa6\xa4\x97\xa9" +"\xaf\x1f\x9e\x9a\x90\x92\x0b\x22\x1d\xf7\x9a\x06\x6a\xfb\x2b\x05\x89\x83\x8b\x89\x89\x1a\x80\x95\x82\x97\x9b\x96\x95\x9f\x90\x1e" +"\xb7\xf7\x60\x05\xfc\x5e\xd9\x1d\xf7\xe4\xf8\x18\x15\x8f\x9b\x8b\x8d\x8d\x1a\x9b\x81\x94\x7b\x7b\x84\x83\x72\x86\x1e\x49\xfb\xc8" +"\x05\x89\x7d\x89\x7e\x7f\x1a\x60\xa9\x71\xba\xa0\xea\x1d\x92\x8c\x92\x8f\x9f\x1f\x0b\xf7\x62\xf8\x04\x15\x48\xfb\xd1\x05\x26\x24" +"\x1d\xf7\x8e\x06\xa3\x99\x96\x9d\x99\x81\x93\x78\x1f\x29\x06\xcf\xf7\xd1\x05\xf7\xa6\x06\x6e\xfb\x16\x8a\x7d\x05\x7f\x93\x84\x98" +"\x9c\x96\x96\x9e\x8f\x1e\xb3\xf7\x4c\x05\xfc\x71\x06\x73\x7e\x81\x78\x7d\x95\x83\x9d\x1f\x0b\xf7\x35\xac\x15\x6a\xb0\xb7\x7b\xc1" +"\x1b\xf7\x2a\xf7\x1d\xf7\x15\xf7\x21\xb2\x82\xa9\x76\xab\x1f\xd5\xc8\x05\x97\x95\x8f\x91\x94\x1a\x96\x83\x93\x7f\x84\x88\x8a\x80" +"\x7e\x1e\x40\x4d\x05\xab\x67\x60\x9a\x55\x1b\xfb\x29\xfb\x1d\xfb\x15\xfb\x20\x65\x94\x6c\x9f\x6c\x1f\x3e\x4c\x05\x0b\x15\x83\x83" +"\x86\x7e\x7a\x1f\x70\x6a\x89\x8a\x7e\x1b\x7f\x81\x8f\x98\x77\x1f\xac\x57\x88\x8c\x79\x1b\x63\x45\x5a\x6f\x7f\x93\x84\x99\x93\x91" +"\x8e\x91\x92\x1f\xa1\xa2\xa4\x9a\x97\x1b\x91\x9e\x82\x84\x95\x1f\x73\xac\xa4\x80\xa0\x1b\xb1\xd3\xbc\xa5\x96\x81\x95\x80\x1f\x0e" +"\x15\x77\x7e\x7c\x75\x4a\xba\x67\xe1\xc1\xb9\x9a\xa9\xb0\xf7\x52\x1d\x80\x81\x85\x82\x87\x1e\x81\x73\x86\x84\x7d\x80\x08\x78\x74" +"\x66\x80\x65\xf7\x0f\x1d\x15\xfb\x55\xfb\x48\xfb\x40\xfb\x4c\xfb\x1c\xf2\x27\xf7\x20\xf7\x56\xf7\x48\xf7\x3f\xf7\x4d\xf7\x1d\x25" +"\xee\xfb\x22\x1f\x82\x58\x15\xf7\x08\xdf\x3a\xfb\x04\xfb\x2b\xfb\x2a\xfb\x26\xfb\x30\xfb\x0d\x37\xda\xf7\x06\xf7\x2d\xf7\x2a\xf7" +"\x24\xf7\x35\x1f\x0e\xf8\x0f\xf7\x03\x1d\xf7\x19\x3a\xe6\xfb\x0a\x1f\x84\x58\x15\xe4\xcb\x3f\x21\xfb\x2c\xf7\x29\x1d\xf7\x1c\x1f" +"\x0b\xf8\x1c\x22\x1d\xf7\x1b\x27\x1d\xfb\xd4\x20\x1d\xf7\x19\x26\x1d\xfb\x1b\x21\x1d\xf7\xd4\x06\xa2\x9a\x97\x9c\x9a\x82\x92\x76" +"\x1f\xfb\x18\x06\x0b\xf8\xb9\x15\xfb\x00\x6c\x76\x85\x85\x87\x08\x85\x87\x86\x83\x84\x1a\x82\x93\x83\x94\x8f\x8d\x8b\x8c\x8f\x1e" +"\xcc\x9f\x54\xfb\x97\x05\x8c\x75\x75\x8b\x7c\x1b\x73\x7d\x82\x7b\x80\x93\x85\x97\x1f\xf7\x46\x06\x9a\xf7\x5f\x1d\x0b\xf7\x56\x1d" +"\x88\x8f\x84\x91\x1f\x63\xac\x78\xa1\x6d\xbc\x88\x8f\x88\x90\x88\x90\x08\x88\x90\x87\x91\x8b\x1a\x98\x84\x88\x8e\x82\x1b\x84\x87" +"\x87\x79\x81\x1f\x6a\x52\x72\x6b\x67\x6f\x08\x7e\x80\x88\x86\x85\x1a\x81\x92\x84\x93\x99\x0b\x86\x82\x1a\x80\x93\x83\x97\x91\x91" +"\x8e\x93\x95\x1e\xf8\x3e\xf7\xf2\x15\x99\x74\x91\x75\x6e\x1a\xfb\x00\xfb\x00\x25\xfb\x08\x61\x6e\x95\xa3\x6d\x1e\x70\xaa\x15\x7c" +"\xaa\x87\x9a\xa5\x1a\xf7\x01\xf6\xf0\xf7\x08\xb5\xa7\x82\x74\xa9\x1e\x0b\xf7\x7b\xf8\x37\x15\x3a\x06\x73\x7d\x81\x78\x7c\x95\x84" +"\x9e\x1f\xa6\x06\x46\xfb\xd1\x5a\x1d\xbf\xf7\x84\x05\xd4\xdb\xab\x9d\xc2\x1b\x0b\xf5\x1d\x87\x1a\x80\x95\x82\x97\xf7\x18\x1d\x0e" +"\xf8\x08\xf8\x37\x15\xfb\x3a\x20\x1d\xf7\x04\x06\x46\xfb\xd1\x05\xfb\x30\x21\x1d\xf7\xfe\x2a\x1d\xfb\x2e\x06\x0b\x94\x84\x9f\x1f" +"\xcf\x06\x2d\xfc\x43\xfb\x54\xf8\x76\x05\xfb\x02\x20\x1d\xbb\x58\x1d\x0b\xf8\x37\x15\xfb\x3a\x20\x1d\xf7\x04\x06\x46\xfb\xd1\xf1" +"\x1d\x0b\x94\x84\x9f\x1f\xba\x06\x61\xfb\x57\x05\xfb\x97\x06\xb5\xf7\x57\x05\xbc\x06\xa2\x6b\x1d\x78\x7d\x25\x1d\x9e\x26\x1d\x62" +"\x06\x0b\xf7\x65\xf7\x22\x1d\x89\x92\x80\x1f\xf2\xfb\x35\xfb\x42\xfb\x35\x05\x7d\x7e\x88\x86\x81\x1a\x7f\x94\x82\x98\x93\x92\x8e" +"\x94\x96\x1e\x0b\xda\x1d\x67\x90\x1f\x0e\xf7\x04\x1d\xe1\x35\x05\x83\x92\x8f\x89\x92\x1b\x9b\x9b\x99\x9a\x93\x8a\x8d\x80\x95\x1f" +"\x0e\xe5\x1d\x8e\x91\x95\x1e\xf7\x0e\xdf\xe1\x6e\x1d\x9b\x92\x8a\x8e\x81\x94\x1f\x0e\x25\x1d\xd2\x06\x46\xfb\xd1\x05\x3c\x21\x1d" +"\xf7\x58\x06\x0b\x06\xb5\xf7\x57\x05\xf7\xc3\x06\x78\x31\x05\x8a\x86\x8a\x87\x87\x63\x1d\xaa\xf7\x23\x05\xfc\x5d\x21\x1d\xbb\x06" +"\x0b\xf7\x52\x1d\x7c\x85\x86\x77\x83\x1e\x65\x7b\x5b\x73\x50\xf7\x0f\x1d\x06\x75\x7c\x7f\x79\x7d\xf7\x39\x1d\x7f\x79\x7c\x93\x85" +"\x9f\x1f\xf7\x7e\x06\xa2\x99\x96\x9e\x99\x82\x92\x77\x1f\x32\x06\x0e\x94\x85\x7f\x7d\x7a\x80\x74\x7a\x7d\x8f\x95\x79\x1f\x8f\x85" +"\x89\x8b\x82\x1b\x7b\x80\x81\x7b\x7f\x90\x84\x96\x84\x1f\x81\x9d\xa7\x84\xa0\x1b\xc5\xb6\xae\xb9\xac\x79\x9d\x0b\x15\xfb\x2f\xfb" +"\x01\x05\x7c\x84\x85\x82\x7f\x1a\x7f\x95\x82\x97\x8f\x98\x90\x8f\x90\x1e\xf7\x0d\xe2\xe1\x35\x05\x83\x92\x90\x89\x92\x1b\x9a\x9b" +"\x9a\x99\x93\x8a\x8d\x0b\xf7\x6f\x15\x98\x94\x91\x95\x96\x1a\x97\x83\x93\x7e\x84\x84\x88\x84\x81\x1e\xfb\x1b\x2b\x05\x7e\x81\x85" +"\x82\x80\x1a\x7f\x94\x83\x97\x92\x93\x8e\x92\x95\x1e\x0e\x15\x6f\x71\x72\x70\x76\x9a\x7c\xa1\xa8\xa4\xa3\xa7\xa0\xf7\x4e\x1d\x9b" +"\x7c\xa0\xa8\xa4\xa3\xa7\xa0\x51\x1d\xf9\x06\x15\x93\x83\x86\x8e\x84\x1b\x7a\x7d\x7d\x7b\x85\x8e\x86\x50\x1d\x83\x92\x91\x88\x92" +"\x1b\x9a\x9b\x99\x99\x8e\x84\x99\x87\x8e\x1f\x0e\xef\xf8\x61\x05\xa0\x06\xa1\x6b\x1d\x0b\x81\x7b\xa0\x1f\x95\x83\xa3\x70\x87\x1a" +"\x89\x67\x05\x85\x97\x82\x95\x9c\x95\x95\x9f\x8f\x1e\x9f\xe5\x05\x8d\x94\x8b\x8b\x8f\x1a\x96\x82\x94\x7e\x7b\x80\x0b\x15\x4c\x51" +"\x56\x51\x5f\xad\x6a\xb9\xc9\xc5\xc1\xc5\xb5\x68\xad\x5f\x1f\x84\x63\x15\xa5\x9e\x7b\x74\x67\x68\x6a\x65\x72\x77\x9c\xa0\xb1\xac" +"\xab\xb3\x1f\x0b\xf7\x31\x1d\x78\x7d\x25\x1d\xd2\x06\x46\xfb\xd1\x05\x3c\x21\x1d\x0b\x15\x94\x83\x86\x8d\x84\x1b\x7b\x7c\x7d\x7c" +"\x85\x8e\x84\x92\x85\x44\x1d\x92\xf0\x1d\x37\x1d\xf2\x1d\x0b\x15\xfb\x32\xfb\x01\x05\x7b\x4e\x1d\x91\x0b\x33\x1e\xfb\x97\x20\x1d" +"\xbb\x06\x95\xfb\x57\x15\xb5\xf7\x57\x05\xf7\x34\x06\xc8\xb6\x6b\x5c\x70\x7a\x0b\xf7\x7f\xf7\x2d\x15\xfb\x11\xfb\x8c\x05\x88\x84" +"\x89\x85\x85\x1a\x7b\x97\x7f\x9c\x9a\x94\x91\x9f\x9b\x1e\xf7\x64\xf7\xa1\x05\x0e\x8a\x7c\x05\x7b\x95\x80\x9a\x99\x94\x96\xa1\x90" +"\x1e\x96\xc0\x05\x8d\x94\x8c\x93\x8e\x1a\x9b\x7b\x94\x6e\x45\x74\x7c\x22\x36\x1e\x0b\xf8\x92\xf7\xf1\x15\xc4\x6c\x5b\xa6\x46\x1b" +"\xfb\x1b\xfb\x13\xfb\x0f\xfb\x17\x28\xd2\x45\xef\xd0\xc5\xa5\xc3\xc3\x1f\x73\x20\x0b\x9f\x8f\x92\xa0\x1e\xa2\x94\x96\x97\x9b\x1a" +"\x98\x82\x94\x7e\x86\x86\x8a\x88\x85\x1e\x80\x73\x7a\x87\x79\x1b\x7b\x83\x91\x99\x0b\x82\x93\x7f\x5b\x1d\x94\x83\x97\x92\x92\x8e" +"\x92\x96\x1e\x0e\x06\x46\xfb\xd1\x05\x62\x06\x75\x7c\x7f\x7a\x7c\x94\x84\x9f\x1f\xf7\x17\x06\xa1\x9a\x97\x9c\x9a\x82\x92\x78\x1f" +"\x64\x06\x0b\xc2\xf7\x93\x05\x8d\x93\x8c\x94\x91\x1a\xc9\x51\xb5\x36\x65\x2b\x78\x7d\x68\x1e\x7c\x85\x84\x81\x7f\x1a\x7f\x94\x82" +"\x96\x0b\x1a\x6b\xa5\x78\xb6\xb9\xb8\xa1\xa1\x94\x84\x93\x82\x88\x87\x8a\x88\x86\x1e\x7e\x71\xf7\x45\x1d\x0b\x81\x82\x86\x81\x82" +"\x1e\xfb\x03\xfb\x10\x05\x81\x80\x88\x85\x82\x1a\x81\x64\x1d\x91\x88\x91\x1b\x9c\x9a\x99\x9b\x90\x8b\x8b\x80\x98\x1f\x0e\x05\xfb" +"\x30\x21\x1d\xf7\xfe\x06\xa2\x34\x1d\xfb\x2e\x06\x0b\x25\x1d\xbb\x26\x1d\x59\x20\x1d\xf7\x3e\x2f\x1d\x0b\xf9\x08\xf7\x94\x15\xa1" +"\x9a\x96\x9e\x35\x1d\xfc\xb4\x29\x1d\x0e\x2b\x1d\xc0\x06\x47\xfb\xd1\x05\x59\x24\x1d\x0b\x86\x1e\x6e\xfb\x1a\x05\xfb\xc1\x06\xf8" +"\x3b\xf8\x53\x99\xcc\x05\xfb\xfc\x06\x68\xfb\x35\x05\x89\x82\x8b\x8b\x0b\xf7\x1f\x1d\x7f\x8f\x95\x78\x1f\x90\x82\x88\x8c\x86\x1b" +"\x7b\x7d\x7e\x7b\x78\x0b\x78\x1f\xfb\x18\x06\xbc\xf7\x76\x15\xbe\xf7\x7f\x05\xf7\x24\x06\xcd\xbc\x63\x56\x40\x34\x48\x2b\x1f\x0e" +"\x05\x62\x3f\x1d\xf7\x18\x06\xa2\x99\x95\x9e\x9a\x81\x92\x78\x1f\x65\x06\x0b\x05\xb8\x06\xa1\x9a\x97\x9d\x9a\x82\x91\x78\x1f\xfb" +"\x07\x06\x74\x7d\x39\x1d\x97\x06\x0b\xf8\xd3\x15\xfb\x3c\xfb\x32\xfb\x46\xfb\x52\xfb\x17\xdc\x2f\xf7\x08\xf7\x3e\xf7\x32\xf7\x45" +"\xf7\x52\x0b\x15\xfb\x30\xfb\x01\x05\x7c\x84\x85\x82\x7f\x1a\x7f\x95\x82\x97\x8f\x98\x90\x8f\x90\x1e\xf7\x0e\xe2\x0b\x9a\x96\x92" +"\x9b\x98\x1e\xf7\x57\xf7\x87\x05\xd9\x16\xfb\x0c\xfb\x73\x05\x87\x84\x8a\x86\x86\x1a\x7c\x0b\x90\x8d\x92\x95\x1e\xf7\x0f\xdf\xe1" +"\x6e\x1d\x9a\x93\x89\x8e\x0b\x99\x1d\x94\x8e\x91\x91\x1e\xa7\xad\x95\x91\x9d\x1b\x96\x0b\x15\x91\x7f\x93\x82\x77\x7e\x7b\x71\x51" +"\xbe\x65\xd9\x0b\xf7\x73\x15\x98\x95\x91\x93\x94\x1a\x98\x82\x94\x7f\x82\x87\x89\x83\x80\x41\x1d\x0b\x16\xd4\x06\xf7\x54\xf8\x0d" +"\xa5\xfc\x0d\x05\xd4\x06\xf7\x41\xf8\x94\x05\x96\x06\xa1\x9a\x97\x0b\x1b\x29\x43\xd3\xed\x99\x8d\x99\x8e\x9a\x1f\x9a\xd0\x05\xf7" +"\x06\xa3\xf7\x01\xe8\xf7\x00\x1b\x0b\x97\x1d\xaf\x1f\x96\x06\xbb\xb5\xb2\xb7\xac\x72\xa2\x66\x1f\x0e\x1e\xfb\x1c\x29\x05\x7c\x80" +"\x87\x85\x80\x1a\x7f\x94\x82\x98\x92\x90\x8d\x93\x97\x1e\x0e\x87\x1a\x89\x6d\x05\x84\x97\x82\x94\x9c\x96\x95\xa0\x8f\x1e\x9a\xcf" +"\x05\x8d\x94\x8b\x8b\x0b\x1b\x62\x60\xa0\xa0\x89\x1f\x89\xab\x8b\x8b\x87\x90\x08\x91\x87\x86\x8d\x85\x1b\x0e\xf9\x56\xf7\x19\x1d" +"\x05\x8d\x94\x8b\x8b\x8f\x1a\x96\x82\x94\x7e\x7a\x81\x81\x76\x86\x1e\x73\xfb\x04\x05\x0b\x15\x84\x85\x89\x84\x83\x1f\x6e\x67\x81" +"\x9f\x1d\x6d\x0b\x1e\x27\xd9\x15\x6e\x72\x73\x6f\x74\x98\x7e\xa2\xa9\xa4\xa3\xa7\xa0\x7c\x9a\x75\x1f\x0b\xfb\x90\x05\x80\x07\x78" +"\x96\x7f\x9c\x9f\x98\x97\xa6\x95\x1e\xe5\xf7\x93\x05\x0e\x80\x71\x68\x99\x1d\x94\x8e\x91\x91\x1e\x0b\x86\x8b\x87\x8a\x88\x1f\x7d" +"\x4b\x05\x99\x58\x6c\x90\x5e\x1b\xfb\x23\xfb\x00\x40\x0b\x25\x1d\x97\x06\xf7\x13\xfb\x73\xfb\x81\xfb\x82\x05\x7c\x06\x74\x7d\x80" +"\x0b\x9b\x96\x96\x9f\x90\x1e\xa3\xf7\x04\x05\xf7\x93\x06\xfc\x3a\xfc\x52\x7d\x49\x05\x0b\x15\x6a\xf7\x3a\x1d\x70\x1f\x0e\x16\x69" +"\x6b\x42\x1d\xae\x8c\x1d\x0e\x1b\xa5\xa4\x97\xa9\xb0\x1f\x9e\x9b\x8f\x91\x95\x1a\x97\x81\x94\x7f\x1e\x0e\x8c\x8f\x8f\x1a\x94\x86" +"\x92\x80\x91\x1e\xfb\xed\xf7\x50\xf7\xee\xf7\x50\x05\x0b\x9a\x83\x91\x77\x1f\x55\x06\xf7\xfb\xf8\x87\x05\x95\x2f\x1d\x9a\x0b\xef" +"\xf7\x66\x15\xf7\x3d\xfb\x59\x05\x82\x93\x92\x87\x93\x1b\x9b\x99\x99\x9b\x0b\xa6\x06\xa3\x97\x86\x81\x7c\x78\x7f\x71\x7c\x0b\xf7" +"\x2e\x1d\x95\x8c\x8b\x0b\x08\x78\x93\x7d\x9b\x9a\x1a\xb4\xcc\xae\xd7\xaf\xaa\x84\x7f\x9e\x1e\x94\x0b\x15\xfb\x3c\xf7\x59\x05\x94" +"\x83\x84\x8f\x83\x1b\x7b\x7d\x7d\x7b\x86\x8c\x0b\x15\x3b\x40\x42\x3d\x51\xb5\x61\xc5\xdc\xd6\xd4\xd9\xc5\x61\xb5\x50\x1f\x0b\x15" +"\xfb\x32\xf7\x40\x1d\x91\x91\x0b\x93\x9f\x72\x1e\x90\x85\x88\x8c\x86\x1b\x7e\x80\x80\x7e\x74\xc5\x6f\xbb\x0b\x95\x83\x9d\x1f\xf7" +"\x20\x06\xa3\x99\x96\x9d\x99\x81\x93\x78\x1f\x5c\x06\x0b\x88\x1a\x7e\x93\x84\x98\x9c\x96\x95\x9f\x90\x1e\xad\xf7\x22\x05\x0e\x15" +"\x9b\x98\x8e\x8f\x96\x1a\x97\x82\x94\x7e\x84\x83\x88\x84\x82\x1e\x0b\xfb\x17\xfb\x2f\xfb\x15\x2c\x4b\xd4\xf7\x00\xf7\x32\xf7\x16" +"\xf7\x2a\x0b\x49\x4c\x52\x4e\x73\x93\x7a\x9f\x7b\x1e\x5e\x71\x74\x67\x62\x1a\x0b\xf7\x5d\x1d\xfc\xce\x06\x76\x80\x82\x0b\x15\xfb" +"\x33\xf7\x40\x1d\x0b\x41\x1d\x7d\x81\x86\x84\x80\x1a\x7f\x94\x82\x98\x92\x0b\xbf\x05\xb9\x95\xae\xae\xae\x1b\x99\x9f\x87\x85\x9f" +"\x1f\x87\x0b\x82\x92\x77\x1f\xfb\x0e\x06\xab\xf7\x2a\x05\x8d\x91\x8b\x8d\x0b\x97\x1d\xb0\x1f\x95\x06\xbb\xb5\xb2\x0b\x1b\x4c\x4d" +"\x52\x42\x7b\x1f\x80\x55\x05\x42\x06\x74\x7d\x80\x0b\x77\x1f\x58\x06\xf7\x57\xf7\x58\xf7\x04\xfb\x58\x05\x56\x06\x0b\xb8\xba\x1a" +"\xae\x80\xa8\x77\xa1\x1e\xab\x6e\x45\x9f\x3a\x1b\x0b\x94\x82\x98\x9b\x96\x95\x9f\x8f\x1e\x0b\x7f\x7a\x70\x4f\xbe\x63\xd8\xbf\xb9" +"\x9c\xa9\xad\x1e\xa4\x0b\x05\x8a\x86\x6c\x1d\x9b\x96\x95\x0b\x06\x76\x33\x05\x8a\x86\x8a\x87\x87\x1a\x7e\x93\x84\x98\x0b\x15\x7e" +"\x87\x87\x75\x7a\x1f\x6a\x73\x75\x7b\x75\x1b\x7b\x0b\x25\x1d\xe5\x06\x27\xfc\x61\x05\x2f\x06\x74\x7d\x0b\x6a\x6b\x6b\x72\x9f\x77" +"\xa3\xae\xac\xaa\xac\xa5\x78\x9e\x0b\xac\x1a\xbb\x81\xac\x76\xa2\x1e\xa1\x77\x6c\x98\x6b\x1b\x0b\xf7\x47\x1d\x0e\x06\x33\x66\x84" +"\x71\x64\x1f\x47\x5e\x68\x40\x27\x1a\x0b\xf7\x35\xf7\x43\xf7\x36\x05\x99\x98\x8e\x8f\x95\x1a\x0b\x15\xfb\x0b\xfb\x73\x05\x88\x85" +"\x89\x85\x86\x1a\x7c\x0b\xfb\x01\x05\x7b\x81\x86\x85\x7f\x1a\x7f\x94\x82\x98\x0b\x9f\x1a\x97\x82\x94\x7e\x7c\x81\x83\x79\x85\x1e" +"\x64\x0b\x25\x06\x74\x7d\x80\x79\x7b\x93\x85\xa0\x1f\xba\x06\x0b\xf7\x1e\x06\xc0\xac\x7d\x6a\xa4\x1f\xa2\x6d\x98\x64\x0b\x1b\x9b" +"\x9b\x9a\x99\x93\x8a\x8d\x80\x95\x1f\x0e\x86\x89\x79\x1b\x76\x80\x91\x97\x0b\xf7\x4f\x1d\x30\x0b\x88\x1a\xf7\x57\x1d\x0b\x8b\x8b" +"\x8e\x1a\x97\x82\x93\x7e\x7a\x81\x81\x77\x0b\x15\x4e\x3b\x53\x74\x43\x1b\x52\x6a\xa2\xb4\xcc\x0b\x15\x4d\x51\x55\x51\x60\xad\x6a" +"\xb9\xca\xc5\xc1\x0b\x1f\xf7\x49\xab\x15\xdf\xc4\x57\x3f\x28\x24\x2d\x0b\x9d\x35\x1d\xfc\x26\x06\x74\x7d\x80\x0b\x77\x1f\x47\x06" +"\xe8\xf8\x42\xf7\x54\xfc\x75\x05\x0b\x7c\x9a\x75\x1f\xf7\x62\x16\x6f\x71\x72\x70\x76\x0b\x7d\x08\x9c\x80\x97\x78\x7b\x1a\x57\x3e" +"\x5f\x0b\x8b\x82\x6d\x69\xfb\x08\x18\x88\x81\x8a\x84\x0b\x15\x43\x48\x49\x45\x57\xb1\x65\xbf\xd4\xce\x0b\x1f\xa7\xa2\x9d\xa7\xa0" +"\x1a\x98\x82\x93\x7c\x0b\x15\x45\x06\x73\xfb\x05\x05\xd0\x06\x0e\x7e\x93\x84\x98\x9c\x96\x96\x0b\x8a\x85\x8a\x87\x88\x1a\x80\x0b" +"\x9a\x1b\x93\x92\x92\x94\x92\x0b\x7e\x96\x80\x98\x99\x93\x93\x9e\x8f\x1e\x0b\x06\xa0\x96\x95\xa0\x96\x83\x90\x7b\x1f\x0b\x06\xa1" +"\x96\x94\x9c\x9b\x80\x94\x75\x1f\x0b\x06\xa2\x99\x95\x9d\x9a\x81\x93\x79\x1f\x0b\x06\x74\x7d\x81\x78\x7c\x95\x84\x9e\x1f\x0b\x8e" +"\x1a\x97\x82\x94\x7e\x7b\x80\x81\x77\x0b\x15\xa1\x96\x94\x9c\x9b\x80\x94\x75\x1f\x0b\x15\x7b\x7f\x81\x7d\x80\x92\x85\x99\x1f\x0b" +"\x97\x96\x98\x96\x84\x91\x7f\x1f\x47\x06\x0b\x6a\x80\x7a\x49\x7f\x1e\x67\xfb\x66\x05\x0b\xf0\xd0\xe4\xa4\x7d\xa7\x76\x9b\x1f\x6f" +"\x0b\x82\x98\x92\x8b\x8b\x95\x9c\x1e\x0e\x01\x00\x01\xe3\x01\x05\x00\x01\x0a\x02\x01\x40\x03\x01\x87\xff\x02\x87\xa0\x02\x8e\x02" +"\x00\x01\x00\x02\x00\x03\x00\x42\x00\x61\x00\xf1\x01\xc7\x02\x27\x02\xa4\x02\xab\x02\xf9\x03\x40\x03\xad\x03\xe1\x03\xe3\x03\xe5" +"\x03\xec\x04\x17\x04\x7a\x04\xa9\x05\x04\x05\x74\x05\xb6\x06\x1d\x06\x87\x06\xbf\x07\x1b\x07\x8b\x07\xab\x07\xbe\x07\xf7\x08\x12" +"\x08\x5c\x08\xba\x09\x5c\x09\x5f\x09\x83\x09\x9e\x09\xa1\x09\xa4\x09\xe1\x09\xe4\x09\xe7\x09\xea\x09\xed\x09\xf0\x09\xf3\x0a\x30" +"\x0a\x39\x0a\x3c\x0a\x57\x0a\xf2\x0a\xf5\x0a\xf8\x0a\xfb\x0a\xfe\x0b\x2b\x0b\x5e\x0b\x9f\x0b\xa2\x0b\xb2\x0b\xd1\x0b\xfc\x0c\x20" +"\x0c\x54\x0c\x5a\x0c\x74\x0c\x77\x0c\xbd\x0c\xc0\x0c\xe1\x0c\xe4\x0d\x2f\x0d\x39\x0d\x3c\x0d\x44\x0d\x48\x0d\x4b\x0d\x4e\x0d\xd8" +"\x0d\xdb\x0d\xde\x0e\x01\x0e\x5d\x0e\x60\x0e\x7e\x0e\x81\x0e\x8f\x0e\xb9\x0e\xbc\x0e\xdc\x0e\xdf\x0e\xf8\x0f\x73\x0f\x7e\x0f\xf8" +"\x10\x25\x10\x67\x10\xee\x11\x78\x11\x7a\x11\xf4\x12\x5d\x13\x2b\x13\xc9\x13\xd2\x14\x05\x14\x4e\x14\x66\x14\x6b\x14\xb8\x14\xfa" +"\x15\x0a\x15\x22\x15\x53\x15\x55\x15\xc5\x15\xdc\x15\xde\x15\xfa\x16\x16\x16\x3e\x16\x4d\x16\x8c\x16\xee\x16\xf2\x16\xf8\x16\xfe" +"\x17\x0c\x17\x12\x17\x18\x17\x1e\x17\x22\x17\x2d\x17\x3d\x17\x43\x17\x57\x17\x5d\x17\x5f\x17\x62\x17\xd7\x18\x36\x18\x39\x18\xb2" +"\x18\xdd\x18\xe0\x18\xe3\x19\x3b\x19\x43\x19\xc8\x1a\x48\x1a\x7e\x1a\x9e\x1a\xf3\x1b\x92\x1b\x94\x1c\x14\x1c\x60\x1c\x94\x1d\x3a" +"\x1d\x69\x1d\x9c\x1d\xc7\x1d\xe7\x1e\x80\x1e\xdb\x1f\x49\x1f\x57\x1f\xd2\x20\x34\x20\x60\x20\xdc\x20\xfe\x21\x17\x21\x24\x21\x3f" +"\x21\x62\x21\x9a\x21\xfc\x22\x0e\x22\x28\x22\x30\x22\x38\x22\x40\x22\x69\x22\x89\x22\xa9\x22\xe6\x23\x0b\x23\x26\x23\x33\x23\x55" +"\x23\xc7\x24\x3d\x24\x44\x24\x4b\x24\x5b\x24\x6b\x24\x73\x24\x88\x24\x96\x24\xb3\x24\xc3\x25\x1b\x25\x3c\x25\x53\x25\xe3\x26\x2e" +"\x26\x35\x26\x45\x26\x8c\x26\xa9\x26\xb7\x26\xc5\x26\xcc\x26\xee\x27\x85\x27\xa7\x27\xb8\x27\xcb\x27\xd2\x27\xf4\x28\x5f\x28\x71" +"\x28\x87\x28\x9a\x28\xb3\x28\xbb\x28\xd3\x29\x0e\x29\x7f\x29\xa6\x29\xfc\x2a\x56\x2a\xb4\x2b\x07\x2b\xc1\x2c\x19\x2c\x2b\x2c\x33" +"\x2c\x35\x2c\x7b\x2c\x83\x2c\xc0\x2c\xdd\x2c\xdf\x2c\xe6\x2c\xed\x2c\xf8\x2d\x00\x2d\x02\x2d\x09\x2d\x0b\x2d\x26\x2d\x2e\x2d\x36" +"\x2d\x3d\x2d\x45\x2d\x8a\x2d\xd6\x2d\xd8\x2e\x53\x2e\x55\x2e\xac\x2f\x58\x2f\x5c\x2f\x72\x2f\x85\x2f\x98\x2f\xa5\x2f\xfc\x30\x26" +"\x30\x8a\x30\x91\x30\x98\x30\xa0\x30\xd2\x30\xd4\x30\xfd\x31\x26\x31\x2e\x31\x39\x31\x76\x31\x7e\x31\x86\x31\x95\x31\xba\x31\xc1" +"\x31\xdd\x31\xdf\x31\xe7\x31\xee\x31\xf5\x31\xfe\x32\x05\x32\x0c\x32\x14\x32\xad\x32\xaf\x33\x23\x33\x2b\x33\x97\x33\x99\x34\x0a" +"\x34\x12\x34\x19\x34\x20\x34\x22\x34\x29\x34\x61\x34\x68\x34\x70\x34\xc1\x34\xc3\x35\x5b\x35\x62\x35\x97\x36\x33\x36\x3b\x36\x42" +"\x36\x49\x36\x86\x36\x89\x36\xec\x37\x37\x37\x3f\x37\x46\x37\x58\x37\x6c\x37\x87\x37\xac\x38\x71\x38\x79\x38\xa3\x38\xbc\x38\xc5" +"\x38\xdc\x38\xe4\x38\xf5\x38\xf7\x38\xf9\x39\x1a\x39\x1c\x39\x20\x39\x8e\x39\x90\x3a\x16\x3a\x63\x3a\xff\x3b\x02\x3b\x48\x3b\x4b" +"\x3b\xa2\x3b\xa4\x3b\xa6\x3b\xa8\x3b\xaa\x3b\xac\x3b\xe4\x3b\xe6\x3b\xe9\x3c\x87\x3c\x89\x3c\xa8\x3c\xd2\x3c\xe0\x3d\x00\x3d\x53" +"\x3d\x99\x3d\xac\x3e\x34\x3e\xb2\x3f\x19\x3f\x31\x3f\xba\x40\x18\x40\xb0\x41\x08\x41\x0a\x41\x24\x41\x60\x41\xe0\x42\x3d\x42\xbe" +"\x42\xd0\x43\x03\x43\x6d\x43\xe1\x44\x37\x44\x3a\x44\xa8\x44\xdc\x45\x2d\x46\x01\x46\x37\x46\x3a\x46\x68\x46\x6a\x46\xcb\x47\x10" +"\x47\x56\x47\x5b\x47\x80\x47\xc7\x48\x1b\x48\x65\x48\x68\x49\x15\x49\x23\x49\x3b\x49\x7f\x49\x8d\x49\xab\x4a\x05\x4a\x5b\x4a\x8e" +"\x4b\x14\x4b\x74\x4b\xd6\x4c\x0c\x4c\x70\x4c\x76\x4c\xe9\x4d\x51\x4d\x59\x4d\x92\x4d\x96\x4e\x0b\x4e\x81\x4e\xa4\x4e\xa9\x4f\x2d" +"\x4f\x4b\x4f\x4d\x4f\x9c\x50\x7e\x51\x1c\x51\xbb\x52\x31\x52\xa5\x52\xac\x52\xe0\x53\x14\x53\x75\x53\xe0\x53\xfb\x54\x4a\x54\x90" +"\x54\xd6\x54\xe2\x55\x2f\x55\x7d\x55\xd4\x56\x5e\x56\x65\x56\x7c\x56\xa1\x56\xa8\x56\xf7\x57\x6d\x57\xd9\x58\x1f\x58\x7c\x58\xe4" +"\x59\x08\x59\x0e\x59\x16\x59\x2e\x59\x35\x59\x74\x59\x7b\x59\xd4\x5a\x10\x5a\x85\x5b\x13\x5b\x4b\x5b\xa0\x5b\xd5\x5c\x1a\x5c\x9b" +"\x5c\xb5\x5c\xfb\x5d\xf2\x5e\x34\x5e\x3b\x5e\x58\x5e\x73\x5e\x83\x5e\xe5\x5f\x55\x5f\x5d\x5f\x93\x5f\xb7\x5f\xe5\x60\x34\x60\x3c" +"\x60\xa7\x60\xf7\x61\x25\x61\x53\x61\xb4\x62\x1b\x62\x58\x62\x5b\x62\x8c\x62\xdb\x62\xe5\x62\xef\x63\x0a\x63\x55\x63\x5c\x63\xa5" +"\x63\xad\x63\xd9\x63\xe6\x63\xed\x64\x09\x64\x5b\x65\x1b\x65\x5c\x65\xd6\x65\xdb\x66\x1d\x66\xa6\x66\xc1\x67\x0b\x67\x13\x67\x1a" +"\x67\xa3\x68\x06\x68\x4f\x68\x75\x68\x7c\x68\x84\x68\x87\x68\x9e\x68\xa3\x69\x04\x69\x10\x69\x1c\x69\x7f\x6a\x2c\x6a\xae\x6a\xd4" +"\x6b\x0a\x6b\x5f\x6b\xb2\x6c\x2c\x6c\xb4\x6c\xbc\x6c\xf2\x6c\xf9\x6d\x00\x6d\x19\x6d\x6c\x6d\x74\x6d\xaf\x6d\xb7\x6d\xbf\x6d\xd8" +"\x6e\x13\x6e\x9f\x6e\xe5\x6f\x61\x6f\xdb\x70\x28\x70\xad\x70\xb9\x70\xda\x71\x39\x71\x4e\x71\x56\x71\x5d\x71\x64\x71\x7e\x71\x7f" +"\x71\x81\x71\x89\x71\x91\x71\x97\x71\x99\x71\xb6\x72\x2d\x72\x8e\x73\x12\x73\x3d\x73\x69\x73\xb3\x73\xdb\x74\x02\x74\x42\x74\x9c" +"\x75\x7e\x76\x25\x76\x66\x76\xd7\x77\x6b\x77\xca\x78\x73\x78\x9e\x78\xa0\x78\xc1\x78\xfe\x79\x23\x79\x70\x79\x73\x79\x98\x79\xd4" +"\x7a\x08\x7a\x1e\x7a\x35\x7a\x46\x7a\x5c\x7a\xaa\x7b\x1c\x7b\x69\x7b\x7f\x7b\x81\x7b\xaa\x7b\xd3\x7c\x2c\x7c\x33\x7c\x3b\x7c\x8f" +"\x7c\x91\x7c\x99\x7c\xa1\x7c\xa7\x7d\x82\x7d\xf2\x7d\xf4\x7d\xf6\x7e\x0d\x7e\x2b\x7e\x86\x7e\x9c\x7e\xfd\x7f\x2a\x7f\x5a\x7f\xaa" +"\x7f\xbe\x7f\xf0\x80\x02\x80\x0e\x80\x40\x80\x5e\x80\xa6\x80\xab\x80\xb0\x81\x4a\x81\x5a\x81\x78\x81\x89\x81\x91\x82\x03\x0e\x0e" +"\xf8\x63\xf8\xc0\x15\x8f\x97\x8d\x96\x8f\x1a\x9e\x7a\x99\x76\x6c\x78\x78\x64\x85\x1e\x58\xfb\xd4\x05\x8a\x86\x8b\x86\x88\x1a\x80" +"\x95\x82\x96\x9b\x28\x1d\x4c\xfb\x22\x15\x65\x6a\x6d\x68\x71\x9f\x79\xa8\x1f\x97\x06\xb2\xac\xa9\xae\xa5\x77\x9d\x6d\x1f\x0e\xf7" +"\xa2\xf8\xef\x15\x76\xfb\x90\x05\x80\x07\x78\x96\x7f\x9c\xa0\x97\x97\xa6\x95\x1e\xe5\xf7\x93\x05\xb2\x16\x77\xf7\x14\x1d\xf8\x6a" +"\xf7\xf1\x15\xe2\x06\x53\x0a\x3a\x06\xc8\xf7\x66\x05\x8c\x91\x8c\x90\x8e\x28\x0a\x7c\x81\x82\x77\x85\x1e\x4d\xfb\x6c\x05\x3b\x06" +"\xc8\xf7\x66\x05\x8e\x95\x8b\x8c\x8f\x1a\x96\x81\x94\x7f\x7c\x81\x82\x77\x85\x1e\x4d\xfb\x6c\x05\x3e\x32\x1d\xd2\x06\x6a\xfb\x05" +"\x05\x36\x21\x1d\xdb\x06\x4e\xfb\x67\x05\x88\x81\x8b\x8b\x86\x1a\x80\x95\x82\x97\x9a\x96\x95\x9e\x90\x1e\xca\xf7\x6d\x05\xda\x06" +"\x4f\xfb\x67\x05\x89\x84\x8a\x88\x87\x1a\x7f\x94\x82\x98\x9a\x95\x94\x9f\x91\x1e\xc9\xf7\x6d\x05\xda\x06\xa1\x34\x1d\x43\x06\x78" +"\xf7\x05\x15\x6a\xfb\x05\x05\x3b\x06\xac\xf7\x05\x05\x0e\xf8\x23\xf8\xd3\x15\x2a\x7f\x3a\x3f\x3b\x1a\x6e\x97\x70\x9f\x7c\x1e\xa2" +"\x7a\xa6\x81\xca\x7f\xcb\x7e\x9a\x87\x9d\x7e\x08\x99\x82\x94\x78\x79\x1a\x49\x40\x56\x30\x5e\x68\x95\x9f\x76\x1e\x7e\x97\x80\x98" +"\x8e\x1a\x8d\xa9\x05\x91\x7f\x94\x82\x7b\x80\x81\x76\x87\x1e\x7a\x3e\x05\x8a\x86\x8a\x86\x88\x1a\x80\x95\x82\x97\x9b\x95\x95\x9f" +"\x90\x1e\x8c\x90\x9d\x75\xbc\x76\xb1\x89\x19\x74\xfb\x03\x05\x8a\x87\x8a\x86\x88\x1a\x7f\x94\x82\x98\x9b\x28\x1d\xa3\xf7\x05\x05" +"\xf7\x0a\x97\xdf\xd5\xe6\x1a\xa8\x7e\xa8\x77\x9b\x1e\x73\x9e\x72\x93\x44\x99\x51\x97\x7a\x90\x7a\x96\x08\x7e\x93\x83\x9c\x9c\x1a" +"\xc4\xd1\xc2\xd5\xaa\xad\x81\x7c\x9e\x1e\x96\x83\x94\x7e\x85\x1a\x8a\x78\x05\x83\x96\x82\x95\x9c\x28\x1d\x98\xc5\x05\x8d\x95\x8b" +"\x8b\x8e\x1a\x96\x82\x94\x7e\x7e\x80\x82\x7c\x86\x1e\x71\xa2\x75\x94\x64\x90\x95\xb7\x18\x8d\x92\x8b\x8e\x8e\x28\x0a\x7b\x80\x81" +"\x75\x87\x1e\x0e\xf8\x30\xf7\x83\xf7\x23\x1d\x83\x60\x15\xb1\xa6\x71\x64\x58\x59\x5a\x58\x63\x70\xa5\xb2\xbf\xbc\xbb\xc1\x1f\x67" +"\xf8\x32\xf7\x23\x1d\x82\x60\x15\xb2\xa6\x71\x64\x59\x59\x59\x58\x63\x70\xa5\xb2\xbf\xbc\xbb\xc0\x1f\xf7\x66\xfb\x76\x15\x9b\x8f" +"\x93\x94\x97\x1a\x95\x84\x93\x82\x88\x87\x8a\x89\x85\x1e\xfc\x2a\xfb\x0d\x05\x7c\x87\x82\x82\x7e\x1a\x82\x93\x83\x93\x8e\x90\x8c" +"\x8d\x91\x1e\x0e\xf8\x1a\x16\xc8\x23\x1d\x69\x06\x7b\xad\xa3\xa5\xa7\xb7\xa4\xbc\x19\x94\x2e\x0a\x5d\x06\x88\x84\x7a\x64\x71\x5f" +"\x75\x6d\x19\x44\xf7\x39\x05\x7b\xb1\x84\xa4\x9b\x1a\xb8\xbb\xb8\xba\xa3\x98\x85\x76\x9e\x1e\xb2\x9d\x05\x9c\x93\x92\x94\x98\x1a" +"\x96\x82\x95\x80\x86\x87\x8a\x86\x80\x1e\x83\x87\x05\x99\x76\x79\x90\x74\x1b\x3c\x3e\x44\x44\x76\x8e\x81\xa2\x53\x1f\x38\x72\x4f" +"\x40\x3c\x1a\x41\xbe\x55\xd1\xb7\xb6\x9f\xb2\xaf\x1e\x77\xba\x15\x69\x6f\x67\x76\x6c\x1b\x5f\x6a\xaf\xbb\xc6\xb8\xc1\xc7\x99\x1f" +"\x0e\xf7\xe0\xf8\xef\xc6\x0a\x0e\xf8\xcb\xf8\xef\x15\x7c\x79\x7a\x52\x5e\x1f\xfb\x05\xfb\x27\x5d\xfb\x04\xfb\x16\x1a\x5a\x90\x69" +"\x99\x5a\x1e\x9b\x4f\x99\x68\x99\x73\x08\x84\x8f\x92\x87\x92\x1b\x9b\x9a\x99\x99\x8e\x8b\x8d\x87\x96\x1f\x72\xd4\x7e\xcf\xcb\x1a" +"\xf7\x22\xc2\xf7\x19\xf7\x0e\xf7\x30\x1e\x96\x9a\x8c\x8c\x93\x1a\x97\x81\x94\x7f\x1e\x0e\xf7\xbc\xf8\xef\x15\x7b\x7c\x7d\x7d\x87" +"\x8c\x89\x8e\x81\x1f\xa3\x4d\x9a\x3b\x4c\x1a\xfb\x21\x53\xfb\x1e\xfb\x0d\xfb\x2c\x1e\x80\x7c\x8a\x8a\x83\x1a\x7f\x95\x82\x97\x9a" +"\x9d\x9c\xc4\xb8\x1e\xf7\x05\xf7\x26\xb9\xf7\x05\xf7\x15\x1a\xdc\x70\xf7\x00\x66\xca\x1e\x92\x87\x84\x8f\x84\x1b\x0e\xf8\x05\xf8" +"\x4e\x15\xfb\x0a\xb2\x05\x8d\x83\x88\x8c\x87\x1b\x7b\x7d\x7d\x7c\x7f\x90\x86\x9a\x87\x1f\xf7\x08\x64\x28\x23\x05\x7f\x7f\x89\x87" +"\x82\x1a\x7f\x94\x82\x98\x94\x93\x8f\x96\x95\x1e\xef\xf4\xc2\x23\x05\x7f\x91\x90\x87\x95\x1b\x9b\x9a\x99\x99\x8f\x89\x92\x88\x91" +"\x1f\x55\xf3\xf7\x1c\xb3\x05\xa0\x91\x94\x94\x9a\x1a\x96\x82\x95\x80\x87\x83\x8a\x89\x85\x1e\xfb\x19\x63\xa6\xf7\x13\x05\x8c\x91" +"\x8c\x8f\x8f\x6f\x1d\x81\x76\x87\x1e\x0e\xf8\x10\xf7\x94\x15\xf7\x44\x23\x1d\xfb\x42\x06\xb4\xf7\x52\x05\x8d\x94\xf7\x13\x0a\x78" +"\x87\x1e\x61\xfb\x55\x05\xfb\x44\x21\x1d\xf7\x42\x06\x61\xfb\x53\x8a\x7e\x05\x80\x95\x82\x97\x9b\x95\x95\x9f\x90\x1e\x0e\xe7\x1d" +"\xc4\x0a\xf7\xd3\xf7\x10\xf7\x0c\x1d\xf9\x01\xf9\x03\x15\x93\x96\x8d\x8f\x91\x1a\x97\x81\x94\x7f\x7f\x84\x86\x7d\x80\x1e\xfc\x70" +"\xfd\x3f\x05\x85\x82\x88\x84\x86\x1a\x7f\x95\x82\x97\x97\x92\x90\x99\x95\x1e\x0e\xf8\xcb\xf7\xf1\x15\x91\xa9\x8f\xaa\xa7\x1a\xf7" +"\x04\x55\xcd\x2f\xfb\x06\x26\x20\xfb\x32\x69\x1e\x76\x29\x05\x84\x6d\x88\x6d\x6e\x1a\xfb\x05\xc1\x49\xe7\xf7\x06\xef\xf6\xf7\x32" +"\xae\x1e\xfb\xce\xe8\x15\x99\xc9\xab\xcd\xb2\xb7\x08\xac\xa8\xaf\x9c\xb3\x1b\xce\xac\x5c\x2b\x71\x88\x70\x86\x73\x1f\x78\x34\x7e" +"\x4d\x6a\x49\x64\x5f\x19\x6a\x6f\x67\x7a\x63\x1b\x48\x6a\xbb\xeb\xa7\x8d\xa4\x90\xa2\x1f\x0e\xf8\x5f\xf8\xf9\x15\xfb\x62\x4f\x05" +"\x76\x85\x82\x82\x7c\x1a\x80\x94\x81\x96\x8d\x95\x8d\x8c\x8f\x1e\xf7\x19\xb1\x20\xfc\x80\x05\xfb\x1b\x33\x1d\xf7\xd4\x06\xa1\x9a" +"\x38\x1d\xfb\x19\x06\x0e\xf7\x25\xbe\x15\xf5\xd7\xf7\x61\xf7\x35\xb6\xb4\x08\xc4\xc1\xa0\xb2\xbf\x1a\xd9\x45\xcb\x38\x4a\x4c\x70" +"\x5a\x5a\x1e\x6f\x6f\x76\x6a\x7a\x1a\x81\x95\x82\x97\x97\x94\x92\x9a\x93\x1e\xc5\xa8\xd0\xb5\xcd\x1b\xc9\xbd\x5f\x55\x55\x75\x70" +"\xfb\x13\x27\x1f\x20\x35\x3d\x50\x32\x49\x81\x84\x18\x7c\x47\x05\xf8\x29\x06\x9c\xda\x05\x8d\x95\xf7\x0a\x0a\x87\x1e\x84\x6c\x05" +"\x0e\xf7\xf5\xf7\xf9\x15\x76\x7c\x7f\x7a\x7c\x94\x85\x9f\x8a\x1f\xdd\xcb\x5a\x4d\x39\x2d\x3e\x26\x53\x5c\x9c\xaf\x62\x1f\x91\x84" +"\x86\x8d\x84\x1b\x7c\x7d\x7d\x7c\x7e\x97\x7e\xa7\x7b\x1f\x6f\xba\xb7\x7e\xbe\x1b\xf7\x18\xf7\x11\xf3\xf7\x01\xc2\x6c\xb8\x54\xa7" +"\x1f\xd8\xab\xbd\xca\xce\x1a\xd7\x4e\xbf\x30\x4f\x4d\x76\x68\x5c\x1e\x74\x79\x82\x80\x80\x1a\x7e\x94\x83\x98\x94\x8f\x8d\x98\x99" +"\x1e\xac\xb0\xbd\x9d\xc3\x1b\xcb\xb7\x68\x59\x48\x46\x52\x3a\x1f\x0e\xf8\x29\xf7\x3a\x15\x72\xfb\x07\x05\x43\x29\x1d\xf7\x2a\x06" +"\xa1\x9a\x38\x1d\x70\x06\xa4\xf7\x07\x05\xa8\x06\xa2\x99\x96\x9e\x9a\x83\x91\x77\x1f\x70\x06\xde\xf8\x16\x05\x2e\x06\xfb\xcc\xfc" +"\x13\x7f\x55\x05\xf7\xae\xbe\x15\xfb\x6d\x06\xf7\xa7\xf7\xe3\x05\x99\x06\x0e\xf7\xcf\xf8\xbc\x15\xf7\x81\x57\x0a\xfb\xb3\x06\x51" +"\xfb\xa0\x05\x8a\x88\x8b\x88\x88\x1a\x80\x8c\x93\x83\x96\x1b\x92\x90\x8d\x91\x9a\x1f\xa0\xb8\xb8\x96\xb3\x1b\xce\xb4\x63\x4a\x65" +"\x7d\x60\x72\x66\x1f\x52\x65\x51\x6c\x49\x1b\x52\x5e\xa0\xb7\x63\x1f\x93\x84\x86\x8d\x84\x1b\x7c\x7c\x7d\x7c\x7c\x9e\x77\xae\x73" +"\x1f\x72\xb1\xb7\x7e\xbb\x1b\xf7\x20\xf7\x0d\xf7\x0f\xf7\x23\xe4\x50\xc5\x32\x62\x66\x83\x78\x57\x1f\x0e\xf7\x81\xf7\x9b\x15\x95" +"\xc3\x9e\xbf\xa8\xb5\x08\xe3\xc5\xf6\xcb\xe3\x1b\x9d\x9a\x88\x87\x93\x1f\x86\x94\x8f\x8a\x91\x1b\x9a\x99\x99\x9a\x9e\x69\x9b\x60" +"\x39\x32\x65\x48\x42\x1f\x35\x3d\x58\xfb\x10\xfb\x15\x1a\xfb\x0b\xc7\x3f\xea\xf7\x07\xf7\x01\xf7\x06\xf7\x0d\xe1\x52\xc8\x3b\x48" +"\x4a\x66\x48\x57\x1e\x82\x40\x15\xae\xb7\x96\x98\x9e\x9c\x08\xae\xb3\xb5\x9e\xb1\x1b\xc0\xb3\x5f\x50\x30\x3c\x35\x38\x40\x67\xbb" +"\xf3\x86\x1f\x0e\xf8\xb8\xf8\xb1\x15\xfb\xa1\xfc\x8a\x05\x87\x82\x89\x86\x85\x1a\x80\x94\x82\x97\x98\x93\x91\x9c\x95\x1e\xf7\xa5" +"\xf8\x92\x9a\xd2\x05\xfc\x14\x06\x7a\x3c\x05\x8a\x85\x6c\x1d\x9c\x95\x95\xa0\x8f\x1e\x92\xaa\x05\xf7\xac\x06\x0e\xf8\x5a\xf7\xcc" +"\x15\xde\xb1\xb8\xc6\xd1\x1a\xda\x4c\xc5\x34\xfb\x04\xfb\x01\x2b\x28\x5d\xa1\x68\xb9\x70\x1e\x33\x64\x56\x47\x3f\x1a\x36\xcd\x4f" +"\xe8\xf7\x0b\xf7\x06\xf1\xf5\xbd\x71\xb4\x59\xa7\x1e\x6c\xf7\x91\x15\xc9\xb7\x64\x55\x42\x42\x4d\x36\x4d\x5d\xb0\xbe\xd3\xd9\xcf" +"\xdd\x1f\x4f\xfb\xaa\x15\xce\xba\x63\x51\x3b\x39\x42\x31\x49\x5b\xb5\xc5\xdc\xda\xd1\xe8\x1f\x0e\xf8\xad\xf7\xe6\x15\x81\x53\x77" +"\x57\x6f\x61\x08\x33\x51\x20\x4b\x33\x1b\x79\x7c\x8e\x90\x83\x1f\x90\x82\x87\x8c\x85\x1b\x7b\x7e\x7d\x7c\x77\xad\x7b\xb6\xde\xe3" +"\xb1\xcd\xd4\x1f\xe1\xda\xbe\xf7\x10\xf7\x15\x1a\xf7\x0b\x4f\xd7\x2d\xfb\x08\xfb\x01\xfb\x06\xfb\x0d\x35\xc4\x4e\xdb\xce\xcc\xb0" +"\xce\xbf\x1e\x94\xd6\x15\x6a\x62\x7c\x7a\x7a\x7b\x08\x68\x63\x60\x78\x65\x1b\x57\x63\xb7\xc6\xe6\xda\xe1\xde\xb3\xac\x7a\x6e\x9c" +"\x1f\x9b\x71\x95\x62\x64\x1a\x0e\xf7\xd3\xf7\x10\xf7\x30\x1d\xb8\xab\x72\xa2\x66\x1f\xc0\xf7\xba\x97\x1d\xaf\x1f\x96\x06\xbb\xb5" +"\xb2\xb7\xad\x72\xa1\x66\x1f\x0e\xf7\x83\xf7\x2d\xc6\x0a\x70\xf7\x9d\xf7\x30\x1d\xb7\xac\x72\xa2\x66\x1f\x0e\xc7\xf7\xad\x15\xf8" +"\x3e\xfb\x7d\x05\x88\x90\x91\x8a\x90\x1b\x93\x93\x90\x92\x8f\x1f\x8d\x8e\x05\x8d\x8f\xf7\x1c\x1d\x96\x91\x90\x92\x94\x1a\x8f\x8a" +"\x8f\x88\x8f\x1e\x8a\x8e\x05\x93\x86\x83\x90\x83\x1b\x87\x86\x89\x88\x85\x1f\x0e\xf8\xe5\xf7\xdb\x15\x53\x0a\xfc\x50\x21\x1d\xf8" +"\x32\xfb\x21\x15\xa2\x99\x96\x9e\x3c\x0a\xfc\x50\x29\x1d\x0e\xf8\xaa\xf7\xad\x15\xfc\x3f\xf7\x7d\x05\x8e\x84\x87\x8d\x87\x1b\x82" +"\x84\x86\x83\x86\x1f\x8a\x88\x05\x88\x87\x8a\x87\x87\x1a\x82\x90\x84\x96\x85\x1e\xf7\xee\xfb\x50\xfb\xee\xfb\x50\x05\x80\x85\x86" +"\x84\x82\x1a\x88\x8d\x86\x8d\x87\x1e\x8c\x88\x05\x84\x8f\x94\x86\x92\x1b\x91\x90\x8c\x8e\x91\x1f\x0e\xf8\x10\xf7\x88\x15\xcd\xa6" +"\xb2\xa0\xac\xa5\x08\xb6\xac\xa5\xbd\xbd\x1a\xd9\x51\xba\x2b\x51\x75\x86\x64\x29\x1e\x7f\x86\x7c\x46\x05\x89\x85\x8b\x88\x73\x0a" +"\x93\xb1\x05\xa3\xc3\xab\x92\xb8\x1b\xd1\xb7\x6a\x57\x4c\x56\x5f\xfb\x25\x54\x1f\x7c\x45\x05\x8a\x87\x8a\x86\x87\x63\x1d\x49\xfb" +"\x04\x15\x62\x6a\x6e\x67\x70\x9f\x7a\xab\x1f\xa7\x06\xb4\xac\xa8\xaf\xa6\x77\x9c\x6a\x1f\x0e\xf8\x4e\xf7\x22\x15\xb3\x06\xa2\x99" +"\x96\x9e\x95\x87\x91\x81\x8e\x1f\xc5\xf7\x9f\x05\x8d\x97\x8d\x99\x95\x1a\xd8\x56\xbe\x3a\xfb\x07\xfb\x00\xfb\x02\xfb\x2c\x6a\x1e" +"\x69\xfb\x33\x05\x85\x71\x88\x71\x71\x1a\x59\x9a\x58\xa4\x6a\x1e\x69\xa4\xb0\x7b\xbd\x1b\xde\xe1\xaf\xae\x96\x82\x94\x7e\x85\x86" +"\x89\x87\x86\x1f\x73\x6a\x68\x80\x5a\x1b\x69\x70\x95\x9d\x7b\x1f\x75\xa3\x7d\xb9\xb9\x1a\xa2\x8d\xa0\x90\xa1\x1e\xad\xf7\x30\x05" +"\xf7\x13\xa6\xdd\xe4\xe3\x1b\xc3\xac\x6b\x55\x83\x8a\x82\x89\x83\x1f\x82\x62\x05\xfb\x06\x8a\x2b\x3c\x2c\x1a\x51\xbc\x61\xce\x96" +"\x96\x8c\x8c\x98\x1e\x96\xbf\x15\x89\x7e\x83\x8a\x7f\x1b\x5d\x6d\xa2\xaf\xc8\xce\xbf\xdb\x8d\x1f\x0e\x29\x0a\x0e\xf7\x15\xbe\x15" +"\x59\x20\x1d\xf7\xc7\x06\xf4\xf0\xe4\xe8\xbf\x6c\xb1\x4e\xa4\x1f\xd2\xb0\xae\xba\xc7\x1a\xd4\x4f\xbc\xe6\x1d\x6c\x6f\x76\xb3\x0a" +"\xf8\xdc\xf8\x96\x15\x4e\x0a\xfb\x0c\xe8\x2e\xf7\x0d\xd2\xd4\xa8\xc1\xcb\x1e\xa7\xa3\x93\x95\x98\x95\x0a\x0e\xb4\x1d\x0e\x2d\x1d" +"\x0e\xf7\x78\xf7\x9e\x15\xf7\x1a\x06\x83\x65\x05\x8a\x87\x8a\x86\x89\x1a\x7f\xf7\x34\x1d\xa7\xf7\x15\x05\x8d\x94\x8b\x8b\x8e\x1a" +"\x97\xf7\x18\x0a\x87\x1e\x82\x63\x05\xfb\x1a\xd7\x1d\x3f\x0a\x59\x24\x0a\x78\x7d\x25\x1d\xf7\x7e\x23\x1d\xfb\x18\x06\x0e\x45\x1d" +"\x0e\x86\x0a\x0e\x3b\x1d\x0e\xb9\x1d\x0e\x87\x0a\x0e\x40\x0a\x0e\xf8\x01\xf7\x3a\x15\xf7\x7a\xf7\xec\x28\xfc\x5f\x05\x45\x20\x1d" +"\xf7\x29\x06\x5c\x0a\x77\x1f\x70\x06\x36\x0a\xa0\x2e\x0a\x25\x06\xfb\x74\xfb\xe2\x3b\xf7\xe2\x05\x23\x20\x1d\x9e\x58\x1d\x9a\x82" +"\x91\x77\x1f\x47\x06\xee\xf8\x5f\xdf\xfb\xec\x05\x0e\xf8\x8e\x9a\x0a\x9a\x82\x91\xf6\x0a\x31\x0a\x0e\xf7\x6f\xf7\x76\x93\x1d\xf7" +"\x00\xda\x47\xc3\x2c\x1f\xfb\x84\x64\x0a\xa1\x9a\x97\x9d\x9a\x82\x91\xf7\x00\x1d\xf7\xc3\x7b\x15\xf7\x3d\x94\xf7\x2a\xf7\x40\xf7" +"\x4f\x1a\xf7\x18\x3a\xe6\xfb\x0a\xfb\x3c\xfb\x32\xfb\x46\xfb\x51\x47\xa5\x48\xb4\x64\x1e\x9e\x78\x9c\x82\xac\x7f\x2e\x52\x18\x7f" +"\x83\x85\x82\x81\x1a\x7e\x94\x82\x97\x8f\x8e\x8c\x8c\x90\x1e\x97\xb7\xd1\x96\xa9\x1b\xa4\x98\x88\x81\xa4\x1f\x80\xa8\x94\x89\x9c" +"\x1b\xa6\xad\x96\x9d\xad\x1f\x9f\x96\x91\x93\x98\x1a\x97\x82\x94\x7f\x85\x87\x8a\x87\x85\x1e\x77\x68\x7a\x85\x77\x1b\x7f\x84\x8d" +"\x93\x75\x1f\x97\x6e\x76\x8f\x6c\x1b\x7c\x82\x8a\x88\x78\x1f\xf7\x2d\xf8\xc8\x15\xe3\xcb\x3e\x23\xfb\x2d\xfb\x17\xfb\x2f\xfb\x15" +"\x2c\x4b\xd4\xf7\x00\xf7\x32\xf7\x16\xf7\x2a\xf7\x1d\x1f\x0e\x4b\x0a\x0e\x49\x0a\x0e\x5f\x0a\x0e\x2e\x1d\x0e\xf7\x9b\x16\xcb\x06" +"\xf7\xd4\xf8\x94\x05\xa7\xf7\x1e\x0a\xfb\x2a\x24\x0a\x78\x7c\x93\x85\x9f\x1f\xd0\x06\xfb\xb2\xfc\x5c\x3b\xf8\x5c\x05\xd1\xf7\x1e" +"\x0a\xfb\x2b\x26\x0a\xa5\x06\x0e\xf7\x08\xf7\x0a\x1d\x9c\x9b\x83\x91\x77\x1f\xfb\x2a\x37\x1d\x25\x1d\xe3\x06\xfb\x27\xfc\x46\x73" +"\xf7\xfe\x05\x45\x06\xfb\x4c\xfb\xfe\xb5\xf8\x46\x05\xe3\x27\x1d\xfb\x29\x24\x0a\x79\x7c\x25\x1d\x94\x06\x0e\xf8\x1d\xf7\xb3\x15" +"\xf7\x74\xf7\x75\x05\x98\x06\x5c\x0a\x77\x1f\xfb\x03\x4a\x1d\x9f\x1f\xab\x06\xfb\x4a\xfb\x4b\x23\xf7\x4b\x05\xac\x06\xa2\x6f\x0a" +"\x79\x7c\xf7\x17\x1d\x79\x7c\x2a\x0a\xf7\x16\x06\x5c\x0a\xf7\x32\x1d\x74\x7d\x39\x1d\xf7\x17\x23\x1d\x7d\x06\x0e\x47\x1d\x0e\xf8" +"\x89\x16\xb3\xf7\x4b\x05\x8d\x95\x8b\x8b\x8e\x7c\x0a\xcd\x1d\xf8\x51\xf8\xbc\x15\xe8\x06\xa2\x99\x96\x9e\x9a\x82\x91\x77\x1f\xfb" +"\x22\x06\xfb\x31\xfd\x69\x05\xf7\x25\x2e\x0a\x31\x06\x0e\xf7\xbe\xf9\x18\x15\x9b\x87\x85\x90\x7e\x1b\x7b\x7d\x7d\x7c\x88\x8b\x89" +"\x8d\x85\x1f\xf7\x48\xfd\x3f\x05\x7c\x8f\x91\x85\x98\x1b\x9a\x9a\x99\x9a\x8e\x8b\x8b\x89\x94\x1f\x0e\xf7\x95\x44\x15\x2e\x24\x0a" +"\x78\x7c\x94\x85\x9f\x1f\xf7\x22\x06\xf7\x31\xf9\x69\x05\xfb\x25\x06\x75\x7c\x7f\x79\x7c\x93\x85\xa0\x1f\xe5\x06\x0e\xf7\xc0\xf8" +"\xfc\x15\xfb\x4a\xfb\x73\x05\x83\x82\x89\x86\x84\x1a\x7d\x96\x80\x9a\x94\x91\x8f\x96\x94\x1e\xf7\x22\xf7\x43\xf7\x23\xfb\x43\x05" +"\x80\x93\x92\x87\x94\x1b\x9a\x96\x96\x99\x92\x89\x8f\x83\x95\x1f\x0e\xf8\xdd\xfb\x08\xd0\x0a\xf8\x9c\xf8\xec\x15\xfb\x25\x06\xeb" +"\xfb\x80\x05\x79\x93\x94\x83\x99\x1b\xa2\x9e\x9d\xa1\x1f\x92\x07\x0e\x37\x0a\x0e\xf7\xab\xf8\xef\x15\x89\x1d\xfb\x00\xfc\x89\x05" +"\x59\x20\x1d\xef\x06\x9b\xd6\x05\x4e\xad\xbf\x6d\xd0\x1b\xf7\x23\xf7\x1a\xf7\x18\xf7\x22\xf2\x40\xd3\x21\x46\x48\x6c\x51\x52\x1f" +"\xf7\x4c\xb1\x15\xd9\xc6\x52\x3f\xfb\x01\x22\x22\xfb\x01\x38\x51\xc2\xda\xf7\x03\xf3\xf1\xf7\x06\x1f\x0e\x46\x1d\x0e\xb4\x0a\x27" +"\xd7\x41\xd2\x0a\xfb\x2b\xf7\xdf\x15\xdd\xc3\x54\x3a\x20\x22\x23\xfb\x00\x36\x53\xc1\xdc\xf7\x03\xf2\xf0\xf7\x05\x1f\x0e\x30\x1d" +"\x0e\xf7\xf8\xf8\x04\x15\xf7\x4d\x2e\x0a\xfb\x4a\x06\x96\xc1\x05\xba\x95\xbe\xab\xcb\x1b\xaf\xaa\x88\x83\xc1\x1f\x8a\x93\x8e\x8b" +"\x8e\x1b\x9c\x99\x98\x9c\x95\x85\x92\x7f\x8e\x1f\x91\x6c\x47\x92\x64\x1b\x2e\x3e\x56\x40\x7b\x1f\x7f\x53\x05\x37\x26\x0a\xdc\x25" +"\x0a\x2d\x26\x0a\xf7\xd0\x23\x1d\xfb\x3f\x06\x0e\xe9\x1d\x82\x4f\x44\x51\x4c\xa1\x0a\x0e\xa8\x1d\x0e\x3c\x1d\xf7\x0e\xf8\xcf\x77" +"\x0a\xf8\x7f\x9e\x0a\xac\x1d\x0e\x41\x0a\x0e\xf7\x64\xf8\x37\x15\x3a\x4f\x1d\x9e\x1f\xa7\x25\x0a\x6d\x21\x1d\xf7\x00\x2a\x1d\x70" +"\x06\xc2\xf7\x92\x05\xc1\xbb\xaf\xa2\xad\x1b\xa4\x9f\x74\x6e\x87\x8a\x86\x8a\x86\x1f\x47\xfb\xd0\x05\xdb\x06\xa2\x99\x97\x9d\x99" +"\x83\x92\x77\x1f\x70\x06\xc2\xf7\x92\x05\xc2\xbb\xad\xa1\xae\x1b\x98\x95\x88\x84\x91\x1f\x97\x7f\x92\x7b\x8a\x7e\x08\x89\x8a\x87" +"\x8a\x85\x1e\x46\xfb\xd3\x05\xdb\x06\xa1\x9a\x97\x9d\x99\x83\x92\x77\x1f\x70\x06\xc5\xf7\xa1\x05\x8d\x93\x8c\x95\x91\x1a\xbf\x66" +"\xb0\x56\x62\x66\x78\x5e\x5c\x1e\xb6\x7c\x70\xa0\x60\x1b\x64\x6a\x7b\x66\x65\x1f\x0e\x4a\x0a\x0e\x38\x0a\x0e\xf7\x84\xf8\x37\x15" +"\x25\x26\x0a\xba\x06\xfb\x00\xfc\x87\xaa\x0a\x43\xce\xfb\x03\x41\x56\x74\x4f\x4b\xe9\x0a\xd7\xf0\xf1\xe8\xf7\x03\x1f\x0e\xf8\xa7" +"\xf7\xf1\x15\xc5\x68\x5b\xa5\x42\x1b\x3d\x47\x6e\x52\x53\x1f\x5d\x5c\x70\x4c\x52\x1a\x26\xd5\x46\xf7\x02\xd4\xc6\xa4\xc4\xc6\x1e" +"\x5a\xfb\x73\x05\x2e\x06\x74\x7c\x39\x1d\xf7\x55\x06\xa2\x99\x97\x9d\x9a\x82\x91\x78\x1f\x5b\x06\xf7\x01\xf8\x87\x05\xbd\x2e\x0a" +"\x28\x06\xfb\x48\x66\x15\xdf\xc4\x57\x3f\x28\x24\x2d\xfb\x00\x35\x52\xbe\xd7\xf1\xf1\xe7\xf7\x03\x1f\x0e\x53\x1d\x0e\xf4\x85\x1d" +"\xf7\x16\xf0\xd0\xe4\xa4\x7d\xa7\x76\x9b\x1f\x76\x1d\x3f\x53\x6b\x0a\x81\x94\x7f\x7a\x81\x81\x76\x86\x1e\x0e\x5e\x0a\x0e\xf8\x45" +"\x16\xdd\x06\xa1\xb6\x1d\xca\xa3\xbc\xcb\x1f\x0e\xf7\xe7\x16\xf7\x8a\xf8\x04\x05\xb1\x27\x1d\xfb\x2c\x20\x1d\xc6\x06\xfb\x68\xfb" +"\xd1\x05\x7f\x06\x3f\xf7\xd1\x05\xc6\x27\x1d\xfb\x2c\x26\x0a\xaf\x06\xe4\xfc\x04\x05\x0e\x4d\x0a\x0e\xf8\x13\xf7\x6e\x15\x99\x0a" +"\x79\x7c\x25\x1d\xf7\x19\x23\x1d\x57\x06\xf7\x40\xf7\x19\xf7\x04\xfb\x19\x05\x56\xd4\x0a\x84\x06\x0e\x52\x1d\x0e\xb8\x0a\xfc\x00" +"\xfb\xd8\x81\x5f\x05\xf8\x15\x06\xa1\xee\x05\x8d\x94\x8b\x8b\x8e\x1a\x97\xd7\x0a\x0e\xf8\x46\xf8\x81\x15\x92\xab\xa4\xa2\xab\x8f" +"\x08\xa4\x8e\x96\x94\x9d\x1a\x98\x82\x93\x7b\x51\x54\x5c\x4e\x7e\x1e\x66\xfb\x3d\x83\x69\x70\x73\x69\x8a\x19\x75\x89\x7f\x80\x79" +"\x1a\x7d\x92\x85\x9d\x89\x1e\xa7\x89\x9a\x7c\x71\x1a\x87\x8a\x86\x8a\x86\x1e\x67\xfb\x3d\x05\x89\x83\x8a\x83\x82\x1a\x5a\xae\x67" +"\xbb\x9f\x9a\x97\x9c\x9a\x85\x8f\x76\x8e\x1e\x74\x8d\x7d\x9b\x8a\xa3\x08\x90\x8b\x90\x8c\x90\x1e\xb0\xf7\x3d\x05\x8d\x96\x8c\x94" +"\x96\x1a\xa0\x84\x9b\x79\x9c\x1e\xac\x9f\x9c\xa4\x93\xb1\x08\x0e\xf7\xda\xf9\xcd\x15\x58\xfe\xc7\xbe\x06\x0e\xf7\xa2\x7f\x15\x84" +"\x6b\x72\x74\x6a\x87\x08\x73\x88\x80\x82\x79\x1a\x7e\x94\x83\x9b\xc5\xc2\xba\xc8\x98\x1e\xb0\xf7\x3d\x92\xad\xa7\xa3\xad\x8d\x19" +"\xa1\x8c\x97\x96\x9d\x1a\x99\x84\x91\x78\x8d\x1e\x6f\x8d\x7a\x9c\x8d\xa3\x08\x8f\x8c\x8f\x8c\x91\x1e\xb0\xf7\x3d\x05\x8d\x94\x8c" +"\x94\x93\x1a\xbb\x68\xaf\x5b\x77\x7c\x7f\x7a\x7c\x91\x87\xa0\x88\x1e\xa2\x89\x9a\x7a\x74\x1a\x85\x8b\x87\x8a\x86\x1e\x66\xfb\x3d" +"\x05\x88\x80\x8a\x80\x82\x1a\x76\x92\x7c\x9e\x79\x1e\x6a\x77\x7a\x72\x82\x65\x08\x0e\xf8\x7d\xf7\xe2\xf7\x38\x1d\x89\x8c\xb3\x57" +"\x1f\xb7\x53\x7c\xf7\x0c\x0a\x7d\x72\x0a\xc1\xb7\x94\x7b\x0a\x56\xcb\xa1\x7f\xac\x1b\xac\xa9\x9d\xb5\xaf\x1f\x9e\xa0\x92\x97\x9d" +"\x1d\x0e\xf7\x72\xfb\x2b\x15\x88\x7f\x89\x81\x85\x1a\x78\x9b\x7d\xa0\xab\x9d\x9e\xb3\x91\x1e\xbe\xf7\xd4\x05\x8c\x91\x8c\x90\x8d" +"\x1a\x96\x82\x94\x7f\x7b\x81\x82\x75\x85\x1e\xcb\xf7\x22\x15\xb1\xac\xa9\xad\xa5\x77\x9d\x6d\x1f\x7f\x06\x65\x6a\x6d\x69\x71\xa0" +"\x79\xa8\x1f\x0e\xf8\x11\xf8\x84\x15\x51\x7e\x69\x7c\x67\x6d\x08\x57\x60\x6c\x4c\x50\x1a\x3d\xc0\x4f\xd9\x81\x1e\x74\x22\x05\x89" +"\x82\x8b\x8b\x87\x1a\x80\x95\x82\x97\x9c\x28\x1d\xa2\xf5\xb1\x8e\xb8\x98\xb4\x9f\x19\xa7\x99\x97\x97\x9a\x1a\x97\x83\x93\x7e\x84" +"\x87\x8a\x83\x80\x1e\x71\x64\x5c\x7d\x5d\x1b\x43\x5c\xb6\xcc\xe7\xe0\xd8\xf0\xa9\xa4\x85\x7e\x9c\x1f\x96\x83\x96\x7b\x82\x1a\x8a" +"\x75\x05\x82\x95\x82\x96\x9c\x28\x1d\x98\xc7\x8c\x94\x05\x98\x8c\x82\x94\x7d\x1b\x81\x83\x87\x82\x84\x1f\x78\x9c\x66\x99\x6a\x8c" +"\xa1\xec\x18\x8d\x94\xf7\x0a\x0a\x86\x1e\x0e\xf7\x61\xbe\x15\xbe\xbe\xb1\xe4\x8f\xd7\x08\xdf\x57\x0a\x2d\x06\x93\x8b\x8b\x8a\x99" +"\x1e\x88\xac\x8b\x8f\x9b\x1a\xb4\x94\xa5\xa4\xa5\x1e\xa4\xa3\xab\x9a\xaa\x1b\xac\xa2\x7d\x6c\x9e\x1f\x80\x91\x91\x87\x92\x1b\x9b" +"\x9a\x99\x99\x96\x82\x9c\x7c\x9a\x1f\xa6\x73\x6c\x98\x64\x1b\x5e\x5f\x78\x67\x67\x1f\x65\x66\x7a\x61\x55\x1a\x78\x8c\x7a\x8e\x68" +"\x1e\x33\x26\x0a\xed\x06\x84\x26\x46\xfb\x06\x55\x89\x08\x79\x7d\x7f\x7b\x7c\x25\x1d\xf7\xd8\x06\xa9\xa9\x9a\xa6\xa1\x1f\x9b\x9e" +"\x97\xa6\x9a\x1a\x96\x82\x94\x7e\x7c\x82\x83\x79\x85\x1e\x6e\x81\x78\x7a\x74\x1b\x0e\xab\x0a\xf8\x0c\xf7\x7d\x15\xf7\x13\x06\x9f" +"\x96\x95\xa0\x96\x83\x90\x7c\x1f\x21\x06\xf7\x63\xf7\x7c\x05\xa0\x06\xa2\x6f\x0a\x79\x7c\x2a\x0a\xa6\x06\xfb\x4e\xfb\x64\x2b\xf7" +"\x64\x05\xaa\x06\xa1\x6f\x0a\x78\x7d\x25\x1d\xa0\x06\xf5\xfb\x7c\x05\xfb\x00\x06\x77\x80\x81\x77\x7f\x93\x86\x9b\x1f\xf7\x0f\x06" +"\x81\x5b\x05\xfb\x12\x06\x76\x80\x81\x77\x80\x93\x85\x9b\x1f\xf7\x10\x06\x78\x34\x05\x39\x21\x1d\xf7\x6a\x30\x0a\x3c\x06\x9e\xe2" +"\x05\xf7\x12\x06\xa0\x96\x96\x9f\x95\x83\x91\x7b\x1f\xfb\x10\x06\x0e\xf8\x2c\xf8\x0e\x15\x9c\xd9\x05\xcc\x99\xc1\xb7\xcd\x1b\x9b" +"\x99\x89\x85\x9b\x1f\x89\x93\x8f\x8a\x8e\x1b\x9a\x99\x99\x9b\x93\x87\x91\x82\x8f\x1f\x94\x78\x6f\x90\x71\x1b\x34\x37\x46\x33\x78" +"\x1f\x7a\x3a\x05\x2f\x20\x1d\xe5\x06\x53\xfb\x96\x05\x4b\x7d\x57\x5e\x4f\x1b\x80\x7b\x8d\x8d\x84\x1f\x93\x73\x89\x8b\x85\x1b\x7d" +"\x7d\x7d\x7c\x78\xb0\x7c\xbb\xe0\xdc\xce\xe0\x9e\x1f\xc5\xf7\x9e\x05\xe7\x06\xa2\x99\x97\x9d\x35\x1d\x0e\xf9\x0a\xf8\xef\x15\xfb" +"\x6e\x06\x39\x3c\x47\x44\x84\x8c\x87\x8d\x81\x1f\x67\x85\x78\x85\x76\x7c\x08\x70\x79\x7a\x6f\x71\x1a\x5e\xae\x62\xdb\x59\x1e\xc4" +"\x67\x05\xd4\x5e\xaa\x6c\x70\x1a\x61\x5a\x65\x54\x1e\xfb\x33\x06\x98\xca\x05\x8c\x8f\x8c\x90\x8d\x1a\x96\x82\x93\x7e\x7b\x80\x81" +"\x79\x87\x1e\x72\xfb\x07\x05\xf7\x6a\x06\xe4\xd7\xcb\xd7\x92\x8a\x90\x89\x94\x1f\xb2\x90\x9f\x92\xa1\x9d\x08\xa5\x9f\x98\xa4\xa7" +"\x1a\xb8\x6c\xaf\x3f\xba\x1e\x59\xa9\x05\x2f\xc3\x6f\xa5\xa7\x1a\xb4\xbe\xb4\xbf\x1e\xf7\x35\x06\x7e\x4d\x05\x8a\x88\x8b\x88\x87" +"\x1a\x80\x95\x82\x97\x9a\x97\x95\x9d\x8f\x1e\xfb\x38\xfb\x5f\x15\xbd\x6c\xac\x67\x71\x1a\x72\x6c\x7a\x5c\x89\x1e\x81\x06\x89\x8a" +"\x8b\x8a\x87\x1f\x7c\x9c\x72\x9e\x5b\xa8\x55\xae\x18\x48\xb4\x6a\xad\xa4\x1a\xa5\xae\x9f\xb8\x1e\x92\x06\x8e\x8c\x8b\x8c\x90\x1f" +"\xa2\x72\x9e\x7d\xc6\x67\x08\x0e\xf7\x7d\xf7\x31\x15\x73\xaa\xa4\x82\xb0\x1b\xb2\xa8\x94\xa3\xb4\x1f\xb3\x58\x05\x81\x93\x90\x88" +"\x93\x1b\x9a\x9b\x99\x9a\x8d\x85\x99\x89\x8e\x1f\x63\xbe\x05\xb4\xb8\x9d\xb4\xbc\x1a\xa1\x88\x98\x7e\xa7\x1e\xcb\xbf\x05\x99\x96" +"\x8e\x90\x96\x28\x0a\x83\x85\x88\x82\x80\x1e\x4c\x58\x05\xa2\x6d\x70\x95\x64\x1b\x66\x6c\x82\x73\x63\x1f\x63\xbd\x05\x96\x82\x87" +"\x8d\x83\x1b\x7b\x7c\x7d\x7c\x85\x8d\x86\x91\x84\x1f\xb4\x58\x05\x65\x61\x77\x5e\x5c\x1a\x76\x8f\x7d\x97\x6e\x1e\x4a\x56\x05\x7e" +"\x81\x87\x84\x81\x1a\x7f\x94\x82\x98\x93\x8f\x8d\x95\x98\x1e\xf7\x70\xf7\xc4\x15\xc3\xb2\x65\x55\x43\x43\x45\x41\x51\x64\xb0\xc2" +"\xd4\xd3\xd0\xd7\x1f\x0e\xf7\xfc\xf8\xef\x15\x76\xf7\x14\x1d\xf7\xf9\xf8\xec\x15\xfb\x21\x06\xe7\xfb\x80\x05\x79\x92\x94\x83\x9a" +"\x1b\xa2\x9e\x9d\xa1\x1f\x92\x07\xf7\x4c\xf7\x6b\x15\xfb\x21\x06\xe7\xfb\x80\x05\x79\x92\x94\x83\x99\x1b\xa3\x9e\x9d\xa1\x1f\x92" +"\x07\x0e\xf7\x1e\x1d\x90\x89\x8f\x86\x94\x1f\x22\xf7\x3e\x1d\x97\x82\x94\x7e\x84\x83\x88\x82\x80\x1e\x72\xfb\x59\x15\xf7\x3d\xfb" +"\x59\x05\x82\x93\x92\x87\x93\x1b\x9b\x99\x99\x9b\x90\x8a\x8e\x84\x95\x1f\x23\xf7\x35\xf7\x43\xf7\x36\x05\x99\x97\x8e\x90\x95\x1a" +"\x98\x82\x93\x7e\x83\x84\x87\x83\x80\x1e\x0e\xf7\x1e\x1d\x91\x8a\x8d\x84\x95\x1f\x23\xf7\x3e\x1d\x98\x82\x93\x7e\x84\x82\x87\x83" +"\x81\x1e\x0e\xf8\xe5\xd2\x1d\x0e\xf7\x8a\xf8\x04\x15\xce\x27\x1d\x4a\x06\x96\xf7\x20\x1d\x8f\x1b\x9a\x98\x99\x9a\x94\x86\x92\x81" +"\x90\x1f\x93\x78\x69\x92\x77\x1b\x4c\x4d\x52\x42\x7c\x1f\x7f\x55\x05\x42\x37\x1d\xd6\x1d\x53\x0a\x4a\x06\xf8\x26\xf8\x04\x15\x22" +"\x26\x0a\xbd\x25\x0a\x42\x26\x0a\xf7\x55\x30\x0a\x47\x06\xf7\x0f\xf8\xcf\xf7\x53\x1d\xf7\x89\xf8\x04\x15\xcf\x2e\x0a\x4a\x06\x97" +"\xf7\x20\x1d\x8e\x1b\x9b\x98\x90\x1d\x68\x92\x78\xf7\x31\x1d\x79\x7c\xd6\x1d\xa1\x34\x1d\x4b\x06\xf8\x4d\xf8\xbc\x15\x22\x24\x0a" +"\x78\x7c\x93\x85\xa0\x1f\xbd\x06\xfb\x01\xfc\x89\x05\x43\x21\x1d\xf7\x57\x79\x0a\x44\x06\x0e\xf8\xc0\xf7\x94\x15\xa2\x9a\x97\xf7" +"\x4c\x1d\x78\x7d\x25\x1d\x0e\xf7\x14\x0a\x9e\x99\xf7\x2f\x1d\x8e\x1a\x97\xc2\x0a\x35\xfc\x21\x05\x8a\x86\x8a\x87\x73\x0a\x0e\xf7" +"\x14\x0a\x9d\x9a\xf7\x2f\x1d\x8f\x1a\x96\xc2\x0a\x7e\x51\x05\xfb\x10\x21\x1d\xf7\x0e\x06\x4c\xfb\xb4\xf7\x02\x0a\xca\xf7\xb6\x05" +"\xf7\x10\x06\xa2\x9a\x96\x9d\x9b\x82\x91\x77\x1f\xfb\x0e\x06\x0e\x68\x0a\xf8\xc6\xf8\xbc\x15\xc3\x06\xa0\x9a\x97\x9d\x99\x82\x92" +"\x79\x1f\xfb\x5c\x06\xfb\x1d\x89\x28\x50\x77\x30\x81\x5d\x18\x89\x83\x8a\x83\x85\x1a\x5f\xa6\x66\xba\x74\x1e\xa7\x7e\xa6\x84\xb9" +"\x88\x52\xfb\x9e\x18\x2e\x06\x75\x7d\x7f\x79\x7e\x95\x83\x9c\x1f\xf7\x1a\x06\xa0\x9a\x97\x9d\x95\x85\x92\x81\x8e\x1f\xf7\x0e\xf8" +"\xc7\x05\xc8\x06\xfb\x0e\xfc\xc6\x05\x7b\x88\x80\x7f\x7c\x1a\x7e\x94\x83\x9d\x1e\xed\x06\xa0\x9a\x97\x9d\x99\x82\x92\x79\x1f\x53" +"\x06\x0e\xf7\xbc\xf8\x59\x15\x38\x49\x49\x37\x38\xcd\x48\xdd\xdc\xcd\xce\xde\xdd\x49\xcf\x3b\x1f\x0e\xe7\x1d\xf7\x54\xf7\x2d\xf7" +"\x3f\x1d\x97\x80\x9d\xf7\x05\x1d\x97\x80\x9d\x9a\x96\x91\x9c\x98\x1e\xf7\x57\xf7\x87\x05\x0e\xf7\xb5\xf8\xef\xf7\x3f\x1d\x98\x80" +"\x9c\xf7\x05\x1d\x98\x80\x9c\x9a\x96\x92\x9b\x98\x1e\xf7\x57\xf7\x87\x05\x0e\xf7\xff\xd2\x1d\xf8\x77\xf7\x59\xf7\x22\x1d\x88\x91" +"\x81\x1f\xf3\xfb\x35\xfb\x42\xfb\x35\x05\x7d\x7e\x88\x86\x81\x1a\x7f\x94\x82\x98\x93\x92\x8e\x94\x96\x1e\x0e\xf7\x0a\xe8\xdf\x0a" +"\xf7\x5b\x16\xe4\x0a\xf7\x5c\xf7\x1a\x1d\xf7\xa6\xf8\xf9\xf7\x51\x1d\xcd\xd1\xcb\x0a\xf7\xcc\xfb\x52\x15\x99\x8f\x92\x93\x95\x1a" +"\x94\x85\x92\x83\x87\x87\x8a\x8a\x87\x1e\xfc\x24\xfb\x0c\x05\x7d\x87\x83\x82\x81\x1a\x82\x92\x84\x93\x8d\x8f\x8c\x8d\x91\x1e\xbb" +"\x5c\xb1\x0a\xf7\xab\xb2\xb1\x0a\x0e\xf7\xc7\xf7\x35\x15\x49\x6f\x64\x76\x69\x72\x08\x61\x6a\x71\x58\x59\x1a\x3d\xc5\x5c\xeb\xbf" +"\xae\x93\xa7\xd0\x1e\x9a\x91\x8c\x8b\x9d\x92\x9a\xd1\x18\x8d\x93\x8b\x8b\xf7\x5c\x1d\x86\x1e\x83\x65\x05\x72\x53\x6c\x84\x5e\x1b" +"\x45\x5f\xac\xbf\xcb\xc1\xb7\xf7\x24\xc2\x1f\x9a\xd0\xf1\x0a\x77\x87\x1e\xcd\xf7\x04\x15\xb4\xac\xa7\xaf\xa6\x77\x9c\x6a\x1f\x6f" +"\x06\x63\x6a\x6f\x67\x6f\x9f\x7b\xab\x1f\x0e\xf7\xe0\xde\x1d\xf8\xc8\xf8\xe0\x3d\x1d\xf8\x49\xf9\x12\xd5\x1d\xf8\xc7\xf8\xed\xbf" +"\x1d\x96\x1a\x96\x81\x94\x7f\x1e\x0e\xf8\xa9\xf8\xa1\x2c\x1d\xf7\xde\xf8\xf0\x32\x0a\xf8\x43\xf8\xf5\x59\x1d\xf7\xd4\xad\x0a\xf8" +"\x4d\xf9\x26\x5c\x1d\x7a\x74\x95\x1d\x0e\xf7\xa2\x96\x15\x78\x31\x05\x42\x0a\x68\x8e\x1f\x95\xb9\x05\x0e\xf8\x39\xf8\xda\x74\x1d" +"\xf8\x40\x96\x15\x43\x06\x45\x6d\x6a\x67\x5d\x65\x0a\xa6\xa5\xa7\xb9\xa2\x1f\x0e\xf8\x28\xf8\x73\x61\x0a\xf3\x1d\x82\x0a\x0e\xf8" +"\x31\xf7\xa8\x15\xd1\x06\x9f\x98\x96\x9b\x99\x83\x91\x7a\x1f\x78\x06\xae\xf7\x36\x05\x8c\x91\x8c\x92\x8f\x1a\xb5\x67\xa8\x55\x71" +"\x53\x7f\x80\x74\x1e\x7e\x85\x85\x82\x7f\x1a\x81\x93\x82\x96\x90\x8d\x8b\x8f\x95\x1e\x96\xa9\xaa\x92\x9c\x1b\xaa\x9f\x7f\x78\x88" +"\x8b\x89\x8a\x88\x1f\x83\x64\x05\x92\x70\x7a\x8d\x74\x1b\x32\x43\x57\x4c\x60\xad\x71\xc2\xb1\xa7\x91\x9d\xb3\x1f\x97\xc2\x15\x74" +"\x63\x6b\x82\x64\x1b\x6e\x78\x96\x9b\xae\xbd\xa9\xc4\xa1\x9b\x89\x84\xa4\x1f\x0e\xf7\xea\x22\x1d\xe7\x4b\x1d\xfb\x7e\x21\x1d\xe5" +"\x06\x5c\xfb\x6c\xfb\x20\x44\x05\x7a\x82\x85\x84\x7e\x1a\x7f\x94\x81\x96\x91\x8f\x8d\x90\x96\x1e\xf7\x01\xc3\x63\xfb\x4e\x05\x2f" +"\x21\x1d\xf8\x5d\x06\xb7\xf7\x5f\x05\x8d\x94\xf7\x48\x1d\x87\x1e\x69\xfb\x2e\x05\xfb\x9b\x06\xb8\xf7\x65\xf7\x40\xe3\x05\x9e\x95" +"\x90\x91\x98\x1a\x97\x82\x94\x80\x85\x82\x88\x88\x84\x1e\xfb\x21\x42\x05\x0e\xa7\x1d\x0e\xf8\x25\xf7\x9e\x15\xce\x06\x86\x76\x8a" +"\x7e\x05\x80\x95\x82\x97\x9b\x28\x1d\x9f\xea\x05\x8d\x91\x8b\x8d\xf7\x5c\x1d\x87\x1e\x86\x74\x05\x48\x34\x0a\xf7\x48\x06\x74\x22" +"\xf7\x02\x0a\xad\xf7\x32\x05\xfb\xd5\x06\xfb\x42\xfb\x25\xfb\x37\xfb\x59\x4f\xa2\x51\xb0\x68\x1f\x6a\xad\xbe\x7a\xc9\x1b\xf7\xdf" +"\x06\xa8\xf7\x1b\x05\x8c\x8c\x8b\x92\x8e\x1a\x97\xea\x0a\xbb\xf8\x61\x15\x3f\x0a\x6f\x06\x5d\x65\x95\x9e\x72\x1f\x69\xa6\x76\xbc" +"\xc2\x1a\xcd\xa1\xd3\xb0\xc0\x1e\xd5\xbf\xce\xaf\xe4\x1b\x0e\xf8\x3c\xf8\xd4\x15\x2a\x31\x35\x2e\x47\xbf\x58\xd2\xec\xe6\xe1\xe7" +"\xd1\x58\xbd\x42\x1f\x83\x5c\x15\xbd\xad\x6a\x5c\x4c\x4b\x4e\x4a\x58\x68\xac\xba\xcb\xca\xc7\xcf\x1f\x0e\x81\x0a\x0e\x3c\x1d\x0e" +"\xf8\x5a\xf8\xef\x15\xfb\x38\x24\x0a\x79\x7b\x93\x85\x9f\x1f\xf7\x02\x06\x5b\xfb\x73\xfb\x0a\x50\x05\x79\x82\x85\x84\x7e\x1a\x7f" +"\x94\x82\x97\x91\x8f\x8c\x90\x96\x1e\xe2\xb7\x5c\xfb\x6f\x05\xfb\x2f\x29\x1d\xf7\xfd\x06\xa1\x9a\x38\x1d\xfb\x2f\x06\xbf\xf7\x86" +"\xf7\x0b\xc6\x05\x9d\x94\x91\x92\x99\x1a\x97\x82\x94\x7f\x85\x88\x8a\x85\x7f\x1e\x33\x5f\x05\x0e\xc3\x1d\x7e\x81\x88\xcb\x1d\x0e" +"\xf9\x04\xf7\x57\x15\x94\xb7\x8e\xa1\xf7\x3b\x1d\x53\x55\x67\x49\x61\x1f\xc9\x7b\x5f\xb3\x57\x1b\x20\x21\xfb\x23\xfb\x23\x2d\xbd" +"\x46\xcf\xc2\xc3\xb2\xd0\xb8\x1f\x48\x9c\xba\x62\xc5\x1b\xae\xb6\x9d\xaf\xbc\x1f\xa3\x9d\x91\x92\xe8\x0a\x6f\x1b\x58\x67\xc0\xd7" +"\x93\x8c\x94\x8c\x99\x1f\x97\xbe\x15\xe4\xab\xb9\xba\xc2\x1b\xba\xa4\x6a\x4d\x7d\x8b\x82\x89\x79\x1f\xfb\xe0\xf7\x1c\x15\xb7\x88" +"\xaa\x5c\x49\x1a\x5a\x7c\x56\x70\x5f\x1e\x6e\x5b\x5e\x68\x69\x89\x08\x60\x89\x68\xbe\xce\x1a\xbe\x9a\xbf\xa6\xb7\x1e\xa9\xbc\xbc" +"\xb0\xab\x89\x08\x0e\xf7\x50\xf7\xd9\x15\x50\xfb\xa6\x4d\x1d\xf0\x06\xf0\xf8\x6b\x05\xb8\x95\xbe\xaf\xc1\x1b\xba\xac\x6c\x5e\x6c" +"\x7c\x71\x6d\x78\x1f\x7d\x75\x73\x83\x76\x1b\x86\x06\x79\x7c\x7e\x7b\x7c\x93\x85\xa0\x1f\x90\x06\xd7\xcc\x51\x48\x36\x4f\x38\x4e" +"\x6d\x7c\x9c\xad\x91\x8b\x90\x8c\x91\x1f\x8c\x8f\x8b\x8e\x8e\x1a\x96\x81\x93\x7f\x76\x7f\x79\x6c\x4c\xab\x67\xc4\xc0\xbc\xa9\xc4" +"\xb1\x1e\xa5\xb3\x9c\xc0\xb6\x1a\xce\x68\xc0\x48\xaa\x1e\xbe\xab\xa4\xb5\xbe\x1a\xd2\x59\xbc\x41\x3b\x3c\x51\x43\x7c\x1e\x75\x2a" +"\x05\x5b\x29\x1d\x0e\xf8\x58\xf8\xf8\x15\xfb\x05\x6a\x7c\x87\x85\x87\x08\x85\x87\x86\x83\x84\x1a\x81\x92\x84\x94\x8f\x8e\x8b\x8c" +"\x8e\x1e\xcc\x9f\x54\xfb\x97\x05\x51\x06\x70\x7f\x84\x7a\x80\x92\x85\x98\x1f\xf7\x47\x06\x99\xf7\x5f\x1d\x0e\xf8\x76\xf8\x19\x15" +"\xfb\x55\x07\x77\x94\x80\x9c\x9c\x94\x96\x9f\x1e\xf7\x88\xfc\x46\x07\x75\x80\x82\x7b\x7a\x96\x82\xa1\x1f\x0e\xf7\x3f\x95\x15\x77" +"\xa7\xa0\x85\xb2\x1b\xc9\xc7\xa2\xb7\xc0\x1f\x58\xdc\x07\xa0\x96\x94\x9b\x9b\x80\x94\x76\x1f\x6e\xf8\x05\xfb\x0d\x06\x74\x81\x83" +"\x7a\x7b\x97\x82\xa0\x1f\xd0\xfb\x8d\x06\x51\x55\x51\x6f\x49\x1b\x58\x69\xad\xbd\x1f\xf7\xc1\x26\x07\x75\x81\x83\x7a\x7b\x96\x82" +"\xa0\x1f\xbc\xfc\xa9\x06\x76\x94\x80\x9c\x9c\x94\x96\xa0\x1e\x0e\xf7\x97\xf8\x9c\x15\xc7\x06\x7d\x49\x05\x8a\x89\x8b\x89\x89\x1a" +"\x80\x93\x83\x96\x98\x95\x94\x9a\x8e\x1e\xa3\xf7\x02\x05\xfb\x91\x06\x74\xfb\x00\x05\x8a\x88\x8b\x89\x88\x1a\x80\x8c\x92\x84\x95" +"\x1b\x98\x95\x94\x9a\x8e\x1f\x9a\xce\x05\xc7\x06\x57\xfb\x83\x05\x5a\x8f\x1d\xf7\x20\x06\x9b\x98\x96\x99\x97\x83\x91\x7d\x1f\x5c" +"\x06\xf7\xd1\xbb\x15\xf6\xf7\x34\x5e\xfb\x64\x05\x6b\x8f\x1d\xdf\x06\x9b\x98\x94\x1d\x83\x06\xbf\xf7\x83\x05\x90\x06\x9c\x97\x94" +"\x1d\x4d\x06\xfb\x07\xfb\x41\x61\xf7\x41\x05\x4c\x8f\x1d\x8e\x06\x57\xfb\x83\x05\x81\x06\x7b\x7f\x80\x7d\x80\x93\x84\x98\x1f\xdf" +"\x06\x9b\x98\x94\x1d\x6d\x06\xb8\xf7\x66\xb3\xfb\x36\x05\x0e\x84\x0a\xf8\xe0\xf8\x6d\x15\x96\x95\x8e\x90\x93\x1a\x96\x83\x92\x3b" +"\x0a\x81\x81\x87\x85\x83\x1a\x81\x93\x83\x96\x93\x8d\x8c\x97\x98\x1e\xf7\x1b\xc9\x1d\xf7\x4e\xfb\x94\x15\xf7\x64\xf7\x32\x9d\x9e" +"\xbf\x1a\xbb\x64\xb0\x59\x61\x62\x77\x68\x6e\x1e\x7f\x7c\x83\x7d\x82\x1a\x82\x92\x84\x95\x95\x92\x90\x97\x91\x1e\xa9\x9b\xac\xa0" +"\xad\x1b\xab\xa3\x75\x6e\x76\x7d\x77\x68\x6f\x1f\x52\x5c\x48\x56\x51\x61\x85\x86\x18\x81\x5c\x05\xf7\x7f\x06\x94\xb4\x05\x8c\x8e" +"\x8b\x8e\x8c\x1a\x94\x84\x92\x81\x7f\x81\x82\x7e\x88\x1e\x8a\x07\x0e\xf8\x19\xf7\xbb\x15\xf7\x44\xf7\x1d\x0a\xfb\x42\x06\xab\xf7" +"\x2b\x05\x8c\x8f\x8c\x90\x8e\x28\x0a\x7b\x80\x80\x77\x87\x1e\x6a\xfb\x2d\x05\xfb\x44\x8e\x1d\xf7\x42\x06\x6a\xfb\x2c\x05\x89\x82" +"\x8b\x8a\x88\xf7\x1b\x0a\x95\xa0\x8f\x1e\xfb\x8b\x30\x15\x74\x7d\x80\x79\x7d\x94\x84\x9f\x1f\xf8\x25\xf7\x1d\x0a\x0e\xf7\x5a\xf7" +"\x14\x93\x1d\xf6\xda\x47\xc3\x2c\x1f\xfb\x1f\x06\x96\xbb\x05\xf7\x1a\x23\x1d\xfb\x7e\x64\x0a\x53\x0a\xfb\x18\x06\xa7\xf7\x14\x15" +"\xbd\xf7\x7e\x05\xf7\x25\x06\xcd\xbc\x64\x55\x41\x34\x48\x2b\x1f\x0e\xf7\xaa\xf8\xf8\x15\xfb\x00\x6c\x76\x85\x85\x87\x08\x85\x87" +"\x86\x83\x84\x1a\x82\x93\x83\x94\x8f\x8d\x8b\x8c\x8f\x1e\xcc\x9f\x54\xfb\x97\x05\x8c\x75\x75\x8b\x7c\x1b\x73\x7d\x82\x7b\x80\x93" +"\x85\x97\x1f\xf7\x46\x06\x9b\x97\x96\x98\x96\x84\x91\x7e\x1f\x47\x06\xf8\x3a\xf7\x44\x15\x96\x94\x8e\x91\x93\x1a\x95\x83\x93\x3b" +"\x0a\x81\x81\x87\x85\x83\x1a\x81\x93\x83\x96\x93\x8d\x8d\x96\x98\x1e\xf7\xe0\xa8\x15\x80\x58\x05\x77\x06\x6d\x80\x85\x79\x80\x92" +"\x85\x98\x1f\xe1\x06\x9a\x97\x96\x98\x96\x84\x91\x7e\x1f\x81\x06\x96\xbe\x05\xa7\x96\x92\x9c\x96\x83\x91\x7f\x1f\x81\x06\xb9\xf7" +"\x6a\x05\x4d\x06\xfb\x43\xfb\x6d\x82\x65\x05\xf7\x32\xb4\x15\x26\x06\xf7\x1d\xf7\x3c\x05\x0e\xf8\xc1\xf7\x95\x15\xa2\x99\x96\xf7" +"\x4c\x1d\x79\x7d\x2a\x0a\xf7\x3f\xfb\x11\x15\x69\x6b\x6c\x6a\x73\x9e\x78\xa5\xae\xab\xa9\xac\xa5\x78\x9d\x70\x1f\xe5\xf8\x2c\x15" +"\x68\xf4\x0a\x71\x1f\x0e\xf7\xda\xf8\xcf\x15\xa0\x82\x96\x7a\x7b\x82\x80\x76\x1e\xfb\x9a\x07\x77\x94\x80\x9c\x9b\x94\x96\x9f\x1e" +"\xfb\x1d\x04\xa0\x82\x96\x7a\x7b\x82\x80\x76\x1e\xfb\x9a\x07\x76\x94\x80\x9b\x9c\x94\x96\xa0\x1e\x0e\xf8\x4a\xf9\x0e\x15\x2a\x32" +"\x36\x30\x46\xbe\x59\xd2\xeb\xe4\xe1\xe6\xcf\x58\xbd\x45\x1f\x7e\x58\x15\xbb\xac\x6c\x5f\x4e\x4f\x52\x4c\x5d\x6a\xaa\xb8\xc6\xc7" +"\xc5\xc8\x1f\x0e\xf7\xa9\xf8\xe1\x15\x25\x21\x1d\xbb\x06\xfb\x25\xfd\x31\xaa\x0a\x42\xce\xfb\x02\x41\x55\x73\x50\x4c\xe9\x0a\xd8" +"\xef\xf7\x23\x0a\xf7\x68\xf7\x0e\x0a\xb7\x8a\xaa\xf7\x09\x0a\x76\xf7\x25\x1d\xd7\xd4\xc9\xcb\xa8\x7f\xa1\x6f\x9e\x1f\xb5\xa4\x9f" +"\xa9\xaf\x1a\xb8\x67\xaa\x57\x56\xf2\x0a\x9e\xa5\x94\xa7\x1b\xac\xa1\x7a\x71\x6b\x69\x70\x62\x1f\xf8\x03\x90\x15\x94\x94\x8f\x92" +"\x92\x1a\x95\x83\x93\x3b\x0a\x82\x82\x87\x84\x83\x1a\x81\x92\x83\x96\x93\x8d\x8c\x97\x98\x1e\xf8\x07\xa8\x15\x80\x58\x05\x76\x06" +"\x6d\x80\x84\x7a\x80\x93\x85\x97\x1f\xe1\x06\x9b\x97\x96\x98\x96\x83\x91\x7f\x1f\x81\x06\x95\xbe\x05\xa7\x96\x92\x9c\x96\x84\x91" +"\x7e\x1f\x81\x06\xb9\xf7\x6a\x05\x4e\x06\xfb\x44\xfb\x6d\x83\x65\x05\xf7\x32\xb4\x15\x26\x06\xf7\x1d\xf7\x3c\x05\x0e\xf7\xb6\xf7" +"\xbd\x15\xf7\x66\xf7\x34\x9c\x9c\xc1\x1a\xb9\x63\xb0\x59\x66\x66\x7b\x6f\x6e\x1e\x7a\x79\x7f\x78\x7f\x1a\x83\x93\x84\x94\x95\x92" +"\x90\x97\x91\x1e\xa9\x9b\xad\x9f\xac\x1b\xab\xa4\x75\x6f\x70\x80\x7e\x47\x55\x1f\x53\x5e\x61\x6a\x55\x63\x84\x86\x18\x81\x5c\x05" +"\xf7\x80\x06\x94\xb4\x05\x92\x07\x95\x8a\x85\x91\x81\x1b\x7f\x81\x82\x7e\x89\x1f\x8a\x8a\x05\x0e\xf7\xb9\xf7\x91\x15\xc5\x06\xaa" +"\x7f\xa7\x5b\x9e\x40\x08\xb7\x06\x9b\x98\x97\x9a\x97\x83\x92\x7d\x1f\x80\x06\x72\xcc\x83\x9a\x76\xa1\x08\xc1\xa0\xa9\xae\xb8\x1a" +"\xba\x66\xaa\x53\x1e\xfb\x1e\x06\x7a\x7e\x80\x7b\x7f\x93\x84\x99\x1f\x9d\x06\x58\xfb\x7f\x05\x77\x06\x7a\x7e\x7f\x7c\x7f\x93\x84" +"\x99\x1f\xeb\x06\x9c\x98\x97\x9a\x97\x83\x92\x7d\x1f\x6e\x06\xa8\xf7\x1b\x15\xa1\xef\x05\xd4\x06\xad\x9f\x7c\x72\x68\x61\x72\x52" +"\x1f\xd3\xf7\xaa\xc6\x1d\xf7\x37\xf7\xc7\x15\x74\x7d\xf0\x0a\xf8\x26\x2a\x1d\x0e\xf8\xc8\xf8\xca\x15\x95\x8f\x92\x95\x97\x1a\x97" +"\x82\x94\x7f\x88\x88\x8b\x8a\x89\x1e\x25\x63\x05\xa6\x56\x51\x9e\x70\x1b\x7a\x7d\x7d\x7a\x81\x91\x85\x99\x88\x1f\xaf\x83\x9d\x86" +"\xa4\x7f\x52\x75\x18\x81\x87\x85\x81\x7f\x1a\x7e\x95\x81\x97\x8c\x8f\x8c\x8c\x8e\x1e\xec\xb3\xa7\x74\xae\x54\x9b\x5f\x19\xa7\x65" +"\x67\x97\x5b\x1b\xfb\x28\xfb\x1d\xfb\x16\xfb\x1f\x21\xda\x41\xf7\x03\xd8\xd6\xac\xc6\xc4\x1f\xbf\xc0\xaa\xdb\xd9\x1a\xe5\x66\xe9" +"\x4e\xcd\x1e\x22\xfb\x2e\x15\xe2\xc6\x53\x39\x20\x5f\x1d\x0e\xf8\x03\xf7\xd1\x15\xfb\x01\xf7\x1c\x05\x94\x84\x86\x8e\x83\x1b\x7b" +"\x7c\x7d\x7c\x86\x8e\x84\x90\x85\x1f\xf7\x01\xfb\x1c\xfb\x3d\xfb\x1c\x05\x7e\x81\x87\x84\x81\x3e\x0a\x93\x8e\x93\x95\x1e\xf7\x3c" +"\xf7\x1d\xf7\x01\xfb\x1c\x05\x82\x93\x90\x88\x93\x1b\x9b\x9a\x99\x9a\x90\x88\x91\x86\x92\x1f\xfb\x01\xf7\x1c\xf7\x3c\xf7\x1c\x05" +"\x99\x96\x8f\x91\x95\x1a\x97\x81\x94\x7e\x84\x84\x88\x83\x81\x1e\x0e\xf8\x17\xf7\x0e\x0a\xb6\x8a\xaa\xbd\x0a\xa9\x7f\xa0\x70\x9e" +"\x1f\xb4\xa4\x9f\xa9\xaf\x1a\xb8\x67\xaa\x57\x57\xf2\x0a\x9d\xa5\x94\xa8\x1b\xab\xa1\x7a\x72\x6a\x6a\x70\x62\x1f\x0e\xf7\x60\xf7" +"\x99\x15\x89\x82\x8a\x81\x82\x1a\x45\xc2\x55\xd2\xb4\xb6\x9c\xaa\xb0\x1e\x9c\x9a\x91\x93\x95\x1a\x97\x83\x92\x80\x83\x86\x89\x84" +"\x83\x1e\x6a\x68\x70\x7f\x68\x1b\x5a\x67\xaf\xbc\x94\x8c\x91\x8c\x92\x1f\x93\xb1\x05\xc6\x98\xc1\xba\xc2\x1b\xa2\xa2\x83\x7f\x98" +"\x1f\x8f\x87\x94\x7d\x89\x1a\x8a\x76\x05\x85\x96\x83\x94\x98\x96\x94\x9a\x8e\x1e\x99\xca\x05\x8c\x8e\x8b\x8e\x8d\x1a\x96\x83\x93" +"\x7f\x80\x82\x84\x80\x86\x1e\x9d\x6f\x76\x92\x6c\x1b\x3c\x3c\x49\x3a\x7a\x1f\xf7\x67\xf7\xa4\xc6\x1d\x29\x0a\xf7\x11\xf7\x73\x15" +"\x9c\x97\x8e\x8f\x97\x28\x0a\x83\x86\x89\x83\x80\x1e\xfb\x1c\x29\x05\x7e\x81\x86\x84\x80\x3e\x0a\x8f\x47\x0a\x29\x0a\xad\xf7\xa5" +"\xe5\x1d\x8d\x92\x95\x7f\x0a\x91\x1b\x9b\x9a\x99\x9a\x93\x89\x8e\x82\x94\x1f\x0e\x29\x0a\x37\xf7\x88\x15\x69\x6b\x42\x1d\xae\xbe" +"\x0a\x29\x0a\x68\xf7\x99\x15\x94\x83\x87\x8d\x83\x1b\x7c\x7c\x7d\x7c\x85\x8f\x83\x90\x86\x44\x1d\x92\x91\xee\x0a\x29\x0a\xb5\xf7" +"\xb9\xf7\x4a\x1d\xc5\xb7\x69\xab\x5c\x1f\x84\x60\x15\xa5\x9d\x7b\x73\x6c\x6a\x6c\x68\x71\x78\x9b\xa2\xac\xac\xa9\xaf\x1f\x0e\x29" +"\x0a\xf7\x34\xf7\x80\x5b\x0a\x67\x81\x85\x7b\x1b\x81\x81\x90\x9d\x6d\xe3\x0a\x73\x80\x71\x68\xf7\x07\x1d\x94\x87\x80\x9c\x1f\x73" +"\xaf\x9d\x84\xa2\x1b\xa5\xa5\x97\xa9\xae\x1f\x9f\x9b\x8f\x91\x96\x1a\x96\x81\x94\x7f\x1e\x0e\xf7\xd3\x7b\x15\x92\x06\xca\xd8\xab" +"\xbe\xc8\x1f\xa8\xa4\x92\x94\x98\x1a\x96\x82\x93\x7f\x81\x86\x88\x83\x82\x1e\x4d\x48\x54\x72\x47\xf7\x0b\x1d\xb8\xba\x7b\x74\xa3" +"\x1f\x93\x83\xa0\x6c\x87\x1a\x89\x65\x05\x85\x98\x82\x93\x9c\x60\x1d\x8b\x8f\xdc\x0a\x88\x79\x05\x4e\x0a\x49\xa9\x4c\xbe\x63\x1e" +"\xa3\x79\xa1\x81\xb2\x81\x7c\x46\x18\xf6\x1d\xb7\x77\xb5\xc4\xb6\xaf\xbb\xa9\x79\x9c\x68\x8e\x1f\x0e\x2d\x1d\xf8\x06\xf9\x40\x15" +"\x99\x95\x90\x71\x0a\x87\x7f\x1d\x8f\x47\x0a\x2d\x1d\xf7\xac\xf9\x72\x15\xfb\x33\xfb\x00\x05\x7b\x80\x86\x85\x7f\x3e\x0a\xf7\x06" +"\x1d\x81\x94\x1f\x0e\x2d\x1d\xf7\x36\xf9\x55\x77\x1d\x2d\x1d\xf7\x60\xf9\x66\xe3\x1d\x3b\x1d\xf7\x72\xf9\x40\x2d\x0a\x3b\x1d\xf7" +"\x19\xf9\x72\x3d\x0a\x81\x86\x85\xef\x0a\x90\x8d\x92\x96\x1e\xf7\x0e\xdf\xe1\x38\x05\x84\x93\x90\x88\x91\x1b\x9b\x9a\x99\x9a\x93" +"\x8a\x8e\x81\x94\x1f\x0e\xf8\x48\x22\x1d\xf7\x1b\x2e\x0a\xfb\xd3\x83\x1d\xf7\xd4\x06\xa1\x9a\x97\x9c\x9b\x83\x91\x76\x1f\xfb\x18" +"\x06\x9a\xf9\x55\xaf\x0a\x3b\x1d\xcb\xf9\x66\x15\x94\x83\x86\x8d\x84\x1b\x7b\x7c\x7d\x7c\x85\x8e\x84\x92\x85\x44\x1d\x92\x91\x88" +"\x91\x1b\x9d\xf7\x16\x0a\x54\x1d\xf7\x29\xf9\x80\xf7\x12\x1d\x80\x8f\x75\x1b\x71\x73\x80\x71\x68\x1f\x76\x7b\x84\xf7\x00\x0a\xa7" +"\xad\x95\x91\x9d\x1b\x96\x94\x87\x80\x9c\x1f\x73\xb0\x9b\x84\xa3\x1b\xa5\xa5\x97\xa9\xaf\x1f\x9e\x9b\x8f\x91\x96\x1a\x96\x81\x94" +"\x7f\x1e\x0e\x31\x0a\xf7\x29\xf7\x67\x15\x9a\x96\x8f\x90\x97\x46\x0a\x80\x1e\xfb\x1c\x29\x05\x7e\x82\x86\x83\x80\x1a\x7f\x94\x82" +"\x97\x93\x8e\x8d\x93\x98\x1e\x0e\x31\x0a\xbe\xf7\x99\xcd\x0a\xe1\x38\x05\x84\x92\x90\x88\x92\x1b\x9a\x9a\x99\x9b\x92\x89\x8e\x82" +"\x94\x1f\x0e\x31\x0a\x48\xf7\x7c\x15\x69\x6a\x42\x1d\xaf\xbe\x0a\x31\x0a\x72\xf7\x8d\x15\x94\x83\x87\x8d\x84\x1b\x7b\x7c\x7d\x7c" +"\x85\x8e\x84\x91\x7d\x0a\x91\x88\x91\x1b\x9c\xf7\x11\x0a\x80\x98\x1f\x0e\xf8\x3b\xf8\xd3\x15\xfb\x3b\xfb\x32\xfb\x46\xfb\x52\xfb" +"\x17\xdc\x2f\xf7\x08\xdd\xda\xb2\xd4\xcc\x1f\xca\xd2\xb1\xea\xe4\x1a\xf7\x19\x3b\xe6\xfb\x0b\x1e\x85\x58\x15\xe3\xcb\x3f\x21\xfb" +"\x2c\xfb\x17\xfb\x2f\xfb\x14\x2c\x4b\xd4\xf6\xf7\x33\xf7\x16\xf7\x2a\xf7\x1c\x1f\xf7\x4d\xf7\x74\x15\x84\x85\x89\x84\x83\x1f\x6e" +"\x67\x81\x9f\x1d\x6e\x7f\x8f\x75\x1b\x71\x73\xa3\x0a\x94\x87\x80\x9c\x1f\x73\xb0\x9c\x84\xa2\x1b\xa5\xa5\x97\xa9\xaf\x1f\x9e\x9b" +"\x8f\x91\x56\x0a\xf8\xbd\xf8\xa0\x15\xf5\x0a\xa0\x79\x1f\xa6\x76\xad\x7f\xd0\x7e\xcf\x80\x9e\x85\x9f\x7c\x08\x9b\x80\x96\x75\x77" +"\x1a\x3b\x37\x4a\x24\x63\x62\x96\x9c\xa7\x0a\xc0\x75\xcd\x1b\xf7\x1e\xf7\x04\xe5\xf7\x03\xaf\x7b\xad\x71\x9d\x1f\x71\x62\x1d\xd0" +"\xd7\xc5\xe3\xb0\xae\x80\x7b\x9c\x1e\x94\x83\x9f\x6d\x87\x1a\x89\x61\x05\x85\x97\x82\x95\x9b\x28\x1d\xa0\xef\x05\x8c\x8f\x8c\x91" +"\x8e\x1a\x96\x82\x94\x7e\x7b\x81\x81\x77\x86\x1e\xfb\x00\xe9\xbf\x0a\x85\x85\x8e\x85\x1b\x7a\x7d\x92\x1d\x2e\x1d\x9e\xf8\xb9\xb0" +"\x0a\x2e\x1d\x40\xf8\xeb\xa8\x0a\x2e\x1d\xfb\x55\xf8\xce\xbb\x0a\xaa\xac\xa4\x78\x9e\x70\x1f\x0e\x2e\x1d\xfb\x27\xf8\xdf\x15\x93" +"\x83\x86\x8e\xe7\x0a\x92\xf0\x1d\x47\x1d\xf7\x75\xf9\x40\xb0\x0a\x47\x1d\x98\xf9\x55\x15\x50\x0a\xf7\x72\x16\x68\x6b\x35\x0a\xa5" +"\x78\x9d\x70\x1f\x0e\x60\x0a\xf7\xe4\xf9\x06\x78\x0a\x85\x89\x84\x81\x4f\x0a\x5d\x0a\xc9\xf8\x19\x15\x9a\x96\x8f\x90\x97\x46\x0a" +"\x7f\x41\x1d\x7c\x80\x87\x85\x80\x3e\x0a\x90\x8d\x93\x96\x1e\x0e\x37\x0a\x6e\xf8\x4b\x15\xfb\x33\xfb\x01\x05\x7c\x63\x0a\x59\x0a" +"\x74\x0a\x77\x1f\x5b\x06\xf7\x19\x0a\x93\x92\x1a\xc9\x51\xb5\x36\x6a\x0a\xd7\xa6\x90\xad\x1b\xca\xb2\x73\x66\x85\x8b\x88\x8a\x88" +"\x1f\x7d\x4b\x05\x9a\x55\x6e\x8f\x5f\x1b\xfb\x22\xfb\x01\x40\x29\x48\xbf\x63\xe0\xd0\xc7\xa1\xbf\xd2\x1f\x99\xc8\x15\x4e\x3c\x52" +"\x74\x44\x1b\x51\x6a\xa2\xb4\xcc\xe0\xbc\xf7\x05\xb3\xb5\x86\x82\xae\x1f\xfb\x26\xf8\x2e\x77\x1d\x5d\x0a\x22\xf8\x3f\xf7\x0b\x0a" +"\x8d\x86\x93\x84\x44\x1d\x93\x90\x88\x92\x1b\x9b\x9a\x99\x9b\x90\x8b\x8b\x85\x93\x1f\x87\x90\x05\x0e\x5d\x0a\x72\xf8\x5f\x5c\x1d" +"\x7b\x73\x6c\x69\x6c\x69\x70\x79\x9b\xa3\xab\xac\xa9\xaf\x1f\x0e\xf8\x31\x16\xf0\x4b\x1d\x5b\x06\xc3\xf7\x93\x05\x8c\x93\x8c\x91" +"\x94\x1a\xc9\x51\xb5\x37\x6a\x0a\xd5\xa8\x90\xac\x1b\xca\xb0\x75\x64\x8d\x1f\x86\x8b\x87\x8a\x88\x1e\x7e\x4b\x05\x9a\x54\x6f\x8f" +"\x5f\x1b\xfb\x22\xfb\x01\x40\x28\x49\xbf\x63\xe0\xcf\xc8\xa1\xbf\xd2\x1f\x98\xc8\x15\x4e\x3d\x52\x74\x43\x1b\x52\x6a\xa2\xb4\xcc" +"\xdf\xbc\xf7\x05\xb4\xb4\x86\x82\xaf\x1f\xec\xf8\x26\x5b\x0a\x67\x81\x85\x7b\x1b\x80\x82\x8f\x9e\x6d\x1f\x9e\x6e\x7f\x8f\x75\x1b" +"\x71\x73\x81\x70\x68\x1f\x77\x7b\x83\xf7\x00\x0a\xa8\xad\x95\x90\x9d\x1b\x96\x95\x87\x80\x9b\x1f\x73\xb0\x9c\x84\xa2\xf7\x1b\x1d" +"\xf7\xd0\x7c\x15\xc4\x8d\xb9\x96\xba\xa0\x08\xc5\xa6\xaf\xa8\xa0\x1a\x97\x82\x93\x71\x1d\x8a\x88\x05\x88\x1d\x47\xad\x51\xc3\x70" +"\x1f\x9d\x83\x99\x87\xa8\x86\x7c\x49\x18\xf7\x1f\x1d\x80\x8f\x95\x78\x1f\x90\x82\x88\x8c\x85\x1b\x7c\x7d\x7e\x7c\x77\xb7\x77\xb5" +"\xc4\xb5\xaf\xbb\xa9\x79\x9c\x69\x8e\x1f\x0e\x30\x1d\x93\xf7\xe4\x3d\x1d\x30\x1d\x38\xf8\x16\x3d\x0a\x4e\x1d\xf7\x06\x1d\x82\x94" +"\x1f\x0e\xa9\x0a\xfb\x04\xdd\x3f\xf7\x0c\xf3\xf7\x17\xbd\xb3\x97\x83\x94\x7e\x85\x87\x89\x85\x81\x1e\x6d\x5d\x3f\x75\x4c\x1b\x2d" +"\x4a\xc5\xe0\x8f\x8b\x90\x8c\x93\x1f\xf8\x09\xbe\x15\xfb\xfd\x06\xdc\xad\xe0\xc2\xe7\x1b\xe4\xc8\x56\x3e\x1f\xfb\x5d\xf7\xf9\xbb" +"\x0a\xa9\xad\xa5\x78\x9d\x70\x1f\x0e\x30\x1d\xfb\x33\xf8\x0a\x15\x94\x83\x86\x8d\xe7\x0a\x93\x90\x88\x91\x1b\x9b\x9b\x99\x99\x8e" +"\x84\x99\x88\x8e\x1f\x0e\x3c\x1d\xf7\x4d\xf8\xad\xba\x0a\x8e\x8c\x94\x98\x1e\x0e\xf8\x33\xd0\x1d\xe0\xf8\xdf\xf7\x2c\x1d\x91\x92" +"\xc3\x0a\x3c\x1d\x6d\xf8\xc2\xaf\x0a\x3c\x1d\x9e\xf8\xd3\x15\x93\x83\x86\x8e\x84\x1b\x7b\x7c\x7d\x7c\x84\x8e\x85\x91\x7d\x0a\x91" +"\x88\x91\x1b\x9c\xf7\x11\x0a\x80\x98\x1f\x0e\xf7\x9b\xf8\x37\x15\x39\x4f\x1d\x9f\x1f\xa6\x69\x0a\x78\x1f\x64\x06\xbf\xf7\x84\x05" +"\xd7\xd8\xa9\x9b\xc7\x1b\xb0\x9c\x85\x79\x9e\x1f\x9a\x7c\x92\x7a\x77\x1a\x80\x8b\x8a\x8a\x85\x1e\x57\xfb\x82\x05\x6e\x06\x73\x7d" +"\x80\x78\x7d\x2a\x0a\xf7\x00\x23\x1d\x70\x06\xc0\xf7\x87\x05\x8c\x92\x8c\x93\x94\x1a\xd0\x55\xb9\x39\x4f\x62\x79\x54\x4b\x1e\xf7" +"\xc4\xf7\x85\x5b\x0a\x68\x80\x9f\x1d\x6d\x7f\x8f\x76\x1b\x70\x74\x81\x70\x67\x1f\x77\x7b\x83\x81\x7f\x1a\x80\x94\x83\x98\x92\x93" +"\x8e\x91\x92\x1e\xa8\xae\x94\x90\x9d\x1b\x96\x95\x87\x80\x9c\x1f\x73\xaf\x9c\x84\xa3\x1b\xa5\xa4\x97\xa9\xaf\x1f\x9f\x9b\x8f\x91" +"\x56\x0a\x38\x0a\xf7\x24\xf7\x62\x15\x9a\x96\x8f\x90\x97\x46\x0a\x7f\x41\x1d\x7e\x82\x86\x83\x80\x1a\x7f\x94\x82\x97\x93\x8e\x8c" +"\x94\x97\x1e\x0e\x38\x0a\xc0\xf7\x94\x3d\x0a\x81\x86\x85\xef\x0a\x91\x8d\x92\xc8\x0a\xb2\x0a\x3a\xfb\x00\x5f\x1d\x4b\xf7\x77\x15" +"\x50\x0a\xf7\x71\x16\x50\x0a\x0e\x38\x0a\x7b\xf7\x88\xe3\x1d\xb2\x0a\x39\x20\x5f\x1d\xf7\x4e\xf7\x6f\xf7\x12\x1d\x7f\x8f\x76\x1b" +"\x70\x73\xa3\x0a\x94\x87\x80\x9d\x1f\x73\xaf\x9c\x84\xa3\xf7\x1b\x1d\xf3\x85\x1d\xf7\x17\xf7\x61\x1d\xa0\x67\x97\x4f\x91\x3f\x94" +"\x8b\x8b\x76\x93\xf7\x21\x1d\x85\x9d\x77\x87\x1a\x8a\x6d\x05\x84\x97\x82\x94\x9c\x28\x1d\x99\xcf\x05\x8c\x8f\x8c\x90\x8e\x1a\x97" +"\x82\x94\x7f\x7d\x80\x81\x7b\x86\x1e\xa5\x6f\x60\x99\x55\x1b\xfb\x05\xec\x0a\xc1\x85\xa4\x85\xa1\xf7\x4f\x1d\x2f\x40\x52\x9b\x1d" +"\x8d\x8e\x7c\x0a\x86\x1e\xf7\xb6\xf8\x01\xbf\x0a\x84\x86\x8e\x84\x1b\x7b\x7d\x7d\x7c\x82\x8c\x89\x95\x82\x1f\x0e\x2c\x0a\xcf\xf8" +"\xa7\x15\x9c\x96\x8e\x6a\x1d\x84\x85\x89\x83\x80\xd3\x0a\x2c\x0a\x7b\xf8\xd9\xf7\x24\x1d\x8d\x92\x95\x7f\x0a\x92\x1b\x9a\x9a\x99" +"\x9a\x93\x59\x0a\xf8\x45\x16\xdc\x06\xa2\xb6\x1d\xc9\xa3\xbc\xcc\x1f\xfb\x19\xf8\xbc\x77\x1d\x2c\x0a\x36\xf8\xcd\x15\x94\x83\x87" +"\x8d\x83\x1b\x7b\x7c\x7d\x7c\x85\x8e\x84\x92\x7d\x0a\x90\xee\x0a\x52\x1d\xf8\x1d\xf7\x70\x3d\x1d\x52\x1d\xf7\x29\xf7\x85\x15\x50" +"\x0a\xf7\x71\x16\x68\x6b\x6c\x6a\x71\x9e\x79\xa5\xaf\x8c\x1d\x0e\xde\x0a\x95\x82\x97\xf7\x0d\x0a\xfc\x01\xfb\xd8\x82\x5f\x05\xf8" +"\x15\x06\xa0\xee\x05\x8c\x8f\x8c\x90\x8f\x1a\x96\x82\x94\x7f\x7a\x81\x81\x76\x86\x1e\x80\x59\x05\xfb\x97\x06\xf8\x03\xf7\xd8\x05" +"\xfb\x32\xf3\x78\x0a\x85\x89\x84\x81\x4f\x0a\xf7\xed\xf8\xab\x15\x50\x06\x78\x7f\x81\x7b\x7f\x94\x84\x9a\x1f\x94\x06\x63\xfb\x4c" +"\x05\x79\x06\x78\x7e\x80\x7c\x7f\x94\x84\x9a\x1f\xdd\x06\x9d\x98\x96\x9a\x98\x83\x91\x7b\x1f\x7b\x06\xaa\xf7\x23\x05\xb2\xb4\x9f" +"\x95\xae\x1b\xab\xa2\x7b\x75\x89\x1f\x8a\x82\x6b\xfb\x25\x05\x80\x06\x78\x7e\x81\x7b\x7f\x94\x84\x9a\x1f\xcf\x06\x9d\x98\x96\x9a" +"\x97\x83\x92\x7b\x1f\x82\x06\xab\xf7\x27\x05\x8c\x91\x8c\x91\x8f\x1a\xb8\x67\xa8\x53\x68\x73\x82\x73\x6a\x1e\x0e\xf7\x8a\xf8\x04" +"\x15\xce\x23\x1d\x4a\x98\x0a\xa2\x40\x1d\x4a\x06\xf7\xf3\xf7\xd1\x15\xce\x30\x0a\x4b\x98\x0a\xa1\x9a\x97\x9d\x99\x82\x92\x78\x1f" +"\x4a\x06\x0e\xf8\x8d\xbe\x15\xda\xf8\x04\x05\xfb\x38\x06\x96\xf7\x2e\x1d\x94\x8d\x8b\x8f\x1b\x99\x99\x90\x1d\x69\x92\x77\x1b\x70" +"\x76\x83\x76\x6e\xa0\x0a\xfb\x0c\x16\xfb\x05\x06\xd0\xf7\xd1\x05\xf7\x05\x06\xfb\xee\xfb\xd1\x15\xd0\xf7\xd1\x05\xf7\x04\x25\x0a" +"\xdb\xf8\x04\x15\xfb\x04\x76\x0a\x9d\x87\x84\xa1\x1f\x8e\x8a\x90\x8a\x7d\x77\x82\x77\x85\x71\x19\x0e\xf8\xff\xf8\xd9\x15\x5b\x99" +"\x05\x8f\x7b\x75\x8f\x7e\x1b\x70\x77\x83\x76\x6d\xa0\x0a\x47\x06\x57\x16\xfb\x05\x06\xd0\xf7\xd1\x05\xda\x4b\x1d\x3e\x06\x96\xbf" +"\x05\xb9\x95\xae\xae\xae\x1b\x99\x99\x88\x85\x9f\x1f\xfc\x13\xfc\x80\x15\xd0\xf7\xd1\x05\xf7\x04\x25\x0a\xdb\xf8\x04\x15\xfb\x04" +"\x76\x0a\x9d\x87\x84\xa1\x1f\x8e\x8a\x90\x8a\x7d\x77\x82\x77\x85\x71\x19\x0e\xf8\xe8\xf8\x6d\x15\x94\x94\x8f\x91\x93\x1a\x96\x83" +"\x92\x3b\x0a\x82\x82\x87\x84\x83\x1a\x81\x93\x83\x95\x93\x8d\x8c\x97\x98\x1e\xf7\x07\xc9\x1d\xf8\x0e\xfb\x09\x15\xb2\xa2\xa0\xac" +"\xb1\x1a\xba\x67\xad\x57\xf7\x2a\x1d\x5a\xb2\x67\xc1\xd1\xcd\xc7\xcc\xa5\x81\x9d\x75\x9e\x1e\x67\xf7\x1a\x15\xac\xa0\x78\x6e\x67" +"\x66\x6c\x61\x6c\x74\x9d\xa5\xaf\xb2\x70\x0a\x5e\x9e\x1d\xb8\x1f\x0e\xf8\xdb\xf8\x6d\x15\x94\x94\x8f\x92\x92\x1a\x95\x83\x93\x3b" +"\x0a\x80\x80\x88\x86\x84\x1a\x80\x93\x83\x96\x93\x8e\x8d\x96\x97\x92\x0a\xfb\xa7\xf7\xc9\xf7\x5e\x1d\xb7\x8a\xa9\xbd\x0a\xa8\x7f" +"\xa1\x70\x9e\x1f\xb5\xa4\x9f\xa9\xaf\x1a\xb8\x67\xaa\x57\x56\xf7\x12\x0a\x95\x1e\x9c\x9e\xa4\x94\xa7\x1b\xad\xa0\x7a\x71\x6b\x69" +"\x70\x62\x1f\x0e\xf8\xdb\xf8\x6d\x15\x94\x93\x8f\x93\x92\x1a\x95\x83\x93\x81\x83\x88\x89\x80\x7f\x1e\xfc\x4a\xfc\x2d\x05\x81\x81" +"\x87\x85\x84\x1a\x80\x93\x83\x96\x93\x8d\x8d\x96\x98\x1e\xf8\x3e\xf7\x09\x15\xb2\xa2\xa0\xad\xb0\x1a\xba\x66\xad\x58\xf7\x2a\x1d" +"\x59\xb2\x68\xc1\xd1\xcd\xc7\xcc\xa5\x81\x9d\x75\x9e\x1e\x67\xf7\x1a\x15\xab\xa1\x78\x6f\x66\x66\x6c\x61\x6b\x75\x9d\xa5\xaf\xb2" +"\x70\x0a\x5e\x9e\x1d\xb8\x1f\xfb\xc3\xf8\x27\x15\xf7\x12\x06\x9b\x94\x94\x9a\x98\x86\x8f\x7e\x1f\xfb\x3a\x06\x69\xfb\x2f\x05\x87" +"\x07\x83\x93\x81\x92\x1e\x95\x8d\x90\x8c\x91\x8e\x05\x91\x94\xb6\x95\x9b\x1b\xab\xa1\x76\x6b\x51\x5e\x5b\x55\x71\x68\x9b\x9c\x7f" +"\x1f\x91\x86\x88\x8d\x84\x1b\x7f\x80\x80\x7e\x71\xc5\x6b\xba\xd9\xcf\xd3\xdd\xc0\x68\xad\x55\x79\x79\x88\x82\x71\x1f\x0e\xf8\xda" +"\xf8\x6d\x15\x95\x94\x8f\x92\x92\x1a\x95\x83\x93\x3b\x0a\x80\x81\x88\x85\x84\x1a\x80\x93\x83\x96\x93\x8d\x8c\x97\x98\x92\x0a\xfb" +"\x30\xf8\x27\x15\x2d\xfb\x40\x53\xfb\x00\x81\x1a\x8a\x83\x05\x88\x97\x85\x92\x92\x95\x92\x94\x90\x1e\xf7\x2b\xf7\xb2\x95\xb9\x05" +"\xfb\x74\x06\x80\x57\x05\x7e\x88\x93\x81\x97\x1b\x98\x93\x92\x9a\x8e\x1f\x8e\x97\x05\x0e\x82\x0a\xf7\x64\xf7\x09\x1d\x7d\x81\x85" +"\x83\x82\x1a\x7e\x95\xf7\x62\x1d\x29\x0a\xfb\x01\xf7\x98\x48\x1d\x8d\x0a\xf7\x2e\xf8\x98\x15\x94\x97\x8d\x91\x92\x1a\x97\x82\x94" +"\x7f\x81\x81\x85\x7e\x83\x1e\x2e\xfb\x1b\x05\x84\x81\x88\x83\x84\x1a\x7e\x93\x82\x98\x95\x94\x91\x98\x94\x1e\xf8\x13\xfb\x58\x15" +"\xa1\xfb\x19\xbe\x1d\xdb\xf7\x19\x05\xf7\x8c\xbe\x15\xfb\x6e\x06\xf7\x38\xf7\xa9\x05\x92\x06\x0e\x29\x0a\xf7\x08\xf7\x31\x2c\x1d" +"\xf8\x5a\xf8\xc7\x15\xfb\x64\x37\x1d\x7b\x1d\x9a\x82\x91\x98\x1d\xf7\x96\x06\xa2\xfb\x19\x05\x45\x21\x1d\xd9\xb6\x0a\xa0\x9d\xa2" +"\xa9\x9d\x1f\xa5\x9b\xa9\x98\x9a\x8d\x08\xa0\x8e\x96\x95\x9c\x1a\x9a\x82\x91\x77\x1e\x6b\x06\x36\xf7\x4c\x8b\x1d\x0e\x29\x0a\xb1" +"\xf7\xb6\xe1\x1d\xb6\xf7\x01\x15\x99\xf7\x07\x0a\x7e\x83\x87\x89\x83\x7f\x82\x1d\x95\x8f\x91\x92\x1e\x0e\x8c\x0a\x55\x1d\x6e\xf7" +"\x5f\x2d\x0a\x55\x1d\xfb\x15\xe9\x39\x0a\x55\x1d\x23\xf7\x91\xdb\x1d\x80\x95\x1f\x0e\x55\x1d\x23\xf7\x75\xe0\x0a\x0e\xa5\x1d\xb4" +"\x1d\xe9\xf8\xd3\x39\x0a\x84\x0a\xae\x16\xf8\xa6\x06\xfb\x84\xf8\xc6\x05\x59\x06\xfb\x38\xfc\x93\x15\xf7\x51\xf8\x47\xf7\x51\xfc" +"\x47\x05\x0e\x2d\x1d\xf7\x1e\xf9\x65\x48\x1d\x2d\x1d\xf7\x77\xf8\xd3\x39\x0a\x2d\x1d\xf7\x9b\xf7\x10\x1d\x2d\x1d\xf8\x09\xf8\xfe" +"\x2c\x1d\xf8\xfd\x22\x1d\xa8\x23\x1d\xfb\x29\x32\x1d\xcf\x06\x2d\xfc\x42\xfb\x54\xf8\x75\x05\xfb\x02\x20\x1d\xbb\x58\x1d\x35\x1d" +"\x47\x06\xe8\xf8\x42\xf7\x57\xfc\x70\x83\x69\x7e\x4d\x5b\x64\x4a\x8a\x19\x46\x06\x7a\x7d\x7d\x7b\x7c\x94\x85\xa0\x1f\xca\x06\xe5" +"\x89\xe0\xd1\x9d\xe5\x08\x0e\xf7\x49\xbe\x15\xba\xf7\x6b\x05\x81\x1d\x8e\x1a\x96\xf7\x18\x0a\x87\x1e\x82\x63\x8a\x1d\x98\x9b\x96" +"\x95\xa0\x8f\x1e\xaa\xf7\x23\x05\xfc\x48\x49\x1d\xf8\x01\x06\x4c\x6c\x71\x6e\x62\x1a\x6a\xa5\x79\xb9\xb8\xed\x0a\x87\x8a\x72\x1b" +"\x79\x82\x91\x98\xaf\xb9\xaf\xd3\x9f\x1f\x93\x8d\xae\xf7\x34\xf7\x11\x1d\x0e\xa4\x1d\xf7\x2a\xf8\x98\x43\x0a\xf7\x52\xfb\x06\x15" +"\xf7\x19\x06\x82\x65\x8a\x7e\x05\x7f\x93\x83\x98\x9c\x96\x96\x9f\x8f\x1e\xa7\xf7\x15\x05\x8d\x91\x8b\x8e\x8f\x1a\x98\x83\x92\x7d" +"\x7b\x80\x80\x77\x86\x1e\x83\x63\x05\xfb\x19\x06\xb5\xf7\x57\x05\xf7\xa9\x06\x78\x31\x05\x8a\x85\x8a\x87\x7e\x0a\x96\x9f\x8f\x1e" +"\xaa\xf7\x23\x05\xfc\x43\x37\x1d\x95\x84\x9e\x1f\xb9\x06\x27\xfc\x61\x05\x5a\x2b\x1d\xf8\x56\x06\xae\xf7\x35\x8c\x99\x05\x97\x83" +"\x92\x7e\x7a\x80\x80\x77\x87\x1e\x72\xfb\x04\x05\xfb\xbe\x06\x0e\x85\x0a\xf7\x21\xf8\x98\x43\x0a\xf8\x35\xfb\x06\x15\x5c\xfb\x6b" +"\x05\x59\x06\x74\x7d\x43\x1d\xf7\x20\x23\x0a\x64\x06\x36\x0a\xa0\x06\xa2\x52\x0a\xfb\x0c\x24\x0a\x79\x7d\x95\x83\x9e\x1f\xba\x06" +"\x61\xfb\x57\x05\xfb\x94\x34\x0a\xbc\x5e\x1d\xfb\x0c\x06\x74\x7d\x80\x79\x7c\x95\x84\x9e\x1f\x9d\x26\x1d\x62\x06\x73\x7e\x81\x78" +"\x7d\xf7\x26\x1d\xba\xf7\x6b\x05\x0e\xf7\x51\xf7\xf6\x15\xa5\xc2\x9d\xa4\xae\xa9\x08\xb3\xb8\xbe\x9f\xc2\x1b\xb8\xb9\x7c\x73\xa4" +"\x1f\x95\x82\x9e\x6d\x86\x1a\x88\x66\x05\x85\x98\x82\x94\x9c\x95\x95\x9f\x90\x1e\xa2\xf7\x02\x05\x8c\x90\x8c\x8f\x8f\x1a\xf7\x20" +"\x0a\x87\x79\x05\xb3\x65\x55\xa0\x4c\x1b\xfb\x12\xfb\x06\x35\xfb\x1b\x57\x1f\x6e\x06\x77\x80\x81\x77\x7f\x92\x86\x9b\x1f\xa3\x06" +"\x81\x5b\x05\x71\x06\x76\x80\x81\x77\x7f\x93\x86\x9b\x1f\xa5\x06\x60\x8c\x83\x92\x72\x1e\x2d\xa8\xda\x51\xed\x1b\xd2\xd4\xa8\xc1" +"\xcb\x1f\xa7\xa3\x93\x95\x98\x1a\x96\x83\x93\x7e\x81\x86\x89\x82\x82\x1e\x4c\x46\x56\x73\x47\x1b\x49\x57\xa9\xc1\x6d\x1f\x7a\xa8" +"\x86\xa2\xb4\x1a\xf7\x91\xf7\x58\x1d\xfb\x92\x06\x95\xbb\x05\xf7\xb1\xf7\x58\x1d\x0e\xf7\xea\xc0\x1d\x45\x1d\xfb\x2e\xf9\x73\x15" +"\x77\x7e\x7c\x75\x4a\xbb\x67\xe0\xc1\xb8\x9a\xa9\xb1\xd8\x1d\x45\x1d\x54\xf9\x80\xf7\x04\x1d\xe0\x35\x05\x84\x92\x90\x88\x92\xf7" +"\x44\x1d\x45\x1d\xfb\x6f\xfb\x16\x15\x94\x95\x8f\x92\x93\x1a\x95\x80\x95\x81\xef\x1d\x45\x1d\x67\xf9\x64\x15\x69\xf7\x3a\x1d\x71" +"\x1f\x0e\xf7\x5f\xf8\x11\x15\x43\xfb\xde\x05\x62\x06\x73\x86\x1d\x9c\x9b\x82\x91\xca\x0a\xf7\x97\x06\xc0\x0a\xd3\xf7\xde\x05\xa7" +"\x66\x1d\x70\x06\x9d\xdc\x05\xa0\x06\xa1\x6b\x1d\x79\x7c\x2a\x0a\xba\x06\x7a\x3a\x05\xfb\x98\x06\x9d\xdc\x05\xbc\x06\xa2\x6b\x1d" +"\x78\x7d\x25\x1d\x9e\x06\x79\x3a\x05\x68\x06\x68\x1d\xdf\x16\xf7\x98\x06\x7d\x4b\x05\xfb\x97\x06\x0e\x86\x0a\xf7\x7e\xf8\x9b\x15" +"\xfb\x2f\xfb\x01\x05\x7b\x84\x85\x82\x7f\x1a\x7f\x95\x82\x97\x8f\x98\x90\x8f\x91\x1e\xf7\x0d\xe2\xe1\x35\x05\x83\x92\x90\x89\x91" +"\xf7\x44\x1d\xf7\x75\xf8\x94\x15\x3f\x0a\x3a\x21\x1d\xf7\x69\x30\x0a\x3c\x06\x36\x0a\xdd\x06\xa1\x99\x96\x9e\x99\x82\x92\x78\x1f" +"\xfb\x68\x06\x74\x7d\x7f\x79\x7c\x94\x85\x9e\x1f\xf8\x5d\x16\x26\xfc\x65\x05\x40\x7b\x3f\x50\x3c\x1b\x61\x59\xa1\xa9\x70\x1f\xa1" +"\x77\x8a\x8c\x81\x1b\x7a\x7d\x7d\x7b\x82\x8d\x88\xa2\x77\x1f\x5d\xbd\xb4\x79\xc3\x1b\xf4\xf4\xde\xef\xa0\x1f\xf1\xf8\x67\x05\xa0" +"\x30\x0a\xfb\x48\x20\x1d\x0e\xc8\x1d\x7a\xf9\x65\xc5\x1d\x3b\x1d\xf7\x14\xf7\x10\x1d\x3b\x1d\xf7\x78\xf8\xfe\x2c\x1d\xf8\x48\x22" +"\x1d\xf7\x1b\x27\x1d\xfb\xd4\x83\x1d\xf7\x8a\xb6\x0a\x9a\x94\x9b\x9b\x9a\x1f\x9b\x98\xa7\x9c\x9a\x90\xbc\x9b\x8b\x8b\x90\x91\x08" +"\x91\x91\x8e\x92\x91\x1a\x9b\x82\x91\x76\x1e\xfb\x18\x06\x0e\x75\x1d\x9f\x0a\x9b\xf9\x2c\x15\x6f\x71\x72\x70\x75\x9b\x7c\xa0\xa9" +"\xa4\xa4\xa7\xa0\x7c\x9a\x74\x1f\xf7\x63\x16\x6f\x71\x72\x6f\x76\x9b\x7c\xa0\xa8\xa4\xa4\xa7\xa0\x51\x1d\xf7\x43\xf8\x98\x43\x0a" +"\xf7\xe7\xf7\x18\x15\xf7\x1a\x31\x1d\xfb\xd1\x37\x1d\x95\x84\x9e\x1f\xf7\x17\x26\x1d\xfb\x1a\x2b\x1d\xf7\xd1\x06\xa2\x52\x0a\xfb" +"\x17\x06\x0e\x3b\x1d\xf7\x89\xf9\x49\xc4\x1d\xb9\x1d\xe1\xf8\xff\xdb\x1d\x81\x95\x1f\x0e\xf7\x41\xf7\x6f\x15\xe8\xcf\xe0\x6e\xa8" +"\x51\xa9\xfb\x5c\x19\xe6\x2a\x1d\x57\x06\x6b\xf7\x4a\x70\xbe\x38\xb3\xf7\x93\xf7\x50\x18\x9a\x27\x1d\xfb\x0b\x32\x1d\xa8\x06\xfb" +"\xc9\xfb\x77\xbd\xf7\x77\x05\xd1\x27\x1d\xfb\x3e\xe4\x1d\x3c\x0a\x47\x06\x0e\x87\x0a\xf7\x19\xfb\x24\x27\x0a\x40\x0a\xf7\x7f\xf9" +"\x40\x2d\x0a\xf8\x13\x22\x1d\xd9\xfc\x61\xbe\x1d\xf7\xa6\xf8\x61\x05\x0e\x40\x0a\xf8\x18\xf8\x73\x15\x95\x96\x8e\x92\x93\x1a\x95" +"\x81\x95\x7f\x81\x84\x87\x7f\x80\x1e\xfb\x03\xfb\x10\x05\x81\x80\x88\x85\x83\x1a\x80\x64\x1d\x40\x0a\xd2\xfb\x24\x27\x0a\x40\x0a" +"\xf7\x8e\xf7\xe6\x15\x58\x64\x65\x5a\x6d\xa5\x75\xaf\x1f\x95\x06\xba\xb7\xb3\xb5\xac\x71\xa3\x66\x1f\x0e\xab\x1d\x54\x1d\xf7\x05" +"\xf9\x73\x2d\x0a\x54\x1d\x84\xf9\x06\x39\x0a\x54\x1d\xfb\x17\x2e\x27\x0a\xf8\x62\x9a\x0a\x99\x82\x92\xf6\x0a\xc7\x1d\x2a\xf7\x8c" +"\xc5\x1d\x31\x0a\xf0\xf7\x65\x97\x0a\x31\x0a\xf7\x27\xf7\x25\x2c\x1d\xcd\xbe\x15\x90\xa0\x8c\x97\x05\x99\x82\x94\x7c\x7c\x81\x80" +"\x76\x86\x1e\x7c\x40\x05\xf7\x73\x06\xa6\xf7\x0f\x74\x8f\x80\x8e\x7d\x90\x19\x50\xa0\x6c\xba\xcf\x1a\xc5\xa7\xd0\xb5\xb7\x1e\xbf" +"\xbb\xd5\xa9\xd6\x1b\xf7\x07\xd2\x4a\x22\xfb\x05\x37\x33\xfb\x17\x72\x1f\x84\x8a\x6f\xfb\x13\x05\xf7\x78\x06\x9a\xcd\x05\x8c\x90" +"\x8c\x94\x8f\x1a\x99\x82\x94\x7c\x7c\x81\x80\x76\x87\x1e\x85\x73\x05\xfb\x0d\x06\x92\xad\xca\x9e\xb1\x9e\xb0\xac\x19\xc5\xc0\xad" +"\xd6\xda\x1a\xf7\x12\x2a\xe1\xfb\x22\x31\x3f\x6c\x4e\x4e\x1e\x50\x50\x6b\x40\x3d\x1a\x4e\xa0\x55\xb0\x6b\x1e\x9e\x7b\x9c\x82\xae" +"\x7e\x83\x68\x18\x60\xf8\x65\x43\x0a\x0e\x9d\x0a\xf8\x2a\xf8\xd3\x15\xfb\x3a\xfb\x31\xfb\x47\xfb\x51\xfb\x19\xda\x31\xf7\x08\xdf" +"\xd7\xb1\xd7\xcd\x1f\xcc\xd7\xad\xe2\xe5\x1a\xc9\x7a\xc1\x6a\xb4\x1e\xb9\x66\x5d\xa0\x4b\x1b\x83\x58\x15\xe5\xc9\x41\x20\xfb\x2f" +"\xfb\x15\xfb\x2d\xfb\x17\x2e\x4e\xd3\xf7\x02\xd7\xa7\xd3\xc1\xca\x1f\xcb\xc2\xc7\xab\xcc\x1b\xfb\x7b\x83\x15\x91\x94\x8e\x93\x93" +"\x1a\x97\x83\x94\x7e\x81\x83\x85\x7e\x82\x1e\x2e\xfb\x1b\x05\x84\x81\x88\x84\x83\x1a\x7e\x93\x82\x98\x95\x93\x91\x98\x95\x1e\x0e" +"\xa7\x1d\xf8\x02\xf9\x1b\x2d\x0a\xf7\xe1\xb1\x15\xf7\x33\x9c\xf7\x14\xf7\x15\xf7\x25\x1a\xf4\x45\xd5\xfb\x04\x98\x1e\x92\xaf\x05" +"\xf1\x23\x1d\xfb\x91\x21\x1d\xee\x06\x84\x68\x05\xfb\x34\x79\xfb\x13\xfb\x15\xfb\x25\x1a\x22\xd1\x41\xf7\x04\x7e\x1e\x81\x5d\x05" +"\x25\x29\x1d\xf7\x91\x06\xa1\x9a\x97\x9c\x9b\x82\x91\x77\x1f\x28\x06\xf3\xf8\x72\x15\xe2\x7f\xc0\x51\x3a\x1a\xfb\x01\x27\x24\xfb" +"\x0f\x79\x1e\x57\x16\x35\x97\x55\xc5\xdc\x1a\xf7\x02\xee\xf1\xf7\x10\x9d\x1e\x0e\xb2\x1d\xf8\x24\x22\x1d\xb6\xe6\x0a\xfb\x24\x06" +"\x74\x7d\x80\x79\x7d\x95\x83\x9d\x1f\xbc\x06\x4c\xfb\xb0\x05\x42\x8f\x65\xaa\xc3\x1a\x9b\x8e\xa3\x92\xac\x1e\xaf\xf7\x3f\x05\x2b" +"\x24\x0a\x79\x7d\x95\x83\x9e\x1f\xb4\x06\x72\xfb\x05\x05\x84\x6c\x88\x75\x77\x1a\x33\xc0\x57\xee\x82\x1e\x71\xfb\x12\x05\x5a\x2b" +"\x1d\xf7\x2f\x44\x0a\x55\x06\xa5\xf7\x12\xf7\x2a\x91\xca\xc9\xb0\xf7\x48\x19\x9e\xe2\x05\xa8\x23\x0a\x3a\x06\x6e\xfb\x1f\x6c\xfb" +"\x20\x5c\x59\x20\x85\x19\x0e\x4b\x0a\xf7\x6c\xf8\x4a\x2d\x0a\x4b\x0a\xc3\xf7\xdd\x39\x0a\x4b\x0a\x6f\xfc\x1a\x27\x0a\x94\x0a\x49" +"\x0a\x8e\xf7\x5f\x2d\x0a\xf7\xce\x7c\x15\xf7\x1d\x94\xee\xdf\xf6\x1a\xaf\x7b\xad\x71\x9d\x1e\x70\x62\x1d\xcf\xd7\xc6\xe4\xaf\xaf" +"\x80\x7b\x9c\x1e\x93\x83\xa0\x6d\x79\x1d\x89\x83\x05\x93\x0a\xa1\x6c\xb9\x73\xbe\x85\x19\x7c\x47\x05\xa9\x06\xa0\xd3\x1d\x49\x0a" +"\x3f\xf7\x91\xd4\x1d\x49\x0a\xfb\x85\xfd\x05\x27\x0a\xf9\x25\xf8\xc7\x15\xfc\x26\x06\x80\x5a\xf7\x1e\xfb\x6c\xfb\x82\xfb\x8a\x80" +"\x57\x05\xf8\x2d\x06\xab\xf7\x29\x05\x8c\x90\x8c\x91\x8e\x1a\x96\x83\x92\x81\x7e\x81\x82\x7d\x87\x1e\x6f\x20\x05\xfb\xbc\x06\xf7" +"\x8a\xf7\x8a\xfb\x21\xf7\x6b\x05\xf7\xad\x06\x7d\xfb\x03\x8a\x89\x05\x83\x89\x95\x82\x96\x1b\x98\x95\x94\x99\x8e\x1f\x0e\x90\x0a" +"\xf8\x1e\xf7\xd0\x15\xb6\xf7\x58\x05\xf7\x2d\x06\x6f\xfb\x17\x05\x89\x82\x8b\x8b\x89\x1a\x7f\x95\x81\x97\x9a\x96\x94\x99\x8e\x1e" +"\x8e\x92\xb2\xf7\x4d\x05\xfc\x63\x06\x64\xfb\x4a\x05\x8a\x87\x8b\x88\x87\x1a\x7e\x94\x82\x96\x91\x96\x90\x90\x91\x1e\x90\x8f\x8b" +"\x8b\x90\x9b\xa7\xf7\x1a\x18\xf7\x2e\x06\x60\xfb\x58\x05\x26\x06\x74\x7c\x7e\x79\x7f\x96\x83\x9e\x1f\xee\x06\x5c\xfb\x6a\x05\x26" +"\x06\x76\x7b\x7e\x7b\x7d\x96\x83\x9c\x1f\xf7\x8f\x06\x95\x8f\x8c\x8e\x92\x1f\x93\x8e\x94\x98\x94\x1a\x99\x81\x93\x78\x1e\x29\x06" +"\xb9\xf7\x6a\x05\xf1\x06\x96\x94\x8e\x8f\x90\x1f\x90\x8f\x91\x97\x8f\x1a\x9c\x83\x92\x77\x1e\x0e\x5f\x0a\x87\xf8\xd3\x39\x0a\xf7" +"\xd7\x16\xf2\x23\x1d\x29\x06\xef\xf8\x61\x05\xf7\x2f\x06\x7d\x4a\x8a\x82\x05\x86\x07\x82\x8a\x96\x81\x96\x1b\x9c\x95\x94\xa0\x87" +"\x1d\x86\x6c\x1d\x67\x0a\xef\x06\x79\x39\x05\xaa\x06\xa0\xda\x1d\x66\x90\x1f\x0e\xf7\x9c\xf7\xc9\x15\x8d\x96\x05\x8c\x8f\x8b\x8e" +"\x8e\x1a\x98\x8a\x83\x93\x7f\x1b\x7b\x80\x81\x79\x87\x1f\x7a\x3d\x05\x8a\x87\x8b\x89\x87\x1a\x7f\x94\x82\x97\x9b\x96\x96\x9c\x8f" +"\x1e\x8f\x9b\x05\xf7\x62\x06\x88\x7e\x05\x8a\x87\x8b\x88\x88\x1a\x7f\x94\x82\x97\x9b\x97\x96\x9c\x8f\x1e\x9b\xd9\x05\x8c\x8f\x8c" +"\x8f\x8d\x1a\x97\x8c\x81\x94\x7f\x1b\x7b\x7f\x81\x79\x87\x1f\x88\x7d\x05\x5e\xf7\x9e\x15\xfb\x3e\xfb\x32\xfb\x45\xfb\x54\xfb\x17" +"\xdc\x30\xf7\x09\xf7\x3d\xf7\x32\xf7\x46\xf7\x53\xf7\x16\x3a\xe7\xfb\x08\x1f\x7c\x58\x15\xea\xcb\x42\x20\xfb\x32\xfb\x16\xfb\x2b" +"\xfb\x1c\x32\x4b\xd7\xf5\xf7\x2d\xf7\x17\xf7\x2e\xf7\x15\x1f\x0e\x2e\x1d\xfb\x71\xf8\xde\x48\x1d\x2e\x1d\x49\xf8\xb7\x97\x0a\x2e" +"\x1d\x9f\xf8\x77\x2c\x1d\xb8\x1d\x7b\x1a\x30\xcf\x49\xe9\x1e\xa4\x8c\x05\x62\x71\x78\x70\x6a\x1a\x6a\xa5\x79\xb9\xb7\xb7\xa1\xa1" +"\x94\x83\x93\x82\x87\x87\x89\x89\x87\x1e\x7b\x74\x88\x8a\x71\x1b\x7a\x82\x91\x98\xa1\x98\x9b\xae\xa3\x1f\xf7\x0e\xde\xb8\xc0\x9d" +"\xdc\x08\x0e\xaf\x1d\x0e\xf7\xe4\xf7\x90\x15\xf7\x79\xf7\x98\x05\xa1\x06\xa1\x40\x1d\xfb\x02\x06\x74\x7c\x7f\x79\x7d\x2a\x0a\xa6" +"\x06\xfb\x4a\xfb\x63\x2c\xf7\x63\x05\xaa\x2a\x1d\xfb\x03\x06\x74\x7c\x7f\x7a\x7c\x2a\x0a\xa0\x06\xf7\x0a\xfb\x96\x5f\xfb\x5f\x05" +"\x26\x55\x0a\xf7\x8e\x2a\x1d\x29\x06\x85\xf9\x2c\x15\x6f\x71\x72\x70\x75\x9b\x7c\xa0\xa8\xa4\xa4\xf7\x05\x0a\x75\x9b\x7c\xa0\xa9" +"\xa4\xa4\xa7\xa0\x7b\x9a\x75\x1f\x0e\xf7\x2a\xf8\x98\x43\x0a\xf7\xee\xfb\x14\x15\xf7\x79\xf7\x98\x05\xa0\x06\xa3\x99\x96\x9d\x99" +"\x81\x93\x77\x1f\xfb\x02\x06\x73\x7e\xf7\x17\x0a\xa7\x06\xfb\x4a\xfb\x63\x2c\xf7\x63\x05\xa9\x23\x0a\xfb\x03\x06\x74\x7d\x43\x1d" +"\x9f\x06\xf7\x0a\xfb\x96\x5f\xfb\x5f\x05\x27\x33\x0a\xf7\x8f\x31\x1d\x29\x06\x0e\x2e\x1d\x46\xf8\xfc\xe1\x1d\x0e\x2e\x1d\xb4\xf8" +"\xc2\xc4\x1d\xb7\x1d\xf8\x1b\xf7\x09\x1d\x7e\x82\x85\x82\x82\x1a\x7e\x94\xf7\x62\x1d\xd3\xbd\x1d\x78\x7d\x25\x1d\x94\x06\xf7\xc1" +"\xf7\xa5\xf7\x2c\x1d\x92\x91\xc3\x0a\x91\x0a\xf7\x89\xe0\x0a\xf7\x71\x16\x6a\x6a\x6b\x6b\x72\x9f\x77\xa3\xae\xab\xaa\xac\xa5\x78" +"\x9e\x71\x1f\x0e\x91\x0a\xf7\x99\x15\x94\x83\x86\x8d\x84\x1b\x7b\x7c\x7c\x7b\x87\x8e\x85\x50\x1d\x82\x92\x8f\x89\x94\x1b\x9a\x9a" +"\x9a\x9b\x90\x88\x90\x84\x92\x1f\x0e\xf8\xb6\x22\x1d\x7a\x3c\x05\x89\x84\x8a\x82\x87\x1a\x7d\x94\x82\x9a\x9a\x95\x96\xa0\x8f\x1e" +"\xa9\xf7\x21\x05\xfc\x5e\x06\x70\xfb\x16\x05\x89\x81\x8a\x85\x87\x1a\x7d\x94\x82\x9a\x9a\x95\x96\xa0\x90\x1e\x9d\xe5\x05\xa9\xfb" +"\x61\x15\x8e\x9b\x05\x8f\x9d\x8b\x8b\x8d\x1a\x99\x81\x94\x7d\x7b\x81\x80\x75\x87\x1e\x77\x2e\x05\x88\x7b\x8b\x8b\x87\x1a\x7d\x94" +"\x82\x9a\x9a\x94\x95\xa2\x90\x1e\x91\xa5\x05\xf7\x5e\x06\x88\x7b\x05\x89\x80\x8a\x86\x88\x1a\x7c\x94\x82\x9a\x9a\x95\x96\xa1\x8f" +"\x1e\xa0\xe8\x05\x8e\x98\x8b\x8e\x8e\x1a\x9a\x82\x94\x7c\x7c\x81\x80\x75\x86\x1e\x85\x71\x05\xfb\xe1\xfb\x94\x15\x9c\xda\x05\x8d" +"\x98\x8c\x8e\x8f\x1a\x9a\x82\x94\x7c\x7c\x81\x80\x75\x86\x1e\x6e\xfb\x21\x05\xf8\x5d\x06\xa6\xf7\x16\x05\x8d\x92\x8c\x94\x90\x1a" +"\x99\x82\x94\x7c\x7c\x82\x80\x75\x86\x1e\x78\x31\x05\x0e\xaf\x1d\xf7\x16\xf9\x72\xa8\x0a\x47\x1d\x9b\xf9\x66\x15\x93\x83\x86\x8e" +"\x83\x1b\x7b\x7c\x7c\x7b\x87\x8e\x86\x93\x83\x1f\xe8\x29\x05\x82\x91\x8f\x89\x95\x1b\x9a\x9a\x9a\x9b\x90\x88\x8f\x83\x93\x1f\x0e" +"\x60\x0a\xf8\x62\xf9\x73\x15\x98\xf7\x07\x0a\x7f\x82\x87\x89\x83\x7f\x82\x1d\x8b\x8b\x95\x9d\x1e\x0e\x60\x0a\xf7\xf9\xf9\x89\xf7" +"\x19\x1d\xf8\x5e\x16\xb3\xf7\x4b\x05\x8d\x94\x8b\x8c\x8e\x1a\x96\x81\x94\x7f\x7a\x81\x82\x75\xcd\x1d\x37\x0a\xfb\x12\xf8\x29\x32" +"\x0a\x81\x0a\x67\xf7\xea\x15\x9a\x95\x8f\x71\x0a\x87\x89\x83\x7f\xd3\x0a\xf3\x1d\x8d\x0a\xf8\xc6\xf8\xc7\x15\xfc\x31\xa2\x0a\xfb" +"\x14\x34\x0a\xf7\x97\x06\x82\x65\xe5\x0a\x99\x9b\x96\x96\x9f\x90\x1e\xfc\x26\xfc\x39\xd8\x0a\x8c\x0a\xf7\xbe\xc0\x1d\xf8\x5d\x16" +"\x77\x2e\x05\x8a\x85\x8a\x86\x86\x1a\x7a\x93\x82\x9a\x9a\x94\x95\xa1\x90\x1e\xa3\xf7\x02\x05\x8d\x98\x8c\x8e\x8f\x1a\x9a\x7d\x94" +"\x71\x1e\x6d\x06\x36\x0a\xb4\x4c\x1d\xfc\x1b\x36\x1d\xbd\x06\x58\xfb\x7e\x71\xfb\x18\x4b\x3b\x31\x7d\x19\x77\x89\x86\x86\x85\x71" +"\x73\xfb\x05\x18\x89\x81\x8a\x86\x87\x1a\x7e\x94\x82\x9a\x99\x95\x95\x9f\x8f\x1e\xa2\xf4\x05\xf7\x9f\x22\x1d\xf7\x55\x26\x1d\xfb" +"\x9c\x06\xc9\xbb\xac\xc8\xa4\xf7\x07\x08\x0e\xa4\x1d\xf7\x4f\xf7\x9e\x15\xf7\x19\x06\x83\x65\x05\x8a\x88\x8a\x83\x89\xf7\x1b\x0a" +"\x96\x9f\x8f\x1e\xa7\xf7\x15\x05\x8c\x90\x8c\x90\x8e\x6f\x1d\x80\x77\x86\x1e\x83\x63\x05\xfb\x19\x34\x0a\xf7\xa9\x06\x78\x31\x05" +"\xf7\x55\x1d\x94\x82\x98\x9c\x95\x95\xa0\x8f\x1e\xab\xf7\x23\x05\xfc\x44\x06\x75\x7c\x7f\x79\x7d\x2a\x0a\xba\x26\x1d\x59\x55\x0a" +"\xf8\x56\x06\xae\xf7\x35\x05\x8c\x8e\x8b\x90\x90\x1a\x96\x82\x94\x7e\x7c\x7f\x80\x77\x87\x1e\x73\xfb\x04\x05\xfb\xbf\x06\xf7\x3a" +"\xf9\x2d\x15\xdd\x0a\xf7\x05\x0a\x76\x9a\x7c\xa1\xa8\xa4\xa3\xa7\xa0\x51\x1d\xf8\x1b\x22\x1d\xa1\x1d\xaa\x21\x0a\x75\x06\x70\xf7" +"\x1a\x7e\xc4\x77\xb6\x73\x9f\x19\xa0\x9f\xab\xb4\xaf\xbe\xc2\xdb\x93\x94\xa3\x90\x81\x64\x18\x8a\x80\x05\x79\x94\x81\x9b\x99\x94" +"\x95\xa0\x90\x1e\x97\xc2\x05\x8d\x97\x8c\x90\x8e\x1a\x9b\x7e\x94\x71\x51\x75\x78\xfb\x17\x31\x1e\x5a\x44\x7e\x7f\x70\x88\x08\x0e" +"\xf7\x20\xf8\x60\x15\x77\x42\x8b\x8b\x89\x1a\x7f\x94\x82\x98\x98\x93\x92\x9d\x92\x1e\x94\xa5\x95\x9e\x97\x9b\x08\xbb\xae\xca\xa5" +"\xda\x1b\xda\xbd\x6c\x5a\x69\x77\x6a\x68\x74\x1f\x71\x63\x53\x7f\x3b\x1b\x6d\x22\x0a\xbc\x06\xcc\xcc\x7d\x77\xa2\x1f\x9a\x7e\x93" +"\x79\x76\x1a\x68\x78\x66\x6b\x71\x1e\x6c\x66\x59\x7c\x4a\x1b\x3a\x56\x9b\xb5\x50\x1f\x93\x80\x83\x8e\x84\x1b\x7e\x7c\x7c\x7d\x60" +"\xf7\x0d\x5b\xf7\x02\xe9\xca\x9e\xb4\xbd\x1f\xb6\xb0\xa4\xbc\xbd\x1a\xc3\x6e\xb1\x50\xa0\x1e\xdd\xa9\xb4\xbc\xd1\x1a\xdb\x48\xbe" +"\x22\x51\x65\x81\x6c\x50\x1e\x83\x7d\x88\x8a\x88\x1b\x87\x89\x90\x96\x9f\x82\x95\x7b\x7c\x82\x82\x7a\x88\x1f\x0e\x8f\x0a\x0e\xf8" +"\xc9\x22\x1d\xb9\x96\x1d\x77\xbb\x1d\x9a\x81\x92\x78\x1f\x58\x06\xfb\x39\xf9\x5d\x15\x76\x7f\x7b\x70\x4e\xbe\x64\xd8\xbe\xba\x9c" +"\xa9\xad\x1f\xa3\xa1\x9e\xac\xf7\x41\x1d\x7e\x5c\x70\x55\x1b\x5c\x67\xa3\xab\x8e\x8b\x8d\x8c\x8d\x1f\x8d\x07\x8c\x07\x91\x07\x96" +"\x82\x94\x81\x1e\x0e\x83\x0a\x0e\xf8\xbb\x22\x1d\xae\x2f\x0a\xfc\x0f\x51\x0a\xb7\x06\x47\xfb\xd0\x05\x22\x74\x5f\x52\x51\x1b\x83" +"\x85\x8c\x8f\x7a\x1f\x97\xbf\x8c\x96\x05\x9a\x80\x97\x7d\x7d\x82\x81\x76\x86\x1e\x7e\x4f\x05\x89\x83\x8a\x82\x87\x1a\x78\xab\x7d" +"\xb9\xb5\xb2\x9a\xa7\xa9\x1e\xad\xac\xa3\xbf\x9c\xdd\xd1\xf7\xd2\x18\xf7\x54\x48\x0a\x68\x20\x0a\xf7\x11\x2b\x0a\x66\x06\x0e\xab" +"\x1d\x85\x0a\x9d\x0a\xb2\x1d\x94\x0a\xf8\xb0\xf8\x96\x15\x4e\x0a\xfb\x0c\xe8\x2e\xf7\x0d\xd2\xd4\xa8\xc1\xcb\x1e\xa7\xa3\x93\x95" +"\x98\xf7\x1a\x0a\x89\x82\x82\x1e\x4b\x43\x5a\x74\x46\x7d\x1d\x94\x9b\x60\x1d\x8d\x8e\x1a\x96\x81\x93\x7f\x7a\x81\x81\x77\x86\x1e" +"\x0e\x90\x0a\xa9\x1d\x0e\xf8\x1c\x22\x1d\xad\x06\x98\x06\x9f\x8a\x99\x96\x9d\x1a\x9b\x7f\x92\x71\x1e\xfb\x03\x06\x7b\x8c\x05\x88" +"\x06\x78\x8e\x79\x7d\x79\x1a\x79\x95\x86\xab\x1e\xa9\x06\x84\x6b\x43\x89\x60\x80\x5f\x6f\x19\x43\x5e\x5f\x3e\x3d\x1a\x29\xcd\x54" +"\xf7\x0f\x88\x1e\x84\x6b\x05\x68\x06\x6c\x79\x81\x78\x7c\x98\x84\xa6\x1f\xf7\x0b\x06\xa9\x9c\x96\x9f\x99\x7f\x91\x71\x1f\x6b\x06" +"\x92\xab\xd3\x8d\xb6\x96\xb7\xa7\x19\xd2\xb8\xb7\xd8\xd9\x1a\xed\x48\xc3\xfb\x0d\x8d\x1e\xfb\x13\xfb\xed\x15\x25\x92\x5e\xae\xd2" +"\x1a\xbb\xa2\xba\xb2\xac\x1e\xb1\xab\xb7\x9a\xcd\x90\x08\xc0\x16\xf1\x83\xb7\x69\x42\x1a\x55\x6a\x51\x5a\x6c\x1e\x6c\x78\x5f\x7f" +"\x56\x87\x08\x0e\xa5\x1d\xf8\xac\xbe\x15\xfb\x02\x96\x0a\xf8\x56\x06\x76\x33\x05\x8a\x88\x8a\x85\x87\x1a\x7e\x93\x84\x98\x9b\x96" +"\x95\xa0\x90\x1e\x0e\xf8\x13\xbe\x15\x20\x22\x0a\xf7\x5b\x21\x0a\x64\x06\x7a\x1d\x05\x50\x36\x50\x73\x4f\x1b\x5f\x75\x9e\xb2\x98" +"\x8d\x97\xac\x0a\x4c\xb9\x61\xd0\xc7\xc8\x9f\xb9\xd5\x1e\x0e\xb1\xbe\x15\x62\x24\x1d\xf8\xb1\x5e\x1d\x5d\xb0\x1d\x0e\xf8\xdb\xbe" +"\x15\x31\xb0\x1d\x3f\x0a\x62\x24\x1d\xf8\xa5\x06\x76\x33\x05\x8a\x87\x8a\x85\x88\x1a\x7e\x93\x84\x99\x9b\x28\x1d\x0e\xf7\x0e\x22" +"\x1d\xf7\x1e\x26\x1d\x59\x3f\x1d\xf7\x78\x06\xf7\x0f\xe3\xd5\xf2\xaf\x81\xa9\x76\xa1\x1f\xab\x6e\x45\x9f\x3a\x1b\x54\x34\x0a\xd9" +"\xf7\x5a\x1d\xfb\xd5\x06\x6a\xfb\x1f\x05\x8a\x85\x8a\x87\x87\x1a\x7f\x93\x83\x98\x9b\x97\x96\x9f\x90\x1e\xf7\x02\xfc\x06\x15\xbb" +"\xf7\x6b\x05\xcd\x06\xf7\x06\xbb\x70\x4b\x42\x4b\x58\x32\x1f\x0e\xf7\x59\x22\x1d\xb8\x44\x0a\xfb\x29\xc5\x0a\xf7\x6b\x9c\x1d\xaf" +"\xac\x9e\xf7\x33\x1d\x60\x06\x4d\xfb\x9e\x15\xba\xf7\x6b\x05\xc0\x06\xf7\x06\xbc\x70\x4a\x43\x4c\x58\x31\x1f\xf8\x15\xf8\x61\x15" +"\xb2\x23\x0a\xfb\x13\x3a\x0a\xaf\x26\x1d\x62\xc9\x0a\x9d\x1f\xf7\x21\x31\x1d\x5c\x06\x0e\xf7\x88\x22\x1d\xc3\x44\x0a\xfb\x34\xa2" +"\x0a\xfb\x10\x06\x4d\xfb\x9e\xd8\x0a\xf8\x7f\xf7\x96\x15\xfb\x21\x65\x29\x38\xfb\x13\x1b\x56\x71\x95\xba\x46\x1f\x91\x82\x84\x8e" +"\x86\x1b\x7e\x7d\x7d\x7f\x79\xa1\x77\xb5\x77\x1f\x74\xba\xb1\x82\xbc\x1b\xf1\xda\xb0\xd9\xc8\x1f\xc4\xd2\xab\xe6\xe5\x1a\xf7\x1d" +"\x3c\xe2\xfb\x11\x49\x5a\x79\x60\x58\x1e\x8e\x98\x8c\x91\x91\x1a\x9a\x83\x93\x7b\x79\x86\x83\x5a\x7e\x1e\x76\x3d\x05\x87\x7c\x88" +"\x7c\x85\x1a\x7e\x95\x82\x99\x98\x94\x94\x9e\x94\x1e\x94\x9d\x8d\x91\x91\x95\x08\xc8\xac\xc6\xab\xd7\x1b\xee\xc7\x4d\x23\x7c\x8a" +"\x7b\x89\x79\x1f\xfb\xa2\x06\x70\x7d\x82\x79\x7c\x97\x82\xa0\x1f\x0e\xf7\x55\xf7\x9e\x15\x88\x72\x8a\x7c\x77\x1a\xfb\x1a\xcb\x33" +"\xed\xd3\xc8\xb3\xdb\xbd\x1e\xba\xd8\xa4\xe3\xe6\x1a\xf7\x1a\x4f\xdd\x28\xfb\x01\x2d\x27\xfb\x33\x62\x1e\x59\x34\x0a\xbd\x06\xa3" +"\x99\x96\x9d\x99\x81\x93\x77\x1f\xfb\x0b\x06\x73\x7d\x81\x79\x7c\x95\x83\x9e\x1f\x9d\x06\x27\xfc\x61\x05\x62\x24\x1d\xf7\x20\x23" +"\x0a\x5b\x06\xba\xf7\x6b\x05\xf7\xc1\xf7\x97\x15\xd3\xb2\x4f\xfb\x04\x2d\x6c\x2d\x55\x49\x1f\x5f\x68\x68\x77\x62\x1b\x44\x5d\xd2" +"\xf7\x02\xd5\xa0\xd4\xb3\xcb\x1f\xce\xb5\xb8\xaa\xc1\x1b\x0e\xf8\xa7\x22\x1d\xb3\x2f\x0a\xfb\x5c\x06\x3c\x5a\x7e\x6e\x67\x1f\x64" +"\x6c\x73\x5a\x5a\x1a\x4b\xb2\x62\xd5\x7b\x1e\x67\x75\x41\x2f\x49\x21\x08\x59\x20\x0a\xbb\x06\x9c\x95\x8d\x8e\x8e\x1f\x8d\x8d\x97" +"\x9c\x97\x9c\xf7\x03\xf7\x39\xca\xc9\xc1\x86\x08\xc9\x06\x60\xfb\x68\x05\x5c\x20\x0a\xf7\x21\x21\x0a\x62\x06\xb7\xf8\x62\x15\x60" +"\xfb\x5b\x05\x2b\x06\x2a\x5c\xa6\xc2\xad\x9c\xac\xa8\xa2\x1f\x9e\xa5\xac\x93\xc6\x1b\x0e\xf7\xbe\x22\x1d\xf7\xcf\x06\xb7\xf7\x5e" +"\x8c\x97\x05\xf7\x20\x0a\x6a\xfb\x2d\x05\xfc\x2b\xd9\x1d\xf7\x8b\xf7\x60\x15\xc5\xe0\xc3\xa3\xc0\x1b\xb7\xa7\x6e\x5d\x5c\x77\x57" +"\x6b\x69\x1f\x74\x72\x74\x7f\x65\x87\x08\x74\x89\x81\x83\x7a\x1a\x7a\x96\x82\xa0\xef\xe6\xf4\xf7\x09\xdc\x5b\xbe\x41\x54\x52\x76" +"\x5c\x42\x1e\xbf\xf7\x86\x05\xf7\x12\x06\x7e\x2a\x05\x89\x7b\x8b\x8b\x8a\x1a\x7b\x94\x82\x9b\x9b\x94\x97\xa3\x8e\x1e\x99\xf7\x04" +"\x05\x8c\x94\x8c\x91\x8d\x1a\x9b\x7d\x94\x72\x1e\xfb\xd9\x06\x6a\x8a\x8b\xf7\x50\x1d\x86\x1a\x7e\x94\x82\x99\x99\x95\x95\xa0\x91" +"\x1e\xaa\xf7\x01\x05\xf7\x13\x48\x0a\x5e\x06\x71\x5a\x0a\xa5\x1f\xf7\x1c\x2f\x0a\x65\x06\x0e\xf7\x82\x22\x1d\x28\xfc\x61\x05\x26" +"\x24\x1d\xf7\x8e\x23\x0a\x29\x06\xef\xf8\x61\x05\xf7\xa6\x06\x6f\xfb\x16\x05\x8a\x87\x8a\x85\x87\x1a\x7e\x93\x84\x99\x9b\x96\x96" +"\x9f\x8f\x1e\xb3\xf7\x4c\x05\xfc\x71\x24\x1d\xf7\xea\xf7\x6d\x15\x98\x94\x91\x95\x95\x1a\x98\x83\x93\x7e\x84\x85\x88\x84\x80\x1e" +"\xfb\x1b\x2a\x05\x7e\x82\x85\x82\x80\x1a\x7f\x94\x83\x97\x93\x92\x8e\x92\x95\x1e\x0e\xf7\x1c\xf7\xd1\x15\xf7\x11\xae\xea\xdd\xf7" +"\x03\x1b\xd6\xcd\x5f\x59\x87\x8b\x89\x8a\x85\x1f\x8a\x07\x8a\x85\x8b\x8b\x89\x1a\x7e\x93\x83\x99\x9b\x96\x96\xa0\x8f\x1e\xa3\xf7" +"\x01\x05\x8d\x91\x8b\x8e\x8f\x1a\x98\x83\x92\x7d\x7b\x80\x80\x77\x86\x1e\x88\x7a\x05\xb4\x63\x59\x9f\x4b\x1b\xfb\x1b\xfb\x18\xfb" +"\x02\xfb\x1d\x6c\x1f\x79\x37\x05\x87\x7b\x8a\x83\x7c\x1a\x50\x99\x5d\xa6\x68\x1e\x58\xb5\xca\x6d\xce\x1b\xc1\xb5\x98\xb1\xcd\x1f" +"\xbc\xa7\xaa\xab\xa0\x1a\x95\x82\x93\x7f\x82\x84\x88\x82\x82\x1e\x54\x52\x45\x6b\x4c\x1b\x2f\x41\xd4\xe7\x9b\x8d\x9d\x91\xab\x1f" +"\xf7\xaf\x06\xa6\x99\x94\x9d\x9b\x80\x93\x75\x1f\x0e\xf8\x91\xf8\xa0\x15\xad\x6c\x5f\x9c\x53\x1b\xfb\x0d\x22\x35\x29\x6b\x98\x6d" +"\xa1\x79\x1f\xa5\x76\xac\x7f\xd1\x7e\xd0\x7f\x9e\x86\x9f\x7d\x08\x9b\x7f\x96\x75\x77\x1a\x3b\x37\x4a\x24\x63\x61\x97\x9b\xa7\x0a" +"\xc1\x75\xcc\x1b\xf7\x1e\xf7\x05\xe5\xf7\x03\xaf\x7b\xad\x71\x9d\x1f\x70\x62\x1d\xcf\xd7\xc6\xe4\xaf\xaf\x80\x7b\x9c\x1e\x94\x83" +"\x9f\x6d\x79\x1d\x0e\x75\x1d\x9f\x0a\x99\xf9\x2d\x15\xdd\x0a\xa8\x9f\xf7\x4e\x1d\x9b\x7c\xa0\xa8\xa4\xa3\xa8\x9f\x7b\x9a\x76\x1f" +"\x0e\xf8\xa7\x22\x1d\xe7\x06\xa2\x99\x38\x1d\xfb\xbc\x21\x1d\xf7\x2c\x06\x41\xfb\xeb\x05\x40\x7b\x3f\x50\x3c\x1b\x5b\x63\x9f\xb6" +"\x64\x1f\xa6\xf7\x11\xf1\x0a\x76\x86\x1e\x6b\xfb\x29\x91\x85\x05\x4d\xc4\xbb\x73\xcb\x1b\xf4\xf4\xde\xee\xa0\x1f\x0e\xf8\x59\x22" +"\x1d\xbb\x21\x0a\xfb\xbd\x22\x0a\xbc\x06\x48\xfb\xd0\x05\x20\x74\x60\x55\x4e\x1b\x81\x83\x8c\x8d\x80\x1f\x97\xc0\x05\x8c\x8f\x8b" +"\x8e\x8f\x1a\x9c\x82\x95\x7c\x7c\x82\x81\x77\x86\x1e\x7e\x4e\x05\x89\x82\x8a\x83\x87\x1a\x77\xa6\x7e\xb5\xf6\xc3\xc8\xf7\x29\xab" +"\x1e\xd1\xf7\xd2\x05\xe5\x48\x0a\x64\x20\x0a\xde\x06\xe2\xc3\x9e\xb6\xb2\x1f\xaa\xae\x9d\xbb\xba\x1a\xb9\x76\xb2\x67\x9e\x1e\x6e" +"\x9b\x74\x90\x58\x8d\x08\x7c\x56\x15\xe0\x8a\xac\x75\x54\x1a\x5d\x72\x5c\x66\x75\x1e\x75\x7e\x6d\x84\x5c\x89\x08\x0e\xf7\xb3\xf7" +"\x9e\x15\x5d\xfb\x6b\x05\x6b\x3a\x0a\xf7\x35\x9c\x1d\xae\xac\x9f\xb8\xba\x1a\xe6\x46\xba\xfb\x1c\x1e\x7a\x06\xb6\xf7\x57\x05\xc9" +"\x44\x0a\xfb\x28\x06\x72\x7e\x69\x1d\xad\x06\x60\xfb\x57\x05\xfb\x29\x34\x0a\xa9\x23\x0a\xfb\x01\x3f\x1d\xa6\x06\x27\xfc\x61\x5a" +"\x1d\xba\xf7\x6b\x05\xf7\x2f\xfb\x6b\x15\xb9\xf7\x6b\x05\xa2\x06\xf4\xbf\x6d\x4d\x43\x4c\x58\x32\x1f\x0e\xf7\xcc\x22\x1d\xf7\x13" +"\x06\x7d\x2a\x8a\x7b\x05\x7b\x94\x81\x9a\x9b\x94\x96\xa3\x8e\x1e\x9c\xf7\x05\x05\x8d\x9a\x8b\x8b\x8d\x1a\x9b\x7d\x94\x71\x1e\xfb" +"\xdb\x06\x6b\x8a\x8a\xf7\x50\x1d\x87\x1a\x7d\x95\x82\x98\x99\x95\x95\xa0\x91\x1e\xaa\xf7\x01\x05\xf7\x13\x48\x0a\x5e\x22\x0a\xf7" +"\x1f\x21\x0a\x62\x06\xad\xf7\x2c\x05\xc6\xd2\xb9\xa2\xba\x1b\xb3\xa0\x75\x62\x7c\x89\x78\x88\x7d\x1f\x71\xfb\x0f\x05\x5d\x20\x0a" +"\xf7\x0d\x21\x0a\x75\x06\xa5\xf7\x0b\x05\x8f\x9f\x8d\x9b\x9a\x1a\xd0\x5e\xba\x48\x5a\x5b\x78\x60\x53\x1e\x0e\x83\x0a\x31\xf7\x6d" +"\x15\x98\x94\x91\x95\xf3\x0a\x2a\x05\x7e\x83\x54\x0a\xa9\x1d\x71\xf8\xb9\x15\x77\x7f\x7b\x70\x4e\xbe\x64\xd8\xbe\xbb\x9c\xa9\xac" +"\x1f\xa3\xa2\x9e\xab\xf7\x41\x1d\x7d\x5d\x70\x55\x1b\x5b\x68\xa3\xac\x1f\x91\x07\x8c\x8d\x8b\x90\x8e\x1a\x95\x82\x94\x80\x1e\x0e" +"\xf8\x05\x16\xf1\x30\x0a\x5c\x06\xf7\x19\x0a\x94\x91\x1a\xc9\x51\xb5\x36\x65\x2e\x79\x7c\x65\x1e\x7d\x85\x83\x81\x7f\x1a\x7f\x94" +"\x82\x96\x90\x8d\x8b\x90\x9b\x1e\xa0\xd7\xa5\x90\xad\x1b\xca\xb2\x74\x65\x86\x8b\x87\x8a\x88\x1f\x7d\x4b\x05\x99\x58\x6c\x90\x5e" +"\x1b\xfb\x23\xfb\x00\x40\x28\x49\xbf\x63\xe0\xd0\xc5\xa0\xc0\xd4\x1f\x99\xc7\x15\x4e\x39\x55\x75\x44\x1b\x51\x6a\xa2\xb4\xcc\xdf" +"\xbc\xf7\x03\xb7\xb4\x86\x82\xae\x1f\x0e\xf8\x31\xf8\x7b\x15\xc0\xac\x93\x9e\xa5\x1f\xa0\x9b\x97\xa0\x9e\x1a\x9b\x81\x95\x7b\x7c" +"\x82\x84\x7a\x85\x1e\x86\x76\x6e\x7f\x56\x8a\x08\x2f\x06\x39\x46\x6c\x56\x6a\x1f\x62\x49\x62\xfb\x29\x37\x1a\x28\xdd\x46\xf7\x0c" +"\xdf\xce\xa5\xc1\xc4\x1e\xc1\xbf\xa8\xcb\xd1\x1a\xf7\x02\x3d\xd1\xfb\x0f\x3d\x4a\x72\x57\x53\x1e\xad\xec\xb6\xab\xeb\x8d\x08\x9f" +"\x22\x15\xe8\xc5\x58\x3a\x55\x74\x58\x61\x60\x1f\x5e\x5d\x57\x76\x47\x1b\x2e\x51\xbd\xdc\xf7\x0b\xf2\xeb\xf7\x14\x1f\x0e\xe3\xbe" +"\x15\x59\x24\x1d\xf7\xb0\x06\xd6\xbe\x96\xa0\xa7\x1f\xa4\x9e\x9a\xaa\xad\x1a\xc0\x6e\xa9\x47\x9d\x1e\xcc\xa0\xa7\xa9\xbd\x1a\xcc" +"\x55\xaf\x28\x1e\xfb\x84\x2b\x1d\xc0\x06\xa5\xfb\x12\x15\xa5\xf7\x12\x05\xf7\x21\x06\xd0\xad\x78\x65\x5e\x58\x73\x28\x1f\xfb\x36" +"\xfb\x53\x15\xaa\xf7\x20\x05\xf7\x14\x06\xf3\xc0\x72\x5a\x5c\x62\x78\x29\x1f\x0e\xc2\x1d\x0e\xf8\x58\x16\x7c\x51\x8a\x7d\x05\x7a" +"\x94\x81\x9b\x99\x94\x95\xa0\x90\x1e\x9c\xd6\x05\x8c\x92\x8c\x92\x90\x1a\x9b\x7e\x94\x71\x1e\x6a\x06\xd0\xf7\xd1\x05\xad\x2b\x0a" +"\xfc\x08\x20\x0a\xb9\x06\x68\xfb\x34\x7a\x31\x55\x56\x36\x7e\x19\x77\x89\x86\x87\x85\x70\x7b\x3e\x18\x88\x7e\x8b\x89\x88\x1a\x7e" +"\x95\x82\x9b\x9a\x94\x94\x9e\x8f\x1e\x9b\xd1\x05\xf7\x74\xf8\x04\x15\xf7\x4e\x06\x47\xfb\xd1\x05\xfb\x87\x06\x8c\x8c\xb4\xa4\xa9" +"\xbe\x9c\xd7\x19\x0e\xf8\x9f\xf7\x57\x15\x92\xb0\x8d\x99\x9b\x1a\xef\xf7\x0f\x0a\xfb\x04\xdd\x3f\xf7\x0c\xf3\xf7\x17\xbd\xb3\x97" +"\x83\x94\x7e\x85\x87\x8a\x84\x81\x1e\x6c\x5b\x41\x76\x4c\x1b\x2d\xd5\x0a\xe4\xcd\x52\x42\x86\x1f\x0e\xf8\x9e\xf7\x56\x15\x93\xb0" +"\x8c\x90\xa1\x1a\xf4\x3e\xd1\xfb\x05\xfb\x2a\xfb\x19\xfb\x0f\xfb\x1e\xfb\x05\xdc\x40\xf7\x10\xf2\xf7\x16\xbd\xb3\x96\x82\x95\x80" +"\x85\x85\x89\x85\x81\x1e\x6a\x56\x47\x78\x4c\x1b\x2b\x4b\xc4\xdf\x90\x8b\x8c\x8c\x97\x1f\x97\xbe\x15\xdd\xb0\xde\xc1\xe4\x1b\xe5" +"\xc4\x56\x38\x1f\xfb\x5b\xf7\xed\xdd\x1d\xf7\xfb\xf8\x04\x15\xa7\x21\x0a\x2a\x20\x0a\x9c\x06\x72\xfb\x0a\x05\x84\x06\x74\x8c\x84" +"\x93\x71\xc4\x08\xe5\x64\x7d\x98\x50\x1b\x6f\x83\x84\x71\x85\x1f\x83\x67\x05\x88\x7e\x8b\x8a\x87\x1a\x7e\x94\x82\x9a\x9b\x96\x95" +"\x9c\x8f\x1e\x92\xaa\xa2\x89\x8f\x86\xa0\x5f\x19\x9c\x63\x9a\x6d\x97\x7a\x58\x70\x88\x89\x5c\x50\x43\x30\x18\x6f\x20\x0a\xa4\x06" +"\xa3\x8c\x8d\x8c\x92\x91\x95\x98\x19\xd7\xeb\xb8\xc2\xb4\xa9\xa6\x88\x19\x91\x06\x6b\xfb\x28\x05\x70\x22\x0a\xeb\x21\x0a\x7b\x06" +"\xab\xf7\x28\x05\x94\x06\xb4\x88\x9c\x7b\xa0\x4f\xaa\x31\x18\x95\x70\x8e\x89\xa8\x8a\x08\xa5\x2b\x0a\x77\x06\x6c\xe4\x7c\xb5\x74" +"\xad\x75\x95\x19\xa5\xa0\x94\x93\xa5\xaa\xc2\xce\x97\x95\xa6\x8f\x86\x78\x18\x89\x85\x8b\x89\x8a\x1a\x78\x94\x81\x9b\x99\x94\x95" +"\xa1\x90\x1e\x92\xac\x05\x8d\x92\x8c\x94\x8f\x1a\x9b\x7e\x93\x71\x57\x76\x7e\x42\x4b\x1e\x4d\x45\x81\x82\x6f\x87\x08\x0e\xf7\x47" +"\xf8\x1c\x15\x8b\x0a\x7b\x95\x80\x9f\x83\x1f\x74\xc2\xcd\x7f\xce\x1b\xe2\xc6\x98\xa8\xb8\x1f\xb4\xa6\xa1\xaf\xb3\x1a\xb8\x72\xa8" +"\x57\x99\x1e\xcc\xa3\xac\xaf\xbc\x1a\xcb\x4a\xb3\x21\x39\x51\x7c\x6a\x61\x1e\x0e\x72\x1d\x0e\x72\x1d\xfb\xcf\xf7\x45\x15\x92\x07" +"\x97\x82\x93\x7e\x77\xf7\x35\x1d\xa3\x9d\xaa\xa0\x28\x0a\x7d\x80\x82\x7c\x86\x1e\x61\x7e\x5d\x70\x53\x1b\x5c\x67\xa3\xab\x8e\x8b" +"\x8d\x8c\x8e\x1f\x0e\xa2\x1d\xf8\x8d\xf8\x04\x15\xae\x06\xa5\x3a\x1d\xfc\x08\x20\x0a\xb9\x06\x5b\xfb\x71\x05\x41\x7b\x65\x67\x4e" +"\x1b\x82\x85\x8c\x8c\x81\x1f\x90\xaa\x05\x8c\x8e\x8b\x8f\x8e\x1a\x9d\x82\x95\x7b\x7c\x82\x81\x77\x88\x1e\x84\x66\x05\x89\x7f\x8a" +"\x85\x86\x1a\x78\xa4\x7f\xb4\xf0\xc4\xbd\xf7\x00\xa3\x1e\xbb\xf7\x73\x05\xf7\x4f\x25\x0a\x69\x22\x0a\xf7\x0c\x06\xa4\x99\x94\x9b" +"\x9c\x7e\x94\x71\x1f\x6a\x06\x0e\xf7\xc4\xb3\x15\xf7\x65\xf7\xd2\x49\xfb\xc7\x05\x45\x8d\x1d\xf7\x28\x3e\x1d\x70\x06\xcf\xf7\xd1" +"\x05\x9f\x5e\x1d\x20\x06\xfb\x69\xfb\xd9\x3d\xf7\xd9\x05\x24\x33\x0a\x9d\x06\x47\xfb\xd1\x05\x6e\x06\x73\x7e\x69\x1d\xf7\x29\x06" +"\xa2\x6d\x1d\x48\x06\xcd\xf7\xca\xdb\xfb\xd5\x05\x0e\xf8\x3f\xf7\x53\x15\x6c\xfb\x20\x05\x63\x06\x73\x7e\x81\x79\x7c\xf7\x26\x1d" +"\xcf\xf7\xd1\x05\xac\x23\x0a\xfb\x0c\x06\x73\x7e\x81\x79\x7c\x95\x83\x9d\x1f\xad\x06\x70\xfb\x12\x05\xfb\x93\x6e\x0a\x77\x1f\xfb" +"\x0b\x06\x73\x7d\x81\x78\x7d\x95\x83\x9e\x1f\xa9\x57\x1d\xaa\xf7\x20\x05\x0e\xf7\xf1\x56\x1d\x0e\xf8\x64\xf8\x04\x15\x47\xfb\xd1" +"\x05\x5a\x24\x1d\xf7\x1f\x23\x0a\x65\x06\xd2\xf7\xd1\x05\xa5\x31\x1d\xfc\x3d\x45\x0a\xaf\x57\x1d\xcf\xf7\xd1\x05\x0e\xf7\x58\xf8" +"\x37\x15\x25\x26\x0a\xba\x06\xfb\x00\xfc\x87\x4d\x1d\xf7\x55\x06\xa2\x99\x96\x9e\x9a\x83\x91\x77\x1f\x30\x06\xbb\xf7\x75\x05\x51" +"\xae\xbc\x71\xd4\x1b\xf7\x24\xf7\x15\xf7\x0c\xf7\x1a\xf1\x43\xce\xfb\x03\x41\x55\x73\x50\x4c\xf7\x4b\x1d\xfb\x00\x35\x52\xbe\xd8" +"\xef\xf7\x23\x0a\xf8\x8c\xf8\x15\x15\xab\x68\x5b\x9b\x50\x1b\xfb\x30\xfb\x19\xfb\x13\xfb\x29\x22\xd5\x47\xf7\x06\xcf\xd3\x9f\xae" +"\xc6\x1f\xb2\xa2\x9c\x9c\x9c\x1a\x96\x82\x93\x7f\x83\x87\x89\x83\x80\x1e\x64\x6e\x7d\x82\x6a\x80\x08\x7d\x66\x62\x84\x67\x1b\x31" +"\x53\xbe\xdb\xb9\x9d\xbc\xac\xb3\x1f\xc0\xb5\xc7\xa7\xd2\x1b\xb5\xb1\xe0\x1d\x80\x77\x87\x1e\x0e\xf7\xfb\xf8\x04\x15\xf7\x2e\x06" +"\x6e\xfb\x16\x8a\x7e\x05\x7e\x93\x84\x98\x9c\x96\x96\x9e\x8f\x1e\xb3\xf7\x4c\x05\xfc\x64\x06\x64\xfb\x49\x05\x89\x83\x8b\x89\x88" +"\x1a\x7e\x93\x84\x98\x9c\x96\x96\x9e\x90\x1e\xa7\xf7\x19\x05\xf7\x2e\x06\x47\xfb\xd1\x05\x27\xc9\x0a\x9d\x1f\xf7\x8f\x6c\x0a\x28" +"\x06\x0e\xb3\x1d\x0e\xf8\x23\xf8\xb6\x15\x8d\x94\x8c\x92\x90\x1a\x9a\x81\x94\x7a\x1e\x8a\x06\x7e\x8a\x48\x87\x05\x71\x89\x7e\x82" +"\x7b\x1a\x7b\x96\x82\x9c\x90\x90\x8b\x8c\x8f\x1e\xba\x8f\x71\xfb\x0f\x05\x98\x77\x7c\x8f\x72\x1b\x52\x57\x6a\x4d\x62\x1f\x63\x50" +"\x76\x46\x45\x1a\x30\xbd\x4c\xd3\x9b\x97\x8d\x91\xa7\x1e\x78\x2c\x05\x3a\x20\x0a\xf7\x69\x21\x0a\x3b\x06\xa2\xf2\x05\x7e\x9c\x9d" +"\x86\xa4\x1b\xc4\xbd\xaa\xc8\xb4\x1f\xb3\xc5\xa0\xcf\xd0\x1a\xf1\x5e\xc7\x3e\x77\x7d\x88\x82\x74\x1e\x7f\x4d\x15\x9b\x9f\x9e\x92" +"\xa1\x1b\xbc\xa4\x65\x43\xfb\x0e\x41\xfb\x06\x3d\x75\x7e\x92\x9b\x7d\x1f\x57\x8d\x15\x7a\x77\x79\x84\x74\x1b\x59\x70\xb0\xd0\xc5" +"\x9b\xc2\xaa\xbd\x1f\xbe\xac\xae\xa4\xb5\x1b\xa1\x97\x85\x7c\x97\x1f\x0e\xf7\xe7\xf7\x6e\x15\x8a\x0a\xf7\x18\x2a\x1d\x84\x06\x0e" +"\xf8\xac\xbe\x15\x28\xba\x1d\xf8\x44\x06\x76\x33\x05\x89\x82\x8b\x8a\x7e\x0a\x95\xa0\x90\x1e\x0e\xf8\x16\xbe\x15\x22\x20\x0a\xf7" +"\x54\x06\xa5\x98\x80\x0a\x69\x06\xcf\xf7\xd1\x05\xb2\x2b\x0a\xfb\x14\x22\x0a\xaf\x06\x6f\xfb\x11\x05\x60\x37\x55\x7a\x52\x1b\x60" +"\x74\x99\xa6\x95\x8d\x97\x8e\x9a\x1f\xa3\xf6\x05\xb8\x06\xa5\xbc\x0a\x58\xb8\x6a\xd1\xc7\xc5\x9a\xad\xd0\x1e\x0e\xb1\xbe\x15\x62" +"\x24\x1d\xf8\xb1\x5e\x1d\x5d\x8e\x0a\x0e\xf8\xe3\xbe\x15\x29\x8e\x0a\x47\x7e\x1d\xf8\xae\x06\x76\x33\x05\x8a\x88\x8a\x84\x88\x1a" +"\x7f\x93\x83\x98\x9c\x28\x1d\x0e\xee\xf8\x04\x15\xf7\x1b\x06\x47\xfb\xd1\x05\x5a\x33\x0a\xf7\x6f\x06\xf7\x18\xc9\xb3\xe1\xdb\x52" +"\xaf\xfb\x13\x1f\x3d\x06\xa6\xf7\x12\x05\xc6\x06\xa3\x98\x95\x9e\x9a\x81\x92\x79\x1f\xfb\xbb\x06\x6a\xfb\x1e\x05\x8a\x85\x8a\x86" +"\x88\x1a\x7e\x93\x84\x98\x9b\x97\x96\x9f\x90\x1e\xf7\x20\xfb\x77\x15\xaa\xf7\x20\x05\xca\x06\xf7\x07\xb5\x78\x57\x59\x64\x78\x27" +"\x1f\x0e\xf7\x45\xf8\x04\x15\xc6\x31\x1d\xfb\x38\xf4\x1d\xf7\x73\x06\xde\xc0\x97\xa3\xa3\x1f\xa0\xa0\x98\xac\xad\x1a\xd9\x4d\xb3" +"\xfb\x0e\x1e\x38\x06\x63\xfb\x53\x15\xaa\xf7\x20\x05\xce\x06\xf7\x09\xb3\x79\x56\x58\x66\x79\x24\x1f\xf7\xef\xf7\xd1\x15\xa3\x06" +"\xa3\xf7\x08\x0a\x27\xe2\x0a\x9f\x1f\xa2\x06\x48\xfb\xd1\x05\x73\x2b\x1d\xf3\x6c\x0a\x6e\x06\x0e\xf7\x64\xf8\x04\x15\xcc\x3e\x1d" +"\xfb\x3f\xf4\x1d\xf7\xb0\x06\xf7\x1a\xc7\xb0\xde\xda\x4a\xb6\xfb\x0a\x1f\xfb\x25\x06\x63\xfb\x53\x15\xaa\xf7\x20\x05\xf7\x14\x06" +"\xf7\x03\xb9\x76\x58\x5c\x60\x76\x2b\x1f\x0e\xf8\x6a\xf7\x54\x15\x31\x74\x2e\x48\x27\x1b\x4c\x59\x9e\xb6\x55\x1f\x97\x7c\x84\x8e" +"\x82\x1b\x7d\x80\x80\x7d\x79\xa4\x75\xbb\x73\x1f\x6f\xc3\xb3\x80\xbe\x1b\xdc\xcd\xa5\xc3\xc4\x1f\xc2\xc0\xa7\xc8\xcf\x1a\xf7\x03" +"\x3b\xd5\xfb\x0c\x44\x4f\x75\x60\x5d\x1e\x8c\x98\x8b\x91\x90\x1a\x9c\x83\x95\x7c\x78\x84\x7f\x63\x86\x1e\x83\x4f\x05\x89\x7f\x8b" +"\x86\x85\x1a\x7a\x94\x80\x99\x99\x92\x92\x9d\x94\x1e\x94\x9e\x92\x98\x96\x98\x08\xae\xa9\xc4\xa0\xcf\x1b\xc1\xb0\x7e\x70\xa4\x1f" +"\xa0\x73\x97\x6c\x6b\x1a\x89\x8b\x85\x8a\x87\x1e\xfb\x8f\x36\x1d\x0e\xf7\x5f\xf7\x53\x15\x8a\x83\x8b\x83\x7f\x1a\xfb\x01\xc9\x45" +"\xed\xc4\xc1\xa5\xb9\xaf\x1e\xb6\xc0\xa5\xda\xd4\x1a\xf5\x52\xcd\x2f\x2b\x35\x40\xfb\x08\x69\x1e\x46\x6e\x0a\x78\x1f\xfb\x0c\x06" +"\x73\x7d\x43\x1d\xa9\x57\x1d\xaa\xf7\x20\x05\xf7\xb6\xf7\x53\x15\xcd\xb0\x5d\x3a\x46\x74\x49\x64\x61\x1f\x6e\x70\x6d\x7d\x65\x1b" +"\x43\x60\xbe\xdf\xc0\x9c\xbe\xac\xb5\x1f\xb8\xad\xb2\xa0\xb9\x1b\x0e\xf8\x90\xf8\x03\x15\xb5\x06\xa5\x99\x94\x9c\x9c\x7d\x94\x71" +"\x1f\xfb\x7b\x06\xfb\x0c\x42\x58\x36\x54\xad\x6a\xd1\x80\x1f\x64\x70\x52\x56\x5c\x56\x08\x52\x20\x0a\xc0\x06\x9e\x8f\x8c\x8d\x8f" +"\x1f\x92\x90\x8c\x8d\x98\x9a\xef\xf7\x04\xc9\xb7\xbf\x89\x08\xcf\x06\x6e\xfb\x14\x05\x58\x20\x0a\xf7\x27\x21\x0a\x61\x06\x9b\xf7" +"\xd0\x15\x6d\xfb\x1e\x05\xfb\x12\x06\x3c\x65\x9e\xb3\xc0\xbd\xa5\xf0\x1f\x0e\xf8\xb4\xf8\x37\x15\xfc\x3d\x24\x0a\x79\x7d\x95\x83" +"\x9d\x1f\xeb\x06\x48\xfb\xd1\x05\x26\x24\x1d\xf7\x8e\x23\x0a\x29\x06\xcf\xf7\xd1\x05\xf7\xda\x06\xb3\xf7\x49\x8c\x99\x05\x98\x83" +"\x92\x7e\x7a\x80\x80\x77\x87\x1e\x0e\xcf\x0a\x5b\x06\x74\x7f\x81\x79\x7c\x94\x83\x9c\x1f\xb9\x06\x31\xfc\x33\x5a\x1d\xc0\xf7\x86" +"\x05\xd7\xe2\xa3\x98\xc2\x1b\xc7\xac\x70\x5c\x85\x8b\x8a\x88\x7f\x1f\x49\xfb\xca\x7c\x4b\x51\x5b\x4e\x8d\x19\xfb\x14\xf7\x5b\x1d" +"\xf7\x14\x06\xe8\xde\xcf\xe6\x9c\x1f\xcf\xf7\xcc\x05\x8d\x96\x8c\x93\x94\x1a\xd1\x54\xb9\x39\x56\x56\x75\x60\x56\x1e\xa0\xed\x05" +"\xf7\x25\x06\xa6\x9a\x95\x9c\x9b\x7f\x93\x76\x1f\x0e\xc2\x1d\xf7\xdc\xdc\x1d\xf7\x25\xf7\x86\x15\xe5\xb3\xd4\xbd\xe8\x1b\xd4\xc5" +"\x68\x5f\x88\x8b\x88\x8a\x89\x1f\x89\x07\x8a\x85\x8b\x8b\x89\x1a\xf7\x54\x1d\x9f\x90\x1e\x9e\xe4\x05\x8c\x91\x8c\x8f\x8e\x1a\x98" +"\x83\x93\x7e\x79\x82\x81\x73\x84\x1e\xab\x68\x5d\x9b\x4f\x1b\x3b\x49\x6f\x51\x53\x1f\x55\x54\x6f\x48\x46\x1a\x21\xd4\x49\xf7\x09" +"\xf3\xf7\x25\xcd\xba\x96\x83\x93\x7f\x83\x85\x88\x83\x80\x1e\x5c\x4b\x4c\x74\x47\x1b\x32\x52\xbd\xda\x94\x8c\x94\x8c\x94\x1f\xf7" +"\x91\x06\xa7\xf7\x22\x0a\xc8\xac\x15\xf7\x55\x1d\x95\x82\x97\x9b\x28\x1d\x8c\x07\x6b\xac\xba\x7b\xca\x1b\xf7\x16\xf7\x61\x1d\xa1" +"\x68\x96\x4e\x91\x40\x93\x8b\x8b\x76\x94\x08\x78\x93\x7d\x9b\x9a\x1a\xb4\xcc\xae\xd7\xaf\xaa\x84\x7f\x9e\x1e\x94\x85\x9d\x77\xf7" +"\x0e\x1d\x8f\x1a\x96\x82\x94\x7e\x7e\x80\x81\x7b\x85\x1e\xa5\x6f\x60\x99\x55\x1b\xfb\x04\xec\x0a\xc0\x85\xa3\x85\xa2\xf7\x46\x1d" +"\x3f\x53\x6b\x0a\x81\x94\x7f\x7a\x81\x81\x76\x87\x1e\x0e\xce\x1d\xf7\x0e\xf8\xcf\x77\x0a\xf8\x07\xf8\x37\x15\xfb\x39\x06\x74\x7c" +"\x7f\x79\x7d\x95\x84\x9e\x1f\xf7\x03\x25\x0a\xfb\x2e\x55\x0a\xf7\xf9\x2a\x1d\xfb\x2c\x06\x55\xf8\xaf\x15\x6f\x71\x72\x70\x76\x9b" +"\x7c\xa0\xa9\xa4\xa3\xa8\x9f\x7c\x9a\x74\x1f\xf7\x63\xd9\x0a\xf8\x53\x9e\x0a\xf8\x38\xf8\x04\x15\xae\x21\x0a\xfb\xa6\x22\x0a\xb9" +"\x06\x5b\xfb\x71\x05\x43\x7b\x65\x65\x52\x1b\x80\x83\x8c\x8e\x81\x1f\x92\xa8\x05\x8d\x93\x8b\x8c\x8f\x1a\x9b\x82\x94\x7c\x7c\x80" +"\x80\x77\x87\x1e\x83\x64\x05\x89\x82\x8a\x84\x87\x1a\x78\xa6\x7f\xb6\xed\xc2\xbc\xf7\x01\xa3\x1e\xbc\xf7\x73\x05\xe3\x25\x0a\x75" +"\x22\x0a\xe8\x06\xd1\xb9\x99\xac\xaa\x1f\xa5\xa5\x9a\xb0\xaf\x1a\xca\x5a\xad\x2f\x1e\x74\x06\x80\x58\x15\xa7\x06\xcf\xa4\x7e\x68" +"\x51\x5c\x68\x3c\x1f\x71\x06\x0e\xf7\x91\xf7\x53\x15\x6d\xfb\x20\x05\x71\x24\x1d\xf7\x41\x06\xf7\x12\xc3\xb1\xe1\xb7\x7b\xa8\x68" +"\x9e\x1f\x9c\x6c\x62\x94\x5b\x1b\x51\x06\xa7\xf7\x12\x05\xc5\x23\x0a\xfb\x1d\x3a\x0a\xa6\x06\x6f\xfb\x12\x05\xfb\x15\x06\xa4\xf7" +"\x12\x05\xa0\x06\xa3\x6d\x1d\x29\x06\x73\x7e\xf7\x17\x0a\xa3\x06\x47\xfb\xd1\x05\x6b\x24\x1d\xf7\x06\x06\xa3\x99\x96\x9d\x99\x81" +"\x93\x77\x1f\x6e\x06\xaa\xf7\x20\x05\xf7\x2d\xfb\x20\x15\xaa\xf7\x20\x05\xb5\x06\xf1\xb4\x77\x5a\x5c\x60\x73\x38\x1f\x0e\xcf\x0a" +"\x5e\x06\x72\x7e\x82\x7a\x7b\x96\x82\x9f\x1f\xb4\x06\x31\xfc\x33\xb5\x1d\x56\x76\x5f\x56\x1e\xa0\xed\x05\xf7\x29\x06\xa3\xf7\x22" +"\x0a\xa3\x1d\x34\xdc\x1d\xf7\x48\xf8\x04\x15\xac\x2b\x0a\x21\x22\x0a\x9c\x06\xf7\x05\xfb\xe3\x61\x53\x05\x56\x62\x74\x7a\x69\x1b" +"\x82\x87\x8c\x8d\x7f\x1f\x95\xb9\x05\x8e\x94\x8b\x8e\x90\x1a\x9b\x82\x95\x7b\x7c\x82\x81\x74\x86\x1e\x7f\x54\x05\x89\x81\x8a\x86" +"\x87\x1a\x77\xab\x7b\xb6\xc3\xaf\xa2\xd3\xc3\x1e\xf7\xd6\xf8\x35\x05\xa1\x2b\x0a\x25\x36\x1d\x9c\x06\xfb\x71\xfb\xb2\x05\x80\xf8" +"\x93\x15\x8c\x07\x8c\x8e\x8b\x8f\x8e\x1a\x96\x82\x93\x7f\x76\xf7\x35\x1d\xa2\x9d\xab\xa0\x28\x0a\x7c\x81\x82\x79\x85\x1e\x64\x7e" +"\x5c\x70\x55\x1b\x5c\x67\xa4\xab\x1f\x0e\xf7\xb7\x16\xf7\x68\x06\xa3\x99\x96\x9d\x99\x81\x93\x77\x1f\x49\x96\x0a\xf7\x59\xf7\x37" +"\x1d\x9c\x96\x96\x9f\x90\x1e\x0e\x89\x0a\xcb\xf7\x72\x15\x84\x66\x89\x7d\x7b\x1a\x27\xdb\x44\xf7\x04\xf7\x2c\xf7\x19\xf7\x0e\xf7" +"\x1f\xf7\x03\x39\xd8\xfb\x0c\x23\xfb\x18\x59\x63\x7f\x93\x82\x98\x91\x8f\x8c\x92\x95\x1e\xab\xbd\xd3\x9f\xcb\x1b\xe9\xcc\x51\x36" +"\x88\x8b\x84\x8a\x84\x1f\xfc\x09\x58\x15\xf7\xfd\x06\x39\x69\x36\x55\x2e\x1b\x33\x4e\xc0\xd8\x1f\x0e\xf8\x72\xf7\xac\x15\x54\x62" +"\x79\x64\x68\x1f\x6e\x6a\x7a\x5f\x63\x1a\x48\xb2\x66\xd3\xbf\xb5\x9e\xb1\xad\x1e\xa8\xac\x9c\xb6\xb4\x1a\xcd\x63\xb1\x47\x1e\x7a" +"\x5c\x15\xbb\xa5\x73\x5d\x4c\x5b\x58\x4f\x5a\x71\xa3\xba\xa3\x93\xa4\x9a\x9f\x1f\xa9\xa1\xa6\x99\xb0\x1b\xf7\x4c\xf7\xed\x15\x93" +"\x94\x8f\x94\x93\x1a\x97\x83\x93\x80\x80\x83\x86\x80\x81\x1e\xfc\xaf\xfc\xef\x05\x83\x82\x87\x83\x82\x1a\x7f\x93\x83\x97\x94\x94" +"\x90\x96\x95\x1e\xf7\x98\xf8\x29\x15\x90\x88\x87\x8e\x85\x1b\x86\x87\x8a\x86\x85\x1f\x74\x69\x6f\x81\x70\x1b\x62\x71\xa7\xb6\xca" +"\xbc\xbe\xc7\x9f\x9b\x86\x81\x96\x1f\x93\x83\x8d\x85\x75\x1a\x80\x93\x83\x94\x8d\x1e\x8d\x8c\x93\x8c\x05\x95\x8c\x94\x94\x95\x1a" +"\x8d\x07\x8e\x07\x9f\x8e\x9b\x90\x97\x1e\x92\x9b\x8b\x8b\x90\x1a\x95\x84\x92\x82\x80\x85\x87\x7e\x80\x1e\x9a\x6f\x7e\x8f\x73\x1b" +"\x31\x3c\x39\x2f\x4c\xb4\x61\xc7\xb1\xc5\xa0\xa2\xa6\x1f\x94\x93\x8f\x92\x94\x1a\x8f\x8b\x8d\x8a\x8c\x1e\x0e\xf7\x50\xf7\x22\x15" +"\x8d\x45\x8e\x76\x95\x76\x08\x72\x98\x9f\x7d\xa3\x1b\xa8\xa3\x99\xab\xa8\x1f\x9d\x9f\x9b\xa0\x96\x9e\x90\x94\x18\x8d\x8e\x8c\x8f" +"\x8f\x1a\x92\x85\x90\x84\x84\x86\x87\x82\x84\x1e\x80\x7b\x05\x6c\x75\x7a\x7d\x7c\x1b\x79\x84\x9e\xc0\x97\x8b\xa4\x8c\xa0\x1f\x9e" +"\x07\xaf\x07\xf7\x1e\xf7\x44\xbe\xec\xe1\x1a\xc1\x6e\xae\x5f\x5f\x5a\x6a\x52\x64\x1e\x60\x4b\x74\xfb\x01\x88\xfb\x3d\x8a\x4e\x18" +"\x74\x6f\x86\x85\x79\x76\x88\x88\x19\x76\x75\x05\x85\x85\x89\x86\x86\x1a\x87\x07\x84\x8f\x8e\x88\x91\x1b\x96\x8b\x8b\xb9\xb7\x1f" +"\xec\xf7\x3d\x15\x8d\xb1\x05\xf7\x6d\x95\x9e\xd0\xbc\x1b\xa2\x9a\x76\x6b\x44\x64\x2f\x45\x2b\x1f\x0e\xf7\x2a\xf8\x94\x15\x3f\x0a" +"\x72\x20\x0a\xf7\x07\x21\x0a\x63\x06\xe4\xf8\x2f\xd8\xfc\x32\x05\x66\x92\x94\x80\xa1\x1b\xa3\x93\x95\xb1\x93\x1f\xf0\xf8\x64\x05" +"\xa3\x4c\x1d\xfb\x06\x22\x0a\xb3\x06\x33\xfc\x28\x3d\xf8\x39\x84\xab\x89\x8c\x6a\x8c\x19\x58\x20\x0a\xf8\x76\x39\x15\x8c\x91\x8c" +"\x8f\x8f\x1a\xac\x71\xa4\x69\x71\x6e\x78\x74\x80\x1e\x83\x7b\x6f\xfb\x12\x79\x1a\x6e\xa6\x75\xac\xb3\xa5\xa4\xba\x96\x1e\x59\x8e" +"\x15\x7b\x88\x84\x84\x7e\x1b\x82\x87\x8e\x92\x8e\x8b\x8d\x8c\x90\x1f\xa3\xf7\x01\x05\x99\x8e\x92\x91\x98\x1b\x94\x8e\x88\x82\x1f" +"\x86\x07\x51\xfb\xb9\x15\xa5\x98\x94\x9d\xa1\x81\x8f\x57\x61\x7f\x85\x77\x79\x99\x82\xa5\x1f\x0e\xf8\xdf\xf7\x6b\x15\xf7\x02\xf7" +"\x3a\x05\x91\x94\x8e\x94\x91\x1a\x96\x83\x93\x80\x7e\x82\x84\x7a\x80\x1e\x3f\xfb\x07\x81\xb3\x83\x9e\x7a\xa0\x19\xb7\x6a\x55\xa3" +"\x4b\x1b\xfb\x29\xfb\x1d\xfb\x15\xfb\x20\x22\xda\x40\xf7\x02\xc9\xcd\xa4\xb5\xb8\x1f\xa6\xa4\x9e\xa1\xa9\xb8\xa2\xfb\x11\x18\x72" +"\x90\x91\x84\x9a\x1b\x9c\x97\x98\x9d\x8f\x8b\x8e\x89\x94\x1f\x37\xf7\x4c\x15\x6f\x5f\x05\x2b\x4d\x4c\x61\x3b\x1b\x37\x4f\xc5\xda" +"\xf7\x01\xf7\x00\xf0\xf7\x08\xd6\xbe\x64\x46\x9a\x1f\x0e\xf8\x62\xbe\x15\xf7\x12\x07\xc7\xd7\xcf\xf7\x10\xac\x1a\x98\x81\x95\x7e" +"\x7d\x82\x83\x78\x83\x1e\x79\x5c\x6e\x55\x6a\x5a\x08\xf7\x07\x76\x4e\xc9\x2f\x1b\xfb\x10\xfb\x03\xfb\x16\xfb\x25\x23\xca\x45\xe8" +"\xd1\xba\xa7\xec\xe5\x1f\xfb\x01\xe2\x07\xa3\x52\x0a\x2b\xf7\x21\x15\x67\x5c\x7f\x7d\x75\x75\x08\x57\x56\x61\x75\x60\x1b\x4e\x61" +"\xbd\xd4\xf7\x09\xe3\xf6\xeb\xdb\xb1\x52\xfb\x19\x94\x1f\xad\xf8\x1f\x15\x98\x95\x91\x94\x96\x1a\x96\x82\x94\x7f\x84\x7a\x0a\x82" +"\x54\x0a\x37\x0a\xd8\xf7\xda\x2c\x1d\xf7\x4f\xf7\x98\x15\xf7\x51\xfb\xfe\x05\x7c\x93\x95\x83\x95\x1b\x92\x8e\x8e\x93\x90\x8a\x8f" +"\x87\x97\x1f\xfb\x24\xf7\xf5\xf7\x24\xf7\xf6\x05\x8e\x92\x8d\x94\x92\x1a\x91\x88\x8e\x84\x81\x86\x87\x78\x7e\x1e\x0e\xf8\x32\xf7" +"\x98\x15\xfb\x51\xf7\xff\x05\x9d\x7f\x85\x90\x81\x1b\x84\x88\x88\x85\x84\x8d\x82\x8e\x84\x1f\xf7\x24\xfb\xf6\xfb\x24\xfb\xf5\x05" +"\x87\x7f\x8a\x87\x86\x1a\x83\x8e\x88\x92\x95\x95\x93\x9a\x93\x1e\x0e\xf8\x70\xbe\x15\xc2\xf7\x93\x05\x8d\x93\x8c\x94\x91\x1a\xc9" +"\x51\xb5\x36\x6a\x0a\xd8\xa5\x90\xad\x1b\xca\xb2\x73\x66\xf7\x16\x1d\x29\x48\xbf\x63\xe0\xd0\xc6\xa1\xbf\xd3\x1f\x7f\x51\x05\xb2" +"\x06\x57\x70\x70\x69\x63\x65\x0a\xab\xad\xaa\xcf\xa7\x1f\x9d\x93\x93\x94\x99\x1a\x9a\x83\x91\x76\x1e\x37\xcf\x15\x4e\x3b\x53\x74" +"\x43\x1b\x52\x6a\xa2\xb4\xcc\xdf\xbc\xf7\x04\xb6\xb4\x86\x82\xae\x1f\x0e\xf8\x82\xf8\x2a\xf7\x38\x1d\x88\x8c\xb3\x58\x1f\xb7\x53" +"\x7c\xf7\x0c\x0a\x7e\x72\x0a\xc0\xb6\x95\x7b\x0a\x56\xcb\xa1\x7f\xac\x1b\xac\xaa\x9d\xb4\xae\x1f\x9d\xa1\x93\x97\x9d\x1d\xfb\x20" +"\x04\x7e\x87\x87\x74\x7a\x1f\x6a\x73\x75\x7b\x75\x1b\x7b\x8a\x8c\xb3\x56\x1f\xb7\x54\x7b\x93\x6a\x1b\x68\x71\x7c\x63\x68\x1f\x75" +"\x73\x83\x7e\x72\x0a\xc0\xb6\x95\x7b\x0a\x55\xcc\xa0\x80\xac\x1b\xac\xaa\x9e\xb4\xae\x1f\x9e\xa0\x92\x98\x9d\x1d\x0e\x37\x0a\x7c" +"\xf8\x5f\x5c\x1d\x7a\x74\x95\x1d\xb8\xf7\x04\x15\x9a\x95\x8f\x71\x0a\x87\x89\x83\x7f\xf7\x0d\x1d\xf7\x35\xf7\x9e\x15\xa9\xb8\x9a" +"\xaa\x9a\x1a\x93\x83\x91\x82\x84\x87\x88\x7e\x80\x1e\x6c\x68\x6e\x74\x4f\x69\x08\x78\x81\x87\x87\x84\x1a\x85\x8f\x85\x92\x87\x1e" +"\x91\x88\x8c\x8a\x8f\x89\x91\x88\x19\x99\x82\xbc\x6e\xa3\x77\xad\x64\x19\x84\x91\x8f\x89\x92\x1b\x94\x92\x92\x93\x9a\x76\xb5\x73" +"\xab\x1f\xf7\xb3\x9c\x0a\x0e\xf7\x9b\xf8\xae\x15\xfc\x34\x07\xa2\x6c\x5e\xa1\x7c\x1b\x83\x84\x84\x82\x84\x8d\x87\x93\x85\x1f\xb8" +"\x65\x9a\x79\xb8\x41\x08\x7e\x92\x8e\x88\x94\x1b\x92\x8f\x90\x9c\x95\x1f\xab\xc3\xa5\xab\xaf\xa9\x08\x98\x96\x8e\x90\x91\x1a\x94" +"\x85\x93\x83\x7c\x6b\x7c\x6e\x5d\x1e\xf8\x33\x07\x0e\xf8\xdd\xf7\x9f\x15\xfc\x3c\x06\xa3\xab\xa0\xb5\x9a\x1a\x93\x84\x92\x82\x84" +"\x87\x89\x84\x85\x1e\x64\x5e\x78\x7c\x41\x60\x08\x7d\x83\x88\x88\x83\x1a\x84\x8f\x87\x9e\x81\x1e\xc6\x6a\xaa\x73\xa9\x68\x08\x7f" +"\x95\x90\x87\x91\x1b\x95\x93\x91\x93\x9a\x7b\xab\x6e\xb7\x1f\xf8\x3c\x06\x0e\xa3\xf7\x6b\x15\xf8\x3c\x9c\x0a\xfc\x3c\x06\x0e\xf7" +"\xd0\x7f\x15\xf8\x34\x07\x75\xaa\xb8\x75\xf7\x56\x1d\x89\x8f\x83\x91\x1f\x63\xac\x79\xa0\x6c\xbd\x88\x8f\x88\x8f\x88\x91\x88\x90" +"\x88\x90\x8a\x8c\x08\x98\x84\x88\x8e\x82\x1b\x84\x87\x87\x79\x81\x1f\x69\x51\x74\x6e\x66\x6c\x08\x7e\x81\x88\x86\x85\x1a\x81\x91" +"\x84\x93\x9a\xa9\x99\xa9\xbb\x1e\xfc\x34\x07\x0e\xf7\xa6\xf7\x02\x15\xa7\x5f\x69\x9b\x7c\x1b\x84\x84\x83\x82\x85\x8f\x86\x97\x80" +"\x1f\xae\x6e\xa5\x6b\xac\x52\x08\x79\x95\x8f\x87\x92\x1b\x92\x90\x8e\x93\x8f\x1f\xb7\xd4\x9e\xa4\xb8\xb0\x08\x92\x91\x8e\x8f\x92" +"\x1a\x94\x84\x92\x83\x7c\x5f\x75\x74\x6b\x1e\xf7\xae\x07\x74\xab\xb7\x76\xca\x1d\xab\x9a\xa8\xb9\x1e\x0e\xf7\x57\x63\x15\x5f\xf7" +"\x6a\xb7\x07\xfb\x18\xf7\x51\x15\xa7\x5f\x69\x9b\x7c\x1b\x84\x84\x83\x82\x85\x8f\x86\x97\x80\x1f\xae\x70\xa5\x6a\xac\x52\x08\x79" +"\x95\x8f\x87\x92\x1b\x92\x90\x8e\x92\x8f\x1f\xb6\xd5\x9f\xa3\xb8\xb0\x08\x92\x91\x8e\x8f\x92\x1a\x94\x84\x92\x83\x7c\x5e\x75\x75" +"\x6c\x1e\xf7\xad\x07\x75\xaa\xb8\x75\xca\x1d\xac\x9a\xa8\xb8\x1e\x0e\xf7\x26\xbf\x15\x5d\xb3\xba\x75\xc8\x1b\xf7\x07\xf1\xf0\xf7" +"\x07\xb2\x7a\xaf\x6d\xa4\x1f\x78\x9b\x7b\x92\x68\x92\x08\xda\xaa\xb4\xbe\xd0\x1a\xd4\x54\xbb\x36\x4f\x56\x73\x60\x67\x1e\x71\x6d" +"\x7a\x5d\x79\x35\xfb\x03\xfc\x98\x18\x8a\x88\x8b\x87\x88\x1a\x7d\x96\x80\x99\x99\x94\x94\x9b\x8f\x1e\xf7\x49\xf8\x54\x15\xa7\x8a" +"\x9e\x8a\x94\x8a\x08\xd8\x81\xb4\x6b\x58\x1a\x65\x7a\x63\x6c\x6a\x1e\x67\x69\x65\x7a\x5d\x1b\x49\x4e\xba\xbd\x93\x8e\x9f\x92\xa7" +"\x1f\xb8\xf7\x61\x05\xf7\x01\xa3\xba\xbc\xdc\x1b\xc4\xab\x72\x60\x4e\x5d\x66\xfb\x04\x6e\x1f\x84\x8a\x05\x0e\x46\x1d\x9a\xf7\x5c" +"\x3d\x1d\x46\x1d\xfb\x25\xe6\x15\xf7\x32\xf7\x00\x05\x9c\x97\x8f\x6a\x1d\x85\x84\x88\x85\x82\x4f\x0a\x46\x1d\x30\xf7\x8e\x3d\x0a" +"\x4e\x1d\x91\x8d\x92\x94\x1e\xf7\x0f\xdf\xe1\x38\x05\x84\x92\x90\x88\x92\x1b\x9a\x9a\x99\x9b\x92\x89\x8f\x82\x93\x1f\x0e\x46\x1d" +"\x29\xf7\x71\x59\x1d\xf7\xc5\xf7\x57\x15\x3e\xf7\x74\x05\x47\x06\x73\x7e\x43\x1d\xb3\x06\xd6\xfb\x73\xfb\x62\xfb\xa6\x05\x81\x7e" +"\x88\x83\x82\x1a\x7d\x94\x82\x98\x96\x94\x90\x96\x93\x1e\xf7\x51\xf7\x90\xe6\xfb\xa0\x05\xd4\x44\x0a\x5e\x06\x31\xf7\xa0\xf7\x48" +"\xf7\x88\x05\x94\x96\x8f\x95\x94\x1a\x98\x82\x94\x7e\x80\x82\x86\x80\x83\x1e\x0e\xf7\xad\xf8\x88\x15\xfb\x1e\xfb\x07\xfb\x03\xfb" +"\x1a\xfb\x22\xf7\x06\xfb\x05\xf7\x24\xf7\x1f\xf7\x05\xf7\x03\xf7\x1c\xf7\x1f\xfb\x08\xf7\x06\xfb\x21\x1f\x8f\xfb\xbe\x15\xf5\x23" +"\x05\x72\x67\x68\x80\x61\x1b\x60\x6e\x94\xa3\x6c\x1f\x5d\xb8\x15\x70\xaf\x82\xa6\xb4\x1a\xb7\x96\xae\xa3\xac\x1e\xf7\x02\xfb\x00" +"\x05\xe8\x16\xf7\x02\xf6\x05\xa1\x6d\x94\x72\x66\x1a\x5a\x80\x66\x73\x6a\x1e\xfb\x2c\xf7\x29\x15\xfb\x03\xf7\x00\x05\xa3\xac\xae" +"\x96\xb5\x1b\xb7\xaa\x81\x72\xae\x1f\x0e\xf8\x82\x16\x9b\x07\xfb\x15\x9e\x50\xce\xf7\x18\x1a\x9c\x6e\x91\x81\x94\x80\x08\x68\xa9" +"\xba\x73\xb5\x1b\xd1\xc2\xc4\xd4\xd1\x59\xc2\x4c\x78\x80\x88\x7e\x70\x1f\x89\x8a\x82\x86\x86\x89\x08\xa1\xaa\x93\xa3\xa8\x1a\xd0" +"\x53\xc1\x44\x44\x54\x55\x45\x70\x90\x7d\xa5\x61\x1e\x9c\x68\x78\x91\x76\x1b\x4f\x58\x52\x46\x43\xc3\x53\xd2\xca\xc0\xb1\xd2\xad" +"\x1f\x8c\x78\x05\x85\x07\x8a\x53\x6e\x4c\x62\x6a\x72\x78\x79\x84\x42\x7c\x08\x7b\x07\x0e\xb4\x0a\x28\xd7\x40\xf2\xd2\xca\xa8\xc8" +"\xc8\x1f\x7a\x41\x05\xf1\x79\x0a\x5b\x06\xfb\x2b\xf7\xdf\x15\xdd\xc3\x54\x3a\x20\x22\x23\xfb\x00\x36\x53\xc1\xdc\xf7\x03\xf2\xf0" +"\xf7\x05\x1f\xf8\x25\xf7\x51\xf7\x03\x0a\x87\x7f\x81\x1e\xfb\x03\xfb\x0f\x05\x81\x7f\x88\x85\x83\x1a\x80\x64\x1d\xf8\xff\xf8\x9c" +"\x15\x9d\xde\x05\xf7\x42\x1d\x84\x6b\x05\xfb\x19\x06\x73\x7e\x80\x77\x7d\x93\x85\x9f\x1f\xf7\x17\x06\x70\xfb\x14\x05\xca\x67\x59" +"\xa8\x43\x1b\xfb\x23\xfb\x17\xfb\x18\xfb\x23\x27\xd7\x41\xd2\x0a\xe6\xf8\x36\x05\xbd\x06\xa4\x97\x95\x9f\x9a\x83\x91\x77\x1f\xfb" +"\xc1\xfb\x1e\x15\xdd\xc3\x54\x3a\x20\x22\x23\xfb\x00\x36\x53\xc1\xdc\xf7\x03\xf2\xf0\xf7\x05\x1f\x0e\xf7\xff\xf8\x42\x15\x4f\x81" +"\x62\x7a\x5d\x68\x08\x47\x56\x61\x3e\x41\x1a\x22\xda\x40\xf7\x03\xf7\x2a\xf7\x1d\xf7\x15\xf7\x20\xb5\x7d\xb2\x70\xa9\x1e\x78\xa1" +"\x7d\x95\x52\xaf\x08\x38\xbe\x7e\x98\xa9\x1a\x9f\x98\xa4\x9d\x97\x1e\x9a\x9f\xa5\x91\xba\x1b\xcf\x06\xa0\x99\x96\x9c\x97\x81\x92" +"\x7a\x1f\x4a\x06\x4a\x63\x7f\x6d\x68\x1f\x6d\x71\x79\x68\x69\x1a\x6c\x98\x77\xae\x72\x1e\xac\x53\x15\xe1\xf7\x1f\x0a\x32\xf7\x06" +"\x0a\xf6\xf7\xa2\x15\xe1\x20\xdc\xfb\x09\xaf\x47\xba\xe0\xe3\xf7\x0f\xdb\xeb\x4d\xd1\xfb\x10\xf7\x44\x6e\xc4\x60\x3a\x53\x3c\xfb" +"\x06\xfb\x23\x08\x0e\xf8\x6d\xf8\xdf\xbc\x1d\x30\x1d\xfb\x57\xf7\xf4\x32\x0a\x30\x1d\xfb\x0d\xf7\x77\x15\xf7\x32\xf7\x00\x05\x9c" +"\x97\x8f\x6a\x1d\x85\x84\x88\x85\x82\x4f\x0a\x30\x1d\x2d\xf7\xf9\x59\x1d\xf8\xd9\xf7\x7b\x15\xbe\xfc\x8d\x07\x8f\xf7\x10\xcd\xc7" +"\xf7\x15\x88\x08\xf7\xc6\xbe\xfb\xba\xf7\x3d\x1d\x49\x99\x50\xa4\x65\x1e\xa2\x68\xae\x6c\xac\x7e\x08\x7c\xaf\xa7\x87\xd4\x1b\xf7" +"\xba\xbe\xfb\xc6\x06\xfb\x14\x88\x4a\xc5\x85\xf7\x0c\x08\x90\x07\x0e\x30\x1d\x93\xf7\xa5\x2c\x1d\xf7\x7f\xf7\xb7\x15\xd7\xd9\xa8" +"\x9a\xc8\x1b\xc8\xad\x73\x5e\x84\x8a\x86\x8a\x80\x1f\x47\xfb\xcb\x05\x4a\x7c\x54\x5e\x4b\x1b\x4e\x32\x1d\xc9\x06\xe6\x89\xdf\xd1" +"\x9e\xe6\xcf\xf7\xd1\x18\x8e\x95\x8c\x96\x93\x1a\xcd\x54\xb7\x39\x4e\x62\x79\x54\x4c\x1e\x98\xc6\x05\x39\x20\x1d\xa7\x25\x0a\x62" +"\x06\x73\x7d\x80\x78\x7d\x95\x84\x9e\x1f\xf7\x18\x30\x0a\x65\x06\x0e\xa9\x0a\xfb\x01\xdd\x3c\xf7\x05\x94\x9b\x8c\x8c\x9a\x1e\x66" +"\x6f\x7a\x70\x6b\xee\x1d\xaf\xa8\xa2\xf7\x07\xc3\x1f\xb9\xa0\x9a\x98\x9c\x1a\x97\x82\x94\x7f\x85\x87\x89\x85\x81\x1e\x6d\x5d\x3e" +"\x75\x4e\x1b\x2c\xd5\x0a\xe3\xcd\x52\x42\x87\x1f\x0e\xf8\x39\xf7\x8f\x15\x82\x8c\x05\x84\x06\x7e\x8a\x05\x42\x5c\xa5\xb3\xb9\xbc" +"\xab\xd1\xa1\x9c\x89\x87\x98\x1f\x81\xa9\x8b\x8b\x91\x1b\x99\x99\x9a\x9c\x9f\x60\x9a\x50\x25\x38\x4f\x42\x61\xa4\x6f\xbf\x7b\x1f" +"\x72\x85\x80\x88\x7b\x84\x08\x51\x74\x68\x5d\x56\x1a\x4c\xc1\x66\xe6\xbc\xc7\x96\x99\xaa\x1e\x98\x92\x92\x95\x97\x1a\x98\x84\x92" +"\x7e\x88\x88\x8a\x89\x84\x1e\x7a\x57\x78\x88\x5f\x1b\x46\x67\x9e\xaf\xae\xa6\xac\xb5\x9d\x1f\x98\xaa\xab\x8f\xc7\x1b\x92\x06\x92" +"\x06\x0e\xf7\xea\xf7\x55\x15\x93\x8c\x96\xbd\x05\x27\x8f\x64\x9e\xb6\x1a\xb5\xbc\xa9\xce\xb3\xac\x81\x79\x9f\x1e\x93\x84\x90\x7e" +"\x79\x1a\x71\x92\x82\x9d\x9b\x94\x95\x9e\x8d\x1e\x8d\xa4\x91\xa1\x96\xaa\x08\x8f\x94\x8c\x91\x92\x1a\x98\x81\x95\x7d\x7c\x83\x84" +"\x77\x84\x1e\x8a\x87\x8a\x8a\x89\x84\x08\xa6\x66\x64\x97\x59\x1b\x2b\x45\x56\x43\x65\x98\x75\xae\x76\x1f\x43\x74\x61\x5b\x4f\x1a" +"\x44\xca\x62\xf7\x00\xe2\xd1\xa6\xac\x97\x81\x95\x80\x85\x86\x89\x85\x7c\x1e\x7a\x62\x6b\x85\x61\x1b\x44\x60\xa2\xb2\xc3\xd8\xb3" +"\xf5\x1f\xf7\x14\xf8\x1e\x15\x98\x95\x91\x94\x95\x1a\x98\xeb\x1d\xf8\x9e\xf7\x08\x15\xa1\x96\x94\x9c\x9b\x80\x94\x75\x1f\xfc\x50" +"\x58\x0a\xf8\x50\xf7\xae\x15\xa1\x96\x94\x9b\x9c\x80\x94\x75\x1f\xfc\x50\x06\x76\x80\x82\x7a\x7b\x96\x82\xa0\x1f\xf8\x50\xfb\x21" +"\xf7\x5d\x1d\xfc\x50\x58\x0a\x0e\xf8\x71\xf7\x54\x15\x8a\xcf\x87\xa8\x7d\xaa\x08\xcc\x6e\x46\xb2\x36\x1b\xfb\x14\x3b\x37\xfb\x1a" +"\xfb\x1a\xd8\x3c\xf7\x15\xeb\xce\xb4\xd7\xa5\x1f\x8c\x8e\x8d\x8f\x05\x5e\x06\x8a\x89\x8b\x8a\x88\x87\x08\x5a\x72\x5a\x70\x4a\x1b" +"\x41\x69\xa1\xc8\x77\x1f\xd6\x07\xf7\x96\xb4\x15\xfb\x94\xd3\x06\xc5\xa9\xab\xa0\xc8\x1b\xcb\xbd\x6d\x5a\x9e\x1f\x0e\xcc\x1d\xc4" +"\xad\x70\x5d\x85\x8a\x83\x8a\x85\x1f\x2e\xfc\x3b\x05\x88\x7d\x8a\x84\x87\x1a\x7c\x94\x83\x9a\x9f\x91\x93\xaa\x8f\x1e\xeb\xf8\x48" +"\x05\x8d\x95\x8c\x90\x93\x1a\xd1\x57\xba\x3c\x53\x56\x76\x5f\x54\x1e\x0e\xcc\x1d\xc5\xac\x70\x5c\x85\x8a\x84\x8a\x85\x1f\x2e\xfc" +"\x3b\x05\x88\x7d\x8a\x84\x87\x1a\x7c\x94\x83\x9a\x9f\x91\x93\xaa\x8f\x1e\xeb\xf8\x48\x05\x8d\x95\x8c\x90\x93\x1a\xd1\x57\xba\x3c" +"\x53\x56\x76\x5f\x54\x1e\xf7\x92\xf7\x6f\x61\x1d\x82\x93\x7f\x5b\x1d\x93\x83\x98\xf7\x10\x0a\xf7\x74\xf8\xc1\x15\x8c\x9c\x05\xa1" +"\x8c\x76\x9f\x72\x1b\x71\x78\x78\x73\x87\x8b\x86\x8c\x84\x1f\x9d\xfb\xd4\x05\x75\x8c\x94\x81\x9b\x1b\x9b\x93\x95\xa1\x8c\x1f\x6c" +"\xfb\x23\x15\x69\x72\x74\x6c\x6c\xa4\x73\xad\x1f\x97\x06\xad\xa5\xa3\xaa\xaa\x71\xa2\x69\x1f\xf7\xaa\xf8\x63\x15\x8c\x9b\x05\xa2" +"\x8d\x76\x9f\x71\x1b\x72\x77\x78\x74\x86\x8b\x86\x8c\x84\x1f\x9d\xfb\xd4\x05\x75\x8c\x94\x81\x9b\x1b\x9b\x93\x95\xa1\x8c\x1f\x6c" +"\xfb\x23\x15\x69\x72\x74\x6c\x6c\xa4\x73\xad\x1f\x97\x06\xad\xa5\xa3\xaa\xaa\x71\xa2\x69\x1f\x0e\xf8\x30\xf7\x9e\x15\xfb\x6b\xfb" +"\xb9\x58\xf7\xed\xf8\xc7\xfb\xed\x58\xf7\xb9\xfb\x57\xfb\xb9\x58\x07\x0e\xf7\xd6\xf7\xac\x15\xf6\x94\xe0\xe9\xf7\x01\x1a\xf7\x0a" +"\x2b\xea\xfb\x0a\xfb\x0a\x2c\x2c\xfb\x0a\xfb\x01\xe0\x2d\xf5\x82\x1e\x32\xfb\x29\x64\xf7\x29\xfb\x2c\xb7\xf7\x2c\xf7\x28\xb2\xfb" +"\x28\x07\x72\xf8\x69\x15\xeb\xd8\x40\x2f\x2d\x3f\x3f\x2d\x2e\x3f\xd6\xe9\xe6\xd7\xd8\xe5\x1f\x0e\xf7\x78\xf7\x9e\x15\xcb\x06\x83" +"\x64\x05\x89\x82\x8b\x8b\x89\x1a\x7f\x94\x82\x96\x9c\x97\x96\x9e\x90\x1e\xa7\xf7\x16\x8c\x95\x05\x99\x8c\x82\x94\x7e\x1b\x80\x88" +"\x89\x83\x82\x1f\x85\x86\x8b\x8b\x88\x7b\x82\x63\x18\x4b\x06\xb6\xf7\x57\x05\xf7\x50\x06\x7a\x3f\x05\x8a\x84\x8a\x87\x88\x1a\x7f" +"\x94\x84\x99\x9b\x95\x96\x9f\x90\x1e\xa6\xf7\x15\x05\xfb\xd6\x06\x7b\x87\x8a\x84\x85\x1f\x85\x84\x86\x82\x87\x1a\x7c\x96\x83\x9d" +"\x1e\xa7\x06\x26\xfc\x61\x05\x6d\x06\x80\x82\x88\x87\x86\x1f\x86\x87\x84\x7e\x87\x1a\x7c\x95\x83\x9e\x1e\xf7\x37\x06\xa3\x99\x97" +"\x9e\x98\x80\x92\x78\x1f\x3a\x06\xf7\xdd\xf7\xca\x15\x2f\x06\x75\x7c\x80\x7a\x7b\x2a\x0a\xb1\x06\x52\xfb\x97\x05\x65\x06\x74\x7e" +"\x7f\x77\x7f\x95\x84\x9d\x1f\xf7\x4a\x06\xa3\x98\x97\xa1\x90\x87\x91\x85\x8f\x1f\x8d\x87\x8b\x8b\x7c\x1b\x2f\x06\xab\xf7\x2a\x9d" +"\x9e\x8b\x8b\xce\xd1\x19\xa2\xa1\x95\x92\x96\x1b\x93\x9e\x80\x82\x91\x1f\x7a\x97\x8f\x87\x95\x1b\x9a\x98\x98\x9b\x97\x88\x90\x7d" +"\x99\x1f\xa2\x74\x7a\x94\x74\x1b\x69\x7b\x7f\x41\x49\x1f\x0e\xf7\x9f\xd4\x15\x23\xf7\xee\x05\x56\x2b\x1d\xa2\x06\xf5\xfb\xfa\x05" +"\x6c\x4e\x7e\x61\x62\x1a\x6d\x98\x79\xa0\xb2\xa2\xc0\xe4\x9b\x8b\x98\x89\x9a\x1e\xf7\x71\xf7\xd3\xa4\xae\x97\x93\xa9\x8d\x19\xab" +"\x97\x93\xa0\x99\x81\x93\x78\x1f\x75\x06\x5f\x72\x7a\x54\x65\x1f\x0e\x4c\x0a\x71\xf7\x72\x32\x0a\x4c\x0a\xe1\xf7\x94\x15\xfb\x32" +"\xfb\x01\x05\x7b\x4e\x1d\x92\x8e\x91\x94\x7f\x0a\x91\x1b\x9b\x9a\x99\x9b\x92\x59\x0a\x4c\x0a\xf7\x2f\xf7\x82\xf7\x03\x0a\x86\x80" +"\x81\x1e\xfb\x03\xfb\x0f\x05\x81\x80\x88\x84\x83\x1a\x80\x64\x1d\x4c\x0a\xd6\xf7\x77\x15\x68\x6a\x35\x0a\xa4\x78\x9e\x71\x1f\x0e" +"\xf8\xa0\xf7\xd9\x15\xfc\x3f\xf7\x7d\x05\x8d\x86\x85\x8d\x87\x1b\x82\x83\x86\x84\x87\x1f\x8a\x88\x05\x88\x87\x8a\x87\x87\x1a\x82" +"\x90\x84\x96\x85\x1e\xf7\xee\xfb\x50\xfb\xee\xfb\x50\x05\x80\x84\x86\x85\x82\x1a\x88\x8d\x86\x8d\x86\x1e\x8c\x89\x05\x83\x90\x93" +"\x86\x92\x1b\x90\x91\x8d\x8e\x91\x1f\x77\x61\x15\x76\x80\x82\x7a\x7b\x96\x82\xa0\x1f\xf8\x34\x06\xa0\x96\x94\x9b\x9c\x80\x94\x76" +"\x1f\x0e\xf7\xaf\xf8\x9f\x15\x9c\xdb\x05\x89\x1d\x85\x6e\x05\x5e\x06\x68\x1d\xb5\x06\x30\xfc\x3a\x05\x62\x33\x1d\xf7\x18\x06\x5c" +"\x0a\x76\x1f\x65\x06\xbf\xf7\x86\xbd\xb9\x8b\x8b\x98\x94\x19\xa3\xad\xa9\x95\xb0\x1b\xb3\x9d\x86\x78\x9e\x1f\x9a\x7d\x92\x7b\x77" +"\x1a\x87\x8a\x83\x89\x84\x1e\x58\xfb\x82\x05\x62\xd4\x0a\x64\x06\xbe\xf7\x83\x05\x8e\x95\x8c\x95\x93\x1a\xd1\x55\xb8\x37\x51\x5c" +"\x77\x57\x51\x1e\xa3\xf7\x04\x05\xf7\x22\x06\xa1\x9a\x96\x9d\x3c\x0a\x0e\xa8\x1d\xf7\x4a\xf8\x3c\xd4\x1d\xf7\xc0\x75\x15\x9b\xd2" +"\xba\xdb\xe3\xf7\x02\x08\xd5\xe9\xa4\xbf\xc9\x1a\xca\x55\xc0\x4a\x4b\x5d\x62\x3f\x76\x1e\xd9\x72\x5f\xb2\x4b\x1b\x4a\x58\x56\x47" +"\x57\x9b\x68\xcc\x33\x1f\xf7\x09\xfb\x30\xa9\x56\xa0\x3b\x08\x0e\xd1\x16\xf8\x61\xf7\xcb\x06\xfb\x7b\xf7\x92\xfb\x7a\xfb\x92\x05" +"\xbd\xfb\x99\x15\xf7\x85\x07\xf7\x48\xf7\x5a\xf7\x49\xfb\x5a\x05\xfb\x85\x07\x0e\xce\x1d\x85\xf8\xbd\x15\x91\x7f\x93\x82\x77\x7e" +"\x7b\x71\x51\xbe\x65\xd9\xbe\xb9\x6d\x0a\x83\x84\x79\x84\x1e\x67\x7f\x5b\x71\x56\x1b\x70\x73\x92\x97\x7d\x1f\x84\x90\x7d\x9d\x8d" +"\x1a\x0e\xf7\xc7\xf8\x37\x15\xfb\x3a\x20\x1d\xf7\x04\x25\x0a\xfb\x06\x21\x1d\xf7\xaa\x2a\x1d\xfb\x04\x06\xf7\x0e\xf8\xcf\x15\x45" +"\x06\x72\xfb\x05\x05\xd1\x06\xf7\xaf\xfb\x21\x15\x36\xfc\x19\x05\x4a\x7b\x55\x5e\x4b\x1b\xfb\x14\x33\x1d\xf7\x15\x06\xe5\x89\xe0" +"\xd1\x9e\xe6\xeb\xf8\x4e\x18\xfb\x8b\x26\x0a\xf7\x93\xf7\x92\x77\x0a\x3c\x1d\xf7\x59\xf8\x6e\x2c\x1d\xf7\xc0\xf7\x8a\x15\x52\xba" +"\xc8\x69\xbf\x1b\xa7\xa5\x93\x98\x9f\x1f\xaa\xa1\xa2\xba\xb2\x1a\xd0\x50\xc3\x43\x54\x4f\x68\x54\x61\x1e\xc6\x59\x56\xa9\x55\x1b" +"\x43\x50\x52\x44\x47\xc4\x52\xd1\xc7\xb8\xa4\xca\xc1\x1f\xae\xb2\x15\xb9\xab\xbd\xa9\xb6\x1b\xba\xaa\x6d\x5e\x5e\x6c\x6b\x61\x77" +"\x76\x91\x97\x75\x1f\x7a\x94\x8b\x8b\x5c\xb9\x08\x47\x8f\x15\x5c\x66\x58\x6d\x61\x1b\x5e\x6e\xaa\xba\xb6\xaa\xa9\xb8\xb4\xb3\x74" +"\x58\xba\x1f\x0e\xf7\xa7\x5c\x15\x44\x84\x6f\x7b\x84\x88\x8d\x99\x83\x1e\x9a\x80\x7c\x94\x7a\x1b\x71\x79\x7a\x72\x6d\xa5\x76\xb0" +"\xa7\xa7\x98\xa3\xa2\x1f\xa9\xab\x93\xa9\xe4\x1a\xf8\x8a\x07\xca\x92\xa6\x9d\x90\x8f\x87\x82\x91\x1e\x77\x99\x95\x85\x9f\x1b\xa5" +"\x9d\x9c\xa3\xa9\x72\xa0\x68\x73\x72\x82\x7c\x77\x1f\x66\x6e\x7d\x60\x32\x1a\x0e\xf7\xda\xf9\x0e\x15\x57\xfd\x35\x06\x4b\x83\x70" +"\x7a\x86\x87\x8f\x94\x85\x1e\xa0\x7d\x81\x92\x77\x1b\x72\x78\x7a\x72\x6e\xa4\x75\xae\xa3\xa4\x94\x9a\x9f\x1f\xb0\xa8\x99\xb6\xe4" +"\x1a\x0e\xf7\xa6\xfb\x4a\x15\xbf\xf9\x35\x06\xca\x92\xa6\x9d\x90\x8f\x87\x82\x91\x1e\x77\x99\x95\x85\x9f\x1b\xa5\x9d\x9c\xa3\xa9" +"\x72\xa0\x68\x73\x72\x82\x7c\x77\x1f\x66\x6e\x7d\x60\x32\x1a\x0e\xf8\xad\xf7\x74\x15\xf7\x2a\x86\xae\x70\xb8\x1e\xce\x61\x3e\xb4" +"\x35\x1b\x57\x5b\x7c\x70\x62\x1f\x58\x68\x6e\x5d\x81\x4d\x08\x86\x69\x8a\x75\x2a\x1a\xfb\x52\x07\x75\x94\x7f\x9c\x9b\x95\x98\xa0" +"\x1e\xf7\x55\x07\x8c\xe3\x8b\x8b\x95\x1a\x8e\xbf\x92\xa9\x9a\xa1\x08\xbd\xad\xc8\xab\xcb\x1b\xc8\xc6\x6e\x5e\xab\x1f\xa6\x66\x91" +"\x66\xfb\x1c\x1a\xfb\x55\x07\x75\x94\x7f\x9b\x9b\x96\x99\x9f\x1e\x0e\xf7\xc5\xf8\xc7\xb7\x0a\x30\xfb\x34\x15\xa3\x9e\x78\x74\x73" +"\x78\x78\x74\x73\x78\x9e\xa3\xa1\x9e\x9f\xa2\x1f\xf7\xa2\x34\x15\x86\x48\x82\x6c\x74\x69\x08\x5a\x6a\x5a\x72\x4b\x1b\x4f\x5e\xa0" +"\xb4\x6a\x1f\x6e\xb0\x80\xad\x85\xd4\x95\x63\x93\x7a\x9e\x75\x08\x61\xae\xbc\x76\xca\x1b\xc9\xbc\xa0\xb5\xae\x1f\x9e\xa1\x93\x9c" +"\x95\xb3\x08\x29\xe2\x15\xa3\x9e\x78\x74\x73\x78\x78\x74\x73\x78\x9e\xa3\xa1\x9e\x9f\xa2\x1f\x0e\xf8\x34\xf8\x37\x15\xfb\x3a\x20" +"\x1d\xf7\x04\x25\x0a\xfb\x30\x21\x1d\xf7\xc0\x06\x57\x71\x70\x68\x63\xee\x1d\xab\xad\xa9\xce\xa8\x1f\x9e\x93\x93\x94\x99\x1a\x9a" +"\x82\x91\x77\x1e\xfb\x2e\x06\xf7\x0e\xf8\xcf\x15\x45\x06\x72\xfb\x05\x05\xd1\x06\x0e\xc1\x1d\x0e\xf7\xe4\xf8\x18\x15\x8f\x9d\x8b" +"\x8c\x8e\x1a\x99\x81\x94\x7b\x7b\x84\x83\x72\x86\x1e\x49\xfb\xc8\x05\x89\x7e\x89\x7c\x80\x1a\x60\xa9\x71\xbb\x9f\xea\x1d\x91\x8d" +"\x96\x8e\x9c\x1f\x78\xf8\x74\xdd\x1d\xf7\xe3\xf8\x18\x15\x8f\x9b\x8b\x8d\x8d\x1a\x9b\x81\x94\x7b\x7b\x84\x83\x72\x86\x1e\x49\xfb" +"\xc8\x05\x89\x7d\x89\x7e\x7f\x1a\x61\xa9\x70\xbb\x9f\x9f\x8f\x92\xa0\x1e\xa2\x94\x96\x97\x9b\x1a\x98\x82\x94\x7e\x86\x86\x8a\x88" +"\x85\x1e\x81\x73\x79\x86\x7a\x1b\x7b\x83\x91\x99\x92\x8c\x92\x8f\x9f\x1f\xf7\x56\xf8\x86\xbc\x1d\xc1\x1d\xf7\x49\xf8\x86\x61\x1d" +"\xeb\x1d\x3c\x1d\xf7\x35\xf8\xba\xbf\x1d\x56\x0a\xf8\x7f\xa4\x0a\xf7\x69\xf7\xa2\x3d\x0a\xd1\x0a\x90\x88\x92\x1b\x9a\x9a\x99\x9b" +"\x92\x89\x8f\x82\x93\x1f\x0e\xf7\x71\xf7\x84\x15\xb1\xf7\x47\x05\x21\x3f\x1d\xbe\x06\x46\x7e\x1d\xf7\x26\x31\x1d\x58\x06\xa8\xf7" +"\x1e\x05\xa8\x06\xdd\x87\xab\x67\xb5\xfb\x1c\x8d\x84\x18\x8d\x85\x05\xdd\xf7\x5a\x1d\x56\x06\x70\xe6\x5f\xca\x5b\x9c\xf7\x48\xf7" +"\x26\x18\x97\x06\xa2\x6d\x1d\x2c\x33\x0a\x93\x06\xfb\x39\xfb\x14\x05\x0e\xac\x1d\xf7\x10\x2e\x27\x0a\xf7\x78\xf7\x47\x15\xbc\xad" +"\xf7\x18\xfb\x36\x05\x7a\x24\x0a\x78\x7d\x25\x1d\xf7\x17\x23\x1d\x61\x06\xfb\x33\xf7\x55\xf7\x47\xf7\x10\x05\xb8\x06\xa1\x9a\x38" +"\x1d\xfb\x16\x20\x1d\x91\x06\xfb\x48\xfb\x13\xb2\xf7\x46\x05\x25\x06\x73\x7e\x80\x78\x7d\x25\x1d\xbb\x06\x46\xfb\xd1\x4d\x1d\xef" +"\x06\x0e\x41\x0a\xf7\x72\xf9\x40\x2d\x0a\xc4\xbe\x15\x74\x24\x1d\xf7\x06\x23\x0a\x70\x06\xf7\x69\xf7\xb3\xf5\xfb\xb3\x05\x69\x33" +"\x0a\xf7\x08\xe6\x0a\x71\x06\xfb\x5e\xf8\xbb\x05\x34\x3a\x0a\xc7\x06\xc3\xfb\x2e\x05\x0e\x41\x0a\xf7\x8e\xf8\x9c\x15\x93\x94\x8f" +"\x93\x78\x1d\x41\x0a\x75\xfb\x24\x27\x0a\x41\x0a\xf7\x88\xf7\xdf\x15\x58\x64\x65\x5a\x6d\xa5\x75\xaf\x1f\x95\x06\xb9\xb7\xb2\xb5" +"\xad\x71\xa3\x67\x1f\x0e\xbc\xf7\xd9\x15\xf8\x3e\xfb\x7d\x05\x88\x91\x91\x89\x8f\x1b\x93\x93\x90\x93\x8f\x1f\x8c\x8d\x05\x8e\x90" +"\xf7\x1c\x1d\x95\x90\x90\x93\x94\x1a\x90\x8a\x8e\x89\x8f\x1e\x89\x8e\x05\x92\x87\x83\x90\x83\x1b\x86\x85\x89\x89\x86\x1f\x9e\xfc" +"\xc3\x15\xa0\x96\x94\x9b\x9c\x80\x94\x76\x1f\xfc\x34\x06\x76\x80\x82\x7a\x7b\x96\x82\xa0\x1f\x0e\xf7\x49\xf7\x43\x15\x46\x72\x5a" +"\x53\x69\x1b\x78\x7e\x7f\x7b\x7c\x25\x1d\xf7\xd7\x06\xaa\xa7\x9a\xa6\xa2\x1f\x9b\x9e\x97\xa6\x9a\x1a\x96\x82\x94\x7e\x7c\x82\x83" +"\x79\x85\x1e\x6e\x82\x78\x7a\x74\x1b\xfb\x82\x06\xa9\xa9\xa5\xb7\x9d\xbd\x08\xf7\x16\x06\xa0\x96\x95\x9f\x97\x83\x90\x7b\x1f\xfb" +"\x11\x06\x8f\xa1\x8c\x94\x8c\x9c\x08\xf7\x18\x06\x9f\x96\x95\x9f\x97\x84\x90\x7a\x1f\xfb\x20\x06\x88\xb8\x89\xa5\x90\x1a\xb4\x94" +"\xa5\xa5\xa5\x1e\xa4\xa2\xab\x9a\xaa\x1b\xad\xa0\x7e\x6a\x9f\x1f\x81\x91\x91\x87\x93\x1b\x9a\x9a\x99\x99\x96\x82\x9c\x7c\x9a\x1f" +"\xa6\x73\x6c\x98\x65\x1b\x5d\x5f\x78\x67\x67\x1f\x65\x66\x7a\x61\x54\x1a\x78\x8b\x87\x90\x5b\x1e\x45\x06\x75\x80\x81\x77\x7f\x93" +"\x86\x9c\x1f\xdb\x06\x8a\x81\x88\x73\x88\x7d\x08\x35\x06\x76\x80\x81\x77\x80\x93\x85\x9c\x1f\x0e\xf7\xb3\xbe\x15\xe6\xf8\x3a\x05" +"\xba\x96\xbd\xab\xcb\x1b\xaf\xaa\x88\x83\xc1\x1f\x8a\x93\x8e\x8b\x8e\x1b\x9c\x99\x98\x9c\x95\x85\x92\x7f\x8e\x1f\x91\x6c\x47\x92" +"\x64\x1b\x2e\x3e\x56\x40\x7b\x1f\x7f\x53\x05\x37\x26\x0a\xdc\x25\x0a\x2d\x26\x0a\xf7\xd0\x23\x1d\x0e\xf7\xe4\xf8\x31\x15\x91\x75" +"\x77\x8e\x76\x1b\xfb\x0b\x2c\x2c\xfb\x0a\xfb\x0a\xea\x2c\xf7\x0a\xf7\x0a\xea\xea\xf7\x0a\xdb\x5e\xd4\x45\xb0\x1f\xe3\xf7\x53\x05" +"\x61\xaa\xaa\x6d\x95\x1b\x92\x8f\x8f\x90\x8f\x89\x8f\x85\x95\x1f\x75\xad\x78\xc0\x88\xaf\x08\x9e\x8a\x8a\x8e\x85\x1b\x87\x87\x89" +"\x83\x81\x1f\x78\x7a\x4a\x73\x67\x88\x08\x79\x88\x87\x89\x83\x1a\x80\xa3\x84\xb2\x1e\x9f\x06\x9f\x8c\x05\x8d\x06\xfb\x31\xfb\x79" +"\x15\xea\xd8\x40\x2f\x2d\x40\x3f\x2d\x2e\x3f\xd6\xe8\xe7\xd7\xd8\xe5\x1f\x0e\xf7\xa8\xc7\x0a\x0e\xf7\xa6\xf7\x28\x15\x90\x7e\x7a" +"\x8f\x7d\x1b\x57\x5d\x5e\x59\x6e\xa1\x78\xad\xd3\xbe\xc2\xda\x1f\xf7\x8b\x07\xba\x84\xb3\x4b\x46\x1a\x60\x83\x69\x77\x5e\x1e\xa2" +"\x06\xa9\xb0\x9b\xb9\xbc\x1a\xca\x73\xc7\x59\xc7\x1e\x61\xbe\x8a\x8c\x86\x90\x85\x94\x19\xbc\x66\x07\x0e\xf7\xd8\xf8\x81\x15\xa0" +"\x70\xa2\x76\xa3\x7e\xc8\x68\x96\x84\x90\x82\x08\x92\x7e\x8f\x78\x73\x1a\xfb\x92\x07\x92\x78\x72\x90\x76\x1b\x3f\x48\x51\x4a\x65" +"\xaa\x73\xbd\xc3\xc0\xa4\xb5\xac\x1f\xa2\xa8\x92\xa3\x8e\xc0\x08\xf8\x22\x07\x8c\xda\x67\xdb\x59\xab\x57\xac\x18\x71\x9c\x7c\x95" +"\x86\x8f\x08\x7d\x9b\x84\x9e\xa5\x1a\x99\x5b\xfc\xae\x07\x93\x78\x74\x8f\x76\x1b\x41\x49\x52\x49\x65\xaa\x73\xbb\xc2\xbf\xa4\xb5" +"\xac\x1f\xa1\xa8\x92\xa3\x8e\xc0\x08\xf7\x2c\xf7\x47\x15\xfb\x0d\xcc\x71\xb4\x87\xf7\x12\x8e\x89\x18\xf7\x0d\x49\xa5\x63\x90\xfb" +"\x12\x08\x0e\x4a\x0a\xf7\xce\xf7\x78\x15\x9a\x96\x8f\x91\x96\x1a\x97\x82\x94\x7e\x84\x86\x7f\x1d\x90\x8d\x93\x96\x1e\x0e\xf7\xb3" +"\xf8\x37\x15\x39\x4f\x1d\x9e\x1f\xa7\x69\x0a\x77\x1f\x65\x06\xbf\xf7\x84\x05\xd7\xda\xa6\x9a\xca\x1b\xae\x9d\x85\x79\x9d\x1f\x9a" +"\x7d\x92\x7a\x77\x1a\x82\x8b\x88\xb9\x0a\xbf\xf7\x87\x05\x8d\x93\x8c\x93\x93\x1a\xd1\x55\xb8\x39\x4e\x63\x79\x54\x4b\x1e\x7f\xf7" +"\x67\x15\x94\x95\x8f\x92\x78\x1d\x4a\x0a\xf7\x2e\xf7\x0b\x61\x0a\x4a\x0a\xcb\xfc\x59\x27\x0a\xf7\xda\xf7\x7c\x15\xf7\x93\xbd\xfb" +"\x79\x06\xec\xf7\x49\x05\xf7\x18\xbe\x22\x06\x97\xa9\x96\xa1\x96\x9a\x08\x8f\x90\x8d\x8f\x8e\x1a\x96\x7e\x96\x7f\x7e\x85\x87\x7b" +"\x83\x1e\x60\x3a\x05\xfb\x1a\xf7\x3d\x1d\xfb\x10\xb7\x3b\xe6\x63\x1e\x6e\x55\x05\x87\x83\x89\x85\x86\x1a\x7f\x97\x80\x98\x97\x92" +"\x90\x9a\x93\x1e\xac\xca\x05\x87\xac\x8f\x8b\xb8\x1b\xf7\xba\xbe\xfb\xc6\x06\x73\x84\x8b\x8d\x7e\x1f\xb2\xf7\x47\x15\x31\xfb\x3c" +"\x4a\xa1\x68\xc3\x87\xe0\x19\x90\x07\xf7\xd2\xf7\x7b\x15\x2a\xfb\x49\x05\xfb\x71\x90\x06\x91\xf7\x0c\xcc\xc6\xf7\x14\x88\x08\x0e" +"\xf8\x12\xf8\x0e\x15\xba\xe5\x05\x8f\x92\x8d\x92\x90\x1a\x98\x7f\x96\x7d\x80\x84\x86\x7d\x83\x1e\x4f\xfb\x06\x05\xfb\x89\x06\x76" +"\x80\x82\x7a\x7b\x96\x82\xa0\x1f\xf7\x6f\x06\x5b\x31\x05\xfb\x3f\x58\x0a\xf7\x24\x06\x61\x3a\x05\x87\x84\x89\x85\x86\x1a\x7e\x97" +"\x7f\x99\x96\x92\x90\x9a\x92\x1e\xc2\xf3\x05\xf7\x86\xf7\x59\x1d\xfb\x6b\x06\xbb\xe5\x05\xf7\x3b\x06\xa1\x96\x94\x9b\x9c\x80\x94" +"\x75\x1f\x0e\xf7\x4f\xf8\x35\x15\x3b\x06\x76\x7e\x80\x78\x7d\x94\x84\x9b\x1f\xb5\x06\xe7\xfc\x02\x05\xbb\x06\xf7\x44\xf7\x30\xc8" +"\xe0\xe7\x1a\xbb\x78\xb7\x77\x7b\x7c\x7d\x7d\x87\x8d\x83\x8d\x83\x1e\x91\x78\x8f\x77\x7d\x1a\x46\x57\x3c\xfb\x04\x24\x1e\x87\x88" +"\x88\x88\x87\x87\x86\x87\x87\x88\x87\x87\x08\x0e\xf7\xf1\x56\x1d\x55\xf7\x72\xf7\x08\x1d\xbe\xb9\x6d\x0a\x83\x84\x79\x84\x1e\x67" +"\x7f\x5b\x71\x56\x1b\x70\x73\x92\x97\x7d\x1f\x84\x90\x7d\x9d\x8d\x1a\x0e\x38\x0a\xd8\xf7\x5c\x74\x1d\x38\x0a\xf7\x29\xf7\x23\x2c" +"\x1d\xa6\x1d\x0e\xa6\x1d\xf7\x1e\xf8\x12\x15\x97\x94\x92\x96\x95\x1a\x97\x82\x93\x7f\x84\x7a\x0a\x82\x54\x0a\xf7\xf1\x56\x1d\x0e" +"\xf7\xf2\xf8\x45\x15\xfb\x2a\xfb\x1c\xfb\x15\xfb\x21\x23\xd9\x40\xf6\xf7\x2c\xf7\x1b\xf7\x14\xf7\x25\xf0\x3c\xd6\x20\x1f\x80\x58" +"\x15\xdf\xc7\x53\x3d\xfb\x03\x21\x25\xfb\x08\x36\x50\xc3\xdc\xf7\x00\xf7\x00\xf1\xf7\x06\x1f\xf7\x1a\xf7\x61\x15\x99\x95\x91\x94" +"\x96\x1a\x97\x82\x93\x7f\x83\x84\x88\x84\x81\x1e\xfb\x1b\x2b\x05\x7e\x81\x85\x82\x80\x1a\x7f\x94\x83\x97\x93\x92\x8e\x92\x95\x1e" +"\x0e\xc5\x16\xf8\x7a\xc9\xfc\x3c\xf8\x3c\x4d\x06\x0e\xc3\x1d\x7f\x81\x87\xcb\x1d\xbe\xf7\x82\x3d\x1d\xf7\x2b\xf8\xbc\x15\x7d\x8c" +"\x95\x82\x9a\x1b\xac\x8c\x05\xbb\xc4\x77\x6c\xb5\x1f\xa8\x76\x9e\x76\xa7\x60\x08\xa7\x5f\x66\x96\x57\x1b\xfb\x16\x24\x28\xfb\x11" +"\xfb\x11\xf2\x27\xf7\x17\xf7\x15\xf3\xee\xf7\x10\xe9\x64\xf7\x00\x4e\xd1\x1f\xcb\x55\x33\xb0\x29\x1b\x70\x88\x8a\x84\x84\x1f\x87" +"\x87\x89\x84\x84\x1a\xf7\x27\xfb\x40\x15\xf3\xdb\x40\x28\x2b\x3b\x3e\x26\x26\x3a\xd8\xec\xea\xdb\xd9\xee\x1f\x0e\xf8\x4d\xf7\x9d" +"\x15\x97\xc3\x05\x8c\x8e\x8b\x8e\x8e\x1a\x98\x82\x94\x7e\x7d\x81\x82\x7a\x87\x1e\x7e\x4e\x05\x66\x06\x78\x7e\x81\x7b\x7d\x94\x83" +"\x9d\x1f\xaa\x06\x6b\xfb\x25\x05\x89\x83\x8a\x84\x86\x1a\x62\xb1\x70\xc3\xae\xb9\x94\x99\xab\x1e\xa3\x95\x93\x93\x98\x1a\x98\x82" +"\x94\x7e\x86\x89\x8a\x87\x82\x1e\x7e\x72\x5e\x81\x69\x1b\x6f\x77\x97\x9a\x8c\x1f\x8c\x8c\x8e\x8c\x90\x1e\xac\xf7\x29\x05\xf7\x12" +"\x06\x9e\x98\x96\x9a\x9a\x82\x92\x7a\x1f\xfc\x34\x65\x15\xa6\x06\xf7\x17\xf7\x08\xe8\xf6\xdb\x48\xc3\x2b\x1f\xfb\x20\x49\x1d\xf7" +"\x1a\x06\xbe\x8b\x8b\x92\x93\x1f\x93\x91\x8f\x94\x93\x1a\x99\x82\x92\x77\x1e\x4a\x06\xbc\xf7\x76\x15\xbe\xf7\x7f\x05\xb7\x06\xcf" +"\xba\x64\x52\x43\x33\x48\x2c\x1f\x0e\xf7\x46\xfb\x1e\x15\x89\x7f\x8a\x86\x87\x1a\x7d\x95\x82\x9b\x9b\x92\x93\xa4\x90\x1e\xa8\xf7" +"\x1a\x05\x8a\x96\x8d\x8b\x8f\x1b\xd3\xcb\xa6\xc3\xc4\x1f\xc4\xc2\xa8\xcc\xd4\x1a\xf0\x4f\xd3\x37\x3a\x61\x56\xfb\x1b\x6e\x1e\x61" +"\xfb\x5d\x05\x40\x9f\x6a\xb6\xd9\x1a\xdd\xbd\xda\xd6\xb0\x1e\x9e\x94\x91\x92\x97\x1a\x98\x82\x94\x7d\x6d\x60\x6f\x5f\x64\x1e\x5d" +"\x56\x76\x54\x47\x1a\x26\xc1\x46\xeb\x74\x1e\xc9\xb7\x15\xb6\xf7\x63\x05\xf1\xa1\xa6\xb0\xbe\x1b\xc0\xb1\x59\x45\x4d\x74\x59\x5b" +"\x5c\x1f\x5f\x5d\x58\x73\x56\x1b\x88\x06\x0e\xf8\xad\xf8\x04\x15\xb4\x06\xa1\x9a\x97\x9c\x9a\x82\x92\x77\x1f\xfc\x1f\x06\x75\x7c" +"\x80\x7a\x7b\x2a\x0a\xb1\xec\x1d\xd0\xf7\xd1\x05\xf7\x68\xec\x1d\x0e\xf8\x7d\xf8\xe3\x15\xbc\x84\x1d\xfc\x71\xeb\x0a\xbc\xfd\x02" +"\x5a\xeb\x0a\xf7\x2b\x84\x1d\x59\xf9\x02\xf7\xa6\xfd\x02\x5a\x06\x7b\x8c\x80\x81\x8a\x7c\x08\x88\x07\x8c\x7c\x96\x81\x9b\x8c\x08" +"\xf7\x2b\x84\x1d\x5a\x06\x0e\xf7\xe9\xf8\x64\x15\xfb\x2b\x65\x86\x71\x5e\x1f\x46\x62\x61\x3f\x37\x1a\x3e\xad\x46\xc8\x5f\x1e\x67" +"\xbd\xae\x85\xf7\x39\x1b\xf7\x56\x06\xa0\x99\x95\x9b\x9b\x7f\x94\x74\x1f\xfb\x58\x06\xfb\x14\x60\x90\x9e\x68\x1f\x54\xa8\x65\xcb" +"\xcb\x1a\xc5\xab\xc7\xba\xaa\x1e\xa6\xb3\xb0\x90\xf7\x23\x1b\xf7\x58\x06\xa1\x98\x95\x9b\x9b\x7e\x94\x75\x1f\x0e\xf7\x74\x16\xf7" +"\x2d\xb0\x90\xa5\xb8\x1f\xd0\xb4\xb5\xd7\xdf\x1a\xd8\x68\xd0\x4f\xb7\x1e\xaf\x59\x67\x91\xfb\x39\x1b\xfb\x55\x06\x75\x7e\x82\x7b" +"\x7b\x98\x81\xa1\x1f\xf7\x58\x06\xf7\x16\xb3\x86\x78\xaf\x1f\xc2\x6f\xb1\x4a\x4b\x1a\x51\x6b\x50\x5b\x6b\x1e\x71\x65\x63\x85\xfb" +"\x21\x1b\xfb\x58\x06\x74\x7f\x82\x7b\x7c\x99\x80\xa0\x1f\x0e\xf8\x29\xf8\xc3\x15\x8c\x91\x8d\x97\x8e\x1a\x98\x80\x94\x7c\x7a\x86" +"\x84\x71\x85\x1e\xfb\x07\xfc\xa9\x05\x4d\x8f\x70\x9f\xb4\x1a\x98\x8f\xa2\x91\xab\x1e\xc1\xf7\x8e\x05\x27\x06\x74\x7d\x43\x1d\xb6" +"\x06\x61\xfb\x59\x05\x85\x6f\x88\x71\x7a\x1a\x4a\xbb\x61\xdd\x83\x1e\x71\xfb\x0f\x05\x89\x83\x8a\x84\x86\x1a\x7c\x94\x82\x9a\x9a" +"\x95\x95\xa2\x90\x1e\xa7\xf7\x1a\xf7\x17\x94\xb9\xb5\xa4\xf7\x19\x19\xb6\xf7\x5b\x05\xb8\x06\xa3\x9a\x1d\x78\x1f\x2a\x06\x56\xfb" +"\x8d\x79\x2c\x6b\x6d\x34\x82\x19\x0e\xf8\x82\xf7\x40\x15\x71\xba\x7f\x9c\x6d\xa3\x08\xf6\xae\xc7\xc8\xd5\x1a\xd7\x49\xc4\x33\x1e" +"\xfb\x8d\x24\x0a\x78\x7d\xf2\x1d\x3c\x0a\x47\x06\xb5\xf7\x57\x05\xf7\x13\x06\xaf\x7a\xab\x6a\xa1\x61\x3a\x70\x18\x78\x84\x82\x82" +"\x7d\x1a\x80\x94\x81\x96\x8f\x90\x8c\x8e\x93\x1e\xe8\xaa\x97\x6f\x93\x75\x9c\x59\x19\x8f\x80\x05\xc7\x06\xa2\x99\x97\x9d\x99\x82" +"\x92\x78\x1f\x70\x06\x73\xca\x85\x99\xe8\xaa\x05\x9e\x91\x94\x95\x99\x1a\x95\x82\x95\x81\x87\x81\x89\x8a\x87\x1e\xfc\x00\xe6\x15" +"\xba\xf7\x6b\x05\xf7\x28\x06\xc9\xbd\x63\x59\x4a\x2c\x4f\x23\x1f\x0e\x53\x1d\xf7\x84\xf7\x9a\x3d\x1d\xf7\x2e\xf7\xd1\x15\x22\x06" +"\x79\x8c\x80\x82\x8a\x7a\x08\x8a\x07\x8c\x7a\x96\x82\x9d\x8c\x08\xc7\x06\xe4\xfb\xb0\xf7\x85\xf9\x2f\x05\xf7\x3b\x06\x9c\x98\x96" +"\x9a\x9b\x80\x94\x78\x1f\xfb\x66\x06\xfb\x55\xfc\xcc\x05\x0e\x53\x1d\xdb\xf7\x2d\x61\x0a\x53\x1d\x45\xfc\x37\x27\x0a\xf7\x0b\xf8" +"\x19\x15\xf8\x12\xf7\x59\x1d\xfc\x46\xfb\x88\x06\x77\x94\x80\x9c\x9c\x94\x96\x9f\x1e\x0e\xf7\x09\xd6\x15\x4d\xb4\xbe\x6e\xd1\x1b" +"\xf7\x20\xf7\x11\xf7\x12\xf7\x21\xf7\x01\x43\xd4\xfb\x00\x41\x3c\x69\x56\x57\x1f\x6c\x6b\x74\x58\x79\x39\x44\xfb\xd2\x18\x89\x82" +"\x8a\x84\x86\x1a\x7c\x94\x82\x9b\x9a\x94\x95\xa2\x90\x1e\xf7\xb9\xf8\xa7\x15\xdd\xbd\x5a\x3c\xfb\x05\x24\x21\xfb\x00\x3b\x51\xc6" +"\xdb\xf7\x03\xf0\xec\xf7\x08\x1f\x0e\x70\x1d\xf8\x4e\xf8\x6e\x3d\x1d\xf7\xce\x7c\x15\xf7\x15\x93\xe2\xca\xe1\x1a\xa4\x7d\xa7\x76" +"\x9b\x1e\x76\x1d\x3f\x53\x6b\x0a\x81\x94\x7f\x7a\x81\x81\x76\x86\x1e\x7a\x3a\x05\x8a\x85\x8a\x87\x88\x63\x1d\x8c\x07\xa1\x73\xb1" +"\x7b\xbc\x85\x7d\x4a\x18\x42\x0a\x68\x8e\x1f\x0e\x70\x1d\xf7\xcf\xf8\xa0\xd5\x1d\x70\x1d\xf7\x54\xfb\x63\x27\x0a\xf7\x52\xc7\x0a" +"\xf7\x52\x16\xe5\xf7\x5f\x05\x98\xa8\x8d\x93\x99\x1a\xa1\x79\x9c\x74\xf7\x60\x1d\x0e\xf9\x0f\xf8\x12\x15\x9f\x99\x97\x9d\x99\x82" +"\x92\x7b\x1f\xfb\x6c\x06\x2b\x56\x7b\x5a\x4c\x1f\x46\x55\x62\x3f\x41\x1a\x22\xda\x40\xf7\x04\xf7\x28\xf7\x1e\xf7\x15\xf7\x1f\xc0" +"\x78\xb5\x63\xae\x1e\xfb\x20\x16\xe2\xf7\x1f\x0a\x31\xf7\x06\x0a\xf7\x6d\xf8\x23\x15\x75\x79\x7a\x75\x76\x9c\x79\xa1\xa1\x9c\x9c" +"\xa1\xa0\x7a\x9d\x76\x1f\xf7\x41\x8c\x15\x75\x79\x79\x76\x75\x9d\x79\xa1\xa0\x9d\x9d\xa0\xa1\x79\x9d\x76\x1f\xe9\x37\x15\x82\x64" +"\x83\x7b\x77\x73\x08\x61\x66\x5c\x77\x4d\x1b\x4c\x5d\x9f\xb5\x66\x1f\x77\xa3\x83\x9b\x82\xb2\x90\x48\x93\x6c\xa2\x68\x08\x5b\xac" +"\xbd\x72\xcb\x1b\xc6\xba\xa0\xb4\xab\x1f\xa8\xb0\x96\xae\x90\xd3\x08\xfb\x47\xf7\x8b\xb7\x0a\x83\x66\x15\xf7\x1d\xf7\x03\xfb\x00" +"\xfb\x1b\xfb\x1d\xfb\x01\xfb\x01\xfb\x1c\xfb\x1b\xfb\x01\xf7\x01\xf7\x1c\xf7\x19\xf7\x02\xf7\x03\xf7\x17\x1f\x0e\xf7\x22\x16\xf8" +"\x09\x9d\x06\xfb\x11\x91\x51\xcd\x8d\xf7\x17\x08\x4a\xad\xaf\x72\xc3\x1b\xc1\xb8\xba\xc5\xc0\x77\xaa\x38\xd7\x1f\x37\xd8\x7c\xa1" +"\x6d\xe5\x7f\x44\x5c\x47\x3a\x4a\x08\x4d\x58\x70\x5f\x5a\x1a\x51\xba\x5b\xc4\xc3\xb3\xa8\xc8\xa8\x1e\xfb\x14\x90\x47\x40\xfb\x0e" +"\x1b\x0e\xf8\x55\x22\x1d\x93\x21\x05\x7d\x93\x82\x99\x89\x1e\x90\x06\x9a\x8d\x92\x94\x9b\x1a\xf7\x14\x07\x9e\x82\x94\x78\x8a\x1e" +"\xfb\xeb\x06\x7a\x8c\x81\x82\x8a\x7b\x08\x7e\x07\x80\x8b\x8a\x92\x82\x1e\xf7\x45\xfb\x8c\xfb\x47\xfb\xd7\x05\x86\x83\x8b\x8a\x82" +"\x1a\x7c\x07\x7a\x95\x83\x9d\x1e\xf7\xf2\x06\x9e\x94\x94\x9e\x1f\xf7\x14\x07\x9b\x84\x94\x7c\x8d\x1e\x85\x06\x7d\x89\x84\x82\x8a" +"\x7c\x87\x21\x18\xfb\xb9\x06\xf7\x45\xf7\xcd\x05\x8f\x92\x8c\x8e\x8f\x1a\x91\x89\x8f\x86\x92\x1e\xfb\x3d\xf7\x85\x05\x0e\xf7\x23" +"\xf8\x2b\x15\x73\x6d\x7c\x68\x87\x65\x08\x2c\x5e\xeb\x06\x8f\x64\x99\x68\xa2\x6e\x48\x48\x18\xab\x6b\xce\xcf\xa9\x73\xab\x7e\xb4" +"\x85\x19\x2c\xb8\xea\x07\xb4\x91\xad\x99\xa7\xa2\xce\x47\x18\xab\xab\x48\xcf\xa1\xa4\x9a\xaf\x90\xb4\x19\xeb\xb8\x2b\x06\x86\xb3" +"\x7c\xaf\x75\xa6\xce\xce\x18\x6b\xab\x48\x48\x70\xa1\x63\x9b\x67\x8f\x19\xea\x5e\x2d\x07\x67\x87\x62\x79\x72\x75\x47\xcf\x18\x6b" +"\x6b\x05\xf7\x72\x5d\x15\xdc\xcc\x4c\x3c\x3a\x4b\x4b\x3b\x3c\x4b\xcb\xda\xda\xcb\xcc\xd8\x1f\x0e\xf8\x1e\xf8\x04\x15\xf7\x12\x06" +"\xa2\x99\x97\x9e\x99\x83\x91\x77\x1f\xfb\xc5\x06\x75\x7c\x7f\x79\x7e\x95\x83\x9d\x1f\xf7\x13\x06\x48\xfb\xca\x05\x88\x80\x8a\x81" +"\x82\x1a\x6f\xa5\x7c\xbd\xc9\xb7\x9e\xa5\x97\x84\x93\x80\x88\x88\x8a\x8a\x89\x1e\x7f\x6e\x80\x89\x75\x1b\x71\x7f\x91\x97\x91\x8c" +"\x90\x8c\x92\x1f\x0e\xf7\x91\xf7\xbb\x15\x9c\xd4\x05\xf7\x6f\xf7\x1c\x0a\xfb\x6d\x06\xa3\xf7\x02\x05\x8c\x8f\x8c\x90\x8d\x1a\x99" +"\x83\x93\x7d\x81\x88\x89\x83\x82\x1e\x85\x86\x8b\x8b\x88\x7c\x72\xfb\x05\x18\x45\x06\x74\x7e\xf0\x0a\xcf\x06\x7a\x42\x05\x5d\x4f" +"\x1d\x9f\x1f\xb6\x06\x6e\xfb\x19\x05\x88\x7f\x8a\x81\x83\x1a\x52\xc5\x63\xdd\xb8\xbf\x95\x9f\xc7\x1e\xb4\x98\x9f\x9a\x9b\x1a\x96" +"\x81\x96\x82\x86\x85\x89\x87\x81\x1e\x5e\x77\x8b\x8b\x62\x83\x08\x83\x66\x76\x88\x70\x1b\x51\x69\xa0\xae\x94\x8c\x92\x8c\x93\x1f" +"\xa7\xf7\x15\x05\xf7\x48\xf7\x1c\x0a\x0e\x5e\x0a\xe6\xf7\x2c\x15\x93\x94\x8f\x93\x78\x1d\xf7\xb5\x7b\x15\x96\x06\xbd\xd6\x9b\x9f" +"\xbb\x1f\xa5\x0a\xfb\x69\x06\xa6\x0a\x5f\xa9\x6a\xc0\x7d\x1e\x7b\x42\x05\xaa\x06\x9f\xd3\x1d\xf8\x11\xf8\xee\x15\x33\x35\x4c\x22" +"\x55\x1f\x65\x43\x75\x31\x3d\x1a\xfb\x16\xca\x3b\xf2\xd9\xd0\xb6\xe0\xc4\x1e\xc2\xdd\xa8\xec\xef\x1a\xf7\x17\x4c\xdb\x24\x1e\xfb" +"\x69\xfb\x9c\x15\x94\xaf\x98\xa8\xa0\xac\x08\xd7\xbb\xc4\xb2\xc9\x1b\xd3\xb8\x51\x2f\x7c\x8a\x75\x89\x71\x1f\x81\x58\x15\x7b\x4b" +"\x7a\x62\x6f\x62\x08\x47\x5d\x52\x65\x50\x1b\x45\x5f\xc6\xea\xa3\x8e\xae\x91\xb2\x1f\x0e\xf8\x6e\xf8\xdf\x15\x98\x95\x91\x94\x95" +"\x1a\x98\x83\x93\x7e\x84\x7a\x0a\x82\x54\x0a\x2c\x0a\xfb\x17\xf8\xb7\x32\x0a\x2c\x0a\x73\xf8\xa1\x74\x1d\x2c\x0a\xe3\xf8\x68\x2c" +"\x1d\xf8\xdd\xfb\x89\xf7\x2b\x1d\x7b\x79\x96\x83\xa0\x1f\xf8\xce\x43\xf7\x2b\x1d\x7a\x7a\x96\x83\xa0\x1f\x0e\x0e\xc4\x0a\x5f\x0a" +"\xfb\x0d\xfb\x24\x27\x0a\x5e\x0a\xfb\x49\xfc\x94\x27\x0a\xf8\xa9\xf8\xa1\x2c\x1d\x68\x0a\xf8\x93\x16\x2c\xf8\xc7\x05\x3d\x06\xfb" +"\xe2\xfc\xc7\x05\xf8\x50\xbe\x15\xfb\xfa\x06\xf7\xa6\xf8\x61\x05\x92\x06\x0e\xf8\x3f\xbe\x15\xb5\xa0\xb2\xa8\xaf\xb1\x08\xcd\xce" +"\xac\xd8\xde\x1a\xf7\x0f\x30\xe1\xfb\x16\x3a\x3e\x6c\x50\x49\x1e\x47\x4e\x5f\x2e\x38\x1a\x3e\xb6\x3d\xcd\x61\x1e\xfb\x17\x06\x72" +"\x7d\x80\x79\x7d\x95\x83\x9f\x1f\xf7\x61\x06\x95\xbb\x67\xa3\x80\x93\x7b\x98\x19\x60\xb0\x70\xc6\xc5\x1a\xf7\x24\xf7\x18\xf7\x19" +"\xf7\x23\xc4\xb0\x7d\x6a\xac\x1e\xad\x69\x9c\x62\x5b\x1a\x3e\x68\x41\x49\x4d\x1e\x65\x66\x75\x7d\x3a\x62\x81\x5a\x18\xf7\x63\x06" +"\xa2\x9b\x97\x9d\x9a\x83\x91\x75\x1f\x0e\xf8\x5f\xf8\x04\x15\x64\xfb\x45\x7f\x53\x76\x65\x6b\x71\x19\x74\x6e\x66\x7e\x66\x1b\x55" +"\x62\xb1\xbc\x98\x8e\x9f\x92\xac\x1f\xbf\xf7\x7b\x05\x25\x33\x0a\xb9\x06\xfb\x03\xfc\x8f\x05\x89\x83\x8a\x83\x87\x1a\x7c\x94\x83" +"\x9a\x9a\x95\x96\xa0\x90\x1e\xb4\xf7\x51\x05\x64\xaa\xaf\x7b\xc2\x1b\xc1\xaf\x99\xae\xb2\x1f\x84\x6a\x05\xef\x06\xa3\x9a\x1d\x77" +"\x1f\x5f\x06\xdb\xf8\x04\x05\x27\x24\x1d\x0e\xf8\x9e\xf8\x13\x15\xad\x66\x5b\x9b\x4b\x1b\xfb\x33\xfb\x12\xfb\x0e\xfb\x2c\x50\xa1" +"\x5c\xb2\x6f\x1f\xa4\x7a\xb1\x7f\xc8\x82\x08\xcb\x82\x97\x85\x74\x1a\x60\x62\x6a\x51\x89\x1e\x6c\x89\x7e\x83\x79\x1a\x7a\x96\x83" +"\xa4\xe4\xd1\xc5\xd4\xbe\x6d\xa4\x40\x96\x1e\x51\x94\x6a\x93\x7c\x93\x08\x6b\x9c\x79\xad\xb9\x1a\xf7\x11\xf2\xee\xf7\x16\xb7\xb8" +"\x7e\x79\x9f\x1e\x95\x81\x91\x7d\x8c\x77\x08\x66\x8e\x91\x80\x9e\x1b\x9c\x95\x97\xa5\x8e\x1f\x8f\xae\x92\xaa\x94\x9f\x08\x8f\x95" +"\x8c\x90\x91\x1a\x98\x81\x95\x7d\x7c\x81\x82\x79\x86\x1e\x0e\x2d\x1d\xf7\x26\xf9\x66\x15\x93\x84\x86\x8e\x83\x1b\x7b\x7c\x7c\x7b" +"\x87\x8e\x86\x93\x83\x1f\xe7\x29\x05\x82\x92\x8f\x89\x95\x1b\x9a\x9a\x9a\x9b\x8f\x88\x90\x83\x93\x1f\x0e\x8f\x0a\xfb\x5a\xf9\x66" +"\x15\x93\x83\x87\x8e\x83\x1b\x7b\x7c\x7c\x7b\x86\x8e\x86\x50\x1d\x82\x92\x8f\x89\x94\x1b\x9a\x94\x93\x9d\x90\x1f\x8c\x90\x8c\x8e" +"\x87\x92\x84\x92\x19\x0e\xf7\xc8\xc3\x15\x3b\xf8\x5c\x05\xd1\x57\x0a\xfb\x2b\x29\x1d\xa5\x06\xe4\xfc\x94\x05\xcb\x06\xf7\xa1\xf8" +"\x33\xa4\xb4\x8b\x8b\x95\x97\x19\x97\x97\x99\x92\x98\x1b\x93\x91\x89\x83\x97\x1f\x7f\x9f\x96\x86\x97\x1b\xa6\xa5\xa6\xa6\xaa\x70" +"\x9e\x60\x69\x6e\x81\x75\x6d\x1f\x70\x77\x88\x86\x65\x51\x08\x0e\x72\x1d\xfb\xe0\xf7\x63\x15\x93\x83\x87\x8e\x84\x1b\x7a\x7d\x7d" +"\x7b\x85\x8e\x86\x91\x84\x44\x1d\x93\x90\x88\x92\x1b\x9a\x9b\x99\x99\x8e\x84\x99\x88\x8e\x1f\x0e\xf7\x78\xf7\x9e\x15\xf7\x0f\x06" +"\x96\xbe\x05\xfb\x0f\xd7\x1d\x61\xfb\x57\x05\x4e\x06\x80\x58\x05\xc8\x06\x5c\xfb\x6b\x4d\x1d\xf7\x7e\x23\x1d\xfb\x18\x06\x0e\xf7" +"\x82\xf7\xa2\x15\xa0\xed\x05\xf7\xa6\x06\x6e\xfb\x16\x8a\x7d\x05\xf7\x54\x1d\x9f\x8f\x1e\xb3\xf7\x4c\x05\xfc\x71\x3a\x0a\xeb\x06" +"\x76\x29\x05\x59\x06\x68\x1d\xbb\x06\x67\xfb\x3d\x05\x26\x24\x1d\xf7\x8e\x23\x0a\x29\x06\xaf\xf7\x3d\x05\xf7\x1c\x66\x1d\x0e\xf8" +"\x89\xbe\x15\x70\xf7\x1a\x7e\xc4\x77\xb6\x73\x9f\x19\xa0\x9f\xab\xb4\xaf\xbe\xc2\xdb\x93\x94\xa3\x90\x81\x64\x18\x8a\x80\x05\x79" +"\x94\x81\x9b\x99\x94\x95\xa0\x90\x1e\x97\xc2\x05\x8d\x97\x8c\x90\x8e\x1a\x9b\x7e\x94\x71\x51\x75\x78\xfb\x17\x31\x1e\x5a\x44\x7e" +"\x7f\x70\x88\xb2\xf7\x4c\x18\xa1\x1d\x9a\x06\x75\x33\x05\x89\x83\x8b\x89\xf7\x01\x0a\xf7\x21\x05\x0e\xf8\x7e\xbe\x15\x6c\xe4\x7c" +"\xb5\x74\xad\x75\x95\x19\xa5\xa0\x94\x93\xa5\xaa\xc2\xce\x97\x95\xa6\x8f\x86\x78\x18\x89\x85\x8b\x89\x8a\x1a\x78\x94\x81\x9b\x99" +"\x94\x95\xa1\x90\x1e\x92\xac\x05\x8d\x92\x8c\x94\x8f\x1a\x9b\x7e\x93\x71\x57\x76\x7e\x42\x4b\x1e\x4d\x45\x81\x82\x6f\x87\xa4\xf7" +"\x0a\x18\xa7\x21\x0a\x2a\x20\x0a\x9c\x06\x72\xfb\x0a\x05\x84\x06\x74\x8c\x84\x93\x71\xc4\x08\xe5\x64\x7d\x98\x50\x1b\x6f\x83\x84" +"\x71\x85\x1f\x83\x67\x05\x88\x7e\x8b\x8a\x87\x1a\x7e\x94\x82\x9a\x9b\x96\x95\x9c\x8f\x1e\x92\xaa\xa2\x89\x8f\x86\xa0\x5f\x19\x9c" +"\x63\x9a\x6d\x97\x7a\x58\x70\x88\x89\x5c\x50\x43\x30\x18\x6f\x20\x0a\xa4\x06\xa3\x8c\x8d\x8c\x92\x91\x95\x98\x19\xd7\xeb\xb8\xc2" +"\xb4\xa9\xa6\x88\x19\x91\x06\x6b\xfb\x28\x05\x70\x22\x0a\xeb\x21\x0a\x7b\x06\xab\xf7\x28\x05\x94\x06\xb4\x88\x9c\x7b\xa0\x4f\xaa" +"\x31\x18\x95\x70\x8e\x89\xa8\x8a\x08\x96\x06\x75\x32\xe5\x0a\x98\x9c\x96\x95\xa0\x90\x1e\xad\xf7\x21\x05\x0e\xf7\xa2\x7c\x15\xcb" +"\x8d\xbf\x97\xae\x9e\x08\xcc\xaf\xb4\xca\xca\x1a\xc3\x6e\xb1\x50\xa0\x1e\xdd\xa9\xb4\xbc\xd1\x1a\xdb\x48\xbe\x22\x51\x65\x81\x6c" +"\x50\x1e\x83\x7d\x88\x8a\x88\x1b\x87\x89\x90\x96\x9f\x82\x95\x7b\x7c\x82\x82\x7a\x88\x1f\x7a\x36\x05\x77\x42\x8b\x8b\x89\x1a\x7f" +"\x94\x82\x98\x98\x93\x92\x9d\x92\x1e\x94\xa5\x95\x9e\x97\x9b\x08\xbb\xae\xca\xa5\xda\x1b\xda\xbd\x6c\x5a\x69\x77\x6a\x68\x74\x1f" +"\x71\x63\x53\x7f\x3b\x1b\x6d\x22\x0a\xbc\x06\xcc\xcc\x7d\x77\xa2\x1f\x9a\x7e\x93\x79\x76\x1a\x68\x78\x66\x6b\x71\x1e\x6c\x66\x59" +"\x7c\x4a\x1b\x3a\x56\x9b\xb5\x50\x1f\x93\x80\x83\x8e\x84\x1b\x7e\x7c\x7c\x7d\x65\xf2\x5d\xed\x85\x1f\x7d\x4b\x05\x42\x0a\x68\x8e" +"\x1f\x0e\xf7\xa7\x7f\x15\xc2\x8c\xbd\x93\xad\x9a\x08\xc7\xa5\xae\xb8\xbc\x1a\xb8\x72\xa8\x57\x99\x1e\xcc\xa3\xac\xaf\xbc\x1a\xcb" +"\x4a\xb3\x21\x39\x51\x7c\x6a\x61\x1e\x8d\x92\x05\x8b\x0a\x77\x98\x80\xb4\x7e\x1f\xb7\x7c\xb4\x84\xbd\x88\x7c\x48\x18\x42\x0a\x69" +"\x8e\x1f\x0e\xf8\x5c\xbe\x15\x62\xf7\x1a\x77\xca\x70\xb5\x6e\x99\x19\xa5\x9e\x99\x99\xb0\xb9\xf1\xf7\x10\x8d\x8d\xb8\x8e\x81\x66" +"\x18\x8a\x7c\x05\x7b\x95\x80\x9a\x99\x94\x96\xa1\x90\x1e\x96\xc0\x05\x8d\x94\x8c\x93\x8e\x1a\x9b\x7b\x94\x6e\x45\x74\x7c\x22\x36" +"\x1e\x5a\x50\x73\x6f\x7d\x81\x74\x7a\x84\x89\x51\x8a\x08\x88\x06\xb3\xf7\x4d\x05\xb7\x2f\x0a\xfb\x24\x20\x0a\xb9\x66\x0a\xbd\x06" +"\x76\x33\x05\x8a\x86\x8a\x86\x88\x1a\x7e\x93\x84\x99\x9b\x95\x95\x9f\x90\xa0\x1d\xf8\x4d\xbe\x15\x5f\xe5\x74\xb9\x6f\xaa\x70\x95" +"\x19\xa9\x9c\xa4\x9f\xb8\xb7\xbe\xbb\x99\x93\xaf\x8e\x84\x64\x18\x8a\x85\x8a\x86\x88\x1a\x7d\x95\x82\x9a\x9b\x94\x95\x9f\x8e\x1e" +"\x94\xc1\x05\x8c\x8e\x8b\x8d\x8b\x1a\x8c\x8c\x05\x8d\x07\x8c\x8e\x8b\x8e\x8f\x1a\x9d\x7d\x93\x6e\x4e\x6e\x7d\x49\x46\x1e\x66\x67" +"\x6f\x73\x76\x7d\x7d\x80\x72\x87\x5d\x8a\x08\x87\x06\xa5\xf7\x0a\x05\xb7\x21\x0a\xfb\x1e\x36\x1d\xb5\x06\x46\xfb\xd1\x05\x5f\x20" +"\x0a\xf7\x1f\x21\x0a\x61\x06\xaa\xf7\x28\x05\x93\x06\xf2\x89\x99\x84\xae\x47\xb9\x2c\x18\x98\x71\x8c\x8b\xa8\x8a\x08\xb6\xf7\x37" +"\x1d\x9b\x96\x95\x9f\x90\xa0\x1d\xf7\xa6\xf7\xa6\x15\xba\x82\xa0\x72\xa3\x41\xc1\x0a\xcd\x21\x0a\x50\x06\x62\x0a\x81\x66\x18\xe8" +"\x1d\x46\x38\x7a\x7a\x72\x80\x9b\xd4\x18\x8d\x92\x8b\x8d\x8e\x1a\x98\x80\x97\x7e\x7d\x82\x83\x78\x87\x1e\x78\x33\x7c\x8a\xb3\xf7" +"\x4d\x05\xb7\x2f\x0a\xfb\x24\x20\x0a\xb9\x06\x28\xfc\x61\x05\x5e\x20\x0a\xf7\x24\x2b\x0a\x5d\x06\xbc\xf7\x75\x05\x9a\x06\x77\x30" +"\x8a\x7d\x05\xf7\x57\x1d\x0e\xf7\x92\xf7\x58\x15\xbc\x86\x9a\x7f\xa9\x52\xb9\x2c\x18\x98\x71\x8c\x8b\xa8\x8a\x08\xc6\x21\x0a\x54" +"\x06\x5f\xe5\x74\xb9\x6f\xaa\x70\x95\x19\xa9\x9c\xa4\x9f\xb8\xb7\xbe\xbb\x99\x93\xaf\x8e\x84\x64\x18\x8a\x85\x8a\x86\x88\x1a\x7d" +"\x95\x82\x9a\x9b\x94\x95\x9f\x8e\x1e\x94\xc1\x05\x8c\x8e\x8b\x8d\x8b\x1a\x8c\x8c\x05\x8d\x07\x8c\x8e\x8b\x8e\x8f\x1a\x9d\x7d\x93" +"\x6e\x51\x6a\x7b\x56\x53\x1e\x45\x48\x6d\x72\x79\x89\x98\xc5\x18\x8d\x95\x8b\x8b\x8e\x1a\x98\x80\x97\x7e\x7c\x83\x83\x78\x87\x1e" +"\x7a\x3f\x05\x7b\x06\xa5\xf7\x0a\x05\xb7\x21\x0a\xfb\x1e\x36\x1d\xb5\x25\x0a\x5f\x06\x72\x5a\x0a\xa4\x1f\xf7\x1f\x21\x0a\x61\x06" +"\xaa\xf7\x28\x05\x9b\x06\x7b\x42\x05\x8a\x88\x8a\x83\xf7\x3c\x1d\xf7\x0e\x22\x1d\xee\x66\x0a\xcd\x21\x0a\x50\x06\x62\x0a\x81\x66" +"\x18\x88\x0a\xfb\x81\x06\x6a\xfb\x1f\x05\x8a\x86\x8a\x85\x88\x1a\x7f\x93\x83\x98\x9b\x97\x96\x9f\x8f\x1e\x0e\xa2\x1d\xf8\x56\xbe" +"\x15\xb1\x1d\xf7\x97\x06\x5c\xfb\x6b\x05\x59\x29\x1d\xf7\x0e\x06\x75\xf7\x21\x0a\x83\x99\x9b\x28\x1d\xae\xf7\x21\x05\x0e\xf8\x55" +"\xbe\x15\xcf\xf7\xd1\x05\xac\x23\x0a\xfb\x0c\x45\x0a\xad\x06\x70\xfb\x12\x05\xfb\x93\x6e\x0a\x77\x1f\xfb\x0b\x33\x0a\xa9\x57\x1d" +"\xaa\xf7\x20\x05\xf7\x94\x06\x6c\xfb\x20\x05\x63\x45\x0a\xf7\x0d\x06\x76\x33\x05\x89\x83\x8b\x89\xf7\x27\x1d\xf7\xd4\x7b\x15\xcb" +"\xce\xa4\xb9\xc7\x1f\xb1\xa8\x99\x9a\x9a\x95\x0a\x88\x79\x05\x4e\x0a\x25\xd0\x35\xed\x77\x1e\x7c\x47\x05\x42\x0a\x69\x8e\x1f\x0e" +"\xf7\xdf\x7c\x15\xbc\x8f\xb7\x96\xb5\x9e\x08\xc5\xa6\xaf\xa8\xa0\x1a\x97\x82\x93\x71\x1d\x8a\x88\x05\x88\x1d\x29\xc8\x4c\xf3\x80" +"\x1f\x7d\x4b\x05\xa6\x06\xa2\x97\x86\x81\x7c\x78\x7f\x71\x7c\x7f\x8f\x95\x79\x1f\x90\x82\x88\x8c\x86\x1b\x7b\x7d\x7e\x7b\x78\xb7" +"\x77\xb5\xc4\xb5\xaf\xba\xaa\x79\x9c\x69\x8e\x1f\x0e\x47\x1d\x0e\xf7\x7c\x92\x15\x67\xfb\x3b\xf7\x01\x1d\xab\xf7\x31\xf7\x9f\xf8" +"\x07\x05\x96\x06\xa2\x99\x97\x9d\x9a\x83\xb5\x0a\xfb\xc6\x32\xf7\xc6\xf7\x02\x1d\x0e\xf8\x08\xf7\x66\x15\x95\xb5\xf7\x7b\xf7\x98" +"\x05\xa0\x91\x1d\x79\x7c\x80\x1d\x79\x7c\x25\x1d\xa0\x06\xf7\x0c\xfb\x96\x81\x5f\x05\x24\x06\x68\x1d\xf0\x06\x73\xfb\x01\x05\x26" +"\x21\x1d\xf7\x90\x30\x0a\x29\x06\xa3\xf7\x01\x05\xf7\x00\x66\x1d\x0e\xf7\x76\x78\x15\x2e\x8e\x1d\xe7\x06\x77\x30\xf7\x01\x1d\x9e" +"\xe6\x05\xe8\x66\x1d\x2f\x06\x8e\x9a\xf7\x9f\xf8\x08\x05\x96\x06\xa2\x99\x97\x9d\x9a\x83\xb5\x0a\xfb\xc7\x32\xf7\xc7\xf7\x02\x1d" +"\xf4\xfb\xfd\x05\x0e\xf8\x78\xbe\x15\xfb\x1b\xf7\x80\xaa\x1d\xf7\x06\x06\x75\x33\x05\x89\x84\x8b\x88\xe1\x0a\xf8\x74\xbe\x15\xfb" +"\x21\xf7\x3b\x8a\x0a\xf7\x04\x06\x76\x33\x05\x89\x81\x8b\x8b\xf7\x27\x1d\xad\x1d\x20\x22\x0a\xf7\x4a\x06\x75\x33\x05\x89\x81\x8b" +"\x8b\xe1\x0a\xae\x1d\x22\x20\x0a\xf7\x47\x06\x76\x33\x05\x8a\x85\x8a\x87\x7e\x0a\x95\x9f\x8f\xa0\x1d\xf7\xb3\xf7\x54\x15\xc7\x9d" +"\xb0\x9a\xb5\xa6\x60\xfb\x5d\x18\x20\x22\x0a\xf7\x5b\x21\x0a\x64\x06\x7a\x1d\x4e\x61\x6a\x7a\x5c\x7d\x19\x9d\xdb\x8c\x97\x05\x98" +"\x80\x97\x7e\x7d\x83\x83\x79\x87\x1e\x75\x26\x05\x82\x06\x5e\x75\x9e\xb2\x97\x8d\x98\xac\x0a\x49\xb5\x66\xd8\x89\x1e\x7a\x3b\x05" +"\x8a\x87\x8a\x84\xf7\x3c\x1d\xf7\x7d\xf7\x18\x15\x81\x5b\x05\x8a\x87\x8a\x85\xf7\x47\x1d\x99\xcb\xb9\x93\xaa\x95\xbf\xa5\x19\x6f" +"\xfb\x17\x05\x22\x20\x0a\xf7\x54\x06\xa5\x98\x80\x0a\x69\x06\xcf\xf7\xd1\x05\xb2\x2b\x0a\xfb\x14\x22\x0a\xaf\x06\x6f\xfb\x11\x50" +"\x6d\x74\x81\x5c\x7f\x19\x97\xc0\x05\x8c\x91\x8c\x8f\x8e\x1a\x98\x80\x97\x7e\x7d\x83\x83\x78\x87\x1e\x7a\x42\x7a\x8c\x05\x5f\x8e" +"\x79\x97\xa5\x1a\x95\x8d\x97\x8e\x9a\x1e\xa3\xf6\x05\xb7\x06\xa6\xbc\x0a\x5a\xb2\x6c\xce\x87\x1e\x0e\xf7\xcb\x22\x1d\xf6\x4c\x1d" +"\xfb\x5b\x51\x0a\xb2\x26\x1d\x66\x51\x0a\xf7\x18\x2f\x0a\x62\x06\xb5\xf7\x54\x05\xc6\xe0\xc6\xa3\xc7\x1b\xb7\xa1\x78\x64\x7e\x8a" +"\x80\x87\x79\x1f\x65\xfb\x43\x05\x5d\x36\x1d\xf7\x1e\x2f\x0a\x64\x06\xb0\xf7\x3d\x05\x90\xa3\x8d\x99\x99\x1a\xca\x5d\xb5\x46\x4f" +"\x4e\x77\x5d\x41\x1e\x0e\xf7\x97\xf8\xee\x15\x25\x2b\x1d\xba\x06\xfb\x01\xfc\x88\xb5\x1d\x57\x76\x5f\x55\x1e\x0e\x75\x1d\xad\x1d" +"\xfb\x21\x06\x71\xfb\x22\x05\x8a\x88\x8b\x87\x88\x1a\x7d\x91\x85\x99\x9d\x96\x96\xa1\x8f\x1e\x9b\xe3\x05\xf7\x5f\x06\x9d\x97\x95" +"\x9b\x9a\x80\x95\x79\x1f\x0e\xae\x1d\xfb\x1f\x06\x72\xfb\x1e\x05\x8a\x87\x8b\x87\x88\x1a\x7c\x92\x83\x9a\x9d\x94\x95\xa2\x8f\x1e" +"\x9c\xe3\x05\xf7\x49\x06\xab\x98\x93\x9d\x9c\x7e\x93\x71\x1f\x0e\xf3\xf7\xaf\x15\x85\x5c\x89\x79\x74\x1a\x4e\xa4\x4f\xb5\x63\x1e" +"\x6a\xae\xb7\x7a\xc0\x1b\xf7\x3c\xf7\x32\xf7\x46\xf7\x51\xf7\x1a\x3a\xe5\xfb\x0b\x39\x33\x5e\x44\x52\x1f\xbb\x78\x05\xbc\xb3\xd3" +"\xae\xc7\x1b\xe6\xca\x3f\xfb\x00\x7a\x8a\x7e\x86\x6f\x1f\x7c\x59\x15\x70\x4e\x78\x6e\x66\x68\x08\x5c\x5a\x52\x72\x53\x1b\x35\x48" +"\xd7\xeb\x91\x8b\x94\x8c\x95\x1f\x0e\x29\x0a\x29\xf7\x98\x48\x1d\x37\x0a\xfb\x12\xf8\x29\x32\x0a\xf8\x3c\xf8\xd3\x15\xfb\x3d\xfb" +"\x32\xfb\x46\xfb\x52\xfb\x19\xdc\x31\xf7\x0b\xf7\x39\xf7\x34\xf7\x47\xf7\x4d\xf7\x1c\x3c\xe6\xfb\x0b\x1f\xf7\x17\xfb\xd6\x15\x7b" +"\x5e\x7f\x73\x74\x6b\x08\x41\x55\x41\x60\x41\x1b\x36\x48\xd7\xeb\x99\x8c\x9a\x8c\x9c\x1f\x96\xbd\x15\xf7\x19\xb7\xf0\xe3\xf7\x00" +"\x1b\xe1\xce\x3f\x2a\x7f\x8a\x79\x89\x79\x1f\x0e\x89\x0a\x2d\x1d\xf7\x0a\xf9\x65\x48\x1d\x30\x1d\xfb\x57\xf7\xf4\x32\x0a\xf9\x7d" +"\xf9\x46\xd0\x0a\xf8\x2d\xe3\x15\x94\x63\x8f\x7e\x92\x7f\x08\x78\x97\x9b\x80\x9c\x1b\xc8\xb4\xe6\xf7\x1c\xf7\x18\x60\xe6\x4e\x44" +"\x67\x32\xfb\x40\x1f\xfb\xee\x07\x7b\x93\x81\x99\x99\x93\x95\x9c\x1e\xf8\x03\x04\xa1\x07\xed\xa7\xd7\xaf\xb0\xa5\x42\x22\xfb\x0d" +"\x75\x4b\x61\x68\x75\xb8\xd7\x87\x1e\xfb\xe5\x81\x15\x8a\x5d\x7d\x66\x76\x81\x08\x81\x86\x85\x82\x80\x1a\x89\x07\x7c\x8c\x95\x83" +"\x9c\x1b\xf1\x8c\x05\xf4\xc4\xec\xf7\x46\xf7\x1d\x66\xe8\x48\xac\x1f\x75\x96\x75\x8f\x65\x8a\x08\x84\x88\x8d\x8f\x95\x93\xa3\x90" +"\x93\x1f\x8e\x90\x8c\x8d\x8f\x1a\x90\x88\x90\x87\x8e\x1e\x89\x8c\x05\x8d\x88\x87\x8c\x87\x1b\x79\x76\x69\x6c\x8a\x1f\x82\x8a\x8a" +"\x89\x84\x1b\x7a\x06\x7a\x81\x82\x7e\x7d\x95\x83\x9c\x1f\x9c\x06\x91\x8d\x88\x86\x1f\xb7\x16\x92\x8c\x8c\x9b\xee\xaf\x4b\xfb\x43" +"\xfb\x09\x76\x46\x60\x72\x1e\x80\x79\x68\x86\x5a\x1b\x7e\x86\x8d\x8f\x8c\x8b\x8c\x8c\x8c\x1f\xa0\xa8\x94\xaa\x8c\xba\x08\x0e\xf8" +"\x34\xbd\x15\xec\xc2\xc6\xeb\xf2\x1a\xf7\x2e\xfb\x0a\xf7\x09\xfb\x2e\xfb\x2f\xfb\x09\xfb\x09\xfb\x2e\x24\xc6\x2b\xec\x54\x1e\xfb" +"\x15\x06\x74\x80\x83\x7a\x7b\x98\x82\xa0\x1f\xf7\x62\xbb\x06\x54\xaa\x7b\x96\x75\x9f\x08\x51\xbf\x6d\xcc\xd3\x1a\xd3\xa7\xc6\xc2" +"\xb9\x1e\xad\xb4\xb3\x99\xc3\x1b\xc3\xb3\x7d\x69\xb4\x1f\xc2\x5d\xa7\x50\x43\x1a\x47\x71\x4f\x57\x57\x1e\x72\x72\x7a\x7f\x4e\x69" +"\x08\x5b\xf7\x62\x07\xa0\x98\x94\x9b\x9c\x80\x93\x74\x1f\x0e\xab\x0a\x68\x0a\xe6\x16\xbe\x06\xf7\x34\xf8\x1a\xf7\x35\xfc\x1a\x05" +"\xbe\x06\xfb\x42\xf8\x47\x05\x40\x06\x0e\xe6\xf8\x46\x15\xf7\x42\xfc\x46\x05\xd6\x06\xf7\x42\xf8\x47\x05\x58\x06\xfb\x35\xfc\x19" +"\xfb\x34\xf8\x19\x05\x58\x06\x0e\xf7\xbd\xf8\x89\x15\xfb\x1b\xfb\x05\xfb\x04\xfb\x1b\xfb\x22\xf7\x02\xfb\x04\xf7\x20\xf7\x1c\xf7" +"\x03\xf7\x04\xf7\x1f\xf7\x1f\xfb\x03\xf7\x03\xfb\x1e\x1f\x70\xfb\xad\x15\xfb\x36\x07\x35\x94\x3e\xd6\x87\xd9\x08\xc2\x04\x91\xde" +"\xd5\xd5\xe2\x96\x08\xfb\x3c\x07\xc2\x54\x15\xf7\x3b\x06\x88\x42\x3b\x3d\x37\x80\x08\xf7\x6d\x04\xf7\x3c\x07\xdf\x82\xd7\x3f\x92" +"\x38\x08\x0e\x9c\x16\xf8\xcb\xf8\xcb\xfc\xcb\x06\xf8\x92\xfc\x92\x15\xfc\x59\xf8\x59\xf8\x59\x06\x0e\xca\xf7\xe7\x15\xfb\x2b\x90" +"\x68\xa6\x5f\x1e\x47\xb5\xd8\x62\xe1\x1b\xbf\xbb\x9a\xa6\xb4\x1f\xbe\xae\xa8\xb9\x95\xca\x08\x90\xac\x8c\xa1\xed\x1a\xf7\x51\x07" +"\x9f\x80\x99\x7b\x7b\x82\x7f\x75\x1e\xfb\x54\x07\xfb\x10\x86\x62\x78\x6a\x1e\x57\x6d\x4a\x68\x49\x1b\x63\x62\x98\xa2\x6a\x1f\x62" +"\xa8\x78\xac\x85\xbb\x87\xa9\x8b\x8b\x8a\xf7\x01\x08\xf7\x54\x07\xa0\x81\x98\x7b\x7a\x82\x7f\x75\x1e\x0e\xf7\xe1\x16\xf7\x67\xf8" +"\xeb\x05\x55\x06\x4c\xfb\x37\x05\xfb\x97\x06\x4d\xf7\x37\x05\x58\x06\xf7\x5f\xfc\xeb\x05\xf7\x2a\xf8\x15\x15\xfb\x03\xfb\xe2\x05" +"\x84\x06\x24\xf7\xe2\x05\x0e\xf8\xd4\xf8\x37\x15\xdb\x0a\x48\x4a\x7c\x1d\xca\xa3\xbc\xcb\x1f\x7f\x52\x05\x9e\x06\x57\x70\x70\x69" +"\x63\x65\x0a\xaa\xaf\xac\xc7\xa4\x1f\xa3\x94\x93\x94\x9a\x1a\x99\x82\x92\x77\x1e\x70\x06\x0e\xf8\x63\xf8\x04\x15\x6b\xfb\x27\x7b" +"\x41\x7b\x64\x71\x6f\x19\x6e\x6f\x67\x7b\x60\x1b\x4b\x67\xac\xc5\xa0\x8f\xaa\x94\xb3\x1f\xb6\xf7\x5d\x05\x20\x8d\x1d\xbe\x06\x6b" +"\xfb\x27\x05\x83\x66\x87\x69\x70\x1a\x36\xc7\x55\xe8\xc3\xc3\xa4\xb4\xb0\x1e\xa9\xad\x9f\xbb\x9d\xe1\xab\xf7\x2a\x18\xb4\x06\xa3" +"\x6d\x1d\xfb\x26\x3a\x0a\x0e\x73\x1d\xfb\x23\xf7\x72\x15\xf7\x15\x0a\xa8\x9f\x7c\x9a\x75\x1f\xf7\x62\xd9\x0a\x73\x1d\xc4\xf7\x5a" +"\x15\x98\x95\x91\x94\xf3\x0a\x2b\x05\x7e\x81\x85\x82\x80\x1a\x7f\x93\x83\x98\x92\x93\x8e\x92\x95\xf7\x13\x1d\xf7\x98\x16\x6e\x71" +"\x72\x6f\x75\x99\x7e\xa2\xa8\xa5\xa4\xa6\xa0\x51\x1d\x73\x1d\xc0\xf7\x6f\x61\x1d\x83\x93\x7e\x5b\x1d\x93\x83\x98\xf7\x10\x0a\x2c" +"\x0a\x87\xf8\xed\x5c\x1d\x7a\x74\x95\x1d\x0e\x2c\x0a\xf7\x02\xf8\xb4\x5b\x0a\x68\x80\x85\x7b\x1b\x80\x83\x8f\x9e\x6c\xe3\x0a\x72" +"\x80\x71\x69\xf7\x07\x1d\x95\x87\x80\x9b\x1f\x73\xaf\x9d\x84\xa2\x1b\xa5\xa4\x97\xa9\xaf\x1f\x9e\x9a\x90\x92\x56\x0a\x4d\x0a\xf7" +"\x2d\xf8\xe0\x15\x9a\x95\x8f\x92\x96\x46\x0a\x80\x1e\xfb\x1c\x29\x05\x7c\x80\x87\x86\x7f\x3e\x0a\x90\x47\x0a\xf8\x26\x16\xf7\x35" +"\xf8\x04\x05\x9b\x27\x1d\xfb\x03\x20\x1d\xb5\x06\xfb\x12\xfb\xb5\x6b\xf7\x80\x05\x50\x06\xfb\x19\xfb\x7f\x88\xf7\xb4\x05\xba\x5d" +"\x1d\x99\x06\x8f\xfc\x04\x05\xc5\x06\xf7\x1f\xf7\x87\xad\xfb\x87\x05\xbd\xf9\x12\x15\xfb\x32\xfb\x01\x05\x7b\x63\x0a\x89\x8e\x82" +"\x94\x1f\x0e\x4d\x0a\x33\xad\x0a\x4d\x0a\x54\xde\x1d\xf8\x3c\xf7\xb1\x15\x92\x06\x97\xbe\x81\x8c\x05\x83\x06\x2d\x90\x59\xa9\xc0" +"\x1a\xcf\xdf\xc2\xf6\x8d\x1e\xab\x8c\x8b\x8b\x91\x8d\x08\x96\x90\x93\x96\x96\x1a\x99\x81\x93\x78\x1e\xfb\x5c\x06\x73\x7d\x81\x78" +"\x7c\x95\x84\x9e\x1f\x99\x06\x59\x6b\x71\x61\x57\x1a\x5b\x9d\x6c\xb7\x70\x1e\x28\x67\x4e\x40\x38\x1a\x38\xc0\x5b\xf5\x7e\x1e\xd5" +"\x83\x99\x85\x72\x1a\x79\x80\x78\x79\x7e\x1e\x7c\x7f\x72\x85\x68\x89\x08\x6c\x89\x82\x85\x78\x1a\x78\x96\x83\xa4\xe7\xcf\xbf\xd2" +"\xa7\x80\xa3\x76\x9a\x1e\x7a\x97\x77\x91\x5b\x91\x64\x90\x83\x8c\x7b\x90\x08\x5d\x9a\x76\xa5\xb3\x1a\xbb\xaa\xb9\xc0\xab\x1e\xb1" +"\xa1\xbe\x97\xc9\x8c\x08\x0e\xb3\x1d\xf7\x9e\xf7\xa2\x3d\x0a\x63\x0a\x89\x8e\x81\x94\x1f\x0e\x52\x1d\xf7\x35\xf7\x96\xf7\x0b\x0a" +"\x8e\x86\x50\x1d\x83\x92\x91\x88\x92\x1b\x9a\x9b\x99\x99\x8e\x84\x99\x87\x8e\x1f\x0e\x9b\x0a\x8e\xf7\x69\x15\x9a\x96\x8f\x91\x96" +"\x46\x0a\x80\xf7\x0d\x1d\x9b\x0a\xfb\x16\xf7\x7e\x59\x1d\xf8\x5f\xf8\xbb\x15\xfb\x79\xfb\x55\x34\xfb\x08\xfb\x03\x1a\x5d\x9f\x65" +"\xaf\x72\x1e\xa7\x78\xaf\x80\xc8\x82\x08\xb5\x85\x98\x82\x75\x1a\x5f\x5b\x6b\x47\x8a\x1e\x79\x8a\x81\x83\x7a\x1a\x7a\x97\x83\xa4" +"\xe3\xd2\xc5\xd2\xa7\x80\xa3\x76\x99\x1e\x7e\x94\x7e\x8f\x57\x94\x58\x94\x82\x8e\x74\x97\x08\x6f\x98\x7c\xa7\xae\x1a\xc0\xb2\xd3" +"\xd1\xd8\x1e\xb0\xb3\xce\xcb\xd0\xc7\xa4\xa1\x9c\x9a\x92\x92\x90\x90\x18\x8c\x8c\x8c\x8c\x8d\x8d\x97\xbb\x05\xfb\x6c\x2b\x1d\x0e" +"\x7b\x9b\xf8\x35\x9b\xf7\x16\x97\xa7\x98\x06\xbe\x0a\xc0\x0b\xa7\x93\x8e\x8f\x8f\x8f\x8e\x8f\x93\xbb\xae\xab\x0c\x0c\xf8\xec\x14" +"\xad\x13\x00\xfb\x02\x00\x01\x00\x08\x00\x13\x00\x1a\x00\x1f\x00\x24\x00\x2a\x00\x35\x00\x42\x00\x48\x00\x65\x00\x6a\x00\x6f\x00" +"\x89\x00\xa1\x00\xac\x00\xb2\x00\xb9\x00\xd5\x00\xf4\x00\xf9\x00\xff\x01\x06\x01\x0b\x01\x41\x01\x46\x01\x75\x01\x80\x01\x8d\x01" +"\x93\x01\x9b\x01\xa2\x01\xa7\x01\xd9\x01\xf2\x01\xff\x02\x25\x02\x30\x02\x3b\x02\x42\x02\x47\x02\x4d\x02\x7c\x02\xbd\x02\xfe\x03" +"\x08\x03\x3b\x03\x57\x03\x68\x03\x72\x03\x7d\x03\x86\x03\x8a\x03\x99\x03\xa4\x03\xac\x03\xb4\x03\xbf\x03\xc5\x03\xcc\x03\xd5\x03" +"\xdd\x04\x24\x04\x38\x04\x4c\x04\x66\x04\x75\x04\x8d\x04\x99\x04\x9f\x04\xb8\x04\xd2\x04\xe3\x04\xea\x04\xf6\x05\x0e\x05\x15\x05" +"\x20\x05\x2d\x05\x36\x05\x45\x05\x54\x05\x5a\x05\x67\x05\x74\x05\x7d\x05\x84\x05\x90\x05\x9a\x05\xa7\x05\xb2\x05\xbd\x05\xc7\x05" +"\xd1\x05\xd6\x05\xdf\x05\xeb\x05\xf3\x06\xb3\x07\x3a\x07\x51\x07\xb0\x07\xc5\x07\xdc\x08\x15\x08\x2e\x08\x48\x08\x61\x08\xc8\x08" +"\xeb\x09\x0c\x09\x42\x09\x5a\x09\x74\x09\x79\x09\xc1\x0a\x02\x0a\x1d\x0a\x34\x0a\x60\x0a\xae\x0a\xc8\x0a\xf0\x0b\x04\x0b\x1d\x0b" +"\x62\x0b\x65\x0b\x6e\x0b\x9a\x0b\xb6\x0b\xea\x0b\xf7\x0c\x02\x0c\x25\x0c\x4e\x0c\x73\x0c\x97\x0c\x9c\x0c\xac\x0c\xc8\x0c\xf3\x0d" +"\x0e\x0d\x27\x0d\x2e\x0d\x45\x0d\x4a\x0d\x52\x0d\x79\x0d\x9e\x0d\xb9\x0d\xbe\x0d\xd5\x0d\xf8\x0e\x01\x0e\x12\x0e\x23\x0e\x2c\x0e" +"\x3e\x0e\x4a\x0e\x51\x0e\x58\x0e\x67\x0e\x73\x0e\x88\x0e\x8c\x0e\x9e\x0e\xa7\x0e\xc3\x0e\xd8\x0e\xe0\x0e\xe9\x0e\xf2\x0f\x0c\x0f" +"\x17\x0f\x22\x0f\x31\x0f\x42\x0f\x51\x0f\x61\x0f\x71\x0f\x77\x0f\x80\x0f\x97\x0f\xac\x0f\xc1\x0f\xd4\x0f\xdc\x0f\xe2\x0f\xee\x0f" +"\xfa\x10\x06\x10\x19\x10\x1d\x10\x30\x10\x37\x10\x40\x10\x49\x10\x4f\x10\x5a\x10\x60\x10\x6d\x10\x7e\x10\x86\x10\x96\x10\xa6\x10" +"\xb6\x10\xc6\x10\xcd\x10\xd5\x10\xdd\x10\xec\x10\xf3\x11\x02\x11\x0d\x11\x1c\x11\x20\x11\x2e\x11\x3c\x11\x47\x11\x55\x11\x63\x11" +"\x71\x11\x7d\x11\x86\x11\x8f\x11\x98\x11\x9d\x11\xaa\x11\xb7\x11\xc4\x11\xca\x11\xd7\x11\xde\x11\xe5\x11\xf1\x11\xfd\x12\x09\x12" +"\x15\x12\x1f\x12\x27\x12\x2f\x12\x37\x12\x3f\x12\x47\x12\x52\x12\x5d\x12\x68\x12\x73\x12\x7e\x12\x89\x12\x92\x12\x98\x06\x72\x5a" +"\x0a\xa4\x1f\x0b\x06\xa4\x99\x94\x9b\x9c\x7d\x94\x72\x1f\x0b\x06\x71\x5a\x0a\xa5\x1f\x0b\x06\xa3\x52\x0a\x0b\x06\x74\x7d\x80\x0b" +"\x06\x46\xfb\xd1\x05\x0b\x06\x74\x7d\x80\x79\x7c\x94\x84\x9f\x1f\x0b\x15\x94\x95\x8f\x92\x93\x1a\x95\x81\x95\x80\xef\x1d\x1a\x97" +"\x82\x94\x7e\x0b\xf8\x64\xce\x0a\x35\x1d\x6b\x06\x34\xf8\x94\x05\xfb\x64\x37\x1d\x7b\x1d\x9a\x82\x91\x98\x1d\xf7\x8e\xbe\x8b\x1d" +"\x0b\x94\x84\x9f\x1f\x0b\x06\xa5\x3a\x1d\x0b\xf8\x45\x16\xdd\x06\xa1\x40\x1d\x70\x06\xdb\xf8\x04\x05\xdb\x0a\x49\x49\x7c\x1d\xca" +"\xa3\xbc\xcb\x1f\x0b\x15\x9a\x95\x90\x93\x94\x1a\x98\x82\x94\x7e\x83\x86\x89\x83\x80\x82\x1d\x8b\x8b\x95\x9c\x1e\x0e\x06\xa1\x9a" +"\x97\x9d\x9a\x83\x91\x76\x1f\x0b\x06\xa4\x99\x80\x0a\x0b\x75\x0a\x82\x91\x77\x1f\x0b\xf8\x3b\xf7\x03\x1d\xf7\x1a\x3b\xe5\xfb\x0b" +"\x1f\x85\x58\x15\xe3\xcb\x3e\x22\xfb\x2c\xf7\x29\x1d\xf7\x1d\x1f\x0b\xf7\x08\x1d\xbf\xb8\x6d\x0a\x82\x84\x79\x85\x1e\x67\x7f\x5b" +"\x71\x55\x1b\x71\x73\x92\x96\x7d\x1f\x84\x91\x7d\x9d\x8d\x1a\x0e\xe2\x0a\x9e\x1f\x0b\x06\xb5\xf7\x57\x05\x0b\x42\x1d\xaf\xab\xaa" +"\xac\x0b\xef\xf8\x61\x05\x0b\x74\x0a\x76\x1f\x5c\x06\xed\x1d\x90\x8d\x8b\x90\x9a\x1e\xa0\xd8\xa5\x90\xad\x1b\xca\xb2\x73\x66\xf7" +"\x16\x1d\x29\x48\xbf\x63\xe0\xd0\xc6\xa1\xbf\xd3\x1f\x99\xc8\xf7\x49\x1d\xdf\xbc\xf7\x04\xb6\xb4\x86\x82\xae\x1f\x0b\xf8\x1d\x56" +"\x1d\x0b\x15\xf7\x2f\xf7\x01\x05\x9b\x92\x90\x92\x9a\x1a\x97\x82\x93\x7e\x88\x7d\x86\x87\x86\x1e\xfb\x0d\x35\x35\xe0\x05\x94\x82" +"\x89\x8c\x82\x1b\x88\x06\x7f\x7c\x7b\x7f\x80\x8e\x86\x94\x86\x1f\x0e\x06\x73\x7e\x81\x78\x7d\x95\x83\x9d\x1f\x0b\x81\x83\x87\x89" +"\x80\x80\x1e\xfc\x4b\xfc\x2d\x05\x0b\x99\x82\x92\x77\x1f\x0b\x15\xfb\x33\xfb\x01\x05\x7c\x0b\x1a\x7f\x94\x82\x98\x92\x0b\x27\xfc" +"\x61\x05\x0b\xf7\xea\x22\x1d\xe7\x4b\x1d\xfb\x7d\x37\x1d\xf7\x39\x1d\x80\x78\x7d\x25\x1d\xf8\x5b\x06\xb7\xf7\x5e\x05\x8d\x93\x8b" +"\x8c\x8f\x1a\x96\x81\x93\x7f\x7a\x81\x81\x77\x87\x1e\x69\xfb\x2d\x05\xfb\x99\x06\x0b\xf8\x5b\xf8\xef\x15\xfb\x38\x24\x0a\x78\x7c" +"\x93\x85\xa0\x1f\xf7\x02\x06\xfb\x01\xfc\x89\xf1\x1d\x0b\xf6\x1d\xb8\x77\xb4\xc4\xb6\xaf\xba\xaa\x79\x9c\x0b\x15\x91\x94\x8e\x93" +"\x93\x1a\x97\x83\x94\x7e\x81\x83\x85\x7e\x82\x1e\x2e\xfb\x1b\x05\x84\x81\x88\x84\x83\x1a\x7e\x93\x82\x98\x95\x93\x91\x98\x95\x1e" +"\x0b\x06\xa3\x99\x95\x9d\x9a\x81\x93\x78\x1f\x0b\x06\x73\x7e\x81\x79\x7c\x95\x83\x9d\x1f\x0b\x28\x0a\x84\x86\x89\x83\x0b\x8d\x93" +"\x97\x1e\x0e\x06\x28\xfc\x61\x05\x0b\xf8\xbd\xf8\xa0\x15\x93\x0a\x05\x62\xab\xc1\x75\xcc\x1b\xf7\x1e\xf7\x05\xe5\xf7\x03\xaf\x7b" +"\xad\x71\x9d\x1f\x70\x62\x1d\xd0\xd7\xc5\xe4\xb0\xad\x80\x7b\x9d\x1e\x94\x82\x9f\x6e\x79\x1d\x0b\xf7\x9b\xf8\x37\x15\x39\x4f\x1d" +"\x9e\x1f\xa7\x69\x0a\x77\x1f\x65\x06\xbf\xf7\x84\x05\xd7\xda\xa6\x9a\xca\x1b\xae\x9d\x85\x79\x9d\x1f\x9a\x7d\x92\x7a\x77\x1a\x82" +"\x8b\x88\xb9\x0a\xbf\xf7\x87\x05\x8d\x93\x8c\x93\x93\x1a\xd1\x55\xb8\x39\x4e\x63\x79\x54\x4b\x1e\x0b\xf7\x73\xf7\x8a\x15\xf7\x13" +"\x06\xcd\x69\xab\x57\xc1\xfb\x34\x08\xc7\x23\x1d\x70\x06\x5b\xf7\x16\x75\xb1\x5b\xb4\x08\xf6\xae\xc7\xc8\xd6\x1a\xd6\x48\xc4\x33" +"\x1e\xfb\x8c\xae\x0a\xc0\xf7\x8a\x15\xba\xf7\x6b\x05\xf7\x28\x06\xc9\xbd\x63\x59\x49\x2c\x50\x23\x1f\x0b\xe9\x1d\x83\x50\x42\x50" +"\x4d\xa1\x0a\x0b\xf8\x52\x16\xf7\x35\xf8\x04\x05\x9b\x5d\x1d\xb4\x06\xfb\x12\xfb\xb5\x6b\xf7\x80\x05\x50\x06\xfb\x19\xfb\x7f\x88" +"\xf7\xb4\x05\xba\x5d\x1d\x99\x06\x8f\xfc\x04\x05\xc5\x06\xf7\x1f\xf7\x87\xad\xfb\x87\x05\x0b\xb3\x64\x55\xa0\x4c\x1b\x47\x49\x71" +"\x5c\x53\x1f\x55\x5c\x60\x46\x7e\x4e\x79\x3a\x18\x88\x7c\x89\x7b\x7b\x1a\x0b\x1e\xfb\x0f\x37\x36\xdf\x05\x91\x84\x85\x8e\x85\x1b" +"\x7b\x7c\x92\x1d\x69\x6a\x35\x0a\xa5\x78\x9d\x70\x1f\x0b\x06\x72\x7d\x82\x7b\x7a\x99\x82\xa4\x1f\x0b\x99\x96\x9d\x99\x81\x93\x78" +"\x1f\x0b\xa2\x34\x1d\x0b\x85\x81\x80\x1a\x7f\x94\x83\x97\x92\x93\x8e\x92\x95\x1e\x0e\x06\x75\x7c\x7f\x7a\x7c\x94\x84\x9f\x1f\x0b" +"\x95\x1a\x97\x81\x94\x7f\x1e\x0e\x06\xa2\x9a\x96\x9e\x35\x1d\x0b\x06\x76\x80\x82\x7b\x7a\x96\x82\xa0\x1f\x0b\x8a\x8e\x81\x94\x1f" +"\x0e\x7d\x82\x7a\x7b\x99\x82\x0b\x15\x84\x85\x89\x84\x83\x1f\x6e\x0b\xa2\x9a\x97\x9d\x9a\x82\x91\x0b\x74\x0a\x76\x1f\x5c\x06\xed" +"\x1d\x8e\x90\x8c\x8c\x90\x1e\xa4\xe5\x9f\x8f\xaf\x1b\xca\xb2\x73\x66\x86\x8b\x87\x8a\x88\x1f\x7d\x4b\x05\x9a\x55\x6e\x8f\x5f\x1b" +"\xfb\x22\xfb\x01\x40\x29\x48\xbf\x63\xe0\xd0\xc6\xa1\xbf\xd3\x1f\x99\xc8\xf7\x49\x1d\xe0\xbc\xf7\x05\xb3\xb5\x86\x82\xae\x1f\x0b" +"\xf7\xae\xf8\x37\x15\xa6\x0a\x50\xc1\x64\xde\xc0\xd5\x9a\xa0\xbc\x1e\xa5\x0a\x0b\xf7\xe5\xbe\x15\xd6\x0a\x94\xa0\x87\x1d\x86\x6c" +"\x1d\x67\x0a\xf7\x8f\x23\x1d\x0b\xf8\x89\x16\xb3\xf7\x4b\x05\x8d\x95\x8b\x8b\x8e\x7c\x0a\xf5\x1d\x88\x1a\x7f\x94\x82\x98\xf7\x18" +"\x1d\x0b\xcc\x0a\x36\xdf\x05\x91\x84\x85\x8e\x85\x1b\x7b\x7c\x92\x1d\x62\xf7\x1a\x77\xca\x70\xb5\x6e\x99\x19\xa5\x9e\x99\x99\xb0" +"\xb9\xf1\xf7\x10\x8d\x8d\xb8\x8e\x0b\xd1\x0a\x91\x88\x91\x1b\x9b\x9a\x99\x9b\x92\x0b\x49\x1d\xf7\x7e\x06\x0b\x1a\x6b\xa5\x78\xb7" +"\xb9\xb8\xa1\xa1\x94\x84\x93\x82\x88\x86\x8a\x88\x87\x1e\x7e\x70\xf7\x45\x1d\x0b\x48\x0a\x5e\x20\x0a\xf7\x24\x2b\x0a\x5d\x06\xbc" +"\xf7\x75\x05\xb3\x06\xcb\x89\xa5\x73\xa6\x37\xc1\x0a\x0b\x9b\x96\x95\x9f\x8f\x1e\x9a\xcf\x05\xf7\x30\x26\x1d\x26\x20\x1d\x0b\xf8" +"\x05\xf7\xf4\xf7\x0c\x1d\x25\x0a\x62\x33\x1d\xf7\x18\x75\x0a\x82\x91\x0b\x65\x2b\x78\x7d\x68\x1e\x7c\x85\x84\x81\x7f\x1a\x7f\x94" +"\x82\x96\x90\x8d\x8b\x90\x9a\x1e\xa0\x0b\x9b\x1d\x8e\x8d\x1a\x96\x0b\x06\xa2\x99\x96\x9d\x99\x81\x93\x79\x1f\x0b\x9a\xa9\xad\x1e" +"\xa4\xa0\x9d\xaa\x9f\x28\x0a\x7c\x0b\x06\xa5\xf7\x12\x05\xb1\x96\x1d\x0b\x9a\x97\x9d\x9a\x82\x91\x77\x1f\xfb\x02\x06\x74\x7d\x80" +"\x0b\xae\xb3\x1f\x6a\xfb\x2f\x15\xaf\xa2\x77\x6d\x64\x61\x66\x0b\x92\x96\x28\x0a\x84\x0b\x81\x1a\x7e\x96\x80\x99\x94\x91\x8f\x95" +"\x93\x1e\x0b\x88\x1a\x7f\x94\x82\x98\x9b\x96\x95\xa0\x8f\x1e\x0b\xf8\x31\x16\xf1\x75\x0a\x83\x91\x0b\x06\xa1\x9a\x97\x9d\x9a\x0b" +"\x06\x96\xbf\x05\xb9\x95\xad\xae\xaf\x1b\x99\x0b\x15\x45\x06\x72\xfb\x05\x05\xd1\x06\x0e\x15\xf7\x32\xf7\x00\x05\x9c\x97\x8f\x6a" +"\x1d\x85\x0b\x06\xa1\x9a\x97\x9c\x9b\x83\x91\x77\x1f\x0b\x84\x88\x84\x81\x1e\xfb\x1b\x2b\x05\x7e\x0b\x93\xa4\x1b\x9a\x9d\x82\x78" +"\xa3\x1f\x0b\x1a\x96\x81\x94\x7f\x7a\x81\x81\x76\x0b\x85\x44\x1d\x93\x0b\x88\x1a\x7e\x93\x84\x98\x9c\x96\x0b\x1e\xf7\x0f\xdf\xe0" +"\x38\x05\x84\x93\x90\x88\x0b\x94\x9c\x9b\x7d\x94\x72\x1f\x0b\xf7\xe3\xbd\x15\x60\xa4\xb0\x74\xb7\x1b\xae\xb6\x9d\xaf\xbc\x1f\xa3" +"\x9c\x91\x93\xe8\x0a\x6e\x1b\x58\x66\xbe\xd1\x93\x8c\x9a\x8d\x9b\x1f\xf7\x96\x06\x95\xbb\x8d\x9d\xf7\x3b\x1d\x5c\x5c\x71\x5b\x64" +"\x1f\xb9\x7d\x66\xa7\x5d\x1b\x6b\x69\x83\x7b\x62\x1f\x6e\x7f\x81\x81\x7c\x1a\x81\x95\x80\x94\x91\x93\x8e\x90\x95\x1e\x9a\xa7\xaa" +"\x93\xa6\x1b\xb2\xa6\x72\x67\x83\x8b\x88\x8a\x86\x1f\x7f\x56\x05\x92\x74\x6e\x8f\x70\x1b\x46\x42\x70\x63\x63\x1f\x73\x72\x7f\x6c" +"\x65\x1a\x43\xbc\x5d\xd7\xb5\xb3\x9d\xb2\xb7\x1e\x8a\x83\x05\x8a\x86\x8a\x87\x87\x1a\x80\x94\x82\x97\x9b\x28\x1d\x6b\xe0\x15\x51" +"\x50\x66\x74\x66\x1b\x5b\x6b\xa6\xb5\x9d\x92\xa2\x95\x98\x1f\xa8\xa2\xcd\xa4\xc2\x1b\xa0\xa3\x87\x83\xa4\x1f\xc8\xb9\x15\xe4\xab" +"\xb9\xba\xc3\x1b\xba\xa4\x6a\x4e\x7d\x8a\x81\x8a\x79\x1f\x0b\xf7\xdf\xf7\x4d\x15\x6e\xfb\x1a\x05\x5b\x26\x0a\xf7\xf1\x06\xa8\xf7" +"\x1b\x05\x8c\x8c\x8b\x92\x8f\x1a\x96\xea\x0a\xba\xf7\x6c\x05\xce\x06\x87\x77\x05\x89\x85\x8b\x89\x87\x1a\x7f\x94\x82\x97\x9b\x96" +"\x96\x9f\x8f\x1e\x9f\xe9\x05\x8c\x8f\x8c\x90\x8e\x1a\x97\x82\x94\x7f\x7b\x81\x81\x76\x86\x1e\x86\x74\x05\x48\x06\xb5\xf7\x56\x05" +"\xf7\x48\x06\x75\x24\x05\x89\x84\x8b\x89\x73\x0a\xad\xf7\x30\x05\xfc\x45\x21\x1d\xc2\x06\xfb\x7a\xfc\x61\x05\x69\x29\x1d\xf2\x23" +"\x1d\x7a\x06\xce\xf7\x1a\x05\xf7\x22\xbe\x15\xfb\x09\x06\xf7\x1d\xf7\xa8\x05\xb3\x06\x0b\xf8\xbf\xf8\x6f\x15\x88\x0a\xfb\x24\x20" +"\x0a\xb9\x66\x0a\xcd\x21\x0a\x50\x06\x62\x0a\x08\x0b\xf7\x30\xf7\x9e\x15\x5c\xfb\x6b\x05\x6d\x29\x1d\xf7\x70\x06\xf7\x10\x88\xf7" +"\x1b\xf7\x0b\xa9\xf7\x1c\x96\xc2\x18\x90\x9f\x8d\x9f\x9c\x1a\xf7\x08\x3d\xde\xfb\x02\x1e\xfb\x70\x29\x1d\xa6\x06\x61\xfb\x57\x05" +"\x42\x21\x1d\xf7\x44\xf7\x8a\x15\xf7\x43\x1d\x62\x1a\x7f\x8a\x7e\x88\x7f\x1e\x7b\x43\x72\x24\xfb\x00\x2c\x32\x8e\x19\xfb\x23\x06" +"\xba\xf7\x6b\x05\xf7\x31\x4b\x1d\xfb\x2f\x06\x0e\xf8\x51\xf7\x9e\x15\x5c\xfb\x6b\x05\x59\x29\x1d\xf7\x20\x2a\x1d\x64\x06\xb1\x1d" +"\x0e\xf8\x7d\xf7\x9e\x15\xc0\x0a\xdf\x1d\x79\x7c\xd1\x1d\x73\x86\x1d\x9c\x9b\x82\x91\xca\x0a\x0b\xf7\x6d\xf7\x6f\x15\xe8\xcf\xe0" +"\x6e\xa8\x50\xa9\xfb\x5b\x19\xe6\x23\x1d\x57\x06\x6c\xf7\x48\x6e\xc1\x39\xb2\xf7\x93\xf7\x50\x18\x9a\x23\x1d\xfb\x0b\x32\x1d\xa8" +"\x06\xfb\xc8\xfb\x77\xbc\xf7\x77\x05\xd1\x23\x1d\xfb\x3e\xae\x0a\x0b\xe8\x1d\x5a\x50\x73\x6f\x7d\x81\x74\x7a\x84\x89\x51\x8a\x08" +"\x88\x06\xb3\xf7\x4d\x05\xb7\x2f\x0a\x0b\xf7\xaf\x16\xf7\x5a\x3e\x1d\x56\xba\x1d\xf7\x53\x06\x76\xf7\x21\x0a\x84\x99\x9a\x97\x96" +"\x9f\x8f\x1e\x0e\x99\x0a\x78\x7d\x25\x1d\xf7\x19\x2a\x1d\x57\x06\xf7\x40\xf7\x19\xf7\x04\xfb\x19\x05\x56\x21\x1d\x0b\x8c\x90\x8c" +"\x91\x91\x1a\x9a\x82\x94\x7d\x78\x85\x82\x61\x82\x1e\x7b\x46\x05\x85\x72\x8b\x8b\x88\x1a\x7f\x94\x83\x97\x98\x92\x92\x9d\x93\x1e" +"\x91\x99\x93\x97\x95\x97\x08\xac\xa9\xd0\xa0\xdc\x1b\xd7\xb6\x77\x68\x74\x7b\x75\x6d\x7c\x1f\x7a\x69\x53\x83\x3b\x1b\x6e\x22\x0a" +"\xb3\x06\xf7\x13\xc4\x79\x62\x76\x7b\x73\x6f\x7a\x1f\x75\x6b\x5c\x81\x4b\x1b\x43\x58\x96\xa7\x4e\x1f\x90\x82\x86\x8c\x85\x1b\x7c" +"\x81\x80\x7c\x0b\xe0\xbe\x15\x59\x20\x1d\xf7\xc7\x06\xf4\xf0\xe4\xe8\xbf\x6d\xb1\x4d\xa4\x1f\xd2\xb0\xae\xba\xc7\x1a\xd3\x4f\xbd" +"\xe6\x1d\x6d\x6f\x75\xb3\x0a\xf8\x38\xce\x0a\x3c\x0a\x6b\x06\x34\xf8\x94\x05\xfb\x63\x06\x73\x7d\x80\x78\x7d\x7b\x1d\x99\x82\x92" +"\x98\x1d\xf7\x8e\xbe\x8b\x1d\x0e\x06\xce\xf7\xd1\x05\xae\x3e\x1d\xfb\x06\x45\x0a\xa6\x06\x48\xfb\xd1\x05\xfb\x29\x06\xcf\xf7\xd1" +"\x05\xa3\x23\x0a\x20\x2b\x1d\xa8\x06\x47\xfb\xd1\x05\xfb\x29\x06\xcf\xf7\xd1\x05\xa2\x6c\x0a\xfb\x03\x45\x0a\xaf\x06\x0b\xf8\xc9" +"\x22\x1d\xb9\x06\xa3\x98\x95\x9e\x9a\x81\x92\x78\xbb\x1d\x99\x81\x93\x78\x1f\x58\x06\x0b\xf7\xb9\xbe\x15\xd6\x0a\x95\x9f\x87\x1d" +"\x85\x8a\x88\x88\x1a\x7f\x94\x82\x98\x67\x0a\xf7\x8f\x2a\x1d\x0e\xb7\x1d\xf7\x34\x0b\x1e\xf8\x3f\xf7\x09\x15\xb1\xa2\xa0\xad\xb0" +"\x1a\xba\x67\xad\x58\x49\x4c\x52\x4e\x73\x93\x7a\x9e\x7b\x1e\x5f\x71\x74\x67\x62\x1a\x59\xb1\x68\xc1\xd1\xcd\xc7\xcc\xa5\x82\x9e" +"\x75\x9d\x1e\x66\xf7\x1a\x15\xab\xa1\x78\x6f\x67\x67\x6b\x61\x6b\x75\x9d\xa5\xaf\xb1\x70\x0a\x5f\x9e\x1d\xb7\x1f\x0b\xf5\x0a\xa1" +"\x79\x1f\xa5\x75\xad\x80\xd0\x7e\xd0\x80\x9e\x85\x9f\x7c\x08\x9b\x80\x96\x75\x77\x1a\x3b\x37\x4a\x24\x62\x62\x96\x9c\x76\x1e\x80" +"\x94\x70\xae\x90\x1a\x8e\xb9\x05\x91\x7f\x94\x81\x7a\x81\x81\x76\x86\x1e\x74\xfb\x01\xf7\x36\x1d\xa0\x8f\x1e\x8f\x9b\x0b\xf7\x43" +"\xf7\x76\x93\x1d\xf7\x00\xda\x47\xc3\x2c\x1f\xfb\x84\x64\x0a\xa1\x9a\x97\x9d\x99\x82\x92\xf7\x00\x1d\xf7\x1a\x0a\x88\x83\x82\x1e" +"\x4d\x48\x54\x72\x47\x7d\x1d\x93\x9c\x60\x1d\x8b\x8f\xdc\x0a\x0b\x06\x36\x0a\xbf\x06\xa3\xf7\x04\x0a\x81\x78\x7c\x95\x84\x9e\x1f" +"\xaf\x26\x1d\xfb\x94\x06\x36\x0a\xb7\x06\xa2\xf7\x04\x0a\x80\x79\x7d\x95\x83\x9e\x1f\xb8\x26\x1d\x67\x24\x1d\x0b\x15\x96\x94\x91" +"\x95\x93\x1a\x98\x82\x94\x7d\x85\x8b\x8b\x81\x7b\x1e\xfb\x0a\x2b\x05\x7d\x80\x86\x84\x82\x1a\x7e\x94\x82\x99\x91\x96\x90\x90\x92" +"\x1e\xf7\x98\xeb\x15\x97\x94\x91\x95\x93\x1a\x98\x82\x94\x7e\x84\x85\x88\x84\x81\x1e\xfb\x0b\x2b\x05\x7d\x80\x87\x86\x81\x1a\x7c" +"\x93\x83\x99\x91\x96\x90\x90\x92\x1e\x0e\x76\x0a\x9f\x87\x85\x9f\x1f\x87\x94\x8d\x8b\x8e\x1b\x9a\x99\x90\x1d\x68\x92\x78\xe2\x1d" +"\xf7\x58\x06\x0b\xf7\x54\xf7\x2a\x05\x8f\x27\x1d\xfb\x02\x20\x1d\xac\x06\xfb\x29\xfb\x06\x2c\xf7\x06\x05\xad\x5d\x1d\x8e\x06\xf7" +"\x11\xfb\x28\xfb\x6b\xfb\x3d\x05\x83\x24\x0a\x0b\x16\xf7\x03\xf8\x94\x05\xa8\x23\x1d\xfb\x29\x06\x73\x7d\x80\x78\x7d\xcf\x1d\x0b" +"\xb8\x0a\xfc\x01\xfb\xd8\x82\x5f\x05\xf8\x15\x06\xa1\xee\x05\x8d\x94\x8b\x8b\x8f\x1a\x96\xd7\x0a\x0b\x06\x73\x6b\x76\x61\x7c\x1a" +"\x83\x92\x84\x94\x92\x8f\x8d\x92\x91\x1e\xad\xb2\xa3\x9f\xbc\xa8\x99\x94\x18\x91\x8e\x8f\x8d\x8c\x8c\x08\x99\x93\x8e\x8e\x93\x1a" +"\x92\x87\x8f\x78\x95\x1e\x4f\xad\x6e\xa2\x6c\xae\x08\x98\x80\x87\x8e\x84\x1b\x82\x83\x85\x83\x7c\x9b\x6b\xa8\x5f\x1f\x0b\xc7\x1d" +"\x0e\xa4\x0a\xf7\xbd\xf7\x92\xf7\x53\x1d\xf8\x1c\x22\x1d\xf7\x1a\x06\xa1\x40\x1d\xfb\xd1\x06\x75\x7c\x7f\x79\x7d\x2a\x0a\xf7\x17" +"\x26\x1d\xfb\x1a\x55\x0a\xf7\xd1\x06\xa1\x9a\x97\x9d\x99\x82\x92\x78\x1f\xfb\x18\x06\x0b\x1f\x88\x92\x88\x8e\x83\x8f\x08\x93\x78" +"\x69\x92\x77\xe2\x1d\xf8\xa4\x06\xa1\x9a\x97\x9d\x99\x82\x92\x78\x1f\x0b\x8d\x19\xfb\x08\x24\x0a\x78\x7c\x94\x85\x9f\x1f\xf7\x06" +"\x06\xe0\x86\xf4\xdd\x99\xdd\xe0\xf8\x1b\x18\xbd\x2e\x0a\x28\x06\xfb\x3d\x66\x15\xd8\xc0\x58\x40\x27\x29\x2c\x25\x3a\x57\xbd\xd7" +"\xf0\xec\xe9\xf5\x1f\x0b\xc5\x0a\xf7\xbc\x9c\x1d\xae\xac\x9f\xf7\x33\x1d\x0b\xf7\x15\x1d\xa8\xad\x95\x90\x9d\x1b\x96\x0b\xf8\x04" +"\x15\x37\xfc\x19\x05\x4a\x7b\x54\x5e\x4b\x1b\xfb\x14\x29\x1d\xf7\x15\x06\xe5\x89\xe0\xd1\x9d\xe6\xeb\xf8\x4e\x18\xfb\xb4\x33\x1d" +"\x0b\xab\x99\x96\x95\x9a\x1a\x97\x82\x94\x7f\x85\x88\x8a\x86\x81\x1e\x75\x61\x40\x7a\x53\x1b\x54\x68\xa2\xaf\x91\x8c\x90\x8c\x91" +"\x1f\xc3\xf7\x95\x05\xf7\x6b\x27\x1d\x0b\xa3\xf7\x03\x05\x8d\x94\x8b\x8b\x8d\x28\x0a\x7a\x81\x81\x77\x86\x1e\x73\xfb\x05\x05\x45" +"\x33\x1d\xcf\x06\x53\xfb\x95\x05\x89\x81\x8a\x83\x80\x1a\x0b\x76\x1e\x80\x94\x70\xae\x90\x1a\x8e\xb9\x05\x91\x7f\x94\x81\x7a\x81" +"\x81\x76\x86\x1e\x74\xfb\x01\xf7\x36\x1d\xa0\x8f\x1e\x8f\x9b\x05\x62\xab\x0b\xcd\x0a\xe0\xda\x0a\xf8\xcb\xf7\x57\x15\x92\xb0\x8d" +"\x99\x9c\x1a\xee\xf7\x0f\x0a\x0b\x4d\x1d\xf7\x55\x57\x0a\x30\x06\xbc\xf7\x75\x05\x51\xad\xbc\x71\xd4\x1b\xf7\x24\xf7\x15\xf7\x0c" +"\xf7\x1a\xf1\x0b\xf9\x07\xf8\x3e\x15\x9b\x94\x90\x91\x97\x1a\x95\x83\x93\x81\x85\x85\x89\x86\x82\x1e\xfc\x8f\xfb\xad\x05\x7c\x83" +"\x85\x83\x80\x1a\x80\x93\x83\x95\x91\x8d\x8c\x92\x98\x1e\x0e\x8e\x9c\x1f\xb1\xf7\x43\x05\xb9\x4c\x1d\xfb\x1e\x51\x0a\xb1\x06\x67" +"\xfb\x3d\x05\x86\x74\x89\x7c\x7d\x1a\x0b\xf8\xf5\x15\x69\x6a\x35\x0a\xa4\x78\x9e\x70\x1f\xf7\x71\x16\x69\x6a\x35\x0a\xa4\x78\x9e" +"\x70\x1f\x0e\xe4\x1d\x35\x1d\x47\x06\x0b\x15\x69\x6a\x35\x0a\xa5\x78\x9d\x70\x1f\xf7\x72\x16\x69\x6a\x35\x0a\xa5\x78\x9d\x70\x1f" +"\x0e\xba\x0a\x8f\x47\x0a\xf7\x51\x1d\xcc\xd2\xcb\x0a\x0b\xf8\x1d\xf8\x45\x15\xfb\x29\xfb\x1e\xfb\x15\xfb\x20\x22\xda\x40\xf7\x01" +"\xf7\x2c\xf7\x1d\xf7\x14\xf7\x21\xf5\x3d\xd5\xfb\x04\x1f\x82\x58\x15\xe1\xc7\x53\x0b\x1f\x72\x6c\x62\x7f\x5a\x1b\xfb\x5a\xfb\x9e" +"\x15\xba\xf7\x6b\x05\xf7\x25\x06\xc7\xa9\x85\x79\xa7\x1f\xa2\x7b\x9b\x71\x74\x1a\x49\x45\x4f\x3e\x1e\x0e\xf9\x11\xf8\xef\x15\xf7" +"\x42\x1d\x5e\xfb\x67\x05\xca\x67\x59\xa8\x43\x1b\xfb\x22\xfb\x18\xfb\x18\xfb\x23\x0b\x91\x77\x65\x1d\x0b\x06\x4d\x6c\x71\x6e\x62" +"\x1a\x6a\xa5\x79\xb9\xb7\xed\x0a\x88\x8a\x71\x1b\x7a\x82\x91\x98\x0b\x15\xfb\x33\xfb\x13\xfb\x10\xfb\x2f\xfb\x32\xf7\x11\xfb\x12" +"\xf7\x31\xf7\x2f\xf7\x12\xf7\x12\xf7\x30\xf7\x2d\xfb\x12\xf7\x14\xfb\x2b\x1f\x0b\xde\x0a\x94\x82\x98\xf7\x0d\x0a\x0b\x8a\x85\x1e" +"\x57\xfb\x82\x05\x6e\x32\x1d\xf7\x00\x23\x1d\x70\x06\x0b\x15\x9c\x97\x8e\x8f\x97\x28\x0a\x83\x86\x89\x83\x80\xf7\x2d\x1d\x0b\xdf" +"\x0a\xf7\x72\x16\x69\x67\x1d\x0b\x3a\x1d\xfb\x18\x20\x0a\xad\x06\x75\x23\x05\x86\x74\x89\x7f\x7f\x1a\x0b\xf7\x09\x0a\x77\xf7\x25" +"\x1d\xd6\xd4\xc9\xcb\x0b\x8c\x1d\xf7\x72\xf7\x1a\x1d\xcc\x0a\x35\xdf\x05\x91\x0b\x5c\xfb\x6b\x05\x59\x06\x74\x86\x1d\x9d\x35\x1d" +"\x64\x06\x0b\xb4\xfb\x1b\x18\x94\x6f\x8e\x89\xa9\x8a\x08\x0b\x82\x94\x7e\x7b\x80\x81\x77\x87\x1e\x6a\xfb\x2c\x05\xfb\x10\x21\x1d" +"\xf7\x0e\x06\x0b\x8e\x91\xc8\x0a\xf8\xc0\xf7\x91\x15\xa2\x9a\x96\x9e\x3c\x0a\xfc\x26\x4a\x1d\x9f\x1f\x0e\x2b\x1d\xba\x26\x1d\x59" +"\x24\x1d\x0b\x15\xfb\x11\xfb\x8c\x05\x88\x84\x89\x85\x85\x1a\x7b\x97\x7f\x9c\x9a\x94\x91\x9f\x9b\x1e\xf7\x64\xf7\xa1\x05\x0b\xf7" +"\xcf\x15\xe4\xf7\x5f\x05\x98\xa9\x8d\x92\x99\x1a\xa1\x7a\x9c\x73\xf7\x60\x1d\x0b\x94\x1e\xf7\x0f\xdf\xe1\xda\x0a\x06\x74\x7d\x81" +"\x79\x7c\x95\x83\x0b\x77\x1f\x5c\x06\xba\xf7\x6b\x05\x0b\xc0\x65\xb0\x56\x1f\x84\x64\x15\xad\xa3\x73\x69\x5d\x5f\x5f\x5d\x67\x73" +"\xa2\xae\xba\xb7\xb6\xbb\x1f\x0b\x78\x0a\x84\x88\x85\x82\x1e\xfb\x0f\x37\x0b\xf7\x24\x1d\x8e\x91\x95\x1e\xf7\x0f\xdf\x0b\xf7\x4c" +"\x15\xa2\xfb\x19\x05\x45\x21\x1d\xf7\x30\x2f\x1d\x0b\xf7\x84\xf8\x99\x15\x9e\xe0\x05\x25\x2b\x1d\xba\x06\x83\x69\x05\x0b\x15\xa1" +"\x96\x94\x9c\x9c\x80\x93\x75\x1f\xfc\xce\x58\x0a\x0e\x4e\x1d\x91\x8d\x92\x95\x1e\xf7\x0e\xdf\xe1\x38\x05\x84\x92\x0b\xf2\xd2\xca" +"\xa8\xc8\xc8\x1f\x7a\x41\x05\xf1\x79\x0a\x5b\x06\x0b\xf7\x2d\x1d\x8f\x47\x0a\x20\x1d\xf7\x18\x06\xa2\x34\x1d\x0b\x4a\xc5\xe0\x90" +"\x8b\x8f\x8c\x93\x1f\xf8\x09\xbe\x15\xfb\xfe\x06\xdc\xae\xe0\xc2\xe7\x1b\x0b\x36\x0a\xf7\x2f\x06\x7d\x4a\x8a\x82\x05\x86\x07\x82" +"\x8a\x96\x81\x96\x1b\x9c\x95\x0b\x82\x94\x7e\x7a\x81\x81\x76\x86\x1e\x80\x59\x05\xfb\x97\x06\xf8\x03\xf7\xd8\x05\x0b\x15\xba\xf7" +"\x6b\x05\xf7\x1a\x06\xf7\x07\xbb\x70\x4a\x43\x4c\x58\x31\x1f\x0e\x16\xf7\x15\x0a\xa7\xa0\x51\x1d\x6e\x1d\x9b\x92\x59\x0a\xfb\x0e" +"\x32\x1d\xcf\x06\x55\xfb\x8b\x05\x51\x0b\x1a\x97\x82\x93\x7e\x7a\x81\x81\x77\x86\x1e\x0b\x6f\x71\x72\x70\x76\x9b\x7c\xa0\xa8\xa4" +"\xa3\x0b\xf8\xcd\xf8\x37\x15\xfb\xfd\x06\x76\x29\x05\x8a\x86\x8a\x86\x88\x1a\x80\x0b\x15\xe4\x0a\x0b\x15\x6a\x6a\x6b\x6b\x72\x9f" +"\x77\xa3\xad\xac\xaa\xac\xa5\x78\x9e\x71\x1f\x0b\xf7\x01\x0a\xf7\x22\x05\x0e\x06\x73\x7d\x81\x78\x7d\x95\x83\x0b\x1f\x9e\x6e\x7f" +"\x8f\x75\x1b\x71\x0b\x69\xf4\x0a\x70\x1f\x0b\x05\x89\x81\x8b\x8b\x88\x1a\x7e\x93\x84\x0b\x06\xa2\xf7\x08\x0a\x0b\x84\x1b\x7b\x7c" +"\x7d\x7c\x85\x8e\x85\x50\x1d\x83\x0b\x96\x1a\x98\x82\x94\x7f\x85\x85\x89\x87\x86\x1e\x60\x53\x73\x7f\x0b\xf7\x4b\x1d\x20\x34\x52" +"\xbe\x0b\x82\x94\x7f\x79\x82\x82\x76\x87\x1e\x78\x35\x05\xfb\x5c\x06\x0b\x06\x7b\x8c\x7f\x81\x7c\x1a\x88\x07\x7c\x97\x81\x9b\x8c" +"\x1e\x0b\x32\x4f\x3f\x74\x98\x72\x9f\x7d\x1f\xa4\x79\xa6\x84\xd4\x84\x0b\xb7\xa1\xa1\x94\x83\x93\x82\x87\x87\x89\x89\x87\x1e\x7b" +"\x74\x0b\x88\x92\x1b\x9c\xf7\x16\x0a\x7f\x1a\x7f\x94\x82\x98\x91\x0b\x80\x79\x7c\x94\x84\x9e\x1f\x0b\x05\x8d\x94\x8b\x8b\x8e\x1a" +"\x97\x82\x94\x7e\x7a\x81\x81\x0b\xf7\x12\x0a\x94\x1e\x9c\x0b\x95\x1a\x98\x82\x93\x7f\x84\x84\x88\x84\x80\x1e\xfb\x1a\x0b\x6b\x42" +"\x1d\xae\xab\xaa\xac\xa5\x78\x9d\x0b\xad\x6b\x60\x9c\x53\x1b\xfb\x0d\x22\x35\x28\x6c\x98\x6d\x0b\xf7\x4d\x1d\x0e\x81\x80\x1a\x7f" +"\x94\x83\x98\x92\x93\x8e\x91\x92\x1e\x0b\x88\x1a\x7e\x93\x84\x99\x9b\x96\x95\x9f\x90\x1e\xad\x0b\x8a\x7f\x05\x7f\x94\x82\x98\x9b" +"\x28\x1d\x0b\x15\x95\x96\x8e\x91\x93\x1a\x95\x80\x95\x80\x81\x83\x0b\x99\x95\x9d\x9a\x81\x93\x78\x1f\xfb\x20\x06\x73\x7d\x0b\xa7" +"\xa0\x7c\x9a\x75\x1f\xf7\x62\x16\x6f\x71\x72\x70\x0b\x4f\xc2\xde\xf7\x00\xf7\x00\xf0\xf7\x09\x1f\x0e\x95\x91\x93\x94\x1a\x98\x82" +"\x94\x0b\x99\x95\x9e\x9a\x81\x92\x78\x1f\x0b\x73\x6b\x1a\x61\x5b\x64\x58\x6d\x0b\xf7\x13\x0a\x77\x0b\x15\x93\x83\x86\x8e\x84\x1b" +"\x7a\x7d\x7d\x7b\x85\x0b\x93\x6a\x1b\x68\x71\x7c\x63\x68\x1f\x75\x73\x83\x0b\x9b\x96\x95\x9f\x8f\x1e\x96\xbd\x05\xf7\x7d\x06\x0b" +"\xf8\x68\xf7\x5e\x1d\x0b\x3b\xd2\xfb\x04\xfb\x2c\xfb\x19\xfb\x0e\xfb\x1f\x0b\x92\x92\x8e\x92\x96\x1e\x0e\x9a\x99\x9b\x90\x8b\x8b" +"\x0b\x49\x69\x70\x82\x92\x84\x95\x92\x8f\x8d\x93\x0b\x8b\x8b\x8e\x1a\x97\x82\x94\x7e\x7b\x80\x80\x0b\xf8\x29\xf8\x05\x15\xf7\x10" +"\x06\xa2\x9a\x96\x0b\x6f\x71\x72\x70\x76\x9a\x7c\xa1\xa8\xa4\xa3\x0b\x99\x99\x9b\x90\x8b\x8b\x81\x98\x1f\x0e\x81\x78\x7d\x95\x83" +"\x9d\x1f\x0b\x82\x94\x7e\x7a\x81\x81\x76\x0b\xc2\xf7\x93\x05\x8d\x93\x8c\x0b\x1a\x96\x82\x93\x7f\x81\x86\x0b\x1a\x80\x95\x82\x97" +"\x9b\x96\x0b\x06\xa0\x9b\x98\x9b\x9b\x83\x91\x76\x1f\x0b\x06\xa2\x9a\x96\x9d\x9a\x82\x91\x77\x1f\x0b\x06\xa3\x99\x96\x9e\x9a\x83" +"\x91\x76\x1f\x0b\xc7\x53\x3b\xfb\x01\xfb\x00\x25\xfb\x06\x0b\x97\x82\x93\x7e\x7b\x80\x81\x77\x87\x1e\x0b\x33\x05\x8a\x85\x8a\x87" +"\x87\x1a\x7f\x93\x0b\x99\x94\x9d\x9a\x7f\x94\x76\x1f\x0e\xf1\xe8\xf7\x03\x1f\x0e", 52468 +}; diff --git a/dviware/dvisvgm/src/fonts/NimbusMonoPS-Regular.cff.cpp b/dviware/dvisvgm/src/fonts/NimbusMonoPS-Regular.cff.cpp new file mode 100644 index 0000000000..67bb64514d --- /dev/null +++ b/dviware/dvisvgm/src/fonts/NimbusMonoPS-Regular.cff.cpp @@ -0,0 +1,1441 @@ +#include "Base14Fonts.hpp" + +extern const MemoryFontData NimbusMonoPS_Regular_cff = { +"\x01\x00\x04\x02\x00\x01\x01\x01\x15\x4e\x69\x6d\x62\x75\x73\x4d\x6f\x6e\x6f\x50\x53\x2d\x52\x65\x67\x75\x6c\x61\x72\x00\x01\x01" +"\x01\x34\xf9\xbc\x00\xf9\xbd\x01\xf9\xbe\x0c\x00\xf9\xbf\x02\xf9\xc0\x03\xf8\x18\x04\x8c\x0c\x01\x30\x0c\x03\xbe\x0c\x04\x6c\xfb" +"\xd1\xf9\x3f\xfa\x38\x05\x1c\x2b\xef\x0f\x1c\x2c\x02\x11\xbb\x1d\x00\x00\xa1\xbb\x12\x01\xa6\x02\x00\x01\x00\x08\x00\x0e\x00\x13" +"\x00\x1d\x00\x24\x00\x2b\x00\x35\x00\x39\x00\x3f\x00\x45\x00\x50\x00\x5a\x00\x5d\x00\x63\x00\x69\x00\x6e\x00\x74\x00\x7a\x00\x84" +"\x00\x8b\x00\x8e\x00\x95\x00\x9c\x00\xa8\x00\xab\x00\xb3\x00\xb7\x00\xbc\x00\xc2\x00\xcd\x00\xd9\x00\xe3\x00\xe7\x00\xf2\x00\xf4" +"\x00\xfa\x01\x04\x01\x0b\x01\x12\x01\x16\x01\x22\x01\x2b\x01\x31\x01\x3c\x01\x41\x01\x4d\x01\x53\x01\x59\x01\x5f\x01\x6b\x01\x6f" +"\x01\x71\x01\x77\x01\x7d\x01\x89\x01\x8b\x01\x91\x01\x9e\x01\xa5\x01\xaf\x01\xb6\x01\xc2\x01\xcd\x01\xd0\x01\xd2\x01\xd5\x01\xdb" +"\x01\xe1\x01\xed\x01\xf0\x01\xf6\x01\xfe\x02\x09\x02\x15\x02\x1a\x02\x1d\x02\x21\x02\x27\x02\x33\x02\x38\x02\x3e\x02\x4b\x02\x52" +"\x02\x59\x02\x60\x02\x6f\x02\x7b\x02\x80\x02\x86\x02\x8c\x02\x97\x02\xa0\x02\xa6\x02\xa8\x02\xb3\x02\xb9\x02\xbf\x02\xc9\x02\xcd" +"\x02\xd3\x02\xda\x02\xe3\x02\xec\x02\xf5\x02\xfe\x03\x07\x03\x10\x03\x19\x03\x22\x03\x2b\x03\x34\x03\x3d\x03\x46\x03\x4f\x03\x58" +"\x03\x61\x03\x6a\x03\x73\x03\x7c\x03\x85\x03\x8e\x03\x97\x03\xa0\x03\xa9\x03\xb2\x03\xbb\x03\xc4\x03\xcd\x03\xd6\x03\xdf\x03\xe8" +"\x03\xf1\x03\xfa\x04\x03\x04\x0c\x04\x15\x04\x1e\x04\x27\x04\x30\x04\x39\x04\x42\x04\x4b\x04\x54\x04\x5d\x04\x66\x04\x6f\x04\x78" +"\x04\x81\x04\x8a\x04\x93\x04\x9c\x04\xa5\x04\xae\x04\xb7\x04\xc0\x04\xc9\x04\xd2\x04\xdb\x04\xe4\x04\xed\x04\xf6\x04\xff\x05\x08" +"\x05\x11\x05\x1a\x05\x23\x05\x2c\x05\x35\x05\x3e\x05\x47\x05\x50\x05\x59\x05\x62\x05\x6b\x05\x74\x05\x7d\x05\x86\x05\x8f\x05\x98" +"\x05\xa1\x05\xaa\x05\xb3\x05\xbc\x05\xc5\x05\xce\x05\xd7\x05\xe0\x05\xe9\x05\xf2\x05\xfb\x06\x04\x06\x0d\x06\x16\x06\x1f\x06\x28" +"\x06\x31\x06\x3a\x06\x43\x06\x4c\x06\x55\x06\x5a\x06\x64\x06\x6b\x06\x74\x06\x7e\x06\x85\x06\x90\x06\x9a\x06\xa3\x06\xac\x06\xb5" +"\x06\xbf\x06\xc6\x06\xcf\x06\xdb\x06\xdf\x06\xe5\x06\xeb\x06\xf6\x07\x00\x07\x03\x07\x11\x07\x15\x07\x1b\x07\x21\x07\x26\x07\x2d" +"\x07\x3a\x07\x40\x07\x46\x07\x50\x07\x57\x07\x5e\x07\x61\x07\x68\x07\x6f\x07\x7b\x07\x86\x07\x8f\x07\x92\x07\x9a\x07\xa3\x07\xae" +"\x07\xb4\x07\xb9\x07\xbe\x07\xc4\x07\xcf\x07\xdb\x07\xe5\x07\xf1\x07\xf5\x08\x00\x08\x05\x08\x0a\x08\x10\x08\x12\x08\x19\x08\x21" +"\x08\x29\x08\x33\x08\x3d\x08\x49\x08\x55\x08\x5c\x08\x60\x08\x6c\x08\x7d\x08\x86\x08\x8c\x08\x97\x08\x9c\x08\xa8\x08\xb4\x08\xba" +"\x08\xc0\x08\xc6\x08\xd2\x08\xd6\x08\xdf\x08\xe3\x08\xe8\x08\xec\x08\xf2\x08\xfd\x09\x0b\x09\x11\x09\x1c\x09\x22\x09\x2e\x09\x38" +"\x09\x40\x09\x42\x09\x48\x09\x55\x09\x5c\x09\x61\x09\x6b\x09\x72\x09\x7e\x09\x88\x09\x93\x09\x9e\x09\xa4\x09\xa7\x09\xa9\x09\xb0" +"\x09\xbc\x09\xca\x09\xcd\x09\xda\x09\xe0\x09\xe7\x09\xed\x09\xf9\x0a\x06\x0a\x09\x0a\x0f\x0a\x17\x0a\x22\x0a\x2e\x0a\x34\x0a\x39" +"\x0a\x42\x0a\x47\x0a\x50\x0a\x53\x0a\x56\x0a\x5a\x0a\x60\x0a\x6c\x0a\x71\x0a\x76\x0a\x7c\x0a\x89\x0a\x90\x0a\x9d\x0a\xa4\x0a\xab" +"\x0a\xb2\x0a\xb9\x0a\xc0\x0a\xc7\x0a\xce\x0a\xd5\x0a\xdc\x0a\xe3\x0a\xea\x0a\xf1\x0a\xf8\x0a\xff\x0b\x06\x0b\x0d\x0b\x14\x0b\x1b" +"\x0b\x22\x0b\x29\x0b\x30\x0b\x37\x0b\x3e\x0b\x45\x0b\x4c\x0b\x53\x0b\x5a\x0b\x61\x0b\x68\x0b\x6f\x0b\x76\x0b\x7d\x0b\x84\x0b\x8b" +"\x0b\x92\x0b\x99\x0b\xa0\x0b\xa7\x0b\xae\x0b\xb5\x0b\xbc\x0b\xc3\x0b\xca\x0b\xd1\x0b\xd8\x0b\xdf\x0b\xe6\x0b\xed\x0b\xf4\x0b\xfb" +"\x0c\x02\x0c\x09\x0c\x10\x0c\x17\x0c\x1e\x0c\x25\x0c\x2c\x0c\x33\x0c\x3a\x0c\x41\x0c\x48\x0c\x4d\x0c\x56\x0c\x5d\x0c\x64\x0c\x73" +"\x0c\x87\x0c\x93\x0c\x98\x0c\x9e\x0c\xa4\x0c\xaf\x0c\xb8\x0c\xbe\x0c\xc0\x0c\xcb\x0c\xd1\x0c\xd7\x0c\xe1\x0c\xe5\x0c\xe9\x0d\x1f" +"\x0d\x5f\x0d\x75\x0d\x83\x41\x45\x61\x63\x75\x74\x65\x41\x62\x72\x65\x76\x65\x41\x6c\x70\x68\x61\x41\x6c\x70\x68\x61\x74\x6f\x6e" +"\x6f\x73\x41\x6d\x61\x63\x72\x6f\x6e\x41\x6f\x67\x6f\x6e\x65\x6b\x41\x72\x69\x6e\x67\x61\x63\x75\x74\x65\x42\x65\x74\x61\x43\x61" +"\x63\x75\x74\x65\x43\x63\x61\x72\x6f\x6e\x43\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x43\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x43" +"\x68\x69\x44\x63\x61\x72\x6f\x6e\x44\x63\x72\x6f\x61\x74\x44\x65\x6c\x74\x61\x45\x62\x72\x65\x76\x65\x45\x63\x61\x72\x6f\x6e\x45" +"\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x45\x6d\x61\x63\x72\x6f\x6e\x45\x6e\x67\x45\x6f\x67\x6f\x6e\x65\x6b\x45\x70\x73\x69\x6c\x6f" +"\x6e\x45\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x45\x74\x61\x45\x74\x61\x74\x6f\x6e\x6f\x73\x45\x75\x72\x6f\x47\x61\x6d\x6d" +"\x61\x47\x62\x72\x65\x76\x65\x47\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x47\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x47\x64" +"\x6f\x74\x61\x63\x63\x65\x6e\x74\x48\x62\x61\x72\x48\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x49\x4a\x49\x62\x72\x65\x76\x65\x49" +"\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x49\x6d\x61\x63\x72\x6f\x6e\x49\x6f\x67\x6f\x6e\x65\x6b\x49\x6f\x74\x61\x49\x6f\x74\x61\x64" +"\x69\x65\x72\x65\x73\x69\x73\x49\x6f\x74\x61\x74\x6f\x6e\x6f\x73\x49\x74\x69\x6c\x64\x65\x4a\x63\x69\x72\x63\x75\x6d\x66\x6c\x65" +"\x78\x4b\x61\x70\x70\x61\x4b\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4c\x61\x63\x75\x74\x65\x4c\x61\x6d\x62\x64\x61\x4c\x63" +"\x61\x72\x6f\x6e\x4c\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4c\x64\x6f\x74\x4d\x75\x4e\x61\x63\x75\x74\x65\x4e\x63\x61\x72" +"\x6f\x6e\x4e\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4e\x75\x4f\x62\x72\x65\x76\x65\x4f\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c" +"\x61\x75\x74\x4f\x6d\x61\x63\x72\x6f\x6e\x4f\x6d\x65\x67\x61\x74\x6f\x6e\x6f\x73\x4f\x6d\x69\x63\x72\x6f\x6e\x4f\x6d\x69\x63\x72" +"\x6f\x6e\x74\x6f\x6e\x6f\x73\x4f\x73\x6c\x61\x73\x68\x61\x63\x75\x74\x65\x50\x68\x69\x50\x69\x50\x73\x69\x52\x61\x63\x75\x74\x65" +"\x52\x63\x61\x72\x6f\x6e\x52\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x52\x68\x6f\x53\x61\x63\x75\x74\x65\x53\x63\x65\x64\x69" +"\x6c\x6c\x61\x53\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x53\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x53\x69\x67\x6d\x61\x54" +"\x61\x75\x54\x62\x61\x72\x54\x63\x61\x72\x6f\x6e\x54\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x54\x68\x65\x74\x61\x55\x62\x72" +"\x65\x76\x65\x55\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x55\x6d\x61\x63\x72\x6f\x6e\x55\x6f\x67\x6f\x6e\x65\x6b\x55\x70" +"\x73\x69\x6c\x6f\x6e\x55\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x55\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73" +"\x55\x72\x69\x6e\x67\x55\x74\x69\x6c\x64\x65\x57\x61\x63\x75\x74\x65\x57\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x57\x64\x69\x65" +"\x72\x65\x73\x69\x73\x57\x67\x72\x61\x76\x65\x58\x69\x59\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x59\x67\x72\x61\x76\x65\x5a\x61" +"\x63\x75\x74\x65\x5a\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x5a\x65\x74\x61\x61\x62\x72\x65\x76\x65\x61\x65\x61\x63\x75\x74\x65\x61" +"\x66\x69\x69\x30\x30\x32\x30\x38\x61\x66\x69\x69\x31\x30\x30\x31\x37\x61\x66\x69\x69\x31\x30\x30\x31\x38\x61\x66\x69\x69\x31\x30" +"\x30\x31\x39\x61\x66\x69\x69\x31\x30\x30\x32\x30\x61\x66\x69\x69\x31\x30\x30\x32\x31\x61\x66\x69\x69\x31\x30\x30\x32\x32\x61\x66" +"\x69\x69\x31\x30\x30\x32\x33\x61\x66\x69\x69\x31\x30\x30\x32\x34\x61\x66\x69\x69\x31\x30\x30\x32\x35\x61\x66\x69\x69\x31\x30\x30" +"\x32\x36\x61\x66\x69\x69\x31\x30\x30\x32\x37\x61\x66\x69\x69\x31\x30\x30\x32\x38\x61\x66\x69\x69\x31\x30\x30\x32\x39\x61\x66\x69" +"\x69\x31\x30\x30\x33\x30\x61\x66\x69\x69\x31\x30\x30\x33\x31\x61\x66\x69\x69\x31\x30\x30\x33\x32\x61\x66\x69\x69\x31\x30\x30\x33" +"\x33\x61\x66\x69\x69\x31\x30\x30\x33\x34\x61\x66\x69\x69\x31\x30\x30\x33\x35\x61\x66\x69\x69\x31\x30\x30\x33\x36\x61\x66\x69\x69" +"\x31\x30\x30\x33\x37\x61\x66\x69\x69\x31\x30\x30\x33\x38\x61\x66\x69\x69\x31\x30\x30\x33\x39\x61\x66\x69\x69\x31\x30\x30\x34\x30" +"\x61\x66\x69\x69\x31\x30\x30\x34\x31\x61\x66\x69\x69\x31\x30\x30\x34\x32\x61\x66\x69\x69\x31\x30\x30\x34\x33\x61\x66\x69\x69\x31" +"\x30\x30\x34\x34\x61\x66\x69\x69\x31\x30\x30\x34\x35\x61\x66\x69\x69\x31\x30\x30\x34\x36\x61\x66\x69\x69\x31\x30\x30\x34\x37\x61" +"\x66\x69\x69\x31\x30\x30\x34\x38\x61\x66\x69\x69\x31\x30\x30\x34\x39\x61\x66\x69\x69\x31\x30\x30\x35\x30\x61\x66\x69\x69\x31\x30" +"\x30\x35\x31\x61\x66\x69\x69\x31\x30\x30\x35\x32\x61\x66\x69\x69\x31\x30\x30\x35\x33\x61\x66\x69\x69\x31\x30\x30\x35\x34\x61\x66" +"\x69\x69\x31\x30\x30\x35\x35\x61\x66\x69\x69\x31\x30\x30\x35\x36\x61\x66\x69\x69\x31\x30\x30\x35\x37\x61\x66\x69\x69\x31\x30\x30" +"\x35\x38\x61\x66\x69\x69\x31\x30\x30\x35\x39\x61\x66\x69\x69\x31\x30\x30\x36\x30\x61\x66\x69\x69\x31\x30\x30\x36\x31\x61\x66\x69" +"\x69\x31\x30\x30\x36\x32\x61\x66\x69\x69\x31\x30\x30\x36\x35\x61\x66\x69\x69\x31\x30\x30\x36\x36\x61\x66\x69\x69\x31\x30\x30\x36" +"\x37\x61\x66\x69\x69\x31\x30\x30\x36\x38\x61\x66\x69\x69\x31\x30\x30\x36\x39\x61\x66\x69\x69\x31\x30\x30\x37\x30\x61\x66\x69\x69" +"\x31\x30\x30\x37\x31\x61\x66\x69\x69\x31\x30\x30\x37\x32\x61\x66\x69\x69\x31\x30\x30\x37\x33\x61\x66\x69\x69\x31\x30\x30\x37\x34" +"\x61\x66\x69\x69\x31\x30\x30\x37\x35\x61\x66\x69\x69\x31\x30\x30\x37\x36\x61\x66\x69\x69\x31\x30\x30\x37\x37\x61\x66\x69\x69\x31" +"\x30\x30\x37\x38\x61\x66\x69\x69\x31\x30\x30\x37\x39\x61\x66\x69\x69\x31\x30\x30\x38\x30\x61\x66\x69\x69\x31\x30\x30\x38\x31\x61" +"\x66\x69\x69\x31\x30\x30\x38\x32\x61\x66\x69\x69\x31\x30\x30\x38\x33\x61\x66\x69\x69\x31\x30\x30\x38\x34\x61\x66\x69\x69\x31\x30" +"\x30\x38\x35\x61\x66\x69\x69\x31\x30\x30\x38\x36\x61\x66\x69\x69\x31\x30\x30\x38\x37\x61\x66\x69\x69\x31\x30\x30\x38\x38\x61\x66" +"\x69\x69\x31\x30\x30\x38\x39\x61\x66\x69\x69\x31\x30\x30\x39\x30\x61\x66\x69\x69\x31\x30\x30\x39\x31\x61\x66\x69\x69\x31\x30\x30" +"\x39\x32\x61\x66\x69\x69\x31\x30\x30\x39\x33\x61\x66\x69\x69\x31\x30\x30\x39\x34\x61\x66\x69\x69\x31\x30\x30\x39\x35\x61\x66\x69" +"\x69\x31\x30\x30\x39\x36\x61\x66\x69\x69\x31\x30\x30\x39\x37\x61\x66\x69\x69\x31\x30\x30\x39\x38\x61\x66\x69\x69\x31\x30\x30\x39" +"\x39\x61\x66\x69\x69\x31\x30\x31\x30\x30\x61\x66\x69\x69\x31\x30\x31\x30\x31\x61\x66\x69\x69\x31\x30\x31\x30\x32\x61\x66\x69\x69" +"\x31\x30\x31\x30\x33\x61\x66\x69\x69\x31\x30\x31\x30\x34\x61\x66\x69\x69\x31\x30\x31\x30\x35\x61\x66\x69\x69\x31\x30\x31\x30\x36" +"\x61\x66\x69\x69\x31\x30\x31\x30\x37\x61\x66\x69\x69\x31\x30\x31\x30\x38\x61\x66\x69\x69\x31\x30\x31\x30\x39\x61\x66\x69\x69\x31" +"\x30\x31\x31\x30\x61\x66\x69\x69\x31\x30\x31\x34\x35\x61\x66\x69\x69\x31\x30\x31\x39\x33\x61\x66\x69\x69\x31\x30\x38\x34\x36\x61" +"\x66\x69\x69\x36\x31\x32\x34\x38\x61\x66\x69\x69\x36\x31\x32\x38\x39\x61\x66\x69\x69\x36\x31\x33\x35\x32\x61\x6c\x70\x68\x61\x61" +"\x6c\x70\x68\x61\x74\x6f\x6e\x6f\x73\x61\x6d\x61\x63\x72\x6f\x6e\x61\x6e\x67\x6c\x65\x6c\x65\x66\x74\x61\x6e\x67\x6c\x65\x72\x69" +"\x67\x68\x74\x61\x6f\x67\x6f\x6e\x65\x6b\x61\x70\x70\x72\x6f\x78\x65\x71\x75\x61\x6c\x61\x72\x69\x6e\x67\x61\x63\x75\x74\x65\x61" +"\x72\x72\x6f\x77\x62\x6f\x74\x68\x61\x72\x72\x6f\x77\x64\x6f\x77\x6e\x61\x72\x72\x6f\x77\x6c\x65\x66\x74\x61\x72\x72\x6f\x77\x72" +"\x69\x67\x68\x74\x61\x72\x72\x6f\x77\x75\x70\x61\x72\x72\x6f\x77\x75\x70\x64\x6e\x61\x72\x72\x6f\x77\x75\x70\x64\x6e\x62\x73\x65" +"\x62\x65\x74\x61\x63\x61\x63\x75\x74\x65\x63\x63\x61\x72\x6f\x6e\x63\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x63\x64\x6f\x74\x61" +"\x63\x63\x65\x6e\x74\x63\x68\x69\x63\x69\x72\x63\x6c\x65\x6d\x75\x6c\x74\x69\x70\x6c\x79\x63\x6c\x75\x62\x64\x63\x61\x72\x6f\x6e" +"\x64\x63\x72\x6f\x61\x74\x64\x65\x6c\x74\x61\x64\x69\x61\x6d\x6f\x6e\x64\x64\x69\x65\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73\x65" +"\x62\x72\x65\x76\x65\x65\x63\x61\x72\x6f\x6e\x65\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x65\x6c\x65\x6d\x65\x6e\x74\x65\x6d\x61\x63" +"\x72\x6f\x6e\x65\x6e\x67\x65\x6f\x67\x6f\x6e\x65\x6b\x65\x70\x73\x69\x6c\x6f\x6e\x65\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73" +"\x65\x71\x75\x69\x76\x61\x6c\x65\x6e\x63\x65\x65\x73\x74\x69\x6d\x61\x74\x65\x64\x65\x74\x61\x65\x74\x61\x74\x6f\x6e\x6f\x73\x65" +"\x78\x63\x6c\x61\x6d\x64\x62\x6c\x65\x78\x69\x73\x74\x65\x6e\x74\x69\x61\x6c\x66\x65\x6d\x61\x6c\x65\x66\x72\x61\x6e\x63\x67\x61" +"\x6d\x6d\x61\x67\x62\x72\x65\x76\x65\x67\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x67\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74" +"\x67\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x67\x72\x65\x61\x74\x65\x72\x65\x71\x75\x61\x6c\x68\x62\x61\x72\x68\x63\x69\x72\x63\x75" +"\x6d\x66\x6c\x65\x78\x68\x65\x61\x72\x74\x68\x6f\x75\x73\x65\x69\x62\x72\x65\x76\x65\x69\x6a\x69\x6d\x61\x63\x72\x6f\x6e\x69\x6e" +"\x66\x69\x6e\x69\x74\x79\x69\x6e\x74\x65\x67\x72\x61\x6c\x69\x6e\x74\x65\x67\x72\x61\x6c\x62\x74\x69\x6e\x74\x65\x67\x72\x61\x6c" +"\x74\x70\x69\x6e\x74\x65\x72\x73\x65\x63\x74\x69\x6f\x6e\x69\x6e\x76\x73\x6d\x69\x6c\x65\x66\x61\x63\x65\x69\x6f\x67\x6f\x6e\x65" +"\x6b\x69\x6f\x74\x61\x69\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69\x73\x69\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69\x73\x74\x6f\x6e" +"\x6f\x73\x69\x6f\x74\x61\x74\x6f\x6e\x6f\x73\x69\x74\x69\x6c\x64\x65\x6a\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x6b\x61\x70\x70" +"\x61\x6b\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6b\x67\x72\x65\x65\x6e\x6c\x61\x6e\x64\x69\x63\x6c\x61\x63\x75\x74\x65\x6c" +"\x61\x6d\x62\x64\x61\x6c\x63\x61\x72\x6f\x6e\x6c\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6c\x64\x6f\x74\x6c\x65\x73\x73\x65" +"\x71\x75\x61\x6c\x6c\x69\x72\x61\x6c\x6f\x6e\x67\x73\x6d\x61\x6c\x65\x6d\x69\x6e\x75\x74\x65\x6d\x75\x73\x69\x63\x61\x6c\x6e\x6f" +"\x74\x65\x6d\x75\x73\x69\x63\x61\x6c\x6e\x6f\x74\x65\x64\x62\x6c\x6e\x61\x63\x75\x74\x65\x6e\x61\x70\x6f\x73\x74\x72\x6f\x70\x68" +"\x65\x6e\x63\x61\x72\x6f\x6e\x6e\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6e\x6f\x74\x65\x6c\x65\x6d\x65\x6e\x74\x6e\x6f\x74" +"\x65\x71\x75\x61\x6c\x6e\x75\x6f\x62\x72\x65\x76\x65\x6f\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x6f\x6d\x61\x63\x72\x6f" +"\x6e\x6f\x6d\x65\x67\x61\x6f\x6d\x65\x67\x61\x74\x6f\x6e\x6f\x73\x6f\x6d\x69\x63\x72\x6f\x6e\x6f\x6d\x69\x63\x72\x6f\x6e\x74\x6f" +"\x6e\x6f\x73\x6f\x72\x74\x68\x6f\x67\x6f\x6e\x61\x6c\x6f\x73\x6c\x61\x73\x68\x61\x63\x75\x74\x65\x70\x61\x72\x74\x69\x61\x6c\x64" +"\x69\x66\x66\x70\x65\x73\x65\x74\x61\x70\x68\x69\x70\x69\x70\x72\x6f\x64\x75\x63\x74\x70\x72\x6f\x70\x65\x72\x73\x75\x62\x73\x65" +"\x74\x70\x72\x6f\x70\x65\x72\x73\x75\x70\x65\x72\x73\x65\x74\x70\x73\x69\x71\x75\x6f\x74\x65\x72\x65\x76\x65\x72\x73\x65\x64\x72" +"\x61\x63\x75\x74\x65\x72\x61\x64\x69\x63\x61\x6c\x72\x63\x61\x72\x6f\x6e\x72\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x72\x65" +"\x76\x6c\x6f\x67\x69\x63\x61\x6c\x6e\x6f\x74\x72\x68\x6f\x73\x61\x63\x75\x74\x65\x73\x63\x65\x64\x69\x6c\x6c\x61\x73\x63\x69\x72" +"\x63\x75\x6d\x66\x6c\x65\x78\x73\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x73\x65\x63\x6f\x6e\x64\x73\x69\x67\x6d\x61\x73\x6d" +"\x69\x6c\x65\x66\x61\x63\x65\x73\x70\x61\x64\x65\x73\x75\x6d\x6d\x61\x74\x69\x6f\x6e\x73\x75\x6e\x74\x61\x75\x74\x62\x61\x72\x74" +"\x63\x61\x72\x6f\x6e\x74\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x74\x68\x65\x74\x61\x74\x6f\x6e\x6f\x73\x75\x62\x72\x65\x76" +"\x65\x75\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x75\x6d\x61\x63\x72\x6f\x6e\x75\x6e\x64\x65\x72\x73\x63\x6f\x72\x65\x64" +"\x62\x6c\x75\x6e\x69\x30\x30\x41\x30\x75\x6e\x69\x30\x30\x41\x44\x75\x6e\x69\x30\x32\x31\x41\x75\x6e\x69\x30\x32\x31\x42\x75\x6e" +"\x69\x30\x32\x43\x39\x75\x6e\x69\x30\x33\x38\x37\x75\x6e\x69\x30\x33\x39\x34\x75\x6e\x69\x30\x33\x41\x39\x75\x6e\x69\x30\x33\x42" +"\x43\x75\x6e\x69\x30\x33\x43\x32\x75\x6e\x69\x30\x34\x30\x30\x75\x6e\x69\x30\x34\x30\x44\x75\x6e\x69\x30\x34\x35\x30\x75\x6e\x69" +"\x30\x34\x35\x44\x75\x6e\x69\x30\x34\x39\x32\x75\x6e\x69\x30\x34\x39\x33\x75\x6e\x69\x30\x34\x39\x36\x75\x6e\x69\x30\x34\x39\x37" +"\x75\x6e\x69\x30\x34\x39\x38\x75\x6e\x69\x30\x34\x39\x39\x75\x6e\x69\x30\x34\x39\x41\x75\x6e\x69\x30\x34\x39\x42\x75\x6e\x69\x30" +"\x34\x39\x43\x75\x6e\x69\x30\x34\x39\x44\x75\x6e\x69\x30\x34\x41\x30\x75\x6e\x69\x30\x34\x41\x31\x75\x6e\x69\x30\x34\x41\x32\x75" +"\x6e\x69\x30\x34\x41\x33\x75\x6e\x69\x30\x34\x41\x41\x75\x6e\x69\x30\x34\x41\x42\x75\x6e\x69\x30\x34\x41\x45\x75\x6e\x69\x30\x34" +"\x41\x46\x75\x6e\x69\x30\x34\x42\x30\x75\x6e\x69\x30\x34\x42\x31\x75\x6e\x69\x30\x34\x42\x32\x75\x6e\x69\x30\x34\x42\x33\x75\x6e" +"\x69\x30\x34\x42\x36\x75\x6e\x69\x30\x34\x42\x37\x75\x6e\x69\x30\x34\x42\x38\x75\x6e\x69\x30\x34\x42\x39\x75\x6e\x69\x30\x34\x42" +"\x41\x75\x6e\x69\x30\x34\x42\x42\x75\x6e\x69\x30\x34\x43\x30\x75\x6e\x69\x30\x34\x43\x42\x75\x6e\x69\x30\x34\x43\x43\x75\x6e\x69" +"\x30\x34\x44\x38\x75\x6e\x69\x30\x34\x45\x32\x75\x6e\x69\x30\x34\x45\x33\x75\x6e\x69\x30\x34\x45\x38\x75\x6e\x69\x30\x34\x45\x39" +"\x75\x6e\x69\x30\x34\x45\x45\x75\x6e\x69\x30\x34\x45\x46\x75\x6e\x69\x32\x30\x33\x45\x75\x6e\x69\x32\x30\x41\x46\x75\x6e\x69\x32" +"\x31\x32\x36\x75\x6e\x69\x32\x32\x31\x35\x75\x6e\x69\x32\x32\x31\x39\x75\x6e\x69\x32\x32\x32\x37\x75\x6e\x69\x32\x32\x32\x38\x75" +"\x6e\x69\x32\x32\x39\x35\x75\x6e\x69\x32\x35\x41\x31\x75\x6e\x69\x6f\x6e\x75\x6e\x69\x76\x65\x72\x73\x61\x6c\x75\x6f\x67\x6f\x6e" +"\x65\x6b\x75\x70\x73\x69\x6c\x6f\x6e\x75\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x75\x70\x73\x69\x6c\x6f\x6e\x64" +"\x69\x65\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73\x75\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x75\x72\x69\x6e\x67\x75\x74\x69" +"\x6c\x64\x65\x77\x61\x63\x75\x74\x65\x77\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x77\x64\x69\x65\x72\x65\x73\x69\x73\x77\x67\x72" +"\x61\x76\x65\x78\x69\x79\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x79\x67\x72\x61\x76\x65\x7a\x61\x63\x75\x74\x65\x7a\x64\x6f\x74" +"\x61\x63\x63\x65\x6e\x74\x7a\x65\x74\x61\x31\x2e\x30\x30\x28\x55\x52\x57\x29\x2b\x2b\x2c\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20" +"\x32\x30\x31\x34\x20\x62\x79\x20\x28\x55\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69\x67\x6e\x20\x26\x20\x44\x65\x76\x65\x6c\x6f\x70" +"\x6d\x65\x6e\x74\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x28\x55\x52\x57\x29\x2b\x2b\x2c\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20" +"\x32\x30\x31\x34\x20\x62\x79\x20\x28\x55\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69\x67\x6e\x20\x26\x20\x44\x65\x76\x65\x6c\x6f\x70" +"\x6d\x65\x6e\x74\x4e\x69\x6d\x62\x75\x73\x20\x4d\x6f\x6e\x6f\x20\x50\x53\x20\x52\x65\x67\x75\x6c\x61\x72\x4e\x69\x6d\x62\x75\x73" +"\x20\x4d\x6f\x6e\x6f\x20\x50\x53\x01\x21\x02\x00\x01\x00\x06\x00\x0c\x00\x14\x00\x18\x00\x23\x00\x27\x00\x32\x00\x3c\x00\x7d\x00" +"\x88\x00\x90\x00\x9a\x00\xce\x00\xd5\x00\xe0\x00\xe4\x00\xea\x01\x31\x01\x40\x01\x4b\x01\x52\x01\x57\x01\x5d\x01\x63\x01\x69\x01" +"\x70\x01\x75\x01\x7b\x01\x80\x01\x84\x01\x8f\x01\xa1\x01\xa9\x01\xb1\x01\xbf\x01\xc8\x01\xcc\x01\xd3\x01\xdc\x01\xe4\x02\x37\x02" +"\x6a\x02\x90\x02\x9b\x02\xa6\x02\xb4\x02\xba\x02\xbf\x02\xc7\x02\xd3\x02\xdd\x02\xe2\x02\xeb\x02\xf1\x02\xf8\x03\x00\x03\x04\x03" +"\x35\x03\x3b\x03\x44\x03\x52\x03\x5c\x03\x6b\x03\x76\x03\x7e\x03\x85\x03\x8a\x03\x95\x03\x9b\x03\xa5\x03\xaf\x03\xb6\x03\xbb\x04" +"\x3d\x04\x87\x04\xdf\x04\xe7\x04\xf1\x05\x0d\x05\x1a\x05\x24\x05\x39\x05\x5c\x05\x68\x05\x72\x05\x80\x05\x8f\x05\x9a\x05\xa5\x05" +"\xa9\x05\xb3\x05\xbd\x05\xc3\x05\xcc\x05\xd3\x06\x1a\x06\x3f\x06\x74\x06\xbb\x06\xf5\x07\x1e\x07\x27\x07\x3c\x07\x43\x07\x4a\x07" +"\x77\x07\x92\x07\x9d\x07\xa6\x07\xb0\x07\xc3\x07\xd8\x07\xe8\x07\xf8\x07\xfe\x08\x0c\x08\x14\x08\x21\x08\x2c\x08\x36\x08\x44\x08" +"\x50\x08\x5c\x08\x67\x08\x76\x08\x80\x08\x8a\x08\x98\x08\xa6\x08\xaf\x08\xb8\x08\xc5\x08\xcc\x08\xd3\x08\xdf\x08\xeb\x08\xf3\x08" +"\xfb\x09\x03\x09\x0e\x09\x19\x09\x24\x09\x2f\x09\x3a\x09\xfa\x0a\x51\x0a\xbd\x0b\x11\x0b\x67\x0b\x9d\x0b\xe4\x0c\x40\x0c\x8d\x0c" +"\xf9\x0d\x0a\x0d\x4d\x0d\x6d\x0d\x95\x0d\xd2\x0d\xf5\x0e\x0d\x0e\x50\x0e\x62\x0e\xa9\x0e\xe5\x0f\x03\x0f\x20\x0f\x4d\x0f\x7f\x0f" +"\xa0\x0f\xcd\x0f\xeb\x0f\xf8\x10\x2e\x10\x51\x10\x7d\x10\x9c\x10\xc2\x10\xf5\x11\x27\x11\x58\x11\x68\x11\x83\x11\xa2\x11\xaf\x11" +"\xb4\x11\xbe\x11\xeb\x12\x17\x12\x31\x12\x54\x12\x6f\x12\x92\x12\xb4\x12\xc8\x12\xde\x12\xed\x13\x02\x13\x10\x13\x24\x13\x31\x13" +"\x44\x13\x54\x13\x72\x13\x95\x13\xa1\x13\xaf\x13\xc7\x13\xe6\x13\xf2\x14\x03\x14\x1a\x14\x30\x14\x4c\x14\x5f\x14\x75\x14\x8b\x14" +"\x99\x14\xa3\x14\xb7\x14\xc7\x14\xce\x14\xdd\x14\xf7\x15\x10\x15\x19\x15\x32\x15\x41\x15\x4c\x15\x5c\x15\x74\x15\x7b\x15\x82\x15" +"\x8b\x15\x9b\x15\xa8\x15\xbe\x15\xd4\x15\xea\x15\xfc\x16\x07\x16\x1b\x16\x27\x16\x2e\x16\x41\x16\x54\x16\x63\x16\x74\x16\x86\x16" +"\x98\x16\xaa\x16\xbc\x16\xce\x16\xdf\x16\xef\x16\xff\x17\x0d\x17\x1c\x17\x2b\x17\x3a\x17\x49\x17\x4f\x17\x5d\x17\x67\x17\x73\x17" +"\x80\x17\x8d\x17\x9a\x17\xa7\x17\xb4\x17\xc1\x17\xce\x17\xda\x17\xe6\x17\xf2\x17\xfe\x18\x0a\x18\x12\x18\x1a\x18\x22\x18\x2d\x18" +"\x38\x18\x43\x18\x4e\x18\x59\x18\x64\x18\x6f\x18\x78\x18\x81\x76\x80\x50\x1d\x0b\x94\x9c\x9b\x80\x94\x0b\x06\x76\x80\x83\x7a\x30" +"\x1d\x0b\x06\x61\x1d\x0b\x06\xa5\x99\x94\x9b\x9c\x7d\x94\x71\x1f\x0b\x06\x40\x1d\x0b\x06\x76\x80\x82\x7a\x7b\x96\x82\xa0\x1f\x0b" +"\x76\x94\x80\x9c\x9c\x94\x96\xa0\x1e\x0b\xf8\x3d\xf7\x4c\x15\xbe\xfb\x19\x05\x47\x06\x20\x1d\xf7\x30\x06\xa0\x97\x21\x1d\x75\x1f" +"\x6a\x06\xfb\x59\xf8\x94\x05\xfb\x63\x06\x75\x80\x83\x7a\x7a\x96\x1d\x6f\x06\x37\x1d\xf7\x2b\x06\xa0\x97\x21\x1d\x75\x1f\x44\x06" +"\xbd\xf7\x19\x05\xf7\x83\xbe\xf7\x46\x1d\x0b\x06\xa0\x97\x94\x9c\x9b\x7f\x94\x76\x1f\x0b\x83\x7a\x7a\x96\x82\xa1\x1f\x0b\x75\x80" +"\x82\x7b\x7a\x97\x82\xa0\x1f\x0b\xf7\x15\x1d\xfb\x18\xf7\x01\x25\xf7\x1f\xec\xf7\x0b\xbb\xb1\x99\x80\x96\x7d\x85\x87\x89\x85\x83" +"\x1e\x6d\x63\x43\x75\x4f\x1b\x23\x3d\xcb\xeb\x7d\x1f\xbe\x04\xdd\x9c\xd3\xc1\xe7\x1b\xe6\xd4\x54\x3a\x9b\x1f\x0b\xf7\xc4\xf8\xd3" +"\xc7\x1d\x0b\x06\x75\x80\x82\x7b\x7a\x96\x82\xa1\x1f\x0b\x06\x7b\x1d\x0b\x7a\x96\x82\xa0\x1f\x0b\xf8\x8d\xf8\x94\x15\xa8\x06\xa0" +"\x96\x94\x9c\x9c\x81\x93\x75\x1f\xfb\x2a\x22\x1d\xd0\xfb\xd9\x06\x35\x48\x49\x35\x36\x48\xcd\xe1\x1e\xf7\xd9\xd0\x07\xa0\x96\x94" +"\x9c\x9c\x80\x93\x76\x1f\xfb\x29\x06\x75\x80\x2a\x1d\xa7\xfb\xd9\x06\xfb\x07\xe3\x33\xf7\x08\xf7\x08\xe4\xe3\xf7\x07\x1e\x0b\xef" +"\x1d\xf7\xfe\x06\xa0\x97\x21\x1d\x75\x1f\xfb\x2f\x06\x0b\x06\x71\x7d\x82\x7a\x7b\x99\x82\xa5\x1f\x0b\x07\x56\x1d\x80\x76\x1e\x0b" +"\x72\x7d\xa8\x1d\x0b\x06\x76\x7f\x38\x1d\x0b\x76\x80\xf7\x3e\x1d\x0b\x82\x7a\x7b\x3a\x1d\x0b\x77\x94\x80\x9c\x9c\x94\x0b\x97\x82" +"\xa0\x1f\x0b\x06\x71\x7e\xa8\x1d\x0b\x8d\x1d\x97\x80\x0b\x06\x62\x1d\x0b\x06\xa0\x96\x94\x9c\x9c\x80\x93\x76\x1f\x0b\x6c\x72\x73" +"\x6c\x6d\xa4\x73\xaa\xa9\xa4\xa3\xaa\xa8\x72\xa4\x6d\x1f\x0b\x76\x7f\x82\x7b\x7a\x3a\x1d\x0b\x94\x9c\x9c\x80\x93\x75\x1f\x0b\x5d" +"\x1d\xe1\x4d\x1d\x67\x86\x62\x72\x55\x1b\x56\x51\x1d\x15\x3f\x1d\xf7\x72\x16\x3f\x1d\x0e\x06\x4f\x1d\x0b\x15\xfb\x1b\xfb\x01\x05" +"\x0b\x80\x7d\x80\x8e\x87\x97\x82\x1f\x0e\x1b\x7d\x80\x81\x7d\x7f\x90\x0b\xf8\x32\x16\xf0\x23\x1d\x5a\xf7\x94\x06\xd4\x44\xc0\x2b" +"\x65\x4a\x7e\x78\x54\xa3\x1d\x8e\x8c\x8f\x98\x1e\x9d\xc4\xb5\x93\xab\x1b\xd1\xbb\x6d\x5e\x1f\x4d\x07\x9a\x4f\x72\x8e\x5e\x1b\xfb" +"\x16\x34\x4f\x32\x3e\xcc\x56\xeb\xd0\xc2\xa1\xc0\xc9\x1f\xc6\x04\x4f\x4a\x57\x74\x46\x1b\x48\x61\xaa\xbb\xc5\xd1\xb3\xef\xb7\xbb" +"\x86\x83\xac\x1f\x0b\xf8\x8f\x16\xf8\x94\xa8\x07\xa0\x96\x94\x9c\x9c\x80\x93\x76\x1f\xfb\x2a\x06\x75\x80\x83\x7a\x7a\x3a\x1d\xd0" +"\xfc\x42\x06\xfb\xbc\xf8\x75\x05\xfb\x02\x22\x1d\xbc\x92\x1d\xf8\x42\x06\xf7\xbc\xfc\x75\x05\x0b\x15\x8c\x91\x8b\x8e\x8d\x1a\x9b" +"\x82\x94\x7b\x7b\x82\x82\x78\x88\x1e\x74\xfb\x25\x05\x89\x83\x8b\x89\x89\x1a\x7c\x94\x82\x9b\x9b\x93\x94\x9e\x8f\x1e\x0b\x06\x71" +"\x7d\x82\x7b\x7a\x99\x82\xa5\x1f\x0b\x06\x72\x7d\x82\x7b\x7a\x99\x82\xa4\x1f\x0b\xcc\xbb\xca\x9b\x80\x96\x7c\x7c\x83\x83\x79\x89" +"\x1f\x0b\x06\x77\x7f\x50\x1d\x0b\xa1\x96\x41\x1d\x0b\x82\x7b\x7a\x96\x82\xa0\x1f\x0b\x62\xa5\xae\x86\x1f\x9d\x89\x83\x93\x7c\x1b" +"\x0e\xa5\x99\x94\x9c\x9b\x7d\x94\x71\x1f\x0b\x21\x1d\x76\x1f\x0b\x15\x98\x96\x8d\x8e\x94\x1a\x9a\x0b\x15\x97\x96\x8d\x8e\x0b\xa0" +"\x82\x96\x7a\x7a\x82\x0b\x94\x9b\x9c\x80\x94\x75\x1f\x0b\x7d\x96\x1f\x0e\xf7\x09\x16\xd4\x06\xf7\x02\xf8\x0e\xf7\x00\xfc\x0e\x05" +"\xd4\x06\xc9\xf8\x94\x05\x95\xf7\x10\x1d\xe5\x06\x56\xfc\x46\x24\xf7\xfe\x05\x45\x06\x21\xfb\xff\x57\xf8\x47\x05\xe3\xf7\x10\x1d" +"\x96\x06\x0b\x75\x1d\x7d\x7f\x46\x1d\x15\x3f\x1d\xf7\x71\x16\x3f\x1d\x0e\x1f\xfb\x80\x06\x76\x80\x82\x7b\x7b\x97\x82\x9f\x1f\x0e" +"\x15\x7c\x80\x80\x7b\x4c\xcc\x5b\xe0\x0b\x28\x06\x74\x94\x7e\x9c\x9c\x94\x98\xa3\x1e\xf7\x02\x07\x0b\x07\x76\x80\x82\x7a\x7b\x96" +"\x82\xa0\x1f\x0b\x15\xa1\x96\x21\x1d\x75\x1f\x0b\xa0\x96\x21\x1d\x76\x1f\x0b\xa0\x97\x41\x1d\x0b\x88\x91\x1b\x99\x97\x96\x99\x96" +"\x89\x8e\x0b\x93\x1f\x85\x91\x05\x0e\x94\x1a\x9a\x80\x96\x7c\x84\x86\x89\x0b\x76\x80\x82\x7b\x7b\x96\x82\xa0\x1f\x0b\x73\x9f\x77" +"\xa4\xa4\x9f\x0b\x8e\x93\x94\x1e\x0e\xf8\x4d\xf8\xa0\x15\xae\x63\x5d\x9b\x53\x1b\xfb\x00\x3a\x47\x32\x5f\x9f\x63\xad\x74\x1f\xaa" +"\x75\xb0\x7f\xd1\x7f\xd2\x80\x9f\x85\xa3\x7c\x08\xa5\x7b\x9b\x6d\x6b\x1a\x46\x48\x58\x30\x33\x45\xba\xc9\x86\x1e\x9f\x8a\x83\x94" +"\x7b\x1b\x7a\x82\x80\x76\x1f\xfb\x01\x07\x27\x1d\x99\x07\x63\xb4\xc4\x75\xcc\x1b\xf7\x10\xe3\xd2\xed\xbf\x73\xb7\x63\xa3\x1f\x6c" +"\x9e\x6f\x93\x3d\x98\x4e\x95\x71\x93\x73\x9b\x08\x73\x9a\x7e\xa4\xa8\x1a\xca\xc5\xb8\xdb\xd6\xc5\x62\x53\x90\x1e\x77\x8c\x94\x82" +"\x9a\x1b\x9c\x94\x96\xa0\x1f\xf0\xac\x1d\x0b\xf7\x41\xf8\x37\x15\x3a\x06\x75\x81\x83\x7a\x30\x1d\xa8\xfb\xd1\x63\x06\x2b\x1d\xf7" +"\x18\x23\x1d\x63\xf7\x85\x06\xd6\xc8\xa4\x9a\xc8\x1b\xaf\x9e\x85\x79\xa1\x1f\xa3\x77\x97\x74\x70\x1a\xfb\x81\x6f\x07\x2b\x1d\xf7" +"\x01\x06\x9f\x97\x53\x1d\x6e\xf7\x88\x06\xd9\x45\xc7\x2f\x4e\x67\x79\x53\x56\x1e\x0b\xf7\x93\xf8\x37\x15\xfb\x0d\x06\x76\x7f\x82" +"\x7b\x7b\x97\x81\xa0\x1f\xd0\xfb\xd1\x30\x06\x76\x7f\x81\x7c\x7a\x3a\x1d\xf7\xd1\x06\x9f\x97\x94\x9c\x9a\x7f\x95\x77\x1f\xfb\x42" +"\xf7\x64\x06\xec\xf7\x00\xac\xa1\xb6\x1b\x9f\x9d\x82\x73\xa3\x1f\x84\x93\x8e\x89\x94\x1b\x9a\x96\x96\x9b\x95\x85\x94\x78\x9a\x1f" +"\xa2\x70\x75\x94\x6c\x1b\x57\x5c\x71\x3d\x33\x1f\x0b\xf7\x45\x1d\x7a\x82\xe1\x1d\x0b\x55\x1d\x70\x1d\x90\x8d\x94\x95\x1e\x0e\xf7" +"\x05\x1d\xfb\x07\x29\xed\xf7\x08\x1f\xd0\x07\xf7\x06\xe2\xe7\xf7\x01\xe1\xd7\x5a\x51\x90\x1e\xf7\x0f\x1d\x0b\x15\x53\x5f\x61\x57" +"\x57\xb7\x61\xc2\xf7\x1a\x1d\x0b\x98\x1d\x82\x1a\x7c\x96\x80\x9a\x92\x0b\x75\x1f\x53\x06\xf7\x8f\xf8\x87\x05\x95\x06\xa1\x96\x41" +"\x1d\xfb\x02\x06\x76\x80\x0b\xf8\x6d\xf8\x97\x15\xb2\x5d\x51\xa0\x4b\x1b\x48\x4e\x71\x5b\x5d\x1f\x5f\x5d\x6e\x45\x4e\x1a\x3a\x07" +"\xfb\x1c\xf7\x12\xfb\x0f\xf7\x1f\xcc\x0b\x1b\xbd\xad\xa7\xb4\xb1\x73\xa3\x62\x8e\x1f\x0e\x30\x1d\xf7\x7d\x06\xa1\x96\x94\x9c\x0b" +"\x15\xf7\x1b\xf7\x01\x05\x99\x95\x8d\x8f\x95\x94\x1d\x0b\x06\x76\x80\x83\x7a\x30\x1d\xbc\xfc\x61\x5a\x06\x20\x1d\x0b\x81\x85\x87" +"\x7f\x82\x1e\x37\xfb\x10\x05\x0b\x06\x9f\x82\x96\x7a\x7a\x82\x80\x77\x1e\x0b\x07\x7b\x1d\x0b\x62\x74\x78\x70\x66\x1a\x62\xa9\x73" +"\x0b\xa4\x99\x94\x9b\x9c\x7d\x94\x72\x1f\x0b\x77\x7f\xf7\x3e\x1d\x0b\x94\x93\x98\x97\x82\x93\x7d\x1f\x0b\x1b\x73\x81\x95\xa3\x1f" +"\x0b\xf8\xa2\xf7\x61\x15\x94\x06\xa0\x97\x21\x1d\x75\x1f\xfb\x56\x06\x75\x80\x2a\x1d\xf7\x19\xfb\x1e\x06\x72\x54\x6c\x84\x58\x1b" +"\xfb\x22\x36\xda\xf7\x17\x1f\xd3\x07\xc2\xa6\xc8\xb6\xb3\x1e\xae\xb0\xb6\x9b\xc2\x1b\xe1\xd0\x66\x5b\x90\x1f\x77\x8c\x93\x82\x9b" +"\x1b\x9c\x94\x96\x9f\xdb\x1d\x0b\xf8\x43\xf7\x9e\x15\xfb\x6b\x5b\x07\x2b\x1d\xf7\x20\x06\xa0\x97\x21\x1d\x75\x1f\x63\xf8\x61\x9f" +"\x06\xa0\x96\x94\x9c\x9c\x80\x93\x76\x89\x1d\x06\x0e\xf7\xde\xf7\x3a\x15\xf7\x30\xf7\xed\x05\xfc\x60\x46\x07\x37\x1d\xf7\x2a\x23" +"\x1d\x6e\xf8\x61\x9f\x3e\x1d\x23\x06\xfb\x2b\xfb\xe2\xfb\x2d\xf7\xe2\x05\x24\x06\x20\x1d\x9f\x92\x1d\xf8\x5f\x06\xf7\x32\xfb\xec" +"\x05\x0e\xf7\x33\x16\xf7\xad\xf7\xe8\x05\xfb\xb5\x5b\x07\x76\x7f\x38\x1d\xf7\x29\x06\xa0\x96\x94\x9b\x9c\x80\x94\x76\x1f\x5a\xf7" +"\xd1\xbc\x06\xa0\x96\x94\x9b\x9c\x80\x94\x76\x1f\x22\x06\xfb\xad\xfb\xe9\x05\xf7\xb6\xbb\x07\xa1\x96\x57\x1d\xfb\x23\x06\x75\x80" +"\x38\x1d\xb6\xfb\xd1\x60\x25\x1d\x0b\xf7\x54\xf8\x37\x15\xf7\x04\x07\x8e\x1d\xfb\x96\x06\x3f\xca\x59\xed\xba\xc3\x96\x9d\xbb\x1e" +"\xb0\x99\x9b\x98\x9a\x1a\x99\x80\x96\x7d\x86\x87\x8a\x85\x82\x1e\x75\x64\x46\x7b\x54\x1b\x49\x62\xa9\xba\x1f\xf7\x94\xf7\x6a\x07" +"\x4f\x1d\x0b\xf7\x3f\xf7\x76\x15\xf7\x12\x06\xf7\x08\xe7\xd6\xea\xe9\x36\xd4\xfb\x01\x1f\xfb\x85\xe4\x1d\xf7\x76\x04\xf7\x7f\xf7" +"\x23\x07\xd8\xc9\x57\x4b\x4a\x46\x55\x37\x1f\x0e\x8a\x1d\x95\x89\x8f\x7e\x96\x1f\x0e\x15\x7c\x80\x80\x7b\x4c\xcc\x5b\xe1\xe0\x4d" +"\x1d\x67\x86\x62\x72\x55\x1b\x56\x51\x1d\x15\x91\x94\x8d\x90\xed\x1d\xf4\x1d\x99\x91\x92\x68\x1d\x1f\xfb\x0c\x06\x75\x80\x83\x7a" +"\x7a\x3a\x1d\xbb\xfb\x57\xfb\x96\xf7\x57\xbb\x3d\x1d\xfb\x0c\x22\x1d\x9f\xfc\x61\x63\x06\x2b\x1d\xf7\x20\x06\xa0\x97\x21\x1d\x75" +"\x1f\x5b\xf7\x6b\x0b\x8d\x1d\x96\x80\x99\x92\x91\x8d\x92\x93\x1e\xf3\xdf\xf4\x37\x05\x85\x93\x91\x88\x91\x1b\x99\x97\x96\x99\x0b" +"\x05\xb6\x3d\x1d\xfb\x07\x22\x1d\x98\x06\x0b\x25\x1d\xb3\xfc\x61\x63\x25\x1d\x0b\x45\x1d\x7f\x82\x88\x87\x80\x1a\x7d\x0b\xa0\x82" +"\x95\x7a\x7a\x82\x80\x77\x1e\xfb\x04\x46\x07\x75\x80\x2a\x1d\xd0\x0b\xf7\x47\x1d\xc5\x24\x1d\x53\x06\x45\xf7\x1b\x69\xcb\x66\xb6" +"\x6a\x99\x19\xa8\xaa\x0b\x15\x84\x85\x88\x85\x85\x1f\x6e\x6e\x82\x85\x7c\x1b\x7f\x82\x0b\x95\x86\x8c\x75\x98\x08\x79\x96\x80\x9a" +"\x99\x1a\xb2\xc0\xa8\x0b\xfc\x61\xf7\x0c\x1d\x0b\x83\xa1\x1b\xbd\xad\xa7\xb4\xb1\x73\xa3\x62\x8e\x1f\x0b\xf7\x1f\x1d\x85\x8e\x85" +"\x1b\x0b\x16\x72\x77\x78\x72\x72\x9f\x78\xa4\xa4\x9f\x9e\x0b\x3a\x1d\xf7\x03\x06\xfb\x42\xfc\x61\x05\x0b\x26\x07\x75\x81\x83\x7a" +"\x30\x1d\xbc\x0b\x65\x1d\x82\x81\x1e\xfb\x06\x2a\x05\x80\x81\x88\x87\x0b\xbd\xbe\xc9\xc9\x59\xbe\x4e\x1f\x89\x64\x15\x0b\xa9\x79" +"\x1f\xa8\x79\xa8\x84\xd5\x84\xc2\x85\x0b\x07\x76\x94\x7f\x9c\x9c\x94\x97\xa0\x1e\x0b\x8a\x89\x85\x1a\x7d\x97\x7f\x99\x96\x90\x8e" +"\x99\x94\x1e\x0e\x89\x82\x81\x1e\xfb\x06\x2a\x05\x80\x0b\xa0\x96\x94\x9b\x9b\x80\x94\x76\x1f\x0b\x06\xa1\x96\x94\x9c\x9c\x81\x93" +"\x74\x1f\xfb\x02\x06\x0b\x9b\x83\x1f\x81\xa0\xa9\x83\xa1\x1b\xbd\xad\xa7\xb4\x0b\x87\x8a\x79\x1b\x70\x7f\x94\x9e\x0b\x73\xa2\xa7" +"\xa7\xa3\xa2\xa9\x1f\x0b\x1e\x7d\x86\x84\x83\x7f\x1a\x7d\x96\x80\x98\x90\x0b\x1a\x99\x7f\x96\x7d\x1e\x0e\x7a\x7b\x96\x82\xa0\x1f" +"\x0b\x2b\x05\x81\x83\x87\x84\x83\x1a\x7d\x97\x7f\x0b\xb3\x9f\xa0\x96\x82\x94\x81\x88\x87\x8a\x88\x0b\x82\x7a\x7b\x99\x82\xa4\x1f" +"\x0b\x96\x7a\x7a\x83\x80\x76\x1e\x0b\x96\x87\x80\x9e\x1f\x73\xb4\x0b\x06\xa4\x99\x94\x9b\x9c\x7e\x94\x71\x1f\x0b\x07\x9f\x82\x96" +"\x7a\x7a\x83\x80\x77\x1e\x0b\x86\x8d\x84\x1b\x7c\x80\x80\x7d\x82\x8e\x0b\x91\x8e\x91\x93\x1e\xf3\xdf\xf3\x37\x05\x0b\xa4\xa4\x9f" +"\x9f\xa3\xa3\x77\x9f\x72\x1f\x0b\xf7\xda\xbc\x15\x61\xac\xb5\x74\xb6\x1b\xad\xaa\x98\xac\xb5\x1f\xa4\x9e\x93\x95\x97\x1a\x98\x7f" +"\x97\x7e\x85\x85\x89\x87\x86\x1e\x60\x5c\x77\x7f\x6e\x1b\x4d\x59\xce\xe8\x82\x1f\xf7\x96\x06\x8a\xba\x89\x9e\x84\xad\x08\xe3\x78" +"\x57\xbd\x44\x1b\x5b\x62\x71\x5b\x6e\x1f\xb9\x74\x60\xa7\x5c\x1b\x6c\x6b\x83\x7a\x64\x1f\x74\x81\x82\x82\x7e\x1a\x7f\x97\x7e\x96" +"\x91\x92\x8e\x90\x94\x1e\x9a\xa7\xa6\x93\xa5\x1b\xb9\xb0\x69\x5f\x1f\x57\x07\x92\x73\x6d\x8f\x71\x1b\x20\x3a\x54\x42\x34\xcc\x4b" +"\xe3\xb5\xb0\x9e\xb2\xaf\x1f\x81\x07\x76\x94\x80\x9b\x9c\x94\x96\xa0\x1e\x58\xde\x15\x52\x5e\x6b\x74\x67\x1b\x51\x62\xb0\xbf\xa1" +"\x91\x9a\x98\x98\x1f\x9f\xa2\xc2\x9d\xb5\x1b\x9f\xa9\x86\x84\xa2\x1f\xbe\xb9\x15\xe4\x97\xaf\xba\xc2\x1b\xad\xa7\x79\x6a\x9c\x1f" +"\x95\x77\x92\x73\x90\x62\x08\x0b\xf8\x87\xf8\x6a\x15\x74\x94\x7e\x9c\x9c\x94\x98\xa4\x1e\xbf\x07\xaa\x83\x93\x6b\x3d\x78\x7c\x22" +"\x4b\x1e\x4c\x22\x80\x82\x51\x89\x08\x72\xf7\x4d\xba\x2f\x1d\xfb\x25\x4c\x1d\xb9\xfc\x61\x5d\x06\x35\x1d\xf7\x25\x06\xa4\x99\x94" +"\x9c\x9b\x7d\x94\x72\x1f\x5c\xf7\x75\xa4\x06\xdc\x89\xa6\x77\xbc\x31\x8f\x1d\x92\x96\xb5\xd0\xbe\xe0\x94\x93\xb6\x8d\x08\x0b\xf7" +"\xb8\xf7\x4d\x15\xfb\x1a\x5c\x07\x37\x1d\xf7\xf3\xf7\x1c\x06\x9e\x81\x98\x7b\x79\x83\x82\x74\x1e\x36\xfb\x5c\xf7\x6c\xce\x76\x07" +"\x77\x94\x7f\x9b\x9b\x94\x96\xa0\x1e\xe9\x07\xa0\x83\xa9\x1d\x75\x48\xf7\x56\xf7\x48\x23\x07\x27\x1d\xf7\x2f\xfc\x44\x07\x76\x80" +"\x83\x7a\x30\x1d\xc3\x06\xfb\x16\xfc\x61\x05\x6b\x06\x2b\x1d\xf2\x06\xa0\x97\x21\x1d\x75\x1f\x78\x06\xb1\xf7\x1a\x05\xf7\x18\xbe" +"\x15\xfb\x09\x06\xd7\xf7\xa8\x05\xb4\x06\x0b\xf7\xe5\xf7\x6f\x15\xf7\x32\xf7\x29\x05\x8f\x9f\x1d\x75\x81\x83\x7a\x30\x1d\xae\x06" +"\xfb\x10\xfb\x06\xfb\x0c\xf7\x06\x05\xab\x9f\x1d\x74\x81\x83\x7a\x7a\x96\x82\xa1\xf7\x35\x1d\x83\x06\x37\x1d\xf7\x19\x06\xa0\x97" +"\x21\x1d\x75\x1f\x55\x06\xf7\x23\xf7\x19\xf7\x22\xfb\x19\x05\x57\x06\x37\x1d\xf7\x18\x06\xa0\x97\x21\x1d\x75\x1f\x84\x06\x0e\x41" +"\x1d\xfb\x03\x22\x1d\xae\x06\xfb\x23\xfb\x4b\xfb\x24\xf7\x4b\x05\xab\x3e\x1d\xfb\x02\x06\x37\x1d\x97\x06\xf7\x44\xfb\x74\xfb\x4c" +"\xfb\x81\x05\x7c\x06\x37\x1d\xf7\x17\x06\xa0\x97\x21\x1d\x75\x1f\x56\x06\xf7\x2d\xf7\x58\xf7\x2e\xfb\x58\x05\x59\x06\x75\x80\x82" +"\x7b\x7a\x97\x82\xa0\x1f\xf7\x17\x06\xa0\x97\x94\x9c\x9b\x80\x94\x75\x1f\x7d\x06\x0e\xf7\x3f\xf7\x70\x15\xd8\xce\xe7\x6d\xb5\x51" +"\xd4\xfb\x5b\x19\xe5\x06\xa1\x96\x21\x1d\x75\x1f\x57\x06\x43\xf7\x4b\x65\xbe\x2f\xb3\xf7\x6a\xf7\x4f\x18\x99\x44\x1d\xfb\x0b\x06" +"\x75\x80\x83\x7a\x7a\x96\x82\xa1\xcb\x1d\x0b\xf8\xa2\xf7\x61\x15\x94\x06\xa0\x97\x21\x1d\x75\x1f\xfb\x56\x06\x75\x80\x2a\x1d\xf7" +"\x19\xfb\x1e\x06\x72\x54\x6c\x84\x58\x1b\xfb\x22\x36\xda\xf7\x17\x1f\xd3\x07\xc2\xa6\xc8\xb6\xb3\x1e\xae\xb0\xb6\x9b\xc2\x1b\xe1" +"\xd0\x66\x5b\x90\x1f\x77\x8c\x93\x82\x9b\x1b\x9c\x94\x95\xa0\xdb\x1d\x0b\xf7\x25\xf8\x94\x15\xa6\xab\x1d\xfb\x04\x4b\x1d\xa1\x06" +"\xf7\x58\xfb\xf4\x6d\x55\x05\x53\x6c\x7a\x7c\x6a\x1b\x80\x85\x8c\x90\x79\x1f\xbf\x07\xa2\x82\x98\x7a\x7a\x82\x7e\x72\x1e\x52\x07" +"\x78\x8e\x80\x93\x87\x1e\x81\x99\xa9\x85\xa6\x1b\xc3\xaf\xa6\xd2\xb3\x1f\xf7\x83\xf8\x42\x05\xa0\x06\xa4\x99\x94\x9c\x9b\x7d\x94" +"\x72\x1f\xfb\x00\x4b\x1d\xa6\x06\xfb\x38\xfb\xbd\x05\x0b\xf7\x3f\xf8\xef\x15\x26\x06\x20\x1d\xbc\xfc\x89\x63\x06\x2b\x1d\xf7\x18" +"\x06\xa0\x97\x21\x1d\x75\x1f\x63\xf7\x87\x06\xa6\xa9\x9c\x9e\x91\x90\x08\xa3\xa8\xa6\x95\xb1\x1b\xb2\x9f\x85\x79\xa1\x1f\xa3\x78" +"\x97\x74\x6f\x1a\xfb\x81\x63\x07\x76\x80\x82\x7b\x7a\x96\x82\xa0\xf7\x18\x1d\x2c\x4f\x62\x77\x56\x5b\x1e\x0b\xf8\xb1\xf7\x6c\x15" +"\xd5\xf7\x3a\x05\x8f\x92\x8c\x91\x91\x1a\x98\x81\x95\x7e\x7e\x83\x84\x79\x83\x1e\x59\xfb\x06\x05\xec\x60\x3f\xbe\x28\x1b\xfb\x16" +"\x24\x27\xfb\x10\xfb\x11\xf3\x27\xf7\x14\xc9\xc7\xa4\xb5\xb0\x1f\xa0\xa4\x99\xa1\xa0\xb8\xbe\xfb\x12\x18\x73\x94\x92\x84\x9a\x1b" +"\x99\x95\x95\x98\x92\x89\x92\x87\x96\x1f\xfb\x0f\xf7\x4a\x15\x78\x5f\x05\x2b\x62\x56\x62\x3b\x1b\x29\x3a\xd9\xeb\xeb\xdb\xd8\xf0" +"\xd7\xc6\x64\x45\xaa\x1f\x0b\x72\x1d\xca\xa4\xb9\xbc\x1e\xa7\xa5\x97\x9b\x97\x1a\x99\x6e\x1d\x0b\x39\x1d\x97\xa1\x1e\xc1\x07\xab" +"\x83\x92\x65\x47\x7a\x80\x2b\x3a\x1e\x5e\x55\x7e\x84\x57\x8a\x08\x73\xf7\x0a\xb6\xab\x1d\xfb\x1e\x33\x1d\xb6\xfb\xd1\x60\x33\x1d" +"\xf7\x1e\x06\x7b\x1d\x60\xf7\x28\xa3\x06\xda\x8a\xa8\x7c\xb6\x4d\xcf\x28\x18\x95\x7a\x92\x87\xa4\x8a\x08\x0b\xf7\xda\x16\xf7\x53" +"\x06\xa0\x97\x94\x9b\x9c\x7f\x94\x76\x1f\x63\xc6\x1d\xf7\x53\x28\x06\x74\x94\x7e\x9c\x9c\x94\x98\xa3\x1e\x0e\xf8\x47\xf7\xf1\x15" +"\xc5\x5f\x57\xa5\x46\x1b\xfb\x09\x2c\x2c\xfb\x08\xfb\x09\xea\x2c\xf7\x09\xcf\xc0\xa6\xc3\xb7\x1f\xfb\x01\x07\x8f\x50\x50\x52\x4d" +"\xcc\x1d\x0b\xf7\x3b\xf8\x04\x15\xcd\x44\x1d\x49\xc0\x06\xb9\xa6\xad\xae\x99\x9d\x88\x84\xa3\x1e\x87\x96\x8c\xf7\x2b\x1d\x76\x67" +"\x92\x76\x1b\x4d\x59\x50\x43\x1f\x56\x43\x07\x20\x1d\xd3\xfb\xd1\x3d\x06\x20\x1d\xf7\x58\x06\xa0\x97\x21\x1d\x75\x1f\x49\x06\x0b" +"\x15\x7c\x82\x83\x7e\x7f\x93\x83\x9b\x1f\xbe\x89\xb1\x6d\x65\x1a\x66\x65\x6c\x5f\x6c\x75\xf7\x22\x1d\xbf\xcf\xc3\xbc\xc7\xae\x79" +"\xdc\x1d\x0e\x52\x1d\xfb\x11\x06\x71\x7d\x82\x7b\x7a\x99\x82\xa5\xd1\x1d\xb4\x1b\xc6\xc5\x9c\xac\xbe\x1f\x0b\x15\x95\x93\x8f\x93" +"\x94\x1a\x99\x81\x95\x7d\x83\x85\x88\x83\x81\x1e\xfb\x05\x2b\x05\x80\x83\x87\x84\x81\x1a\x7d\x95\x81\x9a\x93\x92\x8e\x93\x94\x1e" +"\xfb\x06\xd8\x15\x72\x77\x78\x72\x72\x9f\x78\xaf\x1d\xf7\x97\x16\x71\x77\x78\x72\x67\x1d\x9f\xa3\xa3\x77\x9f\x73\x1f\x0e\xce\x1d" +"\xf8\x5c\xf7\x36\x06\x56\x1d\x80\x76\x1e\xfb\x03\xfb\xc3\x07\x0b\x15\xfb\x3e\xfb\x1b\xfb\x17\xfb\x3a\xfb\x36\xf7\x1b\xfb\x19\xf7" +"\x3b\xf7\x3a\xf7\x1b\xf7\x19\xf7\x37\xf7\x36\xfb\x1b\xf7\x1a\xfb\x37\x1f\x85\x58\x15\xf7\x21\xf7\x03\xfb\x00\xfb\x1d\xfb\x1b\xfb" +"\x04\xfb\x02\xfb\x1d\xfb\x1e\xfb\x04\xf7\x02\xf7\x1b\xf7\x1a\xf7\x04\xf7\x03\xf7\x1b\x1f\x0e\xb0\xbc\x1a\xdf\x3f\xcb\x27\x1e\xfb" +"\x97\x22\x1d\xbc\x06\xbf\xfb\x57\x15\xf7\x57\xf7\x33\x07\xd0\xc1\x61\x55\x51\x51\x62\x39\x1f\xfb\x22\xfb\x9e\x15\xf7\x6b\xf7\x24" +"\x07\xc7\xab\x85\x79\xaa\x1f\xaf\x76\xa0\x6b\x69\x1a\x51\x56\x5d\x47\x1e\x0e\x06\x75\x80\x38\x1d\xa4\xfb\x0f\xfb\x8e\xf7\x0f\xea" +"\x1d\xf7\x18\x06\xa0\x97\x94\x9b\x9c\x7f\x94\x76\x1f\x63\xf7\x23\x0b\xf7\xd1\xa5\x06\x9f\x97\x94\x9b\x9c\x80\x94\x76\x1f\x24\x06" +"\x75\x80\x38\x1d\xa4\xfb\xd1\xfb\x8e\xf7\xd1\xea\x1d\x0b\x15\xfb\x26\xfb\x04\xfb\x15\xfb\x3b\xf7\x07\x1d\x85\x58\x15\xf7\x06\xe6" +"\xfb\x00\xfb\x1d\xfb\x1a\x30\xfb\x02\xfb\x04\xfb\x03\x30\xf7\x02\xf7\x1b\xf7\x19\xe6\xf7\x03\xf7\x01\x1f\x0b\xf7\x7d\xf8\x94\x15" +"\xf7\x9a\xfb\x2c\x06\x39\x1d\x96\x9f\x1e\xf7\x5f\xfc\x5d\x5f\x1d\xe6\xfc\x61\x30\x06\x76\x80\x82\x7a\x7a\x96\x83\xa0\x1f\xf7\x7e" +"\x06\xa0\x96\x93\x9c\x9c\x80\x94\x76\x1f\x30\x06\x0e\xf7\x08\x1d\xb1\xa7\xf7\x3d\x1d\xa8\xa6\xae\x1f\xfb\x2f\x04\xb4\xaa\x70\x68" +"\x67\x6c\x6f\x63\x63\x6c\xa7\xaf\xae\xaa\xa6\xb2\x1f\x0b\xf8\x30\xf8\x04\x15\xfc\x1a\x07\x4a\x8a\x5e\x5f\x4c\x1b\xfb\x14\x06\x75" +"\x80\x2a\x1d\xf7\x15\x06\xe6\x89\xd2\xd2\x89\xe6\x08\xf8\x4d\xfb\xb3\x07\x74\x81\x2a\x1d\xf7\x87\xf7\x49\x1d\x1f\xab\x06\xfb\x99" +"\xfb\x78\x05\xf7\x78\xd0\x07\x62\x1d\xfb\x3e\x76\x1d\xf7\x3e\x06\xa0\x97\x21\x1d\x75\x1f\x46\x06\x0b\x8c\x08\xfb\x08\x06\x76\x80" +"\x83\x7a\x7a\xd2\x1d\x0b\x15\x36\x71\x70\x83\x84\x88\x08\x83\x87\x86\x85\x82\x1a\x81\x94\x81\x96\x8e\x8e\x8b\x8c\x8e\x1e\xc9\x9f" +"\x05\xfb\x97\x07\x8c\x75\x73\x8b\x7d\x1b\x76\x80\x84\x7c\x7f\x95\x83\x98\x1f\xf7\x47\x06\x98\x7d\x1d\x47\x06\x0b\x1e\xf7\x15\x34" +"\x1d\x64\xfb\x1a\xf7\x57\xf7\xae\x30\x07\x27\x1d\xf7\x22\xfc\x47\x07\x76\x80\x83\x7a\x30\x1d\xbc\xfc\x61\x5a\x06\x20\x1d\x0b\x06" +"\x6a\x8a\x87\x88\x88\x6a\x83\xfb\x05\x18\x8a\x7e\x8b\x8b\x8a\x1a\x7a\x95\x81\x9a\x9c\x94\x97\xa4\x8c\x1e\x93\xf2\x05\xf7\x13\xfc" +"\x61\x5d\x06\x35\x1d\xf7\x1f\x2f\x1d\x62\x0b\x15\xf7\x1a\x3d\x1d\xfb\xd4\x22\x1d\xf7\x1a\xfc\x61\xfb\x1a\x06\x20\x1d\xf7\xd4\x06" +"\xa0\x97\x21\x1d\x75\x1f\xfb\x1a\x06\x0b\x1f\xb0\xfb\x12\x06\x60\x46\x59\x7b\x4f\x1b\x50\x74\xa1\xc5\x1f\xf4\xb9\x79\x1d\xfb\x19" +"\x33\x1d\xae\x22\x06\x55\x99\x69\xa8\x79\x1e\x7b\xa4\xaf\x83\x0b\x96\x82\xa0\x1f\xf7\x07\x06\xe1\x86\xe2\xdd\x88\xde\x08\xf8\x1a" +"\xbc\x07\xa0\x96\x94\x9c\x9c\x81\x93\x75\x1f\x26\x06\xfb\x38\x66\x15\xe8\xd2\x45\x30\x32\x44\x44\x30\x30\x43\xd2\xe5\xe3\xd3\xd3" +"\xe4\x1f\x0b\xf7\x66\x15\xfb\x67\xf7\x59\x05\x93\x82\x83\x8f\x83\x1b\x7d\x80\x80\x7d\x82\x8c\x89\x96\x7f\x1f\xf7\x1f\xfb\x35\xfb" +"\x1f\xfb\x36\x05\x80\x7f\x8a\x89\x82\x1a\x7d\x96\x80\x99\x94\x92\x8e\x94\x94\x1e\x0b\x15\x84\x86\x89\x84\x84\x1f\x6d\x6e\x82\x85" +"\x7c\x1b\x7f\x82\x8f\x9e\x68\x1f\x9d\x6b\x7d\x90\x76\x1b\x70\x75\x80\x70\x6e\x1f\x7c\x7e\x85\x81\x81\x1a\x7f\x96\x80\x99\x93\x93" +"\x8e\x91\x90\x1e\xa8\x0b\xec\x1d\x8d\x94\x1a\x99\x80\x96\x7d\x83\x83\x88\x82\x82\x1e\x0b\xf7\xda\xf8\x05\x15\xf7\x0f\x06\xa1\x96" +"\x57\x1d\xfb\x0f\xf7\x2b\x78\x1d\xfb\x2b\xfb\x0f\x5f\x1d\xf7\x0f\x0b\x1b\x4b\x73\xab\xe1\x1f\xf7\x31\xbc\x79\x1d\xfb\x1f\x06\x35" +"\x1d\xb1\xfb\x35\x06\x47\x99\x60\xa8\x74\x1e\x77\xa4\xb0\x80\x0b\x75\x1d\x7d\x7f\x80\x7d\x80\x8e\x87\x98\x82\x1f\x0e\x3c\x1d\x98" +"\xf5\x1d\x45\x1d\x7f\xf3\x1d\x95\x89\x8f\x58\x1d\x1f\xe5\x07\xa0\x83\x95\x79\x7a\x82\x81\x76\x1e\x88\x07\xaa\x5f\x55\x9b\x4c\x1b" +"\xfb\x23\xfb\x04\xfb\x05\xfb\x25\x1f\x43\x07\xfb\x32\xf7\x01\x24\xf7\x3a\xcd\xc9\x9c\xaf\xcc\x1e\x0b\xa8\x65\xa3\x1f\xa9\x9f\x99" +"\xa2\xa9\x1a\xc0\x5d\xb3\x4f\x5a\x52\x6c\x70\x81\x94\x82\x96\x93\x8e\x8d\x94\x93\x1e\x9b\x9a\xa2\x94\xa8\x1b\xb0\xa7\x75\x6d\x6e" +"\x71\x76\x67\x1f\x0b\x9a\x7d\x9f\xf7\x3c\x1d\xd9\x16\x44\xfb\x74\x05\x89\x86\x8b\x88\x87\x1a\x7a\x9b\x7d\x9e\xf7\x3c\x1d\x0e\x80" +"\x96\x7c\x84\x84\x88\x84\x83\x1e\x2a\x2f\x05\x7f\x7f\x89\x88\x83\xf7\x3a\x1d\xf7\x83\xe7\x15\x98\x97\x8c\x8d\x94\x1a\x99\x80\x96" +"\x7c\x0b\xf7\x21\x1d\xf7\x06\x2a\x05\x83\x94\x91\x88\x92\x1b\x9a\x96\x96\x9a\x93\x8b\x8c\x82\x93\x1f\x86\x91\x05\x0e\x78\x96\x7d" +"\x9b\x9c\x93\x95\xa2\x1e\xf7\x09\xfc\x67\xfb\x09\x07\x75\x94\x80\x9c\x9c\x94\x96\xa1\x1e\xcd\xf7\x30\xfc\x61\x28\x07\x2b\x1d\x0b" +"\x80\x76\x1e\xfb\x19\xfb\xc1\x07\xf7\xda\xf8\x54\x05\xcb\xfb\xfc\xfb\x36\x07\x27\x1d\xf7\x03\xf7\x93\x07\xfb\xd9\xfc\x53\x05\x4a" +"\x07\x0b\x3c\x1d\x98\x92\x91\x8d\x92\x93\x1e\xf3\xdf\xf4\x37\x05\x85\x93\x91\x63\x1d\x0b\x15\x72\x77\x78\x72\xf7\x19\x1d\x72\x9f" +"\x78\xa4\xa4\x9f\x9e\xa4\xa3\x77\x9f\x72\x1f\x0e\x76\x1d\xf7\x7e\x06\xa0\x97\x21\x1d\x75\x1f\xfb\x19\x06\x0b\x15\x91\x94\x8d\x90" +"\x91\x1a\x99\x7f\x96\x7d\x77\x1d\x85\x83\x89\x86\x85\xf7\x31\x1d\xf7\x06\x1d\x99\x97\x96\x99\x94\x8b\x8b\x7c\x9a\x1f\x0e\x15\x97" +"\x95\x8d\x8f\x98\x1d\x81\x1a\x7d\x96\x80\x9a\x92\x90\x8d\x94\x95\x1e\x0e\x7d\x94\x71\x1f\xfb\x18\x4c\x1d\xb5\xfb\x56\x06\x0b\x63" +"\x07\xf7\x13\x1d\xf7\xd1\xa5\x06\x9f\x97\x94\x9b\x9c\x80\x94\x76\x1f\x0b\xa4\x06\xa0\x97\x57\x1d\x24\x26\x1d\xa5\xfb\xd1\x63\x25" +"\x1d\x0b\x77\x83\x75\x72\x1f\x87\x93\x87\x8e\x82\x8f\x08\x93\x76\x67\x92\x77\x1b\x4d\x59\x50\x43\x1f\x56\x43\x07\x20\x1d\xd3\x0b" +"\x15\xf7\x68\xfb\x59\x05\x82\x95\x92\x87\x93\x1b\x99\x96\x96\x99\x94\x8a\x8d\x80\x97\x1f\xfb\x20\xf7\x36\xf7\x20\xf7\x35\x05\x96" +"\x97\x8c\x0b\x90\x1a\x9a\x80\x96\x7c\x77\x1d\x83\x80\x9c\x1d\x1f\x90\x81\x89\x8c\x85\x47\x1d\x84\x9b\x84\x1f\x81\x0b\xf7\xda\xf8" +"\x37\x15\xfb\x39\x06\x75\x81\x83\x7a\x30\x1d\xf7\x05\xfb\xd1\xfb\x2f\x06\x20\x1d\x0b\xf7\x5f\xf7\x2d\x15\x44\xfb\x8d\x05\x8a\x87" +"\x8a\x87\x87\x1a\x78\x9a\x7c\x9f\x9a\x93\x91\xa0\x97\x1e\xf7\x29\xf7\xa0\x05\x0e\xf7\x0f\x1d\x7b\x07\xb2\x5d\x50\xa0\x4c\x1b\x0b" +"\x7f\x96\x7d\xf7\x43\x1d\x81\x82\x88\x85\x83\x1a\x7c\x96\xf7\x48\x1d\x82\x88\x87\x80\x1a\x7d\x96\x80\x9a\x91\xae\x1d\x85\x94\x91" +"\x88\x91\x1b\x99\x97\x96\x99\x0b\x15\x96\x94\x8e\x90\x94\x1a\x99\x7f\x97\x7d\x84\x84\x88\x83\x82\x1e\xfb\x05\xa6\x1d\x0b\x92\x91" +"\x8d\x92\x93\x1e\xf3\xdf\xf4\x37\x05\x85\x93\x91\x88\x91\x1b\x99\x97\x96\x99\x95\x89\x8f\x7e\x96\x1f\x0e\x05\xa7\x06\x62\x1d\xfb" +"\x03\x06\x76\x80\x83\x7a\x30\x1d\xa0\x06\xf7\x45\x0b\x15\x94\x94\x8f\x91\x93\x1a\x9a\x80\x96\x7d\x83\x87\x9d\x1d\x81\x88\x87\x81" +"\x1a\x7d\x0b\xf7\x0b\xbe\x15\x5a\x06\x20\x1d\xf7\xc7\x06\xe9\xd7\xd1\xe1\xcb\x62\xbc\x3d\xa8\x1f\x0b\x81\x85\x87\x7f\x82\x1e\x37" +"\xfb\x0f\x05\x83\x7f\x9c\x1d\x77\x1d\x86\x84\x88\x84\x86\xf7\x31\x1d\xf7\x43\x1d\x82\x82\x87\x85\x83\x1a\x7c\x96\x80\x99\x93\x8f" +"\x8d\x94\x95\x1e\x0e\x81\x95\x7c\x82\x86\x88\x83\x83\x1e\x4d\x55\x5b\x72\x47\x1b\x0b\x15\x94\x82\xf7\x0a\x1d\x0b\xfb\x39\xf7\x05" +"\xfb\x16\xf7\x21\xf7\x23\xf7\x2d\x1d\x1f\x0b\x1e\x6b\x75\x7c\x70\x69\x1a\x51\xbd\x5c\xc9\xc9\xbd\xba\xc5\xad\x7c\xa6\x6b\xa1\x1e" +"\x49\xf7\x1a\x15\x0b\xf9\x66\x15\x94\x82\x86\x8d\x84\x1b\x7c\x80\x80\x7d\x82\x8f\x85\x95\x82\x1f\xf7\x06\x2a\x05\x83\x0b\xf7\x1b" +"\x1d\x94\x91\x88\x92\x1b\x0b\x94\x97\xa3\x1e\xc1\x07\xaa\x84\x93\x6e\x4b\x7a\x7b\x21\x59\x1e\x5b\x26\x83\x7f\x70\x8a\x08\x86\x0b" +"\x6e\x06\x37\x1d\xf7\x2a\x06\xa0\x97\x21\x1d\x75\x1f\x46\x0b\x20\x1d\xbc\xfc\x89\x5a\x06\x20\x1d\xf0\x0b\xa0\x97\x94\x9b\x9c\x7f" +"\x94\x76\x1f\x63\xf8\x61\xb3\x29\x1d\x0b\x78\x8d\x93\x82\x9b\x1b\x9c\x94\x96\xa0\x1f\xf7\x02\x07\xa0\x82\x95\x7a\x7a\x82\x80\x77" +"\x1e\x0b\x06\xa0\x97\xf7\x1c\x1d\x0b\x15\x94\x81\xf7\x1b\x1d\x0b\x75\x80\x82\x7a\x7b\xf7\x23\x1d\x0b\x40\x1d\xf7\x18\x06\xa0\x97" +"\x94\x9b\x9c\x7f\x94\x76\x1f\x63\x0b\x6c\x72\x73\x6d\x6d\xa4\x73\xa9\xaa\xa3\xa3\xa9\x0b\xf8\xa2\xf7\x57\x15\x93\x07\x92\x07\xf7" +"\x14\x27\xea\xfb\x1a\xfb\x18\x25\x2d\xfb\x0d\x0b\xf7\xc4\xf8\x45\x15\xfb\x1a\x24\x29\xfb\x13\xfb\x10\xf3\x27\xf7\x16\xf7\x16\xf2" +"\xee\x0b\x77\x7f\x82\x7a\x7b\x97\x82\x9f\x1f\xf7\x7e\x06\x9f\x97\x94\x9b\x9c\x80\x94\x76\x1f\x0b\x1f\xf7\x18\x06\xa0\x97\x21\x1d" +"\x75\x1f\x63\xf7\x84\x06\xdd\x46\xc7\x0b\xf7\x30\x1d\xf7\x62\x16\x72\x77\x78\x72\x0b\xc1\xb7\xb5\xbf\xbe\x5f\xb6\x56\x1f\x89\x60" +"\x15\xaa\xa3\x75\x6e\x6f\x73\x74\x0b\xad\x1d\x85\x96\x82\x1f\xf7\x06\x2a\x05\x83\x0b\x41\x1d\xfb\x2a\x22\x1d\x0b\x88\x84\x84\x1e" +"\x29\x2f\x05\x7f\x80\x89\x88\x82\x1a\x7c\x96\x80\x9a\x92\x0b\x15\xa3\x9e\x78\x74\x73\x78\x78\x74\x73\x78\x9e\xa3\xa1\x9e\x9f\xa2" +"\x1f\x0b\x1a\x99\x7f\x96\x7d\x85\x85\x88\x85\xf7\x3f\x1d\x91\x83\x0b\xa0\x95\xa5\xa6\x1f\x9e\x9d\x90\x92\x95\x1a\x98\x7f\x96\x7d" +"\x1e\x0e\x15\x94\x81\x87\x8d\x83\x1b\x7d\x80\x80\x7d\x82\x8f\x84\x94\x83\x1f\x0b\x93\x9f\x6e\x1e\x90\x85\x87\x8c\x86\x1b\x80\x82" +"\x82\x80\x72\xcb\x6d\x0b\x96\x82\xa1\x1f\xf7\x16\x06\xa1\x97\x94\x9c\x9b\x7f\x94\x75\x1f\x64\x0b\xf8\x6d\x15\x91\x92\x8e\x91\x91" +"\x1a\x97\x81\x95\x7f\x83\x88\x89\x80\x0b\xf3\xdb\x40\x28\x2b\x3b\x3e\x26\x26\x3a\xd8\xec\xea\xdb\xd9\xee\x1f\x0b\x1e\xf7\x5f\xfc" +"\x41\x07\x76\x80\x82\x7a\x7b\x97\x82\x9f\x1f\xe6\x0b\x06\x7b\x8c\x7f\x81\x7c\x1a\x88\x07\x7c\x97\x81\x9b\x8c\x1e\x0b\x24\xc6\x2b" +"\xec\x54\x1e\xfb\x15\x06\x74\x80\x83\x7a\x7b\x98\x0b\x32\x3f\x44\x2b\x2a\x3f\xd2\xe5\xe3\xd7\xd3\xe9\x1f\x0e\xf7\x6b\xf7\x27\x07" +"\xd1\xcb\x58\x53\x50\x3d\x5a\x2d\x1f\x0b\x8b\x8e\x1b\x98\x96\x96\x99\x96\x84\x94\x7f\x90\x1f\x93\x0b\x15\x61\x6b\x6d\x64\x64\xab" +"\x6c\xb5\x1f\x96\x06\xb5\xab\x0b\xf7\x04\xf7\x16\xf7\x3a\xf7\x37\xfb\x04\xf7\x18\xfb\x1f\x0b\xb5\xa7\x1d\x87\x1e\x0b\x15\xfb\x22" +"\x06\xf7\x24\xfb\x81\x05\x79\x95\x96\x84\x0b\x67\x1d\x9e\xa4\xa3\x77\x9f\x72\x1f\x0b\x1a\x7d\x97\x7f\x99\x95\x90\x8e\x99\x94\x1e" +"\x0e\x80\x9c\x9c\x94\x97\xa2\x1e\xac\x07\xaa\x83\x93\x0b\x06\x78\x83\x84\x7b\x7a\x93\x84\x9e\x1f\xf7\x11\x0b\x93\x6a\x1b\x68\x71" +"\x7c\x63\x68\x1f\x75\x73\x83\x0b\x1f\x8f\x06\xf7\x32\xfb\x29\xfb\x46\xfb\x3c\x05\x0b\x66\x66\x5e\x5e\x66\xb0\xb9\xb8\xaf\xb0\xb8" +"\x1f\x0b\xac\x52\x08\x79\x95\x8f\x87\x92\x1b\x92\x90\x8e\x0b\xf7\xe0\xf7\xb4\x15\xf7\x43\xf7\x74\x05\x97\x06\x0b\x94\x96\xa0\x1f" +"\xcf\x07\xa0\x82\x96\x7b\x7d\x0b\x1a\x7c\x96\x80\x9a\x92\x92\x8e\x93\x93\x1e\x0b\x1b\x9a\x96\x96\x9a\x93\x8b\x8c\x83\x93\x1f\x0b" +"\x9a\x94\x91\x9e\x96\x1e\xf7\x22\xf7\x86\x05\x0b\x71\x69\x6c\x6f\x73\x66\x66\x6f\xa3\xaa\xac\x0b\x82\x7b\x7a\x97\x82\x9f\x1f\x0b" +"\x82\x1e\x23\x37\x23\xdf\x05\x0b\x95\x9b\x9b\x7f\x94\x77\x1f\x0b\x7e\x9c\x9c\x94\x99\xa3\x1e\xd5\x07\x8a\x0b\x06\x75\x80\x82\x7b" +"\x7b\x97\x81\xa0\x1f\x0b\x83\x86\x88\x83\x82\x1e\xfb\x07\x2a\x05\x0b\x07\x76\x7f\x82\x7a\x7b\x96\x82\xa1\x1f\x0b\xf8\x8b\x16\xf7" +"\x4c\x07\xa0\x82\x96\x7a\x0b\x15\xfb\x6f\x06\xf3\xf7\xa9\x05\x93\x06\x0b\xd3\xfb\x1e\x18\x72\x99\x8c\x8a\xa7\x1b\x0b\x80\x99\x93" +"\x8e\x8d\x94\x96\x1e\x0e\xf7\x92\x15\x45\xfb\x05\xd1\x06\x0e\x01\x00\x01\xe3\x01\x05\x00\x01\x0a\x02\x01\x40\x03\x01\x87\xff\x02" +"\x87\xa0\x02\x8e\x02\x00\x01\x00\x02\x00\x03\x00\x08\x00\x38\x00\xbc\x01\x5e\x01\xcb\x02\x46\x02\x4d\x02\x8c\x02\xcf\x03\x3a\x03" +"\x68\x03\x6a\x03\x6c\x03\x72\x03\x9d\x03\xf9\x04\x25\x04\x75\x04\xeb\x05\x1b\x05\x6f\x05\xdc\x06\x07\x06\x5e\x06\xcb\x06\xde\x06" +"\xe9\x07\x32\x07\x44\x07\x8e\x07\xdf\x08\x60\x08\x63\x08\x6b\x08\x6d\x08\x70\x08\x73\x08\xa8\x08\xab\x08\xad\x08\xb0\x08\xb2\x08" +"\xb5\x08\xb8\x08\xba\x08\xbd\x08\xc0\x08\xc2\x09\x60\x09\x63\x09\x66\x09\x68\x09\x6b\x09\x91\x09\x94\x09\x9b\x09\x9e\x09\xa1\x09" +"\xb4\x09\xdf\x09\xf3\x0a\x27\x0a\x33\x0a\x51\x0a\x54\x0a\x8e\x0a\x91\x0a\x94\x0a\x97\x0a\xdb\x0a\xed\x0a\xf0\x0a\xf5\x0a\xf7\x0a" +"\xfa\x0a\xfd\x0b\x5e\x0b\x61\x0b\x64\x0b\x66\x0b\xb2\x0b\xb5\x0b\xb8\x0b\xbb\x0b\xbe\x0b\xeb\x0b\xee\x0b\xf0\x0c\x00\x0c\x03\x0c" +"\x5f\x0c\x6a\x0c\xc5\x0c\xf3\x0d\x35\x0d\x93\x0e\x11\x0e\x13\x0e\x6c\x0e\xcd\x0f\x7a\x10\x1b\x10\x35\x10\x5c\x10\x67\x10\x7a\x10" +"\x7f\x10\x98\x10\xe6\x10\xf1\x10\xf9\x11\x16\x11\x18\x11\x73\x11\x8a\x11\x8c\x11\x9e\x11\xb0\x11\xe8\x11\xfe\x12\x89\x12\xd9\x12" +"\xdf\x12\xe5\x12\xf4\x12\xfa\x13\x00\x13\x06\x13\x0d\x13\x13\x13\x19\x13\x35\x13\x43\x13\x56\x13\x5c\x13\x5e\x13\x61\x13\xc7\x14" +"\x1a\x14\x1d\x14\x7a\x14\xa5\x14\xa8\x14\xab\x14\xf5\x14\xf8\x15\x79\x15\xe7\x15\xee\x16\x02\x16\x43\x16\xe7\x16\xe9\x17\x55\x17" +"\x9e\x17\xce\x18\x5c\x18\x8b\x18\xb7\x18\xe2\x19\x00\x19\x71\x19\xb8\x1a\x22\x1a\x2f\x1a\xb4\x1b\x1a\x1b\x20\x1b\x7e\x1b\x8b\x1b" +"\xa5\x1b\xad\x1b\xb4\x1b\xc0\x1b\xe5\x1c\x47\x1c\x65\x1c\x93\x1c\x9a\x1c\xaf\x1c\xb7\x1c\xc3\x1c\xcb\x1c\xdd\x1c\xf4\x1c\xfc\x1d" +"\x03\x1d\x12\x1d\x19\x1d\x21\x1d\x4b\x1d\x58\x1d\x60\x1d\x68\x1d\x7f\x1d\xa0\x1d\xa8\x1d\xcb\x1d\xdd\x1d\xee\x1d\xf6\x1e\x0f\x1e" +"\x22\x1e\x39\x1e\x73\x1e\x7a\x1e\x99\x1e\xa1\x1e\xa9\x1e\xb8\x1e\xd2\x1e\xda\x1e\xf1\x1f\x30\x1f\x55\x1f\x5c\x1f\x64\x1f\x6b\x1f" +"\xaa\x1f\xd5\x1f\xde\x1f\xe6\x1f\xee\x1f\xf6\x1f\xfe\x20\x05\x20\x2b\x20\x8a\x20\xc2\x21\x25\x21\x84\x21\xdf\x22\x12\x22\xbb\x23" +"\x06\x23\x0e\x23\x16\x23\x19\x23\x58\x23\x69\x23\xbf\x23\xe9\x23\xeb\x24\x08\x24\x1d\x24\x25\x24\x2e\x24\x30\x24\x37\x24\x39\x24" +"\x54\x24\x5b\x24\x63\x24\x6c\x24\x74\x24\xb7\x24\xd9\x24\xdb\x25\x1e\x25\x20\x25\x5f\x25\xbb\x25\xbd\x25\xd1\x25\xd9\x25\xe6\x25" +"\xef\x26\x3e\x26\x74\x26\xd5\x26\xe0\x26\xe8\x26\xef\x27\x34\x27\x37\x27\x73\x27\x95\x27\xd4\x27\xde\x28\x0e\x28\x16\x28\x29\x28" +"\x57\x28\x83\x28\x8a\x28\xa6\x28\xa8\x28\xaf\x28\xb7\x28\xc2\x28\xc5\x28\xeb\x28\xfb\x29\x03\x29\x76\x29\x79\x29\xe7\x2a\x0d\x2a" +"\x66\x2a\x68\x2a\xc5\x2a\xcd\x2a\xd4\x2a\xdb\x2a\xdd\x2a\xe4\x2b\x44\x2b\x56\x2b\x5e\x2b\xa2\x2b\xa4\x2b\xde\x2b\xf5\x2c\x32\x2c" +"\x6e\x2c\x76\x2c\x98\x2c\xa8\x2d\x0b\x2d\x0e\x2d\x62\x2d\xa1\x2d\xa9\x2d\xb0\x2d\xbe\x2d\xd2\x2d\xda\x2d\xee\x2e\x3a\x2e\x41\x2e" +"\x57\x2e\x67\x2e\x70\x2e\x78\x2e\x80\x2e\xa2\x2e\xa4\x2e\xa7\x2e\xdb\x2e\xdd\x2e\xdf\x2f\x32\x2f\x34\x2f\x91\x30\x36\x30\xe1\x30" +"\xe4\x31\x13\x31\x16\x31\x60\x31\x62\x31\x64\x31\x67\x31\x69\x31\x6b\x31\x6d\x31\x6f\x31\x72\x32\x17\x32\x19\x32\x43\x32\x5c\x32" +"\x8b\x32\xc2\x33\x0b\x33\x60\x33\x87\x34\x0a\x34\x76\x34\xcd\x34\xfc\x35\x51\x35\xa3\x36\x32\x36\x3a\x36\x3d\x36\x63\x36\x65\x36" +"\xde\x37\x36\x37\x86\x37\xad\x37\xdd\x38\x29\x38\x97\x38\xe9\x38\xec\x39\x38\x39\x3b\x39\x97\x3a\x4a\x3a\x98\x3a\x9b\x3a\xcb\x3a" +"\xce\x3b\x16\x3b\x53\x3b\x61\x3b\x64\x3b\x80\x3b\x82\x3b\x8e\x3b\xba\x3b\xca\x3c\x6e\x3c\x70\x3c\x7b\x3c\x8e\x3c\xc7\x3d\x0c\x3d" +"\x4b\x3d\x8b\x3d\xc7\x3e\x27\x3e\x75\x3e\xdc\x3e\xf6\x3f\x3e\x3f\x55\x3f\xba\x40\x04\x40\x09\x40\x65\x40\x67\x40\xcc\x41\x18\x41" +"\x52\x41\x70\x41\xef\x42\x13\x42\x15\x42\x5a\x43\x52\x43\xf0\x44\x7f\x44\x82\x44\x9a\x44\xaa\x44\xde\x45\x12\x45\x6c\x45\xe7\x46" +"\x25\x46\x74\x46\xba\x47\x00\x47\x0c\x47\x5d\x47\xa2\x47\xf0\x48\x53\x48\x5a\x48\x61\x48\x72\x48\x7b\x48\xcb\x49\x41\x49\xad\x49" +"\xcc\x4a\x1b\x4a\x74\x4a\x98\x4a\x9e\x4a\xa6\x4a\xbd\x4a\xc6\x4b\x04\x4b\x0b\x4b\x45\x4b\xa8\x4b\xab\x4b\xb2\x4b\xca\x4c\x1f\x4c" +"\x22\x4c\x2e\x4c\x48\x4c\x62\x4c\xa8\x4d\x13\x4d\x52\x4d\x59\x4d\x60\x4d\x8b\x4d\x93\x4d\xe9\x4e\x41\x4e\x4b\x4e\x81\x4e\xa5\x4e" +"\xad\x4e\xd8\x4e\xdf\x4f\x4a\x4f\x9a\x4f\xc8\x4f\xf6\x50\x57\x50\xc0\x50\xe3\x50\xed\x51\x0a\x51\x39\x51\x47\x51\x4e\x51\x6d\x51" +"\xbc\x51\xc8\x51\xe9\x51\xf1\x52\x22\x52\x44\x52\x4b\x52\x67\x52\xba\x53\x63\x53\x9e\x54\x18\x54\x36\x54\x78\x55\x01\x55\x09\x55" +"\x79\x55\x81\x55\x89\x56\x11\x56\x63\x56\xa6\x56\xae\x56\xbe\x56\xcf\x56\xd2\x56\xf0\x56\xf3\x57\x1e\x57\x2b\x57\x32\x57\x84\x58" +"\x06\x58\x7d\x58\xa4\x58\xdc\x59\x31\x59\x84\x59\xd1\x5a\x3c\x5a\x44\x5a\x7a\x5a\x81\x5a\x91\x5a\xa5\x5a\xf0\x5a\xfd\x5b\x85\x5b" +"\xa2\x5b\xb6\x5b\xef\x5c\x25\x5c\xd1\x5d\x17\x5d\x94\x5e\x0e\x5e\x56\x5e\xa0\x5e\xc1\x5f\x22\x5f\x68\x5f\x6e\x5f\x76\x5f\x8f\x5f" +"\x96\x5f\xbb\x5f\xbc\x5f\xbe\x5f\xce\x5f\xd5\x5f\xdb\x5f\xdd\x5f\xfb\x60\x5f\x60\xa0\x61\x3e\x61\x64\x61\x8b\x61\xd7\x61\xfa\x62" +"\x26\x62\x54\x62\xfb\x63\xba\x64\x87\x64\xec\x65\x55\x65\x82\x65\xd4\x66\x4f\x66\x94\x67\x00\x67\x28\x67\x59\x67\xc6\x68\x1c\x68" +"\x1f\x68\x3c\x68\x6b\x68\x96\x68\xf9\x69\x49\x69\x6d\x69\x8a\x69\xe0\x6a\x3a\x6a\x86\x6a\xbd\x6a\xc0\x6a\xfe\x6b\x37\x6b\x88\x6b" +"\x90\x6b\x98\x6b\xe5\x6b\xe7\x6b\xf1\x6c\x03\x6c\x0f\x6c\xea\x6d\x4e\x6d\x50\x6d\x52\x6d\x69\x6d\x87\x6d\xe2\x6d\xf8\x6e\x59\x6e" +"\x86\x6e\xd3\x6e\xd6\x6e\xef\x6f\x37\x6f\x47\x6f\x4f\x6f\x56\x6f\x5d\x6f\x64\x6f\x6c\x6f\x74\x70\x08\x70\x1d\x70\x24\x70\x2b\x70" +"\x34\x70\x99\x0e\x0e\xf7\xec\xa2\x0a\x0e\xf7\x20\xf8\xef\x15\xae\xfb\x92\x05\x6f\x8f\x96\x7f\x9f\x1b\xa0\x96\x97\xa7\x8f\x1f\xad" +"\xf7\x92\x05\xb3\x16\xae\xfb\x92\x05\x6f\x8f\x96\x7f\x9f\x1b\xa0\x96\x97\xa7\x8f\x1f\xad\xf7\x92\x05\x0e\xf8\x1f\xf7\xf1\x15\xe1" +"\x27\x0a\x39\x06\x9a\xf7\x68\x05\x93\x07\x99\x80\x96\x7c\x7c\x82\x81\x77\x8a\x1e\x7b\xfb\x6b\x05\x3b\x06\x9a\xf7\x68\x05\x9f\x8d" +"\x80\x98\x7b\x1b\x7b\x82\x81\x77\x8a\x1f\x7c\xfb\x6b\x05\x3f\x2e\x1d\xd3\x06\x83\xfb\x05\x05\x36\x20\x0a\xdc\x06\x7c\xfb\x68\x05" +"\x82\x07\x7d\x8c\x95\x80\x99\x1b\x9b\x94\x95\x9f\x8c\x1f\x9b\xf7\x6c\x05\xdb\x06\x7c\xfb\x68\x8a\x84\x05\x7d\x8a\x97\x7e\x9a\x1b" +"\x9b\x93\x95\x9f\x8d\x1f\x9a\xf7\x6c\x05\xd9\x21\x0a\x41\x06\x60\xf7\x05\x15\x82\xfb\x05\x05\x3b\x06\x93\xf7\x05\x05\x0e\xf7\xa7" +"\xf8\xd3\x15\x38\x81\x4e\x4e\x42\x1a\x64\x9e\x66\xaa\x78\x1e\xa5\x7a\xa9\x81\xcb\x7f\xcf\x7e\x99\x87\xa1\x7e\x08\xa2\x7e\x98\x73" +"\x6f\x1a\x51\x50\x61\x38\x44\x4b\xac\xb3\x86\x1e\x89\x9c\x8b\x8b\x86\x90\x08\x8f\x86\x84\x8e\x85\x1b\x7a\x82\x80\x77\x1f\x3d\x07" +"\x77\x94\x80\x9c\x9c\x93\x96\x9f\x1e\x8f\x07\xa3\x74\xc0\x77\xb2\x89\x08\xfb\x04\x07\x27\x1d\xf7\x04\x07\xf0\x96\xcc\xc5\xda\x1a" +"\xb7\x78\xaf\x6a\xa1\x1e\x6f\x9e\x71\x93\x42\x99\x50\x96\x77\x90\x78\x97\x08\x76\x96\x7f\xa1\xa3\x1a\xc0\xc1\xb6\xcd\xc5\xc1\x6f" +"\x6b\x91\x1e\x78\x8e\x92\x84\x5c\x0a\xc6\x07\xa0\x83\x95\x7a\x7d\x82\x82\x7d\x88\x1e\x6e\xa1\x71\x94\x64\x90\x08\xb8\x34\x1d\x0e" +"\xf7\xff\xf7\x83\x15\x44\x53\x53\x45\x46\xc3\x53\xd0\xd0\xc3\xc3\xd0\xd0\x53\xc4\x48\x1f\x88\x60\x15\xba\xaf\x67\x5c\x5e\xf7\x36" +"\x1d\xfb\x0d\xf8\x32\x15\x44\x53\x54\x44\x46\xc3\x53\xd0\xd0\xc3\xc3\xd1\xcf\x53\xc4\x48\x1f\x88\x60\x15\xba\xaf\x67\x5d\x5d\xf7" +"\x36\x1d\xf7\x98\xfb\x76\x15\x98\x8f\x91\x92\x96\x1a\x96\x82\x95\x81\x88\x86\x8a\x89\x86\x1e\xfc\x0f\xfb\x0d\x05\x7d\x87\x85\x85" +"\x80\x1a\x80\x95\x81\x95\x90\x8e\x8b\x8d\x90\x1e\x0e\xf8\x1a\x16\xc8\x21\x0a\x69\x06\x73\xae\x9d\xa6\x9e\xb6\x98\xbb\x19\x93\x06" +"\x4f\x1d\x5d\x06\x7f\x5b\x7f\x67\x78\x67\x20\xf7\x3a\x18\x6d\xbb\x7f\xa5\xa0\x1a\xb1\xb0\xae\xb3\xa2\x9b\x84\x77\xa2\x1e\xae\x9d" +"\x05\x99\x92\x90\x92\x96\x1a\x99\x7f\x97\x7e\x86\x86\x89\x87\x83\x1e\x83\x87\x05\x98\x75\x76\x91\x74\x1b\x45\x51\x54\x48\x6d\x90" +"\x80\xb5\x48\x1f\x49\x76\x61\x52\x47\x1a\x34\xd0\x42\xdd\xb8\xaf\x9e\xb3\xa9\x1e\x6e\xb9\x15\x69\x75\x6e\x77\x6b\x1b\x56\x5e\xbe" +"\xc6\xbd\xaa\xb2\xbb\x97\x1f\x0e\xf7\x5f\xf8\xef\xaa\x0a\x0e\xf8\x4a\xf8\xef\x15\x7f\x84\x84\x6f\x78\x1f\x43\xfb\x02\x64\xfb\x07" +"\x25\x1a\x27\xad\x22\xd0\xfb\x01\x1e\x63\xa3\x94\x82\x98\x1b\x9a\x96\x96\x99\x90\x8a\x8d\x88\x91\x1f\x47\xf7\x0c\x6c\xef\xf4\x1a" +"\xf3\xaa\xf0\xcf\xf7\x0b\x1e\x8e\x91\x8c\x8d\x90\xa4\x1d\xf7\x3c\xf8\xef\x15\x7c\x80\x80\x7d\x86\x8c\x89\x8e\x85\x1f\xcf\xfb\x0b" +"\xaa\x26\x23\x1a\x22\x6c\x27\x47\xfb\x0c\x1e\x88\x85\x8a\x89\x86\x1a\x7d\x97\x80\x99\x97\x92\x92\xa7\x9e\x1e\xd3\xf7\x03\xb2\xf7" +"\x06\xf1\x1a\xee\x69\xf4\x46\xf7\x02\x1e\xb2\x73\x82\x95\x7e\x1b\x0e\xf7\xa6\xf8\x4e\x15\xfb\x12\xb2\x05\x8d\x84\x87\x8c\x87\x1b" +"\x7e\x7f\x80\x7d\x7d\x92\x84\x9c\x87\x1f\xf7\x12\x63\x3e\x23\x05\x83\x81\x8a\x88\x84\x1a\x7d\x97\x80\x99\x95\x91\x8f\x97\x93\x1e" +"\xd9\xf3\xd8\x23\x05\x7e\x94\x90\x88\x95\x1b\x9a\x96\x96\x99\x91\x88\x91\x85\x93\x1f\x3f\xf3\xf7\x12\xb3\x05\x9d\x90\x92\x92\x99" +"\x1a\x98\x7f\x97\x7f\x88\x82\x89\x8a\x86\x1e\xfb\x12\x63\x05\xf7\x14\x07\xa1\x82\x96\x7a\x7a\x82\x80\x75\x1e\x0e\xf7\xda\xf7\x93" +"\x15\xf7\x43\x27\x0a\xfb\x43\xf7\x54\x06\x4f\x0a\xfb\x53\xfb\x43\x07\x82\x89\x05\x7c\x89\x83\x83\x7d\x1a\x7a\x96\x82\xa0\x1e\xf7" +"\x43\xfb\x55\x06\x39\x1d\x96\x9f\x1e\x0e\xf0\x1d\xc9\x0a\xf7\xbb\xf7\x10\x6a\x0a\xf8\x7b\xf9\x04\x15\x90\x95\x8c\x8d\x90\x1a\x98" +"\x7f\x96\x7d\x7f\x84\x86\x7c\x84\x1e\xfb\xdc\xfd\x3f\x05\x87\x83\x8a\x87\x86\x1a\x7e\x97\x80\x99\x97\x92\x90\x9a\x92\x1e\x0e\xf8" +"\x81\xf7\xf2\x15\xf7\x32\x3d\xf7\x00\xfb\x06\xfb\x07\x3d\xfb\x00\xfb\x32\x1e\x29\x07\xfb\x33\xd9\xfb\x00\xf7\x07\xf7\x06\xd9\xf7" +"\x00\xf7\x33\x1e\xfb\xe1\xe7\x15\xc9\x9d\xcc\xa8\xb8\x1e\xab\xa0\xab\x9c\xb4\x1b\xb3\xab\x7a\x6b\xa0\x1f\xa8\x5e\x9d\x4a\x4d\x1a" +"\x34\x07\x4e\x79\x49\x6e\x5e\x1e\x6b\x76\x6a\x7a\x64\x1b\x63\x6a\x9c\xab\x76\x1f\x6e\xb8\x79\xcd\xc8\x1a\x0e\xf7\xdb\xf8\xf9\x15" +"\xfb\x54\x4f\x05\x78\x85\x85\x85\x7d\x1a\x7e\x97\x7f\x97\x8d\x95\x8d\x8c\x8f\x1e\xf7\x11\xb2\x05\xfc\x81\xfb\x1a\x07\x2b\x1d\xf7" +"\xd4\x23\x1d\xfb\x1a\x06\x0e\xf7\x1b\xbe\x15\xc1\xb9\xc9\xc4\xde\xdb\x08\xf7\x12\xf7\x0c\x9f\xa8\xc6\x1a\xe8\x32\xdc\x26\x4d\x51" +"\x6f\x5b\x65\x1e\x77\x72\x7e\x6d\x78\x1a\x7f\x96\x80\x99\x98\x93\x92\x9b\x8f\x1e\xc5\x9c\xc6\xb4\xcc\x1b\xd5\xcb\x52\x4a\x60\x79" +"\x72\x2e\x31\x1f\x38\x3c\x3f\x45\x45\x4e\x82\x83\x18\x48\xf8\x29\xdc\x07\x4f\x0a\x6d\x07\x0e\xf7\xab\xf7\xf9\x15\x76\x80\x81\x7b" +"\x7b\x96\x82\xa0\x1f\xeb\x89\xd8\x4f\x40\x1a\x43\x42\x4e\x33\x53\x58\x9d\xae\x5b\x1e\x91\x82\x86\x8d\x84\x1b\x7e\x80\x80\x7e\x7b" +"\x98\x7e\xaf\x79\x1f\x6f\xbf\xba\x7e\xbe\x1b\xf7\x0a\xeb\xde\xf0\xcc\x5d\xc9\x45\xaa\x1f\xc8\xa8\xad\xba\xc3\x1a\xe4\x3c\xcf\x24" +"\x56\x58\x7b\x6d\x63\x1e\x74\x79\x7d\x7a\x7f\x1a\x7e\x96\x80\x99\x93\x91\x8e\x91\x90\x1e\xb3\xaf\xb4\x9c\xc7\x1b\xd5\xc3\x5d\x4f" +"\x6b\x79\x6c\x6e\x78\x1f\x7c\x73\x77\x86\x64\x1b\x0e\xf8\x07\xf7\x3a\x15\xfb\x07\x44\x07\x37\x1d\xf7\x2c\x39\x0a\x6e\xf7\x07\xa8" +"\x23\x1d\x6e\xf8\x16\x2e\x06\xfb\x7a\xfc\x14\x05\x56\x07\xf7\xa3\xbe\x15\xfb\x6d\x06\xf7\x5e\xf7\xe3\x05\x9a\x06\x0e\xf7\x58\xf8" +"\xbc\x15\xf7\x80\x27\x0a\xfb\xb4\xfb\xa1\x06\x7b\x95\x80\x9a\x91\x90\x8d\x91\x98\x1e\xa1\xb7\xb3\x95\xb3\x1b\xdc\xc2\x51\x36\x27" +"\x4a\x47\x2c\x53\x57\xa1\xb6\x5b\x1f\x93\x82\x86\x8d\x84\x1b\x7d\x80\x80\x7d\x7c\x99\x7c\xae\x75\x1f\x6a\xbe\xbd\x7b\xc1\x1b\xf7" +"\x0f\xe2\xe5\xf7\x13\xf7\x06\x3e\xdd\x21\x60\x69\x83\x78\x5a\x1f\x0e\xf7\x4a\xf7\x9a\x15\x8a\x95\x8b\x94\x90\x1a\xc7\x9b\xc7\xa8" +"\xb5\x1e\xd3\xbb\xd8\xb8\xd6\x1b\x9d\x9a\x89\x86\x95\x1f\x86\x95\x8f\x8a\x91\x1b\x99\x95\x96\x98\xa2\x66\x9c\x5a\x4a\x49\x72\x5d" +"\x55\x1f\x40\x4c\x67\x36\xfb\x09\x1a\xfb\x41\xe0\xfb\x0e\xf7\x0e\xef\xd9\xe0\xf7\x01\xf2\x3d\xe0\x2c\x49\x50\x65\x48\x67\x1e\x92" +"\x42\x15\xa2\xb3\x96\x9c\x99\x9b\x08\xae\xab\xb1\x9e\xaf\x1b\xcd\xc2\x4d\x40\x3a\x55\x4d\x44\x40\x5b\xbb\xf4\x70\x1f\x0e\xf8\x45" +"\xf8\xb0\x15\xfb\x34\xfc\x8a\x05\x89\x85\x8a\x87\x87\x1a\x7d\x96\x80\x99\x99\x91\x91\x9d\x91\x1e\xf7\x37\xf8\x92\x05\xd1\xfc\x14" +"\x3b\x07\x58\x0a\xa8\xf7\xad\x07\x0e\xf8\x18\xf7\xcc\x15\xca\xac\xaa\xb9\xc5\x1a\xe6\x38\xd7\x28\x28\x38\x3f\x30\x51\xab\x5d\xca" +"\x6a\x1e\x48\x6b\x65\x55\x4c\x1a\x29\xe1\x3b\xf6\xf5\xe1\xdb\xed\xca\x64\xc2\x49\xaa\x1e\x31\xf7\x91\x15\xd5\xc5\x57\x49\x4d\x52" +"\x5b\x42\x42\x52\xbb\xc9\xcc\xc5\xc0\xd1\x1f\xfb\xaa\x04\xdd\xc8\x56\x44\x44\x4d\x53\x3d\x3c\x4d\xc3\xd2\xd0\xc8\xc2\xd8\x1f\x0e" +"\xf8\x65\xf7\xe7\x15\x8c\x81\x8b\x82\x87\x1a\x4e\x7b\x4f\x6e\x61\x1e\x43\x5b\x3e\x5e\x40\x1b\x79\x7c\x8e\x90\x81\x1f\x90\x81\x87" +"\x8c\x85\x1b\x7d\x81\x80\x7d\x74\xaf\x7a\xbd\xcc\xcd\xa4\xb9\xc1\x1f\xd6\xca\xaf\xe0\xf7\x08\x1a\xf7\x42\x36\xf7\x0e\xfb\x0e\x27" +"\x3d\x36\xfb\x01\x24\xd9\x36\xea\xcd\xc5\xb1\xce\xb0\x1e\x84\xd4\x15\x74\x63\x80\x7a\x7c\x7b\x08\x69\x6c\x65\x77\x67\x1b\x49\x54" +"\xc9\xd6\xdc\xc1\xc9\xd2\xd6\xba\x5b\x22\xa7\x1f\x0e\xf7\xbb\xf7\x10\xf7\x2c\x1d\xaa\xb2\xb2\x6b\xa9\x61\x1f\x80\xf7\xba\x6a\x0a" +"\xf7\x63\xf7\x2d\xaa\x0a\x39\xf7\x9d\x6a\x0a\xc7\xf7\xad\x15\xf8\x3e\xfb\x7d\x05\x88\x90\x91\x8a\x90\x1b\x93\x93\x90\x92\x8f\x1f" +"\x8d\x8e\x05\x8d\x8f\x8c\x8f\x8f\x1a\x94\x86\x92\x80\x91\x1e\xfb\xed\xf7\x50\xf7\xee\xf7\x50\x05\x96\x91\x90\x92\x94\x1a\x8f\x8a" +"\x8f\x88\x8f\x1e\x8a\x8e\x05\x93\x86\x83\x90\x83\x1b\x87\x86\x89\x88\x85\x1f\x0e\xf8\x9e\xf7\xdb\x15\x57\x0a\xfc\x50\x26\x1d\xf8" +"\x50\xfb\x21\x6b\x0a\x0e\xf8\xaa\xf7\xad\x15\xfc\x3f\xf7\x7d\x05\x8e\x84\x87\x8d\x87\x1b\x82\x84\x86\x83\x86\x1f\x8a\x88\x05\x88" +"\x87\x8a\x87\x87\x1a\x82\x90\x84\x96\x85\x1e\xf7\xee\xfb\x50\xfb\xee\xfb\x50\x05\x80\x85\x86\x84\x82\x1a\x88\x8d\x86\x8d\x87\x1e" +"\x8c\x88\x05\x84\x8f\x94\x86\x92\x1b\x91\x90\x8c\x8e\x91\x1f\x0e\xf7\xdc\xf7\x88\x15\xf7\x10\xc5\xb4\xb6\xd6\x1a\xe9\x41\xc9\xfb" +"\x02\x52\x77\x86\x64\x30\x1e\x7f\x86\x05\x45\x07\x27\x1d\xb0\x07\xa3\xbe\xa8\x92\xb6\x1b\xdc\xc3\x60\x4c\x56\x5d\x63\xfb\x0b\x5a" +"\x1f\x45\x07\x39\x1d\x95\xa0\x1e\x62\xfb\x05\x15\x66\x72\x75\x6b\x6b\xa4\x74\xb0\x1f\xa7\x06\xaf\xa4\xa2\xab\xab\x72\xa1\x67\x1f" +"\x0e\xf8\x31\xf7\x22\x15\xb2\x06\xa0\x96\x93\x9d\x97\x84\x94\x7f\x8e\x1f\xf7\x9f\x07\xe8\x44\xd1\x2e\xfb\x08\x36\xfb\x03\xfb\x2c" +"\x1e\xfb\x33\x07\x43\x9e\x4d\xb0\x58\x1e\x57\xb0\xb8\x73\xc9\x1b\xd9\xd8\xac\xad\x98\x80\x96\x7c\x85\x86\x89\x87\x86\x1f\x73\x71" +"\x6a\x80\x5a\x1b\x5b\x6a\x9c\xb0\x71\x1f\x6d\xb6\x7b\xc2\xc6\x1a\xf7\x30\x07\xf7\x12\xc9\xe4\xe2\xcc\xba\x5c\x4a\x1e\x63\x07\x23" +"\x88\x43\x4f\x37\x1a\x42\xc7\x54\xdd\x96\x94\x8c\x8d\x99\x1e\xbd\x04\x89\x7b\x86\x8b\x81\x1b\x54\x65\xab\xb9\xc1\xc0\xb4\xd2\x8c" +"\x1f\x0e\x28\x1d\x0e\xf7\x01\x1d\xbf\xaa\xa4\xc4\x1d\x90\x0a\x9b\x0a\x0e\x25\x0a\x0e\xf7\x3f\xf7\x9e\x15\xf7\x1a\x64\x06\x76\x94" +"\x81\x9c\x9c\x94\x96\x9f\x1e\xf7\x15\x34\x1d\x64\xfb\x1a\xf7\x57\xf7\xc3\x30\x2b\x0a\xf7\x22\xfc\x5c\x07\x20\x1d\xbc\xfc\x61\x5a" +"\x20\x0a\xf7\x7e\x21\x0a\xfb\x19\x06\x0e\x7f\x1d\x0e\x80\x1d\x23\x0a\x0e\x9d\x0a\xb5\x1d\x0e\x41\x0a\x0e\x81\x1d\x49\x1d\x0e\x2d" +"\x1d\x0e\x84\x1d\xf7\xc7\x7c\x15\xf7\x22\x90\xf5\xf7\x12\xf7\x38\x1a\xf7\x39\xfb\x04\xf7\x16\xfb\x23\xfb\x22\xfb\x04\xfb\x16\xfb" +"\x39\x37\xa8\x3e\xc0\x52\x1e\xab\x68\xa7\x7a\xbc\x7a\x3a\x52\x18\x83\x85\x86\x84\x83\x1a\x7c\x96\x7f\x99\x8e\x8f\x8c\x8c\x8f\x1e" +"\x98\xba\xca\x95\xa8\x1b\xa5\x99\x88\x81\xa6\x1f\x81\xa9\x96\x88\x9c\x1b\xa4\xa3\x92\x9d\xab\x1f\xa0\x96\x92\x93\x97\x1a\x9a\x80" +"\x96\x7d\x86\x86\x8a\x87\x86\x1e\x77\x6c\x7b\x85\x77\x1b\x7f\x84\x8d\x93\x73\x1f\x97\x6d\x74\x8f\x6c\x1b\x7b\x82\x8a\x88\x77\x1f" +"\xa4\xf8\xc8\x15\xf7\x07\xe5\xfb\x00\xfb\x1d\xfb\x1a\x30\xfb\x02\xfb\x03\xfb\x04\x30\xf7\x02\xf7\x1b\xf7\x19\xe6\xf7\x03\xf7\x01" +"\x1f\x0e\x47\x0a\x0e\x69\x1d\x0e\x61\x0a\x31\x1d\x0e\xf7\x9c\x16\xca\x06\xf7\x66\xf8\x94\x05\xa6\x06\xa1\x96\xf7\x1c\x1d\xd2\x06" +"\xfb\x4f\xfc\x5c\xfb\x47\xf8\x5c\x05\xcf\x44\x1d\xfb\x2b\x22\x1d\xa7\x06\x0e\x59\x1d\x0e\xf7\x38\x1d\xa0\x97\xb4\x1d\x31\x0a\x0e" +"\x6c\x1d\x0e\xf7\xdb\xf8\xbc\x15\xe7\x23\x1d\xfb\x24\xfd\x69\xf7\x24\x23\x1d\x2f\x06\x0e\xf7\x34\xf9\x19\x15\x9a\x84\x84\x90\x7f" +"\x1b\x7d\x7f\x80\x7e\x86\x8c\x87\x8f\x83\x1f\xf7\xdc\xfd\x3f\x05\x7c\x92\x92\x86\x97\x1b\x99\x97\x96\x98\x90\x8a\x8e\x86\x94\x1f" +"\x0e\xf7\xa6\x44\x15\x2f\x06\xd6\x0a\xf7\x24\xf9\x69\xfb\x24\x06\xd6\x0a\xe7\x06\x0e\xf7\xc0\xf8\xfc\x15\xfb\x4a\xfb\x73\x05\x83" +"\x82\x89\x86\x84\x1a\x7d\x96\x80\x9a\x94\x91\x8f\x96\x94\x1e\xf7\x22\xf7\x43\xf7\x23\xfb\x43\x05\x80\x93\x92\x87\x94\x1b\x9a\x96" +"\x96\x99\x92\x89\x8f\x83\x95\x1f\x0e\xf8\xdd\xfb\x08\x15\x4f\x1d\xfc\xce\x20\x0a\x0e\xf8\x1b\xf8\xec\x15\xfb\x26\x06\xf7\x28\xfb" +"\x81\x05\x79\x96\x95\x84\x9a\x1b\x9e\x9b\x99\x9c\x90\x8a\x91\x89\x90\x1f\x0e\x48\x1d\x0e\xf7\x2a\xf8\xef\x15\x26\x06\xf7\x0d\x1d" +"\xd6\x06\x4d\xbb\xc3\x6e\xd2\x1b\xf7\x0f\xee\xf0\xf7\x11\xf7\x11\x29\xed\xfb\x10\x45\x4f\x6c\x50\x5e\x1f\xf7\x3e\xb2\x15\xee\xd7" +"\x3f\x29\x2b\x3e\x3e\x2b\x2c\x3e\xd8\xec\xea\xd7\xd9\xe9\x1f\x0e\x49\x0a\x0e\x9a\x0a\x0e\x2c\x1d\x0e\xf7\xa9\xf8\x04\x15\xf7\x4c" +"\x3e\x1d\xfb\x4c\xc2\x06\xb9\xb6\xab\xca\xb0\xa8\x88\x83\xc5\x1e\x8a\x92\x8f\x8b\x8d\x1b\x9b\x96\x95\x9a\x98\x83\x94\x7d\x8e\x1f" +"\x92\x6b\x46\x91\x63\x1b\x2f\x48\x55\x40\x1f\x54\x39\x52\x0a\xdd\xfb\xd1\x2f\x29\x0a\xf7\xd0\x21\x0a\xfb\x40\x06\x0e\xa1\x0a\x51" +"\x52\x4c\x8c\x08\xfb\x08\x06\x76\x80\x83\x79\x7b\xd2\x1d\x0e\xb8\x1d\x0e\x32\x1d\x89\x87\x0a\xca\x1d\x91\x0a\x0e\x42\x0a\x0e\xf7" +"\x0a\xf8\x37\x15\x3b\x2f\x0a\xa8\xfb\xd1\x6e\x06\x76\x80\x82\x7b\x7b\x97\x81\x9e\x1f\xf7\x01\x38\x0a\x6f\xf7\x93\x06\xc0\xaf\xa9" +"\xa2\xad\x1b\xaa\xa7\x6b\x68\x1f\xfb\xcf\xdb\x07\x61\x1d\x6e\xf7\x93\x06\xc0\xaf\xa8\xa2\xac\x1b\xac\xa7\x6d\x69\x1f\xfb\xd2\xdb" +"\x07\x9f\x97\x53\x1d\x6e\xf7\xa3\x06\xc8\x59\xbd\x4e\x62\x6d\x7a\x5b\x63\x1e\xb7\x73\x6b\xa0\x61\x1b\x63\x6e\x7b\x65\x6c\x1f\x0e" +"\x6a\x1d\x0e\x2c\x0a\x0e\x95\x0a\xf8\x5c\xf7\xf1\x15\xc6\x5c\x56\xa4\x41\x1b\xfb\x13\x2a\x2f\xfb\x0b\xfb\x0c\xed\x2f\xf7\x12\xd4" +"\xc2\xa5\xc4\xb9\x1f\xfb\x74\x2f\x52\x0a\xf7\x55\x23\x1d\x5a\xf8\x87\xbc\x06\xa0\x96\x94\x9c\x9c\x81\x93\x75\x1f\x26\x06\xfb\x43" +"\x66\x15\xee\xd7\x45\x30\x32\x3f\x44\x2a\x2a\x3f\xd1\xe6\xe4\xd7\xd2\xea\x1f\x0e\x6b\x1d\x0e\x3e\x0a\x0e\x83\x1d\x0e\x28\x0a\x0e" +"\xf7\xe8\x16\xf7\x3a\xf8\x04\x05\xb0\x06\x62\x1d\xfb\x2c\x2f\x0a\xc7\x06\xfb\x22\xfb\xd1\x05\x7f\x06\xfb\x25\xf7\xd1\x05\xc4\x3d" +"\x1d\xfb\x2c\x2f\x0a\xb1\x06\xf7\x3c\xfc\x04\x05\x0e\x40\x0a\x0e\xb3\x1d\x4e\x0a\x82\x7b\x74\x1d\x9b\x80\x94\x71\x1d\x83\x7a\x4c" +"\x0a\x0e\x4a\x0a\x0e\xf7\xdc\xf8\x82\x15\xab\x9e\xa1\xaa\x8f\x1e\xa2\x8e\x93\x91\x9c\x1a\x9a\x80\x95\x79\x51\x5d\x5b\x4e\x1e\xfb" +"\x3d\x07\x69\x75\x75\x6a\x89\x1e\x77\x89\x82\x83\x7a\x1a\x7b\x94\x83\x9f\x89\x1e\xac\x89\xa1\x75\x69\x1a\xfb\x3d\x07\x4e\xb9\x5b" +"\xc5\x9d\x96\x95\x9a\x9c\x83\x91\x74\x8e\x1e\x6c\x90\x78\xa0\xab\x1a\xf7\x3d\x07\xb3\x7f\xa2\x6e\xa0\x1e\xa8\xa0\x97\xa3\xb3\x1a" +"\x0e\xf7\xda\xf9\xcd\x15\x58\xfe\xc7\xbe\x06\x0e\xf7\xa5\x7e\x15\x6b\x78\x75\x6c\x87\x1e\x74\x88\x83\x85\x7a\x1a\x7c\x96\x81\x9d" +"\xc5\xb9\xbb\xc8\x1e\xf7\x3d\x07\xad\xa1\xa2\xac\x8d\x1e\x9f\x8c\x94\x93\x9c\x1a\x9b\x82\x93\x77\x8d\x1e\x6a\x8d\x75\xa2\xac\x1a" +"\xf7\x3d\x07\xc8\x5d\xbb\x51\x79\x80\x81\x7c\x7a\x93\x85\xa2\x88\x1e\xaa\x87\x9e\x75\x6b\x1a\xfb\x3d\x07\x63\x97\x74\xa8\x76\x1e" +"\x6e\x76\x7f\x73\x63\x1a\x0e\xf8\x7d\xf7\xe2\xf0\x0a\x89\x8c\xb3\x57\x1f\xb7\x53\x7c\xf7\x34\x1d\x7d\xf7\x00\x0a\xc1\xb7\x94\x7a" +"\x0a\x56\xcb\xa1\x7f\xac\x1b\xac\xa9\x9d\xb5\xaf\x1f\x9e\xa0\x92\x97\xf7\x09\x0a\x0e\xf7\x95\xfb\x2c\x15\x8a\x83\x8b\x85\x88\x1a" +"\x73\x9f\x79\xa4\xa4\x9f\x9d\xa3\x8c\x8b\x91\x8a\x95\x1e\x79\xf7\xd4\x05\xa1\x89\x83\x95\x7b\x1b\x7b\x82\x81\x75\x8a\x1f\xab\xf7" +"\x23\x15\xac\xa5\xa2\xaa\xaa\x71\xa2\x6a\x1f\x7f\x06\x69\x71\x74\x6c\x6c\xa5\x74\xad\x1f\x0e\xf7\xa7\xf8\x83\x15\x64\x83\x75\x83" +"\x74\x7c\x08\x57\x68\x6c\x53\x4c\x1a\x2d\xd3\x3c\xea\x7f\x1e\x21\x2b\x0a\xf5\x07\xd3\x91\xd7\xaf\xa8\x1a\x9a\x81\x95\x7d\x83\x87" +"\x89\x84\x82\x1e\x71\x6a\x5f\x7d\x5e\x1b\x36\x4c\xc6\xda\xdd\xca\xc4\xe4\xc8\xb5\x72\x63\x91\x1f\x78\x8e\x92\x83\x5c\x0a\xc7\x07" +"\x9e\x81\x96\x7a\x82\x84\x87\x82\x86\x1e\x73\x9d\x64\x98\x69\x8c\x08\xed\x34\x1d\x0e\xf7\x56\xbe\x15\xac\xb8\x9d\xc5\xc9\x1a\x9c" +"\x8a\x9a\x88\x9e\x1e\xde\x44\x0a\x2c\x06\x89\x94\x8b\x8b\x81\xad\x08\x83\xa8\x86\xa4\x9c\x1a\xbe\xb7\xb6\xbf\xac\xa6\x7d\x6b\xa4" +"\x1e\x81\x94\x90\x87\x93\x1b\x98\x98\x97\x97\x97\x7f\x9c\x76\x9e\x1f\xa5\x6d\x69\x98\x65\x1b\x3a\x4a\x4a\x3a\x71\x8f\x77\xa0\x48" +"\x1f\x34\x20\x0a\xef\x06\x8d\x7e\x8c\x77\x7d\x1a\x35\x62\x39\x5f\x89\x1e\x7b\x80\x81\x7d\x7a\x97\x82\x9f\x1f\xf7\xd7\x06\xbc\xb4" +"\xb7\xc0\x9b\x80\x96\x7c\x7c\x82\x82\x79\x8a\x1f\x6e\x88\x7c\x7a\x74\x1b\x0e\xb2\x0a\xf7\xdb\xf7\x7d\x15\xf7\x11\x06\x9e\x93\x92" +"\x9b\x9c\x83\x92\x78\x1f\xfb\x00\x06\xf7\x32\xf7\x7c\x05\x9f\x27\x0a\xfb\x01\x06\x75\x80\x59\x0a\xa8\x06\xfb\x21\xfb\x64\xfb\x21" +"\xf7\x64\x05\xa8\x23\x1d\xfb\x03\x20\x0a\xa0\x06\xf7\x31\xfb\x7c\x05\x21\xf7\x33\x1d\x5b\xfb\x11\xf7\x33\x1d\x34\x3a\x20\x0a\xf7" +"\x6a\x39\x0a\x3a\xe2\xf7\x11\xf7\x0a\x0a\xfb\x11\x06\x0e\xf7\xdb\xf8\x0e\x15\xdb\x07\xcb\xb7\xb6\xcc\x9b\x9a\x89\x85\x9c\x1e\x89" +"\x95\x8d\x8a\x8f\x1b\x98\x96\x97\x98\x96\x86\x92\x7f\x90\x1f\x94\x77\x6e\x90\x71\x1b\x33\x46\x45\x33\x1f\x3b\x30\x07\x20\x1d\xe6" +"\xfb\x97\x06\x4b\x62\x5f\x4f\x7f\x7c\x8d\x8d\x83\x1e\x92\x72\x88\x8c\x85\x1b\x7e\x81\x80\x7d\x82\x90\x83\x95\x86\x1f\x82\x9e\xab" +"\x84\xa5\x1b\xe0\xcf\xcf\xe0\x1f\xf7\x9d\xe6\x07\x53\x0a\x0e\xf8\x8a\xf8\xef\x15\xfb\x6d\x06\x42\x4e\x55\x49\x7b\x8e\x81\x92\x7d" +"\x1f\x49\x7f\x69\x6e\x5e\x1a\x5a\xb7\x5f\xf0\x53\x1e\xcc\x67\x05\xe9\x57\xad\x6c\x6b\x1a\x65\x65\x6d\x5a\x1e\xfb\x34\xcb\x06\x9d" +"\x81\x96\x7b\x7b\x81\x80\x79\x1e\xfb\x06\xf7\x68\x07\xdb\xc6\xbd\xcf\x9c\x88\x96\x84\x9a\x1f\xcb\x93\xae\xaa\xba\x1a\xbe\x64\xb4" +"\x2a\xc0\x1e\x53\xa9\x05\xfb\x09\xcb\x6e\xa3\xad\x1a\xb1\xb2\xab\xb9\x1e\xf7\x37\x4c\x06\x79\x95\x80\x9b\x9b\x95\x96\x9d\x1e\xfb" +"\x0c\xfb\x61\x15\xca\x6a\xb4\x63\x70\x1a\x76\x71\x7d\x61\x8a\x1e\x81\x06\x89\x8a\x8b\x8a\x87\x1f\x79\x9c\x6d\x9e\x55\xa9\x4d\xad" +"\x18\x3c\xb7\x60\xb0\xa5\x1a\xa2\xa8\x9b\xb3\x1e\x92\x06\x8e\x8d\x8b\x8c\x8f\x1f\xa7\x73\xa5\x7a\xcb\x69\x08\x0e\xf7\x5b\xf7\x31" +"\x15\x73\xaf\xa7\x82\xb1\x1b\xb1\xa4\x94\xa3\xb0\x1f\xbf\x57\x05\x82\x94\x92\x88\x92\x1b\x9a\x96\x96\x99\x92\x86\x94\x84\x92\x1f" +"\x57\xbf\x05\xa2\xac\x95\xa8\xb1\x1a\xaf\x83\xa5\x73\xaf\x1e\xbf\xbe\x05\x95\x95\x8d\x8e\x94\x1a\x9a\x80\x96\x7c\x83\x85\x88\x82" +"\x82\x1e\x57\x58\x05\xa2\x6a\x6c\x95\x65\x1b\x65\x6e\x82\x73\x69\x1f\x57\xbe\x05\x94\x81\x86\x8e\x83\x1b\x7c\x80\x80\x7d\x83\x8e" +"\x85\x94\x82\x1f\xbf\x58\x05\x75\x6b\x81\x6c\x67\x1a\x66\x94\x71\xa3\x67\x1e\x56\x57\x05\x82\x82\x88\x85\x83\x1a\x7d\x97\x80\x99" +"\x93\x90\x8e\x94\x95\x1e\xf7\x2c\xf7\xc4\x15\xcd\xc0\x57\x4a\x4a\x56\x57\x4a\x4a\x56\xbf\xcc\xcb\xc0\xc0\xcb\x1f\x0e\xf7\x7a\xf8" +"\xef\x15\xae\xfb\x92\x05\x70\x8f\x96\x7e\x9f\x1b\xa0\x96\x97\xa7\x8f\x1f\xad\xf7\x92\x05\x0e\xf7\x79\xf8\xec\xf7\x2f\x1d\x9a\x1b" +"\x9e\x9b\x99\x9c\x8f\x8a\x91\x89\x91\x1f\xf7\x1e\xf7\x6b\xf7\x2f\x1d\x99\x1b\x9f\x9b\x99\x9c\x8f\x8a\x91\x89\x91\x1f\x0e\xc2\xf7" +"\x66\xd5\x1d\x9c\xfb\x59\xd5\x1d\x0e\xc2\xf7\x66\xec\x1d\x8e\x93\x1a\x99\x80\x96\x7d\x83\x83\x87\x83\x82\x1e\x0e\xf8\xb9\xd3\x1d" +"\x0e\xbe\x1d\xf7\xd6\xf8\x04\x15\x23\x2f\x0a\xbf\xfb\xd1\x43\x35\x0a\xf7\x56\x39\x0a\x45\x06\x8a\x87\x0a\xf7\x3b\xf8\x04\x15\xcd" +"\x44\x1d\x49\xc0\x06\xb8\xa6\xae\xae\x98\xa0\x87\x85\xa1\x1e\x87\x96\x8c\xf7\x2b\x1d\x77\x66\x92\x76\x1b\x4e\x58\x50\x43\x1f\x56" +"\x43\x07\x20\x1d\xd3\xfb\xd1\x3d\x20\x0a\xf7\x58\x21\x0a\x49\x06\xf7\xd6\xf8\xbc\x15\x23\x20\x0a\xbf\xfc\x89\x43\x20\x0a\xf7\x58" +"\x06\xa0\x96\x53\x1d\x43\x06\x0e\xf8\x89\xf7\x93\x60\x1d\xfc\x26\x22\x1d\x0e\xd6\x1d\xfc\x22\x06\x27\x1d\x0e\xd6\x1d\x52\xfb\x0f" +"\x06\x20\x1d\xf7\x0f\xfb\xb7\x06\x39\x1d\x96\x9f\x1e\xf7\xb7\xf7\x0f\x07\x57\x0a\xfb\x0f\x06\x0e\x67\x0a\xf8\x4f\xf8\xbc\x15\xc3" +"\x06\x9e\x96\x95\x9b\x9a\x80\x95\x78\x1f\xfb\x5d\x06\xfb\x1c\x89\x34\x50\x8a\x2f\x08\x5d\x07\x8e\x38\xdc\x50\xf7\x0d\x85\x08\xfb" +"\x9e\x2f\x07\x78\x7f\x81\x7b\x7c\x97\x81\x9e\x1f\xf7\x1a\x06\x9f\x96\x94\x9c\x97\x83\x95\x7e\x8d\x1f\xf8\xc7\xc8\xfc\xc7\x07\x7e" +"\x89\x83\x81\x7f\x1a\x7b\x97\x81\x9d\x1e\xee\x06\x9f\x96\x21\x1d\x77\x1f\x52\x06\x0e\xf7\xbc\xf8\x59\x15\x38\x49\x49\x37\x38\xcd" +"\x48\xdd\xdc\xcd\xce\xde\xdd\x49\xcf\x3b\x1f\x0e\xf0\x1d\xf7\x35\xf7\x2d\x15\x44\xfb\x74\x05\x8a\x87\x8a\x87\x87\x1a\x7a\xdd\x1d" +"\xf7\x35\xf8\xef\x15\x44\xfb\x74\x05\x8a\x87\x8a\x87\x88\x1a\x79\xdd\x1d\xf7\xd3\xd3\x1d\xf8\x4d\xf7\x5a\x15\xfb\x67\xf7\x59\x05" +"\x93\x82\x83\x8f\x83\x1b\x7d\x80\x80\x7d\x82\x8c\x89\x96\x7f\x1f\xf7\x1f\xfb\x35\xfb\x1f\xfb\x36\x05\x80\x7f\x8a\x89\x82\x1a\x7d" +"\x96\x80\x99\x94\x92\x8e\x94\x94\x1e\x0e\xf1\xe8\x15\x6f\x0a\xf7\x5b\x16\x6f\x0a\xf7\x5c\x16\xf7\x14\x1d\xa8\x72\xa4\x6e\x1f\x0e" +"\xf7\x26\xf8\xf9\x15\x4a\x59\x59\x4c\x4d\xbe\x58\xc9\xca\x99\x1d\xb5\xab\x6b\x61\x62\x6a\x6a\x63\x62\x6a\xac\xb4\xb4\xac\xac\xb3" +"\x1f\xf7\xf5\xfb\x52\x15\x97\x8f\x90\x91\x95\x1a\x95\x82\x94\x83\x89\x87\x8a\x89\x85\x1e\xfc\x0a\xfb\x0c\x05\x7e\x87\x86\x85\x81" +"\x1a\x81\x94\x82\x94\x8d\x8f\x8c\x8d\x91\x1e\xc7\x5c\x15\x4b\x59\x59\x4c\x4d\xbe\x58\xc9\xc9\x99\x1d\xb4\xab\x6b\x61\x62\x6b\x6a" +"\x63\x62\x6b\xac\xb4\xb4\xab\xac\xb3\x1f\xf7\xa6\xb2\x15\x4b\x59\x59\x4c\x4d\xbe\x58\xc9\xc9\x99\x1d\xb4\xab\x6b\x61\x62\x6b\x6a" +"\x63\x62\x6b\xac\xb4\xb4\xab\xac\xb3\x1f\x0e\xf7\xa5\xf7\x35\x15\xfb\x0f\x52\x61\x5e\x41\x1a\x2e\xd5\x4c\xf7\x02\xbf\xac\x93\xa6" +"\xca\x1e\x9a\x92\x8f\x8c\x98\x91\x08\xd1\x79\x0a\x65\x07\x74\x58\x6f\x84\x5f\x1b\x3a\x53\xb6\xc9\xc1\xba\xb4\xf7\x0a\xba\x1f\xd1" +"\x34\x1d\xb4\xf7\x06\x15\xb0\xa4\xa1\xab\xab\x72\xa1\x66\x1f\x6f\x06\x67\x71\x75\x6b\x6b\xa4\x75\xb0\x1f\x0e\xf7\x5a\xf9\x06\x4d" +"\x0a\xf8\x49\xf8\xe0\x34\x0a\xf7\xc0\xf9\x12\x3c\x1d\x99\x91\x66\x0a\x95\x89\x8f\x58\x1d\xf8\x47\xf8\xed\x5f\x0a\xf8\x36\xf8\xa1" +"\x2d\x0a\xf7\x44\xf8\xfe\x42\x1d\xf7\xc1\xf8\xf6\x26\x0a\x0e\xf7\x53\xf8\xf6\x5b\x1d\xf7\xc2\xf9\x26\x63\x0a\xf7\xa1\x96\x15\x31" +"\xa5\x07\xa6\x99\x85\x7d\x7e\x7b\x82\x74\x7d\x7c\x8f\x95\x77\x6d\x0a\xaa\x93\x1d\xb9\x07\x0e\xf7\xbb\xf8\xdb\x55\x1d\x94\x1a\x99" +"\xcb\x0a\x88\xa8\x0a\xf8\x3e\x96\x15\x46\x06\x4e\x6e\x76\x71\x60\xc4\x0a\x9e\xa3\xb0\x9f\x1f\x0e\xf7\xc0\xf8\x73\xaf\x0a\xca\x0a" +"\xb2\x1d\x0e\xf7\xf8\xf7\xa9\x15\xd0\x06\x9c\x96\x94\x99\x9a\x81\x94\x79\x1f\x76\xf7\x36\x06\xbd\x5e\xb0\x4e\x72\x61\x81\x7f\x6d" +"\x1e\x80\x86\x85\x83\x81\x1a\x7e\x95\x80\x97\x90\x8d\x8b\x8f\x94\x1e\x96\xa6\xa9\x92\x9c\x1b\xaf\xa3\x7b\x73\x1f\x66\x07\x91\x6f" +"\x7a\x8d\x75\x1b\x3a\x51\x61\x51\x59\xb5\x6a\xc9\xb1\xa6\x92\x9d\xb0\x1f\xc0\x04\x75\x69\x6c\x82\x66\x1b\x6a\x74\x98\x9f\xad\xb2" +"\xa3\xc0\xa1\x9d\x88\x85\xa5\x1f\x0e\xf7\x7c\xf8\x94\x15\xe6\x3e\x1d\xfb\x7e\x22\x1d\xe6\xfb\x6c\x06\xfb\x10\x44\x05\x7e\x83\x86" +"\x85\x80\x1a\x7d\x97\x7f\x98\x90\x8f\x8c\x91\x95\x1e\xed\xc3\x05\xfb\x4e\x30\x07\x20\x1d\xf8\x5e\xf7\x60\x78\x1d\xfb\x2d\xfb\x9b" +"\xf7\x65\x07\xf7\x2c\xe3\x05\x9a\x94\x8f\x90\x96\x1a\x98\x7f\x97\x7e\x85\x83\x89\x87\x85\x1e\xfb\x12\x42\x05\x0e\x8c\x0a\x0e\xf7" +"\xec\xf7\x9e\x15\xce\x75\x06\x7c\x0a\xea\xac\x1d\x75\x48\xf7\x57\xf7\x48\x21\x2b\x0a\xf7\x31\xfb\xd4\x07\xfb\x29\x25\xfb\x06\xfb" +"\x3c\xfb\x3d\xf2\xfb\x04\xf7\x2f\x1f\xf7\xe1\xf7\x1c\x06\x9e\x81\x97\x7b\x79\x83\x82\x75\x1e\x36\xfb\x5c\x07\x57\xf8\x61\x15\xfc" +"\x61\x70\x07\x45\x5a\xa0\xb9\x65\x1f\x6a\xb5\x79\xc2\xcd\x1a\xcd\x9d\xc2\xac\xb6\x1e\xb9\xb1\xbb\xa0\xd2\x1b\x0e\xf7\xc4\xf8\xd4" +"\x15\x34\x47\x4a\x37\x3a\xd0\x48\xdf\xdf\xcf\xce\xdd\xdc\x47\xce\x39\x1f\x87\x5c\x15\xc7\xb9\x5e\x52\x53\x5c\x5e\x52\x51\x5c\xb9" +"\xc3\xc2\xba\xb9\xc3\x1f\x0e\xb0\x1d\x0e\x32\x1d\x0e\xf7\xd9\xf8\xef\x15\xfb\x37\x2e\x1d\xf7\x03\xfb\x73\x06\x23\x50\x05\x7c\x83" +"\x87\x85\x80\x1a\x7d\x96\x80\x99\x91\x8e\x8c\x91\x95\x1e\xda\xb7\x05\xfb\x70\xfb\x2d\x6e\x0a\xf7\xfe\x23\x1d\xfb\x31\xf7\x86\x06" +"\xf4\xc6\x05\x9a\x93\x8f\x91\x97\x1a\x98\x80\x97\x7d\x86\x87\x8a\x85\x81\x1e\x3b\x5e\x05\x0e\x8d\x0a\x0e\xf8\xdb\xf7\x57\x15\xba" +"\x89\x9e\x83\xad\x1e\xe3\x78\x58\xbd\x43\x1b\x51\x5f\x68\x47\x6e\x1f\xca\x6d\x57\xb3\x56\x1b\x35\x43\x26\xfb\x0b\xfb\x10\xd4\x22" +"\xe2\xc1\xbc\xb3\xd0\xa9\x1f\x47\xaa\xc2\x62\xc6\x1b\xac\xaa\x98\xac\xb5\x1f\xa4\x9e\x93\x95\x97\x1a\x98\x7f\x97\x7e\x85\x85\x89" +"\x87\x86\x1e\x60\x5d\x76\x7f\x6f\x1b\x4f\x56\xd2\xe4\x83\x1f\xbe\x04\xe4\x98\xae\xba\xc3\x1b\xac\xa7\x79\x6a\x9c\x1f\x96\x77\x91" +"\x73\x90\x62\x08\xfc\x00\xf7\x1c\x15\xc6\xbd\x3b\x2d\x2f\x58\x3a\x52\x52\x58\xdc\xe8\xe6\xbd\xdd\xc4\x1f\x0e\xf7\x0b\xf7\xd4\x15" +"\xfb\xa1\x5a\x07\x20\x1d\xef\x06\x8c\xf8\x6c\x05\xb8\xb5\xae\xc0\xc2\xb8\x60\x56\x62\x60\x66\x5b\x1e\x86\x06\x7a\x80\x81\x7c\x7a" +"\x96\x83\xa1\x1f\x8f\x06\xb0\xb8\x7a\x72\xac\x1f\xb0\x6e\xa1\x5e\x5a\x1a\x43\x64\x53\x5a\x68\x76\xa4\xb7\x87\x1e\x9e\x8a\x82\x94" +"\x7c\x1b\x7b\x81\x80\x7b\x46\xbb\x57\xca\xdb\xc7\xd8\xf1\xe4\x5a\xd0\x31\xb0\x1f\xae\xa6\x9c\xa9\xb2\x1a\xde\x48\xcd\x37\x3a\x48" +"\x50\x43\x1e\x26\x5a\x07\x20\x1d\x0e\xf7\xd5\xf8\xf7\xcd\x1d\x0e\xf8\x76\xf8\x19\x15\xfb\x55\x07\x39\x1d\x96\x9f\x1e\xf7\x88\xfc" +"\x46\x52\x0a\x0e\xf7\x3f\x95\x15\x77\xa7\xa0\x85\xb2\x1b\xc9\xc7\xa2\xb7\xc0\x1f\x58\xdc\x07\x9e\x1d\x6e\xf8\x05\xfb\x0d\x06\x74" +"\x81\x83\x7a\x7b\x3a\x1d\xd0\xfb\x8d\x06\x51\x55\x51\x6f\x49\x1b\x58\x69\xad\xbd\x1f\xf7\xc1\x26\x07\x75\x81\x83\xa5\x1d\xbc\xfc" +"\xa9\x06\x27\x1d\x0e\xf7\x27\xf8\x9c\x15\xc7\x06\x8c\x48\x05\x7d\x94\x81\x98\x98\x94\x95\x9a\x1e\xf7\x01\xfb\x91\xfb\x02\x07\x7d" +"\x94\x81\x98\x98\x94\x95\x9a\x1e\xcd\xc7\xfb\x83\x5b\x07\x7c\x81\x82\x7e\x7f\x95\x82\x9a\x1f\xf7\x21\x06\x99\x95\x94\x98\x98\x81" +"\x93\x7c\x1f\x5b\x06\xf7\xc6\xbb\x15\xd4\xf7\x35\x05\xfb\x65\x6c\x07\x7c\x81\x83\x7e\x7e\x95\x82\x99\x1f\xe0\x06\x9a\x95\x94\x98" +"\x97\x81\x94\x7c\x1f\x82\xf7\x83\x90\x06\x99\x95\x94\x97\x99\x81\x93\x7c\x1f\x4c\x06\x3d\xfb\x41\x3d\xf7\x41\x05\x4c\x06\x7c\x81" +"\x83\x7e\x7e\x95\x82\x9a\x1f\x8f\xfb\x83\x82\x06\x7c\x82\x82\x7f\x7e\x95\x82\x99\x1f\xe0\x06\x99\x95\x94\x98\x97\x81\x94\x7d\x1f" +"\x6b\xf7\x66\x06\xd5\xfb\x36\x05\x0e\x8f\x0a\xf8\x80\xf8\x6d\x15\x91\x92\x8e\x92\x8f\x1a\x98\x81\x95\x7f\x83\x87\x89\x80\x82\xd8" +"\x0a\x97\xa4\x0a\xf7\x85\xfb\x94\x15\xf7\x37\xf7\x2a\x9b\x9d\xb6\x1a\xc2\x58\xbb\x50\x66\x69\x7b\x6e\x75\x1e\x7f\x7c\x84\x79\x7f" +"\x1a\x81\x94\x82\x96\x96\x91\x90\x98\x8e\x1e\xa8\x94\xa8\xa0\xad\x1b\xb0\xab\x6e\x6b\x7a\x80\x79\x73\x73\x1f\x5f\x5f\x51\x54\x65" +"\x69\x83\x84\x85\x86\x88\x88\x08\x5d\xf7\x7f\xb4\x07\x99\x83\x94\x7f\x7e\x83\x82\x7d\x1e\x0e\xf7\xda\xf7\xbb\x15\xf7\x43\x06\xa1" +"\x96\x94\x9b\x9c\x80\x93\x75\x1f\xfb\x43\xf7\x2d\x06\x4f\x0a\xfb\x2c\xfb\x43\x07\x7a\x88\x8b\x8b\x88\x8a\x08\x84\x86\x86\x83\x82" +"\x1a\x7b\x96\x82\xa0\x1e\xf7\x43\xfb\x2d\x06\x27\x1d\xfb\x77\x2f\x15\x66\x1d\xf8\x26\x06\xa1\x96\x94\x9b\x9b\x80\x94\x75\x1f\x0e" +"\xf7\x3f\xf7\x14\x15\xf7\x12\x06\xf7\x08\xe7\xd6\xe9\xe9\x36\xd4\xfb\x01\x1f\xfb\x20\xbb\xf7\x19\x3d\x1d\xfb\x7e\xe4\x1d\xf7\x14" +"\x04\xf7\x7e\xf7\x23\x07\xd8\xc9\x57\x4b\x4b\x46\x55\x37\x1f\x0e\xf7\x26\xf8\xf7\x15\x3b\x73\x6c\x81\x83\x88\x08\x83\x87\x86\x85" +"\x82\x1a\x81\x94\x81\x96\x8e\x8e\x8b\x8c\x8e\x1e\xc9\x9f\x05\xfb\x97\x07\x8c\x75\x73\x8b\x7d\x1b\x76\x80\x84\x7c\x7f\x95\x83\x98" +"\x1f\xf7\x47\x06\x99\x7d\x1d\x46\x06\xf8\x18\xf7\x44\x15\x91\x92\x8e\x91\x90\x1a\x98\xec\x0a\x85\x88\x84\x85\x1a\x7f\x95\x81\x97" +"\x93\x8d\x8c\x98\x95\x1e\xf7\xd8\xa7\x15\x58\x78\x07\x6c\x83\x87\x7a\x7f\x95\x83\x99\x1f\xe1\x06\x99\x7d\x1d\x80\xbe\x06\xa5\x93" +"\x90\x9b\x97\x82\x93\x7d\x1f\x80\xf7\x6a\x4e\x06\xfb\x16\xfb\x6d\x05\x65\x07\xf7\x2a\xb4\x15\x25\x06\xf1\xf7\x3d\x05\x0e\xf8\x89" +"\xf7\x95\x15\xa1\x96\x94\x9b\x9b\x80\x94\x75\x1f\xfc\x26\x06\x66\x1d\xf7\x5f\xfb\x11\x15\x6f\x0a\xf8\x2c\x04\x6c\x72\x73\x6d\x6d" +"\xa4\x73\xa9\xaa\xa3\xa3\xa9\xa9\x72\xa3\x6e\x1f\x0e\xf7\xda\xf8\xcf\x15\xa0\x82\x96\x7a\x7b\x82\x80\x76\x1e\xfb\x9a\x07\x77\x94" +"\x80\x9c\x9b\x94\x96\x9f\x1e\xfb\x1d\x04\xa0\x82\x96\x7a\x7b\x82\x80\x76\x1e\xfb\x9a\x07\x7c\x0a\x0e\xf7\xc2\xf9\x0e\x15\x36\x48" +"\x4a\x38\x3a\xcf\x49\xdd\xdf\xce\xcd\xdc\xdc\x48\xce\x39\x1f\x88\x58\x15\xc3\xb7\x60\x55\x56\x5f\x60\x55\x54\x5f\xb6\xc1\xbf\xb7" +"\xb7\xc0\x1f\x0e\xf7\x2a\xf8\xe1\x15\x26\x22\x1d\xbc\xfd\x31\xae\x0a\x42\x59\x73\x4f\x59\x1f\xf7\x3e\xac\x15\xef\xd6\x46\x2f\xf7" +"\x29\x1d\xf7\x05\xf8\x68\x15\x7c\x82\x83\x7e\x7f\x94\x83\x9a\x1f\xbf\x89\xb1\x6d\x65\x1a\x66\x65\x6c\x5f\x6c\x74\xf7\x22\x1d\xc0" +"\xcf\xc3\xbc\xc7\xae\x78\xdc\x1d\xf8\x09\x90\x15\x91\x91\x8e\x93\x8f\x1a\x98\xc2\x0a\xf7\xf8\xa7\x15\x58\x78\x07\x6d\x83\x87\x7a" +"\x7f\x94\x83\x99\x1f\xe1\x06\x99\x95\x93\x98\x97\x81\x93\x7d\x1f\x80\xbe\x06\xa5\x94\x90\x9b\x97\x81\x93\x7d\x1f\x80\xf7\x6a\x4e" +"\x06\xfb\x15\xfb\x6d\x05\x65\x07\xf7\x29\xb4\x15\x26\x06\xf0\xf7\x3d\x05\x0e\xf7\x76\xf7\xbd\x15\xf7\x38\xf7\x2a\x9a\x9d\xb7\x1a" +"\xc2\x58\xba\x50\x54\x52\x5d\x60\x81\x94\x82\x96\x96\x91\x90\x97\x8e\x1e\xa9\x94\xa8\x9f\xad\x1b\xb0\xab\x6e\x6b\x75\x81\x7e\x5a" +"\x5b\x1f\x5e\x5f\x61\x64\x63\x67\x85\x86\x18\x5d\xf7\x7f\xb4\x07\x99\x83\x94\x7e\x7f\x83\x82\x7d\x1e\x0e\xf7\x83\xf7\x91\x15\xc4" +"\x06\xad\x80\xb2\x59\xae\x41\x08\xb6\x06\x9a\x95\x95\x98\x99\x81\x94\x7c\x1f\x7f\x06\x85\x96\x6b\xc0\x7d\x9d\x72\xa0\x19\xb6\x9d" +"\xa0\xa6\xb0\x1a\xc3\x5d\xb3\x4a\x1e\xfb\x1e\x06\x7b\x81\x82\x7d\x7d\x95\x82\x9b\x1f\x9e\xfb\x7f\x78\x06\x7b\x81\x82\x7d\x7d\x96" +"\x82\x9a\x1f\xeb\x06\x9b\x95\x94\x99\x99\x81\x94\x7b\x1f\x6d\x06\xf7\x1b\x04\xef\xd3\x07\xb1\xa5\x77\x6e\x6c\x6a\x77\x57\x1f\x98" +"\xf7\xaa\xc3\x1d\xee\xf7\xc7\x15\x76\x80\x50\x1d\xf8\x26\x27\x0a\x0e\xf8\x4e\xf8\xca\x15\x92\x8e\x90\x93\x95\x1a\x9a\x80\x96\x7d" +"\x88\x89\x8b\x8a\x89\x1e\x2e\x63\x05\xa7\x4d\x50\x9d\x6f\x1b\x7c\x80\x80\x7c\x7e\x92\x84\x9c\x87\x1f\xb3\x83\x9a\x86\xa9\x7f\x58" +"\x75\x18\x84\x87\x86\x84\x81\x1a\x7c\x97\x7e\x99\x8d\x8e\x8c\x8c\x8f\x1e\xe2\xb3\xac\x74\xbb\x54\xa4\x60\x19\xa7\x61\x64\x96\x5b" +"\x1b\xfb\x15\x24\x27\xfb\x10\xfb\x11\xf2\x27\xf7\x17\xca\xc5\xa2\xb6\xb7\x1f\xb9\xb7\xa1\xc3\xd4\x1a\xf6\x4c\xf7\x10\x2b\xde\x1e" +"\x40\xfb\x2d\x15\xf3\xdb\x3f\x29\x2a\x3a\x3e\x26\x26\x3a\xd8\xec\xeb\xdc\xd9\xee\x1f\x0e\xf7\xc0\xf7\xd1\x15\xfb\x1e\xf7\x1c\x05" +"\x93\x82\x84\x8f\x84\x1b\x7d\x7f\x80\x7d\x83\x8e\x85\x94\x82\x1f\xf7\x1f\xfb\x1b\xfb\x1f\xfb\x1c\x05\x82\x82\x88\x85\x83\x1a\x7d" +"\x96\x80\x9a\x93\x91\x8e\x94\x94\x1e\xf7\x1e\xf7\x1c\xf7\x1f\xfb\x1c\x05\x82\x94\x90\x88\x93\x1b\x9a\x96\x96\x99\x93\x88\x92\x82" +"\x93\x1f\xfb\x1e\xf7\x1c\xf7\x1e\xf7\x1b\x05\x93\x93\x8f\x92\x92\x1a\x9a\x7f\x96\x7d\x84\x85\x88\x82\x82\x1e\x0e\xf7\xb4\xf8\x68" +"\xbf\x1d\xf7\x28\xf7\x98\x15\x3b\xd4\x44\xdd\xb1\xae\x99\xa7\xa9\x1e\x9d\x9b\x92\x95\x95\x1a\x98\x81\x94\x7e\x83\x86\x89\x84\x85" +"\x1e\x69\x6d\x76\x80\x68\x1b\x50\x5a\xbc\xc6\x1f\xb1\x07\xc6\xb6\xb9\xc2\xb6\xb0\x74\x6f\x8f\x1e\x7b\x8d\x92\x83\x99\x1b\x99\x94" +"\x95\x9b\x1f\xc9\x07\x9b\x82\x95\x7d\x80\x83\x85\x7f\x87\x1e\x9d\x6c\x75\x92\x6c\x1b\x3c\x49\x48\x3a\x1f\xf7\x2f\xf7\xa5\xc3\x1d" +"\x28\x1d\xd7\xf7\x73\x54\x1d\x7f\x96\x7d\xf7\x04\x1d\x28\x1d\x73\xf7\xa5\x45\x1d\x7e\xe1\x0a\x8d\x92\x93\x1e\xf4\xdf\xf3\x37\x05" +"\x85\x94\x90\x63\x1d\x3d\x0a\x28\x1d\xfb\x1a\xf7\x89\x5b\x1d\x28\x1d\x30\xf7\x99\xdf\x1d\x28\x1d\x78\xf7\xb9\x6f\x1d\x6c\x6d\xa2" +"\x1d\x0e\x28\x1d\xf7\x02\xf7\x81\x15\x84\x86\x88\x85\x84\x1f\x6d\x80\x0a\x81\x8f\x9e\xdf\x0a\x7e\xf4\x0a\x9e\x1b\x95\x97\x87\x80" +"\x9d\x1f\x73\xb4\x9e\xd9\x0a\xf7\xd7\x7b\x15\x91\x06\xc5\xcc\xa6\xb7\xbb\x1f\xa7\xa5\x97\x9b\x97\x1a\x99\x81\x95\x7c\x82\x86\x88" +"\x83\x83\x1e\x4c\x54\x5c\x73\x47\x1b\xfb\x07\x29\xed\xf7\x08\x1f\xd0\x07\xbf\xa1\xc3\xaf\xb2\x1e\xb2\xaf\xba\x9f\xc2\xb9\x0a\x47" +"\x4f\x71\x5b\x5d\x1f\x5f\x5c\x6e\x46\x4e\x1a\x3a\x07\x8c\xfb\x0b\xea\xfb\x03\xf7\x0c\x73\x08\x47\xa5\x07\xa6\x99\x85\x7d\x7e\x3a" +"\x0a\x95\x76\xe2\x0a\xaa\x93\x1d\x0e\x25\x0a\xf7\x71\xf9\x40\x54\x1d\x7f\x96\x7d\x83\x86\x89\x82\x82\x1e\xfb\x06\x2a\x05\x7e\x80" +"\x89\x88\x81\x0a\x91\x68\x1d\x25\x0a\xf7\x0d\xf9\x72\x45\x1d\x7e\x82\x89\x87\x80\x1a\x7d\x96\x80\x99\x92\x90\x8d\x92\x94\x1e\xf3" +"\xdf\xf3\x37\x05\x84\x94\x90\x89\x91\x1b\x99\x97\x96\x99\x95\x88\x90\x7f\x95\x1f\x0e\x25\x0a\x96\xf9\x56\x5b\x1d\x25\x0a\xba\xf7" +"\x09\x1d\x93\x92\x88\x92\x1b\x99\x97\x96\x9a\x93\x8a\x8c\x83\x64\x1d\x23\x0a\xf7\x03\xf9\x40\x6d\x1d\x23\x0a\x71\xf9\x72\x8a\x1d" +"\x96\x89\x8e\x3d\x0a\x23\x0a\xfb\x1c\xf9\x56\x43\x1d\x23\x0a\x2e\xf9\x66\xf7\x06\x1d\x9a\x96\x96\x99\x94\x8a\x8c\x83\x64\x1d\x49" +"\x1d\x7e\xf9\x81\xd4\x1d\xa6\x94\x90\x9d\x1b\x96\xaa\x1d\x9d\x84\xa2\x1b\xa4\xa0\xe8\x0a\x2d\x1d\xf7\x02\xf7\x67\xb8\x0a\x2d\x1d" +"\x8d\xf7\x99\x85\x1d\x2d\x1d\xfb\x00\xf7\x7d\x15\x3f\x1d\xf7\x72\x16\x3f\x1d\x0e\x2d\x1d\x44\xf7\x8d\xdf\x1d\x2d\x1d\xf7\x23\xf7" +"\x75\x97\x0a\x69\x1d\xfb\x17\xea\x15\xf7\x1c\xf7\x01\x05\x98\x95\x8d\x8e\x96\x1a\x99\x7f\x96\x7d\x85\x85\x88\x85\x83\x1e\x22\x37" +"\x23\xdf\x05\x91\x83\x85\x8e\x85\x1b\x7d\x7f\x46\x1d\x31\x1d\x26\xf8\xb8\x54\x1d\x80\x96\x7c\xf7\x04\x1d\x31\x1d\xfb\x61\xf8\xea" +"\x85\x1d\x31\x1d\xfb\xcf\xf8\xce\x43\x1d\x31\x1d\xfb\xa7\xf8\xde\xd7\x0a\x93\x92\x88\x91\x1b\x9a\x97\x96\x9a\x93\x8a\x8c\x83\x64" +"\x1d\x31\x0a\xd7\xf9\x40\x15\x96\x94\x8e\x90\x65\x1d\x82\x82\x1e\xfb\x07\x2a\x05\x81\x82\x88\x86\x82\x1a\x7c\x96\x80\x99\x93\x8f" +"\x30\x0a\x31\x0a\xfb\x1e\xf9\x56\x43\x1d\x6c\x1d\xf7\x5b\xf9\x06\x15\xf7\x1b\xf7\x01\x05\x99\x95\x8d\x8f\x95\xf7\x1f\x1d\x84\x8e" +"\x85\x1b\x7d\x7f\x80\x7d\x80\x8e\x87\x98\x82\x1f\x0e\x3f\x0a\x74\xf8\x19\x15\x97\x95\x8d\x8f\x70\x1d\x8f\x8d\x94\x96\x1e\x0e\x48" +"\x1d\xfb\x10\xf8\x4b\x3c\x1d\x98\x92\x66\x0a\x96\x89\x8e\x58\x1d\x3f\x0a\xfb\x7d\xf8\x2f\xb5\x0a\x3f\x0a\xfb\x59\xf8\x3f\xf7\x11" +"\x1d\x95\x90\x88\x92\x1b\x9a\x96\x96\x9a\x93\x8b\x8b\x7d\x9a\x1f\x0e\x3f\x0a\xfb\x0e\xf8\x5f\x6f\x1d\x6d\x6d\x72\xa2\xa7\xa7\xa3" +"\xa2\xa9\x1f\x0e\x3f\x0a\x96\xf8\x26\x90\x1d\x8e\x9f\x67\x1f\x9d\x6b\x7d\x90\xb4\x0a\xa2\x1b\xa4\xf7\x20\x1d\xf7\xd5\x7c\x15\xc2" +"\x8d\xb7\x96\xb5\xa0\x08\xbb\xa3\xaa\xa8\x9e\xa7\x0a\x89\x07\xdb\x0a\x42\xab\x4a\xc5\x62\x1f\xa8\x75\xa6\x81\xba\x84\x08\x49\xa5" +"\x07\xa6\x99\x84\x7e\x7e\x7b\x82\x74\x7d\x7c\x8f\x95\x77\xe2\x0a\xab\x83\xa0\x73\x1d\x2c\x1d\x49\xf7\xea\x34\x0a\x2c\x1d\xfb\x3b" +"\xf8\x1c\x8d\x1d\x96\x80\x99\x92\x91\x8e\x91\x93\x1e\xf3\xdf\xf3\x37\x05\x85\x94\x91\x63\x1d\x7d\x96\x1f\x0e\x2c\x1d\xfb\xa8\xf8" +"\x00\xb5\x0a\x2c\x1d\xfb\x84\xf8\x10\x4d\x0a\x32\x1d\xcf\xf8\xad\x15\x98\x96\x8d\x8e\x95\x1a\x99\xf2\x1d\x32\x1d\x61\xf8\xdf\x45" +"\x1d\x7e\xe1\x0a\x8e\x91\x93\x1e\xf4\xdf\xf3\x37\x05\x85\x94\x90\x63\x1d\x3d\x0a\x32\x1d\xfb\x29\xf8\xc3\x43\x1d\x32\x1d\x21\xf8" +"\xd3\xd7\x0a\x94\x91\x88\x92\x1b\x99\x97\x96\x99\x94\x8b\x8b\x7c\x9a\x1f\x0e\xf7\x41\xf8\x37\x15\x3a\x06\xbb\x0a\xf7\x85\x06\xd5" +"\xc7\xa5\x9b\xc8\x1b\xaf\x9e\x85\x0a\x77\x97\x74\x70\x1a\xfb\x81\x6f\x6e\x0a\xf7\x01\x06\x9f\x97\x53\x1d\x6e\xf7\x88\x06\xd9\x45" +"\xc7\x2f\x4e\x66\x79\x53\x57\x1e\xf7\x90\xf7\x86\x90\x1d\x8e\x9f\xa0\x0a\x2c\x0a\xf2\xf7\x62\x54\x1d\x7f\x96\x7d\x83\x86\x88\x83" +"\x81\x1e\xfb\x06\x2a\x05\x82\x83\x87\x84\x83\x1a\x7c\x96\x80\x99\x93\x8e\x8c\x95\x96\x1e\x0e\x2c\x0a\x8d\xf7\x94\xb1\x0a\x2c\x0a" +"\xfb\x00\xf7\x78\x43\x1d\x2c\x0a\x4a\xf7\x88\xe6\x1d\x2c\x0a\xf7\x23\xf7\x6f\x15\x84\x86\x89\x84\x84\x1f\x6e\x80\x0a\x83\x8e\x9f" +"\x67\x1f\x9e\x6a\x7e\x8f\x76\x1b\x70\x75\xcf\x0a\x9d\x1b\x96\x95\x87\x80\x9f\x1f\x73\xb4\x9d\x84\xa3\x1b\xa3\xa1\x96\xa4\xa5\x1f" +"\x9e\x9d\x90\x92\x95\x1a\x98\x7f\x96\x7d\x1e\x0e\x3e\x0a\xf7\x31\xf8\x04\x15\xf7\x1b\xf7\x01\x05\x97\x94\x8e\x90\x95\x1a\x99\x80" +"\x96\x7d\x84\x86\x89\x84\x82\x1e\x23\x37\x23\xdf\x05\x92\x82\x86\x8d\x85\x1b\x7c\x80\x46\x1d\x28\x0a\x5b\xf8\xa6\x54\x1d\xf2\x1d" +"\x28\x0a\xfb\x22\xf8\xd8\xb1\x0a\x28\x0a\xfb\x90\xf8\xbc\x43\x1d\x28\x0a\xfb\x65\xf8\xcc\xe6\x1d\x5d\x0a\xf7\xee\xf7\x70\x34\x0a" +"\x5d\x0a\xee\xf7\x86\x43\x1d\x4a\x0a\xfb\x49\xf2\x15\xf7\x1b\xf7\x00\x05\x99\x96\x8d\x8f\x95\x1a\x99\x7f\x96\x7d\x84\x86\x88\x85" +"\xf7\x3f\x1d\x92\x82\x86\x8d\x85\x1b\x7c\x80\x46\x1d\xf7\x7a\xf8\xab\x15\x52\x06\x79\x81\x83\x7d\x7d\x95\x82\x9d\x1f\x95\xfb\x4c" +"\x79\x06\x7a\x81\x83\x7d\x7d\x95\x82\x9c\x1f\xdd\x06\x9d\x95\x93\x9a\x99\x81\x93\x79\x1f\x7a\xf7\x24\x06\xb1\xab\x9c\x95\xaf\x1b" +"\xaf\xa5\x77\x6f\x1f\xfb\x24\x81\x07\x79\x81\x83\x7d\x7c\x95\x83\x9d\x1f\xce\x06\x9d\x95\x94\x99\x99\x81\x93\x79\x1f\x81\xf7\x28" +"\x06\xbe\x5c\xb1\x4e\x67\x75\x82\x72\x6f\x1e\x0e\xbe\x1d\xf7\xae\xf7\xd1\x15\xcd\x44\x1d\x49\xc0\x06\xb9\xa5\xad\xaf\x99\x9d\x88" +"\x84\xa3\x1e\x87\x96\x8c\x8b\x8e\x1b\x99\x95\xf1\x0a\x4d\x59\x50\x43\x1f\x56\x43\x07\x20\x1d\xd3\xfb\xd1\x3d\x20\x0a\xf7\x58\x21" +"\x0a\x49\x06\x0e\xf7\x06\xbe\x15\x3d\x20\x0a\xf8\xa5\x39\x0a\x45\xf8\x04\xfb\x39\xc0\x06\xb9\xa6\xad\xae\x9a\x99\x88\x83\xa7\x1e" +"\x88\x95\x8d\x8b\x8e\x1b\x98\x96\xf1\x0a\x71\xeb\x1d\x06\xf7\xdd\xfb\xd1\x15\xfb\x05\xf7\xd1\xf7\x05\x06\xfb\xa9\xfb\xd1\x15\xf7" +"\xd1\xf7\x04\xfb\xd1\x07\xf8\x04\x04\xfb\x04\xc0\x06\xb9\xa5\xad\xaf\x99\x9b\x88\x83\xa4\x1e\x8e\x8a\x05\x8d\x8d\x8a\x8a\x8e\x1f" +"\x81\x77\x86\x76\x72\x1a\x0e\xf8\x83\xf8\xd9\x15\x58\x99\x05\x90\x79\x75\x8e\x7d\x1b\x72\xeb\x1d\xfb\xd1\x3d\x20\x0a\xf8\xa5\x39" +"\x0a\x45\x06\x57\x16\xfb\x05\xf7\xd1\xd9\x44\x1d\x3d\xc0\x06\xb9\xa6\xad\xae\x98\x99\x89\x84\xa3\x1e\xfb\xa9\xfc\x80\x15\xf7\xd1" +"\xf7\x04\xfb\xd1\x07\xf8\x04\x04\xfb\x04\xc0\x06\xb9\xa5\xad\xaf\x99\x9b\x88\x83\xa4\x1e\x8e\x8a\x05\x8d\x8d\x8a\x8a\x8e\x1f\x81" +"\x77\x86\x76\x72\x1a\x0e\xf8\x82\xf8\x6d\x15\x91\x92\x8e\x91\x91\x1a\x97\x81\x95\x7f\x83\x87\x89\x80\x82\x1e\xfb\xf2\xfc\x2e\x05" +"\x84\x83\x88\xf3\x0a\x88\xa4\x0a\xf8\x28\xfb\x09\x15\xa6\x9f\x99\xa3\xaa\x1a\xc2\x5b\xb8\x51\x51\x5b\x5e\x54\x6c\x98\x73\xa7\x77" +"\xf7\x08\x1d\xb0\xa8\xf7\x3d\x1d\xa7\xa6\xaf\x1f\xfb\x2f\x04\xb4\xaa\x70\x68\x67\x6c\x6f\x63\x63\x6c\xa7\xaf\xae\xaa\xa6\xb2\x1f" +"\x0e\xf8\x70\xf7\x24\x1d\x82\x1e\xfb\xf3\xfc\x2e\x05\x83\x82\x89\x87\x85\x1a\x7f\x95\x81\x98\x93\x8e\x8d\x97\x95\x1e\xf8\x2b\xf7" +"\x08\x15\xa6\x9e\x99\xa5\xf7\x02\x0a\x71\xa6\x78\xc9\x1d\xfb\xe8\xf7\xc9\xbf\x1d\xf8\x71\xf7\x24\x1d\x81\xd8\x0a\xf8\x2b\xf7\x08" +"\x15\xa7\x9f\x99\xa4\xa9\x1a\xc2\x5b\xb8\x51\x50\x5b\x5e\x54\x6d\x99\x72\xa7\x77\x1e\x6a\x75\x7c\x70\x69\x1a\x51\xbd\x5c\xca\xc9" +"\xbd\xba\xc5\xad\x7c\xa6\x6a\xa1\x1e\x4a\xf7\x1a\x15\xb0\xa8\x71\x69\x6c\x6e\x73\x66\x66\x6f\xa3\xaa\xac\xa8\xa6\xaf\x1f\xfb\x2f" +"\x04\xb4\xaa\x70\x68\x67\x6b\x6f\x64\x63\x6b\xa7\xaf\xae\xaa\xa6\xb3\x1f\xfc\x0e\xf8\x27\x15\xf7\x11\x06\x99\x7d\x1d\xfb\x3a\xfb" +"\x2f\x06\x7e\x93\x82\x97\x90\x8f\x8c\x8f\x92\x1e\x95\x9d\xa6\x92\x9f\x1b\xb4\xa7\x6e\x5f\x58\x6a\x68\x5b\x6d\x70\x97\xa1\x72\x1f" +"\x90\x85\x87\x8d\x85\x1b\x80\x82\x82\x7f\x71\xcf\x68\xbd\xd3\xbd\xbf\xd5\xce\x5e\xbb\x4d\x76\x7a\x88\x82\x72\x1f\x0e\xf8\x70\xf8" +"\x6d\x15\x91\x91\x8e\x92\x91\x1a\x97\xc2\x0a\xf8\x2b\xf7\x08\x15\xa6\x9f\x99\xa4\xf7\x02\x0a\x72\xa6\x77\xc9\x1d\xfb\x86\xf8\x27" +"\x15\x5f\xfb\x17\x5e\xfb\x25\x7f\x1a\x81\x95\x82\x95\x95\x92\x91\x96\x8e\x1e\xe5\xf7\xb1\x05\xb9\xfb\x73\x57\x07\x7d\x93\x82\x98" +"\x97\x93\x94\x99\x1e\x96\x07\x0e\xb2\x1d\xf7\x25\xf7\x73\x6d\x1d\x28\x1d\xfb\x0e\xf7\x91\x42\x1d\x28\x1d\x0e\xf6\xf8\xa2\x4a\x1d" +"\xf8\x05\xfb\x59\x15\xbf\xfb\x19\x05\x46\x2e\x1d\xf7\x2a\x29\x1d\x70\xf7\x05\x0a\xfb\x58\x26\x1d\xef\x06\xfb\x43\xfc\x61\x05\x71" +"\x86\x0a\xf7\x2a\x22\x0a\x46\x06\xbd\xf7\x19\x05\xf7\x82\xbe\x15\xfb\x6f\x06\xf4\xf7\xa9\x05\x92\x06\x0e\x28\x1d\xf7\x0c\xf7\x34" +"\x15\xa0\x97\x94\x9b\x9b\x7f\x94\x76\x5c\x1d\xf7\xe2\xf8\xc7\x15\xfb\x63\x55\x0a\x96\x1d\x6f\x35\x0a\xf7\x2b\x21\x0a\x44\x06\xbd" +"\xf7\x19\x05\xf7\x97\x06\xbe\xfb\x19\x05\x47\x20\x0a\xe9\x06\x7a\x1d\xbe\xb5\xb3\x9f\xa0\x96\x82\x94\x82\x87\x87\x8a\x88\x87\x1e" +"\x7e\x74\x86\x89\x79\x1b\x71\x7f\x94\x9e\xa7\xaa\xaa\xbb\x9f\x1f\xa1\x95\x90\x8f\x9a\x5b\x0a\x6a\x06\xfb\x12\xf7\x4c\xf7\x46\x1d" +"\x0e\x28\x1d\x76\xf7\xb9\x6f\x1d\x6c\x6d\xa2\x1d\xb0\xf7\x0d\x15\x96\x95\x8e\x8f\x65\x1d\x83\x82\x1e\xfb\x06\x29\x05\x7e\x80\x89" +"\x88\x82\x1a\x7c\x97\x80\x99\x93\x8f\x30\x0a\x92\x0a\x72\x1d\xca\xa4\xb9\xbc\x1e\xa7\xa5\x97\x9b\x98\x1a\x98\x6e\x1d\x67\xf7\x60" +"\x15\x97\x95\x8d\x8f\x70\x1d\x90\x30\x0a\x72\x1d\xca\xa4\xb9\xbc\x1e\xa7\xa5\x97\x9b\x98\x1a\x98\x6e\x1d\xfb\x41\xea\x5a\x1d\xba" +"\x1d\xfb\x41\xf7\x92\xd9\x1d\xba\x1d\xfb\x40\xf7\x76\x26\x0a\x0e\x8b\x0a\x9b\x0a\x90\xf8\xd3\x5a\x1d\x8f\x0a\xae\x16\xf8\xa6\x06" +"\xfb\x84\xf8\xc6\x05\x59\x06\xfb\x38\xfc\x93\x15\xf7\x51\xf8\x47\xf7\x51\xfc\x47\x05\x0e\x25\x0a\x90\xf9\x5e\x42\x1d\x25\x0a\xf7" +"\x15\xf8\xd3\x5a\x1d\x25\x0a\xf7\x16\xf9\x56\x26\x0a\x0e\x25\x0a\xf7\x8b\xf9\x01\x2d\x0a\xf8\x8f\xf8\x94\x15\xa8\x06\x54\x0a\xfb" +"\x2a\x50\x0a\xd0\xfc\x42\x06\xfb\xbc\xf8\x75\x05\xfb\x02\x22\x1d\xbc\x92\x1d\xf8\x42\x06\xf7\xb6\xfc\x67\x05\x92\x7f\x8f\x7b\x77" +"\x1a\x51\x60\x64\x4c\x1e\x4b\x2e\x1d\xcc\x06\xbc\xb3\x9c\xad\xaa\x1f\xae\xb4\x90\x9e\x8c\xf0\x08\x0e\x72\x0a\x95\xa0\xce\x1d\xf8" +"\x10\x06\x63\x74\x78\x70\x66\xc4\x0a\x9f\xa3\xaf\x9f\x1f\xa9\x9b\x05\xf7\x34\x34\x1d\xfb\x03\xfb\xc3\x07\x0e\x94\x0a\xd5\xf8\xa2" +"\x4a\x1d\xf7\x3a\xfb\x07\x15\xf7\x18\x64\x06\x27\x1d\xf7\x15\x34\x1d\x64\xfb\x18\xf7\x57\xf7\xa9\x30\x07\x76\x94\x80\x9c\x9b\x95" +"\x97\x9f\x1e\xf7\x22\xfc\x30\xf7\x44\x1d\xaa\xfc\x61\x6c\x2e\x1d\xf8\x45\xf7\x36\x06\x56\x1d\x7f\x77\x1e\xfb\x03\xfb\xbe\x07\x0e" +"\x80\x1d\xe0\xf8\xa2\x4a\x1d\xf8\x25\xfb\x07\x15\xfb\x6b\x5a\x07\x20\x1d\xf7\x21\x06\xa0\x97\x5a\x0a\x63\xf8\x61\x9f\x33\x0a\xfb" +"\x0d\x26\x1d\xbc\xfb\x57\xfb\x94\xf7\x57\xbb\x22\x0a\xfb\x03\x25\x1d\x96\xfc\x61\x80\x06\x40\x1d\xf7\x03\x29\x1d\x5b\xf7\x6b\x06" +"\x0e\xf7\x01\xf7\xc6\x15\xf7\x95\x33\x0a\xfb\x91\x06\xf3\xa2\xd4\xca\xeb\xb9\x0a\xfb\x0f\x26\x31\xfb\x14\x77\x1f\x50\x06\x20\x1d" +"\xc3\x63\x55\x06\x2b\x1d\xc3\x89\x06\x95\x58\x97\x6f\xa7\x65\x08\x44\xbf\xd9\x62\xde\x1b\xcc\xc9\xa4\xb9\xbd\x1f\xa7\xa5\x97\x9b" +"\x98\x1a\x98\xf7\x05\x1d\x49\x50\xa8\xc3\x61\x1f\x74\xa8\x81\xa2\x81\xb4\x08\x8d\xf7\x90\x07\x53\x0a\xfb\x93\x06\x0e\xc8\x1d\x7f" +"\x1d\xfb\xd4\xf9\x6c\x5d\x1d\xe1\x4d\x1d\x68\x86\x62\x71\x55\x1b\x56\x51\x1d\xb6\x1d\xfb\x76\xf9\x80\xd9\x1d\x7f\x1d\xfb\x36\xfb" +"\x16\x15\x91\x95\x8d\x8f\xed\x1d\xb6\x1d\xfb\x75\xf9\x64\x26\x0a\x0e\xf7\x0d\xf8\x1f\x15\xfb\xec\x63\x07\x65\x0a\x5b\xf7\x6b\xf7" +"\x96\xfb\x6b\x5b\x06\x65\x0a\x63\xf7\xec\xad\x06\xa0\x96\x93\x9d\x9b\x80\x94\x76\x1f\x69\xcd\x9f\x3e\x1d\xfb\x0c\x50\x0a\xbb\x49" +"\xfb\x96\xcd\xbb\x3d\x1d\xfb\x0c\x22\x1d\x9f\x49\x69\x06\x76\x80\x82\x7b\x79\x96\x83\xa0\x1f\xe1\x16\xf7\x96\x3d\xfb\x96\x06\x0e" +"\xf8\x43\xf7\x9e\x15\xfb\x6b\x5b\x07\x65\x0a\x63\xf8\x61\x9f\x06\xa0\x96\x94\x9c\x9c\x80\x93\x76\x89\x1d\x06\xf7\x13\xf8\x9b\x3c" +"\x1d\x99\x91\x91\x8d\x92\x93\x1e\xf3\xdf\xf4\x37\x05\x85\x93\x91\x63\x1d\x7e\x96\x1f\x0e\xf7\x07\xf8\x94\x15\xfc\x61\x3a\x07\x77" +"\x80\x50\x1d\xf7\x68\x06\xa0\x96\x21\x1d\x77\x1f\x3a\xf8\x61\xdc\x06\x9f\x96\x83\x0a\xfb\x68\x06\x76\x80\x82\x7a\x7b\x96\x82\x9f" +"\x1f\xf8\x5e\x16\xfc\x66\x07\x41\x4d\x51\x3c\x61\x54\xa1\xa9\x69\x1e\xa0\x73\x8a\x8c\x81\x1b\x7d\x7f\x80\x7d\x80\x8d\x88\x9d\x7d" +"\x1f\x56\xcd\xb9\x78\xc7\x1b\xf4\xe3\xde\xef\x1f\xf8\x66\x9f\x07\x54\x0a\xfb\x49\x35\x0a\x0e\x23\x0a\xfb\x2a\xf9\x5e\x5d\x1d\xe1" +"\x64\x0a\x23\x0a\x72\xf9\x56\x26\x0a\x0e\x23\x0a\xe7\xf9\x01\x2d\x0a\xf7\xda\xf8\x94\x15\xf7\x1a\x3d\x1d\xfb\xd4\x22\x1d\xf7\x1a" +"\xfc\x61\xfb\x1a\x20\x0a\xf7\x9a\x06\x62\x74\x78\x6f\x67\x1a\x62\xa9\x73\xbe\xb6\xb3\x9f\xa0\x96\x82\x94\x81\x88\x87\x8a\x88\x86" +"\x1e\x7d\x74\xa1\x1d\xa7\xa6\xa6\xc0\xa5\x1f\x9b\x93\x91\x92\x97\x5b\x0a\xfb\x1a\x06\x0e\x23\x0a\x0e\xf7\xdb\xf8\x94\x15\xf7\x19" +"\x06\x9f\x97\x94\x9b\x9c\x7f\x94\x77\x1f\xfb\xd2\x36\x1d\xf7\x19\xfc\x61\xfb\x19\x25\x1d\xf7\xd2\x06\x9f\x97\xf7\x40\x1d\xfb\x19" +"\x06\xfb\x16\xf9\x2b\x15\x72\x77\x77\x73\x73\x9f\x77\xaf\x1d\xf7\x63\x16\xe7\x0a\x0e\xf6\xf8\xa2\x4a\x1d\xf7\x9e\xf7\x17\x15\xf7" +"\x19\x22\x0a\xfb\xd2\x25\x1d\xf7\x19\xfc\x61\xfb\x19\x25\x1d\xf7\xd2\x22\x0a\xfb\x19\x06\x0e\x23\x0a\xf7\x00\xf9\x4e\x15\x84\x86" +"\x89\x84\x84\x1f\x6d\x80\x0a\x82\x8e\x9f\x68\x1f\x9d\x6b\x7d\x90\xf7\x03\x0a\x81\x1a\x7f\x96\x80\xf7\x07\x0a\x9d\x1b\x96\x97\x87" +"\x80\x9d\x1f\x73\xb3\x9e\x84\xa2\x1b\xa5\x9f\x95\xa5\xa6\x1f\x9f\x9e\x8f\x91\x95\xa4\x1d\x9e\x0a\xfb\x3a\xf8\xfd\xe2\x1d\x3d\x0a" +"\xf7\x3f\xf7\x70\x15\xd8\xce\xe7\x6e\xb5\x4f\xd4\xfb\x5a\x19\xe5\x27\x0a\x57\x06\x43\xf7\x4b\x65\xbe\x2f\xb3\xf7\x6a\xf7\x4f\x18" +"\x99\x06\xa0\x97\x41\x1d\xfb\x0b\x55\x0a\x97\x82\xa0\xcb\x1d\x0e\xb5\x1d\xf7\x55\xfb\x24\x87\x1d\x41\x0a\xf7\x10\xf9\x40\xd1\x0a" +"\x85\x83\x1a\x7c\x96\x80\x9a\x92\x90\x30\x0a\xf7\xc1\xf8\x94\x15\xf7\x46\xfc\x61\x05\x46\x25\x1d\xf7\x2a\x38\x0a\x70\xf7\x05\x0a" +"\xfb\x63\x06\x76\x7f\x82\x7a\x7b\x96\x1d\x70\x36\x1d\xf7\x2a\x22\x0a\x46\x06\xf7\x42\xf8\x61\x05\x0e\x41\x0a\xf7\xa5\xf8\x6a\x15" +"\x90\x92\x8e\x92\x90\x1a\x9a\x80\x96\x7d\x80\x86\x88\x7d\x82\x1e\x36\xfb\x0f\x05\x85\x81\x89\x87\x86\x1a\x7c\x97\x80\x99\x96\x90" +"\x8e\x99\x94\x1e\x0e\x41\x0a\xf0\xfb\x24\xb6\x0a\x41\x0a\xf7\x17\xf7\xc1\x15\x61\x6b\x6c\x64\x64\xab\x6d\xb5\x1f\x95\x06\xb6\xab" +"\xa9\xb2\xb3\x6b\xa9\x60\x1f\x0e\x81\x1d\x49\x1d\x82\xf9\x73\xe7\x1d\x49\x1d\xfb\x26\xf9\x06\x5a\x1d\x49\x1d\x25\x2e\x3c\x0a\x91" +"\x1a\x99\xc1\x0a\x49\x1d\x0e\x2d\x1d\xfb\x0e\xf7\x85\x15\x7c\x80\x80\x7b\x4c\xcc\x5b\xe0\xe1\xcc\xbb\xca\x9b\x80\x96\x7c\x7c\x83" +"\x83\x79\x89\x1f\x67\x86\x62\x72\x55\x1b\x56\x51\x1d\x2d\x1d\xb0\xf7\x62\x55\x1d\x93\x1a\x9a\xde\x1d\x84\x83\x68\x0a\x2d\x1d\xf7" +"\x0c\xf7\x28\x2d\x0a\xeb\xbe\x15\xa4\x79\x0a\x3f\xf7\x78\xf7\x0e\x07\x6e\x91\x86\x8c\x7a\x91\x08\x3b\xa6\x5e\xcb\xe1\x1a\xc4\x9f" +"\xbe\xaf\xb3\x1e\xb7\xb4\xbe\x9f\xd3\x1b\xd3\xbf\x77\x5f\xb3\x1f\xaf\x63\x9f\x57\x54\x1a\x39\x61\x4b\x44\x6e\x1e\x77\x83\x83\x89" +"\x69\x85\x08\xfb\x0e\xf7\x77\xd7\x79\x0a\x72\xfb\x0f\xa9\x07\xf7\x07\xad\xc7\xdb\xf7\x0c\x1a\xf7\x28\xfb\x09\xf7\x04\xfb\x2f\xfb" +"\x2f\xfb\x09\xfb\x04\xfb\x29\xfb\x0a\xc8\x39\xf7\x07\x6a\x1e\x6d\x07\xfb\x39\xf8\x6f\x4a\x1d\x0e\x2d\x1d\x0e\xf7\xd3\xf8\xd3\x15" +"\xfb\x25\xfb\x02\xfb\x14\xfb\x3c\xfb\x39\xf7\x03\xfb\x15\xf7\x21\xf7\x21\xf7\x03\xf7\x16\xf7\x39\xf7\x38\xfb\x02\xf7\x17\xfb\x1f" +"\x1f\x86\x58\x15\xf7\x05\xe4\x20\xfb\x1d\xfb\x1c\x32\xfb\x00\xfb\x04\xfb\x03\x33\xf7\x01\xf7\x1c\xf7\x1a\xe4\xf7\x01\xf7\x01\x1f" +"\xfb\x87\x8d\x15\x8c\x91\x8b\x8e\x8d\x1a\x9b\x82\x94\x7b\x7b\x82\x82\x78\x88\x1e\x74\xfb\x25\x05\x89\x83\x8b\x89\x89\x1a\x7c\x94" +"\x82\x9b\x9b\x93\x94\x9e\x8f\x1e\x0e\x8c\x0a\xf7\x80\xf9\x1b\x54\x1d\x80\x96\x7c\x83\x86\x89\x82\x82\x1e\xfb\x06\x2a\x05\x80\x82" +"\x88\x85\x83\x1a\x7c\x96\x80\x9a\x92\x8f\x8d\x94\x95\x1e\x0e\xf7\xda\xb1\x15\xf7\x1b\x9a\xe9\xee\xf7\x14\x1a\xf7\x13\x2d\xee\xfb" +"\x1b\x9a\x1e\xaf\xf0\x07\x62\x1d\xfb\x92\x22\x1d\xf0\x67\x06\xfb\x1b\x7c\x2d\x28\xfb\x13\x1a\xfb\x14\xe9\x28\xf7\x1b\x7c\x1e\x5d" +"\x26\x07\x20\x1d\xf7\x92\x21\x0a\x26\x06\xf8\x72\x04\xf3\x7c\xd4\x3d\x2a\x1a\x29\x42\x3d\x23\x7c\x1e\x57\x16\x23\x9a\x42\xd9\xed" +"\x1a\xec\xd3\xd9\xf4\x9a\x1e\x0e\x96\x0a\xf7\xda\xf8\x94\x15\xc0\x29\x1d\xfb\x32\x25\x1d\xc0\xfb\xb0\x06\xfb\x00\x93\x69\xbb\x8d" +"\xf7\x21\x08\xf7\x1e\x33\x07\x40\x1d\xaf\x34\x06\x8c\xfb\x01\x99\x5b\xb2\x64\xaf\x6a\xba\x79\xc2\x89\x08\xfb\x11\x56\x78\x0a\xf7" +"\x32\x22\x0a\x56\xf7\x12\x06\xbb\xb7\x9a\xa6\xad\x1f\xbd\xb2\x9a\xba\x8c\xf7\x0c\x08\xe2\xaf\x07\x32\x0a\x33\xfb\x1e\x06\x8d\xfb" +"\x1e\x66\x56\x22\x85\x08\x0e\x47\x0a\xf7\x31\xf8\x4a\xe7\x1d\x47\x0a\x9f\xf7\xdd\x5a\x1d\x47\x0a\xdf\xfc\x1a\x87\x1d\x84\x1d\x69" +"\x1d\x87\xf7\x60\x6d\x1d\xf7\xd2\x7c\x15\xf7\x0c\x94\xd7\xcc\xea\x1a\xbe\x73\xb8\x63\xa3\x1e\x6c\x9d\x6e\x94\x3e\x97\x4e\x95\x72" +"\x93\x72\x9b\x08\x73\x9b\x7e\xa4\xa8\x1a\xc9\xc5\xb8\xda\xd7\xcc\x0a\x84\x07\xae\x62\x5e\xeb\x0a\xaf\x7f\xd2\xab\x0a\xa7\x6d\xbe" +"\x74\xbe\x84\x08\x4a\xa5\x07\xa6\x99\x84\x7e\x7e\x7b\x82\x74\x7d\x7c\x8f\x95\x77\x1f\x90\x81\x89\x8c\x85\x47\x1d\x85\xa0\x1d\xb1" +"\x73\xa3\x62\x8e\x1f\x0e\xd0\x0a\xaf\x7f\xd2\x88\x0a\xfb\x21\xf7\x92\x8a\x1d\x96\x89\x8e\x3d\x0a\x69\x1d\xfb\x09\xfd\x04\xe5\x1d" +"\xf8\xac\xf8\xc7\x15\xfc\x26\x59\x06\xf7\x4d\xfb\x6c\xfb\x4d\xfb\x8a\x05\x58\xf8\x2d\xf7\x2a\x07\xa0\x84\x95\x7c\x7d\x83\x82\x7c" +"\x8a\x1e\x86\x21\x05\xfb\xbd\x06\xf7\x56\xf7\x8b\xfb\x4f\xf7\x6a\x05\xf7\xac\x06\x95\xfb\x04\x05\x81\x8c\x94\x83\x97\x1b\x98\x93" +"\x94\x9b\x1f\x0e\x61\x0a\xf7\xdb\xf7\xed\x15\xf7\x3b\xf7\x2f\x49\x07\x78\x96\x7d\x9b\x9c\x93\x95\xa2\x1e\xf7\x09\xfc\x67\xfb\x09" +"\x07\x58\x0a\xcd\xf7\x30\xfb\x3b\x29\x07\xba\x0a\xed\xfb\x87\x28\x06\x75\x80\x71\x0a\x80\x94\x75\x1f\x28\xf7\x87\xec\x23\x1d\x0e" +"\x62\x0a\xfb\x12\xf8\xd3\x15\xf7\x1b\xf7\x01\x05\x99\x95\x8d\x8e\x96\x94\x1d\x7d\x7f\x46\x1d\xf7\xd8\x16\xf1\x21\x0a\x28\xf8\x61" +"\xf7\x2f\x49\x06\xe0\x1d\xee\x3c\xa5\x06\xa7\x98\x85\x7d\x7e\x7b\x82\x74\x7c\x7d\x8f\x95\x77\x1f\x90\x81\x88\x8c\x86\x47\x1d\x84" +"\x9b\x84\x1f\x80\xa0\xa9\x84\xa1\x1b\xbd\xad\xa6\xb5\xb1\x73\xa3\x62\x8e\x1f\x0e\xf7\x5b\xf7\xc9\x15\x97\x07\x9e\x81\x96\x7b\x7b" +"\x81\x80\x78\x1e\x3e\x07\x78\x95\x80\x9b\x9b\x95\x96\x9e\x1e\x99\xf7\x62\x7d\x07\x78\x95\x80\x9b\x9b\x95\x96\x9e\x1e\xd8\x07\x9e" +"\x81\x96\x7b\x7b\x81\x80\x78\x1e\x7f\x07\x26\xf7\x9e\xc7\x1d\x0e\x31\x1d\xfb\xdd\xf8\xd6\xb3\x0a\x31\x1d\xfb\x3e\xf8\xb3\x15\x98" +"\x96\x8c\x8e\x93\x1a\x9a\xcb\x0a\x89\x82\xed\x0a\x96\x95\x8d\x8f\x93\x1a\x9a\x80\x96\x7d\x83\x84\x68\x0a\x31\x1d\x34\xf8\x79\x15" +"\xa0\x96\x94\x9b\x9b\x80\x94\x76\x5c\x1d\xf8\x8d\xf8\x94\x15\xa8\x06\xa0\x96\x94\x9c\x9c\x81\x93\x75\x1f\xfb\x2a\x22\x1d\xd0\xfb" +"\xd9\x06\x35\x48\x49\x35\x36\x48\xcd\xe1\x1e\xf7\xd9\xd0\x07\x54\x0a\xfb\x29\x06\x3b\x0a\xa7\xfb\xd9\x06\xfb\x07\xe3\x33\xf7\x08" +"\x97\x92\x8c\x8d\x9a\x1e\x71\x76\x7e\x73\x6e\x1a\x62\xa9\x73\xbe\xb6\xa7\x1d\x86\x1e\x7e\x74\x87\x89\x78\x1b\x71\x7f\x94\x9e\xa4" +"\x9f\xa9\xb2\xaa\x1f\xdb\xcf\x9d\xac\x8f\xdd\x08\x0e\x31\x0a\x0e\xf7\xdb\xf7\x91\x15\xf7\x40\xf7\x97\x05\xa0\x06\x9f\x97\x94\x9c" +"\x9b\x7f\x94\x77\x1f\xfb\x03\x25\x1d\xa8\x06\xfb\x1d\xfb\x63\xfb\x20\xf7\x63\x05\xa8\x29\x1d\xfb\x03\x35\x0a\xa0\x06\xf7\x43\xfb" +"\x97\x05\xfb\x5e\x28\x07\x76\x7f\x71\x0a\x46\x0a\x28\x06\xfb\x15\xf9\x2b\x15\x72\x77\x77\x73\xf7\x19\x1d\x67\x1d\x9e\xa3\xa4\x77" +"\x9f\x72\x1f\x0e\xeb\xf8\xa2\x4a\x1d\xf7\xaa\xfb\x14\x15\xf7\x40\xf7\x97\x05\xa0\x06\xa0\x97\x94\x9c\x9b\x46\x0a\xfb\x03\x4e\x1d" +"\xa9\x06\xfb\x1e\xfb\x63\xfb\x1f\xf7\x63\x05\xa8\x29\x1d\x2e\x5c\x06\xf7\x45\xfb\x9b\x05\xfb\x5e\x29\x07\x40\x1d\xf7\x8d\x22\x0a" +"\x28\x06\x0e\x31\x1d\xfb\x5f\xf8\xfe\x63\x0a\x31\x1d\x52\xf8\xc6\x97\x0a\x59\x1d\xf8\x0f\xf7\x73\xd1\x0a\x86\x81\x0a\x90\x30\x0a" +"\x59\x1d\xf7\x86\xf7\xa5\x45\x1d\x7f\x82\x88\x87\x80\x1a\x7e\x97\x7f\x98\xf5\x1d\x59\x1d\xf7\x19\xf7\x89\x5b\x1d\x59\x1d\xf7\x20" +"\xf7\x99\xf7\x11\x1d\x94\x91\x88\x91\xf7\x3b\x1d\x86\x91\x05\x0e\xf8\x73\xf8\x94\x15\x30\x2b\x0a\xf7\x22\xfc\x61\xfb\x22\x2b\x0a" +"\xe6\x07\xe7\xfb\x62\x15\xae\x07\xa0\x82\x97\x7a\x7a\x82\x7f\x76\x1e\xfb\x0d\x9b\x1d\xae\xf7\x41\x68\x9b\x1d\xf7\x0d\x07\xa0\x82" +"\x97\x7a\x7a\x82\x7f\x76\x1e\x68\x07\xfb\x9d\xfb\x93\x15\xe6\x34\x1d\xfb\x22\xf8\x61\xf7\x22\x34\x1d\x30\x07\x0e\x31\x0a\x6f\xf9" +"\x72\x85\x1d\x31\x0a\xfb\x07\xf7\x09\x1d\x94\x91\x88\x91\x1b\x9a\x96\x96\x9a\x93\x8a\x8c\x84\x64\x1d\x6c\x1d\xf7\xe7\xf9\x73\xf7" +"\x00\x1d\x96\x80\x9a\x92\x90\x30\x0a\x6c\x1d\xf7\x5f\xf9\x89\x26\x0a\x0e\xf7\x45\x1d\x79\x83\xe1\x1d\x0e\x48\x1d\xfb\x82\xf8\x37" +"\x42\x1d\xb0\x1d\xfb\x06\xf7\xea\x15\x96\x94\x8e\x91\x93\x1a\x9a\x80\x96\x7d\x83\x87\x9d\x1d\x82\x88\x86\x81\x1a\x7d\x96\x80\x9a" +"\x92\x8f\x30\x0a\xca\x0a\x28\x1d\x0e\xf8\x8d\xf8\xc7\x15\xfc\x44\x69\x0a\xf7\xc2\x06\xec\xd5\xd0\xe4\xf0\x37\xc5\xfb\x25\x1f\xfb" +"\x23\xf7\x57\xf7\xab\x30\x06\x76\x94\x7f\x9c\x9c\x94\x97\xa0\x1e\xfb\xdf\xfc\x06\x15\xf7\x6b\xf7\x20\x07\xce\xe5\x0a\x92\x0a\xc8" +"\x1d\xf8\x95\x16\x29\x07\x73\x24\x0a\xa4\x1e\xf7\x02\x07\x8a\xad\x87\x8e\x68\x8c\x08\x68\xf8\x61\xae\x24\x1d\xfc\x14\x3b\x1d\xbc" +"\xfb\x80\x06\x8a\x2b\x81\x62\x6a\x64\x71\x6e\x6c\x79\x71\x8a\x08\x75\x89\x85\x83\x6e\x1a\xfb\x02\x07\x72\x24\x0a\xa3\x1e\xed\x07" +"\xf7\x2f\xf8\x94\x15\xf7\x58\xfc\x61\xfb\xa0\x06\xb6\xad\xa6\xdf\x8d\xf6\x08\x0e\x94\x0a\xf7\x42\xf7\x9e\x15\xf7\x19\x64\x06\x77" +"\x95\x7f\x9b\x9b\x95\x97\x9f\x1e\xf7\x15\x07\x9f\x82\x97\x7a\x7b\x81\x7f\x77\x1e\x64\xfb\x19\xf7\x57\xf7\xa9\x30\x07\x77\x95\x7f" +"\x9c\x9b\x94\x96\xa0\x1e\xf7\x22\xfc\x42\x07\x76\x80\x82\x7a\x7b\x97\x82\x9f\x1f\xbc\xfc\x61\x5a\x06\x7c\x1d\xf8\x58\xf7\x36\x06" +"\x9f\x81\x97\x7a\x7b\x82\x80\x76\x1e\xfb\x03\xfb\xbf\x07\xa2\xf9\x2d\xe3\x1d\xf7\xda\xf8\x94\x15\xa5\x2f\x1d\x24\x3b\x1d\xa4\xfb" +"\x4d\x86\x06\x74\x8c\x7f\x9c\x5c\xeb\x08\xf6\x57\x7a\x9a\x4b\x1b\x70\x84\x83\x6c\x1f\x55\x07\x73\x94\x7f\x9c\x9b\x95\x97\xa0\x1e" +"\xb9\x07\xa0\x88\x95\x7d\xb1\x3e\xa4\x55\xa4\x60\x98\x7c\x6f\x7a\x6c\x60\x71\x4e\x53\xfb\x1b\x18\x70\x2a\x0a\xab\x06\xa8\x8c\x8d" +"\x8c\x96\xa5\xc4\xf7\x1d\x18\xab\xd4\xaf\xb4\xa9\x88\x08\x94\xfb\x75\x72\x06\x71\x7e\xa8\x1d\xf2\x2f\x1d\x71\xf7\x75\x94\x06\xaa" +"\x8e\xaf\x62\xab\x42\xc4\xfb\x1d\x18\x96\x70\x8c\x8b\xa9\x8a\x08\xab\x2f\x1d\x71\x06\x52\xf7\x1b\x71\xc7\x6c\xb7\x6f\x9b\x19\x97" +"\x99\xa6\xba\xa3\xbf\xae\xd4\x98\x9d\xa0\x8e\x08\x5d\x07\x76\x95\x7f\x9c\x9b\xf7\x0b\x1d\x06\x0e\xe3\xf8\x5e\x15\x87\x07\x84\x89" +"\x7a\x8a\x81\x1e\x89\x7e\x89\x7a\x84\x1a\x7c\x94\x82\x9a\x98\x93\x93\x9c\x8f\x1e\xe8\xa0\xc6\xba\xeb\x1b\xe8\xc7\x63\x4c\x73\x83" +"\x76\x7c\x7b\x1f\x6f\x71\x43\x78\x39\x1b\x6f\x33\x1d\xa7\x06\xe5\xba\x85\x7b\xa9\x1f\xaf\x78\xa0\x6c\x67\x1a\x6a\x7b\x6c\x70\x76" +"\x1e\x74\x6c\x60\x80\x4b\x1b\x42\x57\x9b\xb6\x42\x1f\x90\x83\x85\x8d\x84\x1b\x7f\x7d\x7e\x7e\x61\xf7\x15\x5a\xf7\x03\xe2\xc4\x9a" +"\xae\xb4\x1f\xb0\xaa\x9f\xb6\xba\x1a\xd0\x64\xb9\x3e\xa2\x1e\xca\xa6\xab\xb6\xc7\x1a\xe5\x3a\xc9\xfb\x08\x4b\x5a\x7a\x64\x5b\x1e" +"\x86\x85\x88\x8a\x89\x1b\x86\x87\x93\x9b\x88\x1f\xa1\x87\x83\x95\x7c\x1b\x7d\x82\x82\x7c\x85\x8c\x7f\x8c\x7c\x1f\x87\x8b\x84\x8c" +"\x83\x1e\x0e\x5e\x0a\x0e\x5e\x0a\xe9\xf7\x80\x15\x7b\x81\x80\x79\x4a\xcd\x59\xe0\xdf\xcd\xbd\xcc\x9d\x81\x96\x7b\x7b\x83\x83\x77" +"\x89\x1f\x65\x86\x62\x70\x56\x1b\x57\x61\xa7\xb0\x87\x1f\x9e\x89\x83\x94\x7b\x1b\x0e\xb1\x1d\x0e\xf8\x7e\xf8\x94\x15\xb0\x36\x0a" +"\xfc\x17\x2a\x0a\xbd\xfb\xd1\x06\x20\x6c\x55\x4f\x81\x83\x8c\x8f\x7e\x1e\xc4\x07\xa0\x82\x97\x7a\x7a\x82\x7e\x73\x1e\x50\x07\x78" +"\x8e\x81\x93\x87\x1e\x82\x99\xae\x84\xa5\x1b\xe6\xbc\xd4\xf7\x1e\x1f\xf7\xd1\xf7\x58\xfc\x61\x66\x07\x70\x0a\xf7\x12\x36\x0a\x66" +"\x06\x0e\x81\x1d\x80\x1d\x2d\x1d\x0e\x96\x0a\x84\x1d\x90\x0a\x61\x0a\xb7\x1d\x0e\xf7\xda\xf8\x94\x15\xad\x06\xa6\x7f\x0a\x70\x1f" +"\xfb\x04\x06\x69\x7a\x83\x7a\x7a\x9c\x82\xa9\x1f\xa9\x6b\x06\x50\x8a\x63\x81\x67\x76\x08\x51\x68\x69\x4e\x44\x1a\x4a\xa8\x52\xbe" +"\x67\x1e\xb0\x70\xb6\x80\xce\x89\x08\x6b\x6a\x07\x70\x7a\x81\x7b\x7b\x9a\x82\xa8\x1f\xf7\x0b\x06\xa5\x9a\x94\x9c\x9b\x7d\x94\x70" +"\x1f\x69\xab\x06\xc9\x8d\xb4\x94\xae\xa1\x08\xc4\xae\xac\xc9\xd0\x1a\xcc\x6e\xc4\x57\xaf\x1e\x64\xa6\x60\x97\x4a\x8c\x08\x57\xfb" +"\xed\x15\x5a\x8e\x69\x94\x70\x9b\x08\x62\xa5\x73\xb7\xbb\x1a\xb5\x9d\xb1\xab\xa6\x1e\xa9\xa4\xad\x96\xc8\x8f\x08\xbf\x16\xbe\x87" +"\xad\x82\xa6\x7b\x08\xb3\x71\xa3\x60\x5a\x1a\x5e\x76\x63\x67\x70\x1e\x6f\x77\x67\x80\x54\x88\x08\x0e\x8b\x0a\xf8\x6f\xbe\x15\xf8" +"\x61\xb2\x73\x0a\xfb\x1f\x06\x76\x7f\x76\x0a\xbb\xfc\x61\xfb\x94\xf8\x61\xbc\x23\x1d\xfb\x21\x8c\x1d\xf8\x45\x5e\x1d\x8a\xac\x86" +"\x90\x69\x8c\x08\x0e\xf8\x38\xbe\x15\xfb\x02\x2a\x0a\xf7\x5c\x24\x1d\x65\xf8\x61\xb1\x06\xa5\x99\x94\x9b\x9c\x99\x0a\x0e\xf8\x6f" +"\xbe\x15\xfb\x29\xf8\x61\x9b\x43\x0a\x2e\x4e\x1d\xa4\xfc\x61\xfb\x28\xf8\x61\xa3\x22\x0a\xfb\x08\xd4\x0a\x69\x2e\x1d\xf8\x9d\x22" +"\x0a\x69\xf8\x61\x9b\x22\x0a\x2e\x36\x1d\xa4\x06\x0e\xf8\xa3\xbe\x15\xf8\x61\x9b\x07\x32\x0a\x2e\x36\x1d\xa4\xfc\x61\xfb\x29\xf8" +"\x61\x9b\x43\x0a\x2e\x4e\x1d\xa4\xfc\x61\xfb\x28\xf8\x61\xa3\x22\x0a\xfb\x08\xd4\x0a\x69\x2e\x1d\xf8\x96\x5e\x1d\x8a\xad\x87\x8f" +"\x68\x8c\x08\x0e\xf7\x8a\xf8\x94\x15\xbc\x43\x0a\xfb\xbb\xfb\x5f\x06\x76\x94\x7f\x9c\x9c\x94\x96\xa1\x1e\xf7\x2c\xf7\x22\xfc\x61" +"\x79\x5f\x1d\xf7\x85\x06\xeb\xd4\xcf\xe5\xf0\x38\xc5\xfb\x25\x1f\xfb\x04\x06\xfb\x9e\x04\xf7\x6b\xf7\x01\x07\xce\xb5\x81\x73\xaa" +"\x1f\xa4\x77\x99\x70\x6e\x1a\x50\x56\x5d\x48\x1e\x0e\xf7\x19\xf8\x94\x15\xbc\x43\x0a\xfb\x2a\x69\x0a\xf7\x6e\x06\xec\xd5\xd0\xe4" +"\xf0\x38\xc5\xfb\x26\x1f\x50\x06\xfb\x9e\x04\xf7\x6b\xc2\x07\xf7\x06\xce\x63\x46\x4f\x57\x5d\x45\x1f\xf7\xa2\xf8\x61\x15\xbb\x22" +"\x0a\xfb\x28\x06\x75\x7f\x82\x7b\x7a\x97\x82\xa1\x1f\xbb\xfc\x61\x5b\x06\x75\x7f\x82\x7a\x7b\x97\x82\xa1\x1f\xf7\x28\x29\x1d\x5b" +"\x06\x0e\xf7\x42\xf8\x94\x15\xbc\x43\x0a\xfb\x2a\x69\x0a\xf7\xc2\x06\xec\xd5\xd0\xe4\xf0\x37\xc5\xfb\x25\x1f\xfb\x23\x06\xfb\x9e" +"\x04\xf7\x6b\xf7\x1f\x07\xcf\xe5\x0a\xf8\x7c\xf7\xd1\x15\xfb\x8a\xf7\x42\x1d\xf7\x8a\x7a\x06\x57\x76\x58\x65\x61\x1e\x5d\x62\x5a" +"\x75\x50\x1b\x4a\x53\xa7\xc5\x59\x1f\x94\x83\x85\x8e\x81\x1b\x7d\x81\x82\x7e\x77\xa5\x6d\xb3\x6f\x1f\x67\xc1\xb3\x7e\xc1\x1b\xd5" +"\xc7\xa6\xc3\xc1\x1f\xbd\xbf\xa6\xc9\xc8\x1a\xdc\x07\xc9\x73\xc7\x60\xbd\x1e\xc1\x5b\x53\xa4\x42\x1b\x49\x54\x77\x63\x5d\x1f\x9a" +"\x07\xa0\x81\x84\x0a\xfb\x01\x07\x76\x94\x7f\x9c\x9b\x93\x94\x9f\x8d\x1e\x8d\xa1\x91\x97\x9c\x9d\x08\xad\xac\xc1\xa0\xbf\x1b\xb8" +"\xb9\x7b\x72\xa7\x1f\xb8\x63\xaa\x49\x56\x1a\x0e\xf7\x64\xf7\xd1\x15\x2d\xf7\x57\xb0\x22\x0a\xfb\x01\x06\x77\x7f\x50\x1d\x9f\xfc" +"\x61\x77\x26\x1d\xf7\x01\x06\xa0\x97\x5a\x0a\x66\xf7\x6b\xe9\x6b\x06\xfb\x31\xd3\x2f\xf7\x10\xc4\xbb\xa0\xb3\xac\x1e\xaf\xb5\x9c" +"\xc8\xe0\x1a\xe6\x07\xe0\x7a\xca\x68\xb5\x1e\xb2\x6a\x5a\xa1\x54\x1b\x55\x5a\x76\x65\x67\x1f\x63\x60\x78\x4f\x32\x1a\xbf\x16\xf7" +"\x14\xc0\xd3\xe8\xe6\xb9\x47\xfb\x18\x1e\x30\x07\xfb\x17\x5c\x48\x30\x2e\x57\xd3\xf7\x12\x1e\x0e\xf8\x3d\xf7\x8a\x15\xfb\x57\x46" +"\x07\x40\x1d\xf7\x3e\x06\x9f\x97\x95\x9b\x9b\xf6\x0a\x9b\x9c\x7f\x94\x77\x1f\xfb\x89\x06\x27\x37\x43\x36\x4a\xb8\x5a\xe2\x6b\x1f" +"\x50\x60\x75\x6f\x39\xfb\x1e\x08\x6f\x06\x7c\x1d\xc4\x06\x91\x96\x8f\x92\x94\x9a\xd9\xf7\x1a\xb1\xb6\xd5\xaf\x08\xf7\x0d\xbe\x15" +"\x23\x06\x2d\x3d\xbd\xc7\xc1\xcb\xbe\xd0\x1f\xf7\x23\x06\x0e\xf7\x49\xf8\x94\x15\xfc\x61\x30\x07\x76\x80\x82\x7a\x7a\x96\x83\xa0" +"\x1f\xf7\x7e\x06\xa0\x96\x93\x9c\x9c\x80\x94\x76\x1f\x30\xf8\x61\xf7\xce\xf7\x5f\x78\x1d\xfb\x2c\xfc\x29\x07\x20\x1d\x0e\xf7\x8a" +"\xf7\x62\x15\xc3\xd2\xbe\xa2\xc1\x1b\xc6\xaf\x5e\x43\x3f\x6a\x5c\x51\x85\x1f\x72\x88\x80\x82\x7b\x1a\x7a\x97\x82\xa1\xde\xca\xd9" +"\xf1\xf2\x50\xd0\x34\x54\x55\x76\x5b\x46\x1e\xf7\x88\xf7\x12\x07\x93\x24\x05\x72\x8d\x95\x7f\x9c\x1b\x9a\x94\x95\x9a\x8e\x8b\x8f" +"\x8a\x94\x1f\x81\xf7\x05\x05\xab\x87\x86\x90\x6b\x1b\xfb\xd9\xcf\x1d\x06\x0e\xf7\x7f\xbe\x15\xf8\x61\xf7\x95\xfb\x2c\x07\x77\x95" +"\x7f\x9b\x9c\x94\x96\xa0\x1e\xf7\x5f\xfc\x58\x07\x7c\x1d\xe6\xfc\x61\x30\xf7\x0b\x0a\xf7\x7d\x06\xa0\x97\x57\x1d\xbc\xf9\x29\x15" +"\x96\x95\x8e\x90\x93\x1a\x99\x7f\x97\x7d\x84\x83\x87\x85\x83\x1e\xfb\x05\x2b\x05\x81\x82\x87\x84\x83\x1a\x7d\x96\x7f\x99\x92\x91" +"\x8e\x93\x95\x1e\x0e\xf7\x04\xf7\xd1\x15\x92\x07\xc0\xaa\xcd\xb8\xb3\x1e\xa4\xa7\xb9\x9b\xb8\x1b\xbb\xbc\x79\x6e\xac\x1f\xa2\x77" +"\x94\x7c\x8d\x72\x08\x77\x8d\x93\x82\x9b\x1b\x9c\x94\x97\xa0\x1f\xf7\x01\x07\xa0\x82\x96\x7a\x7b\x81\x80\x76\x1e\x7c\x07\xb3\x5d" +"\x54\x9f\x4a\x1b\x41\x53\x72\x55\x5b\x1f\x60\x59\x73\x4f\x4d\x1a\x3a\x07\x4e\xa6\x4d\xbd\x57\x1e\x53\xc1\xc7\x70\xd5\x1b\xc1\xb3" +"\x98\xaf\xc1\x1f\xb4\xa7\xa4\xa9\x9f\x1a\x98\x81\x94\x7d\x81\x85\x88\x82\x83\x1e\x51\x59\x53\x6f\x4a\x1b\x50\x5a\xa1\xb9\x62\x1f" +"\x65\xb5\x76\xbe\xbf\x1a\x9c\xf7\x8a\x07\xa0\x97\x95\x9b\x9b\x80\x94\x75\x1f\x0e\xd0\x0a\xaf\x7f\xd2\x88\x0a\x0e\x23\x0a\x0e\xf7" +"\x5b\xf9\x60\x15\x71\x77\x78\x72\x73\x9f\x77\xa4\xa4\x9f\x9e\xa4\xa3\x77\x9f\x73\x1f\xf7\x61\x95\x1d\xa4\xa3\x77\x9f\x72\x1f\x3d" +"\xfb\x60\xd0\x1d\x0e\x9d\x0a\xf8\x18\xf8\x94\x15\xbd\x36\x0a\xfb\xbe\x2a\x0a\xbd\xfb\xd1\x06\x22\x6e\x53\x55\x7f\x82\x8d\x91\x79" +"\x1e\xc1\x07\xa0\x82\x97\x7a\x7a\x82\x7e\x74\x1e\x4f\x07\x78\x8e\x81\x92\x87\x1e\x82\x9a\xad\x84\xa8\x1b\xae\xa8\x95\x9e\xa0\x1f" +"\xab\xa7\xa0\xd3\xdd\x1a\xf7\xd1\xe9\xfc\x61\x61\x07\x35\x1d\xbe\x06\xed\xb5\x92\xa0\xab\x1f\xb3\xa6\xa3\xbb\xc2\x1a\xc2\x75\xb8" +"\x63\xa7\x1e\x6c\xa1\x64\x95\x4e\x8c\x08\x56\x04\xea\x89\xb5\x6b\x43\x1a\x66\x7e\x6c\x73\x79\x1e\x78\x7c\x6c\x84\x59\x8a\x08\x0e" +"\xf7\x9a\xf7\x9e\x15\xfb\x6b\x72\x07\x40\x1d\xf7\x56\x06\xeb\xd5\xd0\xe5\xef\x38\xc5\xfb\x26\x1f\x51\xf7\x57\xbb\x27\x0a\xfb\x11" +"\x36\x1d\xa4\xfb\x57\xfb\x2a\xf7\x57\xa4\x29\x1d\x2a\x26\x1d\x9f\xfc\x61\x6e\xf7\x0b\x0a\xf5\x38\x0a\x72\xf7\x6b\x06\xf7\x5e\xfb" +"\x6b\x15\xf7\x6b\xc2\x07\xce\xb6\x81\x73\xaa\x1f\xa4\x77\x99\x70\x6e\x1a\x50\x56\x5d\x47\x1e\x0e\xf7\x8a\xf8\x94\x15\xf7\x14\x06" +"\x92\x24\x05\x72\x8d\x94\x7f\x9c\x1b\x9a\x95\x95\x9c\x8c\x8b\x8b\x8a\x98\x1f\x83\xf7\x05\x88\xac\x87\x8e\x6a\x8c\x19\xfb\xdd\xcf" +"\x1d\xf7\x2e\x06\xc7\xcc\xae\x9f\xb4\x1b\xc3\xac\x60\x40\x1f\xfb\x08\x5a\x07\x35\x1d\xf7\x0e\x24\x1d\x76\xf7\x0d\x06\xf0\x56\xcb" +"\x39\x59\x5d\x76\x5d\x58\x1e\x0e\xb1\x1d\x22\xf7\x5b\x15\x95\x94\x8f\x91\x93\x1a\x99\x7f\x97\x7e\x84\x83\x87\x85\x83\x1e\xfb\x06" +"\x2b\x05\x81\x82\x87\x84\x83\x1a\x7d\x97\x7f\x98\x92\x56\x0a\xb7\x1d\xfb\x07\xf8\xa9\x15\x7a\x81\x80\x79\x4a\xcd\x59\xe0\xdf\xcd" +"\xbe\xcb\x9c\x81\x97\x7b\x7c\x82\x83\x7a\x89\x1f\x61\x86\x64\x71\x54\x1b\x57\x60\xa7\xb0\x88\x1f\x9e\x89\x83\x94\x7c\x1b\x0e\xf8" +"\x31\x16\xf0\x23\x1d\x5a\xf7\x94\x06\xd4\x45\xc0\x2b\x65\x4a\x7e\x78\x54\xa3\x1d\x8d\x8c\x8f\x99\x1e\x9d\xc4\xb4\x93\xac\x1b\xd1" +"\xba\x6d\x5e\x1f\x4d\x07\x97\x60\x60\x91\x5f\xef\x0a\xec\xd0\xc4\xa2\xbf\xc6\x1f\xc6\x04\x52\x52\x4f\x71\x46\x1b\x48\x61\xaa\xbb" +"\xc5\xd1\xb3\xf1\xb5\xbf\x85\x84\xa8\x1f\x0e\xf7\xf2\xf8\x7b\x15\xdc\xba\xa6\xba\x9e\x81\x95\x78\x7d\x86\x86\x79\x84\x1f\x86\x77" +"\x77\x84\x56\x89\x08\x30\x06\x42\x5c\x77\x5f\x6b\x1f\x6d\x63\x7f\x50\xfb\x01\x1a\xfb\x01\x9a\x55\xb5\x5e\x1e\x5b\xb9\xca\x72\xd7" +"\x1b\xf7\x23\xee\xe7\xf7\x18\xf7\x17\x29\xe8\xfb\x1f\x3b\x4c\x71\x55\x5c\x1f\x96\xee\xac\xab\xe8\x8e\x08\xb9\x22\x15\xf7\x04\xd8" +"\x45\x24\x27\x3e\x43\xfb\x01\x43\x58\xa3\xbe\x69\x1f\x77\xa8\x81\xad\xae\x1a\xef\xd9\xd3\xf5\x1e\x0e\xf7\x1f\xbe\x15\x5a\x26\x1d" +"\xf7\xa0\x06\xf6\xc4\xb5\xd8\xc9\x6b\xad\x40\x9c\x1f\xba\x9d\x9d\xa2\xb4\x1a\xd0\x50\xaf\xfb\x03\x1e\xfb\x70\x20\x0a\xbc\x06\xbf" +"\xfb\x06\x15\xf7\x06\xf7\x0b\x07\xe1\xab\x7c\x65\x63\x5d\x76\x32\x1f\x25\xfb\x5f\x15\xf7\x2c\xf4\x07\xd6\xbc\x83\x7b\xa1\x1f\x9c" +"\x7e\x96\x76\x73\x1a\x5c\x64\x74\x3e\x1e\x0e\xa5\x0a\x0e\xf8\x8e\x16\x4b\x07\x74\x24\x0a\xa4\x1e\xd6\x07\x8a\xab\x86\x90\x69\x8c" +"\x08\x69\xf7\xd1\xad\x06\x52\x1d\xfc\x08\x4b\x1d\xba\xfb\x36\x06\x8c\x2d\x67\x5d\x35\x7d\x72\x88\x87\x86\x8a\x6c\x08\x40\x07\x72" +"\x24\x0a\xa2\x1e\xcb\x07\xf7\x2b\xf8\x04\x15\xf7\x4f\xfb\xd1\xfb\x88\x06\xae\xa5\xa0\xc2\x8c\xd5\x08\x0e\x2c\x1d\x0e\xf8\xa1\xf7" +"\x56\x15\x8a\xa5\x8a\x9f\x88\x99\x08\xf6\x77\x30\xd3\xfb\x07\x1b\xfb\x18\x26\x2d\xfb\x0f\xfb\x17\xf7\x00\x27\xf7\x24\xe9\xf7\x0b" +"\xba\xb1\x98\x7f\x97\x7e\x85\x86\x89\x85\x83\x1f\x6c\x61\x46\x77\x4e\x1b\x23\x3f\xc8\xec\x7b\x1f\x8c\xbe\x15\xde\x9d\xd1\xc1\xe5" +"\x1b\xe4\xd2\x55\x38\x9d\x1f\xfb\xa3\xf7\xec\x15\xe7\x0a\xf7\x62\x95\x1d\xa3\xa4\x77\x9f\x72\x1f\x0e\xf7\xda\xf8\x04\x15\xa1\x24" +"\x1d\x2a\x3b\x1d\xa2\xfb\x0a\x87\x06\x72\x8d\x7b\x9b\x64\xca\x08\xd2\x60\x72\x9c\x51\x1b\x6e\x84\x83\x6c\x1f\x6a\x07\x74\x94\x7f" +"\x9c\x9c\x94\x96\xa0\x1e\xa3\x07\xa3\x89\x94\x82\xaf\x56\xa1\x67\x9d\x74\x99\x7e\x70\x79\x6e\x6b\x74\x62\x58\x31\x18\x72\x06\x35" +"\x1d\xa7\x06\xa6\x8c\x8c\x8b\x99\xa3\xbf\xe8\x18\xac\xc2\xac\xa7\xa9\x89\x08\x93\xfb\x28\x74\x06\x35\x1d\xec\x24\x1d\x75\xf7\x28" +"\x93\x06\xa8\x8d\xad\x6f\xab\x54\xc0\x2e\x18\x93\x7e\x90\x83\x8e\x8a\x08\x89\x8e\x96\x8a\x99\x1b\xa4\x06\x52\x1d\x73\x06\x58\xe5" +"\x72\xb6\x6e\xad\x72\x99\x19\x95\x93\xa1\xa8\x98\xa0\xb4\xcc\x96\x96\xa5\x8d\x08\x73\x07\x76\x94\xf7\x32\x1d\x6d\x52\x7a\x7f\x3f" +"\x59\x1e\x5d\x45\x80\x81\x74\x8a\x08\x87\x06\x0e\xf8\x4c\xf7\x73\x15\xc0\xa1\xa1\xa7\xb7\x1a\xd1\x3f\xb9\xfb\x0a\x40\x51\x78\x66" +"\x62\x1e\x9c\x07\xa4\x81\x99\x7a\x7b\x82\x7d\x72\x1e\x23\x07\x7a\x93\x81\x9a\x99\x93\x94\xa0\x90\xce\x0a\x72\x7d\x81\x7a\x7b\x98" +"\xc3\x0a\x7e\x95\x81\xa4\x80\x1f\x73\xbf\xdd\x7b\xd6\x1b\xf7\x24\xdb\xba\xe1\xbb\x67\xb6\x59\x96\x1f\x0e\x82\x1d\x0e\x82\x1d\xf7" +"\x10\xf8\xf0\x15\x7b\x81\x80\x79\x4b\xcd\x59\xe0\xdf\xcd\xbd\xcb\x9d\x81\x96\x7b\x7b\x83\x83\x77\x89\x1f\x66\x86\x62\x70\x56\x1b" +"\x57\x60\xa7\xaf\x88\x1f\x9e\x89\x83\x94\x7b\x1b\x0e\x89\x0a\x0e\xf8\x77\xf8\x04\x15\xae\x36\x0a\xfc\x09\x3b\x1d\xba\xfb\x72\x06" +"\x42\x6f\x67\x54\x80\x84\x8c\x8e\x7b\x1e\xad\x07\xa1\x83\x96\x7a\x7a\x81\x7e\x75\x1e\x63\x07\x78\x8e\x81\x92\x87\x1e\x82\x9a\xaa" +"\x85\xa6\x1b\xe5\xbb\xc3\xf4\x1f\xf7\x72\xf7\x4f\xfb\xd1\x69\x37\x0a\xf7\x0d\x2f\x1d\x68\x06\x0e\xf7\xdc\xb3\x15\xf7\x26\xf7\xcd" +"\x05\xfb\xc2\x47\x07\x75\x7f\x82\x7b\x7a\x97\x82\xa1\x1f\xf7\x28\x21\x0a\x6f\xf7\xd1\x9e\x38\x0a\x2b\x06\xfb\x27\xfb\xd0\xfb\x2a" +"\xf7\xd0\x05\x2a\x20\x0a\x9f\xfb\xd1\xf7\x0c\x1d\xf7\xc1\x06\xf7\x28\xfb\xcc\x05\x0e\xf8\x3d\xf7\x56\x15\xfb\x23\xe9\x1d\x24\xc5" +"\x1d\x06\x0e\x4b\x0a\x0e\xf8\x3d\xf8\x04\x15\xfb\xd1\xe9\x1d\xfc\x2a\x06\x76\x80\x82\x7a\x7b\x97\x82\x9f\x1f\xa5\xcd\x0a\xf7\xd1" +"\x06\x0e\x95\x0a\xf8\x66\xf8\x15\x15\xab\x62\x57\x9b\x60\x0a\x0e\xf7\xda\xf8\x04\x15\xf7\x23\xfb\x17\x06\x76\x94\x7f\x9c\x9c\x94" +"\x97\xa0\x1e\xf7\x4a\xfc\x4e\xfb\x4a\x9b\x1d\xf7\x17\xf7\x23\xfb\xd1\x28\x07\x76\x7f\x71\x0a\x46\x0a\x28\x06\x0e\x4e\x0a\x82\x7b" +"\x74\x1d\x9b\x80\x94\x71\x1d\x82\x7b\x4c\x0a\x0e\xf7\xda\xf8\xbc\x15\xa5\x82\x98\x79\x1e\x3a\x86\x05\x71\x89\x7e\x82\x7a\x1a\x7c" +"\x97\x80\x9a\x8c\x1e\x8d\x06\xcd\x8f\x05\xfb\x0b\x07\x96\x73\x7b\x8f\x75\x1b\x31\x49\x2c\xfb\x17\xfb\x18\xcd\x33\xed\x9e\x97\x8d" +"\x93\xa2\x1f\x29\x3a\x07\x72\x7d\x82\x7b\x7b\x99\x82\xa4\x1f\xf7\x6a\x06\xa4\x99\x94\x9b\x9b\x7d\x94\x72\x1f\x3a\xed\x06\x83\xa3" +"\x96\x89\x9f\x1b\xc1\xb3\xa1\xb8\xa7\x1f\xa6\xb6\x99\xc0\xc6\x1a\xf7\x13\x48\xec\x33\x75\x79\x87\x80\x74\x1e\x51\x04\x9b\x9d\x9a" +"\x91\xa1\x1b\xca\xb8\x42\x26\x29\x5e\x43\x4d\x76\x7c\x91\x9c\x77\x1f\x57\x16\x7a\x7a\x7c\x85\x74\x1b\x4c\x5e\xd2\xee\xb8\x95\xb5" +"\x9e\xae\x1f\xae\x9f\xa5\x9c\xae\x1b\xa1\x9a\x85\x7b\x9b\x1f\x0e\xb3\x1d\xf8\x8e\x16\x4c\x07\xe4\x0a\x54\xc6\x1d\x0e\xf8\x39\xbe" +"\x15\x24\x33\x1d\xf7\x53\x24\x1d\x67\xf7\xd1\xaf\x06\xc0\x1d\x0e\xf8\x6f\xbe\x15\xfb\x29\xf7\xd1\x9b\x44\x0a\x37\x86\x0a\x9b\xfb" +"\xd1\xfb\x29\xf7\xd1\x9b\x06\xa1\x97\x94\x9b\x9c\x80\x94\x74\x1f\x36\x20\x0a\x9c\xfb\xd1\x71\x26\x1d\xf8\x8d\x29\x1d\x72\xf7\xd1" +"\x9c\x23\x1d\x35\x20\x0a\x9c\x06\x0e\xf8\xa3\xbe\x15\xf7\xd1\x9c\x07\x7b\x0a\x35\x20\x0a\x9c\xfb\xd1\xfb\x29\xf7\xd1\x9b\x44\x0a" +"\x37\x86\x0a\x9b\xfb\xd1\xfb\x29\xf7\xd1\x9b\x06\xa1\x97\x94\x9b\x9c\x80\x94\x74\x1f\x36\x20\x0a\x9c\xfb\xd1\x71\x26\x1d\xf8\x8a" +"\x4c\x06\x73\x94\xf7\x41\x1d\xad\x87\x8f\x68\x8c\x08\x0e\xf7\xa6\xf8\x04\x15\xbc\xe9\x0a\xfb\xb4\xfb\x22\x06\x58\x0a\xe6\xf7\x1b" +"\xfb\xd1\x79\x5f\x1d\xf7\x42\x06\xde\xbf\x98\xa5\xa3\x1f\xa0\xa1\x97\xac\xad\x1a\xd8\x4a\xb3\xfb\x13\x1e\x23\x06\xfb\x56\x04\xf7" +"\x23\xf0\x07\xf5\xaf\x7a\x57\x55\x66\x77\x23\x1f\x0e\xf8\x99\xf8\x04\x15\xbb\x38\x0a\xfb\x28\x2e\x0a\xbb\xfb\xd1\x5b\x25\x1d\xf7" +"\x28\x29\x1d\x5b\x06\xfc\x28\xf7\xd1\x15\xbc\x23\x1d\xfb\x09\x29\x0a\x9b\xfb\xd1\x79\x26\x1d\xf7\x33\xdc\x0a\x06\xfb\x56\x04\xf7" +"\x23\xe1\x07\xf6\xae\x7a\x56\x55\x65\x78\x24\x1f\x0e\xf7\x49\xf8\x04\x15\xbc\x23\x1d\xfb\x09\x29\x0a\x9b\xfb\xd1\x79\x26\x1d\xf7" +"\x4d\x06\xde\xbd\x97\xa6\xa5\x1f\x9f\xa0\x98\xad\xac\x1a\xd9\x4a\xb3\xfb\x13\x1e\xfb\x07\x06\xfb\x56\x04\xf7\x23\xf7\x03\x07\xf5" +"\xb0\x79\x59\x54\x65\x77\x24\x1f\x0e\xf7\x97\xf7\x7c\x15\x76\x7f\x59\x0a\xf7\x62\x06\x2f\x7c\x49\x56\x29\x1b\x45\x56\xa0\xbc\x55" +"\x1f\x93\x82\x85\x8e\x82\x1b\x7e\x81\x82\x7e\x75\xa4\x73\xba\x72\x1f\x70\xbf\xb9\x7f\xc2\x1b\xf7\x1c\xea\xe5\xf7\x17\xf7\x17\x29" +"\xeb\xfb\x19\x50\x59\x7b\x6b\x62\x1f\x8d\x07\x56\x1d\x7f\x77\x1e\x31\x07\x77\x94\x7f\x9c\x9b\x93\x94\x9f\x8d\x1e\xbc\x91\xcd\xb2" +"\xda\x1b\xed\xcb\x55\x2b\x9a\x1f\x0e\xf7\x68\xf7\x56\x15\xfb\x16\x97\xd1\x3c\xf2\x1b\xf7\x01\xd8\xe9\xf7\x18\xf7\x19\x42\xe4\xfb" +"\x02\x29\x43\x42\xfb\x07\x7b\x1f\x42\xf7\x0f\xbc\x33\x0a\xfb\x0c\x2e\x0a\x9e\xfb\xd1\x63\x25\x1d\xf7\x21\x33\x0a\x5a\xf7\x23\x06" +"\xf7\x92\xf7\x50\x15\xde\xc0\x47\x21\x24\x55\x46\x3b\x3c\x55\xd0\xef\xf5\xc0\xd2\xd9\x1f\x0e\xf8\x33\xf7\x38\x15\xfb\x05\x56\x07" +"\x78\x81\x82\x7b\x7a\x95\x82\x9e\x1f\xf7\x23\x06\x9d\x95\x94\x9c\x9b\x81\x94\x79\x1f\x65\xf7\xd1\xb1\x06\x9d\x95\x94\x9b\x9c\x81" +"\x94\x79\x1f\xfb\x73\x06\x2c\x55\x5f\x3e\x4d\xac\x62\xce\x78\x1f\x50\x70\x60\x5f\x77\x55\x08\x77\x06\x78\x81\x82\x7a\x7b\x95\x82" +"\x9e\x1f\xc7\x06\x98\xd5\xba\xbe\xea\xb2\x08\xf7\x01\xbe\x15\x2e\x06\x29\x64\xa2\xc4\xbd\xad\xa2\xd2\x1f\xf7\x11\x06\x0e\xf7\x57" +"\xf8\x04\x15\xfb\xd1\xd3\x0a\xf7\xd1\xf7\xb2\xf7\x5f\x06\x4f\x0a\xfb\x2c\xfc\x0d\x07\x7c\x1d\x0e\xf7\x67\xf7\xba\x15\xd4\xcd\xa3" +"\x9a\xc2\x1b\xcf\xb8\x66\x52\x1f\xfb\xca\x07\x49\x89\x5f\x60\x4c\x1b\xfb\x14\x4e\x1d\xf7\x14\x06\xe9\xd1\xd0\xe6\x88\x1f\xf7\xcd" +"\x07\xdc\x47\xc8\x31\x50\x5b\x76\x5e\x5e\x1e\xec\xf7\x27\x73\x0a\xfb\x27\xe3\x27\x36\x1d\xbb\x66\x50\x06\x75\x80\xbe\x0a\x06\x0e" +"\xa5\x0a\xc3\xf8\xad\x15\x95\x93\x8f\x92\x94\x1a\x98\x7f\x97\x7e\x84\x84\x88\x83\x82\xd5\x0a\xf7\x1b\xf7\x7c\x15\xeb\x9a\xcb\xc1" +"\xec\x1b\xdb\xcd\x64\x59\x91\x1f\x78\x8d\x93\x82\x9b\x1b\x9c\x94\x97\x9f\x1f\xe5\x07\x9f\x82\x97\x7a\x7a\x82\x7f\x77\x1e\x89\x07" +"\xab\x61\x5a\x9b\x50\x1b\xfb\x1a\x29\x2b\xfb\x17\xfb\x17\xea\x31\xf7\x1d\xc1\xb9\x97\xa6\xc0\x1f\xba\xa3\xa4\xa4\xa1\x1a\x97\x81" +"\x95\x7d\x83\x86\x88\x83\x81\x1e\x5a\x55\x56\x76\x45\x1b\x29\x48\xc1\xe6\x7d\x1f\xf7\x62\x06\xa1\x96\x5a\x0a\x0e\xc0\x0a\xf7\x09" +"\xdf\xc3\xda\xaf\x77\xae\x6b\xa0\x1f\x6a\xa1\x66\x96\x4d\x91\x34\x91\x1d\xd2\x7e\x0a\x94\x82\x9a\x1b\x9b\xf7\x39\x1d\x82\x82\x7b" +"\x88\x1e\xa5\x69\x5e\x98\x56\x1b\x26\x40\x5a\x48\x6b\x9d\x6b\x9a\x1d\xa4\x85\xa5\x7c\x08\xa4\x7e\x9b\x75\x76\x1a\x5a\x4c\x67\x36" +"\x3a\x48\xad\xb5\x1e\x0e\x32\x1d\x89\x87\x0a\xf7\xdc\xf8\x37\x15\xfb\x38\xf7\x42\x1d\xf7\x04\xfb\xd1\xfb\x2d\x06\x78\x81\x85\x7c" +"\x86\x1f\x8a\x07\x8a\x89\x05\x78\x8f\x96\x83\x9f\x1b\xf7\xf9\x06\xa0\x98\x94\x9c\x9b\x7f\x94\x75\x1f\xfb\x2c\x06\xfb\x40\xf8\xae" +"\x15\x71\x78\x78\x72\x73\x9f\x77\xa3\xa5\x9f\x9e\xa4\xa3\x77\x9f\x72\x1f\xf7\x62\x16\x71\x78\x78\x72\x73\x9f\x77\xa3\xa5\x9f\x9e" +"\xa4\xa3\x76\x9f\x73\x1f\x0e\xca\x1d\xf8\x16\xf8\x04\x15\xad\x24\x1d\xfb\xa6\x3b\x1d\xba\xfb\x72\x06\x44\x6e\x64\x56\x83\x81\x8c" +"\x8f\x7a\x1e\xad\x07\xa0\x82\x97\x7a\x7a\x82\x7f\x74\x1e\x63\x07\x78\x8e\x80\x93\x87\x1e\x82\x9b\xa9\x85\xa6\x1b\xe3\xbc\xc5\xf3" +"\x1f\xf7\x72\xe4\xfb\xd1\x74\x37\x0a\xe6\x06\xd0\xb7\x97\xa5\xa4\x1f\xa1\xa0\x97\xab\xac\x1a\xd9\x53\xb4\x21\x1e\x71\x06\x58\x04" +"\xa5\x06\xd8\xa9\x77\x5a\x5b\x69\x73\x45\x1f\x6e\x06\x0e\xf7\xa9\xf7\x89\x15\xfb\x36\xf7\x0f\xc6\x0a\x23\x06\x76\x80\x82\x7a\x7b" +"\x97\x82\x9f\x1f\xa5\xfb\xd1\x63\x25\x1d\xf7\x0a\x33\x0a\x71\xf7\x23\xf7\x36\xfb\x23\x7a\x06\x40\x1d\xf7\x32\xdc\x0a\xf7\x0f\xbb" +"\x38\x0a\xfb\x08\x20\x0a\x9b\x06\xbf\xfb\xd1\x15\xf7\x23\xe0\x07\xf6\xaf\x7a\x58\x54\x65\x77\x24\x1f\x0e\xf7\x41\xf8\x97\x15\xe3" +"\x27\x78\x0a\xbb\x66\x50\x06\x76\x7f\xbe\x0a\xf7\x87\x06\xd4\xcd\xa3\x9a\xc2\x1b\xcf\xb8\x66\x52\x1f\xfb\x81\x63\x07\x76\x7f\x82" +"\x7a\x7b\xde\x0a\xdc\x47\xc8\x31\x50\x5b\x76\x5e\x5e\x1e\xec\xf7\x27\x73\x0a\x0e\x89\x0a\x30\xf7\x70\x15\x94\x93\x8f\x92\x94\x1a" +"\x98\x7f\x97\x7e\x84\x84\x88\x83\x82\x1e\xfb\x05\xa6\x1d\x98\x92\x56\x0a\xf7\x28\xf8\x04\x15\xa6\x24\x1d\x20\x33\x1d\x9f\x06\xf7" +"\x52\xfb\xe8\x6e\x56\x05\x54\x6c\x7b\x7e\x66\x1b\x83\x84\x8c\x8d\x7f\x1f\xc0\x07\xa3\x82\x97\x7a\x7a\x82\x7e\x72\x1e\x54\x07\x77" +"\x90\x80\x95\x85\x1e\x83\x9b\xa5\x86\xa5\x1b\xbf\xad\xa5\xd1\xb2\x1f\xf7\x7c\xf8\x34\x05\x9f\xab\x1d\x23\x3b\x1d\xa5\x06\xfb\x33" +"\xfb\xb2\x05\xfb\x11\xf8\x9e\x15\x7b\x81\x80\x79\x4b\xcd\x59\xdf\xe0\xcd\xbd\xcb\x9c\x80\x97\x7c\x7c\x83\x83\x7a\x88\x1f\x62\x86" +"\x64\x71\x54\x1b\x57\x61\xa6\xb0\x87\x1f\x9e\x89\x83\x94\x7b\x1b\x0e\xf7\xa6\x16\x28\x07\x74\x24\x0a\xa3\x1e\xed\xf7\x56\x07\xf7" +"\x0e\x1d\xfb\x20\x25\x1d\xbb\xfc\x61\xfb\x94\xf8\x61\xbb\x27\x0a\xfb\x20\x8c\x1d\x0e\xbc\x1d\xc5\xf7\x72\x15\x83\x07\x84\x07\xfb" +"\x14\xef\x2c\xf7\x1a\xf7\x18\xf1\xe8\xf7\x0e\xf7\x17\xfb\x01\xf2\xfb\x1f\x2a\xfb\x0b\x5b\x65\x7d\x96\x80\x99\x91\x8f\x8d\x91\x93" +"\x1e\xa9\xb3\xd3\xa1\xc8\x1b\xf1\xda\x4a\x2c\x99\x1f\x58\x04\x38\x79\x44\x56\x2f\x1b\x2f\x42\xc2\xdc\x7c\x1f\x0e\xf8\x9d\xf8\xd5" +"\x15\x90\x92\x8d\x92\x91\x1a\x99\x7f\x98\x7d\x81\x84\x86\x81\x84\x1e\xfc\x2c\xfc\xef\x05\x87\x84\x88\x84\x85\x1a\x7c\x97\x7f\x9a" +"\x94\x92\x90\x95\x92\x1e\xf7\x3f\xf8\x29\x15\x91\x87\x86\x8e\x85\x1b\x86\x88\x8a\x87\x85\x1f\x72\x6b\x74\x82\x72\x1b\x59\x68\xb2" +"\xc1\xc1\xaf\xb1\xbf\x9e\x9d\x86\x81\x97\x1f\x95\x84\x8d\x86\x90\x75\x8e\x7f\x95\x83\x94\x8c\x8e\x8c\x18\x93\x8c\x05\x92\x8c\x91" +"\x91\x92\x1a\x8c\x8b\x8e\x8a\x8d\x1e\x87\x9a\x8a\x95\x96\x1a\x91\x8c\x90\x8c\x90\x1e\x8e\x98\x8b\x8b\x8e\x1a\x98\x81\x95\x7e\x84" +"\x84\x87\x85\x87\x1e\x89\x89\x8a\x8a\x89\x87\x08\x99\x70\x78\x90\x73\x1b\x3f\x52\x50\x3b\x3b\xc3\x4f\xd6\xbd\xd0\xae\xa4\x90\x89" +"\x91\x89\x8e\x1f\xf7\x16\x2b\x15\x5d\x6c\x7f\x71\x71\x1f\x73\x71\x7d\x66\x65\x1a\x65\x99\x66\xa3\x72\x1e\x70\xa5\xaa\x7f\xb7\x1b" +"\xb7\xab\x97\xa5\xa4\x1f\xa3\xa5\x99\xb0\xb1\x1a\xdd\x53\xc4\x3a\x1e\x5c\x04\xc0\xae\x66\x54\x73\x83\x73\x7b\x79\x1f\x78\x7b\x78" +"\x84\x6a\x1b\x57\x67\xb0\xc1\xa5\x93\xa2\x9b\x9d\x1f\x9e\x9c\x9c\x92\xad\x1b\x0e\xf7\x50\xf7\x22\x15\x8d\x45\x8e\x76\x95\x76\x08" +"\x72\x98\x9f\x7d\xa3\x1b\xa8\xa3\x99\xab\xa8\x1f\x9d\x9f\x9b\xa0\x96\x9e\x90\x94\x18\x8d\x8e\x8c\x8f\x8f\x1a\x92\x85\x90\x84\x84" +"\x86\x87\x82\x84\x1e\x80\x7b\x05\x6c\x75\x7a\x7d\x7c\x1b\x79\x84\x9e\xc0\x97\x8b\xa4\x8c\xa0\x1f\x9e\x07\xaf\x07\xf7\x1e\xf7\x44" +"\xbe\xec\xe1\x1a\xc1\x6e\xae\x5f\x5f\x5a\x6a\x52\x64\x1e\x60\x4b\x74\xfb\x01\x88\xfb\x3d\x8a\x4e\x18\x74\x6f\x86\x85\x79\x76\x88" +"\x88\x19\x76\x75\x05\x85\x85\x89\x86\x86\x1a\x87\x07\x84\x8f\x8e\x88\x91\x1b\x96\x8b\x8b\xb9\xb7\x1f\xec\xf7\x3d\x15\x8d\xb1\x05" +"\xf7\x6d\x95\x9e\xd0\xbc\x1b\xa2\x9a\x76\x6b\x44\x64\x2f\x45\x2b\x1f\x0e\xdd\xf8\x94\x15\xfc\x61\x78\x37\x0a\xf7\x06\x24\x1d\x60" +"\xf8\x2d\x06\xf7\x38\xfc\x36\x05\x68\x99\x92\x84\x9f\x1b\xa6\x95\x9a\xb4\x1f\xf8\x5c\x9f\xf7\x0c\x0a\xfb\x08\x4c\x1d\xb7\xfc\x26" +"\x06\xfb\x3b\xf8\x3c\x80\xa7\x8a\x8b\x6d\x8c\x19\x57\x4b\x1d\xf8\x93\x3a\x15\xb3\x6d\xaa\x65\x75\x78\x81\x77\x7d\x1e\x80\x7b\x88" +"\x7a\x57\x1a\x42\x8d\x74\x92\x80\x1e\x78\x97\xa2\x7f\xa5\x1b\xb7\xa2\xa4\xbc\x1f\x57\x16\x7c\x86\x84\x80\x80\x86\x92\x9a\x1e\xf7" +"\x00\x07\x98\x90\x91\x96\x96\x90\x85\x7e\x1e\x8d\xfb\xb7\x15\xa6\x98\x94\x9d\xa0\x81\x8f\x57\x5f\x80\x86\x76\x7a\x99\x82\xa5\x1f" +"\x0e\xb9\x1d\x0e\xb9\x1d\x58\xf7\xcf\xf7\x0e\x0a\x7e\x83\x85\x88\x83\x82\xf7\x01\x0a\x97\x7f\x98\x92\x91\x68\x1d\x48\x1d\x8f\xf7" +"\xda\x15\xa0\x97\x94\x9b\x9b\x80\x94\x75\x5c\x1d\xf7\x4f\xf7\x98\x15\xf7\x51\xfb\xfe\x05\x7c\x93\x95\x83\x95\x1b\x92\x8e\x8e\x93" +"\x90\x8a\x8f\x87\x97\x1f\xfb\x24\xf7\xf5\xf7\x24\xf7\xf6\x05\x8e\x92\x8d\x94\x92\x1a\x91\x88\x8e\x84\x81\x86\x87\x78\x7e\x1e\x0e" +"\xf8\x32\xf7\x98\x15\xfb\x51\xf7\xff\x05\x9d\x7f\x85\x90\x81\x1b\x84\x88\x88\x85\x84\x8d\x82\x8e\x84\x1f\xf7\x24\xfb\xf6\xfb\x24" +"\xfb\xf5\x05\x87\x7f\x8a\x87\x86\x1a\x83\x8e\x88\x92\x95\x95\x93\x9a\x93\x1e\x0e\xf8\x66\xbe\x15\xf7\x94\x07\xd4\x44\xc0\x2b\x65" +"\x4a\x7e\x78\x54\xa6\x0a\x9a\x4f\x72\x8e\x5e\xef\x0a\xeb\xd0\xc2\xa1\xc0\xc9\x1f\x50\xb7\x07\x7a\x1d\xbf\xee\x0a\x73\x87\x89\x79" +"\x1b\x70\x7f\x94\x9e\xa7\xa3\xa3\xc8\xab\x1f\x95\x91\x90\x92\x96\x1a\x9b\x80\x94\x76\x1e\x26\xce\x15\x4f\x4a\x57\x74\x46\x1b\x48" +"\x61\xaa\xbb\xc5\xd1\xb3\xef\xb7\xbb\x86\x83\xac\x1f\x0e\xf8\x82\xf8\x2a\xf0\x0a\x88\x8c\xb3\x58\x1f\xb7\x53\x7c\xf7\x34\x1d\x7e" +"\xf7\x00\x0a\xc0\xb6\x95\x7a\x0a\x56\xcb\xa1\x7f\xac\x1b\xac\xaa\x9d\xb4\xae\x1f\x9d\xa1\x93\x97\xf7\x09\x0a\xfb\x20\x04\x7e\x87" +"\x87\x74\x7a\x1f\x6a\x73\x75\x7b\x75\x1b\x7b\x8a\x8c\xb3\x56\x1f\xb7\x54\x7b\x93\x6a\x1b\x68\x71\x7c\x63\x68\x1f\x75\x73\x83\x7e" +"\x81\x1a\x7e\x96\x80\x99\x94\x91\x8f\x95\x93\x1e\xc0\xb6\x95\x7a\x0a\x55\xcc\xa0\x80\xac\x1b\xac\xaa\x9e\xb4\xae\x1f\x9e\xa0\x92" +"\x98\x94\x1a\x98\x80\x96\x7d\x1e\x0e\x48\x1d\xfb\x05\xf8\x5f\x15\x54\x5f\x61\x57\x57\xb7\x61\xc1\xf7\x1a\x1d\x6d\x6d\x73\xa2\xa7" +"\xa7\xa3\xa2\xa8\x1f\xc3\xf7\x1b\x15\x96\x95\x8e\x8f\x65\x1d\x83\x81\x1e\xfb\x06\x29\x05\x7f\x81\x89\x87\x82\x1a\x7c\x96\x80\x9a" +"\x93\x8e\x8d\x94\x96\x1e\x0e\xf7\x35\xf7\x9e\x15\xa9\xb8\x9a\xaa\x9a\x1a\x93\x83\x91\x82\x84\x87\x88\x7e\x80\x1e\x6c\x68\x6e\x74" +"\x4f\x69\x08\x78\x81\x87\x87\x84\x1a\x85\x8f\x85\x92\x87\x1e\x91\x88\x8c\x8a\x8f\x89\x91\x88\x19\x99\x82\xbc\x6e\xa3\x77\xad\x64" +"\x19\x84\x91\x8f\x89\x92\x1b\x94\x92\x92\x93\x9a\x76\xb5\x73\xab\x1f\xf7\xb3\x9f\x0a\x0e\xf7\x9b\xf8\xae\x15\xfc\x34\x07\xa2\x6c" +"\x5e\xa1\x7c\x1b\x83\x84\x84\x82\x84\x8d\x87\x93\x85\x1f\xb8\x65\x9a\x79\xb8\x41\x08\x7e\x92\x8e\x88\x94\x1b\x92\x8f\x90\x9c\x95" +"\x1f\xab\xc3\xa5\xab\xaf\xa9\x08\x98\x96\x8e\x90\x91\x1a\x94\x85\x93\x83\x7c\x6b\x7c\x6e\x5d\x1e\xf8\x33\x07\x0e\xf8\xdd\xf7\x9f" +"\x15\xfc\x3c\x06\xa3\xab\xa0\xb5\x9a\x1a\x93\x84\x92\x82\x84\x87\x89\x84\x85\x1e\x64\x5e\x78\x7c\x41\x60\x08\x7d\x83\x88\x88\x83" +"\x1a\x84\x8f\x87\x9e\x81\x1e\xc6\x6a\xaa\x73\xa9\x68\x08\x7f\x95\x90\x87\x91\x1b\x95\x93\x91\x93\x9a\x7b\xab\x6e\xb7\x1f\xf8\x3c" +"\x06\x0e\xa3\xf7\x6b\x15\xf8\x3c\x9f\x0a\xfc\x3c\x06\x0e\xf7\xd0\x7f\x15\xf8\x34\x07\x75\xaa\xb8\x75\x9a\x1b\x93\x92\x92\x94\x92" +"\x89\x8f\x83\x91\x1f\x63\xac\x79\xa0\x6c\xbd\x88\x8f\x88\x8f\x88\x91\x88\x90\x88\x90\x8a\x8c\x08\x98\x84\x88\x8e\x82\x1b\x84\x87" +"\x87\x79\x81\x1f\x69\x51\x74\x6e\x66\x6c\x08\x7e\x81\x88\x86\x85\x1a\x81\x91\x84\x93\x9a\xa9\x99\xa9\xbb\x1e\xfc\x34\x07\x0e\xf7" +"\xa6\xf7\x02\x15\xa7\x5f\x69\x9b\x7c\x1b\x84\x84\x83\x82\x85\x8f\x86\x97\x80\x1f\xae\x6e\xa5\x6b\xf7\x37\x1d\x93\x8f\x1f\xb7\xd4" +"\x9e\xa4\xb8\xb0\x08\x92\x91\x8e\x8f\x92\x1a\x94\x84\x92\x83\x7c\x5f\x75\x74\x6b\x1e\xf7\xae\x07\x74\xab\xb7\x76\xa3\x0a\xab\x9a" +"\xa8\xb9\x1e\x0e\xf7\x57\x63\x15\x5f\xf7\x6a\xb7\x07\xfb\x18\xf7\x51\x15\xa7\x5f\x69\x9b\x7c\x1b\x84\x84\x83\x82\x85\x8f\x86\x97" +"\x80\x1f\xae\x70\xa5\x6a\xf7\x37\x1d\x92\x8f\x1f\xb6\xd5\x9f\xa3\xb8\xb0\x08\x92\x91\x8e\x8f\x92\x1a\x94\x84\x92\x83\x7c\x5e\x75" +"\x75\x6c\x1e\xf7\xad\x07\x75\xaa\xb8\x75\xa3\x0a\xac\x9a\xa8\xb8\x1e\x0e\xf7\x44\xbc\x15\x5e\xbe\xba\x77\xc0\x1b\xef\xdd\xdf\xf1" +"\xc0\x75\xb6\x61\xa9\x1f\x70\x9f\x75\x93\x5c\x94\x08\xce\xa7\xac\xb7\xc5\x1a\xdb\x48\xc7\x31\x52\x58\x72\x5f\x6e\x1e\x75\x6a\x82" +"\x5d\x39\x1a\xfc\x9f\x2b\x0a\xe1\xf8\x51\x15\xf7\x18\x8a\xca\x62\x37\x1a\x3d\x55\x53\x3f\x5b\x5b\xa2\xb0\x6b\x1e\x7b\x9f\x84\xa6" +"\xbc\x1a\xf7\x60\x07\xf7\x02\xae\xba\xdc\xca\xb5\x67\x56\x53\x56\x60\x39\x81\x1e\x0e\x49\x0a\x6e\xf7\x5d\xb7\x0a\x49\x0a\xfb\x1c" +"\xe7\xd8\x1d\xf8\x66\xf8\x15\x15\xab\x62\x57\x9b\x60\x0a\xfb\x3a\xf7\x8f\xb0\x0a\x49\x0a\xfb\x1b\xf7\x73\x26\x0a\x0e\xf7\xbf\xf7" +"\x57\x15\xfb\x14\xf7\x74\x05\x4a\x2e\x0a\xb0\x06\xf7\x13\xfb\x75\xfb\x2d\xfb\xa5\x05\x84\x7e\x88\x82\x84\x1a\x7e\x95\x81\x98\x98" +"\x94\x92\x9e\x95\x1e\xf7\x1d\xf7\x8b\xf7\x2e\xfb\xa5\x05\xcd\x22\x0a\x65\x06\xfb\x2d\xf7\xa6\xf7\x1c\xf7\x82\x05\x92\x98\x8e\x94" +"\x92\x1a\x98\x81\x95\x7e\x7f\x81\x83\x79\x81\x1e\x0e\xf7\xad\xf8\x88\x15\xfb\x1e\xfb\x07\xfb\x03\xfb\x1a\xfb\x22\xf7\x06\xfb\x05" +"\xf7\x24\xf7\x1f\xf7\x05\xf7\x03\xf7\x1c\xf7\x1f\xfb\x08\xf7\x06\xfb\x21\x1f\x8f\xfb\xbe\x15\xf5\x23\x05\x72\x67\x68\x80\x61\x1b" +"\x60\x6e\x94\xa3\x6c\x1f\x5d\xb8\x15\x70\xaf\x82\xa6\xb4\x1a\xb7\x96\xae\xa3\xac\x1e\xf7\x02\xfb\x00\x05\xe8\x16\xf7\x02\xf6\x05" +"\xa1\x6d\x94\x72\x66\x1a\x5a\x80\x66\x73\x6a\x1e\xfb\x2c\xf7\x29\x15\xfb\x03\xf7\x00\x05\xa3\xac\xae\x96\xb5\x1b\xb7\xaa\x81\x72" +"\xae\x1f\x0e\xf8\x82\x16\x9b\x07\xfb\x15\x9e\x50\xce\xf7\x18\x1a\x9c\x6e\x91\x81\x94\x80\x08\x68\xa9\xba\x73\xb5\x1b\xd1\xc2\xc4" +"\xd4\xd1\x59\xc2\x4c\x78\x80\x88\x7e\x70\x1f\x89\x8a\x82\x86\x86\x89\x08\xa1\xaa\x93\xa3\xa8\x1a\xd0\x53\xc1\x44\x44\x54\x55\x45" +"\x70\x90\x7d\xa5\x61\x1e\x9c\x68\x78\x91\x76\x1b\x4f\x58\x52\x46\x43\xc3\x53\xd2\xca\xc0\xb1\xd2\xad\x1f\x8c\x78\x05\x85\x07\x8a" +"\x53\x6e\x4c\x62\x6a\x72\x78\x79\x84\x42\x7c\x08\x7b\x07\x0e\x9a\x0a\xf8\x03\xf7\x50\x3c\x0a\x90\x1a\x99\x7f\x97\x7d\x81\x85\x87" +"\x7e\x82\x75\x0a\x96\x80\x9a\x95\x90\x8f\x98\x94\x1e\x0e\xf8\x90\xf8\x9c\x15\xde\x26\x07\x20\x1d\xbc\x6b\xfb\x19\x22\x1d\xf7\x19" +"\xfb\x0c\x06\xc2\x5e\x4f\xa8\x45\x1b\xfb\x10\x28\x27\xfb\x10\xfb\x10\xee\x26\xf7\x0f\xd2\xc5\xa7\xc4\xba\x1f\x46\xf0\x07\x61\x1d" +"\x5a\xf8\x36\xbc\x39\x0a\xfb\xa8\xfb\x1e\x15\xee\xd7\x40\x28\x2b\x3f\x3e\x2a\x2a\x3f\xd8\xec\xeb\xd7\xd8\xea\x1f\x0e\xf7\xa2\xf8" +"\x42\x15\x64\x84\x77\x84\x6f\x7b\x08\x43\x62\x5f\x42\x3d\x1a\xfb\x11\xf3\x28\xf7\x16\xf7\x16\xf2\xee\xf7\x11\xc7\x72\xc3\x5f\xb3" +"\x1e\x73\xa1\x7d\x94\x49\xb0\x08\x26\xc2\x7a\x9a\xb0\x1a\xb9\xab\x9e\xd5\x1e\xcf\x06\x9f\x95\x93\x9b\x9a\x80\x93\x78\x1f\x4a\x06" +"\x56\x6a\x83\x79\x71\x1f\x6c\x76\x79\x69\x68\x1a\x61\x9d\x70\xba\x6f\x1e\xb5\x53\xe0\x0a\xf6\xf7\xa2\x15\xe1\x20\xdc\xfb\x09\xaf" +"\x47\xba\xe0\xe3\xf7\x0f\xdb\xeb\x4d\xd1\xfb\x10\xf7\x44\x6e\xc4\x60\x3a\x53\x3c\xfb\x06\xfb\x23\x08\x0e\xf8\x22\xf8\xe0\xc1\x1d" +"\x2c\x1d\xfb\xbc\xf8\x08\x86\x1d\x2c\x1d\xfb\x40\xf7\x7d\x15\xf7\x1b\xf7\x01\x05\x99\x95\x8d\x8f\x95\x94\x1d\x7c\x80\x46\x1d\x2c" +"\x1d\xfb\x3f\xf8\x00\x26\x0a\x0e\xf8\xd9\xf7\x7b\x15\xbe\xfc\x8d\x07\x8f\xf7\x10\xcd\xc7\xf7\x15\x88\x08\xf7\xc6\xbe\xfb\xba\xf2" +"\x0a\x49\x99\x50\xa4\x65\x1e\xa2\x68\xae\x6c\xac\x7e\x08\x7c\xaf\xa7\x87\xd4\x1b\xf7\xba\xbe\xfb\xc6\x06\xfb\x14\x88\x4a\xc5\x85" +"\xf7\x0c\x08\x90\x07\x0e\x2c\x1d\x55\xf7\xab\x2d\x0a\xf7\x44\xf7\xb8\x15\xd5\xc8\xa4\x9b\xc7\x1b\xd4\xb0\x6d\x4c\x8f\x1f\xfb\xcb" +"\x07\x4a\x8a\x5e\x5f\x4c\x1b\x4e\x29\x0a\xc9\x06\xe6\x89\xd2\xd2\x89\xe6\x08\xf7\xd1\x07\xdc\x48\xc4\x2c\x4e\x66\x79\x53\x57\x1e" +"\xc7\x3a\x07\xbb\x0a\x06\x0e\xf7\x15\x1d\xfb\x14\xf7\x01\x21\xf7\x17\x96\x97\x8c\x8c\x9d\x1e\x71\x74\x80\x76\x6e\x1a\x62\xa9\x73" +"\xbe\xb5\xb3\x9f\xa0\x96\x82\x94\x82\x87\x87\x8a\x88\x87\x1e\x7e\x74\x86\x89\x79\x1b\x71\x7f\x94\x9e\xab\xa2\x9f\xec\xc0\x1f\xb2" +"\xa0\x97\x96\x9a\x1a\x99\x80\x96\x7d\x85\x87\x89\x85\x83\x1e\x6d\x63\x43\x75\x4f\x1b\x23\x3d\xcb\xeb\x7d\x1f\xbe\x04\xdd\x9c\xd3" +"\xc1\xe7\x1b\xe6\xd4\x54\x3a\x9b\x1f\x0e\x8e\x0a\x0e\x8e\x0a\xa1\xf8\x1a\x88\x1d\xf8\x9e\xf7\x08\x6b\x0a\xf8\x50\xf7\xae\x15\x57" +"\x0a\xfc\x50\x26\x1d\xf8\x50\xfb\x21\x6b\x0a\x0e\xf8\x71\xf7\x54\x15\x8a\xcf\x87\xa8\x7d\xaa\x08\xcc\x6e\x46\xb2\x36\x1b\xfb\x14" +"\x3b\x37\xfb\x1a\xfb\x1a\xd8\x3c\xf7\x15\xeb\xce\xb4\xd7\xa5\x1f\x8c\x8e\x8d\x8f\x05\x5e\x06\x8a\x89\x8b\x8a\x88\x87\x08\x5a\x72" +"\x5a\x70\x4a\x1b\x41\x69\xa1\xc8\x77\x1f\xd6\x07\xf7\x96\xb4\x15\xfb\x94\xd3\x06\xc5\xa9\xab\xa0\xc8\x1b\xcb\xbd\x6d\x5a\x9e\x1f" +"\x0e\x98\x0a\x0e\x98\x0a\xf7\x6a\xf7\x71\xf4\x1d\x98\x92\x56\x0a\xf7\x74\xa2\x0a\xf7\xaa\xf8\x63\x15\x8c\x9b\x05\xa2\x8d\x76\x9f" +"\x71\x1b\x72\x77\x78\x74\x86\xad\x0a\x0e\xf8\x30\xf7\x9e\x15\xfb\x6b\xfb\xb9\x58\xf7\xed\xf8\xc7\xfb\xed\x58\xf7\xb9\xfb\x57\xfb" +"\xb9\x58\x07\x0e\xf7\xd6\xf7\xac\x15\xf6\x94\xe0\xe9\xf7\x01\x1a\xf7\x0a\x2b\xea\xfb\x0a\xfb\x0a\x2c\x2c\xfb\x0a\xfb\x01\xe0\x2d" +"\xf5\x82\x1e\x32\xfb\x29\x64\xf7\x29\xfb\x2c\xb7\xf7\x2c\xf7\x28\xb2\xfb\x28\x07\x72\xf8\x69\x15\xeb\xd8\x40\x2f\x2d\x3f\x3f\x2d" +"\x2e\x3f\xd6\xe9\xe6\xd7\xd8\xe5\x1f\x0e\xf7\x0b\xbe\x15\x5a\x20\x0a\xf8\x30\x06\x9f\x97\x95\x9b\x9c\x80\x93\x76\x1f\x20\xf7\x3f" +"\x06\xa9\xc5\x8f\x94\x98\x9c\x08\xa1\x99\x9b\x96\x98\x1b\x9a\x98\x84\x7a\x9f\x1f\x7c\x9b\x8f\x89\x94\x1b\x9a\x96\x96\x99\x97\x85" +"\x93\x79\x99\x1f\xa5\x69\x7b\x92\x71\x1b\x66\x78\x7b\x4f\x66\x1f\xe1\x33\x07\x20\x1d\xaf\x6b\xfb\x2c\xf7\x57\xf7\xc3\x5e\x06\x58" +"\x0a\xeb\xfc\x5c\x07\x20\x1d\xbc\x06\xbf\xfb\x8a\x15\xf7\x2c\xfb\x6b\xfb\x2c\x06\x0e\xf7\xc0\xcd\x15\xfb\x45\xf7\xf5\x05\x52\x2e" +"\x0a\xa3\x06\xf7\x4d\xfc\x07\x05\x80\x5a\x87\x6b\x6d\x1a\x61\x9b\x71\xa4\xa3\x9b\xa6\xb7\xa8\x86\xac\x7f\xb9\x1e\xf7\x38\xf7\xda" +"\x9e\xaf\x94\x93\xa4\x8c\x19\xa0\x44\x0a\x71\x06\x5d\x8a\x7a\x7e\x6c\x4f\x08\x0e\x93\x0a\x2c\xf7\x80\x86\x1d\xbd\x1d\xa8\xf7\x94" +"\xb0\x0a\x93\x0a\xe8\xf7\x81\x15\x91\x94\x8d\x8f\x91\x1a\x99\x80\x97\x7c\x81\x85\x87\x7e\x82\x1e\x37\xfb\x0f\x05\x83\x7f\x8a\x8a" +"\x85\x1a\x7c\x97\x80\x99\x96\x90\x8f\x98\x94\x1e\x0e\xbd\x1d\xa9\xf7\x78\x26\x0a\x0e\xf8\xa0\xf7\xd9\x15\xfc\x3f\xf7\x7d\x05\x8d" +"\x86\x85\x8d\x87\x1b\x82\x83\x86\x84\x87\x1f\x8a\x88\x05\x88\x87\x8a\x87\x87\x1a\x82\x90\x84\x96\x85\x1e\xf7\xee\xfb\x50\xfb\xee" +"\xfb\x50\x05\x80\x84\x86\x85\x82\x1a\x88\x8d\x86\x8d\x86\x1e\x8c\x89\x05\x83\x90\x93\x86\x92\x1b\x90\x91\x8d\x8e\x91\x1f\x77\x61" +"\x15\x76\x80\x82\xa5\x1d\xf8\x34\x33\x0a\x0e\xf7\x3f\xf8\x9c\x15\xde\x26\x07\x20\x1d\xbc\x6b\x4c\x06\x75\x80\x82\x7b\x7b\x97\x82" +"\xa0\x1f\xca\xfc\x37\xd2\x0a\xf7\x87\x06\xb2\xb8\x8b\x8b\x96\x94\x08\xa3\xa8\xa6\x95\xb0\x1b\xb2\x9f\x85\x0a\x78\x97\x74\x6f\x1a" +"\xfb\x81\x63\x07\x77\x80\x82\x7b\x7a\x96\x82\x9f\xf7\x18\x1d\x2d\x4f\x62\x77\x56\x5b\x1e\xf7\x02\xf7\x0c\x07\xa0\x97\x94\x9b\x9b" +"\x46\x0a\x0e\xb8\x1d\xf7\x15\xf8\x3d\xe2\x1d\x58\x1d\xf7\xc0\x75\x15\x9b\xd2\xba\xdb\xe3\xf7\x02\x08\xd5\xe9\xa4\xbf\xc9\x1a\xca" +"\x55\xc0\x4a\x4b\x5d\x62\x3f\x76\x1e\xd9\x72\x5f\xb2\x4b\x1b\x4a\x58\x56\x47\x57\x9b\x68\xcc\x33\x1f\xf7\x09\xfb\x30\xa9\x56\xa0" +"\x3b\x08\x0e\xd1\x16\xf8\x61\xf7\xcb\x06\xfb\x7b\xf7\x92\xfb\x7a\xfb\x92\x05\xbd\xfb\x99\x15\xf7\x85\x07\xf7\x48\xf7\x5a\xf7\x49" +"\xfb\x5a\x05\xfb\x85\x07\x0e\x32\x1d\xfb\x2a\xf8\xcb\x86\x1d\xf7\x6d\xf8\x37\x15\xfb\x39\x2f\x0a\xf7\x05\xfb\xd1\xfb\x05\x20\x0a" +"\xf7\xaa\x21\x0a\xfb\x05\xea\x0a\xf7\xcc\xfb\x21\xbf\x0a\xfb\x89\x07\x74\x81\x2a\x1d\xf7\x5e\xf7\x49\x1d\x32\x1d\xe7\xf8\x6e\x2d" +"\x0a\xf7\xc0\xf7\x8a\x15\x52\xba\xc8\x69\xbf\x1b\xa7\xa5\x93\x98\x9f\x1f\xaa\xa1\xa2\xba\xb2\x1a\xd0\x50\xc3\x43\x54\x4f\x68\x54" +"\x61\x1e\xc6\x59\x56\xa9\x55\x1b\x43\x50\x52\x44\x47\xc4\x52\xd1\xc7\xb8\xa4\xca\xc1\x1f\xae\xb2\x15\xb9\xab\xbd\xa9\xb6\x1b\xba" +"\xaa\x6d\x5e\x5e\x6c\x6b\x61\x77\x76\x91\x97\x75\x1f\x7a\x94\x8b\x8b\x5c\xb9\x08\x47\x8f\x15\x5c\x66\x58\x6d\x61\x1b\x5e\x6e\xaa" +"\xba\xb6\xaa\xa9\xb8\xb4\xb3\x74\x58\xba\x1f\x0e\xf7\xa7\x5c\x15\x44\x84\x6f\x7b\x84\x88\x8d\x99\x83\x1e\x9a\x80\x7c\x94\x7a\x1b" +"\x71\x79\x7a\x72\x6d\xa5\x76\xb0\xa7\xa7\x98\xa3\xa2\x1f\xa9\xab\x93\xa9\xe4\x1a\xf8\x8a\x07\xca\x92\xa6\x9d\x90\x8f\x87\x82\x91" +"\x1e\x77\x99\x95\x85\x9f\x1b\xa5\x9d\x9c\xa3\xa9\x72\xa0\x68\x73\x72\x82\x7c\x77\x1f\x66\x6e\x7d\x60\x32\x1a\x0e\xf7\xda\xf9\x0e" +"\x15\x57\xfd\x35\x06\x4b\x83\x70\x7a\x86\x87\x8f\x94\x85\x1e\xa0\x7d\x81\x92\x77\x1b\x72\x78\x7a\x72\x6e\xa4\x75\xae\xa3\xa4\x94" +"\x9a\x9f\x1f\xb0\xa8\x99\xb6\xe4\x1a\x0e\xf7\xa6\xfb\x4a\x15\xbf\xf9\x35\x06\xca\x92\xa6\x9d\x90\x8f\x87\x82\x91\x1e\x77\x99\x95" +"\x85\x9f\x1b\xa5\x9d\x9c\xa3\xa9\x72\xa0\x68\x73\x72\x82\x7c\x77\x1f\x66\x6e\x7d\x60\x32\x1a\x0e\xf8\xad\xf7\x74\x15\xf7\x2a\x86" +"\xae\x70\xb8\x1e\xce\x61\x3e\xb4\x35\x1b\x57\x5b\x7c\x70\x62\x1f\x58\x68\x6e\x5d\x81\x4d\x08\x86\x69\x8a\x75\x2a\x1a\xfb\x52\x07" +"\x75\x94\x7f\x9c\x9b\x95\x98\xa0\x1e\xf7\x55\x07\x8c\xe3\x8b\x8b\x95\x1a\x8e\xbf\x92\xa9\x9a\xa1\x08\xbd\xad\xc8\xab\xcb\x1b\xc8" +"\xc6\x6e\x5e\xab\x1f\xa6\x66\x91\x66\xfb\x1c\x1a\xfb\x55\x07\x75\x94\x7f\x9b\x9b\x96\x99\x9f\x1e\x0e\xf7\xc5\xf8\xc7\x15\xfb\x33" +"\xfb\x13\xfb\x10\xfb\x2f\xfb\x32\xf7\x11\xfb\x12\xf7\x31\xf7\x2f\xf7\x12\xf7\x12\xf7\x30\xf7\x2d\xfb\x12\xf7\x14\xfb\x2b\x1f\x30" +"\xfb\x34\xf7\x1e\x1d\xf7\xa2\x34\x15\x86\x48\x82\x6c\x74\x69\x08\x5a\x6a\x5a\x72\x4b\x1b\x4f\x5e\xa0\xb4\x6a\x1f\x6e\xb0\x80\xad" +"\x85\xd4\x95\x63\x93\x7a\x9e\x75\x08\x61\xae\xbc\x76\xca\x1b\xc9\xbc\xa0\xb5\xae\x1f\x9e\xa1\x93\x9c\x95\xb3\x08\x29\xe2\xf7\x1e" +"\x1d\x0e\xef\x1d\xf7\xc3\x06\x7a\x1d\xbe\xb6\xa7\x1d\x87\x1e\x7d\x73\xa1\x1d\xa3\xa0\xa4\xae\x9e\x1f\xba\xa4\x8b\x8b\x9a\x5b\x0a" +"\xfb\x2f\xea\x0a\x0e\xf7\xc4\xbc\x0a\x7e\x88\x78\x7e\x1d\x0e\xf7\xc4\xf8\x25\x15\x56\x1d\x7f\x77\xe6\x0a\x82\x88\x86\x82\x1e\x83" +"\x7b\x7e\x88\x78\x7e\x1d\xfb\x0a\xf8\x88\xe3\x1d\xf7\xc4\xf8\x25\x15\x9f\x82\x97\x7a\x7a\x82\x80\x76\x1e\xfb\xea\x07\x58\xa6\x73" +"\xc4\xc2\xb5\x9e\xa5\x98\x7f\x97\x7f\x86\x83\x88\x86\x81\x1e\x84\x7c\x7c\x87\x79\x7e\x1d\xde\xf8\x9b\xc1\x1d\xf7\xc5\xbc\x0a\x7d" +"\x88\x79\x7e\x1d\xd0\xf8\x9b\x88\x1d\x32\x1d\xc9\xf8\xba\x5f\x0a\xf8\x30\xf8\x04\xbf\x0a\xfb\xb3\x07\x74\x81\x2a\x1d\xf7\x28\xf7" +"\xa2\x15\xfb\x1a\xfb\x01\x05\x7e\xf3\x1d\x96\x89\x8e\x58\x1d\xf7\x64\xf7\x84\x15\xf7\x47\x27\x07\x75\x80\x38\x1d\xbb\xfb\xd1\x5b" +"\x36\x1d\xf7\x28\x22\x0a\x5b\xf7\x1e\xa4\x06\xd7\x8c\xca\x52\xc6\xfb\x13\x8e\x85\x18\xe0\x06\xa1\x97\x94\x9b\x9c\x7f\x94\x75\x1f" +"\x57\x06\x58\xea\x51\xcb\x58\x9d\xf7\x33\xf7\x20\x18\x9a\x06\xa0\x97\x45\x0a\x29\x2e\x0a\x92\x06\xfb\x23\xfb\x14\x05\x0e\x91\x0a" +"\xf7\x19\x2e\x3c\x0a\x90\x1a\x9a\xc1\x0a\xa9\x0a\x9c\x80\x93\x75\x1f\xfb\x15\x06\x74\x81\x2a\x1d\x92\x06\xfb\x2d\xfb\x13\x05\xf7" +"\x46\x97\x1d\xfb\xd1\x5a\x20\x0a\xf0\x06\x0e\x42\x0a\xf7\x03\xf9\x40\x6d\x1d\xe4\xbe\x15\x71\x36\x1d\xf7\x09\x22\x0a\x6b\x06\xf7" +"\x2c\xf7\xb2\xf7\x39\xfb\xb2\x05\x6d\x20\x0a\xf7\x0a\x22\x0a\x71\x06\xfb\xd0\xf8\xbc\x05\x36\x06\x77\x7f\x82\xa5\x1d\xbf\x06\xe7" +"\xfb\x35\x05\x0e\x42\x0a\xf7\x48\xf8\x9b\x15\x91\x93\x8d\x91\x90\x1a\x99\x7f\x97\x7d\x81\x86\x88\x7d\x81\x75\x0a\x97\x80\x99\x95" +"\x90\x8f\x98\x94\x1e\x0e\x42\x0a\x89\xfb\x24\xe5\x1d\x42\x0a\xf7\x43\xf7\xdf\x15\x62\x6b\x6d\x64\x63\xab\x6d\xb4\x1f\x96\x06\xb5" +"\xab\xa9\xb3\xb2\x6b\xa9\x61\x1f\x0e\xbc\xf7\xd9\x15\xf8\x3e\xfb\x7d\x05\x88\x91\x91\x89\x8f\x1b\x93\x93\x90\x93\x8f\x1f\x8c\x8d" +"\x05\x8e\x90\x8c\x8f\x8f\x1a\x94\x86\x92\x80\x91\x1e\xfb\xed\xf7\x50\xf7\xee\xf7\x50\x05\x95\x90\x90\x93\x94\x1a\x90\x8a\x8e\x89" +"\x8f\x1e\x89\x8e\x05\x92\x87\x83\x90\x83\x1b\x86\x85\x89\x89\x86\x1f\x9e\xfc\xc3\x15\x53\x0a\xfc\x34\x26\x1d\x0e\xf7\x50\xf7\x44" +"\x15\x80\x44\x68\x55\x68\x8a\x08\x7b\x80\x81\x7d\x7a\x3a\x1d\xf7\xd7\x06\xbc\xb3\xb7\xc0\x9b\x80\x96\x7c\x7c\x83\x82\x79\x89\x1f" +"\x6e\x88\x7c\x7a\x75\x1b\xfb\x85\x06\xa3\xaa\x9c\xb6\x92\xbe\x08\xf7\x15\xf7\x0a\x0a\xfb\x12\x06\x8a\xa0\x8b\x93\x88\x9d\x08\xf7" +"\x16\x06\x9e\x93\x92\x9c\x9b\x83\x92\x78\x1f\xfb\x21\x06\x89\x94\x8b\x8b\x80\xae\x08\x83\xa8\x86\xa4\x9b\x1a\xbf\xb7\xb6\xbf\xad" +"\xa3\x7e\x6a\xa6\x1e\x81\x94\x90\x87\x93\x1b\x98\x98\x97\x97\x97\x7f\x9c\x76\x9e\x1f\xa5\x6d\x69\x98\x65\x1b\x3a\x4a\x4a\x3a\x71" +"\x90\x75\xa0\x49\x1f\x46\x06\x77\x83\x84\x7a\x7b\x93\x84\x9f\x1f\xdc\x06\x8d\x82\x8c\x79\x8c\x77\x08\x36\x06\x77\x83\x84\x7a\x7b" +"\x93\x84\x9f\x1f\x0e\xf7\xa9\xbe\x15\xf8\x3b\x07\xb9\xb6\xab\xca\xb0\xa8\x88\x83\xc5\x1e\x8a\x92\x8f\x8b\x8d\x1b\x9b\x96\x95\x9a" +"\x98\x83\x94\x7d\x8e\x1f\x92\x6b\x46\x91\x63\x1b\x2f\x48\x55\x40\x1f\x54\x39\x52\x0a\xdd\xfb\xd1\x2f\x29\x0a\xf7\xd0\x21\x0a\x0e" +"\xf7\xe4\xf8\x31\x15\x91\x75\x77\x8e\x76\x1b\xfb\x0b\x2c\x2c\xfb\x0a\xfb\x0a\xea\x2c\xf7\x0a\xf7\x0a\xea\xea\xf7\x0a\xdb\x5e\xd4" +"\x45\xb0\x1f\xe3\xf7\x53\x05\x61\xaa\xaa\x6d\x95\x1b\x92\x8f\x8f\x90\x8f\x89\x8f\x85\x95\x1f\x75\xad\x78\xc0\x88\xaf\x08\x9e\x8a" +"\x8a\x8e\x85\x1b\x87\x87\x89\x83\x81\x1f\x78\x7a\x4a\x73\x67\x88\x08\x79\x88\x87\x89\x83\x1a\x80\xa3\x84\xb2\x1e\x9f\x06\x9f\x8c" +"\x05\x8d\x06\xfb\x31\xfb\x79\x15\xea\xd8\x40\x2f\x2d\x40\x3f\x2d\x2e\x3f\xd6\xe8\xe7\xd7\xd8\xe5\x1f\x0e\xf7\xa8\xf7\xcf\x15\xe4" +"\xf7\x5f\x05\x98\xa9\x8d\x92\x99\x1a\xa1\x7a\x9c\x73\x6a\x80\x7a\x49\x7f\x1e\x67\xfb\x66\x05\x0e\xf7\xa6\xf7\x28\x15\x90\x7e\x7a" +"\x8f\x7d\x1b\x57\x5d\x5e\x59\x6e\xa1\x78\xad\xd3\xbe\xc2\xda\x1f\xf7\x8b\x07\xba\x84\xb3\x4b\x46\x1a\x60\x83\x69\x77\x5e\x1e\xa2" +"\x06\xa9\xb0\x9b\xb9\xbc\x1a\xca\x73\xc7\x59\xc7\x1e\x61\xbe\x8a\x8c\x86\x90\x85\x94\x19\xbc\x66\x07\x0e\xf7\xd8\xf8\x81\x15\xa0" +"\x70\xa2\x76\xa3\x7e\xc8\x68\x96\x84\x90\x82\x08\x92\x7e\x8f\x78\x73\x1a\xfb\x92\x07\x92\x78\x72\x90\x76\x1b\x3f\x48\x51\x4a\x65" +"\xaa\x73\xbd\xc3\xc0\xa4\xb5\xac\x1f\xa2\xa8\x92\xa3\x8e\xc0\x08\xf8\x22\x07\x8c\xda\x67\xdb\x59\xab\x57\xac\x18\x71\x9c\x7c\x95" +"\x86\x8f\x08\x7d\x9b\x84\x9e\xa5\x1a\x99\x5b\xfc\xae\x07\x93\x78\x74\x8f\x76\x1b\x41\x49\x52\x49\x65\xaa\x73\xbb\xc2\xbf\xa4\xb5" +"\xac\x1f\xa1\xa8\x92\xa3\x8e\xc0\x08\xf7\x2c\xf7\x47\x15\xfb\x0d\xcc\x71\xb4\x87\xf7\x12\x8e\x89\x18\xf7\x0d\x49\xa5\x63\x90\xfb" +"\x12\x08\x0e\x6a\x1d\xf7\x9c\xf7\x79\x34\x0a\xf7\x63\xf8\x37\x15\x3b\x06\x74\x81\x2a\x1d\xa7\xfb\xd1\x63\x29\x0a\xf7\x18\x06\x9f" +"\x96\x21\x1d\x77\x1f\x63\xf7\x85\x06\xd6\xc8\xa4\x9a\xc8\x1b\xaf\x9e\x85\x0a\x77\x97\x74\x70\x1a\xfb\x81\x6f\x6e\x0a\xf7\x01\x06" +"\x9f\x97\x53\x1d\x6e\xf7\x88\x06\xd9\x45\xc7\x2f\x4e\x67\x79\x53\x56\x1e\x52\xf7\x67\x15\x92\x95\x8d\x8f\x90\x1a\x99\x7f\x97\x7d" +"\x80\x86\x87\x7e\x82\x1e\x36\xfb\x0f\x05\x84\x81\x8a\x88\x85\x1a\x7c\x97\x80\x99\x95\x91\x8f\x98\x94\x1e\x0e\x6a\x1d\xf7\x13\xf7" +"\x0c\xd8\x1d\x6a\x1d\xf7\x2b\xfc\x58\xb6\x0a\xf7\xda\xf7\x7c\x15\xf7\x93\xbd\xfb\x79\x06\xec\xf7\x49\x05\xf7\x18\xbe\x22\x06\x97" +"\xa9\x96\xa1\x96\x9a\x08\x8f\x90\x8d\x8f\x8e\x1a\x96\x7e\x96\x7f\x7e\x85\x87\x7b\x83\x1e\x60\x3a\x05\xfb\x1a\xf2\x0a\xfb\x10\xb7" +"\x3b\xe6\x63\x1e\x6e\x55\x05\x87\x83\x89\x85\x86\x1a\x7f\x97\x80\x98\x97\x92\x90\x9a\x93\x1e\xac\xca\x05\x87\xac\x8f\x8b\xb8\x1b" +"\xf7\xba\xbe\xfb\xc6\x06\x73\x84\x8b\x8d\x7e\x1f\xb2\xf7\x47\x15\x31\xfb\x3c\x4a\xa1\x68\xc3\x87\xe0\x19\x90\x07\xf7\xd2\xf7\x7b" +"\x15\x2a\xfb\x49\x05\xfb\x71\x90\x06\x91\xf7\x0c\xcc\xc6\xf7\x14\x88\x08\x0e\xf8\x12\xf8\x0e\x15\xba\xe5\x05\x8f\x92\x8d\x92\x90" +"\x1a\x98\x7f\x96\x7d\x80\x84\x86\x7d\x83\x1e\x4f\xfb\x06\x05\xfb\x89\x26\x1d\xf7\x6f\x06\x5b\x31\x05\xfb\x3f\x20\x0a\xf7\x24\x06" +"\x61\x3a\x05\x87\x84\x89\x85\x86\x1a\x7e\x97\x7f\x99\x96\x92\x90\x9a\x92\x1e\xc2\xf3\x05\xf7\x86\x27\x0a\xfb\x6b\x06\xbb\xe5\x05" +"\xf7\x3b\x44\x0a\x0e\xf7\x3c\xf8\x35\x15\x3c\x06\x78\x81\x83\x7a\x7b\x96\x81\x9d\x1f\xb6\x06\xf7\x3f\xfc\x02\x05\xba\x06\xf7\x0d" +"\xf7\x18\xbd\xdf\xd3\x1a\xca\x68\xd5\x6e\x7f\x7d\x7f\x80\x85\x8e\x81\x91\x81\x1e\x9d\x6c\x92\x72\x6d\x1a\x4f\x67\x47\x3f\x32\x1e" +"\x83\x82\x86\x86\x85\x83\x08\x0e\x4b\x0a\xfb\x0e\xf7\x80\x42\x1d\x2c\x0a\x88\xf7\x5d\x55\x1d\x94\x1a\x99\xde\x1d\x83\x84\x68\x0a" +"\x2c\x0a\xf7\x0c\xf7\x23\x15\xa0\x97\x94\x9b\x9b\x80\x94\x75\x5c\x1d\x8a\x0a\x0e\x8a\x0a\xd2\xf8\x1b\x15\x96\x94\x8e\x90\x94\x1a" +"\x99\x7f\x97\x7d\x84\x84\x88\x83\x83\x1e\xfb\x06\xa6\x1d\x99\x91\x56\x0a\x4b\x0a\x0e\x4b\x0a\xdb\xf7\x62\x15\x95\x93\x8f\x92\x93" +"\x1a\x99\x7f\x97\x7e\x83\x85\x88\x83\x82\x1e\xfb\x05\x2b\x05\x80\x82\x87\x85\x83\x1a\x7d\x97\x7f\x99\x92\x92\x8e\x93\x93\x1e\x0e" +"\xcf\x8e\x15\xf8\x66\xb5\xfc\x3c\xf8\x3c\x61\x06\x0e\x8d\x0a\x82\xf7\x82\xb8\x0a\xf7\x2b\xf8\xbc\x15\x7d\x8c\x95\x82\x9a\x1b\xac" +"\x8c\x05\xbb\xc4\x77\x6c\xb5\x1f\xa8\x76\x9e\x76\xa7\x60\x08\xa7\x5f\x66\x96\x57\x1b\xfb\x16\x24\x28\xfb\x11\xfb\x11\xf2\x27\xf7" +"\x17\xf7\x15\xf3\xee\xf7\x10\xe9\x64\xf7\x00\x4e\xd1\x1f\xcb\x55\x33\xb0\x29\x1b\x70\x88\x8a\x84\x84\x1f\x87\x87\x89\x84\x84\x1a" +"\xf7\x27\xfb\x40\xe0\x0a\xf7\x3f\xf7\x77\x15\xa5\x06\xf7\x08\xe7\xd5\xea\xe9\x36\xd4\xfb\x01\x1f\xfb\x21\x76\x1d\xf7\x1a\x06\xba" +"\x8b\x8b\x8f\x91\x1f\x93\x8f\x90\x94\x94\x5b\x0a\x49\x06\xf7\x76\x04\xf7\x7f\xb6\x07\xd8\xc9\x57\x4b\x4a\x46\x55\x37\x1f\xf7\xa4" +"\x78\x15\xc6\x07\x9b\x83\x94\x7d\x7d\x83\x82\x7b\x1e\x50\x76\x07\x7a\x82\x84\x7d\x7e\x95\x83\x9b\x1f\xa0\xfb\x25\x06\x4c\x9a\x7a" +"\xc0\xae\xa8\xa1\xa5\x96\x81\x94\x7f\x84\x86\x88\x82\x86\x1e\x7f\x84\x88\x89\x7e\x1b\x75\x87\x91\xac\x1f\xf7\x24\xba\x07\x9b\x95" +"\x93\x98\x99\x82\x92\x7a\x1f\x0e\xf7\x8b\xfb\x23\x15\x72\x94\x7d\x9c\x9c\x94\x98\xa5\x1e\xf7\x14\x07\x8a\x90\x92\x8b\x91\x1b\xf7" +"\x18\xeb\xec\xf7\x18\xf7\x0d\x3b\xee\x29\x63\x6a\x7a\x6b\x76\x1f\x78\x6f\x84\x67\x3f\x1a\xfb\x5f\x07\x6e\x94\x7d\x91\x7a\x96\x08" +"\x59\xaa\x70\xc1\xd0\x1a\xd2\xa9\xc3\xc0\xa8\x1e\xa1\x97\x92\x93\x97\x1a\x99\x82\x95\x7e\x74\x62\x6f\x66\x6e\x1e\x6a\x63\x7b\x5a" +"\x50\x1a\xfb\x10\xd0\x36\xf7\x0c\x75\x1e\xbf\xf7\x93\x15\xf2\x9c\xae\xbe\xcf\xc5\x3e\x31\xfb\x02\x42\x48\xfb\x0d\x88\x1e\x0e\xf8" +"\x5e\xf8\x04\x15\xb3\x29\x1d\xfc\x1f\x25\x1d\xb3\xfb\xd1\x63\x25\x1d\xf7\x17\x22\x0a\x64\xf7\xd1\xf7\x67\xfb\xd1\x64\x36\x1d\xf7" +"\x17\x29\x1d\x63\x06\x0e\xf8\x7d\xf8\xe3\x15\xbc\x6c\x0a\xfc\x71\xf7\x27\x1d\xbc\xfd\x02\x5a\xf7\x27\x1d\xf7\x2b\x6c\x0a\x59\xf9" +"\x02\xf7\xa6\xfd\x02\x5a\x06\x7b\x8c\x80\x81\x8a\x7c\x08\x88\x07\x8c\x7c\x96\x81\x9b\x8c\x08\xf7\x2b\x6c\x0a\x5a\x06\x0e\xf7\xe9" +"\xf8\x64\x15\xfb\x2b\x65\x86\x71\x5e\x1f\x46\x62\x61\x3f\x37\x1a\x3e\xad\x46\xc8\x5f\x1e\x67\xbd\xae\x85\xf7\x39\x1b\xf7\x56\x06" +"\xa0\x99\x95\x9b\x9b\x7f\x94\x74\x1f\xfb\x58\x06\xfb\x14\x60\x90\x9e\x68\x1f\x54\xa8\x65\xcb\xcb\x1a\xc5\xab\xc7\xba\xaa\x1e\xa6" +"\xb3\xb0\x90\xf7\x23\x1b\xf7\x58\x06\xa1\x98\x95\x9b\x9b\x7e\x94\x75\x1f\x0e\xf7\x74\x16\xf7\x2d\xb0\x90\xa5\xb8\x1f\xd0\xb4\xb5" +"\xd7\xdf\x1a\xd8\x68\xd0\x4f\xb7\x1e\xaf\x59\x67\x91\xfb\x39\x1b\xfb\x55\x06\x75\x7e\x82\x7b\x7b\x98\x81\xa1\x1f\xf7\x58\x06\xf7" +"\x16\xb3\x86\x78\xaf\x1f\xc2\x6f\xb1\x4a\x4b\x1a\x51\x6b\x50\x5b\x6b\x1e\x71\x65\x63\x85\xfb\x21\x1b\xfb\x58\x06\x74\x7f\x82\x7b" +"\x7c\x99\x80\xa0\x1f\x0e\xf7\xda\xf8\xce\x15\x9f\x82\x97\x7a\x7a\x82\x7f\x77\x1e\xfc\xaa\x07\x36\x90\x70\xac\x8e\xeb\x08\xf7\x8d" +"\x27\x78\x0a\xbb\xfb\x5a\x06\x8c\xfb\x14\xb9\x56\xf7\x06\x87\x08\xfb\x1b\x07\x27\x1d\xf7\x1b\x07\xf7\x07\x90\xba\xc1\x8a\xf7\x12" +"\x08\xf7\x5a\xbb\x07\x32\x0a\x27\xfb\x8d\x06\x8c\x28\x73\x6d\x35\x86\x08\x0e\xf8\x5f\xf7\x3f\x15\x65\xbd\x7b\x9b\x69\xa3\x08\xe1" +"\xa8\xba\xbe\xcb\x1a\xe0\x36\xd4\x27\x1e\xfb\x8d\x9c\x0a\xf7\x57\xf7\x12\x06\xb3\x79\xb3\x6a\xaa\x61\x41\x71\x18\x7a\x85\x85\x84" +"\x7d\x1a\x7f\x96\x7f\x98\x8f\x90\x8c\x8e\x92\x1e\xe2\xaa\x9c\x70\x97\x76\xa9\x57\x19\x91\x80\x05\xc6\x21\x0a\x70\x06\x71\xb7\x83" +"\x98\x7e\xa0\xe0\xa9\x18\x9c\x91\x91\x92\x98\x1a\x97\x80\x97\x7f\x87\x82\x89\x8a\x87\x1e\xfc\x15\xe6\x15\xf7\x2a\x1d\x0e\x6b\x1d" +"\xf7\x4a\xf7\x9b\xb7\x0a\xf7\x2e\xf7\xd1\x15\x22\x06\x79\x8c\x80\x82\x8a\x7a\x08\x8a\x07\x8c\x7a\x96\x82\x9d\x8c\x08\xc7\x06\xe4" +"\xfb\xb0\xf7\x85\xf9\x2f\x05\xf7\x3b\x06\x9c\x98\x96\x9a\x9b\x80\x94\x78\x1f\xfb\x66\x06\xfb\x55\xfc\xcc\x05\x0e\x6b\x1d\xb8\xf7" +"\x2e\xaf\x0a\x6b\x1d\xa8\xfc\x36\x3c\x0a\x91\x1a\x98\x7f\x97\x7d\xf7\x02\x1d\xf7\x0b\xf8\x19\x15\xf8\x12\x27\x0a\xfc\x46\xfb\x88" +"\x06\x39\x1d\x96\x9f\x1e\x0e\xf7\x28\xd1\x15\x51\xbf\xc4\x6f\xd0\x1b\xf7\x0c\xee\xf1\xf7\x0f\xc5\x77\xc1\x66\xb6\x1f\xba\x62\x57" +"\xa1\x47\x1b\x4a\x52\x76\x65\x62\x1f\x5d\x61\x75\x4c\x32\x1a\xfb\xde\x2b\x0a\xf7\x42\xf8\xa8\x15\xf1\xd0\x46\x25\x2a\x40\x3c\x2e" +"\x56\x58\xa5\xb7\x66\x1f\x73\xa9\x7f\xae\xb5\x1a\xee\xd4\xd2\xf0\x1e\x0e\x3e\x0a\xf7\xb3\xf8\x71\xf7\x00\x1d\x97\xf7\x48\x1d\xf7" +"\xd2\x7c\x15\xf7\x05\x92\xd3\xbf\xd6\x1a\xaf\x77\xae\x6b\xa0\x1e\x6a\xa1\x66\x96\x4d\x91\x33\x91\x1d\xd3\x7e\x0a\x93\x82\x5c\x0a" +"\xcf\x07\xa0\x82\x96\x7b\x7d\x81\x81\x7c\x89\x1e\xa5\x69\x5e\x98\x55\x1b\x26\x40\x5a\x48\x6a\x9d\x6c\x9a\x1d\xa5\x85\xa5\x7c\x08" +"\xa4\x7e\x9b\x74\x77\xf7\x0f\x0a\x92\x07\x9b\x80\x96\x7c\x7a\x82\x80\x76\x1e\x3a\x07\x76\x94\x80\x9c\x9b\x94\x96\x9f\x1e\xa8\x73" +"\xb3\x7b\xbe\x86\x08\x4a\xa5\x07\xa6\x99\x84\x7e\x7e\x7b\x82\x74\x7d\x7c\x8f\x95\x77\x1f\x90\x82\x88\x8c\x85\x47\x1d\x85\x9b\x83" +"\x1f\x81\x9f\xaa\x93\x1d\x0e\x3e\x0a\xf7\x2a\xf8\xa3\x3c\x1d\x99\x91\xae\x1d\x84\x94\x90\x89\x92\x1b\x99\x96\x96\x99\x95\x88\x90" +"\x7f\x95\x1f\x0e\x3e\x0a\xf7\x42\xfb\x60\x15\x91\x95\x8d\x8f\x90\x1a\x9a\x80\x96\x7c\xf7\x02\x1d\xf7\x52\xf7\xcf\x15\xe4\xf7\x5f" +"\x05\x98\xa9\x8d\x92\x99\x1a\xa1\x7a\x9c\x73\x6a\x80\x7a\x49\x7f\x1e\x67\xfb\x66\x05\xf7\x52\x16\xe5\xf7\x5f\x05\x98\xa8\x8d\x93" +"\x99\x1a\xa1\x79\x9c\x74\x6a\x80\x7a\x49\x7f\x1e\x67\xfb\x66\x05\x0e\xf8\xbc\xf8\x12\x15\x9d\x96\x95\x9a\x9b\x80\x95\x79\x1f\xfb" +"\x6c\x06\x3e\x6c\x84\x71\x5d\x1f\x44\x62\x5f\x42\x3d\x1a\xfb\x11\xf3\x28\xf7\x16\xf7\x15\xf3\xee\xf7\x11\xd2\x6f\xc1\x4c\xbc\x1e" +"\xfb\x25\x16\xf7\x25\x1d\x0e\xf7\x6d\xf8\x23\x15\x75\x79\x7a\x75\x76\x9c\x79\xa1\xa1\x9c\x9c\xa1\xa0\x7a\x9d\x76\x1f\xf7\x41\x8c" +"\x15\x75\x79\x79\x76\x75\x9d\x79\xa1\xa0\x9d\x9d\xa0\xa1\x79\x9d\x76\x1f\xe9\x37\x15\x82\x64\x83\x7b\x77\x73\x08\x61\x66\x5c\x77" +"\x4d\x1b\x4c\x5d\x9f\xb5\x66\x1f\x77\xa3\x83\x9b\x82\xb2\x90\x48\x93\x6c\xa2\x68\x08\x5b\xac\xbd\x72\xcb\x1b\xc6\xba\xa0\xb4\xab" +"\x1f\xa8\xb0\x96\xae\x90\xd3\x08\xfb\x47\xf7\x8b\x15\xfb\x33\xfb\x13\xfb\x10\xfb\x2f\xfb\x32\xf7\x11\xfb\x12\xf7\x31\xf7\x2f\xf7" +"\x12\xf7\x12\xf7\x30\xf7\x2d\xfb\x12\xf7\x14\xfb\x2b\x1f\x83\x66\x15\xf7\x1d\xf7\x03\xfb\x00\xfb\x1b\xfb\x1d\xfb\x01\xfb\x01\xfb" +"\x1c\xfb\x1b\xfb\x01\xf7\x01\xf7\x1c\xf7\x19\xf7\x02\xf7\x03\xf7\x17\x1f\x0e\xf7\x22\x16\xf8\x09\x9d\x06\xfb\x11\x91\x51\xcd\x8d" +"\xf7\x17\x08\x4a\xad\xaf\x72\xc3\x1b\xc1\xb8\xba\xc5\xc0\x77\xaa\x38\xd7\x1f\x37\xd8\x7c\xa1\x6d\xe5\x7f\x44\x5c\x47\x3a\x4a\x08" +"\x4d\x58\x70\x5f\x5a\x1a\x51\xba\x5b\xc4\xc3\xb3\xa8\xc8\xa8\x1e\xfb\x14\x90\x47\x40\xfb\x0e\x1b\x0e\xf8\x55\xf8\x94\x15\x93\x21" +"\x05\x7d\x93\x82\x99\x89\x1e\x90\x06\x9a\x8d\x92\x94\x9b\x1a\xf7\x14\x07\x9e\x82\x94\x78\x8a\x1e\xfb\xeb\x06\x7a\x8c\x81\x82\x8a" +"\x7b\x08\x7e\x07\x80\x8b\x8a\x92\x82\x1e\xf7\x45\xfb\x8c\xfb\x47\xfb\xd7\x05\x86\x83\x8b\x8a\x82\x1a\x7c\x07\x7a\x95\x83\x9d\x1e" +"\xf7\xf2\x06\x9e\x94\x94\x9e\x1f\xf7\x14\x07\x9b\x84\x94\x7c\x8d\x1e\x85\x06\x7d\x89\x84\x82\x8a\x7c\x87\x21\x18\xfb\xb9\x06\xf7" +"\x45\xf7\xcd\x05\x8f\x92\x8c\x8e\x8f\x1a\x91\x89\x8f\x86\x92\x1e\xfb\x3d\xf7\x85\x05\x0e\xf7\x23\xf8\x2b\x15\x73\x6d\x7c\x68\x87" +"\x65\x08\x2c\x5e\xeb\x06\x8f\x64\x99\x68\xa2\x6e\x48\x48\x18\xab\x6b\xce\xcf\xa9\x73\xab\x7e\xb4\x85\x19\x2c\xb8\xea\x07\xb4\x91" +"\xad\x99\xa7\xa2\xce\x47\x18\xab\xab\x48\xcf\xa1\xa4\x9a\xaf\x90\xb4\x19\xeb\xb8\x2b\x06\x86\xb3\x7c\xaf\x75\xa6\xce\xce\x18\x6b" +"\xab\x48\x48\x70\xa1\x63\x9b\x67\x8f\x19\xea\x5e\x2d\x07\x67\x87\x62\x79\x72\x75\x47\xcf\x18\x6b\x6b\x05\xf7\x72\x5d\x15\xdc\xcc" +"\x4c\x3c\x3a\x4b\x4b\x3b\x3c\x4b\xcb\xda\xda\xcb\xcc\xd8\x1f\x0e\xf7\xcf\xf8\x04\x15\xf7\x11\x06\xa0\x96\x94\x9c\x9c\x81\x93\x75" +"\x1f\xfb\xc5\x06\x77\x7f\x81\x7c\x7b\x97\x81\x9f\x1f\xf7\x14\xfb\xcb\x06\x6a\x90\x7e\x9c\x7f\x1e\x82\x99\xa0\x86\xa9\x1b\xc4\xb4" +"\x9c\xa3\x98\x82\x96\x7f\x87\x89\x8a\x8a\x88\x1f\x7f\x70\x82\x89\x74\x1b\x68\x82\x93\xa8\x1f\x0e\xf7\x54\xf7\xc0\x15\xcf\xf7\x6a" +"\x07\x4f\x1d\xfb\x6a\xf7\x04\x06\x8e\x1d\x47\x53\x06\x3b\x0a\xc3\xfb\x1f\x06\x3f\xca\x59\xed\xba\xc3\x96\x9d\xbb\x1e\xb0\x99\x9b" +"\x98\x9a\x1a\x99\x80\x96\x7d\x86\x87\x8a\x85\x82\x1e\x75\x64\x46\x7b\x54\x1b\x49\x62\xa9\xbb\x1f\xf7\x1c\xf7\x49\x07\xa0\x97\x45" +"\x0a\x0e\x83\x1d\xef\xf7\x2b\x15\x91\x93\x8d\x91\x90\x1a\x99\x7f\x97\x7d\x81\x85\x87\x7e\x82\x75\x0a\x96\x80\x9a\x95\x90\x8e\x99" +"\x94\x1e\x0e\xf7\xb3\x7c\x15\x8a\x90\x8d\x8b\x91\x1b\xbb\xc2\x96\x9d\xbd\x1f\xaf\x99\x9b\x98\x9a\x1a\x99\x80\x96\x7d\x86\x87\x8a" +"\x85\x82\x1e\x75\x65\x45\x7b\x54\x1b\x49\x62\xa8\xbb\x1f\xf7\x94\xf7\x6b\x07\x54\x0a\xfb\x6b\xf7\x04\x06\x8e\x1d\xfb\x96\x06\x8a" +"\x53\xb0\x5e\xc9\x7a\x08\x36\xa5\x07\xa6\x99\x84\x7e\x7d\x3a\x0a\x96\x76\x1f\x90\x82\x87\x8c\x86\x47\x1d\x84\xa0\x1d\xb2\x73\xa3" +"\x62\x8e\x1f\x0e\xf7\xc4\xf8\xef\x15\xfb\x17\x33\xfb\x10\xfb\x4d\xfb\x4a\xe3\xfb\x13\xf7\x13\xf7\x13\xe4\xf7\x14\xf7\x49\xf7\x49" +"\x33\xf7\x14\xfb\x10\x1f\xfb\x3b\xfb\xb0\x15\xf7\x22\x8f\xcb\xe6\xeb\x1b\xe9\xca\x31\xfb\x23\x90\x1f\x58\x04\xfb\x20\x88\x4a\x2f" +"\x2c\x1b\x2c\x4b\xe7\xf7\x20\x87\x1f\x0e\xf8\x0a\xf8\xe0\x88\x1d\x28\x0a\xfb\x96\xf8\xc4\x42\x1d\x28\x0a\xfb\x0b\xf8\xa1\x15\x95" +"\x94\x8e\x90\x93\x1a\x9a\x80\x96\x7d\xf7\x0d\x0a\x80\x89\x87\xa8\x0a\x28\x0a\x7b\xf8\x67\x2d\x0a\xf8\xdd\xfb\x89\x60\x1d\xfc\xce" +"\x06\x76\x80\x82\x7b\x79\x96\x83\xa0\x1f\xf8\xce\x43\x15\x74\x0a\xfc\xce\x06\x76\x80\x82\x7a\x7a\x96\x83\xa0\x1f\x0e\x0e\xc9\x0a" +"\x62\x0a\x25\xfb\x24\x3c\x0a\x91\x1a\x99\x7f\x96\x7d\xf7\x03\x1d\x83\x1d\x39\xfc\x94\x87\x1d\xf8\x36\xf8\xa1\x2d\x0a\x67\x0a\xf8" +"\xbf\x16\xfb\x71\xf8\xc7\x05\x3e\x06\xfb\x68\xfc\xc7\x05\xf8\x44\xbe\x15\xfb\xfb\x06\xf7\x42\xf8\x61\x05\x92\x06\x0e\xf8\x34\xbe" +"\x15\xec\xc2\xc6\xeb\xf2\x1a\xf7\x2d\xfb\x0a\xf7\x09\xfb\x2e\xfb\x2e\xfb\x0a\xfb\x09\xfb\x2d\xf7\x28\x1d\x81\xa0\x1f\xf7\x62\xbc" +"\x06\x53\xab\x7b\x95\x76\x9e\x08\x50\xc0\x6d\xcb\xd3\x1a\xd3\xa7\xc6\xc3\xb9\x1e\xad\xb3\xb4\x99\xc3\x1b\xc3\xb4\x7d\x69\xb3\x1f" +"\xc3\x5d\xa7\x50\x43\x1a\x47\x71\x50\x57\x57\x1e\x71\x72\x7b\x80\x4d\x68\x08\x5a\xf7\x62\x07\xa0\x98\x95\x9b\x9c\x80\x93\x74\x1f" +"\x0e\xf8\x3e\xf8\x04\x15\xfb\x46\x07\x29\x5b\x52\x38\x64\x67\x9d\xa9\x72\x1e\x7b\xa1\x84\xa9\xc2\x1a\xf7\x79\x27\x07\x75\x80\x38" +"\x1d\xbb\xfc\x9a\x06\x27\x1d\xf7\x4c\x07\x67\xb1\xad\x7d\xbd\x1b\xbf\xb1\x9b\xb4\xb5\x1f\x62\xee\x07\x32\x0a\x5b\xf8\x04\x27\x2e" +"\x0a\x0e\xf8\x71\xf8\x1f\x15\xa5\x5f\x5f\x97\x55\x1b\xfb\x20\x2a\x2a\xfb\x20\x45\xa6\x4b\xb7\x67\x1f\xaa\x72\xb1\x7d\xc7\x84\xbc" +"\x85\xa0\x87\x94\x88\x08\x9d\x84\x98\x7c\x7b\x1a\x7a\x80\x79\x79\x80\x1e\x7d\x82\x79\x87\x6d\x8a\x08\x75\x80\x82\x7b\x79\x97\x83" +"\xa4\xda\xc7\xbb\xc9\xab\x78\xab\x6e\x9a\x1f\x7b\x93\x70\x91\x51\x94\x56\x92\x6d\x94\x76\x9b\x08\x67\xa6\x76\xbf\xc5\x1a\xf7\x02" +"\xd6\xd4\xf7\x06\xb7\xb2\x80\x76\xa5\x1e\x98\x81\x95\x79\x95\x6b\x08\x70\x93\x90\x86\x9c\x1b\x9a\x95\x95\x9b\x8e\x8b\x8b\x89\x9b" +"\x1f\x8f\x07\x8a\x92\x8a\x96\x93\x1a\x91\x8c\x98\x8d\x9d\x1e\x8d\xa6\x8b\x8c\x91\x1a\x9d\x82\x96\x7b\x7f\x83\x85\x7e\x85\x1e\x0e" +"\x25\x0a\xa6\xf9\x66\x15\x94\x81\xad\x1d\x86\x96\x81\x1f\xf7\x06\x2a\x05\x83\x94\x91\x88\x92\x1b\x9a\x96\x96\x9a\x92\x8a\x8d\x83" +"\x93\x1f\x86\x91\x05\x0e\x5e\x0a\xf7\x17\xf7\x99\x15\x94\x82\x86\x8d\x83\x1b\x7d\x80\x80\x7d\x82\x8f\x85\x94\x82\x1f\xf7\x07\x2a" +"\x05\x83\x94\x90\x88\x92\xf7\x3b\x1d\x85\x91\x05\x0e\xf7\xbe\xc3\x15\xfb\x47\xf8\x5c\x05\xcf\x44\x1d\xfb\x2b\x22\x1d\xa7\x06\xf7" +"\x5c\xfc\x94\x05\xca\x06\xf7\x48\xf8\x33\x9c\xb9\x8d\x8e\x95\x95\x19\x94\x93\x95\x8f\x96\x1b\x93\x91\x89\x83\x99\x1f\x7f\xa2\x97" +"\x86\x98\x1b\xa1\x9f\xa1\xa3\xad\x6a\xa3\x5b\x69\x70\x81\x75\x72\x1f\x74\x76\x87\x85\x73\x52\x08\x0e\x82\x1d\xf7\x3e\xf9\x06\x15" +"\x94\x82\xad\x1d\x85\x96\x82\x1f\xf7\x06\x2a\x05\x82\x94\x90\x89\x92\x1b\x9a\x96\x96\x9a\x92\x8a\x8d\x84\x64\x1d\xf7\x3f\xf7\x9e" +"\x15\xf7\x25\xbe\xfb\x25\xf7\x57\xf7\xc3\x30\x06\x27\x1d\xf7\x22\xfc\x5c\x07\x20\x1d\xbc\xfb\x57\x48\x58\xce\xfb\x6b\x5a\x20\x0a" +"\xf7\x7e\x21\x0a\xfb\x19\x06\x0e\xf7\x57\xf7\x87\x15\xfb\x54\xd3\x0a\xf7\x54\xe6\x06\xa0\x96\x94\x9b\x9b\x7f\x94\x77\x1f\x30\xd6" +"\xf7\x7e\xfb\x2c\x06\x76\x94\x80\x9c\x9c\x94\x96\xa0\xf7\x26\x1d\x40\x53\x06\x66\x1d\x0e\xf8\xaf\xbe\x15\x53\xf7\x1b\x71\xc7\x6c" +"\xb7\x6f\x9b\x19\x97\x99\xa6\xba\xa3\xbf\xae\xd4\x98\x9d\xa0\x8e\x08\x5d\x07\x76\x95\x7f\x9b\x9c\xf7\x0b\x1d\xf7\x4d\xa5\x2f\x1d" +"\x24\x3b\x1d\xa4\xfb\x4d\x86\x06\x74\x8c\x7f\x9c\x5c\xeb\x08\xf6\x57\x7a\x9a\x4b\x1b\x70\x84\x83\x6c\x1f\x55\x07\x73\x94\x7f\x9c" +"\x9b\x95\x97\xa0\x1e\xb9\x07\xa0\x88\x95\x7d\xb1\x3e\xa4\x55\xa4\x60\x98\x7c\x6f\x7a\x6c\x60\x71\x4e\x53\xfb\x1b\x18\x70\x2a\x0a" +"\xab\x06\xa8\x8c\x8d\x8c\x96\xa5\xc4\xf7\x1d\x18\xab\xd4\xaf\xb4\xa9\x88\x08\x94\xfb\x75\x72\x3b\x1d\xf2\x2f\x1d\x71\xf7\x75\x94" +"\x06\xaa\x8e\xaf\x62\xab\x42\xc4\xfb\x1d\x18\x96\x70\x8c\x8b\xa9\x8a\x08\xa1\x5e\x1d\x8a\xad\x87\x8f\x69\x8c\x08\x0e\xf8\xa4\xbe" +"\x15\x57\xe5\x72\xb6\x6e\xad\x73\x99\x19\x93\x92\xa2\xa9\x98\xa0\xb4\xcc\x96\x96\xa5\x8d\x08\x73\x07\x76\x95\xf7\x32\x1d\x6c\x52" +"\x79\x7e\x40\x5a\x1e\x5d\x46\x80\x80\x74\x8a\x08\x87\xf7\x0a\xa1\x24\x1d\x2a\x3b\x1d\xa2\xfb\x0a\x87\x06\x73\x8d\x7c\x99\x6b\xbf" +"\x08\xe1\x55\x77\x9a\x4e\x1b\x6e\x84\x83\x6c\x1f\x6a\x07\x74\x94\x7f\x9c\x9c\x94\x96\xa0\x1e\xa3\x07\xa3\x89\x94\x82\xaf\x56\xa1" +"\x67\x9d\x74\x99\x7e\x70\x79\x6e\x6b\x74\x62\x58\x31\x18\x72\x06\x35\x1d\xa7\x06\xa6\x8c\x8c\x8b\x99\xa3\xbf\xe8\x18\xac\xc2\xac" +"\xa7\xa9\x89\x08\x93\xfb\x28\x74\x06\x35\x1d\xec\x24\x1d\x75\xf7\x28\x93\x06\xa8\x8d\xad\x6f\xab\x54\xc0\x2e\x18\x93\x7d\x90\x84" +"\x8f\x8a\x08\x89\x8d\x97\x8a\x98\x1b\x9d\x06\x8c\x49\x05\x74\x24\x0a\xa4\x1e\xd5\x07\xab\x84\x90\x65\x8f\x1e\x0e\xf7\xd3\x7c\x15" +"\xc2\x8d\xb9\x95\xa8\x9b\x08\xc2\xaa\xab\xbf\xc6\x1a\xd0\x64\xb9\x3d\xa2\x1e\xcb\xa5\xab\xb7\xc7\x1a\xe5\x3a\xc9\xfb\x08\x4b\x5a" +"\x7a\x64\x5b\x1e\x86\x85\x88\x8a\x89\x1b\x86\x87\x93\x9b\x88\x1f\xa1\x87\x83\x95\x7c\x1b\x7d\x82\x82\x7c\x82\x8b\x81\x8c\x7d\x1f" +"\x8c\x85\x8b\x87\x82\x1a\x8c\x68\x05\x87\x07\x84\x07\x8a\x7b\x05\x8a\x89\x8b\x8a\x8a\x1a\x8a\x8b\x89\x8a\x87\x1e\x8a\x80\x89\x78" +"\x84\x1a\x7c\x94\x82\x9a\x98\x93\x93\x9c\x8f\x1e\xe8\xa0\xc6\xba\xeb\x1b\xe8\xc7\x63\x4c\x73\x83\x76\x7c\x7b\x1f\x6f\x71\x43\x78" +"\x38\x1b\x70\x33\x1d\xa6\x06\xe6\xb9\x85\x7b\xaa\x1f\xaf\x78\xa0\x6c\x67\x1a\x6a\x7b\x6c\x70\x76\x1e\x74\x6c\x60\x80\x4b\x1b\x42" +"\x57\x9b\xb6\x42\x1f\x90\x83\x85\x8d\x84\x1b\x7f\x7d\x7e\x7e\x65\xf7\x08\x5b\xef\x87\x1f\x4b\xa5\x07\xa6\x99\x84\x7e\x7e\x3a\x0a" +"\x95\x76\x6d\x0a\xab\x83\xa0\x73\x1d\xf7\xda\x7c\x15\xf7\x1b\x8e\xd6\xba\xdd\x1a\xbc\x67\xb6\x59\x96\x1e\x81\x8e\x05\xc0\xa1\xa1" +"\xa7\xb7\x1a\xd1\x3f\xb9\xfb\x0a\x40\x51\x78\x66\x62\x1e\x9c\x07\xa4\x81\x99\x7a\x7b\x82\x7d\x72\x1e\x23\x07\x7a\x93\x81\x9a\x99" +"\x92\x94\xa0\x91\xce\x0a\x71\x7d\x81\x7a\x7b\x99\xc3\x0a\x77\xa8\x79\xc2\x7d\x1f\xba\x7e\xaf\x85\xb5\x89\x08\x4a\xa5\x07\xa6\x99" +"\x84\x7e\x7e\x3a\x0a\x95\x76\x6d\x0a\xab\x83\xa0\x73\x1d\xf8\x80\xbe\x15\x45\xf7\x1b\x69\xcb\x66\xb6\x6a\x99\x19\xa8\xaa\x92\x96" +"\xb5\xd0\xbe\xe0\x94\x93\xb6\x8d\x08\x60\x07\x77\x0a\xac\x84\x92\x67\x41\x75\x7a\x23\x4d\x1e\x4c\x23\x80\x81\x51\x89\x08\x72\xf7" +"\x4d\xba\x2f\x1d\xfb\x25\x4c\x1d\xb9\xfc\x61\x5d\x2a\x0a\xf7\x25\x06\xa4\x99\x94\x9c\x9b\x7d\x94\x72\x1f\x5c\xf7\x75\xa4\x06\xdc" +"\x89\xa6\x77\xbc\x31\xf7\x47\x1d\xbd\x29\x06\x73\xf7\x06\x0a\x8a\xad\x87\x8f\x68\x8c\x08\x0e\xf8\x74\xbe\x15\x4a\xe6\x5c\xcc\x7f" +"\x95\x65\x98\x19\xa0\x9c\x9c\x9d\xa9\xaf\xbf\xc9\x91\x8e\xb5\x8d\x08\x5e\x07\xbb\x1d\xb9\x4c\x06\x73\x95\xf7\x41\x1d\xab\x86\x90" +"\x6d\x8d\x08\x0e\xf7\x92\xf7\xa5\x15\xc1\x83\xa4\x75\xb5\x3c\x8f\x1d\x93\x96\xb4\xf5\x0a\x60\x07\x77\x0a\xaa\x83\x93\x6b\x3d\x79" +"\x7d\x21\x4a\x1e\x58\x36\x79\x76\x70\x86\x08\xf7\x0b\x07\xa0\x82\x84\x0a\xfb\x10\x81\xf7\x4d\xba\x07\xa5\x7f\x0a\x71\x1f\xfb\x25" +"\x4c\x1d\xb9\xfc\x61\x5d\x2a\x0a\xf7\x25\x06\x52\x1d\x5c\xf7\x75\x95\xfb\x12\xf7\x04\x0a\xf7\x97\xf7\x58\x15\xbb\x84\xa3\x7b\xaf" +"\x57\xcf\x28\x18\x96\x7a\x91\x87\xa4\x8a\x08\xc4\x24\x1d\x55\x06\x4a\xe6\x5c\xcc\x7f\x95\x65\x98\x19\x9e\x9a\xa1\xa2\xa6\xac\xbe" +"\xc8\x92\x90\xb5\x8c\x08\x5e\x07\x39\x1d\x97\xa1\x1e\xc1\x07\xab\x83\x92\x65\x47\x7a\x80\x2b\x3a\x1e\x6c\x66\x79\x7c\x79\x86\x08" +"\xcb\x07\xa0\x82\x96\x7b\x7a\x82\x7f\x77\x1e\x46\x7b\xf7\x0a\xb6\x07\xa5\x99\x94\x9c\x9b\x7e\x94\x70\x1f\xfb\x1e\x33\x1d\xb6\xfb" +"\xd1\x60\x33\x1d\xf7\x1e\x06\x52\x1d\x60\xf7\x28\x9b\x3c\xf7\x04\x0a\xf7\x53\xf8\x94\x15\xbb\x29\x1d\xfb\x7e\xfb\x5f\x06\x27\x1d" +"\xf7\x2c\xdd\xfc\x61\x5e\x37\x0a\xf7\x24\x36\x0a\x5c\xf7\x75\xa4\x06\xdc\x89\xa6\x77\xbc\x31\x8f\x1d\x92\x96\xb5\xf5\x0a\x60\x07" +"\x77\x0a\xaa\x83\x93\x6b\x3d\x78\x7c\x22\x4b\x1e\x4c\x22\x80\x82\x51\x89\x08\x72\x06\x0e\xd0\xf8\x04\x15\xd9\xfb\xd1\x60\x2a\x0a" +"\xf7\x1e\x24\x1d\x60\xf7\x28\xa3\x06\xda\x8a\xa8\x7c\xb7\x4d\xcf\x28\x18\x95\x7a\x92\x87\xa4\x8a\x08\xc4\x24\x1d\x55\x06\x4a\xe6" +"\x5b\xcc\x80\x95\x65\x98\x19\x9e\x9b\x9f\xa0\xa8\xad\xbf\xc9\x91\x8f\xb5\x8c\x08\x5e\x07\x39\x1d\x97\xa1\x1e\xc1\x07\xab\x83\x92" +"\x65\x49\x77\x7f\x3c\x48\x1e\x50\x44\x82\x86\x53\x89\x08\x73\xf7\x0a\xbc\x06\x9f\x98\x95\x9a\x9c\x46\x0a\xfb\x7b\xfb\x22\x06\x27" +"\x1d\x0e\xf8\x77\xbe\x15\xf8\x61\x9f\x07\xa0\x97\x94\x9c\x9c\x80\x93\x75\x89\x1d\xf7\x96\xfb\x6b\x5b\x29\x0a\xf7\x11\x27\x06\x74" +"\xf7\x06\x0a\xab\x84\x92\x6e\x8c\x1e\x0e\xf8\x71\xbe\x15\xf7\xd1\xa4\x07\x32\x0a\x25\xc5\x1d\xf7\x8e\xfb\x23\x63\x06\x76\x7f\x59" +"\x0a\xf7\x08\x8a\x05\x4b\x07\x74\x24\x0a\xa3\x1e\xd5\x07\xa0\x87\x95\x82\x8f\x1e\x90\x82\x87\x8c\x80\x1b\x0e\xf7\xdc\x7b\x15\xbe" +"\x8c\xbe\x9c\xb5\xa9\x08\xb2\xa7\xa8\xac\x9b\x1a\x99\x81\x95\x7c\x82\x86\x88\x83\x83\x1e\x4d\x55\x5b\x72\x47\x1b\xfb\x07\x29\xed" +"\xf7\x08\x1f\xd0\x07\xf7\x06\xe2\xe7\xf7\x01\xe1\xd7\x5a\x51\x90\x1e\xf1\x1d\x48\x4e\x71\x5b\x5d\x1f\x5f\x5c\x6e\x46\x4e\x1a\x3a" +"\x07\xfb\x0b\xef\xfb\x07\xf7\x0d\x76\x1e\x47\xa5\x07\xa6\x99\x84\x7e\x7d\x3a\x0a\x96\x76\x1f\x90\x82\x87\x8c\x86\x47\x1d\x84\xa0" +"\x1d\xb2\x73\xa2\x62\x8f\x1f\x0e\xf7\xe2\x7c\x15\xba\x8f\xb7\x97\xb0\x9d\x08\xbb\xa3\xaa\xa8\x9e\xda\x0a\x58\x4f\x74\x43\x1b\x21" +"\x40\xd1\xf0\xf4\xd4\xd2\xf6\xdd\xce\x65\x59\x91\x1f\x77\x8d\x93\x83\x9a\x1b\x9c\x94\x96\x9f\x1f\xe5\x07\xa0\x82\xa9\x1d\x89\x07" +"\xdb\x0a\xfb\x0c\xe0\x31\xf7\x0d\x81\x1f\x4b\xa5\x07\xa6\x99\x84\x7e\x7e\x3a\x0a\x95\x76\xee\x1d\xa0\xa9\x83\xa1\x73\x1d\x31\x0a" +"\x0e\xf7\xa8\x90\x15\xfb\x1c\x64\x07\xf7\x12\x1d\xf7\x19\x06\xf7\x4c\xf8\x02\xc7\x0a\xfb\xc7\xfb\x2f\xf7\xc7\x8b\x1d\x0e\xf7\xdc" +"\xf7\x6d\x15\xb0\x07\xf7\x42\xf7\x96\xc8\x0a\xfb\x63\xfb\x22\xf7\x63\xf6\x1d\xfb\x96\x05\x66\x29\x07\x66\x1d\xed\xfb\x08\x27\x20" +"\x0a\xf7\x90\x23\x1d\x27\xf7\x08\xe7\x06\x9e\x1d\x0e\xf7\xa8\x78\x15\x31\x06\x66\x1d\xe5\x4d\x64\x06\xf7\x12\x1d\xc9\xe9\x06\x9e" +"\x1d\x2d\xa1\x06\xf7\x4c\xf8\x01\xc7\x0a\xfb\xc6\xfb\x2f\xf7\xc6\x8b\x1d\xf7\x4d\xfb\xff\x05\x0e\xf8\x9b\xbe\x15\xfb\x4f\xf7\x81" +"\xf7\x43\xf7\x74\x05\x97\x06\xa1\x96\x41\x1d\xfb\x03\x06\xba\x0a\xae\x06\xfb\x23\xfb\x4b\xfb\x24\xf7\x4b\x05\xab\x06\xa0\x97\x41" +"\x1d\xfb\x02\x20\x0a\x98\x06\xf7\x43\xfb\x74\xfb\x4c\xfb\x81\x05\x7d\x29\x0a\xf7\x16\x06\xa0\x97\x45\x0a\x56\x06\xf7\x2d\xf7\x58" +"\xf7\x2e\xfb\x58\x05\x59\x2e\x1d\xf7\x08\x28\x06\x74\x24\x0a\xa3\x1e\xf7\x02\x07\xa9\x84\x93\x6d\x8c\x1e\x0e\xf8\x97\xbf\x15\xfb" +"\x45\xf7\x3b\xf7\x32\xf7\x29\x05\x8f\x9f\x1d\x75\x81\x51\x0a\xae\x06\xfb\x10\xfb\x06\xfb\x0c\xf7\x06\x05\xab\x06\xa1\x96\x94\x9c" +"\x9c\x81\x93\x74\x1f\xfb\x02\x55\x0a\x97\x82\xa0\xf7\x35\x1d\x84\x29\x0a\xf7\x18\x21\x0a\x55\x06\xf7\x23\xf7\x19\xf7\x22\xfb\x19" +"\x05\x57\x35\x0a\xf7\x08\x4d\x06\xe4\x0a\x0e\xf8\x6c\xbe\x15\xf8\x61\xb1\x07\xa5\x99\x94\x9c\x9b\x99\x0a\xfb\x5f\xfb\x02\x07\x72" +"\x7d\x82\x0a\xf7\x50\x5e\x1d\x8c\xa8\x83\x94\x6d\x8c\x08\x0e\xf8\x6d\xbe\x15\xf7\xd1\xaf\x07\xc0\x1d\xfb\x18\x24\x07\x70\x0a\xf7" +"\x48\x5e\x1d\xa9\x84\x93\x70\x8c\x1e\x88\x06\x0e\xf7\xc1\xf7\x55\x15\xaf\x94\xa4\x96\xaa\xa1\xa6\x9e\x18\xfb\x5f\xfb\x02\x37\x0a" +"\xf7\x5c\x24\x1d\x65\xf8\x61\xb1\x06\xa5\x99\x94\x9b\x9c\xe8\x1d\x5d\x66\x72\x7c\x5b\x78\x08\xf7\x1a\x07\xa0\x82\x84\x0a\xfb\x24" +"\x07\x3c\x76\xa2\xea\x89\x1f\xf7\x31\xbc\x79\x1d\xfb\x1f\x2a\x0a\xb1\xfb\x36\x06\x8d\xfb\x0d\xaf\x64\xf7\x08\x86\x08\x2b\x07\xf7" +"\x08\x0a\xf7\x96\xf7\x4b\x15\x74\x8c\x53\x8d\x79\x9e\x8a\xc5\x19\xf4\xb9\x07\x7b\x1d\xfb\x19\x33\x1d\xae\x22\x06\x8c\x33\xac\x6a" +"\xe8\x82\xa2\x8a\x18\x5f\x07\x7c\x0a\xbd\x07\xbb\x96\xa6\x96\xb0\xa2\x08\xfb\x18\x24\x37\x0a\xf7\x53\x24\x1d\x67\xf7\xd1\xaf\x06" +"\xbd\x0a\x7e\x82\x0a\xb0\xfb\x12\x06\x61\x71\x6b\x7c\x65\x81\x08\xca\x07\x9f\x82\x96\x7a\x7b\x82\x80\x77\x1e\x0e\xf7\x29\xf8\x94" +"\x15\xf7\x02\x36\x0a\xfb\x5c\x4b\x1d\xb1\xfc\x61\x65\x4b\x1d\xf7\x18\x2f\x1d\x61\xf7\x56\x06\xc5\xd4\xbe\xa2\xc7\x1b\xcb\xa3\x6b" +"\x34\x1f\xfb\x30\x5a\x07\x72\x7d\x82\x0a\xf7\x1f\x2f\x1d\x65\xf7\x35\x06\xd0\x7d\xb5\x6e\xa2\x1e\x9f\x72\x66\x96\x61\x1b\x56\x56" +"\x7a\x6b\x5f\x1f\x70\x77\x05\x0e\xf7\x41\xf8\xef\x15\x27\x36\x1d\xbb\xfc\x89\x64\x2e\x1d\xf7\x17\x22\x0a\x63\xf7\x87\x06\xd4\xcd" +"\xa3\x9a\xc3\x1b\xce\xb8\x65\x53\x1f\xfb\x81\x63\x07\x76\x7f\x82\x7a\x7b\xde\x0a\xdc\x47\xc8\x31\x50\x5b\x76\x5e\x5e\x1e\x0e\x23" +"\x0a\x0e\xf8\x6c\xbe\x15\xf8\x61\xb2\xf7\x0c\x0a\xfb\x19\x4c\x1d\xb5\xfb\x56\x06\x51\x41\x57\x74\x51\xd7\x1d\xb4\x1b\xc0\xc1\x9d" +"\xaa\xb7\x1f\xa6\x9e\x05\xfb\x5f\xfb\x05\x07\x6d\x8a\x83\x82\x8c\x6e\x08\xfb\x02\x07\x73\x24\x0a\xa2\x1e\xee\xf7\x51\x79\x1d\x0e" +"\xf8\x6d\xbe\x15\xf7\xd1\xaf\x07\xbd\x0a\x7e\x82\x7b\x7a\x99\x82\xa4\xd1\x1d\xb3\x1b\xc7\xc5\x9c\xac\xbe\x1f\xfb\x18\x21\x07\x88" +"\x06\x70\x8a\x84\x83\x6d\x1a\xfb\x02\x07\x73\x24\x0a\xa2\x1e\xee\xf7\x48\x07\xa5\x7f\x0a\x71\x1f\x0e\xb7\xf7\xbd\x15\x93\x24\x91" +"\x6c\xa4\x60\x08\x35\xbc\xdb\x59\xe3\x1b\xf7\x22\xf7\x2d\x1d\x39\x59\x6e\x27\x32\x1f\xc4\x7f\x05\xd4\xd2\xa9\x9c\xc6\x1b\xc1\xc2" +"\x70\x5e\xae\x1f\xae\x5f\xa2\x50\x5d\x1a\x85\x07\x8a\x59\x15\x7f\x45\x7f\x6c\x6a\x64\x08\x5d\x64\x58\x71\x56\x1b\x55\x58\xa5\xb9" +"\x64\x1f\x6a\xb2\x7f\xaa\x80\xd1\x08\x0e\x28\x1d\xfb\x18\xf7\x91\xb3\x0a\x48\x1d\xfb\x82\xf8\x37\x42\x1d\xf7\xc4\xf8\xd3\x15\xfb" +"\x26\xfb\x04\xfb\x14\xfb\x3c\xf7\x07\x1d\xf7\x59\xfb\xdc\x15\x85\x60\x84\x75\x7c\x6d\x08\x42\x66\x4a\x5f\x44\x1b\x4b\x4d\xb1\xca" +"\x65\x1f\x77\xad\x82\xa7\x84\xbc\x08\x89\xbd\x15\x91\xbf\x92\xa4\x9c\xad\x08\xd3\xb0\xcc\xb7\xd1\x1b\xcc\xc8\x66\x4b\xb1\x1f\xa2" +"\x65\x94\x6d\x91\x51\x08\x0e\xbc\x1d\x25\x0a\x78\xf9\x5e\x5d\x1d\xe1\x64\x0a\x2c\x1d\xfb\xc6\xf8\x08\x15\x7c\x80\x80\x7b\x4c\xcc" +"\x5b\xe1\xe0\x64\x0a\xf8\xdd\xf9\x46\x15\x4f\x1d\xfc\xce\x20\x0a\x0e\xf8\x2d\xe3\x15\x94\x63\x8f\x7e\x92\x7f\x08\x78\x97\x9b\x80" +"\x9c\x1b\xc8\xb4\xe6\xf7\x1c\xf7\x18\x60\xe6\x4e\x44\x67\x32\xfb\x40\x1f\xfb\xee\x07\x7b\x93\x81\x99\x99\x93\x95\x9c\x1e\xf8\x03" +"\x04\xa1\x07\xed\xa7\xd7\xaf\xb0\xa5\x42\x22\xfb\x0d\x75\x4b\x61\x68\x75\xb8\xd7\x87\x1e\xfb\xe5\x81\x15\x8a\x5d\x7d\x66\x76\x81" +"\x08\x81\x86\x85\x82\x80\x1a\x89\x07\x7c\x8c\x95\x83\x9c\x1b\xf1\x8c\x05\xf4\xc4\xec\xf7\x46\xf7\x1d\x66\xe8\x48\xac\x1f\x75\x96" +"\x75\x8f\x65\x8a\x08\x84\x88\x8d\x8f\x95\x93\xa3\x90\x93\x1f\x8e\x90\x8c\x8d\x8f\x1a\x90\x88\x90\x87\x8e\x1e\x89\x8c\x05\x8d\x88" +"\x87\x8c\x87\x1b\x79\x76\x69\x6c\x8a\x1f\x82\x8a\x8a\x89\x84\x1b\x7a\x06\x7a\x81\x82\x7e\x7d\x95\x83\x9c\x1f\x9c\x06\x91\x8d\x88" +"\x86\x1f\xb7\x16\x92\x8c\x8c\x9b\xee\xaf\x4b\xfb\x43\xfb\x09\x76\x46\x60\x72\x1e\x80\x79\x68\x86\x5a\x1b\x7e\x86\x8d\x8f\x8c\x8b" +"\x8c\x8c\x8c\x1f\xa0\xa8\x94\xaa\x8c\xba\x08\x0e\xf8\x34\xbd\x15\xec\xc2\xc6\xeb\xf2\x1a\xf7\x2e\xfb\x0a\xf7\x09\xfb\x2e\xfb\x2f" +"\xfb\x09\xfb\x09\xfb\x2e\xf7\x28\x1d\x82\xa0\x1f\xf7\x62\xbb\x06\x54\xaa\x7b\x96\x75\x9f\x08\x51\xbf\x6d\xcc\xd3\x1a\xd3\xa7\xc6" +"\xc2\xb9\x1e\xad\xb4\xb3\x99\xc3\x1b\xc3\xb3\x7d\x69\xb4\x1f\xc2\x5d\xa7\x50\x43\x1a\x47\x71\x4f\x57\x57\x1e\x72\x72\x7a\x7f\x4e" +"\x69\x08\x5b\xf7\x62\x07\xa0\x98\x94\x9b\x9c\x80\x93\x74\x1f\x0e\xb2\x0a\x67\x0a\xe6\x16\xbe\x06\xf7\x34\xf8\x1a\xf7\x35\xfc\x1a" +"\x05\xbe\x06\xfb\x42\xf8\x47\x05\x40\x06\x0e\xe6\xf8\x46\x15\xf7\x42\xfc\x46\x05\xd6\x06\xf7\x42\xf8\x47\x05\x58\x06\xfb\x35\xfc" +"\x19\xfb\x34\xf8\x19\x05\x58\x06\x0e\xf7\xbd\xf8\x89\x15\xfb\x1b\xfb\x05\xfb\x04\xfb\x1b\xfb\x22\xf7\x02\xfb\x04\xf7\x20\xf7\x1c" +"\xf7\x03\xf7\x04\xf7\x1f\xf7\x1f\xfb\x03\xf7\x03\xfb\x1e\x1f\x70\xfb\xad\x15\xfb\x36\x07\x35\x94\x3e\xd6\x87\xd9\x08\xc2\x04\x91" +"\xde\xd5\xd5\xe2\x96\x08\xfb\x3c\x07\xc2\x54\x15\xf7\x3b\x06\x88\x42\x3b\x3d\x37\x80\x08\xf7\x6d\x04\xf7\x3c\x07\xdf\x82\xd7\x3f" +"\x92\x38\x08\x0e\x9c\x16\xf8\xcb\xf8\xcb\xfc\xcb\x06\xf8\x92\xfc\x92\x15\xfc\x59\xf8\x59\xf8\x59\x06\x0e\xca\xf7\xe7\x15\xfb\x2b" +"\x90\x68\xa6\x5f\x1e\x47\xb5\xd8\x62\xe1\x1b\xbf\xbb\x9a\xa6\xb4\x1f\xbe\xae\xa8\xb9\x95\xca\x08\x90\xac\x8c\xa1\xed\x1a\xf7\x51" +"\x07\x9f\x80\x99\x7b\x7b\x82\x7f\x75\x1e\xfb\x54\x07\xfb\x10\x86\x62\x78\x6a\x1e\x57\x6d\x4a\x68\x49\x1b\x63\x62\x98\xa2\x6a\x1f" +"\x62\xa8\x78\xac\x85\xbb\x87\xa9\x8b\x8b\x8a\xf7\x01\x08\xf7\x54\x07\xa0\x81\x98\x7b\x7a\x82\x7f\x75\x1e\x0e\xf7\xe1\x16\xf7\x67" +"\xf8\xeb\x05\x55\x06\x4c\xfb\x37\x05\xfb\x97\x06\x4d\xf7\x37\x05\x58\x06\xf7\x5f\xfc\xeb\x05\xf7\x2a\xf8\x15\x15\xfb\x03\xfb\xe2" +"\x05\x84\x06\x24\xf7\xe2\x05\x0e\xf8\x7a\xf8\x37\x15\xfb\x0d\x06\x74\x81\x2a\x1d\xd0\xfb\x8c\x06\x52\x55\x51\x6f\x4a\x1b\x5b\x65" +"\xaf\xba\x1f\xf7\xc1\x97\x1d\xfb\x8e\x06\x3a\xc3\x56\xde\xcb\xc4\xa3\xbd\xc2\x1e\x51\xa3\x07\x7a\x1d\xbf\xf7\x2e\x1d\x7d\x73\xa1" +"\x1d\xa8\xa1\xa0\xca\xad\x1f\x96\x91\x8f\x92\x96\x1a\x9b\x80\x94\x76\x1e\x6e\x06\x0e\x48\x0a\x0e\x48\x0a\xfb\x49\xf7\x5d\x15\x72" +"\x77\x77\x73\xf7\x30\x1d\xf7\x63\x95\x1d\xa3\xa4\x77\x9f\x72\x1f\x0e\x48\x0a\xa0\xf7\x70\x15\x95\x93\x8f\x92\x95\x1a\x99\x81\x95" +"\x7d\x82\x85\x88\x83\x82\x1e\xfb\x06\x2b\x05\x81\x83\x87\x84\x81\x1a\x7d\x95\x81\x99\x93\x93\x8e\x93\x93\x1e\xfb\x06\xd8\x15\x72" +"\x77\x77\x73\x72\x9f\x78\xaf\x1d\xf7\x98\x16\x71\x77\x78\x72\x67\x1d\x9f\xa4\xa2\x77\x9f\x73\x1f\x0e\x48\x0a\x94\xf7\x70\xf7\x0e" +"\x0a\x7d\x84\x84\x88\x83\x83\xd5\x0a\x28\x0a\xfb\x18\xf8\xec\x63\x0a\x28\x0a\x85\xf8\xb3\x5f\x0a\x40\x0a\xbc\xf8\xe0\x34\x0a\x40" +"\x0a\x33\xf9\x12\xda\x1d\x40\x0a\xfb\x59\xf8\xf6\x5b\x1d\x40\x0a\xfb\x52\xf9\x06\x4d\x0a\xf8\x3a\xf7\xb0\x15\xbe\x84\x07\x61\x8e" +"\x6c\x90\x77\x91\x08\x5f\x99\x6a\xb4\xb4\x1a\xa9\x9d\xa8\xaa\x9e\x1e\xa5\x9b\xb2\x94\xc5\x8e\xa1\x8c\x8b\x8b\x90\x8d\x08\x96\x8e" +"\x91\x93\x97\x1a\x9c\x7f\x94\x75\x1e\xfb\x5e\x26\x1d\xaf\x06\x5a\x6d\x78\x6b\x5a\x1a\x53\xae\x5c\xc8\x72\x1e\x31\x6a\x5f\x55\x3c" +"\x1a\x5a\xa0\x5e\xb1\x6d\x1e\xa9\x73\xb0\x7f\xcd\x84\x08\xd8\x83\x9d\x81\x6b\x1a\x69\x6f\x77\x50\x83\x1e\x6d\x87\x84\x87\x7a\x1a" +"\x7a\x96\x83\xa2\xd9\xcb\xbf\xca\xa9\x7e\xa4\x74\x9b\x1e\x79\x98\x6f\x92\x5c\x90\x08\xfb\x04\x97\x5d\xad\xd1\x1a\xc3\xb3\xbe\xc6" +"\x9e\x1e\xa4\x93\xac\x8f\xbd\x8c\x08\x0e\x4e\x0a\x83\x7a\x74\x1d\x9c\x80\x93\x71\x1d\x82\x7b\x4c\x0a\xf7\x65\xf7\xa2\xda\x1d\x5d" +"\x0a\xf6\xf7\x96\x4d\x0a\x4a\x0a\x60\xf7\x68\x34\x0a\x4a\x0a\xfb\x47\xf7\x7e\x26\x0a\x0e\xf8\x22\xf8\xbc\x15\x49\x48\x76\x73\x6a" +"\x60\x08\x3b\x22\x68\x3d\x3f\x1a\x54\xa8\x50\xb6\x6d\x1e\xa4\x7a\xb0\x7f\xca\x83\x08\xcc\x82\x9c\x81\x6f\x1a\x64\x6a\x75\x4f\x8a" +"\x1e\x75\x80\x82\x7b\x7a\x97\x82\xa4\xdc\xc7\xbb\xcc\xab\x7b\xa7\x71\x9b\x1f\x7e\x93\x70\x92\x68\x90\x52\x93\x70\x92\x77\x96\x08" +"\x66\xa0\x76\xb3\xbd\x1a\xe6\xd9\xf7\x0e\xf7\x3d\xf7\x3f\x1e\x8d\x8e\x90\x8f\x05\xbb\xfb\x6a\xf7\x44\x1d\x0e\x7b\x9b\xf8\x35\x9b" +"\xf7\x16\x97\xa7\x98\x06\xbf\x0a\xbe\x0b\xa7\x93\x8e\x8f\x8f\x90\x8f\x8e\x92\xbb\xae\xa9\x0c\x0c\xae\x8f\x8f\x8f\x8f\x8e\x8f\x94" +"\x90\xb4\x9f\x9e\x0c\x0d\xf8\xec\x14\xbb\x13\x00\xe7\x02\x00\x01\x00\x05\x00\x0b\x00\x0f\x00\x16\x00\x1d\x00\x24\x00\x28\x00\x2c" +"\x00\x5d\x00\x61\x00\x65\x00\x69\x00\x73\x00\x7e\x00\x84\x00\x88\x00\x8d\x00\xb0\x00\xb5\x00\xb9\x00\xc3\x00\xc7\x00\xd2\x00\xd6" +"\x00\xda\x00\xe0\x00\xe7\x00\xec\x00\xf2\x00\xf6\x01\x39\x01\x7a\x01\xb9\x01\xd7\x01\xf0\x01\xfb\x01\xff\x02\x04\x02\x09\x02\x3d" +"\x02\x8c\x02\x98\x02\xc4\x02\xce\x02\xdd\x02\xee\x02\xfc\x03\x02\x03\x07\x03\x0f\x03\x15\x03\x1a\x03\x24\x03\x2b\x03\x31\x03\x36" +"\x03\x40\x03\x48\x03\x50\x03\x57\x03\x5f\x03\x6f\x03\xa8\x03\xae\x03\xca\x03\xcd\x03\xde\x03\xe5\x03\xf0\x03\xf7\x03\xfe\x04\x18" +"\x04\x1e\x04\x27\x04\x32\x04\x39\x04\x49\x04\x4d\x04\x51\x04\x5a\x04\x64\x04\x6f\x04\x7b\x04\x86\x04\x8b\x04\x98\x04\xa0\x04\xa8" +"\x04\xae\x04\xb9\x04\xc3\x04\xc8\x04\xd2\x04\xdb\x04\xe4\x04\xeb\x04\xf2\x04\xfa\x05\x02\x05\x0a\x05\x12\x05\x18\x05\x23\x05\x2c" +"\x05\x5a\x05\x7d\x06\x09\x06\x10\x06\x93\x07\x0d\x07\x81\x07\xd3\x07\xe4\x08\x00\x08\x08\x08\x10\x08\x17\x08\x35\x08\x52\x08\x5f" +"\x08\x8a\x08\x9f\x08\xe1\x09\x21\x09\x29\x09\x2c\x09\x5a\x09\x9f\x09\xad\x09\xd0\x09\xe4\x0a\x22\x0a\x27\x0a\x45\x0a\x5a\x0a\x81" +"\x0a\x99\x0a\xbf\x0a\xda\x0b\x04\x0b\x0e\x0b\x3c\x0b\x5a\x0b\x60\x0b\x6b\x0b\x8b\x0b\xb6\x0b\xce\x0b\xdc\x0b\xe4\x0b\xef\x0c\x03" +"\x0c\x17\x0c\x21\x0c\x26\x0c\x2e\x0c\x43\x0c\x4a\x0c\x5a\x0c\x76\x0c\x96\x0c\x9f\x0c\xb1\x0c\xd0\x0c\xe2\x0c\xe7\x0c\xeb\x0c\xf9" +"\x0d\x0a\x0d\x15\x0d\x20\x0d\x29\x0d\x38\x0d\x40\x0d\x5a\x0d\x68\x0d\x73\x0d\x85\x0d\x8f\x0d\x96\x0d\x9c\x0d\xa6\x0d\xb0\x0d\xb9" +"\x0d\xc5\x0d\xcc\x0d\xd9\x0d\xe6\x0d\xfb\x0e\x0a\x0e\x15\x0e\x21\x0e\x24\x0e\x30\x0e\x3f\x0e\x44\x0e\x53\x0e\x64\x0e\x76\x0e\x84" +"\x0e\x8f\x0e\x95\x0e\xa0\x0e\xb1\x0e\xc1\x0e\xc9\x0e\xce\x0e\xd8\x0e\xe7\x0e\xf6\x0f\x04\x0f\x12\x0f\x18\x0f\x21\x0f\x2e\x0f\x3b" +"\x0f\x48\x0f\x55\x0f\x62\x0f\x66\x0f\x6d\x0f\x79\x0f\x85\x0f\x8f\x0f\x97\x0f\xa2\x0f\xad\x0f\xb8\x0f\xc3\x0f\xce\x0f\xd9\x06\x20" +"\x1d\x0b\x06\xa0\x97\x45\x0a\x0b\x06\x32\x0a\x0b\xf7\xda\xf8\x94\xd0\x1d\x0b\x94\x7e\x9c\x9c\x94\x98\x0b\x72\x0a\x95\xa0\xc2\x1d" +"\x0b\x15\x3f\x1d\x0b\x06\x74\x0a\x0b\xf8\x46\x16\xdc\x23\x1d\x6e\xf8\x04\xfb\x0d\x06\x74\x81\x2a\x1d\xd0\xfb\x8c\x06\x52\x55\x51" +"\x6f\x4a\x1b\x5b\x65\xaf\xba\x1f\xf7\xc1\x97\x1d\xfb\x8e\x06\x3a\xc3\x56\xde\xcb\xc4\xa3\xbd\xc2\x1e\x0b\x06\x2b\x1d\x0b\x06\x35" +"\x1d\x0b\x07\x27\x1d\x0b\xf7\x16\x1d\xf7\x12\xf7\x0f\xac\x0a\x0b\x15\xa0\x97\x94\x9b\x9b\x80\x94\x75\x5c\x1d\x06\x75\x80\x38\x1d" +"\x0b\x06\xc5\x0a\x0b\x8d\x94\x95\x1e\x0e\xf7\xdc\xf7\x91\x15\xf7\x42\xf7\x97\xc8\x0a\xfb\x64\xfb\x22\xf7\x64\xf6\x1d\xfb\x97\x05" +"\xfb\x5e\x27\x07\x20\x1d\xf7\x90\x23\x1d\x27\x06\x0b\xa0\x97\x5a\x0a\x0b\x06\x53\x0a\x0b\x55\x1d\x70\x1d\x8f\x8d\x94\x96\x1e\x0e" +"\x06\x37\x1d\x0b\x06\xa4\x99\x94\x9c\x9b\x7d\x94\x72\x1f\x0b\x07\x70\x0a\x0b\x06\x7b\x0a\x0b\x06\x9f\x97\x53\x1d\x0b\x7b\x82\x74" +"\x7d\x7d\x8f\x0b\x75\x80\x2a\x1d\x0b\x15\x91\x94\x8d\x90\x0b\x7e\x96\x1f\x0e\xc0\x0a\xf7\x0a\xdf\xc3\xda\xaf\x77\xae\x6b\xa0\x1f" +"\x6a\xa1\x66\x96\x4d\x91\x33\x91\x1d\xd3\x7e\x0a\x93\x82\x9a\x1b\x9c\xf7\x39\x1d\x81\x81\x7c\x89\x1e\xa5\x69\x5e\x98\x55\x1b\x26" +"\x40\x5a\x48\x6a\x9d\x6c\x9a\x1d\xa5\x85\xa5\x7c\x08\xa4\x7e\x9b\x75\x76\xf7\x0f\x0a\x0b\xf8\x32\x16\xf0\x23\x1d\x5a\xf7\x94\x06" +"\xd4\x44\xc0\x2b\x66\x4a\x7e\x78\x53\xa6\x0a\x99\x54\x6c\x90\x5f\x1b\xfb\x15\x33\x4f\x32\x3d\xcc\x56\xeb\xd0\xc2\xa1\xc0\xc9\x1f" +"\xc6\x04\x4f\x4a\x57\x74\x45\x1b\x49\x61\xaa\xbc\xc5\xd1\xb3\xf2\xb4\xba\x85\x83\xad\x1f\x0b\xf8\x52\x16\xdd\xf8\x04\x05\x9a\x06" +"\xa1\x96\x94\x9c\x9c\x81\x93\x74\x1f\xfb\x03\x2f\x0a\xb7\x06\x4b\xfb\xb5\x38\xf7\x81\x05\x50\x06\x39\xfb\x81\x49\xf7\xb5\x05\xb9" +"\x3d\x1d\xfb\x03\x2f\x0a\x9a\x06\xdf\xfc\x04\x05\xc6\x06\xe1\xf7\x88\xe2\xfb\x88\x05\x0b\xf7\x7d\xf8\x94\x15\xe6\x3e\x1d\xfb\x7e" +"\x22\x1d\xe6\xfc\x61\x30\x20\x0a\xf8\x5d\xf7\x5f\x78\x1d\xfb\x2c\xfb\x9a\x07\x0b\xf7\xda\xf8\xef\x15\xfb\x37\x2e\x1d\xf7\x03\xfc" +"\x89\xfb\x2f\x20\x0a\xf7\xfe\x21\x0a\xfb\x2f\x06\x0b\x06\xa0\x96\x94\x9c\x9b\x7f\x94\x77\x1f\x0b\x06\x57\x0a\x0b\x21\x1d\x75\x1f" +"\x0b\x7f\x94\x76\x1f\x0b\xf7\x3f\xf7\x8a\x15\xf7\x12\x06\xd6\x68\xb5\x58\xe4\xfb\x34\x08\xc6\x21\x0a\x70\x06\x3e\xf7\x16\x6d\xb3" +"\x52\xb3\x08\xe1\xa8\xba\xbe\xcb\x1a\xe0\x36\xd4\x27\x1e\xfb\x8d\x9c\x0a\x06\xf7\x8a\x04\xf7\x2a\x1d\x0b\xf8\x3e\xf8\x04\x15\xfb" +"\x26\x07\x43\x83\x63\x77\x6f\x1e\x6d\x75\x69\x7b\x61\x1b\x62\x67\x9d\xa9\x75\x1f\x78\xa6\x83\xb3\xd2\x1a\xf7\x59\x27\x07\x75\x80" +"\x38\x1d\xbb\xfb\x2b\x06\x39\x96\x59\xa6\x67\x1e\x60\xaa\xb9\x76\xc8\x1b\xc7\xbb\xa0\xb2\xaa\x1f\xa8\xb0\x97\xbe\xe4\x1a\xf7\x26" +"\xbb\x07\x7b\x0a\xfb\x28\x2e\x0a\x0b\xf8\x66\xf8\x15\x15\xaa\x63\x56\x9c\x60\x0a\x0b\xf8\x74\xf8\x37\x15\xfb\xfd\x28\x06\x27\x1d" +"\xbb\xf7\x7e\x07\xfb\xbb\xfb\xd9\x05\x60\xf8\x15\xef\x07\xa0\x83\x96\x79\x7a\x82\x80\x76\x1e\x5a\xfb\x98\x07\xf7\xbd\xf7\xd9\x05" +"\x0b\xf7\x16\x1d\xf7\x11\xf7\x10\xac\x0a\x0b\x30\x1d\xb9\x06\xfb\x2d\xfb\xc7\xfb\x2f\xf7\xc7\x8b\x1d\x0b\x15\x94\x81\xf7\x0a\x1d" +"\x9a\x96\x96\x9a\x93\x8b\x8b\x7d\x9a\x1f\x0e\xf7\xa8\x91\x15\x47\xfb\x1d\x05\xfb\x10\x06\x76\x80\x0b\x56\x1d\x80\x76\x1e\x0b\x55" +"\x0a\x3a\x1d\x0b\x83\x7a\x7a\x96\x82\xa0\x1f\x0b\x07\x75\x80\x59\x0a\x0b\xa0\x96\x83\x0a\x0b\xa0\x96\x94\x9c\x9c\x80\x93\x76\x1f" +"\x0b\x06\x75\x80\x83\x7a\x7a\x0b\x92\x8e\x93\x94\x1e\x0e\xa1\x96\x57\x1d\x0b\x75\x94\x80\x9c\x9c\x94\x96\xa1\x1e\x0b\x82\x7b\x7a" +"\x96\x82\xa1\x1f\x0b\x94\x9b\x9c\x7f\x94\x76\x1f\x0b\x1a\x9b\x80\x94\x75\x1e\x0b\x9a\x1b\x9c\x94\x96\xa0\x1f\x0b\x4e\x0a\x83\x7a" +"\x74\x1d\x9c\x80\x93\x71\x1d\x83\x7a\x4c\x0a\x0b\xee\xbe\x15\x5a\x26\x1d\xf7\x02\x06\xf7\xb4\xf8\x73\x05\xfc\x40\x5a\x07\x20\x1d" +"\xf7\x2a\x06\x9f\x97\x94\x9b\x9c\xf6\x0a\x9c\x9b\x7f\x94\x77\x1f\xfb\x02\x06\xfb\xb4\xfc\x74\x05\xf8\x41\xd0\x07\x32\x0a\xfb\x3e" +"\x4e\x1d\xbc\x06\x0b\x90\x1d\x8f\x9e\xa0\x0a\x50\x1b\xfb\x1d\x29\x2c\xfb\x19\xfb\x15\xeb\x2f\xf7\x1b\xce\xcd\x9e\xaf\xc0\x1f\xa9" +"\x9f\x9a\x9d\x99\xa7\x0a\x0b\x62\x0a\x0e\xf7\xdb\xbe\x15\xf8\x61\xf7\x2f\x49\x07\xe0\x1d\xf7\x8e\x21\x0a\x0b\x6f\x1d\x6d\x6c\xa2" +"\x1d\x0e\x4d\x1d\x67\x86\x62\x72\x56\x1b\x55\x51\x1d\x2b\x1d\xf7\x20\x21\x0a\x0b\xae\x1d\x85\x94\x7d\x0a\x0b\xf7\xbb\xf7\xf4\x15" +"\x61\x6b\x6d\x63\x64\xab\x6d\xb5\x1f\x96\x06\xb5\xab\xa9\xb2\xb3\x6b\xa9\x61\x1f\x0e\xf7\x1d\x1d\x91\x68\x1d\x4e\x1d\xbc\xfc\x61" +"\x5a\x26\x1d\x0b\xf7\x2c\x1d\xa9\xb3\xb2\x6b\xa9\x61\x1f\x0e\x60\x1d\xfc\x50\x20\x0a\x0b\x06\x9b\x8a\x97\x95\x9a\x1a\x8e\x07\x9a" +"\x7f\x95\x7b\x8a\x1e\x0b\xee\x1d\x9f\x0b\x07\x2b\x1d\x0b\xf7\x14\x1d\xa9\x72\xa3\x6e\x1f\x0b\x71\x7d\x82\x7a\x7b\x99\x82\xa5\x1f" +"\x0b\x76\x0a\xf7\x8e\x06\xa0\x97\x94\x9c\x9b\x0b\xf7\x3f\xf7\x9e\x15\xf7\x1a\x64\x06\x39\x1d\x0b\x07\xa0\x97\x94\x9c\x9b\x7f\x94" +"\x76\x1f\x0b\xa1\x96\x45\x0a\x0b\x1e\x37\xfb\x0f\x05\x85\x83\x89\x85\x86\x1a\x7c\x0b\x82\x7b\x7a\x97\x82\xa0\x1f\x0b\x74\x24\x0a" +"\xa4\x1e\xbf\x07\x0b\x07\x76\x7f\x38\x1d\x0b\x07\x9f\x82\x96\x7a\x7a\x82\x80\x77\x1e\x0b\x93\xa4\x1b\x9a\x9d\x82\x78\xa3\x1f\x0b" +"\xa0\x97\x57\x1d\x0b\x76\x94\x80\x9b\x9c\x94\x96\xa0\x1e\x0b\x91\x88\x91\x1b\x99\x97\x96\x99\x0b\xd4\xbd\x70\x62\x90\x1e\x79\x8d" +"\x0b\x99\x94\x9b\x9c\x7d\x94\x0b\x6e\x82\x85\x7c\x1b\x7f\x0b\x82\x1a\x7c\x96\x80\x9a\x92\x0b\x82\x7b\x7a\x99\x82\xa4\x1f\x0b\x94" +"\x9b\x9c\x80\x94\x76\x1f\x0b\x96\x7b\x7a\x82\x80\x76\x1e\x0b\x85\x79\xa1\x1f\xa3\x0b\x06\x75\x80\x82\x7a\x7b\x96\x82\xa1\x1f\x0b" +"\xf8\xcf\x15\x45\xfb\x05\xd1\x06\x0e\xab\x0a\x63\xb4\xc4\x75\xcc\x1b\xf7\x10\xe3\xd2\xed\xbf\x73\xb7\x63\xa3\x1f\x6c\x9e\x6f\x93" +"\x3d\x98\x4e\x95\x71\x93\x73\x9b\x08\x73\x9a\x7e\xa4\xa8\x1a\xca\xc5\xb8\xdb\xd6\xcc\x0a\x0b\xf8\x7a\xf7\xd7\x15\xbb\x1d\xc4\x24" +"\x1d\x55\x06\x4a\xe6\x5c\xcc\x7f\x95\x65\x98\x19\xa0\x9c\x9c\x9d\xa9\xaf\xbf\xc9\x91\x8e\xb5\x8d\x08\x0b\xf7\xda\xf7\x79\x15\x9f" +"\x81\x97\x7b\x7a\x82\x80\x76\x1e\x6b\x07\x21\x71\x54\x58\x55\x67\xc4\xe2\xe3\xa3\xca\xbb\xac\x1e\x93\x91\x91\x8f\x97\x91\x08\xa3" +"\x97\x8e\x8e\x98\x1a\x9a\x81\x95\x7b\x71\x67\x72\x64\x6b\x1e\x62\x59\x7b\x55\x38\x1a\x4b\x99\x5b\xa8\x68\x1e\x6b\xa5\xaf\x79\xaf" +"\x1b\xb8\xb0\xa2\xb4\xa1\x1f\x62\xa0\xb1\x74\xb8\x1b\xaf\xaf\x9d\xab\xa5\x1f\xa8\xaf\x99\xba\xcf\x1a\xd1\x79\xcb\x6a\xb6\x1e\xb1" +"\x6e\x5d\xab\x71\x1b\x7c\x81\x81\x7c\x7e\x8e\x88\xa4\x7e\x1f\x97\x85\x90\x88\x93\x86\x08\xba\x6a\xa4\x4b\x35\x1a\x32\x68\x52\x54" +"\x58\x71\xc1\xf6\x1e\x0b\xf7\x38\x1d\xa1\x96\xb4\x1d\xf7\x22\xbb\x15\x5e\xbc\xbb\x78\xc9\x1b\xf7\x21\xf7\x04\xf7\x17\xf7\x39\xd6" +"\x74\xd1\x61\xc1\x1f\xce\xde\x05\x94\x95\x8c\x8e\x91\x1a\x98\x80\x95\x7f\x82\x87\x89\x7f\x81\x1e\x4d\x3d\x05\xb9\x56\x5f\x9c\x4f" +"\x1b\xfb\x23\xfb\x04\xfb\x16\xfb\x39\x3f\x9f\x4e\xb8\x4e\x1f\x48\x39\x05\x84\x81\x89\x88\x84\x1a\x7f\x95\x81\x98\x93\x91\x8f\x94" +"\x93\x1e\xcb\xf7\x2d\x15\x6c\xbc\x7c\xbc\xc4\x1a\xf7\x1b\xe6\xf7\x02\xf7\x03\xba\xb1\x7b\x67\xb3\x1e\xaa\x68\x15\xaa\x59\x9a\x5a" +"\x50\x1a\xfb\x1a\x30\xfb\x02\xfb\x03\x5c\x65\x9b\xb0\x63\x1e\x0b\xf7\x2f\xac\x15\x69\xb8\xb8\x7c\xc3\x1b\xf7\x16\xf2\xee\xf7\x11" +"\xc3\x78\xbd\x65\xb5\x1f\xc7\xc7\x05\x94\x94\x8e\x90\x92\x1a\x98\x81\x95\x7e\x83\x88\x89\x81\x81\x1e\x4e\x4d\x05\xab\x60\x5d\x9a" +"\x54\x1b\xfb\x16\x24\x28\xfb\x11\x54\x9d\x5c\xb0\x60\x1f\x4c\x4c\x05\x83\x82\x88\x86\x84\x1a\x7f\x95\x81\x98\x92\x90\x8e\x93\x94" +"\x1e\xf7\xf1\xf7\xf3\x15\xa6\x6a\x99\x66\x62\x1a\x2a\x3b\x3e\x26\x60\x6c\x95\xa3\x67\x1e\x6a\xaa\x15\x71\xac\x7e\xaf\xb3\x1a\xeb" +"\xdb\xd8\xf0\xb5\xa8\x82\x74\xaf\x1e\x0b\xf8\x04\xf7\x8f\x15\x6b\x8c\x05\x3d\x54\xab\xb9\xb3\xb2\xa4\xca\xa1\x9d\x89\x87\x98\x1f" +"\x81\xac\x8b\x8b\x90\x1b\x98\x95\x97\x9a\x95\x86\x93\x81\x90\x1f\x94\x79\x60\x93\x6a\x1b\x2f\x48\x5b\x48\x68\xa0\x69\xae\x78\x1f" +"\x96\x85\x94\x87\xa1\x85\x08\x3b\x78\x65\x66\x50\x1a\x40\xcc\x5b\xf3\xb9\xc0\x95\x98\xaa\x1e\x99\x92\x91\x92\x97\x1a\x9a\x82\x95" +"\x7d\x87\x88\x8a\x89\x85\x1e\x7a\x59\x79\x88\x60\x1b\x3d\x61\xa4\xb8\xc2\xc4\xad\xe4\x1f\xa3\x06\x92\x06\x93\x8a\x05\x0b\xee\xf7" +"\x9e\x15\xfb\x6b\x6e\x07\x20\x1d\xf7\x71\x06\xf7\x11\x88\xf7\x02\xf7\x0b\xf7\x1e\x1a\xc1\x07\xf7\x1f\xfb\x02\xf7\x0b\xfb\x11\x88" +"\x1e\xfb\x71\x22\x1d\xa8\xfb\x57\x43\x20\x0a\xf7\x10\xf7\x8a\x15\xf7\x1e\x06\xea\x92\xe0\x31\x90\xfb\x04\x08\x43\x07\x88\x24\x35" +"\x2e\x31\x8d\x08\xfb\x24\xf7\x6b\xf7\x31\x23\x1d\xfb\x31\x06\x0e\x72\x1d\xc9\xa4\xb9\xbd\x1e\xa7\xa5\x97\x9b\x97\x1a\x99\x6e\x1d" +"\x0e\xa9\x0a\x9b\x80\x94\x75\x1f\xfb\x15\x06\x3b\x0a\x92\x06\xfb\x2d\xfb\x13\x05\xf7\xfe\x26\x07\xf7\x0d\x1d\x06\x0b\xf7\x01\x1d" +"\xc0\xaa\xa3\xc4\x1d\xa1\x0a\x51\x52\x4c\xcc\x1d\x0b\x72\x0a\x96\x9f\xc2\x1d\x0e\xf7\x2a\xf8\x37\x15\x26\x2f\x0a\xbc\xfc\x87\xae" +"\x0a\x41\x5b\x73\x4e\x58\x1f\xf7\x3e\xad\x15\xee\xd7\x45\x30\xf7\x29\x1d\xf8\x40\xf8\x94\x15\xfc\x61\x5b\x5f\x1d\xf7\x20\x06\xf7" +"\x0e\x1d\xfc\x4c\x8c\x1d\xf7\x21\x33\x0a\x5a\xf8\x61\x06\x0e\xd4\x1d\xa7\x93\x90\x9d\x1b\x96\xaa\x1d\x9d\xd9\x0a\xf7\x53\xf8\x37" +"\x15\x3b\x2e\x1d\xa7\xcd\x0a\xf7\x84\x06\xd4\xc9\xa7\x9d\xc2\x1b\xcd\xb8\x65\x53\x1f\xfc\x4a\x2b\x0a\xf8\x51\x07\xd9\x45\xc7\x31" +"\x51\x65\x7a\x5a\x57\x1e\x0b\xe8\x1d\x51\x42\x57\x74\x50\xd7\x1d\xb5\x1b\xc0\xc0\x9c\xab\xb7\x1f\xa6\x9e\x05\x0b\xf8\x90\xf8\xef" +"\x15\x26\x20\x0a\xbc\xfb\x66\x06\xc7\x5e\x4f\xaa\x44\x1b\xfb\x0f\x28\x27\xfb\x10\xfb\x10\xee\x26\xf7\x0e\xd2\xc9\xab\xc6\xb7\x1f" +"\x40\xf0\x07\x61\x1d\x5a\x06\xfb\x77\xf7\xdf\x15\xee\xd7\x40\x28\x2b\x3e\x3e\x2b\x2a\x3f\xd8\xec\xeb\xd7\xd8\xea\x1f\x0b\xee\xbe" +"\x15\x6e\x20\x0a\xf7\x71\x06\xf7\x16\x8a\xf3\xf7\x04\x8c\xf7\x23\x08\xc2\x07\x8a\xf7\x23\x23\xf7\x04\xfb\x16\x8a\x08\xfb\x71\x22" +"\x1d\xa8\x06\xbf\xfc\x61\x15\xf8\x61\xf7\x1e\x07\xea\x92\xe0\x31\x90\xfb\x03\x08\x43\x07\x89\x23\x35\x2e\x30\x8d\x08\x0b\x76\x1d" +"\xf7\x3e\x21\x0a\x46\x0b\x9e\x0a\x0e\xf8\x66\xf8\x94\x15\xe6\x3e\x1d\xfb\xbc\x50\x0a\xf7\x2d\xfb\xec\x06\x41\x4d\x50\x3c\x5b\x5e" +"\x9f\xb7\x5a\x1e\xf7\x11\x34\x1d\xfb\x29\x07\x47\xd9\xbc\x74\xcd\x1b\xf5\xe3\xde\xf0\x1f\x0b\x06\x73\x6b\x76\x61\x7c\x1a\x83\x92" +"\x84\x94\x92\x8f\x8d\x92\x91\x1e\xad\xb2\xa3\x9f\xbc\xa8\x99\x94\x18\x91\x8e\x8f\x8d\x8c\x8c\x08\x99\x93\x8e\x8e\x93\x1a\x92\x87" +"\x8f\x78\x95\x1e\x4f\xad\x6e\xa2\x6c\xae\x08\x98\x80\x87\x8e\x84\x1b\x82\x83\x85\x83\x7c\x9b\x6b\xa8\x5f\x1f\x0b\x67\x1f\x9e\x6b" +"\x7d\x8f\xb4\x0a\xa3\x1b\xa3\xf7\x20\x1d\xf8\x47\xf7\xf1\x15\xc5\x5f\x57\xa5\x46\x1b\xfb\x09\x2c\x2c\xfb\x08\xfb\x09\xea\x2c\xf7" +"\x09\xcf\xc0\xa6\xc3\xb7\x1f\xfb\x01\x07\x8f\x50\x0b\xf8\xc1\x15\x8c\x9c\x05\xa1\x8c\x76\x9f\x72\x1b\x71\x78\x78\x73\x87\xad\x0a" +"\x0b\x9a\x1b\x93\x92\x92\x94\x92\x88\x8f\x84\x91\x1f\x63\xac\x78\xa1\x6d\xbc\x88\x8f\x88\x90\x88\x90\x08\x88\x90\x87\x91\x8b\x1a" +"\x98\x84\x88\x8e\x82\x1b\x84\x87\x87\x79\x81\x1f\x6a\x52\x72\x6b\x67\x6f\x08\x7e\x80\x88\x86\x85\x1a\x81\x92\x84\x93\x99\x0b\xf8" +"\xb7\xcd\x1d\x0b\xf7\x8b\xbe\x15\xf7\xd1\xf7\x7e\xfb\x2c\x07\x77\x94\x7f\x9c\x9c\x94\x97\x9f\xf7\x26\x1d\xfb\xd1\x30\x06\xf7\x17" +"\x1d\x0b\xa3\x1d\x8e\x8c\x8f\x98\x1e\x9d\xc4\xb5\x93\xab\x1b\xd1\xbb\x6d\x5e\x1f\x4d\x07\x0b\xda\x0a\x59\x4e\x74\x43\x1b\x21\x40" +"\xd1\xf0\xf4\xd4\xd2\xf6\xdd\xce\x65\x59\x91\x1f\x77\x8d\x93\x83\x9a\x1b\x9c\x94\x96\x9f\x1f\xe5\x07\xa0\x82\xa9\x1d\x0b\x83\xed" +"\x0a\x97\x97\x8d\x8d\x94\x1a\x99\x80\x96\x7c\x84\x83\xf7\x1d\x1d\x92\x8e\x93\x93\x1e\x0e\xf7\x53\xf7\x47\x15\xb4\xad\xf7\x3a\xfb" +"\x36\x05\x7c\x35\x0a\xf7\x17\x06\x74\x0a\x61\x06\xfb\x5d\xf7\x56\xf7\x2a\xf7\x0f\x05\xb8\x06\xa0\x97\x94\x9c\x0b\x15\x44\xfb\x8d" +"\x05\x8a\x87\x8a\x87\x87\x1a\x78\x9a\x7c\x9f\x9a\x93\x91\xa0\x97\x1e\xf7\x29\xf7\xa0\x05\x0b\x7f\xd2\x80\x9f\x85\xa3\x7c\x08\xa5" +"\x7b\x9b\x6d\x6b\x1a\x46\x48\x58\x30\x33\x45\xba\xc9\x86\x1e\x9f\x8a\x83\x94\x7b\x1b\x7a\x82\x80\x76\x1f\xfb\x01\x2b\x0a\x99\x07" +"\x0b\x24\xf0\xfb\x13\x1f\x85\x58\xe3\x0a\x0b\x8b\x86\x8c\x84\x1f\x9d\xfb\xd4\x05\x75\x8c\x94\x81\x9b\x1b\x9b\x93\x95\xa1\x8c\x1f" +"\x6c\xfb\x23\x15\x69\x72\x74\x6c\x6c\xa4\x73\xad\x1f\x97\x06\xad\xa5\xa3\xaa\xaa\x71\xa2\x69\x1f\x0b\x5a\x20\x0a\xf7\x55\x27\x0a" +"\x2f\xf7\x74\x06\x52\xb9\xc2\x71\xd4\x1b\xf7\x12\xec\xe8\xf7\x0b\xf7\x0c\x2b\xe6\xfb\x14\x0b\x75\x1d\x7c\x80\x46\x1d\x3c\x1d\x98" +"\x92\x66\x0a\x95\x89\x8f\x58\x1d\x45\x1d\x7f\x82\x88\x87\x80\x1a\x7d\x96\x80\x9a\x91\x91\x8e\x91\x93\x1e\xf3\xdf\xf4\x37\x05\x85" +"\x93\x7d\x0a\x95\x89\x8f\x3d\x0a\xf8\xab\xf8\x3e\x15\x97\x92\x8f\x91\x94\x1a\x97\x80\x96\x80\x86\x85\x89\x86\x83\x1e\xfc\x53\xfb" +"\xad\x05\x7f\x84\x87\x85\x81\x1a\x7f\x95\x80\x98\x90\x8d\x8c\x92\x96\x1e\x0e\x5d\x1d\xe0\x4d\x1d\x68\x87\x61\x71\x56\x1b\x56\x61" +"\xa5\xae\x87\x1f\x9d\x89\x83\x93\x7c\x1b\x0e\x76\x1b\x71\x74\xcf\x0a\x9e\x1b\x95\xaa\x1d\x9e\x84\x0b\x26\x0a\xf7\x70\x16\x3f\x1d" +"\x0e\x3c\x0a\x90\x1a\x9a\x80\x96\x7c\xf7\x03\x1d\x15\x97\x95\x8d\x8f\x98\x1d\x81\x1a\x7d\x96\x80\x9a\x92\x8f\x8d\x94\x96\x1e\x0e" +"\x55\x1d\x65\x1d\x82\x81\x1e\xfb\x06\x2a\x05\x80\x82\x88\x86\x81\x0a\x8f\x30\x0a\x1b\xe1\xd7\x5a\x51\x90\x1f\xf1\x1d\x0b\x76\x80" +"\x51\x0a\x0b\xc5\x0a\xa8\xfb\xd1\xd2\x0a\x0b\xf8\x25\x15\x9f\x82\x97\x7a\x7a\x82\x80\x76\xe6\x0a\x84\x88\x86\x80\x1e\x83\x7b\x0b" +"\x52\x1d\xfb\x11\x06\x71\x0b\x76\x0a\xc6\xfc\x31\x64\x06\x75\x80\x82\x7b\x7a\xf7\x23\x1d\x0b\x15\xfc\x1a\x07\x4a\x8a\x5e\x5f\x4c" +"\x1b\xfb\x14\x06\x3b\x0a\xf7\x15\x06\xe6\x89\xd2\xd2\x89\xe6\x08\xf8\x4d\x0b\xf7\x2a\xf7\x0a\x15\x9b\x80\x96\x7c\x7a\x82\x80\x76" +"\x1e\x3a\x07\x76\x94\x80\x9c\x9b\x94\x96\x9f\x1e\x6c\xb1\xc0\x7b\xc8\x1b\x0b\x7f\x96\x7d\x77\x1d\x83\x80\x9c\x1d\xec\x0a\x84\x88" +"\x85\x85\x1a\x7f\x95\x81\x97\x93\x8e\x8d\x97\x95\x1e\x0b\x82\xa5\x1f\xa5\x06\xf7\x31\xc8\x77\x56\x58\x4c\x6c\x26\x3e\x4f\x98\xaa" +"\x48\x1f\x90\x82\x86\x8c\x86\x1b\x7e\x7e\x7e\x7d\x0b\x1a\x62\xa9\x73\xbe\xee\x0a\x74\x86\x89\x79\x1b\x71\x7f\x94\x9e\xa3\x0b\x75" +"\x81\x51\x0a\x0b\xa5\xe9\x0a\x0b\x05\x95\x3e\x1d\xfb\x02\x06\x3b\x0a\xb8\x06\xfb\x2c\x0b\x05\xa0\x06\x9e\x98\xf7\x40\x1d\xfb\x03" +"\x50\x0a\xaa\x06\xfb\x20\x0b\xf8\x89\xf7\x90\x60\x1d\xfc\x26\x20\x0a\x0e\xf8\xd0\xf7\x94\x60\x1d\xfc\xb4\x20\x0a\x0e\x80\x96\x7c" +"\xf7\x0d\x0a\x7f\x89\x0b\xc5\x62\x53\x90\x1e\x77\x8c\x94\x82\x5c\x0a\xf0\xac\x1d\x0b\xfb\xd1\x63\x06\xf7\x13\x1d\x0b\x1e\xc8\x9b" +"\xc1\xa7\xee\x1b\xe6\xc2\x72\x61\x7f\x87\x80\x81\x80\x1f\x74\x75\x41\x7c\x34\x1b\x71\x06\x0b\x80\x70\x6e\x1f\x7c\x7e\x85\x81\x82" +"\x1a\x7d\xf4\x0a\x0b\xf8\x4d\xf8\xa0\x15\xae\x63\x5d\xeb\x0a\x0b\x15\x95\x94\x8e\x91\x93\x1a\x9a\x80\x96\x7d\x83\x87\x9d\x1d\x82" +"\x88\x0b\x63\x29\x0a\xf7\x18\x06\x61\x1d\x63\x0b\x30\x07\xf7\x17\x1d\x30\x0b\x25\x1d\xb3\xfc\x61\x0b\xf7\x01\x0a\x96\x7f\x99\x92" +"\x91\x68\x1d\x76\x80\x82\x7a\x7b\x96\x82\xa0\x1f\x0b\xf7\x21\x1d\xf7\x07\x2a\x05\x83\x0b\x1e\xfb\xf2\xfc\x2e\x05\x83\x83\x89\xf3" +"\x0a\x0b\x84\xa2\x1b\xa4\xa0\xe8\x0a\x1a\x98\x80\x96\x7e\x83\x86\x89\x82\x82\x1e\x5d\x0b\xaa\x63\x56\x9c\x50\x1b\xfb\x1d\x29\x2c" +"\xfb\x19\x0b\x06\xde\xbe\x98\xa5\xa4\x1f\x9f\xa0\x98\xad\xad\x1a\xd8\x4a\xb3\xfb\x13\x1e\x32\x0b\x91\x8d\x92\x93\x1e\xf3\xdf\xf4" +"\x37\x05\x85\x93\x7d\x0a\x0b\x3a\x1d\xf7\x18\x22\x0a\x63\xf7\x84\x06\x0b\x68\x1f\x9d\x6b\x7d\x90\xf7\x03\x0a\x81\x1a\x0b\xe3\x0a" +"\x0e\x82\x88\x87\x80\x1a\x7d\x97\x80\x99\x91\x91\x0b\x1f\x90\x82\x88\x8c\x85\x47\x1d\x85\x9b\x83\x1f\x81\x9f\x0b\x15\xf7\x25\x1d" +"\x0b\x73\x24\x0a\xa4\x1e\xd5\x07\x8a\xac\x85\x90\x6a\x8c\x08\x0b\xb6\x80\x74\xaa\x1f\xa4\x77\x99\x70\x6e\x1a\x50\x56\x5d\x47\x1e" +"\x0e\x1e\xfb\xea\x07\x59\xa6\x72\xc3\xc3\xb5\x9e\xa5\x98\x7f\x97\x7f\x86\x0b\x72\x77\x78\x72\x67\x1d\x9e\xa3\xa4\x77\x9f\x72\x1f" +"\x0b\x95\xa5\xa6\x1f\x9f\x9e\x8f\x91\x95\xa4\x1d\x06\x9f\x97\x83\x0a\x0b\x06\x89\xf8\xcf\x15\x45\xfb\x05\xd1\x06\x0b\x9b\x53\x1b" +"\xfb\x00\x3a\x47\x32\x5f\x9f\x63\xad\x74\x1f\xaa\x75\x0b\x81\x95\x7f\x83\x88\x89\x80\x82\x1e\xfb\xf3\xfc\x2e\x05\x85\x0b\xf7\x3a" +"\x1d\xf7\x83\xe7\x15\x0b\xf7\x2e\x1d\x7e\x0b\x1b\xfb\x16\x34\x4f\x32\x3e\xcc\x56\x0b\x15\x7e\x87\x87\x75\x7a\x1f\x6a\x73\x75\x7b" +"\x75\x1b\x7b\x0b\x96\x99\x96\x84\x94\x7f\x90\x1f\x93\x76\x67\x92\x76\x1b\x0b\x06\x33\x66\x84\x71\x64\x1f\x47\x5e\x68\x40\x27\x1a" +"\x0b\x86\x85\x1a\x7f\x95\x81\x97\x94\x8d\x8d\x97\x95\x1e\x0b\x96\x81\xf7\x07\x0a\x0b\xd0\xbe\xe0\x94\x93\xb6\x8d\x08\x0b\x7f\x94" +"\x77\x1f\x5a\xf8\x61\xbc\x06\x9f\x97\x94\x0b\x81\x1a\x7e\x96\x80\x99\x94\x91\x8f\x95\x93\x1e\x0b\x1e\xfb\x06\x2b\x05\x82\x84\x87" +"\x83\x83\x1a\x7d\x0b\xa9\x1a\xc2\x5b\xb8\x51\x51\x5b\x5e\x54\x6d\x99\x0b\x76\x1b\x70\x75\x80\x70\x6e\x1f\x7c\x7e\x85\x81\x0b\x06" +"\xf7\x08\x0a\x06\xfb\x59\xf8\x94\x05\x0b\x94\x7f\x9c\x9c\x94\x98\xa3\x1e\xf7\x01\x07\x0b\x99\x93\x93\x8e\x91\x90\x1e\xa8\xa7\x93" +"\x90\x0b\x76\x94\x80\x9c\x9b\x94\x96\xa0\x1e\x0e\x94\x1a\x98\x80\x96\x7d\x1e\x0b\x06\x9e\x93\x92\x9c\x9b\x83\x92\x78\x1f\x0b\x06" +"\x77\x7f\x82\x7a\x7b\x97\x82\x9f\x1f\x0b\x07\xa4\x99\x94\x9c\x9b\x7d\x94\x72\x1f\x0b\x84\x84\x88\x84\x83\x1e\x2a\x2f\x05\x7f\x0b" +"\x15\x95\x93\x8f\x91\x94\x1a\x99\x7f\x97\x0b\x1a\x5a\x4c\x67\x36\x39\x48\xad\xb5\x1e\x0b", 45974 +}; diff --git a/dviware/dvisvgm/src/fonts/NimbusRoman-Bold.cff.cpp b/dviware/dvisvgm/src/fonts/NimbusRoman-Bold.cff.cpp new file mode 100644 index 0000000000..b9b7a319d7 --- /dev/null +++ b/dviware/dvisvgm/src/fonts/NimbusRoman-Bold.cff.cpp @@ -0,0 +1,1585 @@ +#include "Base14Fonts.hpp" + +extern const MemoryFontData NimbusRoman_Bold_cff = { +"\x01\x00\x04\x02\x00\x01\x01\x01\x11\x4e\x69\x6d\x62\x75\x73\x52\x6f\x6d\x61\x6e\x2d\x42\x6f\x6c\x64\x00\x01\x01\x01\x33\xf9\xbc" +"\x00\xf9\xbd\x01\xf9\xbe\x0c\x00\xf9\xbf\x02\xf9\xc0\x03\xf8\x14\x04\xfb\x01\x0c\x03\xd0\x0c\x04\xfb\x3c\xfb\xe9\xfa\xcb\xfa\xa8" +"\x05\x1c\x28\x98\x0f\x1c\x28\xab\x11\xbd\x1d\x00\x00\xb4\xf9\x12\x01\xa6\x02\x00\x01\x00\x08\x00\x0e\x00\x13\x00\x1d\x00\x24\x00" +"\x2b\x00\x35\x00\x39\x00\x3f\x00\x45\x00\x50\x00\x5a\x00\x5d\x00\x63\x00\x69\x00\x6e\x00\x74\x00\x7a\x00\x84\x00\x8b\x00\x8e\x00" +"\x95\x00\x9c\x00\xa8\x00\xab\x00\xb3\x00\xb7\x00\xbc\x00\xc2\x00\xcd\x00\xd9\x00\xe3\x00\xe7\x00\xf2\x00\xf4\x00\xfa\x01\x04\x01" +"\x0b\x01\x12\x01\x16\x01\x22\x01\x2b\x01\x31\x01\x3c\x01\x41\x01\x4d\x01\x53\x01\x59\x01\x5f\x01\x6b\x01\x6f\x01\x71\x01\x77\x01" +"\x7d\x01\x89\x01\x8b\x01\x91\x01\x9e\x01\xa5\x01\xaf\x01\xb6\x01\xc2\x01\xcd\x01\xd0\x01\xd2\x01\xd5\x01\xdb\x01\xe1\x01\xed\x01" +"\xf0\x01\xf6\x01\xfe\x02\x09\x02\x15\x02\x1a\x02\x1d\x02\x21\x02\x27\x02\x33\x02\x38\x02\x3e\x02\x4b\x02\x52\x02\x59\x02\x60\x02" +"\x6f\x02\x7b\x02\x80\x02\x86\x02\x8c\x02\x97\x02\xa0\x02\xa6\x02\xa8\x02\xb3\x02\xb9\x02\xbf\x02\xc9\x02\xcd\x02\xd3\x02\xda\x02" +"\xe3\x02\xec\x02\xf5\x02\xfe\x03\x07\x03\x10\x03\x19\x03\x22\x03\x2b\x03\x34\x03\x3d\x03\x46\x03\x4f\x03\x58\x03\x61\x03\x6a\x03" +"\x73\x03\x7c\x03\x85\x03\x8e\x03\x97\x03\xa0\x03\xa9\x03\xb2\x03\xbb\x03\xc4\x03\xcd\x03\xd6\x03\xdf\x03\xe8\x03\xf1\x03\xfa\x04" +"\x03\x04\x0c\x04\x15\x04\x1e\x04\x27\x04\x30\x04\x39\x04\x42\x04\x4b\x04\x54\x04\x5d\x04\x66\x04\x6f\x04\x78\x04\x81\x04\x8a\x04" +"\x93\x04\x9c\x04\xa5\x04\xae\x04\xb7\x04\xc0\x04\xc9\x04\xd2\x04\xdb\x04\xe4\x04\xed\x04\xf6\x04\xff\x05\x08\x05\x11\x05\x1a\x05" +"\x23\x05\x2c\x05\x35\x05\x3e\x05\x47\x05\x50\x05\x59\x05\x62\x05\x6b\x05\x74\x05\x7d\x05\x86\x05\x8f\x05\x98\x05\xa1\x05\xaa\x05" +"\xb3\x05\xbc\x05\xc5\x05\xce\x05\xd7\x05\xe0\x05\xe9\x05\xf2\x05\xfb\x06\x04\x06\x0d\x06\x16\x06\x1f\x06\x28\x06\x31\x06\x3a\x06" +"\x43\x06\x4c\x06\x55\x06\x5a\x06\x64\x06\x6b\x06\x74\x06\x7e\x06\x85\x06\x90\x06\x9a\x06\xa3\x06\xac\x06\xb5\x06\xbf\x06\xc6\x06" +"\xcf\x06\xdb\x06\xdf\x06\xe5\x06\xeb\x06\xf6\x07\x00\x07\x03\x07\x11\x07\x15\x07\x1b\x07\x21\x07\x26\x07\x2d\x07\x3a\x07\x40\x07" +"\x46\x07\x50\x07\x57\x07\x5e\x07\x61\x07\x68\x07\x6f\x07\x7b\x07\x86\x07\x8f\x07\x92\x07\x9a\x07\xa3\x07\xae\x07\xb4\x07\xb9\x07" +"\xbe\x07\xc4\x07\xcf\x07\xdb\x07\xe5\x07\xf1\x07\xf5\x08\x00\x08\x05\x08\x0a\x08\x10\x08\x12\x08\x19\x08\x21\x08\x29\x08\x33\x08" +"\x3d\x08\x49\x08\x55\x08\x5c\x08\x60\x08\x6c\x08\x7d\x08\x86\x08\x8c\x08\x97\x08\x9c\x08\xa8\x08\xb4\x08\xba\x08\xc0\x08\xc6\x08" +"\xd2\x08\xd6\x08\xdf\x08\xe3\x08\xe8\x08\xec\x08\xf2\x08\xfd\x09\x0b\x09\x11\x09\x1c\x09\x22\x09\x2e\x09\x38\x09\x40\x09\x42\x09" +"\x48\x09\x55\x09\x5c\x09\x61\x09\x6b\x09\x72\x09\x7e\x09\x88\x09\x93\x09\x9e\x09\xa4\x09\xa7\x09\xa9\x09\xb0\x09\xbc\x09\xca\x09" +"\xcd\x09\xda\x09\xe0\x09\xe7\x09\xed\x09\xf9\x0a\x06\x0a\x09\x0a\x0f\x0a\x17\x0a\x22\x0a\x2e\x0a\x34\x0a\x39\x0a\x42\x0a\x47\x0a" +"\x50\x0a\x53\x0a\x56\x0a\x5a\x0a\x60\x0a\x6c\x0a\x71\x0a\x76\x0a\x7c\x0a\x89\x0a\x90\x0a\x9d\x0a\xa4\x0a\xab\x0a\xb2\x0a\xb9\x0a" +"\xc0\x0a\xc7\x0a\xce\x0a\xd5\x0a\xdc\x0a\xe3\x0a\xea\x0a\xf1\x0a\xf8\x0a\xff\x0b\x06\x0b\x0d\x0b\x14\x0b\x1b\x0b\x22\x0b\x29\x0b" +"\x30\x0b\x37\x0b\x3e\x0b\x45\x0b\x4c\x0b\x53\x0b\x5a\x0b\x61\x0b\x68\x0b\x6f\x0b\x76\x0b\x7d\x0b\x84\x0b\x8b\x0b\x92\x0b\x99\x0b" +"\xa0\x0b\xa7\x0b\xae\x0b\xb5\x0b\xbc\x0b\xc3\x0b\xca\x0b\xd1\x0b\xd8\x0b\xdf\x0b\xe6\x0b\xed\x0b\xf4\x0b\xfb\x0c\x02\x0c\x09\x0c" +"\x10\x0c\x17\x0c\x1e\x0c\x25\x0c\x2c\x0c\x33\x0c\x3a\x0c\x41\x0c\x48\x0c\x4d\x0c\x56\x0c\x5d\x0c\x64\x0c\x73\x0c\x87\x0c\x93\x0c" +"\x98\x0c\x9e\x0c\xa4\x0c\xaf\x0c\xb8\x0c\xbe\x0c\xc0\x0c\xcb\x0c\xd1\x0c\xd7\x0c\xe1\x0c\xe5\x0c\xe9\x0d\x1f\x0d\x5f\x0d\x70\x0d" +"\x7c\x41\x45\x61\x63\x75\x74\x65\x41\x62\x72\x65\x76\x65\x41\x6c\x70\x68\x61\x41\x6c\x70\x68\x61\x74\x6f\x6e\x6f\x73\x41\x6d\x61" +"\x63\x72\x6f\x6e\x41\x6f\x67\x6f\x6e\x65\x6b\x41\x72\x69\x6e\x67\x61\x63\x75\x74\x65\x42\x65\x74\x61\x43\x61\x63\x75\x74\x65\x43" +"\x63\x61\x72\x6f\x6e\x43\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x43\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x43\x68\x69\x44\x63\x61" +"\x72\x6f\x6e\x44\x63\x72\x6f\x61\x74\x44\x65\x6c\x74\x61\x45\x62\x72\x65\x76\x65\x45\x63\x61\x72\x6f\x6e\x45\x64\x6f\x74\x61\x63" +"\x63\x65\x6e\x74\x45\x6d\x61\x63\x72\x6f\x6e\x45\x6e\x67\x45\x6f\x67\x6f\x6e\x65\x6b\x45\x70\x73\x69\x6c\x6f\x6e\x45\x70\x73\x69" +"\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x45\x74\x61\x45\x74\x61\x74\x6f\x6e\x6f\x73\x45\x75\x72\x6f\x47\x61\x6d\x6d\x61\x47\x62\x72\x65" +"\x76\x65\x47\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x47\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x47\x64\x6f\x74\x61\x63\x63" +"\x65\x6e\x74\x48\x62\x61\x72\x48\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x49\x4a\x49\x62\x72\x65\x76\x65\x49\x64\x6f\x74\x61\x63" +"\x63\x65\x6e\x74\x49\x6d\x61\x63\x72\x6f\x6e\x49\x6f\x67\x6f\x6e\x65\x6b\x49\x6f\x74\x61\x49\x6f\x74\x61\x64\x69\x65\x72\x65\x73" +"\x69\x73\x49\x6f\x74\x61\x74\x6f\x6e\x6f\x73\x49\x74\x69\x6c\x64\x65\x4a\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x4b\x61\x70\x70" +"\x61\x4b\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4c\x61\x63\x75\x74\x65\x4c\x61\x6d\x62\x64\x61\x4c\x63\x61\x72\x6f\x6e\x4c" +"\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4c\x64\x6f\x74\x4d\x75\x4e\x61\x63\x75\x74\x65\x4e\x63\x61\x72\x6f\x6e\x4e\x63\x6f" +"\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4e\x75\x4f\x62\x72\x65\x76\x65\x4f\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x4f\x6d" +"\x61\x63\x72\x6f\x6e\x4f\x6d\x65\x67\x61\x74\x6f\x6e\x6f\x73\x4f\x6d\x69\x63\x72\x6f\x6e\x4f\x6d\x69\x63\x72\x6f\x6e\x74\x6f\x6e" +"\x6f\x73\x4f\x73\x6c\x61\x73\x68\x61\x63\x75\x74\x65\x50\x68\x69\x50\x69\x50\x73\x69\x52\x61\x63\x75\x74\x65\x52\x63\x61\x72\x6f" +"\x6e\x52\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x52\x68\x6f\x53\x61\x63\x75\x74\x65\x53\x63\x65\x64\x69\x6c\x6c\x61\x53\x63" +"\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x53\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x53\x69\x67\x6d\x61\x54\x61\x75\x54\x62\x61" +"\x72\x54\x63\x61\x72\x6f\x6e\x54\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x54\x68\x65\x74\x61\x55\x62\x72\x65\x76\x65\x55\x68" +"\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x55\x6d\x61\x63\x72\x6f\x6e\x55\x6f\x67\x6f\x6e\x65\x6b\x55\x70\x73\x69\x6c\x6f\x6e" +"\x55\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x55\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x55\x72\x69\x6e\x67" +"\x55\x74\x69\x6c\x64\x65\x57\x61\x63\x75\x74\x65\x57\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x57\x64\x69\x65\x72\x65\x73\x69\x73" +"\x57\x67\x72\x61\x76\x65\x58\x69\x59\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x59\x67\x72\x61\x76\x65\x5a\x61\x63\x75\x74\x65\x5a" +"\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x5a\x65\x74\x61\x61\x62\x72\x65\x76\x65\x61\x65\x61\x63\x75\x74\x65\x61\x66\x69\x69\x30\x30" +"\x32\x30\x38\x61\x66\x69\x69\x31\x30\x30\x31\x37\x61\x66\x69\x69\x31\x30\x30\x31\x38\x61\x66\x69\x69\x31\x30\x30\x31\x39\x61\x66" +"\x69\x69\x31\x30\x30\x32\x30\x61\x66\x69\x69\x31\x30\x30\x32\x31\x61\x66\x69\x69\x31\x30\x30\x32\x32\x61\x66\x69\x69\x31\x30\x30" +"\x32\x33\x61\x66\x69\x69\x31\x30\x30\x32\x34\x61\x66\x69\x69\x31\x30\x30\x32\x35\x61\x66\x69\x69\x31\x30\x30\x32\x36\x61\x66\x69" +"\x69\x31\x30\x30\x32\x37\x61\x66\x69\x69\x31\x30\x30\x32\x38\x61\x66\x69\x69\x31\x30\x30\x32\x39\x61\x66\x69\x69\x31\x30\x30\x33" +"\x30\x61\x66\x69\x69\x31\x30\x30\x33\x31\x61\x66\x69\x69\x31\x30\x30\x33\x32\x61\x66\x69\x69\x31\x30\x30\x33\x33\x61\x66\x69\x69" +"\x31\x30\x30\x33\x34\x61\x66\x69\x69\x31\x30\x30\x33\x35\x61\x66\x69\x69\x31\x30\x30\x33\x36\x61\x66\x69\x69\x31\x30\x30\x33\x37" +"\x61\x66\x69\x69\x31\x30\x30\x33\x38\x61\x66\x69\x69\x31\x30\x30\x33\x39\x61\x66\x69\x69\x31\x30\x30\x34\x30\x61\x66\x69\x69\x31" +"\x30\x30\x34\x31\x61\x66\x69\x69\x31\x30\x30\x34\x32\x61\x66\x69\x69\x31\x30\x30\x34\x33\x61\x66\x69\x69\x31\x30\x30\x34\x34\x61" +"\x66\x69\x69\x31\x30\x30\x34\x35\x61\x66\x69\x69\x31\x30\x30\x34\x36\x61\x66\x69\x69\x31\x30\x30\x34\x37\x61\x66\x69\x69\x31\x30" +"\x30\x34\x38\x61\x66\x69\x69\x31\x30\x30\x34\x39\x61\x66\x69\x69\x31\x30\x30\x35\x30\x61\x66\x69\x69\x31\x30\x30\x35\x31\x61\x66" +"\x69\x69\x31\x30\x30\x35\x32\x61\x66\x69\x69\x31\x30\x30\x35\x33\x61\x66\x69\x69\x31\x30\x30\x35\x34\x61\x66\x69\x69\x31\x30\x30" +"\x35\x35\x61\x66\x69\x69\x31\x30\x30\x35\x36\x61\x66\x69\x69\x31\x30\x30\x35\x37\x61\x66\x69\x69\x31\x30\x30\x35\x38\x61\x66\x69" +"\x69\x31\x30\x30\x35\x39\x61\x66\x69\x69\x31\x30\x30\x36\x30\x61\x66\x69\x69\x31\x30\x30\x36\x31\x61\x66\x69\x69\x31\x30\x30\x36" +"\x32\x61\x66\x69\x69\x31\x30\x30\x36\x35\x61\x66\x69\x69\x31\x30\x30\x36\x36\x61\x66\x69\x69\x31\x30\x30\x36\x37\x61\x66\x69\x69" +"\x31\x30\x30\x36\x38\x61\x66\x69\x69\x31\x30\x30\x36\x39\x61\x66\x69\x69\x31\x30\x30\x37\x30\x61\x66\x69\x69\x31\x30\x30\x37\x31" +"\x61\x66\x69\x69\x31\x30\x30\x37\x32\x61\x66\x69\x69\x31\x30\x30\x37\x33\x61\x66\x69\x69\x31\x30\x30\x37\x34\x61\x66\x69\x69\x31" +"\x30\x30\x37\x35\x61\x66\x69\x69\x31\x30\x30\x37\x36\x61\x66\x69\x69\x31\x30\x30\x37\x37\x61\x66\x69\x69\x31\x30\x30\x37\x38\x61" +"\x66\x69\x69\x31\x30\x30\x37\x39\x61\x66\x69\x69\x31\x30\x30\x38\x30\x61\x66\x69\x69\x31\x30\x30\x38\x31\x61\x66\x69\x69\x31\x30" +"\x30\x38\x32\x61\x66\x69\x69\x31\x30\x30\x38\x33\x61\x66\x69\x69\x31\x30\x30\x38\x34\x61\x66\x69\x69\x31\x30\x30\x38\x35\x61\x66" +"\x69\x69\x31\x30\x30\x38\x36\x61\x66\x69\x69\x31\x30\x30\x38\x37\x61\x66\x69\x69\x31\x30\x30\x38\x38\x61\x66\x69\x69\x31\x30\x30" +"\x38\x39\x61\x66\x69\x69\x31\x30\x30\x39\x30\x61\x66\x69\x69\x31\x30\x30\x39\x31\x61\x66\x69\x69\x31\x30\x30\x39\x32\x61\x66\x69" +"\x69\x31\x30\x30\x39\x33\x61\x66\x69\x69\x31\x30\x30\x39\x34\x61\x66\x69\x69\x31\x30\x30\x39\x35\x61\x66\x69\x69\x31\x30\x30\x39" +"\x36\x61\x66\x69\x69\x31\x30\x30\x39\x37\x61\x66\x69\x69\x31\x30\x30\x39\x38\x61\x66\x69\x69\x31\x30\x30\x39\x39\x61\x66\x69\x69" +"\x31\x30\x31\x30\x30\x61\x66\x69\x69\x31\x30\x31\x30\x31\x61\x66\x69\x69\x31\x30\x31\x30\x32\x61\x66\x69\x69\x31\x30\x31\x30\x33" +"\x61\x66\x69\x69\x31\x30\x31\x30\x34\x61\x66\x69\x69\x31\x30\x31\x30\x35\x61\x66\x69\x69\x31\x30\x31\x30\x36\x61\x66\x69\x69\x31" +"\x30\x31\x30\x37\x61\x66\x69\x69\x31\x30\x31\x30\x38\x61\x66\x69\x69\x31\x30\x31\x30\x39\x61\x66\x69\x69\x31\x30\x31\x31\x30\x61" +"\x66\x69\x69\x31\x30\x31\x34\x35\x61\x66\x69\x69\x31\x30\x31\x39\x33\x61\x66\x69\x69\x31\x30\x38\x34\x36\x61\x66\x69\x69\x36\x31" +"\x32\x34\x38\x61\x66\x69\x69\x36\x31\x32\x38\x39\x61\x66\x69\x69\x36\x31\x33\x35\x32\x61\x6c\x70\x68\x61\x61\x6c\x70\x68\x61\x74" +"\x6f\x6e\x6f\x73\x61\x6d\x61\x63\x72\x6f\x6e\x61\x6e\x67\x6c\x65\x6c\x65\x66\x74\x61\x6e\x67\x6c\x65\x72\x69\x67\x68\x74\x61\x6f" +"\x67\x6f\x6e\x65\x6b\x61\x70\x70\x72\x6f\x78\x65\x71\x75\x61\x6c\x61\x72\x69\x6e\x67\x61\x63\x75\x74\x65\x61\x72\x72\x6f\x77\x62" +"\x6f\x74\x68\x61\x72\x72\x6f\x77\x64\x6f\x77\x6e\x61\x72\x72\x6f\x77\x6c\x65\x66\x74\x61\x72\x72\x6f\x77\x72\x69\x67\x68\x74\x61" +"\x72\x72\x6f\x77\x75\x70\x61\x72\x72\x6f\x77\x75\x70\x64\x6e\x61\x72\x72\x6f\x77\x75\x70\x64\x6e\x62\x73\x65\x62\x65\x74\x61\x63" +"\x61\x63\x75\x74\x65\x63\x63\x61\x72\x6f\x6e\x63\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x63\x64\x6f\x74\x61\x63\x63\x65\x6e\x74" +"\x63\x68\x69\x63\x69\x72\x63\x6c\x65\x6d\x75\x6c\x74\x69\x70\x6c\x79\x63\x6c\x75\x62\x64\x63\x61\x72\x6f\x6e\x64\x63\x72\x6f\x61" +"\x74\x64\x65\x6c\x74\x61\x64\x69\x61\x6d\x6f\x6e\x64\x64\x69\x65\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73\x65\x62\x72\x65\x76\x65" +"\x65\x63\x61\x72\x6f\x6e\x65\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x65\x6c\x65\x6d\x65\x6e\x74\x65\x6d\x61\x63\x72\x6f\x6e\x65\x6e" +"\x67\x65\x6f\x67\x6f\x6e\x65\x6b\x65\x70\x73\x69\x6c\x6f\x6e\x65\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x65\x71\x75\x69\x76" +"\x61\x6c\x65\x6e\x63\x65\x65\x73\x74\x69\x6d\x61\x74\x65\x64\x65\x74\x61\x65\x74\x61\x74\x6f\x6e\x6f\x73\x65\x78\x63\x6c\x61\x6d" +"\x64\x62\x6c\x65\x78\x69\x73\x74\x65\x6e\x74\x69\x61\x6c\x66\x65\x6d\x61\x6c\x65\x66\x72\x61\x6e\x63\x67\x61\x6d\x6d\x61\x67\x62" +"\x72\x65\x76\x65\x67\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x67\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x67\x64\x6f\x74\x61" +"\x63\x63\x65\x6e\x74\x67\x72\x65\x61\x74\x65\x72\x65\x71\x75\x61\x6c\x68\x62\x61\x72\x68\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78" +"\x68\x65\x61\x72\x74\x68\x6f\x75\x73\x65\x69\x62\x72\x65\x76\x65\x69\x6a\x69\x6d\x61\x63\x72\x6f\x6e\x69\x6e\x66\x69\x6e\x69\x74" +"\x79\x69\x6e\x74\x65\x67\x72\x61\x6c\x69\x6e\x74\x65\x67\x72\x61\x6c\x62\x74\x69\x6e\x74\x65\x67\x72\x61\x6c\x74\x70\x69\x6e\x74" +"\x65\x72\x73\x65\x63\x74\x69\x6f\x6e\x69\x6e\x76\x73\x6d\x69\x6c\x65\x66\x61\x63\x65\x69\x6f\x67\x6f\x6e\x65\x6b\x69\x6f\x74\x61" +"\x69\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69\x73\x69\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73\x69\x6f\x74" +"\x61\x74\x6f\x6e\x6f\x73\x69\x74\x69\x6c\x64\x65\x6a\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x6b\x61\x70\x70\x61\x6b\x63\x6f\x6d" +"\x6d\x61\x61\x63\x63\x65\x6e\x74\x6b\x67\x72\x65\x65\x6e\x6c\x61\x6e\x64\x69\x63\x6c\x61\x63\x75\x74\x65\x6c\x61\x6d\x62\x64\x61" +"\x6c\x63\x61\x72\x6f\x6e\x6c\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6c\x64\x6f\x74\x6c\x65\x73\x73\x65\x71\x75\x61\x6c\x6c" +"\x69\x72\x61\x6c\x6f\x6e\x67\x73\x6d\x61\x6c\x65\x6d\x69\x6e\x75\x74\x65\x6d\x75\x73\x69\x63\x61\x6c\x6e\x6f\x74\x65\x6d\x75\x73" +"\x69\x63\x61\x6c\x6e\x6f\x74\x65\x64\x62\x6c\x6e\x61\x63\x75\x74\x65\x6e\x61\x70\x6f\x73\x74\x72\x6f\x70\x68\x65\x6e\x63\x61\x72" +"\x6f\x6e\x6e\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6e\x6f\x74\x65\x6c\x65\x6d\x65\x6e\x74\x6e\x6f\x74\x65\x71\x75\x61\x6c" +"\x6e\x75\x6f\x62\x72\x65\x76\x65\x6f\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x6f\x6d\x61\x63\x72\x6f\x6e\x6f\x6d\x65\x67" +"\x61\x6f\x6d\x65\x67\x61\x74\x6f\x6e\x6f\x73\x6f\x6d\x69\x63\x72\x6f\x6e\x6f\x6d\x69\x63\x72\x6f\x6e\x74\x6f\x6e\x6f\x73\x6f\x72" +"\x74\x68\x6f\x67\x6f\x6e\x61\x6c\x6f\x73\x6c\x61\x73\x68\x61\x63\x75\x74\x65\x70\x61\x72\x74\x69\x61\x6c\x64\x69\x66\x66\x70\x65" +"\x73\x65\x74\x61\x70\x68\x69\x70\x69\x70\x72\x6f\x64\x75\x63\x74\x70\x72\x6f\x70\x65\x72\x73\x75\x62\x73\x65\x74\x70\x72\x6f\x70" +"\x65\x72\x73\x75\x70\x65\x72\x73\x65\x74\x70\x73\x69\x71\x75\x6f\x74\x65\x72\x65\x76\x65\x72\x73\x65\x64\x72\x61\x63\x75\x74\x65" +"\x72\x61\x64\x69\x63\x61\x6c\x72\x63\x61\x72\x6f\x6e\x72\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x72\x65\x76\x6c\x6f\x67\x69" +"\x63\x61\x6c\x6e\x6f\x74\x72\x68\x6f\x73\x61\x63\x75\x74\x65\x73\x63\x65\x64\x69\x6c\x6c\x61\x73\x63\x69\x72\x63\x75\x6d\x66\x6c" +"\x65\x78\x73\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x73\x65\x63\x6f\x6e\x64\x73\x69\x67\x6d\x61\x73\x6d\x69\x6c\x65\x66\x61" +"\x63\x65\x73\x70\x61\x64\x65\x73\x75\x6d\x6d\x61\x74\x69\x6f\x6e\x73\x75\x6e\x74\x61\x75\x74\x62\x61\x72\x74\x63\x61\x72\x6f\x6e" +"\x74\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x74\x68\x65\x74\x61\x74\x6f\x6e\x6f\x73\x75\x62\x72\x65\x76\x65\x75\x68\x75\x6e" +"\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x75\x6d\x61\x63\x72\x6f\x6e\x75\x6e\x64\x65\x72\x73\x63\x6f\x72\x65\x64\x62\x6c\x75\x6e\x69" +"\x30\x30\x41\x30\x75\x6e\x69\x30\x30\x41\x44\x75\x6e\x69\x30\x32\x31\x41\x75\x6e\x69\x30\x32\x31\x42\x75\x6e\x69\x30\x32\x43\x39" +"\x75\x6e\x69\x30\x33\x38\x37\x75\x6e\x69\x30\x33\x39\x34\x75\x6e\x69\x30\x33\x41\x39\x75\x6e\x69\x30\x33\x42\x43\x75\x6e\x69\x30" +"\x33\x43\x32\x75\x6e\x69\x30\x34\x30\x30\x75\x6e\x69\x30\x34\x30\x44\x75\x6e\x69\x30\x34\x35\x30\x75\x6e\x69\x30\x34\x35\x44\x75" +"\x6e\x69\x30\x34\x39\x32\x75\x6e\x69\x30\x34\x39\x33\x75\x6e\x69\x30\x34\x39\x36\x75\x6e\x69\x30\x34\x39\x37\x75\x6e\x69\x30\x34" +"\x39\x38\x75\x6e\x69\x30\x34\x39\x39\x75\x6e\x69\x30\x34\x39\x41\x75\x6e\x69\x30\x34\x39\x42\x75\x6e\x69\x30\x34\x39\x43\x75\x6e" +"\x69\x30\x34\x39\x44\x75\x6e\x69\x30\x34\x41\x30\x75\x6e\x69\x30\x34\x41\x31\x75\x6e\x69\x30\x34\x41\x32\x75\x6e\x69\x30\x34\x41" +"\x33\x75\x6e\x69\x30\x34\x41\x41\x75\x6e\x69\x30\x34\x41\x42\x75\x6e\x69\x30\x34\x41\x45\x75\x6e\x69\x30\x34\x41\x46\x75\x6e\x69" +"\x30\x34\x42\x30\x75\x6e\x69\x30\x34\x42\x31\x75\x6e\x69\x30\x34\x42\x32\x75\x6e\x69\x30\x34\x42\x33\x75\x6e\x69\x30\x34\x42\x36" +"\x75\x6e\x69\x30\x34\x42\x37\x75\x6e\x69\x30\x34\x42\x38\x75\x6e\x69\x30\x34\x42\x39\x75\x6e\x69\x30\x34\x42\x41\x75\x6e\x69\x30" +"\x34\x42\x42\x75\x6e\x69\x30\x34\x43\x30\x75\x6e\x69\x30\x34\x43\x42\x75\x6e\x69\x30\x34\x43\x43\x75\x6e\x69\x30\x34\x44\x38\x75" +"\x6e\x69\x30\x34\x45\x32\x75\x6e\x69\x30\x34\x45\x33\x75\x6e\x69\x30\x34\x45\x38\x75\x6e\x69\x30\x34\x45\x39\x75\x6e\x69\x30\x34" +"\x45\x45\x75\x6e\x69\x30\x34\x45\x46\x75\x6e\x69\x32\x30\x33\x45\x75\x6e\x69\x32\x30\x41\x46\x75\x6e\x69\x32\x31\x32\x36\x75\x6e" +"\x69\x32\x32\x31\x35\x75\x6e\x69\x32\x32\x31\x39\x75\x6e\x69\x32\x32\x32\x37\x75\x6e\x69\x32\x32\x32\x38\x75\x6e\x69\x32\x32\x39" +"\x35\x75\x6e\x69\x32\x35\x41\x31\x75\x6e\x69\x6f\x6e\x75\x6e\x69\x76\x65\x72\x73\x61\x6c\x75\x6f\x67\x6f\x6e\x65\x6b\x75\x70\x73" +"\x69\x6c\x6f\x6e\x75\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x75\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73" +"\x69\x73\x74\x6f\x6e\x6f\x73\x75\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x75\x72\x69\x6e\x67\x75\x74\x69\x6c\x64\x65\x77\x61" +"\x63\x75\x74\x65\x77\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x77\x64\x69\x65\x72\x65\x73\x69\x73\x77\x67\x72\x61\x76\x65\x78\x69" +"\x79\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x79\x67\x72\x61\x76\x65\x7a\x61\x63\x75\x74\x65\x7a\x64\x6f\x74\x61\x63\x63\x65\x6e" +"\x74\x7a\x65\x74\x61\x31\x2e\x30\x30\x28\x55\x52\x57\x29\x2b\x2b\x2c\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x32\x30\x31\x34\x20" +"\x62\x79\x20\x28\x55\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69\x67\x6e\x20\x26\x20\x44\x65\x76\x65\x6c\x6f\x70\x6d\x65\x6e\x74\x43" +"\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x28\x55\x52\x57\x29\x2b\x2b\x2c\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x32\x30\x31\x34\x20" +"\x62\x79\x20\x28\x55\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69\x67\x6e\x20\x26\x20\x44\x65\x76\x65\x6c\x6f\x70\x6d\x65\x6e\x74\x4e" +"\x69\x6d\x62\x75\x73\x20\x52\x6f\x6d\x61\x6e\x20\x42\x6f\x6c\x64\x4e\x69\x6d\x62\x75\x73\x20\x52\x6f\x6d\x61\x6e\x00\xd4\x02\x00" +"\x01\x00\x0a\x00\x13\x00\x1b\x00\x3e\x00\x98\x00\xd7\x01\x1e\x01\x55\x01\x6c\x01\x79\x01\x84\x01\x8b\x01\x95\x01\xa7\x02\x23\x02" +"\x91\x02\xd8\x03\x16\x03\x19\x03\x9a\x04\x0c\x04\x4d\x04\x82\x04\xbb\x04\xdd\x04\xf9\x05\x04\x05\x09\x05\x17\x05\x24\x05\x2f\x05" +"\x36\x05\x3e\x05\x48\x05\x51\x05\x58\x05\x60\x05\x65\x05\x6b\x05\xcd\x05\xd7\x05\xf1\x05\xf5\x06\x00\x06\x1a\x06\x24\x06\x3e\x06" +"\x4d\x06\x64\x06\x78\x06\x7d\x06\x96\x06\xa8\x06\xb4\x06\xd1\x06\xe2\x06\xeb\x06\xee\x06\xfa\x07\x03\x07\x0e\x07\x16\x07\x27\x07" +"\x2f\x07\x32\x07\x3b\x07\x4a\x07\x59\x07\x62\x07\x6b\x07\x72\x07\x80\x07\x88\x07\x94\x08\x14\x08\x5a\x08\xca\x09\x08\x09\x73\x09" +"\x78\x09\xdf\x0a\x0e\x0a\x5a\x0a\x9f\x0a\xfd\x0b\x28\x0b\x7f\x0b\xd5\x0c\x27\x0c\x70\x0c\xb0\x0c\xf0\x0d\x1e\x0d\x34\x0d\x4b\x0d" +"\x68\x0d\x9d\x0d\xa8\x0d\xd2\x0e\x00\x0e\x2e\x0e\x50\x0e\x65\x0e\x78\x0e\x90\x0e\x95\x0e\xa8\x0e\xc6\x0e\xe6\x0e\xf5\x0f\x1f\x0f" +"\x30\x0f\x58\x0f\x70\x0f\x7d\x0f\xa1\x0f\xbc\x0f\xdf\x0f\xef\x10\x11\x10\x19\x10\x3b\x10\x4d\x10\x6c\x10\x80\x10\x98\x10\xb4\x10" +"\xd0\x10\xec\x11\x07\x11\x11\x11\x18\x11\x32\x11\x4b\x11\x64\x11\x75\x11\x83\x11\x8e\x11\xa6\x11\xbe\x11\xd5\x11\xec\x12\x03\x12" +"\x1a\x12\x29\x12\x3e\x12\x4b\x12\x4f\x12\x5d\x12\x69\x12\x7e\x12\x93\x12\xa8\x12\xbd\x12\xd1\x12\xe5\x12\xf2\x13\x00\x13\x14\x13" +"\x26\x13\x39\x13\x4c\x13\x5a\x13\x68\x13\x7b\x13\x8e\x13\xa0\x13\xb2\x13\xc3\x13\xd4\x13\xd9\x13\xe3\x13\xf3\x14\x03\x14\x13\x14" +"\x23\x14\x33\x14\x43\x14\x47\x14\x56\x14\x65\x14\x72\x14\x80\x14\x8e\x14\x9c\x14\xa8\x14\xaf\x14\xbc\x14\xc9\x14\xd6\x14\xe3\x14" +"\xf0\x14\xf8\x15\x04\x15\x10\x15\x1c\x15\x28\x15\x34\x15\x40\x15\x4c\x15\x58\x15\x64\x15\x6f\x15\x7a\x15\x85\x15\x90\x15\x9b\x15" +"\xa6\x15\xb1\x15\xbc\x15\xc7\x15\xd0\x06\x56\x8e\x7c\x9c\x8d\xc3\x08\x0b\x07\x8d\x53\x7c\x7a\x56\x88\x08\x0b\x15\xc3\x06\xf7\x22" +"\xe3\x05\x0b\x76\x1d\x58\x96\xa1\x78\xbc\x1b\xb6\xaa\x9b\xb4\xb1\x1f\xfb\x57\xc4\x15\x6c\x70\x77\x7f\x73\x1b\x6d\x76\xa6\xb3\xc5" +"\xb5\xb5\xdb\xa0\x1f\x0b\xf9\x51\xf9\x38\x15\xfb\x70\x72\x06\xd8\x86\xa0\x76\x42\x1a\xfb\xc5\x07\xfb\x28\x53\x46\xfb\x0b\x24\x5f" +"\xc6\xf7\x1c\x1e\xf7\xe2\x07\x8d\xd8\x99\x98\xdc\x8d\x08\xa4\xfb\xe6\x72\x07\xd0\x85\x96\x7e\x8d\x42\x08\xfb\xe2\x07\x29\xa0\x5a" +"\xc8\x5f\x1e\x68\xbb\xcb\x79\xd4\x1b\xd5\xd1\xa1\xb0\xb6\x1f\xb8\xb1\xa5\xd7\xe8\x1a\xf7\xd3\x07\x8c\xc7\x99\x9b\xca\x94\x08\x0b" +"\xf8\x26\xf7\x11\x15\xbe\x1d\xf7\x90\x06\x85\xdf\x7c\xba\x6b\xb1\x08\xb2\x6b\x5c\x9f\x53\x1b\xfb\x10\x37\x28\xfb\x26\xfb\x26\xdd" +"\x2b\xf7\x10\xdc\xbc\xaa\xe9\xcc\x1f\xfb\x9a\xf7\x3f\x15\xf7\x0c\x8e\x9d\xb3\xbc\x1b\xba\x9a\x69\xfb\x03\x8d\x1f\x7c\x07\x0b\xf8" +"\x1d\xf9\x47\x15\xfb\x66\xfb\x28\xfb\x27\xfb\x65\xfb\x63\xf7\x27\xfb\x27\xf7\x63\xf7\x63\xf7\x27\xf7\x27\xf7\x64\xf7\x60\xfb\x28" +"\xf7\x2b\xfb\x5e\x1f\x8a\x6a\x15\xf7\x02\xcb\xfb\x0d\xfb\x64\xfb\x62\x4e\xfb\x01\xfb\x08\xfb\x07\x4d\xf7\x01\xf7\x5f\xf7\x6c\xca" +"\xf7\x08\xf7\x09\x1f\x0b\xf7\x8f\xf8\x6d\x15\xfb\x14\x29\x22\xfb\x1c\xfb\x23\xe9\x24\xf7\x18\xf7\x16\xea\xf2\xf7\x20\xf7\x21\x2b" +"\xf2\xfb\x15\x1f\x8c\x6c\x15\xc5\x9e\x54\xfb\x38\xfb\x2e\x77\x57\x51\x50\x77\xbe\xf7\x27\xf7\x43\x9d\xbf\xc9\x1f\x0b\x15\xfb\x1d" +"\xf7\x31\x05\x9d\x7b\x78\x95\x78\x1b\x71\x76\x77\x72\x77\x96\x7d\xa8\x79\x46\x1d\xf7\x93\x63\x1d\xb7\x83\x93\xcb\x1d\xf7\x83\x07" +"\x0b\x15\xf1\x1d\xa8\xae\xaf\x6d\xa9\x68\x1f\x0e\x15\xc3\x06\xf7\x22\x59\x1d\xc0\x8d\x08\x9e\x9f\xfb\xd0\xb5\x1d\x0b\x5d\x65\x65" +"\x5d\x5b\xaf\x66\xba\xbb\xb1\xaf\xba\xbb\x65\xb1\x5c\x1f\x0b\xfa\x69\xf9\x38\x15\xfb\x4a\x72\x06\xc1\x88\x9a\x81\x6c\x1a\x7e\x88" +"\x7c\x87\x7d\x1e\xfb\x04\xfb\xeb\xfb\x00\xf7\xe4\x05\x80\xad\x88\x97\x95\x1a\xa3\x9a\x94\xb7\x8e\x1e\x8d\x90\x8b\x8c\x91\x1f\xa4" +"\xfb\xcc\x72\x07\xb4\x89\x9f\x82\x96\x73\xae\x2b\x18\xfb\x0a\xfb\xc8\xfb\x0c\xf8\x00\x05\x86\x9c\x89\x92\x94\x1a\xa8\x97\x94\xbf" +"\x8f\x1e\xa4\xfb\xba\x72\x07\xb5\x85\x95\x82\x9c\x5a\xf7\x68\xfc\xee\x18\xa7\x06\xf7\x4e\xf8\x71\xf7\x3f\xfc\x71\x05\xa6\x06\xf7" +"\x5c\xf8\xee\x98\xb3\xa1\xa0\xad\x8e\x19\x0b\xf7\xe8\xf7\xda\x15\xf7\x25\x75\x07\x7c\x85\x85\x86\x7e\x1b\x85\x82\x8d\x90\x7b\x1f" +"\x96\x6b\x74\x8f\x74\x1b\x30\x49\x4d\x37\x49\xb4\x5d\xf0\x60\x1f\xd0\x6d\xa6\x72\x6b\x1a\x64\x6d\x71\x5e\x45\x5d\xb8\xe2\x76\x1e" +"\x6f\xfb\x39\xa4\x06\xa1\x96\x91\x91\x94\x1b\x90\x93\x89\x87\x95\x1f\x7f\xa8\xbd\x80\xa8\x1b\xe6\xca\xc9\xe5\xd2\x65\xb6\x27\xb5" +"\x1f\x47\xa8\x6f\xa4\xad\x1a\xac\xa7\xa4\xb1\xa6\xa5\x80\x76\xa1\x1e\xa0\x77\x96\x79\x9a\x5f\x08\x0b\x9b\x16\xf7\x77\xa4\x06\x3f" +"\x93\x79\x9e\x8a\xd3\x08\xf8\x26\x07\xf8\x53\xfc\xb4\x05\xa7\xf8\xe1\x06\xc4\x98\x99\xcc\x94\x1e\xa4\xfb\x6b\x72\x07\xd4\x84\x9f" +"\x76\x44\x1a\xfb\xc5\x07\xfb\xf1\xf8\x41\x05\xfb\x67\x72\x06\x9f\x9c\x7c\x52\xbb\x1f\xfc\x6e\x07\x8a\x50\x7b\x7e\x44\x83\x08\x0b" +"\xf9\x12\xf7\x77\x15\x6e\x06\x6a\x3d\x77\x6c\x68\x6b\x08\x66\x62\x53\x79\x3d\x1b\x4e\x79\x98\xb6\x1f\xf8\x6c\x07\x8d\xd8\x99\x98" +"\xe0\x8d\x08\xa4\xfb\xf1\x72\x07\xcd\x88\x9e\x7b\x8c\x57\x08\xfc\x78\x07\x8a\x57\x7d\x80\x44\x83\x08\x72\xf8\xd6\x07\x0b\x87\x1d" +"\x0e\xf8\x78\xf8\x6f\x15\xf7\x6d\x6d\x07\x70\x83\x85\x84\x79\x1b\x82\x7f\x8e\x92\x76\x1f\x9c\x5d\x6b\x91\x64\x1b\xfb\x1c\x38\x3e" +"\xfb\x13\x34\xbf\x4c\xf7\x0b\x52\x1f\xce\x6b\x05\xe3\x61\xa3\x71\x56\x1a\x46\x5a\x5f\x3e\x50\x5a\xa4\xbc\x65\x1e\x70\xb0\x7d\xac" +"\x7a\xd1\x08\x6e\xfb\x8b\xa8\x06\xa5\x91\x93\x93\x9b\x1b\x93\x96\x88\x84\xa1\x1f\x7a\xbc\xb0\x84\xb7\x1b\xf7\x28\xef\xe0\xf7\x12" +"\xd6\x5e\xd6\x4a\xab\x1f\xfb\x27\xd4\x05\x3a\xb3\x75\xa4\xbb\x1a\xc9\xb5\xb1\xcf\xb8\xb5\x78\x66\xaf\x1e\xad\x68\x9b\x6e\x9f\x4a" +"\x08\x0b\xf9\x5f\xa4\x15\x79\x7e\x90\x99\x81\x1f\xfb\x5d\xf7\xb1\xc6\x9e\xa4\x97\xa7\xa5\x19\xa8\xa6\x9b\xb3\xb8\x1a\xf7\x08\x28" +"\xc9\xfb\x4b\x1e\xfb\xd6\x72\x06\xd3\x87\x99\x7d\x8d\x41\x08\xfc\x4e\x07\x89\x41\x82\x81\x3e\x83\x08\x72\xf7\xe6\xa4\x07\x3f\x94" +"\x81\x96\x89\xd3\x08\xf7\x58\xa6\x07\xf7\x63\xfb\xcd\x05\xf7\x61\x06\xfc\x4b\xf8\xec\x15\x91\x8f\x9a\x8e\x91\x1e\x95\x91\x9b\x90" +"\xa4\x1b\xe7\xb0\x60\x22\x4b\x7c\x64\x6b\x76\x1f\x71\x7a\x69\x84\x3f\x8a\x08\x0b\xf7\xbb\xa3\x15\x4e\x8e\x80\x98\x8a\xca\x08\xf7" +"\x51\x07\xbf\xa7\xb6\xac\x93\x94\x84\x7b\x96\x1e\x70\x9e\x9a\x82\xa5\x1b\xb0\xa5\xa7\xb1\xb9\x69\xac\x5c\x59\x65\x71\x47\x5c\x1f" +"\xdd\xfb\x51\x73\x07\xb5\x86\x96\x7f\x42\x1d\x81\x80\x60\x84\x08\x73\xf7\x9e\x07\x0b\xf8\x30\xf7\x01\x15\x61\x66\x71\x7d\x62\x1b" +"\x34\x54\xe2\xf7\x1c\xf2\xab\xca\xbf\x9b\x9a\x83\x80\x91\x1f\x90\x82\x8b\x8b\x61\x62\x1d\x33\xfb\x1c\x27\x21\xfb\x24\xfb\x1f\xe4" +"\x29\xf7\x11\xd8\xc3\xaa\xd5\xc5\x1f\x0b\xf9\x0e\xf7\x85\x15\x71\x06\x5e\xfb\x3a\x54\x66\xfb\x65\x88\x08\x41\x06\xf8\x0f\xf9\x05" +"\x05\x9b\xfc\xa0\x07\x76\xfb\x62\x05\xa7\x06\xbb\xf7\x1f\xb8\xaa\xf7\x27\x89\x97\x8c\xad\x8c\xb0\x8c\xfc\x12\xfd\x05\x18\x7b\xf8" +"\xd8\x07\x0b\x15\x51\x5a\x5a\x53\x4f\xba\x5b\xc6\xc7\xba\xba\xc6\xc5\x5b\xbc\x44\x1d\x6f\x6b\x6c\x70\x71\x6a\x6c\x71\xa5\xab\xab" +"\xa6\xa6\xaa\x1f\x0e\xf7\x0e\x07\xc2\x99\xa1\xaf\x9d\x96\x84\x7f\x86\x88\x85\x85\x81\x1e\x82\x7c\x87\x81\x80\x1a\x6c\xa5\x73\xad" +"\x0b\xd3\x1d\x8f\x7e\x9b\xb0\x1a\xf7\x9f\x07\x0b\xf9\x44\xd6\x1d\x0b\x9f\x93\x95\xa2\x1a\xa6\x78\x9c\x6e\x78\x7a\x82\x78\x0b\x77" +"\x07\xa8\x8a\x9b\x76\x89\x66\x08\xfb\xba\x07\x0b\xa0\xa5\x8e\x08\x9f\xfb\x61\x77\x07\xa8\x0b\x08\xa8\xf7\x43\x71\x06\x0b\x3a\x08" +"\xa8\xf7\x31\x71\x06\x0b\x07\x89\xb0\x9b\xa0\xa9\x8c\x08\x9f\x0b\x8c\x61\x08\xfb\xba\x07\x8a\x61\x0b\x08\x72\xf7\xe5\xa4\x07\x0b" +"\x51\x1f\x8a\x5b\x15\xab\xa6\x0b\x82\x78\x7a\x1e\x0e\x1f\xf7\x22\x33\x05\x0e\xf9\x25\xf7\x2c\x15\x50\x4d\x6b\x73\x5a\x78\x08\x7f" +"\x6e\x6a\x85\x6f\x1b\x49\x4c\xae\xbf\x6e\x1f\x6e\xc0\x7d\xd2\xf0\x1a\xf7\x63\xcb\xf7\x02\xf7\x0c\xba\xb5\x79\x65\xb7\x1e\xb6\x65" +"\xa3\x68\xad\x40\x08\xa4\xf7\x7e\x70\x06\x67\x7c\x82\x81\x76\x1b\x82\x7d\x8f\x95\x75\x1f\xa3\x52\x5a\x96\x5b\x1b\xfb\x5c\xfb\x29" +"\xfb\x2d\xfb\x61\xfb\x63\xf7\x26\xfb\x25\xf7\x64\xf7\x07\xcf\xae\xf7\x03\xf0\x1f\x0b\xf8\x95\xa4\x15\x7e\x1d\xf7\xf9\x07\x0b\x15" +"\x58\x1d\x9f\xfb\xd0\x77\x9e\x06\xc0\x89\x9a\x78\x89\x51\x08\xfc\x67\x21\x1d\x78\x77\xf7\xd0\x06\x0b\x15\xf3\x8f\x1d\xf8\xa1\x07" +"\x89\xc5\x9a\x9e\x2c\x1d\x06\x0e\xe0\x1d\x6f\x1b\x80\x89\x8c\x96\x72\x1f\x63\x9d\x05\x98\x6e\x73\x91\x76\x1b\x4e\x67\x64\x35\x79" +"\x1f\x0e\xb0\x1d\xa8\xae\xaf\x6d\xa9\x68\x1f\x0e\xcf\x86\x99\x7c\x8d\x43\x08\xfc\x4e\x07\x8a\x4d\x7d\x75\x5e\x87\x08\x88\x81\x89" +"\x89\x80\x1f\xf7\x8a\x0b\x22\x1d\xac\x9f\x92\x95\xa2\x1a\xa5\x78\x9d\x6e\x78\x60\x1d\xf7\x11\xf8\x35\x15\x5d\x65\x65\x5d\x5b\xaf" +"\x66\xba\xbc\xb0\xaf\xbb\xb9\x65\xb2\x5c\x1f\x0e\x77\x98\x06\xc0\x89\x9b\x78\x89\x51\x08\xfb\x27\x07\x28\xc4\x5a\xf7\x06\xc4\x0b" +"\xa3\x1d\xed\x05\x0e\x2d\x08\xa1\xf7\x4a\xfc\x9b\x77\x9d\x06\xc1\x89\x9a\x79\xeb\x1d\x55\x88\x08\x79\x77\xf8\xa7\x06\x0b\xfb\x49" +"\x54\x90\x77\x05\x8e\x93\x90\x8c\x8e\x1b\xa3\x96\x77\x5f\x1f\x0b\xfb\x54\x73\x07\xb9\x82\x91\x85\x8c\x60\x08\x0b\x95\x95\x1e\xa1" +"\xa1\xa3\x97\xa2\x1b\xae\x9c\x70\x53\x1f\xfb\x86\x07\x8a\x65\x7e\x7b\x6a\x88\x08\x73\xf7\x7f\x07\x0b\x1a\xca\x67\xb5\x55\x5d\x6e" +"\x6e\x5e\x60\xa5\x6f\xb3\x8f\xe3\x1d\x0b\x78\x61\x1d\x9e\xc0\x8d\x08\x9e\x0b\xc5\x1d\x0e\xfb\x52\x73\x07\xac\x8a\x9c\x78\x8c\x65" +"\x08\x0b\x06\xa8\x8c\x9c\x75\x89\x66\x08\x0b\x06\x38\x68\x84\x72\x66\x1f\x4a\x60\x69\x0b\x07\x66\x8d\x7b\x75\x6d\x1b\x0b\xbe\xba" +"\xa8\xb9\xa4\x1e\x75\x99\x86\x89\x8a\x8a\x83\x87\x19\x81\x0b\x1e\xad\xa6\xad\x9c\xb3\x1b\x0e\x7a\x45\x1d\x20\x1d\xf8\x67\x07\x89" +"\xc5\x9a\x0b\x1a\x59\x8c\x9c\x75\xb1\x1b\xb5\xa5\xa3\xb2\xc9\x48\xbb\x0b\xa3\x15\x69\x8f\x7e\x9a\xb1\x1a\xf8\x10\xfb\x54\x73\x07" +"\x0b\x15\xa7\x8f\x9e\x9e\xa5\x1b\x98\x0b\x52\x5f\xc4\xfb\xe1\x06\x8a\x5f\x0b\x77\x9e\x06\xbf\x89\x9b\x0b\x8b\x8c\x91\x1e\x8c\x8e" +"\x8d\x8b\x8d\x1b\x96\x93\x82\x0b\x15\x8d\x95\x91\xae\x05\x9d\x0b\x65\x77\x7b\x7d\x76\x1b\x6f\x80\x9c\xb3\x1f\x0b\xf7\xe0\xf7\x97" +"\x15\xee\xfb\x49\x05\x94\x7c\x8d\x84\x82\x1a\x7b\x7b\x80\x70\x1e\x7c\x77\xf7\xb9\x9f\x7f\x06\x71\x89\x6a\xb0\x5f\xda\xfb\x23\xf7" +"\x91\x18\xea\xf7\x1e\xcc\xe7\xa3\x9d\xc9\x92\x19\x9f\xfb\x75\x77\x97\x07\xaa\xa3\x77\x72\x7a\x83\x78\x7b\x74\x1f\x37\xfb\x0b\x3b" +"\xf7\x26\x05\x7c\xa8\x87\x95\x94\x1a\x9c\x9c\x97\xa4\x1e\x9c\x9f\xfb\xc1\x77\x06\xbd\x88\xa7\x6f\xc5\x23\xf7\x0b\xfb\x6b\x18\xfb" +"\x05\xfb\x37\x05\x3d\x55\x65\x6c\x63\x1b\x81\x77\xf7\x79\x9f\x78\x06\x66\x74\x9a\xa4\x98\x91\x9a\x9a\xa1\x1f\x0e\xf7\xbb\x15\x9f" +"\xa6\xf7\x1a\xfb\x7e\x05\x99\x73\x91\x7d\xcc\x1d\x84\x91\x68\xc8\xfb\x65\xf7\xf5\x18\xcc\xdc\x05\xec\xd9\xad\xa2\xd3\x1b\x9f\xfb" +"\x7f\xa7\x1d\x9d\xc0\x8d\x08\x93\x9f\xfb\xc5\x77\x9e\x06\xc0\x89\x9a\x79\x89\x53\x08\xfc\x6a\x21\x1d\x78\x77\xf7\xc5\x9f\x83\x20" +"\x1d\x0b\xf8\x95\xf8\x61\x15\xfb\x6a\x74\x06\xa9\x86\x9c\x87\x90\x88\x08\x8f\x88\x8e\x85\x86\x1a\x81\x81\x79\x80\x80\x1e\xfb\x14" +"\xfb\x14\x05\xf8\x43\xfb\x4f\x73\x07\xab\x8a\x9a\x79\x8c\x64\x08\xfc\x92\x07\x8a\x63\x7b\x78\x6c\x8a\x08\x73\xf7\x83\xa3\x07\x5c" +"\x92\x87\x91\x8a\xba\x08\xf7\x06\x07\xa2\xa3\xea\xfb\x1a\x05\x9d\x72\x91\x7f\x83\x1a\x7f\x7d\x85\x6f\x8a\x1e\x73\xf7\x7e\xa3\x07" +"\x80\x86\x8e\x97\x82\x1f\xfb\x56\xf7\xa0\xef\xf4\xa5\x9d\xca\x93\x19\x0b\x9e\x1d\xe0\xf7\x0d\x1a\xf7\x66\xca\xf7\x02\xf7\x0d\xba" +"\xb5\x79\x65\xb6\x1e\xb7\x65\xa2\x68\xae\x40\x08\xa4\xf7\x7e\x70\x06\x67\x7c\x82\x81\x76\x1b\x82\x7d\x8f\x95\x75\x1f\xa3\x51\x5b" +"\x96\x5a\x1b\xfb\x5b\xfb\x29\xfb\x2d\xfb\x62\xfb\x63\x88\x1d\x0b\xf7\xbe\xf7\x55\x15\x50\xf7\x21\x05\x7e\xab\x86\x9e\x9a\x1a\x9f" +"\x96\x97\x9e\x1e\x94\x9f\xfb\x74\x77\x06\xac\x83\x92\x81\xb6\xfb\x01\xf7\x09\xfb\xb0\x18\x6e\x40\x05\x66\x7c\x7d\x79\x7d\x1b\x84" +"\x86\x90\x92\x1f\x92\x07\x8c\x90\x8b\x8f\x8e\x1a\xa8\x74\xa1\x6e\x69\x74\x72\x67\x62\xaf\x6a\xba\xba\xb1\xad\xcb\xa3\x1e\xf7\x1d" +"\xf8\x05\xb8\xf7\x0b\x90\x92\xb0\x8c\x19\x9f\xfb\x24\x77\x97\x07\x9e\x99\x7e\x78\x7a\x85\x6e\x81\x6f\x1f\x0b\xf7\xa4\x71\x1d\x0b" +"\x15\xfb\x1f\x06\x71\x3a\x05\xd3\x65\x6b\xa1\x49\x1b\xfb\x14\x2d\xfb\x01\xfb\x28\xfb\x1a\xd6\x34\xf7\x06\xda\xcb\xb0\xd0\xb4\x1f" +"\x94\x63\x92\x78\x9b\x76\x08\x7c\x96\x96\x81\x93\x1b\x8e\x91\x8d\x8e\x92\x1f\xec\xb3\x80\xaa\x05\x87\x7f\x85\x8a\x83\x1b\x61\x6b" +"\xb0\xd4\x79\x1f\xfb\x02\x9d\x15\x83\x67\x70\x4c\x79\x71\x08\x7a\x80\x75\x7f\x7a\x1b\x5f\x77\xbf\xf7\x04\xf7\x1f\xab\xde\xc2\xb2" +"\xa5\x61\xfb\x08\xac\x1f\x0e\xf7\x33\x15\xf8\x28\x07\x89\xc5\x9a\x9e\x2c\x1d\x77\xf7\xd0\x9f\x78\x06\x57\x8e\x7c\x9b\x8c\xbf\xf7" +"\x8d\xf8\x32\x18\xfc\x2d\x96\x1d\x9f\xfb\xcf\x77\x9e\x06\xbc\x8a\x9e\x77\x89\x5c\x08\x0b\xf8\x6c\xf7\x60\x15\xfb\x4c\xf8\x5e\x05" +"\xfb\x91\x77\x9e\x06\xc0\x89\x9a\x78\x89\x51\x08\xfc\x67\x21\x1d\x78\x77\xf7\x5f\x9f\x7e\x06\x51\x8c\x7a\x9c\x8e\xc5\x08\xf8\x9e" +"\x07\xf7\x91\xfc\xfe\x05\x9c\x06\xf7\x95\xf8\xe5\x05\xfc\x85\x07\x8d\x53\x7b\x7a\x57\x88\x08\x71\x77\xf7\xd7\xb3\x1d\x9f\xfb\x84" +"\x06\x0e\xf7\xb0\xf7\xd3\x15\xa6\x06\xb6\xa5\x77\x5a\x9f\x1f\x94\x75\x8f\x79\x72\x1a\x83\xa2\xf7\xd7\x74\x07\x82\x2c\x6a\x5d\x4f" +"\x89\x08\x70\xf7\xa3\xf7\x06\x06\xe5\x88\xbf\x58\x95\x53\x1d\xab\xf7\x5f\x05\x72\x06\x74\xfb\x03\x44\x53\xfb\x09\x8c\x08\x65\x06" +"\x5e\x7c\x9d\xc0\x8d\x1f\x0b\xf8\x05\xf7\x2b\x15\x43\x7b\x65\x63\x56\x1b\x57\x68\xb7\xcb\xa0\x8e\x9b\x93\xa0\x1f\x78\xa9\xa5\x82" +"\xa7\x1b\xb2\xa6\xa1\xa9\xa7\x74\x9e\x69\x6f\x73\x85\x7d\x69\x1f\x7e\xa0\x86\x9a\x9c\x1a\xb0\xab\xa5\xb9\xb4\xa8\x83\x75\xb0\x1e" +"\x9e\xe6\x05\x9d\x54\x6a\x91\x5a\x1b\xfb\x01\x45\x5d\x45\x5f\xa2\x6b\xc0\x6f\x1f\x4c\x6c\x70\x68\x56\x1a\x3d\xcb\x59\xf0\xf3\xcc" +"\xbf\xf1\xa1\x1e\x0b\x15\x66\x8d\x7e\x9a\x8c\xb3\x08\xf7\x8f\x07\xe1\x56\xc2\x39\x4f\x5d\x6f\x50\x66\x1e\xd6\xfb\x53\x73\x07\xb7" +"\x84\x93\x82\x8c\x60\x08\xfb\xba\x3a\x1d\x8e\x92\x96\x56\x1d\x0b\xf8\x6d\xcb\x15\x81\x81\x05\x88\x88\x88\x8a\x86\x1b\x7d\x84\x93" +"\x9c\x1f\xf7\x99\x07\xe0\x3f\xbf\xfb\x0e\xfb\x05\x3f\x58\x40\x61\xa3\x73\xb4\xb3\xa7\xa3\xad\x99\x86\x98\x7e\x9b\x1e\x82\x95\x88" +"\x91\x91\x1a\xa0\xa6\x9b\xaf\xc6\xa4\x70\x4e\x1e\x42\x07\xfb\x0b\x67\x5a\x78\x66\x71\x08\x5f\x6d\x77\x69\x60\x1a\x4e\xb9\x5e\xcc" +"\xc4\xb9\x9f\xbd\xc2\x1e\x0b\xf8\x22\xf7\x0e\x15\x5c\x64\x6d\x79\x61\x1b\x65\x6e\x9c\xae\x77\x1f\x78\xaa\x84\xac\x87\xce\x08\xf7" +"\x8b\x06\x85\xdc\x7c\xba\x6c\xb1\x08\xb0\x6b\x5e\x9f\x54\x1b\xfb\x0d\x38\x2a\xfb\x23\xfb\x23\xdb\x2d\xf7\x0e\xda\xbb\xaa\xe7\xcb" +"\x1f\xfb\x95\xf7\x3b\x15\xf7\x0a\x8e\x9c\xb2\xbc\x1b\xa7\x9d\x7c\x6c\x93\x1f\x8f\x78\x8e\x71\x8c\x58\x08\x7c\x07\x0b\xf8\x2f\xf7" +"\x69\x15\xbc\xfb\x06\x05\x93\x76\x8f\x7f\x82\x1a\x71\x79\x80\x60\x1e\x72\x77\xf7\xc2\x9f\x82\x06\x73\x8d\x84\x92\x7b\xae\xfb\x95" +"\xf8\xf0\x18\x6f\x06\xfb\x61\xfc\xb8\x76\x4a\x6d\x6a\x64\x89\x19\x77\xf7\x65\x9f\x75\x07\x68\x70\x9e\xa3\x94\x8e\x98\x93\xa1\x1f" +"\xb1\xf5\x05\xe2\xf7\x82\x15\xdf\xfb\x5e\x05\xfb\x31\x06\x0b\xf7\x90\xf8\x5d\x15\xfb\x09\x35\x27\xfb\x1b\x47\xa3\x4d\xb5\x60\x1f" +"\x67\xae\xc0\x74\xb8\x1b\xc0\xc4\xa5\xb6\xb0\x1f\xb0\xb4\x9f\xc8\xce\x1a\xf7\x17\x35\xed\xfb\x06\x1e\x8a\x65\x15\xa2\x9f\x7a\x70" +"\x94\x1f\x95\x70\x8e\x69\x4c\x1a\xfb\x3b\x79\x53\x55\x62\x79\xba\xf4\xf7\x4b\x9b\xc3\xbd\x1e\x0b\xbf\x96\xa2\x94\xa3\x9f\x08\xac" +"\xa4\x9f\xb6\xb5\x1a\xc2\x6b\xbc\x51\xaa\x1e\xa2\x60\x5e\x94\x43\x1b\x4f\xfb\xe9\x15\xa3\x06\xe9\xba\x5c\x2c\x33\x60\x56\x44\x65" +"\x7e\x99\xb2\x1f\xf8\xa8\x04\x9e\x06\xe1\xbc\x5c\x38\x36\x5c\x5b\x38\x87\x81\x8b\x8c\x81\x1f\x0e\xf7\x62\x15\x6f\x68\x7b\x76\x86" +"\x84\x08\x65\x56\x7c\x71\x7a\x1a\x83\x8f\x88\x93\x94\x91\x8e\x99\x9b\x1e\x91\x90\xf7\x5f\xf7\x38\x05\x8f\x07\xfb\x62\xf7\x3a\x05" +"\x9a\x78\x7f\x93\x86\x1b\x84\x86\x85\x82\x77\xa6\x61\xbe\x4e\x1f\x98\x7c\x97\x7b\x9a\x75\x08\x0b\xf7\x65\xf8\x5d\x15\x54\x1d\xfb" +"\x6e\x07\x57\x8d\x7f\x99\x73\x1e\x7a\x95\x96\x82\x95\x1b\x90\x92\x8d\x8e\x93\x1f\xf7\x11\xbd\x84\xa1\x05\x86\x7d\x82\x88\x84\x1b" +"\x70\x88\x96\xdb\x1f\x0b\x75\x1a\x75\x7e\x82\x68\x89\x1e\x86\x8a\x7e\x8a\x7d\x8a\x08\x72\xf7\xd8\x07\xb2\x1d\x0b\x36\x8f\x80\x96" +"\x89\xd8\x08\xf8\xa3\x95\x1d\xfc\xa3\x07\x89\x3f\x80\x81\x37\x85\x08\x72\x0b\xf9\x2a\x15\xfc\x97\xb5\x1d\x77\xf7\xdd\x9f\x6b\x20" +"\x1d\xf8\xa6\xf7\x0d\x07\xdb\x8e\xbc\x59\x90\x2f\x08\xa8\x06\x0b\x15\xb0\xa4\x9e\x98\xaa\x1b\xb3\xa4\x73\x66\x63\x74\x76\x4e\x79" +"\x1f\x81\x07\xeb\x6c\xad\x6b\x51\x1a\x64\x72\x71\x65\x7b\x7f\x91\x9f\x76\x1e\x6d\xa5\x83\x8f\x6e\x8e\x08\x70\x82\x7e\x7e\x78\x1a" +"\x6a\xb2\x76\xc8\x0b\x15\xd2\x1d\x9e\x2c\x1d\x77\xf7\xd0\x06\x0e\xf7\xc5\xf8\x61\x15\x2d\xf7\x3d\x72\x06\x4e\x35\x63\x5e\x4a\x54" +"\x08\x70\xbf\xfb\xd8\x07\x4a\xb6\x63\xd0\xce\xb3\xa9\xdd\xb4\x1e\x72\x96\x05\x69\x1d\xf7\xc1\xe9\x07\x0b\x8c\x08\x21\x06\xf4\x8f" +"\xae\x9a\xa6\x1e\xa1\x98\xa1\x96\xad\x1b\xa9\xa3\x7f\x7c\x8a\x8a\x88\x8a\x88\x1f\x87\x80\x88\x7f\x80\x1a\x6b\xa5\x75\xb1\xb1\xa6" +"\xa3\xaf\xc4\x47\xae\xfb\x01\x0b\xf9\x41\xf9\x75\x15\x59\x06\x4c\x2e\x05\xad\x4b\x5a\x98\x46\x1b\xfb\x63\xfb\x28\xfb\x29\xfb\x63" +"\x59\x93\x5d\x9c\x5f\x1f\xa3\x4f\xa3\x6b\xc6\x58\x35\xfb\x12\x18\xbd\x06\xd2\xf3\x05\x0b\xf7\xf8\x15\xf7\x08\xce\xbd\xcd\xe1\x1a" +"\xd0\x62\xba\x4f\x59\x6a\x6b\x59\x5b\xa8\x6c\xb8\x90\x90\x67\x1d\x7e\x65\x69\x61\x40\x57\x1f\x0b\xf8\x06\xa4\x15\x41\x8f\x77\x99" +"\x8a\xc0\xa1\x1d\x89\x58\x79\x7c\x42\x86\x08\x72\x0b\x22\x1d\xac\x9f\x92\x95\xa2\x1a\xa5\x78\x9d\x6e\x77\x7b\x82\x78\x7a\x1e\x0b" +"\xf7\x26\xfb\x24\xf7\x66\xf2\xf7\x00\xa3\xb1\xcc\x1f\xf7\x13\x07\x8d\xd4\x96\x97\xd4\x92\x08\x0b\xfc\x1d\x8e\x1d\x0b\x15\xf4\xc6" +"\xb8\xc6\xd9\x57\x1d\x95\x92\x83\x80\x68\x6c\x65\x48\x5c\x1f\x0e\xcc\x1d\x85\x91\x67\xc8\xfb\x65\xf7\xf5\x18\xcc\xdc\x05\xec\xd9" +"\xae\xa2\xd2\x1b\x9f\xfb\x7f\x77\xa1\x07\xa6\x9b\x7f\x0b\x15\xf7\x08\xce\xbd\xcd\xe1\x1a\xd0\x62\xba\x4f\x59\x6a\x6b\x58\x5d\xa8" +"\x6b\xb7\x90\x91\x67\x1d\x7f\x64\x69\x61\x40\x57\x1f\x0b\xf9\x45\xa4\x15\x5f\x7f\x99\xf7\x11\x56\x9b\x1d\x9b\x90\x0b\x15\x50\x8c" +"\x80\x94\xb9\x1a\xf7\xe5\x80\x07\xfb\x38\x4a\x05\x76\x07\x95\xa9\x9d\x90\x93\x1b\x9b\x92\x7e\x6f\x1f\xfb\x71\x07\x5a\x8c\x7d\x80" +"\x4b\x1b\x77\xf7\x87\x07\x0b\xc6\xb8\xc6\xd9\x57\x1d\x95\x92\x83\x80\x67\x6d\x66\x47\x5c\x1f\x0e\xa4\x15\x45\x93\x7a\x98\x8a\xbd" +"\x08\xf8\x78\x07\x8c\xbe\xa0\x9c\xcd\x8e\x08\xa4\xfb\xe8\x72\x07\xcf\x88\x9f\x7b\x8d\x57\x08\xfb\x63\xfb\x85\xf7\x63\x07\x8c\x0b" +"\x4d\x1b\x4b\x6c\xa5\xc8\x7f\x1f\x5f\x06\x8e\x54\x92\x72\xa0\x6e\x08\x68\xa4\xb5\x78\xc0\xca\x1d\x64\x1d\x93\x88\x78\xb6\xb8\x1d" +"\x7c\x7e\x70\x1b\x0b\x15\xf7\x98\x57\x07\x64\x5d\x30\xfb\x02\x6c\x62\x61\x4d\x19\x48\xf7\x35\x34\xe9\xe2\xb4\xcd\x07\xfb\x1a\x16" +"\xfb\x1d\x06\xf7\x1d\xf7\x43\x05\x0b\xa3\x15\x6b\x7b\x9f\xb3\x8a\x1f\xf8\xe4\x5a\x1d\xfc\x92\x07\x8a\x65\x79\x76\x6b\x8a\x08\x73" +"\xf7\x83\x07\x0b\x07\xf7\x0f\x87\xbf\x5d\x9c\xfb\x0b\x08\xa8\x06\x89\xf7\x5d\x05\xfc\xec\x06\x88\xfb\x5d\x05\xa8\x06\x9c\xf7\x0b" +"\xbf\xb9\xf7\x10\x8f\x08\x0b\x21\x1d\x78\x77\xf7\xcf\x9f\x79\x61\x1d\x9e\xc0\x8d\x08\x9d\x0b\xf7\xb8\xfb\x4c\x15\x4f\x8d\x7b\x9e" +"\x89\xd0\x08\xf7\x21\x07\x5c\xbb\xa4\x7e\xb8\x1b\xf7\x05\xda\xf3\xf7\x28\xf7\x20\x40\xe9\xfb\x03\x0b\xa9\x1d\xca\xfb\x31\x22\x1d" +"\x0b\xca\xf7\x0a\xf7\x06\xc6\xb0\x72\x4b\xae\x1e\x9f\x5e\x15\x9f\x4a\x91\x5b\x3b\x1a\xfb\x64\x4e\xfb\x01\xfb\x08\x4c\x64\xa5\xcb" +"\x69\x1e\x0b\x79\x6f\x1a\x5c\xb7\x69\xc9\x5e\x1d\x77\x81\x88\x7b\x1b\x62\x75\xa1\x0b\x1f\xfb\x73\xf8\xa2\x05\x6f\x06\xfb\x72\xfc" +"\xb8\x65\x2d\x7f\x7d\x5b\x82\x19\x72\xf7\x5f\xa4\x07\x4f\x8f\x75\x96\xa5\x1a\x0b\x8c\x08\x9f\xfb\x66\x3d\x1d\x8d\x66\x7b\x76\x6e" +"\x8a\x08\x77\xf7\x66\x9f\x07\x0b\xe2\x15\xfb\x1d\xf7\x31\x05\x9d\x7b\x79\x95\x77\x1b\x71\x76\x77\x72\x77\x96\x7e\xa8\x78\x46\x1d" +"\x15\xfb\xeb\x72\x06\xdf\x87\x9a\x81\x8d\x53\x08\x22\x07\x58\x6e\x75\x48\x4c\x61\x9e\xb6\x6a\x1e\x5f\xc3\x76\x0b\xf7\xfc\x15\xf3" +"\xf7\x53\x05\xa2\xb5\x96\xa8\x9e\x1a\xa8\x74\xa0\x6b\x4c\x63\x55\x34\x8a\x1e\x88\xfb\x52\x05\x0b\x78\x7e\x92\x95\x90\x8e\x92\x91" +"\x95\x1e\x95\x9a\x8f\x97\x95\x1a\xa9\x71\xa3\x6a\x66\x72\x72\x67\x50\xc5\x62\x0b\x08\xf8\x78\x07\x8c\xc0\xa1\x9b\xd3\x8d\x08\xa4" +"\xfb\xf2\x72\x07\xd1\x88\xa0\x7b\x8d\x57\x08\xfc\x78\x07\x0b\xb9\xf9\x2a\x15\x77\x9e\x07\xbd\x1d\x0b\xf7\x44\x05\x2f\xea\x1d\x0b" +"\xe2\x1a\xf1\x3f\xc9\xfb\x13\x67\x78\x87\x76\x58\x1e\x83\x78\x82\x89\x81\x1b\x76\x83\x95\xa4\x8a\x1f\x0b\xfb\x43\xa8\x06\x90\xe7" +"\xbb\xbd\xdc\x88\x08\xb6\xfc\xa6\x06\x8d\x53\x7c\x7a\x56\x88\x08\x6e\x77\x0b\x6a\x1b\x69\x72\x95\xa0\x7c\x1f\x7f\x9b\x88\x9d\xb4" +"\x1a\xf7\x1d\x07\x88\xc5\x9b\x9e\xc0\x8d\x08\x0b\x77\xa1\x07\xa6\x9b\x7f\x77\x7d\x84\x7e\x78\xf2\x1d\x89\xc3\x9a\x0b\xf7\x8c\x07" +"\xe1\x56\xc2\x39\x56\x66\x77\x51\x57\x1e\x0b\x22\x1d\xac\xa0\x92\x94\xed\x1d\x7b\x1e\x0b\x9d\xbf\xc9\xac\x9d\x7a\x60\x98\x1e\x96" +"\x51\x15\x8c\x5d\x8c\x71\x6a\x1a\xfb\x2a\x77\x57\x51\x0b\xfc\x3f\x15\xb4\xa6\x9d\xa7\xb1\x1a\xc2\x5b\xb3\x4a\x46\x57\x5e\x4f\x61" +"\x9d\x6b\xb6\x66\x1e\x0b\x83\x05\x8e\x96\x93\x8c\x94\x1b\xa8\x9c\x7e\x74\x70\x77\x7d\x64\x7b\x7e\x8e\x94\x73\x1f\x0b\x07\x8d\x67" +"\x7c\x76\x6e\x8a\x08\x77\xf7\x77\x07\xf7\x02\xc7\xb7\xdc\xe3\x4a\xbc\xfb\x0a\x0b\x86\x85\x8b\x8a\x85\x1e\x8a\x88\x89\x8b\x89\x1b" +"\x80\x83\x94\x97\xb3\xad\xb4\xd6\xbf\x1f\x0b\x15\xa7\x8e\x9f\x9e\xa4\x1b\x99\x91\x89\x77\xb8\x1f\xa8\x7e\x05\x83\x9d\xa5\x85\x9f" +"\x1b\x0b\xaf\xa7\xa7\xaf\xaf\x6e\xa9\x68\x1f\xf7\x65\x16\xf1\x1d\x0b\x15\x8c\x93\x8e\x8b\x91\x1b\xbd\xa3\x6a\x47\x50\x75\x6b\x63" +"\x75\x84\x93\xa3\x1f\x0e\xfc\x88\xf7\x80\x15\xe9\xf7\x87\xf0\xfb\x87\x05\x0b\x9f\x58\x1d\x0b\xf0\x1d\x8d\x54\x92\x72\xa0\x6f\x08" +"\x67\xa5\xb4\x78\x0b\x66\x1d\x78\x89\x51\x08\xfc\x67\x21\x1d\x78\x0b\x07\x8d\x66\x7b\x76\x6e\x8a\x08\x77\xf7\x6c\x9f\x87\x07\x6d" +"\x7b\xa1\xb0\x8d\x1f\x0b\x8d\x67\x7b\x77\x6d\x89\x08\x86\x77\xf7\x67\x9f\x06\x71\x90\x7f\x9f\x8c\xac\x08\x0b\x1f\xa8\x7e\x05\x83" +"\x9e\xa5\x85\x9e\x1b\xc4\xb0\xb3\xe2\xa2\x1f\x60\x06\x67\x7f\x0b\xfb\x10\x08\xa2\xf7\xe6\x74\x06\x6f\xfb\x15\x81\x82\xfb\x09\x80" +"\x08\xf7\x8c\x07\x0b\x7f\x7e\x1f\xfb\x10\xfb\x1e\x05\xf7\x15\x07\x89\xad\x98\xa0\xa4\x8f\x08\x9f\x0b\x8a\x5f\x80\x7f\x5e\x87\x08" +"\x73\xf7\x87\xa3\x07\x63\x8d\x85\x96\x8a\xcd\x08\x0b\x1f\xf7\x05\x41\x1d\x07\x5f\xfb\x76\x15\x8c\x93\x0b\xbf\x89\x9b\x78\x89\x50" +"\x08\xfc\x66\x21\x1d\x78\x77\x0b\x5a\x62\x6d\x79\x60\x1b\x64\x6e\x9d\xae\x76\x1f\x79\xab\x83\xac\x87\xd0\x08\x0b\x06\xfb\x04\x28" +"\xfb\x04\xee\x05\x53\x06\xf7\x0e\xfb\x44\x05\xe7\x06\x0e\x91\x2b\x08\x9a\x33\x15\x5e\x66\x66\x5f\x5d\xaf\x66\xb9\xb8\xb0\xb0\xb8" +"\x0b\x15\x70\x74\x74\x71\x6f\xa2\x74\xa6\xa6\xa2\xa2\xa6\xa6\x74\xa2\x70\x1f\x0b\x22\x1d\xab\x9f\x93\x95\xa2\x1a\xa5\x78\x9d\x6e" +"\x77\x0b\x22\x1d\xac\x9f\x92\x95\xa2\x1a\xa6\x78\x9c\x6e\x77\x0b\x16\x6d\x74\x74\x6e\x6e\xa2\x74\xa8\xa7\xa3\xa3\xa7\xa7\x74\xa3" +"\x6f\x1f\x0b\xe3\x05\xac\xa0\x92\x94\xa2\x1a\xa6\x78\x9c\x6e\x77\x7a\x82\x78\x7b\x1e\x0b\xbd\xdb\x88\x08\xa6\xfc\xa6\x06\x8d\x53" +"\x7c\x7a\x56\x88\x08\x78\x77\x0b\x65\x6c\x6c\x65\x64\xaa\x6c\xb2\xb0\xab\xaa\xb1\xb2\x6c\xaa\x64\x1f\x0b\x08\x9e\x9f\xfc\x44\xfb" +"\x43\xa8\x06\x90\xe7\xbb\xbd\xdc\x88\x08\x0b\x77\x07\xa5\x87\x98\x76\x89\x69\x08\xfb\xe4\xfb\x04\xf7\xe4\x07\x0b\x1b\xc3\xb3\xd9" +"\x1d\x82\x42\x1d\x84\x83\x5e\x81\x08\x73\x0b\x84\x1a\x7c\x7b\x83\x6e\x1e\x73\x77\xf7\xbb\x9f\x06\x69\x8c\x0b\x15\xfb\x08\x48\x59" +"\x4a\x34\x1a\x46\xb4\x5c\xc7\xbd\xac\xab\x0b\x95\x93\x1a\x97\x94\x92\x9b\x1e\x9f\x9f\xfb\x41\x77\x06\xc1\x0b\xa5\xb4\x78\xc1\x1b" +"\xc2\xb4\x9f\xb4\xa5\x1f\x9c\xa5\x92\xa4\x0b\xf7\xec\x16\xf8\xca\x06\xb4\xf7\x67\x05\x74\x06\x83\x6e\x69\x0b\x78\x08\x3c\x70\x63" +"\x64\x58\x1a\x62\x9d\x79\xcb\x74\x1e\x4c\x0b\x78\x61\x1d\x0b\x07\x8a\x60\x83\x82\x5f\x83\x08\x73\xf7\x85\xa3\x07\x67\x0b\xb0\x8a" +"\x19\x9f\xfb\x25\x77\x97\x07\x9f\x99\x7d\x78\x7b\x0b\xf7\xb3\xf7\xb3\x15\xfb\x87\xfb\x08\xf7\x87\x06\x0e\x15\xfc\x4d\xfd\x50\x05" +"\xc5\x06\xf8\x4b\xf9\x50\x05\x0b\x1b\x7b\x78\xf7\xb8\x9e\x7a\x06\x55\x77\x9f\xc2\x1f\x0b\xf8\x61\x15\xfb\x2b\x73\x06\xb6\x89\x97" +"\x84\x73\x1a\x0b\x9f\xb4\xa5\x1f\x9c\xa5\x92\xa4\x91\xbe\x08\x0e\x79\x1f\xf7\x1f\x35\x05\x0e\x83\x1a\x7c\x7b\x83\x6e\x1e\x73\x77" +"\xf7\x1b\x06\x0b\x08\xfc\x78\x07\x89\x56\x7d\x7f\x43\x85\x08\x72\x0b\xae\x1a\xca\x6a\xb5\x5a\x5a\x6a\x61\x4c\x71\x90\x0b\x5c\x1a" +"\x4a\xbd\x5f\xd7\xd3\xbe\xbe\xd3\xb8\x7b\x0b\x73\x70\x77\x61\x1b\x49\x60\xcb\xf3\x87\x1f\x89\x0b\x1f\x60\x06\x67\x7e\x7d\x7e\x0b" +"\x06\x6e\xfb\x66\x05\xd9\x06\xa8\xf7\x66\x05\x0b\x07\x89\xae\x99\x9f\xa5\x8f\x08\x9f\xfb\x5c\x0b\x90\x8b\x8c\x90\x1e\x8c\x8e\x8e" +"\x8b\x8c\x1b\x0b\x1f\xf8\x48\x07\x8d\xd5\x99\x9a\xd4\x8e\x08\x0b\xa4\xc8\x7f\x1f\x60\x06\x8e\x55\x92\x73\x9f\x0b\x37\x49\x2c\x68" +"\x97\x6b\xa3\x6f\x1f\xa1\x72\x0b\xc0\xa6\xbc\xa7\x1e\x9e\xab\x93\xb1\xc6\x1a\x0b\xf8\x61\xf8\xb9\x15\x5d\x06\x4f\x26\x05\x9d\x0b" +"\x76\xa8\x4e\xf7\x30\xfb\xc2\x18\xfb\x32\x07\x0b\x06\xfb\x0e\xfb\x44\x05\xc3\x06\xf7\x04\x0b\x89\x52\x08\xfc\x69\x07\x8d\x53\x7c" +"\x7a\x0b\x9b\xa0\xa8\x8c\x08\x9f\xfb\x66\x77\x07\x0b\xa2\x1a\xa5\x78\x9d\x6e\x77\x7a\x82\x78\x0b\x33\x5d\xa2\xb7\xa0\x92\x96\xa7" +"\xa2\x1f\x0b\xc0\x89\x9b\x78\x89\x51\x08\xfb\x6c\x07\x0b\x4d\x1b\x4c\x6b\xa5\xc8\x80\x1f\x5f\x06\x0b\x6a\x6e\x6d\x69\x66\xa6\x6e" +"\xae\xaf\xa8\x0b\x74\x1f\xfb\x3c\xfb\x61\x05\xf7\x67\x07\x0b\xf7\xa3\x04\x31\xfa\x7c\xe5\x07\x0e\x01\x00\x01\xe3\x01\x05\x00\x01" +"\x0a\x02\x01\x40\x03\x01\x87\xff\x02\x87\xa0\x02\x8e\x02\x00\x01\x00\x04\x00\x07\x00\x38\x00\x7a\x00\xc5\x01\x4e\x02\x19\x02\xce" +"\x02\xd4\x03\x16\x03\x57\x04\x28\x04\x42\x04\x49\x04\x4d\x04\x57\x04\x68\x04\xb5\x04\xec\x05\x43\x05\xa5\x05\xd4\x06\x22\x06\x83" +"\x06\xa4\x07\x10\x07\x7c\x07\x8a\x07\xaf\x07\xce\x07\xe4\x08\x01\x08\x60\x09\x0a\x09\x0d\x09\x72\x09\x75\x09\x78\x09\x7d\x09\xc8" +"\x09\xcd\x0a\x04\x0a\x08\x0a\x4d\x0a\x52\x0a\x57\x0a\xb9\x0a\xbc\x0a\xc1\x0a\xf7\x0b\x6f\x0b\x72\x0b\x76\x0b\x7b\x0b\x7e\x0b\xcc" +"\x0b\xd1\x0c\x62\x0c\x65\x0c\x6a\x0c\x8e\x0c\x9e\x0c\xc1\x0c\xdf\x0c\xeb\x0c\xfb\x0c\xff\x0d\x4a\x0d\x4e\x0d\x54\x0d\x58\x0d\x7f" +"\x0d\x83\x0d\xa9\x0d\xc4\x0d\xf9\x0d\xfd\x0e\x02\x0e\x8f\x0e\x93\x0e\x97\x0e\xbb\x0f\x10\x0f\x14\x0f\x18\x0f\x1d\x0f\x21\x0f\x6a" +"\x0f\x6d\x10\x05\x10\x09\x10\x0d\x10\x5a\x10\x66\x10\xb1\x10\xd6\x11\x17\x11\x91\x12\x39\x12\x40\x12\xc1\x13\x36\x13\xef\x14\x55" +"\x14\x79\x14\xb5\x15\x19\x15\x32\x15\x39\x15\x7e\x15\xe8\x15\xf2\x16\x95\x17\x8b\x17\x8f\x17\xfc\x18\x15\x18\x1b\x18\x25\x18\x41" +"\x18\x8b\x18\x9f\x19\x92\x19\xf5\x19\xfd\x1a\x04\x1a\x0c\x1a\x13\x1a\x1b\x1a\x21\x1a\x29\x1a\x30\x1a\x38\x1a\x5f\x1a\x6b\x1a\x96" +"\x1a\x9e\x1a\xa2\x1a\xf1\x1b\x62\x1b\xba\x1b\xe9\x1c\x9a\x1c\xc6\x1d\x48\x1d\x4d\x1d\x78\x1d\xbd\x1e\x3b\x1e\xaa\x1e\xb3\x1e\xc3" +"\x1f\x27\x1f\xb7\x1f\xb9\x20\x00\x20\x25\x20\x65\x20\x77\x20\xa5\x20\xb8\x20\xe3\x21\x09\x21\x38\x21\x75\x21\xd6\x21\xda\x22\x51" +"\x22\x7d\x22\xa0\x22\xf3\x23\x0c\x23\x13\x23\x1f\x23\x26\x23\x54\x23\x8c\x23\xce\x23\xe2\x23\xf7\x24\x01\x24\x0d\x24\x14\x24\x1c" +"\x24\x25\x24\x2d\x24\x43\x24\x4b\x24\x53\x24\x5d\x24\x65\x24\x78\x24\x80\x24\x8d\x24\x94\x24\xa0\x24\xa7\x24\xae\x24\xb6\x24\xbf" +"\x24\xd0\x24\xd8\x24\xe1\x24\xec\x24\xf4\x25\x18\x25\x3c\x25\x45\x25\x4d\x25\x56\x25\x5e\x25\x68\x25\x71\x25\x84\x25\x8d\x25\x9d" +"\x25\xaa\x25\xb2\x25\xc3\x25\xcd\x25\xdc\x25\xe4\x25\xed\x25\xf6\x25\xff\x26\x08\x26\x10\x26\x19\x26\x21\x26\x7d\x26\xe9\x27\x5b" +"\x27\xf0\x28\x63\x28\xfb\x29\x9b\x2a\x0f\x2a\x70\x2a\x80\x2a\x82\x2a\xaf\x2a\xb7\x2a\xce\x2b\x15\x2b\x36\x2b\x3e\x2b\x46\x2b\x5d" +"\x2b\x7c\x2b\x7e\x2b\x86\x2b\x88\x2b\xa3\x2b\xc5\x2b\xcf\x2b\xd9\x2b\xe3\x2c\x5c\x2c\xd5\x2c\xda\x2d\x2a\x2d\x2e\x2d\x72\x2d\xee" +"\x2e\x2e\x2e\x42\x2e\x50\x2e\x82\x2e\x91\x2e\xf6\x2f\x2b\x2f\xae\x2f\xcc\x2f\xd5\x2f\xdd\x2f\xf0\x2f\xf5\x30\x11\x30\x1c\x30\x5e" +"\x30\xa6\x30\xad\x30\xc4\x30\xd1\x31\x18\x31\x2f\x31\x57\x31\x5f\x31\x63\x31\x6b\x31\x73\x31\x99\x31\xdd\x31\xef\x32\x13\x32\x1d" +"\x32\xa5\x32\xab\x33\x24\x33\x5d\x33\x63\x33\x88\x34\x2f\x34\x3b\x34\x43\x34\x4a\x34\x4e\x34\x57\x34\xf5\x35\x90\x35\x99\x35\xd9" +"\x35\xf7\x36\x23\x36\x2c\x36\x3e\x36\xbb\x36\xd3\x36\xe4\x36\xf2\x37\x3e\x37\x98\x38\x01\x38\x52\x38\x5a\x38\x9e\x38\xa7\x38\xb0" +"\x38\xba\x38\xc2\x39\x30\x39\x37\x39\x3d\x39\x45\x39\x4f\x39\x85\x39\x8d\x3a\x1b\x3a\x1f\x3a\x21\x3a\x5e\x3a\x79\x3a\x80\x3a\xe4" +"\x3b\x15\x3b\x31\x3b\x99\x3c\x01\x3c\x06\x3c\x4b\x3c\x50\x3c\x70\x3c\x74\x3c\x78\x3c\x7e\x3c\x96\x3c\x9a\x3c\xf3\x3d\x0e\x3d\x7d" +"\x3d\x83\x3d\x85\x3d\xae\x3d\xee\x3e\x0d\x3e\x38\x3e\x6e\x3e\xab\x3e\xe4\x3f\x61\x3f\xcb\x40\x33\x40\x6b\x40\xd0\x40\xf2\x41\x70" +"\x42\x0c\x42\x0f\x42\x22\x42\x70\x42\xc4\x43\x0f\x43\x5f\x43\x7e\x44\x22\x44\x9c\x45\x09\x45\x6e\x45\x90\x45\xed\x46\x3a\x46\xb1" +"\x47\x39\x47\x81\x47\x85\x47\xbe\x47\xc2\x48\x23\x48\x81\x48\xd4\x49\x12\x49\x4b\x49\xb5\x49\xf8\x4a\x31\x4a\x35\x4a\xbd\x4b\x42" +"\x4b\x78\x4b\xba\x4b\xda\x4c\x04\x4c\x29\x4c\x83\x4c\xb6\x4d\x18\x4d\x7b\x4d\xd9\x4e\x0a\x4e\x6d\x4e\xce\x4f\x28\x4f\xa1\x4f\xd5" +"\x50\x1e\x50\x71\x50\xe7\x51\x39\x51\x8d\x51\xad\x51\xe5\x52\x3b\x52\x74\x52\xca\x53\x3d\x53\xc7\x54\x81\x54\x88\x54\xb7\x54\xc0" +"\x54\xf5\x55\x2b\x55\x6b\x55\xc8\x56\x6e\x56\xa3\x56\xc3\x56\xe3\x57\x03\x57\x23\x57\x2f\x57\x44\x57\xbb\x57\xc4\x57\xcc\x58\x0b" +"\x58\x14\x58\x76\x58\xf4\x59\x60\x59\x78\x59\xbd\x5a\x2b\x5a\x57\x5a\x89\x5a\x96\x5a\x9e\x5a\xa6\x5a\xd6\x5a\xde\x5b\x3b\x5b\x97" +"\x5b\x9b\x5b\xc5\x5b\xe4\x5c\x3c\x5c\x40\x5c\x6b\x5c\xb0\x5c\xc9\x5d\x1b\x5d\xa5\x5e\x1d\x5e\x26\x5e\x2e\x5e\x5e\x5e\xd4\x5e\xfb" +"\x5f\x43\x5f\x69\x5f\xb1\x5f\xd8\x5f\xe4\x60\x79\x60\x82\x60\xfa\x61\x69\x61\xa0\x61\xd7\x62\x1c\x62\xa9\x62\xce\x62\xd3\x62\xf2" +"\x63\x35\x63\x56\x63\x97\x63\xbb\x64\x1b\x64\x24\x64\x91\x64\x9b\x64\xf6\x65\x0b\x65\x13\x65\x1b\x65\x44\x65\x6f\x65\xb3\x66\x28" +"\x66\x2f\x66\x7a\x66\xfc\x67\x05\x67\x3d\x67\x45\x67\x4c\x67\xb3\x67\xe7\x68\x36\x68\x43\x68\x54\x68\x5d\x68\x65\x68\x8a\x68\x8e" +"\x68\xba\x68\xc8\x69\x11\x69\x83\x69\xf4\x6a\x7c\x6b\x07\x6b\x3b\x6b\x63\x6b\x99\x6c\x12\x6c\x43\x6c\x4c\x6c\x69\x6c\x83\x6c\x8a" +"\x6c\x9c\x6c\xe1\x6c\xea\x6d\x6a\x6d\x72\x6d\x7b\x6d\x9c\x6d\xdc\x6e\x6d\x6e\xbe\x6e\xfa\x6f\x7e\x6f\xe3\x70\x0b\x70\x56\x70\x99" +"\x71\x0e\x71\x36\x71\x4d\x71\x5c\x71\x64\x71\x79\x71\x7c\x71\x80\x71\x8a\x71\x94\x71\x9c\x71\xa0\x71\xc8\x72\x60\x72\xc7\x73\x40" +"\x73\xbe\x73\xdc\x73\xf8\x74\x14\x74\x71\x74\xa1\x75\x41\x75\xcb\x76\x49\x76\xc6\x77\x0d\x77\x50\x77\xcf\x78\x44\x78\x72\x78\xa6" +"\x78\xe7\x79\x47\x79\x8a\x79\xbb\x7a\x20\x7a\x58\x7a\xc0\x7b\x00\x7b\x88\x7c\x11\x7c\x68\x7c\xcb\x7d\x38\x7d\x9a\x7e\x0a\x7e\x67" +"\x7e\x6a\x7e\xca\x7f\x2a\x7f\xa0\x80\x1a\x80\xae\x81\x07\x81\x50\x81\xbf\x81\xcc\x81\xd8\x82\x90\x83\x06\x83\x0d\x83\x11\x83\x2d" +"\x83\x4a\x83\xba\x83\xd2\x84\x17\x84\x40\x84\x61\x84\x65\x84\xeb\x85\x30\x85\x63\x85\x6c\x85\x75\x85\x7c\x85\x83\x85\xb0\x85\xb7" +"\x86\x69\x86\x71\x86\x89\x86\x92\x86\x9b\x87\x2e\xfb\x8a\x0e\xfb\x8a\x0e\xfb\x37\xf7\x3a\xf7\x30\x15\x2d\x1d\x99\xd9\x15\x98\xf7" +"\x0f\x95\xbc\xa8\xeb\x08\x99\xb7\x8f\x9f\xa2\x1a\xcc\x6d\xb0\x55\x55\x6c\x66\x4c\x71\x8f\x79\x99\x5e\x1e\xa8\x2c\x95\x5a\x98\xfb" +"\x10\x08\x0e\xc6\xf7\x3c\xf8\x28\x15\xac\xf7\x25\x96\xbf\xa2\x1a\xb2\x6f\xa7\x66\x64\x72\x6f\x60\x75\x97\x4d\xa0\x37\x1e\x8c\x84" +"\x90\x77\x90\x76\x08\xf7\xc1\x16\xad\xf7\x26\x95\xbe\xa2\x1a\xb2\x6f\xa7\x66\x64\x72\x6f\x60\x75\x97\x4d\xa0\x37\x1e\x8c\x84\x90" +"\x77\x90\x76\x08\x0e\x8f\xf8\x67\xf7\xaf\x15\x34\x06\x9d\xf7\x1a\x05\xed\xd4\x33\x06\xa8\xf7\x66\x05\x3e\x06\x6d\xfb\x66\x05\xfb" +"\x05\x06\xa8\xf7\x66\x05\x3e\x06\x6d\xfb\x66\x05\x21\x42\xeb\x06\x79\xfb\x1a\x05\x20\x42\xeb\xe1\x1d\xf7\x05\xe1\x1d\xed\x06\xfb" +"\x27\xf7\x63\x15\x79\xfb\x1a\x05\xfb\x05\x06\x9d\xf7\x1a\x05\x0e\x8f\xf8\x40\xf8\x75\x15\xf7\x21\x07\x5c\xa8\x69\x96\x3d\x97\x08" +"\xd7\x54\x3d\x07\x5d\x86\x75\x85\x6c\x7a\x08\x54\x6b\x6c\x57\x4b\x1a\x32\xbd\x50\xf7\x1a\x48\x1e\xfb\x8f\x07\x41\x99\x63\xb8\x6b" +"\xf7\x00\x76\x8d\x18\xfb\x30\x07\xdd\x69\xa3\x85\xc9\x88\x08\x28\xc2\xee\x07\xdd\x9a\xb2\x9b\xab\xab\x08\xac\xab\x9c\xb8\xc3\x1a" +"\xbb\x7c\xb6\x71\xa8\x1e\x68\xb3\x6d\x9f\x2a\xbd\x08\xf7\x6b\x07\xd2\x7b\xb1\x5f\xa8\x27\x08\xfb\x1e\xfb\x7b\x15\xdb\x5e\x98\x7a" +"\x55\x1a\x50\x6d\x6a\x4c\x7f\x1e\x53\xf8\x3c\x15\x4f\xa0\x6e\xac\xb9\x1a\xbb\xa5\xa5\xca\x9b\x1e\x0e\xf8\x8c\xf9\x8d\xf8\x08\x15" +"\xfb\x05\xfb\x05\xfb\x10\xfb\x0f\x37\xbf\x54\xdc\xb7\xb9\x9f\xac\xaa\x1f\xc1\xc3\xad\xdf\xd9\x1a\xd1\x5d\xb8\x45\x1e\xaa\x58\x15" +"\xa9\xa1\x6d\x61\x63\x7e\x60\x6f\x59\x1f\x54\x6d\x68\x6e\x66\x1b\x6b\x78\xa1\xad\x8d\x1f\x8d\xbb\xaa\xdd\xad\xbe\x08\xaf\xa4\xa1" +"\x9b\xa5\x1b\x4b\xf8\x07\x15\x65\x06\x87\x85\x87\x84\x86\x1f\x6c\x74\x42\x70\x4e\x1b\x61\x76\x91\xa1\x6d\x1f\x9d\x71\x73\x94\x72" +"\x1b\xfb\x09\xfb\x01\xfb\x0c\xfb\x14\x3b\xc0\x53\xd7\xc7\xc0\xaa\xc5\xb3\x1f\xb5\xc9\x9b\xc3\x8c\xe4\x08\x87\xa0\x97\x8a\x99\x1b" +"\xae\xb0\x94\x9d\xb6\x1f\xfb\xf0\xfd\x00\x05\xc2\x06\xb0\xf9\x13\x15\x8f\x8e\x89\x85\x94\x1f\x93\x85\x8d\x89\x91\x89\x08\xa0\x81" +"\x93\x80\x74\x1a\x59\x75\x4a\x67\x56\x1e\x61\x6e\x70\x78\x6b\x1b\x6d\x77\xa2\xac\x8d\x1f\x8e\xb9\xac\xe2\xae\xbf\xa1\xab\xa3\x9f" +"\x9b\x89\x08\x0e\xf7\xe5\xf8\xd5\xf8\x37\x15\x73\x07\xc6\x84\x92\x86\x6e\x1a\x63\x79\x69\x51\x44\x1e\xfb\x2b\xf7\x6a\x05\xf5\xb2" +"\xb9\xb7\xcb\x1a\xd4\x49\xbb\x26\xfb\x0c\x40\x4e\x29\x5f\x96\x6c\xb4\x46\x1e\xfb\x22\x45\x55\x4c\x2d\x1a\x23\xda\x43\xf7\x04\xd6" +"\xcc\xa4\xc9\xdd\x1e\x49\xc6\xb0\x75\xc0\x1b\xaa\xb0\x98\x9d\xa4\x1f\x9b\x98\x98\x9b\xa4\xb4\x9b\xa5\x18\x77\x97\x05\x70\x7a\x7b" +"\x80\x72\x1b\x65\x72\x9e\xd3\x53\x1f\xc2\xd7\x96\x9b\xa6\xb6\xa6\xb7\x18\x9d\xa8\x97\x92\xb6\x8f\x08\xa3\x07\xfc\x60\xfb\x19\x15" +"\xd7\xfb\x06\xa0\x6d\xab\x61\x08\x6f\x64\x72\x80\x71\x1b\x6d\x69\x9b\xa5\x72\x1f\x60\xb7\x6e\xcc\xbf\x1a\xb1\x9e\xa3\xc2\xab\x1e" +"\xf7\x0e\xe9\x15\x56\xcd\x76\xb6\xb4\x1a\xae\x9e\xa0\xac\xbc\xb6\x51\x48\x62\x77\x74\x59\x7a\x1e\x0e\xfb\x37\xec\x85\x1d\x0e\xfb" +"\x37\xf7\xc6\xf9\x4a\x15\x4d\x6a\x6f\x76\x64\x62\x08\x36\x2f\x5d\xfb\x0a\xfb\x16\x1a\x2f\xa4\x34\xbb\x3e\x1e\xb9\x43\xb6\x63\xed" +"\x50\x08\xa7\x07\x52\xb0\x72\xa4\x76\xb8\x08\x6d\xc9\x7d\xe7\xf7\x1d\x1a\xf7\x1f\x99\xef\xa7\xc7\x1e\x9f\xb7\xa4\xa5\xc7\xb3\x08" +"\x0e\xfb\x37\xa6\xfb\x3c\x15\xc9\xac\xa7\xa0\xb2\xb5\x08\xe0\xe6\xb9\xf7\x0b\xf7\x15\x1a\xe6\x72\xe3\x5b\xd8\x1e\x5d\xd3\x60\xb3" +"\x29\xc6\x08\x6f\x07\xc4\x67\xa4\x71\xa0\x5e\x08\xa9\x4d\x99\x2f\xfb\x1d\x1a\xfb\x1e\x7d\x26\x6f\x4f\x1e\x77\x5f\x72\x71\x4f\x63" +"\x08\x0e\x8f\xf7\xaa\xf8\x70\x15\xac\xa1\x97\x8e\xb6\x8d\x08\xa3\x94\x8d\x90\x97\x1f\x9f\x94\x9b\xa1\x9d\x1a\xa5\x72\xa3\x6f\x76" +"\x7f\x82\x6d\x77\x1e\x72\x66\x82\x81\x66\x6e\x83\x8e\x18\x8a\xb8\x8e\x95\x9f\xaf\x08\x98\xa2\x8e\x95\x9a\x1a\xac\x78\xa1\x6e\x6d" +"\x75\x76\x6e\x7a\x8f\x80\x99\x72\x1e\xa0\x64\x8e\x81\x8c\x61\x84\x88\x18\x65\xa0\x84\x91\x72\xb3\x08\xad\x77\x7c\x96\x6f\x1b\x6f" +"\x78\x77\x6e\x67\x9b\x7f\xbf\x87\x1f\xb8\x87\x9b\x87\xb4\x79\x8a\x84\x18\x6d\x75\x80\x88\x61\x89\x08\x53\x6e\x78\x66\x6f\xa1\x75" +"\xa7\xa0\x97\x94\xaa\xa0\x1f\xa6\xb2\x93\x93\xb1\xa7\x92\x86\x18\x8a\x5d\x88\x81\x78\x69\x08\x7f\x75\x88\x82\x7b\x1a\x69\x9e\x74" +"\xa8\xa8\xa1\xa1\xa9\x98\x88\x94\x80\x9f\x1e\x78\xb2\x85\x9d\x87\xb6\x92\x90\x18\xa8\x7c\x93\x84\x9f\x6f\x08\x59\xac\x9a\x7f\xa6" +"\x1b\xa7\xa0\xa0\xa8\xad\x78\x98\x55\x8f\x1f\x5e\x8f\x7c\x8f\x67\x9c\x08\x0e\xd5\xf7\x85\xf7\xbd\x15\xfb\x64\x33\xf7\x64\xfb\x65" +"\xe3\xf7\x65\xf7\x64\xe3\xfb\x64\xf7\x65\x33\x06\x0e\xfb\x8a\xc4\xfb\x48\x6f\x0a\xfb\x37\xd5\x1d\xfb\x8a\xf7\x11\xf7\x30\x15\x2d" +"\x1d\x0e\xfb\x6e\xf7\xc2\xf9\x47\x15\x31\x06\xfb\x80\xfd\x5a\x05\xe5\x06\x0e\x8f\xf7\x8e\xf9\x44\x15\x4a\x49\x5f\x43\x62\x1f\x6b" +"\x54\x75\x2d\x38\x1a\xfb\x63\xe9\xfb\x26\xf7\x19\xf7\x16\xea\xf7\x28\xf7\x5e\xf7\x5c\x2a\xf7\x2b\xfb\x15\x1e\xcf\xfc\x66\x15\x50" +"\x83\x3d\x82\x70\x1e\x6e\x80\x7b\x7d\x74\x1b\x59\x78\xc5\xf7\x29\x1f\xf7\x79\x07\xf7\x2c\x9d\xc4\xbc\xbc\x9f\x4d\xfb\x27\x1e\x0e" +"\x8f\xf8\x4e\xa3\x15\x31\x8c\x79\x9b\xd8\x1a\xf8\xce\x7a\x07\xfb\x90\xfb\x01\x05\x71\x07\x94\x8e\x92\x8e\x8f\x8d\x08\x95\xa6\xa4" +"\x92\x98\x1b\xa4\x96\x75\x5c\x1f\xfc\x15\x07\x8c\x3a\x76\x79\x28\x8a\x08\x73\xf8\x0b\x07\x0e\x8f\xf8\x72\xf7\x67\x15\x73\x06\x6e" +"\x44\x80\x85\x24\x8a\x08\xfb\x2b\x06\xf7\x36\xf7\x2e\x05\xda\xd6\xae\xce\xd7\x1a\xf6\x3f\xd7\xfb\x01\x59\x5b\x77\x67\x68\x1e\x64" +"\x64\x77\x69\x6f\x40\x08\xa7\x06\xca\xaa\xb0\xa6\xc1\x1b\xb7\xad\x78\x67\xa0\x1f\x97\x76\x93\x6f\x74\x1a\x5f\x78\x54\x6b\x5a\x1e" +"\x58\x3e\x68\x60\xfb\x26\xfb\x30\x08\x74\xf8\x34\x07\x0e\x8f\xc5\xf8\x9f\x15\xc8\xb1\xac\xa2\xbf\x1b\xca\xb2\x64\x4b\x49\x68\x68" +"\x2c\x6d\x1f\x7a\x07\xde\x6e\xac\x7a\xaf\x69\x08\xaa\x6e\x9d\x5e\x5b\x1a\x43\x65\x5d\x4f\x73\x78\x96\xab\x6a\x1e\xb2\x64\x6e\x9b" +"\x6c\x1b\x65\x70\x73\x69\x55\xc7\x67\xe7\xf7\x3c\xf7\x18\xf7\x06\xf7\x26\xba\x7c\xb5\x6e\xae\x1f\x76\xa4\x7a\x96\x63\x9d\x08\xcb" +"\xb2\x9e\xa8\xc6\x1a\xe1\x4e\xbe\x25\x28\x40\x59\x24\x54\x1e\x0e\x8f\xf8\x30\xf7\x93\x15\xf8\x45\x3b\x07\x50\x3e\xfb\x12\xfb\x38" +"\x47\x2c\x4f\x2c\x19\xfb\x05\xf7\x8c\xfb\x24\xf7\x25\xf7\x24\xca\xf7\x03\x07\xfb\x62\x16\xfb\x65\x06\xf7\x65\xf7\xbd\x05\x0e\x8f" +"\xf7\x29\xf8\xb9\x15\xf7\xaa\x06\xb6\xf7\x13\x05\xfb\xd6\x06\x2a\xfb\xed\xea\x84\xb3\x85\xb8\x7d\x19\xe4\x6f\xc0\x53\x48\x1a\x53" +"\x5f\x5f\x53\x74\x70\x97\xa9\x63\x1e\xab\x60\x6d\x98\x71\x1b\x67\x71\x72\x68\x56\xc5\x68\xe4\xf7\x39\xf7\x09\xef\xf7\x21\xf3\x4b" +"\xdb\xfb\x01\xaa\x1f\x65\x96\x6c\x8f\x39\x90\x08\x0e\x8f\xf8\x6a\xf9\x44\x15\xfb\x19\x78\x4c\x75\x40\x57\x08\xfb\x04\x3e\x50\xfb" +"\x04\xfb\x19\x1a\xfb\x41\xe6\xfb\x05\xf7\x21\xf7\x10\xe6\xee\xf7\x1c\xf7\x0d\x42\xd9\xfb\x06\x6b\x75\x87\x7e\x6d\x1e\xb0\xf7\x27" +"\xde\xdc\xf7\x26\xa9\x08\xfb\x81\xfb\xb2\x15\xce\xa2\x55\xfb\x33\xfb\x0c\x7f\x6e\x5a\x73\x7a\x95\x9e\x81\x1f\x7a\xac\x81\xd4\xe8" +"\x1a\xc9\x91\xc4\x92\x90\x1e\x91\x93\x98\x8f\x9a\x1b\x0e\x8f\xf8\x71\xf9\x38\x15\xfc\x34\x06\x5f\xfb\x72\x05\xa4\x06\x9c\xc9\xa8" +"\xa3\xbf\x8a\x08\xf7\x63\x06\xfb\x5c\xfc\xaf\x05\xea\x06\x0e\x8f\xf7\x46\xf7\xd8\x15\x52\x78\x73\x7e\x72\x72\x08\x6e\x6f\x7c\x65" +"\x5f\x1a\x25\xe0\x47\xf7\x13\xf7\x1f\xe8\xdb\xf7\x0c\xe2\x60\xc9\x20\xcf\x1e\xeb\xad\xb3\xb3\xcc\x1a\xe4\x40\xc3\xfb\x0c\xfb\x1b" +"\x32\x46\x21\x3f\xb3\x55\xee\x50\x1e\xf7\x0c\xed\x15\x37\xb6\x5d\xc2\xc3\x1a\xba\xaf\xaf\xba\xc3\xab\x5e\x3e\x5b\x83\x74\x6a\x5f" +"\x1e\x29\xfb\x08\x15\xf7\x01\x42\xa3\x6b\x41\x1a\x48\x6a\x62\x55\x4e\x67\xc0\xe4\xc2\x96\xa9\xb3\xc7\x1e\x0e\x8f\xaa\x7e\x15\xf7" +"\x20\x9f\xcf\xa4\xd9\xc6\x08\xf1\xd7\xc1\xf7\x00\xf7\x13\x1a\xf7\x41\x2f\xf7\x05\xfb\x20\xfb\x11\x31\x28\xfb\x1d\xfb\x0a\xd4\x3b" +"\xf7\x01\xb2\xa3\x90\x99\xa7\x1e\x60\xfb\x2c\x3a\x3c\xfb\x24\x6e\x08\xf7\x63\xf9\x1c\x15\xa5\x9b\x81\x73\x97\x1f\x9a\x70\x95\x44" +"\x44\x1a\x70\x89\x6b\x88\x5e\x1e\x89\x7e\x8b\x82\x8a\x87\x8a\x7e\x8a\x86\x88\x89\x08\x86\x83\x79\x87\x7c\x1b\x4d\x74\xc5\xf7\x32" +"\xf7\x08\x97\xa9\xbb\x1f\x0e\xfb\x37\xf7\x3a\xf7\x30\x15\x2d\x1d\xf7\xd0\x04\x9b\x0a\xfb\x37\xef\xfb\x48\xa9\x0a\x6a\x59\x5e\xa9" +"\x6a\xb4\x1e\x93\x06\x97\x8d\x05\x92\x06\x95\x93\x81\x80\x64\x69\x61\x40\x57\x1f\xd8\xf9\x0a\x15\x9b\x0a\xd5\xf8\x7f\xf8\xed\x15" +"\xfc\x3c\xfb\xa4\x05\x78\x07\xf8\x3c\xfb\xb0\x05\xf7\x16\x07\xfb\xb3\xf7\x54\xf7\xb3\xf7\x4e\x05\x0e\xd5\xf8\xad\xf8\x23\x15\xfc" +"\x8c\x33\xf8\x8c\x06\xfb\x08\x04\xfc\x8c\x33\xf8\x8c\x06\x0e\xd5\xd5\xa5\x15\xf8\x3c\xf7\xa4\x05\x9f\x07\xfc\x3c\xf7\xaf\x05\xfb" +"\x16\x07\xf7\xb3\xfb\x53\xfb\xb3\xfb\x4f\x05\x0e\x8f\xf7\x91\xf7\x7b\x15\xd4\x93\x99\xca\xb2\x1e\xe6\xc3\xa9\xb4\xd0\x1a\xef\x3c" +"\xcd\xfb\x0d\xfb\x02\x3d\x4f\x37\x5e\xa7\x6c\xb3\xb1\xa4\xa5\xb1\x9f\x86\x97\x7a\x9e\x1e\x7f\x98\x88\x91\x95\x1a\xa3\xa3\x9b\xaf" +"\xc1\xaa\x5c\x38\x57\x81\x69\x6a\x4c\x1e\x73\x5d\x83\x74\x6f\x1a\x80\x8b\x86\x8d\x6d\x1e\x9b\x40\x15\x5d\x64\x64\x5e\x5b\xb0\x66" +"\xbb\xba\xb0\xb0\xba\xba\x65\xb1\x5d\x1f\x0e\xf8\x46\xf8\xe7\xf8\x66\x15\xb6\x74\x7d\x95\x67\x1b\x5f\x60\x78\x6a\x6b\x1f\x57\x54" +"\x6b\x3c\x41\x1a\x4a\xb4\x59\xc0\xb6\xbb\xa7\xb9\xae\x1e\x5e\x92\xb0\x6d\xbd\x1b\xf1\xe2\xf7\x05\xf7\x1a\xf7\x3e\xfb\x27\xf7\x17" +"\xfb\x52\xfb\x66\xfb\x3b\xfb\x33\xfb\x5e\xfb\x58\xf7\x3a\xfb\x2d\xf7\x69\xd6\xbf\x99\xb9\xec\x1f\x7e\xae\x05\x66\x3a\x59\x7f\x47" +"\x1b\xfb\x43\xfb\x10\xf7\x10\xf7\x42\xf7\x52\xf7\x0c\xf7\x1d\xf7\x39\xf7\x31\xf7\x19\xfb\x0e\xfb\x25\x21\x4d\x28\x49\x72\x7e\x9c" +"\xaa\x91\x8c\x92\x8c\x90\x1f\xcd\xf7\x98\x05\x44\x06\x44\x68\x15\xa8\x89\x9a\x73\x89\x64\x89\x5e\x7a\x4e\x76\x61\x08\x61\x75\x6d" +"\x72\x6d\x1b\x67\x74\xac\xc0\xc1\x9d\xbe\xad\xb1\x1f\xa7\xac\xad\x9f\xa4\x89\x08\x0e\x26\x0a\x0e\xf7\x3f\x9b\x16\xf7\xd6\x06\xf7" +"\x3d\xf7\x04\xd6\xf7\x05\xb9\x78\xb3\x68\xaa\x1f\x68\xa9\x69\x9a\x45\x9a\x08\xf7\x08\xad\xb6\xb4\xd7\x1a\xf2\x2f\xc4\xfb\x3c\x1e" +"\xfb\xc9\x72\x06\xce\x88\x9e\x7c\x8d\x56\x08\xfc\x78\x07\x89\x57\x7c\x7e\x44\x85\x08\xf7\x8c\xf7\xd2\x15\xa9\x06\xf2\xbd\x55\xfb" +"\x02\x2a\x62\x59\x3a\x5f\x7a\x9c\xb7\x1f\xf8\x8c\x04\xaf\x99\x98\xb3\xd1\xab\x60\x2d\x22\x6a\x6f\xfb\x0f\x88\x1e\x0e\x47\x1d\x0e" +"\x5e\x0a\x0e\xf7\x3f\x24\x0a\x0e\xf7\x07\x9b\xf9\x1f\x15\xce\x88\x9f\x7c\x8c\x56\xdc\x1d\xf7\xfc\xa4\x07\x32\x8e\x78\x97\x89\xc3" +"\x08\xf7\x7d\x07\xf1\x89\xb0\x66\x99\xfb\x08\x08\xa4\xf7\xe6\x72\x06\xfb\x06\x79\x68\x68\x27\x1b\xf7\x7c\x07\xb1\x98\x94\xbe\xe7" +"\xc7\x7a\x68\xa9\x1e\xa1\x72\x96\x70\x99\x4c\x08\xa3\xf7\x5d\xfc\xcb\x06\x0e\xf7\xae\x3d\x0a\x0e\xf7\xae\xf9\x8b\x90\x1d\xbe\xa0" +"\x9c\xcf\x8e\x08\xa4\xfb\xe5\x72\x07\xcc\x86\x9d\x7c\x8d\x58\x08\xfc\x78\x07\x8a\x59\x7b\x7e\x47\x83\x43\x1d\x44\x92\x79\x98\x8a" +"\xbe\x46\x0a\x89\x58\x7a\x7e\x44\x84\x08\x72\xf7\xe8\x07\x0e\x20\x27\x0a\x0e\x8f\xf8\x73\xf9\x38\x15\xfb\xf4\x72\x06\xda\x8a\x9f" +"\x7c\x8d\x54\x08\xfc\xc0\x07\x4d\x79\x72\x5d\x6f\x7a\x97\x9f\x94\x8e\x90\x94\x96\x1e\x97\x9a\x8e\x93\x9b\x1a\xb3\x69\xae\x64\x66" +"\x6a\x69\x65\x62\xa7\x5e\xb2\x74\x1e\x7d\xa5\xb2\x82\xb3\x1b\xf7\x21\xd5\xd7\xf7\x23\xe4\x1d\x0e\xf7\xae\x52\x0a\x0e\xf7\x3f\x31" +"\x1d\x0e\xf8\x54\xfa\x2d\xa4\x15\x3f\x94\x81\x95\x89\xd4\x08\xf8\x4e\x07\x8d\xd5\x99\x99\xd3\x8f\x08\xa4\xfb\x90\x07\xfb\x5c\xfc" +"\x6c\xfb\x5c\xf8\x6c\x05\xfb\x91\x72\x06\xd3\x86\x9c\x7d\x57\x1a\xfc\x6f\x07\x8a\x4e\x7e\x7f\x3e\x84\x08\x72\xf7\x7e\xa4\x07\x3a" +"\x90\x78\x9f\x8a\xd5\x08\xf8\x6a\x07\xf7\x90\xfc\xe6\x05\xa6\x06\xf7\x90\xf8\xf5\x05\xfc\x91\x07\x89\x52\x7e\x7f\x41\x85\x08\x72" +"\xf7\xe0\x07\x0e\x30\x1d\x0e\xf7\xae\x26\x1d\x0e\xf7\x07\x9b\xb1\x0a\xf7\x4e\x07\xf7\x1b\x8c\xad\x8f\xb7\x9c\x08\xdc\xaa\xb7\xc7" +"\xd9\x1a\xf7\x08\x2c\xcd\xfb\x3b\x1e\xfb\xd6\x72\x06\x4e\x1d\xf8\xd9\x15\xa2\x9c\x97\xac\xde\x4b\x0a\x74\x1e\x77\x73\x6a\x84\x44" +"\x1b\x0e\xf7\xae\xf9\x6e\xfb\x09\x15\x81\x69\x7e\x89\x77\x1b\x5c\x5e\x9d\xad\x69\x1f\x78\x9e\x81\x9a\x79\xb0\xdc\xa5\xae\x9f\xb6" +"\xb9\x08\xc8\xcc\xac\xe1\xec\x1a\xf7\x64\xfb\x28\xf7\x29\xfb\x62\xfb\x61\xfb\x29\xfb\x2c\xfb\x64\x2f\xaa\x38\xc5\x4b\x1e\xb4\x5d" +"\xab\x77\xd7\x6f\xa0\x5f\x97\x78\xa2\x74\x08\x53\xc3\xdf\x6b\xe3\x1b\xc8\xb7\x94\xa5\xd5\x1f\xfb\xee\xf9\xb3\x15\xf7\x04\xcb\xfb" +"\x0c\xfb\x65\xfb\x61\x4e\xfb\x02\xfb\x08\xfb\x08\x4e\xf7\x01\xf7\x64\xf7\x66\xcb\xf7\x09\xf7\x06\x1f\x0e\x34\x1d\x0e\xc7\x33\x1d" +"\x0e\xf7\x3f\x48\x1d\x0e\x24\x1d\x0e\xf9\x51\xf9\x38\x15\xfb\x69\x72\x06\xd1\x87\x9b\x83\x6b\x1a\x7b\x88\x7f\x7a\x60\x1e\xfb\x13" +"\xfb\xdd\xfb\x1e\xf7\xe2\x05\x78\xb9\x87\x96\x9a\x1a\xa2\x9a\x96\xb1\x8d\x1e\x90\x98\x8c\x8c\x9a\x1f\xa4\xfb\xe4\x72\x07\xbd\x84" +"\x94\x83\xa4\x54\xf7\x94\xfc\xeb\x18\xa6\x06\xf7\x78\xf8\xdf\xa3\xc9\x99\x98\xbf\x92\x19\x0e\xf8\x8c\x2e\x1d\x0e\xf9\x44\xf9\x38" +"\x15\xfb\x8e\x72\x06\xcb\x86\x93\x86\x70\x1a\x76\x80\x77\x5c\x4a\x1e\x7f\x7b\x77\x6f\x73\x6a\x2a\xf7\x2a\x18\x7e\x9f\x89\x90\x97" +"\x1a\xa0\x97\x93\xaf\x8d\x1e\x90\x97\x8c\x8c\x99\x1f\xa4\xfb\xee\x72\x07\xaf\x88\x98\x81\xaa\x5e\xf7\x5a\xfb\xb7\x18\xfb\x43\xfb" +"\x71\x6d\x66\x73\x7e\x59\x85\x19\x72\xf7\x8e\xa4\x07\x4e\x91\x77\x95\xa5\x1a\xa0\x9e\xaa\xd6\xf0\x1e\xb1\xbe\xf0\xfb\x36\x05\x97" +"\x78\x94\x74\x7f\x1a\x7a\x7a\x82\x68\x89\x1e\x87\x80\x8a\x8a\x7e\x1f\x72\xf7\xe8\xa4\x07\x69\x8c\x7c\x98\x5b\xd3\xfb\x4a\xf7\xaf" +"\x18\xdb\xf7\x03\xe3\xf7\x0c\xa5\x9e\xd5\x92\x19\x0e\x2c\x0a\x0e\xf7\x3f\x37\x1d\x0e\xfb\x37\xf7\xc1\xf9\x3a\x15\xfb\x7e\xfd\xcf" +"\xf7\x7e\xac\x3b\x06\x61\x8c\x82\x95\x8c\xb5\x08\xf9\x12\x07\x8c\xc7\x93\x94\xc5\x8c\x08\xca\x06\x0e\xfb\x6e\xf7\x67\x78\x15\xe7" +"\x06\xfb\x7f\xf9\x5a\x05\x2e\x06\x0e\xfb\x37\xab\xfb\x29\x15\xf7\x7e\xf9\xcf\xfb\x7e\x6a\xca\x06\xc4\x8a\x94\x82\x8c\x4f\x08\xfd" +"\x12\x07\x8c\x60\x83\x82\x60\x8a\x08\x3b\x06\x0e\xe0\xf7\x36\xf7\xcb\x15\xf7\x15\xf7\xa4\xf7\x15\xfb\xa4\x05\xe4\x06\xfb\x46\xf8" +"\x01\x05\x3b\x06\xfb\x46\xfc\x01\x05\x0e\x8f\xf8\x87\xfb\x23\x15\xd0\xfc\x85\x46\x07\x0e\xfb\x37\xf7\x80\xf9\x47\xcd\x1d\xbe\xb9" +"\x6d\xab\x60\xae\x1d\x0e\x8f\x23\x1d\x0e\xc7\x9c\xf9\x20\x15\xb8\x83\x94\x82\x8c\x62\x08\xfc\xf3\x97\x07\xda\xc3\x05\x61\xb9\xaf" +"\x7c\xbd\x1b\xf7\x19\xe8\xf2\xf7\x2a\xf7\x1f\x3e\xea\xfb\x03\x5a\x68\x7b\x63\x65\x1f\xf7\x97\xfb\x56\x07\xf7\x56\xfb\xd0\x15\xb6" +"\x9d\x9e\x9b\xac\x1b\xc9\xaa\x49\xfb\x18\xfb\x1f\x6d\x4b\x4b\x61\x70\xaa\xbb\x1f\x0e\x57\x36\x1d\x0e\xc7\xf8\xaa\x5b\x0a\x0e\x57" +"\x25\x1d\x0e\xfb\x37\x99\x16\xf7\xaa\xa3\x06\x46\x8d\x7f\x96\x8a\xcd\x08\xf7\xce\xe2\xb7\x34\x39\x1d\xb0\xa4\xa4\xb0\xc6\x51\xb4" +"\x36\x48\x57\x73\x5f\x70\x1e\x9a\x0a\x0e\x8f\x32\x0a\x0e\xc7\xf8\xaa\xa3\x15\x68\x8c\x7d\x9d\xb4\x1a\xf7\x8c\x07\xe1\x56\xc2\x39" +"\x56\x66\x77\x51\x57\x1e\xf7\xad\x55\x1d\xfc\x92\x3a\x1d\x8f\x92\x95\x56\x1d\x0e\xfb\x6e\x29\x1d\xfb\x09\xf9\x47\x15\x60\x68\x68" +"\x61\x5e\xac\x6a\xb7\xb7\xad\xac\xb7\xb7\x69\xad\x60\x1f\x0e\xfb\x37\xf7\x98\xf8\x61\x15\xfb\x5e\x73\x06\xbc\x88\x98\x7f\x8c\x5f" +"\x08\xfc\x6e\x07\x56\x7c\x74\x6a\xa0\x1d\xdd\xd0\xe7\x1d\x40\xf9\x45\x15\x60\x69\x69\x60\x5d\xab\x6b\xb8\xb7\xad\xad\xb6\xb6\x68" +"\xae\x60\x1f\x0e\xc7\x6c\x1d\x0e\xfb\x6e\x34\x0a\x0e\xf7\xe5\xf9\xc2\xa3\x15\x65\x8c\x7e\x9a\x8c\xb4\x08\xf7\x8f\x07\xe1\x56\xc2" +"\x39\x52\x64\x74\x4b\x58\x1e\xca\x6d\x68\xa3\x4c\x1b\x4b\x5e\x70\x4f\x65\x1f\xd6\xfb\x53\x73\x07\xb5\x86\x97\x7f\x42\x1d\x81\x80" +"\x5f\x84\x08\x73\xf7\x84\xa3\x07\x69\x8f\x7f\x99\xb2\x1a\xf7\x9f\x07\x91\x9b\x9d\x98\x96\x1e\x9b\xa0\x9b\x92\x9d\x1b\xb2\x9a\x74" +"\x4f\x1f\xfb\x86\x07\x8c\x64\x7e\x7c\x67\x88\x08\x73\xf7\x7e\xa3\x07\x69\x8e\x7e\x9b\xb1\x1a\xf7\x9f\x07\x90\x9b\x9e\x98\x95\x1e" +"\x9c\xa1\x9b\x92\x9d\x1b\xb1\x9a\x73\x50\x1f\xfb\x86\x07\x8c\x63\x7e\x7c\x66\x89\x08\x73\xf7\x82\x07\x0e\xc7\x2d\x0a\x0e\x8f\x27" +"\x1d\x0e\xc7\x97\x1d\x50\x67\x74\x51\x6c\x1f\xd0\xfb\x53\x73\x07\xb7\x85\x95\x80\x61\x1a\xfc\x89\x79\x0a\xfb\x10\x70\x50\x51\x6a" +"\x6e\xa2\xb1\x7c\x1f\x0e\xc7\xf8\xac\xfb\x49\x15\x5e\x93\x82\x94\x8a\xb4\x08\xf8\xe7\x7c\x07\x3d\x53\x05\xb7\x58\x6c\x98\x59\x1b" +"\xfb\x16\x2f\x22\xfb\x29\xfb\x1d\xd7\x2b\xf7\x01\xbb\xad\x9b\xb3\xb4\x1f\xfb\x1f\x07\x8a\x4c\x83\x82\x4b\x80\x08\x72\xf7\x9f\x07" +"\xfb\x56\xf7\xc3\x15\x66\x81\x72\x76\x69\x1b\x4d\x6c\xcc\xf7\x17\xf7\x1c\xab\xd0\xca\xb3\xa6\x6b\x5b\x1f\x0e\x57\x35\x1d\x0e\x20" +"\x2f\x1d\x0e\xfb\x37\x82\x1d\x0e\xc7\x23\x0a\x0e\x8f\xf8\x79\xd8\x1d\x7f\x88\x7d\x83\x78\x1e\x43\xfb\x4a\x3c\xf7\x5f\x05\x83\x9f" +"\x8a\x8f\x92\x1a\x9a\x95\x92\xa4\x8d\x1e\x8e\x92\x8c\x8c\x93\x1f\xa3\xfb\x8e\x73\x07\xa2\x88\x91\x88\x91\x82\x08\x8e\xb9\x27\x63" +"\x9b\x1f\xf7\x0c\xfb\xbc\x05\xa5\x06\xf7\x34\xf8\x20\x9e\xb7\x93\x93\xaa\x8e\x19\x0e\x2b\x0a\x0e\x8f\xf8\x78\xa3\x15\x7b\x90\x84" +"\x8f\x84\x96\xfb\x28\xf7\x78\x18\xf0\xf7\x12\x9e\xa2\x9f\x96\xaa\x90\x19\xa3\xfb\x3c\x73\x07\xbb\x86\x8e\x8a\x79\x1a\x7c\x81\x7a" +"\x6f\x6b\x1e\x85\x85\x7c\x78\x7c\x76\x76\xa7\x7e\x9d\x87\x91\x08\x76\xab\x7f\xa1\x93\x1a\x98\x98\x91\xad\x8c\x1e\xa3\xfb\x8e\x73" +"\x07\xa5\x86\x91\x87\x9f\x6d\xf7\x14\xfb\x59\x18\x6e\x66\x70\x6a\x82\x7d\x6f\x64\x6f\x6c\x78\x7f\x82\x85\x80\x88\x79\x89\x08\x73" +"\xf7\x3d\xa3\x07\x66\x8d\x7e\x92\x9a\x1a\x9b\xa5\xb4\xb1\xb9\x1e\x8e\x8e\x91\x93\x92\x94\x9d\x6f\x99\x76\x95\x7d\x9a\x75\x18\x95" +"\x7c\x93\x78\x83\x1a\x7f\x7e\x85\x6b\x89\x1e\x73\xf7\x85\x07\x0e\x8f\x2a\x0a\x0e\x57\x2e\x0a\x0e\x25\xf7\xe8\xfb\x37\x15\x3e\x99" +"\x6f\xac\x8a\xd7\x08\xf7\x3f\x07\x8a\xdf\x73\xa6\x2e\x9e\xe7\x9d\xa4\xa7\x8c\xdf\x08\xf7\x3f\x07\x8c\xd7\xa7\xac\xd8\x9a\x08\x97" +"\x07\xfb\x32\x58\x69\xfb\x00\x89\x1f\xfb\x47\x07\x8a\x43\x74\x72\x38\x78\xdf\x77\xa1\x73\x8c\x43\x08\xfb\x47\x07\x8c\x21\xc0\x67" +"\xf7\x31\x8c\x08\x0e\xfb\xa8\xcd\xfb\x8e\x15\xe3\xfa\x7a\x33\x06\x0e\x25\xc1\xfb\x43\x15\xf7\x32\xbe\xad\xf7\x00\x8d\x1f\xf7\x47" +"\x07\x8c\xd3\xa1\xa3\xdf\x9f\x37\x9e\x75\xa3\x8a\xd4\x08\xf7\x47\x07\xf6\x89\x57\xad\xfb\x31\x1b\x7f\x07\xd8\x7d\xa7\x6a\x8c\x3f" +"\x08\xfb\x3f\x07\x8c\x37\xa4\x6f\xe7\x79\x08\x2f\x79\x71\x6e\x38\x1a\xfb\x3f\x07\x8a\x3f\x6f\x6a\x3e\x7c\x08\x0e\xa3\xf8\x48\xf7" +"\xd4\x15\x6b\x72\x78\x7e\x73\x1b\x79\x78\x91\x9f\x5f\x1f\xab\x45\x6b\x95\x6b\x1b\x56\x64\x71\x51\x6b\x8b\x0a\xac\xa1\xc9\xb7\x1f" +"\x0e\xfb\x37\xf7\x3c\xf8\x89\x15\x5a\x66\x67\x5c\x5b\xb1\x65\xba\xb9\xb1\xb1\xb9\xbb\x67\xb0\x5c\x1f\x7c\xfb\x8b\x15\x7e\xfb\x10" +"\x81\x5b\x6e\x2b\x08\x7d\x5e\x87\x79\x72\x1a\x4b\xaa\x66\xc0\xc1\xaa\xb0\xca\xa4\x87\x9e\x7d\xb8\x1e\x6e\xeb\x81\xbc\x7e\xf7\x0f" +"\x08\x0e\x8f\xf8\x41\xf8\xe0\x15\x63\x06\x5f\xfb\x0f\x05\x91\x73\x7c\x8d\x76\x1b\xfb\x19\x28\x20\xfb\x23\x44\xa1\x4f\xb5\x60\x1f" +"\x9d\x79\x98\x81\xac\x7b\x58\xfb\x25\x18\xb3\x06\xba\xf7\x19\x05\x86\x9e\x97\x89\x9e\x1b\xb2\xb0\x95\x9e\xad\x1f\xa6\x9a\x9f\x9e" +"\xad\xb5\x79\x9d\x18\x62\x69\x6f\x7c\x60\x1b\x69\x75\x95\xa6\x70\x1f\xdd\xf7\x7a\x05\x7d\x97\x98\x85\x9e\x1b\xb3\xa5\xa4\xb1\xb1" +"\x78\xa6\x5f\xa3\x1f\xfb\x30\xfb\xd8\x15\x75\xba\x82\xb3\xc6\x1a\xf2\xac\xcc\xbe\xa4\x9d\x79\x73\x1e\x88\x07\x0e\x8f\xf8\x14\xf8" +"\x09\x15\xfb\x06\x06\x78\xe0\x77\xf7\x03\xa1\x1a\xb1\xa1\xa4\xad\xa8\x9b\x7a\x6e\x8a\x1e\x89\x5f\x05\x65\x89\xa5\x70\xb1\x1b\xb5" +"\xa5\xa6\xb8\xd1\x51\xb6\x2e\x59\x5e\x7e\x74\x6c\x1f\x5b\x68\x6e\x4f\x4b\x1a\x6d\x8e\x72\x96\x4e\x1e\x3b\x4a\xed\x06\x8f\x80\xa9" +"\x36\x90\x77\x8d\x68\x19\x90\x77\x7e\x8d\x79\x1b\x46\x66\x6b\x4f\x55\xab\x6c\xc3\xb8\xad\x9e\xb6\xac\x1f\x5a\xc2\xa6\x7d\xb6\x1b" +"\xb3\xab\x9c\xaa\xa0\x1f\xa0\xaa\x95\xb2\x92\xda\x08\x74\x06\x54\x7c\x74\x7b\x4c\x1b\x70\x72\x91\x9b\x5f\x1f\x9b\xba\x8f\xa3\xbc" +"\x1a\x9f\x8a\x9a\x8a\x9e\x1e\xf7\x01\x06\xfb\x5f\xfb\x72\x15\x5a\x7d\x76\x77\x66\x1b\x69\x75\x9e\xa9\xab\xa1\x9f\xad\xa5\x9e\x83" +"\x73\xa6\x1f\x0e\xfb\xdd\xf7\xa5\x3b\x1d\x0e\x8f\xf8\x56\xf7\xb8\x15\xbd\xfb\x03\x07\xf7\x24\xf7\xa3\x98\xa3\x9c\x95\xad\x8e\x19" +"\xa5\xfb\x61\x71\x07\xcb\x88\x99\x83\x6b\x1a\x7f\x88\x7f\x86\x80\x1e\xfb\x0b\xfb\x7a\x7c\xa8\x7c\xaa\x7d\xa7\x7e\xa3\x19\x6d\xc5" +"\x05\x66\xd4\x82\xa1\x99\x1a\xa0\x9c\x92\xc7\x8c\x1e\xa5\xfb\xc1\x71\x07\xb4\x88\xa2\x7d\x9e\x67\xf7\x16\xfb\x93\x18\x28\x59\xf7" +"\x10\x06\x96\x76\x05\x52\xfb\x1b\x59\xf7\x1b\x5a\x07\x89\x45\x7a\x7d\x38\x85\x08\x72\xf7\xdf\xa4\x07\x3a\x91\x7b\x99\x89\xd1\x08" +"\xbc\xf7\x1b\xbd\xfb\x1b\xce\x07\x8f\x96\x05\x0e\x8f\xd5\xf8\x1e\x15\xf7\x08\x06\x7e\xfc\x2a\x05\x47\x89\x71\x5e\x66\x1b\x7f\x81" +"\x92\x94\x8e\x8d\x8e\x90\x91\x1f\x93\x95\x8e\x92\x96\x1a\xa8\x75\x9f\x6c\x6a\x75\x74\x69\x5b\xaf\x6d\xc4\xf5\xd2\xe3\xf7\x39\xa8" +"\x1e\x93\xba\x8d\xa2\x98\xf7\x76\x08\xf7\x0e\xb9\xfb\x0e\xe5\x06\xec\xa1\xbc\xb5\x97\x96\x84\x83\x89\x89\x87\x88\x86\x1e\x83\x7f" +"\x86\x7e\x7f\x1a\x72\xa3\x76\xa8\xaa\xa2\xa5\xae\xba\x63\xaa\x4d\x55\x5f\x75\x60\x6a\x1e\x68\x5e\x78\x54\x7a\x26\x08\xfb\x0c\x06" +"\x0e\x8f\xf7\xae\xab\x15\xa7\x74\x94\x7b\x6c\x1a\x5b\x71\x74\x56\x67\x6b\x99\x9a\x8f\x8f\x8f\x96\x92\x1e\xa2\x99\x93\x96\x9c\x1a" +"\xa9\x6d\xa5\x68\x67\x70\x6f\x66\x54\xce\x5e\xde\xeb\xcf\xc1\xd6\xc1\x6f\xb4\x41\xbf\x1e\xc1\x8c\xa7\x92\xa1\x9d\x08\xa2\x9e\x99" +"\xaa\xaf\x1a\xaa\x84\xa7\x7e\xa1\x1e\x6d\xbe\x59\xbc\x49\xb6\x08\x46\xb9\x68\xb2\xad\x1a\xb4\xad\xa7\xbd\xa6\xa5\x81\x80\x87\x86" +"\x84\x81\x83\x1e\x79\x7d\x82\x7c\x7d\x1a\x6f\xaa\x6e\xa8\xad\xaa\xaa\xac\xc0\x48\xb9\x3d\x34\x4d\x55\x3f\x5b\x9d\x71\xdd\x43\x1e" +"\x5d\x74\x87\x7f\x76\x1f\x69\x78\x79\x66\x59\x1a\x48\xa5\x6a\xf7\x22\xfb\x07\x1e\x64\xf7\xce\x15\xa9\xb5\x70\x4c\xcd\x1f\xac\x6c" +"\x95\x78\x70\x1a\x69\x75\x73\x6c\x6d\x76\x97\xc1\x4d\x1e\x4f\xbf\x82\x99\xb1\x1a\xab\xa1\xa2\xab\x1e\x0e\x8f\x71\xf7\x0b\x15\xc5" +"\x51\xeb\xed\x05\x71\xb5\xaf\x80\xb7\x1b\xb7\xaf\x96\xa5\xb5\x1f\xeb\x29\xc5\xc5\x29\xed\x05\xa5\xb0\x96\xaf\xba\x1a\xb9\x81\xac" +"\x70\xb6\x1e\xed\xed\x51\xc3\x2b\x2b\x05\xa4\x63\x68\x95\x5c\x1b\x5d\x67\x81\x72\x63\x1f\x2b\xeb\x51\x53\xed\x29\x05\x71\x63\x80" +"\x67\x5d\x1a\x5c\x96\x69\xa5\x64\x1e\xf7\x46\xf7\x91\x15\xd2\xc3\x50\x3f\x44\x51\x4f\x46\x44\x53\xc6\xd5\xd6\xc3\xc5\xd2\x1f\x0e" +"\xfb\x6e\xf7\x34\xf8\x28\x15\xad\xf7\x26\x95\xbe\xa2\x1a\xb2\x6f\xa7\x66\x64\x72\x6f\x60\x75\x97\x4d\xa0\x37\x1e\x8d\x84\x8f\x78" +"\x90\x75\x08\x0e\x8f\xf7\x5a\xf9\x47\xcd\x1d\xbe\xb9\x6d\xab\x60\xae\x1d\xf7\x97\xa1\x15\xfb\x08\x48\x59\x4a\x34\x1a\x46\xb4\x5c" +"\xc7\xbd\xac\xab\xbd\xba\x6e\xab\x5f\x86\x85\x8b\x8a\x85\x1e\x8a\x88\x89\x8b\x89\x1b\x80\x83\x94\x97\xb3\xad\xb4\xd6\xbf\x1f\x0e" +"\x8f\xf7\x41\xf7\x89\x74\x0a\x90\x87\x90\x86\x8f\x88\x8d\x8a\x19\x8a\x0a\xf7\x66\x9d\x15\xa7\xae\x9b\xa0\x90\x92\x08\xb1\xc0\x9a" +"\xa5\x9c\x1a\x92\x87\x8f\x83\x83\x83\x87\x7e\x7c\x1e\x8a\x8a\x89\x89\x88\x89\xfb\x5f\xfb\x38\x18\x87\x07\xf7\x62\xfb\x3a\x8c\x8a" +"\x8c\x8a\x8e\x89\x19\x90\x86\x8f\x88\x8d\x8a\x08\x83\x94\x91\x89\x91\x1b\x92\x8f\x91\x94\x9f\x70\xb6\x58\xc6\x1f\x7d\x9c\x7f\x9b" +"\x7d\xa0\x08\x0e\xfb\x37\xf7\x5d\xf7\x89\x74\x0a\x8c\x8a\x8c\x8a\x8e\x89\x19\x90\x86\x8f\x88\x8d\x8a\x08\x8a\x0a\x0e\xfb\x37\xf7" +"\x18\x7b\x1d\x0e\xc7\xf8\xac\xa3\x15\x68\x8c\x7d\x9b\xb3\x1a\xf8\x1c\x07\x39\x83\x49\x86\x74\x83\x1d\x41\x53\x79\x67\x66\x1e\x63" +"\x63\x7c\x5d\x89\x31\x08\x65\x1d\x81\x80\x5d\x86\x08\x73\xf7\x87\x3a\x0a\xf3\x07\xa5\x8a\x93\x84\x71\x1a\xfb\xc2\x07\x8c\x65\x7e" +"\x7c\x68\x87\x08\x73\xf7\x7f\x07\x0e\xc7\xf8\xac\xa3\x15\x7f\x8c\x05\x72\x8d\x7f\x9e\xae\x1a\xf8\xf5\x78\x07\x5c\x6d\x05\xa1\x55" +"\x61\x94\x55\x1b\x49\x57\x77\x65\x69\x1f\x6b\x67\x7e\x5d\x88\x31\x08\x65\x1d\x81\x80\x5d\x86\x08\x73\xf7\x87\x3a\x0a\xf7\x1e\xfb" +"\xe4\x07\x68\x80\x7a\x6f\x87\x1e\x83\x8a\x05\x73\xf7\x7f\x07\xfb\x50\xf8\x61\x15\xfb\x1e\xc9\x06\xf1\xa0\xac\xce\xa5\x9b\x83\x7e" +"\x87\x89\x85\x88\x84\x1e\x85\x80\x89\x83\x84\x1a\x7b\x94\x7c\x97\x87\x1e\x0e\x8f\xf7\xa3\x04\x31\xf8\x88\xe5\x07\x0e\x8f\xf7\x99" +"\xfb\x1a\x15\x90\xf7\x24\x8d\xe0\xa1\xf6\xa6\xc9\x19\x8c\x8d\x8b\x8c\x8c\x1a\x8d\x89\x8e\x88\x8f\x1e\x69\xb6\x77\xcc\x8d\xc8\xb1" +"\x89\x93\x89\xb3\x77\x08\x7d\xa5\x99\x87\x9b\x1b\xaa\x9e\x9f\xab\xac\x78\xa0\x6b\x7c\x80\x87\x7f\x71\x1f\x64\x79\x7b\x86\x69\x86" +"\x08\xc0\x8f\x99\xa3\xba\x1e\x99\xa7\x8f\x97\x9b\x1a\xae\x77\x9f\x67\x68\x75\x74\x66\x7c\x8e\x83\x97\x76\x1e\xa2\x62\x8f\x7b\x8d" +"\x4b\x67\x8f\x7f\x8e\x65\x9f\x08\x98\x72\x7f\x8f\x7b\x1b\x6a\x78\x78\x69\x6a\x9f\x76\xa9\x9c\x96\x8e\x98\xa3\x1f\xb0\x9f\x95\x8e" +"\xb5\x8f\x89\x38\x83\x71\x6c\x60\x08\x83\x80\x86\x82\x87\x1a\x87\x8d\x85\x8e\x84\x1e\xa5\x48\x9d\x2d\x8d\x39\x90\xfb\x24\x18\x0e" +"\x8f\xf7\x71\xf8\x65\x15\x76\x8c\x80\x8f\x6a\x9b\x08\x98\x6f\x79\x91\x7b\x1b\x6e\x77\x77\x6d\x6e\xa0\x77\xa8\x99\x99\x8f\x97\xa4" +"\x1f\xb6\x9e\x94\x8e\xb2\x8d\x89\x49\x80\x6a\x61\x47\xb4\x47\x97\x66\x8d\x4c\x68\x8d\x81\x8e\x60\x9e\x08\x97\x6f\x7d\x90\x7c\x1b" +"\x6f\x76\x76\x6f\x6d\x9f\x77\xa9\x9a\x9d\x90\x99\xa7\x1f\xa7\x99\xa7\x94\x94\x89\x08\x9d\x06\x8a\x55\x87\x7c\x75\x5a\x08\x7f\x70" +"\x88\x80\x7c\x1a\x6a\xa0\x76\xab\xab\xa3\xa2\xab\x9a\x87\x97\x7f\xa7\x1e\x74\xbe\x87\x9d\x8a\xba\xb0\x88\x98\x87\xb5\x79\x08\x7f" +"\xa4\x99\x87\x97\x1b\xaa\x9f\x9e\xa8\xaa\x79\x9d\x6d\x7a\x7e\x87\x7e\x6f\x1f\x79\x62\x7e\x87\x69\x1b\x8c\xca\x99\xba\xab\xb9\x08" +"\x90\x90\x8d\x90\x8d\x1a\x8d\x89\x90\x86\x90\x1e\x6e\xb1\x79\xc6\xc5\x1a\xb0\x8a\x99\x88\xb5\x77\x08\x7f\xa4\x96\x88\x9a\x1b\xaa" +"\x9e\x9e\xa9\xa9\x77\x9e\x6d\x7e\x7d\x87\x7f\x72\x1f\x60\x79\x7f\x87\x66\x88\x8c\xb9\x8f\x9e\xa2\xbf\x08\x97\xa7\x8f\x98\x99\x1a" +"\xab\x73\xa2\x6b\x6b\x76\x75\x6b\x7c\x8e\x80\x97\x70\x1e\xa1\x59\x8f\x7b\x8c\x55\x08\x0e\xfb\x8a\x50\x1d\xb7\xf7\xb9\xf9\x1f\x15" +"\xbd\xfd\xd9\xf7\x3f\xa4\x06\x44\x92\x87\x8e\x8a\xb5\x8a\x95\x18\xb1\x07\xf8\xf8\x07\xb1\x07\x8c\x95\x05\xb2\x91\x90\xbc\x91\x1e" +"\x8f\x96\x8c\x8c\x96\x1f\xa4\xfb\xc0\x07\xfb\x2b\x47\x4e\xfb\x1a\x32\xab\x4a\xc7\x68\x1f\xa9\x79\xa5\x84\xbe\x89\x08\xfb\xda\x07" +"\x65\x07\x8a\x81\x05\x62\x85\x87\x41\x84\x1e\x72\xf7\x43\x07\x2d\xf8\x70\x15\x40\xa6\x69\xc8\xf4\x1a\xbc\x94\xb3\x9b\xa5\x1e\x9c" +"\xa8\x9f\x97\xba\x97\x08\x0e\xfb\x26\xf7\x44\xf8\x72\x15\x3e\x4b\x4c\x3f\x3b\xc8\x4e\xdb\xd9\xc8\xc8\xd9\xda\x4d\xc9\x3e\x1f\x0e" +"\xfb\x37\xec\x6d\x0a\x0e\x8f\xf7\xc2\x6d\x0a\xfb\x97\x75\x6f\x0a\x8f\xf7\xc2\x85\x1d\xfb\x97\x75\xa9\x0a\x6b\x59\x5b\xa8\x6c\xb8" +"\x90\x90\x67\x1d\x7e\x65\x69\x61\x40\x57\x1f\x0e\x8f\xf7\x17\x7b\x1d\xf7\x4a\x79\x15\x6f\x68\x7b\x76\x86\x84\x08\x65\x56\x7c\x71" +"\x7a\x1a\x83\x8f\x88\x93\x94\x91\x8e\x99\x9a\x1e\x8e\x8c\x8d\x8d\x8d\x8d\xf7\x5f\xf7\x38\x18\x8f\x07\xfb\x62\xf7\x3a\x05\x9a\x78" +"\x7f\x93\x86\x1b\x84\x86\x85\x82\x77\xa6\x61\xbe\x4e\x1f\x98\x7c\x97\x7b\x9a\x75\x08\x0e\xf8\x8c\xf7\x3a\xf7\x30\x15\x2d\x1d\xf7" +"\xe1\x16\x2d\x1d\xf7\xe1\x16\x2d\x1d\x0e\xf8\x8c\xf8\xd0\xf9\x56\x15\x5b\x06\x4b\x58\x5a\x70\x49\x1b\x67\x78\x92\xa2\x6f\x1f\xa0" +"\x71\x78\x93\x71\x1b\x22\x2f\x27\xfb\x05\x39\xbf\x52\xd5\xaf\xb0\x9b\xa7\xa7\x1f\xb4\xb4\xa8\xd9\xcf\x1a\x98\x8a\x96\x89\x9f\x1e" +"\x81\xa4\x99\x88\xa0\x1b\xb4\xab\x97\xa9\xb3\x1f\xfc\x18\xfd\x23\x05\xbb\x06\xd3\xf9\x2b\x15\x90\x8f\x89\x84\x95\x1f\x96\x84\x8e" +"\x8a\x92\x88\x08\xa5\x81\x91\x81\x69\x1a\x20\x4e\x26\x4b\x6a\x7a\xa3\xb7\xe4\xc9\xf7\x14\xb4\x88\x1e\xf9\x42\xfb\xc1\x15\x21\x31" +"\x29\xfb\x06\x36\xbd\x55\xd8\xb1\xaf\x9a\xa6\xa5\x1f\xb7\xb9\xa7\xd4\xd1\x1a\xd6\x64\xb8\x4b\x1e\x9e\x6a\x15\xad\xa4\x68\x5d\x58" +"\x76\x48\x6e\x61\x1f\x69\x74\x72\x7c\x6e\x1b\x6b\x7a\xa2\xb7\xbf\xa5\xde\xab\xb9\x1f\xa8\x9e\x9e\x98\xa0\x1b\xfc\x11\xac\x15\x24" +"\x2e\x27\xfb\x01\x35\xbd\x53\xd8\xb2\xae\x9a\xa6\xa5\x1f\xb8\xba\xa7\xd4\xd1\x1a\xd5\x64\xb8\x4a\x1e\x9f\x6a\x15\xad\xa4\x69\x5d" +"\x57\x76\x48\x6e\x61\x1f\x6a\x74\x72\x7b\x6e\x1b\x69\x7b\xa2\xb9\xbe\xa6\xdc\xaa\xb9\x1f\xa8\x9f\x9e\x99\xa0\x1b\x0e\x8f\xf7\x8b" +"\xf7\x95\x15\x42\x83\x7d\x4c\x64\x1e\x2f\x53\x6e\x62\x46\x1a\x27\xda\x49\xf7\x0d\xf7\x02\xd9\xc7\xdf\xb7\x6e\xab\x63\x66\x72\x71" +"\x65\x77\x90\x7f\x9c\x78\x1e\x97\x7e\x8e\x85\x81\x1a\x73\x73\x7b\x67\x55\x6c\xba\xde\xc0\x95\xac\xac\xca\x1e\xa3\xb9\x93\xa2\xa7" +"\x1a\x92\x8b\x97\x8a\x98\x1e\x8a\x99\x05\x7c\xf7\x88\x15\x5b\x66\x67\x5b\x5c\xb1\x65\xb9\xb9\xb2\xb2\xb8\xbb\x66\xb0\x5c\x1f\x0e" +"\xfb\x37\xf7\x8a\xf8\xa4\x28\x1d\xfb\x37\xe1\xf8\xa4\x32\x1d\xfb\x37\xf7\xaa\xf8\xa4\x20\x0a\xfb\x37\xa5\xf8\xb9\x64\x0a\xfb\x37" +"\xf7\xdf\xf9\x11\x22\x0a\xfb\x37\xf7\xa6\x6c\x0a\xfb\x37\xf7\x39\xf9\x2f\x2a\x1d\xfb\x37\xc8\xf9\x2f\x28\x0a\xfb\x37\xf7\x3b\xf9" +"\x82\x38\x1d\xfb\x37\xf7\x08\x2b\x15\x96\x83\x05\x8e\x96\x92\x8c\x95\x1b\xa8\x9c\x7e\x74\x70\x77\x7d\x65\x7b\x7e\x8e\x94\x73\x1f" +"\x85\x8d\x2f\x0a\xa7\xcb\x05\x61\x06\x0e\xfb\x37\x7e\xf8\xa4\x87\x1d\xca\xfb\x31\x32\x1d\xfb\x37\xf7\x32\xab\x15\x86\x85\x8a\x89" +"\x83\x81\x08\x62\x59\x7e\x71\x6d\x1a\x5c\xb7\x69\xc9\x92\x0a\x62\x75\xa1\xb5\x9a\x8e\x9d\x94\xaa\x1f\x8e\x95\x8c\x8e\x8c\x92\x08" +"\x0e\xfb\x37\xf7\xe3\xf9\x54\x21\x0a\xf8\x8c\xf3\x1d\xf8\x8c\xd0\x1d\x57\x69\x68\x08\x62\x63\x50\x77\x36\x1b\x4f\x7b\x96\xb6\x1f" +"\xf7\x87\x07\xf7\x04\x84\xa4\x71\x9d\xb9\x1d\xa3\x99\x91\xc3\xe5\xc7\x7a\x68\xa7\x1e\xa0\x71\x95\x72\x98\x4c\xa4\x0a\x82\x77\x78" +"\x6b\x1e\x8a\x88\x88\x86\x88\x86\x6b\x0a\x7c\x42\x87\x08\x3b\xf7\xd2\x15\xf7\x35\xf7\xb6\x05\x92\xfb\xb6\x06\x0e\xfb\x58\xf7\xb7" +"\xf8\x4f\x15\x85\x85\x05\x89\x89\x8a\x8b\x88\x1b\x83\x88\x8f\x96\x1f\xf7\x30\x07\xbe\x5a\xaa\x3d\x3c\x59\x6e\x5d\x72\x9a\x7c\xa6" +"\xa7\x9f\x99\xa0\x92\x88\x91\x83\x93\x1e\x84\x91\x89\x90\x8e\x1a\x97\x9d\x95\xa2\xaf\x99\x7c\x66\x1e\x63\x07\xfb\x1b\x68\x64\x72" +"\x59\x1a\x64\xa9\x70\xb7\xb1\xa8\x97\xa8\xae\x1e\x6d\x92\x99\x80\xab\x1b\xa8\x9f\x94\xa4\xa3\x1f\xfb\x15\xad\x15\x79\x7e\x7d\x83" +"\x7b\x1b\x78\x7e\x9c\xa2\xad\xa4\xa3\xbd\x9a\x1f\x0e\xf7\x3f\xf9\x12\xf7\x77\x15\x6e\x06\x6a\x3d\x77\x6c\x68\x6b\x08\x66\x62\x53" +"\x79\x3d\x1b\x4e\x79\x98\xb6\x1f\xf7\xba\x07\xf7\x0f\xd7\x05\xc8\x07\xfb\x0f\x3f\x05\xf7\x09\x07\x8d\xd8\x99\x98\xe0\x8d\x08\xa4" +"\xfb\xf1\x72\x07\xcd\x88\x9e\x7b\x8c\x57\x08\xfb\x7d\x07\x3a\x5a\x05\x4e\x07\xdc\xbc\x05\xfb\x52\x07\x8a\x57\x7d\x80\x44\x83\x08" +"\x72\xf8\xd6\x07\x0e\xf7\xae\x84\x1d\x68\xca\xbf\x7d\xd3\x1b\xf7\x63\xf7\x27\xf7\x27\xf7\x64\xcf\x7b\xcb\x6c\xc2\x1f\x75\xb1\x78" +"\xa0\x5b\xb3\x08\xfc\x09\xfc\x6b\x15\x7a\xc7\x86\xb6\xd5\x1a\xf7\x68\x99\x1d\x0e\xf8\x8c\xfa\x69\xf7\x67\x15\x70\x06\x6a\x45\x76" +"\x6d\x67\x6f\x08\x69\x61\x5a\x7d\x41\x1b\x51\x7d\x95\xb1\x1f\xf7\x8e\x07\xf5\x85\xa9\x6b\x9a\xfb\x0b\x08\xa2\xf7\xe6\x74\x06\x71" +"\xfb\x13\x78\x78\x21\x89\x08\xf7\x8d\x07\x9f\x98\x91\xb5\xd4\xc5\x80\x79\xa9\x1e\xb4\x71\x9b\x6b\x99\x3c\x08\xa5\xf7\x5d\xfc\x30" +"\x06\x89\x06\x8a\x06\x5b\x8e\x78\x8c\x05\x8e\x55\x75\x8c\x79\x1b\xfb\x5f\xfb\x1f\xfb\x22\xfb\x64\xfb\x04\xb5\x29\xd4\x4f\x1f\x5e" +"\xc2\xd8\x73\xe5\x1b\x99\x9a\x8c\x8c\x99\x1f\x8d\x9d\xb5\x8c\xba\x1b\xf8\x42\x06\xfc\x67\xf7\x68\x15\x27\x87\x6a\x7a\x76\x1e\x75" +"\x7a\x73\x82\x5f\x1b\x48\x63\xa0\xbb\x70\x1f\x73\xb5\x7b\xe6\xe6\x1a\xf7\x70\xc9\xf7\x04\xf7\x0f\xaf\xa6\x81\x77\x98\x1e\x9a\x76" +"\x8f\x71\x43\x1a\x0e\xfb\x3a\xf7\x39\xf9\x44\x15\x36\x4d\x4d\x37\x38\xc9\x4d\xde\xe2\xc9\xc7\xe1\xde\x4c\xc9\x37\x1f\x76\x04\xb0" +"\x97\x6c\x27\x32\x7f\x6d\x65\x67\x7e\xab\xe4\xed\x97\xaa\xb1\x1f\x0e\xf9\x34\xf7\x14\x15\x5b\x65\x67\x78\x5a\x1b\x3a\x80\x0a\x65" +"\x65\x99\x4a\x1b\x21\x3e\x56\x43\x64\xa6\x72\xb5\xb3\xa2\x9f\xb0\x9e\x87\x94\x7e\x9a\x1f\x82\x95\x88\x90\x92\x1a\x9f\xa6\x9a\xb1" +"\xc3\xa1\x74\x51\x1e\x3b\x07\xfb\x15\x61\x5f\x7a\x69\x74\x08\x65\x70\x79\x6a\x5f\x1a\x44\xb4\x66\xd8\xcd\xc5\xa6\xc3\xc3\x1e\x91" +"\x91\x05\x4d\xb1\xb2\x75\xd1\x1b\xea\xc2\xab\xe5\xc6\x1f\xfc\x21\x6b\x15\x72\x73\x7d\x84\x73\x1b\x65\x78\xa3\xba\xca\xaa\xac\xe3" +"\xab\x1f\xf7\x1e\xb0\x15\xf7\x09\x9d\xb4\xbe\xbb\x9b\x6c\x2d\x1e\x6a\x07\x0e\xfb\x6e\x29\x1d\x0e\xfb\x6e\xf7\x62\xf8\x24\x15\xec" +"\xdb\x05\xbd\x07\x2a\x3b\x05\xf7\x76\x5a\x1d\xfb\x7d\x07\x32\x43\x05\x59\x07\xe4\xd3\x05\xfb\x77\x98\x0a\xa3\x07\x6b\x7b\x9f\xb3" +"\x8a\x1f\x0e\x8f\xe8\x1d\x67\x6e\x92\x65\x1b\xfb\x16\x2a\x23\xfb\x20\x3b\xa4\x52\xc7\x53\x1f\x3f\xfb\x14\x05\xba\x06\xca\xf4\x05" +"\x78\xaf\xaa\x83\xb3\x1b\xf7\x16\xea\xf2\xf7\x20\xdd\x71\xc7\x4d\xc2\x1f\xfb\x6b\xfb\xb2\x15\x8a\x9f\x8b\xa1\xa7\x1a\xf7\x48\xaa" +"\x1d\x68\x77\x9d\xb8\x7e\x1e\x0e\xf9\x38\xf7\x11\x15\x57\x5d\x71\x7c\x5d\x1b\x3d\x67\xc0\xf7\x06\x1f\x8e\x07\x9c\xf7\x8d\x07\x87" +"\xd0\x84\xac\x78\xaf\x08\xc6\x6c\x53\xaa\x41\x1b\x59\x6d\x80\x65\x5a\x1f\xae\x68\x67\x99\x55\x1b\xfb\x18\x2d\x25\xfb\x22\xfb\x24" +"\xe6\x28\xf7\x18\xc5\xb3\x99\xad\xb3\x1f\x69\xa9\xac\x7d\xbf\x1b\xdf\xbc\xa9\xe8\xcc\x1f\xfb\x90\xf7\x41\x15\xc1\x07\xd2\xa2\xb0" +"\xb5\xb3\x9c\x6c\x40\x8e\x1e\x83\x8c\x75\x8c\x71\x1e\xfb\x9b\xfb\x19\x15\x2f\x77\x62\x5d\x53\x78\xc4\xf7\x43\xf7\x2a\x9c\xb9\xc2" +"\xbd\x9e\x66\x2b\x1e\x0e\xc7\x9e\x16\xf7\x52\xf8\xde\x06\xbd\xa0\xa6\xb2\xbc\xa0\x64\x2d\x28\x7e\x74\x52\x8a\x1e\x69\x07\xac\x89" +"\x9b\x86\x9a\x7f\x08\xa5\x75\x97\x59\x34\x1a\xfb\x19\x7d\x64\x5c\x82\x87\x8c\x91\x82\x1e\x81\x92\x7d\x69\x05\x80\xa9\x9b\x87\x9d" +"\x1b\xf4\xdf\xe6\xf7\x07\xc0\x7a\xb7\x6a\xaa\x1f\x6b\xaa\x69\x9c\x3a\xa2\xbc\x96\xa1\x94\xa5\x9d\x08\xb1\xa5\xa0\xb1\xb5\x1a\xe4" +"\x36\xcc\xfb\x06\xfb\x0d\x35\x3e\x20\x1e\xfc\x38\x07\x8a\x5c\x83\x81\x61\x85\x08\x0e\xfb\x58\xf7\xa5\xf7\xbb\x8e\x1d\x0e\xd5\xf8" +"\x55\xf7\x00\x15\xe3\xf7\xb7\xfc\x8c\x33\xf8\x34\x06\x0e\xc7\xf8\x6f\xf8\x61\x15\xfb\x1f\xfb\xfb\x06\x79\x6f\x72\x82\x76\x1b\x69" +"\x74\xa9\xb7\x1f\xf7\xcc\xfb\x1f\xfc\x09\x07\x54\x85\x61\x7a\x4c\x1e\x84\x6e\x88\x7c\x7e\x1a\x5a\xa3\x6f\xb4\xb4\xa1\xa6\xbc\x9d" +"\x87\x9e\x81\xad\x1e\x7e\xb4\x89\x92\x87\xac\x08\x72\xac\xa7\x81\xb4\x1b\xb5\xa4\x98\xb2\xab\x1f\x67\xa1\xa9\x7b\xbc\x1b\xb5\x9f" +"\x94\xb3\xb7\x1f\xa3\x07\x86\x82\x86\x8a\x84\x1b\x75\x79\xa0\xa5\x1f\x0e\xf8\x8c\xf7\x8f\xf9\x20\x15\xb9\x06\xae\xa0\x76\x60\x95" +"\x1f\xa2\xe3\xfb\xfe\x33\xa2\x06\xb6\x95\xa0\xa0\xad\x1b\xb9\xfb\xc9\x06\x60\x8a\x8a\x5a\x87\x1e\x74\xf7\x56\xa2\x07\x59\x8f\x8a" +"\x8c\xb6\x1a\xf8\x35\x43\x15\x98\x06\xf7\x29\xf7\xbe\x05\xfb\x76\x07\x6d\x89\x85\x85\x87\x1e\x83\x86\x87\x8b\x6d\x88\x08\x74\xf7" +"\x56\xa2\x07\x59\x8f\x8a\x8c\xb6\x1a\xf7\x9a\x07\xb0\x95\x93\xb7\x8e\x1e\xa2\xfb\x0a\x07\xfb\x2b\xfb\xb5\xfb\x22\xf7\xb5\x05\xfb" +"\x1f\x74\x06\xa9\x8a\xa4\x79\x9a\x6a\x08\xfb\x81\x07\x54\x83\x80\x5f\x88\x1e\x74\xf7\x19\xa2\x07\x5f\x8e\x83\x96\xc2\x1a\xf7\x5f" +"\x07\x0e\x57\x0a\xf7\x92\xf8\xd1\x3b\x1d\xfc\x1b\x89\x1d\xf8\xad\xfb\x28\x15\x7b\x06\x79\x60\x84\x88\x47\x8a\x08\x35\x90\x06\xe8" +"\xe2\x05\xc1\xbe\x9f\xae\xb8\x1a\xcb\x59\xb9\x46\x4a\x5e\x65\x37\x69\x1e\xa3\x06\xb2\xa0\xa0\x9a\xad\x1b\xb5\xac\x6a\x60\x51\x68" +"\x5b\xfb\x29\xfb\x29\x1f\x7d\xf7\xa2\x07\x0e\xd5\xf7\x85\xf7\xfb\x15\xfb\x64\x33\xf7\x64\xfb\x23\xe3\xf7\x23\xf7\x64\xe3\xfb\x64" +"\xf7\x65\x33\x06\xfb\x64\xfc\xcc\x15\xf8\x8c\xe3\xfc\x8c\x06\x0e\xf7\x07\x9b\xb1\x0a\xc3\x07\xf7\x33\x8c\xaf\x91\xc2\xac\x08\xc5" +"\xad\xa9\xbf\xcc\x1a\xf7\x0c\x2e\xc9\xfb\x47\x1e\x49\x97\x06\x8d\xd5\x93\x94\xd9\x95\x08\xa4\xfb\xe2\x72\x07\x4e\x1d\xf8\x57\x15" +"\xa2\x9c\x97\xad\xdd\x4b\x0a\x75\x1e\x76\x73\x6a\x84\x44\x1b\x0e\xf7\x92\xf9\x52\xf7\x2d\x93\x1d\x91\xf7\xfc\xd6\x1d\xfc\x22\x89" +"\x1d\x0e\xd5\xc1\x0a\xf7\x90\xf7\xdc\x15\x63\x67\x67\x63\x61\xae\x68\xb5\xb3\xaf\xb0\xb3\xb3\x67\xaf\x62\x1f\xfc\x33\x04\x62\x68" +"\x68\x63\x61\xae\x67\xb5\xb2\xb0\xb0\xb4\xb3\x67\xae\x62\x1f\x0e\xfb\xa8\xcd\x78\x15\xe3\xf7\xa9\x33\x06\xf7\x30\x04\xe3\xf7\xa9" +"\x33\x06\x0e\x2b\xf7\x5c\xf9\x44\x15\x3b\x4c\x4c\x3b\x3c\xca\x4b\xd9\xdd\xca\xc9\xdc\xdb\x4c\xca\x3b\x1f\x67\x04\xc2\xba\x5a\x51" +"\x50\x5d\x5b\x52\x54\x5d\xbc\xc5\xc6\xb9\xbb\xc3\x1f\x0e\xc7\x97\x1d\x4f\x68\x74\x50\x6e\x1f\xf7\xb1\xfb\x56\x73\x07\xb8\x83\x94" +"\x82\x8c\x62\x08\xfd\x61\x79\x0a\xfb\x0e\x6f\x4e\x54\x69\x71\x9f\xb4\x78\x1f\x0e\xf7\x92\xf8\xf9\x3b\x1d\xfc\xf9\x29\x80\x1d\xf7" +"\x00\xe1\xd0\xe2\xbc\x71\xaf\x59\x9f\x1e\x8f\x07\xb0\x9f\x98\x9e\xae\x1a\xbe\x64\xa9\x48\x4a\x5b\x6e\x4d\x67\x1e\xf9\x24\xfc\x50" +"\x93\x1d\x0e\xfb\x58\xf7\xc0\xf8\x26\x15\x7b\x06\x60\x79\x83\x87\x48\x1b\x2f\x06\xee\xe7\x05\xc1\xbd\x9f\xaf\xb7\x1a\xcc\x5a\xb9" +"\x45\x4a\x5e\x65\x37\x69\x1e\xa3\x06\xb2\xa0\xa0\x9a\xad\x1b\xb5\xac\x69\x61\x51\x68\x5b\xfb\x29\xfb\x29\x1f\x7d\xf7\xa2\x07\x0e" +"\xf7\x8f\xf7\x63\xf8\x96\x15\xb8\x89\x8c\x8a\x62\x1a\xfb\x93\x07\x63\x8a\x8a\x5e\x88\x1e\x79\xf7\x40\x9d\x07\x5e\x8e\x8a\x8c\xb3" +"\x1a\xf4\xb0\x07\xa0\x69\x95\x7b\x9d\x67\x08\x4c\xac\x99\x79\x9b\x1b\xdc\x96\x06\x76\x9f\x77\xa4\x6e\xb3\x51\xdd\x18\xc1\xa1\xa5" +"\xad\xbc\x1a\xc6\x5f\xb0\x44\x1e\xfb\x55\x06\xf7\x12\x75\x15\xaf\x06\xb4\x9f\x71\x56\x52\x75\x6b\x63\x1f\x68\x06\xb4\xf7\xf1\x60" +"\x0a\xd5\xc1\x0a\x0e\x8f\xf7\x94\xf8\xd2\x15\xb4\x63\xa5\x61\x9e\x52\x89\x88\x18\xa9\x71\x74\x96\x61\x1b\xfb\x13\x2a\x22\xfb\x1f" +"\xfb\x20\xeb\x24\xf7\x16\xf7\x22\xde\xf7\x05\xf7\x56\xcf\x81\xc6\x76\xbe\x1f\x73\xc8\x72\xab\x4e\xbd\xe7\xba\x18\x5a\xa9\x31\x5d" +"\x59\xa5\x5a\x99\x4e\x91\x19\x5d\x72\xbd\x82\xb3\x79\xb6\x6c\x19\xfb\x09\x50\xbb\x6c\x05\xf5\x3f\x15\xc4\x9f\x55\xfb\x30\xfb\x37" +"\x78\x57\x51\x71\x78\x96\xa1\x7e\x1f\x7b\xa9\x85\xb9\xeb\x1a\xf4\x92\xbe\x9c\xaa\x1e\xa1\x97\x9d\x96\xa5\x1b\x0e\xd5\xf7\x73\xf7" +"\x91\x15\xfb\x43\xfb\x43\xc9\x4d\xf7\x43\xf7\x44\xf7\x43\xfb\x44\xc9\xc9\xfb\x44\xf7\x43\xf7\x44\xf7\x43\x4d\xc9\xfb\x43\xfb\x44" +"\xfb\x43\xf7\x44\x4d\x4d\x05\x0e\xfb\x58\xaf\xf8\xe2\x80\x1d\xf7\x01\xe0\xd0\xe2\xbe\x71\xad\x55\xa1\x1e\xb4\xa1\x98\x9d\xaf\x1a" +"\xbe\x64\xa9\x48\x4a\x5b\x6e\x4d\x67\x1e\x0e\xf7\x8f\xf8\xa1\xf7\x94\x15\x4a\x6b\x67\x71\x53\x1b\x3c\x5f\xcb\xf7\x07\xf7\x06\xb7" +"\xca\xda\xc4\xac\x70\x4d\x9c\x1f\x9e\xd3\x06\x95\x85\x90\x7b\x91\x1e\x99\x64\x70\x90\x66\x1b\xfb\x1e\x33\x3b\xfb\x11\xfb\x0d\xde" +"\x3f\xf7\x17\xa9\xa7\x8f\x95\xb0\x1f\x90\x8d\x92\x8c\x8b\x1a\x9e\x8f\x97\x94\x95\x1a\x9b\xd5\x05\xfb\x3e\xf8\x47\x60\x0a\x26\x0a" +"\xfb\x0e\xf8\x8a\x22\x1d\xac\x9f\x92\x95\xa2\x1a\xa5\x78\x9d\x6e\x77\x7a\x82\x78\x7b\x1e\x0e\x26\x0a\xd2\xf8\x8a\x20\x0a\x26\x0a" +"\xfb\x27\xf9\x15\x41\x0a\xa7\xaf\x4a\x0a\x26\x0a\xbd\xf8\x8a\x28\x1d\x8d\x1d\x99\xb2\xf0\x1e\xf7\x75\x06\xad\x3c\x97\x68\x7d\x1d" +"\x61\xf9\x5c\x15\x51\x5a\x5a\x53\x4e\xba\x5c\xc6\xc7\xba\xba\xc6\xc5\x5b\xbc\x44\x1d\x6f\x6b\x6c\x70\x71\x6b\x6b\x4c\x0a\x0e\x26" +"\x0a\xfb\x42\xf8\x9f\x15\xa7\x8f\x9f\x9e\xa5\x1b\x98\x93\x88\x78\xb5\x1f\xa8\x7e\x05\x83\x9e\xa5\x85\x9e\x1b\xc5\xaf\xb2\xe3\xa2" +"\x1f\x60\x06\x67\x7f\x7d\x7e\x70\x1b\x7f\x88\x8c\x96\x72\x47\x0a\x4e\x66\x64\x35\x79\x1f\x0e\xf8\x25\x78\x15\xf7\x09\x8c\xd6\xb1" +"\xe9\xf6\x6d\xa4\x18\x7c\x0a\xb5\x79\x65\xb7\x1e\xb6\x65\xa3\x68\xad\x40\x37\x0a\x52\x5a\x96\x5b\x1b\xfb\x5c\xfb\x29\xfb\x2d\xfb" +"\x62\xfb\x50\xf7\x11\xfb\x22\xf7\x4a\x79\x1f\x8e\x8a\x68\x3c\x96\x83\x05\x8e\x96\x93\x8c\x94\x73\x0a\xf7\x3f\x24\x0a\xf7\x7b\xc9" +"\x15\xc3\x06\xf7\x22\xe3\x05\xaa\x3c\x1d\x7b\x1e\x0e\xf7\x3f\x24\x0a\xf8\x3b\xc9\x15\xc4\x06\xfb\x10\xf7\x44\x05\x30\xea\x1d\xed" +"\x05\x0e\xf7\x3f\x24\x0a\xf7\x62\xf7\x5d\x33\x0a\xf7\x3f\x24\x0a\xf8\x1b\xc9\x15\xfb\x1d\x42\x0a\x20\x27\x0a\xfb\x94\x83\x0a\x20" +"\x27\x0a\x4b\xf9\x76\x20\x0a\x20\x27\x0a\xfb\xad\xfa\x01\x33\x0a\x20\x27\x0a\x25\xf9\x76\x28\x1d\x30\x1d\xf7\x5a\xf9\x72\x92\x1d" +"\x7f\x88\x8c\x96\x73\x1f\x63\x9d\x05\x98\x6e\x74\xbd\x0a\xf7\xae\x26\x1d\x31\xdb\x32\x1d\xf7\xae\x26\x1d\xf1\xdb\x20\x0a\xf7\xae" +"\x26\x1d\xfb\x07\xf7\x6f\x33\x0a\xf7\xae\x26\x1d\xd1\xdb\x28\x1d\xf7\xae\x26\x1d\xfb\x2a\xf0\x92\x1d\x80\x87\x8c\x96\x73\x47\x0a" +"\x4d\x50\x0a\xc7\x33\x1d\x82\xf8\x4b\x21\x0a\x24\x1d\xfc\x1c\xe2\x22\x1d\xab\x3c\x1d\x7a\x1e\x0e\x24\x1d\xfb\x5c\xe2\x20\x0a\x24" +"\x1d\xfc\x3c\xf7\x76\x41\x0a\xa7\xaf\x4a\x0a\x24\x1d\xfb\x93\xe2\x28\x1d\x2c\x0a\xfc\x16\xe2\x85\x0a\x2c\x0a\xfc\x33\xf7\x76\x33" +"\x0a\xf7\x3f\x37\x1d\x22\xfa\x26\x21\x0a\x8f\x23\x1d\xfb\x1f\xf7\xaf\x43\x0a\xa5\x78\x9d\x6e\x77\x7b\x45\x1d\x8f\x23\x1d\xd0\xf7" +"\xaf\x20\x0a\x8f\x23\x1d\xfb\x2e\xf8\x3a\x28\x0a\x8f\x23\x1d\xaf\xf7\xaf\x15\xfb\x1c\x42\x0a\x8f\x23\x1d\x56\xf8\x8d\x38\x1d\x8f" +"\x23\x1d\xfb\x4b\xf7\xc4\x15\xa7\x8e\x9f\x9e\xa4\x1b\x99\x91\x89\x77\xb8\x1f\xa8\x7e\x05\x83\x9d\xa5\x85\x9f\x1b\xc3\xb1\xb3\xe2" +"\xa2\x4c\x1d\x57\xf7\x9d\x7e\x15\xd0\x95\xbc\xaa\xba\xca\x79\x9d\x18\x5a\x0a\xfb\x18\xd9\x2e\xf7\x0b\x80\x1f\x66\x38\x96\x83\x05" +"\x8e\x96\x92\x8c\x95\x73\x0a\x57\x25\x1d\xfb\x1f\xf7\x8a\x4f\x1d\x57\x25\x1d\xbd\xf7\x8a\x20\x0a\x57\x25\x1d\xfb\x42\xf8\x15\x28" +"\x0a\x57\x25\x1d\x99\xf7\x8a\x28\x1d\xfb\x6e\x29\x1d\xfb\x5f\xf8\xa4\x32\x1d\xfb\x6e\x29\x1d\x80\xf8\xa4\x20\x0a\xfb\x6e\x29\x1d" +"\xfb\x78\xf9\x2f\x15\x6a\x6d\x6d\x69\x67\xa8\x6d\xad\x4d\x1d\xfb\x6e\x29\x1d\x60\xf8\xa4\x28\x1d\xc7\x2d\x0a\xfc\x25\xf8\xb9\xaf" +"\x1d\xc4\xaf\xb3\xe2\xa3\x4c\x1d\x8f\x27\x1d\x39\xe1\x22\x1d\xaa\x3c\x1d\x7b\x1e\x0e\x8f\x27\x1d\xf7\x02\xe1\x20\x0a\x8f\x27\x1d" +"\x20\xf7\x75\x15\x6a\x6d\x6d\x69\x67\xa7\x6d\xae\x4d\x1d\x8f\x27\x1d\xd8\xe1\x15\xfb\x1c\x42\x0a\x8f\x27\x1d\xfb\x22\xf6\xaf\x1d" +"\xc3\xb1\xb3\xe2\xa2\x4c\x1d\x20\x2f\x1d\xbb\xf8\x0e\x21\x0a\xc7\x23\x0a\xfb\xf4\xf8\x90\x4f\x1d\xc7\x23\x0a\xfb\x2b\xf8\x90\x20" +"\x0a\xc7\x23\x0a\xfc\x0e\xf9\x1b\x28\x0a\xc7\x23\x0a\xfb\x47\xf8\x90\x28\x1d\x8f\x2a\x0a\xfb\xca\xe6\x38\x0a\x8f\x2a\x0a\xfb\xd4" +"\xf7\x7a\x28\x0a\x57\x2e\x0a\x88\xf9\x54\x21\x0a\x3b\xf7\xf9\xf7\xbc\x15\x74\x8c\x85\x91\xa2\x1a\xf7\x28\x07\xc0\x6a\xad\x59\x6a" +"\x73\x7e\x6d\x73\x1e\xaf\xfb\x0b\x77\x07\xa6\x87\x8e\x87\x8c\x73\x08\xfb\x42\x07\x8a\x73\x88\x87\x70\x86\x08\x77\xf7\x29\x9f\x07" +"\x75\x8e\x84\x92\xa0\x1a\xf7\x32\x07\x8c\x07\x90\x90\x05\x9c\x98\x99\x93\x9a\x1b\x9d\x94\x7c\x6c\x1f\xfb\x23\x07\x8a\x75\x85\x84" +"\x77\x89\x08\x77\xf7\x25\x07\x0e\xf7\x1c\xf7\x81\xf8\x35\x15\xf2\xfb\xe1\x06\x8a\x5f\x82\x7f\x66\x87\x08\x73\xf7\xa0\xa3\x07\x46" +"\x8d\x7f\x96\x8a\xcd\x08\xf7\xce\xe2\xb7\x34\x39\x1d\xb0\xa4\xa4\xb0\xc6\x51\xb4\x36\x58\x61\x7d\x71\x6d\x1e\xa4\x73\x5f\x9a\x59" +"\x1b\x47\x57\x73\x5f\x70\x1f\x9a\x0a\x73\xf7\x87\xa3\x07\x63\x8d\x85\x96\x8a\xcd\x08\xf7\xfa\x04\xf7\x0e\x07\xc2\x99\xa1\xaf\x9d" +"\x96\x84\x7f\x86\x88\xbe\x0a\x70\x9e\x76\xa8\x85\x1e\x8a\x7a\x8a\x7b\x67\x1a\x0e\xf7\xfc\xa6\xf8\x61\x15\x5f\xc4\xfb\xe1\x07\xbb" +"\x1d\xf7\xce\xf7\x1e\xfb\xe1\x07\x8a\x5f\x83\x80\x65\x86\x08\x73\xf7\x7d\x3a\x0a\xf3\x07\xa5\x8a\x93\x84\x71\x1a\xfb\xc2\x07\x8c" +"\x65\x7e\x7c\x68\x87\x08\x73\xf7\x7f\xa3\x07\x68\x8c\x7d\x9a\xb4\x1a\xf8\x1c\x07\x39\x83\x48\x86\x75\x83\x1d\x32\x50\x73\x56\x65" +"\x1e\xbb\x7c\x57\xa8\x42\x1b\x48\x57\x73\x5f\x70\x1f\x76\x68\x83\x62\x35\x1a\xf7\x1f\x16\x39\x1d\x95\x90\x8c\x8f\x97\x1e\x88\x7b" +"\x8a\x7f\x89\x5e\x08\x0e\xf7\xfc\xa5\xf8\x61\x15\x5f\xc4\xfb\xe1\x07\xbb\x1d\xf7\xce\xf7\x1e\xfb\xe1\x07\x8a\x5f\x83\x80\x65\x86" +"\x08\x73\xf7\x7d\x3a\x0a\xf7\x1e\xfb\xe4\x07\x68\x80\x7a\x6f\x87\x1e\x83\x8a\x05\x73\xf7\x7f\xa3\x07\x7f\x8c\x05\x72\x8d\x7f\x9e" +"\xae\x1a\xf8\xf5\x78\x07\x5c\x6d\x05\xa1\x55\x61\x94\x55\x1b\x40\x55\x73\x5a\x69\x1f\xbb\x77\x5b\xa4\x44\x1b\x48\x57\x73\x5f\x70" +"\x1f\x76\x68\x83\x62\x35\x1a\xf7\x1f\x16\x39\x1d\x95\x90\x8c\x8f\x97\x1e\x88\x76\x8a\x7e\x89\x64\x08\xf7\xa9\x16\xfb\x1e\xc9\x06" +"\xf1\xa0\xac\xce\xa5\x9b\x83\x7e\x87\x89\x85\x88\x84\x1e\x85\x80\x89\x83\x84\x1a\x7b\x94\x7c\x97\x87\x1e\x0e\xf7\x92\xf7\x57\xf9" +"\x47\x15\x7c\x06\xfb\x26\x48\x94\x77\x05\x95\x9c\x94\x8e\x94\x1b\x9b\x92\x7f\x71\x1f\xfb\x8f\x07\x8c\x6a\x84\x82\x6d\x89\x08\x73" +"\x78\xf7\x63\x9e\x7a\x06\x6e\x8d\x83\x94\x8c\xac\x08\x35\xfb\xdc\xc0\x0a\xf3\xab\x1d\x56\x6c\x7a\x71\x5c\x1a\x4a\xbd\x5f\xd7\xd3" +"\xbe\xbe\xd3\xb7\x7b\xa9\x5a\xb7\x1e\x6c\xa3\x15\x5c\xae\x79\xa4\xab\x1a\xa4\x9e\xa0\xa1\xa4\x9b\x71\x62\x72\x85\x73\x80\x75\x1e" +"\x57\x41\x15\xb8\x45\x0a\xbe\xb6\x8f\x9b\x9f\xa7\x1e\x0e\xf7\x92\xb4\xf8\xda\x15\xad\x9c\x9d\x97\xa9\x1b\xae\xa2\x72\x64\x63\x6e" +"\x6f\x5c\x86\x1f\x78\x07\xd1\x79\xb1\x63\x53\x1a\x64\x76\x71\x6c\x7a\x78\x94\x9b\x7a\x1e\x9f\x75\x83\x8f\x7b\x1b\x7a\x7d\x7d\x79" +"\x6c\xad\x77\xc0\xec\xce\xc9\xe4\xbc\x75\xb1\x62\xa0\x1f\xa9\xa1\x99\xa5\xad\x1a\xbf\x64\xaf\x53\x6b\x6a\x7f\x77\x75\x1e\x78\x7a" +"\x82\x7c\x7f\x66\x08\xe0\xfc\xdf\xc0\x0a\xf4\xab\x1d\x57\x6d\x79\x70\x5c\x1a\x4a\xbd\x5f\xd7\xd3\xbe\xbe\xd3\xb8\x7b\xa7\x5a\xb8" +"\x1e\x6b\xa3\x15\x5c\xae\x79\xa4\xaa\x1a\xa5\x9d\xa0\xa2\xa5\x9b\x71\x61\x73\x85\x73\x7f\x75\x1e\x57\x41\x15\xb9\x45\x0a\xbd\xb7" +"\x8f\x9b\x9e\xa7\x1e\x0e\xf7\x92\xe2\xf8\xec\x15\xf7\x26\x06\xac\xdd\x05\xfb\x4c\x06\x45\xfb\x66\xcb\x8a\xa8\x87\xa5\x80\x19\xba" +"\x78\xa4\x6b\x62\x1a\x67\x76\x70\x6e\x7b\x7c\x92\xa1\x67\x1e\x97\x78\x83\x8e\x80\x1b\x77\x7c\x7d\x78\x6c\xb2\x75\xc2\xe3\xcc\xcc" +"\xe4\xe6\x43\xc6\xfb\x05\x8c\x1f\xad\xfc\xc8\x15\xc9\x06\xf8\x5d\xf9\x2a\x05\x4d\x06\xf4\xfc\x3f\x15\xb5\xa6\x9c\xa6\xb2\x1a\xc2" +"\x5b\xb3\x4a\x46\x57\x5e\x4f\x62\x9d\x6a\xb6\x66\x1e\x56\x6c\x7a\x71\xde\x1d\xa8\x5a\xb7\x1e\x6b\xa3\x15\x5d\xae\x79\xa4\xaa\x1a" +"\xa5\x9e\xa0\xa1\xa4\x9b\x71\x62\x72\x85\x72\x7f\x76\x1e\x57\x41\x15\xb9\x68\x9e\x6b\x64\x1a\x69\x7b\x76\x71\x6b\x7d\xa2\xbe\xb6" +"\x8f\x9b\x9e\xa7\x1e\x0e\xf7\x92\xf7\x54\xf8\xea\x15\x29\xfb\xe8\x05\xbf\x06\xf7\x10\xf8\x3c\x05\xfb\x7c\x06\x6f\xfb\x12\x05\x9f" +"\x06\xaa\x95\xa0\x96\xbb\x1b\xfc\xea\x04\xc9\x06\xf8\x5d\xf9\x2a\x05\x4d\x06\xf4\xfc\x3f\x15\xb5\xa6\x9c\xa7\xb1\x1a\xc2\x5b\xb3" +"\x4a\x46\x57\x5e\x4f\x61\x9d\x6a\xb6\x67\x1e\x57\x6c\x79\x71\xde\x1d\xa7\x5a\xb8\x1e\x6c\xa3\x15\x5a\xaf\x7a\xa3\xab\x1a\xa4\x9e" +"\xa0\xa1\xa5\x9b\x72\x61\x71\x85\x73\x80\x76\x1e\x56\x41\x15\xb9\x45\x0a\xbd\xb7\x8f\x9b\x9e\xa7\x1e\x0e\xf8\x8c\xd0\x1d\x58\x68" +"\x67\x08\x61\x64\x50\x78\x36\x1b\x4f\x7b\x96\xb6\x1f\xf7\x87\x07\xf7\x03\x84\xa6\x71\x9c\xb9\x1d\x98\x8d\x90\x92\x8e\x1e\x90\x95" +"\xa5\x8f\xa6\x1b\xe3\xc7\x79\x69\xa7\x1f\xa0\x71\x95\x73\x98\x4b\xa4\x0a\x83\x78\x77\x6a\x1e\x8a\x8a\x88\x85\x88\x85\x6b\x0a\x7b" +"\x42\x88\x08\x3b\xf7\xd2\x15\xf7\x35\xf7\xb6\x05\x92\xfb\xb6\x06\xb8\xf8\x25\xc3\x1d\x7a\x82\x78\x7b\x1e\x0e\x26\x0a\xd0\xf9\x2d" +"\x15\x4b\x79\x6e\x74\x7b\x0a\x91\xbe\x08\x0e\x5d\x0a\x78\x1d\x5c\xf7\x6c\x15\x8d\x95\x91\xae\x05\x9d\xe0\x8c\x8f\x9f\x1a\xaa\x77" +"\xa1\x6f\x70\x76\x75\x6d\x7e\x8e\x75\x8f\x77\x1e\x93\x64\x90\x74\x8c\x84\x8d\x82\x8c\x85\x8e\x7b\x08\x0e\x26\x0a\xf7\x22\xf8\xf7" +"\x22\x0a\x5f\x0a\xf7\xa3\x07\x69\x5d\x82\x76\x0a\xfc\x88\xf7\x80\x15\xe9\xf7\x87\xf0\xfb\x87\x05\x0e\x8d\x1d\x9a\xb2\xef\x1e\xf7" +"\x75\x06\xac\x3e\x98\x66\x7d\x1d\x63\xf9\x3a\x15\x51\x5a\x5b\x52\x4f\xba\x5b\xc6\xc6\xbb\xba\xc6\xc6\x5b\xbb\x44\x1d\x6f\x6b\x6c" +"\x70\x71\x6a\x6c\x4c\x0a\x24\xbc\x15\xc3\x06\xf7\x22\xc9\x05\xac\x99\x92\x91\x9c\x1a\x9d\x78\x97\x6e\x78\x79\x85\x7e\x7b\x1e\x0e" +"\xf7\x3f\xa2\x1d\xf7\xec\x06\xc5\xc9\x9e\xaa\xb4\x1f\xaf\xa7\xa0\xb7\xc0\x1a\xbe\x77\xb3\x63\xab\x1e\x72\x9f\x78\x93\x46\x9e\x7a" +"\x1d\x47\x1d\xfc\x02\xf8\xf7\x85\x0a\x47\x1d\xfb\x0a\xf9\xa7\x93\x0a\xf7\x85\xf9\x25\xf7\x2c\x59\x0a\xfb\x0b\xf8\xf7\x15\xfb\x0f" +"\xa3\x1d\xee\xf7\x04\x28\x05\x0e\xf7\x85\xf8\x26\xfa\x00\x15\x64\x6b\x6c\x65\x64\xaa\x6c\xb2\xb1\xaa\xaa\xb2\xb0\x6c\xab\x66\x1f" +"\xf7\x93\xfd\x68\x59\x0a\x0e\x6a\x1d\x5e\x0a\xf7\xa3\xf9\xc9\x21\x0a\x57\x0a\xf7\x3f\xac\x16\xf8\xee\x06\xfb\xad\xf9\x44\x05\xfb" +"\x6b\xfc\xe6\x15\xf7\x40\xf8\x09\xf7\x2f\xfc\x09\x05\x0e\xf7\x3f\x24\x0a\xf8\x38\xf7\x75\x15\x4b\x7a\x6e\x74\x4d\x1b\x4b\x6c\xa5" +"\xc8\x7f\x1f\x5f\x06\x8e\xb7\x0a\xae\x0a\x93\xa4\x90\xbe\x08\x0e\xf7\x3f\x24\x0a\xf8\x7a\xf7\x82\x21\x0a\xf7\x3f\x24\x0a\xf7\xd0" +"\xf7\x5d\x2a\x1d\xf7\x3f\x24\x0a\xf8\x76\xf7\x3f\x22\x0a\xf8\x91\xea\x15\x8f\xfb\x14\x05\x83\x07\x40\x8f\x68\x53\x5a\x1b\x7a\x7e" +"\x92\x95\x90\x8e\x92\x91\x95\x1f\x95\x9b\x8f\x95\x96\x1a\xa9\x71\xa3\x6a\x66\x72\x72\x67\x50\xc5\x62\xdd\xd0\xc3\xa7\xbb\xa5\x1e" +"\x9c\xab\x96\xbc\xb4\x1a\x8a\xf8\xd4\x05\xc4\x98\x99\xcc\x94\x1e\xa4\xfb\x6b\x72\x07\xd4\x84\x9f\x76\x44\x1a\xfb\xc5\x07\xfb\xf1" +"\xf8\x41\x05\xfb\x67\x72\x06\x9f\x9c\x7c\x52\xbb\x1f\xfc\x6e\x07\x8a\x50\x7b\x7e\x44\x83\x08\x72\xf7\x77\xa4\x07\x3f\x93\x79\x9e" +"\x8a\xd3\x08\xf8\x26\x07\x0e\xf7\x3f\xf8\x5a\xf8\x94\x15\x71\x06\x7c\xfb\x06\x64\x67\xfb\x00\x8c\x08\xf7\x7c\x07\xb1\x98\x94\xbf" +"\xf7\x37\xbc\x69\xfb\x19\xa4\x1e\xa4\xf7\x5d\xfc\xd5\x72\x06\xce\x88\x9e\x7b\x8d\x57\x08\xfc\x78\x07\x89\x56\x7d\x7f\x43\x85\x08" +"\x72\xf8\xab\x07\x69\x5d\x82\x79\x6f\x1a\x5c\xb7\x69\xc9\x92\x0a\x65\x72\xa1\xae\x96\x8b\x8b\x9a\xd0\x1f\xad\xf7\x43\x05\x6f\x06" +"\x6c\x48\x77\x6f\x67\x6e\x08\x66\x5d\x55\x7b\x3e\x1b\x4a\x79\x98\xb6\x1f\xf7\x86\x07\xf7\x01\xb4\x64\xfb\x08\x97\x1f\xa5\x06\x0e" +"\xf7\x3f\x73\x1d\x0e\xf7\xc3\xf4\xf8\x65\x68\x1d\xdf\x8c\x90\xa0\x1a\xa9\x77\xa1\x6f\x70\x76\x75\x6d\x7e\x8e\x76\x8f\x76\x1e\x93" +"\x65\x92\x6a\x90\x6e\x08\xf7\xe4\xfb\x26\x15\xa6\x06\xb6\xa5\x77\x5a\xa0\x1f\x94\x75\x8e\x88\x0a\xc0\x58\x94\x53\x1d\xac\xf7\x5f" +"\x05\x71\x06\x75\xfb\x03\x44\x53\xfb\x0a\x8c\x08\x65\x06\x5e\x7c\x9c\xc1\x8d\x1f\x0e\xf7\xae\x55\x0a\xf8\x31\xed\x35\x0a\xf7\xe0" +"\xfb\x27\x15\xf7\x95\xfb\x72\x06\x25\x0a\xf7\xd0\x9f\x58\x1d\x9f\xfb\xd0\x77\x9e\x06\xbf\x89\x9b\x78\x89\x51\x08\xfb\x61\xfb\x95" +"\xf7\x61\x07\x89\xc6\x9a\x9d\xc0\x8d\x08\x9e\x9f\xfb\xd0\x77\x9e\x06\xc0\x89\x9a\xa2\x0a\xf7\xd0\x9f\x78\x20\x1d\x0e\x8f\xae\xf7" +"\x7f\x15\xfb\x3d\xa7\xe2\x31\xf7\x1d\x1b\xd4\xc6\xa6\xc6\xbf\x1f\xbf\x07\x4b\x6a\x4a\x5e\x4f\x1b\x42\x5c\xde\xf7\x27\x7f\x1f\xe7" +"\x06\xa8\xbd\x05\xfb\x10\xb0\x06\x9b\xf7\x39\x07\xa8\xbd\x05\xfb\x55\x06\xf7\x3d\x99\xb4\xd9\xd7\x1b\xb5\xb5\x71\x5f\xa7\x1f\x9f" +"\x6d\x95\x69\x92\x56\x08\x9e\xf7\x73\x78\x06\x6d\x87\x7f\x7b\x7a\x1b\x83\x83\x8d\x8f\x84\x1f\xa8\x57\x78\x91\x63\x1b\x31\x38\x50" +"\x28\x5b\x1f\x78\x63\x83\x71\x81\x55\x08\x61\x06\x6f\x59\x05\xcd\x71\x06\x70\x65\x07\x6f\x59\x05\x0e\xf7\x20\x97\xf9\x2a\x15\x75" +"\x07\xd0\x86\x97\x7a\x89\x34\x08\xfc\x24\x07\x8d\x34\x7f\x7b\x46\x85\x08\x75\xf7\xd0\xa1\x07\x45\x91\x7f\x9b\x8d\xe2\x08\xf8\x31" +"\x07\xcb\xa3\xa1\xd0\xce\xc0\x7a\x6a\xb0\x1e\xaa\x6f\xa0\x6a\xae\x3c\x08\xa5\x06\x64\xf7\x72\x05\x0e\xf7\xae\x3d\x0a\xfb\x96\xf9" +"\x13\x15\x4b\x79\x6e\x74\xb4\x1d\xc1\x1b\xc2\xac\x0a\xf7\xbe\xf9\x87\xf7\xb3\x6d\x1d\xfb\x89\xf8\x70\x20\x0a\xf7\xae\x3d\x0a\xfc" +"\x45\xfc\xef\x15\xf3\xc6\xb8\xc6\xd9\x1a\xca\x67\xb5\x55\x5e\x6e\x6e\x5e\x60\xa5\x6f\xb3\x8f\x90\x8b\x8c\x90\x1e\x8c\x8d\x8e\x8b" +"\x8c\x1b\x95\x92\x83\x80\x67\x6d\x66\x48\x5c\x1f\x0e\xf7\xbe\xf8\x27\xfa\x04\x9d\x0a\xf7\xf3\xfc\xe5\x6d\x1d\x0e\xf7\xae\xf5\xf8" +"\x71\x15\xfc\x11\x07\x8a\x59\x7b\x7e\x47\x83\x43\x1d\x44\x92\x79\x99\x8a\xbd\x46\x0a\x8a\x59\x79\x7d\x44\x84\x08\x72\xf7\xe7\xa4" +"\x07\x46\x93\x7a\x98\x8a\xbd\x08\xf8\x11\xdf\xb3\x37\xca\x07\x8c\xbe\xa0\x9c\xcc\x8e\x08\xa4\xfb\xe7\x72\x07\xce\x88\xa1\x7b\x8c" +"\x57\x08\x4c\xfb\x85\xca\x07\x8c\xbf\xa0\x9b\xa3\x0a\x87\x9e\x7b\x8c\x58\x08\x4c\x32\x63\x07\xf7\x8f\x16\xf7\x85\x23\xfb\x85\x06" +"\x0e\xf7\xbe\xf9\x8c\x90\x1d\xbf\xa0\x9b\xa3\x0a\x86\x9e\x7c\x8c\x58\x08\xfc\x78\x07\x8a\x59\x7b\x7e\x47\x83\x43\x1d\x44\x92\x79" +"\x98\x8a\xbe\x46\x0a\x89\x58\x7a\x7e\x44\x84\x08\x72\xf7\xe8\x07\xfb\x93\xf9\x76\x20\x0a\xf8\x1d\xf8\x06\xa0\x15\x78\x06\x56\x8d" +"\x7c\x9d\x8d\xc4\x08\xf8\x72\x07\x89\xc7\x9a\x9d\xc0\x8e\x08\x9e\x9f\xfb\xd0\x77\x9e\x06\xc0\x88\x9a\x79\x89\x4f\x08\xfc\x72\x07" +"\x8d\x52\x7c\x79\x56\x89\x08\x78\x76\xf7\xd0\x06\xf7\x18\xf9\x25\x15\xac\x06\xc0\x88\x9a\x79\x89\x4e\x08\xfc\x51\x07\x46\x76\x6c" +"\x5e\x6d\x75\x98\x9c\x90\x8c\x8f\x8d\x8d\x1e\x9f\xa7\x8e\x92\x9f\x1a\xaf\x6b\xab\x66\x65\x6c\x66\x5e\x43\xd8\x52\xed\xd2\xce\xa9" +"\xbc\xaf\x1e\xa3\xac\x92\xa8\xd3\x1a\xf8\x0f\x07\x89\xc7\x9a\x9e\xc0\x8e\x08\x9b\x9f\xfb\xdf\x06\x0e\x20\x27\x0a\x47\xfa\x19\x15" +"\x4c\x7b\x6d\x73\x4d\x1b\x4c\x6b\xa5\xc8\x80\x1f\x5e\x06\x8e\xb7\x0a\xcf\x1d\x90\xbe\x08\x0e\x20\x27\x0a\xfb\x45\xfa\x01\x2a\x1d" +"\x20\x27\x0a\x80\xf9\xe3\x22\x0a\x20\x86\x1d\xf7\xbf\x07\x68\x5d\x83\x9a\x1d\xb5\x9d\x8e\x96\x92\x96\x1f\x0e\x20\xf7\xf2\x67\x0a" +"\x20\xf7\xf8\x9f\x49\x1d\xfb\x97\xf9\xef\x9d\x0a\xf7\x61\x16\x63\x4e\x0a\xb2\xaa\xaa\xb1\xb1\x6c\xab\x66\x1f\x0e\xa5\xe9\x35\x0a" +"\xf8\x38\xfc\x51\x49\x1d\x0e\x20\xf8\x06\xa4\x15\x41\x8f\x77\x9a\x8a\xbf\xa1\x1d\x8a\x58\x78\x7c\x42\x86\x08\x72\xf7\xf2\x07\xfb" +"\xce\xf9\x80\x15\xa7\x8e\x9f\x9e\xa5\x1b\x98\x94\x88\x78\xb5\x1f\xa8\x7e\x05\x83\x9d\xa6\xb8\x0a\x66\x7e\x7d\x7f\x70\x1b\x7f\x49" +"\x0a\x6f\x72\x91\x77\x1b\x4d\x50\x0a\x99\xf8\x74\xf9\x38\x15\xfb\xf4\x72\x06\xda\x89\x9f\x7d\x8d\x54\x08\xfc\xc0\x07\x4d\x79\x72" +"\x5d\x6f\x7a\x97\x9f\x94\x8e\x90\x94\x96\x1e\x97\x9a\x8e\x93\x9b\x1a\xb3\x69\xae\x64\x66\x6a\x69\x65\x62\xa7\x5e\xb2\x74\x1e\x7d" +"\xa4\xb3\x82\xb3\x1b\xf7\x21\xd5\xd6\xf7\x24\xe4\x1d\x49\xf3\x20\x0a\xf7\xae\xf7\xce\x6b\x1d\x0e\xf7\xae\x52\x0a\xfc\x53\xfb\xe9" +"\x15\xf4\x36\x0a\x94\x93\x83\x80\x67\x6d\x66\x47\x5c\x1f\x0e\xf7\x3f\x31\x1d\xfb\xec\xf9\x76\xc2\x1d\x7b\x45\x1d\xf7\x71\xf7\xc3" +"\xf8\x57\x15\xf7\x27\xfb\xf4\x05\x95\x73\x8d\x83\x81\x1a\x71\x79\x80\x60\x1e\x72\x77\xf7\xc2\x9f\x82\x06\x73\x8d\x84\x91\x7b\xaf" +"\xfb\x95\xf8\xf0\x18\x6f\x06\xfb\x61\xfc\xb8\x76\x4a\x6d\x6a\x64\x89\x19\x77\xf7\x65\x9f\x75\x07\x68\x70\x9e\xa3\x94\x8f\x99\x92" +"\x9f\x1f\x0e\xf7\x3f\x31\x1d\xfb\x2a\xf8\x1a\x15\xf3\x36\x0a\x94\x93\x82\x81\x68\x6d\x66\x47\x5b\x1f\x0e\xf7\x3f\x31\x1d\xfb\xde" +"\xfb\xe9\x15\xf3\xb3\x0a\x5e\x60\xa5\x6f\xb4\x8e\x90\x8b\x8c\x90\x1e\x8c\x8e\x8e\x8b\x8c\x1b\x95\x92\x83\x80\x67\x6c\x66\x48\x5c" +"\x1f\x0e\xf7\x3f\x31\x1d\xfb\x1f\x91\x0a\xf8\x54\x72\x1d\x30\x1d\xf7\x9d\xf9\x5d\x2b\x1d\x30\x1d\xf8\x96\xfa\x0d\x21\x0a\x30\x1d" +"\xf7\xaa\xfc\x02\x15\xf4\xb3\x0a\x5f\x5f\xa5\x6f\xb3\x8f\x90\x8b\x8c\x90\x1e\x8c\x8e\x8e\x8b\x8c\x1b\x95\x92\x83\x80\x67\x6d\x67" +"\x47\x5b\x1f\x0e\xf7\x21\xf8\xb5\x15\xf8\x56\xfc\xb5\x05\xa0\xf8\xc8\x06\x88\xc5\x9a\x9c\xbe\x8e\x08\x9c\x9f\xfb\x5d\x77\x9e\x06" +"\xbf\x89\x9a\x79\x8a\x51\x08\xfb\xdc\x07\xfb\xf1\xf8\x3e\x05\xfb\x63\x77\x06\xa4\x98\x84\x6f\xa4\x1f\xa1\x70\x05\xfc\x78\x07\x25" +"\x0a\xf7\x61\x9f\x79\x20\x1d\x0e\xf7\xae\x26\x1d\xf3\xf7\x87\x15\x4c\x7b\x6d\x73\x7b\x0a\x90\xbe\x08\x0e\xf7\xae\x26\x1d\xfb\x4a" +"\xdb\x70\x0a\xca\xfb\x31\x15\xc3\x06\xf7\x21\xe3\x05\xad\xa0\x92\x94\xa2\x1a\xa6\x78\x9c\x6e\x77\x7a\x82\x78\x7b\x1e\x0e\xf7\xae" +"\x26\x1d\xf7\x36\xf7\x51\x22\x0a\xf7\xc5\xcb\x35\x0a\xf9\x6e\xfc\x65\x15\xab\xf7\x4f\x05\x71\x06\x4e\x7c\x76\x79\x51\x1b\xfb\x1c" +"\x06\xde\xa8\xb2\xa3\xb6\xba\x08\xb8\xbd\xa4\xca\xcc\x1a\xd5\x6b\xd6\x53\xc0\x1e\xc3\x50\x39\xa7\xfb\x01\x1b\x25\x38\x6f\x53\x51" +"\x1f\x53\x57\x6b\x3f\x40\x1a\x45\xa7\x49\xbe\x58\x1e\xb4\x61\xaf\x76\xda\x70\x08\xfb\x1c\x06\x51\x76\x9d\xc8\x7c\x1f\x71\x06\xab" +"\xfb\x4f\x05\xf7\xa4\xf5\x06\x68\xa1\x7a\x99\x7a\xa0\x08\x66\xba\x75\xdb\xe5\x1a\xf7\x3a\xcb\xe6\xf7\x08\xf7\x07\xcb\x2f\xfb\x39" +"\x3c\x79\x40\x6f\x5e\x1e\x78\x6d\x77\x79\x60\x70\x08\x21\x07\x0e\xf7\xae\xf8\x17\x5c\x0a\xf7\xae\xcf\xf8\x65\x68\x1d\xdf\x8c\x90" +"\xa0\x1a\xa9\x77\xa1\x6f\x70\x76\x75\x6d\x7e\x8e\x76\x8f\x76\x1e\x93\x65\x92\x6a\x90\x6e\x08\xf8\x24\xf7\x63\x15\x32\x49\x73\x54" +"\x4a\x1f\x41\x4c\x66\x35\xfb\x05\x1a\xfb\x61\xf7\x1a\xfb\x1c\xf7\x5e\xf7\x58\xf7\x1c\xf7\x1e\xf7\x5d\xf4\x6e\xd9\x4d\xcb\x1e\xcc" +"\x4b\x3c\xaa\x24\x1b\x8e\x68\x15\xf7\x00\xc7\xfb\x00\xfb\x54\x23\x79\x37\x67\x52\x1f\x62\x73\x5b\x70\x5e\x1b\x5c\x5d\xa7\xb9\x71" +"\x1f\x6b\xc1\x7d\xd2\xf4\x1a\xf7\x0f\x9f\xd9\xba\xc4\x5f\x1d\xf7\xae\x84\x1d\x67\xcb\xbe\x7e\xd2\x1b\xf7\x64\xf7\x27\xf7\x27\xf7" +"\x64\xcf\x7b\xcb\x6c\xc2\x1f\x75\xb1\x78\xa0\x5b\xb3\x08\xfc\x09\xfc\x6b\x15\x7a\xc7\x86\xb5\xd5\x1a\xf7\x69\x99\x1d\xc1\xf9\x14" +"\xc2\x1d\x7a\x82\x78\x7b\x1e\x0e\xf7\xe1\xf7\xeb\x51\x0a\xf7\xae\xf9\x7f\xf9\x2a\x15\xfd\x62\x44\x0a\xf8\x53\x07\x89\xc6\x9a\x9d" +"\xc0\x8d\x08\xf7\x11\x06\xc0\x89\x9a\x79\x89\x50\x08\xfc\x53\x96\x1d\x06\x0e\xf7\xb0\xf8\x5d\xf7\x70\x15\xf7\x2b\x8e\xeb\xf3\x8a" +"\xf7\x33\x8e\xd8\x18\xb8\x8c\x95\x9f\xa0\x1b\x92\x91\x89\x86\x96\x1f\x93\x9f\x05\xa0\x64\x76\x92\x6c\x1b\x47\x5f\x5d\x40\x89\x1f" +"\x87\xfb\x0d\x8c\x2c\x60\x45\x4d\x86\x19\xf7\xc6\x07\x88\xc5\x9b\x9e\xbf\x8d\x08\x94\x9f\xfb\xae\x77\x94\x06\xbf\x89\x9b\x78\x89" +"\x51\x08\xfb\xc6\x07\x4e\x8f\x5f\xce\xe3\x1a\x88\xeb\x8a\xae\x87\xa9\x86\x9f\x19\xb6\x7e\x60\xa8\x57\x1b\x6c\x75\x84\x76\x68\x1f" +"\x92\x77\x05\x91\x99\x90\x8c\x92\x1b\x96\x95\x83\x81\x8f\x1f\x8f\x7e\x8b\x87\x8d\x5c\x8d\x48\x18\x8d\xfb\x2e\xed\x24\xf7\x28\x89" +"\x08\xfb\x10\x07\x8d\x53\x7b\x7a\x57\x88\x08\x78\x77\xf7\xc2\x9f\x78\x06\x57\x8e\x7b\x9c\x8e\xc3\x08\x0e\x34\x1d\x90\xf8\x1d\x15" +"\xc3\x06\xf7\x22\x59\x1d\x34\x1d\xf7\x92\xf8\xcd\x21\x0a\x34\x1d\x9d\xfd\x42\x71\x0a\xf7\x07\x58\x0a\xc7\x33\x1d\xfb\x96\xf7\x9b" +"\x2b\x1d\xc7\xf8\x78\xf9\x48\x15\x6d\x06\x70\x83\x85\x84\x79\x1b\x82\x7f\x8e\x92\x76\x1f\x9c\x5d\x6b\x91\x64\x1b\xfb\x1c\x38\x3e" +"\xfb\x13\x34\xbf\x4c\xf7\x0b\x52\x1f\xce\x6b\x05\xe3\x61\xa3\x71\x56\x1a\x46\x5a\x5f\x3e\x50\x5a\xa4\xbc\x65\x1e\x70\xb0\x7d\xac" +"\x7a\xd1\x08\x6e\xfb\x8b\xa8\x06\xa5\x91\x93\x93\x9b\x1b\x93\x97\x88\x84\xa0\x1f\xb6\x7c\xa7\x85\xaf\x89\x69\x3d\x18\x39\x0a\x7a" +"\x80\x8e\x94\x71\x1f\x8a\x89\x8c\x8c\x89\x1f\x2f\x0a\x9f\xb9\xbe\x8e\xb4\x96\xad\x9e\x19\xca\xaf\xb2\xcf\xd4\x1a\xd6\x5e\xd6\x4a" +"\xab\x1e\xfb\x27\xd4\x05\x3a\xb3\x75\xa4\xbb\x1a\xc9\xb5\xb1\xcf\xb8\xb5\x78\x66\xaf\x1e\xad\x68\x9b\x6e\x9f\x4a\x08\xa7\x06\x0e" +"\xd3\xf8\x26\xf9\x76\x15\xc4\x06\xfb\x0f\xf7\x44\x05\x2f\x06\xfb\x0d\xfb\x44\x05\xc3\x06\xf7\x03\xed\x05\xf7\x56\xfb\xfd\x15\xf7" +"\x6d\x6d\x07\x70\x83\x85\x84\x78\x1b\x82\x80\x8e\x92\x76\x1f\x9c\x5e\x6a\x91\x64\x1b\xfb\x1c\x38\x3e\xfb\x13\x34\xbf\x4c\xf7\x0b" +"\x52\x1f\xce\x6b\x05\xe3\x61\xa3\x71\x57\x1a\x45\x5a\x5f\x3e\x50\x5a\xa4\xbc\x65\x1e\x70\xb0\x7d\xac\x7a\xd1\x08\x6e\xfb\x8b\xa8" +"\x06\xa5\x91\x93\x93\x9b\x1b\x93\x96\x88\x84\xa1\x1f\x7a\xbc\xb0\x84\xb7\x1b\xf7\x28\xef\xe0\xf7\x12\xd6\x5d\xd6\x4b\xab\x1f\xfb" +"\x27\xd4\x05\x3a\xb3\x75\xa4\xbb\x1a\xc9\xb5\xb1\xcf\xb9\xb4\x78\x66\xaf\x1e\xad\x68\x9a\x6e\xa0\x4a\x08\x0e\xc7\x33\x1d\xfb\x89" +"\xfd\xc4\x8a\x1d\xf7\x32\xf8\xc4\xf9\x2a\x15\xfc\xa2\x06\xf7\x3a\xfb\xf3\xfb\x3a\xfb\xcb\x05\xf8\xa2\x06\xbb\xf7\x70\x05\x6d\x06" +"\x56\xfb\x10\x47\x5d\xfb\x11\x8d\x08\xfb\x05\x06\xf7\x1e\xf7\xae\xfb\x24\xf7\xb4\x05\xf7\x01\x06\xf7\x1b\x8f\xcb\x5a\x94\xfb\x06" +"\x08\xa9\x06\x0e\xf7\x3f\xf8\x30\xf9\x06\x15\xb6\x06\xdb\x8e\xbc\x58\x90\x30\x08\xa8\xf7\x43\xfc\xcf\xa5\x1d\xf7\xf1\x9f\x6e\x20" +"\x1d\x0e\xf7\x3f\xf7\x91\xf7\xce\x15\xfb\x59\x07\x89\x3f\x80\x81\x37\x85\x08\x72\xf7\xf9\xa4\x07\x36\x8f\x80\x96\x89\xd8\x08\xf7" +"\x59\xde\xba\x38\xf7\xaf\x95\x1d\xfb\xaf\x36\x5c\x07\x0e\xf7\x3f\x48\x1d\x80\xfa\x26\x21\x0a\xf7\x3f\xf8\x04\x16\xf7\x25\xa4\x06" +"\x7e\x1d\xf7\x3e\x07\x60\x2b\x68\x0a\xf7\xae\xf7\xb1\xf8\x59\x15\xfb\x7d\xa9\x07\xb9\x8c\xa3\xa2\xbc\x1b\xbb\xa4\x74\x5d\x1f\xa9" +"\xf7\x7d\x6d\x06\x5c\x86\x76\x77\x5c\x1b\x5b\x77\x9e\xbb\x85\x1f\xd6\xf7\x75\x15\x31\x2c\x65\x4f\x4d\x1f\x52\x53\x67\x2d\x2e\x1a" +"\x23\xac\x33\xc7\x4e\x1e\x4f\xc7\xeb\x65\xe7\x1b\xdf\xe5\xad\xc2\xc5\x1f\xcd\xc8\xb0\xe8\xf2\x1a\xf2\x66\xe9\x49\xc7\x1e\xc3\x50" +"\x33\xac\x35\x1b\x8a\x6a\x15\xf5\xcd\xfb\x0c\xfb\x55\xfb\x55\x49\xfb\x0c\x21\x22\x47\xf7\x10\xf7\x55\xe3\x9d\xdd\xac\xc7\x1f\xbe" +"\xa7\xb6\xa7\xbe\x1b\x0e\x24\x1d\xfb\x69\xf7\x8e\x15\x4b\x7a\x6e\x74\xa6\x0a\x6f\x08\x67\xae\x0a\x93\xa4\x90\xbe\x08\x0e\x24\x1d" +"\xfc\x9b\xe2\x70\x0a\xca\xfb\x31\x15\xc2\x06\xf7\x23\x59\x1d\x24\x1d\xfb\x43\xf7\x58\x15\xfb\xde\x43\xf7\xde\x06\x0e\xf9\x51\x95" +"\x0a\xfb\x0b\x24\x75\x0a\xd5\x1b\xc5\xbe\x97\xa5\xba\x1f\x5d\x51\x80\x75\x6c\x1a\x5c\xb7\x69\xc9\xbd\xba\xa8\xb9\xa5\x1e\x75\x99" +"\x86\x89\x8a\x8a\x82\x87\x19\x81\x77\x81\x88\x7c\x1b\x5f\x77\xa2\xbf\x9e\x95\xb2\x94\x9c\x1f\xb4\xd2\x98\xb9\x8d\xdf\x08\xf7\xd3" +"\x07\x8c\xc7\x99\x9b\xca\x94\x08\x0e\xf8\x30\xf7\xcc\x15\xfb\x1a\xf7\xa3\x05\x80\xa1\x8a\x90\x92\x1a\x9b\x9b\x94\xa6\x1e\x9b\x9f" +"\xfb\xb5\x77\x97\x06\xac\x87\xa1\x76\xa8\x4e\xf7\x30\xfb\xc2\x18\xfb\x32\x07\x8c\x31\x0a\x6e\x77\xf7\xe5\x9f\x6d\x06\x56\x8e\x7c" +"\x9c\x8e\xc3\x08\xf7\x48\x07\xf7\x1a\xf7\xa6\xb1\xd6\x96\x96\xb9\x91\x19\x9f\xfb\x53\x77\x9f\x07\xab\xa0\x7b\x72\x7b\x85\x7a\x7b" +"\x6a\x1f\x0e\xf8\x43\xf7\xcc\x15\xfb\x1a\xf7\xa3\x05\x80\xa1\x8a\x90\x92\x1a\x9b\x9b\x94\xa6\x1e\x9b\x9f\xfb\xb5\x77\x97\x06\xac" +"\x87\xa1\xe9\x1d\x8c\x31\x0a\x6e\x77\xf7\xe5\x9f\x6d\x06\x56\x8e\x7c\x9c\x8e\xc3\x08\xf7\x48\x07\xf7\x1a\xf7\xa6\xb1\xd6\x96\x96" +"\xb9\x91\x19\x9f\xfb\x53\x77\x9f\x07\xab\xa0\x7b\x72\x7b\x85\x7a\x7b\x6a\x1f\xfb\x8f\xf7\xd8\x15\x64\x3b\x0a\xb1\x6b\xab\x66\x1f" +"\xf7\x6f\x16\x64\x3b\x0a\xb1\x6b\xab\x66\x1f\x0e\xf8\x05\xf7\x13\x35\x0a\xf8\x71\xfb\x2d\x15\xfb\x1a\xf7\xa3\x05\x81\xa1\x89\x90" +"\x92\x1a\x9b\x9b\x94\xa7\x1e\x9a\x9f\xfb\xb4\x77\x96\x06\xad\x87\xa0\xe9\x1d\x8d\x31\x0a\x6e\x77\xf7\xe4\x9f\x6e\x20\x1d\xf7\x48" +"\x07\xf7\x1b\xf7\xa6\xb0\xd6\x96\x96\xb9\x91\x19\x9f\xfb\x52\x77\x9f\x07\xab\x9f\x7b\x72\x7a\x86\x7c\x7a\x69\x1f\x0e\x24\x1d\xfb" +"\xe7\xf7\xc9\x38\x1d\xf9\x52\x95\x0a\xfb\x0c\x25\x75\x0a\xd4\x1b\xd5\xd1\xa1\xb0\xb6\x1f\xb8\xb1\xa5\xd7\xe8\x1a\xf7\xd3\x07\x8c" +"\xc7\x99\x9b\xca\x94\x08\xfc\x59\xf0\x15\xa7\x8f\x9f\x9e\xa4\x1b\x99\x91\x89\x77\xb7\xb8\x1d\x7d\x7e\x6f\x1b\x80\x88\x8c\x96\x72" +"\x47\x0a\x4e\x66\x64\x35\x79\x1f\x0e\xf8\x8c\x2e\x1d\xfc\xb1\xe2\x2b\x1d\xf8\x8c\x2e\x1d\xfb\xfb\xe2\x20\x0a\xf8\x8c\x2e\x1d\xfc" +"\xd4\xf7\x76\x28\x0a\xf8\x8c\x2e\x1d\xfc\x26\x9d\x1d\xf7\x49\xf8\xe0\x16\xac\xf7\x5f\x05\x71\x06\x74\x43\x45\x67\xfb\x0a\x8c\x08" +"\x31\x06\xfb\x0a\x8a\x44\xaf\x74\xd3\x08\x72\x06\xac\xfb\x5f\x05\xf8\x87\xf9\x2a\x15\xfc\x87\xfb\x4a\xa1\x06\x95\xc3\xbf\xa9\xe5" +"\x8d\x08\xf7\x2b\x06\xe5\x89\xc0\x6d\x94\x53\x08\xa1\x06\x27\x7e\x15\x83\x53\x6a\x70\x4f\x8a\x08\x26\x06\x4f\x8c\x6a\xa6\x83\xc3" +"\x08\x73\xfb\x96\xa3\x06\x89\xbc\xb7\xaf\xc6\x89\x08\xf0\x06\xc6\x8d\xb7\x68\x89\x59\x08\xa3\xf7\x96\x06\x0e\x2c\x0a\xfb\x6f\xe2" +"\x20\x0a\x2c\x0a\xfb\x9b\x9d\x1d\xf7\x3f\x37\x1d\xfb\xf7\x83\x0a\xf7\x3f\x37\x1d\xfb\xa8\xfa\x01\x2a\x1d\xf7\x3f\xf7\x77\xb3\x15" +"\xf8\x0a\xf9\x02\x05\xfc\x84\x06\x7d\xfb\x50\x05\xa4\x06\x95\xef\xc7\xbe\xf3\x8a\x08\xf7\x0b\x06\xfc\x08\xfd\x04\x05\xf8\xd3\x06" +"\xa4\xf7\x7a\x05\x72\x06\x77\xfb\x13\x3e\x49\xfb\x12\x8e\x08\x0e\x8f\x23\x1d\xcc\xf8\x52\x72\x0a\xf9\x34\xf7\x14\x15\x5b\x65\x67" +"\x78\x59\x1b\x3b\x80\x0a\x66\x64\x99\x4a\x1b\x21\x3e\x56\x43\x64\xa6\x72\xb5\xb3\xa2\x9f\xb0\x9e\x87\x95\x7e\x99\x1f\x82\x95\x88" +"\x90\x92\x1a\xa0\xa6\x99\xb1\xc3\xa1\x74\x51\x1e\x3b\x07\xfb\x16\x61\x5f\x7a\x6a\x74\x08\x65\x70\x79\x6a\x5e\x1a\x45\xb4\x66\xd8" +"\xcd\xc3\xa5\xc4\xc5\x1e\x91\x91\x05\x4d\xb1\xb1\x75\xd2\x1b\xea\xc2\xab\xe5\xc6\x1f\xfc\x21\x6b\x15\x72\x73\x7d\x84\x73\x1b\x65" +"\x78\xa3\xbb\xc9\xaa\xac\xe3\xab\x1f\xf7\x1e\xb0\x15\xf7\x0a\x9d\xb3\xbf\xba\x9b\x6b\x2e\x1e\x6a\x07\xfb\xa7\xf7\x87\x43\x0a\xa5" +"\x78\x9d\x6e\x78\x60\x1d\xf8\x8c\xf3\x1d\x5d\x0a\xf7\x39\xf8\xb8\xf9\x2a\x15\xfc\x8d\x77\x9e\x06\xbd\x1d\xf7\xd8\x06\xf7\x2e\xdf" +"\xca\xf7\x09\xf7\x14\x30\xd1\xfb\x39\x75\x84\x8b\x88\x5d\x1f\xf7\x8f\xf7\x03\x07\xdc\x8e\xbb\x4d\x0a\x06\xfb\xa6\xfb\x2b\x15\x8c" +"\x98\x98\x8c\x95\x1b\xde\xb9\xb0\x0a\xf7\x3f\xa2\x1d\xf7\xd8\x06\xf7\x2b\xe2\xca\xf7\x04\xbf\x77\xb3\x63\xaa\x1f\x6f\xa1\x6f\x96" +"\x52\x99\x7a\x1d\xf7\x20\xf8\xd1\x7f\x1d\x0e\xf7\x54\xf9\x1d\xf9\x2a\x15\xfc\xa4\x77\xba\x06\xb8\x94\x77\x2a\xfb\x71\x65\xfb\x2e" +"\x40\x3a\x1f\x74\x76\x7a\x83\x6e\x1b\x6c\x06\x85\xfb\x43\x05\xa8\x06\x9b\xf0\xb6\xb4\xe0\x86\x08\xf7\xbe\x06\xea\x89\xbb\x60\x93" +"\x2f\x08\xa8\xf7\x43\x65\x06\x5f\x82\x90\xa8\x8a\x1f\xf8\x7f\x07\x89\xc5\x9b\x9e\xbf\x8d\x08\x9e\x06\xfb\x7b\xfc\xf0\x15\xfb\xb5" +"\x06\xe4\xe8\xb1\xf7\x2c\x8d\xf7\xa1\x08\xd3\xf7\x34\x07\x0e\xf7\x3f\xf7\xad\xf7\xd3\x15\xa6\x06\xb6\xa5\x77\x5a\x9f\x1f\x94\x75" +"\x8f\x88\x0a\xbf\x58\x95\x53\x1d\xab\xf7\x5f\x05\x72\x06\x74\xfb\x03\x44\x53\xfb\x09\x8c\x08\x65\x06\x5e\x7c\x9d\xc0\x8d\x1f\x0e" +"\xf7\x3f\x73\x1d\x54\xf9\x83\x15\x65\x3b\x0a\xb2\x6c\xaa\x64\x1f\xf7\x6f\x16\x65\x3b\x0a\xb2\x6c\xaa\x64\x1f\x0e\xf8\x81\xf8\x3c" +"\xf7\xbb\x15\xfb\x5b\x21\x1d\x83\x77\xf7\xba\x9f\x83\x20\x1d\xf7\x5b\x07\x3c\x0a\x99\x72\x91\x7e\x8b\x1d\x77\x7d\x84\x7e\x78\xf2" +"\x1d\x89\xc3\x9a\x9d\xc0\x8d\x08\x93\x9f\xfb\xba\x77\x93\x06\xc0\x89\x9a\x79\x8f\x0a\xa1\x9f\xfb\x7f\x77\x06\xd2\xae\x74\x2a\xd9" +"\x1f\xcc\x3a\xfb\x65\xfb\xf5\x67\x4e\x85\x85\x69\x8a\x19\x77\xf7\xbb\x9f\x73\x07\x6e\x7b\x93\x9a\x92\x91\x98\x99\xa4\x1f\xf7\x1a" +"\xf7\x7e\x05\x0e\xab\xcf\xf9\x38\x15\xfb\x5c\xa3\x07\x92\xbf\x93\xa4\x9c\xa3\x08\xaa\xa1\xad\x9c\xb4\x1b\xcb\xad\x5e\x38\x4d\x77" +"\x60\x66\x7c\x1f\x85\x7d\x76\x89\x68\x1b\x81\x86\x8b\x8c\x82\x1f\x63\x07\x8d\x99\x94\x8b\x97\x1b\xbb\xa8\x82\x75\xa0\x1f\xa4\x73" +"\x97\x65\x59\x1a\x2b\x5d\x53\x3c\x3a\x57\xbd\xe9\x7b\x1e\x63\x85\x05\xfb\x0d\x99\xda\x46\xf7\x13\x1b\xf7\x2a\xf1\xd8\xf7\x05\xec" +"\x55\xc7\x23\x9f\x1f\xe1\x9d\xb8\xc2\xa4\x1d\x0e\xf7\xae\x6f\x1d\x0e\xf7\xae\xf7\x9e\x71\x1d\xfb\x78\xf7\xad\x15\x6b\x74\x74\x6a" +"\x54\xc9\x68\xee\xf1\xca\xad\xc3\xac\x74\xa2\x6a\x6e\x74\x78\x72\x86\x8c\x84\x8e\x7d\x1f\x8c\x87\x8c\x88\x88\x1a\x7b\x6e\x7d\x6a" +"\x6b\x6e\x99\x9b\x8e\x8b\x8f\x8c\x8e\x1e\x90\x9b\x8c\x8f\x91\x1a\xa4\x74\x9e\x6d\x1e\x0e\xf7\x79\x53\x0a\x0e\xf7\x8d\xf8\x0b\x16" +"\x8c\x0a\x9f\xfc\x94\x6e\x0a\xcd\xa6\x1e\xa1\xc2\x94\xc8\xf6\x1a\xf7\xcd\xf7\x36\xfc\xa4\x21\x1d\x78\x06\x0e\xf8\x54\x72\x1d\xf7" +"\xae\x55\x0a\xf7\xae\xf8\x18\x5c\x0a\xf7\xae\xf9\x81\xf9\x2a\x15\xfd\x64\x44\x0a\xf8\xa4\xf7\x96\xfc\xa4\x07\x25\x0a\x8c\x0a\x06" +"\x0e\xf7\x07\x58\x0a\xf9\x09\xf7\x46\x15\x2f\x52\x45\x5e\x34\x1b\xfb\x07\x4a\xf2\xf7\x4c\xe7\x9a\xcc\xad\xc1\x1f\xc0\xac\xbd\xa8" +"\xc5\x1b\xc0\xc0\x74\x65\xb0\x1f\xa4\x70\x97\x74\x9a\x57\x08\xa2\xf7\x6a\x74\x06\x68\x85\x82\x7f\x77\x1b\x83\x8b\x8b\x9b\x64\x1f" +"\xa3\x4d\x6e\x92\x59\x1b\xfb\x50\xfb\x20\xfb\x2a\xfb\x5d\xfb\x55\xf7\x15\xfb\x1e\xf7\x49\xf7\x08\xf0\xc3\xef\xca\x1f\x0e\xf7\x3f" +"\xf8\x2b\xf9\x06\x15\xb6\x06\xdc\x8e\xbb\x4d\x0a\xf7\x43\xfc\xc2\xa5\x1d\xf7\xe4\x9f\x6e\x20\x1d\x0e\xf7\x82\xf8\x74\xf9\x2a\x15" +"\x77\xbd\x07\xa7\x99\x7f\x75\x81\x88\x7d\x85\x7f\x1f\xfb\x1d\xfb\xc0\xfb\x24\xf7\xce\x05\x86\x97\x87\x98\x92\x1a\x9a\x94\x94\x9a" +"\x1e\xbd\x9f\xfb\xbc\x77\x06\xac\x8c\x9e\x7d\x9e\x67\xf7\x7a\xfc\x6a\x18\x53\x74\x75\x74\x6f\x1b\x77\x84\x94\xa7\x8a\x1f\xb1\x8a" +"\x75\xa2\x67\x1b\x64\x70\x70\x64\x56\xb7\x67\xcc\xb2\xad\x98\xa4\xa5\x1f\x9c\x9c\x96\x9c\xa3\xbe\xf7\x70\xf8\x68\x18\xa4\xc1\x95" +"\x94\xad\x8c\x08\x96\x9f\x06\x0e\xf7\xff\xf7\xfa\x51\x0a\x6a\x1d\xf7\xae\xa4\x16\xf8\xb7\x06\xea\x89\xbb\x5f\x93\x30\x08\xa8\xf7" +"\x43\x70\x06\x56\x8e\x7d\x9c\x8d\xc3\x08\xf8\x55\x07\x89\xc5\x9a\x9e\x30\x0a\xfc\xa1\xfb\x96\x4b\x1d\xf7\x82\xf8\x62\xeb\x15\x8d" +"\x53\x7b\x7a\x56\x88\x08\x6b\x77\xf7\xdd\x9f\x78\x06\x57\x8e\x7b\x9c\x8e\xc3\x08\xf8\x67\x07\x88\xc5\x9b\x9e\xbf\x8d\x08\x9e\x9f" +"\xfb\xc8\x77\x96\x06\xef\x1d\x77\x57\x6c\x84\xa6\x1d\x96\x9f\xfb\xc3\x51\x1d\xbc\x95\xa6\xd5\x1e\x0e\xf8\xee\xa5\x16\xfa\xaa\x9f" +"\x78\x20\x1d\xf8\x67\x07\x89\xc6\x9a\x9d\x86\x0a\x88\xc5\x9b\x9e\x30\x0a\xfc\xa1\xfb\x6f\x4b\x1d\xf8\xee\xa5\x16\xf9\xfc\x06\xe8" +"\x8d\xc0\x5b\x91\x30\x3f\x1d\x56\x8d\x7c\x9c\x8d\xc4\x08\xf8\x55\x07\x89\xc6\x9a\x9d\x86\x0a\x88\xc5\x9b\x9e\x30\x0a\xfc\xa1\xfb" +"\x6f\x4b\x1d\xf7\xa1\xf8\x1b\xf8\xc7\x15\x89\xc5\x9b\x9e\xbf\x8d\xc8\x1d\xb1\xfc\xa6\x06\x25\x0a\xf7\xd8\x06\xf7\x2f\xde\xca\xf7" +"\x09\xf7\x14\x31\xd1\xfb\x3a\x75\x84\x8b\x88\x5d\x1f\x64\x04\x8c\x98\x98\x8c\x96\x1b\xde\xb8\xb0\x0a\xf8\x7a\xf7\xb3\xf8\xc7\x15" +"\x89\xc5\x9a\x9e\x2c\x1d\x77\xf7\xd8\x06\xf7\x2e\xdf\xca\xf7\x09\xf7\x14\x30\xd1\xfb\x39\x75\x87\x8b\x88\x5a\x1f\x64\x04\x8d\x9b" +"\x94\x8b\x96\x1b\xde\xb9\x53\x26\x31\x61\x56\x43\x64\x7f\x99\xb4\x1f\xf9\x1d\x42\x81\x1d\xf7\x39\xf7\xa8\xf8\xc7\x15\x89\xc5\x9a" +"\x9e\x2c\x1d\x77\xf7\xd8\x06\xf7\x2e\xdf\xca\xf7\x09\xf7\x14\x30\xd1\xfb\x39\x75\x87\x8b\x88\x5a\x1f\x64\x04\x8d\x9b\x94\x8b\x96" +"\x1b\xde\xb9\x53\x26\x31\x61\x56\x43\x64\x7f\x99\xb4\x1f\x0e\xf7\x4a\xbc\xf9\x38\x15\xfb\x83\xa1\x07\x94\xbf\x94\xa5\xa2\xab\x08" +"\xbf\xaf\xc6\xa7\xd1\x1b\xce\xbb\x72\x59\xad\x1f\xac\x59\x98\x5a\x8d\x2b\x08\xfb\x02\x06\x35\x8c\x6c\xa8\x86\xe0\x08\x75\xfb\xa0" +"\xa1\x06\xe1\x91\xaa\xa9\xe0\x1b\xf7\x02\x06\x8a\x2a\x81\x5a\x6f\x5b\x08\x4e\x68\x54\x6d\x3f\x1b\x2d\x4c\xb4\xf3\x46\x1f\x68\x74" +"\x05\xfb\x0f\xdb\xd8\x5c\xf7\x0f\x1b\xf7\x61\xf7\x25\xf7\x20\xf7\x59\xf7\x5e\xfb\x23\xf7\x29\xfb\x58\x5b\x67\x83\x78\x60\x1f\x7c" +"\x69\x83\x88\x7f\x1b\x72\x7c\x9a\xaa\x84\x1f\x0e\xf9\x0a\xd2\x16\xf7\xd0\x9f\x78\x20\x1d\xf7\x7e\xe2\x07\xfb\x62\x8d\xf7\x18\xfb" +"\x1a\xf7\x5d\x1b\xf7\x5a\xf7\x1b\xf7\x1e\xf7\x5e\xf2\x6e\xda\x4d\xcb\x1f\xcb\x4c\x3a\xab\x25\x1b\xfb\x00\x37\x64\x3b\x49\x1f\x61" +"\x59\x76\x57\x83\x3d\x08\x32\xf7\x52\x06\x89\xc5\x9a\x9e\x2c\x1d\x06\xf9\x20\xf8\xfd\x15\xf6\xc8\xfb\x00\xfb\x54\xfb\x58\x4b\xfb" +"\x09\x20\x5b\x5e\xa7\xb9\x70\x1f\x6c\xc1\x7d\xd1\xf4\x1a\xf7\x10\x9f\xd8\xba\xc5\x5f\x1d\xf8\x45\xf7\xc0\x15\xfb\x60\x21\x1d\x73" +"\x77\xf7\xd5\x9f\x78\x20\x1d\xf8\x6a\x07\x89\xc3\x9a\x9d\xc0\x8d\x08\x9e\x9f\xfb\xe3\x06\xfb\x28\x34\x47\xfb\x07\x36\xb4\x59\xeb" +"\x69\x1f\xfb\x09\xfb\x60\x67\x4c\x77\x78\x6a\x87\x19\x77\xf7\x51\x07\xf7\x3e\xf7\xc0\x05\xbc\xb1\x15\x8a\x78\x76\x8a\x80\x1b\x5c" +"\x64\x98\xa2\x77\x1f\x78\xa1\x80\xb5\xbc\x1a\xba\x97\xae\xa1\xa2\x1e\xa0\xa0\xa9\x93\xc0\x1b\x92\xa3\x8b\x8a\x9d\x1f\x0e\xa3\xf7" +"\x8b\xf9\x05\x15\xf7\xb6\xf7\x47\x6d\x06\x86\x2d\x59\x58\x39\x8e\x08\xfb\xfb\x76\x9e\x06\xc1\x89\x9b\x78\x89\x50\x08\xfc\x63\x07" +"\x8c\x52\x7c\x79\x55\x89\x08\x78\x76\xf7\xe4\xa0\x6a\x06\x55\x8d\x7c\x9c\x8d\xc5\x08\x0e\xf7\xc4\xf8\x16\xf9\x06\x15\xcb\x06\xdb" +"\x8e\xbc\x4d\x0a\xf7\x43\xfc\xc6\xfb\x43\xa8\x06\x90\xe7\xbb\xc6\x1d\xf7\x7b\xf7\xda\x06\xa4\xbf\x9e\x90\xb1\x1b\xb1\xa0\x82\x75" +"\x9b\x1f\x9e\x71\x94\x60\x4d\x1a\x26\x78\x4c\x6d\x81\x84\x92\x95\x8f\x8c\x90\x8d\x90\x1e\x91\x98\x8c\x8e\x94\x1a\xa8\x76\xa0\x6d" +"\x66\x74\x73\x65\x54\xb6\x6b\xd4\xf7\x0f\xdf\xe6\xf7\x1b\xf7\x10\x3f\xd2\xfb\x1b\x57\x65\x83\x72\x48\x1e\x0e\xf7\x20\xf8\xda\x7f" +"\x1d\xfb\xce\xf7\x80\x15\xc2\x06\xf7\x1f\xe1\x05\xaa\x9f\x93\x95\xa1\x1a\xa5\x78\x9c\x6f\x78\x7a\x82\x79\x7b\x1e\x0e\xf7\x4a\xf8" +"\xff\xf9\x38\x15\x74\x06\x6c\x85\x7c\x7c\x72\x1b\x82\x7f\x8e\x91\x7e\x1f\xa9\x47\x75\x91\x52\x1b\xfb\x57\xfb\x24\xfb\x29\xfb\x5e" +"\xfb\x5a\xf7\x25\xfb\x1f\xf7\x62\xf7\x13\xdc\xba\xf7\x0f\xdf\x1f\x68\xa2\x05\x23\x42\x48\x62\x29\x1b\x43\x57\xa4\xbf\x68\x1f\x6a" +"\xbd\x7e\xbf\x89\xf5\x08\xf7\x0e\x06\xe0\xaa\x6d\x35\x90\x1f\xa2\xf7\xa0\x74\x06\x87\x36\x6c\x6e\x35\x8a\x08\xfb\x0e\x06\x8e\xe4" +"\x95\xb8\xa6\xba\x08\xc7\xad\xbe\xa8\xd4\x1b\xcc\xc2\x73\x5e\xaf\x1f\xa7\x69\x98\x6d\x93\x52\x08\xa2\x06\x0e\xc7\xf8\x85\xf9\x33" +"\x15\x74\x06\x6f\x8a\x81\x7e\x77\x1b\x84\x84\x8c\x8e\x85\x1f\xaa\x39\x6d\x92\x5a\x1b\xfb\x11\x31\x3c\xfb\x01\x53\xa3\x56\xb3\x6b" +"\x1f\xac\x71\x8c\x8a\xf7\x02\x61\xec\x66\x8b\x8b\xa1\x7e\x08\xaa\x79\x9f\x68\x67\x1a\x4d\x57\x61\x3e\x49\x4a\xa6\xb6\x65\x1e\x65" +"\xb8\x79\xb2\x8a\xb9\x08\x71\xfb\x82\xa5\x06\xa7\x93\x96\x96\xa2\x1b\x95\x93\x89\x83\xa0\x1f\x75\xc3\xb7\x81\xb7\x1b\xc8\xca\x9f" +"\xad\xb8\x1f\xb6\xac\xa3\xbf\xc8\x1a\xc5\x75\xbf\x63\xaf\x1e\x64\xad\x8b\x8b\xfb\x0f\xb8\x2f\xae\x8b\x8b\x75\x97\x08\x6f\x9b\x79" +"\xaa\xaa\x1a\xc3\xbe\xb2\xd6\xc5\xc0\x74\x60\xb3\x1e\xa7\x6d\x98\x6f\x94\x5b\x08\xa2\x06\x0e\x20\x66\x0a\x20\xf7\xf6\x9f\x49\x1d" +"\xfb\x8c\xf9\xef\x15\xc7\x1d\xf7\x47\x16\xc7\x1d\x0e\x8f\xf7\x26\xf9\x16\x15\xac\x06\xc0\x89\x9a\x78\x89\x50\x08\xfc\x47\x07\x47" +"\x77\x6d\x5d\x6e\x74\x98\x9b\x8f\x8c\x90\x8d\x8d\x1e\x9f\xa6\x8e\x92\x9f\x1a\xae\x6b\xaa\x66\x65\x6c\x67\x5f\x45\xd8\x53\xed\xd2" +"\xce\xa9\xba\xaf\x1e\xa3\xab\x92\xa8\xd1\x1a\xf8\x07\x07\x89\xc6\x9a\x9e\xc0\x8d\x08\x9b\x9f\xfb\xdf\x06\x0e\xf8\x8f\xf7\xda\xf9" +"\x04\x15\xf7\x29\xfc\xa4\x06\x25\x0a\xf7\xd8\x06\xf7\x26\xdb\xca\xf7\x09\xf7\x14\x35\xd1\xfb\x32\x75\x80\x8b\x88\x61\x1f\xf7\x50" +"\x07\x89\xc5\x9a\x9e\xc0\x8d\x08\x9e\x9f\xfc\x87\x6e\x0a\xcc\xa6\x1e\xa1\xc3\x94\xc8\xf6\x1a\xf7\xbb\xa4\x15\x8c\x99\x98\x8c\x94" +"\x1b\xd7\xb4\x54\x25\x30\x66\x57\x49\x66\x7e\x99\xb4\x1f\x0e\xf8\x8e\xf8\x92\xf7\xd2\x15\xfb\x72\x07\x25\x0a\xf7\xd8\x06\xf7\x26" +"\xda\xca\xf7\x09\xf7\x15\x35\xd1\xfb\x32\x76\x86\x8b\x87\x5b\x1f\xf7\x50\x07\x89\xc5\x9a\x9e\x30\x0a\xfb\x61\xfb\x89\x69\x0a\xf7" +"\x72\x07\xf8\x1b\x9e\x15\x8c\x99\x97\x8c\x95\x1b\xd6\xb5\x53\x26\x2f\x65\x57\x49\x67\x7e\x99\xb4\x1f\x0e\xf7\xc4\xf7\xf7\xf9\x06" +"\x15\xcc\x06\xdc\x8e\xbb\x59\x91\x2f\x08\xa8\xf7\x43\xfc\xc3\x06\x86\xfb\x43\x05\xa8\x06\x8f\xe7\xbc\xc6\x1d\xf7\xc8\x9f\x80\x20" +"\x1d\xf7\x65\x07\xa5\xb6\xad\x96\xb6\x1b\xcc\xa0\x6e\x30\x1f\xfb\x12\x21\x1d\x80\x77\xf7\xc2\x9f\x7e\x20\x1d\xf7\x2a\x07\xef\x52" +"\xba\xfb\x0e\x4d\x5d\x81\x6f\x4a\x1e\x0e\xf7\x79\x53\x0a\xc0\xf9\x07\x15\xc2\x06\xf7\x1f\xe1\x05\xac\xa0\x92\x93\xa2\x1a\xa5\x78" +"\x9c\x6f\x77\x7a\x82\x79\x7b\x1e\x0e\xf7\x82\xf8\x80\xf9\x2a\x15\x77\xbd\x07\xa7\x99\x7f\x75\x81\x88\x7d\x85\x7f\x1f\xfb\x1d\xfb" +"\xc0\xfb\x24\xf7\xce\x05\x86\x97\x87\x98\x92\x1a\x9a\x94\x94\x9a\x1e\xbd\x9f\xfb\xbc\x77\x06\xac\x8c\x9e\x7d\x9e\x67\xf7\x7a\xfc" +"\x6a\x18\x53\x74\x75\x74\x6f\x1b\x77\x84\x94\xa7\x8a\x1f\xb1\x8a\x75\xa2\x67\x1b\x64\x70\x70\x64\x56\xb7\x67\xcc\xb2\xad\x98\xa4" +"\xa5\x1f\x9c\x9c\x96\x9c\xa3\xbe\xf7\x70\xf8\x68\x18\xa4\xc1\x95\x94\xad\x8c\x08\x96\x9f\x06\xfb\x5f\xf7\x05\x15\x7b\x6e\x7d\x6a" +"\x6b\x6e\x99\x9b\x1e\x8c\x95\x05\x8f\x98\x8c\x92\x91\x1a\xa4\x74\x9e\x6d\x6b\x74\x74\x6a\x54\xc9\x68\xee\xf2\xc9\xad\xc3\xac\x74" +"\xa2\x6b\x6e\x74\x78\x72\x86\x8c\x84\x8f\x7d\x1e\x0e\x8f\xf8\x5d\xd6\x15\x77\x7c\x89\x89\x82\x1b\x7c\x85\x99\xaf\x1f\xf7\x7b\x07" +"\xb4\x80\xab\x77\x9e\x1e\xa0\x73\x5e\x99\x5b\x1b\x25\x33\x53\x4a\x6a\xaa\x6e\xaf\xb0\xaa\xa4\xa8\x96\x86\x95\x7e\x97\x1f\x81\x96" +"\x89\x8f\x93\x1a\x9e\xa1\x99\xaa\xb3\x9a\x76\x54\x1e\x44\x07\x56\x77\x61\x78\x66\x73\x08\x4f\x66\x70\x64\x59\x1a\x57\xb6\x62\xc1" +"\xb1\xb8\xa4\xb5\xb2\x1e\x5f\x95\xa8\x72\xb7\x1b\xb6\xb2\xa4\xb7\xa3\x1f\xfb\x51\xb7\x15\x75\x73\x7f\x84\x7b\x1b\x76\x7e\x9e\xa8" +"\xb9\xab\xb5\xc1\xa3\x1f\x0e\x8f\xf8\x3d\xf9\x3b\x15\x7c\x83\x7e\x87\x66\x1b\x6b\x06\x5c\x60\x88\x86\x77\x1f\x57\x7e\x62\x66\x6f" +"\x52\x08\x6c\x49\x74\xfb\x06\x2e\x1a\x32\xa1\x41\xb6\x57\x1e\x62\xad\xbf\x71\xbb\x1b\xbd\xc5\xa7\xb4\xaf\x1f\xb0\xb5\x9f\xc8\xcf" +"\x1a\xf7\x17\x35\xef\xfb\x05\x42\x55\x65\x3c\x66\x1e\x99\xf7\x29\xbd\xc6\xf7\x04\x8c\x08\xa8\x06\xe0\x88\xbd\xb4\x9f\xe3\x08\xfb" +"\x5a\xfb\x95\x15\xa1\xa0\x79\x71\x94\x1f\x94\x6f\x8f\x68\x4b\x1a\xfb\x39\xa7\x0a\xb7\xc4\xf8\x58\x15\x77\x07\xa8\x9b\x75\x66\x89" +"\x1f\xfb\xbb\x07\x8d\x67\x7b\x76\x6e\x8a\x08\x77\xf7\x78\x07\xf7\x03\xcb\xb7\xd8\xc4\x69\xaf\x41\xa0\x1f\xc2\x9b\xa9\xae\xbc\x1a" +"\xb3\x74\xac\x62\xa1\x1e\x9b\x6d\x6c\x91\x59\x1b\x66\xfb\x82\x15\xaf\x98\x88\x83\x98\x1f\xa1\x7d\x97\x6f\x66\x1a\x52\x73\x6b\x60" +"\x75\x84\x92\xa3\x1e\xf7\xf3\x04\xc5\x89\xa4\x73\x52\x1a\x56\x71\x6c\x5f\x89\x85\x8b\x8c\x86\x1e\x0e\x61\xf8\x14\xf8\x58\x15\xfb" +"\xdb\x76\x06\xa8\x9b\x75\x67\x89\x1f\xfb\xba\xb6\x1d\xf7\xe4\xb1\x07\xd3\x8a\xae\x67\x8e\x40\x08\xa0\x06\x0e\x95\xf8\x6a\xb0\x15" +"\x7d\x06\x6e\x8c\x7b\xa0\x8d\xaf\x08\xf7\xaa\x07\xb0\x89\x9b\xa0\xa7\x1b\xa0\xfc\x04\x76\x98\x07\xb1\x96\x7b\x52\xfb\x2a\x71\x26" +"\x58\x56\x1f\x7d\x7d\x80\x87\x79\x1b\x7c\x06\x87\xfb\x28\x05\x9f\x06\x8e\xd8\xb0\xaf\xd7\x8a\x08\xf7\x50\x06\xd7\x8c\xb0\x68\x8e" +"\x3d\x08\x9f\x06\xfb\x4a\xf7\x29\x15\xfb\x4d\x06\xc4\xcb\xa3\xee\x8d\xf7\x41\x08\xb5\xf1\x07\x0e\x57\xf8\x24\xf7\x7d\x15\x89\xca" +"\x83\xaf\x74\xb3\x08\xc3\x6b\x58\xac\x56\x1b\x56\x56\x6c\x58\x69\x1f\x6c\x5e\x7c\x53\x47\x1a\x3e\x9f\x53\xb4\x64\x1e\x6c\xaa\xb7" +"\x7a\xb7\x1b\xd6\xca\xbb\xdf\xb0\x1f\x72\x97\x05\x5a\xdf\x1d\xb0\x15\xee\x8c\xa3\xc1\xb6\x1b\x9e\x9c\x7b\x74\x92\x1f\x92\x72\x8b" +"\x86\x8d\x37\x08\x0e\x57\xf8\x24\xf7\x7c\x15\x89\xc9\x83\xaf\x74\xb2\x08\xc2\x6a\x59\xac\x56\x1b\x56\x56\x6c\x59\x69\x1f\x6c\x5e" +"\x7c\x54\x48\x1a\x3e\x9f\x54\xb4\x63\x1e\x6d\xaa\xb7\x7a\xb7\x1b\xd6\xcb\xbb\xde\xaf\x1f\x72\x98\x05\x59\xdf\x1d\xaf\x15\xee\x8c" +"\xa3\xc0\xb6\x1b\x9e\x9c\x7b\x74\x92\x1f\x92\x72\x8b\x86\x8d\x38\x08\xfb\x21\xf8\x0f\x15\x6c\x71\x71\x6c\x6b\xa5\x71\xab\xaa\xa5" +"\xa5\xaa\xab\x72\xa5\x6a\x1f\xf7\x44\x16\x6c\x71\x71\x6c\x6b\xa5\x71\xab\xaa\xa5\xa5\xaa\xab\x72\xa5\x6a\x1f\x0e\xf7\x79\xf7\x9b" +"\x16\xf7\x5a\x9f\x06\x72\x90\x7e\x9f\x8d\xba\x0a\x9c\x6e\x8d\x88\x85\x1a\x82\x82\x86\x7b\x1e\x83\x77\xf7\x66\x9f\x06\x73\x8c\x8a" +"\xbf\x0a\xc6\xd2\x9c\x95\xc0\x8c\x19\x9f\xfb\x41\x77\xa0\x07\x9a\x95\x84\x7f\x82\x86\x82\xba\x1d\xfb\x5a\x77\x07\xa4\x87\x98\x76" +"\x8a\x69\x08\xfb\x15\x07\xfb\x10\xf7\x1e\x05\x7f\x98\x86\xce\x1d\x8a\x9b\x81\xc6\x44\xb6\x59\x18\xfb\x25\xfb\x7e\x70\x5f\x8a\x8a" +"\x73\x8a\x19\x77\xf7\x67\x9f\x83\x07\x7a\x83\x90\x94\x90\x90\x96\x98\xa1\x1f\xde\xf7\x1f\x9a\x79\x05\xfb\x06\x07\x8c\x69\x7f\x77" +"\x71\x86\x08\x0e\x2d\xc3\xf7\xd4\x15\xa3\x06\xd0\x91\xa6\xad\xbc\x1b\xb3\xa2\x6c\x56\x4c\x77\x76\x52\x1f\x96\x0a\x05\x36\x9f\xbd" +"\x63\xe0\x1b\xf7\x03\xd8\xc0\xd7\xcb\x63\xb5\x3f\x9c\x1f\xca\x9b\xab\xb1\xc2\x1a\xcc\x4d\xb8\x30\x73\x7b\x88\x82\x6e\x1e\x87\x7e" +"\x83\x89\x84\x1b\x7e\x85\x91\x97\x1f\x7a\x06\x0e\xdb\x3f\x0a\x0e\xdb\x3f\x0a\x83\xf7\x66\x15\x8c\x88\x05\x88\x07\x83\x07\x75\x76" +"\x7d\x69\x69\x76\x99\xa1\x8e\x8b\x8d\x8c\x8e\x1e\x8c\x9a\x05\xa1\x79\x9b\x72\x71\x79\x79\x70\x5c\xc7\x68\xda\xdc\xc7\xae\xba\xa6" +"\x79\x9d\x72\x72\x79\x7b\x75\x1e\x0e\xdb\x54\x0a\x0e\xcc\xf7\xe5\xf8\x33\x15\xfb\xe4\x07\x8d\x67\x7c\x76\x6e\x89\x08\x77\xf7\x66" +"\xb2\x0a\xaf\x89\x9b\xa1\xa8\x1b\xa0\xfb\xf5\x76\x07\xb8\x89\x91\x7f\x36\x1a\x43\x07\x36\x88\x54\x84\x6d\x1e\x6d\x85\x80\x7a\x7f" +"\x1b\x85\x88\x8f\x90\x8d\x8b\x8b\x8d\x95\x1f\x8c\x91\x8b\x8b\x8f\x1a\xa8\x75\xa0\x6c\x6a\x75\x74\x68\x5d\xa9\x6d\xb9\xb2\xa9\x9e" +"\xae\x9c\x1e\x9f\xb4\x91\xbc\xf7\x10\x1a\xf7\x31\x07\x0e\xf7\x4d\xf8\x4d\xf8\x58\x15\x29\xfb\x9a\x23\xf7\x9a\x05\xfb\x38\x77\x06" +"\xa7\x8a\x9b\x76\x89\x66\x29\x0a\x8d\x67\x7c\x76\x6e\x89\x08\x77\xf7\x0c\x9f\x07\x6f\x8c\x7b\xa1\x8d\xaf\x08\xf7\xa1\x07\xf7\x1f" +"\xfb\xf0\x05\x9d\x06\xf7\x15\xf7\xec\x05\xfb\x9d\x07\x66\x8d\x7a\x75\x6e\x1b\x77\xf7\x67\x9f\x07\x6e\x8d\x7c\xa0\x8d\xaf\x08\xf7" +"\xba\x07\x89\xaf\x9b\xa1\xa7\x8c\x08\x9f\x07\x0e\xdb\xf7\xed\xf7\x96\x15\xfb\x06\xf7\x07\x06\x89\xae\x99\x3e\x1d\x89\x9a\x76\x89" +"\x67\x29\x0a\x8d\x66\x7c\x48\x0a\x8e\x7d\xa0\x8d\xae\x08\xf7\x22\xf7\x06\xfb\x22\x07\x8d\x68\x7d\x76\x71\x88\x08\x77\xf7\x61\x9f" +"\x07\x6f\x8c\x7b\xa1\x8d\xaf\x08\xf7\xba\x07\x89\xaf\x9a\xa1\xa8\x8c\x08\x9f\xfb\x61\x77\x07\xa5\x88\x99\x76\x89\x68\x08\x0e\x8f" +"\xf7\x90\xf8\x61\x15\xfb\x09\x35\x26\xfb\x1c\x47\xa3\x4b\xb5\x61\x1f\x67\xae\xc0\x73\xb8\x1b\xc0\xc4\xa6\xb5\xb0\x1f\xb0\xb5\x9f" +"\xc8\xcf\x1a\xf7\x18\x35\xee\xfb\x06\x1e\x8a\x64\x15\xa1\xa0\x79\x71\x94\x1f\x95\x6f\x8e\x69\x4c\x1a\xfb\x3b\xa7\x0a\xdb\xf7\x7c" +"\xf8\x33\x15\xf7\x04\xfb\xe4\x06\x8d\x67\x7b\x75\x6e\x8a\x08\x77\xf7\x67\xb2\x0a\xb0\x89\x9b\xa0\xa8\x1b\xa0\xfc\x54\x76\x07\xa8" +"\x9b\x75\x67\x89\x1f\xfb\xba\x07\xad\x0a\xf7\x67\x9f\x07\x6e\x8c\x7b\xa1\x8d\xaf\x08\x0e\xc7\xf7\x86\xb0\x15\x6b\xa1\xa5\x7c\xaf" +"\x1b\xae\xb0\x9f\xac\xa6\x1f\xad\xb7\x9b\xc3\xda\x1a\xf7\x20\x4f\xee\x37\x68\x71\x7c\x68\x6f\x1e\xb9\x74\x07\xfb\x28\x65\x05\x76" +"\x95\x07\xa5\x85\x96\x7a\x8a\x6a\x08\xfc\x3e\x07\x68\x8d\x7a\x76\x6f\x1b\x83\x77\xf7\x7f\x9f\x81\x06\x6a\x89\x79\x9f\x8d\xb1\x08" +"\xf8\x20\x04\xac\x8c\x92\x95\x9b\x1e\x9a\x95\x99\x94\x99\x1b\xae\x98\x5e\xfb\x0f\xfb\x1c\x81\x60\x6b\x75\x74\xa0\xa7\x81\x1f\x0e" +"\x57\xf8\x12\xf7\x11\x15\x65\x6d\x6c\x79\x6a\x1b\x47\x54\xe8\xf7\x06\xde\xa8\xc7\xb4\x9f\x99\x7c\x75\x8c\x1f\x8c\x68\x8c\x83\x95" +"\x78\x08\x71\x98\x9e\x7e\xa5\x1b\xac\xa4\xa4\xad\xcf\x47\xc0\x34\xfb\x08\x38\x25\xfb\x24\xfb\x1b\xd3\x31\xf7\x01\xcf\xc8\xb3\xd9" +"\xba\x1f\x0e\x86\xf7\x1d\x16\xf7\x6d\x9f\x06\x6b\x7b\x9f\xb2\x8d\x1f\xf7\xe4\x9c\x07\xd2\xae\x67\x3f\x8f\x1f\x9f\x06\x81\xf7\x29" +"\x05\xfc\x23\x06\x81\xfb\x29\x05\x9f\x06\xd6\x8e\xaf\xb0\xd2\x1b\x9c\xfb\xe4\x06\x8c\x64\x7c\x78\x6b\x8a\x08\x0e\x8f\x6e\x1d\x0e" +"\xf7\x58\xf8\x2c\xf9\x22\x15\xfb\x3b\x76\x06\xa7\x9b\x75\x68\x89\x1f\xfb\x33\x07\xac\x6c\x75\x96\x67\x1b\x2e\x49\x28\xfb\x1e\xfb" +"\x21\xca\x2e\xe9\xac\xa7\x96\xa3\xa9\x1f\x20\x07\x8d\x68\x7b\x75\x6f\x8a\x08\x77\xf7\x67\x9f\x07\x6d\x7b\xa1\xaf\x8d\x1f\xf6\x07" +"\x73\xaa\xa6\x80\xac\x1b\xe9\xca\xe9\xf7\x20\xf7\x1e\x49\xee\x2e\x68\x71\x7e\x6c\x6f\x1f\x63\x04\x9b\x9f\x9b\x92\x9b\x1b\xb9\xa0" +"\x58\xfb\x08\xfb\x15\x74\x53\x56\x7b\x7e\x90\x97\x7d\x1f\xfb\x11\x16\x7f\x7d\x7e\x86\x7b\x1b\x56\x74\xc3\xf7\x14\xf7\x08\xa0\xbf" +"\xb9\x9b\x9c\x83\x7c\x9e\x1f\x0e\x8f\xf7\x68\xf7\x38\x15\xc6\x2c\x05\x96\x79\x8e\x84\x85\x1a\x7d\x7c\x85\x73\x8d\x1e\x8a\x77\xf7" +"\x78\x9f\x82\x06\x78\x8c\x89\x8c\x6d\xba\xfb\x10\xf7\x59\x18\xdd\xf7\x02\xac\xb8\x99\x95\xb0\x8c\x19\x9f\xfb\x25\x77\x07\xa5\x87" +"\x93\x85\x7c\x1a\x82\x83\x7a\x80\x7d\x1e\x55\x43\x55\xe2\x05\x81\x9c\x88\x90\x93\x1a\x96\x94\x90\xab\x8f\x1e\x9f\xfb\x78\x77\x07" +"\xa7\x88\x90\x86\xb8\x44\xef\xfb\x34\x18\x39\xfb\x02\x68\x5b\x79\x7f\x60\x88\x19\x77\xf7\x36\x9f\x07\x7e\x8c\x84\x8b\x89\x8c\x08" +"\x7d\x8e\x82\x94\x95\x1a\x94\x91\x98\x97\x9c\x1e\x0e\xdb\xf8\xa2\xb0\x15\x7f\x06\x6d\x8a\x7a\xa0\x8d\xb1\x08\xf7\xaa\x41\x1d\xfb" +"\x62\xc9\x1d\x89\xad\x98\xa0\xa5\x8f\x08\x9f\xfb\x61\x3d\x1d\x67\x8d\x7b\x75\x6e\x1b\x76\xf7\xd8\x07\xd7\x8d\xb2\x67\x8e\x3d\x08" +"\x9f\x06\x0e\xcf\xcd\xf8\x44\x15\xa4\x87\x99\x76\x89\x69\x08\x40\x07\x3b\xbb\x65\xf1\xa6\x9f\x8e\x95\xa9\x1e\xfb\x06\x07\x8d\x67" +"\x7b\x75\x6f\x8a\x08\x85\x77\xf7\x6c\x9f\x06\x87\x0a\x9b\x75\x89\x67\x08\xfb\x23\x07\x84\x7e\x7f\x88\x7c\x1b\x62\x76\xa0\xb5\x1f" +"\xe5\xe2\x1d\x07\x0e\xf7\xf0\xf8\xbb\xf8\x58\x15\x61\x0a\xf9\x31\xa0\x07\x6f\x7b\xa0\xb0\x8d\x1f\xf7\xba\x07\x89\xb0\x9a\x9f\xa8" +"\x8d\x08\x9f\x07\x0e\xf7\xf0\xf9\x97\xb0\x15\x7f\x06\x69\x7e\x9e\xba\x8d\x1f\xf7\xa2\x07\x89\xb0\x9a\x9f\xa8\x8d\x08\x9f\xfb\x61" +"\x61\x0a\xf8\xb8\x07\xd6\x8c\xb1\x67\x8e\x3e\x08\x9f\x06\x0e\xe2\xbd\xf8\x58\x15\x81\xfb\x29\x05\x9f\x06\xd5\x8e\xaf\xb1\xd1\x1b" +"\xfb\xe5\xad\x1d\x7c\x7f\x8b\x89\x77\x1f\xf7\x05\x41\x1d\x07\x5f\xfb\x76\xb1\x1d\xf7\xb1\xe5\xf8\x58\x15\x77\x07\xa8\x89\x9a\x77" +"\x89\x66\x08\xfb\xbb\x07\x8d\x67\x7c\x77\x6e\x89\x08\x77\xf7\x77\x07\xf7\x02\xc7\xb7\xdb\xe4\x4a\xbc\xfb\x0a\x7b\x86\x8b\x89\x71" +"\xbc\x1d\x8f\x8b\x90\xaa\x0a\xf8\x48\x48\x15\x9f\x07\x6d\x8c\x7b\xa0\x8d\xb0\x08\xf7\xba\x41\x1d\xfb\x67\x77\x07\xa7\x8a\x9b\x75" +"\x89\x67\x29\x0a\x8d\x67\x7b\x75\x6f\x8a\x08\x77\x07\x0e\xac\xc2\xf8\x58\x15\x77\x07\xa8\x89\x9a\x77\x89\x66\x08\xfb\xbb\x07\x8d" +"\x67\x7c\x77\x6e\x89\x08\x77\xf7\x77\x07\xf7\x02\xc7\xb7\xdb\xe4\x4a\xbc\xfb\x0a\x7b\x86\x8b\x89\x71\xbc\x1d\x8f\x8b\x90\xaa\x0a" +"\x0e\x4b\xf7\x19\xf7\x70\x15\xf7\x26\x06\x89\x53\x88\x75\x83\x70\x08\x5f\x7d\x6a\x73\x5d\x1b\x51\x64\xac\xcf\x74\x1f\x6d\x82\x05" +"\x29\xa6\xc7\x58\xe3\x1b\xf7\x0d\xe4\xef\xf7\x1b\xf7\x1a\x34\xf1\xfb\x07\x71\x77\x86\x7e\x6e\x1f\x85\x7e\x84\x89\x82\x1b\x7d\x81" +"\x93\x97\x89\x1f\x79\x06\x84\xfb\x2a\x05\xa3\x06\xda\x9e\xaf\xb1\xc1\x1b\xaf\xa7\x77\x68\x99\x1f\x96\x6f\x8e\x78\x8f\x4c\x08\xfb" +"\x27\x06\x0e\xf7\xa0\xf7\x77\xf7\x97\x15\xf7\x06\x07\x89\xaf\x9a\xa1\xa8\x9c\x1d\x6e\x8d\x7c\xa0\x8d\xaf\x08\xf7\x21\xc3\x07\x8c" +"\x5a\x96\x63\xa0\x66\x08\x4c\xae\xce\x62\xcc\x1b\xbf\xc5\xa6\xb5\xaf\x1f\xb0\xb5\x9f\xc8\xcf\x1a\xf7\x19\x36\xed\xfb\x07\x20\x3e" +"\x3e\xfb\x11\x7a\x1e\xf7\x5c\xf7\x38\x15\xa2\xa0\x79\x71\x94\x1f\x94\x6f\x8f\x69\x4b\x1a\xfb\x3b\x78\x52\x55\x62\x79\xbb\xf5\xf7" +"\x4b\x9b\xc4\xbd\x1e\x0e\xb8\xf7\xd5\xf7\x5c\x15\xfb\x0d\x07\x8d\x67\x7c\x76\x6e\x89\x08\x77\xf7\x65\x9f\x07\x6e\x8d\x7c\x9f\x8d" +"\xb0\x08\xf7\xba\x07\xaf\x89\x9b\xa1\xa7\x1b\xa0\xfb\x83\x07\xfb\x00\x4a\x5b\x3c\x52\xac\x64\xcb\x78\x1f\x3c\xfb\x18\x72\x5e\x7f" +"\x80\x77\x89\x19\x77\xf7\x26\x07\xf7\x05\xf7\x5c\x05\xa4\xf7\x69\x15\xfb\x46\x07\x8a\x7f\x85\x8b\x85\x1b\x47\x6f\xa6\xcc\xc9\xa5" +"\xa4\xcc\x1f\x0e\x20\xf7\x58\xf8\x32\x15\xf7\x36\x06\x95\xf7\x2b\x05\x76\x06\x88\x3e\x67\x67\x42\x8a\x08\xfb\x67\x76\x06\xa9\x9b" +"\x75\x66\x89\x1f\xfb\xb7\x5d\x1d\x76\xf7\x71\xa0\x87\x07\x6c\x7b\xa1\xb0\x8d\x1f\x0e\xb4\xf7\x69\xf9\x22\x15\xfb\x42\x77\x92\x06" +"\xa8\x88\x9a\x77\x89\x68\x08\x77\x48\x66\xce\xfc\x4d\x07\xb7\x1d\xf7\x9a\x07\xaf\xa0\xa6\xa3\x9f\x1b\xb4\x9b\x3d\xfb\x57\xfb\x50" +"\x7a\x42\x60\x84\x87\x8f\x92\x1f\x8c\x95\x05\x8d\x94\x8c\x92\x8f\x1a\xa7\x78\x9f\x71\x6b\x76\x75\x69\x5f\xae\x6f\xc2\xf7\x13\xde" +"\xf7\x24\xf7\x72\xf7\x3c\x58\xef\x36\x5e\x6b\x7a\x59\x5c\x1e\xf7\x11\xf7\x21\xb0\xfb\x21\x07\x0e\x61\xc5\xf8\x42\x15\x8c\x06\x8d" +"\x06\x8c\x06\x8c\x06\xa6\x8a\x96\x7f\x8a\x70\x08\xfb\xdd\x07\x6f\x80\x80\x71\x8a\x1e\x86\x76\xf7\x6c\xa0\x80\x06\x71\x8c\x80\x96" +"\xa7\x1a\xf7\xf2\x8f\x07\x90\x06\x90\x06\x8f\x06\xdc\xae\x6c\x39\x95\x1f\xa2\x06\x83\xf7\x2d\x05\xfb\xdb\x06\xf7\x11\xcb\x15\xf7" +"\x2e\xed\x05\xa0\x99\x94\x98\x9c\x1a\x9f\x7e\x97\x75\x7c\x83\x86\x78\x78\x1e\xfb\x27\xfb\x2a\x05\x0e\x4b\xf7\xbf\xf7\x70\x15\xb0" +"\xfb\x27\x07\xf7\x09\x90\xa7\xbb\xca\x1b\xc1\xae\x65\x3c\x9f\x1f\xa3\x06\x84\xf7\x2a\x05\x79\x06\x7f\x89\x81\x83\x7c\x1b\x83\x84" +"\x8d\x91\x7e\x1f\x98\x6e\x77\x90\x71\x1b\xfb\x07\x34\x25\xfb\x1a\xfb\x1b\xe4\x27\xf7\x0c\xe4\xc6\xbe\xed\xa7\x1f\x6d\x94\x05\x46" +"\x73\x65\x6b\x51\x1b\x5d\x6a\xa3\xb7\x7d\x1f\x82\xa6\x89\xa2\x89\xc2\x08\x0e\x20\xf7\xd7\xf8\x64\x15\x79\x06\x79\x8a\x81\x7f\x7d" +"\x1b\x84\x81\x8e\x93\x75\x1f\x97\x6c\x80\x8d\x76\x1b\x3e\x4e\x52\x44\x52\xac\x5b\xcf\x64\x1f\xde\x5b\x8b\x8b\x9e\x79\x08\x95\x81" +"\x91\x7d\x7e\x1a\x6d\x6b\x71\x67\x53\x51\xbc\xcd\x78\x1e\x7b\x06\x93\xfb\x2a\x05\x99\x06\xa0\x93\x93\x92\x9b\x1b\x91\x91\x8a\x88" +"\x91\x1f\x78\xb8\x9e\x86\xa8\x1b\xda\xcc\xc8\xd5\xc7\x69\xbb\x44\xb3\x1f\x30\xbe\x8b\x8b\x7e\x97\x08\x83\x94\x85\x98\x98\x1a\xa7" +"\xa6\xa1\xae\xbd\xbb\x62\x47\xa7\x1e\x98\x06\x0e\xfb\x6e\xf7\x62\xf8\x58\x15\xfb\x43\x76\x91\x5b\x1d\xfb\xba\x5d\x1d\x85\x77\xf7" +"\x76\x9f\x84\x06\x6d\x7b\xa1\xb0\x8d\x1f\x45\xf8\xd9\x15\x65\x6c\x6d\x65\x65\xa9\x6c\xb1\xb1\xa9\xaa\xb1\xb0\x6c\xaa\x67\x1f\x0e" +"\xfb\x6e\xf7\x63\xf8\x58\x15\xfb\x43\x76\x91\x5b\x1d\xfb\xba\x5d\x1d\x85\x77\xf7\x76\x9f\x84\x06\x6d\x7b\xa1\xb0\x8d\x1f\xfb\x31" +"\xf8\xd8\x15\x6b\x6e\x6d\x6a\x67\xa7\x6e\xac\xaf\xa6\xa7\xae\xaf\x6f\xa8\x68\x1f\xf7\x45\x16\x6b\x6f\x6d\x6a\x67\xa6\x6e\xad\xae" +"\xa7\xa7\xae\xaf\x6e\xa8\x68\x1f\x0e\xfb\x37\xf7\x8f\xf8\x58\x15\xfb\x47\x76\x95\x5b\x1d\xfb\xe8\x07\x6e\x07\x8d\x6d\x05\x8e\x53" +"\x8b\x88\x83\x1a\x70\x84\x7b\x80\x84\x87\x93\x97\x8f\x8b\x8e\x8c\x8e\x1e\x8c\x9c\x05\xaa\x74\xa3\x6f\x6e\x72\x70\x6a\x5d\xb7\x6d" +"\xd0\xe1\xc0\xbf\xe2\x1e\x40\xf9\x47\x15\x63\x6b\x6c\x64\x63\xaa\x6b\xb3\xb1\xab\xab\xb2\xb2\x6c\xab\x65\x1f\x0e\xf7\xb0\xf7\xbf" +"\x16\xf7\x77\x06\xf7\x02\xc7\xb7\xdc\xe3\x4a\xbc\xfb\x0b\x7b\x87\x8b\x89\x71\x1f\xf7\x05\x07\xb0\x89\x9b\xa0\xa8\x1b\xa0\xfb\xf5" +"\x76\x07\xb8\x89\x91\x7f\x36\x1a\x43\x07\x37\x88\x53\x84\x6d\x1e\x6e\x85\x80\x79\x7f\x1b\x85\x88\x8f\x90\x8d\x8b\x8b\x8d\x95\x1f" +"\x8c\x91\x8b\x8b\x8f\x1a\xa8\x75\xa0\x6c\x6a\x75\x74\x68\x5d\xa9\x6d\xb9\xb2\xa9\x9e\xae\x9c\x1e\x9f\xb3\x91\xbd\xf7\x10\x1a\xf7" +"\x31\xee\xfb\xe5\x07\x8d\x67\x7c\x77\x6e\x89\x08\xf7\x3b\xf7\x62\xb1\x1d\xf7\xc1\xf7\xf3\xf7\x71\x15\xfb\x23\xad\x1d\x7d\x84\x8b" +"\x89\x71\x1f\xf7\x05\xa8\x0a\x89\x9b\x76\x89\x67\x08\xfb\x07\xfb\x06\xf7\x07\x07\x89\xae\x99\x3e\x1d\x89\x9a\x76\x89\x67\x08\xfb" +"\xbb\x07\x8d\x67\x7c\x48\x0a\x8e\x7d\xa0\x8d\xad\x08\xf7\x23\x07\xf7\x83\x90\x15\x9c\x06\xbc\xa4\x6a\x48\x50\x75\x6b\x63\x75\x84" +"\x93\xa3\x1f\x0e\xc7\xad\xf8\x9b\x15\xce\xfc\x4d\x06\xb7\x1d\xf7\x92\x07\xbc\xa5\x9d\x9c\xa6\x1b\xa1\x96\x76\x5e\x1f\xfb\x92\x07" +"\x8c\x6a\x80\x78\x71\x85\x08\x77\xf7\x5f\x9f\x07\x6e\x8d\x7c\x9f\x8d\xaf\x08\xf7\x80\x07\xe9\x63\xc0\x43\x62\x67\x74\x5a\x63\x1e" +"\xf7\x16\xf7\x3e\xb0\xfb\x3e\xed\xfb\x42\x77\x92\x07\xa8\x88\x9a\x77\x89\x68\x08\x77\x48\x07\x0e\xdb\x54\x0a\x89\xc7\x15\xf7\x2e" +"\xed\x05\xa0\x98\x94\x98\x9b\x1a\x9f\x7e\x97\x76\x7b\x82\x86\x79\x79\x1e\xfb\x27\xfb\x29\x05\x0e\x8f\x6e\x1d\x7c\xf7\x94\x15\x8c" +"\x83\x8b\x8a\x89\x1a\x75\x76\x7d\x6a\x69\x76\x99\xa1\x1e\x93\x07\x8c\x92\x8b\x8e\x90\x1a\xa0\x79\x9c\x72\x72\x79\x79\x70\x5c\xc7" +"\x68\xd9\xdc\xc7\xae\xba\xa6\x79\x9d\x72\x72\x79\x7b\x73\x1e\x0e\xf7\xae\xf9\x82\x16\x9f\x79\x07\x56\x8e\x7c\x9d\x8d\xc5\x08\xf8" +"\x67\x07\x89\xc3\x9a\x9d\xc0\x8d\x08\x9d\x9f\xfb\xcf\x66\x1d\x79\x89\x53\x08\xfc\xa4\xfb\x96\xf8\xa4\x07\x89\xc3\x9a\x9d\x89\x0a" +"\x79\x89\x53\x08\xfc\x67\x07\x8d\x51\x7c\x79\x56\x88\x08\x78\x77\xf7\x7b\x06\xcc\x8e\xb4\x58\x93\x2c\x08\x9a\x06\x99\x06\x93\xea" +"\xb4\xbf\xcc\x87\x08\x0e\xdb\xcb\xf8\x58\x15\x3d\x1d\x67\x8d\x7b\x75\x6e\x1b\x76\xea\x07\xd8\x8d\xb2\x67\x8e\x3d\x08\x9f\x06\x8e" +"\xd9\xb2\xaf\xd8\x89\x08\xea\xa0\x06\x6e\x7b\xa0\xb0\x8d\x1f\xb9\x0a\xfb\x61\xc9\x1d\x8a\xad\x97\x9f\xa5\x90\x08\x9f\x07\x0e\x4d" +"\xad\xf7\x6e\x15\x8c\x4d\x94\x66\xa2\x63\x08\x53\xab\xbd\x6a\xc1\x1b\xbf\xc0\xaa\xbe\xae\x1f\xa9\xb8\x9a\xc2\xd0\x1a\xd8\x77\xc3" +"\x62\xb2\x1e\xaa\x6c\x60\x9c\x5e\x1b\x40\x4b\x5b\x37\x68\x1f\xa3\x7f\x05\xbc\xa3\xa6\x9f\xb5\x1b\xcd\xb7\x4b\x23\x8e\x1f\x8d\x66" +"\x15\x28\x8a\x74\x55\x60\x1b\x77\x7a\x9b\xa3\x85\x1f\x84\xa3\x8a\x92\x8a\xdd\x08\x0e\xf7\xe5\xf9\x39\xf9\x47\x15\x48\x06\xfc\x73" +"\xfd\x63\x05\xcd\x06\xec\xf8\x5b\x15\x6d\x6e\x79\x81\x72\x1b\x4e\x5f\xd4\xf0\xcb\x9e\xb4\xa9\x9d\x94\x7e\x6e\x8f\x1f\x5d\x90\x9a" +"\x78\xac\x1b\xa6\x9d\x9d\xa6\xbc\x59\xb1\x4c\x2a\x48\x3e\xfb\x01\x24\xca\x42\xe2\xc6\xb8\xa9\xc7\xad\x1f\xf7\xf1\x48\x15\x2c\x49" +"\x40\xfb\x00\x21\xcd\x42\xea\xec\xcb\xd3\xf7\x00\xf6\x49\xd6\x2c\x1f\x71\x04\xb4\x98\x67\xfb\x01\xfb\x15\x7f\x66\x61\x66\x7b\xaf" +"\xe0\xf7\x2f\x95\xae\xb6\x1f\x0e\xfb\x0d\xf7\x52\xf7\x94\x15\x8e\x8e\x93\x93\x99\x9a\xc6\xc9\x90\x91\x9b\xa1\x08\xb9\xcd\xa7\xd4" +"\xc1\x1a\xc6\x69\xb3\x57\x2b\x47\xfb\x17\xfb\xae\x59\x1e\x7c\x77\x85\x83\x83\x82\x08\x65\x60\x8b\x8b\x7c\x1a\x7c\x95\x7a\x93\x92" +"\x9b\x99\xa1\x9e\x1e\x8a\x81\x8b\x81\x87\x1a\x65\x8e\x68\x90\x7b\x1e\x5e\x97\xa9\x72\xb3\x1b\xaa\xa8\x9c\xab\xa2\x1f\x9c\xa3\x96" +"\xa6\xa0\x1a\x9a\x83\x94\x7f\x80\x85\x86\x7a\x83\x1e\x68\x79\x84\x82\x80\x1b\x83\x86\x94\x9b\xa5\x93\xcc\x99\xdf\x1f\x95\xd7\x15" +"\xf7\x45\xa6\xa5\xdb\xac\x1b\x98\x93\x7e\x77\x54\x59\x21\x52\x4c\x1f\x0e\xf8\x91\xf9\x00\x7e\x15\xf8\xa4\x07\xb0\x8d\x9b\x92\x9b" +"\x1e\x9c\x92\x96\x97\x95\x1b\x91\x8e\x88\x86\x1f\x87\x07\x89\x84\x8b\x89\x85\x1a\x6d\xa0\x76\xa9\xab\xa1\xa4\xae\xb8\x6a\xaa\x5c" +"\x65\x6f\x79\x68\x78\x1e\x7d\x70\x86\x6d\x4e\x1a\xfb\xa5\x07\xfb\xcc\xf8\x47\x05\xfb\x56\x71\x06\xb2\x89\xa1\x7b\xa6\x60\x08\xfc" +"\x3b\x07\x46\x80\x6c\x71\x86\x87\x8f\x90\x8c\x8b\x8d\x8c\x8d\x1e\x8d\x92\x8c\x8e\x92\x1a\xa7\x75\xa0\x6c\x6b\x75\x71\x65\x5a\xac" +"\x6b\xbb\xb0\xa8\x9d\xae\x9d\x1e\x99\xa6\x90\xa9\xc7\x1a\xf8\x05\x07\xf8\x18\xfc\xaf\x05\xf7\x79\xf8\x6f\x15\x30\x49\x4a\x30\x31" +"\xcc\x49\xe5\xe8\xcc\xcb\xe7\xe6\x4a\xcc\x30\x1f\x8a\x69\x15\xb6\xa4\x5e\x3e\x3c\x73\x60\x5f\x60\x73\xb7\xda\xd7\xa4\xb8\xb5\x1f" +"\xfb\x16\xfc\x40\x15\xf7\x9a\xd0\xfb\x9a\x06\x0e\xc9\xf8\xb3\xf8\x57\x70\x1d\xc9\xf7\xbd\xf8\xa5\x15\x8d\x93\x91\xa7\x05\x9a\xce" +"\x8c\x90\x9b\x1a\xa5\x79\x9e\x72\x73\x79\x77\x71\x80\x8d\x7d\x8f\x78\x1e\x96\x60\x8d\x80\x8d\x81\x8b\x89\x8e\x7e\x19\xf7\xaf\x3d" +"\x70\x1d\x8f\x23\x1d\xf7\x0e\xf8\x1c\x22\x0a\xfb\x37\xc5\xf7\x82\x15\xf7\x42\xfb\xe8\x05\x7c\x93\x95\x83\x97\x1b\x93\x90\x8f\x92" +"\x92\x89\x93\x88\x93\x1f\xfb\x17\xf7\xdd\xf7\x17\xf7\xdd\x05\x8e\x93\x8d\x93\x92\x1a\x93\x86\x8f\x83\x7f\x83\x85\x79\x81\x1e\x0e" +"\xfb\x37\xf7\xa7\xf7\x82\x15\xfb\x42\xf7\xe8\x05\x9c\x82\x82\x92\x7f\x1b\x83\x86\x87\x83\x85\x8d\x83\x8e\x82\x1f\xf7\x17\xfb\xdd" +"\xfb\x17\xfb\xdd\x05\x88\x84\x89\x83\x84\x1a\x83\x90\x87\x93\x97\x93\x91\x9c\x95\x1e\x0e\x8f\x76\x1d\x91\x70\x90\x7f\x97\x7f\x08" +"\x67\x5b\x81\x76\x6f\x1a\x5c\xb8\x69\xc8\xa0\x0a\x80\x88\x7d\x1b\x67\x6e\x9f\xa3\x9e\x9a\x9d\x9f\x92\x1f\xc5\x9d\x90\x8d\xaf\xb2" +"\x08\xfb\x57\xc4\x15\x6c\x70\x77\x7f\x73\x1b\x6d\x76\xa6\xb3\xc5\xb5\xb5\xdb\xa0\x1f\x0e\xf8\x8c\xf9\x38\xf7\x6b\x15\x6b\x72\x78" +"\x7e\x73\x1b\x78\x7d\x90\xa5\x50\x1f\xa7\x4d\x6d\x94\x6c\x1b\x55\x67\x73\x4f\x69\x8b\x0a\xad\xa2\xc8\xb6\x1f\x54\xf7\x80\x15\x6a" +"\x72\x78\x7e\x73\x1b\x78\x7e\x8f\xa6\x4f\x1f\xa7\x4d\x6d\x94\x6c\x1b\x55\x67\x72\x50\x69\x1f\xc0\x5d\x05\xab\xa2\x9c\x95\xa8\x1b" +"\xaf\xa8\x82\x71\xba\x1f\x72\xb9\xa5\x83\xac\x1b\xb9\xab\xa1\xca\xb8\x1f\x0e\x8f\xf8\x6d\xcb\x15\x81\x81\x05\x88\x88\x88\x8a\x86" +"\x1b\x7d\x84\x93\x9c\x1f\xf7\x99\x07\xdf\x3f\xc0\xfb\x0c\xfb\x07\x3f\x59\x3f\x61\xa3\x73\xb4\xb3\xa7\xa3\xad\x99\x86\x98\x7e\x9b" +"\x1e\x82\x95\x88\x91\x91\x1a\xa0\xa6\x9b\xaf\xc6\xa4\x70\x4e\x1e\x42\x07\xfb\x0c\x67\x5b\x77\x66\x72\x08\x5f\x6d\x77\x69\x60\x1a" +"\x4e\xb9\x5e\xcc\xc4\xb9\x9f\xbd\xc2\x1e\x58\x96\xa1\x78\xbc\x1b\xb6\xaa\x9b\xb4\xb1\x1f\xfb\x57\xc4\x15\x6c\x70\x77\x7f\x73\x1b" +"\x6d\x76\xa6\xb3\xc5\xb5\xb5\xdb\xa0\x1f\x56\xf8\x8d\x15\x51\x5a\x5b\x52\x4e\xba\x5c\xc6\xc7\xba\xba\xc6\xc6\x5b\xbb\x44\x1d\x70" +"\x6a\x6c\x70\x71\x6a\x6c\x4c\x0a\x35\xcd\x22\x1d\xab\x9f\x93\x95\xa2\x1a\xa5\x78\x9d\x6e\x78\x60\x1d\xf9\x03\xf8\x37\x15\xfc\xa0" +"\x06\xf7\x66\xdc\x74\xc0\xfb\xb2\xfb\x14\x05\x3e\x07\xf7\xb2\xfb\x13\xa2\xbf\xfb\x66\xdd\x05\xf8\xa0\x06\xfb\x66\x39\xa2\x57\xf7" +"\xb2\xf7\x13\x05\xd8\x07\xfb\xb2\xf7\x14\x74\x56\x05\x0e\xf8\x1b\xf9\x66\x15\x4b\xfd\x03\x06\x39\xf7\x66\x57\x74\xf7\x13\xfb\xb2" +"\x05\xd8\x06\xf7\x14\xf7\xb2\x56\xa2\x3a\xfb\x66\x05\x0e\xf9\x66\xf7\xf9\x15\xcb\xfd\x03\x07\xf7\x66\xdc\x74\xc0\xfb\xb2\xfb\x13" +"\x05\x3e\x07\xf7\xb2\xfb\x14\xa2\xbf\xfb\x66\xdd\x05\x0e\xf7\xf9\x04\xf9\x03\x06\xfb\x66\x39\xa2\x57\xf7\xb2\xf7\x14\x05\xd8\x07" +"\xfb\xb2\xf7\x13\x74\x56\xf7\x66\x3a\x05\xfd\x03\x06\x0e\xf8\x1b\x16\xf9\x03\x07\xdc\xfb\x66\xc0\xa3\xfb\x14\xf7\xb1\x05\x3e\x06" +"\xfb\x13\xfb\xb1\xbf\x73\xdd\xf7\x66\x05\xfd\x03\x07\x0e\xf7\xde\xf9\x03\x7a\x0a\xa2\xb4\x0a\x74\x05\x0e\xf7\x5b\x2c\x15\x51\xf7" +"\xdb\xc5\x07\xfb\x58\xf9\x42\x7a\x0a\xa3\xb4\x0a\x73\x05\x0e\xaa\xf7\x5f\xb1\x15\x69\xa8\xa5\x7d\xad\x1b\xf4\xe4\xf6\xf7\x13\xd0" +"\x72\xca\x60\xaf\x1f\x80\x94\x7e\x93\x6f\x98\x08\xc4\xae\xa6\xb5\xc2\x1a\xd2\x4e\xba\x2f\x3e\x45\x69\x52\x65\x1e\x71\x65\x81\x61" +"\x49\x1a\xfc\xfa\xf7\x13\x07\xf9\x08\x04\xf7\x13\xa0\xc4\xba\xac\xa3\x65\x55\x66\x87\x68\x82\x6b\x1e\x94\x77\x82\x8e\x7d\x1b\x6e" +"\x77\x7a\x73\x74\x9a\x7b\xa1\x9e\x99\x91\x9c\xa0\x1f\x9e\x67\x92\x5a\x2a\x1a\x4b\x86\x69\x7d\x6b\x1e\x72\x80\x76\x7a\x76\x1b\x74" +"\x76\x9a\xab\x76\x1f\x0e\x57\x36\x1d\xfb\x8c\xf8\x49\x38\x0a\x57\x36\x1d\x81\xf8\xf9\x93\x0a\x60\xf8\x2f\xf7\x01\x15\x61\x66\x71" +"\x7d\x62\x1b\x34\x54\xe1\xf7\x1d\xf2\xab\xca\xbf\x9b\x99\x83\x80\x92\x1f\x90\x81\x8b\x8b\x62\x62\x1d\x34\xfb\x1d\x27\x21\xfb\x24" +"\xfb\x1f\xe4\x29\xf7\x11\xd9\xc3\xaa\xd5\xc4\x1f\x49\xf8\x49\x15\xc3\x06\xfb\x0e\x52\x1d\x57\x36\x1d\xfb\x47\xf8\xd4\x2a\x1d\x69" +"\xf8\x4e\xf8\x56\x15\xfb\x17\x06\x30\xfb\x57\x05\xf7\x26\x5d\x5e\xc6\x4b\x1b\x64\x70\x72\x68\x6b\xa2\x71\xa8\x94\x93\x8e\x94\x97" +"\x1f\x94\x97\x91\x8e\x92\x1b\x99\x99\x7f\x75\x9a\x1f\x98\x76\x90\x7c\xa7\x31\xfb\x55\xfc\x0e\x18\xf7\x17\x06\xf7\x0a\xf7\x8b\xb3" +"\xfb\x1a\xc3\xfb\x10\x9f\x8c\x19\x8e\x8f\x8d\x8d\x8f\x1f\xe0\xbd\x83\xa1\x05\x87\x7f\x86\x8a\x81\x1b\x50\x68\xc2\xf7\x49\x52\x1f" +"\x0e\xf8\x8c\xf8\x8b\xf9\x4b\x15\xfb\x5c\xfb\x36\xfb\x35\xfb\x5c\xfb\x58\xf7\x36\xfb\x36\xf7\x57\xf7\x59\xf7\x37\xf7\x37\xf7\x57" +"\xf7\x58\xfb\x36\xf7\x39\xfb\x55\x1f\x87\xfb\xd0\x15\xfb\x52\xf7\x50\x05\xb8\xc2\xcc\xa2\xd1\x1b\xd0\xcc\x74\x60\xc3\x1f\xb3\x63" +"\x15\xbb\x51\xa2\x4d\x42\x1a\x43\x74\x4b\x5d\x53\x1e\xfb\x54\xf7\x57\x05\xf7\x2c\xfb\x7f\x15\x5f\x54\x48\x73\x45\x1b\x45\x4b\xa2" +"\xba\x50\x1f\xf7\x55\xf7\x55\x05\xfb\x7d\xfb\x2d\x15\x5f\xc1\x74\xcb\xd1\x1a\xd3\xa2\xcb\xba\xc4\x1e\xf7\x52\xfb\x50\x05\x0e\xf8" +"\x8c\xf9\x83\x16\x9f\x07\x24\x9f\x6e\x99\x5d\xbb\x5c\xbf\x7a\xc0\x8a\xeb\xa0\x66\x93\x7e\x97\x7d\x08\x5d\xb2\xc9\x6c\xc0\x1b\xe6" +"\xd2\xd5\xe9\xe5\x4a\xd3\x3a\x6e\x84\x89\x6e\x50\x1f\xa7\xb4\x96\xaa\xb0\x1a\xe3\x42\xd2\x30\x2e\x44\x45\x30\x68\x92\x79\xad\x55" +"\x1e\xa3\x5a\x77\x91\x6c\x1b\x40\x49\x3f\x34\x2e\xd4\x42\xe7\xdc\xcf\xbd\xe6\xb8\x1f\x8c\x7b\x8b\x80\x86\x1a\x43\x65\x3a\x55\x5f" +"\x1e\x6b\x72\x74\x82\x2c\x77\x08\x77\x07\x0e\xf7\x6b\xf8\xab\x5b\x0a\xf7\x5e\xae\x15\xf3\x36\x0a\x94\x93\x83\x80\x68\x6d\x66\x47" +"\x5b\x1f\x0e\xc7\xf7\xe4\xf8\xb5\x15\xfb\x1a\x07\xb9\x60\x6d\x9b\x5d\x1b\xfb\x02\x39\x20\xfb\x25\xfb\x1d\xd7\x29\xf4\xc0\xac\x9b" +"\xbd\xba\x1f\x4a\x07\xb9\x98\xa4\x90\xc9\x92\xc9\x93\x18\xa2\x07\x5e\x8e\x7d\x98\xb5\x1a\xf8\x50\xc6\xb7\x50\xe2\xbb\x0a\x86\x2f" +"\x5f\x07\xe7\xfc\x45\x7e\x0a\x0e\xa2\xf8\x46\xf8\xea\x15\xa8\x29\x4f\x96\x48\x1b\x3f\x62\x74\x62\x77\x96\x78\xa4\x77\x1f\x9b\x7e" +"\x92\x87\xcb\x64\x51\x7d\x6e\x7b\x6a\x67\x08\x65\x60\x79\x57\x49\x1a\xfb\x26\xe3\x28\xf7\x16\xf7\x14\xe8\xf2\xf7\x21\xd6\x6f\xcc" +"\x58\xb9\x1e\x6c\xa7\x75\x99\xfb\x00\xcb\x08\x4d\xaf\x83\x92\x99\x1a\x97\x99\x92\xa3\xbe\xbd\x7d\x59\xf7\x13\x1e\xfb\x45\x25\x15" +"\xc3\xa5\x46\xfb\x25\xfb\x16\x6e\x43\x58\x57\x6e\xd3\xf7\x17\xf7\x22\xa5\xd2\xc0\x1f\x0e\xf8\x8c\xf7\x8e\xf7\xf1\x15\xf0\xfb\x11" +"\xf7\x10\xfb\x45\xb1\x40\xc7\xf7\x00\xf7\x06\xf7\x35\xf3\xf7\x10\x3a\xe8\xfb\x36\xf7\x78\x68\xd2\x54\x24\x40\x21\xfb\x26\xfb\x4b" +"\x08\x0e\xfb\x37\xda\xf8\xef\x9c\x0a\xf7\x45\xc4\x1d\x20\x62\x15\xae\x06\x8f\x9f\x8e\x97\x8d\x1a\x9b\xcd\x8b\x8d\x9a\x1a\xa4\x7a" +"\x9e\x73\x74\x7a\x78\x72\x7b\x8b\x89\x9b\x4a\x1e\x8d\x82\x8c\x82\x8d\x83\x08\x0e\x57\x25\x1d\xae\xf8\x2d\x15\x4b\x7a\x6e\x74\x91" +"\x1d\x57\x25\x1d\xe8\xf8\x3a\x21\x0a\x57\x25\x1d\x3e\xf8\x15\x2a\x1d\xf8\x8c\xf9\x93\xf7\x6c\x15\xc8\xfc\x62\x07\x91\xf6\xc3\xbd" +"\xf7\x01\x89\x08\xf7\xb7\xc9\xfb\xac\x5c\x1d\x42\x2c\x1a\xfb\x08\xb8\x38\xbc\x0a\xc9\xfb\xb7\x06\xfb\x01\x89\x53\xbd\x85\xf5\x08" +"\x0e\x57\x25\x1d\xe4\xf7\xf7\x22\x0a\xc7\xf7\x68\xf8\x61\x15\xfb\x53\x73\x06\xb7\x84\x93\x82\x8c\x60\x08\xfb\xba\x3a\x1d\xa7\x95" +"\xb8\xa9\xaa\x1b\xae\x9c\x70\x53\x1f\xfc\x37\x07\x56\x7d\x74\x69\x78\x7e\x92\x95\x90\x8e\x92\x91\x95\x1e\x95\x9a\x8f\x97\x95\x1a" +"\xa9\x71\xa3\x6a\x66\x72\x72\x67\x50\xc5\x62\xdd\xd0\xc0\xa6\xbc\xa7\x1e\x9e\xab\x93\xb1\xc6\x1a\xf7\xde\x07\xe1\x56\xc2\x39\x4f" +"\x5d\x6f\x50\x66\x1e\x0e\x57\xf8\x39\xf7\x89\x15\x85\xdf\x7c\xba\x6b\xb1\x08\xb2\x6b\x5c\x9f\x53\x1b\xfb\x10\x37\x28\xfb\x26\xfb" +"\x25\xdd\x2a\xf7\x0e\x8f\x92\x8b\x8c\x93\x1f\x71\x66\x84\x7a\x72\x1a\x5c\x99\x0a\x77\x81\x88\x7b\x1b\x61\x76\xa2\xb7\x9e\x90\x94" +"\x9e\x98\x1f\xb8\xab\xa1\xa1\xaf\xc0\x73\x99\x18\xbe\x1d\x86\xb0\x15\xf7\x0c\x8e\x9d\xb3\xbc\x1b\xba\x9a\x69\xfb\x03\x8d\x1f\x7c" +"\x07\x0e\x46\x74\x1d\x0e\x46\x74\x1d\xfb\x20\xf8\x15\x15\x8f\xa1\x8e\x97\x8d\x1a\x9b\xd0\x8c\x8e\x9b\x1a\xa4\x79\x9f\x72\x73\x79" +"\x78\x71\x7a\x8c\x85\x9b\x4a\x1e\x8e\x77\x8e\x7f\x8c\x87\x08\x0e\xf8\x8c\xf7\x9d\x7e\x15\xf8\x6a\xd6\xfc\x6a\x06\xf7\x1d\x04\xf8" +"\x6a\xd6\xfc\x6a\x06\xf7\x1d\x04\xf8\x6a\xd6\xfc\x6a\x06\x0e\xf3\xf8\x9e\xf7\x8f\x15\x8a\xd4\x86\xae\x7e\xb0\x08\xda\x6d\x42\xbc" +"\x30\x1b\xfb\x1a\x36\x23\xfb\x39\xfb\x36\xdd\x29\xf7\x1c\xf2\xd0\xbf\xec\xa7\x1f\x62\x06\x45\x6e\x55\x68\x40\x1b\x61\x68\x97\xa2" +"\x73\x1f\x7a\x9c\x82\x9c\x80\xb2\x08\xf3\x07\xf7\xaf\xae\x15\xfb\xad\xe8\x06\xd5\xab\xaf\xa6\xcf\x1b\xc0\xb0\x79\x62\xac\x1f\x96" +"\x7d\x8f\x83\x92\x77\x08\x0e\xd3\x65\x0a\x0e\xd3\x65\x0a\xa7\xf8\xa5\x15\xb0\x06\x8f\xa1\x8e\x97\x8d\x1a\x9b\xd0\x8c\x8d\x9b\x1a" +"\xa6\x79\x9e\x72\x73\x79\x77\x71\x80\x8d\x7c\x8f\x79\x1e\x92\x6c\x90\x79\x8c\x86\x08\x0e\xd9\xf7\x3c\xf7\x83\x15\x90\xe1\x91\xab" +"\xa5\xe2\x08\xa7\xeb\x8d\x95\xdd\x1d\x6f\x96\x65\x1e\xb2\xfb\x17\x91\x70\xc0\x1d\xb8\x66\xb0\x5e\x1f\xf7\xae\xe3\x15\x90\xe1\x91" +"\xaa\xa4\xe3\x08\xa8\xea\x8d\x96\xdd\x1d\x6d\x96\x67\x1e\xb2\xfb\x15\x91\x6e\xc0\x1d\xb9\x67\xaf\x5d\x1f\x0e\x43\xbd\x16\xf7\xd9" +"\xf8\xd5\xfb\xd9\x37\xf7\x85\xfb\x36\xfb\x85\x37\xf7\x85\xfb\x37\xfb\x85\x06\x0e\xf8\x19\xf7\xa7\x15\xb3\x93\x9c\x90\xa4\x9a\x08" +"\xd0\xb4\xb4\xd2\xd9\x1a\xf7\x0e\x29\xed\xfb\x0e\xfb\x0d\x29\x29\xfb\x0e\x3d\xb4\x44\xd0\x62\x1e\xa3\x7c\x9c\x85\xb3\x84\x08\x3e" +"\xfb\x29\x57\xf7\x29\xfb\x2c\xc3\xf7\x2c\xf7\x28\xbf\xfb\x28\x07\x6c\xf8\x5e\x15\xe7\xd5\x43\x31\x30\x42\x42\x31\x31\x42\xd4\xe5" +"\xe3\xd4\xd6\xe2\x1f\x0e\x8f\xf7\xa9\xab\x15\x4b\xac\x69\xf4\xf7\x37\x1a\xf3\x9b\xe6\xa7\xc1\x1e\xb6\xa1\xa7\x9f\xb1\x1b\xb4\xb3" +"\x71\x5f\xa5\x1f\x9e\x6b\x95\x6a\x91\x57\x08\xa5\xf7\x73\x74\x06\x6c\x88\x80\x7b\x7c\x1b\x83\x84\x8d\x8f\x84\x1f\xa8\x57\x77\x92" +"\x64\x1b\xfb\x28\xfb\x07\xfb\x2f\xfb\x5b\x29\xa4\x37\xbc\x4c\x1f\x51\xb7\xc9\x6f\xdf\x1b\xd5\xbf\xa5\xcf\xc6\x1f\x75\x9e\x71\x6c" +"\x78\x7a\x6d\x7c\x19\xf7\x25\x07\x8c\xb3\x8f\x98\x9f\xa4\x08\x71\x9a\x9a\x81\xa3\x1b\xad\x9e\x9f\xae\xb1\x74\xa4\x69\x69\x77\x78" +"\x4d\x6c\x1f\xd1\xfb\x18\x77\x07\xa7\x88\x91\x81\x8d\x63\x08\x0e\x6f\x9e\xf8\x26\x15\x92\x79\x05\x90\x96\x90\x8d\x92\x1b\xa1\xa8" +"\x64\x40\xab\x1f\xa8\x48\xae\xfb\x01\x9b\x3e\x08\x70\x57\x83\x6f\x63\x1a\x55\xa6\x6b\xb8\xb6\xa5\xae\xc5\xad\x89\xa3\x80\xcf\x1e" +"\x99\xb0\x95\x9e\xb3\xd9\x08\xcc\xf7\x0f\x9b\xb4\xb9\x1a\xb7\x70\xab\x68\x6b\x6d\x6d\x6a\x7d\x92\x79\x96\x7c\x1e\xa9\x62\x8b\x8b" +"\x7a\x1a\x75\x75\x52\x6a\x4c\x1e\x82\x7a\x85\x7f\x89\x87\x8a\x89\x88\x85\x88\x84\x82\xcc\x78\xd5\x70\xda\x08\xdc\x70\x63\xc7\x71" +"\x1b\x8a\x88\x8a\x89\x86\x1f\x0e\x8f\x32\x0a\xf7\x0a\xf7\x8d\x72\x0a\x8f\x32\x0a\xf7\x10\xe1\x20\x0a\x8f\x32\x0a\xd8\xf8\x05\x15" +"\x23\x50\x5e\x50\x3d\x1a\x4c\xaf\x61\xc1\xb8\xa8\xa8\xb8\xb6\x71\xa7\x64\x87\x86\x8b\x8a\x85\x1e\x8a\x89\x88\x8b\x8a\x1b\x81\x84" +"\x93\x96\xae\xa9\xb0\xce\xba\x1f\x0e\x99\xf7\x94\xf9\x2b\x15\x6a\x70\x71\x6a\x6a\xa5\x71\xac\xac\xa5\xa5\xac\xab\x71\xa6\x6b\x1f" +"\xf7\x77\xfb\x9d\x15\xc0\xfb\x16\x07\x9c\x60\x6f\x90\x63\x1b\xfb\x0c\xe6\x1d\x9f\x7e\xb9\xd1\x1d\x82\x6a\x72\x82\x0a\x9f\x98\x9b" +"\xa2\x96\x1e\x90\x97\x8b\x8b\xcc\x1b\xb9\xa5\x91\x9f\xad\x1f\xb8\xa5\xa2\xb3\xc1\x1a\xb3\x7f\xa9\x6f\xa7\x1e\xfb\x35\xb7\x15\xba" +"\x9e\x65\x2e\x2e\x78\x67\x5c\x5b\x79\xae\xe9\xe9\x9d\xb0\xbb\x1f\xdf\xfc\x82\x15\xc1\xa5\x7b\x69\x5c\x55\x72\x27\xee\x1d\x0e\xf8" +"\x8c\xf7\xb7\x8c\x15\xf8\x3c\xdf\xfc\x3c\x06\x9c\x04\xf8\x3c\xf7\x6c\x05\x9f\x07\xfc\x3c\xf7\x84\x05\xfb\x05\x07\xf7\xb0\xfb\x34" +"\xfb\xb0\xfb\x1e\x05\x0e\xc7\xd0\xf8\xb4\x15\xfc\x60\xd3\x1d\x90\x7e\x9a\xb0\x1a\xf7\x9f\x07\x8f\x92\x95\x95\x95\x1e\xa1\xa0\xa4" +"\x97\xa2\x1b\xae\x9c\x70\x53\x1f\xfb\x86\x07\x8a\x65\x7e\x7b\x6a\x88\x08\x73\xf7\x7f\xa3\x07\x68\x8c\x7d\x9d\xb4\x1a\xa8\x1d\xf7" +"\x29\xf7\x12\xb3\xfb\x12\xe7\x55\x1d\x81\x56\x63\x07\x0e\xd3\xf8\xaa\xa3\x15\x68\x8c\x7c\x9d\x8c\xb4\x08\xa8\x1d\xf7\xad\x55\x1d" +"\xfc\x92\x3a\x1d\x8e\x92\x96\x56\x1d\xfb\x2b\xf9\x87\x15\xc4\x06\xfb\x0f\x52\x1d\xf8\x8c\xf8\x87\x6f\x15\x9f\xe5\xc7\xf2\xf7\x08" +"\xf7\x25\x08\xeb\xf7\x0e\xab\xce\xdb\x1a\xdd\x45\xcf\x37\x5b\x5f\x76\x65\x6a\x1e\x75\x72\x81\x75\x7e\x5d\x7f\xaf\x83\x9d\x7f\x9d" +"\x08\xbd\x6a\x58\xa8\x54\x1b\x36\x49\x47\x32\x48\xa0\x5e\xdf\xfb\x06\x1f\xf7\x2b\xfb\x5e\xb3\x47\xa5\x24\x08\x0e\xf8\x8c\xf7\x2d" +"\x16\xf9\x50\xf8\x25\x06\xfb\xf3\xf7\xdc\xfb\xf1\xfb\xdc\x05\xc8\xfb\xf2\x15\xf7\xdc\x07\xf7\xb4\xf7\xa2\xf7\xb6\xfb\xa2\x05\xfb" +"\xdc\x07\x0e\xfb\x6e\xf7\x92\x7d\x0a\xf7\x83\x07\x7b\x6c\x0a\xd4\xf7\x84\xf8\x61\x15\xfb\x47\x76\x91\x06\xa9\x9c\x76\x65\x89\x1f" +"\xfb\xc0\x07\x66\x8d\x7a\x75\x6d\x1b\x85\x76\xf7\x7b\xa0\x84\x06\x6d\x7a\xa1\xb0\x8d\x1f\x44\xf8\xe5\x15\x63\x6c\x6c\x65\x63\xaa" +"\x6c\xb2\xb1\xaa\xaa\xb2\xb1\x6c\xab\x66\x1f\xf7\xd5\xfb\x69\x15\xfb\x4b\x76\x95\x06\xa9\x9c\x75\x66\x89\x1f\xfb\xef\x07\x6e\x07" +"\x8d\x6c\x05\x8e\x52\x8b\x88\x83\x1a\x70\x84\x7a\x7f\x84\x87\x93\x96\x8f\x8b\x8f\x8c\x8f\x1e\x8c\x94\x8c\x91\x8d\x1a\xaa\x74\xa4" +"\x6e\x6d\x71\x6f\x6a\x5b\xb8\x6d\xd1\xe4\xc1\xc0\xe4\x1e\x3d\xf9\x55\x15\x62\x6b\x6b\x63\x63\xab\x6a\xb3\xb3\xab\xac\xb3\xb2\x6b" +"\xac\x64\x1f\x0e\xfb\x6e\x29\x1d\xbb\xf9\x11\x22\x0a\xf8\x8c\xf8\x88\xf7\xa4\x15\x60\xb2\x87\x8e\x78\x99\x08\xa5\x6a\x60\x9b\x6a" +"\x1b\x45\x51\x51\x45\x45\xc5\x51\xd1\xad\xb4\x9b\xa5\xad\x1f\x9e\x99\x8f\x8e\xb6\xb2\xb8\x64\x8f\x87\x9c\x7e\x08\x71\xae\xb4\x7b" +"\xad\x1b\xd1\xc5\xc5\xd1\xd1\x51\xc5\x45\x6a\x60\x7b\x71\x69\x1f\x7a\x7e\x86\x87\x5f\x64\x08\xac\x6d\x15\xbe\xbe\xbf\xa9\xb3\x1b" +"\xb7\xb0\x66\x5f\x5e\x66\x66\x5f\x64\x58\xa8\xc0\x56\x1f\x4a\x16\x57\x57\x57\x6e\x64\x1b\x5f\x66\xb0\xb7\xb7\xb0\xb0\xb8\xb2\xbe" +"\x6e\x57\xbf\x1f\x0e\xf8\x8c\xf8\x65\xf7\x87\x15\x43\x8c\x63\x8e\x51\x1e\x8d\x6d\x8c\x6f\x7a\x1a\x6f\x82\x78\x7f\x88\x87\x8f\x93" +"\x86\x1e\x9f\x81\x80\x93\x78\x1b\x72\x77\x78\x72\x6c\xa8\x74\xb4\xb1\xac\x9e\xad\x9e\x1f\xa4\xb8\x99\xf7\x00\xf7\x24\x1a\xf7\xd6" +"\x07\xd6\x8a\xb0\x88\xc6\x1e\x89\xa7\x8a\xac\x96\x1a\xa7\x93\xa0\x95\x8f\x8d\x89\x85\x8e\x1e\x76\x96\x9b\x81\x9e\x1b\xa5\x9e\x9e" +"\xa3\xac\x6e\xa1\x62\x65\x6a\x77\x6a\x78\x1f\x72\x5e\x7d\xfb\x00\xfb\x24\x1a\x0e\xf7\xe3\xfa\x25\x15\xfd\x71\x07\x8d\x40\x8e\x4f" +"\x90\x41\x08\x8f\x60\x8c\x79\x80\x1a\x75\x85\x81\x7f\x84\x89\x8c\x96\x80\x1e\x95\x82\x7f\x90\x7d\x1b\x70\x76\x75\x70\x6c\xa7\x73" +"\xae\xe2\xaa\xf5\xf7\xb7\x1f\xf9\x6a\x07\x0e\xf8\x2e\xfb\x66\x15\xf9\x71\x07\x89\xd6\x88\xc7\x86\xd5\x08\x87\xb6\x8a\x9d\x96\x1a" +"\xa1\x91\x95\x97\x8f\x90\x89\x88\x8e\x1e\x78\x9e\x91\x88\x9d\x1b\xa6\xa0\xa1\xa6\xaa\x6f\xa3\x68\x34\x6c\x21\xfb\xb8\x1f\xfd\x69" +"\x07\x0e\xf8\x8c\xf9\x64\x16\xf7\x8a\x07\xf7\x1d\x86\xad\x73\xb4\x1e\xca\x65\x44\xb1\x39\x1b\x3f\x4b\x6c\x53\x62\x1f\x6a\x5e\x85" +"\x6b\xfb\x29\x1a\xfb\x8a\xc7\xf7\x8d\x07\xf0\x91\xb6\x9c\xaa\x1e\xb9\xa4\xc2\xa9\xc4\x1b\xc0\xbf\x71\x61\xa7\x1f\xa0\x6b\x91\x66" +"\xfb\x06\x1a\xfb\x8d\x07\x0e\xf8\x8c\xf8\x89\xf9\x6e\x15\xfb\x5b\xfb\x3a\xfb\x38\xfb\x57\xfb\x63\xf7\x35\xfb\x38\xf7\x5d\xf7\x61" +"\xf7\x37\xf7\x36\xf7\x5f\xf7\x5e\xfb\x37\xf7\x37\xfb\x5e\x1f\xfb\x01\xfb\x63\x15\xa9\xa4\x72\x6d\x6d\x72\x72\x6d\x6e\x71\xa4\xa8" +"\xaa\xa4\xa4\xa9\x1f\xfb\x14\xfb\x05\x15\x96\x59\x96\x75\xa5\x6d\x08\x54\xbb\xc7\x71\xdc\x1b\xdc\xc7\xa5\xc2\xbb\x1f\xa5\xa9\x96" +"\xa1\x96\xbd\x84\x36\x80\x62\x6d\x5e\x08\x4c\x61\x4b\x6b\x38\x1b\x3e\x4f\xa6\xc1\x61\x1f\x67\xba\x7c\xb8\x84\xe8\x08\xf7\xee\xf7" +"\x05\x15\xa9\xa4\x72\x6d\x6d\x72\x72\x6d\x6e\x71\xa4\xa8\xaa\xa4\xa4\xa9\x1f\x0e\xfb\x6e\xf7\x93\x7d\x0a\xf7\x4e\x07\x68\x5d\x83" +"\x76\x0a\xfb\x09\xf9\x47\x15\x60\x68\x68\x61\x5e\xac\x6a\xb7\xb7\xad\xac\xb7\xb7\x69\xad\x60\x1f\x0e\xfb\x4e\x7c\x1d\x0e\xfb\x4e" +"\x63\x0a\xfb\x18\xf8\x85\x9e\x0a\xf7\x31\x16\x6b\x71\x72\x6b\x6b\xa5\x71\xab\xaa\xa5\xa5\xab\xaa\x71\xa5\x6c\x1f\x0e\xfb\x4e\x63" +"\x0a\xfb\x3d\xf8\x59\x9c\x0a\xf7\x64\x16\x6e\x73\x74\x6e\x6e\xa2\x74\xa8\xa8\xa2\xa2\xa8\xa7\x74\xa3\x6f\x1f\x34\x62\x15\x8f\x9e" +"\x8d\x94\x8c\x91\x08\x9b\xcf\x8b\x8b\x9a\x1a\xa4\x7a\x9e\x73\x75\x79\x78\x73\x7b\x8c\x86\x9a\x4c\x1e\x8e\x78\x8e\x80\x87\x1a\x0e" +"\xfb\x4e\x7c\x1d\x42\xf8\x0f\x15\xb1\x06\x8f\xa1\x8e\x97\x8d\x1a\x9b\xcf\x8c\x8e\x9c\x1a\xa5\x78\x9e\x73\x73\x79\x77\x72\xaf\x0a" +"\x0e\xfb\x6e\xf7\x93\x63\x1d\xb6\x83\x94\x82\x42\x1d\x84\x83\x5e\x81\x08\x73\xf7\x83\x07\xfb\x98\xf8\xb9\x64\x1d\x94\x88\x78\xb5" +"\x1f\xa8\x7e\x05\x83\x9e\xa4\x85\x9e\x1b\xc5\xb0\xb2\xe3\xa2\xe0\x1d\x70\x1b\x7f\x49\x0a\x6f\x72\x91\x76\x1b\x4e\x67\x63\x36\x79" +"\x1f\x0e\xfb\x30\xf7\x98\xf8\x61\x15\xfb\x5e\x73\x06\xbd\x88\x97\x80\x8c\x5e\x08\xfc\x6e\x07\x56\x7c\x74\x6a\xa0\x1d\xdc\xd1\xe7" +"\x1d\xa2\xf8\xa2\x20\x0a\xc6\xf7\xc9\xf7\xbe\x15\xbc\xa6\xaa\xae\x9a\x1b\x8f\x91\x88\x88\x8e\x1f\x6c\xa9\x93\x86\xa2\x1b\xa9\xa3" +"\xa6\xad\xaf\x74\x9f\x62\x59\x60\x6f\x4e\x61\x1f\x69\x5a\x6b\x59\x77\x66\x08\xf7\x75\x07\x54\x1d\xfb\xd6\xf7\x11\xf7\x6c\x07\xf7" +"\x1d\xfb\x67\x05\x7f\x93\x92\x87\x96\x1b\x91\x92\x8d\x8e\x92\x1f\xf7\x05\xc2\x82\x9d\x05\x84\x7f\x85\x89\x83\x1b\x7d\x7f\x95\xa2" +"\x7d\x1f\x66\xc4\x05\x0e\xc7\x6c\x1d\xfb\xc2\xfd\x9f\x8a\x1d\xc7\xf7\x72\xf7\x50\x15\x98\x9a\xde\xfb\x18\x05\x9b\x74\x8b\x8b\x82" +"\x1a\x81\x84\x86\x7b\x89\x1e\x7e\x89\x05\x77\xf7\x6f\x9f\x07\x71\x8e\x86\x8f\x72\xb3\xfb\x23\xf7\x76\x18\xc9\xd0\xbc\xc3\x93\x91" +"\xb6\x98\x19\x9f\xfb\x54\x77\x07\xb4\x85\x9c\x80\x77\x1a\x7a\x7d\x71\x75\x73\x1e\x33\x29\x05\xf7\x72\xfb\x47\x76\x92\x07\xa9\x8c" +"\x9b\x75\x89\x67\x08\xfb\xc1\x07\x67\x8d\x7b\x75\x6d\x1b\x84\x77\xf7\x77\x9f\x87\x06\x6d\x7b\xa1\xaf\x8d\x1f\x0e\xfb\x6e\x34\x0a" +"\xfb\x58\xf9\x76\x2b\x1d\x86\xab\x16\xf7\x1f\x06\xf7\x01\xf7\x8c\x99\x4f\xa7\x30\x9f\x55\x19\x65\x99\x94\x7c\x94\x1b\x8e\x8f\x8c" +"\x8d\x8e\x1f\xd7\xbd\x84\x9b\x05\x87\x7f\x83\x89\x84\x1b\x65\x78\xa8\xf7\x05\x6a\x1f\x3f\xf7\x9a\x72\xe0\x89\x93\x7a\xaf\x19\xb7" +"\x78\x70\xa1\x66\x1b\x60\x6e\x69\x57\x62\x9d\x71\xa8\x9f\x99\x98\xa3\x8f\x1f\xa8\x90\x8d\x8f\x96\x1b\x9f\x97\x6f\xfb\x09\xa9\x1f" +"\x0e\x44\x34\x0a\x92\xf8\x1a\x15\xf3\x36\x0a\x94\x93\x83\x80\x68\x6d\x67\x47\x5a\x1f\x0e\xfb\x6e\x34\x0a\xfb\x4b\x40\x0a\x27\xf7" +"\x92\x94\x1d\xcb\x91\x0a\xf8\x8c\xf9\x5a\x8c\x15\xdf\xfc\x3c\x37\x07\xf8\x3c\xf8\xd4\x15\xfc\x3c\xfb\x79\x05\x77\x07\xf8\x3c\xfb" +"\x76\x05\xf7\x05\x07\xfb\xb0\xf7\x26\xf7\xb0\xf7\x2c\x05\x0e\x2e\x0a\xf7\x8a\xf8\x24\x15\xec\xdb\x05\xbd\x07\x2a\x3b\x05\xf7\x76" +"\x5a\x1d\xfb\x7d\x07\x32\x43\x05\x59\x07\xe4\xd3\x05\xfb\x77\x98\x0a\xa3\x07\x6b\x7b\x9f\xb3\x8a\x1f\x0e\xfb\x6e\x8a\x16\xf7\xa4" +"\xa3\x06\x47\x8c\x80\x96\x8a\xcc\x08\xf8\x6a\x07\xc1\x99\xa1\xae\x9c\x96\x84\x80\x86\x89\xbe\x0a\x6c\xa4\x74\xac\xb0\xa3\xa4\xaf" +"\xc5\x52\xb3\x39\x49\x58\x73\x61\x70\x1e\x76\x68\x84\x64\x36\x1a\x53\x60\xc3\xfb\xdb\x06\x8a\x60\x80\x80\x5f\x87\x08\x0e\xf8\xc1" +"\xf8\xe5\x15\x43\xbc\x9c\x79\x9c\x1b\x95\x93\x92\x95\x91\x8a\x8f\x84\x99\x1f\x74\xb6\x7a\xcb\xb7\x1a\xa9\x89\x91\x7e\x86\x84\x88" +"\x83\x7e\x1e\x78\x70\x3d\x75\x60\x1b\x71\x8a\x83\x86\x7e\x1a\x75\xad\x81\xe2\x85\x1e\x25\xfb\x4d\x05\x97\x6c\x6e\x91\x6b\x1b\xfb" +"\x1a\xfb\x00\xfb\x00\xfb\x1a\xfb\x19\xf7\x00\xfb\x00\xf7\x1a\xf7\x19\xf7\x00\xf7\x00\xf7\x1a\xd8\x66\xd3\x4c\xb9\x1f\xfb\x22\x7b" +"\x15\xee\xdc\x3b\x28\x28\x3b\x3a\x28\x27\x3b\xdb\xee\xee\xdb\xdc\xee\x1f\x0e\xfb\x6b\xf7\x0a\x9f\x1d\x0e\x8f\xf7\x81\xf7\x43\x15" +"\x92\x7c\x77\x8f\x7a\x1b\x4d\x54\x56\x50\x68\xa5\x75\xb4\xba\xb7\xa2\xb1\xa6\x1f\x9f\xa6\x91\xa1\x8d\xbb\x08\xf7\xb9\x07\xc3\x83" +"\xb9\x3f\x38\x1a\x59\x83\x65\x73\x54\x1e\xa6\x06\xaf\xb6\x9e\xc2\xc5\x1a\xd6\x6e\xd2\x51\xd1\x1e\x58\xc8\x8a\x8c\x86\x92\x83\x95" +"\x19\xc5\x5f\x07\x0e\xf8\x13\xf8\x57\x15\x9e\x72\xa1\x78\xa0\x7f\xc3\x6b\x94\x85\x90\x82\x08\x91\x80\x8f\x78\x76\x1a\xfb\x7c\x07" +"\x92\x7a\x74\x8f\x78\x1b\x46\x4d\x56\x4f\x68\xa8\x75\xb8\xbe\xbb\xa2\xb1\xaa\x1f\xa0\xa6\x92\xa1\x8d\xbc\x08\xf8\x00\x07\x8c\xd3" +"\x6a\xd5\x5d\xa7\x54\xaf\x6d\x9f\x87\x8f\x08\x7e\x99\x85\x9d\xa2\x1a\x98\x5f\xfc\x80\x07\x92\x7b\x74\x8f\x79\x1b\x46\x4f\x56\x4f" +"\x68\xa7\x75\xb7\xbe\xbb\xa2\xb1\xa8\x1f\xa0\xa6\x92\xa1\x8d\xbc\x08\x8e\xf8\x0a\x15\xf7\x03\x4f\xa3\x67\x8f\xfb\x08\xfb\x06\xc8" +"\x74\xae\x87\xf7\x09\x08\x0e\xc7\x2d\x0a\xfb\xe9\xf8\xa4\x2b\x1d\xf7\x7d\xa4\xf8\x00\x15\xbf\x9b\xa3\x98\xa6\xa4\x08\xb1\xaf\xa2" +"\xbe\xbf\x1a\xcd\x63\xbc\x55\x5f\x66\x66\x5f\x63\xaa\x69\xb0\x9c\x99\x90\x97\x99\x1e\x8c\x84\x8b\x86\x88\x1a\x58\x67\x5d\x48\x68" +"\x1e\xf9\x43\xfb\xff\x75\x1d\x0e\xc7\x2d\x0a\x2f\xf9\x54\x21\x0a\xc7\x2d\x0a\xfb\xdc\x40\x0a\xf8\x8c\xf8\xa4\xf7\x6c\x15\xf7\x83" +"\xc8\xfb\x60\x06\xe3\xf7\x2f\x05\xf7\x08\xc9\x3a\x06\xac\xc6\x61\xa3\x5c\x38\x05\xfb\x23\x5c\x1d\x42\x2c\x1a\xfb\x08\xb8\x37\xdc" +"\x69\x1e\x6a\x52\xb6\x74\xb1\xce\x05\x88\xa4\x99\x8a\xb4\x1b\xf7\xac\xc9\xfb\xb7\x06\x77\x85\x8b\x8c\x81\x1f\xab\xf7\x2d\x15\x3a" +"\xfb\x21\x57\x9d\x6c\xbe\x88\xd3\x19\xf7\xb6\xf7\x6c\x15\x33\xfb\x2f\x05\xfb\x5e\x06\x91\xf6\xc3\xbd\xf7\x01\x89\x08\x0e\xf8\x8c" +"\xf8\xd6\xf7\xcb\x15\xf7\x42\xe3\xfb\x15\x06\xb3\xdc\x3d\xb2\x4e\xfb\x0c\x05\xfb\xa8\x33\xf7\x7c\x06\x51\xfb\x08\x05\xfb\x42\x33" +"\xf7\x15\x06\x63\x3a\xd9\x64\xc8\xf7\x0c\x05\xf7\xa8\xe3\xfb\x7c\x06\x0e\x5a\xf7\x5c\xf8\x1c\x15\xcc\x76\x8b\x8b\x75\x1b\x82\x88" +"\x8a\x87\x80\x1f\x21\x62\x91\x78\x05\x8d\x96\x8e\x8c\x8e\x1b\xa1\x96\x79\x3a\xa4\x1f\xeb\xfb\xc2\x05\xbb\x06\xf7\x18\xf7\xac\x05" +"\xa4\xc0\x94\xa8\xa9\x1a\xb4\x72\xa9\x69\x6b\x6f\x6f\x6b\x7d\x91\x7c\x94\x80\x1e\xab\x66\x8b\x8b\x79\x1a\x6f\x7b\x61\x59\x24\x1e" +"\x0e\x8f\x27\x1d\xf5\xf7\x8d\x15\x4c\x7a\x6e\x73\x91\x1d\x8f\x27\x1d\xfb\x49\xe1\x98\x1d\xac\xa0\x92\x94\xed\x1d\x7a\x1e\x0e\x8f" +"\x27\x1d\xf7\x37\xf7\x57\x22\x0a\xf7\x7f\xf7\x51\xf8\x5d\x56\x0a\xf7\x7f\xf8\x00\xf8\xa5\x15\xb0\x06\x8f\x9e\x8d\x94\x8c\x93\x08" +"\x9c\xd1\x8b\x8c\x9b\x1a\xa5\x79\x9f\x73\x72\x79\x78\x71\xaf\x0a\xfb\x41\x3b\x56\x0a\x8f\x79\x1d\x0e\x8f\x79\x1d\x78\xf7\x02\x15" +"\xb0\x06\x8f\x9e\x8d\x94\x8c\x93\x08\x9c\xd2\x8b\x8b\x9b\x1a\xa6\x79\x9e\x73\x72\x79\x77\x72\x7a\x8c\x86\x9b\x49\x1e\x8c\x81\x8d" +"\x82\x8d\x82\x08\x0e\xf8\x77\x93\x16\xfa\x56\xd3\xfe\x0e\xfa\x03\x43\x06\x0e\x8f\xe8\x1d\x68\x6d\x92\x64\x1b\xfb\x15\x2a\x23\xfb" +"\x20\x3b\xa4\x52\xc7\x53\x1f\x3f\xfb\x14\x05\xba\x06\xca\xf4\x05\x78\xb0\xa9\x83\xb3\x1b\xf7\x16\xea\xf2\xf7\x20\xde\x71\xc6\x4d" +"\xc2\x1f\xfb\x6b\xfb\xb2\x15\x8a\xa1\x8b\xa1\xa4\x1a\xf7\x49\xaa\x1d\x67\x79\x9d\xb8\x7d\x1e\x7e\xf8\x54\x4f\x1d\x8f\xf6\xf9\x18" +"\x15\xa8\xc9\x99\x8f\xb4\x1b\xe8\xc2\x31\xfb\x2b\x71\x8a\x76\x87\x69\x1f\xb6\x51\x68\x98\x58\x1b\x5a\x61\x7a\x67\x67\x1f\x5a\x5b" +"\x6f\x49\x49\x1a\xfb\x02\xe3\x33\xf7\x01\xcb\xc3\xa5\xbc\xb5\x1e\xc5\xd0\xb2\xf7\x1c\xf7\x1d\x1a\xf7\x0e\x60\xef\x38\xd1\x1e\xaf" +"\x60\x58\x9d\x51\x1b\x60\x6c\x84\x71\x44\x1f\xf7\xc6\xfc\x2e\x15\x7b\xfb\x02\x7d\x59\x71\x5f\x08\x61\x71\x68\x73\x67\x1b\x5a\x6d" +"\xb9\xd7\xf7\x00\xc9\xe2\xd7\xad\xa2\x7f\x68\xb0\x1f\x0e\xf8\x6d\xf7\x11\x16\xf7\xe2\xa4\x06\x3d\x94\x83\x94\x89\xd5\x08\xf7\x4e" +"\x07\xf7\x1b\x8c\xad\x8f\xb7\x9c\x08\xdc\xaa\xb7\xc7\xd9\x1a\xf7\x08\x2c\xcd\xfb\x3b\x1e\xfb\xd6\x72\x06\x4e\x1d\xf8\xd9\x15\xa2" +"\x9c\x97\xac\xde\x4b\x0a\x74\x1e\x77\x73\x6a\x84\x44\x1b\xf8\x5c\x50\x15\x54\xef\x77\x06\x65\x55\x77\x75\x61\x67\x08\x76\xaa\xfb" +"\x50\x07\x63\xa6\x72\xb6\xb5\xa3\x9d\xc0\xa5\x1e\x76\x94\x05\x72\x7d\x85\x85\x7e\x1b\x7d\x86\x93\xa1\x1f\xf7\x42\xc2\x07\x0e\xf7" +"\x14\xf7\xf9\xfb\x52\x15\xf7\x42\x07\xf7\x1b\x90\xed\xf5\xf7\x21\x1a\xcc\x75\xbf\x5e\xb7\x1e\xb3\x61\x59\xa1\x5a\x1b\x62\x66\x7b" +"\x70\x76\x1f\x79\x74\x83\x68\x52\x1a\xfb\xb3\x07\x7a\x90\x83\x8f\x82\x92\x08\x67\xaa\x79\xcb\xef\x1a\xf7\x1b\xa3\xc8\xc9\x9f\x1e" +"\x9d\x07\x54\x89\x6b\x81\x68\x72\x08\x4d\x5f\x67\x43\x3c\x1a\x43\xa8\x48\xbe\x5c\x1e\xb2\x69\xb1\x7b\xcc\x84\x08\xfb\x42\x07\xef" +"\xf8\x6a\x15\xf0\x90\xa2\xa1\x9c\x9d\x7b\x72\x98\x1e\x9a\x6c\x93\x5f\x4f\x1a\x4d\x82\x55\x7a\x62\x1e\x85\x7d\x80\x7d\x7b\x7f\x81" +"\x83\x82\x87\x77\x86\x08\x0e\xbf\xf8\x04\xf7\xf8\x15\x4d\x6e\x72\x64\x90\x4e\x08\xfb\x21\x07\x77\x8f\x7c\x94\x75\x1e\x73\x96\xa3" +"\x78\xa0\x1b\x8f\x8e\x8c\x8c\x90\x1f\xf7\x1a\xbc\x05\xb1\x07\x80\x70\x81\x88\x80\x1b\x7e\x80\x92\x97\x85\x1f\x84\x9a\x8a\x9c\xce" +"\x1a\xd9\x07\x8c\xc0\x8f\x9d\x9c\xa2\x08\xf2\xef\xfc\x25\x06\x45\x88\x7d\x86\x7a\x6d\x4d\xfb\x08\x18\xba\x7c\xae\xbc\xab\x9f\xc1" +"\x8f\x19\x89\x54\x87\x68\x83\x62\x78\x37\x88\x83\x68\x72\x7e\x81\x18\x76\x7a\x84\x7d\x73\x1a\x6b\xa5\x75\xb2\xad\xa3\x9c\xad\x9a" +"\x1e\x9d\xb3\x98\xe4\x8f\xee\x8d\xbd\x18\x8c\x91\x8b\x98\x8c\x9f\x08\x0e\xf8\x8c\xf9\x45\xf9\x55\x15\xfd\x72\x07\x54\x8a\x78\x77" +"\x54\xd7\x1d\xf9\x3b\x07\xc4\xa0\xa2\xc0\x1e\x9c\x9d\xfd\x9f\x79\x9b\x06\xc1\x9f\x75\x51\x8c\x1f\xfd\x3b\x07\x54\x8a\x77\x77\x55" +"\xd7\x1d\xf9\x72\x07\x0e\xf8\x8c\xf9\x93\xc9\x15\xfb\xb7\x06\xfb\x0d\x57\xc2\xf7\x16\xf7\x15\xbf\xc3\xf7\x0d\x1f\xf7\xb7\xc9\xfb" +"\xac\x5c\x1d\x43\x2b\x1a\xfb\x07\xb8\x37\xbc\x0a\x06\x0e\xf8\x8c\xf7\x7d\xc9\x15\x4d\xf7\xac\x07\xde\xae\x92\xa4\xb1\x1f\xcc\xb7" +"\xac\xd3\xf2\x1a\xf6\x5c\xe0\x3e\xac\x1e\x99\x69\x70\x8f\x46\x1b\xfb\xac\x4d\xf7\xb7\x06\xf7\x0d\xbf\x54\xfb\x16\xfb\x16\x57\x54" +"\xfb\x0d\x1f\x0e\xf7\x54\xf8\x32\xf8\x55\x15\x22\x06\x8a\xfb\xf9\x32\x92\x6e\xad\x90\xe7\x19\xf7\x1c\x07\xc4\x78\xb4\x71\x87\x85" +"\x89\x89\x84\x1e\x2a\x63\x91\x76\x05\x8e\x94\x8f\x8c\x8f\x1b\xa3\x91\x79\x38\x1f\x2a\x07\x86\xfb\x11\xe4\x38\xf7\x1a\x8e\x8a\xfb" +"\x3d\x18\xf7\x02\xf7\x3e\x06\xd0\x95\xa6\x99\xaf\xb9\x08\xb7\xc3\xa3\xd8\xe5\x1a\xf4\x67\xcc\x50\x6c\x76\x74\x6b\x72\x99\x76\xa4" +"\x80\x1e\xab\x7d\x8c\x8a\x96\x7e\x08\x99\x7a\x92\x78\x71\x1a\x54\x72\x56\x66\x71\x1e\x73\x7b\x6d\x81\x61\x86\x08\x0e\xfb\x37\xf7" +"\x89\xf8\x06\x15\x43\xbe\x69\xb4\xb1\x1a\x97\x93\x94\x96\x8c\x8e\x8b\x8a\x8e\x1e\x8a\x90\x91\x8b\x8f\x1b\xb6\xa8\xaa\xb9\xbc\x6b" +"\xab\x5a\x50\x63\x5d\x47\x37\xbb\x4b\xf7\x07\x49\x1f\x0e\x57\x35\x1d\xfb\x2d\xf8\xa4\x38\x0a\xf8\x3f\x68\x15\xb6\x06\xf7\x2c\xfa" +"\x40\x3e\x96\xfb\x09\xfd\x69\xfb\x44\xf7\xf8\xfb\x4a\x32\xac\x44\xea\xba\x05\x0e\x57\x35\x1d\xeb\xf9\x54\x15\x51\x06\xfb\x03\x28" +"\xfb\x04\xee\x05\x53\x06\xf7\x0e\xfb\x44\x05\xe7\x06\x0e\x57\x35\x1d\xfb\x5c\x40\x0a\xf8\x1d\xf7\xac\xf7\x00\x15\xf7\x5f\xf8\x34" +"\xe3\xfc\x8c\xfb\xb7\x07\x0e\xb2\xf7\x5f\xa9\x15\x6d\xa8\xa1\x81\xac\x1b\xf6\xe1\xf5\xf7\x17\xc0\x7d\xbe\x71\xb2\x1f\xc5\x64\x51" +"\xa8\x3d\x1b\x3c\x4c\x66\x4f\x72\x1f\x7f\x6d\x86\x6b\x5c\x1a\xfc\x3e\xf7\x0e\x07\xf8\x50\x04\xf6\x9c\xb6\xb7\xc4\xa4\x4c\xfb\x1f" +"\xfb\x0a\x6e\x45\x5a\x74\x79\x99\xaf\x73\x1e\x0e\x20\x2f\x1d\xfb\x5d\xf7\x5e\x32\x1d\x20\xf7\x69\x7d\x15\xe5\x90\xc5\xc6\xe3\x1a" +"\xd2\x65\xb6\x27\xb5\x1e\x47\xa8\x6f\xa4\xad\x1a\xac\xa7\xa4\xb1\xa6\xa5\x80\x76\xa1\x1e\xa0\x77\x96\x79\x9a\x5f\x08\xa4\xf7\x25" +"\x75\x06\x7c\x85\x85\x86\x7e\x1b\x85\x82\x8d\x90\x7b\x1f\x96\x6b\x74\x8f\x74\x1b\x30\x49\x4d\x37\x49\xb4\x5d\xf0\x60\x1f\xd0\x6d" +"\xa6\x72\x6b\x1a\x64\x6d\x71\x5e\x45\x5d\xb8\xe2\x76\x1e\x6f\xfb\x39\xa4\x06\xa1\x96\x91\x91\x94\x1b\x90\x93\x89\x87\x95\x1f\x9d" +"\x83\x9d\x87\xb0\x83\x65\x36\x18\x39\x0a\x7b\x7e\x8e\x94\x73\x1f\x85\x8d\x2f\x0a\x0e\x20\x2f\x1d\x82\xf7\x5e\x20\x0a\x20\x2f\x1d" +"\xfb\x4f\xfd\x2f\x4a\x1d\xc3\xf7\x07\x9f\x1d\xf7\x9c\x16\xf3\xf7\x53\x05\xa1\xb3\x97\xaa\x9e\x1a\xa8\x74\xa0\x6b\x4c\x63\x55\x34" +"\x8a\x1e\x88\xfb\x52\x05\x0e\xbb\xf7\xa1\xf8\x63\x15\xfb\x1e\x8c\x31\x30\xfb\x21\x1a\xfb\x26\xe3\x28\xf7\x16\xf7\x13\xe9\xf2\xf7" +"\x20\xdb\x70\xc6\x4f\xbd\x1e\xf7\x2f\x6b\x05\xd7\x07\xfb\xb3\x6d\x15\xc1\xa5\x45\xfb\x23\xfb\x17\x6e\x43\x58\x56\x6f\xd2\xf7\x1a" +"\xf7\x21\xa6\xd1\xc1\x1f\x0e\xf8\x8c\xf8\x1b\xf8\x9a\xc1\x1d\xfb\x14\xfb\x00\x15\x92\x36\x96\x62\xa9\x5e\x08\x4c\xb5\xcb\x6b\xde" +"\x1b\xd8\xc7\xa6\xc1\xb5\x1f\xaf\xba\x9a\xb8\x92\xe8\x80\x59\x80\x75\x71\x6d\x08\x54\x5b\x4f\x71\x3a\x1b\x3a\x4f\xa5\xc2\x5b\x1f" +"\x71\xa9\x80\xa1\x80\xbd\x08\xf7\xee\xf7\x00\xc1\x1d\xfb\x01\xf7\x68\x15\xfb\x5b\xfb\x3a\xfb\x38\xfb\x57\xfb\x63\xf7\x35\xfb\x38" +"\xf7\x5d\xf7\x61\xf7\x37\xf7\x36\xf7\x5f\xf7\x5e\xfb\x37\xf7\x37\xfb\x5e\x1f\x89\x5a\x15\xf7\x45\xf7\x21\xfb\x20\xfb\x44\xfb\x43" +"\xfb\x21\xfb\x21\xfb\x43\xfb\x41\xfb\x23\xf7\x21\xf7\x3e\xf7\x47\xf7\x1e\xf7\x22\xf7\x44\x1f\x0e\xf8\x8c\xf7\xbb\x16\xf8\x77\xa2" +"\x06\xfb\x35\x93\x3f\xe0\x8e\xf7\x3e\x08\x38\xb7\xb9\x6a\xd4\x1b\xd1\xc5\xc9\xd5\xcf\x71\xb4\x20\xec\x1f\xfb\x01\xf0\x78\xa6\x64" +"\xf7\x09\x7b\x2e\x51\x37\x20\x34\x08\x3a\x48\x69\x53\x4b\x1a\x40\xc8\x4d\xd4\xb5\xb4\x9c\xa9\xab\x1e\x9e\x9d\x96\x9a\x9c\xb0\x91" +"\xfb\x3b\x34\x2c\xfb\x33\x8a\x08\x0e\xf8\x8c\xf7\xee\xf9\x5b\x15\xf7\x85\x06\xf4\x8a\xa5\x75\x9a\x26\x08\xa2\x06\x82\xf7\x39\x05" +"\xfc\xaf\x06\xf7\x66\xfc\x67\xfb\x6e\xfc\x2c\x05\xf8\xc8\x06\xbc\xf7\x66\x05\x74\x06\x6f\x3b\x6c\x78\x26\x8c\x08\xfb\xbc\x06\xf7" +"\x49\xf7\xf4\x05\x0e\xf8\x8c\xf7\xcd\xf8\x77\x15\x6e\x66\x7c\x67\x85\x5b\x08\xfb\x05\x54\xf7\x05\x06\x8f\x61\x9e\x5b\xa6\x6a\x3b" +"\x3c\x18\xb1\x65\xdb\xdb\xb1\x6e\xb2\x7b\xb8\x86\x19\xfb\x05\xc1\xf7\x05\x07\xb7\x90\xb9\x9e\xab\xa5\xdb\x3b\x18\xb0\xb1\x3b\xdb" +"\xa8\xae\x9c\xb5\x90\xb8\x19\xf7\x05\xc2\xfb\x05\x06\x86\xb6\x79\xb7\x70\xad\xda\xda\x18\x66\xb1\x3b\x3b\x69\xa6\x62\x9d\x5c\x91" +"\x19\xf7\x04\x55\xfb\x04\x07\x60\x86\x5f\x79\x68\x6f\x3b\xdb\x18\x65\x65\x05\xf7\x9c\x55\x15\xec\xd8\x40\x2d\x2b\x3f\x3e\x2c\x2d" +"\x3e\xd8\xea\xe7\xd8\xd9\xe6\x1f\x0e\x68\xf8\x67\xf8\x57\x15\xfb\xcb\x06\x45\x88\x7e\x86\x79\x6d\x4d\xfb\x08\x18\xbb\x7c\xb5\xc7" +"\xad\x9a\xe1\x8a\x19\xb7\x06\x72\x7f\x7a\x7f\x7a\x78\x7b\x78\x89\x82\x86\x51\x08\xfb\x21\x07\x77\x8f\x7c\x94\x75\x1e\x72\x96\xa3" +"\x79\xa0\x1b\x8f\x8e\x8c\x8c\x90\x1f\xf7\x1a\xbc\x05\xb1\x07\x80\x70\x81\x88\x80\x1b\x7f\x7f\x92\x97\x86\x1f\x84\x99\x89\x9e\xcd" +"\x1a\xd9\x07\x8c\xc0\x8f\x9c\x9c\xa3\x08\xf7\x2b\x06\x0e\xfb\x37\xf7\x67\xf7\xbd\x15\xf7\x0c\xe9\xb7\x2d\xf7\x3d\x72\x07\x4e\x35" +"\x63\x5e\x4a\x54\x08\x70\xbf\xfb\x0c\x4f\x5c\xc7\xfb\x31\x84\x0a\xf7\x1a\xe6\xba\x07\x0e\x6b\xf7\xe7\xf8\x61\x15\xfb\x13\xf7\x3d" +"\x72\x06\x4e\x35\x63\x5e\x4a\x54\x08\x70\xbf\xfb\xd8\x84\x0a\xf7\xc1\xd6\x07\x80\x83\x95\x78\x05\xf4\xc7\xb7\xc4\xda\x1a\xca\x67" +"\xb5\x55\x5d\x6e\x6e\x5e\x60\xa5\x6f\xb3\x8f\x90\x8b\x8c\x90\x1e\x8c\x8e\x8e\x8b\x8c\x1b\x94\x93\x83\x80\x79\x80\x73\x7b\x79\x1f" +"\x0e\xfb\x37\xf7\x62\x80\x15\xc2\x93\xb1\xab\xac\xd2\x72\x96\x18\x69\x1d\xf7\xc1\xe9\xb7\x2d\xf7\x3d\x72\x07\x4f\x36\x63\x5e\x49" +"\x53\x08\x70\xbf\xfb\xd8\x07\x8d\x4e\xab\x67\xc5\x84\x64\x36\x18\x97\xac\x1d\x85\x8d\x7b\x66\x05\x7e\xb0\xa5\x86\xad\x1b\xdb\x4f" +"\x0a\x7e\x1f\x0e\xa5\xf7\x9f\xf9\x26\x15\x44\x4c\x60\x43\x68\x1f\x76\x5f\x7d\x34\x2f\x1a\xfb\x2d\xa4\x35\xc7\x57\x1e\x72\xa7\xb4" +"\x7d\xb4\x1b\xb4\xb3\x9a\xa4\xa6\x1f\xcb\xc7\xa8\xe5\xf7\x23\x1a\xf7\x29\x74\xe0\x52\xc4\x1e\xa7\x6f\x62\x9b\x60\x1b\x37\xfb\xaf" +"\x15\x8c\xf1\x91\xca\x98\xb1\x08\xa5\x93\xa3\x9f\xa1\x1b\xab\xa4\x70\x5d\x96\x1f\x94\x65\x90\x57\x35\x1a\x61\x04\x8a\xfb\x08\x88" +"\x48\x87\x6b\x08\x4a\x81\x76\x6e\x66\x1b\x6c\x74\xa2\xb8\x7f\x1f\x80\xb1\x88\xbc\x8a\xf7\x2e\x08\x0e\xfb\x37\xf7\x28\xf8\x7d\x15" +"\xb0\x06\x8e\x99\x8d\x98\x8d\x94\x08\x9c\xd0\x8b\x8d\x9b\x1a\xa5\x79\x9f\x73\x72\x79\x77\x72\x7a\x8c\x86\x9b\x49\x1e\x90\x6f\x05" +"\x0e\xc7\x23\x0a\xfb\x34\xf9\x33\xa5\x0a\x8e\x54\x92\x72\x9f\x6e\x08\x68\xcf\x1d\x91\xbe\x08\x0e\xc7\x23\x0a\xfc\x4a\xf8\x90\x98" +"\x1d\xaa\x3c\x1d\x7b\x1e\x0e\xc7\x23\x0a\x2d\xf8\xfd\x22\x0a\x8f\x8e\xfb\x4d\x15\x34\xf8\x7c\xe2\x07\xfc\x7c\xf7\x20\x15\x34\xf8" +"\x7c\xe2\x07\x0e\xfb\x8a\x0e\xfb\x37\xd5\x1d\xf7\x3f\x48\x1d\xfb\x8a\xfb\xe9\x4a\x1d\xfb\x37\x82\x1d\xfb\x61\xfd\x8a\x4a\x1d\xfb" +"\x37\xf7\xdf\xf9\x11\x22\x0a\xfb\x8a\x50\x1d\xf7\x17\xf7\xd1\xf9\x30\x15\x6f\x06\xfb\xa1\xfd\x30\x05\xf8\xec\x06\xfb\x5e\xf1\x15" +"\xfb\x8b\x06\x65\x7f\x8f\x99\x94\x8f\x98\x91\x9b\x1f\xf7\x14\xf7\xcf\x05\x0e\xf7\xc5\xf8\xab\xf7\x00\x15\xba\x91\xa5\x93\xa5\x9a" +"\x08\xd0\xb1\xb5\xe2\xf3\x1a\xf7\x52\xfb\x1c\xf7\x10\xfb\x64\xfb\x65\xfb\x1c\xfb\x10\xfb\x52\x30\xad\x39\xc2\x61\x1e\xaa\x73\xaa" +"\x80\xc6\x83\x91\x7e\x18\x8f\x6d\x78\x8d\x6c\x1b\x61\x06\x56\x8c\x81\x94\x7f\xc8\x08\x4e\x06\xb0\xfb\x40\x05\xf7\xcc\xed\x06\x5f" +"\x9b\x79\x96\x77\xa4\x08\x66\xb9\x74\xe5\xed\x1a\xf4\xa0\xcf\xba\xba\x1e\xa6\xa6\xb5\x9b\xb6\x1b\xb6\xb4\x7b\x70\xa6\x1f\xba\x5b" +"\xa0\x48\x22\x1a\x37\x79\x36\x6f\x5d\x1e\x74\x66\x77\x7c\x56\x78\x08\x29\xf7\xcc\x07\xb0\xf7\x40\x05\x4e\x06\x7f\x4f\x81\x81\x56" +"\x8a\x08\x61\x06\x6d\x78\x89\x87\x6c\x1f\x0e\xd2\xf2\xf8\x56\x15\xfb\x6f\x07\x8a\xfb\x06\x84\x3d\x7a\x27\x08\x85\x6a\x89\x7b\x7f" +"\x1a\x63\x9f\x74\xb0\xae\xa5\xa4\xac\x95\x87\x9c\x85\x9e\x1e\x7e\xaf\x81\xad\x86\xaa\x08\x76\xa0\x9f\x82\xa5\x1b\xb8\xb1\xa6\xc2" +"\xab\x1f\x39\x07\xf7\x49\xc2\x86\x9f\x05\x89\x83\x86\x8a\x87\x1b\x74\x80\x9f\xb6\x1f\xf7\xd9\xfb\x11\xfb\xca\x07\x4f\x77\x75\x6f" +"\x71\x1b\x82\x83\x90\x93\x84\x1f\x81\x99\x89\x98\xc1\x1a\xf7\xc4\x07\x0e\x41\xf7\xad\xf8\x5d\x15\x41\x4f\x6d\x4e\x5c\x1f\x64\x59" +"\x75\x49\x4a\x1a\x4f\x9f\x54\xae\x67\x1e\x70\xa5\xaf\x7f\xc1\x1b\x9c\x9c\x8c\x8d\x9b\x1f\x8e\x9b\x99\x8c\x92\x1b\xa4\x9a\x7b\x6f" +"\x69\x77\x71\x71\x82\x82\x8e\x92\x84\x1f\xa3\x6f\x84\x8e\x75\x1b\x69\x71\x72\x6c\x68\xac\x71\xb6\xe1\xd0\xd6\xe8\xce\x68\xb7\x56" +"\x84\x7a\x8a\x89\x7b\x1f\x89\x7f\x7e\x8a\x80\x1b\x57\x76\xb2\xea\xf7\x00\xab\xcd\xc0\x9e\x97\x82\x75\x93\x1f\x57\x9f\x95\x81\xad" +"\x1b\xaf\xa3\xa3\xb0\xc1\x5f\xaf\x49\x1f\x0e\xf7\x3f\xa2\xf9\x12\x15\xcd\x87\x9d\x7d\x8d\x57\x08\xfc\x6e\x07\x89\x57\x7d\x7f\x45" +"\x85\x08\x73\xf8\xd1\x07\xb2\xf7\x60\x05\x70\x06\x6c\x49\x77\x6f\x68\x6f\x08\x67\x5e\x56\x7b\x40\x1b\x4c\x79\x97\xb6\x1f\xf7\x81" +"\x07\xf6\xb3\x65\xfb\x06\x96\x1f\xa5\xf7\xe0\x71\x06\x7d\xfb\x04\x64\x67\x22\x8c\x08\xf7\x78\x07\xb0\x97\x94\xc1\xe3\xc0\x7f\x6f" +"\xaa\x1e\xaa\x70\x99\x6d\x98\x48\x08\xa3\xf7\x59\xfc\xc9\x06\xf8\x13\xc8\x15\xfb\x1b\xf7\x2e\x05\x9d\x7c\x78\x94\x78\x1b\x71\x77" +"\x78\x72\x78\x95\x7e\xa9\x78\xc4\x0a\xf7\xae\x6f\x1d\x59\xf7\x29\x15\xfb\x1a\xf7\x2e\x05\x9d\x7b\x79\x94\x78\x1b\x71\x77\x78\x72" +"\x78\x95\x7d\xa8\x79\xc4\x0a\x57\x77\x1d\xa2\xf7\x85\x15\xfb\x1a\xf7\x2e\x05\x9c\x7c\x78\x95\x78\x1b\x71\x77\x77\x73\x78\x96\x7d" +"\xa7\xda\x1d\xdb\x3f\x0a\xa3\xf7\x22\x15\xfb\x1a\xf7\x2e\x05\x9c\x7b\x79\x95\x78\x1b\x71\x77\x77\x73\x78\x95\x7d\xa8\xda\x1d\xf7" +"\x07\xf7\x9f\xf8\xdb\x15\xb0\x97\x94\xbe\xe4\xc5\x7a\x69\xa9\x1e\xa0\x72\x96\x72\x99\x4c\x08\xa3\xf7\x59\xfc\xc0\x73\x06\xcd\x88" +"\x9f\x7c\x8c\x57\x08\xfb\x69\x33\x6c\x07\xe3\x8a\x05\xfb\x79\x07\x89\x57\x7d\x80\x44\x84\x08\x73\xf7\xf5\xa3\x07\x34\x8e\x79\x97" +"\x89\xc2\x08\xf7\x78\x07\xee\x89\xaf\x66\x98\xfb\x05\x08\xa4\xf7\xe0\x72\x06\x7a\xfb\x04\x68\x68\x2b\x8c\x08\x0e\x20\xf7\x5b\xf7" +"\x8c\x15\xf7\x3a\xb1\x07\xd3\x8a\xae\x68\x8f\x40\x08\x9f\x06\x81\xf7\x28\x05\xfb\xdb\x76\x06\xa8\x9b\x75\x68\x89\x1f\xfb\x11\x54" +"\x5f\xc2\xfb\x11\xb6\x1d\xf7\x11\xe8\xb7\x07\x0e\xf8\x8a\xf8\x20\xf7\xbb\x15\xfb\x5b\x21\x1d\x83\x77\xf7\xba\x9f\x83\x06\x55\x8e" +"\x7d\x9c\x8d\xc3\x08\xf7\x5b\x07\x3c\x0a\x9a\x70\x90\x81\xdb\x1d\xec\x8d\xc0\x5d\x91\x2e\x08\xa9\xf7\x43\x71\x06\x65\x8c\x7c\x94" +"\x73\xb3\xfb\x64\xf7\xf5\x18\xcb\xdc\xda\xec\xad\xa1\xd2\x8c\x19\x9f\xfb\x7e\x77\xa1\x07\xa5\x9c\x7f\x77\x7e\x83\x7d\x79\x74\x1f" +"\xfb\x3c\xfb\x61\x05\xf7\x67\x07\x88\xc3\x9a\x9c\xc1\x8e\x08\x93\x9f\xfb\xba\x77\x93\x06\xc0\x88\x9a\x7a\x8f\x0a\xa0\x9f\xfb\x7e" +"\x77\x06\xd3\x8a\xac\x75\xda\x2a\xcb\x3a\x18\xfb\x64\xfb\xf5\x67\x4e\x85\x85\x69\x8a\x19\x77\xf7\xba\x9f\x73\x07\x6e\x7c\x93\x9a" +"\x92\x90\x97\x99\xa5\x1f\xf7\x1b\xf7\x7e\x05\x0e\xf7\xa0\xf7\x8b\x16\xf7\x5a\x9f\x06\x71\x90\x7e\x9f\x8d\xad\x08\xf7\x05\x07\x9a" +"\x9e\xde\xfb\x1f\x05\x9c\x6f\x8d\x87\x85\x1a\x82\x83\x86\x7a\x1e\x82\x77\xc8\x06\xed\x8d\xc0\x63\x91\x40\x1d\x65\x8c\x7d\x94\x72" +"\xb3\xfb\x16\x9f\x0a\x9a\x95\x83\x80\x8d\x0a\xfb\x5a\x77\x07\xa4\x86\x97\x78\x8a\x69\x08\xfb\x16\x07\xfb\x10\xf7\x1e\x05\x80\x98" +"\x85\xce\x1d\x9c\x7f\x45\xc6\x1f\xb6\x5a\xfb\x26\xfb\x7e\x71\x5f\x89\x8a\x74\x8a\x19\x77\xf7\x66\x9f\x83\x07\x7a\x83\x90\x94\x90" +"\x8f\x94\x9a\xa3\x1f\xde\xf7\x1f\x99\x78\x05\xfb\x05\x07\x8c\x68\x7f\x78\x72\x86\x08\x0e\xab\xf7\xa5\x7d\x15\xf7\x1d\x96\xe1\xd4" +"\xf4\x1a\xec\x55\xc7\x23\x9f\x1e\xe1\x9c\xb8\xc3\xa4\x1d\x73\xfb\x5c\xa3\x06\x92\xbf\x93\xa4\x9c\xa3\x08\xaa\xa1\xad\x9c\xb4\x1b" +"\xcb\xad\x5e\x38\x4d\x77\x60\x66\x7c\x1f\x85\x7d\x76\x89\x68\x1b\x81\x87\x8b\x8c\x81\x1f\x63\x07\x8d\xa0\x8b\x8b\x99\x1b\xbb\xa8" +"\x82\x75\xa0\x1f\xa4\x73\x97\x65\x59\x1a\x2b\x5d\x53\x3c\x3a\x57\xbd\xe9\x7b\x1e\x63\x85\x97\xfb\x07\xdb\x41\xf7\x07\x8a\x19\x67" +"\x3a\x96\xac\x1d\x88\x8c\x8b\x8b\x89\x8c\x7b\x66\x18\x7e\xaf\xa6\x86\xac\xa1\x0a\x2d\xf7\x6b\x83\x15\xec\x96\xc5\xbb\xcf\x1a\xcb" +"\x63\xb5\x3f\x9c\x1e\xca\x9c\xab\xb0\xc2\x1a\xcc\x4d\xb8\x30\x73\x7b\x88\x82\x6e\x1e\x87\x7e\x83\x89\x84\x1b\x7e\x85\x91\x97\x1f" +"\x7a\x06\x84\xfb\x21\x05\xa3\x06\xd0\x91\xa6\xad\xbc\x1b\xb3\xa2\x6c\x56\x68\x82\x71\x7a\x7e\x1f\x83\x80\x7f\x89\x6f\x1b\x96\x0a" +"\x9c\x3c\xbb\x62\xdb\x86\x19\x64\x35\x96\x83\x05\x8e\x96\x92\x8c\x95\x1b\xa8\x9c\x7e\x74\x70\x77\x7d\x65\x7b\x7e\x8e\x94\x73\x1f" +"\x85\x8d\x7b\x66\x05\x7e\xaf\xa6\x86\xad\x1b\xda\x4f\x0a\x7f\x1f\x0e\xf7\x6a\xf7\x94\xf7\xbb\x15\x3c\x0a\x9a\x71\x90\x80\xdb\x1d" +"\xed\x8d\xbf\x5d\x92\x2e\x3f\x1d\x65\x8c\x7c\x95\x73\xb2\xfb\x64\xf7\xf5\x18\xcb\xdc\xda\xec\xad\xa1\xd2\x8c\x19\x9f\xfb\x7e\xa7" +"\x1d\x9c\xc0\x8e\x08\x93\x9f\xfb\xc5\x77\x9e\x06\xc0\x88\x9a\x7a\x89\x53\x08\xfc\x6a\x8e\x0a\x0e\xb1\x97\xf8\x57\x15\xb5\x0a\x8d" +"\x66\x7b\x48\x0a\x90\x7e\x9f\x8d\xad\x08\xf7\x05\x07\x9a\x9e\xde\xfb\x1f\x05\x9c\x6f\x8d\x86\x86\x1a\x82\x82\x86\x7b\x1e\x83\x77" +"\xc8\x06\xed\x8d\xc0\x63\x91\x40\x1d\x64\x8c\x7e\x94\x72\xb3\xfb\x17\x9f\x0a\x9b\x94\x84\x7f\x8d\x0a\x07\x0e\xf7\x0b\xf7\xa7\xf8" +"\x0f\x15\x78\x73\x05\xf7\x66\x07\x89\xc4\x9a\x9c\xbf\x8e\x08\x93\x9f\xfb\xc4\x77\x9e\x06\xc0\x88\x9a\x7a\xeb\x1d\x56\x88\x08\x78" +"\x77\xf7\xc4\x9f\x83\x06\x56\x8e\x7d\x9b\x8d\xc4\x08\xf7\x5b\x07\x9e\xa5\x05\xfb\x74\xc9\xf7\x0a\x07\xd3\xfb\x13\x05\x98\x75\x92" +"\x7c\x84\x1a\x7c\x7b\x82\x6f\x1e\x73\x77\xf7\xba\x9f\x06\x69\x8c\x85\x91\x67\xc8\xfb\x65\xf7\xf5\x18\xcc\xdb\xda\xed\xac\xa1\xd3" +"\x8c\x19\x9f\xfb\x7e\x77\xa0\x07\xa6\x9c\x7f\x76\x7e\x84\x7e\x77\x73\x1f\x35\x22\x05\xf7\x0c\x4d\x07\x0e\x62\xf7\x5c\xf7\x9e\x15" +"\x76\x74\x05\xf7\x16\x07\x8a\xad\x97\x9e\xa5\x90\x08\x9f\xfb\x61\xb5\x0a\x66\x8d\x7b\x76\x6e\x1b\x76\xf7\x61\xa0\x07\x71\x8f\x7e" +"\x9f\x8d\xad\x08\xf7\x06\x07\x9a\x9d\x91\x81\x05\xfb\x21\xb5\xd2\x07\xae\x50\x05\x9b\x70\x8e\x86\x85\x1a\x82\x82\x87\x7a\x1e\x84" +"\x76\xf7\x66\xa0\x06\x73\x89\x8d\xb6\x71\x1f\xfb\x25\xf7\x7e\xb6\xbd\x05\xd1\xc6\x9c\x96\xc0\x1b\x9f\xfb\x41\x77\x9f\x07\x9b\x94" +"\x84\x7f\x83\x85\x80\x80\x7f\x1f\x4e\x47\x05\xdb\x61\x07\x0e\xf7\xdf\xf7\x88\xf9\x06\x15\xfc\xa6\x8e\x0a\xf7\x5b\x07\x3c\x0a\x99" +"\x73\x91\x7d\x8b\x1d\x76\x7e\x84\x7d\x78\x75\x1f\xfb\x3c\xfb\x61\x05\xf7\x58\x07\x89\xd2\x97\x9c\xc3\x8e\xc8\x1d\x0e\xf7\x25\xf7" +"\x3a\xda\x15\x78\x0a\x83\x86\x7a\x77\x0a\x7e\x83\x86\x82\x7f\x7e\x1f\xfb\x10\xfb\x1e\x05\xf7\x15\x07\x89\xb0\x9b\xa0\xa9\x8c\x08" +"\x9f\xfb\xb4\x07\x81\xfb\x29\x05\x9f\x06\xd5\x8e\xaf\xb1\xd1\x1b\x0e\xf7\xae\xf7\x94\xf7\xd1\x15\xf7\x95\xfb\x71\x06\x25\x0a\xf7" +"\x22\x06\xe9\x8c\xbf\x5c\x91\x30\x3f\x1d\x56\x8d\x7c\x9c\x8d\xc3\x08\xf8\x56\x07\x89\xc5\x9a\x9d\xc0\x8e\x08\x9d\x9f\xfb\xcf\x77" +"\x9e\x06\xbf\x88\x9b\x79\x89\x51\x08\xfb\x62\xfb\x95\xf7\x62\x6a\x0a\x0e\xa9\xf7\xba\xf7\x96\x15\xfb\x06\xf7\x07\x06\x8a\xad\x98" +"\x3e\x1d\x8a\x9a\x76\x89\x67\x29\x0a\x8d\x67\x7c\x75\x6e\x8a\x08\x77\xf7\x61\x9f\x07\x71\x8e\x7e\xa0\x8c\xae\x08\xf7\x22\xf7\x06" +"\xfb\x22\x07\x8d\x68\x7d\x76\x70\x88\x08\x77\xcd\x07\xee\x8c\xbe\x64\x91\x40\x1d\x5f\x8c\x78\x9b\x8d\xac\x08\xf7\xb1\x07\x89\xaf" +"\x9b\xa0\xa7\x8c\x08\x9f\xfb\x62\x77\x07\xa6\x88\x98\x77\x8a\x68\x08\x0e\xf8\x10\x79\x15\x8a\x97\x90\x8b\x94\x1b\xd0\xc6\x9d\xaf" +"\xc1\x1f\xab\xa1\xa1\xa0\xb8\xbc\x6d\xa4\x18\x7c\x0a\xb6\x79\x65\xb6\x1e\xb6\x65\xa2\x69\xae\x3f\x37\x0a\x52\x5a\x96\x5b\x1b\xfb" +"\x5c\xfb\x29\xfb\x2d\xfb\x62\xfb\x4b\xf7\x05\xfb\x1a\xf7\x46\x6e\x1f\x66\x39\x68\x0a\x57\xf7\x85\x7d\x15\xda\x8e\xc6\xab\xbe\xd1" +"\x79\x9d\x18\x5a\x0a\xfb\x0f\xd0\x30\xf6\x77\x1f\x65\x36\x39\x0a\x7a\x7e\x8e\x94\x73\x1f\x88\x8c\x8b\x8b\x89\x8c\x7b\x66\x18\x7e" +"\xaf\xa5\x86\xad\xa1\x0a\xf9\x48\xf9\x2a\x15\xfb\x6c\x72\x06\xcc\x87\x9c\x83\x6e\x1a\x78\x7d\x6a\x73\x62\x1e\xfb\x00\xfb\x49\xfb" +"\x0a\xf7\x77\x89\x8f\x89\x8f\x88\x8f\x19\x7e\xa2\x87\x97\x96\x1a\xa1\x9a\x93\xb3\x1e\xa4\xa4\xfb\xdc\x72\x06\xab\x89\xa6\x79\x9e" +"\x6a\xf7\x47\xfb\xd9\x18\xfb\x24\x07\x89\x42\x80\x80\x3d\x84\x08\x73\xf7\xe8\xa3\x07\x3d\x92\x81\x95\x89\xd5\x08\xf7\x48\x07\xf7" +"\x4f\xf7\xc4\x9a\xa2\x9d\x96\xad\x8f\x19\x0e\x60\xf7\xa7\xf7\x32\x15\x52\xf7\x3c\x05\x79\xc8\x8b\x8b\x97\x90\x0a\xfb\x57\x07\x8a" +"\x60\x83\x82\x60\x84\x08\x73\xf7\x7d\xa3\x07\x68\x8f\x7e\x9a\xb0\x1a\xf7\x67\x07\xc4\xf7\x5f\xaa\xf3\x9a\xa2\xd4\x1d\x8b\x8b\x7a" +"\x52\x1f\x0e\xf8\x4a\xf7\x7b\x15\xcb\x07\xf7\x4e\xf7\xc4\x9a\xa2\x9d\x96\xad\x8f\x19\xa4\xfb\x6b\x72\x07\xcc\x87\x9c\x83\x6e\x1a" +"\x78\x7d\x6b\x72\x61\x1e\xfb\x00\xfb\x49\xfb\x0a\xf7\x77\x8a\x8e\x05\x77\xaf\x89\x92\x97\x1a\xa1\x9a\x93\xb2\x1e\xa4\xa4\xfb\xdb" +"\x72\x06\xab\x8a\xa6\x78\x9e\x6a\xf7\x47\xfb\xd9\x18\x6f\x39\x61\xdd\x41\x07\x89\x42\x80\x80\x3d\x84\x08\x73\xf7\xe7\xa3\x07\x3d" +"\x92\x81\x95\x8a\xd5\x08\xd5\xde\xb5\x07\x0e\x60\xf7\xbf\x91\x15\xeb\x07\xc4\xf7\x5f\xab\xf4\x99\xa1\xd4\x1d\x8a\x89\x7b\x54\x1f" +"\x5b\xfb\x3b\x52\xf7\x3d\x05\x79\xc8\x8b\x8b\x96\x90\x0a\x38\x3f\x58\xd7\x4e\x07\x8a\x60\x83\x82\x60\x84\x08\x73\xf7\x7d\xa3\x07" +"\x67\x8f\x7f\x9a\xb0\x1a\xcb\xdc\xbe\x07\x0e\xf7\x4d\xf7\xae\xf7\x97\x15\xee\xfb\x49\x05\x91\x80\x8f\x80\x82\x1a\x7b\x7b\x80\x71" +"\x1e\x7c\x77\xf7\x12\x06\xec\x8e\xc1\x5c\x91\x2e\x3f\x1d\x5d\x8c\x7c\x98\x5b\xdd\xfb\x22\xf7\x91\x18\xea\xf7\x1e\xcc\xe7\xa2\x9d" +"\xc9\x92\x19\x9f\xfb\x74\x77\x97\x07\xaa\xa3\x77\x72\x7a\x83\x79\x7b\x73\x1f\x37\xfb\x0b\x3b\xf7\x26\x05\x7c\xa8\x87\x95\x94\x1a" +"\x9c\x9c\x97\xa4\x1e\x9b\x9f\xfb\xc0\x77\x06\xbd\x88\xa7\x6f\xc4\x23\xf7\x0c\xfb\x6b\x18\xfb\x05\xfb\x37\x05\x3e\x55\x65\x6b\x63" +"\x1b\x81\x77\xf7\x79\x9f\x78\x06\x65\x75\x9a\xa4\x98\x91\x9a\x9a\xa1\x1f\x0e\x73\xf7\x60\xf7\x38\x15\xc5\x2c\x05\x95\x7b\x8f\x82" +"\x85\x1a\x7d\x7c\x85\x74\x8d\x1e\x8a\x77\xd2\x06\xee\x8c\xbe\x64\x92\x40\x1d\x65\x8c\x7d\x94\x72\xb3\xfb\x03\xf7\x45\x18\xdd\xf7" +"\x02\xac\xb9\x98\x94\xb1\x8c\x19\x9f\xfb\x25\x77\x07\xa6\x86\x93\x86\x7c\x1a\x82\x83\x7b\x80\x7c\x1e\x54\x43\x55\xe2\x05\x82\x9a" +"\x88\x93\x92\x1a\x96\x94\x90\xab\x8f\x1e\x9f\xfb\x78\x77\x07\xa7\x88\x90\x86\xb7\x44\xf0\xfb\x34\x18\x39\xfb\x01\x68\x5b\x78\x7f" +"\x61\x88\x19\x77\xf7\x35\x9f\x07\x7f\x8c\x83\x8b\x89\x8c\x08\x7d\x8e\x82\x93\x95\x1a\x95\x91\x97\x98\x9d\x1e\x0e\xf7\x82\xf9\x48" +"\xf9\x16\x15\x9f\xfb\xc8\x77\x96\x07\xc0\x89\x9b\x78\x89\x51\x08\xfb\x6c\x07\x77\x57\x6c\x84\xa6\x1d\x96\x9f\xfb\xc3\x51\x1d\xbc" +"\x95\xa6\xd5\x1e\xfb\x65\x07\x8d\x53\x7b\x7a\x56\x88\x08\x6b\x77\xf7\x4a\x06\xd2\x83\xb5\x5a\x90\x3d\x08\xa8\xf7\x1b\x06\x9f\x71" +"\x07\x5a\x8e\x7e\x97\x8f\xb4\x08\xf8\x7b\x07\x88\xc5\x9b\x9e\xbf\x8d\x08\x0e\xcf\xf8\x86\xf8\x58\x15\xfb\x66\x77\x06\xa8\x8a\x9a" +"\x75\x89\x67\x08\xfb\x23\x07\x84\x7e\x7f\x88\x7c\x1b\x62\x76\xa0\xb6\x1f\xe4\xe2\x1d\x77\x07\xa4\x87\x99\x76\x89\x69\x08\x41\x07" +"\x3a\xbb\x65\xf1\xa6\x9e\x8e\x96\xaa\x1e\xfb\x07\x07\x8d\x67\x7c\x76\x6e\x8a\x08\x85\x76\xdb\x06\xcc\x84\xb4\x60\x8f\x4a\x08\xa8" +"\xf7\x1d\x71\x06\x79\x8c\x8a\x8e\x8a\xad\x08\xf7\xcd\x07\x89\xb0\x9b\xa0\xa8\x8c\x08\x0e\xf7\x51\xf8\x00\xf7\xaf\x15\xa8\x94\x95" +"\x8e\xa5\x95\x08\xfb\x65\x21\x1d\x6b\x77\xf7\xdd\x9f\xd2\x1d\x9d\xc0\x8e\x08\x9e\x9f\xfb\xc8\x77\x96\x06\xc0\x88\x9a\x79\x89\x51" +"\x08\xfb\x6c\x07\x77\x82\x71\x82\x78\x87\x08\xf7\x73\x40\xfb\x77\x07\x5a\x96\x79\xa7\x8d\xcd\x08\xf7\x1d\x07\x89\xc5\x9a\x9d\xc1" +"\x8e\x08\x95\x9f\xfb\xc2\x77\x98\x06\xc0\x89\x9a\x78\x89\x51\x08\xfb\x28\x07\x27\xc4\x5b\xf7\x0c\x9a\x93\x8c\x8c\x96\x1e\xfb\x21" +"\xd6\x07\x0e\x6a\xf7\x5a\xf7\x75\x15\x78\x94\x81\xa0\xa7\x1a\xe5\x07\x89\xad\x98\x9f\xa5\x8f\x08\x9f\xfb\x5b\x77\x07\xa5\x87\x98" +"\x77\x89\x69\x08\x40\x07\x39\xb9\x68\xf7\x00\x8a\x1e\x20\xb8\xf7\x05\x07\x91\x8c\x96\x8e\x95\x8e\x08\xfb\x06\x07\x8d\x67\x7c\x75" +"\x6e\x8a\x08\x85\x77\xf7\x6c\x9f\x06\xc2\x0a\x89\xaf\xec\x1d\xa8\x8a\x9a\x76\x89\x67\x08\xfb\x23\x07\x82\x86\x84\x89\x80\x89\x08" +"\xf7\x1f\x5e\x07\x0e\xf7\x51\xf7\x94\xf8\xca\x15\x89\xc3\x9a\x9c\xc0\x8e\x08\xab\x9f\xfb\xdd\x77\x9e\x06\xc0\x88\x9a\x7a\x89\x53" +"\x08\xfc\x67\x07\x8d\x51\x7b\x78\x57\x89\x08\x78\x77\xf7\xc7\x9f\x81\x06\x56\x8d\x7c\x9e\x8d\xc5\x08\xf7\x6c\x07\x9f\xc0\xa7\x92" +"\xac\x1b\xad\xa4\x80\x77\x9a\x1f\x97\x7b\x8f\x78\x62\x1a\xfb\x1c\x07\x8d\x51\x7c\x78\x56\x89\x08\x80\x77\xf7\xc2\x9f\x7e\x06\x56" +"\x8d\x7c\x9e\x8d\xc5\x08\xf7\x27\x07\xed\x52\xbd\xfb\x05\x4f\x65\x83\x6e\x39\x1e\x0e\xc7\xf8\xa4\xa2\x15\x69\x8d\x7d\x9c\xb3\x1a" +"\xf7\x87\x07\xdf\x57\xc1\x3b\x57\x67\x78\x52\x58\x1e\xf7\xa7\xfb\x50\x73\x07\xb7\x83\x92\x84\x8c\x62\x08\xfc\x88\x07\x8a\x61\x83" +"\x82\x60\x83\x08\x74\xf7\x80\xa2\x07\x68\x90\x7e\x9a\xaf\x1a\xf7\x9a\x07\x8e\x92\x95\x94\x95\x1e\xa1\xa1\xa3\x97\xa1\x1b\xad\x9c" +"\x70\x54\x1f\xfb\x81\x07\x8a\x66\x7e\x7c\x6b\x87\x08\x74\xf7\x7a\x07\x0e\x20\x66\x0a\xf7\x82\xf8\x62\xd7\x15\x8e\x62\x7e\x7f\x5a" +"\x88\x08\x71\xfb\x2f\xa8\x06\x8f\xd8\xb6\xbd\xd2\x93\x08\xf7\x49\x9f\x6c\x06\x56\x8e\x7b\x9c\x8e\xc3\x08\xf8\x67\x07\x88\xc5\x9b" +"\x9e\xbf\x8d\x08\x9e\x9f\xfb\xc8\x77\x96\x06\xef\x1d\x78\x58\x6b\x83\x6a\x1b\x69\x72\x95\xa0\x7c\x1f\x7f\x9b\x88\x9d\xb4\x1a\xf7" +"\x1d\x07\x88\xc5\x9b\x9e\xc0\x8d\x08\x95\x9f\xfb\xc2\x51\x1d\xbb\x95\xa6\xd6\x1e\x0e\xcf\xf7\xde\xc7\x15\x8a\x69\x8a\x88\x78\x8a" +"\x08\x71\xfb\x1d\xa8\x06\x8f\xcb\xb5\xb7\xcc\x92\x08\xdb\xa0\x85\x06\x6e\x8c\x7c\xa0\x8d\xaf\x08\xb9\x0a\xfb\x67\x77\x07\xa8\x8a" +"\x9b\x75\x89\x67\x08\xfb\x23\x07\x84\x7d\x80\x88\x7b\x1b\x62\x77\xa0\xb6\x1f\xe4\x07\x89\xae\x98\x9f\xa6\x8f\x08\x9f\xfb\x5c\x77" +"\x07\xa4\x87\x99\x76\x89\x69\x08\x41\x07\x3a\xbb\x65\xf1\xa6\x9e\x8e\x96\xaa\x1e\x0e\xf7\xae\xb4\xf7\xba\x15\x8f\x51\x91\x6e\x9f" +"\x62\x08\xfb\x0c\xc4\xf5\x4b\xf7\x1f\x1b\xe2\xe1\xa7\xbe\xcd\x1f\xdd\xc8\xb6\xe6\xf7\x03\x1a\xed\x69\xe0\x4b\xc9\x1e\xce\x45\x28" +"\xb3\x28\x1b\x35\x38\x6c\x55\x51\x1f\x62\x65\x76\x65\x72\x39\xf7\x10\x81\x18\x9c\xd1\x9d\xbe\x9f\xa7\x08\xb8\xab\xb9\xa3\xbe\x1b" +"\xb6\xb4\x7a\x68\xb0\x1f\xc0\x5a\xaa\x28\xfb\x0a\x1a\x81\x8b\x82\x8a\x81\x1e\x87\x61\x15\x85\x39\x5f\x2a\x61\x70\x08\x78\x6d\x69" +"\x81\x6a\x1b\x2a\x54\xd8\xf7\x32\x7b\x1f\x0e\xf9\x3e\xa3\x15\x60\x80\x99\xf7\x0f\x56\x1f\xfb\x6e\xf8\x97\x05\x6f\x06\xfb\x6d\xfc" +"\xad\x66\x2f\x7f\x7d\x5c\x82\x19\x73\xf7\x5b\xa3\x07\x51\x8f\x75\x96\xa5\x1a\x98\x93\xa6\x9f\xbc\x1e\x9a\xb2\x05\xf7\x70\x06\xad" +"\x3b\x96\x6b\x75\x1a\x77\x7e\x82\x69\x88\x1e\x86\x7f\x8a\x89\x7d\x1f\x73\xf7\xd1\x07\xfc\x7e\xf7\x7b\x15\xe7\xf7\x82\xee\xfb\x82" +"\x05\xce\xf9\x22\x15\x4c\x7a\x6e\x74\x4e\x1b\x4d\x6d\xe5\x1d\x6f\x08\x67\xa4\xb3\x79\xc0\x1b\xc1\xb3\x9f\xb3\xa5\x1f\x9b\xa5\x92" +"\xa3\x91\xbd\x08\x0e\x8f\xf8\x69\xca\x15\x81\x81\x05\x88\x88\x89\x8a\x86\x1b\x7d\x84\x93\x9b\x1f\xf7\x94\x07\xde\x41\xbe\xfb\x0c" +"\xfb\x03\x41\x59\x42\x62\xa2\x73\xb3\xb3\xa6\xa2\xad\x99\x86\x97\x7e\x9b\x1e\x83\x95\x88\x91\x91\x1a\x9f\xa6\x9b\xae\xc4\xa4\x71" +"\x4f\x1e\x43\x07\xfb\x0a\x67\x5c\x79\x67\x72\x08\x60\x6d\x77\x6a\x61\x1a\x4f\xb8\x5f\xcb\xc3\xb8\x9f\xbc\xc1\x1e\x59\x95\xa1\x78" +"\xbb\x1b\xb6\xa9\x9a\xb4\xb0\x1f\xfb\x53\xc3\x15\x6c\x70\x78\x80\x73\x1b\x6d\x77\xa6\xb2\xc3\xb4\xb4\xda\xa0\x1f\xbd\xf8\x48\x15" +"\x4c\x7a\x6f\x74\x4e\x1b\x4d\x6c\xe5\x1d\x6e\x08\x68\xa4\xb3\x79\xc0\x1b\xc2\xb2\x9f\xb3\xa5\xc3\x0a\xf7\xae\xf8\x1c\xf9\x38\x15" +"\xfb\x61\xfb\x25\xfb\x24\xfb\x61\xfb\x5e\xf7\x24\xfb\x24\xf7\x5e\xf7\x5f\xf7\x24\xf7\x24\xf7\x5f\xf7\x5c\xfb\x25\xf7\x28\xfb\x5a" +"\x1f\xfb\x44\xfb\xd8\x15\xf7\x54\x93\xc6\xef\xf4\x1b\xcd\xbb\x64\x3c\xa9\x1f\x9b\x63\x93\x5a\x90\x36\x08\x50\x04\x86\x33\x83\x5f" +"\x79\x5f\x08\x46\x6e\x5c\x68\x49\x1b\xfb\x00\x52\xe7\xf7\x50\x84\x1f\x0e\x8f\xf7\x8f\xf8\x63\x15\xfb\x11\x2b\x24\xfb\x19\xfb\x20" +"\xe7\x26\xf7\x15\xf7\x13\xe8\xf0\xf7\x1e\xf7\x1d\x2d\xf0\xfb\x12\x1f\xd8\xfb\x90\x15\xfb\x2c\x87\x7b\x60\x52\x1b\x52\x77\xbd\xf7" +"\x25\x1f\xb9\x04\x8e\x07\xf7\x14\x8e\x9f\xb8\xc2\x1b\xa8\x9d\x7d\x6a\x98\x1f\x93\x76\x8f\x66\x8e\x44\x08\x0e\xf7\x1f\xa1\xf9\x12" +"\x15\xcd\x87\x9d\x7d\x8d\x57\x08\xfc\x6e\x07\x89\x57\x7d\x7f\x45\x85\x08\x73\xf8\xd1\x07\xb2\xf7\x60\x05\x70\x06\x6c\x49\x77\x6f" +"\x68\x6f\x08\x67\x5e\x56\x7b\x40\x1b\x4c\x79\x97\xb6\x1f\xf7\x81\x07\xf6\xb3\x65\xfb\x06\x96\x1f\xa5\xf7\xe0\x71\x06\x7d\xfb\x04" +"\x64\x67\x22\x8c\x08\xf7\x78\x07\xb0\x97\x94\xc1\xe3\xc0\x7f\x6f\xaa\x1e\xaa\x70\x99\x6d\x98\x48\x08\xa3\xf7\x59\xfc\xc9\x06\xf8" +"\x13\xf7\x73\x94\x0a\x6f\x08\x67\x97\x0a\x57\x77\x1d\xb1\xf8\x24\x94\x0a\x6e\x08\x68\x97\x0a\x8f\xf8\x88\xf9\x85\x15\xd0\xfc\x88" +"\x46\x07\x0e\xf8\x8c\xad\x89\x15\x92\x06\xd5\x06\xf7\x44\xcd\x97\xb7\xcc\x1f\xf1\xd0\xd5\xf7\x36\xf7\x2f\x1a\xea\x6d\xde\x5b\xb1" +"\x1e\xa7\x67\x5a\x98\x4a\x1b\xfb\x2b\x20\x56\x2e\x69\x1f\x7d\x66\x87\x73\x8a\x49\xd9\xb1\x18\x94\x07\x8a\xea\xb0\xb7\xe6\x99\x3d" +"\xfc\x3e\x18\x7a\x40\x72\x5c\x6d\x81\x74\x8c\x18\xe5\x16\x8f\x8e\xc2\xb9\x9e\xb6\xa1\xf7\x13\x19\xc7\xf7\xec\x05\x92\x06\x8e\x06" +"\xb4\x96\x8a\x87\x98\x1f\xc4\x76\xa9\x49\x26\x1a\xfb\x66\x2c\xfb\x29\xfb\x1e\x84\x1e\xf7\x8d\xfb\x99\x15\xda\x06\xb1\xf7\x62\x05" +"\x7b\xb2\x8e\x8a\xa1\x1b\xf7\x14\xf7\x01\xf7\x39\xf7\x53\xf7\x00\x5e\xc3\x36\x57\x5e\x75\x62\x6a\x1f\x66\x5d\x76\x50\x73\xfb\x18" +"\x08\xea\xe6\x15\xe6\x9b\xb0\xc0\xb9\x1b\xb4\xa1\x61\x3c\xfb\x2a\x52\xfb\x0b\x43\x6e\x75\x96\xa5\x77\x1f\x0e\xf7\x07\xf7\x97\x16" +"\x7c\xf7\x2f\x05\x59\xb8\x6b\xe3\xe8\x1a\xc2\x96\xc5\x9f\xbd\x1e\xca\xa4\xb4\xae\xbd\x1b\xda\xca\xfb\x08\xfb\x25\x2e\x6b\x33\x59" +"\x5e\x1f\x7c\xfb\x2f\x05\xf7\x80\xf7\x2d\x78\x06\x84\x5e\x7b\x7a\x6a\x8a\x08\xfb\x0a\x06\x8e\xb1\x05\xf2\xb9\xc7\xe8\xf7\x07\x1a" +"\xbb\x7f\xbe\x75\xba\x1e\xef\x5d\x38\xc5\x2d\x1b\x2e\x38\x51\x27\x5d\x1f\x75\x5c\x7f\x58\x5b\x1a\xfb\x08\xc7\x2f\xf2\x5d\x1e\x8e" +"\x65\x05\xfb\x0a\x06\x6a\x8c\x7c\x9b\x83\xb9\x08\x78\xfb\x2d\x06\x0e\xfb\xdd\xf7\xa5\x3b\x1d\x0e\xfb\x8a\x50\x1d\xf8\x8c\xf8\xa9" +"\xf8\x95\x15\x49\x06\xfb\x74\xfc\x95\x05\xdb\x06\xf7\x45\xf8\x2d\xf7\x45\xfc\x2d\x05\xdb\x06\x0e\xf8\x8c\xf8\xa9\x16\xf7\x74\xf8" +"\x95\x05\x3b\x06\xfb\x45\xfc\x2d\xfb\x45\xf8\x2d\x05\x3b\x06\xf7\x74\xfc\x95\x05\x0e\xf8\x8c\xf8\x8c\xf9\x60\x15\xfb\x60\xfb\x34" +"\xfb\x32\xfb\x5f\xfb\x5b\xf7\x34\xfb\x33\xf7\x5d\xf7\x5b\xf7\x34\xf7\x34\xf7\x5c\xf7\x59\xfb\x34\xf7\x36\xfb\x58\x1f\xa4\x52\x15" +"\xf7\x23\x7e\xf7\x06\xfb\x06\x99\xfb\x25\x08\xfb\xa3\x06\xf7\xa4\x52\x15\x82\xfb\x22\xfb\x0d\xfb\x0f\xfb\x22\x80\x08\xf7\xa8\x07" +"\x53\xfb\xa8\x15\xfb\x27\x99\xfb\x05\xf7\x05\x7d\xf7\x29\x08\xf7\xa6\x06\xfb\xa6\xc4\x15\x99\xf7\x24\xf7\x07\xf7\x06\xf7\x25\x99" +"\x08\xfb\xa4\x07\x0e\xf7\x11\xf7\x10\x15\xf8\x67\xf8\x67\xfc\x67\x06\xb3\xfc\x3f\x15\xf8\x17\xf8\x17\xfc\x17\x07\x0e\xf8\x8c\xf9" +"\x64\xf8\xc3\x15\x4f\xfb\x8d\x06\x26\x86\x62\x7c\x6e\x1e\x5b\x72\x53\x6b\x50\x1b\x57\x58\xa4\xb3\x6f\x1f\x74\xac\x85\xb4\xf7\x04" +"\x1a\xf7\x8d\x4f\xfb\x8a\x07\xfb\x1d\x90\x69\xa3\x63\x1e\x4a\xb1\xd1\x66\xde\x1b\xd7\xcb\xaa\xc3\xb4\x1f\xac\xb8\x91\xab\xf7\x29" +"\x1a\x0e\xec\xf8\x27\xf8\x1c\x15\xfb\x69\x06\x41\xf7\x4d\x05\x2d\x06\xf7\x7d\xfc\xd5\x05\xde\x06\xf7\x7d\xf8\xd5\x05\x2d\x06\x22" +"\xfb\x9d\x15\x3f\xfb\x48\x40\xf7\x48\x05\x0e\xc7\x62\x0a\x30\x07\x7f\x77\x87\x7c\x78\x1a\x5d\x99\x0a\x76\x82\x88\x7b\x1b\x63\x74" +"\xa1\xb1\xab\xa2\xa0\xb4\x8f\x1f\xc9\x92\x05\x0e\xa2\x3e\x0a\x0e\xa2\xf7\x4d\xf9\x1b\x9e\x0a\xf7\x44\x16\x6b\x71\x71\x6c\x6b\xa5" +"\x71\xaa\xab\xa5\xa5\xab\xaa\x71\xa5\x6c\x1f\xfb\xbe\xfb\x95\x15\x8d\x95\x96\x8c\x91\x1b\x93\x92\x88\x86\x8f\x1f\x94\x81\x8b\x8a" +"\x8c\x2a\x08\xfb\x0d\x07\x6d\x8e\x73\x91\x75\x1e\x53\x9a\xbc\x69\xcd\x1b\xf7\x08\xd8\xf6\xf7\x35\xd3\x7d\xcf\x75\xa8\x1f\x9f\x7c" +"\x78\x95\x73\x1b\x66\x73\x73\x67\x6c\x9e\x74\xac\x7f\x1f\xa8\x82\x8e\x89\x93\x83\x08\x98\x7d\x92\x71\x65\x1a\x29\x61\x46\x50\x5f" +"\x79\xac\xd8\x1e\xf7\x58\x07\xb8\x6f\xb2\x6a\x84\x87\x8a\x8a\x87\x1e\xfb\x04\x5d\x05\x0e\xa2\x3e\x0a\xf6\xf7\x56\x15\x6d\x74\x74" +"\x6e\x6e\xa2\x74\xa8\xa8\xa2\xa2\xa8\xa7\x74\xa3\x6f\x1f\xf7\x6c\xc4\x1d\xfb\x13\x62\x15\xaf\x06\x8e\x9c\x8d\x93\x8d\x94\x08\x99" +"\xcb\x8c\x8f\x9b\x1a\xa3\x7a\x9e\x74\x74\x7a\x78\x73\x7b\x8c\x86\x9a\x4c\x1e\x8c\x82\x8d\x82\x8d\x83\x08\x0e\xa2\x3e\x0a\xf7\x7e" +"\xf7\x0c\x15\x90\xa2\x8d\x97\x8c\x1a\x9b\xcf\x8c\x8f\x9b\x1a\xa4\x79\x9f\x72\x73\x79\x77\x72\x7f\x8d\x7c\x8f\x79\x1e\x91\x71\x8f" +"\x7d\x8d\x81\x8c\x87\x19\x8d\x81\x8b\x89\x8e\x7e\x08\x0e\xc7\x23\x0a\xfb\x96\xf9\x6e\x38\x1d\xc7\x23\x0a\xfc\x25\xf8\xa5\x64\x0a" +"\x2b\x0a\xfc\x1d\xe6\x2b\x1d\x2b\x0a\xfb\x69\xe6\x20\x0a\x2b\x0a\xfc\x49\xf7\x7a\x15\x6a\x6d\x6d\x69\x67\xa7\x6d\xae\xaf\xa7\xa7" +"\xaf\xaf\x6e\xa9\x68\x1f\xf7\x64\x16\x6b\x6e\x6d\x69\x66\xa6\x6e\xae\xaf\xa8\xa7\xaf\xaf\x6d\xa9\x67\x1f\x0e\x2b\x0a\xfb\x9b\xe6" +"\x28\x1d\x59\xf7\x28\xf9\x6b\x15\x54\x5f\x05\x85\x87\x87\x84\x85\x1a\x7b\xa7\x73\xc7\x68\x1e\x57\x69\x70\x61\x5c\x1a\x5e\xa5\x66" +"\xbe\x70\x1e\x33\x4b\x6b\x58\x3e\x1a\x25\xd1\x46\xf1\x99\xa4\x8d\x8f\xa2\x1e\x8f\xa5\x95\x8c\x95\x1b\xad\x9c\x79\x67\x6c\x79\x76" +"\x71\x7e\x87\x8c\x9a\x74\x1f\x94\x7c\x7f\x8f\x7b\x1b\x67\x71\x74\x6c\x6b\xa8\x75\xb6\xe4\xd1\xd4\xe8\xd6\x62\xb9\x47\x82\x79\x89" +"\x89\x7c\x1f\x89\x7d\x7b\x8a\x84\x1b\x5b\x6d\xb3\xcc\xbc\x96\xaa\xb1\xc3\x1f\x77\xbd\xaa\x83\xad\x1b\xc4\xb4\xa9\xb7\xac\x71\x9f" +"\x62\x5e\x58\x78\x68\x5b\x1f\x78\xa7\x84\xa1\xac\x1a\xae\x91\xa2\x9e\xb2\x1e\x7b\xac\xa5\x85\xb7\x1b\xcf\xb2\xa1\xb2\xac\x72\x9e" +"\x5e\x5d\x5b\x7c\x6b\x54\x1f\x68\xa6\x7d\x9f\xa1\x1a\x97\x8f\x92\x98\x99\x1e\x0e\x8f\x2a\x0a\xfb\x04\xe6\x20\x0a\x8f\x2a\x0a\xfb" +"\x2d\xe6\x15\xfb\x1d\xf7\x31\x05\x9d\x7c\x77\x95\x78\xb6\x0a\x7d\xa8\x79\x46\x1d\x57\x2e\x0a\xfb\x9a\xf8\xa4\x38\x0a\x57\x2e\x0a" +"\xfb\x4b\xf9\x2f\x2a\x1d\x38\xf7\x0f\xf9\x4a\x15\x53\x5a\x05\x86\x88\x89\x86\x87\x1a\x72\xb6\x68\xd3\x67\x1e\x5c\x4d\x76\x6d\x77" +"\x62\x08\x6a\x4b\x7a\x46\x47\x1a\x46\x9c\x50\xaa\x67\x1e\x6c\xa5\xb6\x7b\xc6\x1b\x9f\xa7\x8d\x8e\xa4\x1f\x8c\x96\x98\x8c\x8e\x1b" +"\xa9\x9c\x7c\x71\x6b\x74\x72\x6f\x7d\x7b\x90\x92\x7e\x1f\x9f\x6a\x83\x8e\x78\x1b\x67\x71\x74\x6a\x65\xab\x73\xbf\xeb\xd9\xd7\xea" +"\xd5\x67\xb3\x49\x84\x7d\x8a\x8a\x7f\x1f\x6e\x8a\x05\x50\x6e\xb3\xdd\xef\x9f\xe2\xbd\xf7\x01\x1f\x84\xa5\x9a\x89\xa1\x1b\xd2\xb8" +"\xa9\xbb\xac\x73\xa2\x67\x5e\x60\x72\x53\x56\x1f\x5c\xad\x76\xa6\xa5\x1a\x96\x8f\x94\x97\x97\x1e\x0e\x78\x9e\xf8\x61\x97\xf7\x5f" +"\x9a\x06\xac\x0a\xf7\x1e\x0b\xa8\x8f\x90\x90\x90\x8f\x8f\x92\x8e\x92\x90\xe5\x0c\x0c\xb6\x9d\x92\xa4\x93\xa4\x97\x95\x94\x8f\x90" +"\x97\x0c\x0d\xf9\x66\x14\xf8\x84\x15\xbd\x13\x00\xa5\x02\x00\x01\x00\x08\x00\x0c\x00\x14\x00\x22\x00\x78\x00\x7e\x00\x86\x00\x8c" +"\x00\x97\x00\x9c\x01\x10\x01\x8c\x01\xf3\x01\xf9\x02\x2f\x02\x3e\x02\x45\x02\x4c\x02\xa3\x02\xa9\x02\xae\x02\xcd\x02\xd4\x02\xe8" +"\x02\xeb\x02\xfd\x03\x09\x03\x10\x03\x18\x03\x49\x03\xb3\x03\xe4\x03\xe8\x03\xf4\x04\x03\x04\x0c\x04\x1f\x04\x2c\x04\x35\x04\x40" +"\x04\x4b\x04\x55\x04\x5b\x04\x64\x04\x6d\x04\x73\x04\x7b\x04\x87\x04\x8d\x05\x1e\x05\x95\x05\x9a\x05\xaf\x05\xe0\x06\x49\x06\x8b" +"\x06\xe8\x07\x1c\x07\x40\x07\x77\x07\xc6\x07\xc9\x07\xf3\x08\x20\x08\x66\x08\xa2\x08\xe3\x09\x20\x09\x3c\x09\x67\x09\x6b\x09\x6e" +"\x09\x7b\x09\x80\x09\x8f\x09\xbd\x09\xcf\x09\xd4\x0a\x01\x0a\x04\x0a\x0c\x0a\x10\x0a\x22\x0a\x36\x0a\x60\x0a\x89\x0a\x93\x0a\xb0" +"\x0a\xc5\x0a\xe7\x0b\x09\x0b\x18\x0b\x21\x0b\x29\x0b\x47\x0b\x64\x0b\x81\x0b\x9d\x0b\xb9\x0b\xc0\x0b\xd1\x0b\xde\x0b\xe8\x0b\xf5" +"\x0c\x0e\x0c\x1c\x0c\x34\x0c\x4c\x0c\x51\x0c\x68\x0c\x72\x0c\x89\x0c\xa0\x0c\xb5\x0c\xbc\x0c\xc0\x0c\xd5\x0c\xea\x0c\xff\x0d\x0b" +"\x0d\x17\x0d\x1d\x0d\x2b\x0d\x3d\x0d\x50\x0d\x5e\x0d\x71\x0d\x84\x0d\x88\x0d\x98\x0d\xa3\x0d\xad\x0d\xbd\x0d\xc5\x0d\xd5\x0d\xe3" +"\x0d\xea\x0d\xf9\x0e\x08\x0e\x17\x0e\x1a\x0e\x23\x0e\x31\x0e\x3f\x0e\x4b\x0e\x58\x0e\x5d\x0e\x6a\x0e\x77\x0e\x82\x0e\x8a\x0e\x92" +"\x0e\x9e\x0e\xaa\x0e\xb6\x0e\xc2\x0e\xce\x0e\xd4\x0e\xdf\x0e\xea\x0e\xf5\x0f\x00\x0f\x0b\x0f\x14\x0f\x1a\x15\xc4\x06\xfb\x0f\x52" +"\x1d\x15\x52\xbf\x1d\x15\xfb\xde\x43\xf7\xde\x06\x0e\x62\x0a\x4a\x07\xb6\x9a\xa3\x8f\xcc\x92\xc9\x92\x18\x0b\x9b\xf9\x1f\x15\xce" +"\x88\x9e\x7b\x8d\x57\xdc\x1d\xf8\xdd\x07\xb3\xf7\x64\x05\x6f\x06\x6c\x48\x77\x6f\x67\x6e\x08\x66\x5d\x55\x7b\x3e\x1b\x4a\x79\x98" +"\xb6\x1f\xf7\x86\x07\xf7\x01\xb4\x64\xfb\x08\x97\x1f\xa5\xf7\xe6\x71\x06\x7c\xfb\x06\x64\x67\xfb\x00\x8c\x08\xf7\x7c\x07\xb1\x98" +"\x94\xbf\xf7\x37\xbc\x69\xfb\x19\xa4\x1e\xa4\xf7\x5d\xfc\xd5\x06\x0b\x8d\x31\x0a\x78\x77\x0b\x5f\x0a\xf7\xd8\x07\xb2\x1d\x0b\x86" +"\x1d\xf7\xf2\x07\x0b\x15\x6a\x6d\x6d\x69\x67\xa7\x6d\xae\x4d\x1d\x08\xfb\xba\x07\x0b\xf8\x74\xd8\x1d\x80\x89\x82\x82\x72\x1e\x47" +"\xfb\x54\x43\xf7\x4d\x05\x77\xbe\x8b\x8b\x93\x1a\x9a\x97\x92\xa4\x8e\x1e\x9b\x8c\x05\xa3\xfb\x8e\x73\x07\xa2\x88\x91\x88\x91\x82" +"\x8e\x8a\xb9\x29\x9b\x62\xf7\x0c\xfb\xbb\x18\x79\x56\x05\x59\x7a\x72\x6b\x73\x1b\x82\x83\x93\x94\x8c\x8b\x8d\x8c\x8e\x1f\x8c\x90" +"\x8c\x90\x8f\x1a\xa8\x74\x9f\x68\x65\x71\x71\x65\x5c\xb3\x6b\xc4\xad\xa8\x96\xa1\xa0\x1e\xa0\xa2\x9f\xb3\xae\xe9\xf7\x29\xf8\x21" +"\x18\x9c\xb5\x95\x95\xaa\x8e\x08\x0b\xf9\x57\xf8\x61\x15\xfb\x1b\x73\x06\xb0\x87\x96\x83\x74\x1a\x7e\x7e\x65\x6c\x3e\x1e\x7d\x67" +"\x83\x75\x7e\x67\x80\xb6\x86\x9e\x79\xcc\x08\x78\xcb\x83\xab\x95\x1a\x9b\x95\x90\xb1\x8e\x1e\xa3\xfb\x7e\x73\x07\xb2\x87\x8c\x8a" +"\x9e\x49\x8c\x88\x8d\x83\x8e\x83\x47\xfb\x3f\x18\x73\xcb\x67\xe8\x05\x78\xbd\x86\x9a\x96\x1a\x9c\x95\x92\xa7\x8f\x1e\xa3\xfb\x72" +"\x73\x07\xa5\x86\x8f\x85\xa6\x49\xf7\x28\xfc\x0a\x18\xa3\x06\xf7\x11\xf7\xca\xf1\xfb\xca\x05\xa2\x06\xf7\x2f\xf8\x25\x9a\xb0\x93" +"\x93\xa6\x90\x19\x0b\xf9\x4f\xf9\x38\x15\xfb\x70\x72\x06\xcf\x86\x9b\x83\x6e\x1a\x77\x7e\x6b\x71\x60\x1e\xfb\x03\xfb\x4d\xfb\x0c" +"\xf7\x7c\x88\x90\x8a\x8d\x89\x90\x19\x7d\xa2\x87\x97\x97\x1a\xa1\x9a\x93\xb4\x1e\xa4\x8c\x05\xa4\xfb\xe3\x72\x07\xad\x89\xa5\x78" +"\x9f\x69\xf7\x4b\xfb\xe0\x18\xfb\x27\x07\x89\x40\x80\x81\x3b\x84\x08\x72\xf7\xef\xa4\x07\x3b\x92\x81\x95\x89\xd6\x08\xf7\x4c\x07" +"\xf7\x53\xf7\xcb\x9a\xa2\x9e\x96\xad\x90\x19\x0b\xf8\xaf\xa3\x75\x1d\x0b\xf8\x38\xf7\x34\x15\x6f\x06\x83\x6d\x82\x79\x7b\x74\x68" +"\x5d\x73\x81\x35\x8a\x08\x6e\x06\xf7\x7b\xf8\x27\x05\xa5\xfc\x07\x07\x84\xfb\x22\x05\xa5\x06\xa4\xea\xa5\x9b\xf7\x20\x8a\xfb\x7e" +"\xfc\x28\x18\x72\xf8\x13\x07\x0b\x7b\x66\x05\x7e\xaf\xa6\x86\xac\x1b\xdb\x4f\x0a\x7f\x1f\x0b\x89\x0a\x78\x89\x51\x08\x0b\x53\x7c" +"\x7a\x56\x88\x08\x0b\xf8\x76\xf8\x22\x15\xc0\xfb\x16\x07\x9b\x5f\x6f\x91\x63\x1b\xfb\x0b\xe6\x1d\x9e\x7e\xba\xd1\x1d\x83\x6a\x71" +"\x82\x0a\xaa\xa7\xa0\xb3\xe7\x8f\x8b\x9a\xac\x1e\xc7\xa5\xa9\xb6\xc9\x1a\xb3\x7f\xa9\x6f\xa7\x1e\x3e\xfc\x56\x15\xc1\xa5\x7b\x69" +"\x5d\x54\x71\x28\xee\x1d\xe4\xf8\x82\x15\xba\x9e\x65\x2e\x2e\x79\x67\x5b\x5b\x79\xae\xe9\xe9\x9d\xb0\xbb\x1f\x0b\x41\x0a\xa8\xae" +"\x4a\x0a\xf7\x93\x94\x1d\x0b\xf8\x65\x68\x1d\xdf\x8c\x90\xa0\x1a\xa9\x77\xa1\x6f\x70\x76\x75\x6d\x7e\x8e\x76\x8f\x76\x1e\x93\x65" +"\x92\x6a\x90\x6e\x08\x0b\xc6\xb8\xc6\xd9\x57\x1d\x0b\x08\xa4\xf7\x7e\x70\x06\x67\x7c\x82\x81\x76\x1b\x82\x7d\x8f\x95\x75\x1f\xa3" +"\x0b\xa9\x1d\x0e\x96\x83\x05\x8e\x96\x92\x8c\x95\x1b\xa8\x9c\x7e\x74\x70\x77\x7d\x65\x0b\xa3\x07\x68\x8f\x7e\x9b\x8c\xb0\x08\xf7" +"\xe4\x0b\x4e\x0a\xb1\xab\xaa\xb1\x0b\x9f\xa6\xf7\x1a\xfb\x7e\x05\x0b\xf9\x87\xf7\xb3\x9e\x1d\xe1\xf7\x0c\x1a\xf7\x66\xca\xf7\x02" +"\xf7\x0d\xba\xb6\x79\x65\xb6\x1e\xb6\x65\xa3\x68\xad\x40\x37\x0a\x52\x5a\x96\x5b\x1b\xfb\x5c\xfb\x29\xfb\x2d\xfb\x63\xfb\x62\x88" +"\x1d\x0b\xca\xf8\x1a\x15\x8d\x95\x96\x8c\x91\x1b\x93\x92\x88\x86\x8f\x1f\x94\x81\x8b\x8a\x8c\x2a\x08\xfb\x0d\x07\x6d\x8e\x73\x91" +"\x75\x1e\x53\x9a\xbc\x69\xcd\x1b\xf7\x08\xd8\xf6\xf7\x35\xd3\x7d\xcf\x75\xa8\x1f\x9f\x7c\x78\x95\x73\x1b\x66\x73\x73\x67\x6c\x9e" +"\x74\xac\x7f\x1f\xa8\x82\x8e\x89\x93\x83\x08\x98\x7d\x92\x71\x65\x1a\x29\x61\x46\x50\x5f\x79\xac\xd8\x1e\xf7\x58\x07\xb8\x6f\xb2" +"\x6a\x84\x87\x8a\x8a\x87\x1e\xfb\x04\x5d\x05\x0b\xf7\x76\xf7\x2c\x15\xf7\x71\x07\x89\xaf\x9b\xa1\xa7\x9c\x1d\x70\x8c\x7b\xa0\x8c" +"\xab\xf7\x10\xf7\x75\x18\xfb\x70\x07\x8d\x67\x7b\x75\x6f\x8a\x08\x77\xf7\x66\x9f\x07\x87\x0a\x9a\x76\x8a\x68\x08\x0b\xfb\xe9\x71" +"\x0a\x15\x6a\x6d\x6c\x6a\x66\xa7\x6e\xae\xb0\x1d\x0b\xf7\x31\x05\x9d\x7b\x78\x95\x78\xb6\x0a\x7d\xa8\x79\x46\x1d\x22\x1d\xac\xa0" +"\x92\x94\xa2\x1a\x0b\x66\x1d\x78\x89\x51\x08\xfc\x67\x21\x1d\x78\x77\xf7\xd0\x9f\x78\x20\x1d\x0b\x67\x9e\x6c\x64\x1a\x69\x7b\x76" +"\x71\x6b\x7d\xa2\x0b\x08\xf7\x7a\xf7\x85\xfb\x7a\x07\x0b\x1f\x63\x9d\x05\x98\x6f\x73\x91\x76\x1b\x0b\x76\x6e\x8a\x08\x77\xf7\x61" +"\x9f\x07\x71\x0b\x89\x8c\x96\x72\x1f\x63\x9d\x05\x98\x0b\xaf\x6d\xa9\x68\x1f\x0e\xac\x5f\xfb\x00\x4c\x7f\x65\x71\x0b\x71\xa5\xab" +"\xab\xa6\xa6\xaa\x1f\x0b\x59\x90\x2f\x08\xa8\x0b\x6c\x6c\x65\x64\xaa\x6c\xb1\x0b\xbd\xad\xc2\xb7\x6a\xa5\x54\x7e\x83\x8a\x87\x0b" +"\x67\x64\x35\x79\x1f\x0e\xd0\x15\x81\x07\x8d\x59\x7a\x79\x59\x8a\x08\x73\x77\xf7\xd6\x9f\x72\x06\x59\x8c\x7b\x9d\x8c\xbd\x08\x95" +"\x97\x07\xc8\xc6\x97\xa0\xb7\x1f\xdd\xb2\xc2\xe6\xee\x1a\xf7\x06\x47\xeb\x20\xad\x1e\x6c\x95\x7a\x8d\x43\x90\x79\x8c\x18\x96\x07" +"\x8a\xbc\x9b\x9d\xbd\x8d\x08\xa4\x9f\xfb\xd6\x77\xa3\x06\xbd\x89\x9c\x79\x89\x5a\x08\x80\x07\x61\x88\x48\x87\x70\x84\x63\x78\x19" +"\x37\x61\x56\x33\x28\x1a\x28\xc2\x30\xdd\x64\x1e\x75\xb8\xc5\x80\xc9\x1b\xf7\x2e\xf8\x7b\x15\xf1\x85\xc2\x3c\xfb\x20\x1a\xfb\x1f" +"\x54\x3c\x25\x85\x1e\xfb\x23\x16\x25\x91\x54\xda\xf7\x1f\x1a\xf7\x20\xc3\xda\xf0\x91\x1e\x0e\xf9\x95\xa4\x15\x72\x8c\x80\x90\x7e" +"\x9a\xfb\xc5\xf8\x0e\x18\xf7\x50\xf7\x56\xaf\xa4\xec\x93\x08\xa4\xfb\xb5\x72\x07\xda\x85\x91\x88\x73\x1a\x7b\x86\x83\x6c\x6c\x1e" +"\xfb\x6d\xfb\x6e\x05\xf7\x6a\x07\x8d\xd4\x9a\x9a\xd3\x8f\x08\xa4\xfb\xe6\x72\x07\xce\x88\x9e\x7c\x8c\x56\x08\xfc\x78\x07\x8a\x57" +"\x7b\x7e\x45\x85\x43\x1d\x45\x93\x7a\x98\x8a\xbd\x08\xf7\x58\x07\xa6\xa4\xf7\x4a\xfb\x77\x05\x9e\x73\x90\x82\x80\x1a\x7e\x7d\x86" +"\x6a\x89\x1e\x86\x7e\x8b\x8a\x7d\x1f\x72\xf7\xe4\x07\x0b\xf7\xb4\x6b\x1d\x0b\xc4\xf8\x58\x15\x3d\x1d\x78\x0a\x82\x86\x7b\x77\x0a" +"\x7f\x83\x86\x81\xba\x1d\x07\x0b\xf7\x9a\xf7\xd2\x15\xf7\x95\xfb\x72\x06\x25\x0a\xf7\xcf\x9f\x79\x20\x1d\xf8\x67\x07\x88\xc5\x9b" +"\x9e\xc0\x8d\x08\x9d\x9f\xfb\xcf\x77\x9e\x06\xbf\x89\x9b\x78\x89\x51\x08\xfb\x61\xfb\x95\x69\x0a\x0e\x15\x45\x4a\x62\x2d\x2a\x1a" +"\xfb\x0f\xce\x33\xe7\xc6\xb4\xa8\xd3\xb5\x1e\x45\xa8\xb0\x6c\xbf\x1b\xe7\xcb\xf2\xf7\x27\xf7\x11\x5a\xe7\x48\x68\x73\x74\x6b\x6a" +"\x9e\x76\xae\x85\x1f\xb3\x84\x8c\x8a\x98\x7e\x08\x9a\x7a\x92\x6f\x5e\x1a\x26\x5e\x4b\x43\x66\x70\x9c\xb1\x74\x1e\xa6\xc6\x97\xb9" +"\xb6\x1a\xbb\x74\xaa\x67\x65\x73\x6b\x59\x5e\x98\x55\xa2\x5b\x1e\x68\x78\x6e\x76\x6b\x1b\x52\x6d\xc6\xf7\x07\xd7\x96\xc9\xa4\xca" +"\x1f\x0e\x91\xf7\xda\x15\xe6\xfb\x7f\x06\x5f\x70\x75\x53\x1e\x72\xf7\xd0\x07\x7f\x0a\xfb\x67\x30\x07\xf8\x03\x16\xfb\x06\xf7\x72" +"\x06\x9c\x8c\x93\x8f\x90\x1e\x96\x93\x9e\x91\xa7\x1b\xd2\xbe\x6a\x46\xad\x1f\xa6\x56\x99\x43\x36\x1a\x2c\x77\x35\xab\x0a\xf7\x7d" +"\xf7\x06\x07\x0e\xf7\x97\xf7\xc2\x15\x8a\xa3\x9f\x8b\x9a\x1b\xe2\xc0\x95\xa4\xba\x1f\xc0\xa8\xaa\xc1\xcb\x1a\xce\x6a\xc1\x50\xaa" +"\x1e\x9f\x63\x69\x92\x49\x1b\xfb\xdd\x77\x9f\x06\xbf\x88\x9a\x7a\x89\x53\x08\xfc\x6a\x07\x8c\x31\x0a\x79\x77\xf7\xdd\x9f\x6b\x20" +"\x1d\xf8\xa3\x04\x8c\x9f\x9d\x8b\x9a\x1b\xab\xa5\x85\x80\x9b\x1f\xa6\x78\x9b\x5d\x4f\x1a\x27\x66\x62\x31\x80\x7b\x8b\x8c\x7b\x1e" +"\x0e\x15\x81\x0a\xca\xf7\x02\xf7\x0d\xba\xb6\x79\x65\xb6\x1e\xb6\x65\xa2\x69\xae\x3f\x37\x0a\x51\x5b\x96\x5b\x1b\xfb\x5c\xfb\x29" +"\xfb\x2d\xfb\x62\xfb\x62\xf7\x26\xfb\x25\xf7\x64\xf7\x07\xcf\xae\xf7\x03\xf0\x1f\x0b\x61\x66\x71\x7d\x62\x1b\x34\x54\xe2\xf7\x1c" +"\xf2\xab\xca\xbf\x9b\x9a\x83\x80\x91\x1f\x90\x82\x8b\x8b\x61\x62\x1d\x33\xfb\x1c\x27\x21\xfb\x24\x0b\xb6\x15\x5e\x8e\x7d\x98\xb5" +"\x1a\xf8\xd3\xbb\x0a\xfb\x4b\x07\xb9\x60\x6d\x9b\x5d\x1b\xfb\x02\x39\x20\xfb\x25\xfb\x1d\xd7\x29\xf4\xc0\xac\x9b\xbd\xba\x1f\x4a" +"\x07\xb9\x98\xa4\x90\xc9\x92\xc9\x93\x18\xfb\x5a\xe7\x7e\x0a\x0b\xf9\x34\x15\x33\x49\x73\x54\x4a\x1f\x41\x4c\x66\x34\xfb\x04\x1a" +"\xfb\x61\xf7\x1a\xfb\x1c\xf7\x5d\xf7\x58\xf7\x1c\xf7\x1e\xf7\x5b\xf5\x6e\xda\x4d\xcb\x1e\xcc\x4b\x3d\xaa\x23\x1b\x8f\x68\x15\xf6" +"\xc7\xfb\x00\xfb\x54\xfb\x58\x4b\xfb\x09\x20\x5c\x5e\xa7\xb9\x70\x1f\x6c\xc1\x7d\xd1\xf4\x1a\xf7\x10\x9f\xd9\xba\xc4\x5f\x1d\x78" +"\x1d\x0e\x99\x16\xf7\xd0\x06\x7f\x0a\xfc\x81\x07\x5f\x70\x75\x53\x1e\xf7\x89\xf8\xda\x15\xa2\x9f\x97\xb2\xd3\xbd\x6a\x46\xae\x1e" +"\xa6\x57\x99\x42\x36\x1a\x2d\x77\x34\xab\x0a\x0b\xf9\x45\xa4\x15\x5f\x80\x99\xf7\x11\x55\x9b\x1d\x98\x92\xa3\xa1\xc1\x1e\x9a\xb3" +"\x05\xf7\x75\x06\xad\x3c\x97\x68\x75\x1a\x75\x7e\x82\x68\x89\x1e\x86\x8a\x7e\x8a\x7d\x8a\x08\x72\x0b\x15\xfb\x58\xfb\x2c\xfb\x2f" +"\xfb\x5d\xfb\x59\xf7\x2c\xfb\x31\xf7\x53\xf7\x5e\xf7\x2a\xf7\x2b\xf7\x61\xf7\x5b\xfb\x2b\xf7\x2f\xfb\x58\x1f\x57\x04\xf7\x2d\xf7" +"\x0f\xfb\x1b\xfb\x3c\xfb\x3f\xfb\x0e\xfb\x18\xfb\x32\xfb\x2a\xfb\x0f\xf7\x1c\xf7\x3a\xf7\x3d\xf7\x0f\xf7\x1b\xf7\x2e\x1f\x0e\x77" +"\x07\xa5\x87\x99\x77\x89\x68\x08\xfb\xe4\x22\xf7\xe4\x07\x8a\xae\x98\x9f\xa5\x8f\x08\x9f\xfb\x5d\x77\x07\xa5\x87\x99\x77\x89\x68" +"\x08\xfb\xe4\x22\xf7\xe4\x07\x89\xae\x99\x3e\x1d\x89\x9a\x77\x89\x66\x29\x0a\x67\x8d\x7b\x75\x6f\x1b\x76\x0b\xf8\xad\xb6\x15\x60" +"\x8d\x7f\x98\x8a\xb6\x08\xf7\xfc\xfb\x5d\x73\x07\xbc\x88\x97\x7f\x8c\x5f\x08\xfb\xaf\x07\x6a\x6a\x77\x80\x6e\x1b\x62\x7c\x9f\xbe" +"\x1f\xf7\xe7\xfb\x50\x73\x07\xb4\x83\x92\x82\x8c\x61\x08\xfb\x90\x07\x33\xbd\x57\xde\xbf\xae\x9b\xbd\xc5\x1e\x0b\xf7\x65\xf8\x5d" +"\x15\xfb\x49\x54\x90\x77\x05\x8e\x93\x90\x8c\x8f\x1b\xa2\x96\x77\x5f\x1f\xfb\x6e\x07\x57\x8d\x7f\x9a\x73\x1e\x7a\x95\x96\x82\x94" +"\x1b\x90\x92\x8d\x8e\x94\x1f\xf7\x11\xbd\x84\xa1\x05\x85\x7c\x82\x89\x84\x1b\x71\x87\x96\xdb\x1f\x0b\x64\x1d\x92\x89\x77\xb7\x1f" +"\xa8\x7e\x05\x83\x9d\xa6\xb8\x0a\x67\x7e\x7d\x7e\x70\x1b\x7f\x49\x0a\x6e\x74\xbd\x0a\xf7\x81\xf7\xbe\x15\xcd\xa4\xa0\xa7\xa3\x1b" +"\xa3\x95\x76\x5c\x1f\xfc\x87\xf7\x11\xf8\x90\x07\xd2\x5c\xc0\x4d\x5b\x67\x6e\x45\x67\x1e\xee\x07\x54\x1d\xfb\xd6\xf7\x11\x07\x0b" +"\xf7\xf4\x67\x0a\x9f\x81\x1d\x39\x0a\x7b\x7d\x8e\x94\x74\x1f\x85\x8d\x2f\x0a\x0e\xf7\x61\x6a\x0a\x0b\x07\x89\xc6\x9a\x9d\xc0\x8d" +"\x08\x9e\x9f\xfb\xd0\x44\x0a\x0b\xfb\x69\xfc\x19\x18\x4b\xfb\x05\x84\x82\x64\x85\x08\x72\xf7\x62\xa4\x07\x7a\x8d\x05\x57\x91\x7d" +"\x94\xa7\x1a\x97\x8f\x97\x96\xa0\x1e\xef\xf7\x50\x05\xf7\x52\xfb\x4c\x06\x8a\x40\x7d\x0b\xf9\x47\x15\x4c\x7a\x6e\x73\xa6\x0a\x6e" +"\x08\x68\xa4\xb4\x78\xc1\xca\x1d\xfb\x48\x8c\x1d\x0b\x77\xa6\x06\xae\x8a\xa0\x74\x65\x1a\xfb\x91\x07\xfb\x50\x6e\x2e\x52\x7b\x82" +"\x94\x9a\x8f\x8b\x8f\x8c\x8f\x1e\x96\x07\xa9\x73\xa1\x69\x65\x74\x72\x62\x54\xb4\x66\xc7\xc6\xba\xae\x0b\x8c\x1d\x0e\x15\xc3\x06" +"\xf7\x22\xc5\x1d\x0b\x15\xf4\x8f\x1d\xa5\x0a\x8d\x54\x92\x72\xa0\x6e\x08\x68\xa5\xb4\x78\xc0\x1b\xc3\xac\x0a\x1b\xa8\x9c\x7e\x74" +"\x70\x77\x7d\x65\x7b\x7f\x8e\x94\x72\x1f\x85\x8d\x2f\x0a\x0e\x15\xa7\xae\x9b\xa0\x90\x92\x08\xb1\xc0\x9a\xa5\x9c\x1a\x92\x87\x8f" +"\x83\x83\x83\x87\x7e\x7c\x1e\x8a\x8a\x89\x89\x88\x89\xfb\x5f\xfb\x38\x18\x87\x07\xf7\x62\xfb\x3a\x0b\x5f\xc6\xf7\x1c\x1e\xf7\xe2" +"\x07\x8d\xd8\x99\x98\xdc\x8d\x08\xa4\xfb\xe6\x72\x07\xd0\x85\x96\x7e\x8d\x42\x08\xfb\xe2\x07\x29\xa0\x5a\xc8\x5f\x1e\x68\xbb\xcb" +"\x79\x0b\x9a\x1d\xb6\x9d\x8e\x96\x94\x95\x1f\x0b\x1e\x83\x77\xf7\x67\x9f\x06\x73\x8c\x89\xbf\x0a\xc7\xd2\x9b\x95\xc1\x8c\x19\x9f" +"\xfb\x41\x77\x9f\x07\x9b\x94\x84\x0b\xad\x0a\xf7\x60\x9f\x07\x72\x90\x7f\x9f\x8c\xba\x0a\x99\x74\x90\x81\x86\x1a\x82\x0b\x07\x8a" +"\x61\x83\x83\x5c\x83\x08\x73\xf7\xa5\x07\x3d\xf8\xbb\x15\x92\x94\x9b\x97\x98\x1e\xa1\x9f\xa2\x97\xa1\x1b\xbf\xa3\x4f\xfb\x17\x0b" +"\x15\xfc\xa0\x07\x3a\xf7\x66\x56\x74\xf7\x13\xfb\xb2\x05\xd8\x06\xf7\x14\xf7\xb2\x56\xa2\x3a\xfb\x66\x05\xf8\xa0\x07\xdc\xfb\x66" +"\xc0\x0b\xb4\x1d\xc0\x1b\xc3\xb4\x9f\xb4\xa5\x1f\x9c\xa6\x92\xa3\x0b\x81\x0a\xcb\xf7\x02\xf7\x0c\xba\x0b\x63\x1d\xb7\x83\x93\xcb" +"\x1d\x0b\x15\x85\x81\x7a\x7f\x7e\x1e\x74\x77\x76\x80\x75\x1b\x56\x72\xc6\xf7\x14\xf7\x15\xa6\xc6\xc5\xac\xaa\x73\x65\x99\x1f\x0b" +"\xf7\x6c\xf7\x24\xf7\x1e\xf7\x63\xf7\x62\xfb\x1f\xf7\x11\xfb\x7c\x1f\xfb\xc5\x72\x06\xca\x86\x9e\x7c\x8c\x5c\x08\x0b\x69\xbc\xf7" +"\x07\x1f\xa2\xf7\x92\x07\xc9\x86\xa9\x7a\xae\x1e\xc9\x6d\x4e\xaf\x41\x1b\x56\x66\x7c\x67\x66\x1f\xb0\x0b\x50\x4d\x6b\x73\x5a\x78" +"\x08\x7f\x6e\x6a\x85\x6f\x1b\x49\x4c\xae\xbf\x6e\x1f\x6e\xc0\x7d\xd2\xf0\x1a\xf7\x63\x0b\x62\x1a\x51\xd6\x69\xf7\x12\xf7\x3b\xe2" +"\xbf\xee\xd8\x51\xb6\x21\x8d\x1e\x4a\x8c\x05\x36\x8c\x7c\x90\xa7\x1a\x0b\xf9\x76\xc3\x1d\x7b\x45\x1d\x07\x4a\xb6\x63\xd0\xce\xb3" +"\xa9\xdd\xb4\x1e\x72\x96\x05\x69\x1d\x0b\x43\x0a\xa5\x78\x9d\x6e\x77\x7a\x82\x78\x7a\x1e\x0e\x30\x0a\xfc\xa1\xfb\x6f\xf8\xa1\x07" +"\x0b\x6e\x8c\x7b\xa0\x8d\xb0\x08\xf7\xba\xa8\x0a\x8a\x0b\x79\x72\x1a\x83\xa2\xf7\xd7\x74\x07\x82\x2c\x6a\x5d\x4f\x89\x08\x70\xf7" +"\xa3\xf7\x06\x06\xe5\x88\x0b\xc0\x8d\x08\x9e\x9f\xfb\xd0\x77\x9e\x06\xbf\x89\x9b\x0b\x83\x94\x91\x89\x91\x1b\x92\x8f\x91\x94\x9f" +"\x70\xb6\x58\xc6\x1f\x7d\x9c\x7f\x9b\x7d\xa0\x08\x0b\x1f\xc0\x5c\x05\xac\xa2\x9c\x95\xa8\x1b\xae\xaa\x82\x71\xb9\x1f\x72\xb9\xa5" +"\x83\xac\x1b\xb9\x0b\xf7\xd0\xb3\x1d\x0b\x83\x86\x81\x7f\x7e\x1f\xfb\x11\xfb\x1e\x05\xf7\x16\x07\x8a\xad\x97\x9e\xa5\x90\x08\x9f" +"\x0b\x07\x25\x0a\xf7\xc5\x9f\x83\x20\x1d\x0b\x89\x53\x08\xfb\x67\x07\xfb\x3c\xf7\x61\x05\x78\xa2\x84\x98\x99\x1a\x9f\x9b\x97\xa6" +"\x1e\x0b\x1a\x9f\x96\x97\x9d\x1e\x95\x9f\xfb\x74\x77\x06\xa6\xa7\x60\x37\xa7\x1f\xcf\xfb\x6b\x05\x0b\xf8\x35\x15\x5d\x65\x65\x5d" +"\x5b\xaf\x66\xba\xbc\xb0\xaf\xba\xba\x65\xb2\x5c\x1f\x0e\xa0\x0a\x81\x88\x7b\x1b\x0b\x15\x53\xbf\x1d\x15\x4c\x7b\x6e\x74\x4e\x1b" +"\x4d\x6c\xa4\xc8\x80\x1f\x60\x06\x8d\x55\x92\x73\xa0\x0b\xf9\x38\x15\xfb\x70\x72\x06\xd8\x86\xa0\x76\x42\x1a\xfb\xc5\x07\xfb\x28" +"\x53\x46\x0b\x6a\x66\xac\x06\xc7\xa8\x6e\x50\x52\x69\x68\x55\x5f\x6d\xa6\xc6\x76\x1f\x70\x82\x0b\xa4\xb3\x79\xbf\x1b\xc2\xb3\x9f" +"\xb3\xa4\xc3\x0a\x07\x8a\x65\x79\x76\x6b\x8a\x08\x73\xf7\x83\x0b\xb8\x69\xc8\x5e\x1d\x0b\x76\x68\x83\x62\x35\x1a\x65\x1d\x80\x7f" +"\x5e\x87\x08\x0b\x5d\x65\x65\x5e\x5a\xaf\x66\xbb\xba\xb1\xb1\xb9\xba\x65\xb1\x5c\x1f\x0e\x15\x6e\x73\x74\x6e\x6e\xa2\x74\xa8\xa8" +"\xa2\xa2\xa8\xa7\x74\xa3\x6f\x1f\x0b\x15\x63\x4e\x0a\xb2\xaa\xaa\xb1\xb1\x6c\xab\x66\x1f\x0b\x15\x6b\x71\x72\x6b\x6b\xa5\x71\xab" +"\xaa\xa5\xa5\xab\xaa\x71\xa5\x6c\x1f\x0b\xf7\x68\x18\xb6\xbc\x05\xd2\xc6\x9c\x96\xc0\x1b\x9f\xfb\x41\x77\xa0\x07\x0b\x5e\x1d\x77" +"\x0b\x1b\xdb\xbd\xad\xc2\xb7\x6a\xa5\x54\x7d\x84\x8a\x87\x7f\x1f\x0e\x78\x89\x51\x08\xfc\x67\x21\x1d\x78\x77\x0b\xcf\x8e\x08\xa4" +"\xfb\xe5\x72\x07\xcc\x0b\x08\xa4\xf7\x5d\xfd\x0e\x75\x06\xce\x87\x9f\x82\x73\x1a\x81\x0b\x15\x4b\x79\x6e\x74\xf0\x1d\x0b\x4d\x1b" +"\x4b\x6c\xa5\xc8\x7f\x1f\x5f\x06\x8e\x54\x92\x72\xa0\x0b\x79\x52\x55\x62\x79\xbb\xf4\xf7\x4b\x9b\xc4\xbd\x1e\x0e\x07\x89\xb0\xec" +"\x1d\xa7\x0b\x15\xf7\x08\xce\xbd\xcd\xe1\x1a\xd0\x62\xba\x4f\x59\x6a\x0b\x1b\xbd\xa3\x6a\x47\x50\x75\x6b\x63\x75\x84\x93\xa3\x1f" +"\x0b\x6b\x5e\x1e\x5d\x69\x5b\x74\x4a\x1b\x5e\x7e\x98\xb8\x1f\x0b\xb4\xd9\x1d\x8d\x66\x7b\x76\x6e\x8a\x08\x77\x0b\xa4\xb5\x78\xc0" +"\x1b\xc3\xb3\x9f\xb4\xa5\x1f\x9c\xa5\x0b\x7a\x8c\x86\x9a\x49\x1e\x8d\x81\x8d\x82\x8d\x82\x08\x0b\x54\x25\x31\x61\x56\x43\x65\x7e" +"\x99\xb4\x1f\x0e\x16\xf7\xe2\xa4\x06\x3d\x94\x83\x94\x89\xd5\x08\x0b\x9f\x07\xc2\x0a\x0b\xc6\xb8\xc6\xd9\x1a\xca\x67\xb5\x55\x5d" +"\x6e\x6e\x0b\xfb\x14\xf7\xb2\x05\x3e\x06\xfb\x13\xfb\xb2\xc0\x0b\x77\x07\xa8\x8a\x9b\x76\x89\x67\x29\x0a\x0b\x1b\x71\x76\x77\x72" +"\x77\x96\x0b\x54\x92\x72\xa0\x6f\x08\x67\x0b\x85\x9e\x1b\xc4\xb0\xb3\xe2\xa2\x1f\x60\x06\x0b\xf7\xba\x07\x89\xb0\x9b\xa0\xa8\x8c" +"\x08\x9f\x0b\xad\x08\xf7\x06\x07\x99\x9d\xde\xfb\x1f\x05\x0b\xfb\x6b\x73\x07\xcc\x87\x95\x84\x8c\x5c\x08\x0b\xda\x69\x1e\x7d\xad" +"\xa6\x87\xd0\x1b\xf7\xac\x0b\x91\x76\x1b\x4d\x50\x0a\x85\x85\x81\x1e\x82\x7c\x87\x81\x80\x1a\x0b\x8c\x71\xb7\xfb\x26\xf7\x7e\x18" +"\xb6\xbd\x0b\x15\xc8\x06\xf8\x5e\xf9\x2a\x05\x4d\x06\x0b\xf8\xad\xf7\x65\x15\xe3\xfc\x8c\x33\x07\x0b\x6e\x8c\x7b\xa0\x8d\xb0\x08" +"\xf7\xba\x07\x0b\x1f\x9c\xa5\x92\xa3\x90\xbd\x08\x0e\x1f\xf7\x1f\x35\x05\x0e", 50579 +}; diff --git a/dviware/dvisvgm/src/fonts/NimbusRoman-BoldItalic.cff.cpp b/dviware/dvisvgm/src/fonts/NimbusRoman-BoldItalic.cff.cpp new file mode 100644 index 0000000000..bf7cfa8f9e --- /dev/null +++ b/dviware/dvisvgm/src/fonts/NimbusRoman-BoldItalic.cff.cpp @@ -0,0 +1,1738 @@ +#include "Base14Fonts.hpp" + +extern const MemoryFontData NimbusRoman_BoldItalic_cff = { +"\x01\x00\x04\x02\x00\x01\x01\x01\x17\x4e\x69\x6d\x62\x75\x73\x52\x6f\x6d\x61\x6e\x2d\x42\x6f\x6c\x64\x49\x74\x61\x6c\x69\x63\x00" +"\x01\x01\x01\x3e\xf9\xbc\x00\xf9\xbd\x01\xf9\xbe\x0c\x00\xf9\xbf\x02\xf9\xc0\x03\xf8\x14\x04\x1e\xe1\x5a\x30\x00\x00\x19\xff\x0c" +"\x02\xfb\x01\x0c\x03\xd0\x0c\x04\xfb\x5c\xfb\xd8\x1c\x04\x82\xfa\x60\x05\x1c\x2a\xe5\x0f\x1c\x2a\xf8\x11\xaf\x1d\x00\x00\xc5\xbc" +"\x12\x01\xa6\x02\x00\x01\x00\x08\x00\x0e\x00\x13\x00\x1d\x00\x24\x00\x2b\x00\x35\x00\x39\x00\x3f\x00\x45\x00\x50\x00\x5a\x00\x5d" +"\x00\x63\x00\x69\x00\x6e\x00\x74\x00\x7a\x00\x84\x00\x8b\x00\x8e\x00\x95\x00\x9c\x00\xa8\x00\xab\x00\xb3\x00\xb7\x00\xbc\x00\xc2" +"\x00\xcd\x00\xd9\x00\xe3\x00\xe7\x00\xf2\x00\xf4\x00\xfa\x01\x04\x01\x0b\x01\x12\x01\x16\x01\x22\x01\x2b\x01\x31\x01\x3c\x01\x41" +"\x01\x4d\x01\x53\x01\x59\x01\x5f\x01\x6b\x01\x6f\x01\x71\x01\x77\x01\x7d\x01\x89\x01\x8b\x01\x91\x01\x9e\x01\xa5\x01\xaf\x01\xb6" +"\x01\xc2\x01\xcd\x01\xd0\x01\xd2\x01\xd5\x01\xdb\x01\xe1\x01\xed\x01\xf0\x01\xf6\x01\xfe\x02\x09\x02\x15\x02\x1a\x02\x1d\x02\x21" +"\x02\x27\x02\x33\x02\x38\x02\x3e\x02\x4b\x02\x52\x02\x59\x02\x60\x02\x6f\x02\x7b\x02\x80\x02\x86\x02\x8c\x02\x97\x02\xa0\x02\xa6" +"\x02\xa8\x02\xb3\x02\xb9\x02\xbf\x02\xc9\x02\xcd\x02\xd3\x02\xda\x02\xe3\x02\xec\x02\xf5\x02\xfe\x03\x07\x03\x10\x03\x19\x03\x22" +"\x03\x2b\x03\x34\x03\x3d\x03\x46\x03\x4f\x03\x58\x03\x61\x03\x6a\x03\x73\x03\x7c\x03\x85\x03\x8e\x03\x97\x03\xa0\x03\xa9\x03\xb2" +"\x03\xbb\x03\xc4\x03\xcd\x03\xd6\x03\xdf\x03\xe8\x03\xf1\x03\xfa\x04\x03\x04\x0c\x04\x15\x04\x1e\x04\x27\x04\x30\x04\x39\x04\x42" +"\x04\x4b\x04\x54\x04\x5d\x04\x66\x04\x6f\x04\x78\x04\x81\x04\x8a\x04\x93\x04\x9c\x04\xa5\x04\xae\x04\xb7\x04\xc0\x04\xc9\x04\xd2" +"\x04\xdb\x04\xe4\x04\xed\x04\xf6\x04\xff\x05\x08\x05\x11\x05\x1a\x05\x23\x05\x2c\x05\x35\x05\x3e\x05\x47\x05\x50\x05\x59\x05\x62" +"\x05\x6b\x05\x74\x05\x7d\x05\x86\x05\x8f\x05\x98\x05\xa1\x05\xaa\x05\xb3\x05\xbc\x05\xc5\x05\xce\x05\xd7\x05\xe0\x05\xe9\x05\xf2" +"\x05\xfb\x06\x04\x06\x0d\x06\x16\x06\x1f\x06\x28\x06\x31\x06\x3a\x06\x43\x06\x4c\x06\x55\x06\x5a\x06\x64\x06\x6b\x06\x74\x06\x7e" +"\x06\x85\x06\x90\x06\x9a\x06\xa3\x06\xac\x06\xb5\x06\xbf\x06\xc6\x06\xcf\x06\xdb\x06\xdf\x06\xe5\x06\xeb\x06\xf6\x07\x00\x07\x03" +"\x07\x11\x07\x15\x07\x1b\x07\x21\x07\x26\x07\x2d\x07\x3a\x07\x40\x07\x46\x07\x50\x07\x57\x07\x5e\x07\x61\x07\x68\x07\x6f\x07\x7b" +"\x07\x86\x07\x8f\x07\x92\x07\x9a\x07\xa3\x07\xae\x07\xb4\x07\xb9\x07\xbe\x07\xc4\x07\xcf\x07\xdb\x07\xe5\x07\xf1\x07\xf5\x08\x00" +"\x08\x05\x08\x0a\x08\x10\x08\x12\x08\x19\x08\x21\x08\x29\x08\x33\x08\x3d\x08\x49\x08\x55\x08\x5c\x08\x60\x08\x6c\x08\x7d\x08\x86" +"\x08\x8c\x08\x97\x08\x9c\x08\xa8\x08\xb4\x08\xba\x08\xc0\x08\xc6\x08\xd2\x08\xd6\x08\xdf\x08\xe3\x08\xe8\x08\xec\x08\xf2\x08\xfd" +"\x09\x0b\x09\x11\x09\x1c\x09\x22\x09\x2e\x09\x38\x09\x40\x09\x42\x09\x48\x09\x55\x09\x5c\x09\x61\x09\x6b\x09\x72\x09\x7e\x09\x88" +"\x09\x93\x09\x9e\x09\xa4\x09\xa7\x09\xa9\x09\xb0\x09\xbc\x09\xca\x09\xcd\x09\xda\x09\xe0\x09\xe7\x09\xed\x09\xf9\x0a\x06\x0a\x09" +"\x0a\x0f\x0a\x17\x0a\x22\x0a\x2e\x0a\x34\x0a\x39\x0a\x42\x0a\x47\x0a\x50\x0a\x53\x0a\x56\x0a\x5a\x0a\x60\x0a\x6c\x0a\x71\x0a\x76" +"\x0a\x7c\x0a\x89\x0a\x90\x0a\x9d\x0a\xa4\x0a\xab\x0a\xb2\x0a\xb9\x0a\xc0\x0a\xc7\x0a\xce\x0a\xd5\x0a\xdc\x0a\xe3\x0a\xea\x0a\xf1" +"\x0a\xf8\x0a\xff\x0b\x06\x0b\x0d\x0b\x14\x0b\x1b\x0b\x22\x0b\x29\x0b\x30\x0b\x37\x0b\x3e\x0b\x45\x0b\x4c\x0b\x53\x0b\x5a\x0b\x61" +"\x0b\x68\x0b\x6f\x0b\x76\x0b\x7d\x0b\x84\x0b\x8b\x0b\x92\x0b\x99\x0b\xa0\x0b\xa7\x0b\xae\x0b\xb5\x0b\xbc\x0b\xc3\x0b\xca\x0b\xd1" +"\x0b\xd8\x0b\xdf\x0b\xe6\x0b\xed\x0b\xf4\x0b\xfb\x0c\x02\x0c\x09\x0c\x10\x0c\x17\x0c\x1e\x0c\x25\x0c\x2c\x0c\x33\x0c\x3a\x0c\x41" +"\x0c\x48\x0c\x4d\x0c\x56\x0c\x5d\x0c\x64\x0c\x73\x0c\x87\x0c\x93\x0c\x98\x0c\x9e\x0c\xa4\x0c\xaf\x0c\xb8\x0c\xbe\x0c\xc0\x0c\xcb" +"\x0c\xd1\x0c\xd7\x0c\xe1\x0c\xe5\x0c\xe9\x0d\x1f\x0d\x5f\x0d\x77\x0d\x83\x41\x45\x61\x63\x75\x74\x65\x41\x62\x72\x65\x76\x65\x41" +"\x6c\x70\x68\x61\x41\x6c\x70\x68\x61\x74\x6f\x6e\x6f\x73\x41\x6d\x61\x63\x72\x6f\x6e\x41\x6f\x67\x6f\x6e\x65\x6b\x41\x72\x69\x6e" +"\x67\x61\x63\x75\x74\x65\x42\x65\x74\x61\x43\x61\x63\x75\x74\x65\x43\x63\x61\x72\x6f\x6e\x43\x63\x69\x72\x63\x75\x6d\x66\x6c\x65" +"\x78\x43\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x43\x68\x69\x44\x63\x61\x72\x6f\x6e\x44\x63\x72\x6f\x61\x74\x44\x65\x6c\x74\x61\x45" +"\x62\x72\x65\x76\x65\x45\x63\x61\x72\x6f\x6e\x45\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x45\x6d\x61\x63\x72\x6f\x6e\x45\x6e\x67\x45" +"\x6f\x67\x6f\x6e\x65\x6b\x45\x70\x73\x69\x6c\x6f\x6e\x45\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x45\x74\x61\x45\x74\x61\x74" +"\x6f\x6e\x6f\x73\x45\x75\x72\x6f\x47\x61\x6d\x6d\x61\x47\x62\x72\x65\x76\x65\x47\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x47\x63" +"\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x47\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x48\x62\x61\x72\x48\x63\x69\x72\x63\x75\x6d\x66" +"\x6c\x65\x78\x49\x4a\x49\x62\x72\x65\x76\x65\x49\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x49\x6d\x61\x63\x72\x6f\x6e\x49\x6f\x67\x6f" +"\x6e\x65\x6b\x49\x6f\x74\x61\x49\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69\x73\x49\x6f\x74\x61\x74\x6f\x6e\x6f\x73\x49\x74\x69\x6c" +"\x64\x65\x4a\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x4b\x61\x70\x70\x61\x4b\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4c\x61" +"\x63\x75\x74\x65\x4c\x61\x6d\x62\x64\x61\x4c\x63\x61\x72\x6f\x6e\x4c\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4c\x64\x6f\x74" +"\x4d\x75\x4e\x61\x63\x75\x74\x65\x4e\x63\x61\x72\x6f\x6e\x4e\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4e\x75\x4f\x62\x72\x65" +"\x76\x65\x4f\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x4f\x6d\x61\x63\x72\x6f\x6e\x4f\x6d\x65\x67\x61\x74\x6f\x6e\x6f\x73" +"\x4f\x6d\x69\x63\x72\x6f\x6e\x4f\x6d\x69\x63\x72\x6f\x6e\x74\x6f\x6e\x6f\x73\x4f\x73\x6c\x61\x73\x68\x61\x63\x75\x74\x65\x50\x68" +"\x69\x50\x69\x50\x73\x69\x52\x61\x63\x75\x74\x65\x52\x63\x61\x72\x6f\x6e\x52\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x52\x68" +"\x6f\x53\x61\x63\x75\x74\x65\x53\x63\x65\x64\x69\x6c\x6c\x61\x53\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x53\x63\x6f\x6d\x6d\x61" +"\x61\x63\x63\x65\x6e\x74\x53\x69\x67\x6d\x61\x54\x61\x75\x54\x62\x61\x72\x54\x63\x61\x72\x6f\x6e\x54\x63\x6f\x6d\x6d\x61\x61\x63" +"\x63\x65\x6e\x74\x54\x68\x65\x74\x61\x55\x62\x72\x65\x76\x65\x55\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x55\x6d\x61\x63" +"\x72\x6f\x6e\x55\x6f\x67\x6f\x6e\x65\x6b\x55\x70\x73\x69\x6c\x6f\x6e\x55\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73" +"\x55\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x55\x72\x69\x6e\x67\x55\x74\x69\x6c\x64\x65\x57\x61\x63\x75\x74\x65\x57\x63\x69" +"\x72\x63\x75\x6d\x66\x6c\x65\x78\x57\x64\x69\x65\x72\x65\x73\x69\x73\x57\x67\x72\x61\x76\x65\x58\x69\x59\x63\x69\x72\x63\x75\x6d" +"\x66\x6c\x65\x78\x59\x67\x72\x61\x76\x65\x5a\x61\x63\x75\x74\x65\x5a\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x5a\x65\x74\x61\x61\x62" +"\x72\x65\x76\x65\x61\x65\x61\x63\x75\x74\x65\x61\x66\x69\x69\x30\x30\x32\x30\x38\x61\x66\x69\x69\x31\x30\x30\x31\x37\x61\x66\x69" +"\x69\x31\x30\x30\x31\x38\x61\x66\x69\x69\x31\x30\x30\x31\x39\x61\x66\x69\x69\x31\x30\x30\x32\x30\x61\x66\x69\x69\x31\x30\x30\x32" +"\x31\x61\x66\x69\x69\x31\x30\x30\x32\x32\x61\x66\x69\x69\x31\x30\x30\x32\x33\x61\x66\x69\x69\x31\x30\x30\x32\x34\x61\x66\x69\x69" +"\x31\x30\x30\x32\x35\x61\x66\x69\x69\x31\x30\x30\x32\x36\x61\x66\x69\x69\x31\x30\x30\x32\x37\x61\x66\x69\x69\x31\x30\x30\x32\x38" +"\x61\x66\x69\x69\x31\x30\x30\x32\x39\x61\x66\x69\x69\x31\x30\x30\x33\x30\x61\x66\x69\x69\x31\x30\x30\x33\x31\x61\x66\x69\x69\x31" +"\x30\x30\x33\x32\x61\x66\x69\x69\x31\x30\x30\x33\x33\x61\x66\x69\x69\x31\x30\x30\x33\x34\x61\x66\x69\x69\x31\x30\x30\x33\x35\x61" +"\x66\x69\x69\x31\x30\x30\x33\x36\x61\x66\x69\x69\x31\x30\x30\x33\x37\x61\x66\x69\x69\x31\x30\x30\x33\x38\x61\x66\x69\x69\x31\x30" +"\x30\x33\x39\x61\x66\x69\x69\x31\x30\x30\x34\x30\x61\x66\x69\x69\x31\x30\x30\x34\x31\x61\x66\x69\x69\x31\x30\x30\x34\x32\x61\x66" +"\x69\x69\x31\x30\x30\x34\x33\x61\x66\x69\x69\x31\x30\x30\x34\x34\x61\x66\x69\x69\x31\x30\x30\x34\x35\x61\x66\x69\x69\x31\x30\x30" +"\x34\x36\x61\x66\x69\x69\x31\x30\x30\x34\x37\x61\x66\x69\x69\x31\x30\x30\x34\x38\x61\x66\x69\x69\x31\x30\x30\x34\x39\x61\x66\x69" +"\x69\x31\x30\x30\x35\x30\x61\x66\x69\x69\x31\x30\x30\x35\x31\x61\x66\x69\x69\x31\x30\x30\x35\x32\x61\x66\x69\x69\x31\x30\x30\x35" +"\x33\x61\x66\x69\x69\x31\x30\x30\x35\x34\x61\x66\x69\x69\x31\x30\x30\x35\x35\x61\x66\x69\x69\x31\x30\x30\x35\x36\x61\x66\x69\x69" +"\x31\x30\x30\x35\x37\x61\x66\x69\x69\x31\x30\x30\x35\x38\x61\x66\x69\x69\x31\x30\x30\x35\x39\x61\x66\x69\x69\x31\x30\x30\x36\x30" +"\x61\x66\x69\x69\x31\x30\x30\x36\x31\x61\x66\x69\x69\x31\x30\x30\x36\x32\x61\x66\x69\x69\x31\x30\x30\x36\x35\x61\x66\x69\x69\x31" +"\x30\x30\x36\x36\x61\x66\x69\x69\x31\x30\x30\x36\x37\x61\x66\x69\x69\x31\x30\x30\x36\x38\x61\x66\x69\x69\x31\x30\x30\x36\x39\x61" +"\x66\x69\x69\x31\x30\x30\x37\x30\x61\x66\x69\x69\x31\x30\x30\x37\x31\x61\x66\x69\x69\x31\x30\x30\x37\x32\x61\x66\x69\x69\x31\x30" +"\x30\x37\x33\x61\x66\x69\x69\x31\x30\x30\x37\x34\x61\x66\x69\x69\x31\x30\x30\x37\x35\x61\x66\x69\x69\x31\x30\x30\x37\x36\x61\x66" +"\x69\x69\x31\x30\x30\x37\x37\x61\x66\x69\x69\x31\x30\x30\x37\x38\x61\x66\x69\x69\x31\x30\x30\x37\x39\x61\x66\x69\x69\x31\x30\x30" +"\x38\x30\x61\x66\x69\x69\x31\x30\x30\x38\x31\x61\x66\x69\x69\x31\x30\x30\x38\x32\x61\x66\x69\x69\x31\x30\x30\x38\x33\x61\x66\x69" +"\x69\x31\x30\x30\x38\x34\x61\x66\x69\x69\x31\x30\x30\x38\x35\x61\x66\x69\x69\x31\x30\x30\x38\x36\x61\x66\x69\x69\x31\x30\x30\x38" +"\x37\x61\x66\x69\x69\x31\x30\x30\x38\x38\x61\x66\x69\x69\x31\x30\x30\x38\x39\x61\x66\x69\x69\x31\x30\x30\x39\x30\x61\x66\x69\x69" +"\x31\x30\x30\x39\x31\x61\x66\x69\x69\x31\x30\x30\x39\x32\x61\x66\x69\x69\x31\x30\x30\x39\x33\x61\x66\x69\x69\x31\x30\x30\x39\x34" +"\x61\x66\x69\x69\x31\x30\x30\x39\x35\x61\x66\x69\x69\x31\x30\x30\x39\x36\x61\x66\x69\x69\x31\x30\x30\x39\x37\x61\x66\x69\x69\x31" +"\x30\x30\x39\x38\x61\x66\x69\x69\x31\x30\x30\x39\x39\x61\x66\x69\x69\x31\x30\x31\x30\x30\x61\x66\x69\x69\x31\x30\x31\x30\x31\x61" +"\x66\x69\x69\x31\x30\x31\x30\x32\x61\x66\x69\x69\x31\x30\x31\x30\x33\x61\x66\x69\x69\x31\x30\x31\x30\x34\x61\x66\x69\x69\x31\x30" +"\x31\x30\x35\x61\x66\x69\x69\x31\x30\x31\x30\x36\x61\x66\x69\x69\x31\x30\x31\x30\x37\x61\x66\x69\x69\x31\x30\x31\x30\x38\x61\x66" +"\x69\x69\x31\x30\x31\x30\x39\x61\x66\x69\x69\x31\x30\x31\x31\x30\x61\x66\x69\x69\x31\x30\x31\x34\x35\x61\x66\x69\x69\x31\x30\x31" +"\x39\x33\x61\x66\x69\x69\x31\x30\x38\x34\x36\x61\x66\x69\x69\x36\x31\x32\x34\x38\x61\x66\x69\x69\x36\x31\x32\x38\x39\x61\x66\x69" +"\x69\x36\x31\x33\x35\x32\x61\x6c\x70\x68\x61\x61\x6c\x70\x68\x61\x74\x6f\x6e\x6f\x73\x61\x6d\x61\x63\x72\x6f\x6e\x61\x6e\x67\x6c" +"\x65\x6c\x65\x66\x74\x61\x6e\x67\x6c\x65\x72\x69\x67\x68\x74\x61\x6f\x67\x6f\x6e\x65\x6b\x61\x70\x70\x72\x6f\x78\x65\x71\x75\x61" +"\x6c\x61\x72\x69\x6e\x67\x61\x63\x75\x74\x65\x61\x72\x72\x6f\x77\x62\x6f\x74\x68\x61\x72\x72\x6f\x77\x64\x6f\x77\x6e\x61\x72\x72" +"\x6f\x77\x6c\x65\x66\x74\x61\x72\x72\x6f\x77\x72\x69\x67\x68\x74\x61\x72\x72\x6f\x77\x75\x70\x61\x72\x72\x6f\x77\x75\x70\x64\x6e" +"\x61\x72\x72\x6f\x77\x75\x70\x64\x6e\x62\x73\x65\x62\x65\x74\x61\x63\x61\x63\x75\x74\x65\x63\x63\x61\x72\x6f\x6e\x63\x63\x69\x72" +"\x63\x75\x6d\x66\x6c\x65\x78\x63\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x63\x68\x69\x63\x69\x72\x63\x6c\x65\x6d\x75\x6c\x74\x69\x70" +"\x6c\x79\x63\x6c\x75\x62\x64\x63\x61\x72\x6f\x6e\x64\x63\x72\x6f\x61\x74\x64\x65\x6c\x74\x61\x64\x69\x61\x6d\x6f\x6e\x64\x64\x69" +"\x65\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73\x65\x62\x72\x65\x76\x65\x65\x63\x61\x72\x6f\x6e\x65\x64\x6f\x74\x61\x63\x63\x65\x6e" +"\x74\x65\x6c\x65\x6d\x65\x6e\x74\x65\x6d\x61\x63\x72\x6f\x6e\x65\x6e\x67\x65\x6f\x67\x6f\x6e\x65\x6b\x65\x70\x73\x69\x6c\x6f\x6e" +"\x65\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x65\x71\x75\x69\x76\x61\x6c\x65\x6e\x63\x65\x65\x73\x74\x69\x6d\x61\x74\x65\x64" +"\x65\x74\x61\x65\x74\x61\x74\x6f\x6e\x6f\x73\x65\x78\x63\x6c\x61\x6d\x64\x62\x6c\x65\x78\x69\x73\x74\x65\x6e\x74\x69\x61\x6c\x66" +"\x65\x6d\x61\x6c\x65\x66\x72\x61\x6e\x63\x67\x61\x6d\x6d\x61\x67\x62\x72\x65\x76\x65\x67\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78" +"\x67\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x67\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x67\x72\x65\x61\x74\x65\x72\x65\x71\x75" +"\x61\x6c\x68\x62\x61\x72\x68\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x68\x65\x61\x72\x74\x68\x6f\x75\x73\x65\x69\x62\x72\x65\x76" +"\x65\x69\x6a\x69\x6d\x61\x63\x72\x6f\x6e\x69\x6e\x66\x69\x6e\x69\x74\x79\x69\x6e\x74\x65\x67\x72\x61\x6c\x69\x6e\x74\x65\x67\x72" +"\x61\x6c\x62\x74\x69\x6e\x74\x65\x67\x72\x61\x6c\x74\x70\x69\x6e\x74\x65\x72\x73\x65\x63\x74\x69\x6f\x6e\x69\x6e\x76\x73\x6d\x69" +"\x6c\x65\x66\x61\x63\x65\x69\x6f\x67\x6f\x6e\x65\x6b\x69\x6f\x74\x61\x69\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69\x73\x69\x6f\x74" +"\x61\x64\x69\x65\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73\x69\x6f\x74\x61\x74\x6f\x6e\x6f\x73\x69\x74\x69\x6c\x64\x65\x6a\x63\x69" +"\x72\x63\x75\x6d\x66\x6c\x65\x78\x6b\x61\x70\x70\x61\x6b\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6b\x67\x72\x65\x65\x6e\x6c" +"\x61\x6e\x64\x69\x63\x6c\x61\x63\x75\x74\x65\x6c\x61\x6d\x62\x64\x61\x6c\x63\x61\x72\x6f\x6e\x6c\x63\x6f\x6d\x6d\x61\x61\x63\x63" +"\x65\x6e\x74\x6c\x64\x6f\x74\x6c\x65\x73\x73\x65\x71\x75\x61\x6c\x6c\x69\x72\x61\x6c\x6f\x6e\x67\x73\x6d\x61\x6c\x65\x6d\x69\x6e" +"\x75\x74\x65\x6d\x75\x73\x69\x63\x61\x6c\x6e\x6f\x74\x65\x6d\x75\x73\x69\x63\x61\x6c\x6e\x6f\x74\x65\x64\x62\x6c\x6e\x61\x63\x75" +"\x74\x65\x6e\x61\x70\x6f\x73\x74\x72\x6f\x70\x68\x65\x6e\x63\x61\x72\x6f\x6e\x6e\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6e" +"\x6f\x74\x65\x6c\x65\x6d\x65\x6e\x74\x6e\x6f\x74\x65\x71\x75\x61\x6c\x6e\x75\x6f\x62\x72\x65\x76\x65\x6f\x68\x75\x6e\x67\x61\x72" +"\x75\x6d\x6c\x61\x75\x74\x6f\x6d\x61\x63\x72\x6f\x6e\x6f\x6d\x65\x67\x61\x6f\x6d\x65\x67\x61\x74\x6f\x6e\x6f\x73\x6f\x6d\x69\x63" +"\x72\x6f\x6e\x6f\x6d\x69\x63\x72\x6f\x6e\x74\x6f\x6e\x6f\x73\x6f\x72\x74\x68\x6f\x67\x6f\x6e\x61\x6c\x6f\x73\x6c\x61\x73\x68\x61" +"\x63\x75\x74\x65\x70\x61\x72\x74\x69\x61\x6c\x64\x69\x66\x66\x70\x65\x73\x65\x74\x61\x70\x68\x69\x70\x69\x70\x72\x6f\x64\x75\x63" +"\x74\x70\x72\x6f\x70\x65\x72\x73\x75\x62\x73\x65\x74\x70\x72\x6f\x70\x65\x72\x73\x75\x70\x65\x72\x73\x65\x74\x70\x73\x69\x71\x75" +"\x6f\x74\x65\x72\x65\x76\x65\x72\x73\x65\x64\x72\x61\x63\x75\x74\x65\x72\x61\x64\x69\x63\x61\x6c\x72\x63\x61\x72\x6f\x6e\x72\x63" +"\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x72\x65\x76\x6c\x6f\x67\x69\x63\x61\x6c\x6e\x6f\x74\x72\x68\x6f\x73\x61\x63\x75\x74\x65" +"\x73\x63\x65\x64\x69\x6c\x6c\x61\x73\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x73\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x73" +"\x65\x63\x6f\x6e\x64\x73\x69\x67\x6d\x61\x73\x6d\x69\x6c\x65\x66\x61\x63\x65\x73\x70\x61\x64\x65\x73\x75\x6d\x6d\x61\x74\x69\x6f" +"\x6e\x73\x75\x6e\x74\x61\x75\x74\x62\x61\x72\x74\x63\x61\x72\x6f\x6e\x74\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x74\x68\x65" +"\x74\x61\x74\x6f\x6e\x6f\x73\x75\x62\x72\x65\x76\x65\x75\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x75\x6d\x61\x63\x72\x6f" +"\x6e\x75\x6e\x64\x65\x72\x73\x63\x6f\x72\x65\x64\x62\x6c\x75\x6e\x69\x30\x30\x41\x30\x75\x6e\x69\x30\x30\x41\x44\x75\x6e\x69\x30" +"\x32\x31\x41\x75\x6e\x69\x30\x32\x31\x42\x75\x6e\x69\x30\x32\x43\x39\x75\x6e\x69\x30\x33\x38\x37\x75\x6e\x69\x30\x33\x39\x34\x75" +"\x6e\x69\x30\x33\x41\x39\x75\x6e\x69\x30\x33\x42\x43\x75\x6e\x69\x30\x33\x43\x32\x75\x6e\x69\x30\x34\x30\x30\x75\x6e\x69\x30\x34" +"\x30\x44\x75\x6e\x69\x30\x34\x35\x30\x75\x6e\x69\x30\x34\x35\x44\x75\x6e\x69\x30\x34\x39\x32\x75\x6e\x69\x30\x34\x39\x33\x75\x6e" +"\x69\x30\x34\x39\x36\x75\x6e\x69\x30\x34\x39\x37\x75\x6e\x69\x30\x34\x39\x38\x75\x6e\x69\x30\x34\x39\x39\x75\x6e\x69\x30\x34\x39" +"\x41\x75\x6e\x69\x30\x34\x39\x42\x75\x6e\x69\x30\x34\x39\x43\x75\x6e\x69\x30\x34\x39\x44\x75\x6e\x69\x30\x34\x41\x30\x75\x6e\x69" +"\x30\x34\x41\x31\x75\x6e\x69\x30\x34\x41\x32\x75\x6e\x69\x30\x34\x41\x33\x75\x6e\x69\x30\x34\x41\x41\x75\x6e\x69\x30\x34\x41\x42" +"\x75\x6e\x69\x30\x34\x41\x45\x75\x6e\x69\x30\x34\x41\x46\x75\x6e\x69\x30\x34\x42\x30\x75\x6e\x69\x30\x34\x42\x31\x75\x6e\x69\x30" +"\x34\x42\x32\x75\x6e\x69\x30\x34\x42\x33\x75\x6e\x69\x30\x34\x42\x36\x75\x6e\x69\x30\x34\x42\x37\x75\x6e\x69\x30\x34\x42\x38\x75" +"\x6e\x69\x30\x34\x42\x39\x75\x6e\x69\x30\x34\x42\x41\x75\x6e\x69\x30\x34\x42\x42\x75\x6e\x69\x30\x34\x43\x30\x75\x6e\x69\x30\x34" +"\x43\x42\x75\x6e\x69\x30\x34\x43\x43\x75\x6e\x69\x30\x34\x44\x38\x75\x6e\x69\x30\x34\x45\x32\x75\x6e\x69\x30\x34\x45\x33\x75\x6e" +"\x69\x30\x34\x45\x38\x75\x6e\x69\x30\x34\x45\x39\x75\x6e\x69\x30\x34\x45\x45\x75\x6e\x69\x30\x34\x45\x46\x75\x6e\x69\x32\x30\x33" +"\x45\x75\x6e\x69\x32\x30\x41\x46\x75\x6e\x69\x32\x31\x32\x36\x75\x6e\x69\x32\x32\x31\x35\x75\x6e\x69\x32\x32\x31\x39\x75\x6e\x69" +"\x32\x32\x32\x37\x75\x6e\x69\x32\x32\x32\x38\x75\x6e\x69\x32\x32\x39\x35\x75\x6e\x69\x32\x35\x41\x31\x75\x6e\x69\x6f\x6e\x75\x6e" +"\x69\x76\x65\x72\x73\x61\x6c\x75\x6f\x67\x6f\x6e\x65\x6b\x75\x70\x73\x69\x6c\x6f\x6e\x75\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72" +"\x65\x73\x69\x73\x75\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73\x75\x70\x73\x69\x6c\x6f\x6e\x74" +"\x6f\x6e\x6f\x73\x75\x72\x69\x6e\x67\x75\x74\x69\x6c\x64\x65\x77\x61\x63\x75\x74\x65\x77\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78" +"\x77\x64\x69\x65\x72\x65\x73\x69\x73\x77\x67\x72\x61\x76\x65\x78\x69\x79\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x79\x67\x72\x61" +"\x76\x65\x7a\x61\x63\x75\x74\x65\x7a\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x7a\x65\x74\x61\x31\x2e\x30\x30\x28\x55\x52\x57\x29\x2b" +"\x2b\x2c\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x32\x30\x31\x34\x20\x62\x79\x20\x28\x55\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69" +"\x67\x6e\x20\x26\x20\x44\x65\x76\x65\x6c\x6f\x70\x6d\x65\x6e\x74\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x28\x55\x52\x57\x29\x2b" +"\x2b\x2c\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x32\x30\x31\x34\x20\x62\x79\x20\x28\x55\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69" +"\x67\x6e\x20\x26\x20\x44\x65\x76\x65\x6c\x6f\x70\x6d\x65\x6e\x74\x4e\x69\x6d\x62\x75\x73\x20\x52\x6f\x6d\x61\x6e\x20\x42\x6f\x6c" +"\x64\x20\x49\x74\x61\x6c\x69\x63\x4e\x69\x6d\x62\x75\x73\x20\x52\x6f\x6d\x61\x6e\x00\xd9\x02\x00\x01\x00\x06\x00\x0b\x00\x0f\x00" +"\x16\x00\xa0\x00\xae\x01\x05\x01\x33\x01\x38\x01\x3e\x01\x51\x01\x5a\x01\x64\x01\x76\x01\x7c\x01\x84\x01\xe9\x02\x5f\x02\xcc\x03" +"\x31\x03\x94\x03\xb6\x03\xd8\x03\xe3\x03\xe6\x03\xf1\x03\xfd\x04\x7d\x04\xf5\x05\x53\x05\x6d\x05\xa1\x05\xc4\x05\xe1\x06\x06\x06" +"\x14\x06\x25\x06\x2a\x06\x38\x06\x4d\x06\x5b\x06\x70\x06\x78\x06\x80\x06\x86\x06\x8e\x06\xca\x06\xfd\x07\x38\x07\x47\x07\x4c\x07" +"\x51\x07\x61\x07\x82\x07\x9d\x07\xb0\x07\xc2\x07\xc9\x07\xce\x07\xdf\x07\xe9\x08\x00\x08\x0d\x08\x1f\x08\x33\x08\x36\x08\x41\x08" +"\x52\x08\x5c\x08\x61\x08\x6a\x08\x73\x08\x80\x08\x8a\x08\x92\x08\x9a\x08\xa2\x08\xad\x09\x66\x09\xe6\x0a\x6d\x0a\xf1\x0b\x12\x0b" +"\x3b\x0b\xac\x0c\x0b\x0c\x6c\x0c\x76\x0c\xd1\x0c\xd4\x0d\x27\x0d\x7c\x0d\xd0\x0e\x06\x0e\x25\x0e\x31\x0e\x50\x0e\x96\x0e\xcd\x0f" +"\x01\x0f\x07\x0f\x45\x0f\x6d\x0f\xac\x0f\xe9\x10\x13\x10\x4c\x10\x5f\x10\x89\x10\x9c\x10\xb5\x10\xc6\x10\xf1\x11\x1b\x11\x42\x11" +"\x6a\x11\x85\x11\x9a\x11\xbe\x11\xcb\x11\xd8\x11\xfb\x12\x0e\x12\x30\x12\x52\x12\x74\x12\x8b\x12\xab\x12\xc8\x12\xe7\x12\xef\x12" +"\xfc\x13\x17\x13\x28\x13\x45\x13\x60\x13\x68\x13\x7d\x13\x98\x13\xa8\x13\xb3\x13\xbe\x13\xd5\x13\xe0\x13\xf8\x14\x0a\x14\x23\x14" +"\x3c\x14\x54\x14\x5c\x14\x6e\x14\x7b\x14\x8d\x14\xa3\x14\xb8\x14\xc0\x14\xd5\x14\xe8\x14\xec\x14\xf5\x15\x08\x15\x1b\x15\x2e\x15" +"\x41\x15\x49\x15\x5b\x15\x6a\x15\x7c\x15\x8c\x15\x9c\x15\xab\x15\xbc\x15\xcb\x15\xdc\x15\xed\x15\xfc\x16\x06\x16\x10\x16\x20\x16" +"\x30\x16\x40\x16\x50\x16\x60\x16\x6f\x16\x7e\x16\x8d\x16\x9c\x16\xab\x16\xb0\x16\xbe\x16\xcc\x16\xda\x16\xe8\x16\xf5\x17\x02\x17" +"\x0f\x17\x1c\x17\x29\x17\x36\x17\x43\x17\x4e\x17\x59\x17\x65\x17\x71\x17\x7c\x17\x88\x17\x94\x17\xa0\x17\xa8\x17\xb0\x17\xbb\x17" +"\xc6\x17\xd1\x17\xdc\x17\xe7\x17\xf2\x17\xfb\x06\x85\x75\x05\x0b\x06\x91\xa1\x05\x0b\x91\xa1\x05\x0b\x63\x1d\xf7\x17\xea\x05\x0e" +"\xf8\xde\xf7\x56\x15\x72\x90\x68\x52\x76\x72\x64\x70\x19\x64\x53\x47\x78\x35\x1b\x60\x79\x95\xa3\x92\x8d\x96\x91\x9f\x1f\x8d\x8f" +"\x8c\x92\x8d\x93\x8d\x91\x18\xc3\xf7\x65\x05\xf7\x06\x89\xa9\x78\x47\x1a\x7d\x8a\x7f\x88\x78\x1e\xa7\x86\xd5\xf7\xa5\x6f\x8f\x5c" +"\x2d\x71\x7e\xfb\x18\x8c\x19\xc8\xf7\x73\x05\xae\x95\x97\x94\xb4\x1b\xd3\xc2\x7c\x70\xa6\x1f\xa2\x73\x92\x72\x4d\x1a\xa6\x86\xb6" +"\xf7\x52\x05\xfc\xb0\x72\x06\xae\x85\xa0\x87\x92\x87\x08\x91\x87\x8f\x82\x80\x1a\x7d\x87\x73\x85\x75\x1e\xfb\x0f\xfc\x55\x7b\x56" +"\x7f\x80\x57\x83\x19\x72\xf8\xbe\x07\x0b\x88\x1d\x66\xa9\x6e\xb0\xba\xb9\xb2\xe2\xc5\x90\x1d\x0b\xf8\x55\xf9\x41\x15\x42\x41\x71" +"\x59\x47\x1f\xfb\x0d\x33\x35\xfb\x35\xfb\x1f\x1a\xfb\x23\xea\x2b\xf7\x21\xda\xd7\xa5\xbc\xce\x1e\xf7\x10\xe7\xdd\xf7\x33\xf7\x26" +"\x1a\xf7\x19\x24\xed\xfb\x1f\x1e\x88\x69\x15\xc7\xb4\x5b\x44\xfb\x0d\x4d\xfb\x5c\x48\x29\x1f\x48\x5d\x5e\x6d\x55\x1b\x4c\x64\xba" +"\xd5\xf1\xbe\xf7\x4c\xc2\xec\x1f\xe5\xbe\xc0\xb4\xcc\x1b\x0b\xf8\xe5\xa4\x15\xcd\x1d\x6b\x5a\x7c\x7e\x67\x83\x19\x72\xf7\x58\xa4" +"\x07\x5d\x78\x96\xa3\x99\x90\x9a\x95\x9c\x1f\xc6\xf1\x05\xf7\x6b\x06\xde\x1d\xf7\xc4\x07\xfc\x44\xf7\x8c\xd0\x1d\x0b\x06\x90\xa1" +"\x05\x0b\x15\x2b\x1d\x2d\x1d\x0e\x15\x68\x6e\x6d\x67\x69\xa9\x6d\xad\xaf\xa9\xa8\xae\xaf\x6d\xa9\x67\x1f\x0e\xf7\x2c\xe2\x05\xa9" +"\x9c\x94\x96\x0b\x59\x1d\x51\x7e\x4b\x82\x3b\x97\x1d\x0b\x9e\x1a\xa5\x75\xa0\x71\x79\x7a\x7f\x65\x68\x1e\xfb\x0e\xfb\x17\x05\x0b" +"\x4a\x1d\x97\x21\x1d\x0b\x7f\x5e\x79\x79\x68\x88\x19\x0b\xf8\x6b\xf7\x1b\xe1\x1d\x91\xa0\x9e\xc3\x1f\xaf\xf7\x01\x05\x9b\xba\x95" +"\xb7\xa3\x1a\xbc\x71\xa5\x5c\x66\x67\x7c\x71\x70\x1e\x66\x68\x78\x73\x48\x28\xcb\xf7\x5a\x18\x4b\x7d\x3b\x6b\x1d\x97\x85\x78\x7f" +"\x7d\x55\x6b\xfb\x04\x1f\x74\x39\x84\x71\x71\x2b\x08\xf7\x0d\x06\xba\xf7\x41\xb0\xe2\xc8\xdc\x08\xa6\x9f\xaa\xa1\x9d\x1b\x98\x97" +"\x81\x80\x88\x89\x83\x88\x81\x1f\x54\xfb\x3a\x05\x7b\x5b\x7f\x52\xe7\x1d\x0b\x99\xf8\x2f\x15\x9d\x90\x8a\x87\x92\x1f\x9c\x82\x9b" +"\x61\x9a\x44\x08\xac\xfb\x36\x9c\x2c\x6c\x1a\x74\x82\x73\x79\x72\x1e\x6f\x76\x70\x76\x7a\x1b\x84\x79\x92\x92\x82\x1f\x97\x7a\x72" +"\x94\x79\x1b\x71\x73\x71\x6e\x69\xa6\x71\xae\xc2\xcc\xb2\xce\xc2\x1f\xf7\x16\xf7\x33\xf7\x0b\xf7\x81\xf0\x1a\xad\x6e\xa9\x6a\x6c" +"\x71\x70\x6d\x72\x92\x7f\xa3\x79\x1e\x9e\x7d\x90\x83\x7e\x1a\x6c\x7a\x63\x45\xfb\x1a\x1e\x7f\xd6\x75\xf7\x0b\x71\xf7\x03\x79\xba" +"\x19\x5a\x7f\x67\x85\x4b\x85\x08\x0b\x9b\xf8\x2b\x15\xa4\x94\x8a\x84\x93\x1f\x9f\x79\x99\x2e\x8e\xfb\x1e\x8d\x3d\x18\x87\x8b\x8a" +"\x8a\x68\x1e\x8a\x5e\x05\xa6\x06\xc4\xe1\xc4\xeb\x94\x9a\xba\xe3\x19\xa2\xfb\xb1\x05\xa6\x06\xf7\x4d\xf7\x58\xe2\xf7\x19\xdf\x1a" +"\xac\x6f\xa8\x6a\x6d\x71\x6f\x6b\x7c\x91\x7e\x9a\x76\x1e\x99\x79\x91\x7d\x81\x1a\x6d\x6c\x5c\x33\x23\x1e\x6b\xf7\xe0\x05\x70\x06" +"\x37\xfb\x25\x7b\x6e\x53\x26\x88\xf7\x11\x84\xcb\x74\xe1\x5d\x82\x76\x87\x33\x7c\x08\x0b\xf9\x39\xf9\x41\x15\x6d\x06\x75\x7e\x81" +"\x84\x7c\x1b\x83\x7c\x8e\x90\x7c\x1f\x99\x5e\x5e\x92\x62\x1b\xfb\x73\xfb\x4d\xfb\x5d\xfb\x87\xfb\x2f\xf7\x01\x23\xf7\x37\xd2\xcd" +"\xa1\xb6\xc4\x1f\xa8\xa1\x9c\x9d\xab\xb7\x6d\xa1\x18\x59\x50\x6f\x74\x61\x79\x08\x7f\x6f\x6c\x85\x6c\x1b\x2d\x53\xcc\xf7\x01\xf7" +"\x25\xd3\xf7\x42\xe6\xd7\x1f\xaa\xb0\xb2\x9a\xb4\x1b\xdc\xbd\x4f\x29\x7e\x8a\x83\x89\x7d\x1f\xab\x85\x05\x0b\x98\xf7\xbb\x15\xa7" +"\x88\x9b\xb7\x9b\x9b\xaa\x8c\x19\xf7\x25\x06\xfb\xb8\xfb\xf6\xa4\x75\x96\x93\x05\x92\x95\x90\x8f\x8c\x1b\x92\x95\x90\x8d\x94\x1b" +"\x9f\x9e\x82\x73\xae\x1f\x67\xc0\xb0\x7d\xb4\x1b\xc8\xba\xb2\xbf\xa7\x72\xa3\x6f\x70\x74\x73\x6f\x80\x8e\x82\x95\x80\x1f\x90\x84" +"\x8d\x87\x87\x1a\x82\x82\x84\x7e\x79\x7f\x97\xae\x7a\x1e\x6b\xc8\x73\xa3\x58\xa0\xf7\xad\xf7\xe3\x18\x95\xfb\xcc\x07\x0b\x15\xf4" +"\xb9\xce\xd8\xd4\x1a\xc0\x6c\xae\x5e\x66\x70\x6f\x65\x73\x94\x7d\xa6\x78\x1e\xa0\x7e\x91\x82\x7e\x1a\x6b\x68\x68\x44\x65\x1e\x0e" +"\x69\xa9\x6d\xad\xaf\xa9\xa8\xae\xaf\x6d\xa9\x67\x1f\xf7\x68\x16\x68\x6e\x6d\x67\x69\xa9\x6d\xad\xaf\xa9\xa8\xae\xaf\x6d\xa9\x67" +"\x1f\x0e\x15\xfb\x03\xf7\x27\x05\xa1\x7b\x76\x58\x1d\x2d\x1d\x0e\xec\xe4\xf7\x05\xbe\x70\xbd\x5e\xab\x1f\x0b\xfb\x17\xfc\x7f\x7f" +"\x5e\x79\x79\x68\x88\x19\x0b\xf7\x03\xf9\x18\x15\xab\x86\x99\x89\x95\x88\x92\x87\x19\x91\x87\x8f\x82\x81\x1a\x7f\x86\x6c\x86\x79" +"\x1e\xfb\x0f\xfc\x55\x7b\x57\x7c\x7d\x5a\x85\x19\x72\xf7\xbc\xa4\x07\x51\x8f\x7d\x93\xa9\x1a\x99\x90\xa4\x94\xab\x1e\xc2\xf7\x55" +"\x05\xa8\x06\xf6\xfb\xdf\x05\xf7\x5e\xa4\x06\x52\x90\x82\x93\x75\xc6\x38\xf7\x8a\x18\xc2\x96\xa4\x95\xab\xa0\x08\xbe\xad\xa8\xbe" +"\xc2\x1a\xec\x3e\xba\xfb\x33\x1e\xfb\xa8\x06\xf7\x72\x3f\x15\xaf\x94\x94\x93\xaa\x1b\xc4\xac\x69\x4e\x49\x6f\x4e\x5f\x70\x1f\x71" +"\x7a\x64\x84\x4d\x8a\x08\x0b\xc8\xf7\xb7\x15\xc6\xa8\xa1\xa8\x9b\x1b\x94\x8f\x86\x82\x80\x89\x80\x80\x63\x1f\x68\xfb\x16\x85\x6e" +"\x67\x1a\x46\xbc\x5c\xd3\xd8\xc9\xbb\xea\xb8\x1e\xab\xd0\xa0\xde\xc7\x1a\xce\x73\xb2\x62\x6b\x74\x70\x67\x79\x91\x7b\x97\x7c\x1e" +"\x9e\x73\x8b\x8b\x8f\x83\x08\x94\x74\x90\x75\x76\x1a\x64\x79\x54\x6e\x5d\x1e\x5f\x71\x6b\x74\x6c\x1b\x6e\x76\xa4\xac\x98\x8f\xa1" +"\x91\xa3\x1f\xba\xf7\x4a\x05\x90\xa2\x8e\x9d\x9b\x1a\xb0\x75\xa3\x68\x65\x5d\x71\x64\x6c\x1e\x79\x74\x80\x78\x79\x62\x08\x0b\xf7" +"\xe1\xf8\x61\x15\x6e\x06\x78\x80\x88\x89\x7c\x1b\x81\x83\x8d\x92\x79\x1f\x95\x72\x7f\x8e\x76\x1b\x3a\x56\x5a\x3e\x55\x99\x6f\xcd" +"\x3c\x1f\xb1\x5e\x9d\x69\x72\x1a\x6d\x72\x73\x6b\x74\x76\x96\x9f\x7b\x5d\x1d\x92\x96\x88\x86\x98\x1f\x83\xa3\x9d\x87\xa0\x1b\xe0" +"\xca\xc4\xd6\xb8\x72\xbc\x53\xcc\x1f\x65\xb8\x79\xa9\xa2\x1a\xab\xa0\xa0\xab\xb9\xa6\x67\x38\x9a\x1e\xa6\x89\x05\x0b\xf7\xd2\x89" +"\x1d\xfb\x37\xfb\x35\x32\xc9\x4d\xe6\xb7\xb6\x9b\xa8\xad\x1e\xa5\xa1\x9b\x9e\xae\xbd\x08\x0b\xf8\xbe\xf7\x56\x15\x70\x90\x3b\xfb" +"\x10\x3e\x61\xfb\x24\x8d\x19\x45\x06\xf8\x46\xf8\xf1\x05\xa8\xfc\x68\x07\x52\xfb\x46\xa7\x87\xd4\xf5\xce\xb2\xf7\x04\x8d\x19\xd9" +"\x06\xfc\x46\xfc\xf1\x05\x6e\xf8\x8e\x07\x0b\x15\xf7\x08\xbe\xd6\xe1\xdc\x1a\xc6\x69\xb2\x58\x62\x6d\x6c\x61\x70\x95\x7b\xa9\x77" +"\x1e\xa2\x7c\x92\x81\x7d\x1a\x67\x64\x64\x3c\x61\x1e\x0e\xf8\x1c\x15\x99\xaa\x93\x9c\x8f\x92\x47\x1d\x85\x6c\x87\x50\x87\x50\x89" +"\x69\x8a\x82\x8a\x7a\x8a\x87\x89\x73\x08\x0b\x08\xfb\x28\x6c\x78\x62\x63\x1b\x81\x83\x90\x91\x8d\x8d\x8e\x8d\x8f\x1f\x93\x97\x8f" +"\x96\x96\x1a\xa3\x73\xa3\x71\x70\x73\x72\x6e\x5b\xb2\x6c\xc7\x0b\xb6\x1d\x79\x79\x69\x88\x19\x83\x20\x1d\xf7\xa5\x06\x0b\x15\xf3" +"\xb9\xcf\xd8\xd4\x1a\xc0\x6c\x60\x1d\x68\x68\x44\x65\x1e\x0e\x49\x1d\xac\x61\x1d\x9d\xd2\x05\xee\xa4\xa9\xbd\xaf\x5e\x1d\x7f\x66" +"\x1d\x0b\x08\xc8\xf7\x10\x90\x96\xad\x1a\xac\x73\xa2\x69\x75\x73\x80\x7a\x7f\x1e\x7f\x7c\x0b\x71\x85\x74\x05\x8c\x8f\x90\x8b\x8d" +"\x1b\xa0\x99\x7c\x0b\x1b\xa9\x9c\x7e\x74\x72\x75\x7b\x69\x75\x7a\x8f\x98\x6f\x1f\x75\x6a\x05\x79\xb6\x0b\x97\xb8\x9d\x9d\xad\x8e" +"\x19\x0b\x67\x1e\xfb\x0e\xfb\x17\x05\x0e\x91\xa1\x05\x6f\x06\x0b\x8b\x87\x89\x85\x1e\xfb\x17\x0b\xf7\x4f\x15\xf2\xf8\x17\x2e\x1d" +"\xfb\xa3\x52\x1d\x8f\x99\xf7\xe8\xf8\x24\xfb\x01\xfc\x2d\x2f\x1d\x84\x20\x1d\xf7\xa5\x21\x1d\x6e\x06\x71\x8c\x7a\x9b\xa5\x1a\x8f" +"\x8c\x92\x8d\x92\xf1\x1d\x9c\x9d\xae\x5f\x1d\x70\x1a\x86\x8a\x86\x89\x81\x1e\x0b\x7b\x57\x7d\x7e\x59\x84\x19\x72\xf7\xbc\xa4\x07" +"\x4c\x90\x81\x91\xab\x1a\x9a\x8f\x9d\x94\xaa\x1e\x8d\x92\x8c\x90\x8c\x8f\xbd\xf7\x49\x18\xf7\x83\x06\x4b\xfb\x7c\x7d\x55\x77\x7d" +"\x48\x87\x19\x72\xf7\xd1\x0b\x05\xf7\x0d\x06\xbe\xf7\x46\xa0\xbd\xbd\xd4\x08\xc7\xb5\xac\xa8\xa5\x1b\x97\x95\x81\x80\x85\x89\x83" +"\x88\x82\x1f\x89\x83\x87\x80\x86\x7d\x87\x7e\x87\x80\x88\x82\x08\x5b\xfb\x20\x7e\x59\x62\x1a\x69\xa6\x73\xb2\xc8\xb3\xac\xf2\xcd" +"\x1e\x0b\x7f\x1d\xf7\x82\x16\xf7\x2c\xe2\x05\xaa\x9d\x93\x95\x38\x1d\x06\x86\x53\x1d\x0b\x43\x1d\xc6\x1d\x0b\x8c\x96\x49\x1d\xab" +"\x84\xb0\x1b\xd2\xc0\xb0\xbd\xb5\x65\xa9\x0b\x15\xf7\x74\x9e\x06\x5a\x81\x8f\xa1\x94\x8d\x98\x8f\x97\x1f\xef\xf7\xde\x4a\x7e\x61" +"\x83\x45\x81\x19\x89\x76\x05\x8d\xa3\x9a\x8c\x0b\xa4\xfb\xbe\x72\x07\xab\x86\x99\x89\x95\x88\x92\x87\x19\x91\x87\x8f\x82\x81\x1a" +"\x7f\x86\x6c\x86\x79\x1e\x0b\x15\x68\x6c\x6c\x69\x64\xa8\x6d\xb0\xb1\xaa\xa8\xb0\xb0\x6c\xaa\x65\x1f\x0e\x97\x78\x1b\x73\x76\x76" +"\x73\x7b\x97\x7b\xa1\x7c\x1f\xf7\x19\x32\x05\x0e\xf7\x6c\xf7\x21\xb4\x1d\x0b\x5f\x9f\xb3\x69\x1d\x1b\x52\x5d\x5d\x43\x7e\x1f\xb3" +"\x06\xab\x98\x98\x96\xa1\xaf\x1d\x0b\x08\x92\x87\x8f\x82\x7f\x1a\x7f\x87\x0b\x1e\x77\xa4\x83\xa2\x83\xc1\x70\x8e\x18\x75\xfb\x3a" +"\x05\xa6\x06\x97\x8f\x97\x93\x98\x1b\x0b\x1b\x95\x92\x86\x83\x88\x8a\x89\x87\x85\x1f\x83\x0b\x8e\x19\x97\x21\x1d\xfb\xa3\x06\x86" +"\x75\x05\xa0\x06\xa6\x8a\x9b\x7b\x0b\xae\x5d\x66\x70\x6f\x65\x73\x94\x7d\xa6\x78\x1e\xa0\x7e\x91\x82\x7e\x1a\x6b\x0b\xc5\x1d\x0e" +"\x06\x38\x68\x84\x72\x66\x1f\x4a\x60\x69\x0b\x15\xbe\x06\x35\xf7\x42\x05\x3a\x06\xfb\x34\xfb\x42\x05\xc4\x06\x0b\x98\x80\x74\x82" +"\x89\x7f\x85\x76\x1f\x0b\xdd\x1d\x71\x79\x0b\x88\x82\x81\x1a\x6f\xa0\x76\xa7\x0b\x83\x20\x1d\xf7\xa5\x06\x4c\x1d\x0b\x1e\x75\x99" +"\x86\x89\x8a\x8a\x83\x87\x19\x81\x77\x0b\x75\xc9\x1b\xec\xcb\xc5\xf3\x9d\x1f\x0e\x7e\x1b\x84\x86\x91\x92\x8f\x0b\x80\x53\x89\x08" +"\x70\x07\xb5\x0b\x61\x3c\x6d\x08\x68\xbe\x07\x0b\x74\x1b\x7f\x7b\x90\x96\x71\x1f\x9d\x62\x0b\x15\xfb\x03\x06\xa3\x69\x6d\x94\x5d" +"\x1b\xfb\x0f\x28\x3a\x26\x58\xa5\x67\xc1\x74\x1f\x39\x5d\x7d\x7d\x66\x1a\x6b\x9d\x78\xb7\x7c\x1e\x4d\x7c\x77\x83\x73\x78\x08\x7b" +"\x7d\x80\x73\x73\x1a\x4a\xd4\x62\xf7\x07\xf7\x21\xed\xc9\xe3\xc8\x63\xac\xfb\x01\xaa\x1e\x56\x9a\x05\x6b\x94\x78\x99\x9a\x1a\x9b" +"\x9a\x9f\x98\x90\x92\x8a\x88\x93\x1e\x88\x96\x93\x8a\x97\x1b\xb7\xb8\x97\xa1\xb1\x1f\xc5\xac\xaa\xbe\xc8\x1a\x9a\x89\x95\x87\x9b" +"\x1e\xce\x06\xfb\xff\xfc\x0f\x15\x97\x8a\xd7\x71\xa1\x81\x08\xa7\x7d\x98\x7a\x71\x1a\x5f\x5f\x72\x3f\x4a\x5d\xab\xb9\x9f\x94\x9b" +"\xa0\x9f\x1e\x97\x97\xaa\x9d\x92\x8a\x08\xf7\x20\xf8\x49\x15\xa5\x9e\x73\x68\x69\x7f\x59\x7a\x67\x1f\x5d\x75\x72\x75\x6c\x1b\x70" +"\x7c\xa0\xb1\xb3\x9c\xc8\xa0\xb1\x1f\xac\x9e\xa0\x9b\xa5\x1b\x0b\xf7\x4a\xf9\x2a\x15\x85\x75\x05\xa7\x06\xa5\x9c\x7a\x71\x85\x8a" +"\x85\x8a\x85\x1f\x3a\x1d\x7c\x20\x1d\xf7\xd6\x06\xbb\xbe\x9a\xa4\xaf\x1f\xbd\xaf\xae\xcc\xc5\x1a\xb2\x77\xb4\x6c\xa6\x1e\x71\xa0" +"\x76\x96\x59\x9a\xbd\x90\xa7\x94\xb2\xa4\x08\xc1\xae\xa7\xb8\xc1\x1a\xe3\x47\xbb\xfb\x12\x1e\xfb\x0b\xfb\xdf\x15\xb1\x9e\x88\x82" +"\x9b\x1f\xaa\x7c\xa0\x64\x61\x1a\x60\x7c\x58\x74\x6b\x1e\x61\x6f\x61\x76\x57\x1b\x7d\x81\x8c\x8f\x78\x1f\xf7\x30\xf8\xe0\x15\xd2" +"\xaa\x70\x4e\x47\x6a\x4c\x5b\x71\x1f\x7e\x72\x76\x87\x5f\x1b\x0e\xf8\xfb\xf7\x54\x15\x72\x90\x69\x53\x76\x72\x64\x70\x19\x64\x54" +"\x48\x79\x36\x1b\x5f\x7a\x95\xa4\x91\x8e\x96\x90\x9e\x1f\x8d\x91\x8c\x90\x8f\x99\xc1\xf7\x63\x18\xf7\x06\x89\xa8\x78\x46\x1a\x7e" +"\x8a\x80\x89\x78\x1e\xa6\x86\xd3\xf7\xa2\x6f\x8f\x5d\x2e\x72\x7e\xfb\x17\x8c\x19\xc6\xf7\x71\x05\xae\x95\x97\x94\xb3\x1b\xd3\xc1" +"\x7c\x70\xa6\x1f\xa2\x74\x92\x72\x4d\x1a\xa6\x86\xb4\xf7\x50\x05\xfc\xaa\x73\x06\xbf\x83\x8b\x8b\x96\x85\x08\x91\x87\x8f\x82\x81" +"\x1a\x7d\x87\x73\x85\x75\x1e\xfb\x0b\xfc\x51\x7b\x57\x7f\x80\x58\x83\x19\x72\xf8\xb8\x07\x0b\x1e\x8a\x82\x8a\x80\xa4\x86\xd4\xf7" +"\xa5\x71\x8f\x67\x38\x63\x73\x28\x8c\x19\x82\x06\x81\x06\xcc\xf7\x7f\x05\xa6\x92\x95\x90\xb5\x1b\xf3\xc1\x65\x40\x8f\x1f\x8d\x63" +"\xa3\x86\xb8\xf7\x52\x05\xfc\xe1\x74\x06\xcc\x87\x9b\x86\x78\x1a\x80\x83\x7a\x7f\x7b\x1e\xfc\x02\xfc\x6c\x63\x58\x7f\x7d\x85\x88" +"\x19\x83\x86\x85\x89\x7b\x89\x08\x72\xf7\x57\xa4\x07\x5b\x8f\x7b\x93\xa1\x1a\x97\x90\x99\x95\x98\x1e\xf7\x06\xf7\x31\x05\xf7\x54" +"\x06\x5d\xfb\x33\x7b\x55\x81\x82\x57\x83\x19\x64\xf7\xa1\x15\xf7\x91\xf7\xe1\x05\x97\x06\x2f\xfb\xe1\x05\x0b\xf8\x88\xf8\x50\x15" +"\x77\x1d\xc4\xbf\xb8\xde\xb2\x1e\x77\x93\x05\x5e\x76\x79\x71\x7f\x1b\x87\x88\x8f\x90\x90\x8c\x91\x90\x9c\x1f\x0b\x8f\x1d\x91\xac" +"\x8f\x9b\x1e\xc1\xf7\x5b\x05\x87\xae\x9e\xd2\x1d\xfb\xb3\x06\xf7\x70\x3f\x15\x92\xa3\x8b\x8b\x8f\x91\x08\x95\x94\x96\x8f\x9f\x1b" +"\xbf\xaa\xbc\x1d\x0b\xf7\x7d\xf7\x6a\x15\x84\xf7\x1a\x81\xbc\x68\xc4\xfb\x19\x6d\x18\x84\x71\x05\x98\x06\xa7\x9c\x78\x66\x90\x1f" +"\x92\x5b\x9c\xfb\x7a\x8c\x50\x08\x5f\x07\x8c\x87\x8b\x83\x81\x1a\x75\x78\x7e\x82\x81\x1b\x84\x82\x90\x9a\x77\x1f\x9e\x71\x7b\x92" +"\x7a\x1b\x6e\x75\x72\x6a\x64\xaa\x6f\xb6\xc4\xbd\xb7\xf7\x2b\xf7\x05\x1f\xf7\x19\xf7\x46\xc9\xf7\x05\xca\x1a\xb4\x6b\xaf\x67\x6e" +"\x74\x71\x6b\x74\x92\x80\xa5\x7c\x1e\x9f\x80\x93\x80\x7d\x1a\x66\x4e\x20\x46\x39\x1e\x0b\xf7\x29\xf7\x50\x15\xb2\xa6\x05\xfb\x3e" +"\xab\xa8\x56\xc9\x1b\xbd\xae\xab\xe7\xbe\x1f\x75\x96\x05\x5b\x70\x7b\x7b\x78\x1b\x6f\x7f\xaf\xf7\x56\x65\x1f\xca\xc2\xcf\xc5\xa1" +"\x98\xb8\x90\x19\xa4\xfb\x63\x72\x07\xb2\x89\x97\x86\x7b\x1a\x71\x65\x66\xfb\x12\x29\x1e\xf7\x0f\xf8\x5f\x3f\x7d\x57\x83\x3b\x83" +"\x19\x70\x07\x8c\x93\x94\x8b\x8f\x1b\xa8\x64\x1d\xfb\x30\xfc\xcb\x05\xf7\x0e\x06\x0b\xf8\x04\xf7\x0e\x15\x71\x70\x87\x88\x80\x81" +"\x08\x7b\x76\x6e\x81\x70\x1b\x51\x6c\xb2\xd5\x1f\xa1\x07\xcd\x8c\xb0\x94\xb9\xa4\x08\xce\xb0\xb5\xc3\xc2\x1a\xbf\x69\xa8\x50\xfb" +"\x2a\xfb\x14\xfb\x23\xfb\x3c\x60\x96\x66\xa0\x72\x1e\x6e\xa4\xb9\x77\xb7\x1b\xcc\xc8\xb1\xd9\xc8\x1f\xfb\x6f\xf5\x15\xf7\x00\x9d" +"\xc9\xf4\xb8\x1b\x9d\x98\x7b\x74\x64\x77\x54\x72\x6f\x1f\x70\x6c\x65\x79\x5d\x88\x08\x0b\x82\x1d\xb9\xab\xa5\xf1\xd9\x9a\x1d\x0b" +"\x15\xfb\xb3\x71\x06\xb6\x87\x93\x89\x96\x85\x08\x91\x87\x91\x80\x82\x1a\x71\x87\x78\x70\x30\x1e\x74\x3f\x8b\x8b\x87\x85\x08\x7a" +"\x7d\x62\x7e\x64\x1b\x21\x51\xcd\xf7\x0e\xf7\x29\xcf\xf7\x3b\xe6\xd8\x1f\xab\xb1\xb6\x9b\xb8\x1b\xba\xb2\x78\x6b\xa1\x1f\xa1\x6a" +"\x92\x6e\x8d\x47\xa8\x87\x18\xbe\xf7\x71\x05\x6c\x06\x75\x80\x80\x83\x77\x1b\x82\x83\x8d\x92\x78\x1f\x9a\x0b\x7a\x1d\x0e\xf7\xfc" +"\xf7\x64\x15\x84\xfb\x0b\x87\x5f\x77\x75\x64\x8a\x19\x84\x20\x1d\xf7\x93\x21\x1d\x7f\x06\x71\x7e\x9e\xb1\x1f\x95\x07\xa7\xf8\xd1" +"\x05\x72\x06\xfc\x36\xfc\xc0\x61\x52\x71\x73\x77\x88\x19\x85\x75\x05\xf7\x42\x28\x1d\x7c\x06\x73\x7a\x99\xa0\x9a\x90\x98\x9b\xa0" +"\x1f\xd6\xf1\x05\xf7\x3a\xb5\x15\xfb\x1c\x06\xf7\x26\xf7\x5c\x05\x0b\xf7\xef\xf7\x20\x15\x47\x5d\x6f\x75\x61\x1b\x61\x75\xa7\xc2" +"\x9c\x8c\x96\x8f\x9e\x1f\xf2\x9f\xbd\xa1\xbb\xb8\x08\xad\xab\x9e\xb0\xad\x1a\xbe\x5f\xaf\x4f\xfb\x23\xfb\x21\xfb\x34\xfb\x37\x36" +"\xcb\x4d\xe2\xd6\xc0\xb1\xee\xc6\x1e\xfb\x59\xe3\x15\xf7\x1d\xae\xb8\xd6\xbb\x1b\x9e\x94\x80\x74\x5f\x7a\x61\x6c\x6b\x1f\x70\x6f" +"\x73\x7d\x52\x79\x08\x0b\xf7\xf8\x15\xac\xae\xa9\x9a\xab\x1b\xad\xa0\x75\x66\x72\x82\x72\x7b\x7e\x1f\x7c\x7d\x76\x7f\x55\x72\x42" +"\x68\x89\x89\x74\x79\x08\x78\x7b\x81\x73\x6f\x1a\x44\xbf\x5c\xd8\xcb\xb7\xa4\xd3\xcc\x1e\x79\x9e\x05\x60\x62\x6a\x78\x65\x1b\x67" +"\x74\xa7\xb6\xbb\xa4\xa6\xd9\xaf\x1f\xe9\xb7\xa7\xa9\xc3\x1a\xc8\x62\xb1\x4a\x52\x6a\x7a\x4a\x46\x1e\x0b\x97\xb8\x9d\x9d\xae\x8e" +"\x19\x97\x28\x1d\xfb\xa2\x20\x1d\xa1\x06\xa5\x8a\x9c\x7b\x71\x1a\x86\x8a\x84\x89\x85\x1e\xfb\x24\xfc\xb2\x05\xfb\x68\x06\xf7\x22" +"\xf8\xad\xae\x1d\x85\x8a\x85\x8a\x85\x1e\xfb\x25\xfc\xb2\x05\x0b\xf7\xb6\xa1\x15\x6f\x06\x71\x8c\x7a\x9b\xa4\x1a\x94\x8b\x8e\x8d" +"\x92\x1e\xf7\x17\xf8\x7f\x2e\x1d\xfb\xa3\x06\x86\x43\x1d\x0e\x15\xf7\x2c\xe2\x05\xaa\x9d\x93\x95\x2d\x1d\x0b\xf7\xb6\xa1\x15\x6f" +"\x06\x71\x8c\x7a\x9b\xa4\x1a\x94\x8b\x8e\x8d\x92\x1e\xf7\x17\xf8\x7f\x2e\x1d\xfb\xa2\x06\x85\x43\x1d\x0b\x15\xfb\x54\xfb\x2c\xfb" +"\x30\xfb\x59\xfb\x55\xf7\x2c\xfb\x31\xf7\x4f\xf7\x5b\xf7\x2a\xf7\x2c\xf7\x5c\xf7\x58\xfb\x2c\xf7\x2f\xfb\x54\x1f\x5d\x04\xf7\x2f" +"\xf7\x14\xfb\x1f\xfb\x3a\xfb\x3e\xfb\x13\xfb\x1c\xfb\x34\xfb\x2b\xfb\x14\xf7\x20\xf7\x39\xf7\x3c\xf7\x14\xf7\x1e\xf7\x2f\x1f\x0e" +"\xfb\x0a\x06\x58\xfb\x56\x77\x53\x7f\x73\x71\x63\x19\x5d\x6d\x7e\x7f\x7a\x1b\x83\x86\x91\x96\x93\x8d\x95\x8d\x96\x1f\xe4\xf7\xe8" +"\xfb\x49\xce\x1d\x83\x89\x82\x1f\x4e\xfb\x7b\x05\x86\x76\x87\x72\x7a\x1a\x66\xa7\x6f\xb0\x0b\xc4\x1d\x47\xfb\x82\x05\x7c\x57\x82" +"\x60\x79\x1a\x64\xa7\x71\xb5\xc7\xb3\xac\xf2\xcd\x1e\x75\x99\x05\x56\x69\x71\x70\x7b\x1b\x83\x83\x92\x93\x9d\x9d\xd1\xaf\xf7\x10" +"\x1f\x93\xaa\x92\xa3\x9d\xcb\x08\xde\x06\x0e\x86\x1d\xf7\xbc\x07\x0b\x6f\x1e\x7e\x20\x1d\xf7\x9d\x06\x91\xa1\x64\x8e\x7d\x9d\x69" +"\xea\x19\x3c\xf7\x7e\xf7\x0a\xf7\x17\xe9\xf3\xaf\xa9\xab\x8e\x19\x22\x1d\xfb\x54\x20\x1d\x96\x06\xa1\x99\x7e\x74\x77\x85\x7f\x70" +"\x6d\x1f\xfb\x08\xfb\x16\x5d\xf7\x1e\x05\x82\xa5\x89\x94\x0b\xa4\x15\x52\x8e\x7c\x94\xa7\x1a\x9b\x8f\xa0\x99\xbd\x1e\xf7\x06\xf8" +"\x38\x9b\xc0\x9a\x98\xbe\x91\x19\x56\x1d\xfb\x0f\xfc\x55\x7b\x57\x7c\x7d\x5a\x85\x19\x72\x0b\xf7\x77\x15\x78\x76\x82\x81\x7a\x79" +"\x08\x44\x42\x6d\x63\x76\x1a\x84\x91\x86\x92\x94\x98\x94\x9d\x9e\x1e\x98\x97\x95\x93\xa3\x9d\xf7\x3e\xf7\x10\x18\x94\x07\x30\xe7" +"\x5e\xb9\x6b\xb0\x08\x93\x84\x88\x8d\x86\x1b\x82\x85\x84\x83\x7c\x94\x71\xa3\x5a\x1f\x0b\xf8\x46\xf7\x13\x15\x53\x62\x7c\x7d\x7b" +"\x1b\x84\x86\x91\x94\xa4\x95\xb5\xa3\xdc\x1f\xd2\xf7\x80\xfb\x03\x84\x79\x50\x05\xbe\x82\x75\xa0\x60\x1b\xfb\x0f\xfb\x2a\xfb\x54" +"\xfb\x30\x3f\xb6\x58\xcc\xc8\xb8\xaf\xeb\xc5\x1f\x7f\x62\x89\x7f\x7d\x1a\x0b\xf7\x21\x15\x48\x5b\x6c\x74\x60\x1b\x5f\x6e\xaf\xc0" +"\xca\xa5\xe5\xaf\xcc\x1f\xba\xa6\xa7\xa3\xaa\x1b\x97\x95\x84\x81\x87\x89\x85\x85\x82\x1f\x82\x7c\x87\x7f\xbf\x1d\x0b\xf7\x29\x15" +"\x5e\x06\xd9\xf7\x99\x05\x5d\x06\xfb\xaa\xfb\x93\x7b\x48\x05\xf7\x33\x06\x70\x33\x05\xe1\x06\xa7\xe3\x05\xb7\x06\xfb\x8a\xc8\x15" +"\xf7\x4c\xf7\x3e\x57\xfb\x3e\x05\xd3\xf8\xaa\x15\x51\x06\xfc\x47\xfd\x4d\x05\xc5\x06\x0b\x15\x6b\x7c\x7e\x81\x6d\x1d\x6c\x93\x72" +"\x5b\x1d\x81\xa5\x97\x88\xf7\x01\x1d\xfb\x4a\xce\x1d\x81\x89\x84\x1f\x75\x39\x05\x85\x73\x88\x7b\x7b\x1a\x61\xa4\x70\xb3\xc0\xb1" +"\xa7\xec\xd8\x1e\x5e\xfb\x3f\x05\x86\x7a\x89\x7b\x7e\x1a\x68\xa6\x72\xb2\x0b\xf7\x23\xf8\xad\x98\x1d\xfc\x80\x7f\x5e\x7a\x7a\x68" +"\x88\x19\x83\x20\x1d\x0b\x15\x6c\x7c\x7e\x80\x74\x1b\x80\x7a\x90\x96\x71\x1f\x9d\x62\x6b\x93\x73\x5b\x1d\x80\xa6\x96\x89\x0b\xf9" +"\x18\x15\x9f\x1d\xf7\xba\xa4\x07\x53\x8e\x7b\x94\xa6\x1a\x95\x0b\x1e\xfb\x51\xf7\xc8\x15\xa1\x8a\x9a\x78\x70\x1a\x4f\x69\xfb\x03" +"\x65\x46\x1e\x5a\x70\x6d\x71\x70\x1b\x71\x78\xa2\xaa\xbf\xac\xef\xb4\xd5\x1f\xa9\xc0\xac\xaa\xa6\x89\x08\x0b\x05\xa3\x73\x78\x94" +"\x6e\x1b\xfb\x0e\xfb\x2a\xfb\x55\xfb\x31\x42\xb8\x57\xc8\xcb\xb8\xaf\xea\xc4\x1f\x82\x64\x89\x7e\x7b\x1a\x65\xa1\x74\xb1\xbc\xb8" +"\xb1\xe3\xc2\x1e\x0b\x15\x68\x6e\x6d\x67\x69\xa9\x6d\xad\xaf\xa9\xa8\xae\xaf\x6d\xa9\x67\x1f\xf7\x68\x16\x68\x6e\x6e\x66\x69\xa9" +"\x6d\xad\xaf\xa9\xa8\xae\xaf\x6d\xa9\x67\x1f\x0e\x15\xa1\x8a\x9a\x77\x6f\x1a\x5e\x60\xfb\x14\x68\x4a\x1e\x5a\x6f\x6f\x72\x6d\x1b" +"\x72\x79\xa7\xae\x8d\x1f\x8e\xc1\xaa\xe7\xaf\xcc\xab\xc4\xaf\xab\xa9\x89\x08\x0b\x06\xeb\x1d\x84\x8a\x86\x8a\x85\x1e\xfb\x17\xfc" +"\x7f\x7f\x5e\x79\x79\x69\x88\x19\x83\x20\x1d\xf7\xa5\x06\x0b\xa2\x1d\x85\x20\x1d\xf8\x71\x06\xc9\xf7\x3a\x05\x79\x06\x37\x38\x2f" +"\x5c\x3c\x1b\x0b\x15\x7b\x06\x73\x66\x7d\x84\x57\x8a\x08\x32\x06\xf7\x11\xf0\x05\xce\xc1\xa4\xb1\xbb\x1a\xc3\x5c\xb6\x4e\x4d\x5d" +"\x6c\x48\x67\x1e\x9d\x80\x05\x0b\xb2\x1d\x65\xa7\x72\xb4\xc7\xb0\xa9\xf5\xd1\x1e\x0b\x97\xb8\x9d\x9d\xad\x5f\x1d\x71\x1a\x83\x4d" +"\x1d\x0b\x45\x79\x68\x4e\x1f\xfb\x18\x3e\x34\xfb\x2b\xfb\x2d\x1a\xfb\x34\xf7\x0c\xfb\x01\xf7\x44\xd9\xee\x9e\xa6\xc4\x1e\xa7\x98" +"\xbb\xf7\x49\x9e\x0b\x1e\x86\x7b\x88\x7f\x88\x83\x08\x85\x77\x88\x7a\x7f\x1a\x72\xa2\x79\xa9\x0b\x15\xfc\xa0\x07\x3a\xf7\x66\x56" +"\x74\xf7\x13\xfb\xb2\x05\xd8\x06\xf7\x14\xf7\xb2\x56\xa2\x3a\xfb\x66\x05\xf8\xa0\x07\xdc\xfb\x66\xc0\x0b\xf7\x52\xf7\x9c\xad\xb9" +"\x9d\x99\xb2\x93\x19\xa4\xfb\x64\x72\x07\xc0\x8a\x99\x81\x68\x1a\x7a\x85\x7e\x77\x6e\x1e\xfb\x15\xfb\x4c\x78\x0b\xbd\xb0\xe8\xc3" +"\x1f\x93\x5d\x93\x77\x9c\x76\x08\x6f\xa1\xb3\x7b\xbb\x1b\xdf\xce\xba\xe3\xb6\x1f\x6f\x9c\x05\x50\x69\x61\x6d\x5b\x1b\x0b\x07\x69" +"\x5d\x82\x79\x6f\x1a\x5c\xb8\x69\xc8\xbe\xba\xa8\xb9\xa4\x68\x1d\x81\x88\x7b\x1b\x0b\xae\x86\xa0\x86\x92\x87\x08\x91\x87\x8f\x82" +"\x81\x1a\x7c\x87\x73\x85\x75\x1e\xfb\x0f\xfc\x55\x7b\x56\x7f\x80\x57\x83\x19\x72\x0b\x7e\x5e\x79\x79\x68\x88\x19\x81\x20\x1d\xf7" +"\xac\x06\x92\xa1\x05\x6b\x06\x71\x7a\x9c\xa3\x90\x8c\x93\x8d\x92\x1f\x0b\xf7\xb0\xf8\x62\x15\xfb\x28\xfb\x1f\xfb\x33\xfb\x3c\x36" +"\xce\x4c\xe7\xf7\x29\xf7\x1c\xf7\x2f\xf7\x3d\xe3\x4a\xca\x2f\x1f\x0b\x8a\x86\x8a\x85\x1e\x3a\x1d\x0b\x06\xbf\xa8\x74\x61\x84\x8b" +"\x89\x88\x73\xc2\x1d\x0b\xfb\x38\x05\xa2\x06\xb5\xd7\xca\xb5\xda\x8f\xfb\x22\xfc\xa8\x18\x7f\x5e\x79\x79\x68\x88\x08\x62\x20\x1d" +"\x0b\xd9\x1d\xf7\x20\xf8\x8e\xe9\x8a\xb2\x60\x90\xfb\x03\x19\xa6\x89\x0b\x6c\x63\x63\x79\x88\x8d\xa7\x76\x1e\x9e\x7e\x7d\x94\x7b" +"\x1b\x75\x7c\x7a\x73\x6b\xab\x79\xc1\xf4\xe1\xd2\xe2\xb2\x0b\x7c\x4f\x71\x6b\x66\x86\x19\x85\x75\x05\xf7\x44\x21\x1d\x60\x8f\x73" +"\xa0\xab\x1a\x94\x8d\x97\x8f\x99\x1e\x0b\x15\x65\x1d\x7b\x80\x64\x4b\x1d\x15\xf7\x2c\xe2\x05\xaa\x9d\x93\x95\x9e\x1a\xa5\x75\xa0" +"\x71\x79\x7b\x80\x64\x4b\x1d\x15\xfb\x03\xf7\x27\x05\xa1\x7a\x77\x97\x78\x1b\x73\x76\x76\x73\x7b\x97\x7a\xa1\x7d\x1f\xf7\x19\x32" +"\x05\x0e\x9b\xc2\x9f\x9a\xcc\x8d\x19\xa4\xfb\xd1\x72\x07\xae\x85\xa0\x0b\xf7\x2c\xe2\x05\xa9\x9d\x94\x95\x2d\x1d\x0e\xc1\x1d\x86" +"\x89\x1a\x26\xb7\x5b\xe9\xeb\x0b\x98\xb8\x9c\x9d\xae\x8e\x19\x97\x21\x1d\xfb\xa3\x20\x1d\xa1\x06\xa6\x8a\x9b\x7b\x71\x1a\x0b\x1b" +"\x96\x99\x88\x86\x98\x1f\xc6\x74\x05\x0b\x06\xe7\x8e\xca\x5e\x91\x40\x08\x9d\x06\xb4\xf7\x2e\x05\xfc\x6f\x20\x1d\xa4\x06\xa5\x8a" +"\x9c\x0b\x72\x1b\x52\x5e\x5d\x43\x7e\x1f\xb3\x06\xab\x98\x97\x96\xa2\xaf\x1d\x0b\x85\x19\x70\x07\xb7\x9a\x84\x75\x83\x88\x7c\x87" +"\x7a\x1f\x51\xfb\x6b\x05\x83\x6e\x86\x71\x7d\x1a\x0b\x6f\x6e\x67\x58\xc2\x6d\xe7\xf6\xd2\xb3\xc7\xa8\x79\x9c\x6d\x6b\x71\x76\x70" +"\x89\x8b\x88\x8c\x86\x0b\x15\x7d\x77\x05\x64\x71\x74\x76\x7c\x1b\x83\x84\x92\x93\x94\x90\xa5\x8f\x9c\x1f\xe6\xf7\xe2\x0b\xc6\x1d" +"\xf7\x24\xf8\xb1\x05\x0b\x75\x05\xa0\x06\xa6\x8a\x9b\x7b\x71\x1a\x83\x4d\x1d\xfc\x7f\x7f\x5e\x0b\x6e\x1a\x62\xa0\x78\xb7\xc7\xbc" +"\xb3\xe4\xbf\x1e\x0b\x1a\xb0\x9e\x9c\xb2\x1e\x9d\x21\x1d\xfb\xb6\x20\x1d\x98\x06\xb2\x9c\x0b\x68\x1e\xe1\xb2\x15\x62\xb0\x80\x9d" +"\xa5\x1a\xa9\x9f\xa0\xa7\xa7\x9c\x77\x6a\x6c\x7f\x0b\x88\x08\x76\xf7\x46\xa0\x07\x6c\x8e\x88\x8c\x83\x8f\x08\x85\x8f\x89\x92\xac" +"\x1a\x0b\xd6\x1d\xc2\xd0\xb0\x79\xb0\x0b\x6a\x51\x67\x82\x5e\x7d\x6c\x1f\x50\x71\x67\x74\x44\x1b\x7e\x7f\x8c\x8c\x7a\x1f\x0b\x15" +"\x68\x6e\x6e\x66\x69\xa9\x6d\xad\xaf\xa9\xa8\xae\xaf\x6d\xa9\x67\x1f\x0e\x16\xc7\x1d\x0e\x7f\x1a\x6d\xa3\x75\xad\xe3\x1d\x0b\x15" +"\x70\x74\x74\x71\x6f\xa2\x74\xa6\xa6\xa2\xa2\xa6\xa6\x74\xa2\x70\x1f\x0b\x15\x49\x6c\x68\x73\x4a\x1b\x4b\x6a\xa8\xc8\x86\x1f\x60" +"\x06\x8a\x85\x8b\x0b\x1f\xa0\x06\xc8\xf7\x7a\x05\x76\x06\x6f\x4b\x58\x6a\x44\x8c\x08\x61\x06\x0b\x79\x53\x7d\x81\x46\x86\x19\x72" +"\xf7\xd6\xa4\x07\x4a\x8e\x7f\x92\xb0\x1a\x0b\xf0\x1d\x55\x3b\x59\x6c\x1d\x0b\x84\xaf\x1b\xd2\xc0\xb0\xbd\xb5\x65\xa9\x57\x81\x85" +"\x8a\x89\x81\x1f\x0b\x4c\x1d\x71\x8c\x7a\x9b\xa4\x1a\x94\x8b\x8e\x8d\x92\x1e\x0b\x68\x6f\x6e\x67\x69\xa9\x6d\xad\xae\xa9\xa8\xad" +"\xaf\x6d\xa9\x67\x1f\x0b\x85\x1f\x60\x80\x06\x26\xb7\x5b\xe8\xea\xcb\xc5\xf1\x9c\x1e\x0e\xf7\xa3\xf7\xae\x15\xfb\x89\x06\x73\xfb" +"\x08\x05\xf7\x8a\x06\x0e\x21\x1d\x68\x06\x71\x7a\x9c\xa4\x92\x8c\x90\x8c\x92\x1f\x0b\x08\x63\x9b\xa5\x77\xad\x1b\xb8\xa7\xa6\xec" +"\xc1\x1f\x78\x98\x05\x0b\xad\x8e\x08\x97\x21\x1d\xfb\xee\xfc\xef\x15\x42\x96\x67\x0b\x49\x90\x86\x90\x7e\xd7\x2b\xf8\xd0\x18\x72" +"\x06\xfc\x08\xfc\xe0\x0b\x71\x85\x74\x05\x8c\x8f\x8f\x8b\x8e\x1b\x9f\x99\x7c\x75\x84\x8a\x0b\xf7\xd8\xf9\x3f\x15\x51\x06\xfc\x47" +"\xfd\x4d\x05\xc5\x06\x0e\x15\xf7\x28\xf7\x87\xb0\xfb\x87\x05\x0b\x1f\xc5\xf7\x46\x05\x9f\xc9\x95\xb4\x0b\x8a\xa6\x1b\xf7\x3a\xf6" +"\xd8\xf7\x0c\xf0\x41\xc1\xfb\x1f\x1f\x0b\x1b\x53\x65\xbe\xd7\xf7\x02\xbb\xf7\x42\xc3\xe9\x1f\xca\xb0\x0b\x1e\x90\x7f\x8c\x86\x83" +"\x1a\x71\x7e\x7a\x70\x82\x1e\x96\x73\x0b\xa4\x15\x54\x8d\x79\x95\xa8\x1a\x9a\x8f\x9f\x9a\xbf\x1e\x8d\x0b\xf7\x76\x15\x41\x6e\x6a" +"\x68\x58\x1a\x52\xbe\x62\xd3\xdb\xc9\x0b\x15\xfb\x03\xf7\x26\x05\xa0\x7b\x76\x97\x78\x1b\x74\x76\x0b\x98\xd2\xa0\xcb\x1f\xd8\xa6" +"\xa3\xaa\xaf\x1b\xb0\x9d\x6d\x0b\xa4\x06\x44\x8e\x7f\x91\xab\x1a\x9a\x8f\xa0\x92\xa5\x1e\x0b\x6f\x06\x70\x8c\x7a\x9b\xa4\x1a\x90" +"\x8c\x92\x8d\x92\x1e\x0b\x74\x6e\x1b\x6f\x78\xa7\xb3\xb9\xa8\xf7\x12\xa8\xd7\x1f\x0b\x08\x83\x20\x1d\x0b\xf7\x2c\xe2\x05\xa9\x9c" +"\x94\x96\x9e\x1a\xa5\x75\xa0\x0b\x95\x41\x90\x62\x81\x1a\x62\x7c\x80\x4b\x85\x1e\x72\x0b\x9a\x93\xc2\x8c\x1e\xa4\xfb\xaf\x72\x07" +"\xbe\x84\x8e\x0b\xf7\x21\x15\x50\x63\x77\x76\x79\x1b\x83\x84\x92\x93\x0b\x15\x4d\x63\x7e\x7d\x7a\x1b\x83\x85\x92\x95\x95\x0b\xf9" +"\x0d\xf9\x90\x15\x5a\x06\x56\x2f\x05\x95\x6b\x0b\xb0\xa4\xa7\xb5\xc1\x5e\xaf\x48\xfb\x21\xfb\x24\x0b\xd1\x80\x8e\x89\x6e\x1a\x81" +"\x88\x7b\x82\x6a\x1e\x0b\x63\x1b\x7e\x86\x92\x9d\x97\x8b\x8c\x92\xa1\x1f\x0b\xfb\x14\xf7\xb2\x05\x3e\x06\xfb\x13\xfb\xb2\xc0\x0b" +"\x71\x1a\x65\xa4\x75\xb6\xc7\xb4\xad\xec\xc5\x1e\x0b\x18\xf7\x15\x06\x94\xae\x05\xfb\x15\x06\x0e\x7a\x7f\x66\x69\x1e\xfb\x0c\xfb" +"\x16\x05\x0e\x06\x36\xfb\x66\x05\xd9\x06\xe0\xf7\x66\x05\x0b\x86\x75\x05\xa0\x06\xa6\x8a\x9b\x7b\x71\x1a\x0b\x22\x1d\x6e\x06\x71" +"\x8c\x7a\x9b\xa4\x1a\x0b\x15\x53\x06\xfb\x1b\x2a\x30\xec\x05\x59\x06\x0b\x1b\x80\x7f\x92\x90\x8e\x8c\x8c\x8f\x91\x1f\x0b\xda\x69" +"\x1e\x7d\xad\xa6\x87\xd0\x1b\xf7\xac\x0b\x06\xb2\xf7\x25\x05\x68\x06\x0b\x1e\xf7\x17\xf8\x7f\x97\xb8\x0b\x89\x83\x1f\x28\xfb\xf5" +"\x05\xf7\x0a\x06\x0b\x1b\x53\x65\xbe\xd6\xf7\x02\xbb\xf7\x41\x0b\x9d\x75\x67\x47\x6d\xfb\x15\x6a\x44\x1f\x0b\x69\x71\x70\x69\x68" +"\xa6\x6e\xad\xac\xa5\x0b\x6b\x77\x77\x83\x7e\x80\x1e\x81\x7f\x87\x0b\x71\x84\x74\x05\x96\x06\x9f\x99\x7c\x76\x0b\x9d\x1b\xc8\xae" +"\xae\xdf\xa1\x1f\x0e\x01\x00\x01\xe3\x01\x05\x00\x01\x0a\x02\x01\x40\x03\x01\x87\xff\x02\x87\xa0\x02\x8e\x02\x00\x01\x00\x04\x00" +"\x07\x00\x4b\x00\x72\x00\xb2\x01\x48\x02\x0e\x02\xb3\x02\xbb\x02\xf4\x03\x2e\x04\x1e\x04\x38\x04\x3f\x04\x43\x04\x5b\x04\x6f\x04" +"\xc9\x05\x06\x05\x4f\x05\xb6\x05\xe8\x06\x36\x06\x94\x06\xb6\x07\x22\x07\x8b\x07\x9a\x07\xab\x07\xc8\x07\xde\x07\xf9\x08\x44\x08" +"\xf6\x08\xfa\x09\x8a\x09\x8e\x09\x92\x09\x96\x09\xe6\x09\xea\x0a\x20\x0a\x25\x0a\x30\x0a\x34\x0a\x38\x0a\xb0\x0a\xb4\x0a\xb8\x0a" +"\xbe\x0b\x75\x0b\x79\x0b\x7d\x0b\x81\x0b\x85\x0b\xd4\x0b\xd9\x0c\x71\x0c\x75\x0c\x79\x0c\xa5\x0c\xb8\x0c\xe3\x0d\x01\x0d\x0c\x0d" +"\x13\x0d\x16\x0d\x7b\x0d\x80\x0d\x83\x0d\x88\x0d\xd0\x0d\xd3\x0d\xdf\x0d\xe8\x0e\x17\x0e\x1a\x0e\x1f\x0e\xd6\x0e\xda\x0e\xdd\x0f" +"\x60\x0f\xda\x0f\xdf\x0f\xe4\x0f\xee\x0f\xf2\x10\x4a\x10\x4e\x10\xd9\x10\xde\x10\xe3\x11\x47\x11\x53\x11\xb7\x11\xf1\x12\x36\x12" +"\xa7\x13\x4d\x13\x51\x13\xda\x14\x58\x15\x0d\x15\x71\x15\x78\x15\xa2\x15\xe6\x15\xed\x15\xf4\x16\x9c\x17\x46\x17\x55\x17\xf5\x18" +"\xf6\x18\xfe\x19\x73\x19\x8c\x19\x93\x19\xc3\x19\xd2\x1a\x16\x1a\x2a\x1b\x21\x1b\x6f\x1b\x77\x1b\x7f\x1b\x87\x1b\x8f\x1b\x97\x1b" +"\xb0\x1b\xb8\x1b\xc0\x1b\xc8\x1b\xe0\x1b\xf0\x1c\x12\x1c\x1a\x1c\x1e\x1c\x3f\x1c\xad\x1c\xe4\x1d\x03\x1d\xd3\x1e\x16\x1e\x98\x1e" +"\x9d\x1e\xab\x1e\xae\x1f\x55\x1f\xfe\x20\x22\x20\x32\x20\xae\x21\x31\x21\x34\x21\x80\x21\xa5\x21\xdf\x22\x00\x22\x1e\x22\x31\x22" +"\x5d\x22\xe4\x23\x0c\x23\x30\x23\xa5\x23\xb1\x24\x1a\x24\x46\x24\x6c\x24\xb8\x24\xc0\x24\xd1\x24\xd9\x24\xeb\x24\xf3\x24\xfc\x25" +"\x2e\x25\x37\x25\x3f\x25\x4d\x25\x55\x25\x5e\x25\x67\x25\x70\x25\x79\x25\x81\x25\x88\x25\x90\x25\x98\x25\xb8\x25\xce\x25\xd7\x25" +"\xe0\x25\xf0\x25\xf9\x26\x0a\x26\x13\x26\x21\x26\x30\x26\x36\x26\x50\x26\x57\x26\x67\x26\x6e\x26\x95\x26\xec\x26\xf5\x26\xff\x27" +"\x08\x27\x12\x27\x1b\x27\x2e\x27\x38\x27\x41\x27\x49\x27\x52\x27\x61\x27\x68\x27\x87\x27\x98\x27\xa2\x27\xab\x27\xb3\x27\xbc\x27" +"\xc4\x27\xcd\x27\xd7\x27\xe1\x28\x54\x29\x00\x29\xef\x2a\xe8\x2b\x60\x2c\x04\x2c\x9c\x2d\x01\x2d\x2b\x2d\x41\x2d\x44\x2d\x60\x2d" +"\x69\x2d\xc1\x2e\x34\x2e\x37\x2e\x40\x2e\x48\x2e\x58\x2e\x61\x2e\x98\x2e\xb1\x2e\xb4\x2e\xce\x2e\xd6\x2e\xde\x2e\xe7\x2e\xef\x2f" +"\x4b\x2f\xdf\x30\x0a\x30\x76\x30\x81\x30\xf1\x31\x7b\x31\xd0\x31\xd9\x31\xf5\x31\xfe\x32\x07\x32\x8d\x32\xc7\x33\x4d\x33\x66\x33" +"\x6f\x33\x79\x33\x8e\x33\x93\x33\xa9\x33\xc4\x33\xed\x33\xfd\x34\x5b\x34\x64\x34\x6d\x34\xb0\x34\xc7\x34\xd0\x34\xd8\x34\xef\x34" +"\xf7\x35\x10\x35\x19\x35\x5d\x35\x7b\x35\x83\x35\x95\x36\x12\x36\x5c\x36\xa9\x36\xe6\x37\x6f\x37\x9b\x38\x5b\x38\x63\x38\x6c\x38" +"\x75\x38\xbb\x38\xc4\x39\x64\x39\xd0\x39\xd8\x3a\x22\x3a\x48\x3a\x93\x3a\x9b\x3a\xcd\x3b\x66\x3b\x7d\x3b\x85\x3b\x8e\x3c\x26\x3c" +"\x2a\x3c\x4e\x3c\xad\x3c\xb6\x3c\xdb\x3c\xe5\x3c\xf6\x3d\x05\x3d\x23\x3d\x9f\x3d\xa8\x3d\xb1\x3d\xba\x3d\xc3\x3d\xf8\x3e\x00\x3e" +"\x89\x3e\x8d\x3e\x90\x3e\xd5\x3e\xd8\x3e\xdc\x3f\x4d\x3f\x68\x3f\x8b\x40\x65\x40\xe1\x40\xe8\x41\x17\x41\x6f\x41\xcd\x41\xe7\x41" +"\xf0\x42\x3f\x42\x67\x42\xb3\x43\x0c\x43\x32\x43\xaf\x44\x38\x44\x6f\x44\xa2\x44\xce\x44\xf8\x45\x45\x45\x88\x45\xd5\x46\x01\x46" +"\x8e\x46\xeb\x47\x57\x47\x9c\x48\x0f\x48\x28\x48\xb6\x49\x42\x49\x46\x49\x6a\x49\xb6\x4a\x44\x4a\xce\x4b\x30\x4b\x98\x4c\x36\x4c" +"\xab\x4c\xfd\x4d\x60\x4d\x66\x4d\xd2\x4d\xd7\x4d\xf1\x4e\x9c\x4f\x0f\x4f\x13\x4f\x6c\x4f\x71\x4f\xdb\x50\x59\x50\xad\x50\xd3\x51" +"\x4d\x51\xca\x52\x16\x52\xb5\x52\xba\x53\x7f\x54\x12\x54\x54\x54\x87\x55\x35\x56\x05\x56\x98\x57\x21\x57\x73\x57\xd6\x58\x2e\x58" +"\xbb\x59\x07\x59\x91\x59\xb6\x5a\x10\x5a\x84\x5a\xe0\x5b\x43\x5b\xac\x5c\x2d\x5c\x91\x5d\x1e\x5d\x41\x5d\x83\x5d\xc8\x5e\x11\x5e" +"\x5a\x5e\xf9\x5f\x84\x60\x35\x60\x76\x60\xdb\x60\xec\x61\x21\x61\x57\x61\x9e\x62\x10\x62\x87\x62\xbd\x62\xde\x62\xff\x63\x20\x63" +"\x41\x63\x4e\x63\x64\x63\xe6\x63\xf2\x63\xfc\x64\x24\x64\x2d\x64\x83\x65\x01\x65\x7f\x65\xa7\x65\xe9\x66\x6c\x66\x9b\x66\xf0\x67" +"\x13\x67\x1d\x67\x27\x67\x57\x67\x61\x67\xc1\x68\x01\x68\x06\x68\x36\x68\x56\x68\xa7\x68\xab\x68\xd6\x69\x2d\x69\x47\x69\x9a\x6a" +"\x2d\x6a\xa4\x6a\xac\x6a\xbe\x6a\xe6\x6b\x05\x6b\x2e\x6b\x88\x6b\xd4\x6c\x1b\x6c\x42\x6c\x51\x6d\x13\x6d\x1d\x6d\x95\x6e\x04\x6e" +"\x42\x6e\x80\x6e\xc5\x6f\x52\x6f\x81\x6f\x86\x6f\x9b\x6f\xe4\x70\x0b\x70\x21\x70\x59\x70\xd2\x70\xd9\x71\x3e\x71\x47\x71\xa1\x71" +"\xb4\x71\xea\x71\xf9\x72\x24\x72\x33\x72\xa1\x73\x17\x73\x37\x73\x81\x74\x04\x74\x0d\x74\xa0\x74\xa8\x74\xb1\x75\x18\x75\x4c\x75" +"\xa8\x75\xb6\x75\xd1\x75\xe2\x75\xe9\x76\x16\x76\x19\x76\x45\x76\x53\x76\x5c\x76\xd3\x77\x1f\x77\xa1\x78\x22\x78\x6c\x78\x94\x78" +"\xca\x79\x4f\x79\x86\x79\x8f\x79\xad\x79\xb7\x79\xe8\x79\xfa\x7a\x4f\x7a\x58\x7a\x92\x7a\x9b\x7a\xc7\x7b\x07\x7b\x61\x7b\xf2\x7c" +"\x4e\x7c\x8a\x7d\x0e\x7d\x69\x7d\x99\x7d\xc6\x7e\x0e\x7e\x73\x7e\x9d\x7e\xb9\x7e\xc2\x7e\xca\x7e\xdd\x7e\xe0\x7e\xe4\x7e\xed\x7f" +"\x16\x7f\x1e\x7f\x26\x7f\x53\x7f\xf6\x80\x8f\x81\x1e\x81\x26\x81\x46\x81\x59\x81\x61\x81\xd1\x82\x2d\x83\x13\x83\xdc\x84\x77\x84" +"\xff\x85\x75\x85\xf5\x86\x68\x86\xec\x87\x59\x87\xd0\x88\x45\x88\xa0\x88\xd1\x89\x27\x89\x4b\x89\x7c\x89\xb3\x89\xf6\x8a\x83\x8b" +"\x16\x8b\x89\x8b\xd0\x8c\x63\x8c\xea\x8d\x65\x8d\x71\x8d\x75\x8d\xbb\x8e\x55\x8e\xc5\x8f\x34\x8f\xcc\x90\x2b\x90\x58\x90\x6b\x90" +"\x80\x90\x8b\x91\x43\x91\xbc\x91\xc0\x91\xc8\x91\xe4\x92\x01\x92\x71\x92\x8a\x92\xcf\x92\xf8\x93\x3b\x93\x40\x93\x4f\x93\x9d\x93" +"\xc7\x93\xd0\x94\x09\x94\x11\x94\x19\x94\x27\x94\x2f\x94\xed\x94\xf6\x94\xff\x95\x0b\x95\x15\x95\xa4\xfc\x27\x0e\xfc\x27\x0e\xfb" +"\x9c\xf7\x58\xf7\x60\x15\xb5\xf7\x00\xb7\xed\xc4\xf7\x04\x08\xa5\xb9\x90\x9b\xa6\x1a\xb7\x6f\xa8\x62\x6c\x73\x7a\x6e\x7d\x1e\x83" +"\x79\x89\x80\x89\x60\x86\x3c\x79\xfb\x0b\x6d\xfb\x30\x08\x71\x3a\x15\x61\x6b\x6b\x61\x62\xaa\x6e\xb5\xb5\xac\xaa\xb2\xb2\x68\xae" +"\x64\x1f\x0e\x29\xf7\x45\x83\x0a\xf7\xc1\x16\xdd\xf7\x4e\x8c\x8c\x8d\x90\x8e\x93\x19\x95\xa1\x8c\x8e\x98\x1a\xa6\x77\xa1\x72\x64" +"\x66\x68\x65\x88\x1e\x7b\xfb\x6a\x05\x0e\xf8\x55\xf7\xaf\x15\x34\x06\xc1\xf7\x1a\x05\xec\x06\x9f\xd4\x05\x33\xbe\x0a\xfb\x05\xbe" +"\x0a\x22\x06\x77\x42\x05\xeb\x06\x55\xfb\x1a\x05\x21\x06\x77\x42\x05\xeb\xea\x1d\xf7\x05\xea\x1d\xec\x06\x30\xf7\x63\x15\x55\xfb" +"\x1a\x05\xfb\x05\x06\xc1\xf7\x1a\x05\x0e\xf8\x85\xf8\xea\x15\x79\x99\x66\xa3\x5b\x9f\x6a\x90\x19\x9f\xd3\x05\x59\x06\x79\x4a\x05" +"\x8d\x77\x83\x8b\x81\x1b\xfb\x04\x37\x3d\x23\x47\xa5\x67\xf5\x3a\x1f\x41\xfb\x99\x45\xab\x77\xb3\x88\xf7\x00\x19\x75\x91\x61\xfb" +"\x22\xc0\x5c\xaa\x7a\xca\x7c\x19\x6e\x20\x05\xbf\x06\xa7\xf0\xa2\x8a\x05\xf7\x0f\x86\xf7\x00\xe9\xf7\x04\x1a\xd2\x70\xb4\xfb\x05" +"\xec\x1e\xc6\xf7\x6b\x05\xc7\x77\xa3\x67\x46\x1a\x85\x8b\x7e\x8a\x80\x1e\xa0\x86\x05\xfb\x63\x6e\x15\x56\xb3\x7a\xa5\xb3\x1a\xc5" +"\xb6\xb0\xce\x91\x8f\x8b\x89\x90\x1e\x59\xfb\xfd\x15\xc2\x5f\x9a\x71\x5c\x1a\x53\x6e\x5f\x5c\x79\x1e\x85\x7a\x83\x8a\x67\x1b\x0e" +"\xf7\x48\xf9\x38\xf8\x0c\x15\x5a\x5e\x77\x64\x60\x1f\x55\x57\x68\x42\x4b\x1a\x38\xc0\x54\xdb\xb8\xb9\x9f\xad\xab\x1e\xc1\xc4\xac" +"\xdd\xd8\x1a\xd1\x5c\xb9\x45\x1e\xab\x58\x15\xa9\x89\xa0\x6f\x64\x1a\x61\x7d\x5d\x70\x5a\x1e\x55\x6d\x68\x6e\x67\x1b\x6d\x75\xa4" +"\xab\x8d\x1f\x8e\xb7\xad\xe7\xaa\xb7\xa2\xae\xa5\x9d\xa3\x8a\x08\xfc\x96\xfb\xe1\x15\xc3\x06\xf8\x1e\xf9\x50\x05\x64\x06\x5a\x51" +"\x5b\x77\x4c\x1b\x61\x71\x93\x9f\x6f\x1f\xa0\x6e\x78\x92\x6e\x1b\xfb\x05\xfb\x03\xfb\x0f\xfb\x11\x3b\xc0\x52\xd6\xc8\xc0\xaa\xc4" +"\xb2\x1f\xb6\xc9\x9c\xc4\x8c\xe4\x08\x87\xa1\x95\x8a\x96\x1b\xb0\xb2\x94\x9d\xb6\x1f\xfb\x94\x9e\x15\x91\x8d\x89\x85\x92\x1f\x93" +"\x83\x8c\x8b\x92\x88\x08\xa7\x80\x8c\x89\x75\x1a\xfb\x06\x40\xfb\x0f\x45\x6e\x76\xa2\xaa\x8d\x1e\x8e\xba\xad\xe6\xac\xbc\xa1\xac" +"\xa3\x9e\x9c\x89\x08\x0e\xf7\x11\xf9\x35\xf0\x15\x6e\x6e\x76\x80\x70\x1b\x64\x6b\xa0\xbe\x64\x1f\xf7\x1d\xf7\x4d\x91\x91\xc9\x97" +"\x08\xa4\xfb\x68\x72\x07\xb5\x84\x99\x82\x75\x1a\x6f\x7a\x6e\x52\x43\x1e\x62\xcd\x6a\xe2\x7f\xd5\x08\xf7\x11\xbd\xc4\xc2\xce\x1a" +"\xce\x51\xba\x3b\xfb\x02\x40\x38\xfb\x0f\x72\x8e\x75\x93\x5e\x1e\xfb\x08\x59\x6b\x79\x68\x67\x08\x67\x65\x76\x5b\x5d\x1a\x28\xd9" +"\x47\xf7\x07\xd1\xc3\x9d\xb8\xcd\x1e\x5f\xb8\xb4\x79\xc0\x1b\xcd\xb6\xa3\xd5\xc8\x1f\xfc\x52\xf7\x9b\x15\xa5\xfb\x03\xa6\x4a\xc3" +"\x34\x08\x76\x63\x71\x84\x6c\x1b\x42\x55\xc6\xda\xd1\xaa\xb4\xdf\xb5\x1f\xf7\x05\xe6\x15\x82\xc5\x89\x98\xa4\x1a\xd8\xa4\xb5\xb8" +"\xac\x9e\x72\x61\x4f\x6b\x60\x3c\x5e\x1e\x0e\xfb\xd4\xf7\x03\xf8\x05\x40\x1d\xfb\xd4\xf7\xda\xf9\x41\x15\xfb\x2c\xfb\x04\x4f\x4a" +"\x5d\x23\x08\x70\x4f\x7e\x4a\x43\x1a\xfb\x1d\xb4\xfb\x03\xf0\xfb\x1e\x1e\xa2\x9a\x05\x54\xec\x7b\xc8\xf7\x08\x1a\xf7\x14\xa4\xf7" +"\x15\xb6\xeb\x1e\xaf\xdb\xb0\xbb\xdc\xd5\x08\x0e\xfb\xd4\x70\xfb\x47\x15\xf7\x0a\xdf\xbd\xbc\xbe\xda\x08\xc0\xdc\xa5\xe3\xec\x1a" +"\xd5\x7b\xd9\x6c\xd5\x1e\x74\xc2\x76\xad\x57\xd2\x74\x7c\x18\xc1\x31\x9d\x48\xfb\x06\x1a\xfb\x19\x6b\xfb\x2c\x59\x27\x1e\x6b\x4b" +"\x6c\x64\x3f\x45\x08\x0e\xf7\x91\xf8\x76\x15\x80\x91\x6e\x9c\x7f\x98\x73\xb0\x19\xae\x75\x7a\x98\x73\x1b\x72\x73\x71\x6f\x7a\x94" +"\x7e\x9c\x80\x1f\x82\x99\x95\x89\xa8\x1b\xb7\x8a\x98\x88\xac\x78\x96\x85\x18\x80\x85\x6a\x79\x7f\x88\x5e\x89\x19\x6e\x7f\x88\x84" +"\x7f\x1f\x7b\x82\x81\x7b\x7b\x1a\x6e\xa2\x72\xa6\xa4\x9b\x97\xaf\xa0\x1e\xa0\xaf\x96\x95\xac\x9f\x96\x91\x18\x7f\x07\x88\x5f\x89" +"\x83\x76\x66\x08\x7f\x75\x86\x7e\x7d\x1a\x6b\x9f\x77\xaa\xa9\x9f\x9f\xab\x9a\x87\x97\x7e\xa1\x1e\x76\xb0\x89\x93\x88\xb7\x08\x97" +"\x07\x96\x85\xac\x77\x96\x81\xa0\x67\x19\x67\xa0\x9b\x7f\xa4\x1b\xa6\xa2\xa4\xa8\x9b\x81\x9b\x7b\x94\x1f\x92\x7f\x7f\x8e\x6e\x1b" +"\x5e\x8d\x7f\x8e\x6a\x9d\x80\x91\x18\x96\x91\xac\x9e\x98\x8e\xb7\x8c\x19\xa8\x95\x8d\x94\x99\x1f\x9c\x96\x94\x98\x9c\x1a\xa7\x73" +"\xa5\x72\x73\x7a\x7e\x68\x75\x1e\x73\x66\x7f\x7e\x6e\x7a\x80\x85\x18\x97\x07\x8e\xb8\x8d\x93\xa0\xb0\x08\x98\xa1\x8f\x96\x9b\x1a" +"\xab\x77\x9f\x6d\x6c\x77\x76\x6c\x7c\x8f\x7f\x98\x75\x1e\xa0\x66\x8d\x83\x8e\x5e\x08\x0e\x38\xf7\x85\xf7\xbd\x15\xfb\x64\x33\xf7" +"\x64\xfb\x65\xe3\xf7\x65\xf7\x64\xe3\xfb\x64\xf7\x65\x33\x06\x0e\xfc\x27\x5c\xfb\x4a\x40\x1d\xfb\xd4\xc9\x1d\xfc\x27\xcd\xf7\x1b" +"\x15\x60\x6b\x6b\x60\x62\xab\x6b\xb4\xb5\xac\xab\xb5\xb4\x6a\xac\x63\x1f\x0e\xfc\x0b\xf7\x93\xf9\x41\x15\xfb\xd3\xfd\x53\x05\xe2" +"\x06\xf7\xd3\xf9\x53\x05\x0e\xf7\xdb\xf9\x3f\x15\x54\x54\x71\x5d\x5e\x1f\x2e\x2b\x4d\xfb\x35\xfb\x28\x1a\xfb\x19\xca\x34\xec\xb5" +"\xb3\x99\xa8\xb2\x1e\xef\xd6\xda\xf7\x49\xf7\x31\x1a\xf7\x26\x50\xea\x30\x1e\x89\x6e\x15\xaa\x9d\x70\x5e\x78\x87\x6b\x84\x66\x1f" +"\x79\x35\x59\xfb\x55\x75\x49\x08\x2b\x6a\x6e\x65\x62\x1b\x6d\x77\xa5\xb3\xcb\xc3\xf7\x7e\xba\xf7\x17\x1f\xf3\xb0\xa7\xb3\xb0\x1b" +"\x0e\x90\x16\xf7\xed\xa2\x06\x3c\x8c\x79\x93\xb0\x1a\x95\x8c\x8e\x96\xb4\x1e\xf7\x2e\xf8\xc4\x30\x75\x4c\x7f\xfb\x08\x79\x19\x89" +"\x74\x05\x8f\xa5\x9c\x8c\xa0\x1b\xa9\x9a\x80\x75\x85\x89\x82\x89\x82\x1f\xfb\x14\xfc\x5f\x05\x54\x7a\x6d\x78\x43\x1b\x0e\xf8\x37" +"\xf7\x53\x15\x72\x06\x66\x49\x76\x7f\x3a\x89\x08\xfb\x29\x06\xf7\x58\xf7\x3b\x05\xea\xdc\xbc\xdc\xd6\x1a\xe9\x43\xd5\x2f\x56\x5b" +"\x77\x63\x5f\x1e\x6e\x71\x7b\x73\x6f\x55\xa1\x7f\x18\xc6\xb3\xb4\xa6\xbf\x1b\xc6\xad\x62\x46\x2f\x4e\x31\xfb\x50\xfb\x4f\x1f\x31" +"\x31\x05\x73\xf8\x03\x07\x0e\xf7\x14\xf7\xef\x15\xb5\x89\x9e\x87\xa3\x7f\x08\xba\x72\xa4\x5b\x48\x1a\x31\x5a\x43\x4e\x7b\x7b\x91" +"\x93\x83\x1e\x89\x8d\x85\x95\x7a\xa3\x08\xae\x74\x7b\x96\x71\x1b\x66\x74\x75\x69\x5a\xbe\x6c\xdd\xf7\x35\xf7\x15\xf7\x09\xf7\x26" +"\xcd\x77\xb1\x52\xb6\x1f\x97\x91\x05\xd3\xb0\xae\xba\xc7\x1a\xd9\x4b\xc5\x36\x3a\x4e\x63\x2e\x4d\x1e\xa0\x7e\x05\xc4\xb5\xa6\x9d" +"\xba\x1b\xc0\xad\x68\x54\x3e\x4f\x5a\xfb\x15\x70\x1f\x0e\xf8\x59\xf7\x8c\x15\x46\x06\xf7\x0b\xf8\x47\x05\x4c\x06\xfc\x3f\xfc\x40" +"\x6f\x22\x05\xf7\x88\x06\x62\xfb\x2a\x05\xf7\x14\x06\xb5\xf7\x2a\x05\xcf\x06\xfc\x09\xed\x15\xf7\xae\xf7\xac\x3c\xfb\xac\x05\x0e" +"\xf7\x59\xf8\xc4\x15\xf7\x92\x06\xaf\xf7\x01\x05\xfb\xaf\x06\xfb\x17\xfb\xbd\xce\x88\xaa\x84\xb1\x77\x19\xc9\x6b\xaf\x52\x4b\x1a" +"\x35\x4c\x3f\x44\x75\x80\x94\xad\x76\x1e\xb3\x73\x7a\x98\x6d\x1b\x68\x73\x74\x69\x5c\xbf\x6b\xda\xf7\x39\xf7\x13\xf7\x07\xf7\x29" +"\xd8\x69\xcc\x4d\xb3\x1f\x69\xa2\x70\x94\x2f\x9e\x08\x0e\xf8\x8b\xf9\x3b\x15\xfb\x1a\x72\x4b\x71\x3a\x50\x08\xfb\x12\x2d\x40\xfb" +"\x1f\xfb\x21\x1a\xfb\x18\xcc\x3d\xf7\x01\xf7\x1d\xf7\x01\xf7\x0a\xf7\x28\xf5\x52\xcc\x2e\x77\x7e\x88\x81\x6e\x1e\xc9\xf7\x0f\xdc" +"\xd2\xf7\x1b\xbf\x08\xfb\x96\xfb\xa5\x15\xba\xa0\x76\x5d\x4c\x68\xfb\x19\x6a\x4c\x1f\x73\x7e\x75\x7c\x71\x1b\x66\x79\xa4\xc0\xc1" +"\xa0\xe3\xac\xde\x1f\xc0\xa0\x93\x94\xac\x1b\x0e\xde\xf8\x73\x15\xaf\xcb\xa5\x97\xf5\x8c\x08\xf7\x19\x06\xfb\xe0\xfc\xc0\x05\xe7" +"\x06\xf8\x11\xf9\x31\x05\xfc\x11\x06\x34\xfb\x52\x05\x0e\xf7\xe1\xf8\x11\x15\xf3\xb7\xb2\xb7\xd2\x1a\xae\x7f\xaa\x75\xa1\x1e\xad" +"\x69\x55\xa0\x55\x1b\xfb\x02\x3a\x3d\x21\x51\x9d\x66\xc3\x50\x1f\x86\x07\xfb\x10\x5f\x53\x51\x36\x1a\x28\xda\x48\xf7\x07\xf7\x14" +"\xe9\xe2\xf7\x0b\xcb\x73\xbf\x4d\xce\x1e\xfb\x10\x54\x15\xe1\x25\x96\x77\x57\x1a\x3f\x5e\x55\x4d\x4d\x66\xba\xd8\xd6\xa9\xbd\xda" +"\xc2\x1e\xf0\xdd\x15\x46\xcc\x76\xaf\xbc\x1a\xc3\xad\xb4\xbb\xbc\xab\x61\x4b\x58\x7c\x6d\x51\x4f\x1e\x0e\x85\x81\x15\xf7\x1b\xa4" +"\xcb\xa4\xdb\xc6\x08\xf7\x11\xe7\xd8\xf7\x23\xf7\x22\x1a\xcd\x76\xc7\x66\xb0\x1e\xa8\x6e\x64\x9a\x59\x1b\xfb\x1e\xfb\x00\xfb\x0b" +"\xfb\x2c\x27\xc8\x48\xe5\xa1\x98\x8e\x96\xa5\x1f\x4e\xfb\x11\x2d\x39\xfb\x0e\x66\x08\xf7\xda\xf9\x10\x15\xac\x9b\x74\x5d\x75\x87" +"\x67\x85\x6a\x1f\x83\x62\x8b\x8b\x72\x42\x08\x3c\x70\x83\x81\x61\x1b\x60\x74\xa2\xb4\xcb\xa7\xf7\x04\xa9\xc8\x1f\xb4\xa0\xa6\xa0" +"\xaa\x1b\x0e\xfb\xd4\xed\xf7\x1b\x15\x28\x0a\xe8\xf7\xd8\x15\x28\x0a\x0e\xfb\xd4\x7f\xfb\x4b\x44\x0a\x64\x3c\x61\x1e\xf7\x6c\xf8" +"\xfe\x2b\x0a\x38\xf8\xbd\xf8\xed\x15\xfc\x85\xfb\xa4\x86\x78\xf7\xf0\xfb\xb0\xad\xf7\x16\xfb\x7f\xf7\x54\xf7\xe5\xf7\x4e\x05\x0e" +"\x38\xf8\xad\xf8\x23\x15\xfc\x8c\x33\xf8\x8c\x06\xfb\x08\x04\xfc\x8c\x33\xf8\x8c\x06\x0e\x38\x94\xa5\x15\xf8\x84\xf7\xa4\x91\x9f" +"\xfb\xf0\xf7\xaf\x68\xfb\x16\xf7\x80\xfb\x53\xfb\xe5\xfb\x4f\x05\x0e\xf7\x58\xf7\x64\x15\xa7\xd1\x9b\xa2\xb1\xa4\xcd\xb6\x18\xe5" +"\xc5\xaf\xbd\xca\x1a\xe1\x45\xc5\x21\x26\x41\x55\x40\x65\xa5\x6e\xae\xad\xa6\xa6\xac\x9a\x86\x98\x7e\x9c\x1e\x83\x95\x88\x91\x91" +"\x1a\x9f\xa9\x9d\xab\xb6\xa5\x6d\x5a\x5b\x77\x5d\x5f\x54\x1e\x62\x58\x5d\x51\x76\x5d\x87\x54\x19\x7e\x3b\x2b\x0a\xf7\x47\xf8\xb5" +"\xf8\x63\x15\xb5\x75\x7d\x95\x67\x1b\x60\x60\x78\x6a\x6b\x1f\x58\x55\x6b\x3c\x42\x1a\x4b\xb4\x59\xbf\xb6\xba\xa7\xb9\xae\x1e\x62" +"\x8d\xb5\x69\xbc\x1b\xf0\xe1\xf7\x05\xf7\x18\xf7\x3c\xfb\x25\xf7\x16\xfb\x51\xfb\x64\xfb\x39\xfb\x32\xfb\x5b\xfb\x57\xf7\x38\xfb" +"\x2b\xf7\x68\xd4\xbe\x99\xb8\xec\x1f\x7e\xae\x05\x67\x3d\x59\x7f\x45\x1b\xfb\x40\xfb\x0f\xf7\x0f\xf7\x3f\xf7\x51\xf7\x0a\xf7\x1b" +"\xf7\x39\xf7\x31\xf7\x16\xfb\x0d\xfb\x26\x59\x79\x50\x6e\x63\x1f\x69\x74\x70\x7a\x6d\x1b\x73\x7e\x9b\xa8\x94\x8b\x90\x8d\x91\x1f" +"\xcc\xf7\x95\x05\x44\x06\x45\x69\x15\xa8\x89\x9a\x74\x89\x63\x89\x5f\x7b\x50\x75\x61\x08\x61\x75\x6d\x72\x6e\x1b\x67\x74\xac\xbf" +"\xc0\x9e\xbf\xab\xb0\x1f\xa7\xab\xad\x9f\xa4\x89\x08\x0e\x99\x27\x1d\x0e\x99\xf7\x08\xf9\x18\x15\xaf\x89\x94\x89\x97\x84\x08\x94" +"\x86\x92\x7e\x7f\x1a\x81\x87\x75\x84\x72\x1e\xfb\x0e\xfc\x55\x7b\x58\x7b\x7c\x5b\x85\x19\x72\xf7\xc1\x07\xf7\x4b\xf7\x04\xd9\xf7" +"\x13\xda\x68\xb1\x25\xac\x1f\xd7\x9e\xaa\x99\xae\xa8\x08\xa9\xa4\x9c\xb3\xb4\x1a\xeb\x3a\xbd\xfb\x2f\x1e\xfb\xa4\x06\xf7\x2d\xfb" +"\xdf\x15\xcd\x89\xa9\x85\x9f\x7a\x08\xa2\x78\x96\x6f\x66\x1a\x50\x74\x4d\x67\x67\x1e\x70\x70\x69\x7e\x5f\x1b\x64\x79\x95\xa2\x93" +"\x8c\x92\x8f\x99\x1f\xf7\x1b\xf8\x87\x15\xaf\x95\x95\x93\xab\x1b\xc5\xa8\x69\x46\x4c\x76\x5c\x63\x71\x1f\x6c\x77\x69\x84\x41\x88" +"\x08\x0e\x99\x33\x1d\x0e\xd0\x65\x0a\x0e\x99\x24\x1d\x0e\x99\xf8\x97\xf8\x6c\x15\x6f\x8f\x5c\x2d\x77\x80\xfb\x17\x8a\x19\xc8\xf7" +"\x73\xb1\x0a\x74\x91\x70\x53\x1a\xa6\x86\xb6\xf7\x52\x05\xfc\xa9\x72\x06\x9f\x1d\xf7\xbb\xa4\x07\x53\x8f\x7c\x94\xaa\x1a\x97\x8e" +"\x9a\x93\xa5\x1e\x8d\x92\x8c\x90\x8c\x8e\xc1\xf7\x5d\x18\xf6\x89\xa9\x77\x47\x1a\x7d\x8a\x80\x88\x78\x1e\xa7\x86\x05\x0e\xd0\x35" +"\x0a\x0e\xf7\x11\xf9\x25\xd5\x1d\x92\x8c\x90\x8e\x95\xf7\x01\xf8\x21\x18\x9b\xc0\x99\x97\xbe\x92\x08\x56\x1d\x5c\xfb\x41\x05\xfb" +"\x83\x06\xc1\xf7\x5b\xab\x1d\x86\x91\x87\x5c\x1d\x78\x84\x70\x1e\xfb\x0e\xfc\x55\x4f\x1d\x07\x0e\xfb\x9c\x27\x0a\x0e\xf8\xa0\x6a" +"\x0a\xc0\x9a\x98\xbc\x91\x19\x0e\x99\x58\x0a\x0e\x61\x2f\x0a\x0e\xf7\x80\xfa\x29\xf9\x31\x15\xfb\x68\x06\xfb\xca\xfc\x74\x55\xf8" +"\x74\x05\xfb\x71\x72\x06\xca\x88\x94\x87\x6f\x1a\x7d\x87\x79\x84\x71\x1e\xfb\x01\xfc\x09\x63\xfb\x16\x84\x80\x55\x7f\x19\x72\xf7" +"\x63\xa4\x07\x4b\x93\x7b\x97\xb4\x1a\x9c\x90\xa4\x99\xbd\x1e\xf0\xf8\x05\xce\xfc\xc3\x05\xa7\x06\xf8\x0b\xf8\xd1\xfb\x11\xfc\x64" +"\x7b\x55\x78\x7d\x4a\x87\x19\x72\xf7\xcc\xa4\x07\x51\x8e\x7d\x93\xab\x1a\x96\x8d\x96\x91\xa2\x1e\x8c\x90\x8c\x90\xf7\x0f\xf8\x55" +"\x9a\xbf\x9a\x99\xbe\x91\x19\x0e\xd0\x2e\x0a\x0e\xd0\x26\x1d\x0e\x61\xf7\x05\x73\x1d\x0e\xd0\xf9\x0e\x63\x15\x4f\x51\x67\x79\x4e" +"\x1b\x70\x77\x8f\x96\x67\x1f\x61\x98\x72\x93\x63\x92\x5e\x8e\x19\x6c\x8d\x84\x8d\x8f\x1a\x8b\x8c\x8d\x8c\x8c\x1e\x92\x92\x95\x96" +"\x95\x95\x9c\x9b\x19\xf7\x16\x93\xc2\x9f\xd8\xd0\x08\xf7\x02\xee\xce\xf7\x20\xf7\x19\x1a\xf7\x1b\x25\xed\xfb\x20\xfb\x6c\xfb\x62" +"\xfb\x7b\xfb\x86\x49\xa4\x4f\xb8\x61\x1e\xa5\x72\x98\x84\xc0\x78\x93\x88\x8e\x89\x8e\x87\x89\x88\x8a\x89\x89\x89\x8a\x8a\x86\x87" +"\x83\x84\xfb\x30\xfb\x16\x18\x99\x73\x05\xa1\xc3\xa5\x91\xab\x1b\xa8\xa2\x86\x7b\xbf\x1f\x77\xc9\xac\x85\xb4\x1b\xf7\x01\xd0\xb2" +"\xf7\x02\xdc\x1f\xfb\x65\xf9\x5a\x15\xc7\xb4\x5b\x44\xfb\x0d\x4e\xfb\x5b\x47\x29\x1f\x48\x5d\x5e\x6d\x55\x1b\x4c\x64\xb9\xd4\xf2" +"\xbe\xf7\x4c\xc2\xec\x1f\xe5\xbe\xc0\xb4\xcc\x1b\x0e\x99\x3b\x1d\x0e\x2a\x36\x0a\x0e\x61\x43\x0a\x0e\xd0\x21\x0a\x0e\x99\xf9\x5f" +"\xf9\x31\x15\xfb\x54\x72\x06\xb8\x87\x8b\x8b\x94\x85\x08\x92\x87\x8f\x82\x82\x1a\x74\x77\x60\x64\x4d\x1e\xfb\x52\xfb\xc2\x58\xf8" +"\x25\x05\x8a\x91\x8b\x8f\x91\x1a\xad\x93\x90\xcf\x91\x1e\xa4\xfb\xbe\x72\x07\xc9\x91\x81\xfb\x23\xa1\x1f\xd7\xfc\x91\x05\xab\x06" +"\xf8\x1d\xf9\x02\x98\x9e\x9d\x97\xa7\x94\x19\x0e\xf7\x80\x2c\x0a\x0e\x99\xf8\xde\xa4\x15\x43\x93\x7c\x99\x6e\xe9\x41\xf7\x81\x18" +"\xf7\x5b\xf7\x61\xb7\xb7\x9f\x97\xae\x90\x19\xa4\xfb\x5f\x72\x07\xa5\x88\x9b\x88\x90\x88\x08\x90\x88\x8e\x84\x84\x1a\x79\x78\x71" +"\x58\x55\x1e\x2d\x28\x81\xac\x88\x97\x87\x95\x19\x74\xd3\x80\xb5\x9a\x1a\xa2\x96\x94\xac\x8f\x1e\x8f\x97\x8c\x8d\x99\x1f\xa4\xfb" +"\xc5\x72\x07\xc7\x85\x9b\x80\x9a\x5d\xdf\xfb\xa4\x18\x71\x6f\x86\x86\x66\x62\xfb\x32\xfb\x42\x6c\x6f\x61\x83\x08\x72\xf7\x6a\xa4" +"\x07\x5e\x8f\x77\x98\xa2\x1a\x98\x93\x98\xa1\xa4\x1e\xf7\x1a\xf7\x28\x8f\x7c\x8d\x84\x98\x65\x19\xa6\x3e\x96\x61\x75\x1a\x71\x7d" +"\x84\x55\x86\x1e\x72\xf7\xc8\x07\x0e\x61\x2d\x0a\x0e\x61\x3f\x1d\x0e\xfb\xd4\xf7\xf7\xf9\x13\x15\x92\xae\x05\xfb\x5c\x06\xfb\x5b" +"\xfd\xd5\x05\xf7\x6f\x06\x92\xae\x05\x3d\x06\x73\x81\x92\x9c\x8a\x1f\xf7\x32\xf9\x38\x9a\xc9\x8b\x8b\xb0\x8c\x19\x0e\xfc\x0b\x8a" +"\xf9\x41\x15\xf7\x58\xfd\x53\x05\xdf\x06\xfb\x57\xf9\x53\x05\x0e\xfb\xd4\x5a\xfb\x0e\x15\x84\x68\x05\xf7\x5b\x06\xf7\x5c\xf9\xd3" +"\x05\xfb\x70\x06\x84\x68\x05\xd9\x06\xa3\x95\x84\x7b\x8c\x1f\xfb\x32\xfd\x39\x7c\x4f\x8b\x8b\x66\x8a\x19\x0e\x38\xf7\x4d\xf7\xc7" +"\x15\xf7\x15\xf7\xa7\xf7\x18\xfb\xa7\x05\xe5\x06\xfb\x4a\xf8\x05\x05\x3a\x06\xfb\x46\xfc\x05\x05\x0e\xf8\x6c\xfb\x23\x15\xd0\xfc" +"\x85\x46\x07\x0e\xfb\xd4\xf7\xd3\x80\x0a\x0e\x25\x1d\x0e\xd7\xf9\x16\x15\xbc\x99\x84\x74\x7e\x7e\x58\x71\x2e\x1f\x2d\xfb\xdb\x05" +"\x81\x67\x81\x63\x86\x1a\x6f\xd3\x6b\xcd\xf7\x37\xf7\x31\xf7\x40\xf7\x47\xd4\x5d\xbe\x49\x58\x67\x74\x47\x58\x1e\xe5\xf7\xdc\x44" +"\x7e\x59\x83\x34\x82\x19\xf7\x5b\xfb\xa7\x15\xa8\x9a\x74\x5d\x50\x70\x2e\x67\x4d\x1f\x4e\x69\x64\x6d\x60\x1b\x79\x7e\x96\x9b\x96" +"\x9b\xd4\x96\xb2\x1f\x97\xb7\x9f\xc4\x9b\xaf\x08\xc4\xa5\xaa\xa9\xad\x1b\x0e\xfb\x65\x3e\x1d\x0e\x59\x0a\x0e\xfb\x65\x22\x0a\x0e" +"\xfb\xd4\xf7\xdc\xf8\x55\x15\x2f\x06\x46\x1d\xa9\xa0\xa1\xaa\xbc\x65\xaa\x4e\x57\x5a\x75\x64\x68\x1e\x61\x5d\x78\x62\x6e\x26\x08" +"\x42\x06\x82\x61\x05\xd4\x06\x5b\xfb\x66\x68\xfb\x32\x86\x73\x42\x1d\xb5\xb0\x99\xa8\xaa\x1e\xb3\xaf\xa6\xc0\xac\xf2\xa3\xda\x96" +"\xb9\xc1\xf7\x90\x08\xe5\x06\x0e\x3f\x0a\x0e\x2a\xf8\x70\xf7\x22\x15\x4d\x60\x78\x76\x5a\x0a\xfc\x0b\x2c\x1d\x5f\xf8\xc1\x57\x1d" +"\xfc\x0b\xaa\xf8\x2b\x15\xbe\x96\x86\x71\x7e\x87\x74\x83\x6d\x1f\x2f\xfb\xf7\x81\x0a\xca\xef\xd0\xd7\xf7\x2f\xb3\x1e\xf7\x06\xf8" +"\x4a\x4f\x7e\x65\x86\xfb\x02\x81\x19\xf7\x47\xf7\x8e\x57\x1d\x75\x1d\x0e\xfc\x0b\x41\x0a\x0e\xf7\x11\xad\xf8\x2b\x15\x93\x06\xa7" +"\x8c\x9d\x81\x7a\x1a\x7d\x83\x6c\x70\x29\x1e\x48\xfb\x82\x05\xf7\x0d\x06\xc0\xf7\x52\xb1\xe1\xc3\xce\x08\xa5\xa2\xa7\x9f\x99\x1b" +"\x95\x93\x81\x7e\x7b\x7f\x60\x6a\x27\x1f\x4a\xfb\x63\x05\xf7\x0c\x06\xc5\xf7\x52\x92\x9f\xaf\xca\x08\xd5\xb5\xb3\xb5\xa9\x1b\x97" +"\x96\x81\x80\x85\x88\x80\x87\x7e\x1f\x5e\xfb\x17\x05\x76\x4c\x7c\x4d\x6f\x1a\x62\xa3\x75\xb6\xc9\xb3\xac\xed\xc5\x1e\x75\x98\x79" +"\x70\x81\x7d\x8a\x8a\x19\x72\x78\x80\x82\x81\x1b\x82\x84\x91\x93\x96\x8b\x8b\xa0\xce\x1f\xb8\xf7\x19\x05\x9a\xb6\x93\xb1\xa5\x1a" +"\xb4\x6a\xa9\x5f\x47\x5c\x62\xfb\x16\x38\x1e\x9f\xbe\x91\xa3\xa7\x1a\xb6\x72\xa4\x61\x6f\x6d\x80\x74\x6f\x1e\x66\x70\x6d\x64\x4a" +"\x27\xcb\xf7\x5b\x18\x4e\x7d\x71\x87\xfb\x05\x82\x08\x0e\x2a\x30\x1d\x0e\x23\x0a\x0e\xa2\xf8\x2b\x15\xb8\x89\x94\x87\x78\x1a\x82" +"\x83\x66\x7d\x57\x1e\x27\xfc\x18\x78\x49\x83\x82\x5b\x8c\x19\x70\xf7\x8d\xa6\x07\x59\x8c\x7c\x92\xa3\x1a\x98\x92\xab\x9e\xd0\x1e" +"\x92\xa3\x8b\x8d\x8f\x9a\x08\x79\xae\x97\x87\xa0\x1b\xf7\x1c\xf7\x21\xf7\x48\xf7\x42\xd5\x61\xba\x49\x52\x5f\x6b\x38\x50\x1f\xb1" +"\xf7\x07\x25\x7b\x64\x85\x57\x85\x19\xf7\x97\x60\x15\xa5\x89\x9a\x75\x89\x6a\x87\x4a\x6b\x27\x67\x4a\x08\x55\x6c\x6b\x6f\x69\x1b" +"\x75\x7a\x9b\x9f\x9b\x93\xad\xa5\xe2\x1f\xa3\xdc\x96\xa8\x9b\xa3\xa4\xb2\xac\xa4\xa5\x89\x08\x0e\xf8\x07\xfb\x46\x15\x7d\x06\x67" +"\x7c\x93\x9f\x9d\xb0\xf7\x1d\xb6\xf7\x20\x1f\xa2\xd6\x9e\xd1\xb6\xf7\x33\x08\xfb\x01\x06\x7c\x50\x86\xa7\x88\x96\x82\x96\x19\x99" +"\x81\x76\x93\x74\x1b\x3f\x33\x48\x24\x50\x1f\x68\x4e\x7a\x50\x54\x1a\x3a\xb2\x5a\xcc\xc7\xb3\xa8\xdd\xbf\x1e\x4c\xfb\x69\x7a\x57" +"\x80\x83\x4d\x88\x19\x70\xf7\x9f\x07\x3a\xf9\x04\x15\xa1\x8a\x98\x78\x6f\x1a\x56\x66\xfb\x0f\x68\x4d\x1e\x59\x6e\x6f\x73\x6c\x1b" +"\x71\x7e\x9e\xb1\xc3\xa7\xe5\xb4\xd3\x1f\xab\xc3\xae\xaa\xa7\x89\x08\x0e\xfb\x9c\x40\x0a\x0e\xfb\x9c\x3d\x1d\x0e\xfc\x0b\xf7\xad" +"\xf8\x55\x15\x43\x83\x1d\x2a\x26\x0a\x0e\xfb\x65\x9b\xf8\x2b\x15\xaa\x94\x88\x7e\x92\x1f\x9b\x6b\x96\x34\xfb\x00\x1a\x87\x8b\x7a" +"\x8a\x77\x1e\x87\xfb\x1c\x05\xa5\x06\xf7\x13\xf7\x0d\xba\xc0\xc2\xdc\x08\xb3\xc4\xa0\xc1\xb5\x1a\xae\x6e\xab\x6b\x6d\x71\x70\x6c" +"\x7a\x91\x7d\x9d\x77\x1e\x9a\x7b\x90\x81\x80\x1a\x68\x70\x63\x28\xfb\x05\x1e\x87\xf7\x58\x85\xc5\x76\xdb\x59\x7f\x74\x87\x39\x7f" +"\x08\x0e\x99\x32\x1d\x0e\xf8\x24\xf7\x0f\x15\x59\x64\x81\x82\x79\x1b\x78\x81\x99\xb2\x83\x1f\x6b\xf7\x30\x8e\x8f\x8c\x8d\x90\x92" +"\x19\xc5\xae\xa4\xa3\xa2\x1b\x91\x92\x88\x85\x97\x1f\x82\x99\x92\x89\x96\x1b\xa9\xa5\xa3\xa8\xab\x70\xa8\x6c\x5c\x6c\x70\xfb\x03" +"\x3b\x1f\x79\xe2\x83\xa3\x78\xa6\xfb\x3b\x73\x18\x70\x07\x8d\x9d\x92\x8b\x95\x1b\xab\x99\x79\x5a\x95\x1f\xa9\xfb\x2e\x5f\x45\x05" +"\x6a\x77\x81\x83\x79\x1b\x85\x86\x8d\x91\x81\x1f\x94\x7b\x80\x8f\x7e\x1b\x6c\x73\x73\x6b\x68\xa5\x73\xb1\xbd\xa1\x9f\xeb\xc6\x1f" +"\xa3\xb2\x05\xfb\x07\xa1\xa4\x63\xbd\x1b\xbb\xb5\xad\xe3\xc8\x1f\x0e\xfb\x65\x31\x1d\x0e\xfb\x9c\x34\x1d\x0e\xfb\xc5\xf8\x48\xf9" +"\x42\x15\xfb\x33\x51\x6a\xfb\x01\x6c\x1f\x5d\xfb\x47\x77\x43\x6f\x73\x32\x77\x19\xc9\x7b\xa1\x78\x68\x1a\x73\x81\x5f\x7b\x5b\x1e" +"\x78\x53\x7b\x42\x6d\x1a\x71\x93\x78\x9c\x7c\x1e\xa4\x76\xb2\x83\xe8\x89\x8e\x97\x18\x50\x96\x75\xa0\xb9\x1a\xa5\x96\xbd\x9e\xcb" +"\x1e\x9e\xc7\x95\xba\xa2\x1a\xb5\x79\x99\x41\x9f\x1e\xed\x9e\xa9\xa5\xa2\xe0\xb8\xf7\x3f\x18\x9f\xd7\xaf\xac\xdd\x9a\x08\x0e\xfc" +"\x45\xcd\xfb\x8e\x15\xe3\xfa\x7a\x33\x06\x0e\xfb\xc5\xfb\x15\xfb\x4f\x15\xf7\x33\xc5\xac\xf7\x01\xaa\x1f\xb9\xf7\x47\x9f\xd3\xa7" +"\xa4\xe4\x9e\x19\x4e\x9b\x74\x9e\xae\x1a\xa3\x95\xb7\x9b\xbb\x1e\x9e\xc4\x9b\xd5\xaa\x1a\xa2\x83\x9e\x7a\x9a\x1e\x72\xa0\x64\x93" +"\x2e\x8d\x88\x7f\x18\xc5\x81\xa2\x74\x5f\x1a\x71\x81\x5e\x76\x45\x1e\x78\x49\x82\x62\x74\x1a\x61\x9c\x7d\xd6\x77\x1e\x29\x78\x6d" +"\x71\x74\x36\x5e\xfb\x3f\x18\x77\x3f\x67\x6a\x39\x7c\x08\x0e\x38\xf8\x63\xf7\xce\x15\x6a\x72\x78\x7f\x74\x1b\x78\x7c\x90\xa1\x5a" +"\x1f\xad\x3c\x75\x92\x66\x1b\x58\x65\x71\x51\x6a\x1f\xc1\x5c\x05\xab\xa3\x9b\x95\xa9\x1b\xae\xaa\x81\x72\xba\x1f\x72\xba\xa4\x83" +"\xad\x1b\xba\xa9\xa0\xcb\xba\x1f\x0e\xfb\x9c\xf7\x55\xf7\xa7\x15\x60\xfb\x02\x60\x2b\x52\xfb\x04\x08\x71\x5c\x86\x7c\x71\x1a\x5e" +"\xa6\x6e\xb5\xaa\xa3\x9c\xa8\x99\x1e\x93\x9d\x8d\x98\x8d\xb4\x8f\xd7\x9e\xf7\x11\xa9\xf7\x2d\x08\xa6\xf7\x75\x15\x61\x6a\x6c\x64" +"\x64\xae\x68\xb2\xb5\xab\xab\xb5\xb3\x6c\xa9\x61\x1f\x0e\xf8\x43\xf8\xd4\x15\x68\x06\x62\xfb\x09\x05\x8d\x7f\x84\x8c\x82\x1b\xfb" +"\x22\xfb\x23\xfb\x36\xfb\x36\x31\xc1\x54\xe9\x85\x1f\x5d\xfb\x16\x05\xad\x06\xba\xf7\x19\xce\x98\xb0\xa9\xca\xe5\x19\x70\x9d\x62" +"\x4f\x68\x70\x61\x89\x19\xe7\xf7\x99\x05\x83\x95\x96\x88\x99\x1b\xb0\xa7\xa8\xb2\xad\x7b\xa4\x66\x9f\x1f\xfb\x40\xfc\x1c\x15\x77" +"\x96\x84\x93\x84\x9b\x08\x84\x9b\x87\xa0\x9d\x1a\xc5\xa5\xe2\xaf\xcb\x1e\xbd\xa7\xa6\xa2\xaa\x1b\x98\x97\x83\x83\x88\x1f\x0e\xf8" +"\x1e\xf8\x06\x15\xfb\x06\x06\xb2\xf7\x5e\x05\xbd\x95\xa0\xa6\xa8\x1b\x99\x95\x82\x7f\x86\x8a\x84\x89\x84\x1f\x89\x7f\x89\x7f\x81" +"\x1a\x6e\xa2\x75\xa9\xae\xa5\xa8\xb2\xbf\x5d\xb2\x4c\x52\x55\x70\x5a\x61\x1e\x5a\x54\x73\x51\x72\xfb\x10\x08\x22\x06\x81\x4f\x05" +"\xf7\x01\x06\x81\x37\x89\x80\x84\x48\x08\x96\x71\x7d\x8e\x76\x1b\x52\x64\x68\x57\x58\xb0\x68\xc0\xb6\xa7\x9c\xb6\xa6\x1f\x5e\xbe" +"\xad\x7b\xb5\x1b\xb5\xb3\x9f\xae\xa4\x1f\xa0\xa7\x96\xa6\x97\xc4\x08\x72\x06\x5a\x75\x77\x7d\x5b\x1b\x6a\x6a\x94\xa2\x50\x1f\x96" +"\x9c\xa5\xb6\xa4\xcf\x98\xc5\x19\xf7\x07\x06\xfb\xa3\xfb\x70\x15\x5a\x80\x79\x75\x6d\x1b\x6a\x74\xa0\xa9\xa9\x9f\x9f\xaa\xa1\x9d" +"\x83\x75\xa3\x1f\x0e\xfc\x7a\xcf\x1d\xf8\x8c\xf7\xea\x15\xfb\x1b\x06\xf7\x3a\xf7\x7d\xad\xb9\x9e\x9a\xb3\x93\x19\xa4\xfb\x5c\x72" +"\x07\xc2\x89\x9a\x82\x68\x1a\x79\x85\x7e\x77\x6e\x1e\xfb\x1b\xfb\x56\x3b\xf7\x80\x05\x87\x97\x89\x96\x94\x1a\xa2\x9d\x92\xc4\x8d" +"\x1e\xa4\xfb\xac\x72\x07\xc2\x85\x92\x85\x9f\x58\xda\xfb\x83\x18\xfb\x11\x06\x7d\x59\x05\xf7\x22\x06\x75\x3d\x05\xfb\x21\x06\x7d" +"\x59\x05\xf7\x21\x06\x78\x48\x79\x52\x7d\x81\x3e\x86\x19\x72\xf7\xd6\xa4\x07\x48\x8e\x7d\x92\xac\x1a\x9e\x8f\xa1\x97\xb7\x1e\x8e" +"\x96\x05\xf7\x2c\x06\x99\xbd\x05\xfb\x2c\x06\xa0\xd9\x05\xf7\x2a\x06\x0e\xf8\x4f\xf8\x4c\x15\xfb\x0a\x06\xa1\xf7\x16\x94\xb1\x9d" +"\xab\x08\xa3\x99\x9e\x98\xa0\x1b\x9a\x95\x85\x82\x87\x88\x88\x85\x85\x1f\x7d\x7e\x85\x80\x7b\x1a\x6d\xa0\x77\xab\xaf\xa3\xa3\xb0" +"\xbd\x5c\xb0\x4c\xfb\x02\x34\x28\xfb\x3c\x66\x1e\x20\x06\x83\x5f\x05\xf4\x06\x45\xfc\x00\x7e\x49\x74\x4f\x77\x77\x19\x82\x81\x81" +"\x87\x7a\x1b\x7a\x83\x8f\x94\x90\x8d\x8f\x93\x93\x1f\x97\x99\x91\x97\x97\x1a\xa7\x74\xa1\x6d\x6a\x73\x72\x68\x57\xb7\x68\xcd\xf7" +"\x1a\xe2\xf7\x15\xf7\xa1\xba\x1e\xa6\xf7\x2e\x05\xf7\x08\x06\x0e\xf7\xb4\xf7\x11\x15\x88\x97\x92\x8a\x96\x1b\xcb\xc0\xc2\xce\xba" +"\x76\xbe\x64\xb8\x1f\x46\xdc\x05\x58\xc7\x7a\xaa\xab\x1a\xb6\xaf\xa9\xbd\xa9\xa7\x7e\x7c\x86\x87\x86\x81\x84\x1e\x7b\x7e\x85\x81" +"\x7c\x1a\x6d\xa4\x73\xa9\xad\xa3\xa5\xae\xc4\x52\xb4\x3c\x2f\x4c\x54\x3c\x5f\x9e\x5e\xaf\x63\x1e\x89\x88\x05\x8e\x7e\x74\x8e\x7e" +"\x1b\x51\x5d\x53\x45\x60\x9b\x65\xae\x60\x1f\xcd\x3b\x05\xd2\x35\x97\x77\x6a\x1a\x5e\x68\x6c\x58\x69\x6a\x99\x9a\x90\x8e\x90\x95" +"\x93\x1e\x9b\x99\x91\x96\x9f\x1a\xa8\x74\xa0\x6a\x69\x73\x72\x68\x50\xca\x5d\xdd\xe7\xd3\xc6\xd6\xb5\x7b\xad\x60\xc1\x1e\x30\xf7" +"\xab\x15\xc5\xf7\x03\xfb\x13\x48\x6c\x70\x70\x6b\x75\x7b\x93\xa2\x73\x1f\x74\xa0\x6f\xac\x73\xac\x08\x7a\xa4\x7f\xa9\xa0\x1a\xac" +"\xa3\xa4\xab\x1e\x0e\xad\xd5\x15\xb9\x5c\xd8\xda\x05\x75\xad\xa7\x83\xae\x1b\xaf\xa8\x94\xa0\xac\x1f\xd8\x3c\xba\xba\x3c\xd9\x05" +"\xa0\xa8\x94\xa8\xb1\x1a\xb0\x83\xa5\x75\xae\x1e\xda\xd9\x5c\xb8\x3e\x3e\x05\x9f\x6b\x6f\x93\x66\x1b\x66\x6f\x83\x77\x6a\x1f\x3e" +"\xd8\x5d\x5e\xd9\x3d\x05\x77\x6b\x82\x6e\x66\x1a\x66\x94\x6f\x9f\x6c\x1e\xf7\x23\xf7\x5e\x15\xc4\xb8\x5c\x4f\x51\x5c\x5c\x54\x52" +"\x5e\xba\xc6\xc7\xb8\xb9\xc4\x1f\x0e\xfc\x0b\xf7\x3d\x83\x0a\x0e\xf7\x88\x80\x0a\xf7\x87\xa3\x15\xfb\x08\x58\x40\x36\x39\x1a\x50" +"\xad\x64\xbe\xb4\xa9\xaa\xb5\xa6\x81\x9b\x6c\x9f\x1e\x75\x9a\x84\x95\x9a\x1a\xae\xb2\xb2\xda\xb5\x1e\x0e\xf7\x1d\x74\x0a\xf7\x25" +"\xde\x15\x9e\xa0\x94\x94\x9c\x9e\x08\xd1\xd3\xaa\xb4\xa0\x1a\x91\x85\x91\x84\x83\x7d\x82\x78\x78\x1e\x7e\x7f\x81\x83\x73\x7a\xfb" +"\x3e\xfb\x10\x18\x82\x07\xe0\x35\xc6\x4d\xa3\x70\x08\x83\x92\x8e\x89\x90\x1b\x94\x91\x92\x93\x9a\x81\xa6\x74\xbb\x1f\x0e\xfb\xd4" +"\xf7\x31\x74\x0a\x0e\xfb\xd4\xf7\x30\x87\x1d\x0e\x2a\x9c\xf8\x2b\x15\xd6\x06\x2f\xfc\x2f\x05\xfb\x21\x6c\x7c\x71\x5f\x1b\x7f\x86" +"\x8e\x91\x8f\x8d\x8e\x90\x91\x1f\x94\x95\x8e\x91\x96\x1a\xa7\x75\xa0\x6e\x6e\x77\x75\x6b\x5e\xb4\x6a\xc3\xbc\xbc\xa4\xb5\xac\x1e" +"\xaa\xb2\xac\xd0\x98\xbf\xc1\x0a\x7d\x54\x89\x82\x7a\x1a\x61\xa5\x73\xb8\xc7\xb1\xaa\xf4\xd0\x1e\x75\x98\x05\x52\x63\x75\x75\x7c" +"\x1b\x83\x83\x93\x93\x96\x93\xae\x98\xbc\x1f\x8c\x8f\xd4\xf7\xaf\x47\x86\x7d\x8a\x42\x87\x19\xfb\x0a\x06\xac\xf7\x0b\x97\xa8\xab" +"\xb2\x08\xa2\x9e\xad\x99\xb0\x1b\x9c\x94\x86\x80\x87\x89\x87\x86\x84\x1f\x80\x7f\x87\x80\x7e\x1a\x6c\xa4\x73\xac\xac\xa3\xa3\xac" +"\xc3\x51\xb2\x37\x4b\x4d\x73\x63\x65\x1e\x62\x5f\x76\x63\x67\x21\x08\x3f\x06\x0e\x2a\x9f\xf8\x2b\x15\xd5\x06\x2f\xfc\x26\x05\xfb" +"\x24\x6a\x7c\x6c\x68\x1b\x7e\x82\x90\x92\x8e\x8d\x8f\x8f\x91\x1f\x92\x95\x8e\x93\x95\x1a\xa7\x78\x9d\x6f\x6a\x78\x77\x6a\x5b\xb2" +"\x6a\xc5\xf2\xd5\xea\xf7\x53\xb9\x1e\xda\xf7\xda\x05\xf7\x27\x06\x3c\xfb\xd5\x05\x88\x7e\x89\x7e\x80\x1a\x69\xa9\x73\xb5\xc6\xaf" +"\xa9\xf4\xcf\x1e\x77\x96\x05\x56\x68\x74\x75\x79\x1b\x82\x83\x93\x94\x8f\x8b\x8c\x8f\x9a\x1f\xf7\x2b\xf8\xee\x28\x7f\x05\x9a\x3d" +"\x8b\x8b\x75\x1b\x4c\x50\x73\x64\x68\x1f\x63\x60\x78\x63\x69\xfb\x01\x08\x41\x06\xf7\xea\x16\xfb\x2b\x06\xa0\xe5\x9a\xb5\xa0\xae" +"\x08\xb1\xa3\xaa\xa0\xac\x1b\x9d\x9d\x82\x81\x89\x8a\x8a\x86\x83\x1f\x7f\x7a\x88\x83\x7e\x1a\x7b\x91\x7f\x9a\x80\x1e\x0e\xf8\x71" +"\xf7\xa1\x15\xfc\x88\x06\x7a\x30\x05\xf8\x88\x06\x0e\xf7\x47\xfb\x25\x15\x9b\xc4\x8f\x98\x9a\xca\xad\xf7\x20\xaf\xe7\xb2\xbc\x08" +"\x78\xbb\x84\xac\xb0\x1a\x9d\x8d\x9a\x8f\xa2\x1e\xaf\x98\x88\x76\xb1\x1f\x7e\xa1\x97\x87\x97\x1b\xad\xa3\xa0\xaa\xab\x76\x9f\x6a" +"\x7c\x81\x88\x7e\x72\x1f\x66\x79\x7d\x87\x6c\x8a\x93\xb0\x92\x9e\x99\x9d\x9a\x9e\x18\xa2\xa8\x94\x9f\xa1\x1a\xaa\x73\xa2\x6b\x68" +"\x76\x74\x65\x7b\x8e\x7c\x92\x70\x1e\x92\x75\x8d\x7f\x80\x1a\x7a\x88\x7b\x85\x76\x1e\x6b\x7f\x8e\x9e\x64\x1f\x98\x70\x7e\x8f\x7b" +"\x1b\x6b\x77\x77\x6c\x6c\x9f\x77\xaa\x9f\x99\x8f\x9a\xa6\x1f\xae\x9d\x90\x8c\xae\x8c\x82\x4e\x69\x4a\x5f\x64\x08\x90\x69\x8c\x77" +"\x73\x1a\x5a\x85\x3b\x84\x60\x1e\x6f\xfb\x41\x05\x0e\xf7\xa0\xf8\x6b\x15\x74\x76\x91\x9a\x6b\x1f\x97\x73\x7f\x8f\x7d\x1b\x6c\x76" +"\x77\x6e\x6e\x9d\x79\xad\x89\x1f\x9b\x8c\x90\x8c\xa5\x98\x08\x9e\xb1\x9d\x90\xab\x1b\x73\x2b\x7a\x69\x59\x5d\x08\x9f\x68\x8f\x79" +"\x57\x1a\x69\x8a\x7f\x85\x73\x1e\x65\x8e\x82\x8e\x61\x9e\x08\x96\x72\x7d\x90\x7e\x1b\x6e\x74\x74\x6e\x70\xa1\x77\xa7\x96\x98\x8e" +"\x95\xa2\x1f\xb5\x9b\x96\x8e\xb3\x8f\x7c\x5a\x85\x80\x6e\x61\x08\x76\x6e\x84\x7c\x79\x1a\x6d\xa2\x76\xaa\xae\x9e\xa0\xb2\x95\x89" +"\x95\x87\xa0\x1e\x85\xa4\x89\x97\xa0\x1a\xa2\x8c\x97\x90\x9f\x1e\xb0\x97\x88\x79\xb3\x1f\x7f\xa3\x97\x87\x98\x1b\xab\xa0\x9e\xa9" +"\xa9\x78\x9c\x6a\x8d\x1f\x7b\x86\x89\x7e\x71\x1f\x65\x79\x79\x86\x6b\x8a\xa3\xeb\x9c\xad\xbd\xb9\x08\x77\xaf\x87\x9b\xc2\x1a\xac" +"\x8c\x97\x91\xa2\x1e\xb1\x88\x94\x89\xb5\x77\x08\x7f\xa4\x99\x87\x98\x1b\xa8\xa2\xa2\xa8\xa6\x75\x9f\x6f\x80\x7e\x87\x82\x74\x1f" +"\x61\x7b\x80\x88\x63\x87\x9a\xbc\x91\x96\xa8\xb5\x08\xa0\xa8\x92\x9a\x9d\x1a\xa8\x74\xa1\x6c\x68\x78\x76\x65\x80\x8c\x81\x90\x77" +"\x1e\x91\x71\x8d\x7f\x76\x1a\x75\x8a\x7f\x86\x76\x1e\x0e\xfc\x27\xf7\x12\xf8\x29\x2b\x0a\xf7\xde\xf9\x18\x15\xc2\x06\xfb\x6d\xfd" +"\xd9\x05\xf7\x3f\x06\x92\xa4\x05\x50\x90\x7d\x90\x9c\x1a\x93\xb3\x8f\x9c\x8f\x9b\xf7\x3d\xf9\x1d\x18\x99\xc1\x8e\x8d\xdc\x92\x91" +"\xa4\x18\xfb\xbb\x06\x32\x4a\x75\x5f\x62\x1f\x60\x5d\x6a\x2e\x3f\x1a\x5e\x9c\x64\xa9\x76\x1e\xa4\x7a\xa2\x85\xbd\x89\x36\xfb\xda" +"\x18\x7b\x4d\x86\x7d\x83\x85\x80\x81\x7a\x87\x5a\x87\x84\x72\x18\xf7\x3e\x06\xad\xf8\x70\x15\x5d\x9f\x71\xb2\xbf\x1a\xc1\x9f\xd1" +"\xa7\xb9\x1e\xa8\xba\xa5\x9c\xca\x9b\x08\x0e\xfb\xc3\xf7\x46\xf8\x8e\x15\x35\x49\x49\x36\x35\xcf\x47\xe0\xde\xd0\xce\xdd\xe2\x48" +"\xd0\x35\x1f\x0e\xfb\xd4\x93\xfb\x4a\x40\x1d\xf7\x68\xfb\x4a\x44\x0a\x65\x3c\x60\x1e\xfb\x87\x73\x15\xf7\x08\xbe\xd6\xe1\xdc\x1a" +"\xc6\x69\xb2\x58\x62\x6d\x6c\x61\x70\x95\x7b\xa9\x77\x1e\xa2\x7c\x92\x81\x7d\x1a\x67\x64\x64\x3c\x61\x1e\x0e\xf7\xd6\xf8\x05\x44" +"\x0a\x64\x3c\x61\x1e\xfb\x87\x73\x40\x1d\xf7\xeb\x87\x1d\xfb\x25\x38\x15\x78\x76\x82\x81\x7a\x79\x08\x44\x42\x6d\x63\x76\x1a\x84" +"\x91\x86\x92\x94\x98\x94\x9d\x9e\x1e\x98\x97\x95\x93\xa3\x9d\xf7\x3e\xf7\x10\x18\x94\x07\x30\xe7\x5e\xb9\x6b\xb0\x08\x93\x84\x88" +"\x8d\x86\x1b\x82\x85\x84\x83\x7c\x94\x71\xa3\x5a\x1f\x0e\xf7\xef\xf7\x07\xf7\x1b\x15\x28\x0a\xf7\xe0\x16\x28\x0a\xf7\xe0\x16\x28" +"\x0a\x0e\xf7\xef\xe1\x6e\x15\xbb\x06\xf8\x4a\xf9\x73\x05\x5b\x06\x4b\x58\x5a\x70\x49\x1b\x66\x79\x92\xa2\x6f\x1f\xa0\x72\x77\x93" +"\x71\x1b\x20\x31\x28\xfb\x09\x3c\xbf\x52\xd4\xb0\xb0\x9b\xa7\xa7\x1f\xb4\xb5\xa8\xd8\xd0\x1a\x98\x8a\x96\x89\x9e\x1e\x81\xa3\x9a" +"\x88\xa0\x1b\xb4\xab\x97\xa9\xb3\x1f\xfb\xa0\x93\x15\x92\x8f\x88\x82\x98\x1f\x97\x83\x8e\x89\x96\x88\x95\x88\x8f\x89\x8c\x88\x08" +"\x8e\x84\x8f\x71\x7e\x1a\x25\x4d\x26\x4c\x6a\x7a\xa3\xb7\xe4\xc9\xf7\x14\xb4\x88\x1e\xf7\xd7\xfb\xc1\x15\x25\x2e\x28\xfb\x02\x34" +"\xbd\x54\xd9\xb1\xaf\x9a\xa6\xa4\x1f\xb8\xba\xa7\xd4\xd1\x1a\xd5\x64\xb8\x49\x1e\xa0\x6a\x15\xad\xa4\x68\x5e\x57\x76\x48\x6e\x61" +"\x1f\x69\x74\x73\x7c\x6d\x1b\x6a\x7b\xa1\xb9\xbf\xa5\xdd\xab\xb9\x1f\xa8\x9f\x9e\x98\x9f\x1b\xf7\xe9\xac\x15\x25\x2e\x27\xfb\x01" +"\x35\xbd\x53\xd8\xb2\xae\x9a\xa6\xa5\x1f\xb8\xba\xa7\xd4\xd1\x1a\xd5\x64\xb8\x49\x1e\xa0\x6a\x15\xad\xa4\x68\x5e\x57\x76\x48\x6e" +"\x61\x1f\x6a\x74\x73\x7b\x6d\x1b\x6a\x7b\xa1\xb9\xbf\xa6\xdd\xaa\xb9\x1f\xa8\x9f\x9e\x98\x9f\x1b\x0e\xf7\xc4\xf7\xa3\x15\x6f\x45" +"\x7b\x74\x65\x72\x49\x60\x18\x31\x51\x67\x59\x4c\x1a\x35\xd1\x51\xf5\xf0\xd5\xc1\xd6\xb1\x70\xa8\x69\x69\x70\x71\x69\x7c\x90\x7e" +"\x98\x7a\x1e\x93\x81\x8e\x85\x85\x1a\x78\x6d\x78\x6b\x60\x71\xa9\xbd\xba\x9e\xb9\xb8\xc2\x1e\xb4\xbe\xb9\xc5\x9f\xb9\x90\xc2\x19" +"\x9a\xf7\x78\x15\x28\x0a\x0e\xfb\xd4\xf7\xbd\xf8\x98\x37\x1d\xfb\xd4\xf7\x50\xf8\x98\x29\x1d\xfb\xd4\xf7\xd0\xf8\x98\x23\x1d\xfb" +"\xd4\xf8\x02\xf9\x23\x75\x0a\xfb\xd4\xf8\x1d\xf9\x03\x25\x0a\xfb\xd4\xf7\xf0\xf9\x3a\x15\x49\x6b\x69\x57\x0a\x7e\x06\x26\xb7\x5b" +"\xe8\xec\xcb\xc5\xf3\x9d\x1e\x0e\xfb\xd4\xf7\x77\xf9\x23\x2a\x1d\xfb\xd4\xf7\x0b\xf9\x23\x24\x0a\xfb\xd4\xf7\x7e\xf9\x86\x30\x0a" +"\xfb\xd4\x72\x2f\x15\x98\x7f\x05\x8e\x97\x92\x8c\x96\x49\x1d\xac\xc5\x1d\xb8\xce\x05\x5f\x06\x0e\xfb\xd4\xf7\x0a\xf8\x98\x15\x2b" +"\x1d\x2d\x1d\xf7\x82\x16\x90\x0a\xfb\xd4\xa7\xab\x15\x87\x85\x89\x89\x83\x81\x08\x62\x59\x7e\x70\x6e\x31\x0a\xb5\x9a\x8e\x9d\x94" +"\xaa\x1f\x8e\x95\x8c\x8e\x8c\x92\x08\x0e\xfb\xd4\xf8\x2f\xf9\x46\x20\x0a\xf7\xef\xa9\x0a\xf7\xb7\x99\x0a\x61\x7b\x96\xa5\x91\x8d" +"\x95\x8e\x97\x1f\xca\xf7\x85\x05\xf7\x02\x84\xa2\x7c\x4b\x1a\x83\x8b\x85\x8a\x7d\x71\x1d\x0e\xfc\x17\xf7\xcd\xf8\x78\x15\x88\x88" +"\x8b\x8b\x89\x88\x08\x74\x78\x7c\x7e\x84\x1b\x88\x89\x8e\x91\x9b\x91\xa4\x9b\xbb\x1f\xb9\xf7\x20\x3f\x87\x80\x68\x05\xaa\x84\x7d" +"\x98\x71\x1b\x38\x2a\xfb\x05\x2b\x5e\xa7\x6c\xb5\xb7\xa8\xa2\xcc\xb0\x1f\x81\x69\x8a\x85\x80\x1a\x77\x9f\x79\xa3\xa9\xa8\xa2\xc0" +"\xb1\x1e\xfb\x14\xf7\x4b\x15\x97\x8a\x93\x7f\x7c\x1a\x6d\x79\x4f\x76\x65\x1e\x67\x77\x75\x76\x78\x1b\x7e\x80\x98\x9a\xcd\xd0\xf7" +"\x0f\xae\x87\x1f\x0e\x61\x86\x0a\xcd\xf7\x88\xf7\x28\xde\xa0\xd1\xfb\x2a\x3a\xb7\xf7\x36\x9b\xc2\x9e\x98\xcd\x8f\x19\xa4\xfb\xd1" +"\x72\x07\x9c\x0a\x54\xfb\x5d\x27\x56\x75\x45\xf3\xc3\x59\xfb\x49\x7b\x57\x7d\x7e\x59\x84\x19\x72\xf8\xbd\x07\x0e\xd0\xe2\x1d\x77" +"\x8e\x6d\x1b\xfb\x6c\xfb\x62\xfb\x7b\xfb\x86\x67\x0a\x75\x90\x75\xb3\x0a\x55\x1b\x71\x78\x91\x9b\x77\x1f\x0e\xf7\xb7\xfa\x46\xf9" +"\x31\x15\xfb\xe3\x06\x7b\x6d\x8d\x8e\x5e\x1f\x8e\x6c\x82\x8b\x7b\x1b\xfb\x00\x49\x77\x54\x42\x1f\xfb\x0a\x32\x3f\xfb\x28\xfb\x21" +"\x1a\x30\xaf\x46\xce\x64\x1e\xb3\x73\xca\x7f\xcc\x8e\xf7\x2e\x92\x18\xa1\x06\x90\x94\x8b\x8c\x95\x1f\xa7\x06\xf7\xbc\x06\xc7\xf7" +"\x56\x70\x90\x05\xfb\x0d\x46\x44\x5d\xfb\x09\x1b\x57\x76\x95\xa3\x91\x8d\x95\x8d\x94\x1f\xcb\xf7\x89\xd6\x84\x9f\x86\x9a\x7e\x19" +"\x98\x7f\x92\x7a\x78\x1a\x82\x8a\x7c\x89\x7a\x1e\x88\x8b\x84\x8a\x82\x1e\xa6\x86\xd3\xf7\xa4\x70\x8e\x6b\x3e\x61\x70\x31\x8c\x19" +"\x87\x06\x76\x06\xc8\xf7\x70\x05\xb4\x96\x92\x91\xad\x1b\xbf\xbe\x7f\x79\xa3\x1f\xa4\x77\x98\x6e\x66\x1a\x7c\x8b\x83\x8a\x7d\x1e" +"\xa4\x85\x05\xfc\x90\xfb\xf7\x15\x44\x77\x6e\x70\x51\x1b\x42\x5b\xc0\xdb\xf7\x0a\xc1\xf7\x46\xca\xe6\x1f\xcf\xbb\xbd\xab\xc7\x1b" +"\xba\xa5\x75\x63\x7b\x87\x71\x83\x70\x1f\x0e\xfb\xf5\xf7\x87\xf9\x41\x15\x2b\x30\x2b\x27\x57\xb8\x66\xc8\xe7\xe3\xe3\xee\x90\x1f" +"\xc4\x8e\x60\xb4\x4b\x1b\x89\x77\x15\x9c\x8a\x94\x7d\x8a\x74\x89\x60\x7b\x4f\x78\x62\x08\x60\x76\x78\x77\x73\x1b\x79\x81\x98\xa1" +"\xb7\xa0\xd9\xa2\xb3\x1f\x9d\xab\xa1\x9c\x9f\x8a\x08\x0e\xd0\xf7\xf4\xf8\x20\x15\xbd\x79\x77\x9b\x5f\x1b\xfb\x12\xfb\x29\xfb\x55" +"\xfb\x37\x47\xbb\x59\xcd\xce\x9d\x1d\x62\x72\xab\xc0\x9a\x8c\x96\x8f\x9f\x1f\xb2\x94\x05\xf7\x25\xac\xde\xce\xdd\x1a\xc2\x66\xab" +"\x4d\x59\x6f\x7c\x59\x60\x1e\x9f\xcc\x24\x86\x05\x36\x68\x15\xa7\x9f\x73\x6b\x55\x6b\x23\x64\x47\x1f\x55\x6e\x6d\x72\x69\x1b\x6d" +"\x77\xa5\xb3\x8d\x1f\x8e\xc5\xa5\xde\xb1\xce\x08\xc6\xac\xab\xa7\xab\x1b\xf7\x19\xfb\x50\x15\xf7\x1a\xb2\xb6\xcb\xbd\x1b\xa2\x95" +"\x7f\x6f\x51\x6d\x5b\x50\x66\x1f\x6c\x77\x75\x83\x6f\x87\x08\x0e\xfc\x0b\x2c\x1d\x0e\xfc\x0b\xf7\x6c\xf7\x21\x73\x0a\xfb\x42\x7e" +"\x54\xb4\x0a\x5e\x0a\x0e\xd0\xf8\xe3\xf7\x1f\x15\x46\x5e\x70\x77\x5d\x1b\x60\x73\xa6\xbe\x9b\x8d\x98\x91\xa6\x1f\xf2\xa2\xa4\x94" +"\xb8\xa8\x08\xc4\xb0\xa9\xb7\xb9\x1a\xc3\x60\xad\x46\x57\x69\x7d\x5b\x4f\x1e\xb8\x6b\x6c\x9c\x56\x1b\x2a\x2d\x4e\x27\x51\x1f\x6e" +"\x57\x7b\x55\x58\x1a\x2e\xcc\x4b\xea\xc6\xb9\x9d\xb2\xb6\x1e\x62\xb2\xab\x7b\xb9\x1b\xb8\xb5\x9a\xa9\xad\x1f\xa3\x9f\x9c\xa2\xa5" +"\xbc\x08\xfb\x5a\xe9\x15\xbf\xf7\x23\x94\x9e\xaa\xaf\x08\x95\x94\x98\x91\x99\x1b\xa2\x99\x7c\x72\x72\x81\x6b\x7c\x73\x1f\x6e\x5c" +"\x68\x73\x3f\x75\x08\xfb\x1f\xf7\x6b\x15\xaf\x9e\x72\x5a\x57\x69\xfb\x1a\x6d\x4c\x1f\x4a\x6c\x6e\x6e\x67\x1b\x69\x78\xa8\xbf\xb6" +"\x97\xc4\xa2\xcf\x1f\xf7\x0c\xb3\xae\xbb\xbb\x1b\x0e\xf7\x85\xf8\x14\x15\xa7\x87\x97\x88\x95\x83\x08\x9a\x80\x94\x72\x6d\x1a\x4b" +"\x76\x25\x73\x57\x1e\x64\x79\x77\x78\x74\x1b\x7b\x78\x93\x95\x83\x1f\x87\x90\x77\x68\x05\x7b\xa2\x9f\x85\xa9\x1b\xf7\x08\xf3\xf7" +"\x10\xf7\x1e\xb6\x7c\xae\x6f\xa3\x1f\x73\xa0\x74\x95\x55\x96\xd9\xa8\xa8\x9b\xad\xab\x08\xa5\xa4\x9a\xaf\xb0\x1a\xd7\x4e\xc2\x36" +"\xfb\x0e\x35\x23\xfb\x5a\x60\x1e\x2f\xfc\x3b\x7d\x4c\x7a\x5b\x7b\x76\x19\x7e\x81\x81\x87\x78\x1b\x7f\x87\x8e\x93\x90\x8c\x8d\x90" +"\x90\x1f\x94\x94\x8d\x92\x9a\x1a\xa7\x79\x9c\x6d\x6c\x77\x76\x6b\x5d\xb2\x6c\xc5\xf4\xd7\xf0\xf7\x5d\xb8\x1e\xe6\xf8\x2b\x05\xf7" +"\x09\xa5\xa9\xbc\xb9\x1b\xaa\x9a\x78\x63\xfb\x00\x61\x33\x57\x1f\x87\x06\x7b\x8c\x05\x0e\xfb\xf5\xa9\xf7\xa6\x55\x1d\x90\x1b\x99" +"\x93\x84\x7d\x8e\x1f\x8c\x86\x67\xfb\x0c\x72\x42\x85\x78\x85\x79\x8a\x86\x08\x49\x7a\x7c\x7d\x53\x1b\x0e\x5c\xf8\x67\xf7\x00\x15" +"\xe3\xf7\xb7\xfc\x8c\x33\xf8\x34\x06\x0e\x3e\xf8\xb6\xf8\x55\x15\xfb\x1b\x06\x59\xfb\x38\x05\xfb\x01\x69\x42\x21\x60\x1b\x7f\x84" +"\x94\x9b\x98\x8d\x9a\x8f\x99\x1f\xe7\xf7\xcc\x05\xfb\x1b\x06\xfb\x01\xfc\x0b\x79\x5a\x85\x7b\x78\x5e\x19\x73\x51\x85\x74\x6e\x1a" +"\x64\x9d\x75\xac\xa9\xa7\x9e\xa9\x98\x1e\x91\x98\x8c\x94\xa6\x1a\xb7\x93\xb9\x99\xb6\x1e\x78\xa4\x98\x86\xa3\x1b\xba\xaa\xa7\xe5" +"\xbf\x1f\x82\x66\x89\x7f\x78\x1a\x67\xa6\x70\xaf\xc4\xad\xa6\xf3\xd7\x1e\x75\x9b\x05\x63\x72\x75\x75\x7c\x1b\x84\x86\x91\x93\x93" +"\x8d\x94\x8e\x95\x1f\x0e\xf7\xef\xf7\x8a\xf9\x1b\x15\xbc\x06\xad\xa1\x76\x5e\x95\x1f\xa0\xe3\xfb\xf2\x33\xa0\x06\xb7\x95\xa0\xa1" +"\xae\x1b\xbc\xfb\xc9\x06\x6a\x89\x84\x85\x87\x1e\x83\x87\x88\x8a\x6c\xba\x1d\xf8\x3c\x40\x15\x96\x06\xf7\x2d\xf7\xc8\x05\xfb\x7d" +"\x07\x69\x89\x85\x85\x87\x1e\x83\x87\x89\x8a\x6b\xba\x1d\xf7\x95\x07\xb1\x99\x98\xb5\x8e\x1e\x9f\xfb\x01\x07\xfb\x31\xfb\xc2\xfb" +"\x2a\xf7\xc2\x05\xfb\x13\x77\x06\xaa\x89\xa4\x79\x99\x6b\x08\xfb\x88\x07\x8a\x57\x83\x80\x60\x87\x08\x76\xf7\x17\xa0\x07\x60\x8f" +"\x83\x96\x8a\xbf\x08\xf7\x6c\x07\x0e\xd0\x5c\x0a\xec\xf8\xfa\xf9\x3f\x15\x51\x06\xfc\x47\xfd\x4d\x05\xc5\x06\xf8\x9e\xf7\x14\x96" +"\x1d\xaf\xab\x9f\x97\xa9\x1b\xb0\xa1\x72\x62\x6b\x78\x6a\x58\x53\x1f\x6e\x6b\x78\x79\x27\x2c\x08\x7b\xf7\x82\x07\xfd\x27\xf7\xa6" +"\x55\x1d\x8f\x1b\x99\x97\x81\x80\x80\x6c\x24\x6e\x36\x1f\x7e\x62\x05\x49\x7a\x7c\x7d\x53\x1b\x0e\x38\xf7\x85\xf7\xfb\x15\xfb\x64" +"\x33\xf7\x64\xfb\x23\xe3\xf7\x23\xf7\x64\xe3\xfb\x64\xf7\x65\x33\x06\xfb\x64\xfc\xcc\x15\xf8\x8c\xe3\xfc\x8c\x06\x0e\x61\xf7\x05" +"\x8f\x1d\x8e\x9a\x92\xad\x1e\x99\xcb\x05\x87\xaf\x9d\xd2\x1d\x5b\x06\x98\xb1\x9f\xc4\x93\x92\xc0\x93\x19\x8c\xa4\x05\xfb\xba\x06" +"\xf7\x48\xfb\x67\x15\x92\xa4\x8b\x8b\x8f\x90\x08\x95\x95\x95\x8f\x9e\x1b\xc1\xa9\xbc\x1d\x0e\xec\xf9\x44\x8a\x1d\xfb\x4f\xf7\xb4" +"\x55\x1d\x8f\x1b\x99\x97\x81\x80\x80\x6c\x24\x6e\x36\x1f\x7e\x62\x05\x49\x7a\x7c\x7d\x53\x1b\x0e\x38\xf8\xad\xf7\x65\x15\xe3\xfc" +"\x8c\x33\x07\xf7\x91\x31\x15\x28\x0a\xf8\x34\x04\x60\x6b\xc7\x0a\xb4\x6a\xac\x63\x1f\x0e\xfc\x45\xec\x78\x15\xe2\xf7\xa6\x34\x06" +"\xf7\x2f\x04\xe2\xf7\xa6\x34\x06\x0e\xfb\x91\xf7\x76\xf9\x3f\x15\x3b\x4c\x4c\x3b\x3c\xca\x4b\xd9\xdd\xca\xc9\xdc\xdb\x4c\xca\x3b" +"\x1f\x67\x04\xc2\xba\x5a\x51\x50\x5d\x5b\x52\x54\x5d\xbc\xc5\xc6\xb9\xbb\xc3\x1f\x0e\xf7\x15\xfb\x46\x15\x59\x8c\x7c\x92\xa3\x1a" +"\x98\x92\xab\x9e\xd0\x1e\x92\xa3\x8b\x8d\x8f\x9a\x08\x79\xae\x97\x87\xa0\x1b\xf7\x1c\xf7\x21\xf7\x48\xf7\x42\xd5\x61\xba\x4a\x52" +"\x60\x6d\x3f\x58\x1f\x88\x8e\xea\xf7\xe8\x45\x7e\x5a\x83\x34\x82\x19\x70\x07\xbc\x99\x84\x74\x84\x87\x78\x7e\x5a\x1f\xfb\x36\xfd" +"\x0a\x79\x41\x80\x7f\x5a\x8c\x19\x70\xf7\x8d\x07\xf7\x2d\xf8\xe8\x15\xa5\x89\x9a\x75\x89\x6a\x87\x4a\x6b\x27\x67\x4a\x08\x55\x6c" +"\x6b\x6f\x69\x1b\x75\x7a\x9b\x9f\x9b\x93\xad\xa5\xe2\x1f\xa3\xdc\x96\xa8\x9b\xa3\xa4\xb2\xac\xa4\xa5\x89\x08\x0e\xec\xf9\x49\x8a" +"\x1d\x28\xf8\x83\x15\xcf\x88\xab\x6d\x50\x1a\x58\xa6\x1d\x7e\xa2\x64\xa5\x1f\x92\x8f\x05\xc5\xac\x99\x9c\xb0\x1a\xb9\x60\xae\x53" +"\x56\x63\x95\x0a\xfb\xf5\xf7\xb7\xf8\x18\x96\x1d\xae\xaa\xa0\x98\xa9\x1b\xb0\xa1\x72\x62\x6b\x78\x6a\x58\x53\x1f\x6e\x6b\x78\x78" +"\x27\x2d\x08\x7b\xf7\x82\x07\x0e\xe9\xf7\x66\xf8\x93\x15\xaa\x87\x8c\x8b\x93\x87\x08\x91\x87\x8c\x86\x6d\x1a\xfb\x8d\x07\x6d\x89" +"\x84\x86\x88\x1e\x83\x87\x8a\x8b\x6c\x87\x08\x7b\xf7\x3a\x9b\x07\x6d\x8e\x89\x8c\x83\x8f\x08\x85\x8f\x89\x91\xa9\x1a\xf1\xb7\x07" +"\xa2\x68\x96\x78\x9d\x6c\xaf\x4b\x99\x7b\x9d\x8a\x08\xd1\x96\x06\x77\x9b\x74\xa5\x6c\xb5\x50\xdd\x18\xc1\x9f\xa6\xae\xbc\x1a\xc6" +"\x5e\xaf\x43\x1e\xfb\x4b\x06\xf7\x0a\x76\x15\xb3\x06\xb9\xa2\x71\x57\x51\x72\x6a\x60\x1f\x62\x06\xb9\xf7\xf0\x81\x1d\x5c\xf8\xbf" +"\xf7\x65\x15\xe3\xfc\x8c\x33\x07\x0e\xf7\xaf\xf8\xd2\x15\xb2\x59\x9e\x5d\x8f\x55\x89\x87\x18\xa9\x78\x76\x97\x6c\x1b\xfb\x1e\xfb" +"\x1d\xfb\x37\xfb\x39\x37\xcf\x4c\xe5\xf7\x2f\xf7\x17\xf7\x44\xf7\x65\xe6\x70\xcd\x48\xda\x1f\xf6\xc3\x69\xab\x20\x52\x60\xae\x63" +"\x9d\x5a\x92\x19\x5f\x70\xb3\x84\xaf\x76\xb3\x66\x19\xfb\x0e\x4b\xac\x6c\x05\xf7\x04\x3c\x15\xa7\xf4\x1d\x4c\x6e\x6d\x6f\x68\x1b" +"\x6a\x7b\xa2\xba\xd5\xb0\xf7\x20\xaf\xcc\x1f\xb9\xa5\xa7\xa1\xac\x1b\x0e\x38\xf7\x73\xf7\x91\x15\xfb\x43\xfb\x43\xc9\x4d\xf7\x43" +"\xf7\x44\xf7\x43\xfb\x44\xc9\xc9\xfb\x44\xf7\x43\xf7\x44\xf7\x43\x4d\xc9\xfb\x43\xfb\x44\xfb\x43\xf7\x44\x4d\x4d\x05\x0e\xfb\xf5" +"\xf7\x02\xf8\x75\x15\xce\x88\xac\x6d\x51\x1a\x57\xa6\x1d\x7d\xa2\x65\xa5\x1f\x92\x8f\x05\xc5\xad\x99\x9b\xb0\x1a\xb9\x60\xae\x53" +"\x55\x64\x95\x0a\xe9\xf8\xa2\xf7\x8e\x15\x4e\x6f\x66\x71\x51\x1b\x33\x59\xcb\xf7\x07\xf7\x04\xbc\xcb\xe1\xc8\xaf\x6e\x4e\x98\x1f" +"\x9c\xd2\x06\x94\x84\x91\x7c\x91\x1e\x98\x67\x70\x90\x66\x1b\xfb\x1c\x32\x3b\xfb\x0f\xfb\x0e\xdd\x42\xf7\x1b\xac\xc3\x96\x98\xa8" +"\x1f\x94\x8e\x8c\x8c\x8d\x95\x9c\xd3\x18\xfb\x3e\xf8\x47\x81\x1d\x99\x27\x1d\xa7\xf8\x6f\x8d\x0a\x99\x27\x1d\xf7\x33\xf8\x6f\x15" +"\xbe\x06\x35\xf7\x42\x05\x3a\x2a\x0a\x99\x27\x1d\x5b\xf8\xfa\x24\x0a\x99\x27\x1d\xf7\x0f\xf8\x6f\x15\xfb\x03\xf7\x27\x05\xa1\x7b" +"\x76\x58\x1d\x99\x27\x1d\xca\xf9\x51\x30\x0a\x99\x27\x1d\xf7\x56\xf8\xfa\x8b\x1d\x99\xf7\x85\x7f\x15\x87\xa1\x9f\x89\xa0\x1b\xd2" +"\xcd\xa1\xb6\xc4\x1f\xa8\xa1\x9c\x9d\xab\xb7\x6d\xa1\x18\x59\x50\x6f\x74\x61\x79\x08\x6e\x0a\xfb\x0b\xc9\x33\xf7\x01\x67\x1f\x4e" +"\x31\x3e\x0a\x92\x7b\x0a\x99\x24\x1d\xfb\x2d\xf9\x67\x8c\x0a\x99\x24\x1d\x73\xf9\x67\x23\x1d\x99\x24\x1d\xfb\x77\xf9\xf2\x15\x68" +"\x6e\x6e\x66\x36\x1d\x99\x24\x1d\x58\xf9\x67\x37\x1d\xfb\x9c\x27\x0a\x5b\xf9\x6a\xa8\x1d\xfb\x9c\x27\x0a\xf4\xf9\x67\x23\x1d\xfb" +"\x9c\x27\x0a\x2a\xf9\xf2\x24\x0a\xfb\x9c\x27\x0a\xe9\xf9\x67\x37\x1d\xd0\x2e\x0a\xd9\xf9\x26\x8b\x1d\xd0\x26\x1d\x7e\xd3\x8d\x0a" +"\xd0\x26\x1d\xf7\x0f\xd3\x23\x1d\xd0\x26\x1d\x2b\xf7\x67\x24\x0a\xd0\x26\x1d\xeb\xd3\x15\xfb\x03\xf7\x27\x05\xa1\x7b\x76\x97\x78" +"\x1b\x73\x76\x76\x73\x7c\x97\x7a\xa1\x7c\x1f\xf7\x19\x32\x05\x0e\xd0\x26\x1d\xf7\x2f\xf7\x67\x7a\x0a\x81\xa5\x97\x88\x9d\x1b\xc7" +"\xae\xae\xdf\xa2\x1f\x0e\x2a\x36\x0a\xf8\x79\xf9\x47\x20\x0a\xd0\x21\x0a\xfb\xe3\xda\x15\x76\x0a\xd0\x21\x0a\xfb\x41\xda\x15\xbe" +"\x06\x35\xf7\x42\x05\x3a\x2a\x0a\xd0\x21\x0a\xfc\x1a\xf7\x6e\x24\x0a\xd0\x21\x0a\xfb\x55\xda\x15\xfb\x03\xf7\x27\x05\xa1\x7a\x77" +"\x58\x1d\x61\x2d\x0a\xf7\x60\xf7\x22\x29\x0a\x61\x2d\x0a\xf7\x2b\xf7\xad\x15\x68\x6e\x6d\x67\x36\x1d\x61\x3f\x1d\xc3\xfa\x15\xed" +"\x1d\xe2\xfb\x42\x05\xde\x06\x0e\x25\x1d\x91\xeb\x29\x1d\x25\x1d\xf7\x1a\xeb\x15\xbe\x06\x35\xf7\x42\x05\x39\x06\xfb\x33\xfb\x42" +"\x05\xc4\x06\xf7\x17\xea\x05\x0e\x25\x1d\x42\xf7\x7f\x92\x1d\x25\x1d\xf7\x07\xeb\xa2\x0a\x7a\xa1\x7d\x1f\xf7\x18\x32\x05\x0e\x25" +"\x1d\xbf\xf7\xe2\x30\x0a\x25\x1d\xf7\x4c\xf7\x7f\x15\x6c\x7c\x7e\x80\x74\x1b\x80\x7b\x90\x96\x70\x1f\x9d\x62\x6b\x93\x73\x5b\x1d" +"\x80\xa6\x96\x89\x9e\x1b\xc7\xad\xae\xdf\xa2\x1f\x0e\xfb\x65\xf7\x16\x7f\x15\x8a\x92\x90\x8b\x91\x1b\xb7\xb7\x9b\xa8\xac\x1f\xa5" +"\xa1\x9b\x9e\xae\xbd\x6f\x9d\x18\x48\x5b\x6c\x74\x60\x1b\x5f\x6e\xaf\xc0\xca\xa5\xe5\xaf\xcc\x1f\xba\xa6\xa7\xa3\xaa\x1b\x97\x95" +"\x84\x81\x87\x89\x85\x85\x82\x1f\x82\x7b\x87\x80\xbf\x1d\xfb\x38\xfb\x34\x47\xae\x57\xc8\x75\x1e\x4f\x33\x98\x7f\x05\x8e\x97\x92" +"\x8c\x96\x45\x1d\xfb\x65\x22\x0a\xeb\xf7\xc2\x29\x1d\xfb\x65\x22\x0a\xf7\x74\xf7\xc2\x23\x1d\xfb\x65\x22\x0a\x9c\xf8\x4d\x24\x0a" +"\xfb\x65\x22\x0a\xf7\x6f\xf7\xc2\xaa\x1d\xfc\x0b\x70\x0a\x3e\xf8\x19\x29\x1d\xfc\x0b\xf7\xa6\xf8\x98\x48\x0a\xa9\xfc\x6a\xb4\x1d" +"\x51\x7e\x4c\x7f\x0a\x0e\xfc\x0b\x70\x0a\xfb\x30\xf8\xa4\x24\x0a\xfc\x0b\x2c\x1d\xa1\xf8\x19\x37\x1d\x2a\x30\x1d\x6d\xf8\xa9\x75" +"\x0a\x23\x0a\x88\xde\x15\x2b\x1d\x38\x1d\x23\x0a\xf7\x11\xde\x15\xbe\x06\x35\xf7\x42\x05\x3a\x2a\x0a\x23\x0a\x34\xf7\x72\x24\x0a" +"\x23\x0a\xf5\xde\x15\xfb\x03\xf7\x27\x05\xa1\x7a\x77\x97\x78\x1b\x73\x76\x76\x73\x7b\x97\x7a\xa1\x7d\x1f\xf7\x19\x32\x05\x0e\x23" +"\x0a\xf7\x43\xf7\x72\x8e\x1d\x9e\x1b\xc7\xad\xae\xdf\xa2\x1f\x0e\xfb\x9c\x3d\x1d\xf7\x15\xf8\x12\x20\x0a\x2a\x26\x0a\xfb\x54\xf8" +"\x20\x29\x0a\x2a\x26\x0a\x47\xf8\x20\x23\x1d\x2a\x26\x0a\xfb\xa8\xf8\xab\x92\x1d\x2a\x26\x0a\x38\xf8\x20\xaa\x1d\xfb\x65\x31\x1d" +"\xf7\x7a\xd9\x29\x0a\xfb\x65\x31\x1d\xf7\x26\xf7\x6d\x24\x0a\xfb\x9c\x34\x1d\xf8\x04\xf7\x85\x20\x0a\xfb\xae\xf7\xbf\xf7\xfa\x15" +"\x66\x73\x82\x82\x83\x1b\x88\x89\x8e\x8f\x90\x8d\x91\x98\xb3\x1f\xa1\xca\x05\x94\xa9\x91\xa4\x9a\x1a\xa9\x7a\x9c\x6e\x61\x71\x76" +"\x3d\x55\x1e\xac\xef\x5e\x81\x5d\x85\x67\x8a\x19\x74\x93\x07\x9d\x91\x88\x83\x83\x86\x79\x65\xfb\x1b\x1f\x7f\x5e\x85\x74\x05\xd9" +"\x06\xa1\xdb\x94\xa3\x9f\xb3\x08\xc1\xa5\xa7\xab\x9e\x1b\x90\x91\x86\x87\x88\x8a\x87\x8a\x87\x1f\x6a\x29\x05\x81\x6c\x84\x6b\x7c" +"\x1a\x73\x9c\x7c\xa5\xb1\xa4\xa0\xc7\xaf\x1e\x0e\x75\xf8\xe7\xf8\x55\x15\x2f\x06\x46\x1d\xa9\xa0\xa1\xaa\xbc\x65\xaa\x4e\x57\x5a" +"\x76\x63\x68\x1e\x61\x5d\x77\x62\x6f\x26\x08\x42\x06\x82\x61\x05\xd4\x06\x36\xfc\x0e\x8b\x8b\x88\x7d\x08\xfb\x28\x6c\x78\x62\x63" +"\x1b\x81\x83\x90\x91\x8d\x8c\x8e\x8e\x8f\x1f\x93\x97\x8f\x96\x96\x1a\xa3\x73\xa3\x71\x70\x73\x72\x6e\x5b\xb2\x6c\xc7\xb5\xb0\x99" +"\xa8\xaa\x1e\xb2\xaf\xa7\xc0\xab\xf2\xa4\xda\x96\xb9\xc1\xf7\x90\x08\xe5\x06\xfb\x74\xb5\x15\x2f\x06\x46\x1d\xa9\xa0\xa1\xaa\xbc" +"\x65\xaa\x4e\x57\x5a\x75\x64\x68\x1e\x61\x5d\x78\x62\x6e\x26\x08\x42\x06\x82\x61\x05\xd4\x06\x5b\xfb\x66\x68\xfb\x32\x86\x73\x42" +"\x1d\xb5\xb0\x99\xa8\xaa\x1e\xb3\xaf\xa6\xc0\xac\xf2\xa3\xda\x96\xb9\xc1\xf7\x90\x08\xe5\x06\x0e\xf7\x69\xf8\x67\xf9\x00\x15\xba" +"\x64\xaa\x4f\x57\x5a\x75\x64\x68\x1e\x61\x5d\x78\x62\x6e\x26\x08\x42\x06\x82\x61\x05\xd4\x06\x56\xfb\x7f\x6e\xfb\x12\x85\x6c\x42" +"\x1d\xc9\xbe\xaa\xc9\xb1\x1e\x89\x85\x8b\x87\x85\x1a\x5f\xb4\x6a\xc3\xbc\xbc\xa4\xb5\xac\x1e\xaa\xb2\xac\xd1\x98\xbe\xc1\x0a\x7e" +"\x58\x88\x7d\x7a\x1a\x62\xa6\x73\xb7\xc7\xb1\xaa\xf4\xd0\x1e\x75\x98\x05\x53\x64\x74\x74\x7b\x1b\x84\x83\x93\x93\x96\x93\xae\x98" +"\xbc\x1f\x8c\x8f\xd4\xf7\xaf\x49\x86\x7b\x8a\x42\x87\x19\xfb\x0a\x06\xac\xf7\x0b\x97\xa8\xab\xb2\x08\xa2\x9e\xad\x99\xb0\x1b\x9c" +"\x94\x86\x80\x86\x8a\x88\x85\x84\x1f\x80\x7f\x87\x80\x7e\x1a\x6c\xa4\x73\xac\xac\xa3\xa3\xac\xc3\x51\xb2\x37\x3d\x49\x6b\x51\x61" +"\x1e\xfb\x66\xfb\x38\x15\x46\x1d\x94\x92\x8d\x8f\x93\x1e\x7c\x71\x82\x73\x72\x43\x08\x80\x61\x15\x2f\xfc\x2f\x05\xfb\x20\x6c\x7c" +"\x70\x5f\x1b\x7f\x86\x8e\x91\x8f\x8d\x8e\x90\x91\x1f\x94\x95\x8e\x91\x96\x1a\xa7\x75\xa0\x6e\x7f\x80\x87\x83\x82\x1e\xba\xf7\x01" +"\xa7\xf0\xc5\xf7\xae\x08\x0e\xf7\x67\xce\xf8\x55\x15\x82\x61\x05\xd4\x06\x56\xfb\x7f\x6e\xfb\x12\x85\x6c\x42\x1d\xcd\xb3\xa5\xd3" +"\xbb\x1e\x89\x84\x8b\x87\x85\x1a\x5b\xb2\x6a\xc5\xf2\xd4\xea\xf7\x53\xba\x1e\xda\xf7\xda\x05\xf7\x27\x06\x3c\xfb\xd5\x05\x88\x7e" +"\x89\x7f\x7f\x1a\x69\xa8\x73\xb6\xc6\xaf\xa9\xf4\xcf\x1e\x77\x96\x05\x56\x67\x75\x75\x79\x1b\x82\x83\x93\x94\x8e\x8c\x92\x8e\x95" +"\x1f\xf7\x2b\xf8\xee\x28\x7f\x05\x9a\x3d\x8b\x8b\x75\x1b\x40\x51\x6f\x52\x60\x1f\xbc\x8a\x66\xa9\x4e\x1b\x57\x5a\x76\x63\x68\x1f" +"\x61\x5d\x78\x62\x6e\x26\x08\xf7\x07\x16\x9d\xd2\x05\xee\xa4\xa9\xbd\xaf\x5e\x1d\x7f\x66\x1d\x93\x91\x8c\x8e\x92\x1e\x7f\x75\x83" +"\x74\x73\x40\x08\x81\x61\x15\x2f\xfc\x26\x05\xfb\x24\x6a\x7c\x6c\x68\x1b\x7d\x83\x90\x92\x8f\x8c\x8e\x90\x91\x1f\x92\x95\x8e\x93" +"\x95\x1a\xa7\x78\x9d\x6f\x7c\x7f\x87\x82\x80\x1e\xbc\xf7\x03\xa1\xdd\xc9\xf7\xbe\x08\xf8\x2f\xb5\x15\xfb\x2b\x06\xa0\xe5\x9a\xb5" +"\xa0\xae\x08\xb1\xa3\xaa\xa0\xac\x1b\x9d\x9d\x82\x81\x89\x8a\x8a\x86\x83\x1f\x80\x7b\x87\x82\x7e\x1a\x7b\x91\x7f\x9a\x80\x1e\x0e" +"\xec\xa4\xf7\xa3\x15\xf7\x72\x9e\x06\x59\x82\x8f\xa0\x94\x8d\x98\x8f\x97\x1f\xec\xf7\xdb\x45\x7d\x6a\x85\x43\x80\x19\x89\x77\x05" +"\x8c\xa4\x99\x8c\x8f\x1b\x99\x97\x81\x80\x81\x6c\x23\x70\x39\x1f\x85\x78\x85\x7a\x8a\x85\x08\x4b\x7b\x7c\x7d\x53\x1b\xf8\xf3\xf8" +"\x16\x15\x52\x06\xfc\x3f\xfd\x46\x05\xc4\x06\xf7\xe6\xbb\x1d\x69\xbb\x0a\x42\x56\x5d\x4c\x6c\x95\x74\xaa\xb9\x1d\x73\x6e\x73\x1e" +"\x4c\x4f\x15\xb2\x63\x9b\x6f\x6d\x1a\x64\x71\x6f\x69\x67\x76\xa3\xb4\xb5\x9f\xab\xb5\xa5\x1e\x0e\xec\xf7\x17\xf8\x72\x15\xce\x88" +"\xab\x6e\x51\x1a\x59\x6d\x64\x64\x79\x88\x8d\xa7\x77\x1e\x9d\x7d\x7e\x94\x7b\x1b\x76\x7c\x7a\x74\x6c\xaa\x79\xc0\xf2\xdf\xd0\xe0" +"\xb1\x7e\xa2\x64\xa5\x1f\x92\x8f\x05\xc3\xaa\x99\x9d\xae\x1a\xb9\x61\xad\x53\x57\x64\x74\x54\x65\x1e\x99\x7e\x05\xaa\xa6\x9d\x95" +"\xa7\x1b\xac\xa0\x77\x6c\x61\x65\x71\x3b\x7c\x1f\xf8\x87\xf7\x4c\x15\x52\x06\xfc\x3f\xfd\x46\x05\xc5\x06\xf7\xe5\xf7\x76\x15\x42" +"\x6f\x69\x67\x58\x1a\x52\xbe\x62\xd3\xdb\xc9\xc2\xd0\xb0\x79\xb0\x6a\xab\x1e\xcb\xa8\xa1\xa2\xb4\x1a\xbf\x5f\xaf\x4b\x42\x56\x5d" +"\x4c\x6c\x96\x74\xa9\xb9\x1d\x74\x6e\x72\x1e\x4c\x4f\x15\xb1\x65\x9c\x6d\x6d\x1a\x65\x71\x6e\x69\x67\x76\x50\x0a\xec\xea\xf8\x94" +"\x15\x8c\x92\x90\x8b\x8e\x1b\xcc\xb9\x5c\x49\x5c\x73\x63\x6e\x81\x7b\x91\x94\x7d\x1f\x9e\x6f\x89\x8c\x7f\x1b\x7a\x7c\x7d\x7b\x73" +"\xa5\x7a\xaf\xec\xd5\xd7\xed\xb6\x7a\xaa\x65\xa5\x1f\x74\x9b\x79\x91\x69\x8e\x9d\xae\x18\xf7\x1b\x06\x9e\xce\x05\xfb\x2e\x06\xf8" +"\x51\x89\x15\x52\x06\xfc\x3f\xfd\x46\x05\xc5\x06\xf7\xe5\xd6\x1d\xc1\xd1\xb0\x79\xb0\x6a\xab\x1e\xcc\xa8\xa1\xa2\xb4\x1a\xbf\x5f" +"\xaf\x4a\x42\x56\x5d\x4c\x6c\x95\x75\xaa\x67\x1e\xe1\xb2\x15\x61\xb1\x81\x9b\xa6\x1a\xa9\x9f\xa0\xa7\xa8\x9c\x77\x6a\x6c\x7e\x72" +"\x6e\x74\x1e\x4c\x4f\x15\xb1\x65\x9c\x6d\x6d\x1a\x64\x72\x6f\x68\x68\x75\x50\x0a\xec\xf7\xb8\xf8\xf2\x15\xfb\x58\xfb\xd7\xa9\x7b" +"\xf7\x8a\xf8\x2d\x05\xfb\x74\x06\x57\x25\x05\xa0\x06\xa3\x97\xa1\x93\xc1\x1b\xf8\x10\xd1\x15\x52\x06\xfc\x3f\xfd\x46\x05\xc4\x06" +"\xf8\x02\xbb\x1d\x6a\xbb\x0a\x41\x56\x5d\x4c\x6c\x96\x74\xa9\x68\x1e\xe1\xb2\x15\x61\xb1\x81\x9b\xa7\x1a\xa8\x9f\xa0\xa7\xa8\x9c" +"\x77\x6a\x6c\x7f\x73\x6d\x73\x1e\x4c\x4f\x15\xb1\x64\x9c\x6e\x6d\x1a\x64\x71\x6f\x69\x67\x76\x50\x0a\xf7\xb7\x99\x0a\x62\x7a\x96" +"\xa5\x92\x8c\x93\x8e\x96\x1f\x8c\x8d\xca\xf7\x85\x05\xf7\x02\x84\xa2\x7c\x4b\x1a\x83\x8b\x82\x8a\x80\x71\x1d\xf7\x48\xf8\x4d\xa6" +"\x0a\x4d\x0a\x99\x27\x1d\xf7\x55\xf9\x14\x15\x49\x6c\x68\x57\x0a\x06\x57\x8e\x79\x97\x71\x1e\x5a\x1d\x99\x79\x1d\x99\x7a\x1d\xfb" +"\x35\x51\x15\x99\xa9\x92\x9c\x90\x93\x47\x1d\x84\x6c\x88\x51\x0a\x89\x7a\x8b\x87\x89\x73\x08\x0e\x99\x27\x1d\xf7\x88\xf8\xdd\x25" +"\x0a\x99\xf7\xf5\xf7\x64\x15\x95\x41\x90\x62\x81\x1a\x62\x7c\x80\x4b\x85\x1e\x72\xf7\x92\x9e\x1d\x62\x75\xa1\xb6\x9a\x8d\x95\x92" +"\x99\x1f\xa4\x07\x49\x90\x86\x90\x7e\xd7\x2b\xf8\xd0\x18\x72\x06\xfc\x08\xfc\xe0\x6b\x5a\x7c\x7e\x67\x83\x19\x72\xf7\x58\xa4\x07" +"\x5d\x78\x96\xa3\x99\x90\x9a\x95\x9c\x1f\xc6\xf1\x05\xa2\xb3\x15\xf7\x28\xf7\x87\xb0\xfb\x87\x05\x0e\x99\xf8\xe5\xa4\x15\xcd\x1d" +"\x6a\x59\x7d\x7f\x67\x83\x19\x72\xf7\x58\xa4\x07\x5d\x78\x96\xa3\x99\x90\x9a\x95\x9c\x1f\xc6\xf1\x05\xf7\x6b\x06\xde\x1d\xf7\xc4" +"\x07\xfc\x44\xf7\x8c\xd0\x1d\xcb\xf8\xe7\x15\x51\x5a\x69\x64\x60\xba\x69\xc6\xc7\xba\xad\xb5\xb3\x5b\xad\x51\x1f\x89\x69\x15\xac" +"\xa6\x78\x74\x75\x6f\x79\x6b\x6c\x71\x9e\xa0\xa2\xa5\x9e\xaa\x1f\x60\xaf\x15\xf7\x2c\xc8\x05\xa9\x97\x94\x93\x98\x1a\x9d\x75\x9a" +"\x71\x79\x7c\x83\x70\x66\x1e\xfb\x0e\x2f\x05\x0e\x99\x6f\x1d\x99\x33\x1d\xfb\x67\xf7\xa7\xa9\x1d\x99\x33\x1d\x97\xf8\x55\x20\x0a" +"\xa0\x33\x1d\x44\xf7\xa7\x15\xbf\x06\x35\xf7\x42\x05\x39\x2a\x0a\x99\x33\x1d\xfb\x46\xf8\x32\xbd\x1d\x99\xaf\x0a\x6e\x77\x77\x85" +"\x1d\x97\x1a\xa3\x9a\x9e\x9f\x1e\x99\x28\x1d\xfb\x9b\x4b\x0a\xe3\xfb\x92\x18\xfb\x33\xfb\x43\x54\x4c\x60\x69\x67\x82\x33\x0a\xf7" +"\x61\x21\x1d\x7e\x06\x6a\x79\x97\xa2\x9b\x94\x9c\xa3\xa6\x1f\x0e\xd0\x65\x0a\xf8\x34\xf9\x9a\x15\x53\x06\xfb\x1b\x2a\x2f\xec\x05" +"\x5a\x06\xe3\xfb\x42\x05\xdd\x06\x0e\xd0\x5c\x0a\x99\xac\x16\xf8\xee\x06\xfb\xad\xf9\x44\x05\xfb\x6b\xfc\xe6\x15\xf7\x40\xf8\x09" +"\xf7\x2f\xfc\x09\x05\x0e\x99\x24\x1d\x98\xfa\x0c\x38\x0a\x99\x24\x1d\xbe\xfa\x18\x20\x0a\x99\x24\x1d\xfb\x19\xf9\xf5\x2a\x1d\x99" +"\x24\x1d\xc0\xf9\xd5\x25\x0a\xd0\xf8\x4d\xc8\x15\x72\x3c\x05\x37\x6f\x57\x41\x6c\x1b\x80\x7f\x92\x90\x8e\x8c\x8c\x8f\x91\x1f\x92" +"\x96\x8e\xad\x0a\xee\xcd\xd4\xf7\x31\xb8\x1e\xf7\x18\xf8\x68\x8a\x0a\xfb\x6b\xf8\x65\x05\xfb\x57\x72\x06\xc2\x86\x94\x85\x9e\x5f" +"\xfb\x0c\xfc\x2f\x18\x64\xfb\x17\x84\x80\x54\x80\x08\x72\xf7\x64\xa4\x07\x50\x90\x76\x9a\xb2\x1a\x9e\x91\xac\x97\xb5\x1e\xee\xf7" +"\xf8\x05\x0e\x99\xf8\xde\xf7\x56\x15\x72\x90\x68\x52\x76\x72\x64\x70\x19\x64\x53\x47\x78\x35\x1b\x60\x79\x95\xa3\x92\x8d\x96\x91" +"\x9f\x1f\x8d\x8f\x8c\x92\x8d\x93\x8d\x91\x18\xc3\xf7\x65\x05\xf7\x06\x89\xa9\x78\x47\x1a\x7d\x8a\x7f\x88\x78\x1e\xa7\x86\xd5\xf7" +"\xa5\x6f\x8f\x5c\x2d\x71\x7e\xfb\x18\x8c\x19\xc8\xf7\x73\x05\xae\x95\x97\x94\xb4\x1b\xd3\xc2\x7c\x70\xa6\x1f\xa2\x73\x92\x72\x4d" +"\x1a\xa6\x86\xb6\xf7\x52\x05\xfc\xb0\x72\x06\xae\x85\xa0\x87\xc4\x0a\x80\x1a\x7d\x87\x73\x85\x75\x1e\xfb\x0f\xfc\x55\x7b\x56\x7f" +"\x80\x57\x83\x19\x72\xf8\x90\x07\x69\x5e\x82\x78\x6f\x31\x0a\xb4\x9e\x8f\x9e\x98\xb7\x1f\x0e\x99\xf7\xd2\xf7\xdf\x15\xca\x06\xbf" +"\xa8\x73\x62\x83\x8b\x89\x88\x74\xc2\x1d\xcf\xf7\x96\x05\xbe\xb0\x1d\x7a\x72\x1a\x84\x95\x1d\x67\x75\x9a\xa3\x93\x8d\x97\x8e\x98" +"\x1f\x0e\xf7\x10\xf7\x30\x41\x1d\xf7\xe8\x4e\x15\xca\x06\xbf\xa8\x73\x61\x84\x8b\x87\x88\x76\x1f\xa0\x06\xc8\xf7\x7a\x05\x76\x06" +"\x4a\x6e\x5a\x6c\x43\x1b\x61\x06\xd0\xf7\x96\x05\xbd\x06\xe7\x8e\xca\x5e\x91\x40\x08\x9d\x06\xb4\xf7\x2e\x05\xfc\x6f\x06\x86\x75" +"\x05\xa3\x06\xa5\x8a\x9c\x7b\x70\x1a\x84\x8a\x87\xbf\x0a\x69\x88\x19\x84\x20\x1d\xf8\x71\x06\xca\xf7\x3a\x05\x78\x06\x37\x37\x30" +"\x5c\x3c\x1b\x67\x75\x9a\xa3\x93\x8d\x96\x8f\x99\x1f\x0e\xf7\x11\x64\x0a\xfb\xbc\x06\x85\x53\x1d\x0e\xf7\x86\xf7\x21\xf8\x1c\x15" +"\x99\xaa\x93\x9c\x8f\x92\x47\x1d\x85\x6c\x87\x51\x0a\x8a\x7a\x8a\x87\x89\x73\x08\xf7\xe6\x44\x15\xf7\x7a\x06\x4d\xfb\x7d\x34\x0a" +"\x66\x20\x1d\xf7\xbf\x21\x1d\x72\x06\x71\x8c\x7a\x9b\xa5\x1a\x91\x8c\x91\x8c\x91\x53\x0a\xae\x8e\x19\x97\x21\x1d\xfb\xa8\x20\x1d" +"\xa5\x06\xa5\x9c\x7a\x72\x83\x8a\x86\x8a\x85\x1f\x51\xfb\x6d\x05\xfb\x7a\x06\xc4\xf7\x68\x97\xb8\x9c\x9d\xae\x8e\x19\xb2\x28\x1d" +"\xfb\xbd\x94\x1d\x22\x1d\xda\x1d\x0e\xf7\xb5\xf8\x2d\x15\x8c\x8e\x05\xf7\x24\xc3\xde\xe8\xd2\x1b\xc7\xb1\x50\x2e\x1f\x80\x9e\x07" +"\xbc\xf7\x5e\x05\x78\x06\x7a\x82\x81\x84\x7d\x1b\x84\x81\x8d\x8f\x81\x1f\x9b\x59\x7e\x8e\x6e\x1b\xfb\x17\xfb\x25\xfb\x0d\xfb\x33" +"\x51\x1f\x5e\x06\x6a\x59\x05\xcb\x06\x85\x78\x87\x7b\x88\x79\x08\x5b\x06\x6a\x59\x05\xd9\x06\x8a\x86\x8b\x84\x8b\x1a\xfb\x31\xd3" +"\x2f\xf7\x0d\xdf\xce\xac\xca\xb5\x1e\x98\xb5\x05\x4a\x5b\x54\x6c\x4a\x1b\x43\x62\xc4\xef\xa0\x8c\x9d\x8f\xa2\x1f\xf7\x01\x06\xac" +"\xbd\x05\xfb\x1b\x06\x8f\x9d\x91\xa1\x90\x98\x08\xf7\x3b\x06\xac\xbd\x05\x0e\x5a\xf7\x8c\xa5\x15\x57\x8d\x79\x96\xa6\x1a\x9a\x8e" +"\x9d\x97\xb8\x1e\xe6\xf8\x07\x99\xc3\x92\xa0\x95\x98\x19\x98\x94\xa4\x91\xb9\x1b\xda\xb5\x7f\x6b\xaa\x1f\xa9\x6d\x96\x6c\x8e\x51" +"\xa7\x92\x18\xbb\xf7\x56\x05\xfc\xdf\x06\x8c\x71\x05\xc0\x88\x9d\x81\x6f\x1a\x7d\x8a\x86\x82\x68\x1e\x2a\xfc\x1e\x72\x25\x7f\x7b" +"\x56\x88\x19\x71\xf7\xba\x07\x0e\xd0\x35\x0a\xfb\x0f\xf8\xdc\x38\x0a\xd8\xf8\xe6\xf9\x67\x48\x0a\xf7\x5c\xfc\x7c\x78\x1d\x5f\x69" +"\x91\x5e\x1b\x3d\x99\x1d\xd2\x92\x91\xc0\x90\x19\x0e\xd0\x35\x0a\xfc\xbe\xfd\x08\x35\x1d\xd0\x35\x0a\xfb\x81\xf8\xc5\xbd\x1d\xf7" +"\x11\xf7\x34\xf8\x72\x15\x23\xfc\x11\x4f\x1d\xa4\x07\x54\x8d\x79\x95\xa8\x1a\x9a\x8f\x9f\x9a\xbf\x1e\x91\xa1\xde\xf7\xc3\x05\xca" +"\x06\x97\xb7\x05\x4c\x06\x99\xbd\x9b\xc0\x99\x97\xbe\x92\x19\xa4\xfb\xbe\x72\x07\xab\x86\x99\x8a\x95\x87\x92\x87\x19\x91\x87\x8f" +"\x83\x80\x1a\x7f\x86\x6c\x86\x79\x1e\x84\x73\x05\xfb\x83\x06\x99\xbd\x9b\xc2\x9f\x9a\xcc\x8d\x19\xa4\xfb\xd1\x72\x07\xae\x85\xa0" +"\x87\x91\x86\x08\x92\x87\x8f\x82\x7f\x1a\x7f\x87\x79\x84\x6f\x1e\x84\x73\x05\x4b\x06\x7e\x5f\x05\xf7\x68\x16\xf7\x84\x06\x6e\x22" +"\x05\xfb\x83\x06\x0e\xf7\x19\xf9\x26\xd5\x1d\x91\x8d\x93\x8d\x93\xf7\x01\xf8\x21\x18\x9b\xc0\x99\x97\xbe\x92\x08\x56\x1d\x5c\xfb" +"\x41\x05\xfb\x83\x06\xc1\xf7\x5b\xab\x1d\x86\x91\x87\x5c\x1d\x78\x84\x70\x1e\xfb\x0e\xfc\x55\x4f\x1d\x07\x66\xf9\x67\x23\x1d\xf7" +"\x63\xf7\xda\xa1\x15\x6f\x06\x71\x8c\x7a\x9b\xa3\x1a\x92\x8c\x91\x8d\x92\x1e\xf7\x21\xf8\x7f\x98\xb8\x9d\x9d\xae\x8e\x19\x97\x06" +"\x92\xa1\x05\xfb\xa6\x96\x0a\x7a\x79\x67\x88\x19\x83\x20\x1d\xf7\xa8\x06\xf7\xab\xf9\x14\x15\xa9\x06\xa4\x9c\x7a\x73\x83\x8a\x86" +"\x89\x84\x1f\xfb\x24\xfc\x8a\x05\x6a\x82\x80\x7d\x7a\x1b\x80\x82\x93\x95\x90\x8d\x91\x8e\x8f\x1f\x9d\xa4\x8e\x92\x9e\x1a\xaa\x76" +"\x9f\x6b\x66\x6f\x6a\x60\x53\xb9\x61\xca\xe7\xd7\xce\xf7\x00\xaa\x1e\xf7\x09\xf8\x2c\x98\xb8\x9e\x9d\xae\x8e\x19\x92\x06\x92\xa1" +"\x05\xfb\xa8\x06\x0e\xfb\x9c\x27\x0a\xf7\x2a\xfa\x0c\x15\x49\x6c\x67\xc2\x0a\x56\x8d\x7a\x97\x71\x1e\x5f\xa0\xb3\x69\x1d\xfb\x9c" +"\x27\x0a\x82\xf9\xf5\x2a\x1d\xfb\x9c\x27\x0a\xf7\x59\xf9\xd5\x25\x0a\xfb\x9c\xf7\x9c\x86\x1d\xf7\x7f\x9e\x1d\x64\x73\xa1\xb0\x9d" +"\x92\x9b\x98\x96\x1f\x0e\xfb\x9c\x80\x1d\x0e\xfb\x9c\x80\x1d\x56\xf9\xd2\x15\x68\xb2\x0a\x6a\x1f\xf7\x57\x16\x69\xb2\x0a\x69\x1f" +"\x0e\xfb\x27\xf7\x14\x41\x1d\xf7\xec\xfc\x06\x15\xda\x1d\xf7\x17\xf8\x7f\x97\xb8\x9c\x32\x0a\xfb\xa3\x94\x1d\x0e\xfb\x9c\xf7\x9d" +"\x84\x1d\xf7\x49\xf9\xec\x15\x6b\x7c\x7e\x81\x74\x1b\x7f\x7b\x90\x96\x71\x1f\x9c\x62\x6b\x94\x92\x0a\xa4\x98\x88\x9d\x1b\xc7\xaf" +"\xaf\xde\xa1\x1f\x0e\xfb\x28\xf8\xa3\x6a\x0a\xbf\x9a\x99\xbc\x91\x19\x7d\xf1\x23\x1d\x99\xf7\xc6\xf7\xf5\x15\xdc\xfb\x97\x05\x91" +"\x7b\x8c\x84\x82\x1a\x73\x7b\x7b\x73\x1e\x7f\x20\x1d\xf7\x93\x4f\x0a\xfb\x03\xf7\xdc\xf7\x38\xf7\x2d\xc3\xb8\xb2\x9d\xba\x90\x19" +"\x90\x3b\x0a\x9c\x98\x7c\x78\x77\x7b\x6f\x71\x73\x1f\xfb\x4e\xfb\x43\xc4\xf7\x6b\x97\xb8\x9d\x9d\xad\x8e\x19\xa1\x21\x1d\xfb\xb1" +"\x45\x0a\xf7\xa5\x21\x1d\x6c\x06\x70\x7b\x9c\xa5\x93\x8b\x8f\x8d\x91\x1f\x0e\x99\x58\x0a\xfc\x3c\xfc\x14\x39\x0a\x61\x2f\x0a\xfb" +"\x60\xf9\x6a\xa9\x1d\x99\xf8\x09\xf8\x56\x15\x77\xfb\xfc\x87\x5e\x77\x75\x64\x8a\x19\x84\x20\x1d\xf7\x93\x21\x1d\x7f\x06\x71\x7e" +"\x9f\xb0\x1f\x96\x07\xa7\xf8\xd0\x05\x72\x06\xfc\x36\xfc\xc0\x60\x52\x72\x73\x77\x88\x33\x0a\xf7\x42\x28\x1d\x7c\x06\x73\x7a\x99" +"\xa0\x9a\x90\x98\x9b\xa0\x1f\x0e\x61\x2f\x0a\x57\xf8\x25\x15\xf4\xb9\xce\xd8\xd4\x1a\xc0\x6d\x60\x1d\x67\x68\x44\x65\x1e\x0e\x61" +"\x2f\x0a\xfc\x46\xfb\xd8\x39\x0a\x61\x2f\x0a\x44\xf8\x2c\x2b\x0a\xf7\x80\x69\x0a\xf7\xaf\x06\x9b\x0a\x97\xb8\x9e\x9d\xad\x8e\x19" +"\x9d\x21\x1d\xfb\x53\x06\x0e\xd0\x2e\x0a\x29\xf8\x9e\x29\x0a\xd0\x2e\x0a\xf7\x11\xf9\x4c\x15\x53\x06\xfb\x1c\x2a\x31\xec\x05\x59" +"\x06\xe3\xfb\x42\x05\xdd\x06\x0e\xd0\x2e\x0a\xfc\x05\xfc\xa4\x35\x1d\xd0\xf8\xbc\xf7\x67\x15\xfb\x62\xf8\x57\x05\xfb\x50\x06\x85" +"\x75\xae\x8a\x9f\x81\x9e\x70\x19\xfb\x14\xfc\x77\xa7\x1d\xf7\x0b\xf8\x54\xf7\x97\xfc\xc6\x05\x9f\x06\xf7\x22\xf8\xa8\xa2\xe0\x99" +"\x9d\xb7\x90\x19\x22\x1d\xfb\x3b\x20\x1d\xb5\x9e\x7e\x71\x7e\x89\x7c\x86\x7b\x1f\x0e\xd0\x26\x1d\xf7\x2d\xf7\x81\x15\x49\x6c\x67" +"\x73\x4a\x1b\x4b\x6b\xa8\xc8\x85\x1f\x60\x06\x56\x8e\x7a\x97\x71\x1e\x5a\x1d\xd0\x26\x1d\xfb\x19\xd6\x51\x1d\xd0\x26\x1d\xf7\x4a" +"\xf7\x4a\x15\xfb\xd9\x06\x7a\x45\x05\xf7\xda\x06\x0e\xf7\x18\xf7\x11\x41\x1d\xbc\xfb\x6f\x15\x7e\xfb\x41\x05\xf7\x7e\x06\xa3\xe5" +"\x05\x6f\xc0\x84\xa9\xca\x1a\xd0\x99\xd8\xa7\xe1\x1e\xf7\x06\xb0\xbb\xbc\xd7\x1b\xce\xb5\x5d\x42\x49\x73\x29\x66\x36\x1f\x69\x3b" +"\x70\x60\x5d\x59\x73\x31\x18\xf7\x83\x06\xd6\xf7\x41\x05\x79\x06\x5c\x49\x6b\x7a\x3b\x89\x08\x36\x06\xbe\xa3\xac\xa1\xb9\xb3\x08" +"\xef\xe4\xbc\xe8\xef\x1a\xf7\x18\x30\xdf\xfb\x22\x44\x46\x77\x66\x55\x1e\x2c\x4d\x4a\xfb\x0e\xfb\x06\x1a\x2d\xbb\x3d\xe8\x52\x1e" +"\x49\x06\x4a\x89\x59\xac\x7c\xc1\x08\x0e\xd0\xf8\x70\xf9\x34\x15\x3a\x2f\x67\x54\x4b\x1f\x25\x32\x4a\xfb\x23\xfb\x17\x1a\x4b\xa1" +"\x4e\xb1\x62\x1e\x64\xae\xc6\x75\xcc\x1b\xf7\x6b\xf7\x56\xf7\x6b\xf7\x82\xf7\x21\x35\xe2\xfb\x1e\x1f\x7e\x63\x15\xc4\xb0\x5a\x3e" +"\xfb\x09\x55\xfb\x4c\x4d\x2c\x1f\x5a\x6b\x57\x6c\x5a\xd3\x1d\xbe\xad\xc4\x1b\x0e\xd9\xf4\x41\x1d\xf8\x7d\xf7\xac\x15\x3b\x2e\x67" +"\x54\x4b\x1f\x26\x32\x49\xfb\x22\xfb\x18\x1a\x4b\xa1\x4e\xb1\x62\x1e\x64\xae\xc6\x75\xcd\x1b\xf7\x6b\xf7\x56\xf7\x6b\xf7\x81\xf7" +"\x22\x35\xe2\xfb\x1f\x1f\x7e\x63\x15\xc5\xb0\x5a\x3f\xfb\x09\x55\xfb\x4c\x4c\x2b\x1f\x5a\x6b\x58\x6c\x59\xd3\x1d\xbf\xad\xc3\x1b" +"\x0e\xd0\xe2\x1d\x76\x8e\x6d\x1b\xfb\x6a\xfb\x63\xfb\x7c\xfb\x85\x67\x0a\x74\x90\x76\xb3\x0a\x56\x1b\x70\x79\x91\x9b\x76\x1f\xf7" +"\x8c\xf9\x4b\x15\xf7\x2c\xe2\x05\xa9\x9d\x94\x95\x9e\x1a\xa5\x75\xa0\x70\x7a\x7a\x7f\x65\x68\x1e\xfb\x0e\xfb\x17\x05\x0e\xf7\x1c" +"\xf8\x0e\xf9\x48\x15\x55\x0a\x9d\x7b\x73\x1a\x86\x8a\x83\x89\x83\x1e\x36\x88\x57\x84\x62\x7d\x08\xfb\x19\x5d\x3f\xa7\x0a\x7d\x5b" +"\x7c\x7b\x67\x87\xdc\x1d\xf7\x9f\x21\x1d\x6e\x06\x72\x8c\x79\x9b\xa2\x1a\x92\x8d\x94\x8d\x95\x1e\xe1\x8e\xb3\x90\xb9\x9b\x08\xf7" +"\x18\xb7\xd8\xf5\xf7\x1c\x1a\xf7\x1e\x34\xe3\xfb\x28\x97\x1e\x97\xb7\x9d\x9c\xcc\x1d\xbd\xe5\x1a\xf7\x03\xba\xf7\x0f\xcc\xc5\x1e" +"\xac\xa9\xa9\x95\xcb\x90\x08\xf7\x12\x16\xb5\x81\x97\x85\x9b\x74\x08\xa1\x6d\x95\x66\x5a\x1a\xfb\x02\x5e\xfb\x09\x4b\x51\x1e\x64" +"\x69\x6e\x7f\x54\x88\x08\x0e\xf7\x11\xf9\xbf\xf9\x2a\x15\xfd\x0e\x06\x85\x53\x1d\xf7\x12\xf8\x6e\x98\xb8\x9c\x9d\xae\x8e\x19\xf7" +"\x12\x06\xa5\x9c\x7a\x71\x85\x8a\x85\x8a\x85\x1f\xfb\x13\xfc\x6e\x79\x0a\x0e\xf7\x27\xfa\x18\xf9\x1c\x15\xa0\x62\x74\x92\x6b\x1b" +"\x69\x72\x81\x76\x78\x1f\x76\x73\x7f\x6c\x74\x2f\x68\xfb\x2e\x53\x46\xfb\x03\x74\xe1\xf7\xd6\x18\x97\xb8\x9d\x9d\xae\x8e\x08\x97" +"\x21\x1d\xfb\xa3\x20\x1d\xa1\x06\xac\x8a\x9f\x7b\x71\x1a\x86\x8a\x85\x89\x84\x1e\x35\xfb\xd8\x71\x91\x80\x90\x7f\x94\x19\x6e\xa1" +"\x7a\xb1\xb6\x1a\xa4\x91\xaf\x97\xb9\x1e\xa2\xe3\x8c\x8f\xa3\x1a\xb9\x6f\xa7\x5e\x6d\x73\x85\x74\x58\x1e\x8e\x71\x05\x8f\x98\x90" +"\x8c\x92\x1b\x9b\x94\x80\x78\x81\x8a\x85\x86\x77\x1f\x7b\x50\x05\x83\x6c\x87\x73\x76\x1a\x5c\x9d\x5a\xa9\x66\x1e\xaf\x5e\xb2\x7a" +"\xdb\x84\x68\xfb\x1a\x18\x7e\x5f\x74\x78\x64\x88\x08\x76\x06\x85\x75\x05\xf7\xb9\xca\x1d\xb0\xf7\x1c\xf7\x54\x9e\xf7\x00\xdd\xac" +"\xf7\x30\x19\x9b\xc8\x05\xd9\xa0\x94\x9a\xa3\x1b\x92\x91\x89\x86\x98\x1f\x0e\x99\x3b\x1d\xdd\xf7\xff\xa8\x1d\x99\x3b\x1d\xf7\xc5" +"\xf8\xad\x20\x0a\x99\x3b\x1d\xfb\x28\xfd\x43\x39\x0a\x61\x97\x0a\xfb\x8b\x20\x1d\xa6\x06\xa5\x9c\x7a\x71\x84\x8a\x86\x8a\x85\x1f" +"\x3a\x1d\x87\x20\x1d\xf7\xac\x21\x1d\x64\x06\x71\x7a\x9c\xa5\x8f\x8c\x93\x8d\x91\x1f\xf7\x24\xf8\xb1\x15\xcb\x88\xac\x6a\x50\x1a" +"\x67\x7d\x55\x78\x67\x1e\x5c\x72\x6e\x79\x5a\x1b\x7f\x83\x8c\x8f\x7b\x1f\x0e\x2a\x36\x0a\xf7\x9a\xf8\x9c\x29\x0a\x2a\xf7\x5e\x7b" +"\x15\x89\x9a\x91\x8b\x98\x1b\xd0\xcb\x9f\xad\xb0\x1f\xb2\xaf\xa2\xc1\xc5\x1a\xe3\x5e\xcd\xfb\x0f\xe8\x1e\x4d\xba\x7c\xa1\xb8\x1a" +"\xcc\xb3\xb3\xcb\xdb\xb1\x5a\xfb\x09\x99\x1e\xa6\x87\xb3\xf7\x5d\x05\x6d\x06\x79\x82\x7d\x83\x76\x1b\x80\x7c\x8e\x93\x72\x1f\x99" +"\x62\x6f\x90\x6e\x1b\xfb\x06\x34\x37\xfb\x02\x71\x90\x74\x93\x7a\x1f\xa1\x61\xb4\x5f\xc3\x5f\x08\xda\x4f\xad\x5d\x5c\x1a\x75\x84" +"\x72\x7f\x76\x1e\x64\x74\x69\x78\x59\x1b\x57\x5e\xa3\xb6\x71\x1f\x78\xaa\x83\xa9\x87\xc7\x6e\x8d\x18\x67\xfb\x74\x05\xa9\x06\xa8" +"\x97\x92\x91\x9e\x1b\x95\x98\x88\x83\xa2\x1f\x9c\x85\x99\x87\x9b\x86\x53\x38\x18\x98\x7f\x05\x8e\x96\x93\x7b\x0a\x30\xf8\x61\xf9" +"\x67\x48\x0a\xfc\x06\xfd\xd8\x89\x0a\x5d\xce\xfb\x0e\xe7\x1f\xab\x0a\xcc\xda\xb2\x5a\xfb\x09\x98\x1e\xa6\x87\xb3\xf7\x5d\x05\x6d" +"\x06\x79\x82\x7d\x83\x76\x1b\x80\x7d\x8e\x93\x71\x1f\x99\x62\x6f\x90\x6e\x1b\xfb\x06\x34\x37\xfb\x02\x71\x90\x74\x93\x7a\x1f\xa1" +"\x61\xb4\x5f\xc3\x5f\x08\xda\x4f\xad\x5d\x5c\x1a\x75\x84\x72\x7f\x76\x1e\x64\x74\x69\x78\x59\x1b\x57\x5e\xa3\xb6\x71\x1f\x78\xaa" +"\x83\xa9\x87\xc7\x6e\x8d\x18\x0e\x2a\x36\x0a\xaa\xfc\xa6\x35\x1d\x69\xf8\xfe\xf9\x2b\x15\xfc\xb1\x06\xf7\x1e\xfb\xf3\xfb\xcf\xfb" +"\xcc\x05\xf8\xd1\x06\xf0\xf7\x52\x05\x4d\x06\x67\x3e\x80\x82\x43\x89\x08\xfb\x79\x06\x76\x82\x8f\x93\x95\x92\x95\xa7\xa7\x1f\xf7" +"\x5d\xf7\x60\x2e\xf7\x86\x05\xf7\x4c\x06\xb4\xaa\x6c\x63\x88\x8b\x87\x8a\x84\x1f\x8a\x76\x05\xc6\x06\x0e\x61\xf8\x6f\xf9\x00\x15" +"\xad\x89\x9a\x86\x9e\x7d\x08\xa4\x78\x9a\x6f\x6e\x1a\x85\x8a\x82\x8a\x81\x1e\xa5\x06\xb6\xf7\x38\x05\xfc\x6a\x06\x5f\x42\x0a\x0e" +"\x61\xf8\x07\xf7\xf6\x15\xd9\xf7\xac\xe9\x8a\xb2\x60\x90\xfb\x03\x19\xa6\x89\xaf\xf7\x54\x05\xfc\xbb\x06\x65\xfb\x3f\xa4\x84\xbf" +"\xef\xca\xb5\xf1\x8c\x19\x3e\xfb\xac\x05\x31\x06\x7e\x55\x05\xe3\x06\x53\xfb\x5f\x05\x58\x7d\x71\x76\x58\x1b\x7d\x72\xf7\xdf\xd9" +"\x1d\xba\xf7\x40\x05\xe8\x06\x97\xc1\x05\x0e\x61\x43\x0a\x7d\xf8\x3b\x20\x0a\x61\xf7\x85\x16\xf7\x20\xa5\x1d\xaf\xf7\x54\x05\x8b" +"\x0a\xf7\x27\x06\x4c\x2f\x98\x7f\x05\x8e\x97\x92\x8c\x97\x1b\xa8\x9c\x7e\x74\x72\x75\x7b\x69\x75\x7b\x8f\x98\x6e\x1f\x75\x6a\x05" +"\x79\xb7\xab\x61\x1d\xf7\x02\xf7\xc1\xf8\x62\x15\x52\xfb\x7e\x05\xa8\x06\xc0\x99\xa2\x9d\xbf\x1b\xaf\xa3\x79\x70\x86\x8a\x87\x88" +"\x7a\x1f\xa8\x06\xc5\xf7\x7e\x05\x6e\x06\x58\x78\x77\x7c\x5b\x1b\x64\x76\x9a\xa8\x91\x8b\x8f\x8d\x97\x1f\xf7\x0e\xf7\x6d\x15\x4d" +"\x4b\x7e\x74\x55\x1f\x4f\x71\x59\x61\x5a\x4a\x08\x4a\x37\x6b\x31\x2d\x1a\xfb\x34\xf1\x28\xf7\x39\xf7\x17\xf7\x0d\xbb\xd9\xcd\x1e" +"\xd4\xe0\xbd\xf7\x15\xee\x1a\xf7\x32\x22\xee\xfb\x3b\x1e\x8c\x6a\x15\xb2\xac\x7d\x73\x9d\x1f\xa0\x6e\x98\x5e\x5d\x1a\xfb\x30\x38" +"\xfb\x6e\x38\x4d\x1e\x76\x6f\x57\x7c\x61\x1b\x37\x61\xbe\xf2\xf7\x21\xc7\xf7\x46\xdc\xeb\x1f\xb2\xab\xc2\xa1\xc9\x1b\x0e\xd8\x21" +"\x0a\xfb\x09\xf7\x8f\xc1\x1d\x85\x8a\x1a\x26\xb7\x5b\xe8\xec\xcc\xc6\xf2\x9c\x1e\x0e\xd0\x21\x0a\xfc\x1b\xdd\x51\x1d\xd0\x21\x0a" +"\xfb\x08\xf7\x51\x25\x0a\xd0\xf8\xac\xf9\x31\x15\x72\x07\xc4\x86\xa2\x7b\x67\x1a\x7a\x84\x67\x7f\x60\x1e\x51\xfb\x65\x70\x29\x75" +"\x59\x6d\x67\x19\x63\x69\x5f\x77\x54\x1b\x3f\x5d\xb1\xca\xa7\x8d\x95\xa5\xea\x1f\xdd\xf7\xc0\x9c\xc4\x9a\x97\xc9\x8e\x19\xa4\xfb" +"\xcb\x72\x07\xd0\x81\x8f\x89\x70\x1a\x7f\x85\x6c\x82\x6a\x1e\x54\xfb\x62\x05\x74\x39\x80\x4f\x6a\x1a\x29\xe7\x47\xf7\x16\xc0\xb7" +"\x95\xa0\xb5\x1e\x61\x57\x80\x74\x6d\x1a\x5c\xb8\x69\xc8\xbd\xba\xa8\xb9\xa5\x68\x1d\x80\x88\x7c\x1b\x63\x74\xa1\xb3\xb0\x96\xb4" +"\x9d\xa5\x1f\xa4\xb1\x9b\xa3\x90\x96\x95\xa1\x97\xaf\x9f\xd1\xcd\xf7\x78\x18\xb3\xf7\x18\x92\x95\xc2\x96\x08\xa4\x07\x0e\x61\x60" +"\x0a\x0e\x61\x60\x0a\xfb\x58\xf7\xb0\x15\x69\x6f\x70\x68\x68\xa8\x6e\xae\xad\xa6\xa7\xad\xae\x6e\xa8\x69\x1f\xf7\x59\x16\x68\xbc" +"\x0a\x6f\xa8\x69\x1f\x0e\xec\xf7\x03\xf8\x1c\x15\x99\xaa\x93\x9c\x8f\x92\x47\x1d\x85\x6c\x87\x51\x0a\x8a\x7a\x8a\x87\x89\x73\x08" +"\xf8\x5e\x53\x15\x4c\xf7\x71\x05\x89\x95\x89\x96\x93\xb8\x1d\x76\x42\xa0\x1f\xce\xfb\x91\x55\xfb\x61\x2f\x1d\x6b\x06\x86\x75\x05" +"\xf7\xc5\xca\x1d\xc2\xf7\x60\xf7\x68\xf7\xad\xad\xb6\xa4\xa1\xa2\x92\x19\x22\x1d\xfb\x52\x20\x1d\x9e\x06\xa5\xa2\x78\x74\x7b\x84" +"\x78\x7e\x7a\x1f\x0e\xd0\x21\x0a\xfb\xcf\xf7\xd4\x30\x0a\xd0\x21\x0a\x20\xf7\x6b\x15\x6b\x7c\x7e\x81\x74\x1b\x7f\x7c\x90\x96\x70" +"\x1f\x9c\x63\x6a\x94\x92\x0a\xa6\x96\x88\x9e\x1b\xc7\xae\xaf\xde\xa1\x1f\x0e\xf7\x80\x2c\x0a\xfb\xf8\xdc\x15\x76\x0a\xf7\x80\x2c" +"\x0a\xfb\xb9\xdc\x15\xbe\x06\x35\xf7\x42\x05\x3a\x2a\x0a\xf7\x80\x2c\x0a\xfc\x8b\xf7\x70\x15\x68\x6e\x6e\x66\x36\x1d\xf7\x80\x2c" +"\x0a\xfc\x03\xdc\x15\xfb\x03\xf7\x27\x05\xa1\x7b\x77\x97\x77\x1b\x73\x76\x76\x73\x3d\x0a\xf7\x19\x32\x05\x0e\x91\xf8\x6d\xf7\x73" +"\x15\xcb\xf7\x84\x05\x76\x06\x57\x78\x6a\x71\x5c\x1b\x40\x06\x54\x6d\x9f\xb0\x8f\x8b\x8f\x8c\x98\x1f\x76\x06\x4b\xfb\x84\x05\xa0" +"\x06\x9e\xbf\xac\xa6\xba\x8a\x08\xd7\x06\xc1\xa9\x77\x66\x86\x8b\x87\x8a\x7f\x1f\xf7\x06\x65\x15\x5e\x55\x4c\x65\x60\x8c\x08\xfb" +"\x62\x06\x57\x8a\x57\xb0\x73\xc2\x08\x79\x06\x79\xfb\x4d\x05\xf8\x5e\x06\xdc\xf7\x4d\x05\xe6\xf8\x71\x15\xfc\x6e\x06\x5f\xfb\x3b" +"\x05\x9d\x06\xa7\xbc\xbe\xa9\xc1\x89\x08\xf7\x4e\x06\xce\x8d\xb9\x6e\x91\x59\x08\x9d\x06\x0e\x61\x2d\x0a\xf7\xf8\xf7\x25\x23\x1d" +"\x61\x2d\x0a\xf7\xb7\xf7\x25\x8e\x0a\x61\x3f\x1d\xfb\x3c\xf9\x6a\x29\x1d\x61\x3f\x1d\xfb\x15\xf9\xf5\x2a\x1d\x61\xf8\xbd\xf7\x4a" +"\x15\x72\x06\x20\xfb\x01\x4d\x6b\x20\x89\x08\x3c\x06\xf8\x76\xf8\xed\x05\xa1\xfc\x85\x07\x56\xfb\x30\x05\xac\x06\xb8\xdb\xd5\xb1" +"\xf6\x8a\x08\xf1\x06\xfc\x72\xfc\xed\x85\x75\x05\xf8\x90\x06\x0e\x25\x1d\xf7\x3a\xf7\x96\x38\x0a\xd0\xf7\xf4\xf8\x20\x15\xbd\x79" +"\x77\x9b\x60\x1b\xfb\x13\xfb\x29\xfb\x54\xfb\x38\x47\xbb\x59\xcc\xcf\x9d\x1d\x63\x71\xab\xbf\x9a\x8c\x97\x8f\x9f\x1f\xb2\x94\x05" +"\xf7\x25\xac\xde\xce\xdd\x1a\xc2\x66\xab\x4d\x59\x6f\x7c\x59\x60\x1e\x9f\xcc\x24\x86\x05\x36\x68\x15\xa7\x9f\x73\x6b\x55\x6b\x23" +"\x64\x47\x1f\x55\x6e\x6d\x72\x69\x1b\x6d\x77\xa5\xb3\x8d\x1f\x8e\xc5\xa5\xde\xb1\xce\x08\xc6\xac\xab\xa7\xab\x1b\xf7\x19\xfb\x50" +"\x15\xf7\x1a\xb2\xb6\xcb\xbd\x1b\xa2\x95\x7e\x70\x51\x6d\x5b\x50\x66\x1f\x6c\x78\x75\x82\x6f\x87\x08\x82\xf7\xc2\xa6\x0a\x93\x0a" +"\x0e\xf7\xef\xa9\x0a\x99\x79\x1d\x79\xf8\x19\xf9\x04\x15\xae\x06\xec\x8c\xbc\x63\x96\x35\x08\x9e\x06\xb7\xf7\x37\x05\xfc\x5f\x20" +"\x1d\xa7\x06\xa5\x8a\x9c\x7a\x72\x1a\x85\x8a\x85\xbf\x0a\x68\x88\x19\x7c\x20\x1d\xf7\xd6\x06\xf7\x0f\x39\x1d\x65\xa6\x69\x92\x20" +"\x8e\x08\x80\x62\x15\xaf\x9f\x88\x82\x9c\x94\x0a\x0e\x99\x6f\x1d\x5a\x6c\x0a\x0e\xa9\xf7\x69\xf9\x2a\x15\x85\x75\x05\x99\x06\xb6" +"\x9c\x7c\x65\x6e\x83\x61\x7a\x47\x1f\x6a\xfb\x13\x67\x2d\x5d\x3d\x08\x3b\x5d\x5e\x69\x50\x1b\x76\x06\x54\xfb\x60\x05\xa4\x06\xd6" +"\xf7\x11\xd0\xb9\xf7\x04\x89\x08\xf7\x2d\x06\xf7\x04\xbb\x5f\x25\x88\x8b\x81\x8a\x81\x1f\xa4\x06\xc1\xf7\x60\x05\x50\x06\x75\x83" +"\x90\x9a\x8f\x8b\x8b\x8f\x98\x1f\xf7\x19\xf8\x8a\xaa\x0a\x22\x1d\xfb\xfb\xfd\x05\x15\xfb\x87\x06\xdf\xd8\xe4\xf7\x7c\xbe\xf7\xaa" +"\x08\xf7\x43\x06\x0e\x99\xf7\xd3\xf7\xdf\x15\xc9\xa3\x1d\xd0\xf7\x96\x05\xbd\x72\x0a\x68\x75\x9a\xa3\x94\x8d\x96\x8e\x98\x1f\x0e" +"\x99\xf7\xd2\xf7\xdf\x15\xca\xa3\x1d\xcf\xf7\x96\x05\xbe\x72\x0a\x67\x75\x9a\xa3\x93\x8d\x97\x8e\x98\x1f\xe5\xf9\x7e\xa1\x0a\xf7" +"\x66\xbe\x1d\xf7\x9d\xf8\xd0\xf7\xce\x15\xd8\xfb\x74\x05\x8f\x7f\x8d\x7f\x80\x1a\x76\x7a\x7f\x6c\x1e\x86\x75\x05\xf7\x8a\x06\x91" +"\xa1\x62\x8c\x79\xa1\x74\xd9\x19\x2c\xf7\xa4\xca\xc3\xa6\xa3\xba\xb8\x19\xf7\x01\xf2\x9a\x95\xc8\x92\x90\xa1\x18\xfb\x75\x06\x86" +"\x75\x05\x96\x06\x9d\x97\x7e\x76\x5b\x39\x37\xfb\x2f\xfb\x01\x1f\x80\x06\xc3\xf7\x65\x98\xbc\xa1\x9d\xb5\x8a\x19\x22\x1d\xfb\x96" +"\x20\x1d\x9a\x06\xab\x9d\x7d\x70\x83\x8a\x83\x86\x7b\x1f\x52\xfb\x6a\x05\x81\x06\x3e\xf7\x00\x5f\xe0\xb5\x1a\xa9\xa4\xa1\xad\x1e" +"\x92\x21\x1d\xfb\x85\x06\x86\x75\x05\x96\x06\xc7\x89\xa9\x6e\xcf\xfb\x0b\xa0\x67\x96\x79\x9e\x6d\xfb\xc4\xfb\xdf\x18\x6e\x6c\x6c" +"\x7a\x68\x86\x84\x75\x18\xf7\xa0\x21\x1d\x71\x8c\x84\x8f\x9c\x1a\x95\x90\x95\x98\x99\x1e\xf7\x69\xf7\x80\x05\x94\x06\x4f\xfb\x76" +"\x7e\x5b\x78\x7a\x63\x8a\x33\x0a\xf7\x98\x21\x1d\x7b\x06\x65\x79\x98\xa7\x93\x8d\x97\x92\xa5\x1f\xc2\xf7\x61\x05\x0e\xfb\x24\xf7" +"\x57\xf7\xea\x15\x9f\x06\xd6\xb0\x67\x43\xfb\x00\x47\x38\x33\x4a\x59\xb3\xde\x61\x1f\x6e\x7e\x9f\x59\x97\x75\xa4\x71\x19\x5e\xb5" +"\xc2\x74\xcf\x1b\xf7\x24\xf7\x04\xf1\xf7\x15\xba\x7b\xb0\x6e\xa4\x1f\x78\x9a\x7a\x92\x5e\x95\xc1\x93\xa4\x94\xa8\xa0\x08\xb6\xaa" +"\xa4\xbe\xc2\x1a\xe0\x4a\xc3\x27\x70\x69\x86\x84\x72\x1e\x83\x70\x8b\x8b\x82\x1b\x7c\x84\x90\x9a\x88\x1f\x77\x06\x61\xfb\x43\x05" +"\x9e\x06\xe8\xbe\xbf\xb8\xc3\x1b\xb5\xa0\x6f\x52\x49\x74\x56\x62\x6f\x1f\x77\x6d\x70\x84\x53\x1b\x0e\xf7\x11\xf7\x9b\x4e\x1d\x0e" +"\xf7\x11\xf7\x99\x4e\x1d\xfb\x41\xf7\xb5\x15\x67\xb3\x1d\x1f\x8c\x87\x8b\x86\x89\x1a\x73\x6f\x7a\x65\x6c\x71\x98\x9a\x8f\x8c\x8f" +"\x8f\x94\x1e\x91\x99\x8d\x92\x92\x1a\xa0\x77\x9b\x70\x1e\x0e\xa4\xf7\xcc\xf7\xf5\x15\xdc\xfb\x97\x05\x8f\x7f\x8d\x80\x82\x1a\x73" +"\x7b\x7b\x74\x49\x0a\xfb\x04\xf7\xdc\xf7\x39\xf7\x2d\xc3\xb8\xb2\x9e\xb9\x8f\x19\x91\x3b\x0a\x9b\x98\x7c\x79\x76\x7b\x6f\x72\x73" +"\x1f\xfb\x4f\xfb\x43\xc4\xf7\x6b\x98\xb8\x9c\x9d\xae\x8e\x19\xa1\x28\x1d\xfb\xb5\x45\x0a\xf7\xa9\x21\x1d\x6c\x06\x71\x7a\x9c\xa4" +"\x91\x8c\x91\x8d\x92\x1f\x0e\xac\xf8\x94\xf9\x04\x15\xfb\x23\xfc\xac\x34\x0a\x67\x1d\x70\x8c\x7b\x9b\xa5\x1a\x93\x8b\x8f\x8d\x91" +"\x1e\xf7\x17\xf8\x7f\x2e\x1d\xfc\x7b\x06\x84\x75\x05\x99\x06\xaf\xa5\x73\x6b\x7c\x8a\x84\x80\x61\x1f\x73\x2f\x05\xfb\x9f\x45\x5a" +"\xfb\x06\x60\x1b\x82\x84\x91\x95\x8a\x1f\xbb\x88\x7b\x9e\x66\x1b\x67\x72\x71\x65\x5c\xad\x6d\xc1\xf7\x04\xb7\xd8\xf7\xfe\xec\x1f" +"\xbf\xf7\x58\x05\x0e\xf7\x80\x69\x0a\xf7\xb6\x06\xec\x1d\x93\x8c\x8f\x8c\x92\x53\x0a\xae\x8e\x19\x9c\x21\x1d\xfb\x59\x06\x0e\xf7" +"\x11\x64\x0a\xfb\xbd\x52\x1d\x0e\xd0\xf8\x6e\xf9\x31\x15\x3b\x2f\x68\x53\x4b\x1f\x26\x33\x49\xfb\x22\xfb\x17\x1a\x4c\xa1\x4e\xb1" +"\x61\x1e\x65\xae\xc6\x75\xcd\x1b\xf7\x6a\xf7\x56\xf7\x6a\xf7\x80\xf7\x22\x36\xe1\xfb\x20\x1f\x7f\x63\x15\xc4\xb0\x5a\x3f\xfb\x09" +"\x55\xfb\x4b\x4d\x2c\x1f\x5b\x6b\x57\x6c\x5a\xf3\x1d\xc2\xe8\x1f\xca\xb1\xbe\xad\xc4\x1b\x0e\xf7\x11\xf7\x4c\xf9\x2a\x15\x82\x0a" +"\xf7\xa5\x06\xb5\x1d\xf7\x78\x06\xfb\x22\xfc\xac\x7e\x4e\x0a\xf7\xa6\x21\x1d\x6e\xb6\x0a\xf7\x16\xf8\x7f\xaa\x0a\x22\x1d\x0e\x61" +"\x97\x0a\xfb\x8c\x06\x86\x75\x05\xa6\x06\xa6\x9b\x7a\x71\x84\x8a\x86\x8a\x85\x1f\xfb\x17\xfc\x7f\x2f\x1d\x87\x20\x1d\xf7\xac\x21" +"\x1d\x64\x06\x71\x7a\x9c\xa5\x8f\x8c\x92\x8d\x92\x1f\xf7\x24\xf8\xb1\x15\xcb\x88\xac\x6b\x4f\x1a\x66\x7d\x57\x78\x66\x1e\x5d\x72" +"\x6e\x78\x5a\x1b\x7f\x83\x8c\x8f\x7b\x1f\x0e\x99\xf8\xcf\xf7\x1f\x15\x48\x5c\x49\x67\x42\x1b\x23\x4c\xd3\xf7\x0e\xf7\x6d\xf7\x19" +"\xf7\x55\xf7\x28\xd9\xc1\x53\x3a\x88\x8b\x81\x8a\x84\x1f\x9d\x06\xbe\xf7\x54\x05\x79\x06\x7a\x84\x7f\x83\x78\x1b\x7f\x84\x8c\x97" +"\x5d\x1f\x93\x68\x73\x8f\x75\x1b\xfb\x0a\xfb\x17\x4b\x2b\x3b\x1f\x51\x45\x6e\x3b\x31\x1a\xfb\x3c\xf2\xfb\x09\xf7\x2a\xf6\xde\xb9" +"\xe7\xc7\x1e\x0e\x61\xf8\x6f\xf9\x00\x15\xad\x89\x9a\x86\x9f\x7d\x08\xa3\x78\x9a\x6f\x6e\x1a\x85\x8a\x82\x8a\x81\x1e\xa5\x06\xb6" +"\xf7\x38\x05\xfc\x6a\x06\x5f\x42\x0a\x0e\xb6\xf8\x43\xf7\xb0\x15\x45\xf7\xa5\x05\x88\x94\x88\xa3\x93\x1a\xa6\xa0\x9a\xb2\x1e\x92" +"\x06\x92\xa1\x05\xfb\xab\x06\x85\x75\xbf\x86\x98\x7a\xa3\x2a\x19\xf2\xfc\x0c\x6b\x5a\x79\x77\x6f\x77\x19\x80\x7c\x7e\x85\x85\x1b" +"\x82\x85\x90\x94\x90\x8b\x8c\x90\x97\x1f\x8d\x92\x8c\x90\x90\x1a\xa9\x6f\xa3\x67\x63\x6f\x6e\x61\x58\xae\x6d\xc8\xbe\xb5\x9d\xb4" +"\xb2\x1e\xa8\xa8\x9a\x9e\xd0\xf0\xf7\x7e\xf7\xeb\x18\xbd\xd2\xab\xa6\xb4\x8c\x92\xa1\x18\xfb\x68\x20\x1d\x97\x06\xa3\x9a\x7c\x73" +"\x74\x7f\x6d\x78\x6e\x1f\x0e\xf7\x59\xf8\x2b\xf9\x48\x15\x55\x0a\x9d\x7b\x73\x1a\x86\x8a\x83\x89\x83\x1e\x36\x88\x57\x84\x63\x7d" +"\x08\xfb\x19\x5d\x3e\xa7\x0a\x7e\x5b\x7b\x7b\x67\x87\xdc\x1d\xf7\x9f\x21\x1d\x6e\x06\x72\x8c\x79\x9b\xa3\x1a\x91\x8d\x94\x8d\x95" +"\x1e\xe1\x8e\xb3\x90\xb9\x9b\x08\xf7\x18\xb7\xd8\xf5\xf7\x1c\x1a\xf7\x1e\x34\xe3\xfb\x28\x97\x1e\x97\xb6\x9d\x9d\xcc\x1d\xbc\xe6" +"\x1a\xf7\x03\xba\xf7\x10\xcc\xc4\x1e\xac\xa9\xa9\x95\xcb\x90\x08\xf7\x12\x16\xb5\x81\x97\x85\x9b\x74\x08\xa1\x6d\x95\x66\x5a\x1a" +"\xfb\x02\x5e\xfb\x09\x4b\x51\x1e\x65\x69\x6d\x7f\x54\x88\x08\x0e\x99\xaf\x0a\x6f\x77\x76\x85\x1d\x96\x1a\xa4\x9a\x9e\x9f\x1e\x99" +"\x28\x1d\xfb\x9b\x4b\x0a\xe3\xfb\x92\x18\xfb\x33\xfb\x43\x54\x4c\x60\x69\x67\x82\x33\x0a\xf7\x61\x21\x1d\x7e\x06\x6a\x79\x97\xa2" +"\x9b\x94\x9c\xa3\xa6\x1f\x0e\xf7\x11\xf7\x74\xb0\x15\x8d\x1d\xf8\x34\x06\xf7\x04\xbb\x5f\x25\x1f\x74\xa3\x07\xc1\xf7\x60\x05\x50" +"\x06\x75\x84\x8f\x9b\x8f\x8c\x91\x8d\x92\x1f\xf7\x19\xf8\x8a\x98\xb8\x9c\x47\x0a\xfb\x24\xfc\xb2\x05\x0e\xea\xf8\x49\xe3\x15\x7f" +"\x5e\x7a\x79\x68\x88\x08\x67\x1d\x71\x8c\x7a\x9b\xa4\x1a\x93\x8c\x8f\x8c\x92\x53\x0a\xae\x8e\x19\x97\x06\x68\x0a\xc0\x64\xec\xc2" +"\xb3\x93\xa5\xd4\x1e\x0e\xf8\x6d\xf7\x7b\xb0\x15\xf7\x23\xf8\xad\x98\x1d\xfc\x80\x7f\x5e\x7a\x7a\x3c\x0a\xfa\x58\x06\x4c\x1d\x70" +"\x7b\x9c\xa5\x91\x8c\x90\x8c\x91\x1f\xf7\x17\xf8\x80\x7d\x1d\x0e\xf8\x6d\xf7\x54\xf9\x2a\x15\x86\x75\x05\xa0\x06\xa6\x8a\x9b\x7b" +"\x71\x1a\x83\x4d\x1d\xfc\x80\x7f\x5e\x7a\x7a\x3c\x0a\xf9\x7e\x06\xf7\x04\xba\x5f\x21\x89\x8b\x83\x8a\x82\x1f\xa4\x06\xc2\xf7\x60" +"\x05\x49\x06\x7b\x84\x91\x96\x91\x8c\x8e\x8e\x99\x1f\xf7\x19\xf8\x87\x7d\x1d\xfb\x68\x06\xf7\x23\xf8\xad\x2e\x1d\x0e\xf6\xf7\x61" +"\xf9\x2a\x15\x60\xfb\x36\x05\x9e\x06\xbd\xe4\xbd\xad\xe0\x8d\xfb\x23\xfc\xad\x18\x7f\x5e\x79\x79\x68\x88\x08\x7c\x20\x1d\xf7\xd6" +"\x06\xf7\x0f\x39\x1d\x65\xa6\x69\x92\x20\x8e\xc0\xf7\x5e\x18\x98\xb8\x9c\x9d\xae\x8e\x08\x97\x21\x1d\xfb\x27\xfb\xdf\x46\x0a\x0e" +"\xf7\xd0\xf8\x4c\xf9\x2a\x15\xfb\xa5\x06\x71\x0a\xf7\x0f\x39\x1d\x65\xa6\x69\x92\x20\x8e\xc0\xf7\x5e\x18\x91\x9b\x94\xaa\x9e\x9b" +"\xaa\x8e\x19\x97\x06\xfb\x21\xfb\xc9\x46\x0a\xf9\x16\x7a\x15\x6e\x06\x71\x8c\x7a\x9b\xa5\x1a\x90\x8c\x92\x8d\x91\x1e\xf7\x16\xf8" +"\x7f\xae\x1d\x84\xa2\x1d\x84\x20\x1d\xf7\xa5\x06\x0e\x78\xf8\x50\xf9\x2a\x15\xfb\xa5\x06\x71\x0a\xf7\x0f\x39\x1d\x66\xa5\x6b\x92" +"\xfb\x02\x8f\xc0\xf7\x5e\x18\x91\x9b\x94\xaa\x9e\x9b\xaa\x8e\x19\x97\x06\xfb\x21\xfb\xc9\x46\x0a\x0e\x89\xf8\x5b\xf7\xd8\x15\x70" +"\xfb\x01\x79\x5c\x62\x50\x08\x56\x66\x5c\x6f\x55\x1b\x5d\x5c\xa0\xaf\x66\x1f\x72\xa4\x7b\xa1\x71\xbe\x74\x80\x18\xa5\x4a\x9b\x6f" +"\xa6\x6e\x08\x5f\xb4\xbb\x78\xcf\x1b\xf7\x68\xf7\x44\xf7\x5b\xf7\x84\xda\x77\xc8\x63\xb6\x1f\xb5\x64\x52\x9f\x3a\x1b\x69\x6d\x88" +"\x83\x62\x1f\x86\x73\x82\x8a\x82\x1b\x7b\x85\x8f\x9c\x86\x1f\x77\x06\x5f\xfb\x5c\x05\xa0\x06\xa9\xc0\x9c\xa1\xaa\xa6\x08\xaf\xb3" +"\xb7\x9d\xb8\x1b\xd1\xaf\x5b\x2c\x64\x87\x6f\x7d\x4f\x1f\x3c\x06\x40\x77\x9f\xd6\x88\x1f\x77\x06\x54\xfb\x7f\x05\x9f\x06\xab\xd5" +"\xb4\xa9\xd0\x8a\x08\x0e\xf8\x27\xf8\x34\xf7\xd5\x15\x82\x67\x87\x6e\x6b\x1a\xfb\x25\xdf\x33\xf7\x1e\xf7\x68\xf7\x57\xf7\x6b\xf7" +"\x7f\xf7\x21\x35\xe2\xfb\x1f\x21\xfb\x00\x55\x2f\x40\x1e\x64\x5b\x6a\x51\x79\x54\x08\xfb\x12\x4a\x0a\xfb\xbd\x52\x1d\xca\xf7\x82" +"\x05\xf8\x8b\xf7\xc8\x15\xc5\xb0\x5a\x3e\xfb\x08\x55\xfb\x49\x4c\x2b\x1f\x5a\x6c\x57\x6c\x59\xf3\x1d\xc3\xe8\x1f\xca\xb0\xbf\xad" +"\xc3\x1b\x0e\xaf\xf8\xce\x16\x9b\x0a\x98\xb8\x9c\x32\x0a\xfb\x9f\x06\xfb\x40\x22\x3f\xfb\x11\x65\x97\x69\xa0\x73\x1f\x9f\x74\xa0" +"\x7e\xbf\x75\x44\x7c\x81\x85\x5d\x4a\x27\xfb\x20\x18\x6b\x5f\x76\x7d\x67\x8a\x08\x87\x06\x84\x75\x05\xf7\x54\x06\xf7\x51\xf7\x9e" +"\x05\xa3\x9c\x9b\x94\xa4\x1b\x8f\x8f\x8b\x8a\x94\x1f\x53\xfb\x66\x2f\x1d\x84\x20\x1d\xf7\x25\xf7\xe9\x15\x89\x81\x87\x8a\x84\x1b" +"\x51\x63\xbb\xd1\xe5\xd0\xd8\xdb\x97\x95\x89\x86\xa0\x1f\x0e\xfb\x4b\xf7\x5c\xf9\x2a\x15\x86\x75\x05\xa1\x06\xa5\x8a\x9c\x7a\x71" +"\x1a\x84\x8a\x86\x8a\x85\x1e\xfb\x14\xfc\x7d\x7e\x5d\x7a\x7a\x68\x87\x19\xac\x0a\x7a\x9c\xa4\x1a\x94\x8b\x8e\x8d\x92\x1e\xf7\x21" +"\xf8\xb0\x05\xf7\x96\x06\xae\xf7\x1c\x05\x74\x06\x6c\x45\x5c\x6c\x43\x8e\x08\x0e\xf7\x39\xf8\x7f\xf9\x00\x15\xc3\x06\xb2\xa3\x85" +"\x7b\xa0\x1f\xa4\x7a\x9a\x6e\x6e\x1a\x84\x8a\x83\x8a\x81\x1e\xa5\x06\xb6\xf7\x38\x05\xfc\xb2\x06\x5f\xa4\x1d\xf7\x71\x06\xde\xf7" +"\xc9\x05\x94\xb1\xa7\x8f\xa8\x1b\xc8\xaa\x6b\x4b\x5d\x80\x5a\x77\x5e\x1f\x66\x7a\x76\x78\x72\x1b\x7f\x84\x92\x96\x92\x8c\x8e\x92" +"\x91\x1f\x95\x97\x8f\x95\x99\x1a\xac\x75\xa0\x69\x67\x73\x71\x63\x52\xbb\x65\xd2\xf7\x13\xf3\xf7\x02\xf7\x19\xe3\x4a\xc0\xfb\x02" +"\x5d\x64\x85\x7d\x51\x1e\x0e\x5a\x6c\x0a\xf8\x1e\xf9\x5f\x15\xf7\x29\xe1\x05\xaa\x9c\x93\x96\x9e\x1a\xa4\x75\xa0\x71\x79\xe9\x1d" +"\x8f\xf9\x47\xf9\x37\x15\x77\x06\x79\x84\x7c\x81\x76\x1b\x82\x84\x8d\x92\x7a\x1f\x98\x69\x67\x91\x62\x1b\xfb\x01\xfb\x07\x58\x38" +"\x3b\x1f\x42\x40\x64\x2b\x25\x1a\xfb\x3d\xf0\xfb\x02\xf7\x31\xd3\xca\xa1\xb5\xc1\x1e\xa7\xa2\x9c\x9e\xa9\xb8\x78\x9a\x18\x69\x5b" +"\x77\x78\x67\x76\x08\x78\x69\x67\x81\x66\x1b\x24\x4c\xd8\xf7\x13\xa4\x8d\x9b\x91\xaf\x1f\xe7\x06\xcc\x8d\xa6\x71\x8d\x4a\x8c\x7f" +"\x18\x9e\x06\xc9\xf7\x7e\x05\x78\x06\x48\x66\x5c\x6e\x45\x1b\x35\x06\xa7\xeb\x9f\xb4\xb5\xbd\x08\xc7\xbe\xc9\xad\xc6\x1b\xb3\xab" +"\x7a\x6a\xa3\x1f\xa1\x6d\x93\x6f\x90\x55\x08\x9f\x06\x0e\x2a\xf8\xd0\xf9\x30\x15\x76\x06\x77\x83\x7b\x82\x70\x1b\x84\x7f\x8d\x8e" +"\x7e\x1f\x9d\x46\x63\x92\x6b\x1b\xfb\x03\x3d\x42\x22\x49\xac\x51\xd6\x45\x1f\xc0\x5b\x97\x7f\x94\x7f\x08\x9e\x72\x94\x71\x72\x1a" +"\x4c\x52\x52\x4b\x68\x60\xa0\xa8\x73\x1e\x70\xab\x77\xc2\xb6\x1a\x91\x8c\x95\x8c\x98\x1e\x72\x06\x59\xfb\x88\x05\xa4\x06\x9f\x97" +"\x97\x92\xa0\x1b\x94\x94\x8a\x89\x93\x1f\x75\xe3\xa0\x87\xb4\x1b\xf7\x14\xef\xe0\xf7\x01\xc9\x70\xb9\x3b\xd4\x1f\x58\xb9\x7e\x99" +"\x80\x9a\x08\x75\xa8\x80\xa9\xa7\x1a\xc6\xb3\xb7\xc2\xda\xcc\x43\x32\x87\x8b\x85\x8a\x84\x1e\xa2\x06\x0e\xfb\x9c\x7e\x1d\xfb\x9c" +"\xf7\xb6\xa1\x15\x6f\x54\x0a\x94\x8b\x8e\x8d\x92\x1e\xf7\x17\xf8\x7f\x2e\x1d\xfb\xa3\x06\x86\x43\x1d\x4b\xf9\xe9\xa1\x0a\xf7\x65" +"\xbe\x1d\xf7\x6a\xf9\x14\x15\xa9\x06\xa5\x9c\x7a\x71\x86\x8a\x84\x89\x85\x1f\xfb\x19\xfc\x8a\x05\x6a\x82\x80\x7d\x7b\x1b\x80\x82" +"\x93\x95\x91\x8d\x90\x8e\x8f\x1f\x9b\xa3\x8e\x92\x9e\x1a\xab\x76\x9f\x6a\x68\x70\x6b\x61\x52\xba\x60\xca\xe5\xd6\xce\xf7\x00\xa7" +"\x1e\xf7\x01\xf8\x2c\x4a\x1d\x93\x21\x1d\xfb\xa5\x06\x0e\xf7\x93\xf8\x8b\xf9\x04\x15\xfb\x23\xfc\xac\x34\x0a\x7b\x20\x1d\xf7\xd7" +"\x06\xf7\x0e\x39\x1d\x65\xa6\x69\x92\x20\x8e\xc1\xf7\x5e\x18\x91\x9b\x93\xaa\x9f\x9b\xa9\x8e\x19\x97\x21\x1d\xfc\x77\x06\x84\x75" +"\x05\x99\x06\xaf\xa5\x73\x6a\x7e\x89\x80\x81\x64\x1f\x73\x2f\x05\xfb\xa1\x44\x5c\xfb\x04\x5e\x1b\x81\x85\x92\x9b\x8a\x1f\xb2\x8a" +"\x77\xa1\x69\x1b\x67\x72\x71\x65\x5c\xad\x6c\xc1\xf7\x04\xb7\xd8\xf7\xfe\xec\x1f\xbf\xf7\x58\x05\xf7\x62\xfb\xb9\x15\xaf\x9f\x88" +"\x82\x9c\x1f\xaa\x7c\xa0\x64\x61\x1a\x61\x7b\x57\x75\x6b\x1e\x61\x6f\x61\x76\x57\x1b\x7d\x82\x8c\x8f\x77\x1f\x0e\xf7\xd7\xf9\xbe" +"\xf9\x2a\x15\xfb\xa3\x20\x1d\xa5\x06\xa6\x9b\x7a\x71\x83\x8b\x87\x89\x85\x1f\x51\xfb\x6d\x05\xfb\x7a\x4a\x0a\xfb\xbd\x06\x86\xb6" +"\x1d\x7a\x79\x68\x88\x19\x67\x1d\x71\x8c\x7a\x9c\xa4\x1a\x93\x8b\x8f\x8d\x91\x1e\xca\xf7\x82\x05\xf7\x7a\x06\x4d\xfb\x7d\x34\x0a" +"\x67\x20\x1d\xf7\xeb\x06\xf7\x0d\xed\xe4\xf7\x04\xbb\x6f\xbb\x5d\xa9\x1f\x65\xa4\x69\x92\xfb\x00\x8e\xc4\xf7\x68\x18\x91\x9b\x94" +"\xaa\x9d\x9b\xaa\x8e\x19\x97\x06\xfb\x24\xfb\xd2\x15\x9a\x06\xd1\xb5\x64\x49\x64\x7c\x59\x75\x6c\x1f\x61\x6f\x61\x76\x57\x1b\x7d" +"\x82\x8c\x8f\x77\x1f\x0e\xf7\x32\xf8\x5f\xf9\x00\x15\xc9\x06\xb0\xa0\x85\x7c\x9f\x1f\xa4\x79\x9a\x6e\x6e\x1a\x84\x8a\x83\x8a\x81" +"\x1e\xa3\x06\xb6\xf7\x38\x05\xfc\x96\x06\x45\x42\x0a\xc8\xf7\x76\x05\x96\xbf\xa6\x8f\xab\x1b\xbf\xa8\x77\x67\x7c\x89\x81\x7d\x58" +"\x1f\x70\x23\x7e\x4e\x0a\xf7\xa6\x28\x1d\x6f\x54\x0a\x92\x8c\x91\x8c\x91\x1e\xad\xf7\x13\x05\x91\xa2\x8e\x9f\x9e\x1a\xd0\x53\xb0" +"\x20\x5c\x6b\x86\x7a\x46\x1e\x0e\xa4\xf7\xcc\xf7\xf5\x15\xdc\xfb\x97\x05\x91\x7b\x8c\x84\x82\x1a\x73\x7b\x7b\x73\x49\x0a\xfb\x03" +"\xf7\xdc\xf7\x38\xf7\x2d\xc3\xb8\xb2\x9d\xba\x90\x19\x90\x3b\x0a\x9c\x98\x7c\x78\x77\x7b\x6f\x71\x73\x1f\xfb\x4e\xfb\x43\xc4\xf7" +"\x6b\x4a\x1d\xa1\x21\x1d\xfb\xb1\x45\x0a\xf7\xa5\x21\x1d\x6c\x06\x71\x7a\x9c\xa5\x93\x8b\x8f\x8d\x91\x1f\xf7\x92\xf9\x0c\x15\xf7" +"\x2a\xe1\x05\xa8\x9c\x94\x96\x9e\x1a\xa4\x75\xa0\x71\x7a\xe9\x1d\xb6\xf8\xd2\xf9\xb0\x15\x73\x6f\x7a\x65\x6d\x71\x98\x9a\x8f\x8c" +"\x8d\x8f\x96\x1e\x90\x97\x8d\x94\x92\x1a\xa0\x77\x9b\x70\x68\xb3\x1d\x1e\xfb\x23\xfc\x9f\x15\x45\xf7\xa5\x05\x88\x94\x88\xa3\x93" +"\x1a\xa6\xa0\x9a\xb2\x1e\x92\x06\x92\xa1\x05\xfb\xab\x06\x85\x75\xbf\x86\x98\x7a\xa3\x2a\x19\xf2\xfc\x0c\x6b\x5a\x79\x77\x6f\x77" +"\x19\x80\x7c\x7e\x85\x85\x1b\x82\x85\x90\x94\x90\x8b\x8c\x90\x97\x1f\x8d\x92\x8c\x90\x90\x1a\xa9\x6f\xa3\x67\x63\x6f\x6e\x61\x58" +"\xae\x6d\xc8\xbe\xb5\x9d\xb4\xb2\x1e\xa8\xa8\x9a\x9e\xd0\xf0\xf7\x7e\xf7\xeb\x18\xbd\xd2\xab\xa6\xb4\x8c\x92\xa1\x18\xfb\x68\x20" +"\x1d\x97\x06\xa3\x9a\x7c\x73\x74\x7f\x6d\x78\x6e\x1f\x0e\xf8\x57\xf8\x50\x15\xfb\x09\x06\x7c\x55\x05\xb9\x84\x7a\x9e\x68\x1b\x61" +"\x5f\x6f\x55\x5f\x1f\x50\x43\x68\x2b\x2f\x1a\x45\xae\x56\xba\xb9\xac\xad\xf3\xc1\x1e\x84\x6c\x89\x7a\x74\x1a\x5d\x9f\x76\xb9\xa8" +"\xaa\x97\xa0\xa2\x1e\x9f\x9d\x99\xa0\xa3\xb8\x79\x97\x18\x5d\x73\x79\x78\x78\x1b\x83\x85\x92\x94\x94\x8d\x95\x93\xa9\x1f\x30\xf7" +"\xc4\x15\x9c\x98\x76\x6e\x56\x7b\x52\x6a\x44\x1f\x39\x65\x75\x6d\x74\x1b\x79\x81\x9d\xaa\xb5\xa8\xf4\xa8\xca\x1f\xc5\xa6\xa1\xa5" +"\xa2\x1b\x0e\xfb\x2e\xf7\x3b\xf8\x0c\x15\xbe\xf7\x0d\xa4\xa2\xde\x90\xf7\x1a\x8e\xb6\xaa\xad\xf7\x0c\x08\x71\x06\x7e\x6c\x81\x86" +"\x5b\x8a\x67\x8c\x6d\x89\x76\x87\x47\x80\x51\x58\x53\x29\x08\x55\x2b\x60\xfb\x29\x2b\x1a\x36\xc3\x4e\xdb\xb8\xba\x9f\xb1\xbb\x1e" +"\xd6\xc7\xb9\xec\xeb\x1a\xe5\x56\xcb\x40\x4c\x56\x71\x4f\x4c\x1e\xf7\x33\xbf\x7e\x0a\xfb\x62\xf7\xb1\xf7\x82\x15\xbc\x9c\x9b\x92" +"\x9d\x97\x08\xb3\xa5\xa1\xad\xb0\x1a\xc0\x62\xaa\x45\xfb\x29\xfb\x12\xfb\x20\xfb\x3a\x2a\xc9\x4d\xec\xee\xde\xd4\xe2\xc4\x68\xaa" +"\x4a\x1e\x20\x16\xf7\x15\xb4\xad\xc0\xb7\x1b\xa0\x99\x7b\x72\x6f\x7c\x6e\x6f\x72\x1f\x71\x73\x71\x7e\x50\x75\x08\x82\x6a\x15\x96" +"\xa7\x98\x8e\x9b\x1b\xa7\x99\x7a\x69\x39\x6b\x4b\x62\x70\x7b\xa2\xb1\xa8\x8f\xa7\x98\xcc\x1f\x0e\xfb\xb0\xf5\x7c\x1d\x0e\xfb\x31" +"\xf7\x3e\xf9\x13\x15\x94\xa7\x9e\x8f\xa1\x1b\xde\xbd\x44\xfb\x0a\x7b\x8a\x7f\x89\x71\x1f\xac\x7c\x78\x98\x68\x1b\xfb\x10\xfb\x06" +"\xfb\x20\xfb\x2b\xfb\x01\xbd\x4a\xdf\xc4\xc3\xa6\xb8\xb4\x1f\xd4\xde\xb6\xf7\x12\xf7\x17\x1a\xf7\x43\x40\xf3\xfb\x13\x6f\x74\x88" +"\x82\x68\x1e\xf7\x11\xfb\x8c\x15\xa5\x9a\x78\x68\x4e\x70\xfb\x08\x6a\x39\x1f\x51\x73\x73\x72\x6a\x1b\x71\x7c\xa1\xb0\xbc\x9d\xdd" +"\xab\xeb\x1f\xd8\xa5\xa6\xac\xb1\x1b\x0e\xfb\x65\x76\x1d\x0e\xfb\x65\x76\x1d\xab\xf8\x54\x15\x3a\x0a\xaf\x6d\xaa\x67\x1f\xf7\x66" +"\x16\x3a\x0a\xb0\x6d\xa9\x67\x1f\x0e\xf7\xbf\xf8\x6d\x16\xa3\xe5\xba\xe0\xe0\xf4\x08\x69\x4a\x80\x67\x5c\x1a\x35\xb5\x53\xcb\xc8" +"\xb9\xad\xe2\xc4\x1e\x7b\x96\x05\x59\x63\x72\x78\x70\x1b\x68\x74\xb2\xc8\xf7\x0f\xcb\xf7\x27\xc1\x98\x95\x84\x81\x84\x88\x88\x7b" +"\x80\x1f\x7e\x83\x86\x81\x7d\x1a\x70\x9e\x79\xa6\xad\xa3\xa6\xb1\xb9\x65\xaf\x59\x45\x32\x39\xfb\x40\xfb\x08\x1e\xcb\xf7\x87\x05" +"\x26\x06\x75\x36\x5e\x3a\x37\x23\x08\xa9\xcd\x94\xaa\xb6\x1a\xdf\x5f\xc4\x4c\x4f\x5e\x69\x35\x52\x1e\x9a\x80\x05\xb9\xac\xa9\xa2" +"\xa7\x1b\xaf\xa2\x64\x4f\xfb\x0a\x4c\xfb\x2e\x5a\x80\x80\x95\x95\x90\x8e\x8f\x92\x90\x1f\x99\x95\x90\x95\x9c\x1a\xa5\x78\x9e\x71" +"\x6a\x72\x6e\x66\x5d\xb1\x67\xbc\xd5\xeb\xe4\xf7\x3d\xf6\x1e\x49\xfb\x8c\x05\x0e\xfb\x9b\xf7\x1e\xf7\x77\x15\x8c\x96\x90\x8b\x95" +"\x1b\xb7\x99\x7e\x65\x41\x64\x54\x57\x65\x70\x9e\xbc\x6b\x1f\x76\x7e\x05\x3b\xae\xba\x6a\xd9\x1b\xea\xd0\xcb\xe2\xc7\x6d\xaa\x47" +"\x96\x1f\xe7\x9a\xb1\xac\xcd\x1a\xcc\x5d\xac\x2f\x61\x6a\x84\x7d\x70\x1e\x67\x77\x75\x6b\x6c\x1a\x6e\x9e\x78\xa6\xa4\xa0\x9d\xa1" +"\x94\x88\x94\x84\x94\x1e\x7f\x99\x8a\x8d\x92\x1a\x9c\xab\x99\xaf\xb6\xa0\x78\x67\x67\x7b\x66\x73\x79\x1e\x80\x7d\x77\x85\x71\x1b" +"\x83\x86\x8b\x8d\x80\x1f\x0e\x2a\x72\x1d\x0e\x2a\xf8\x2d\xf8\xf6\x15\x8c\x87\x8b\x88\x88\x1a\x77\x70\x7c\x68\x6f\x76\x96\x9a\x8e" +"\x8d\x91\x8c\x8f\x1e\x93\x9a\x8b\x8b\x93\x1a\x9f\x7b\x98\x73\x6c\x74\x73\x6c\x5e\xb9\x71\xda\xe6\xc7\xad\xbf\xa4\x7c\x9a\x73\x72" +"\x78\x79\x74\x1e\xe6\xfb\x43\x15\x77\x1d\xc4\xbf\xb8\xde\xb2\x1e\x77\x93\x05\x5e\x76\x79\x71\x7f\x1b\x87\x88\x8f\x90\x90\x8c\x91" +"\x90\x9c\x1f\x0e\xfb\x26\x5b\x0a\x0e\xfb\x20\xf8\x58\xf8\x50\x15\x46\x06\xfb\x12\x8c\x46\x32\x52\xfb\x83\x08\x62\x83\x85\x80\x80" +"\x1b\x85\x88\x8e\x94\x87\x1f\x9e\x81\x7f\x93\x77\x1b\x6d\x77\x76\x6b\x66\xa5\x73\xb2\xa3\xa1\x94\x9c\x97\x1f\x9c\xa0\x95\xa5\xa8" +"\xed\x08\xf7\x32\xb8\xac\xc2\xba\x1b\x95\x06\x43\xfb\xa7\x05\x86\x76\x89\x7e\x7d\x1a\x68\xa6\x71\xb2\xbc\xb4\xad\xd9\xb8\x1e\x7a" +"\x96\x05\x66\x77\x7a\x7a\x7b\x1b\x83\x87\x8f\x93\x90\x8d\x93\x8e\x9a\x1f\x0e\xab\xf8\x87\xf7\xed\x15\x4b\xfb\x8c\x05\x85\x76\x89" +"\x7d\x7f\x1a\x68\xa6\x72\xb1\xbd\xb4\xac\xd9\xb9\x1e\x79\x96\x05\x66\x77\x79\x79\x7c\x1b\x83\x87\x8f\x94\x8f\x8d\x93\x8e\x9a\x1f" +"\xe7\xf7\xef\x05\xfb\x14\x06\xfb\x39\xfb\x9e\x69\xf7\xac\xfb\x57\x6e\x85\x75\x05\x92\x06\xa5\x99\x7e\x72\x83\x8a\x82\x89\x84\x1f" +"\x54\xfb\x63\x7d\x55\x05\x7f\x87\x85\x85\x83\x1b\x86\x88\x8e\x95\x87\x1f\x9d\x83\x7f\x93\x77\x1b\x6c\x76\x76\x6a\x66\xa4\x73\xb2" +"\xc2\xa3\xab\xf7\x08\xa9\x1f\xcc\xf7\x8a\xba\xfc\x1d\x05\xa3\x06\x0e\x29\xf7\x85\xf7\x94\x15\xc0\xf7\x5e\xfb\x4a\x48\x1d\x75\x84" +"\x8a\x84\x88\x81\x1f\x30\xfb\xf1\x05\xf7\x09\x06\xc6\xf7\x73\x05\xf6\x06\x6a\xfb\x12\x05\x88\x80\x89\x79\x7d\x1a\x63\xa3\x73\xb3" +"\xbc\xb7\xaf\xd6\xb6\x1e\x79\x95\x05\x63\x73\x7d\x7d\x7d\x1b\x84\x85\x90\x93\x8d\x8b\x8c\x90\xa3\x1f\xe6\xf7\xef\x05\xfb\x09\x06" +"\x59\xfb\x50\x05\x0e\xf7\xd8\xf8\x5b\x15\xfb\x1f\xfb\x16\xfb\x2b\xfb\x36\x30\xc1\x4e\xdc\xb1\xb1\x98\xa6\xb4\x1f\xe4\xc7\xc3\xf2" +"\xf6\x1a\xe5\x55\xcc\x41\x1e\x77\x69\x7e\x0a\x2a\xf7\x3b\x16\xba\xf7\x47\x94\xaf\xa8\xc5\xb1\xc5\x19\xa2\x9a\x9b\x98\x98\x1b\x95" +"\x91\x84\x80\x7e\x8b\x8b\x82\x68\x1f\x5a\xfb\x51\x05\x81\x64\x8b\x8a\x7c\x1a\x64\xa5\x6f\xae\xa5\xaa\x97\x9e\xa1\x1e\xa1\x9e\x98" +"\x9e\xa4\xbb\x76\x98\x18\x5c\x72\x82\x80\x7d\x1b\x84\x87\x8f\x93\x91\x8c\x93\x8e\x94\x1f\xc6\xf7\x78\x05\x91\xa3\x8e\x9b\x9b\x1a" +"\xb8\x71\xa8\x63\x53\x54\x53\xfb\x04\x54\x1e\xb7\xf7\x3f\xfb\x49\x72\x85\x74\x05\x96\x06\xa0\x99\x7c\x75\x84\x8a\x85\x88\x81\x1f" +"\x30\xfb\xf2\x05\x0e\xf7\x33\x8a\x15\x84\xa0\x94\x89\x9a\x1b\xc1\xc9\xab\xc2\xbb\x1f\xc2\xc8\xac\xe6\xe4\x1a\xdf\x67\xc0\x53\x71" +"\x7a\x83\x6d\x66\x1e\x86\x86\x83\x85\x84\x85\x97\xb7\x18\x72\x06\xfb\x33\x6d\x85\x76\x05\xab\x98\x80\x6d\x82\x8a\x83\x86\x79\x1f" +"\x22\xfc\x25\x05\x5f\x7e\x75\x73\x6c\x1b\x81\x06\x86\x78\x05\xf7\x8d\x06\x8f\x9e\x05\x87\x06\x71\x72\xa3\xa5\x96\x8c\x94\x8e\x95" +"\x1f\xf6\xf8\x2d\x15\xa7\x98\x9c\x98\xa3\x1b\xa5\x9c\x6f\x5e\x50\x79\x3b\x70\x4f\x1f\x4d\x6f\x6e\x6d\x6a\x1b\x7b\x82\x92\xa0\x7d" +"\x1f\x0e\xfb\x65\xf7\xf9\xf7\x0d\x15\x5c\x6b\x69\x75\x61\x1b\x4f\x6b\xb3\xd5\xca\xa8\xe4\xb1\xc3\x1f\xac\xa1\xb0\xa0\xab\x1b\x9e" +"\x9b\x82\x81\x87\x88\x86\x86\x87\x1f\x6f\x76\x85\x81\x75\x1a\x70\x9f\x75\xa4\xac\xa9\xaf\xb2\xbd\x61\xaf\x53\xfb\x14\xfb\x24\xfb" +"\x3b\xfb\x27\x32\xc4\x4d\xdd\xd2\xca\xb1\xda\xc4\x1e\x0e\xf7\x11\xf7\x2e\x16\xb4\xf7\x2e\x92\xa7\xb4\xe4\x9d\xa6\x19\xb6\xa8\xaa" +"\xa6\x9f\x1b\x95\x92\x83\x7f\x82\x88\x7b\x87\x7d\x1f\x35\xfb\xc9\x05\xf7\x0b\x06\xab\xf7\x0e\x05\xf7\x1e\xaf\xd0\xf7\x03\xbd\x1b" +"\x93\x93\x83\x82\x84\x8b\x89\x85\x71\x1f\x4d\xfb\x7f\x05\x88\x7e\x89\x7e\x81\x1a\x6a\xa6\x72\xaf\xba\xb3\xaa\xd6\xbb\x1e\x7c\x97" +"\x05\x65\x73\x7b\x7b\x7e\x1b\x83\x87\x90\x95\x91\x8b\x8b\x8f\x9b\x1f\xc7\xf7\x78\x05\x91\xa1\x8e\xa3\x9e\x1a\xb5\x71\xa8\x65\x4e" +"\x4d\x4f\xfb\x0d\x4d\x1e\x95\xb7\x91\xb4\xab\x1a\xb0\x74\xa6\x6c\x5f\x5d\x6d\x54\x63\x1e\x74\x6c\x80\x79\x6d\x56\xbd\xf7\x52\x18" +"\xfb\x4a\x4c\x0a\x85\x88\x81\x1f\x30\xfb\xf2\x05\x0e\xfb\x65\x74\x1d\x0e\xca\xf8\xad\xf9\x3b\x15\xfb\x4c\x6e\x85\x75\x05\x91\x06" +"\xa5\x9a\x7e\x73\x84\x8a\x82\x88\x83\x1f\x63\xfb\x2e\x05\xaa\x74\x75\x96\x69\x1b\xfb\x05\xfb\x09\xfb\x29\xfb\x24\x5d\x96\x5e\x9e" +"\x6c\x1f\x69\xa1\xa7\x7b\xb3\x1b\xaf\xa6\x94\x9f\xa2\x1f\x8f\x06\x72\x2d\x05\x48\x78\x79\x7b\x57\x1b\x82\x06\x85\x76\x05\xf7\xa1" +"\x06\x91\xa0\x05\x5d\x7b\x95\xa8\x98\x8c\x8e\x92\xa7\x1f\xa5\xef\x05\x72\xa4\xa2\x81\xac\x1b\xf7\x07\xf7\x06\xf7\x25\xf7\x26\xf4" +"\x5b\xd0\x41\x6a\x73\x82\x74\x70\x1f\x88\x06\xfb\x46\x79\x15\xa6\x9a\x77\x6a\x64\x6e\xfb\x0e\x72\x47\x1f\x4d\x74\x73\x70\x6b\x1b" +"\x6f\x79\x9f\xac\xb9\xa5\xf7\x08\xa5\xce\x1f\xcb\xa3\xa3\xa4\xb0\x1b\xf7\x79\x16\xa8\x9b\x77\x67\x57\x72\xfb\x02\x70\x49\x1f\x4b" +"\x70\x75\x74\x68\x1b\x70\x7b\x9f\xac\xb4\xa6\xf7\x07\xa6\xd3\x1f\xcb\xa3\xa2\xa5\xac\x1b\x0e\xf8\x34\xf7\x0a\x15\x6c\x7a\x77\x77" +"\x7c\x1b\x7f\x7e\x95\x9a\x83\x1f\x81\xa0\x85\x9f\x70\xf0\x83\xa8\x18\xaa\xc7\x8b\x8b\x94\x9a\x08\x9d\x96\x97\x93\x9c\x1b\x90\x91" +"\x8a\x8a\x8f\x1f\x82\xa8\x8b\x8b\x96\x1b\xa7\xa1\xa3\xa8\xa9\x71\xa2\x69\x69\x68\x70\x5e\x73\x1f\x5f\x38\x81\xb8\x86\x9c\x6b\xea" +"\x19\xfb\x2f\x6b\x85\x75\x05\x8d\x94\x94\x8c\x91\x1b\xa6\xa2\x6f\x59\x97\x1f\xaf\xfb\x26\x61\x41\x05\x76\x7f\x7e\x80\x7e\x1b\x85" +"\x85\x8c\x8e\x86\x1f\x99\x72\x88\x8c\x7e\x1b\x6c\x75\x74\x6b\x6a\xa0\x76\xae\xad\xb7\xab\xb8\xa5\x1f\xb8\xd9\x05\xfb\x10\xa9\xa0" +"\x6c\xc5\x1b\xbb\xb1\xac\xdd\xb9\x1f\x0e\x2a\xf8\x68\x66\x0a\xb9\xab\xa5\xf1\xd9\x9a\x1d\xa9\xa2\x95\xa4\xaa\x1e\x79\x6a\x85\x7b" +"\x76\x1a\x80\x8d\x84\x90\x7d\x1e\x90\x7f\x8c\x86\x83\x1a\x71\x7e\x7a\x6f\x82\x1e\x96\x73\xab\xb9\x0a\x99\x87\x96\x7e\xa0\x1e\x7e" +"\x9e\x87\x95\x93\x1a\x9b\x90\x97\xad\xcd\x1e\x0e\xfb\x14\xf7\xab\xf8\x5e\x15\x8c\x1d\xbc\xb3\xab\xd9\xb9\x1e\x79\x95\x05\x68\x78" +"\x79\x78\x7c\x1b\x82\x88\x8f\x95\x92\x8b\x8c\x90\x9d\x1f\xe7\xf7\xf0\x05\xfb\x0a\x06\x7e\x59\x05\x36\x74\x51\x3e\xe5\x1d\x0e\xf7" +"\x48\xf9\x67\xf7\x05\x15\x67\x77\x7a\x79\x7c\x1b\x82\x88\x8f\x94\x91\x8c\x91\x8f\x99\x1f\xe6\xf7\xee\x05\xfb\x0a\x06\x6b\xfb\x0e" +"\x78\x45\x5d\x2a\x62\x54\x19\x7c\x80\x7e\x82\x81\x1b\x83\x85\x92\x94\x90\x8d\x95\x8e\x94\x1f\x8c\x8e\x8d\x92\x8d\x95\xdc\xf7\xc8" +"\x18\xfb\x09\x06\x6a\xfb\x0e\x79\x46\x5e\x2d\x5e\x50\x19\x7c\x80\x7f\x82\x81\x1b\x83\x87\x91\x96\x93\x8b\x8d\x94\xac\x1f\xdf\xf7" +"\xd6\xfb\x4a\x71\x85\x74\x05\x8c\x90\x8f\x8b\x8d\x1b\xa0\x99\x7c\x75\x84\x8a\x83\x89\x82\x1f\x55\xfb\x5f\x05\x81\x63\x88\x7a\x77" +"\x1a\x5c\xa6\x6b\xb2\xbd\xb6\xb3\xf5\xcc\x1e\x7f\x61\x87\x79\x77\x1a\x63\xa5\x71\xb3\xc2\xb5\xb1\xf7\x00\xcd\x1e\x7d\x5a\x88\x7a" +"\x78\x1a\x68\xa6\x71\xb1\xbd\xb3\xac\xda\xb9\x1e\x0e\xf7\x48\xf7\xd4\xf8\x5e\x15\xfb\x4a\x48\x1d\x76\x84\x8a\x83\x88\x81\x1f\x56" +"\xfb\x60\x05\x80\x60\x88\x7d\x77\x1a\x5d\xa6\x6b\xb1\xbf\xb8\xb4\xf4\xcb\x1e\x7e\x62\x87\x76\x79\x1a\x63\xa5\x71\xb3\xc3\xbb\xb5" +"\xf3\xc8\x1e\x7d\x59\x88\x7a\x79\x1a\x67\xa7\x72\xb2\xa7\x9b\x92\xaa\xb1\x1e\x71\x5d\x89\x85\x74\x1a\x82\x8d\x83\x90\x7e\x1e\x90" +"\x7f\x8c\x87\x83\x1a\x70\x7e\x7a\x70\x82\x1e\x96\x73\xab\x9a\x98\x94\x9c\x9c\x19\xa3\xa3\x98\xa8\xa4\x1a\x99\x85\x9a\x81\x9c\x1e" +"\x7d\xa0\x88\x92\x96\x1a\x9d\x94\xa0\xa2\xaf\x1e\x7a\x96\x05\x66\x77\x79\x78\x7d\x1b\x82\x87\x90\x95\x91\x8c\x8f\x8f\x9a\x1f\xe6" +"\xf7\xf0\x05\xfb\x0b\x06\x6b\xfb\x0d\x78\x44\x5d\x2a\x61\x52\x19\x7c\x80\x7e\x82\x81\x1b\x83\x85\x92\x95\x8f\x8b\x8b\x95\xb4\x1f" +"\xdc\xf7\xc8\x05\xfb\x0a\x06\x6a\xfb\x0d\x05\x22\x70\x39\xfb\x24\x6a\x1b\x83\x87\x91\x96\x94\x8d\x98\x92\xa2\x1f\x0e\xfb\x12\xf8" +"\x0a\xf8\x59\x15\x7e\x78\x81\x87\x7a\x1b\x79\x76\x8f\x98\x5f\x1f\x94\x6b\x81\x8d\x79\x1b\x69\x6e\x80\x74\x71\x1f\x7f\x81\x89\x89" +"\x6f\x6e\x9d\x78\x18\xa3\x9d\x99\x93\x9f\x1b\x93\x96\x89\x87\x94\x1f\x7f\xad\x8f\x8a\x99\x1b\x9c\x93\x8d\x9a\xb5\x1f\x90\x8d\x97" +"\x8f\x99\x90\x41\x5a\x6b\x6f\x6e\x65\x08\x67\x5b\x74\x4d\x59\x1a\x64\x9a\x61\xa4\x6f\x1e\x73\xa1\xad\x7e\xb2\x1b\xf7\x07\xe6\xdc" +"\xf2\xd4\x64\xb9\x4e\x73\x77\x86\x7d\x66\x1f\xa0\xc7\xb7\xc9\xc0\xb5\x08\xfb\x17\xfb\x59\x15\x93\xa0\x94\x8d\x95\x1b\xa7\x9e\x70" +"\x62\x36\x5e\x3d\x5b\x74\x7e\x9f\xac\xb2\x97\xbc\xa9\xdb\x1f\x0e\xb4\xf7\xb8\xf8\x5e\x15\xfb\x4a\x72\x84\x74\x05\x96\x06\xa0\x98" +"\x7d\x76\x84\x8a\x85\x87\x7f\x1f\x55\xfb\x4c\x05\x86\x7c\x87\x6d\x7b\x1a\x47\xc0\x5c\xd9\xf7\x08\xe9\xe2\xf6\xd0\x67\xb5\x4f\x72" +"\x84\x89\x79\x55\x1e\x81\x6b\x15\x91\xa0\x96\x8e\x94\x1b\xa4\x9b\x77\x6a\x65\x7d\x58\x77\x68\x1f\x68\x77\x76\x79\x74\x1b\x78\x7c" +"\x9c\xa0\x95\x8d\x95\x91\xa1\x1f\xf7\xfd\xf7\xea\x15\x31\xfb\xed\x05\x86\x78\x89\x7c\x7d\x1a\x68\xa6\x71\xb2\xbc\xb4\xac\xda\xb8" +"\x1e\x79\x96\x05\x67\x78\x7a\x79\x7b\x1b\x83\x87\x8f\x93\x91\x8d\x94\x8e\x98\x1f\xe6\xf7\xed\x05\x0e\xfb\x58\xf7\xa5\xf8\x5e\x15" +"\xfb\x4a\x72\x85\x74\x05\x96\x06\xa0\x99\x7c\x75\x84\x8a\x87\x88\x7f\x1f\x5b\xfb\x4c\x05\x87\x7d\x88\x70\x7b\x1a\x45\xc3\x5a\xda" +"\xf7\x06\xe5\xde\xf4\xd4\x64\xb7\x4b\x73\x85\x89\x79\x56\x1e\x82\x6b\x15\x91\x9f\x98\x8e\x94\x1b\xa6\x9b\x75\x67\x35\x5c\x35\x5c" +"\x78\x7b\x9d\xa1\x95\x8b\x8b\x93\xa9\x1f\x0e\xfb\x82\x89\xe8\x15\x9f\x68\x96\x7c\x9c\x7c\x08\x72\xa6\xaf\x7e\xb1\x1b\xf7\x18\xf7" +"\x05\xf7\x18\xf7\x30\xc2\x7d\xbc\x71\xaa\x1f\xa6\x75\x64\x9a\x5a\x1b\x25\x43\x5e\x4c\x6f\x9e\x78\xa6\xa4\x9f\x9e\xa1\x94\x88\x94" +"\x84\x93\x1f\x7f\x9a\x8a\x8c\x92\x1a\x9d\xb1\x9b\xb6\xbc\xa1\x76\x5e\x71\x86\x6e\x80\x59\x1e\xfb\x1a\x06\x82\x6b\x05\xf7\x1b\x06" +"\xfb\x26\x69\x69\x55\x50\x1b\x5b\x64\xa8\xc3\x6f\x1f\x0e\xd8\xf7\x40\x16\xc6\xf7\x73\x05\xd5\x06\x83\x6b\x88\x76\x71\x1a\x2d\xc0" +"\x4f\xdf\xaf\xb2\x98\xa6\xb3\x1e\xe4\xc6\xc3\xf3\xf4\x1a\xe8\x56\xcb\x40\x25\x28\x3c\xfb\x0c\x5d\x1e\x3e\x06\xc0\xf7\x5e\xfb\x4a" +"\x4c\x0a\x84\x88\x82\x1f\x30\xfb\xf2\x05\xf8\x7c\xf8\x39\x15\xa5\x9b\x76\x68\x4b\x6c\xfb\x15\x69\x3a\x1f\x5c\x77\x72\xdb\x1d\xc1" +"\x9f\xaa\xa9\xae\x1b\x0e\xfb\x1e\xf8\x4f\xf7\x06\x15\x61\x72\x7f\x7f\x7e\x1b\x82\x86\x90\x94\x90\x8c\x8e\x8d\x96\x1f\x8c\x8f\x05" +"\x8c\x8d\x8b\x8d\x8c\x1a\xe5\xf7\xea\x05\xfb\x5b\x06\x28\x4c\x59\x3d\x6e\x95\x71\x9d\x79\x1f\x9b\x7c\x9c\x84\xb3\x80\x3f\x83\x6e" +"\x73\x64\x35\x08\x61\x78\x80\x7f\x7a\x1b\x7d\x80\x97\xa0\x84\x1f\x76\x82\x05\x54\xa3\xa0\x7a\xb8\x1b\xcb\xb5\xaf\xd9\xa7\x1f\xa7" +"\xe2\x9e\x9f\xc2\x8a\x6e\xfb\x00\x18\x87\x7a\x88\x78\x7e\x1a\x66\xa7\x71\xb1\xbd\xb4\xad\xd9\xb7\x1e\xfb\x31\xf7\x1f\x15\x89\x81" +"\x87\x8b\x85\x1b\x66\x74\xa6\xb8\xc8\xb3\xb3\xc9\x92\x90\x8b\x89\x95\x1f\x0e\xfb\xb0\xf7\x93\xf8\x2e\x15\xf7\x3d\x06\xa7\xed\x05" +"\x78\x06\x73\x5d\x6f\x7b\x51\x8a\x08\xfb\x79\x06\x85\x77\x05\x99\x06\x9d\x97\x81\x7c\x88\x8a\x87\x8a\x88\x1f\x2e\xfb\xdf\x84\x70" +"\x7f\x81\x74\x89\x19\x86\x06\x85\x77\x05\xf7\x68\x06\x91\x9f\x05\x78\x06\x79\x7e\x96\x9a\x8c\x1f\x8e\x8c\x8e\x8c\x8f\x1e\x0e\xfb" +"\x16\xf7\xf1\xf9\x3b\x15\xfb\x4d\x6e\x86\x75\x05\x91\x06\xa3\x9b\x7d\x75\x80\x8a\x85\x83\x6e\x1f\x49\x06\x82\x68\x05\xcd\x06\xfb" +"\x1a\xfc\x93\x05\xf7\x09\x06\xb1\xf7\x23\x9a\xc2\xb9\xe7\xb2\xbc\x19\x9b\x98\x9c\x96\x95\x1b\x95\x91\x81\x7d\x55\x5a\xfb\x72\x64" +"\xfb\x0c\x1f\x44\x74\x7b\x70\x78\x1b\x84\x88\x8d\x90\x8e\x8c\x8d\x8e\x91\x1f\x8f\x92\x8d\x8f\x91\x1a\xa2\x78\x9e\x73\x70\x78\x78" +"\x6f\x67\xa9\x73\xb9\xc8\xc0\xb4\xdf\xbb\x1e\xc9\xf7\x03\xc6\xf7\x61\xf7\x00\x1a\xc3\x75\xab\x63\x68\x68\x78\x66\x68\x1e\x75\x74" +"\x7e\x77\x63\x48\xc6\xf7\x72\xe8\x1d\xfb\x98\xf7\x0a\x7c\x1d\xf7\x2d\xf7\x26\x15\xf7\x2a\xe3\x05\xa8\x9c\x94\x96\x9e\x1a\xa4\x75" +"\xa1\x72\x79\x7b\x80\x64\x67\x1e\xfb\x0c\xfb\x18\x05\x0e\xfb\x82\xf7\x3a\xf7\x91\x15\xf7\x05\xad\xba\xc3\xc7\x1b\x9e\x9a\x82\x81" +"\x87\x88\x86\x86\x88\x1f\x70\x76\x85\x81\x75\x1a\x71\x9f\x75\xa4\xab\xa8\xae\xb1\xc2\x62\xb0\x4c\x4d\x56\x71\x55\x5a\x1e\x50\x49" +"\x66\x30\x3d\x1a\x32\xc3\x4e\xdc\xd2\xcb\xb3\xd9\xc2\x1e\x76\x96\x05\x5d\x6b\x6a\x75\x62\x1b\x50\x6c\xb3\xd6\x9d\x8c\x99\x90\xa2" +"\x1f\xf7\x24\x06\x93\xab\x05\x0e\xfb\x9c\xf7\xfd\xf8\x5c\x15\x6e\x06\x79\x80\x88\x89\x7d\x1b\x80\x83\x8d\x92\x7a\x1f\x94\x72\x7e" +"\x8e\x77\x1b\x3b\x57\x5a\x41\x55\x9a\x6d\xcc\x3e\x1f\xb1\x5f\x9d\x69\x72\x1a\x6e\x72\x73\x6c\x75\x75\x96\x9f\x7b\x1e\x78\xa4\x83" +"\xa1\x83\xc0\x70\x8e\x18\x76\xfb\x38\x05\xa6\x06\x97\x8f\x96\x93\x98\x1b\x92\x96\x88\x86\x98\x1f\x83\xa3\x9d\x87\xa0\x1b\xde\xc9" +"\xc3\xd5\xb8\x72\xbc\x53\xcb\x1f\x64\xb7\x7a\xa9\xa2\x1a\xab\x9f\x9f\xab\xb8\xa6\x67\x3a\x9b\x1e\xa6\x89\x05\x0e\xfc\x0b\xf7\x7b" +"\xf7\x0b\x15\x5e\x6b\x77\x78\x6a\x1d\x8b\x8b\x90\x9b\x1f\xf3\xf7\xf9\xfb\x50\x70\x85\x73\x05\x8d\x92\x92\x8c\x8f\x1b\x9c\x9a\x7d" +"\x7d\x83\x87\x74\x87\x7e\x1f\x4d\xfb\x63\x05\x85\x78\x88\x78\x7b\x1a\x5d\xa6\x70\xb6\xa6\xa0\x95\xa9\xac\x1e\xa2\x9f\x97\x9b\xa2" +"\xb1\x08\x77\xf8\xd0\x15\x65\x6c\x6c\x64\x63\xaa\x6a\xb3\xb1\xa9\xaa\xb2\xb2\x6b\xad\x65\x1f\x0e\xfc\x0b\xf7\x7c\xf7\x0c\x15\x60" +"\x6c\x76\x76\x7d\x1b\x84\x86\x91\x92\x8f\x8c\x90\x8e\x96\x1f\xf7\x00\xf8\x05\xfb\x54\x69\x85\x74\x05\x8c\x92\x91\x8c\x90\x1b\x9c" +"\x9b\x7d\x7d\x83\x87\x76\x86\x7c\x1f\x4c\xfb\x67\x05\x85\x78\x88\x79\x79\x1a\x5c\xa6\x6f\xb7\xa6\xa1\x96\xa9\xac\x1e\xa2\x9f\x98" +"\x9b\xa2\xb2\x08\xfb\x2e\xf8\xbe\x15\x3a\x0a\xaf\x6d\xaa\x67\x1f\xf7\x66\x16\x3a\x0a\xb0\x6d\xa9\x67\x1f\x0e\xfc\x0b\xf7\x9c\xf8" +"\x51\x15\xfb\x4f\x69\x86\x74\x05\x9a\x95\x8a\x8a\x8e\x1f\x9a\x86\x95\x7e\x7b\x1a\x82\x89\x7e\x87\x7b\x1e\x42\xfb\xc5\x05\xfb\x07" +"\x6f\x76\x5c\x73\x1b\x85\x84\x91\x8f\x8f\x8d\x90\x90\x90\x1f\x92\x94\x8e\x91\x92\x1a\x9d\x79\x9a\x75\x70\x77\x77\x71\x6e\xaa\x75" +"\xb5\xb3\xbd\xa1\xa9\xa9\x1e\xb1\xb2\xa9\xcb\xa0\xe0\x08\xb6\xf8\xf0\x15\x66\x6e\x6e\x65\x64\xa9\x6c\xb1\xaf\xa8\xa9\xb0\xb1\x6c" +"\xab\x67\x1f\x0e\x91\xf8\x49\xf8\x50\x15\x46\x06\xfb\x0e\x8c\x42\x2c\x51\xfb\x7d\x08\x59\x7f\x8a\x89\x80\x1b\x85\x88\x8e\x94\x87" +"\x1f\x9e\x81\x7f\x93\x77\x1b\x6d\x77\x76\x6b\x66\xa5\x73\xb2\xa3\xa1\x94\x9c\x97\x1f\x9c\xa0\x95\xa5\xa8\xed\x08\xf7\x32\xb8\xac" +"\xc2\xba\x1b\x95\x06\x55\xfb\x67\x05\x87\x79\x88\x77\x7a\x1a\x44\xc1\x5c\xdc\xf7\x06\xe5\xdd\xf2\xd3\x64\xb8\x4d\x77\x7f\x89\x80" +"\x6a\x1e\x87\x8a\x84\x88\x82\x89\x08\x83\x6a\x15\x92\xa1\x94\x8d\x95\x1b\xa6\x9a\x76\x67\x36\x5c\x34\x5d\x77\x7c\x9c\xa4\x95\x8b" +"\x8b\x93\xa7\x1f\x0e\xc7\xf7\x85\xf7\xa0\x15\xbc\xf7\x52\xfb\x4a\x48\x1d\x75\x84\x8a\x84\x88\x81\x1f\x30\xfb\xf1\x05\xf7\x09\x06" +"\xc9\xf7\x80\xf5\x8e\x78\x42\x05\x88\x7f\x87\x6c\x7c\x1a\x46\xc3\x5a\xda\xf7\x02\xe7\xdd\xed\xd2\x63\xb4\x47\x78\x80\x8a\x85\x5d" +"\x1e\xb7\xf7\x3d\x05\xfb\x09\x06\x5e\xfb\x40\x05\xf7\x01\x6e\x15\x8f\xa1\x93\x8c\x93\x1b\xa8\x9b\x76\x64\x39\x5d\x37\x5e\x77\x7c" +"\x9c\xa3\x94\x8d\x98\x90\x9c\x1f\x0e\x2a\xf7\xef\xf9\x3b\x15\xfb\x4d\x6e\x86\x75\x05\x91\x06\xa3\x9b\x7d\x75\x80\x8a\x85\x83\x6e" +"\x1f\x49\x06\x82\x68\x05\xcd\x06\xfb\x1a\xfc\x93\x05\xf7\x09\x06\xb1\xf7\x23\x9b\xc6\xb7\xe2\xb2\xbc\x19\x9c\x99\x9c\x96\x97\x1b" +"\x94\x90\x85\x81\x85\x8b\x8b\x85\x74\x1f\x51\xfb\x75\x05\x86\x76\x89\x7f\x7e\x1a\x68\xa7\x72\xb2\xbc\xb6\xae\xd6\xb5\x1e\x79\x95" +"\x05\x62\x72\x7f\x7f\x7c\x1b\x83\x86\x90\x93\x90\x8c\x91\x8e\x92\x1f\x8c\x8e\x8c\x8f\x8c\x1a\xc9\xf7\x7e\x05\x90\xa0\x8e\xa0\x9c" +"\x1a\xb5\x75\xa3\x64\x68\x69\x79\x66\x68\x1e\x75\x73\x7d\x78\x63\x46\xc6\xf7\x73\xe8\x1d\xfb\x26\x5b\x0a\xf7\x14\xf7\xa7\x15\xf7" +"\x2a\xe3\x05\xaa\x9c\x93\x96\x9e\x1a\xa4\x75\xa1\x72\x78\x7b\x7f\x65\x68\x1e\xfb\x0c\xfb\x18\x05\x0e\xfb\x65\x74\x1d\x57\xf8\xd2" +"\x15\x6c\x74\x73\x6c\x5e\xb9\x71\xda\xe7\xc7\xad\xc0\xa3\x7c\x9a\x72\x72\x78\x79\x74\x89\x8b\x88\x8c\x87\x1f\x8c\x87\x8b\x87\x89" +"\x1a\x77\x70\x7c\x68\x6e\x76\x96\x9a\x8f\x8c\x90\x8d\x8f\x1e\x93\x9b\x8b\x8b\x92\x1a\x9e\x7b\x99\x73\x1e\x0e\xf7\x11\xf9\x29\x16" +"\x4c\x1d\x70\x7b\x9c\xa5\x93\x8b\x8e\x8d\x91\x1f\xf7\x17\xf8\x80\x97\xb8\x9d\x9d\xad\x5f\x1d\x71\x1a\x83\x8a\x87\x8a\x85\x1e\xfb" +"\x24\xfc\xb2\x05\xfb\x79\x06\x8d\x1d\xf7\x36\x06\xca\x8a\xa9\x5c\x8c\x29\x8c\x6e\x18\x9e\x06\xb5\xf7\x10\xb9\xbc\xdb\x8d\x08\x0e" +"\x2a\xf8\x6a\x66\x0a\xa5\x9d\x93\xa2\xa9\x1e\x7b\x6f\x85\x7a\x76\x1a\x80\x8d\x84\x90\x7d\xd4\x1d\x05\xc9\xa9\xb0\xb7\xb8\x1a\x99" +"\x87\x95\x7e\xa1\x1e\x81\x9d\x85\x99\x96\x1a\x9e\x93\x98\xb9\xc3\x1e\x86\x7b\x88\x7f\x88\x83\x08\x85\x77\x88\x7a\x7f\x1a\x72\xa2" +"\x79\xa9\xc4\xbf\xb8\xde\xb2\x1e\x0e\xfb\x61\xc5\xf7\x6e\x15\x81\x65\x88\x77\x72\x1a\x35\xbb\x50\xd1\xf7\x1c\xf7\x1c\xf7\x3e\xf7" +"\x3e\xda\x55\xc0\x3b\x3e\x3f\x5b\x36\x4f\x1e\xa0\x7f\x05\xbd\xb1\xac\x9f\xb6\x1b\xbc\xa7\x66\x49\x76\x89\x7d\x83\x6c\x1f\x83\x66" +"\x15\x27\x6f\x64\x55\x60\x1b\x77\x7e\x9b\xa3\xa4\x8c\x8f\xa1\xe0\x1f\x0e\xf7\x48\xf9\x97\xf9\x40\x15\x4f\x06\xfc\xf9\xfd\x5b\x05" +"\xc6\x06\xf7\x4a\xf8\x54\x15\x68\x68\x6a\x7b\x67\x1b\x61\x70\xad\xbd\xbb\x9a\xbc\xa6\xb7\x1f\xb8\xa6\xab\xa2\xae\x1b\x99\x96\x84" +"\x81\x86\x87\x85\x84\x86\x1f\x7b\x7f\x84\x80\x7c\x1a\x75\x9c\x7b\xa2\xa8\xa3\xa7\xab\xb4\x6b\xa4\x56\xfb\x09\xfb\x07\xfb\x0e\xfb" +"\x11\x44\xb5\x60\xd1\xcb\xbf\xa8\xca\xc1\x1e\xf7\xf4\x4f\x15\xfb\x0d\xfb\x07\xfb\x10\xfb\x16\x49\xb5\x62\xcf\xc8\xc2\xa6\xc1\xbb" +"\x1f\xb9\xbf\xa4\xc7\xc6\x1a\xcd\x60\xb6\x49\x1e\x7b\x77\x15\x9f\x97\x7a\x71\x49\x70\x2d\x63\x45\x1f\x6a\x79\x79\x7c\x79\x1b\x74" +"\x7d\x9c\xa7\xcf\xb4\xf7\x15\xb3\xc0\x1f\x9e\x98\x98\x92\x9e\x1b\x0e\xfb\x76\xf7\x87\xf7\x96\x15\xd1\xd4\x9e\xa1\x9e\xa6\x08\xb7" +"\xcd\xa6\xd3\xc1\x1a\xc4\x6b\xb0\x5b\x2e\x49\xfb\x17\xfb\xaf\x58\x1e\x7f\x7b\x7f\x7d\x86\x85\x08\x63\x5f\x8b\x8b\x7e\x1a\x7e\x94" +"\x7c\x93\x92\x9e\x9c\xa0\x9e\x1e\x89\x74\x8b\x7b\x76\x1a\x62\x8e\x78\x93\x77\x1e\x6c\x98\xa6\x78\xac\x1b\xaa\xa7\x9d\xac\xa3\x1f" +"\x9a\xa2\x95\xa4\x9d\x1a\x99\x84\x93\x7f\x82\x85\x86\x7b\x83\x1e\x67\x79\x82\x80\x7e\x1b\x82\x86\x94\x9b\xa5\x93\xc9\x9b\xea\x1f" +"\x95\xd1\x15\xf7\x5b\xab\xa3\xd3\xae\x1b\x98\x94\x7e\x77\x73\x7d\x5a\x79\x63\x1f\x76\x5b\x73\x67\x67\x62\x08\x0e\xf7\x9a\xf8\x09" +"\xf9\x2a\x15\xfb\x56\x20\x1d\x96\x06\xaa\x8a\x9d\x7c\x99\x67\xfb\x0c\xfc\x55\x18\x55\x7d\x6f\x68\x6f\x1b\x80\x86\x93\x9d\xae\x7a" +"\x9d\x69\x67\x74\x72\x64\x5d\xae\x6b\xbf\xd5\xb8\xbb\xf7\x01\xa8\x1f\xf7\x02\xf8\x2d\xf7\x61\xfc\xbd\x05\xa0\x06\xf7\x1f\xf8\x9f" +"\x05\xc2\x9a\xa4\xad\xa5\x1b\x96\x90\x85\x7b\x8d\x1f\x69\x8f\x9b\x7b\xac\x1b\xad\xa0\xa1\xae\xba\x69\xaa\x57\x42\x60\x5d\xfb\x03" +"\x6e\x1f\x41\xfb\xac\x05\x98\xfb\x82\x15\xf7\x97\x06\x9e\xd0\x05\xfb\x97\x06\xf7\x69\xf8\x1d\x15\x2f\x3f\x3a\x29\x3b\xbb\x56\xd2" +"\xed\xda\xdc\xee\xdc\x5a\xbe\x3c\x1f\x92\x6b\x15\xa3\x97\x77\x62\x5c\x7e\x50\x79\x69\x1f\x6b\x7a\x78\x7d\x74\x1b\x73\x7e\xa0\xb0" +"\xb9\x98\xc6\x9e\xaf\x1f\xab\x9c\x9e\x9b\xa2\x1b\x0e\x27\xf8\x17\xf8\x50\x15\x6b\x3c\x05\xc9\x80\x70\xa5\x57\x1b\x60\x58\x6f\x5d" +"\x61\x1f\x56\x52\x6c\x38\x3c\x91\x0a\xc0\xe7\xaf\x1f\x78\x97\x05\x48\x69\x7a\x77\x75\x1b\x7b\x88\x96\xd2\x88\x1f\xf7\x15\xf7\xc0" +"\x05\xfb\x6f\xfb\x9f\xb8\x0a\xc6\xd8\x1d\x42\x94\x1f\x0e\x27\xf8\x19\xf8\x51\x15\x6b\x3c\x05\xc9\x7f\x72\xa4\x56\x1b\x5f\x59\x70" +"\x5c\x61\x1f\x56\x52\x6c\x39\x3b\x91\x0a\xc1\xe7\xaf\x1f\x78\x96\x05\x48\x69\x7a\x77\x75\x1b\x7b\x88\x96\xd2\x88\x1f\xf7\x15\xf7" +"\xc1\x05\xfb\x6f\xfb\xa0\xb8\x0a\xc7\xd8\x1d\x41\x94\x1f\x99\xf7\x69\x15\x90\x94\x9b\xac\x05\xbc\xe7\x8e\x93\xa4\x1a\xa7\x75\x9d" +"\xf6\x1d\x73\x8a\x5f\x08\x8a\x60\x8a\x71\x82\x1a\x84\x8a\x7f\x8a\x7c\x1e\x0e\x25\x1d\xf7\x67\xf7\x5f\x15\xfb\xd9\x06\x7a\x45\x05" +"\xf7\xd9\x06\x0e\xfb\xd4\xc5\xf7\x82\x15\xf7\x42\xfb\xe8\x05\x7c\x93\x95\x83\x97\x1b\x93\x90\x8f\x92\x92\x89\x93\x88\x93\x1f\xfb" +"\x17\xf7\xdd\xf7\x17\xf7\xdd\x05\x8e\x93\x8d\x93\x92\x1a\x93\x86\x8f\x83\x7f\x83\x85\x79\x81\x1e\x0e\xfb\xd4\xf7\xa7\xf7\x82\x15" +"\xfb\x42\xf7\xe8\x05\x9c\x82\x82\x92\x7f\x1b\x83\x86\x87\x83\x85\x8d\x83\x8e\x82\x1f\xf7\x17\xfb\xdd\xfb\x17\xfb\xdd\x05\x88\x84" +"\x89\x83\x84\x1a\x83\x90\x87\x93\x97\x93\x91\x9c\x95\x1e\x0e\x88\x1d\x65\xa4\x73\xb4\x87\x1e\x72\x66\x84\x7b\x72\x31\x0a\xb3\xa3" +"\x92\x9a\xa7\xa9\x1f\xa8\xac\x96\x99\xa4\xb1\x08\xfb\x51\xf7\xc8\x15\xa1\x8a\x9a\x78\x70\x1a\x4f\x69\xfb\x03\x65\x46\x1e\x5a\x70" +"\x6d\x71\x70\x1b\x71\x78\xa2\xaa\xbf\xac\xef\xb4\xd5\x1f\xa9\xc0\xac\xaa\xa6\x89\x08\x0e\xf7\xef\xf9\x38\xf7\x6b\x15\x6b\x72\x78" +"\x7e\x73\x1b\x79\x7c\x90\xa1\x5a\x1f\xad\x3f\x73\x92\x67\x1b\x58\x66\x71\x51\x6a\x1f\xc0\x5c\x05\xac\xa3\x9b\x95\xa8\x1b\xae\xaa" +"\x82\x71\xb9\x1f\x72\xba\xa4\x83\xac\x1b\xb9\xab\xa1\xc9\xb8\x1f\x54\xf7\x80\x15\x6a\x72\x78\x7e\x73\x1b\x79\x7d\x8f\xa2\x59\x1f" +"\xad\x3f\x73\x92\x67\x1b\x59\x65\x71\x51\x6a\x1f\xc0\x5d\x05\xab\xa3\x9b\x95\xa8\x1b\xaf\xa9\x82\x71\xb9\x1f\x72\xb9\xa5\x83\xac" +"\x1b\xb9\xab\xa1\xca\xb8\x1f\x0e\xf8\x46\xf7\x13\x15\x54\x62\x7c\x7c\x7b\x1b\x84\x86\x91\x94\xa4\x94\xb4\xa4\xdd\x1f\xd2\xf7\x80" +"\xfb\x03\x84\x79\x50\x05\xbe\x82\x75\xa0\x60\x1b\xfb\x0f\xfb\x2a\xfb\x54\xfb\x30\x3f\xb6\x58\xcc\xc8\xb8\xaf\xeb\xc5\x1f\x7f\x62" +"\x89\x7f\x7d\x1a\x66\xa9\x6e\xb0\xba\xba\xb2\xe2\xc4\x90\x1d\xbd\xf7\xd8\x15\x51\x5a\x5b\x52\x4f\xba\x5b\xc6\xc6\xbb\xbb\xc6\xc5" +"\x5b\xbb\x51\x1f\x89\x5b\x15\xac\xa6\x70\x6a\x6c\x6f\x71\x6b\x6c\x71\xa5\xab\xab\xa5\xa6\xaa\x1f\x87\xcd\x15\x2b\x1d\x38\x1d\xd0" +"\xf9\x03\xf8\x37\x15\xfc\xa0\x06\xf7\x66\xdc\x74\xc0\xfb\xb2\xfb\x14\x05\x3e\x07\xf7\xb2\xfb\x13\xa2\xbf\xfb\x66\xdd\x05\xf8\xa0" +"\x06\xfb\x66\x39\xa2\x57\xf7\xb2\xf7\x13\x05\xd8\x07\xfb\xb2\xf7\x14\x74\x56\x05\x0e\xd0\xf8\x1b\xf9\x66\x15\x4b\xfd\x03\x06\x39" +"\xf7\x66\x57\x74\xf7\x13\xfb\xb2\x05\xd8\x06\xf7\x14\xf7\xb2\x56\xa2\x3a\xfb\x66\x05\x0e\xd0\xf9\x66\xf7\xf9\x15\xcb\xfd\x03\x07" +"\xf7\x66\xdc\x74\xc0\xfb\xb2\xfb\x13\x05\x3e\x07\xf7\xb2\xfb\x14\xa2\xbf\xfb\x66\xdd\x05\x0e\xd0\xf7\xf9\x04\xf9\x03\x06\xfb\x66" +"\x39\xa2\x57\xf7\xb2\xf7\x14\x05\xd8\x07\xfb\xb2\xf7\x13\x74\x56\xf7\x66\x3a\x05\xfd\x03\x06\x0e\xd0\xf8\x1b\x16\xf9\x03\x07\xdc" +"\xfb\x66\xc0\xa3\xfb\x14\xf7\xb1\x05\x3e\x06\xfb\x13\xfb\xb1\xbf\x73\xdd\xf7\x66\x05\xfd\x03\x07\x0e\xd0\xf7\xde\xf9\x03\x9b\x1d" +"\xa2\xe6\x1d\x74\x05\x0e\xd0\xf7\x5b\x2c\x15\x51\xf7\xdb\xc5\x07\xfb\x58\xf9\x42\x9b\x1d\xa3\xe6\x1d\x73\x05\x0e\xfb\x21\x70\xfb" +"\x45\x15\xf7\x05\x06\xc5\xf7\x75\x05\x60\xa7\x9f\x7e\xad\x1b\xf7\x07\xf7\x05\xf7\x1b\xf7\x1c\xd1\x72\xb9\x52\xb1\x1f\xdf\xbc\xb1" +"\xbb\xc6\x1a\xcd\x5a\xb5\x3d\x59\x5d\x7c\x6f\x66\x1e\x60\x69\x6c\x50\x71\x28\x08\xf7\x03\x80\x15\xb4\xf7\x33\x91\x99\xb0\xa7\x08" +"\x92\x94\x96\x8f\x95\x1b\xa3\x9a\x72\x65\x5e\x7e\x5b\x6c\x4c\x1f\x95\x73\x80\x8e\x7c\x1b\x73\x77\x7b\x76\x7b\x99\x7e\x9c\x9a\x99" +"\x91\x9e\xa6\x1f\x8c\x7a\x8b\x83\x83\x1a\x3d\x64\xfb\x36\x6b\x57\x1e\x6f\x7a\x77\x7c\x75\x1b\x71\x7c\x97\xb6\x74\x1f\x0e\xfb\x65" +"\x3e\x1d\x2e\xf8\x1d\x15\x2b\x1d\x38\x1d\xfb\x65\x3e\x1d\xf7\x0e\xf8\xcb\x20\x0a\xfb\x61\xf7\xd4\x89\x1d\xfb\x38\xfb\x34\x32\xc9" +"\x4d\xe6\xb7\xb6\x9b\xa8\xad\x1e\xa5\xa1\x9b\x9e\xae\xbd\x08\xcc\xf8\x1d\x15\xbe\x06\x35\xf7\x42\x05\x3a\x2a\x0a\xfb\x65\x3e\x1d" +"\x60\xf8\xa8\x2a\x1d\xfb\x50\xf8\x61\xf8\x51\x15\x20\x06\xfb\x26\xfb\x73\x05\xf7\x4f\x82\x7a\xb7\x48\x1b\x68\x77\x7a\x6d\x6f\x9a" +"\x7a\xa8\x83\x1f\xc6\x80\x91\x7f\x94\xfb\x27\xfb\x8c\xfb\xfd\x18\xf7\x02\x06\xf7\x37\xf7\x8b\x8c\x54\x8f\x57\x93\x57\x19\x44\x95" +"\x9c\x6c\xa9\x1b\xb0\xb6\xc5\xe8\xab\x1f\x76\x93\x05\x52\x74\x77\x72\x71\x1b\x63\x7b\xcb\xf7\x39\x87\x1f\x0e\xf7\xef\xf8\x8b\xf9" +"\x4b\x15\xfb\x5c\xfb\x36\xfb\x35\xfb\x5c\xfb\x58\xf7\x36\xfb\x36\xf7\x57\xf7\x59\xf7\x37\xf7\x37\xf7\x57\xf7\x58\xfb\x36\xf7\x39" +"\xfb\x55\x1f\x87\xfb\xd0\x15\xfb\x52\xf7\x50\x05\xb8\xc2\xcc\xa2\xd1\x1b\xd0\xcb\x75\x5f\xc4\x1f\xb3\x63\x15\xbb\x51\xa2\x4d\x42" +"\x1a\x43\x74\x4b\x5d\x53\x1e\xfb\x54\xf7\x57\x05\xf7\x2c\xfb\x7f\x15\x5f\x54\x48\x73\x45\x1b\x45\x4b\xa2\xba\x50\x1f\xf7\x55\xf7" +"\x55\x05\xfb\x7d\xfb\x2d\x15\x5f\xc1\x74\xcb\xd1\x1a\xd3\xa2\xcb\xba\xc4\x1e\xf7\x52\xfb\x50\x05\x0e\xf7\xef\xf9\x83\x16\x9f\x07" +"\x84\x8d\x74\x90\x3e\x9e\x8b\x8c\x70\x9c\x19\x45\xbb\x64\xd8\xe4\x1a\x94\x07\x9b\x07\x9f\x67\x94\x7e\x97\x7c\x08\x5c\xb1\xc8\x6d" +"\xc1\x1b\xe6\xd3\xd5\xe8\xe7\x4a\xd2\x39\x71\x80\x88\x79\x67\x1f\x88\x8a\x82\x86\x82\x87\x08\xa8\xb7\x95\xa5\xb0\x1a\xe5\x43\xd2" +"\x2f\x2e\x44\x45\x31\x67\x92\x78\xad\x56\x1e\xa3\x58\x78\x91\x70\x1b\x3d\x49\x40\x33\x2d\xd3\x43\xe9\xdb\xd1\xbe\xe5\xb6\x1f\x8c" +"\x72\x05\x83\x07\x54\x71\x45\x65\x5f\x1e\x5c\x5a\x8a\x8a\xfb\x0e\x6e\x83\x89\x18\x77\x07\x0e\x70\x59\x0a\xf7\x77\x78\x15\xf4\xb9" +"\xce\xd8\xd4\x1a\xc0\x6c\xae\x5e\x66\x70\x6f\x65\x73\x94\x7d\xa6\x78\x1e\x9f\x7e\x92\x82\x7e\x1a\x6b\x68\x68\x43\x65\x1e\x0e\xf7" +"\xec\xf8\x95\x15\x75\x37\x91\x1d\x75\x9b\x05\xa3\x0a\xc7\xf7\x6f\x05\xcd\x06\x93\xaa\x05\x49\x06\xb6\xf7\x2f\x4f\x7d\x5b\x85\x26" +"\x82\x19\x70\xa0\x07\xa5\x9a\x81\x79\x84\x8a\x85\x83\x6e\x1f\x8a\x87\x88\x7f\x87\x7e\x08\xfb\x1e\x06\x82\x6c\x05\xcc\x2e\x93\x1d" +"\x0e\xfb\x21\xf7\xa5\xf8\xb4\x15\x6a\xa4\x7a\xa3\xa2\x1a\x9d\x98\x95\xa5\xb4\xce\x74\x5d\xe8\x1e\x9a\xc9\x05\xa7\x3e\x47\x97\x43" +"\x1b\x59\x6b\x80\x74\x75\x1f\x7e\x7b\x81\x73\x78\x1a\x69\xa1\x6e\xd7\x49\x1e\x46\x73\x6a\x76\x67\x5d\x08\x5d\x4f\x6f\x3d\x42\x1a" +"\x27\xcc\x4a\xee\xe4\xe2\xbb\xd7\xbb\x1e\xac\xbf\xa3\xd4\xbc\x1a\xc3\x70\xc4\x56\xc2\x1e\x7b\x9b\x75\x9e\x7e\x95\x08\x49\x3c\x15" +"\xc6\x52\xa2\x64\x5b\x1a\x46\x6c\x2d\x62\x53\x1e\x75\x7b\x70\x7d\x71\x1b\x5f\x6e\xae\xc0\xc0\x9b\xd8\xa4\xcb\x1f\xa6\xcf\xa1\xa8" +"\xb5\x9f\x08\x0e\xf7\xef\xf8\x95\xf9\x89\x15\x42\xfb\x13\x4d\x33\xfb\x21\xfb\x45\xf0\xfb\x0f\xf7\x35\xfb\x78\x99\x61\xde\xf7\x20" +"\xdf\xf7\x0b\xf7\x03\xf7\x1a\xfb\x0b\xf7\x26\x2a\xf7\x1d\x4d\xf7\x01\x08\x0e\xfb\xd4\xf7\x7e\xf8\xd5\x15\xa8\x06\x90\x93\x8f\x92" +"\x92\x97\x08\xb1\xc6\x8d\x8e\x9d\x1a\x9d\x7a\x98\x73\x7b\x7c\x85\x83\x83\x1e\x83\x82\x8b\x8a\x89\x66\x8f\x5e\x18\x8c\x72\x05\x41" +"\x85\x15\x6d\x73\x74\x6d\x6c\xa4\x72\xa9\xa8\xa3\xa3\xa9\xa9\x72\xa4\x6e\x1f\xf7\x39\x16\x6d\x73\x74\x6d\x6c\xa4\x72\xa9\xa8\xa3" +"\xa3\xa9\xa9\x72\xa4\x6e\x1f\x0e\xfb\x65\x22\x0a\xf7\xa0\xf8\x64\x15\x49\x6c\x68\x73\x4a\x1b\x4b\x6a\xa8\xc8\x85\x1f\x60\x7e\x06" +"\x26\xb7\x5b\xe8\xec\xcb\xc5\xf3\x9d\x1e\x0e\xfb\x65\x22\x0a\xf7\xd3\xf8\x70\x20\x0a\xfb\x65\x22\x0a\xf7\x1b\xf8\x4d\x2a\x1d\xf7" +"\xef\xf9\x93\xf7\x6c\x15\xc8\xfc\x62\x07\x91\xf6\xc3\xbd\xf7\x01\x89\x08\xf7\xb7\xc9\xfb\xac\x62\x1d\x42\x2c\x1a\xfb\x08\xb8\x38" +"\xef\x1d\xc9\xfb\xb7\x06\xfb\x01\x89\x53\xbd\x85\xf5\x08\x0e\xfb\x65\x22\x0a\xf7\xc1\xf8\x2d\x25\x0a\xfb\x11\xf7\x8c\xf8\x61\x15" +"\x4b\x7d\x3b\x6b\x1d\x97\x85\x78\x7f\x7d\x55\x6b\xfb\x04\x1f\x74\x39\x84\x71\x71\x2b\x08\xf7\x0d\x06\xb0\xf7\x1e\xa7\xd4\xb5\xd6" +"\x08\xc9\xae\xb7\xb5\xa7\x1b\x98\x95\x83\x81\x83\x8a\x83\x89\x83\x1f\x26\xfc\x1d\x81\x0a\xc9\xc1\xbd\xa3\xb4\xa9\x1e\xaa\xb5\xa8" +"\xcb\x9b\xc7\xcb\xf7\x8c\x18\x9e\xd4\x92\xab\x9b\x1a\xb6\x6f\xa5\x5d\x40\x50\x55\xfb\x21\x3c\x1e\x0e\xfb\x65\x78\x0a\xe3\x9f\x9b" +"\x8e\x92\xa2\x1e\x6a\x60\x83\x78\x70\x77\x0a\x61\x76\xa1\xb8\xae\x92\x9c\xa9\xb0\x1f\x9d\xa1\x95\x9a\xa1\xaf\x08\xfb\x5a\xe4\x15" +"\xf7\x1f\xaf\xb9\xd7\xbb\x1b\x9e\x94\x80\x74\x5f\x7a\x60\x6b\x6a\x1f\x70\x6e\x72\x7d\x52\x79\x08\x0e\xfb\x87\x61\x0a\x0e\xfb\x87" +"\x61\x0a\xfb\x00\xf8\x10\x15\xbe\x06\x8f\x93\x92\x99\x94\x9f\x08\xbc\xe7\x8e\x93\xa5\x1a\xa6\x75\x9d\x6b\x77\x77\x83\x7e\x80\x1e" +"\x82\x7f\x86\x73\x8a\x5f\x8a\x60\x8b\x72\x8a\x81\x08\x0e\xf7\xef\xf7\x8c\xf7\x63\x15\xf8\x8c\xe5\xfc\x8c\x06\xfb\x94\x04\xf8\x8c" +"\xe5\xfc\x8c\x06\xf7\x86\x04\xf8\x8c\xe5\xfc\x8c\x06\x0e\x56\xf8\x96\xf7\x8e\x15\x8a\xd3\x86\xae\x7d\xb0\x08\xda\x6d\x41\xbc\x31" +"\x1b\xfb\x1b\x35\x23\xfb\x38\xfb\x36\xdd\x29\xf7\x1d\xf2\xd1\xbe\xec\xa7\x1f\x62\x06\x46\x6d\x56\x68\x40\x1b\x60\x68\x97\xa2\x73" +"\x1f\x7a\x9b\x82\x9c\x80\xb2\x08\xf4\x07\xf7\xb0\xae\x15\xfb\xae\xe8\x06\xd5\xac\xaf\xa5\xce\x1b\xd2\xc0\x66\x4c\xa1\x1f\x0e\x23" +"\x62\x0a\x0e\x23\x62\x0a\xf7\x9a\xf7\x76\x15\xbe\x06\x8e\x91\x8b\x8c\x9d\xae\x08\xbb\xe6\x8f\x94\xa4\x1a\xa7\x75\x9d\x6b\x77\x77" +"\x83\x7e\x80\x1e\x81\x7f\x86\x75\x8a\x5d\x8a\x3d\x18\x0e\x3c\xf7\x1c\xf7\x55\x15\xa5\xd1\xb2\xe0\xd8\xf7\x30\x08\xa8\xc3\x92\x9d" +"\xa2\x1a\xb1\x6c\xa7\x61\x73\x77\x81\x79\x7e\x1e\x7d\x77\x85\x78\x86\x57\x75\xfb\x4f\x7f\x3b\x78\x3b\x08\x78\xa0\x0a\xf8\x4a\xc5" +"\x15\xa5\xd1\xb3\xe3\xd8\xf7\x2d\x08\xa7\xc2\x92\x9e\xa2\x1a\xb1\x6c\xa7\x61\x58\x75\x6b\x34\x82\x1e\x76\xfb\x4d\x7e\x36\x77\x3e" +"\x08\x79\xa0\x0a\x0e\xfb\x79\xbd\x16\xf7\xd9\xf8\xd5\xfb\xd9\x37\xf7\x85\xfb\x36\xfb\x85\x37\xf7\x85\xfb\x37\xfb\x85\x06\x0e\xd0" +"\xf8\x19\xf7\xa7\x15\xb3\x93\x9c\x90\xa4\x9a\x08\xd0\xb4\xb4\xd2\xd9\x1a\xf7\x0e\x29\xed\xfb\x0e\xfb\x0d\x29\x29\xfb\x0e\x3d\xb4" +"\x44\xd0\x62\x1e\xa3\x7c\x9c\x85\xb3\x84\x08\x3e\xfb\x29\x57\xf7\x29\xfb\x2c\xc3\xf7\x2c\xf7\x28\xbf\xfb\x28\x07\x6c\xf8\x5e\x15" +"\xe7\xd5\x43\x31\x30\x42\x42\x31\x31\x42\xd4\xe5\xe3\xd4\xd6\xe2\x1f\x0e\xf7\x76\xb1\x15\x6d\xa1\x7e\xac\xc5\x1a\xd5\xa6\xf7\x0d" +"\xb0\xeb\x1e\xf7\x1b\xc0\xc8\xcf\xce\x1b\xc5\xb1\x58\x3b\x79\x8a\x7e\x87\x72\x1f\xa6\x06\xc6\xf7\x73\x05\x75\x06\x6c\x7e\x7d\x7c" +"\x7b\x1b\x83\x84\x8d\x8f\x84\x1f\xa8\x5b\x78\x91\x62\x1b\xfb\x4b\xfb\x4c\xfb\x7f\xfb\x80\x44\xa0\x4e\xb1\x66\x1f\x6d\xaa\xb7\x7c" +"\xc8\x1b\xd5\xc8\xa4\xca\xda\x1f\x75\xa4\x68\x6d\x70\x7a\x68\x7d\x19\xb2\xf7\x23\x97\xb4\x92\x97\xa5\xa4\x19\x71\x94\x97\x81\xa4" +"\x1b\xb3\xa9\xac\xb7\xa5\x7b\x9a\x6f\x6a\x6c\x73\x52\x62\x1f\x9d\xd1\x05\xfb\x18\x06\x85\x77\x05\xa1\x87\x8f\x87\x7c\x1a\x81\x8a" +"\x81\x88\x81\x1e\x0e\xfb\x81\xac\xf7\xb8\x15\xbb\x9e\xaa\xb3\x9d\x1b\x92\x90\x87\x84\x8f\x1f\x95\x76\x92\x4c\x4d\x1a\x4f\x89\x6d" +"\x83\x27\x1e\x52\x3f\x75\x5c\x5b\x1a\x68\x9d\x78\xaa\xa0\x9c\x94\x9f\x9d\x1e\xa5\xa8\x98\xb1\xa3\xf7\x0b\xdd\xea\xb8\xbe\x91\x92" +"\x08\xd2\xe3\xa9\xca\xc4\x1a\xb3\x74\xa8\x6c\x6d\x71\x6f\x6b\x80\x8d\x7f\x8f\x7f\x1e\x97\x67\x8c\x86\x78\x1a\x70\x80\x70\x6f\x63" +"\x1e\x7f\x7b\x8b\x8b\x50\x41\x71\x6b\x18\x98\xdb\x91\xc7\xca\x1a\xf7\x04\x70\xc3\x54\x56\x55\x52\x2d\x67\x1e\x0e\x3f\x0a\xf7\x45" +"\xf7\x8b\x38\x0a\xfb\x28\xf8\x71\xf8\x41\x6e\x1d\xf7\x1e\xe0\x63\x1d\xf7\x16\xea\x05\x0e\x3f\x0a\xf7\x17\xf7\xe2\x15\x22\x5d\x48" +"\x3e\x42\x1a\x56\xaa\x68\xb8\xb0\xa6\xa7\xb0\xa4\x82\x99\x70\x9e\x1e\x76\x98\x85\x94\x98\x1a\xab\xaf\xae\xd1\xb0\x1e\x0e\xfb\x28" +"\xf7\xb8\xf9\x2e\x15\x69\x70\x6f\x67\x68\xa6\x6e\xac\xad\xa6\xa8\xae\xae\x70\xa8\x6a\x1f\xf7\x4c\xfb\x81\x6e\x1d\x0e\xf7\xef\xf7" +"\x73\x8c\x15\xf8\x3c\x06\xa1\xdf\x05\xfc\x3b\x06\x8f\x9c\x15\xf8\x76\xf7\x6c\x90\x9f\xfb\xfc\xf7\x84\x6d\xfb\x05\xf7\x85\xfb\x34" +"\xfb\xd5\xfb\x1e\x05\x0e\x2a\xf7\x10\xf8\x8b\x15\xfb\x1d\xfc\x8b\x50\x1d\x75\x9a\x05\x4d\x60\x78\x76\x7e\x1b\x83\x82\x94\x92\x8d" +"\x8c\x8f\x8d\x91\xd1\x1d\x9f\x1a\xb9\x6f\xa7\x5b\x67\x6d\x7f\x6d\x68\x56\x0a\xc3\xf7\x70\x18\xf7\x1b\x06\x97\xb3\x05\xfb\x1c\x06" +"\xb3\xf7\x30\x3d\x7b\x59\x84\x3b\x84\x19\x70\xa1\x07\xa7\x98\x80\x75\x81\x89\x80\x85\x76\x1f\x85\x73\x05\x4b\x06\x7f\x63\x05\x0e" +"\x30\xf8\x73\xf7\x22\x15\x4e\x60\x78\x75\x7e\x1b\x83\x82\x94\x92\x8e\x8b\x8d\x8e\x92\x1f\xc5\xf7\x46\x05\x9f\xc9\x95\xb4\x9e\x1a" +"\xba\x6e\xa7\x5c\x67\x6e\x7f\x6d\x67\x56\x0a\xf6\xf8\x34\x18\x3d\x7c\x59\x83\x3b\x84\x08\x70\x07\x8c\x93\x94\x8b\x90\x1b\xa7\x64" +"\x1d\xfb\x2e\xfc\xcb\x50\x1d\x59\xf8\xff\x23\x1d\xf7\xef\xf8\x87\x6f\x15\x9c\xde\xc7\xf3\xf7\x0b\xf7\x2b\xb4\xc0\x9b\xa0\x9a\xa3" +"\x08\xb1\xca\x9d\xc2\xc1\x1a\xdc\x44\xcf\x37\x5b\x5f\x76\x65\x6a\x1e\x76\x72\x81\x75\x7e\x5d\x08\xf2\x67\x56\xbb\x3a\x1b\x36\x48" +"\x46\x34\x4a\xa3\x56\xdc\xfb\x01\x1f\xf7\x2c\xfb\x5f\xb2\x48\xa5\x24\x08\x0e\xf7\xef\xf7\x2d\x16\xf9\x50\xf8\x25\x06\xfb\xf3\xf7" +"\xdc\xfb\xf1\xfb\xdc\x05\xc8\xfb\xf2\x15\xf7\xdc\x07\xf7\xb4\xf7\xa2\xf7\xb6\xfb\xa2\x05\xfb\xdc\x07\x0e\xfc\x0b\x2c\x1d\xc8\xf8" +"\xbb\xad\x1d\xcb\xc5\xf3\x9d\x1e\x0e\x26\xf7\x85\xf7\x10\x15\x5a\x68\x79\x79\x6a\x1d\x8d\x94\x8d\x93\x1f\xf7\x04\xf8\x07\xfb\x52" +"\x6f\x84\x73\x05\x8c\x93\x92\x8c\x8f\x1b\x9c\x9a\x7d\x7c\x83\x87\x79\x85\x78\x1f\x49\xfb\x6c\x05\x84\x76\x88\x78\x79\x1a\x5d\xa5" +"\x6f\xb6\xa6\xa1\x96\xaa\xad\x1e\xa2\x9f\x97\x9b\xa4\xb4\x08\x82\xf8\xe6\x15\x63\x6b\x6a\x62\x61\xaa\x6a\xb3\xb2\xaa\xac\xb4\xb4" +"\x6c\xad\x65\x1f\xf7\xaf\xfb\x85\x15\xfb\x50\x68\x84\x73\x05\x9c\x94\x8a\x8a\x8e\x1f\x9b\x86\x94\x7e\x7a\x1a\x82\x89\x80\x86\x77" +"\x1e\x3c\xfb\xd0\x05\xfb\x0e\x6c\x76\x5c\x73\x1b\x85\x84\x91\x90\x8e\x8d\x90\x90\x91\x1f\x92\x94\x8e\x92\x92\x1a\x9d\x79\x9b\x76" +"\x6f\x76\x76\x6f\x6d\xaa\x75\xb4\xb5\xbd\xa2\xaa\xaa\x1e\xb1\xb4\xab\xce\xa2\xe3\x08\xc2\xf9\x07\x15\x65\x6d\x6c\x64\x63\xa9\x6b" +"\xb0\xb0\xa9\xab\xb2\xb2\x6d\xab\x67\x1f\x0e\xfc\x0b\x2c\x1d\xf7\x14\xf8\x84\x25\x0a\xf7\xef\xf8\x88\xf7\xa4\x15\x60\xb2\x87\x8e" +"\x78\x99\x08\xa5\x6a\x60\x9b\x6a\x1b\x45\x51\x51\x45\x45\xc5\x51\xd1\xad\xb4\x9b\xa5\xad\x1f\x9e\x99\x8f\x8e\xb6\xb2\xb8\x64\x8f" +"\x87\x9c\x7e\x08\x71\xae\xb4\x7b\xad\x1b\xd1\xc5\xc5\xd1\xd1\x51\xc5\x45\x6a\x60\x7b\x71\x69\x1f\x7a\x7e\x86\x87\x5f\x64\x08\xac" +"\x6d\x15\xbe\xbe\xbf\xa9\xb3\x1b\xb7\xb0\x66\x5f\x5e\x66\x66\x5f\x64\x58\xa8\xc0\x56\x1f\x4a\x16\x57\x57\x57\x6e\x64\x1b\x5f\x66" +"\xb0\xb7\xb7\xb0\xb0\xb8\xb2\xbe\x6e\x57\xbf\x1f\x0e\xf7\xef\xf8\x65\xf7\x87\x15\x43\x8c\x63\x8e\x51\x1e\x8d\x6d\x8c\x6f\x7a\x1a" +"\x6f\x82\x78\x7f\x88\x87\x8f\x93\x86\x1e\x9f\x81\x80\x93\x78\x1b\x72\x77\x78\x72\x6c\xa8\x74\xb4\xb1\xac\x9e\xad\x9e\x1f\xa4\xb8" +"\x99\xf7\x00\xf7\x24\x1a\xf7\xd6\x07\xd6\x8a\xb0\x88\xc6\x1e\x89\xa7\x8a\xac\x96\x1a\xa7\x93\xa0\x95\x8f\x8d\x89\x84\x8f\x1e\x78" +"\x95\x9b\x80\x9e\x1b\xa5\x9e\x9e\xa3\xac\x6e\xa1\x62\x65\x6a\x77\x6a\x78\x1f\x72\x5e\x7d\xfb\x00\xfb\x24\x1a\x0e\xd0\xf7\xe7\xf9" +"\xb4\x15\xfc\xfb\x07\x60\x8f\x4e\x95\x23\x1e\x8f\x61\x8d\x75\x7f\x1a\x79\x85\x81\x7f\x85\x89\x8c\x96\x80\x1e\x94\x81\x80\x90\x7d" +"\x1b\x71\x75\x75\x70\x6c\xa7\x73\xae\xb7\xaa\xaa\xc5\x99\x1f\x9b\xcb\x90\xd4\xf7\x41\x1a\xf8\xf2\x07\x0e\xd0\xf8\x30\xfb\x61\x15" +"\xf8\xfa\x07\xb7\x87\xc8\x81\xf3\x1e\x87\xb5\x89\xa1\x97\x1a\x9d\x91\x95\x97\x91\x8d\x8a\x80\x96\x1e\x82\x95\x96\x86\x99\x1b\xa5" +"\xa1\xa1\xa6\xaa\x6f\xa3\x68\x5f\x6c\x6c\x51\x7d\x1f\x7b\x4b\x86\x42\xfb\x41\x1a\xfc\xf2\x07\x0e\xf7\xef\xf9\x64\x16\xf7\x8a\x07" +"\xf7\x1d\x86\xad\x73\xb4\x1e\xca\x65\x44\xb1\x39\x1b\x3f\x4b\x6c\x53\x62\x1f\x6a\x5e\x85\x6b\xfb\x29\x1a\xfb\x8a\xc7\xf7\x8d\x07" +"\xf0\x91\xb6\x9c\xaa\x1e\xb9\xa4\xc2\xa9\xc4\x1b\xc0\xbf\x71\x61\xa7\x1f\xa0\x6b\x91\x66\xfb\x06\x1a\xfb\x8d\x07\x0e\xf7\xef\xf8" +"\x89\xf9\x6e\x15\xfb\x5b\xfb\x3a\xfb\x38\xfb\x57\xfb\x63\xf7\x35\xfb\x38\xf7\x5d\xf7\x61\xf7\x37\xf7\x36\xf7\x5f\xf7\x5e\xfb\x37" +"\xf7\x37\xfb\x5e\x1f\xfb\x01\xfb\x63\x15\xa9\xa4\x72\x6d\x6d\x72\x72\x6d\x6e\x71\xa4\xa8\xaa\xa4\xa4\xa9\x1f\xfb\x14\xfb\x05\x15" +"\x96\x59\x96\x75\xa5\x6d\x08\x54\xbb\xc7\x71\xdc\x1b\xdc\xc7\xa5\xc2\xbb\x1f\xa5\xa9\x96\xa1\x96\xbd\x84\x36\x80\x62\x6d\x5e\x08" +"\x4c\x61\x4b\x6b\x38\x1b\x3e\x4f\xa6\xc1\x61\x1f\x67\xba\x7c\xb8\x84\xe8\x08\xf7\xee\xf7\x05\x15\xa9\xa4\x72\x6d\x6d\x72\x72\x6d" +"\x6e\x71\xa4\xa8\xaa\xa4\xa4\xa9\x1f\x0e\xfc\x0b\x59\x1d\x51\x7e\x4b\x82\x3b\xb2\x1d\x66\xa7\x71\xb2\x8e\x93\x8b\x8c\x91\x1e\x6e" +"\x63\x83\x79\x71\x31\x0a\xb5\xad\x93\x9b\xaf\xb0\x1f\xa3\xa4\x95\x99\xa6\xb4\x08\x5f\xf8\xc1\x57\x1d\xfc\x0b\x37\x0a\x0e\xfc\x0b" +"\x37\x0a\x30\xf8\xb3\x15\xf5\x1d\xa7\xac\xae\x6f\xa8\x6b\x1f\xf7\x1f\x9e\x0a\xfc\x0b\x37\x0a\x5c\xf8\x7c\x15\xa8\x06\x8f\x91\x97" +"\xa1\x05\xb1\xc7\x8d\x8f\x9e\x1a\x9e\x7a\x98\x73\x7c\x7c\x85\x82\x83\x1e\x84\x83\x87\x78\x8c\x75\x8f\x5d\x18\x71\x07\x3c\x86\x15" +"\x9a\x0a\xaa\x72\xa5\x6e\x1f\xf7\x4d\x16\x6d\x73\x73\x6c\x6b\xa4\x71\xa9\xa8\xa3\xa4\xa9\xaa\x72\xa6\x6e\x1f\x0e\xfc\x0b\x37\x0a" +"\x43\xf8\x32\x15\xbe\x06\x93\x9a\x92\x99\x91\x98\x08\xbb\xe6\x8f\x94\xa4\x1a\xa6\x75\x9e\xf6\x1d\x74\x8a\x5e\x08\x8a\x60\x8a\x72" +"\x81\x1a\x0e\xfc\x0b\x2c\x1d\xef\xf8\xa4\x7a\x0a\x80\xa6\x95\x89\x9e\x1b\xc7\xae\xae\xdf\xa2\x1f\x0e\xfc\x08\xab\xf8\x2b\x15\xbe" +"\x96\x86\x71\x7e\x87\x74\x83\x6d\x1f\x2f\xfb\xf7\x05\x26\x71\x7a\x6d\x6e\xee\x1d\x93\x96\x8d\xad\x0a\xef\xcf\xd7\xf7\x2f\xb4\x1e" +"\xf7\x06\xf8\x4a\x4f\x7e\x65\x86\xfb\x02\x81\x19\xf7\x79\xdd\x23\x1d\xfb\x0f\xf7\xbb\xf7\xb4\x15\xbf\xbf\xaa\xa1\xa0\x1b\x8c\x9b" +"\x88\x85\xa2\x1f\x8a\x92\x94\x8a\x96\x1b\xb8\xa5\xa1\xaf\xa6\x77\x9c\x69\x6b\x6c\x7f\x6f\x66\x1f\x6b\x73\x85\x86\xfb\x1b\xfb\x25" +"\xc2\xf7\x6a\x18\xfb\x45\x6f\x84\x73\x05\x8c\x93\x91\x8c\x90\x1b\x9c\x9a\x7d\x7c\x83\x8b\x8b\x82\x68\x1f\x36\xfb\xdf\x05\xf7\x03" +"\x06\xc6\xf7\x7c\xd4\xfb\x44\x05\x5f\x9d\xa0\x7a\xb0\x1b\xa9\xa4\x97\xa1\x9d\x1f\x9a\x9d\x92\x97\xa4\xbe\x78\x97\x18\x5f\x74\x81" +"\x80\x77\x1b\x7c\x84\x94\xb9\x78\x1f\x0e\x75\x1d\x51\xfb\xd8\x35\x1d\xf7\x41\xf7\x42\x15\xce\xc4\xb2\xfb\x41\x05\x60\x94\xa0\x77" +"\xae\x1b\xbb\xb9\xb9\xdf\xb1\x1f\x72\x06\x62\x78\x80\x7f\x7b\x1b\x7e\x83\x99\xb2\x83\x1f\x60\xf7\x4e\xd1\xc7\xb5\xb2\xb2\xa0\xa6" +"\x8a\x19\x91\x9f\x05\xfb\x5b\x06\x86\x77\x05\xb3\x87\x95\x84\x77\x1a\x7c\x81\x7a\x7b\x7c\x1e\xfb\x2b\xfb\x19\xda\xf7\x8c\xfb\x47" +"\x71\x85\x73\x05\xa7\x98\x81\x73\x82\x89\x7e\x87\x7f\x1f\x23\xfb\xf1\x05\xf7\x07\x06\x0e\xfc\x0b\x41\x0a\x66\xf8\xeb\x8c\x0a\xfb" +"\x65\x61\x16\xf7\x19\x06\xf7\x39\xf7\x93\x05\x80\x4d\x87\x5b\x53\x1a\x67\x8d\x78\x91\x7f\x1e\x77\x93\x99\x81\x9d\x1b\xb2\xb7\xbd" +"\xd8\xa8\x1f\x7a\x93\x05\x60\x6d\x7f\x81\x76\x1b\x73\x80\x9c\xaf\xd5\x9b\xf7\x68\x9a\xf7\x09\x1f\x8e\xa4\x8d\xa3\x97\x1a\xbd\x72" +"\xa8\x60\x65\x74\x72\x62\x76\x94\x7a\x9f\x7a\x1e\xb3\x6a\x92\x7f\x69\x1a\x83\x8b\x82\x8a\x81\x1e\x0e\xfb\x8b\x41\x0a\xca\xf7\xa6" +"\x15\xf4\xb9\xce\x98\x0a\x67\x68\x45\x65\x1e\x0e\xfc\x0b\xf7\x6b\xe0\x1d\x98\x92\xa9\x9a\xc4\xae\x0a\x96\x8e\x8b\x92\x1b\xa6\x9a" +"\x81\x79\x7d\x7d\x4e\x78\x48\x1f\x40\xfb\x9c\x05\x76\x3e\x7e\x51\x74\x1a\x67\xa6\x73\xb4\xc8\xb1\xaa\xf4\xd0\x1e\xfb\xc7\xfc\x57" +"\x44\x1d\xfb\xa6\xf7\x6e\x6f\x0a\xe6\xf7\xad\x15\x61\x6a\xb0\x0a\x0e\xf7\xef\xf9\x0b\x8c\x15\xa1\xdf\x05\xfc\x3b\x06\x74\x37\x05" +"\xf8\xd6\xf8\xd4\x15\xfc\x79\xfb\x79\x86\x77\xf7\xff\xfb\x76\xa9\xf7\x05\xfb\x88\xf7\x26\xf7\xd8\xf7\x2c\x05\x0e\x99\x34\x1d\xf8" +"\xb9\xfb\xc8\x73\x0a\xfb\x44\x7e\x56\xb4\x0a\xfb\xd4\xf7\x22\xf8\x26\x15\x5c\xfb\x69\x6c\xfb\x1f\x84\x68\x08\xfb\x25\x6e\x77\x61" +"\x64\x1b\x81\x83\x90\x91\x8d\x8c\x8e\x8e\x8f\x1f\x93\x96\x8f\x96\x96\x1a\xa3\x73\xa3\x72\x70\x73\x72\x6f\x5b\xb2\x6c\xc6\xc0\xb6" +"\xa1\xb6\xad\x1e\xb8\xc4\xb3\xf7\x03\xac\xf7\x31\xdb\xf8\x12\x8d\x94\xa5\xb7\x08\xa6\x9b\x9c\x98\x9d\x5e\x1d\x80\x66\x1d\xa8\xa0" +"\xa1\xaa\xbb\x65\xaa\x4f\x57\x5b\x76\x64\x68\x1e\x62\x5d\x77\x62\x70\x27\x08\x43\x06\x82\x61\x05\x0e\xd0\xf8\xc1\xf8\xe5\x15\x43" +"\xbc\x9c\x79\x9c\x1b\x95\x93\x92\x95\x91\x8a\x8f\x84\x99\x1f\x74\xb6\x7a\xcb\xb7\x1a\xa9\x89\x91\x7e\x86\x84\x88\x83\x7e\x1e\x78" +"\x70\x3d\x75\x60\x1b\x71\x8a\x83\x86\x7e\x1a\x75\xad\x81\xe2\x85\x1e\x25\xfb\x4d\x05\x97\x6c\x6e\x91\x6b\x1b\xfb\x1a\xfb\x00\xfb" +"\x00\xfb\x1a\xfb\x19\xf7\x00\xfb\x00\xf7\x1a\xf7\x19\xf7\x00\xf7\x00\xf7\x1a\xd8\x66\xd3\x4c\xb9\x1f\xfb\x22\x7b\x15\xee\xdc\x3b" +"\x28\x28\x3b\x3a\x28\x27\x3b\xdb\xee\xee\xdb\xdc\xee\x1f\x0e\xfc\x08\xf7\x48\xf7\xf8\x15\xf2\xf7\x51\x05\xa0\xb3\x97\xaa\x9e\x1a" +"\xa7\x74\xa0\x6c\x4c\x64\x56\x35\x89\x1e\x89\xfb\x51\x05\x0e\xf7\x81\xf7\x43\x15\x92\x7c\x77\x8f\x7a\x1b\x4d\x54\x56\x50\x68\xa5" +"\x75\xb4\xba\xb7\xa2\xb1\xa6\x1f\x9f\xa6\x91\xa1\x8d\xbb\x08\xf7\xb9\x07\xc3\x83\xb9\x3f\x38\x1a\x59\x83\x65\x73\x54\x1e\xa6\x06" +"\xaf\xb6\x9e\xc2\xc5\x1a\xd6\x6e\xd2\x51\xd1\x1e\x58\xc8\x8a\x8c\x86\x92\x83\x95\x19\xc5\x5f\x07\x0e\xd0\xf8\x13\xf8\x57\x15\x9e" +"\x72\xa1\x78\xa0\x7f\xc3\x6b\x94\x85\x90\x82\x08\x91\x80\x8f\x78\x76\x1a\xfb\x7c\x07\x92\x7a\x74\x8f\x78\x1b\x46\x4d\x56\x4f\x68" +"\xa8\x75\xb8\xbe\xbb\xa2\xb1\xaa\x1f\xa0\xa6\x92\xa1\x8d\xbc\x08\xf8\x00\x07\x8c\xd3\x6a\xd5\x5d\xa7\x54\xaf\x6d\x9f\x87\x8f\x08" +"\x7e\x99\x85\x9d\xa2\x1a\x98\x5f\xfc\x80\x07\x92\x7b\x74\x8f\x79\x1b\x46\x4f\x56\x4f\x68\xa7\x75\xb7\xbe\xbb\xa2\xb1\xa8\x1f\xa0" +"\xa6\x92\xa1\x8d\xbc\x08\x8e\xf8\x0a\x15\xf7\x03\x4f\xa3\x67\x8f\xfb\x08\xfb\x06\xc8\x74\xae\x87\xf7\x09\x08\x0e\x2a\x30\x1d\xfb" +"\x55\xf8\x1e\x29\x0a\xb9\xe1\xf8\x5d\x15\xc5\x9f\xa6\x9a\xa8\xa4\x08\xb4\xad\xa0\xb3\xb5\x1a\xba\x6e\xac\x63\x67\x6e\x6d\x67\x78" +"\x92\x7a\x9a\x79\x1e\x9b\x78\x8f\x84\x82\x1a\x6e\x6a\x70\x4f\x75\x1e\xf8\xb6\xfb\xed\xe1\x1d\x90\x9c\x9f\xc7\x1f\xb0\xf7\x01\x05" +"\x9a\xb8\x95\xb9\xa3\x1a\xbc\x71\xa5\x5c\x66\x67\x7c\x71\x70\x1e\x66\x68\x78\x73\x49\x28\xca\xf7\x5a\x18\x4c\x7d\x3a\x6b\x1d\x8a" +"\x97\x86\x78\x1a\x7f\x7d\x54\x6c\xfb\x03\x1e\x72\x32\x85\x78\x71\x2b\x08\xf7\x0d\x06\xba\xf7\x41\xb0\xe2\xc8\xdc\x08\xa6\x9f\xaa" +"\xa1\x9d\x1b\x98\x97\x81\x80\x87\x89\x83\x88\x82\x1f\x54\xfb\x3a\x05\x7b\x59\x7f\x54\xe7\x1d\x0e\x2a\x30\x1d\xa9\xf8\xcc\x20\x0a" +"\x2a\x30\x1d\xfc\x3c\xfc\x52\x35\x1d\xf7\xef\xf8\xa4\xf7\x6c\x15\xf7\x83\xc8\xfb\x60\x06\xe3\xf7\x2f\x05\xf7\x08\xc9\x3a\x06\xac" +"\xc6\x61\xa3\x5c\x38\x05\xfb\x23\x62\x1d\x42\x2c\x1a\xfb\x08\xb8\x37\xdc\x69\x1e\x6a\x52\xb6\x74\xb1\xce\x05\x88\xa4\x99\x8a\xb4" +"\x1b\xf7\xac\xc9\xfb\xb7\x06\x77\x85\x8b\x8c\x81\x1f\xab\xf7\x2d\x15\x3a\xfb\x21\x57\x9d\x6c\xbe\x88\xd3\x19\xf7\xb6\xf7\x6c\x15" +"\x33\xfb\x2f\x05\xfb\x5e\x06\x91\xf6\xc3\xbd\xf7\x01\x89\x08\x0e\xf7\xef\xf8\xd6\xf7\xcb\x15\xf7\x42\xe3\xfb\x15\x06\xb3\xdc\x3d" +"\xb2\x4e\xfb\x0c\x05\xfb\xa8\x33\xf7\x7c\x06\x51\xfb\x08\x05\xfb\x42\x33\xf7\x15\x06\x63\x3a\xd9\x64\xc8\xf7\x0c\x05\xf7\xa8\xe3" +"\xfb\x7c\x06\x0e\xfb\x65\xd1\xf7\xbe\x15\xbd\x99\xa3\xb1\x9c\x1b\x9b\x90\x52\xfb\x52\x53\x89\x6e\x82\x55\x1f\xab\x84\x9c\x9f\x92" +"\x92\xa7\xa5\x19\xf7\x24\xf7\x1c\xd3\xf7\x02\xde\x1a\xb5\x6d\xaf\x67\x71\x75\x72\x6d\x76\x90\x7f\xa0\x6e\x1e\x97\x7a\x91\x7b\x7d" +"\x1a\x64\x6c\x5c\x3c\x39\x1e\x8c\xd1\x8b\x95\x9a\x1a\xc6\x88\xbc\x86\xb0\x1e\xc5\x82\x6e\xad\x61\x1b\x55\x5a\x54\x35\x76\x1f\x0e" +"\x23\x0a\xf7\x2b\xf7\x89\xad\x1d\xcc\xc5\xf3\x9c\x1e\x0e\x23\x0a\x42\xde\x15\xf7\x2b\xe2\x05\xa9\x9c\x94\x96\x9e\x1a\xa5\x76\xa0" +"\x70\x7a\x93\x0a\xf7\x82\x16\xac\x1d\x23\x0a\xf7\x5e\xf7\x52\x15\xfb\xd9\x06\x7a\x45\x05\xf7\xda\x06\x0e\xd1\xf7\x93\xf8\x57\x5f" +"\x0a\xd1\xf8\x24\xf8\x9e\x15\xbf\x06\x8e\x93\x92\x99\x95\x9f\x08\xbb\xe6\x8f\x94\xa4\x1a\xa7\x75\x9d\x6b\x73\x75\x80\x7a\x81\x1e" +"\x83\x7d\x8a\x7c\x89\x21\x89\x64\x18\xfb\x26\x39\x5f\x0a\x6d\x0a\x0e\x6d\x0a\x83\xf2\x15\xbe\x06\x8f\x94\x9c\xac\x05\xbc\xe8\x8e" +"\x92\xa4\x1a\xa6\x75\x9e\x6b\x77\x76\x83\x7e\x81\x1e\x81\x7f\x86\x74\x8a\x5e\x8a\x4d\x18\x86\x8a\x7e\x8a\x76\x1e\x0e\xf7\xda\x93" +"\x16\xfa\x56\xd3\xfe\x0e\xfa\x03\x43\x06\x0e\x5e\x0a\xf7\x23\xf8\x76\x15\xac\x1d\xf6\xf9\x18\x15\xa6\xc3\xa1\x91\xb3\x1b\xa0\xa3" +"\x85\x81\x9c\x1f\xc0\x6b\xab\x39\x20\x1a\x6e\x8a\x75\x87\x69\x1e\xb5\x52\x67\x99\x58\x1b\x5a\x62\x7a\x67\x66\x1f\x5a\x5b\x6f\x49" +"\x49\x1a\xfb\x02\xe3\x33\xf7\x01\xcb\xc3\xa5\xbc\xb5\x1e\xc6\xd0\xb1\xf7\x1c\xf7\x1f\x1a\xf7\x0c\x5f\xf0\x39\xd0\x1e\xaf\x60\x58" +"\x9d\x51\x1b\x60\x6d\x84\x71\x43\x1f\xf7\xc6\xfc\x2e\x15\x7b\xfb\x02\x7d\x58\x71\x60\x08\x61\x70\x69\x73\x67\x1b\x59\x6e\xb9\xd8" +"\xf6\xc9\xe2\xd7\xad\xa3\x7f\x68\xaf\x1f\x0e\xf7\x75\xf7\x55\x73\x1d\xf8\x49\x6f\x15\x59\x06\xa7\xf2\x05\x6b\x06\x63\x50\x69\x6f" +"\x51\x75\x08\x6b\xae\x07\x5c\xfb\x37\x05\x80\x63\x85\x6f\x7e\x1a\x6d\xa1\x77\xab\xb8\xa5\xa0\xdb\xbf\x1e\x75\x99\x05\x67\x73\x77" +"\x75\x81\x1b\x88\x87\x8e\x8f\x98\x99\xc0\xa3\xde\x1f\x92\xa3\x90\x9a\x96\xb5\x08\xc7\x06\x0e\x47\xf7\x6b\xfb\x52\x15\xb6\xf7\x42" +"\xcd\x8e\xc7\xa5\xc0\xbc\x19\xcd\xc9\xb7\xea\xdb\x1a\xe4\x4a\xd2\x39\x65\x65\x7b\x70\x70\x1e\x75\x74\x7a\x68\x7d\x52\x44\xfb\xb3" +"\x18\x81\x8e\x84\x8e\x87\x8f\x08\x7b\x96\x80\xa8\xac\x1a\xde\xb0\xf7\x1d\xb1\xc7\x1e\xa1\xae\xa1\x9d\xac\x96\x8f\x9d\x18\x48\x88" +"\x5b\x77\x58\x5b\x08\x49\x4e\x64\x36\x38\x1a\x4c\xa4\x55\xb5\x6e\x1e\xa4\x7a\xa0\x84\xb5\x86\x60\xfb\x42\x18\xf7\x66\xf8\x6a\x15" +"\xef\xa4\x96\xa3\x9f\x1b\xa1\x9b\x6c\x64\x34\x5a\xfb\x29\x5f\x5e\x1f\x75\x75\x7c\x82\x6d\x83\x08\x0e\x20\xf8\xda\xf8\x50\x15\xfc" +"\x18\x06\x45\x7e\x86\x5f\x63\x1f\x3e\x30\xb3\x7a\xae\xb8\xaf\x9c\xcc\x8d\x19\x7d\x57\x7f\x68\x79\x62\x65\x39\x86\x84\x63\x72\x7b" +"\x80\x18\x6f\x78\x7d\x73\x6f\x1a\x75\xa2\x7a\xab\xb5\xab\xa8\xc8\xa8\x1e\xab\xce\x8b\x8b\xc7\xf7\x63\x08\xf7\x3b\x06\x4f\x74\x68" +"\x63\x7a\x4a\x6b\xfb\x18\x18\x87\x7c\x89\x7d\x83\x1a\x6e\xa7\x65\xa0\x8e\x91\x8d\x8e\x92\x1e\xf7\x0a\xba\x94\xaf\x05\x82\x73\x82" +"\x88\x7f\x1b\x7c\x84\x95\xa0\x99\x8b\x8c\x92\xa8\x1f\xad\xf7\x20\x94\xae\x90\x95\xa2\xa7\x19\xf3\x06\x0e\xf7\xef\xf9\x45\xf9\x55" +"\x15\xfd\x72\x07\x54\x8a\x78\x77\x54\x1b\x7b\x78\xf7\xb8\x9e\x7a\x06\x55\x77\x9f\xc2\x1f\xf9\x3b\x07\xc4\xa0\xa2\xc0\x1e\x9c\x9d" +"\xfd\x9f\x79\x9b\x06\xc1\x9f\x75\x51\x8c\x1f\xfd\x3b\x07\x54\x8a\x77\x77\x55\x1b\x7b\x78\xf7\xb8\x9e\x7a\x06\x55\x77\x9f\xc2\x1f" +"\xf9\x72\x07\x0e\xf7\xef\xf9\x93\xc9\x15\xfb\xb7\x06\xfb\x0d\x57\xc2\xf7\x16\xf7\x15\xbf\xc3\xf7\x0d\x1f\xf7\xb7\xc9\xfb\xac\x62" +"\x1d\x43\x2b\x1a\xfb\x07\xb8\x37\xef\x1d\x06\x0e\xf7\xef\xf7\x7d\xc9\x15\x4d\xf7\xac\x07\xde\xae\x92\xa4\xb1\x1f\xcc\xb7\xac\xd3" +"\xf2\x1a\xf6\x5c\xe0\x3e\xac\x1e\x99\x69\x70\x8f\x46\x1b\xfb\xac\x4d\xf7\xb7\x06\xf7\x0d\xbf\x54\xfb\x16\xfb\x16\x57\x54\xfb\x0d" +"\x1f\x0e\x9a\xbf\xf7\xb8\x15\xbf\xa4\xa8\xaf\x9d\x1b\x91\x8f\x85\x83\x84\x8b\x8b\x82\x69\x1f\x83\x6a\x05\x73\x2c\x86\x71\x6d\x1a" +"\x37\xcf\x52\xee\x1e\x5d\xfb\x46\x05\xf7\x02\x06\xb2\xf7\x41\xe5\x97\xbf\xa8\xba\xca\x19\xbf\xd1\xae\xf7\x00\xe8\x1a\xc0\x75\xa9" +"\x65\x6b\x73\x71\x68\x77\x91\x7b\x9a\x72\x1e\x9f\x6a\x8f\x7e\x71\x1a\x64\x7b\x58\x71\x62\x1e\x64\x4c\x65\x72\x3d\x7d\xea\xf8\x37" +"\x18\x2f\x06\x21\xfc\x32\x05\x5f\x8c\x71\xae\xc2\x1a\xa4\x91\xa8\x9d\xd3\x1e\xa1\xe1\x05\x92\xa5\x8e\x9d\x9a\x1a\xaf\x73\xa3\x67" +"\x53\x50\x53\x2f\x61\x1e\x0e\xfb\xd4\xf7\x86\xf7\xf7\x15\x72\xc1\x81\xae\xaa\x1a\xb6\x9b\x9a\xb5\x89\x1e\xa6\x89\x9e\x8f\x96\x95" +"\x08\x9d\x9b\x95\xa0\xa1\x1a\xb2\x68\xab\x5f\x70\x73\x7d\x70\x75\x1e\x74\x6d\x82\x6c\x5d\x1a\x4c\x9b\x54\xae\x4c\x1e\x0e\xfb\x9c" +"\x40\x0a\xf7\x51\xdd\x29\x1d\xd0\xf8\x3f\x68\x15\xb6\x06\xf7\x2c\xfa\x40\x3e\x96\xfb\x09\xfd\x69\xfb\x44\xf7\xf8\xfb\x4a\x32\xac" +"\x44\xea\xba\x05\x0e\xfb\x9c\x40\x0a\xf8\x30\xf7\x94\x20\x0a\xfb\x9c\xc0\x0a\x6d\xfb\x05\x43\xfb\x88\x1e\xf7\x0d\x06\xb9\xf7\x26" +"\x9d\xa8\x0a\x91\x1f\x7a\x9a\x98\x83\x9c\x1b\xac\xa4\xaa\xb5\xb3\x74\xa5\x69\x58\x63\x59\xfb\x33\x3b\xba\x0a\x29\xfd\x8a\x44\x1d" +"\xf7\x80\xf7\xac\xf7\x00\x15\xf7\x5f\xf8\x34\xe3\xfc\x8c\xfb\xb7\x07\x0e\xfb\x1e\x7c\xfb\x46\x15\xf7\x03\x06\xc3\xf7\x6f\x05\x6a" +"\x9b\xa6\x7b\xb0\x1b\xf5\xf7\x05\xf7\x2a\xf7\x22\xf1\x52\xce\x34\x5a\x58\x78\x6a\x66\x1f\x63\x67\x7e\x6c\x6a\xfb\x12\x08\xf7\x19" +"\xdd\x15\x99\xc4\x95\xa8\x95\x9a\x08\x9d\x98\x9a\x95\x9d\x1b\xa5\x99\x71\x5d\x2d\x68\xfb\x19\x63\x4f\x1f\x7a\x7f\x79\x80\x7a\x1b" +"\x75\x7d\x98\xad\x7a\x1f\x0e\xfb\x9c\x3d\x1d\x2d\xf7\x64\x29\x1d\xfb\x9c\xf7\x06\x7f\x15\x8a\x93\x92\x8b\x8f\x1b\xde\x9d\x0a\xa6" +"\x67\x38\x9a\x1e\xa6\x89\xa2\xf7\x2d\x05\x7d\x0a\x76\x96\x9f\x7b\x5d\x1d\x91\x97\x88\x86\x98\x1f\x8c\x8e\x8a\x8a\x8e\x1f\x4f\x32" +"\x98\x7f\x05\x8e\x97\x92\x8c\x96\x45\x1d\xfb\x9c\x3d\x1d\xad\xf7\x64\x23\x1d\xfb\x9c\xf7\xe1\xf8\x61\x15\x7d\x0a\x75\x96\x9f\x7c" +"\x5d\x1d\x92\x96\x88\x86\x98\x1f\x83\xa3\x9d\x87\xa0\x1b\xe0\x9d\x0a\xa5\x67\x38\x9b\x1e\xa6\x89\x05\xfb\xd8\xfd\x0c\x44\x1d\x26" +"\xf8\x3d\xf7\xf8\x15\xf1\xf7\x51\x05\xab\xc8\x8e\x92\x9f\x1a\xa9\x75\xa0\x6c\x6f\x6e\x7d\x73\x76\x1e\x78\x74\x85\x72\x8a\x56\x87" +"\xfb\x51\x18\xfb\x6a\x16\xf2\xf7\x51\x05\xa1\xb4\x97\xaa\x9d\x1a\xa7\x74\xa0\x6b\x4d\x63\x55\x37\x8a\x1e\x88\xfb\x52\x05\x0e\xfb" +"\x06\xf8\xd3\xf8\x50\x15\xfb\x6f\x06\xfb\x00\x5c\x7e\x60\x53\x1f\x44\x53\x5c\x2d\x33\x1a\x29\xcd\x4b\xee\xf7\x27\xf7\x14\xf7\x06" +"\xf7\x17\xb0\x7e\xad\x76\xa0\x1e\x7e\x97\x7e\x91\x71\x94\x08\xf7\x40\x06\xfb\x6d\x16\x97\x74\x8e\x7e\x72\x1a\x56\x77\x38\x71\x53" +"\x1e\x55\x72\x6f\x73\x64\x1b\x60\x70\xa9\xbc\xdb\xac\xf7\x00\xae\xac\x1f\xa2\xa4\xa4\x93\xbe\x1b\x0e\xf7\xef\xf8\x1b\xf8\x9a\xc0" +"\x1d\xfb\x14\xfb\x00\x15\x92\x36\x96\x62\xa9\x5e\x08\x4c\xb5\xcb\x6b\xde\x1b\xd8\xc7\xa6\xc1\xb5\x1f\xaf\xba\x9a\xb8\x92\xe8\x80" +"\x59\x80\x75\x71\x6d\x08\x54\x5b\x4f\x71\x3a\x1b\x3a\x4f\xa5\xc2\x5b\x1f\x71\xa9\x80\xa1\x80\xbd\x08\xf7\xee\xf7\x00\xc0\x1d\xfb" +"\x01\xf7\x68\x15\xfb\x5b\xfb\x3a\xfb\x38\xfb\x57\xfb\x63\xf7\x35\xfb\x38\xf7\x5d\xf7\x61\xf7\x37\xf7\x36\xf7\x5f\xf7\x5e\xfb\x37" +"\xf7\x37\xfb\x5e\x1f\x89\x5a\x15\xf7\x45\xf7\x21\xfb\x20\xfb\x44\xfb\x43\xfb\x21\xfb\x21\xfb\x43\xfb\x41\xfb\x23\xf7\x21\xf7\x3e" +"\xf7\x47\xf7\x1e\xf7\x22\xf7\x44\x1f\x0e\xf7\xef\xf8\xab\xf7\x99\x15\x7f\x07\x44\x6b\x45\x5a\x66\x1e\x6c\x62\x56\x7a\x57\x1b\x7e" +"\x74\xf8\x77\xa2\x06\xfb\x32\x91\x3c\xe3\x8e\xf7\x3d\x08\x35\xb9\xb6\x6d\xda\x1b\xcd\xc4\xca\xd4\xd0\x73\xb0\xfb\x01\xef\x1f\xfb" +"\x02\xf1\x7a\xa5\x63\xf7\x09\x7c\x30\x4d\x30\x23\x39\x08\x3c\x49\x67\x51\x4c\x1a\x40\xc8\x4d\xd4\xb4\xb4\x9c\xa9\xac\x1e\x9e\x9d" +"\x96\x9a\x9c\xb0\x08\x0e\xf7\xef\xf7\xee\xf9\x5b\x15\xf7\x85\x06\xf4\x8a\xa5\x75\x9a\x26\x08\xa2\x06\x82\xf7\x39\x05\xfc\xaf\x06" +"\xf7\x66\xfc\x67\xfb\x6e\xfc\x2c\x05\xf8\xc8\x06\xbc\xf7\x66\x05\x74\x06\x6f\x3b\x6c\x78\x26\x8c\x08\xfb\xbc\x06\xf7\x49\xf7\xf4" +"\x05\x0e\xf7\xef\xf7\xcd\xf8\x77\x15\x6e\x66\x7c\x67\x85\x5b\x08\xfb\x05\x54\xf7\x05\x06\x8f\x61\x9e\x5b\xa6\x6a\x3b\x3c\x18\xb1" +"\x65\xdb\xdb\xb1\x6e\xb2\x7b\xb8\x86\x19\xfb\x05\xc1\xf7\x05\x07\xb7\x90\xb9\x9e\xab\xa5\xdb\x3b\x18\xb0\xb1\x3b\xdb\xa8\xae\x9c" +"\xb5\x90\xb8\x19\xf7\x05\xc2\xfb\x05\x06\x86\xb6\x79\xb7\x70\xad\xda\xda\x18\x66\xb1\x3b\x3b\x6c\xa5\x5f\x9e\x5c\x91\x19\xf7\x04" +"\x55\xfb\x04\x07\x60\x86\x5c\x78\x6b\x70\x3b\xdb\x18\x65\x65\x05\xf7\x9c\x55\x15\xec\xd8\x40\x2d\x2b\x3f\x3e\x2c\x2d\x3e\xd8\xea" +"\xe7\xd8\xd9\xe6\x1f\x0e\xfb\x65\xf8\x70\xf8\x50\x15\xfb\xbc\x06\x49\x7b\x85\x6d\x73\x1f\x34\xfb\x07\xb5\x7c\xb8\xc5\xb2\x9c\xe4" +"\x8a\x19\xbb\x06\x50\x78\x66\x62\x78\x47\x6a\xfb\x1c\x18\x89\x82\x89\x7e\x82\x1a\x69\xa5\x68\xa5\x8f\x8e\x8c\x8c\x8f\x1e\xf7\x12" +"\xbc\x94\xb1\x05\x80\x6e\x7f\x88\x7e\x1b\x7d\x85\x91\x9a\x9b\x91\xaa\x97\xbd\x1f\x9c\xd3\x9a\xc5\x93\x9d\xa1\xa2\x19\xf7\x2b\x06" +"\x0e\xfc\x0b\xf7\x3a\xf7\xba\x15\x91\x9e\x94\xad\x8c\x8d\x9b\xc5\x19\xde\xb5\x43\xc4\x1d\x6b\xfb\x05\x05\x5e\x06\x7d\x55\x05\xb6" +"\x06\x77\x44\x85\x0a\x9c\x98\xbe\xa6\xeb\x1f\xe0\x06\x98\xc1\x05\x0e\xfb\x9e\xf7\xb7\xf8\x42\x15\x91\x7b\x05\xea\xc3\xba\xc9\xcc" +"\x1a\xc0\x6c\xae\x5d\x66\x70\x6f\x65\x73\x94\x7c\xa6\x79\x1e\xa0\x7e\x91\x82\x7e\x1a\x74\x73\x6c\x66\x73\x1e\x30\x83\x1d\xfc\x0b" +"\xdd\x84\x15\xbd\x95\xb2\xaf\xc1\xe3\x75\x99\x18\x57\x6a\x70\x6f\x7b\x1b\x83\x83\x92\x93\x9e\x9e\xd7\xae\xf7\x09\x1f\x96\xb1\x90" +"\x9f\x9c\xc8\x08\xde\xb5\xb5\x0a\x56\x3b\x58\x6c\x1d\x47\xfb\x82\x05\x7c\x57\x82\x60\x79\x1a\x6b\x9e\x73\xa9\x84\x1e\x51\x36\x3e" +"\x0a\x93\x8c\x95\x45\x1d\xfb\x1a\xf7\xf9\xf9\x32\x15\x21\x3d\x3b\xfb\x35\x57\x1f\x6f\x33\x75\xfb\x07\x4f\x1a\xfb\x05\xbb\x4e\xe5" +"\xe2\xd8\xc5\xed\xb6\x1e\xb9\xf3\xaf\xf7\x30\xe8\x1a\xbc\x7f\xb9\x76\xa7\x1e\xac\x73\x6d\x98\x55\x1b\x8f\xfb\xe2\x15\x6e\xfb\x0c" +"\x79\x4d\x76\x57\x08\x5c\x78\x6f\x6f\x6d\x1b\x70\x7a\xa3\xb4\xc1\x93\xb8\xac\xf7\x25\x1f\x94\xb0\x15\xf7\x61\xbd\xa8\xc6\xc0\x1b" +"\xa6\x9a\x74\x60\x55\x84\x5e\x75\x28\x1f\x0e\xfb\xd4\xf7\x61\xf8\x66\x15\xbe\x06\x97\xa3\x92\x99\x8d\x8d\x08\xbb\xe4\x8f\x93\xa4" +"\x1a\xa5\x75\x9d\x6b\x77\x77\x83\x7f\x80\x1e\x81\x80\x86\x73\x8a\x60\x8a\x40\x18\x0e\x30\xf8\x6c\xf7\x19\x5d\x0a\x72\xf8\xc2\x15" +"\x49\x6b\x69\x57\x0a\x06\x55\x8d\x7c\x98\x70\x1e\x5f\x9e\xb4\x69\x1d\x2a\x26\x0a\xfb\x9a\xf8\x20\x51\x1d\x2a\x26\x0a\x98\xf8\x8b" +"\x25\x0a\xfb\x5f\x04\x34\xf8\x88\xe2\x07\xfc\x88\xf7\x32\x15\x34\xf8\x88\xe2\x07\x0e\xfc\x27\x0e\xfb\xd4\xc9\x1d\x61\x43\x0a\xfc" +"\x99\xfd\xb5\x39\x0a\xfc\x0b\xf7\xad\xf8\x55\x15\xb5\x0a\x56\x3b\x58\x6c\x1d\x47\xfb\x82\x85\x0a\x9e\x9d\xd4\xaf\xf7\x0c\x1f\x94" +"\xad\x92\xa3\x9c\xc8\x08\xde\x06\xfb\xf2\xfd\x6f\x44\x1d\xfb\xd4\xf8\x1d\xf9\x03\x25\x0a\xfc\x27\xf7\x12\xf8\x29\x2b\x0a\x71\x74" +"\x16\xf8\x8e\x06\xa5\xf9\x2a\x05\x70\x06\xfb\x15\xfc\xed\x15\xfb\x2e\x06\x53\x8c\x8b\x8b\x80\x8f\x08\x81\x8e\x85\x93\x94\x1a\x97" +"\x9a\xa5\xac\xb8\x1e\xf7\x62\xf7\xab\x05\x0e\xe8\xf9\x58\xf7\x44\x15\x4d\x06\x70\x4d\x7e\x81\x55\x8a\x08\x61\x06\x6c\x77\x89\x87" +"\x6b\x1f\x95\x98\xdd\x97\xb8\xa1\xb7\xbc\x19\xca\xd3\xb5\xf4\xe2\x1a\xbb\x79\xbe\x6d\xb0\x1e\xc6\x5d\x40\xa6\xfb\x07\x1b\xfb\x2a" +"\xfb\x05\x54\xfb\x02\x42\x1f\x63\x4f\x74\x41\x43\x1a\x4a\x9e\x53\xad\x67\x1e\xa0\x75\x9e\x81\xb5\x82\x8e\x7e\x18\x8f\x6d\x79\x8d" +"\x6b\x1b\x61\x06\x61\x7a\x9d\xb4\x8d\x1f\x8d\x8b\x91\x8a\x91\x1e\x4e\x06\x84\xfb\x44\x05\xf7\xcf\x06\xa4\xef\x05\x4b\xba\x77\xb2" +"\xde\x1a\xda\x9d\xd8\xaf\xd8\x1e\xf4\xbc\xbd\xb2\xe2\x1b\xba\xba\x7a\x72\xa4\x1f\x9f\x77\x97\x67\x64\x1a\x33\x69\xfb\x08\x57\x32" +"\x1e\x66\x4b\x69\x70\x42\x72\x72\x27\x18\xf7\xcf\x06\x0e\x2a\xf8\x51\xf7\x15\x15\x5e\x76\x79\x72\x81\x1b\x86\x88\x8f\x90\x8f\x8c" +"\x91\x90\x9c\x1f\xe5\xf7\xf1\x05\xfb\x06\x06\x59\xfb\x54\x77\x55\x80\x75\x6f\x60\x19\x5f\x6e\x7e\x7e\x7a\x1b\x81\x86\x91\x98\x92" +"\x8b\x8b\x91\x9e\x1f\xde\xf7\xd7\x05\xfb\x06\x06\x49\xfb\x92\x81\x66\x81\x65\x82\x66\x19\x81\x67\x84\x73\x86\x7f\x89\x86\x84\x7c" +"\x81\x75\x08\x76\x5f\x83\x6f\x70\x1a\x6a\xa1\x74\xaa\xaa\xa4\xa2\xa8\x95\x8a\x98\x88\x98\x1e\x85\xac\x89\xa0\xaa\x1a\x97\x8b\x93" +"\x8d\x9c\x1e\x77\x97\x95\x84\x9d\x1b\xb5\xac\xa7\xf0\xd6\x1f\x87\x7b\x88\x7f\x88\x83\x08\x85\x77\x88\x79\x7f\x1a\x72\xa1\x79\xaa" +"\xc3\xbd\xb8\xdf\xb2\x1e\x0e\xfb\x63\xf8\x5a\xf8\x95\x15\x55\x73\x75\x77\x66\x1b\x84\x81\x8c\x8d\x7f\x1f\x8e\x7a\x7e\x8c\x81\x1b" +"\x51\x51\x68\x42\x4e\x1f\x4b\x40\x73\x54\x47\x1a\x30\xbb\x54\xdb\x98\x90\x8c\x8f\x9f\x1e\x8e\x9d\x97\x8d\x95\x1b\xa4\x99\x7c\x73" +"\x66\x6d\x6c\x68\x7e\x7b\x8f\x93\x7f\x1f\x9d\x6d\x84\x8e\x79\x1b\x64\x72\x72\x65\x66\xa6\x75\xb7\xf4\xf6\xf5\xf4\xbf\x71\xa6\x59" +"\x7f\x84\x8a\x88\x74\x1f\x89\x80\x82\x8a\x82\x1b\x67\x7b\xa0\xba\xbf\x95\xd1\x98\xad\x1f\xae\x99\x9b\x95\xba\x1b\x98\xa1\x8a\x89" +"\x9b\x1f\x87\xa6\xa5\x89\x94\x1b\xb0\xa6\x9d\xb0\x9f\x1f\x99\xa4\x92\xa0\x9a\xc2\x08\x0e\x99\x70\x1d\x57\xf9\x5f\x8f\x0a\xf7\x11" +"\xf7\x9b\x4e\x1d\x5d\xf7\x1f\x15\xfb\x03\xf7\x26\x05\xa0\x7b\x77\x97\x78\x1b\x73\x76\x76\x74\x3d\x0a\xf7\x19\x33\x05\x0e\xfb\x65" +"\x7b\x1d\xf7\x6b\xf7\xbf\xd7\x1d\x76\x74\x3d\x0a\xf7\x18\x33\x05\x0e\x2a\x72\x1d\x89\xf8\x37\x8f\x0a\x99\xf7\x22\xf8\x02\x15\x33" +"\x06\x82\x6c\x05\xe3\x06\x49\xfb\x83\x7b\x56\x7f\x80\x57\x84\x19\x72\xf7\xbb\xa4\x07\x52\x8f\x7d\x94\xaa\x1a\x96\x8e\x9a\x93\xa5" +"\x1e\x8d\x91\x8c\x91\x8c\x8d\xc1\xf7\x5b\x18\xf6\x89\xa9\x78\x47\x1a\x7d\x8a\x80\x88\x79\x1e\xa7\x86\xd5\xf7\xa2\x6f\x8f\x5d\x2e" +"\x75\x80\xfb\x16\x8a\x19\xc8\xf7\x70\xb1\x0a\x75\x91\x71\x53\x1a\xa6\x86\xb6\xf7\x50\x05\xfc\xa9\x72\x06\xae\x86\xa0\x86\xc4\x0a" +"\x81\x1a\x7c\x87\x74\x85\x75\x1e\x0e\xfb\xac\xf7\xc3\xf7\x96\x15\xb5\xa5\x9e\xa9\xb4\x1a\xc7\x63\xb0\x4a\x51\x6a\x7a\x4a\x44\x1e" +"\x9b\x7a\x05\xac\xaf\xaa\x9a\xac\x1b\xad\x9f\x76\x67\x63\x7b\x74\x61\x74\x1f\xfb\x41\x06\x7f\x60\x05\xeb\x06\x3c\x67\x74\x72\x5a" +"\x1a\x46\xbe\x5d\xd8\xcc\xb7\xa3\xd3\xce\x1e\x7a\x9e\x05\x61\x61\x69\x78\x65\x1b\x68\x74\xa6\xb5\xb8\x9f\xa3\xcc\xac\x1f\xf7\x24" +"\x06\x97\xb6\x05\x0e\xf7\xa6\xf8\xdb\xf7\xce\x15\xd4\xfb\x74\x05\x8f\x82\x8d\x7c\x82\x1a\x74\x7a\x7f\x6c\x1e\x84\x75\x05\xd9\x06" +"\xe2\xb2\x6d\x47\x7f\x8a\x82\x87\x79\x1f\xa8\x06\xbc\xf7\x43\x05\x71\x06\x65\x8c\x7e\x94\x7e\xb3\x24\xf7\xc7\x18\xcc\xc4\xa9\xa5" +"\xb8\xb5\xf7\x05\xf2\x9a\x95\xc8\x92\x91\xa1\x18\xfb\x77\x20\x1d\x96\x06\x9e\x96\x7e\x77\x5b\x38\x38\xfb\x35\xfb\x03\x1f\x80\x06" +"\xc8\xf7\x65\x99\xbc\xa1\x9d\xb5\x8a\x19\x22\x1d\xfb\x98\x20\x1d\x9a\x06\xab\x9d\x7d\x71\x82\x8a\x88\x85\x76\x1f\x4e\xfb\x6a\x05" +"\x81\x06\x44\xee\x5c\xe8\xb5\x1a\xaa\xa4\xa1\xae\x1e\x92\x21\x1d\xfb\x87\x20\x1d\x97\x06\xc7\x89\xa9\x6e\xce\xfb\x0b\xa0\x66\x95" +"\x7a\x9e\x6d\xfb\xce\xfb\xdf\x18\x6e\x6c\x6b\x7a\x67\x86\x84\x75\x18\xf7\xa3\x06\x22\x1d\x71\x8c\x84\x8f\x9c\x1a\x95\x90\x94\x99" +"\x9a\x1e\xf7\x6f\xf7\x80\x05\x95\x06\x4a\xfb\x76\x7c\x5b\x79\x7a\x62\x8a\x19\x84\x75\x05\xf7\x9b\x21\x1d\x7b\x06\x66\x79\x98\xa6" +"\x94\x8d\x96\x93\xa6\x1f\xc6\xf7\x61\x05\x0e\xf7\x93\xf8\x50\x16\xa4\xe6\xbe\xe3\xe2\xf3\x08\x67\x4a\x7f\x63\x5b\x1a\x6b\x92\x6a" +"\x99\x71\x1e\x99\x70\x99\x83\xbb\x86\xa7\x88\x92\x88\x96\x7c\x08\x9b\x77\x93\x6f\x6b\x1a\x7f\x8a\x82\x87\x78\x1e\xa9\x06\xbb\xf7" +"\x48\x05\x71\x06\x71\x6a\x93\x95\x7c\x1f\x75\x9a\x7e\xad\xb8\x1a\xf7\x0f\xd0\xf7\x2e\xc3\x97\x95\x84\x81\x84\x88\x88\x7a\x80\x1e" +"\x7f\x83\x85\x81\x7c\x1a\x71\x9e\x79\xa5\xae\xa4\xa7\xb2\xb8\x65\xae\x5a\x44\x30\x39\xfb\x42\xfb\x0d\x1e\xd0\xf7\x85\x05\x25\x06" +"\x65\x22\x6c\x56\x33\xfb\x02\x08\xac\xcf\x94\xab\xb8\x1a\xdd\x60\xc3\x4c\x4f\x5c\x69\x35\x50\x1e\x9b\x7f\x05\xba\xad\xa9\xa1\xa9" +"\x1b\xad\xa2\x65\x53\xfb\x0a\x47\xfb\x35\x58\x80\x80\x95\x95\x90\x8e\x8f\x92\x90\x1f\x9b\x96\x90\x94\x9c\x1a\xa6\x79\x9d\x70\x69" +"\x71\x6d\x65\x5e\xb1\x67\xbb\xd7\xec\xe4\xf7\x3f\xf7\x04\x1e\x44\xfb\x8e\x05\x0e\xfb\x24\xf7\x5f\x7f\x15\x8a\x90\x8e\x8b\x8c\x1b" +"\xf7\x1f\xf7\x04\xf3\xf7\x13\xba\x7b\xb0\x6e\xa3\x1f\x78\x9b\x7a\x92\x5e\x95\xc1\x93\xa4\x94\xa8\xa0\x08\xb6\xaa\xa4\xbe\xc2\x1a" +"\xe0\x4a\xc3\x27\x70\x69\x86\x84\x72\x1e\x83\x70\x8b\x8b\x82\x1b\x7c\x84\x90\x9a\x88\x1f\x77\x06\x61\xfb\x43\x05\x9e\x06\xe8\xbe" +"\xbf\xb8\xc3\x1b\xb5\xa0\x6f\x52\x49\x74\x56\x62\x6f\x1f\x77\x6d\x70\x84\x53\x1b\x83\x66\x05\x9f\x06\xd6\xb0\x67\x43\xfb\x00\x47" +"\x38\x33\x4a\x59\xb3\xde\x61\x1f\x6e\x7e\xac\x2e\xc7\x55\xdf\x7c\x19\x52\x38\x3e\x0a\x92\x8c\x97\x1b\xa8\x9c\x7e\x74\x72\x75\x7b" +"\x69\x75\x7a\x8f\x98\x6f\x1f\x75\x6a\x05\x79\xb7\xab\x61\x1d\xfb\x9b\xf7\x48\x81\x15\xe7\x8e\xcc\xca\xe0\x1a\xc7\x6d\xaa\x47\x96" +"\x1e\xe7\x9a\xb1\xac\xcd\x1a\xcc\x5d\xac\x2f\x61\x6a\x84\x7d\x70\x1e\x67\x77\x75\x6b\x6c\x1a\x6e\x9e\x78\xa6\xa4\xa0\x9d\xa1\x94" +"\x88\x94\x84\x94\x1e\x7f\x99\x8a\x8d\x92\x1a\x9c\xab\x99\xaf\xb6\xa0\x78\x67\x67\x7b\x66\x73\x79\x1e\x80\x7d\x77\x85\x71\x1b\x83" +"\x86\x8b\x8d\x80\x1f\x81\x67\x05\x8c\x96\x90\x8b\x95\x1b\xb7\x99\x7e\x65\x41\x64\x54\x57\x65\x70\x9e\xbc\x6b\x1f\x76\x7e\xa4\x4c" +"\xb4\x67\xc6\x80\x19\x51\x36\x98\x7f\x05\x8e\x97\x92\x54\x1d\x57\x81\x85\x8a\x89\x81\x1f\x0e\xab\xf7\xd5\xf7\xf5\x15\xd8\xfb\x97" +"\x05\x8f\x7f\x8d\x81\x82\x1a\x73\x7a\x7a\x74\x1e\x7e\x20\x1d\xde\x06\xe2\xb2\x6d\x47\x80\x8a\x82\x87\x78\x1f\xa8\x06\xbc\xf7\x43" +"\x05\x71\x06\x65\x7e\x95\xb2\x7e\x1f\xfb\x00\xf7\xe0\xf7\x3d\xf7\x2d\xc3\xb7\xb4\x9f\xba\x8f\x19\x22\x1d\xfb\x75\x20\x1d\x97\x06" +"\x9b\x98\x7c\x79\x77\x7a\x6f\x70\x72\x1f\xfb\x53\xfb\x43\xc8\xf7\x6b\x98\xb8\x9e\x9d\xae\x8e\x19\xa1\x21\x1d\xfb\xb9\x52\x0a\x73" +"\x84\x8a\x85\x89\x84\x1f\xfb\x21\xfc\x7f\xa0\x1d\x0e\xfb\x21\xf7\xb6\xf8\x63\x15\xfb\x4d\x71\x84\x74\x05\x8c\x8f\x90\x8b\x8d\x1b" +"\x9f\x99\x7c\x76\x83\x8a\x81\xa5\x0a\xa1\x8a\x96\x78\x8f\x5a\x91\x28\xa1\x5c\xb9\x83\x9e\x86\x94\x87\x93\x84\x08\x9b\x7d\x95\x6f" +"\x6d\x1a\x83\x8b\x86\x89\x7f\x1e\xa8\x06\xb9\xf7\x38\x05\x71\x06\x62\x8c\x6f\xa4\x89\xaf\x7f\xef\x7b\xa3\x4f\x8e\xb3\x94\x9f\x9e" +"\xa8\xc7\x95\xa0\x18\xa6\x98\x96\x96\x97\x1b\x91\x8f\x88\x82\x8f\x1f\x78\x95\x92\x85\x9d\x1b\xa8\x9f\xa3\xae\xaf\x76\x9f\x66\x5e" +"\x7b\x7a\xfb\x00\x51\x1f\x4c\x6a\x6b\x73\x57\x1b\x0e\xab\xf7\xf9\xf8\x1b\x15\x69\x6c\xc8\xf7\x6b\x98\xb7\x9e\x9d\xae\x8e\x19\xa1" +"\x21\x1d\xfb\xb9\x52\x0a\x73\x84\x8a\x85\x89\x85\x1f\xfb\x21\xfc\x80\xa0\x1d\xd9\xf7\xa2\x98\x5e\x53\xfb\x5f\x05\xbd\x06\xab\xf7" +"\x09\xb1\xfb\x14\x05\x8f\x7f\x8d\x81\x82\x1a\x73\x7a\x7a\x74\x1e\x7e\x20\x1d\xf7\x96\x4f\x0a\x21\xf7\xdd\xf7\x3d\xf7\x2c\xc3\xb8" +"\xb4\x9e\xba\x8f\x19\x22\x1d\xfb\x75\x20\x1d\x97\x06\x9b\x98\x7c\x7a\x76\x7a\x6f\x70\x72\x1f\x32\x3a\xad\xf7\x0e\x05\x59\x06\x0e" +"\xfb\x21\xf7\x8f\xf7\x8c\x15\x8a\x85\x86\x8b\x80\x1b\xc8\xf7\x6c\xfb\x4d\xf7\x00\x1d\x83\x8a\x82\xa5\x0a\x8f\x8f\x8a\x89\x8f\x1f" +"\x61\xfb\x2e\x05\xbd\x06\x9d\xcd\x05\x2c\x95\xa6\x62\xc1\x1b\xb8\xa7\xa5\xee\xc5\x1f\x78\x99\x05\x5d\x73\x78\x78\x77\x1b\x7b\x82" +"\x98\xa9\x87\x1f\x80\xea\x7b\xa5\x57\x90\x89\x8c\x18\x8c\x8d\xad\x94\x9f\xa0\xa6\xc3\x19\xbe\xa4\x91\x93\x9a\x1b\x91\x8f\x88\x82" +"\x8f\x1f\x78\x95\x93\x85\x9c\x1b\xa8\x9f\xa3\xae\xaf\x76\x9f\x65\x5f\x7b\x7a\xfb\x00\x51\x1f\x7b\x6d\x84\x82\x7e\x7c\xab\xf7\x0c" +"\x18\x59\x06\x0e\xe3\xf7\xf9\xf9\x05\x15\xfb\x23\xfc\xad\x2f\x1d\x82\x20\x1d\xf7\xa9\x21\x1d\x6c\x06\x71\x7a\x9c\xa4\x91\x8c\x91" +"\x8d\x92\x1f\xd3\xf7\xa2\xdc\xfb\x97\x05\x8f\x7f\x8d\x80\x82\x1a\x73\x7b\x7b\x74\x49\x0a\xfb\x04\xf7\xdc\xf7\x39\xf7\x2d\xc3\xb8" +"\xb2\x9e\xb9\x8f\x19\x91\x3b\x0a\x9b\x98\x7c\x79\x76\x7b\x6f\x72\x73\x1f\xfb\x4f\xfb\x43\xc4\xf7\x6b\x98\xb8\x9c\x32\x0a\xfb\xfb" +"\x06\x60\xfb\x36\x05\x9e\x06\xb4\xd6\xb7\xb0\xc9\x95\xa7\x8d\x18\x0e\xfb\x26\xf7\xac\xf8\x5e\x15\xfb\x84\x8a\x5c\xfb\x28\x05\x9f" +"\x06\xa8\xcd\xb5\xac\xce\x92\xfb\x01\xfc\x33\x18\xf7\x09\x06\xc3\xf7\x6b\x05\x94\x06\xa1\x8a\x96\x79\x90\x5a\x91\x51\x8e\x7b\x94" +"\x74\xcb\x1d\x5e\x74\x79\x79\x77\x1b\x7b\x82\x98\xa9\x87\x1f\x7e\xec\x79\xa4\x50\x8e\xb7\x95\x9c\x9e\xaf\xd9\x08\xa6\x98\x94\x96" +"\x97\x1b\x92\x8f\x87\x83\x8f\x1f\x77\x94\x93\x86\x9c\x1b\xa8\x9e\xa2\xae\xaf\x76\xa0\x65\x5f\x7d\x7c\xfb\x01\x52\x1f\x4c\x6b\x6c" +"\x73\x57\x1b\xac\xf7\x0e\x05\x0e\xf7\x19\xf7\xc6\xf7\xd5\x15\xf7\x7c\x06\x48\xfb\x7d\xc3\x0a\x66\x20\x1d\xf7\x10\x06\xe2\xb1\x6d" +"\x48\x7e\x8a\x83\x87\x78\x1f\xa9\x06\xbb\xf7\x43\x05\x71\x06\x69\x75\x98\x9f\x8c\x1f\x8f\x8c\x8f\x8c\x8f\x1e\xf7\x21\xf8\x7f\x98" +"\xb8\x9d\x9d\xae\x8e\x19\x98\x21\x1d\xfb\xab\x20\x1d\xa5\x06\xa5\x9c\x7a\x73\x83\x8a\x86\x89\x84\x1f\x4d\xfb\x6d\x05\xfb\x7c\x06" +"\xc8\xf7\x68\x98\xb8\x9d\x9d\xae\x8e\x19\xb2\x21\x1d\xfb\xc0\x96\x0a\x79\x79\x3c\x0a\xf7\xa8\x21\x1d\x6f\xb6\x0a\x0e\x2f\xf7\x8c" +"\xf7\x97\x15\xc4\xf7\x60\xfb\x4c\xf7\x00\x1d\x84\x8a\x81\xf2\x1d\xca\xf7\x76\x05\xf7\x01\x06\x67\xfb\x14\x05\x87\x7d\x89\x7a\x7c" +"\x1a\x63\x9e\x79\xb9\x87\x1e\xa1\x89\x9a\x86\x93\x84\x08\x97\x80\x93\x74\x72\x1a\x82\x8a\x84\x89\x7d\x1e\xa8\x06\xb6\xf7\x34\x05" +"\x71\x06\x6d\x74\x97\x9a\x91\x8d\x94\x8d\x94\x1f\xee\xf7\xee\x05\xfb\x0b\x06\x56\xfb\x4d\x05\x0e\x99\xf7\xc1\x79\x15\xf7\x06\xea" +"\xbf\xec\xcd\x1f\x6d\xa1\x59\x50\x6f\x74\x61\x79\x19\x6e\x0a\xfb\x1f\xdd\x2e\xf7\x25\x73\x1f\x57\x3e\x98\x7f\x05\x8e\x96\x93\x54" +"\x1d\x56\x81\x85\x8a\x89\x82\x1f\x0e\xfb\x65\xf7\x20\x7e\x15\x94\x06\xb6\xb7\x9b\xa8\xac\x1f\xa5\xa1\x9b\x9e\xae\xbd\x6f\x9d\x18" +"\x48\x5b\x6c\x74\x60\x1b\x5f\x6e\xaf\xc1\xc9\xa5\xe6\xaf\xcb\x1f\xba\xa6\xa8\xa3\xa9\x1b\x97\x95\x84\x81\x86\x89\x86\x85\x82\x1f" +"\x82\x7c\x87\x7f\x7f\x1a\x6d\xa4\x75\xac\xe3\x1d\xfb\x37\xfb\x35\x44\xb2\x54\xcd\x78\x1e\x51\x36\x3e\x0a\x92\x8c\x96\x45\x1d\x61" +"\xf7\x7e\xf7\xca\x15\x4f\xfb\x6a\xc3\x1d\x97\x8c\x92\x92\xa4\x1e\xbf\xf7\x51\x9c\x1d\xc4\x83\xa3\x7a\xc1\x19\x74\xcc\x81\xae\x9f" +"\x0a\x08\x0e\xfb\x61\xf7\x81\xf7\x30\x15\x7f\xf7\x39\x88\x0a\x55\xfb\x53\x7f\x61\x7f\x81\x5e\x84\x19\x85\x74\x05\xf7\x7f\x06\x92" +"\xa2\x05\x71\x8f\x80\x94\x9d\x1a\x92\x8c\x94\x8e\x94\x1e\xc5\xf7\x63\x84\x0a\x0e\x61\xf7\xfa\xf7\x7c\x15\x9f\xd4\x9c\x1d\xc7\x81" +"\xa9\x7c\xb8\x19\x74\xcb\x81\xaf\x9f\x0a\xe3\xfb\x9d\x18\x75\x3d\x05\x2f\x06\x7f\x61\x05\xe7\x06\x71\x2d\xc3\x1d\x98\x8c\x91\x92" +"\xa4\x1e\x9f\xd5\x05\xef\x06\x96\xb5\x05\x0e\xfb\x61\xf7\x6f\x90\x15\xa6\xea\x84\x0a\x2c\xfb\x39\x7f\xf7\x3a\x88\x0a\x74\x39\x05" +"\x3e\x06\x7d\x59\x05\xd8\x06\x7a\x4f\x7e\x62\x81\x81\x5d\x84\x19\x85\x74\x05\xf7\x7f\x06\x92\xa2\x05\x71\x8f\x80\x94\x9d\x1a\x92" +"\x8c\x94\x8e\x93\x1e\x9c\xca\x05\xdd\x06\x99\xbd\x05\x0e\xa0\xf7\xe1\xf7\x9b\x15\xc0\xfb\x34\x05\x8f\x81\x8c\x82\x7f\x1a\x6e\x76" +"\x76\x6f\x1e\x7e\x20\x1d\xea\x06\xe1\xb3\x6c\x48\x80\x8a\x82\x87\x77\x1f\xa8\x06\xbc\xf7\x44\x05\x71\x06\x65\x7e\x95\xb2\x7e\x1f" +"\x2f\xf7\xb1\xf7\x0e\xf7\x17\xea\xf2\xb2\xaa\xab\x8e\x19\x22\x1d\xfb\x56\x20\x1d\x95\x06\xa1\x99\x7e\x75\x77\x83\x7c\x71\x6f\x1f" +"\xfb\x0c\xfb\x16\x60\xf7\x1e\x05\x81\xa7\x8a\x92\x95\x1a\xa5\x9b\x9e\xa0\x1e\x98\x21\x1d\xfb\x9e\x4b\x0a\xde\xfb\x92\x18\xfb\x37" +"\xfb\x43\x52\x4c\x5f\x69\x66\x82\x33\x0a\xf7\x63\x21\x1d\x7e\x06\x6b\x79\x97\xa2\x9a\x96\x9e\xa2\xa5\x1f\x0e\xfb\x28\xf8\x38\xbf" +"\x15\x71\x06\x54\x8d\x8a\x8d\x5f\xf7\x45\x84\xa8\x18\xea\xbe\x8f\x8f\xa5\x1b\x93\x92\x8a\x87\x97\x1f\x87\x99\x91\x8a\x95\x1b\xa7" +"\xa2\xa3\xa8\xa9\x71\xa1\x69\x69\x68\x70\x5e\x72\x1f\x5c\x39\x81\xbb\x88\x98\x6c\xea\x19\xfb\x31\x6b\x84\x75\x05\x8d\x95\x93\x8c" +"\x91\x1b\xa7\xa1\x6f\x5a\x97\x1f\xac\xfb\x26\x60\x43\x05\x74\x7d\x7f\x81\x7e\x1b\x83\x86\x8d\x92\x7f\x1f\x92\x7d\x83\x8e\x7f\x1b" +"\x6c\x74\x74\x6b\x6a\xa0\x77\xad\xae\xb7\xab\xb8\xa7\x1f\xba\xd8\xa3\xfb\x03\x9f\x69\xb9\x85\x19\xa4\x86\x90\x8a\x91\x87\x08\x9a" +"\x83\x95\x73\x70\x1a\x82\x8a\x85\x88\x7d\x1e\xa9\x06\x0e\xea\xf9\x9d\xf9\x14\x15\x90\xa1\x05\xfb\xa2\xb7\x0a\x87\x8a\x83\x89\x85" +"\x1e\x4c\xfb\x81\x05\x76\x5a\x6a\x83\x63\x1b\x5a\x70\x9f\xaf\x9b\x8e\x9b\x97\xb6\x1f\xad\xf7\x16\x97\xb8\x9d\x47\x0a\x63\xfb\x2d" +"\x05\x84\x71\x88\x7b\x7b\x1a\x46\xc1\x64\xeb\xc2\xb3\x93\xa5\xd4\x1e\x54\xfb\x62\x7f\x4e\x0a\xe6\x06\xde\xb3\x6b\x49\x80\x8a\x82" +"\x87\x77\x1f\xa9\x06\xb6\xf7\x36\x05\x71\x06\x6c\x75\x97\x9c\x90\x8c\x90\x8c\x91\x1f\xf7\x1c\xf8\x8d\x97\xb8\x9d\x9d\xae\x8e\x19" +"\x0e\xfb\x14\xf8\x78\xef\x15\x79\x95\x05\x67\x77\x7a\x79\x7b\x1b\x84\x87\x90\x94\x91\x8c\x90\x8f\x9a\x1f\xe7\xf7\xf0\x05\xfb\x0a" +"\x06\x7e\x59\x05\x37\x74\x51\x3d\xe5\x1d\xb6\xf7\x3a\x8c\x1d\x97\x94\x8d\x8f\x97\x1e\x93\x76\x8f\x75\x7b\x1a\x84\x8a\x84\x89\x7e" +"\x1e\xa8\x06\xb8\xf7\x33\x05\x0e\xf2\xf8\x32\xf7\xa1\x15\xa8\x91\x9c\x90\xb5\x9a\x4f\xfb\x63\x18\x7e\x5e\x79\x79\x68\x88\x08\xac" +"\x0a\x7b\x9b\xa4\x1a\x93\x8c\x8f\x8c\x92\x1e\xf7\x21\xf8\x80\x99\xb7\x9d\x32\x0a\xfb\xa5\x06\x84\x75\x05\xa1\x06\xa5\x9c\x7a\x73" +"\x84\x8a\x85\x89\x85\x1f\x47\xfb\x82\x6a\x7d\x71\x83\x6f\x86\x19\xcb\xf7\x7b\x05\x4c\x06\x4a\xfb\x7b\x05\x69\x93\x7c\x9b\xa8\x1a" +"\x9c\x8d\x92\x9a\xc0\x1e\xb0\xf7\x16\x98\xb7\x9d\x9d\xae\x8e\x19\x98\x21\x1d\xfb\xa6\x20\x1d\xa1\x06\xa5\x9c\x7b\x72\x86\x8a\x83" +"\x89\x85\x1f\x5f\xfb\x2d\x05\x83\x6e\x88\x7c\x7a\x1a\x47\xc0\x65\xec\x1e\x9d\x06\x62\xfb\x26\x05\xca\x06\x0e\xfb\x0f\xf7\x96\xf7" +"\x7f\x15\x87\x06\x7e\x86\x92\x9b\x98\x8b\x8c\x92\xa3\x1f\xb9\xf7\x3b\xfb\x4c\x71\x85\x74\x05\x96\x06\x9f\x99\x7d\x76\x83\x8a\x81" +"\x88\x83\x1f\x74\x38\x05\x82\x6e\x89\x7d\x7b\x1a\x63\xa5\x70\xb1\xa3\xa4\x93\x98\x9f\x1e\x75\x38\x05\xb8\x06\xb0\xf7\x1b\x95\x96" +"\x96\x98\xa2\xa8\x19\x5a\xfb\x41\x05\x85\x74\x89\x80\x7d\x1a\x68\xa6\x73\xb2\xbc\xb4\xab\xda\xbb\x1e\x7a\x96\x05\x66\x76\x79\x79" +"\x7c\x1b\x82\x88\x8f\x94\x93\x8b\x8c\x91\x9d\x1f\xee\xf7\xef\x05\xfb\x0c\x06\x7d\x5d\x7b\x59\x7a\x69\x6c\x63\x19\xa6\xef\x05\x5d" +"\x06\x0e\xa2\xf7\xd5\xf8\xd2\x15\x99\xb9\x9c\x9c\xae\x8e\x08\x93\x06\x92\xa1\x05\xfb\xa8\x06\x84\x75\x05\xa8\x06\xa5\x9c\x7a\x72" +"\x86\x8a\x84\x89\x84\x1f\xfb\x21\xfc\x7f\x7e\x5e\x78\x79\x68\x88\x19\x7f\x06\x85\xbd\x0a\x7a\x9b\xa3\x1a\x91\x8c\x92\x8d\x92\x1e" +"\xcf\xf7\x81\x05\xa0\xbd\xad\x93\xb3\x1b\xbc\xa6\x78\x67\x7a\x89\x83\x7d\x58\x1f\x65\xfb\x16\xc3\x0a\x7f\x06\x84\xbd\x0a\x7b\x9b" +"\xa3\x1a\x94\x8c\x8f\x8c\x92\x1e\xb7\xf7\x2d\x05\x93\xa5\x8e\x9c\x9c\x1a\xcf\x56\xb1\x2b\x53\x5e\x82\x72\x45\x1e\x0e\x2a\xf8\x70" +"\xf7\x22\x15\x4c\x5f\x79\x77\x5a\x0a\xfb\x9c\x7e\x1d\xea\xf8\x46\xd7\x15\x83\x61\x7d\x80\x58\x88\x08\x71\x06\x65\xfb\x2f\x05\xa8" +"\x06\xa2\xd9\xc3\xbc\xd3\x93\x08\xf7\x3d\x06\x90\x9f\x05\x6b\x06\x68\x78\x98\xa3\x93\x8e\x9a\x8f\x9b\x1f\xf7\x14\xf8\x72\x97\xb8" +"\x9d\x9d\xae\x8e\x19\x97\x06\x68\x0a\xc1\x64\xeb\xc2\xb3\x93\xa5\xd4\x1e\x0e\xfb\x2e\xf8\x5e\xf7\x12\x15\x5e\x77\x79\x71\x7f\x1b" +"\x87\x88\x8f\x90\x90\x8d\x96\x8e\x97\x1f\xe7\xf7\xf4\x05\xfb\x0f\x06\x7d\x5f\x77\x53\x7f\x73\x71\x64\x19\x5d\x6d\x7e\x7f\x7a\x1b" +"\x83\x86\x91\x96\x92\x8d\x96\x8d\x95\x1f\xbe\xf7\x52\xfb\x49\x48\x1d\x76\x83\x8a\x84\x88\x81\x1f\x74\x3a\x05\x86\x7a\x87\x6d\x7b" +"\x1a\x66\xa7\x6f\xb0\xb9\xab\xa5\xf1\xd9\x1e\x5b\xfb\x4e\x05\x88\x81\x8a\x80\x7e\x1a\x87\x8b\x86\x8c\x83\x1e\x74\x69\x05\x78\x6b" +"\x85\x7b\x76\x1a\x80\x8d\x83\x90\x7e\xd4\x1d\xaa\xb9\x0a\x98\x87\x95\x80\x9e\x1e\x80\x9d\x87\x94\x93\x1a\x90\x8c\x90\x8e\x92\x1e" +"\x80\x92\x9b\x84\xa0\x1b\xc4\xb6\xb0\xe6\xba\x1f\x0e\xd0\xc9\xf7\xba\x15\x84\x67\x89\x78\x77\x1a\x6e\x90\x6d\x93\x70\x1e\x29\xaa" +"\xd7\x56\xf7\x01\x1b\xf7\x83\xf7\x5b\xf7\x5e\xf7\x86\xf7\x27\x20\xf2\xfb\x2d\x3b\x3a\x6d\x53\x47\x1f\x5c\x66\x70\x66\x5d\x38\xf7" +"\x04\x81\x18\xad\xd3\xa8\xbd\xa4\xa6\x08\xb8\xb4\xbb\xa3\xbb\x1b\xa5\xa5\x82\x7b\x9e\x1f\xb1\x6b\x9c\x60\x47\x1a\x50\x81\x49\x7a" +"\x55\x1e\x7c\x61\x15\x7b\x5b\x70\x57\x6c\x60\x08\x4d\x5f\x57\x6d\x4a\x1b\x46\x6c\xb8\xed\xa4\x8e\xac\x90\xad\x1f\x0e\x99\xf9\x02" +"\xa4\x15\x49\x90\x87\x8f\x7e\xd7\x28\xf8\xca\x18\x73\x06\xfc\x01\xfc\xda\x6b\x5a\x7c\x7f\x68\x83\x19\x72\xf7\x56\xa4\x07\x5d\x78" +"\x95\xa4\x98\x8f\x99\x96\x9d\x1f\xc5\xf0\x05\xf7\x69\x06\x95\x41\x90\x62\x83\x1a\x61\x7d\x80\x4b\x86\x1e\x72\xf7\xc1\x07\xfc\x41" +"\xf7\x8a\x15\xf7\x25\xf7\x84\xb2\xfb\x84\x05\xf7\x56\xf9\x14\x15\x49\x6b\x6a\x74\x4a\x1b\x4b\x6a\xa8\xc7\x86\x1f\x61\x06\xfb\x05" +"\x8a\xb4\x5c\xeb\x1b\xeb\xca\xc4\xf2\x9c\x1f\x0e\xfb\x2e\xf8\x63\xf7\x12\x15\x54\x63\x7c\x7c\x7c\x1b\x83\x87\x90\x95\xa5\x94\xb6" +"\xa2\xd9\x1f\xd0\xf7\x7d\xfb\x02\x84\x7a\x51\x05\xbd\x82\x75\xa0\x60\x1b\xfb\x0d\xfb\x27\xfb\x51\xfb\x2f\x40\xb6\x58\xcb\xc8\xb8" +"\xaf\xea\xc3\x1f\x81\x64\x88\x7e\x7d\x1a\x66\xa8\x6e\xb0\xba\xb9\xb2\xe1\xc3\x1e\xfb\x51\xf7\xc4\x15\xa1\x89\x9a\x79\x70\x1a\x50" +"\x6b\xfb\x02\x65\x47\x1e\x5b\x71\x6e\x71\x6f\x1b\x72\x78\xa2\xaa\xbf\xaa\xed\xb4\xd4\x1f\xa8\xbf\xac\xaa\xa5\x89\x08\xf7\x16\xf7" +"\x8c\x15\x4a\x6c\x68\x73\x4b\x1b\x4b\x6b\xa7\xc8\x85\x1f\x61\x06\x8d\x48\x8b\x8b\x98\x6f\x08\x60\x9f\xb3\x75\xc9\x1b\xea\xca\xc4" +"\xf2\x9c\x1f\x0e\xd0\xf8\x5c\xf9\x3d\x15\x42\x41\x71\x5a\x47\x1f\xfb\x0d\x33\x35\xfb\x35\xfb\x1d\x1a\xfb\x23\xea\x2c\xf7\x22\xd9" +"\xd7\xa5\xbc\xce\x1e\xf7\x10\xe6\xdd\xf7\x32\xf7\x25\x1a\xf7\x18\x24\xed\xfb\x1f\x1e\xd1\xfb\xdf\x15\xfb\xc9\x06\xf7\x54\xc3\xde" +"\xf4\xea\x1b\xca\xb3\x5d\x42\x58\x89\x7d\x71\xfb\x02\x1f\x7b\x52\x15\xfb\x4a\x51\x3a\x29\x30\x1b\x4c\x64\xb9\xd5\xb8\x92\xbb\x9c" +"\xce\x1f\x0e\xa1\x1d\xfb\x1e\xfb\x63\x15\xf7\x07\xaa\xb9\xca\xbf\x1b\xa8\x9d\x75\x67\x69\x86\x69\x80\x57\x1f\x80\x60\x15\xfb\x17" +"\x67\x60\x4a\x58\x1b\x6d\x78\xa2\xb2\xb0\x92\xb9\x97\xbe\x1f\x0e\x99\x70\x1d\x8d\xfa\x0a\x15\x49\x6c\x69\x74\x4a\x1b\x4c\x6b\xa8" +"\xc7\xc8\x1d\xfb\x65\x7b\x1d\xf7\xba\xf8\x5f\x15\x4a\x6d\x68\x73\x4b\x1b\x4b\x6b\xa7\xc8\xc8\x1d\xf9\x6e\xf9\x82\x15\xd0\xfc\x85" +"\x46\x07\x0e\xf7\xef\xad\x89\x15\x92\x06\xd5\x06\xf7\x44\xcd\x97\xb7\xcc\x1f\xf1\xd0\xd5\xf7\x36\xf7\x2f\x1a\xea\x6d\xde\x5b\xb1" +"\x1e\xa7\x67\x5a\x98\x4a\x1b\xfb\x2b\x20\x56\x2e\x69\x1f\x7d\x66\x87\x73\x8a\x49\xd9\xb1\x18\x94\x07\x8a\xea\xb0\xb7\xe6\x99\x3d" +"\xfc\x3e\x18\x7a\x40\x72\x5c\x6d\x81\x74\x8c\x18\xe5\x16\x8f\x8e\xc2\xb9\x9e\xb6\xa1\xf7\x13\x19\xc7\xf7\xec\x05\x92\x06\x8e\x06" +"\xb4\x96\x8a\x87\x98\x1f\xc4\x76\xa9\x49\x26\x1a\xfb\x66\x2c\xfb\x29\xfb\x1e\x84\x1e\xf7\x8d\xfb\x99\x15\xda\x06\xb1\xf7\x62\x05" +"\x7b\xb2\x8e\x8a\xa1\x1b\xf7\x14\xf7\x01\xf7\x39\xf7\x53\xf7\x00\x5e\xc3\x36\x57\x5e\x75\x62\x6a\x1f\x66\x5d\x76\x50\x73\xfb\x18" +"\x08\xea\xe6\x15\xe6\x9b\xb0\xc0\xb9\x1b\xb4\xa1\x61\x3c\xfb\x2a\x52\xfb\x0b\x43\x6e\x75\x96\xa5\x77\x1f\x0e\x61\xf7\x97\x16\x7c" +"\xf7\x2f\x05\x49\xb7\x62\xe4\xea\x1a\xc0\x98\xc6\xa2\xbc\x1e\xc9\xa9\xbc\xaf\xc3\x1b\xc3\xbc\x67\x4d\xa9\x1f\xa2\x5a\x98\x50\x56" +"\x1a\x2c\x61\x32\x4a\x5f\x1e\x7c\xfb\x2f\x05\xf7\x88\xf7\x2d\x77\x06\x5e\x84\x7b\x79\x68\x1b\xfb\x0d\x06\x8d\xb1\x05\xf6\xb8\xc9" +"\xe8\xf7\x08\x1a\xbb\x7f\xbe\x74\xba\x1e\xef\x5b\x36\xc5\x2a\x1b\x2a\x36\x51\x27\x5b\x1f\x74\x5c\x7f\x58\x5b\x1a\xfb\x08\xc9\x2e" +"\xf6\x5e\x1e\x8e\x65\x05\xfb\x0e\x06\x68\x7b\x9d\xb8\x84\x1f\x77\xfb\x2d\x06\x0e\xfc\x7a\xcf\x1d\xfc\x27\xf7\x12\xf8\x29\x2b\x0a" +"\xf7\xef\xf8\xa9\xf8\x95\x15\x49\x06\xfb\x74\xfc\x95\x05\xdb\x06\xf7\x45\xf8\x2d\xf7\x45\xfc\x2d\x05\xdb\x06\x0e\xf7\xef\xf8\xa9" +"\x16\xf7\x74\xf8\x95\x05\x3b\x06\xfb\x45\xfc\x2d\xfb\x45\xf8\x2d\x05\x3b\x06\xf7\x74\xfc\x95\x05\x0e\xf7\xef\xf8\x8c\xf9\x60\x15" +"\xfb\x60\xfb\x34\xfb\x32\xfb\x5f\xfb\x5b\xf7\x34\xfb\x33\xf7\x5d\xf7\x5b\xf7\x34\xf7\x34\xf7\x5c\xf7\x59\xfb\x34\xf7\x36\xfb\x58" +"\x1f\xa4\x52\x15\xf7\x23\x7e\xf7\x06\xfb\x06\x99\xfb\x25\x08\xfb\xa3\x06\xf7\xa4\x52\x15\x82\xfb\x22\xfb\x0d\xfb\x0f\xfb\x22\x80" +"\x08\xf7\xa8\x07\x53\xfb\xa8\x15\xfb\x27\x99\xfb\x05\xf7\x05\x7d\xf7\x29\x08\xf7\xa6\x06\xfb\xa6\xc4\x15\x99\xf7\x24\xf7\x07\xf7" +"\x06\xf7\x25\x99\x08\xfb\xa4\x07\x0e\xd0\xf7\x11\xf7\x10\x15\xf8\x67\xf8\x67\xfc\x67\x06\xb3\xfc\x3f\x15\xf8\x17\xf8\x17\xfc\x17" +"\x07\x0e\xf7\xef\xf9\x64\xf8\xc3\x15\x4f\xfb\x8d\x06\x26\x86\x62\x7c\x6e\x1e\x5b\x72\x53\x6b\x50\x1b\x57\x58\xa4\xb3\x6f\x1f\x74" +"\xac\x85\xb4\xf7\x04\x1a\xf7\x8d\x4f\xfb\x8a\x07\xfb\x1d\x90\x69\xa3\x63\x1e\x4a\xb1\xd1\x66\xde\x1b\xd7\xcb\xaa\xc3\xb4\x1f\xac" +"\xb8\x91\xab\xf7\x29\x1a\x0e\x4f\xf8\x27\xf8\x1c\x15\xfb\x69\x06\x41\xf7\x4d\x05\x2d\x06\xf7\x7d\xfc\xd5\x05\xde\x06\xf7\x7d\xf8" +"\xd5\x05\x2d\x06\x22\xfb\x9d\x15\x3f\xfb\x48\x40\xf7\x48\x05\x0e\x2a\xf8\x06\xf8\x55\x15\x6b\x0a\x54\x85\x71\x6e\x1a\x62\xa0\x78" +"\xb8\x97\x92\x8c\x8f\x9b\x1e\x6b\x60\x83\x79\x70\x31\x0a\xb4\xb1\x94\xa1\xaa\xb3\x1f\x9d\xa1\x92\x96\x9b\xa7\x76\x98\x18\x55\x68" +"\x77\x77\x7a\x1b\x83\x85\x92\x95\x97\x96\xbb\x99\xb8\x1f\xd9\xf7\xa0\x05\x0e\xfb\x37\x3c\x1d\x0e\xfb\x37\x3c\x1d\xf7\x67\xf7\xee" +"\x15\xa4\x0a\xf7\x3a\x9e\x0a\xfb\x37\x3c\x1d\xf7\x93\xf7\xb7\x15\xa8\x06\x8f\x91\x8f\x92\x8f\x92\x8f\x93\x19\xb1\xc7\x8d\x8f\x9e" +"\x1a\x9e\x7a\x98\x73\x7c\x7c\x85\x82\x83\x1e\x83\x82\x8b\x8a\x89\x65\x8f\x5c\x18\x71\x07\x3c\x86\x15\x9a\x0a\xaa\x72\xa5\x6e\x1f" +"\xf7\x4d\x16\x6d\x73\x73\x6c\x6b\xa4\x71\xa9\xa8\xa3\xa4\xaa\xa9\x72\xa6\x6e\x1f\x0e\xfb\x37\x3c\x1d\xf7\x85\xf7\x6d\x15\xbe\x06" +"\x8f\x94\x9b\xac\x05\xbc\xe6\x8f\x94\xa5\x1a\xa5\x75\x9e\x6b\x73\x74\x80\x7a\x82\x1e\x82\x7d\x8a\x7c\x89\x21\x89\x64\x18\x0e\x2a" +"\x26\x0a\xfb\x26\xf9\x0e\x30\x0a\x2a\xf8\x7a\xf9\x23\x15\x6c\x7c\x7e\x80\x6d\x1d\x6b\x93\x72\x1b\x52\x5f\x5e\x42\x7d\x1f\xb3\x06" +"\xab\x98\x97\x96\xa2\x1b\x96\x99\x88\x86\x98\x1f\xc6\x74\x05\x80\xa6\x95\x89\x9e\x1b\xc8\xad\xae\xdf\xa2\x1f\x54\xfc\x9e\x5d\x0a" +"\x0e\x99\x32\x1d\xf8\x0c\xdd\x29\x0a\x99\x32\x1d\xf8\x66\xdd\x23\x1d\x99\x32\x1d\xf7\x90\xf7\x71\x15\x68\x6e\x6d\x67\x36\x1d\x99" +"\x32\x1d\xf8\x06\xdd\x8e\x0a\xfb\x60\xf7\xa7\xf9\x69\x15\x40\x71\x64\x6c\x6a\x1a\x74\x9e\x7a\xc0\x73\x1e\x76\x7e\x80\x83\x81\x81" +"\x08\x71\x70\x79\x67\x70\x1a\x6a\x9b\x72\xb2\x71\x1e\x68\x79\x7b\x81\x72\x74\x08\x4d\x52\x6a\x49\x48\x1a\x3b\xc3\x58\xe2\x9a\x9f" +"\x8d\x8f\xa2\x1e\x8e\x99\x98\x8c\x93\x1b\xa3\x99\x7d\x73\x68\x6d\x6d\x68\x7d\x7c\x8f\x92\x7f\x1f\x9c\x6d\x83\x8e\x79\x1b\x64\x72" +"\x73\x66\x67\xa6\x76\xb7\xf5\xf6\xf2\xf1\xbc\x71\xa6\x5d\x80\x79\x89\x89\x7a\x1f\x89\x7b\x7c\x89\x82\x1b\x58\x78\x9d\xba\xd1\xac" +"\xd1\xc6\xc2\x1f\x71\xbe\xa4\x83\xaf\x1b\xc6\xae\xa0\xaf\xaa\x73\x9d\x62\x61\x6a\x82\x73\x56\x1f\x82\xa5\x89\x98\x9c\x1a\xb2\x95" +"\xae\xa1\xb5\x1e\x76\xbf\xa8\x85\xb4\x1b\xd2\xba\xa5\xb2\xaa\x70\x9d\x5c\x50\x62\x7e\x61\x45\x1f\x74\x9a\x80\x9d\x9f\x1a\xa2\x9e" +"\x9f\xb3\x9d\x1e\x0e\xfb\x65\x31\x1d\xf7\xe8\xd9\x23\x1d\xfb\x65\x31\x1d\xf7\x7c\xd9\x37\x1d\xfb\x9c\x34\x1d\xf7\x34\xce\x15\x2b" +"\x1d\x38\x1d\xfb\x9c\x34\x1d\xf7\x5b\xf7\x62\x2a\x1d\xfb\x68\xf7\xb0\xf9\x68\x15\x41\x6f\x5d\x66\x6b\x1a\x71\xa6\x6f\xba\x74\x1e" +"\xfb\x09\x20\x3e\xfb\x3a\xfb\x27\x1a\x2d\xb3\x61\xe2\x9b\x97\x8c\x8d\x93\x1e\x91\xa8\x90\x8c\x98\x1b\xa6\x99\x7e\x72\x68\x6d\x6d" +"\x68\x7d\x7c\x8f\x92\x7f\x1f\x9c\x6d\x83\x8e\x79\x1b\x64\x72\x73\x66\x67\xa6\x76\xb7\xf5\xf6\xf2\xf1\xbc\x71\xa6\x5c\x7f\x7a\x89" +"\x89\x7c\x1f\x89\x7d\x7e\x89\x85\x1b\x6b\x79\x9e\xac\xc4\x9e\xf7\x03\x9f\xcd\x1f\x9e\xc6\xa4\xc1\xac\xc1\x08\x7f\xac\x99\x88\xb1" +"\x1b\xe2\xc6\xaa\xb7\xa9\x73\x9e\x65\x54\x55\x74\x54\x45\x1f\x74\xa1\x82\x9c\xa2\x1a\xa8\x98\x9a\xbc\xa8\x1e\x0e\x79\x9d\xf8\x55" +"\x98\xf7\x63\x9b\x06\xac\x0a\xf7\x0a\x0b\xa2\x91\x8f\x8f\x8f\x8f\x8f\x92\x92\x8f\x90\x90\x0c\x0c\xf8\x88\x14\xf9\x21\x15\xaf\x13" +"\x00\xa8\x02\x00\x01\x00\x0a\x00\x7d\x00\xa3\x00\xc3\x00\xca\x00\xd5\x00\xe1\x00\xe6\x00\xeb\x00\xee\x00\xfb\x00\xff\x01\x6f\x01" +"\xc7\x02\x06\x02\x2a\x02\x51\x02\x57\x02\x5f\x02\x64\x02\x6c\x02\x81\x02\xe4\x03\x29\x03\x38\x03\x44\x03\x51\x03\x5a\x03\x61\x03" +"\x68\x03\x6e\x04\x2b\x04\x56\x04\x5b\x04\x6e\x04\x7b\x04\x9a\x04\xa9\x04\xb2\x04\xc9\x04\xd0\x04\xd9\x04\xe3\x04\xee\x04\xfb\x05" +"\x00\x05\x06\x05\x11\x05\x1a\x05\x22\x05\x2a\x05\x2f\x05\x37\x05\x3f\x05\x47\x05\x52\x05\xd9\x06\x03\x06\x3a\x06\xa3\x06\xcd\x06" +"\xd5\x07\x48\x07\xb8\x08\x08\x08\x73\x08\xdd\x08\xf8\x09\x20\x09\x34\x09\x4e\x09\xa9\x09\xde\x0a\x16\x0a\x66\x0a\xb4\x0a\xce\x0b" +"\x16\x0b\x5c\x0b\x89\x0b\x91\x0b\xa9\x0b\xb2\x0b\xea\x0c\x29\x0c\x2e\x0c\x39\x0c\x4a\x0c\x7c\x0c\xa1\x0c\xad\x0c\xb7\x0c\xe1\x0d" +"\x0b\x0d\x23\x0d\x28\x0d\x4d\x0d\x67\x0d\x82\x0d\xa4\x0d\xc5\x0d\xe4\x0e\x03\x0e\x21\x0e\x3e\x0e\x5b\x0e\x78\x0e\x95\x0e\x98\x0e" +"\x9f\x0e\xaa\x0e\xb5\x0e\xb9\x0e\xd4\x0e\xd8\x0e\xe3\x0e\xfd\x0f\x15\x0f\x29\x0f\x42\x0f\x4a\x0f\x63\x0f\x70\x0f\x7d\x0f\x93\x0f" +"\xa8\x0f\xac\x0f\xb5\x0f\xc9\x0f\xcd\x0f\xe0\x0f\xf2\x0f\xfc\x10\x05\x10\x10\x10\x21\x10\x32\x10\x41\x10\x4b\x10\x55\x10\x61\x10" +"\x71\x10\x79\x10\x89\x10\x91\x10\xa0\x10\xa5\x10\xb4\x10\xc1\x10\xc5\x10\xce\x10\xd9\x10\xe6\x10\xf3\x11\x00\x11\x0d\x11\x1a\x11" +"\x25\x11\x31\x11\x35\x11\x41\x11\x4d\x11\x59\x11\x61\x11\x69\x11\x74\x11\x7f\x11\x8a\xed\x1d\xe3\xfb\x42\x05\xdd\x06\x0e\xf9\x7c" +"\xf9\x31\x15\xfb\x64\x72\x06\xc4\x86\xa2\x7b\x67\x1a\x7a\x84\x67\x7f\x60\x1e\x51\xfb\x65\x70\x29\x75\x59\x6d\x67\x19\x63\x69\x5f" +"\x77\x54\x1b\x3f\x5d\xb1\xca\xa7\x8d\x95\xa5\xea\x1f\xdd\xf7\xc0\x9c\xc4\x9a\x97\xc9\x8e\x19\xa4\xfb\xcb\x72\x07\xd0\x81\x8f\x89" +"\x70\x1a\x7f\x85\x6c\x82\x6a\x1e\x54\xfb\x62\x05\x74\x39\x80\x4f\x6a\x1a\x29\xe7\x47\xf7\x17\xe0\xce\xa6\xc0\xb8\x1e\xad\xb2\xa2" +"\xc0\xab\xf7\x01\xcd\xf7\x78\x18\xb3\xf7\x18\x92\x95\xc2\x96\x08\x0b\x78\x0a\xe2\xd8\xc0\xb2\xee\xc7\x1e\xfb\x5a\xe4\x15\xf7\x1f" +"\xaf\xb9\xd7\xbb\x1b\x9e\x94\x80\x74\x5f\x7a\x60\x6b\x6a\x1f\x70\x6e\x72\x7d\x52\x79\x08\x0b\xa1\x1d\x82\x6e\x15\xa8\xf4\x1d\x4d" +"\x6e\x6d\x6e\x68\x1b\x6d\x78\xa2\xb2\xda\xb0\xf7\x25\xae\xc9\x1f\xb9\xa5\xa8\xa2\xab\x1b\x0b\x15\x68\x6e\x6d\x67\x36\x1d\x15\xfb" +"\xd9\x06\x7a\x45\x05\xf7\xda\x06\x0e\xf8\x6b\xf7\x19\x63\x0a\x54\x85\x71\xb7\x1d\x0b\xf7\x9c\x84\x1d\x0b\x60\x6b\xb0\x0a\x0b\x7f" +"\x1d\x0e\x06\xfb\x34\xfb\x42\x05\xc4\x06\xf7\x17\xea\x05\x0e\x15\x28\x0a\x0e\xfa\x40\xf9\x31\x15\xfb\x4f\x72\x06\xc3\x87\x92\x86" +"\x67\x1a\x7f\x89\x83\x7e\x71\x1e\xfb\x30\xfb\xdb\x6a\xf7\xbb\x05\x85\xc0\x8b\x8b\x97\x1a\xb6\x95\x95\xc0\x90\x1e\xa4\xfb\xa1\x73" +"\x07\xc7\x83\x95\x7d\x8c\x35\xfb\x2a\xfb\xcb\x18\x64\xf7\xf1\x05\x8a\x90\x8b\x92\x8f\x1a\xaf\x98\x96\xbb\x91\x1e\xa4\xfb\xa9\x73" +"\x07\xcb\x80\x8e\x89\x95\x44\xd9\xfc\xd7\x18\xa8\x06\xf7\x7d\xf8\x7d\xc6\xfc\x7d\x05\xa8\x06\xf7\xb2\xf8\xe2\xa7\xc2\x99\x97\xb5" +"\x91\x19\x0b\xf7\x7e\xf7\xcd\x15\x4f\xfb\x6c\x79\x52\x7d\x81\x46\x86\x19\x72\xf7\xd6\xa4\x07\x4a\x8e\x7f\x92\xb0\x1a\x98\x8c\x92" +"\x92\xa4\x1e\xbf\xf7\x53\xf7\x52\xf7\x9f\xad\xb9\x9e\x9a\xb1\x93\x19\xa4\xfb\x64\x72\x07\xc0\x89\x99\x82\x68\x1a\x79\x86\x7f\x76" +"\x6d\x1e\xfb\x15\xfb\x4e\x79\xc2\x81\xa9\x7b\xbe\x19\x74\xcc\x81\xaf\x9d\x1a\xa7\xdf\x1d\x88\x9e\x56\x08\x0b\xf7\xc6\xf9\x31\x15" +"\xfb\x57\x72\x06\xc2\x86\x94\x85\x9e\x5f\xfb\x0c\xfc\x2f\x18\x64\xfb\x17\x84\x80\x54\x80\x08\x72\xf7\x64\xa4\x07\x50\x90\x76\x9a" +"\xb2\x1a\x9e\x91\xac\x97\xb5\x1e\xee\xf7\xf8\xf7\x95\xfc\xb9\x05\xa7\x06\xf7\x23\xf8\x8e\x8a\x0a\x05\x0b\x86\x0a\xf7\x15\xf8\x72" +"\x9b\xc2\x9e\x98\xcd\x8f\x19\xa4\xfb\xd1\x72\x07\x9c\x0a\xfb\x0f\xfc\x55\x7b\x57\x7c\x7d\x5a\x85\x19\x72\xf8\xbd\x07\x0b\x15\x51" +"\x5a\x5b\x52\x4f\xba\x5b\xc6\xc6\xbb\xbb\xc6\xc5\x5b\xbb\x51\x1f\x89\x5b\x15\xac\xa6\x70\x6a\x6c\x70\x71\x6a\x6c\x71\xa5\xab\xab" +"\xa5\xa6\xaa\x1f\x0e\x77\x0a\x62\x75\xa1\x0b\x9d\xae\x8e\x19\x97\x21\x1d\x0b\x19\x85\x75\x05\x0b\x7f\x5e\x79\x79\x69\x88\x19\x0b" +"\xf9\x56\xf7\xde\x78\x1d\x60\x68\x91\x5d\x1b\x3e\x99\x1d\xd1\x92\x93\xc0\x8f\x19\x0b\x8d\x79\x89\x0a\x5e\xcd\xfb\x0f\xe8\x1f\xab" +"\x0a\xcb\xdb\xb1\x5a\xfb\x09\x99\x1e\xa6\x87\xb3\xf7\x5d\x05\x6d\x06\x79\x82\x7d\x83\x76\x1b\x80\x7c\x8e\x93\x72\x1f\x99\x62\x6f" +"\x90\x6e\x1b\xfb\x06\x34\x37\xfb\x02\x71\x90\x74\x93\x7a\x1f\xa1\x61\xb4\x5f\xc3\x5f\x08\xda\x4f\xad\x5d\x5c\x1a\x75\x84\x72\x7f" +"\x76\x1e\x64\x74\x69\x78\x59\x1b\x57\x5e\xa3\xb6\x71\x1f\x78\xaa\x83\xa9\x87\xc7\x6e\x8d\x18\x0b\xf7\x7b\xf7\x0f\x15\x5c\x6a\x78" +"\x78\x6a\x1d\x8c\x8f\x8f\x98\x1f\xf3\xf7\xfe\xfb\x50\x70\x85\x73\x05\x8c\x92\x92\x8c\x90\x1b\x9b\x9a\x7d\x7d\x83\x87\x75\x87\x7d" +"\x1f\x4d\xfb\x67\x05\x85\x77\x88\x79\x7b\x1a\x5c\xa5\x6f\xb7\xa6\xa0\x96\xa8\xac\x1e\xa1\x9f\x96\x9a\xa4\xb4\x08\x0b\x15\x49\x6b" +"\x68\xc2\x0a\x8d\x47\x8b\x8b\x98\x6f\x08\x5a\x1d\x15\xf4\xb9\xce\x98\x0a\x68\x68\x44\x65\x1e\x0e\x68\x6f\x6d\x67\x69\xa9\x6c\xac" +"\xaf\xa9\xa8\xae\x0b\xa1\x05\xfb\x73\x20\x1d\x97\x06\x0b\x68\x88\x19\x83\x20\x1d\x0b\x7b\x97\x7b\xa1\x7c\x1f\x0b\x98\x7f\x05\x8e" +"\x97\x0b\xf8\x72\xf8\x41\x15\xfb\x03\x06\xa3\x69\x6d\x94\x5d\x1b\xfb\x0f\x28\x3a\x26\x58\xa5\x67\xc1\x74\x1f\x39\x5d\x7d\x7d\x66" +"\x1a\x6b\x9d\x78\xb7\x7c\x1e\x4d\x7c\x77\x83\x73\x78\x08\x7b\x7d\x80\x73\x73\x1a\x4a\xd4\x62\xf7\x07\xf7\x21\xed\xc9\xe3\xc8\x63" +"\xac\xfb\x01\xaa\x1e\x56\x9a\x05\x6b\x94\x78\x99\x9a\x1a\x9b\x9a\x9f\x98\x90\x92\x8a\x88\x93\x1e\x88\x96\x93\x8a\x97\x1b\xb7\xb8" +"\x97\xa1\xb1\x1f\xc5\xac\xaa\xbe\xc7\x1a\x9b\x89\x95\x87\x9b\x1e\xce\x06\xfb\xff\xfc\x0f\x15\x97\x8a\xd7\x71\xa1\x81\x08\xa7\x7d" +"\x98\x7a\x71\x1a\x5f\x5f\x72\x3f\x4a\x5d\xab\xb9\x9f\x94\x9b\xa0\x9f\x1e\x97\x97\xaa\x9d\x92\x8a\x08\xf7\x20\xf8\x49\x15\xa5\x9e" +"\x73\x68\x69\x7f\x59\x7a\x67\x1f\x5d\x75\x72\x75\x6c\x1b\x70\x7c\xa0\xb1\xb3\x9c\xc8\xa0\xb1\x1f\xac\x9e\xa0\x9b\xa5\x1b\x0b\xc0" +"\x0a\x6b\xfb\x0b\x45\xfb\x82\x1e\xf7\x0d\x06\xba\xf7\x26\x9c\xa8\x0a\x92\x1f\x7a\x99\x98\x83\x9c\x1b\xac\xa4\xaa\xb5\xb3\x75\xa5" +"\x68\x58\x62\x59\xfb\x33\x3c\xba\x0a\x0b\xf7\x6c\x6f\x0a\x0b\xa4\x1d\xf7\xd7\x21\x1d\x5e\x06\x71\x7a\x9c\xa4\x92\x8c\x90\x8c\x92" +"\x1f\x0b\xf9\x1e\xf9\x31\x15\x8b\x0a\xf7\xdf\xa5\x1d\x05\x0b\x15\xf7\x08\xbe\xd6\xe1\xdc\x1a\xc6\x69\xb2\x58\x62\x6d\x6c\x61\x70" +"\x95\x7b\xa9\x77\x1e\xa2\x7c\x92\x81\x7d\x1a\x67\x64\x0b\x52\x0a\x72\x84\x8a\x86\x8a\x84\x1f\x3a\x1d\x82\x20\x1d\x0b\x15\xb1\x9e" +"\x88\x82\x9b\x94\x0a\x0b\x32\x0a\xfb\xa3\x06\x85\x75\x05\xa1\x06\xa5\x8a\x9c\x7b\x71\x1a\x86\x8a\x84\x89\x85\x1e\x0b\x63\x1d\xf7" +"\x17\xea\x05\x0b\x1e\x7f\x20\x1d\xf7\x93\x4f\x0a\x0b\x06\xc4\xf7\x68\x4a\x1d\xb2\x28\x1d\x0b\x20\x1d\x98\x06\xae\x86\xa2\x71\x9a" +"\x57\x0b\x72\x85\x74\x05\x96\x06\xa0\x99\x7c\x75\x84\x8a\x0b\x7b\x7f\x65\x4b\x1d\x5e\x7a\x79\x3c\x0a\x0b\x06\x91\xa1\x6c\x89\x76" +"\x9f\x75\xbe\x19\x0b\xa3\xb3\xb7\x9e\xaa\xb6\xa5\x1e\x0e\x50\x87\x50\x89\x69\x8a\x82\x0b\x20\x1d\xaa\x06\xa5\x9c\x7a\x0b\xf1\x1d" +"\x9d\x9d\x0b\x06\x71\x8c\x7a\x9b\xa4\x1a\x0b\x85\x75\x05\xa1\x06\xa4\x8a\x0b\x1e\x6c\x70\x73\x6e\x53\x3a\x0b\x73\x49\x1b\x4b\x6b" +"\xa8\xc8\x85\x1f\x60\x0b\xf8\x1c\xf8\x22\x15\xf7\x6c\xf7\x5a\xb6\xb2\x93\x8e\xb6\x91\x19\xa4\xfb\x67\x72\x07\xbd\x85\x91\x88\x79" +"\x1a\x78\x77\x71\x52\x56\x1e\x3f\x44\x74\x77\x29\x37\xc9\xf7\x78\x18\x9a\xbf\x9f\x9b\xc6\x8f\x08\xa4\xfb\xca\x72\x07\xae\x85\xa0" +"\x86\x91\x87\x5c\x1d\x78\x84\x70\x1e\xfb\x0e\xfc\x55\x7b\x56\x7c\x7e\x5a\x85\x19\x72\xf7\xb5\xa4\x07\x57\x8f\x7d\x94\xac\x1a\x91" +"\x8c\x91\x8c\x90\x1e\xcd\xf7\x8d\xf7\x06\xfb\x86\x05\x95\x76\x8e\x80\x80\x1a\x7d\x7f\x83\x71\x89\x1e\x87\x8a\x80\x8a\x7f\x8a\x08" +"\x72\xf7\xac\xa4\x07\x65\x8f\x7d\x92\x80\xa3\x08\x0b\xf8\x3f\xf7\x17\x15\xa3\x0a\xf7\x03\xf8\x29\x4f\x7d\x5b\x84\x26\x83\x19\x70" +"\xa0\x07\xa5\x9a\x81\x79\x82\x86\x75\x73\x34\x1f\x79\x47\x91\x1d\xfb\x46\xf7\xc5\x93\x1d\x0b\x7e\x1b\x83\x82\x94\x92\x8d\x8c\x8f" +"\x8d\x91\xd1\x1d\x9e\x1a\xba\x6e\xa7\x5c\x67\x6e\x7f\x6d\x67\x56\x0a\xf6\xf8\x34\x18\x3d\x7c\x59\x83\x3b\x84\x08\x70\x07\x8c\x93" +"\x94\x8b\x90\x1b\xa7\x64\x1d\xfb\x2e\xfc\xcb\x50\x1d\x0e\xf7\xac\xf8\x5e\x15\xfb\x4b\x4c\x0a\x85\x88\x81\x1f\x30\xfb\xf2\x05\xf7" +"\x09\x06\xc3\xf7\x6b\x05\x94\x06\xa1\x8a\x96\x79\x90\x5a\x91\x50\x8d\x7d\x95\x73\xcb\x1d\x5f\x74\x79\x78\x77\x1b\x7b\x83\x98\xa9" +"\x86\x1f\x7e\xec\x79\xa4\x50\x8e\xb7\x95\x9c\x9e\xaf\xd9\x08\xa6\x97\x95\x96\x97\x1b\x92\x8f\x88\x82\x8f\x1f\x78\x94\x93\x85\x9c" +"\x1b\xa8\x9e\xa2\xae\xaf\x76\xa0\x65\x5f\x7c\x7b\xfb\x00\x53\x1f\x4c\x6c\x6b\x73\x57\x1b\x0b\xf7\x10\xf8\x09\x15\x25\x06\x7f\x5f" +"\x05\xf1\x06\x4c\xfb\x7c\x87\x0a\x72\x06\xe4\x1d\xf1\xfb\x3e\x15\xc8\xf7\x77\x05\x7c\x0a\xc2\xf7\x5f\x05\xf7\x0e\x06\x97\xb7\x05" +"\x0e\x63\x0a\x53\x85\x72\xb7\x1d\x0b\xf8\x3c\xf8\xc4\x15\x66\x06\x50\x23\x05\x90\x79\x81\x8c\x7d\x1b\xfb\x2a\xfb\x1f\xfb\x32\xfb" +"\x3e\x52\xa3\x63\xc0\x6d\x1f\x43\xfb\x12\x05\xb3\x06\xcb\xf7\x06\x05\x85\x9f\x98\x89\x9d\x1b\xf7\x28\xf7\x1c\xf7\x2f\xf7\x3d\xcb" +"\x72\xb4\x52\xa7\x1f\xfb\x87\xfc\x02\x15\x93\x07\xd5\xb0\xf7\x20\xaf\xcc\x1e\xb8\xa4\xa8\xa2\xab\x1b\x98\x94\x87\x81\x95\x1f\x99" +"\x61\x15\x8c\x89\x8b\x8a\x89\x1a\x4f\x70\xfb\x0a\x6e\x46\x1e\x3f\x6c\x6c\x6a\x64\x1b\x7b\x80\x90\x98\x81\x1f\x0b\x15\x60\x6b\x74" +"\x76\x72\x6e\x08\x57\x4f\x6e\x3f\x3f\x1a\x26\xbd\x4b\xd9\xba\xb1\xa1\xc1\xbb\x1e\x50\xa7\xa0\x7a\xb5\x1b\xf2\xea\xf7\x35\xf7\x41" +"\xda\x6e\xbb\x5c\x6c\x73\x72\x6b\x79\x92\x77\x96\x7e\x1f\xad\x65\x8b\x8b\x90\x83\x08\x98\x78\x91\x75\x74\x1a\x2b\x3d\xfb\x05\x4a" +"\x70\x78\x9f\xbc\x78\x1e\xc6\xdc\xa2\xc0\xc2\x1a\xb4\x78\xa6\x6e\x5b\x68\x50\x39\x6c\x8d\x73\x93\x59\x1e\x59\x63\x70\x76\x72\x1b" +"\x71\x78\xb0\xbd\xe5\xb9\xf7\x21\xc3\xe0\x1f\x0e\xf8\x20\xf7\xe4\x15\x4c\xf7\x71\x05\x89\x95\x89\x95\x94\xb8\x1d\x77\x41\xa0\x1f" +"\xce\xfb\x91\x55\xfb\x61\x2f\x1d\x6b\x20\x1d\xf7\xc6\x21\x1d\x68\x06\x71\x7a\x9c\xa5\x92\x8c\x90\x8c\x91\x1f\xc2\xf7\x60\xf7\x68" +"\xf7\xad\xac\xb5\xa5\xa2\xa2\x92\x19\x22\x1d\xfb\x52\x20\x1d\x9d\x06\xa6\xa2\x78\x74\x7b\x84\x78\x7e\x7a\x1f\x0b\xf7\xe6\xf7\x2d" +"\x15\x46\x67\x5f\x69\x55\x1b\x5e\x6c\xad\xbd\xaa\x95\xa5\xa3\xae\x1f\x75\xad\x9d\x85\xa6\x1b\xb0\xa7\x9e\xa4\xa0\x75\x9b\x6e\x7b" +"\x79\x87\x7f\x5c\x1f\x8a\x94\x8b\x93\x8f\x1a\xd3\xb5\xca\xbb\x99\x95\x81\x7d\x8a\x8b\x89\x8a\x8a\x1e\x88\x7d\x8b\x8b\x88\x1a\x72" +"\xa6\x73\xa9\xa8\xa1\xa1\xa9\xba\x5d\xa8\x42\xfb\x02\x3b\x59\x46\x69\x9a\x72\xaf\x71\x1e\x3a\x6e\x65\x5f\x4d\x1a\x43\xc8\x59\xe1" +"\xe8\xc7\xb9\xf3\xb7\x1e\x0b\xce\xf7\xb2\x15\xc5\xa7\xa2\xaa\x9c\x1b\x94\x90\x84\x7e\x81\x88\x7c\x83\x6d\x1f\x3a\xfb\xc0\x05\xf7" +"\x0a\x06\xba\xf7\x4a\x93\xa9\xac\xcd\xab\xbd\x19\xa3\x9a\x9b\x98\x97\x1b\x95\x91\x84\x7f\x80\x89\x7e\x84\x70\x1f\xfb\x0e\xfc\x6d" +"\x05\xf7\x08\x06\xf7\x14\xf8\x86\x05\x91\xa0\x8e\xa1\x9c\x1a\xb7\x71\xa8\x65\x6d\x6f\x7b\x66\x6a\x1e\x70\x6d\x7a\x6f\x6c\x4c\x08" +"\xa3\xef\x8b\x8b\x9b\x1a\xac\x72\xa4\x68\x50\x53\x54\x25\x5e\x1e\x0b\x15\x55\x68\x77\x77\x7a\x1b\x83\x85\x92\x95\x97\x96\xbb\x99" +"\xb8\x1f\xd9\xf7\xa0\x05\xfb\x0a\x06\x6b\x0a\x0b\xf7\xbd\xf7\xd5\x15\xf7\x7a\x06\x4d\xfb\x7d\x79\x0a\x22\x1d\xfb\xa8\x20\x1d\xa5" +"\x06\xa6\x9b\x7a\x71\x83\x8b\x87\x89\x85\x1f\x51\xfb\x6d\x05\xfb\x7a\x4a\x0a\x0b\xe9\xf9\x18\x15\xe4\x1d\xfb\x0d\xfc\x52\x87\x0a" +"\x06\xf7\x74\x46\x15\x7c\x0a\x0b\xf7\x12\x15\x5e\x76\x79\x71\x7f\x1b\x87\x88\x8f\x90\x90\x8c\x91\x90\x9c\x1f\xe7\xf7\xf4\x05\x82" +"\x1d\x0b\x51\x9f\x55\xaf\x61\x1f\x9c\x78\x98\x81\xaa\x79\x3c\xfb\x1c\x18\xbb\x06\xd1\xf7\x0c\x05\x81\xaa\xa0\x88\xaa\x1b\xd7\xd6" +"\xa5\xbc\xce\x1f\xf7\x10\xe7\xde\xf7\x32\xf7\x26\x1a\xbe\x7a\xc0\x6d\xb1\x1e\x78\xa4\x7b\x99\x64\xa1\x08\xfc\x18\xfc\xd7\x15\x84" +"\x9f\x87\xa1\xa1\x1a\xf1\xbc\xf7\x43\xc5\xf2\x1e\xe2\xbc\xc2\xb6\xc8\x1b\xa4\x9e\x85\x7c\x9e\x1f\xa6\x66\x15\x94\x0b\x90\xa1\x05" +"\xfb\xa2\xb7\x0a\x87\x8a\x83\x89\x85\x1e\x4c\xfb\x81\x05\x76\x5a\x6a\x83\x63\x1b\x5a\x70\x9f\xaf\x9b\x8e\x9b\x97\xb6\x1f\xad\xf7" +"\x16\x97\xb8\x9d\x47\x0a\x63\xfb\x2d\x05\x84\x71\x88\x7b\x7b\x1a\x46\x0b\xf8\x36\xf7\x4c\x15\x4f\xf8\x72\x05\xfb\x6c\x06\x86\x75" +"\xbf\x85\x96\x87\x9b\x76\x19\xfb\x16\xfc\x7e\xa7\x1d\xf7\x0d\xf8\x5e\xd4\xfc\xd0\x05\x9c\x06\xf8\x18\xf8\xd0\xfb\x15\xfc\x78\x7f" +"\x5f\x78\x78\x68\x88\x19\x74\x20\x1d\x0b\xf9\x31\x15\xfb\xbd\x72\x06\xae\x85\xa0\x86\x91\x87\x08\x91\x88\x90\x81\x82\x1a\x7f\x87" +"\x74\x84\x71\x1e\xfb\x06\xfc\x44\x05\xfb\x29\x64\x7c\x6f\x67\x1b\x78\x83\x91\x97\x92\x8d\x90\x93\x94\x1f\x96\x98\x8d\x91\x99\x1a" +"\xaf\x6f\xa6\x68\x67\x6f\x6d\x63\x50\xcb\x61\xe3\xf7\x00\xcd\xc8\xf7\x17\xae\x1e\xf7\x14\xf8\x73\x9c\x0b\x53\xfb\x56\x6f\x4a\x51" +"\x43\x08\x65\x6c\x75\x7a\x77\x1b\x7d\x84\x93\x9c\x9a\x8c\x91\x99\xb8\x1f\xe9\xf7\xc8\x05\x86\x81\x89\x88\x7e\x1f\x4d\x80\x40\x81" +"\x5f\x89\x08\x70\x07\xb9\x88\x95\x86\x77\x1a\x7b\x86\x6f\x82\x6e\x1e\x63\xfb\x19\x05\x7d\x59\x84\x6a\x72\x1a\x5a\xa4\x72\xbd\xce" +"\xa9\xa5\xf7\x24\xf2\x1e\x79\x0b\xf7\xd9\x16\xb5\x1d\xb9\x06\xeb\x8c\xbc\x63\x96\x35\x08\x9f\x06\xb7\xf7\x37\x05\xfc\x68\x06\x82" +"\x0a\x0b\xf7\xcd\xf8\x59\x15\xfb\x1b\xfb\x14\xfb\x2a\xfb\x33\x30\xc0\x4e\xdc\xb1\xaf\x98\xa6\xb4\x1f\xe2\xc6\xc2\xf1\xf5\x1a\xe5" +"\x56\xcb\x40\x1e\x79\x69\x15\xa5\x9b\x76\x68\x4c\x6d\xfb\x14\x69\x3b\x1f\x5d\x77\x73\x74\x6d\x1b\x70\x78\xa7\xb3\xb9\xa7\xf7\x0f" +"\xa8\xd7\x1f\xc0\x9e\xaa\xa9\xae\x1b\x0b\x7f\x6f\x6c\x85\x6c\x1b\x2d\x53\xcc\xf7\x01\xf7\x25\xd3\xf7\x42\xe6\xd7\x1f\xaa\xb0\xb2" +"\x9a\xb4\x1b\xdc\xbd\x4f\x29\x7e\x8a\x83\x89\x7d\x1f\xab\x85\xbe\xf7\x7e\x05\x6d\x06\x75\x7e\x81\x84\x7c\x1b\x83\x7c\x8e\x90\x7c" +"\x1f\x99\x5e\x5e\x92\x62\x1b\xfb\x73\xfb\x4d\xfb\x5d\xfb\x87\x0b\xe0\x1d\x99\x92\xab\x9a\xc1\xae\x0a\x95\x8e\x8b\x93\x1b\xa6\x9a" +"\x81\x79\x7d\x7d\x50\x78\x46\x1f\x40\xfb\x9c\x05\x76\x3f\x7e\x51\x73\x1a\x67\xa6\x73\xb4\xc8\xb1\xaa\xf4\xd0\x1e\x0b\x59\x1d\x50" +"\x7e\x4d\x7f\x0a\x0b\x85\x75\x05\xa7\x06\xa5\x9c\x7a\x71\x85\x8a\x85\x8a\x85\x1f\x3a\x1d\x7c\x20\x1d\xf7\xd6\x06\x0b\xb0\x1d\x7b" +"\x70\x1a\x85\x95\x1d\x0b\x15\x50\x63\x77\x76\x79\x1b\x83\x84\x92\x93\x99\x93\xad\x99\xbf\x1f\xbe\xf7\x4b\xe1\xba\x9e\xcf\x35\x5c" +"\xd6\xf7\xa4\xc6\x0a\x94\x8f\x8b\x91\x1b\xa8\x9a\x81\x79\x7a\x7c\x51\x5e\xfb\x35\x1f\x3d\x60\x78\x45\xd8\xb6\x05\x5a\x0b\xf7\x70" +"\x15\x9e\xa0\x94\x95\x9c\x9d\x08\xd1\xd3\xaa\xb4\xa0\x1a\x91\x85\x91\x84\x83\x7d\x82\x78\x78\x1e\x7e\x7f\x81\x83\x73\x7a\xfb\x3e" +"\xfb\x10\x18\x82\x07\xe0\x35\xc6\x4d\xa3\x70\x08\x83\x92\x8e\x89\x90\x1b\x94\x91\x92\x93\x9a\x81\xa6\x74\xbb\x1f\x0b\x8e\x1d\xf7" +"\x01\x1d\xf7\x2c\xe2\x05\xaa\x9d\x93\x95\x2d\x1d\x0e\x1a\x5c\xb8\x69\xc8\xbe\xba\xa8\xb9\xa4\x68\x1d\x81\x88\x7b\x1b\x0b\xf7\xd1" +"\xf7\x22\x15\x46\x5d\x6e\x75\x60\x1b\x61\x75\xa7\xc1\x9b\x8d\x98\x8f\x9f\x1f\xf3\x9f\xbc\xa1\xbd\xb9\x08\xae\xab\x9e\xb0\xaf\x1a" +"\xbe\x5f\xaf\x4e\xfb\x25\xfb\x23\xfb\x37\xfb\x39\x36\xcb\x4d\x0b\x34\x0a\x67\x20\x1d\xf7\xbe\x21\x1d\x72\x06\x70\x8c\x7b\x9b\xa5" +"\x1a\x90\x8c\x92\x8d\x91\x1e\xf7\x16\xf8\x7f\x98\xb8\x9c\x9d\xae\x8e\x19\x97\x06\x0b\x15\x6c\x7c\x7e\x80\x6d\x1d\x6b\x93\xb1\x1d" +"\x0b\x54\x1d\x56\x82\x85\x8a\x89\x81\x1f\x0e\xa6\x92\x9b\x96\xaa\x1b\xf7\x04\xc1\x50\xfb\x0d\xfb\x07\x69\xfb\x0b\x55\x3e\x1f\x3e" +"\x56\x44\x67\x2c\x1b\x65\x7b\x95\xa3\x97\x8e\x9a\x94\xa6\x1f\x8d\x8c\x8d\x8b\x1e\x0b\x6e\x06\x78\x80\x88\x89\x7c\x1b\x81\x83\x8d" +"\x92\x79\x1f\x95\x72\x7f\x8e\x76\x1b\x3a\x56\x5a\x3e\x55\x99\x6f\xcd\x3c\x1f\xb1\x5e\x9d\x69\x72\x1a\x6d\x72\x73\x6b\x74\x0b\x15" +"\xa5\x9b\x75\x69\x4c\x6b\xfb\x19\x6a\x3d\x1f\x5c\x76\x73\xdb\x1d\xc0\x9e\xab\xaa\xae\x1b\x0e\x82\x3a\x97\x1d\x0b\xf9\x41\x15\xfb" +"\x08\x58\x40\x36\x39\x1a\x50\xad\x64\xbe\xb4\xa9\xaa\xb5\xa6\x81\x9b\x6c\x9f\x1e\x75\x9a\x84\x95\x9a\x1a\xae\xb2\xb2\xda\xb5\x1e" +"\x0b\x05\x27\x71\x7a\x6c\x6e\xee\x1d\x93\x96\x8d\x92\x95\x1a\xa6\x75\xa1\x70\x70\x75\x73\x6e\x5d\xb5\x6c\x0b\x86\x75\x05\xa0\x06" +"\xa5\x8a\x9c\x7a\x71\x1a\x84\x4d\x1d\xfc\x7f\x7f\x5e\x7a\x79\x68\x88\x19\x83\x20\x1d\x0b\xf8\x22\x15\xdd\xf7\x4e\x8c\x8c\x8d\x90" +"\x8e\x93\x19\x95\xa1\x8c\x8e\x98\x1a\xa6\x77\xa1\x72\x64\x66\x68\x65\x88\x1e\x7b\xfb\x6a\x05\x0b\xf7\x05\xf7\x5c\xc7\xf2\xa1\xa2" +"\xaf\x89\x19\x91\x9f\x05\xfb\x26\x06\x85\x77\x05\x97\x06\x9b\x95\x83\x7d\x7c\x86\x80\x6b\x53\x1f\x0b\x05\x7c\x57\x82\x60\x79\x1a" +"\x64\xa7\x71\xb5\xc7\xb3\xac\xf2\xcd\x1e\x75\x99\x05\x56\x69\x71\x70\x7b\x1b\x83\x83\x92\x93\x0b\xf8\xe2\xf7\x56\x15\x73\x90\x69" +"\x53\x75\x72\x64\x6f\x19\x65\x55\x44\x77\x39\x1b\x5e\x78\x94\xa0\x93\x8d\x98\x8e\x96\x1f\x0b\x7c\x58\x7a\x7c\x5b\x85\x19\x72\xf7" +"\xb2\x07\xf7\x94\xf7\x51\xf7\x3d\xf7\x77\xf7\x3f\xfb\x04\xf1\xfb\x51\x1f\xfb\xb6\x0b\x8a\xba\x05\xaf\x9a\x9f\xa5\x1e\x95\x06\x90" +"\x9f\x05\xfb\x76\x06\x86\x77\x05\xa6\x9b\x62\x37\x91\x1f\x95\xfb\x68\x0b\x15\xa9\x06\xa8\x97\x92\x91\x9e\x1b\x95\x98\x88\x83\xa2" +"\x1f\x7a\xbc\xad\x84\xb3\x1b\xf7\x20\xe4\xda\xf7\x0f\xe3\x0b\xb1\xf7\x17\x91\x94\xc5\x98\x19\xa4\xfb\x65\x72\x07\xc6\x86\xa0\x7b" +"\x65\x1a\x78\x84\x69\x80\x62\x1e\x3b\xfb\xb3\x0b\xfc\xbb\x06\x65\xfb\x3f\xa4\x84\xbe\xef\xcb\xb5\xf1\x8c\x19\xfb\x28\xfc\xad\x05" +"\x58\x7d\x71\x76\x58\x1b\x7d\x72\x0b\x15\x90\x0a\x15\xdd\x1d\x72\x78\x4d\x0a\xa2\x0a\x7b\xa1\x7c\x1f\xf7\x19\x32\x05\x0e\xd7\x1d" +"\x77\x73\x3d\x0a\xf7\x18\x33\x05\x0e\x65\x1d\x4d\x0a\x1a\x24\xbd\x4a\xdb\xcd\xbd\xac\xda\xc3\x1e\x8d\x4a\x8b\x8b\x8d\x7f\x08\x74" +"\x90\x93\x7f\x97\x1b\xae\xb4\x0b\xb1\x1d\x81\x0b\x7a\x7f\x65\x68\x1e\xfb\x0e\xfb\x17\x05\x0b\x1f\xaa\x7c\xa0\x64\x61\x1a\x60\x7c" +"\x58\x74\x6b\x1e\x61\x6f\x61\x76\x57\x1b\x7d\x81\x8c\x8f\x78\x1f\x0b\x73\x53\x63\x1e\x99\x7e\x05\xab\xa7\x9e\x95\xa7\x1b\xad\xa0" +"\x77\x6b\x60\x64\x70\x39\x7c\x1f\x0e\x06\x55\x0a\x9c\x7b\x73\x1a\x82\x8b\x87\x89\x84\x1e\xfb\x21\xfc\x7f\x7d\x5e\x0b\xf7\xba\xf7" +"\xc3\x15\x87\xaf\x9b\x8a\xa2\x1b\xf7\x25\xf7\x00\xe2\xf7\x08\xec\x3b\xcb\xfb\x0e\x1f\x0b\xd8\xd4\x1a\xc0\x6c\x60\x1d\x0b\xf7\x9c" +"\x16\xf8\xa3\x06\xc6\xf7\x58\x71\x8e\x61\x48\x72\x6f\x66\x71\x19\x6d\x60\x4c\x7b\x44\x1b\x0b\x6d\x73\x73\x6c\x6b\xa4\x71\xa9\xa8" +"\xa3\xa4\xaa\x0b\xec\x1d\x90\x8c\x92\x8d\x92\x1e\xf7\x16\xf8\x7f\x0b\xab\x86\x99\x89\x95\x88\x92\x87\x19\x91\x87\x8f\x82\x81\x1a" +"\x7f\x86\x6c\x86\x79\x1e\x0b\xca\xc4\xd6\xb8\x72\xbc\x53\xcc\x1f\x65\xb8\x79\xa9\xa2\x1a\xab\xa0\xa0\xab\xb9\x0b\x16\xa4\x0a\x0e" +"\x9d\x1a\xa6\xdf\x1d\x89\x9e\x56\x0b\x49\x15\x62\x6a\x6a\x63\x62\xac\x6a\xb4\xb3\xac\xac\xb3\xb4\x6a\xac\x63\x1f\x0b\x15\xc7\x1d" +"\x0b\x15\xfb\x03\xf7\x27\x05\xa1\x7a\x77\x97\x78\x1b\x73\x76\x76\x73\x7b\x97\x0b\x5e\x6f\x73\x70\x7c\x1b\x85\x86\x91\x91\x94\xa1" +"\xe2\xae\xf7\x13\x1f\x0b\xf5\x1d\xa6\xad\xae\x6f\xa8\x6b\x1f\x0b\xf2\x1d\xc8\xf7\x6d\x05\x94\x06\x0b\x15\x2b\x1d\x9f\x1a\xa4\x75" +"\xa0\x71\x79\x0b\x22\xfb\x1c\x1a\x2b\xb2\x46\xd8\x62\x1e\xb0\x77\xa6\x85\xc8\x86\x0b\xc2\x92\x9d\x9c\xae\x19\xc7\xa8\xaf\xba\x9c" +"\x1b\x8f\x91\x87\x82\x0b\xfa\x65\xf7\xa1\x15\xfe\x7c\x06\x7a\x30\x05\xfa\x7c\x06\x0e\x97\xb8\x9d\x9d\xae\x8e\x19\x97\x06\x0b\x4d" +"\xba\x7c\xa1\xb8\x1a\xcc\xb3\xb3\x0b\x83\x20\x1d\xf7\xa8\x21\x1d\x6e\x06\x71\x8c\x0b\x92\x95\x1a\xa6\x75\xa1\x70\x70\x75\x73\x6e" +"\x5d\xb5\x6c\xca\x0b\x1f\xf7\x25\xf8\x9f\xc6\x0a\x0b\xf7\xd9\xf7\x9b\x15\xc3\xfb\x34\x05\x8e\x80\x8d\x81\x80\x1a\x0b\xc7\x0a\xb3" +"\x6a\xad\x63\x1f\x0b\x05\xae\x95\x97\x94\xb4\x1b\xd4\xbe\x7b\x6c\xa6\x1f\x9f\x0b\xbc\x0a\x6e\xa8\x0b\x75\x1a\xfb\x08\x4c\xfb\x5f" +"\x49\x2c\x1e\x49\x5d\x5e\x6c\x0b\x70\x1a\x64\xa4\x74\xb6\xc8\xb1\xaa\xf4\xd0\x1e\x0e\x43\xf0\x1d\x0b\x54\x0a\x91\x8c\x91\x8d\x92" +"\x1e\x0b\x20\x1d\xa1\x06\xa6\x8a\x9b\x7b\x71\x1a\x0b\x15\xfb\x07\x5d\x73\x67\x6d\x1b\x76\x7f\xaa\xc0\x0b\x9a\x98\x94\x9d\x9d\x19" +"\xa3\xa4\x98\xa6\xa4\x1a\x0b\x1f\xcd\xf7\x65\x4c\x7c\x7f\x89\xfb\x11\x80\x19\x0b\xab\x1e\xcc\xa8\xa1\xa2\xb5\x1a\xbe\x5f\xaf\x4b" +"\x0b\x6f\x70\x68\x68\xa8\x6e\xae\xad\xa6\xa6\xae\xae\x0b\x75\x05\xf7\xa6\x21\x1d\x75\x06\x71\x8c\x0b\x06\xe1\xf7\x66\x05\x3e\x06" +"\x34\xfb\x66\x05\x0b\x8a\xc5\x0a\x0b\xa6\xf8\x2b\x15\xb8\x89\x94\x87\x78\x1a\x72\x0b\xe9\xf8\x15\x18\xf7\x2a\x06\x46\xfb\xa1\x05" +"\x0b\x73\x4a\x1b\x4b\x6a\xa8\xc8\x86\x1f\x60\x06\x0b\x7e\x5e\x79\x79\x68\x88\x19\x0b\x92\x87\x08\x91\x87\x8f\x82\x0b\x85\x1e\xfb" +"\x17\xfc\x7f\x7f\x5e\x79\x79\x0b\x33\x7a\x5c\x84\x41\x85\x19\x70\x07\x8c\x0b\x6b\x61\x61\xaa\x6b\xb5\xb5\xac\xab\xb5\x0b", 55486 +}; diff --git a/dviware/dvisvgm/src/fonts/NimbusRoman-Italic.cff.cpp b/dviware/dvisvgm/src/fonts/NimbusRoman-Italic.cff.cpp new file mode 100644 index 0000000000..61abb8be24 --- /dev/null +++ b/dviware/dvisvgm/src/fonts/NimbusRoman-Italic.cff.cpp @@ -0,0 +1,1757 @@ +#include "Base14Fonts.hpp" + +extern const MemoryFontData NimbusRoman_Italic_cff = { +"\x01\x00\x04\x02\x00\x01\x01\x01\x13\x4e\x69\x6d\x62\x75\x73\x52\x6f\x6d\x61\x6e\x2d\x49\x74\x61\x6c\x69\x63\x00\x01\x01\x01\x35" +"\xf9\xbc\x00\xf9\xbd\x01\xf9\xbe\x0c\x00\xf9\xbf\x02\xf9\xc0\x03\xf8\x18\x04\x1e\xe1\x5a\x5f\x0c\x02\x22\x0c\x03\xfb\x3d\xfb\xa2" +"\xfa\xd1\xfa\x4b\x05\x1c\x2a\xcd\x0f\x1c\x2a\xe0\x11\xae\x1d\x00\x00\xc6\xbf\x12\x01\xa6\x02\x00\x01\x00\x08\x00\x0e\x00\x13\x00" +"\x1d\x00\x24\x00\x2b\x00\x35\x00\x39\x00\x3f\x00\x45\x00\x50\x00\x5a\x00\x5d\x00\x63\x00\x69\x00\x6e\x00\x74\x00\x7a\x00\x84\x00" +"\x8b\x00\x8e\x00\x95\x00\x9c\x00\xa8\x00\xab\x00\xb3\x00\xb7\x00\xbc\x00\xc2\x00\xcd\x00\xd9\x00\xe3\x00\xe7\x00\xf2\x00\xf4\x00" +"\xfa\x01\x04\x01\x0b\x01\x12\x01\x16\x01\x22\x01\x2b\x01\x31\x01\x3c\x01\x41\x01\x4d\x01\x53\x01\x59\x01\x5f\x01\x6b\x01\x6f\x01" +"\x71\x01\x77\x01\x7d\x01\x89\x01\x8b\x01\x91\x01\x9e\x01\xa5\x01\xaf\x01\xb6\x01\xc2\x01\xcd\x01\xd0\x01\xd2\x01\xd5\x01\xdb\x01" +"\xe1\x01\xed\x01\xf0\x01\xf6\x01\xfe\x02\x09\x02\x15\x02\x1a\x02\x1d\x02\x21\x02\x27\x02\x33\x02\x38\x02\x3e\x02\x4b\x02\x52\x02" +"\x59\x02\x60\x02\x6f\x02\x7b\x02\x80\x02\x86\x02\x8c\x02\x97\x02\xa0\x02\xa6\x02\xa8\x02\xb3\x02\xb9\x02\xbf\x02\xc9\x02\xcd\x02" +"\xd3\x02\xda\x02\xe3\x02\xec\x02\xf5\x02\xfe\x03\x07\x03\x10\x03\x19\x03\x22\x03\x2b\x03\x34\x03\x3d\x03\x46\x03\x4f\x03\x58\x03" +"\x61\x03\x6a\x03\x73\x03\x7c\x03\x85\x03\x8e\x03\x97\x03\xa0\x03\xa9\x03\xb2\x03\xbb\x03\xc4\x03\xcd\x03\xd6\x03\xdf\x03\xe8\x03" +"\xf1\x03\xfa\x04\x03\x04\x0c\x04\x15\x04\x1e\x04\x27\x04\x30\x04\x39\x04\x42\x04\x4b\x04\x54\x04\x5d\x04\x66\x04\x6f\x04\x78\x04" +"\x81\x04\x8a\x04\x93\x04\x9c\x04\xa5\x04\xae\x04\xb7\x04\xc0\x04\xc9\x04\xd2\x04\xdb\x04\xe4\x04\xed\x04\xf6\x04\xff\x05\x08\x05" +"\x11\x05\x1a\x05\x23\x05\x2c\x05\x35\x05\x3e\x05\x47\x05\x50\x05\x59\x05\x62\x05\x6b\x05\x74\x05\x7d\x05\x86\x05\x8f\x05\x98\x05" +"\xa1\x05\xaa\x05\xb3\x05\xbc\x05\xc5\x05\xce\x05\xd7\x05\xe0\x05\xe9\x05\xf2\x05\xfb\x06\x04\x06\x0d\x06\x16\x06\x1f\x06\x28\x06" +"\x31\x06\x3a\x06\x43\x06\x4c\x06\x55\x06\x5a\x06\x64\x06\x6b\x06\x74\x06\x7e\x06\x85\x06\x90\x06\x9a\x06\xa3\x06\xac\x06\xb5\x06" +"\xbf\x06\xc6\x06\xcf\x06\xdb\x06\xdf\x06\xe5\x06\xeb\x06\xf6\x07\x00\x07\x03\x07\x11\x07\x15\x07\x1b\x07\x21\x07\x26\x07\x2d\x07" +"\x3a\x07\x40\x07\x46\x07\x50\x07\x57\x07\x5e\x07\x61\x07\x68\x07\x6f\x07\x7b\x07\x86\x07\x8f\x07\x92\x07\x9a\x07\xa3\x07\xae\x07" +"\xb4\x07\xb9\x07\xbe\x07\xc4\x07\xcf\x07\xdb\x07\xe5\x07\xf1\x07\xf5\x08\x00\x08\x05\x08\x0a\x08\x10\x08\x12\x08\x19\x08\x21\x08" +"\x29\x08\x33\x08\x3d\x08\x49\x08\x55\x08\x5c\x08\x60\x08\x6c\x08\x7d\x08\x86\x08\x8c\x08\x97\x08\x9c\x08\xa8\x08\xb4\x08\xba\x08" +"\xc0\x08\xc6\x08\xd2\x08\xd6\x08\xdf\x08\xe3\x08\xe8\x08\xec\x08\xf2\x08\xfd\x09\x0b\x09\x11\x09\x1c\x09\x22\x09\x2e\x09\x38\x09" +"\x40\x09\x42\x09\x48\x09\x55\x09\x5c\x09\x61\x09\x6b\x09\x72\x09\x7e\x09\x88\x09\x93\x09\x9e\x09\xa4\x09\xa7\x09\xa9\x09\xb0\x09" +"\xbc\x09\xca\x09\xcd\x09\xda\x09\xe0\x09\xe7\x09\xed\x09\xf9\x0a\x06\x0a\x09\x0a\x0f\x0a\x17\x0a\x22\x0a\x2e\x0a\x34\x0a\x39\x0a" +"\x42\x0a\x47\x0a\x50\x0a\x53\x0a\x56\x0a\x5a\x0a\x60\x0a\x6c\x0a\x71\x0a\x76\x0a\x7c\x0a\x89\x0a\x90\x0a\x9d\x0a\xa4\x0a\xab\x0a" +"\xb2\x0a\xb9\x0a\xc0\x0a\xc7\x0a\xce\x0a\xd5\x0a\xdc\x0a\xe3\x0a\xea\x0a\xf1\x0a\xf8\x0a\xff\x0b\x06\x0b\x0d\x0b\x14\x0b\x1b\x0b" +"\x22\x0b\x29\x0b\x30\x0b\x37\x0b\x3e\x0b\x45\x0b\x4c\x0b\x53\x0b\x5a\x0b\x61\x0b\x68\x0b\x6f\x0b\x76\x0b\x7d\x0b\x84\x0b\x8b\x0b" +"\x92\x0b\x99\x0b\xa0\x0b\xa7\x0b\xae\x0b\xb5\x0b\xbc\x0b\xc3\x0b\xca\x0b\xd1\x0b\xd8\x0b\xdf\x0b\xe6\x0b\xed\x0b\xf4\x0b\xfb\x0c" +"\x02\x0c\x09\x0c\x10\x0c\x17\x0c\x1e\x0c\x25\x0c\x2c\x0c\x33\x0c\x3a\x0c\x41\x0c\x48\x0c\x4d\x0c\x56\x0c\x5d\x0c\x64\x0c\x73\x0c" +"\x87\x0c\x93\x0c\x98\x0c\x9e\x0c\xa4\x0c\xaf\x0c\xb8\x0c\xbe\x0c\xc0\x0c\xcb\x0c\xd1\x0c\xd7\x0c\xe1\x0c\xe5\x0c\xe9\x0d\x1f\x0d" +"\x5f\x0d\x72\x0d\x7e\x41\x45\x61\x63\x75\x74\x65\x41\x62\x72\x65\x76\x65\x41\x6c\x70\x68\x61\x41\x6c\x70\x68\x61\x74\x6f\x6e\x6f" +"\x73\x41\x6d\x61\x63\x72\x6f\x6e\x41\x6f\x67\x6f\x6e\x65\x6b\x41\x72\x69\x6e\x67\x61\x63\x75\x74\x65\x42\x65\x74\x61\x43\x61\x63" +"\x75\x74\x65\x43\x63\x61\x72\x6f\x6e\x43\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x43\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x43\x68" +"\x69\x44\x63\x61\x72\x6f\x6e\x44\x63\x72\x6f\x61\x74\x44\x65\x6c\x74\x61\x45\x62\x72\x65\x76\x65\x45\x63\x61\x72\x6f\x6e\x45\x64" +"\x6f\x74\x61\x63\x63\x65\x6e\x74\x45\x6d\x61\x63\x72\x6f\x6e\x45\x6e\x67\x45\x6f\x67\x6f\x6e\x65\x6b\x45\x70\x73\x69\x6c\x6f\x6e" +"\x45\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x45\x74\x61\x45\x74\x61\x74\x6f\x6e\x6f\x73\x45\x75\x72\x6f\x47\x61\x6d\x6d\x61" +"\x47\x62\x72\x65\x76\x65\x47\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x47\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x47\x64\x6f" +"\x74\x61\x63\x63\x65\x6e\x74\x48\x62\x61\x72\x48\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x49\x4a\x49\x62\x72\x65\x76\x65\x49\x64" +"\x6f\x74\x61\x63\x63\x65\x6e\x74\x49\x6d\x61\x63\x72\x6f\x6e\x49\x6f\x67\x6f\x6e\x65\x6b\x49\x6f\x74\x61\x49\x6f\x74\x61\x64\x69" +"\x65\x72\x65\x73\x69\x73\x49\x6f\x74\x61\x74\x6f\x6e\x6f\x73\x49\x74\x69\x6c\x64\x65\x4a\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78" +"\x4b\x61\x70\x70\x61\x4b\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4c\x61\x63\x75\x74\x65\x4c\x61\x6d\x62\x64\x61\x4c\x63\x61" +"\x72\x6f\x6e\x4c\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4c\x64\x6f\x74\x4d\x75\x4e\x61\x63\x75\x74\x65\x4e\x63\x61\x72\x6f" +"\x6e\x4e\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4e\x75\x4f\x62\x72\x65\x76\x65\x4f\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61" +"\x75\x74\x4f\x6d\x61\x63\x72\x6f\x6e\x4f\x6d\x65\x67\x61\x74\x6f\x6e\x6f\x73\x4f\x6d\x69\x63\x72\x6f\x6e\x4f\x6d\x69\x63\x72\x6f" +"\x6e\x74\x6f\x6e\x6f\x73\x4f\x73\x6c\x61\x73\x68\x61\x63\x75\x74\x65\x50\x68\x69\x50\x69\x50\x73\x69\x52\x61\x63\x75\x74\x65\x52" +"\x63\x61\x72\x6f\x6e\x52\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x52\x68\x6f\x53\x61\x63\x75\x74\x65\x53\x63\x65\x64\x69\x6c" +"\x6c\x61\x53\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x53\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x53\x69\x67\x6d\x61\x54\x61" +"\x75\x54\x62\x61\x72\x54\x63\x61\x72\x6f\x6e\x54\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x54\x68\x65\x74\x61\x55\x62\x72\x65" +"\x76\x65\x55\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x55\x6d\x61\x63\x72\x6f\x6e\x55\x6f\x67\x6f\x6e\x65\x6b\x55\x70\x73" +"\x69\x6c\x6f\x6e\x55\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x55\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x55" +"\x72\x69\x6e\x67\x55\x74\x69\x6c\x64\x65\x57\x61\x63\x75\x74\x65\x57\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x57\x64\x69\x65\x72" +"\x65\x73\x69\x73\x57\x67\x72\x61\x76\x65\x58\x69\x59\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x59\x67\x72\x61\x76\x65\x5a\x61\x63" +"\x75\x74\x65\x5a\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x5a\x65\x74\x61\x61\x62\x72\x65\x76\x65\x61\x65\x61\x63\x75\x74\x65\x61\x66" +"\x69\x69\x30\x30\x32\x30\x38\x61\x66\x69\x69\x31\x30\x30\x31\x37\x61\x66\x69\x69\x31\x30\x30\x31\x38\x61\x66\x69\x69\x31\x30\x30" +"\x31\x39\x61\x66\x69\x69\x31\x30\x30\x32\x30\x61\x66\x69\x69\x31\x30\x30\x32\x31\x61\x66\x69\x69\x31\x30\x30\x32\x32\x61\x66\x69" +"\x69\x31\x30\x30\x32\x33\x61\x66\x69\x69\x31\x30\x30\x32\x34\x61\x66\x69\x69\x31\x30\x30\x32\x35\x61\x66\x69\x69\x31\x30\x30\x32" +"\x36\x61\x66\x69\x69\x31\x30\x30\x32\x37\x61\x66\x69\x69\x31\x30\x30\x32\x38\x61\x66\x69\x69\x31\x30\x30\x32\x39\x61\x66\x69\x69" +"\x31\x30\x30\x33\x30\x61\x66\x69\x69\x31\x30\x30\x33\x31\x61\x66\x69\x69\x31\x30\x30\x33\x32\x61\x66\x69\x69\x31\x30\x30\x33\x33" +"\x61\x66\x69\x69\x31\x30\x30\x33\x34\x61\x66\x69\x69\x31\x30\x30\x33\x35\x61\x66\x69\x69\x31\x30\x30\x33\x36\x61\x66\x69\x69\x31" +"\x30\x30\x33\x37\x61\x66\x69\x69\x31\x30\x30\x33\x38\x61\x66\x69\x69\x31\x30\x30\x33\x39\x61\x66\x69\x69\x31\x30\x30\x34\x30\x61" +"\x66\x69\x69\x31\x30\x30\x34\x31\x61\x66\x69\x69\x31\x30\x30\x34\x32\x61\x66\x69\x69\x31\x30\x30\x34\x33\x61\x66\x69\x69\x31\x30" +"\x30\x34\x34\x61\x66\x69\x69\x31\x30\x30\x34\x35\x61\x66\x69\x69\x31\x30\x30\x34\x36\x61\x66\x69\x69\x31\x30\x30\x34\x37\x61\x66" +"\x69\x69\x31\x30\x30\x34\x38\x61\x66\x69\x69\x31\x30\x30\x34\x39\x61\x66\x69\x69\x31\x30\x30\x35\x30\x61\x66\x69\x69\x31\x30\x30" +"\x35\x31\x61\x66\x69\x69\x31\x30\x30\x35\x32\x61\x66\x69\x69\x31\x30\x30\x35\x33\x61\x66\x69\x69\x31\x30\x30\x35\x34\x61\x66\x69" +"\x69\x31\x30\x30\x35\x35\x61\x66\x69\x69\x31\x30\x30\x35\x36\x61\x66\x69\x69\x31\x30\x30\x35\x37\x61\x66\x69\x69\x31\x30\x30\x35" +"\x38\x61\x66\x69\x69\x31\x30\x30\x35\x39\x61\x66\x69\x69\x31\x30\x30\x36\x30\x61\x66\x69\x69\x31\x30\x30\x36\x31\x61\x66\x69\x69" +"\x31\x30\x30\x36\x32\x61\x66\x69\x69\x31\x30\x30\x36\x35\x61\x66\x69\x69\x31\x30\x30\x36\x36\x61\x66\x69\x69\x31\x30\x30\x36\x37" +"\x61\x66\x69\x69\x31\x30\x30\x36\x38\x61\x66\x69\x69\x31\x30\x30\x36\x39\x61\x66\x69\x69\x31\x30\x30\x37\x30\x61\x66\x69\x69\x31" +"\x30\x30\x37\x31\x61\x66\x69\x69\x31\x30\x30\x37\x32\x61\x66\x69\x69\x31\x30\x30\x37\x33\x61\x66\x69\x69\x31\x30\x30\x37\x34\x61" +"\x66\x69\x69\x31\x30\x30\x37\x35\x61\x66\x69\x69\x31\x30\x30\x37\x36\x61\x66\x69\x69\x31\x30\x30\x37\x37\x61\x66\x69\x69\x31\x30" +"\x30\x37\x38\x61\x66\x69\x69\x31\x30\x30\x37\x39\x61\x66\x69\x69\x31\x30\x30\x38\x30\x61\x66\x69\x69\x31\x30\x30\x38\x31\x61\x66" +"\x69\x69\x31\x30\x30\x38\x32\x61\x66\x69\x69\x31\x30\x30\x38\x33\x61\x66\x69\x69\x31\x30\x30\x38\x34\x61\x66\x69\x69\x31\x30\x30" +"\x38\x35\x61\x66\x69\x69\x31\x30\x30\x38\x36\x61\x66\x69\x69\x31\x30\x30\x38\x37\x61\x66\x69\x69\x31\x30\x30\x38\x38\x61\x66\x69" +"\x69\x31\x30\x30\x38\x39\x61\x66\x69\x69\x31\x30\x30\x39\x30\x61\x66\x69\x69\x31\x30\x30\x39\x31\x61\x66\x69\x69\x31\x30\x30\x39" +"\x32\x61\x66\x69\x69\x31\x30\x30\x39\x33\x61\x66\x69\x69\x31\x30\x30\x39\x34\x61\x66\x69\x69\x31\x30\x30\x39\x35\x61\x66\x69\x69" +"\x31\x30\x30\x39\x36\x61\x66\x69\x69\x31\x30\x30\x39\x37\x61\x66\x69\x69\x31\x30\x30\x39\x38\x61\x66\x69\x69\x31\x30\x30\x39\x39" +"\x61\x66\x69\x69\x31\x30\x31\x30\x30\x61\x66\x69\x69\x31\x30\x31\x30\x31\x61\x66\x69\x69\x31\x30\x31\x30\x32\x61\x66\x69\x69\x31" +"\x30\x31\x30\x33\x61\x66\x69\x69\x31\x30\x31\x30\x34\x61\x66\x69\x69\x31\x30\x31\x30\x35\x61\x66\x69\x69\x31\x30\x31\x30\x36\x61" +"\x66\x69\x69\x31\x30\x31\x30\x37\x61\x66\x69\x69\x31\x30\x31\x30\x38\x61\x66\x69\x69\x31\x30\x31\x30\x39\x61\x66\x69\x69\x31\x30" +"\x31\x31\x30\x61\x66\x69\x69\x31\x30\x31\x34\x35\x61\x66\x69\x69\x31\x30\x31\x39\x33\x61\x66\x69\x69\x31\x30\x38\x34\x36\x61\x66" +"\x69\x69\x36\x31\x32\x34\x38\x61\x66\x69\x69\x36\x31\x32\x38\x39\x61\x66\x69\x69\x36\x31\x33\x35\x32\x61\x6c\x70\x68\x61\x61\x6c" +"\x70\x68\x61\x74\x6f\x6e\x6f\x73\x61\x6d\x61\x63\x72\x6f\x6e\x61\x6e\x67\x6c\x65\x6c\x65\x66\x74\x61\x6e\x67\x6c\x65\x72\x69\x67" +"\x68\x74\x61\x6f\x67\x6f\x6e\x65\x6b\x61\x70\x70\x72\x6f\x78\x65\x71\x75\x61\x6c\x61\x72\x69\x6e\x67\x61\x63\x75\x74\x65\x61\x72" +"\x72\x6f\x77\x62\x6f\x74\x68\x61\x72\x72\x6f\x77\x64\x6f\x77\x6e\x61\x72\x72\x6f\x77\x6c\x65\x66\x74\x61\x72\x72\x6f\x77\x72\x69" +"\x67\x68\x74\x61\x72\x72\x6f\x77\x75\x70\x61\x72\x72\x6f\x77\x75\x70\x64\x6e\x61\x72\x72\x6f\x77\x75\x70\x64\x6e\x62\x73\x65\x62" +"\x65\x74\x61\x63\x61\x63\x75\x74\x65\x63\x63\x61\x72\x6f\x6e\x63\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x63\x64\x6f\x74\x61\x63" +"\x63\x65\x6e\x74\x63\x68\x69\x63\x69\x72\x63\x6c\x65\x6d\x75\x6c\x74\x69\x70\x6c\x79\x63\x6c\x75\x62\x64\x63\x61\x72\x6f\x6e\x64" +"\x63\x72\x6f\x61\x74\x64\x65\x6c\x74\x61\x64\x69\x61\x6d\x6f\x6e\x64\x64\x69\x65\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73\x65\x62" +"\x72\x65\x76\x65\x65\x63\x61\x72\x6f\x6e\x65\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x65\x6c\x65\x6d\x65\x6e\x74\x65\x6d\x61\x63\x72" +"\x6f\x6e\x65\x6e\x67\x65\x6f\x67\x6f\x6e\x65\x6b\x65\x70\x73\x69\x6c\x6f\x6e\x65\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x65" +"\x71\x75\x69\x76\x61\x6c\x65\x6e\x63\x65\x65\x73\x74\x69\x6d\x61\x74\x65\x64\x65\x74\x61\x65\x74\x61\x74\x6f\x6e\x6f\x73\x65\x78" +"\x63\x6c\x61\x6d\x64\x62\x6c\x65\x78\x69\x73\x74\x65\x6e\x74\x69\x61\x6c\x66\x65\x6d\x61\x6c\x65\x66\x72\x61\x6e\x63\x67\x61\x6d" +"\x6d\x61\x67\x62\x72\x65\x76\x65\x67\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x67\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x67" +"\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x67\x72\x65\x61\x74\x65\x72\x65\x71\x75\x61\x6c\x68\x62\x61\x72\x68\x63\x69\x72\x63\x75\x6d" +"\x66\x6c\x65\x78\x68\x65\x61\x72\x74\x68\x6f\x75\x73\x65\x69\x62\x72\x65\x76\x65\x69\x6a\x69\x6d\x61\x63\x72\x6f\x6e\x69\x6e\x66" +"\x69\x6e\x69\x74\x79\x69\x6e\x74\x65\x67\x72\x61\x6c\x69\x6e\x74\x65\x67\x72\x61\x6c\x62\x74\x69\x6e\x74\x65\x67\x72\x61\x6c\x74" +"\x70\x69\x6e\x74\x65\x72\x73\x65\x63\x74\x69\x6f\x6e\x69\x6e\x76\x73\x6d\x69\x6c\x65\x66\x61\x63\x65\x69\x6f\x67\x6f\x6e\x65\x6b" +"\x69\x6f\x74\x61\x69\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69\x73\x69\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f" +"\x73\x69\x6f\x74\x61\x74\x6f\x6e\x6f\x73\x69\x74\x69\x6c\x64\x65\x6a\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x6b\x61\x70\x70\x61" +"\x6b\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6b\x67\x72\x65\x65\x6e\x6c\x61\x6e\x64\x69\x63\x6c\x61\x63\x75\x74\x65\x6c\x61" +"\x6d\x62\x64\x61\x6c\x63\x61\x72\x6f\x6e\x6c\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6c\x64\x6f\x74\x6c\x65\x73\x73\x65\x71" +"\x75\x61\x6c\x6c\x69\x72\x61\x6c\x6f\x6e\x67\x73\x6d\x61\x6c\x65\x6d\x69\x6e\x75\x74\x65\x6d\x75\x73\x69\x63\x61\x6c\x6e\x6f\x74" +"\x65\x6d\x75\x73\x69\x63\x61\x6c\x6e\x6f\x74\x65\x64\x62\x6c\x6e\x61\x63\x75\x74\x65\x6e\x61\x70\x6f\x73\x74\x72\x6f\x70\x68\x65" +"\x6e\x63\x61\x72\x6f\x6e\x6e\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6e\x6f\x74\x65\x6c\x65\x6d\x65\x6e\x74\x6e\x6f\x74\x65" +"\x71\x75\x61\x6c\x6e\x75\x6f\x62\x72\x65\x76\x65\x6f\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x6f\x6d\x61\x63\x72\x6f\x6e" +"\x6f\x6d\x65\x67\x61\x6f\x6d\x65\x67\x61\x74\x6f\x6e\x6f\x73\x6f\x6d\x69\x63\x72\x6f\x6e\x6f\x6d\x69\x63\x72\x6f\x6e\x74\x6f\x6e" +"\x6f\x73\x6f\x72\x74\x68\x6f\x67\x6f\x6e\x61\x6c\x6f\x73\x6c\x61\x73\x68\x61\x63\x75\x74\x65\x70\x61\x72\x74\x69\x61\x6c\x64\x69" +"\x66\x66\x70\x65\x73\x65\x74\x61\x70\x68\x69\x70\x69\x70\x72\x6f\x64\x75\x63\x74\x70\x72\x6f\x70\x65\x72\x73\x75\x62\x73\x65\x74" +"\x70\x72\x6f\x70\x65\x72\x73\x75\x70\x65\x72\x73\x65\x74\x70\x73\x69\x71\x75\x6f\x74\x65\x72\x65\x76\x65\x72\x73\x65\x64\x72\x61" +"\x63\x75\x74\x65\x72\x61\x64\x69\x63\x61\x6c\x72\x63\x61\x72\x6f\x6e\x72\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x72\x65\x76" +"\x6c\x6f\x67\x69\x63\x61\x6c\x6e\x6f\x74\x72\x68\x6f\x73\x61\x63\x75\x74\x65\x73\x63\x65\x64\x69\x6c\x6c\x61\x73\x63\x69\x72\x63" +"\x75\x6d\x66\x6c\x65\x78\x73\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x73\x65\x63\x6f\x6e\x64\x73\x69\x67\x6d\x61\x73\x6d\x69" +"\x6c\x65\x66\x61\x63\x65\x73\x70\x61\x64\x65\x73\x75\x6d\x6d\x61\x74\x69\x6f\x6e\x73\x75\x6e\x74\x61\x75\x74\x62\x61\x72\x74\x63" +"\x61\x72\x6f\x6e\x74\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x74\x68\x65\x74\x61\x74\x6f\x6e\x6f\x73\x75\x62\x72\x65\x76\x65" +"\x75\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x75\x6d\x61\x63\x72\x6f\x6e\x75\x6e\x64\x65\x72\x73\x63\x6f\x72\x65\x64\x62" +"\x6c\x75\x6e\x69\x30\x30\x41\x30\x75\x6e\x69\x30\x30\x41\x44\x75\x6e\x69\x30\x32\x31\x41\x75\x6e\x69\x30\x32\x31\x42\x75\x6e\x69" +"\x30\x32\x43\x39\x75\x6e\x69\x30\x33\x38\x37\x75\x6e\x69\x30\x33\x39\x34\x75\x6e\x69\x30\x33\x41\x39\x75\x6e\x69\x30\x33\x42\x43" +"\x75\x6e\x69\x30\x33\x43\x32\x75\x6e\x69\x30\x34\x30\x30\x75\x6e\x69\x30\x34\x30\x44\x75\x6e\x69\x30\x34\x35\x30\x75\x6e\x69\x30" +"\x34\x35\x44\x75\x6e\x69\x30\x34\x39\x32\x75\x6e\x69\x30\x34\x39\x33\x75\x6e\x69\x30\x34\x39\x36\x75\x6e\x69\x30\x34\x39\x37\x75" +"\x6e\x69\x30\x34\x39\x38\x75\x6e\x69\x30\x34\x39\x39\x75\x6e\x69\x30\x34\x39\x41\x75\x6e\x69\x30\x34\x39\x42\x75\x6e\x69\x30\x34" +"\x39\x43\x75\x6e\x69\x30\x34\x39\x44\x75\x6e\x69\x30\x34\x41\x30\x75\x6e\x69\x30\x34\x41\x31\x75\x6e\x69\x30\x34\x41\x32\x75\x6e" +"\x69\x30\x34\x41\x33\x75\x6e\x69\x30\x34\x41\x41\x75\x6e\x69\x30\x34\x41\x42\x75\x6e\x69\x30\x34\x41\x45\x75\x6e\x69\x30\x34\x41" +"\x46\x75\x6e\x69\x30\x34\x42\x30\x75\x6e\x69\x30\x34\x42\x31\x75\x6e\x69\x30\x34\x42\x32\x75\x6e\x69\x30\x34\x42\x33\x75\x6e\x69" +"\x30\x34\x42\x36\x75\x6e\x69\x30\x34\x42\x37\x75\x6e\x69\x30\x34\x42\x38\x75\x6e\x69\x30\x34\x42\x39\x75\x6e\x69\x30\x34\x42\x41" +"\x75\x6e\x69\x30\x34\x42\x42\x75\x6e\x69\x30\x34\x43\x30\x75\x6e\x69\x30\x34\x43\x42\x75\x6e\x69\x30\x34\x43\x43\x75\x6e\x69\x30" +"\x34\x44\x38\x75\x6e\x69\x30\x34\x45\x32\x75\x6e\x69\x30\x34\x45\x33\x75\x6e\x69\x30\x34\x45\x38\x75\x6e\x69\x30\x34\x45\x39\x75" +"\x6e\x69\x30\x34\x45\x45\x75\x6e\x69\x30\x34\x45\x46\x75\x6e\x69\x32\x30\x33\x45\x75\x6e\x69\x32\x30\x41\x46\x75\x6e\x69\x32\x31" +"\x32\x36\x75\x6e\x69\x32\x32\x31\x35\x75\x6e\x69\x32\x32\x31\x39\x75\x6e\x69\x32\x32\x32\x37\x75\x6e\x69\x32\x32\x32\x38\x75\x6e" +"\x69\x32\x32\x39\x35\x75\x6e\x69\x32\x35\x41\x31\x75\x6e\x69\x6f\x6e\x75\x6e\x69\x76\x65\x72\x73\x61\x6c\x75\x6f\x67\x6f\x6e\x65" +"\x6b\x75\x70\x73\x69\x6c\x6f\x6e\x75\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x75\x70\x73\x69\x6c\x6f\x6e\x64\x69" +"\x65\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73\x75\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x75\x72\x69\x6e\x67\x75\x74\x69\x6c" +"\x64\x65\x77\x61\x63\x75\x74\x65\x77\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x77\x64\x69\x65\x72\x65\x73\x69\x73\x77\x67\x72\x61" +"\x76\x65\x78\x69\x79\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x79\x67\x72\x61\x76\x65\x7a\x61\x63\x75\x74\x65\x7a\x64\x6f\x74\x61" +"\x63\x63\x65\x6e\x74\x7a\x65\x74\x61\x31\x2e\x30\x30\x28\x55\x52\x57\x29\x2b\x2b\x2c\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x32" +"\x30\x31\x34\x20\x62\x79\x20\x28\x55\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69\x67\x6e\x20\x26\x20\x44\x65\x76\x65\x6c\x6f\x70\x6d" +"\x65\x6e\x74\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x28\x55\x52\x57\x29\x2b\x2b\x2c\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x32" +"\x30\x31\x34\x20\x62\x79\x20\x28\x55\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69\x67\x6e\x20\x26\x20\x44\x65\x76\x65\x6c\x6f\x70\x6d" +"\x65\x6e\x74\x4e\x69\x6d\x62\x75\x73\x20\x52\x6f\x6d\x61\x6e\x20\x49\x74\x61\x6c\x69\x63\x4e\x69\x6d\x62\x75\x73\x20\x52\x6f\x6d" +"\x61\x6e\x00\xdd\x02\x00\x01\x00\x06\x00\x0b\x00\x10\x00\x13\x00\x1b\x00\x20\x00\x67\x00\xf3\x01\x45\x01\x4a\x01\x53\x01\x80\x01" +"\x8d\x01\x94\x01\x9a\x01\xa1\x01\xb8\x02\x43\x02\x86\x02\x9b\x02\xa6\x02\xaf\x02\xb8\x02\xbd\x02\xcb\x02\xd0\x03\x4c\x03\xb9\x04" +"\x02\x04\x0a\x04\x24\x04\x40\x04\x55\x04\x62\x04\x74\x04\x81\x04\x8b\x04\x95\x04\x9d\x04\xa2\x04\xaa\x04\xb0\x04\xba\x04\xc1\x04" +"\xc8\x04\xd0\x05\x27\x05\x39\x05\x7a\x05\xb5\x05\xc0\x05\xc6\x05\xca\x05\xdb\x05\xed\x05\xfc\x06\x05\x06\x18\x06\x24\x06\x32\x06" +"\x42\x06\x4e\x06\x57\x06\x68\x06\x70\x06\x7a\x06\x84\x06\x93\x06\x9c\x06\xa3\x06\xac\x06\xb9\x06\xc1\x06\xc9\x06\xd4\x06\xdf\x07" +"\x8b\x08\x35\x08\x89\x09\x22\x09\xaa\x0a\x28\x0a\x9a\x0a\xf6\x0a\xfd\x0b\x68\x0b\x9e\x0b\xcb\x0c\x22\x0c\x6c\x0c\xca\x0c\xe1\x0d" +"\x39\x0d\x60\x0d\xb3\x0d\xdc\x0e\x28\x0e\x34\x0e\x77\x0e\xa3\x0e\xe8\x0f\x28\x0f\x65\x0f\xa3\x0f\xc0\x0f\xf5\x10\x25\x10\x50\x10" +"\x5d\x10\x8a\x10\xa0\x10\xca\x10\xf0\x11\x10\x11\x1a\x11\x41\x11\x67\x11\x8a\x11\xa0\x11\xa6\x11\xb9\x11\xdb\x11\xfb\x12\x1c\x12" +"\x3d\x12\x45\x12\x65\x12\x85\x12\xa4\x12\xaf\x12\xcd\x12\xe1\x12\xef\x13\x0a\x13\x26\x13\x29\x13\x42\x13\x4b\x13\x50\x13\x5a\x13" +"\x72\x13\x76\x13\x8f\x13\xa7\x13\xb1\x13\xbe\x13\xd6\x13\xe8\x13\xfe\x14\x14\x14\x28\x14\x3e\x14\x51\x14\x64\x14\x78\x14\x8c\x14" +"\xa0\x14\xb4\x14\xbd\x14\xd0\x14\xd8\x14\xeb\x14\xf7\x15\x09\x15\x1b\x15\x2d\x15\x3f\x15\x51\x15\x63\x15\x74\x15\x85\x15\x96\x15" +"\xa7\x15\xb6\x15\xc5\x15\xd4\x15\xe2\x15\xf2\x16\x02\x16\x10\x16\x20\x16\x2e\x16\x36\x16\x45\x16\x52\x16\x60\x16\x6e\x16\x7c\x16" +"\x8a\x16\x98\x16\xa6\x16\xb4\x16\xc0\x16\xc4\x16\xd1\x16\xde\x16\xeb\x16\xf0\x16\xfd\x17\x0a\x17\x0f\x17\x1c\x17\x29\x17\x34\x17" +"\x40\x17\x4c\x17\x58\x17\x64\x17\x6e\x17\x79\x17\x84\x17\x8f\x17\x9a\x17\xa5\x17\xb0\x17\xbb\x17\xc6\x17\xd1\x17\xdc\x17\xe7\x17" +"\xed\x19\x86\x79\x05\x0b\x1b\x90\x9d\x05\x0b\x06\x86\x79\x05\x0b\x81\x1d\x0e\x15\x6f\x75\x76\x70\x5b\x1d\x0b\x06\x87\x79\x05\x0b" +"\xf8\xc8\x9b\x15\x52\x90\x85\x93\x7e\xd4\x2d\xf8\xca\x18\x71\x06\xfb\xb6\xfc\x88\x3c\xfb\x19\x81\x80\x63\x83\x19\x7b\xf7\x4f\x9b" +"\x07\x58\x90\x83\x90\xa4\x1a\x9e\x8e\x94\x9c\xad\x1e\xc4\xf7\x05\x05\xf7\x70\x06\xc7\x1d\xf7\x8a\x07\xfc\x19\xf7\x9a\x15\xf7\x2a" +"\xf7\x98\xb7\xfb\x98\x05\x0b\xf9\x0e\xf9\x21\x15\xfc\x85\x7b\x06\xc9\x85\x9a\x83\x70\x1a\x7f\x85\x6a\x86\x78\x1e\xfb\x0f\xfc\x4e" +"\x7a\x52\x83\x84\x53\x81\x19\x7b\xf8\x8f\x07\xc9\xf7\x36\x7b\x93\x5c\x4a\x71\x72\x60\x77\x19\x7a\x66\x47\x81\x3f\x1b\x53\x74\x95" +"\xa3\x97\x97\xba\xa3\xe2\x1f\xab\xf7\x07\x05\x8a\x9b\x9a\x8a\x9b\x1b\xb9\x8a\xa7\x8a\xa3\x86\x92\x85\x19\x94\x84\x8d\x84\x77\x1a" +"\x79\x89\x7f\x86\x75\x1e\x9f\x86\xcf\xf7\x7c\x79\x8f\x65\x36\x81\x84\x31\x88\x19\x7f\x6b\x8a\x8a\x68\x1f\xcd\xf7\x7d\x05\xa2\x91" +"\x95\x8e\xc5\x1b\xf7\x30\xae\x7e\x4f\x7e\x8a\x7c\x8a\x7a\x1f\xa0\x89\x05\x0b\xf7\xfa\xf7\x01\x15\x50\x43\x6c\x7b\x5f\x1b\x53\x66" +"\xaf\xc2\x9a\x8d\x99\x93\xab\x1f\xa7\x8f\x05\xf7\x2a\xa0\xf5\xd7\xe1\x1a\xb5\x6d\xa5\x59\xfb\x24\xfb\x31\xfb\x38\xfb\x2b\x3a\xc1" +"\x53\xd9\xd2\xd8\xb4\xce\xc6\x1e\xfb\x6e\xf7\x2f\x15\xe4\xad\xd5\xd8\xbe\x1b\xa0\x99\x7c\x73\x6c\x78\x67\x6c\x6d\x1f\x66\x68\x65" +"\x79\x35\x76\x08\x0b\x15\xfb\xc1\x46\x1d\x78\x1d\xfb\x00\x7c\x48\xea\x1d\x0b\x9c\x1d\xd7\x1a\xde\x51\xc4\x36\x1e\x7f\x76\x15\xb6" +"\xa7\x66\x52\x41\x6b\x28\x5e\x4a\x1f\x56\x66\x65\x72\x60\x1b\x5c\x6c\xaf\xc2\xd5\xa8\xe3\xbc\xd2\x1f\xc4\xb2\xb5\xa8\xb6\x1b\x0b" +"\x83\x16\xf7\x88\x9b\x06\xae\x1d\xfb\x8b\xab\x1d\x0b\x8c\x8d\x8e\x90\x1f\x8f\x0b\x9d\x05\xfb\xa0\x06\x0b\xf7\x72\xf7\x06\x7f\x1d" +"\x0b\x15\xdf\xba\xb9\xc3\xc3\x1a\xb3\x72\xaa\x6a\x6e\x75\x77\x71\x78\x38\x1d\x70\x56\x68\x1e\x0e\x9a\xf8\x24\x15\x8e\x97\x93\x8c" +"\x96\x1b\xb4\x9e\x7b\x55\x9f\x1f\xa6\x41\xbf\xfb\x6a\x65\x1a\x7b\x84\x7b\x7d\x78\x1e\x6f\x66\x74\x6f\x7f\x7e\x08\x75\x76\x80\x83" +"\x7e\x1b\x84\x85\x8e\x93\x80\x1f\x97\x7c\x81\x90\x7f\x1b\x75\x7a\x7a\x75\x71\xa0\x79\xa9\xcb\xf7\x16\xf7\x29\xf7\x5b\xf7\x01\x1f" +"\xcf\xf7\x0f\xa7\xd3\xbc\x1a\xa9\x72\xa4\x6d\x74\x7b\x7c\x75\x7b\x93\x81\x9f\x7e\x1e\x9e\x80\x92\x82\x7d\x1a\x63\x67\x3e\x35\xfb" +"\x22\x1e\x77\xf7\x08\x05\xe4\x7c\x53\xf7\x38\x7c\x1b\x87\x06\x8a\x89\x88\x8b\x87\x1b\x83\x8a\x66\x85\x56\x81\x86\x8a\x7e\x88\x7d" +"\x89\x08\x0b\xf8\x60\xf7\x09\x15\x47\x55\x7f\x80\x7b\x1b\x82\x84\x92\x94\x93\x8f\x9e\x95\xaf\x1f\xc4\xf7\x62\x05\x90\xa0\x8f\xa1" +"\x99\x1a\xb0\xf7\x04\x1d\xce\xf7\x6e\x8a\x1d\x7f\x85\x6a\x83\x6c\x1f\x5f\xfb\x39\x05\x7e\x57\x88\x7e\x81\x1a\x65\x99\x7b\xac\xb8" +"\xa4\x9f\xe8\xd1\x1e\x0b\x37\x1d\xc3\xc3\x1a\xb3\x72\xaa\x6a\x6e\x75\x77\x71\x78\x38\x1d\x70\x56\x68\x1e\x0e\x1b\x90\x9d\x05\xfb" +"\xa4\x06\x86\x79\x05\x0b\x8d\x8e\x82\x1f\x7b\x91\x81\x99\x0b\xa5\xa3\xa9\xaa\x71\xa5\x6d\x1f\x0b\x15\xe0\xba\xb8\x0b\x91\x81\x9e" +"\x7a\x1e\x9a\x7d\x90\x83\x81\x1a\x70\x75\x0b\xf8\x6c\x6d\x1d\x0b\xf8\xcb\x9b\x15\x5f\x8e\x77\x9c\x78\xbf\x2e\xf7\x89\x18\xd8\x9c" +"\xac\x99\xaf\xab\x08\xac\xa8\x9d\xb2\xb8\x1a\xe8\x41\xbe\xfb\x1a\x1e\xfb\x8c\x7b\x06\xb5\x85\x90\x8a\x95\x84\x08\x93\x86\x91\x7f" +"\x80\x1a\x7f\x86\x73\x84\x70\x1e\xfb\x0f\xfc\x4e\x79\x50\x84\x85\x53\x82\x19\x7b\xf7\x88\x9b\x07\x4d\x93\x85\x8f\xae\x1a\x95\x8d" +"\x95\x95\xb0\x1e\xc3\xf7\x65\xcc\x86\xf7\x0f\xfb\xd8\x05\xf7\x28\x06\xfb\x97\xf8\xe7\x15\xa0\x91\x98\x92\xab\x1b\xde\xb4\x66\x3f" +"\x29\x4b\x58\xfb\x11\x79\x83\x8c\x8f\x72\x1f\x0b\xbc\xf7\xbd\x15\xbc\xa2\xb1\xb8\x9f\x1b\x93\x91\x84\x80\x84\x89\x84\x86\x77\x1f" +"\x60\xfb\x36\x05\x83\x6e\x87\x70\x75\x1a\x4c\xbc\x5d\xce\xd0\xcd\xbd\xde\xb5\x1e\xad\xcf\xa4\xee\xd1\x1a\xbc\x74\xae\x69\x73\x77" +"\x77\x71\x7a\x90\x80\x9e\x6f\x1e\xa4\x68\x92\x78\x6e\x1a\x63\x78\x50\x6d\x58\x1e\x50\x68\x5d\x68\x61\x1b\x68\x74\xa9\xb7\x9f\x92" +"\xb3\x96\xb5\x1f\xb3\xf7\x28\x05\x8e\x97\x8f\xa5\x96\x1a\xab\x77\xa3\x70\x5b\x58\x5a\x31\x5f\x1e\x0b\xf7\xf2\xf5\x15\x50\x54\x64" +"\x75\x5a\x1b\x52\x69\xb5\xd3\xe0\xae\xe5\xc3\xc5\x1f\xa9\xa8\xb3\x9d\xb3\x1b\xa2\x99\x83\x7f\x86\x89\x86\x87\x82\x1f\x84\x7e\x89" +"\x85\x81\x1a\x73\x9a\x7d\xa3\xa7\x9f\x9e\xa6\xba\x5f\xad\x4e\xfb\x2a\xfb\x20\xfb\x26\xfb\x30\x2c\xc1\x54\xe8\xd6\xc0\xa9\xd8\xc8" +"\x1e\x0b\x84\x1d\xad\xa7\xec\xcc\x1e\x0b\x15\x4c\x72\x5b\x67\x4d\x1b\x4b\x64\xaf\xca\x86\x1f\x6e\x06\xfb\x00\x8c\xb4\x59\xe3\x1b" +"\xc1\xb9\x5a\x1d\x05\xd4\x9e\x9d\x99\xd4\x34\x1d\xa3\x98\x8a\x87\x94\x1f\x9b\x85\x95\x7d\x7b\x1a\x7e\x89\x7e\x87\x7d\x55\x1d\x0b" +"\x37\x1d\xc2\xc4\x1a\xb3\x72\xaa\x6a\x6e\x75\x77\x71\x78\x38\x1d\x71\x56\x67\x1e\x0e\x7c\x1b\x77\x7c\x7c\x78\x7f\x91\x81\x98\x81" +"\x1f\x0e\x6f\x75\x76\x70\x70\xa2\x74\xa7\xa6\xa1\xa0\xa6\xa6\x74\xa2\x70\x1f\x0b\x1f\x86\x83\x8a\x86\x83\x1a\x73\x9a\x7b\xa1\xa2" +"\x0b\x1b\xd1\xbc\xaf\xbd\xb5\x6b\xa5\x59\x0b\x3b\x06\xa7\xf2\x05\x8c\x8d\x8b\x8d\x0b\x06\x80\x58\x05\xf7\xc1\x06\x0e\x8a\x89\x82" +"\x1f\x0e\x08\x91\x88\x8f\x83\x83\x1a\x0b\x7a\x4e\x8a\x20\x1d\x0b\x1b\xa6\x9e\x79\x71\x71\x78\x7c\x69\x0b\x1e\xf7\x0e\xf8\x5d\x05" +"\x0b\x79\x05\xc2\x8a\x9c\x81\x0b\x1a\x80\x89\x7c\x87\x7d\x1e\x0b\xf8\xd2\xf8\x8d\x15\x20\xfc\x24\x79\x46\x78\x7a\x4e\xf3\x1d\x05" +"\x54\x8c\x7a\x96\xaa\x1a\x96\x8d\x97\x8f\x9b\x1e\xf7\x0f\xf8\x5d\x05\xd3\x9d\x9e\x9a\xd4\x21\x1d\xfb\xa4\x06\x86\x67\x1d\x78\x1a" +"\x85\x8b\x87\x89\x81\x1e\xfc\x13\xfc\x2f\xf3\xf8\x18\x05\xd4\x9e\x9d\x99\xd4\x21\x1d\xfb\xa4\x66\x1d\x7c\x87\x7f\x9d\x1d\x9c\x1a" +"\x96\x8d\x97\x8e\x98\x1e\x0b\xa0\x1d\x43\xfb\xa7\x89\x82\x8a\x87\x93\x1d\xe3\xf7\xe1\x05\xdf\x06\x0b\xf9\x0d\xf9\x21\x15\xfc\xa8" +"\x06\x61\xfb\x2e\x9d\x87\xc0\xf7\x00\xac\x9c\xf7\x2c\x89\x19\xfb\x24\xfc\xa4\x64\x1d\xf7\xb6\x9b\x07\x35\x92\x87\x8d\xb0\x1a\x97" +"\x8d\x95\x95\xaf\x1e\xf7\x1f\xf8\x86\x05\xc2\x06\xd3\xab\x72\x53\x7e\x8a\x7c\x89\x7a\x1f\x9c\x89\x05\x0b\x79\x51\x84\x85\x53\x81" +"\x19\x7b\xf7\x8a\x9b\x07\x4f\x93\x80\x92\xa8\x1a\x92\x8c\x93\x8d\x92\x1e\xcd\xf7\x88\x05\xf7\xb1\x06\x4a\xfb\x80\x7b\x57\x77\x7c" +"\x4a\x84\x19\x7b\xf7\xa5\x9b\x07\x4a\x91\x7e\x93\xa8\x1a\x94\x8c\x91\x8d\x93\x1e\x0b\x15\x6a\x80\x7e\x8e\x1d\xaf\xcf\x99\x1f\x0e" +"\x98\x1d\xf7\x46\xb9\x1d\x88\x1d\xb9\x0b\x1e\xfb\x0e\xfc\x5e\x7a\x47\x77\x79\x4e\x8a\x20\x1d\xf7\x97\x06\x0b\x15\xae\x06\xf7\x3f" +"\xf5\x05\x97\x92\x90\x94\x97\x1a\xa0\x7b\x9a\xd6\x1d\x8d\x95\x4a\x1d\x76\x79\x8f\x96\x6e\x1f\x7a\x6e\x05\x7b\x0b\xf1\x1d\xfb\xa3" +"\x06\x86\x4c\x1d\x0b\x16\x72\x77\x78\x73\x72\xa0\x76\xa4\xa4\x9e\x9e\xa3\xa4\x76\xa0\x73\x1f\x0e\xa3\xb7\xac\x1f\x9f\xa6\x94\xa0" +"\x94\xb5\x08\x0e\x6f\xa0\x75\xa7\xa6\xa1\xa1\xa6\xa4\x74\xa3\x72\x1f\x0b\xf7\x01\x1d\xa2\xad\x7c\xb8\x1b\xc0\xba\xa3\xb7\xac\x1f" +"\x9f\x0b\xbf\xd4\xb4\x7e\xa0\x56\xba\x1e\x72\xa1\x15\x0b\x8d\x08\x48\x06\xd1\xf7\x97\x05\x0b\x15\xae\x06\xf7\x3f\xf5\x05\x97\x92" +"\x90\x94\x97\x1a\x9f\x7b\x9b\x0b\x4e\x8a\x20\x1d\xf7\x93\x06\x0b\x58\x62\x4e\x6b\x97\x76\xb3\x67\x1e\x0b\x69\x73\x08\x69\x5c\x4c" +"\x78\x47\x1b\x0b\x06\x7b\x83\x81\x85\x77\x1b\x82\x80\x8d\x90\x76\x1f\x96\x0b\x7b\x56\x73\x7b\x49\x86\x19\x7b\x0b\x81\x83\x88\x84" +"\x85\x1e\x0b\x06\x86\x4c\x1d\x6a\x1a\x81\x89\x0b\x79\x05\xa7\x92\x8a\x87\x96\x1f\x9b\x86\x95\x7c\x0b\x1f\x7b\x91\x81\x99\x9c\x1a" +"\x0b\xf9\x21\x15\xfb\x5b\x7b\x06\x0b\x81\x82\x1b\x83\x83\x92\x93\x95\x8e\x9b\x0b\x1f\xa8\x06\xab\x95\x9b\x9a\xa4\x1b\x9c\x0b\xf9" +"\x2d\x15\x92\xa6\x05\xfb\xaa\x06\x84\x70\x05\x97\x06\xb9\x9c\x80\x6b\x80\x8a\x83\x86\x7a\x1f\x27\x87\x51\x7d\x50\x68\x08\x2e\x55" +"\x4b\xfb\x00\x23\x1a\x4a\xa7\x58\xbf\x6e\x1e\xb5\x73\xb9\x82\xd9\x8a\x88\x7e\x18\x7b\x50\x74\x79\x4f\x8a\x08\x80\x06\x84\x70\x05" +"\xf7\xaa\x06\x92\xa6\x05\x80\x06\x5c\x79\x96\xab\x96\x8b\x8c\x91\xa2\x1f\x8e\x98\xf7\x12\x94\xc4\x9c\xcb\xbb\x19\xda\xc6\xbf\xf0" +"\xed\x1a\xc6\x71\xba\x5d\xa5\x1e\x63\xa1\x5b\x94\x32\x8e\x08\xc5\x97\xa5\xa0\xc7\x1b\xfb\xd1\xfc\xb6\x15\x5f\x8d\x78\x90\x71\x97" +"\x08\x5e\xa1\x79\xab\xc4\x1a\xe7\xb3\xef\xc3\xbe\x1e\xb7\xb1\xbe\x9e\xd5\x92\x08\xee\x8d\x15\xf5\x80\xba\x61\x37\x1a\x46\x6e\x36" +"\x63\x57\x1e\x5b\x4e\x59\x73\x28\x80\x08\x0e\xf8\x29\x15\x4e\x06\x88\x86\x8d\x91\x83\x1f\x9d\x70\x6a\x95\x65\x1b\xfb\x03\x31\x3e" +"\x2d\x57\xa0\x6d\xc5\x71\x1f\x50\x63\x79\x77\x73\x1a\x7e\x93\x7f\x9e\x7d\x1e\x28\x4a\x79\x77\x5d\x1a\x46\xcd\x5e\xf0\xf7\x12\xdf" +"\xc6\xe2\xca\x5c\xb6\x2b\xa5\x1e\x5f\x96\x71\x9b\x9a\x1a\x9a\xa2\xa5\x98\x8d\x8d\x8b\x8a\x8e\x1e\x89\x94\x96\x8a\x96\x1b\xe7\xe8" +"\xdc\xd9\x9c\x88\x9c\x85\xa1\x1f\xbd\x06\xfb\xd8\xfb\xe6\x15\x8c\x8d\x8a\x8a\x8d\x1f\x8e\x8a\x95\x88\x9b\x86\x08\xf6\x69\xaf\x70" +"\x5d\x1a\x55\x51\x63\x3e\x3b\x5c\xb1\xcb\xa3\x91\x9c\x9b\x9e\x1e\x9d\x99\xb4\xab\x93\x1b\xf7\x28\xf8\x1b\x15\xb0\x9e\x73\x5c\x67" +"\x7f\x60\x78\x69\x1f\x62\x75\x6c\x75\x69\x1b\x65\x75\xa7\xba\xe7\xc4\xdb\xcc\x1f\x0b\x15\xf7\xa1\x06\x4f\xfb\x75\x79\x45\x78\x7b" +"\x49\x8a\x20\x1d\xf7\x9e\x06\x90\x9d\x05\x73\x7d\x35\x1d\x9c\x1a\x98\x8d\x97\x8f\x9a\x4b\x1d\xd3\x9e\x9d\x9a\xd0\x1b\x90\x2e\x1d" +"\x86\x79\x05\xc0\x9e\x80\x6d\x7e\x89\x7e\x87\x7d\x1f\x57\xfb\x58\x05\xfb\xa1\x06\xbe\xf7\x52\x3f\x1d\x90\x9d\x05\x73\x7e\x35\x1d" +"\x9b\x1a\x95\x8d\x9b\x8f\x9a\x1e\x0e\xf9\x66\xf9\x21\x15\xfb\x72\x7b\x06\x97\x8a\x94\x8a\x91\x8a\x97\x8a\x95\x89\x91\x87\x08\x8e" +"\x89\x8e\x86\x86\x1a\x73\x54\x55\x32\x4d\x1e\xfb\x2c\x21\xc0\xf7\x56\x9a\xbd\xa6\x9f\xc6\x8f\x19\x9b\xfb\xa5\x7b\x07\xca\x85\x99" +"\x83\x6e\x1a\x7c\x88\x77\x83\x70\x1e\xfb\x0f\xfc\x4e\x79\x4f\x86\x86\x50\x82\x19\x7b\xf7\x8c\x9b\x07\x4c\x92\x82\x91\xaa\x1a\x96" +"\x8c\x92\x92\xa0\x1e\x8d\x91\x8d\x92\x8d\x93\xc9\xf7\x78\x18\xf7\x0d\xfb\x64\x05\xa3\x62\x99\x68\x78\x1a\x7c\x7d\x83\x6b\x88\x1e" +"\x86\x80\x8a\x89\x7e\x1f\x7b\xf7\xa7\x9b\x07\x4c\x91\x85\x8e\x6f\xba\xfb\x42\xf7\xc3\x18\xf7\xc0\xf7\x76\xa7\xa0\xa2\x96\xa3\x8f" +"\x19\x0b\xf8\x40\xf8\xbe\x15\x69\x06\x54\xfb\x06\x05\x8c\x83\x87\x8b\x83\x1b\xfb\x21\xfb\x2a\xfb\x34\xfb\x2b\x64\x98\x67\xa3\x72" +"\x1f\x9a\x7b\x98\x83\xaa\x81\x4b\xfb\x17\x18\xae\x06\xc8\xf7\x12\x05\x8a\x91\x91\x8a\x93\x1b\xc9\xc7\xa6\xbf\xc4\x1f\xd1\xcc\xb7" +"\xe4\xd6\x1a\xa7\x83\xab\x7e\xa1\x1e\x79\xa9\x78\x99\x62\x97\x08\xfb\x7a\xfc\x2a\x15\x78\x9e\x82\xa0\xa7\x1a\xea\xb8\xf7\x04\xcd" +"\xd1\x1e\xa8\xa6\xae\x9c\xac\x1b\x8e\x8d\x8a\x8a\x90\x1f\xa8\x7f\x15\x9e\x76\x94\x72\x68\x1a\x41\x6b\x28\x5e\x4a\x1e\x56\x66\x66" +"\x73\x5e\x1b\x82\x86\x8c\x8e\x83\x1f\x0b\xf8\x65\xf7\x09\x15\x48\x55\x7f\x7f\x7b\x1b\x82\x84\x93\x95\x96\x9b\xc9\x9c\xbf\x1f\xa8" +"\xe8\x9e\xd6\xa4\x1a\xb3\x70\xa6\x64\x4a\x44\x4a\xfb\x26\x2e\x1e\xf7\x0c\xf8\x54\x86\x90\x4f\x7d\x64\x85\x51\x84\x19\x7b\x07\xa5" +"\x8c\x05\xa2\x8c\x9d\x80\x7c\x1a\x7d\x86\x73\x82\x6e\x1e\x8a\x89\x87\x7d\x86\x76\xfb\x1b\xfc\x94\x18\xd6\x06\xb3\xf7\x2e\x98\xad" +"\xb3\xc8\x08\xda\xbf\xcf\xc9\xae\x1b\x9a\x98\x7f\x7e\x87\x88\x7e\x87\x7b\x1f\x54\xfb\x63\x05\x7e\x5a\x84\x6c\x7f\x1a\x71\x9c\x7b" +"\xa7\xbd\xae\xa6\xe2\xc7\x1e\x0e\xf8\x32\xf7\x01\x15\x4d\x67\x85\x85\x79\x1b\x76\x76\xac\xeb\x64\x1f\x86\x98\x7c\xaf\x7a\xb2\xf7" +"\x28\xf7\x17\xa8\x9f\xbb\x8e\x08\x9b\xfb\x4b\x7b\x07\xb6\x8a\x97\x87\x7e\x1a\x77\x59\x5b\x2e\x43\x1e\x7c\x80\x7d\x80\x7d\x80\xf7" +"\x0c\xf8\x5d\x18\xe1\x1d\x8c\x9d\x84\x8c\x78\x89\x7a\x84\x70\x7e\x5d\x87\x7d\x88\x80\x89\x83\x89\x82\x18\xfb\x13\xfc\x77\x05\xd6" +"\x06\xbb\xf7\x48\xb5\xab\x9b\x5f\xa5\x4d\x9d\x68\x19\x4c\xab\x9d\x78\xa8\x1b\xb3\xa4\xa4\xdf\xb9\x1f\x0b\xf8\x61\xf7\x09\x15\x49" +"\x56\x7d\x7e\x7b\x1b\x84\x87\x91\x96\x91\x8b\x8b\x9e\xd3\x1f\xda\xf7\xbf\x05\x41\x06\x55\xfb\x28\x80\x73\x5e\x43\xf2\x1d\x9b\x8e" +"\x8b\x8d\x8c\x8e\x1f\xe6\xf7\xff\x88\x8d\x50\x7d\x67\x85\x54\x84\x19\x7d\x07\xb1\x8d\x8a\x86\x94\x1f\x91\x89\x90\x82\x84\x1a\x83" +"\x86\x72\x82\x69\x1e\x66\xfb\x22\x05\x78\x42\x85\x6b\xd4\x1d\xfb\x02\x7c\x4a\xea\x1d\x0b\xf7\x72\xf8\x51\x76\x1d\x0b\xf8\x08\xf7" +"\xcb\x15\xf7\x38\xf7\x76\x05\xd5\xc0\xb9\xac\xbf\x1b\x91\x9d\x05\xfb\x73\x06\x85\x79\x05\x9c\x06\xac\x9e\x81\x79\x80\x86\x80\x7b" +"\x74\x1f\xfb\x2b\xfb\x6a\x4c\xf7\x6a\x05\x84\xa1\x8a\x90\x92\x1a\xa6\xa0\x97\xb6\x1e\xa0\x06\x8f\x9d\x05\xfb\xae\x06\x85\x79\x05" +"\xa0\x06\xb8\x8d\xa5\x75\x9b\xe9\x1d\x40\x8c\x19\x85\x79\x05\xf7\xb5\x06\x90\x9d\x05\x72\x7a\x8c\x8d\x82\x1f\x76\x90\x7f\x99\x9f" +"\x1a\x97\x8d\x98\x8f\x9a\x1e\x0b\x15\x5a\x7f\x52\x81\x61\x89\x86\x78\x18\x8e\x9b\x93\x8c\x94\x1b\x9e\x93\x84\x79\x81\x89\x80\x86" +"\x77\x1f\x51\xfb\x6d\x05\x82\x6a\x89\x7f\x79\x1a\x62\xa2\x6d\xab\xc6\xd8\xd1\xf7\x15\xdf\x1e\x6d\xfb\x01\x05\x85\x1d\x0b\x4b\x1d" +"\x8b\x1d\xb5\x92\x8c\x94\x8c\x90\x1f\xb1\xf7\x21\x58\x1d\x6a\x1a\x81\x89\x7f\x87\x7c\x1e\x69\xfb\x12\x05\x86\x76\x89\x80\x7d\x1a" +"\x4a\xbe\x67\xe8\xc1\xc1\x93\x9e\xce\x1e\x0b\xf8\x61\xf7\x09\x15\x49\x56\x7d\x7e\x7b\x1b\x84\x87\x91\x96\x91\x8b\x8b\x9e\xd3\x1f" +"\xda\xf7\xbf\x05\x41\x06\x55\xfb\x28\x80\x72\x5e\x44\xf2\x1d\x9a\x8e\x8b\x8e\x8c\x8e\x1f\xe6\xf7\xff\x88\x8d\x51\x7d\x66\x85\x54" +"\x84\x19\x7d\x07\xb3\x8a\x8b\x8b\x95\x86\x08\x90\x89\x90\x82\x84\x1a\x82\x86\x73\x82\x69\x1e\x66\xfb\x22\x05\x78\x41\x85\x6c\xd4" +"\x1d\x0b\xf7\x16\xf9\x11\x15\xca\x85\x99\x83\x70\x1a\x7c\x87\x73\x84\x72\x1e\xfb\x0f\xfc\x4e\x79\x51\x84\x99\x1d\x06\xf7\x4b\x50" +"\x15\xa1\x91\x9a\x92\xb3\x1b\xc4\xbd\x7e\x73\xab\x1f\xbc\x68\xa6\x4b\x3d\x1a\xfb\x02\x61\xfb\x03\x47\x47\x1e\x4f\x50\x3a\x6d\x23" +"\x1b\x5d\x78\x96\xa5\x98\x90\x9f\x9c\xc9\x1f\x0b\xf7\x6e\xf8\x51\x15\x59\x7f\x53\x82\x62\x88\x86\x78\x18\x8e\x9b\x92\x8c\x94\x1b" +"\x9e\x93\x84\x7a\x80\x89\x7f\x86\x78\x1f\x30\xfb\xe8\x05\xd3\x06\xc5\xf7\x6c\x05\x98\x8c\x91\x8c\x8b\x1a\x98\x96\x85\x80\x92\x1f" +"\x93\x81\x8d\x85\x98\x5e\x08\xfb\x03\xac\xa7\x63\xb9\x1b\xb3\xad\xad\xec\xc4\x1f\x7b\x94\x05\x55\x69\x75\x78\x6f\x1b\x74\x81\x98" +"\xc1\x7b\x1f\x77\xd4\x73\xab\x63\x92\x0b\x15\x86\xfb\x09\x82\x1d\xeb\xf7\x1e\x05\xf7\x48\xaf\x15\xfb\x2f\x06\xf7\x39\xf7\x80\x05" +"\x0e\xb3\xf7\x5b\x05\x74\x06\x76\x7d\x82\x86\x75\x1b\x7e\x7f\x8e\x93\x76\x1f\x94\x76\x6a\x90\x6c\x1b\x23\x41\x46\x29\x55\x9a\x6e" +"\xc7\x4b\x1f\x90\x87\x9c\x78\x9c\x78\x9b\x7a\x9a\x7b\x93\x82\x08\xba\x5a\x98\x71\x60\x1a\x40\x54\x51\x41\x37\x4d\xd2\xed\x92\x8b" +"\x8f\x8d\x94\x1e\x77\x8d\x69\xfb\x73\x05\x9d\x06\xa2\x92\x96\x95\x9f\x1b\x96\x9a\x87\x82\xa5\x1f\x0b\xf8\x65\x15\xb0\xf7\x5b\x05" +"\x76\x63\x1d\x5f\x63\x91\x6a\x1b\xfb\x6a\xfb\x54\xfb\x5c\xfb\x73\xfb\x2d\xf7\x00\xfb\x00\xf7\x2d\xf2\xdb\xb6\xf5\xe5\x94\x1d\x0b" +"\xf8\x07\xf7\x03\x15\x4f\x42\x6b\x7b\x5f\x1b\x52\x66\xaf\xc2\x9b\x8d\x94\x94\xb1\x1f\xa7\x8f\x05\xf7\x2d\xa0\xf7\x00\xd9\xe2\x1a" +"\xb5\x6d\xa5\x59\xfb\x27\xfb\x35\xfb\x3c\xfb\x2d\x3a\xc1\x53\xda\xd2\xda\xb4\xcf\xc7\x1e\xfb\x6f\xf7\x32\x15\xe5\xae\xd7\xd9\xbe" +"\x1b\xa0\x99\x7c\x74\x6b\x78\x65\x6b\x6d\x1f\x65\x67\x65\x7a\x33\x75\x08\x0b\x15\x72\x6a\x85\x83\x81\x81\x08\x7a\x7a\x7c\x6a\x1d" +"\x92\x9d\x1f\x90\x9d\x8c\x8d\x05\x8d\x07\x9e\x1d\x4f\x85\x6e\x77\x1a\x66\x9b\x77\xa9\xba\xaf\xa9\xdf\xc4\x1e\x0b\x1a\x7f\x89\x88" +"\x6d\x65\x1e\xfc\x05\xfc\x65\x5b\x4f\x7f\x81\x73\x85\x19\x7b\xf7\x4f\x9b\x07\x56\x91\x80\x90\x9f\x1a\xa2\xb2\xc8\xc8\xd4\x1e\x8f" +"\x8f\x95\x97\x96\x99\x08\xf7\x52\x06\x5a\xfb\x3e\x7f\x66\x84\x86\x4e\x85\x19\x7b\xf8\x86\x07\xcb\xf7\x38\x05\xfc\xe7\xf6\x15\xf7" +"\xa0\xf7\xea\x2c\xfb\xea\x05\x0b\x24\x1d\xf7\x5c\x16\x6f\x75\x76\x70\x5b\x1d\x0b\x05\x4f\x88\x80\x7e\x5c\x1b\x74\x25\x1d\xf7\x9c" +"\x06\x90\x9d\x05\x74\x06\x5a\x7c\x97\xb3\x90\x8b\x8b\x8c\xa8\x1f\xa2\xf8\xc2\x05\x7a\x06\xfc\x2a\xfc\xcf\x5c\x4c\x7c\x80\x68\x8c" +"\x19\x80\x22\x1d\xf7\x5a\x06\x8f\x9d\x05\x78\x06\x6d\x7c\x94\x9d\x91\x8f\x95\x91\x94\x1f\x0b\xf7\xca\xf8\x50\x15\xfb\x14\xfb\x12" +"\xfb\x23\xfb\x26\x28\xf7\x02\x1d\xc4\xb1\xdd\xdd\x1a\xec\x51\xd0\x3b\x1e\x82\x72\xb5\x1d\xd6\xa5\xe8\xb3\xc9\x1f\xbb\xa9\xb0\xa5" +"\xb2\x1b\x0b\xf7\x0f\x15\x38\x4a\x83\x83\x75\x1b\x81\x86\x91\x97\x93\x8e\x98\x90\x9d\x1f\x8c\x8f\x8c\x8e\x8c\x1a\x8d\x07\xf7\x2b" +"\xf8\xd7\x86\x90\x4f\x7d\x65\x85\x51\x84\x19\x7b\x07\xbb\x9f\x85\x7a\x87\x8a\x85\x89\x83\x1f\xfb\x1e\xfc\xa4\x05\x88\x81\x8a\x82" +"\x84\x1a\x66\x9c\x78\xab\xbf\x0b\x87\x7a\x88\x79\x7e\x1a\x72\x99\x7a\xa1\xae\xb7\xae\xd3\xc4\x1e\x7d\x97\x05\x68\x6f\x76\x79\x7e" +"\x1b\x83\x86\x93\x97\x92\x8c\x93\x8d\x92\x1f\xe3\xf7\xe5\x05\x43\x06\x75\x3d\x05\xfb\x24\x62\xfb\x05\xfb\x31\x4c\x1b\x7b\x82\x97" +"\x9f\x93\x8c\x92\x8f\x99\x1f\x0b\xf7\x23\xfb\x8d\x05\x96\x78\x91\x7a\x7f\x1a\x76\x7b\x82\x5e\x87\x1e\x85\x79\x05\xf7\xa1\x06\x91" +"\x9d\x4c\x8a\x6d\xa2\x59\xe5\x19\xfb\x21\xf7\x93\xf7\x9c\xf7\x6b\xb6\xac\xa4\x95\xb3\x8c\x19\x91\x9d\x05\xfb\x5d\x22\x1d\xb0\x8c" +"\x98\x86\x7e\x1a\x0b\x91\xa3\x9a\x08\xab\xa0\x9d\xa9\xaf\x1a\xca\x57\xaf\x32\x52\x63\x7e\x70\x6e\x1e\x79\x79\x7f\x73\x77\x1a\x70" +"\x9d\x77\xa3\xa1\x9f\x9d\x9f\x93\x86\x94\x82\x94\x1e\x80\x96\x89\x8f\x93\x1a\xa0\xae\x9b\xbb\xc2\xa9\x72\x5d\x4e\x58\x64\x3a\x1e" +"\x79\x06\x0b\x1b\x7f\x85\x8f\x92\x8f\x8c\x8d\x8f\x90\x1f\x91\x93\x8d\x90\x93\x1a\xa0\x79\x9b\x74\x74\x7a\x79\x73\x67\xac\x72\x0b" +"\xbf\x78\xb5\x67\xa6\x1f\x79\x98\x7c\x92\x68\x95\xc3\x99\xa4\x95\xa8\xa2\x08\xb5\xab\xa0\xb6\xbe\x1a\xe1\x49\xc4\x27\x68\x7c\x88" +"\x7a\x59\x1e\x86\x7b\x82\x89\x84\x1b\x7c\x83\x94\x9d\x1f\x7b\x06\x64\xfb\x4e\x05\x0b\x88\x8d\x56\x80\x75\x87\x34\x7b\x19\x7b\x07" +"\xbe\x8a\x98\x85\x77\x1a\x85\x8a\x85\x8a\x86\x1e\x2b\xfb\xf2\x05\xd6\x06\xba\xf7\x32\x94\xa1\xb7\xcf\x08\xe7\xc7\xbe\xbd\xb0\x1b" +"\x9a\x94\x80\x79\x0b\xd4\x9e\x9d\x99\xd5\x21\x1d\xfb\xa5\x25\x1d\xa6\x93\x8a\x87\x96\x1f\x9b\x86\x95\x7c\x79\x1a\x80\x89\x7f\x87" +"\x7c\x1e\x54\xfb\x65\x05\x7b\x57\x61\x84\x61\x1b\x4a\x6a\xa1\x0b\x96\x1d\xfc\x5f\x7a\x47\x78\x7a\x4d\x8a\x20\x1d\x0b\xf9\x5c\xf7" +"\x27\x15\x54\x06\xda\xf7\x97\x05\x67\x06\xfb\xa3\xfb\x97\x7e\x61\x05\xf7\x3c\x06\x6b\x22\x05\xca\x06\xa9\xf3\x05\xc5\x06\x59\xf7" +"\x79\x15\x4f\xfb\x4e\x05\xfb\x15\x06\x0b\xc9\x1d\x6f\x6e\x3e\x77\x6b\x1d\xa5\x83\x76\xbf\x1f\x81\xa5\x9d\x86\x98\x1b\xbb\xac\x0b" +"\x05\xb5\x83\x79\x9b\x64\x1b\xfb\x16\xfb\x36\xfb\x50\xfb\x2a\x44\xb3\x60\xcc\xcf\xb7\xab\xef\xcf\x1f\x80\x58\x89\x7c\x74\x1a\x70" +"\x9c\x79\xa4\xb5\xc0\xb4\xd4\xbe\x1e\x0b\x61\x1b\x7f\x83\x92\x94\x8f\x2d\x1d\x91\x8c\x8f\x91\x1a\xa0\x79\x9c\x76\x76\x7b\x79\x74" +"\x68\xad\x71\xb8\xe4\xd0\xed\xf7\x4d\xb5\x1e\xd3\xf7\xd4\x05\x0b\x06\xbe\xf7\x52\x05\xd4\x9e\x9d\x99\xd4\x34\x1d\xc2\x8a\x9c\x81" +"\x6b\x1a\x81\x89\x7b\x87\x7f\x1e\xfb\x0e\xfc\x5e\x7a\x47\x77\x0b\x9c\x1d\xd6\x1a\xdf\x51\xc4\x36\x1e\x0b\x88\x83\x19\x81\x6a\x84" +"\x6c\x81\x1a\x76\xa0\x7b\xa6\xb9\xac\xa7\xe8\xca\x1e\x7e\x92\x05\x4c\x5a\x7b\x7b\x7b\x1b\x82\x85\x92\x98\x8c\x8b\x8b\x8c\x8f\x1f" +"\x0b\x1f\x7a\x99\x05\x33\x31\x51\x6d\x39\x1b\xfb\x03\x4b\xd6\xf7\x16\xf7\x0b\xbb\xf7\x0d\xd9\xdc\x1f\xbc\xbb\xca\xa7\xcd\x1b\xe7" +"\xbe\x55\xfb\x00\x95\x1f\x0b\x15\xfb\x5b\xfb\x3a\xfb\x38\xfb\x57\xfb\x63\xf7\x35\xfb\x38\xf7\x5d\xf7\x61\xf7\x37\xf7\x36\xf7\x5f" +"\xf7\x5e\xfb\x37\xf7\x37\xfb\x5e\x1f\x0b\xf7\x21\xf8\x9d\x05\xd4\x9e\x9c\x99\xd5\x21\x1d\xfb\xa3\x06\x85\x79\x05\xc2\xda\x1d\x0b" +"\xc8\x1d\x6d\x67\xd5\x1d\x15\x6b\x72\x73\x6d\x6b\xa5\x71\xab\xaa\xa4\xa3\xaa\xaa\x71\xa5\x6c\x1f\x0b\x85\x53\x81\x19\x7b\xf7\x91" +"\x07\xf7\x09\xf6\xaa\xc3\xd8\x1f\xec\xd2\xc4\xf7\x02\xf7\x08\x1a\xf7\x38\xfb\x06\xf4\xfb\x46\x1e\xfb\xaa\x0b\x37\x1d\xc2\xc4\x1a" +"\xb3\x72\xaa\x6a\x6e\x75\x77\x71\x79\x91\x80\x9e\x7a\x1e\x9a\x7d\x90\x83\x80\x1a\x71\x74\x6f\x57\x69\x1e\x0b\x1b\xf7\x07\xe2\xe1" +"\xf7\x06\xcc\x75\xb1\x30\xe7\x1f\x31\xe6\x82\x99\xbc\x1a\xca\xb5\xb2\xce\xb2\xa9\x7e\x73\xa0\x1e\xa1\x72\x93\x0b\xf7\xd9\xf8\x4d" +"\x15\x60\x64\x80\x75\x62\x1f\x24\x51\x43\xfb\x07\x21\x1a\x34\xc3\x56\xe6\xcd\xcb\xa8\xc5\xc5\x1e\xcd\xcc\xb3\xdf\x0b\x55\x1d\x90" +"\x9d\x6f\xf4\x1d\x0b\xe3\xf7\xd6\x88\x8d\x25\x78\x78\x88\x64\x88\x19\x7b\x07\xc1\x8a\x94\x88\x77\x1a\x83\x88\x7a\x85\x78\x1e\x5b" +"\xfb\x45\x05\x7b\x0b\x7a\x54\x75\x7c\x49\x86\x19\x7b\xf7\xb5\x9b\x07\x8d\x7b\x7f\x8c\x83\x1b\x7a\x8c\x7d\x8e\x81\x91\x08\x84\x8f" +"\x86\x95\x99\x1a\x0b\x89\x8e\x85\x85\x88\x8a\x83\x85\x1e\x64\x59\x4d\x58\x6b\x82\x08\x72\x83\x84\x85\x80\x1a\x8a\x8b\x89\x8c\x88" +"\x1e\xd5\x06\x0b\x67\x4e\x1b\x4b\x63\xb0\xc9\x87\x5c\x1d\x0b\x1a\x7c\x87\x79\x7e\x5c\x1e\xfb\x0a\xfc\x3d\x79\x4f\x84\x85\x52\x83" +"\x19\x7b\xf7\x89\x9b\x07\x4c\x94\x86\x8e\xae\x1a\x0b\x6b\x1d\xa5\x83\x76\xbf\x1f\x81\xa5\x9d\x86\x98\x1b\xbb\xac\xaf\xcf\x99\x1f" +"\x0e\x15\x55\x5e\x5e\x55\xc8\x1d\x6e\x66\x66\x6e\x6f\x65\x0b\xb5\xac\xa4\x95\xb3\x8c\x19\x91\x9d\x05\xfb\x5a\x22\x1d\xae\x8c\x98" +"\x86\x7e\x1a\x83\x87\x86\x7a\x7d\x1e\x0b\xc2\xf7\x53\x9f\xd1\x9e\x9b\xcb\x8c\x19\x90\x9d\x05\xfb\x9b\x06\x86\x79\x05\xc3\x8a\x9c" +"\x82\x6c\x1a\x80\x89\x0b\xaa\x1d\x0e\xaf\x1b\xb6\xae\x6d\x66\x6b\x6c\x5d\x4d\x4e\x1f\xfb\x19\xfb\x16\x05\x79\xf7\x7b\x07\xac\xda" +"\x05\x0e\xbd\x1d\x7b\x69\xfb\x0f\x7e\x1e\x0b\xf8\x82\xb0\x1d\x0b\x7b\x07\xc6\x83\x96\x84\x6f\xc1\x1d\x0b\x15\xae\x06\xf7\x3f\xf5" +"\x05\x97\x93\x90\x93\x97\x1a\x9f\x7b\x9b\x76\x82\x82\x87\x85\x84\x1e\x0e\x5f\x1d\xd6\x1d\x52\x92\x80\x91\xa7\x1a\x9f\x8d\x95\x94" +"\xac\x1e\xf7\x0f\xf8\x4f\x9d\xc5\x92\x91\xc4\x95\x19\x9b\x0b\x15\xae\x06\xf7\x3f\xf5\x05\x97\x93\x90\x93\x97\x1a\x9f\x7b\x9b\x76" +"\x82\x82\x87\x85\x85\x1e\x0b\x5f\x1d\x77\x81\x82\x87\x85\x85\x1e\x0b\x1a\x58\xb6\x60\xbf\xde\x1d\x6b\x1b\x67\x74\xa0\x0b\xf8\x83" +"\xf7\x1a\x15\x50\x68\x70\x72\x6f\x1b\x76\x80\xa2\xb9\x91\x8b\x92\x8c\x95\x1f\xf7\x09\x0b\x06\xf7\x3f\xf5\x05\x97\x93\x90\x93\x97" +"\x1a\xa0\x7b\x9a\x76\x65\x1d\x0b\x15\xae\x06\xf7\x3f\xf5\x05\x97\x93\x90\x93\x97\x1a\x9f\x7b\x9b\x76\x81\x83\x88\x84\x0b\x15\xb4" +"\xa8\x61\x51\x4a\x73\x32\x68\x4a\x1f\x52\x6c\x66\x6e\x61\x1b\x5e\x6f\xb1\xca\x0b\x1e\xfb\x17\xfc\x5e\x78\x46\x78\x7a\x4c\x8a\x20" +"\x1d\xf7\x9c\x06\x91\x9d\x05\x0b\xf8\xe0\xf7\x05\x15\x53\x4f\x64\x76\x60\x1b\x5c\x74\xad\xcf\xa1\x8c\x93\x92\xa9\x1f\x0b\x15\x6f" +"\x74\x75\x70\x6e\xa3\x74\xa8\xa7\xa1\xa1\xa6\xa7\x73\xa3\x6f\x1f\x0e\x16\x6b\x72\x73\x6d\x6b\xa5\x71\xab\xaa\xa4\xa3\xaa\xaa\x71" +"\xa5\x6c\x1f\x0e\x06\xcb\xa9\x83\x74\xa1\x1f\x9a\x7c\x95\x6c\x6a\x1a\x7d\x8a\x79\x8a\x77\x1e\x0b\x15\xae\x06\xf7\x3e\xf5\x05\x98" +"\x93\x90\x93\x97\x1a\x9f\x7b\x9b\x76\x82\x82\x0b\x15\x4b\x72\x5a\x67\x4c\x1b\x4b\x62\xb0\xca\x86\x1f\x6e\x06\x8c\x51\x93\x6c\x0b" +"\xf8\x56\x15\xbc\x06\xa4\xc2\x05\xa7\xc6\x9a\xba\xa3\x1a\xa3\x7f\x98\x75\x5b\x0b\x15\x67\x06\xfb\x23\x22\x32\xeb\x1d\x15\x6f\x74" +"\x75\x6f\x6f\xa2\x74\xa7\xa6\xa2\xa2\xa7\xa6\x74\xa2\x70\x1f\x0b\x15\x5a\x06\xfb\x31\xdb\x1d\x0b\x1a\x7c\x88\x77\x83\x70\x1e\xfb" +"\x0f\xfc\x4e\x79\x51\x84\x85\x53\x81\x19\x0b\x8c\x8f\x81\x68\x1d\x98\x8d\x97\x8f\x9a\x1e\x0e\x8c\x93\x1b\xa1\x98\x81\x79\x7d\x8b" +"\x8b\x7b\x47\x1f\x3a\xfb\xb8\x05\x0b\x15\xae\x06\xf7\x3f\xf5\x05\x97\x93\x90\x93\x97\x1a\xa0\x7b\x9a\x76\x0b\x15\x4c\x72\x5a\x67" +"\x4d\x1b\x4c\x63\xaf\xca\x87\x1f\x6e\x06\xfb\x00\x0b\x1f\x9c\x06\xba\xf7\x42\x05\xfc\xb4\x06\x5c\xfb\x42\x05\x9e\x06\x9f\x0b\x9f" +"\xfb\x17\x05\x8c\x82\x8c\x82\x83\x1a\x65\x7d\x82\x4b\x85\x1e\x7b\x0b\x53\xb6\x5f\xc4\xc2\xb8\xb8\xc1\xc2\x5e\xb8\x53\x1f\x69\x04" +"\xb0\xa9\x0b\x80\x70\x1b\x7c\x7a\x90\x99\x6d\x1f\x9c\x65\x71\x92\x75\x1b\x57\x0b\x96\x48\x1b\x57\x63\x15\x8e\x9a\x92\x8c\x99\x1b" +"\xd7\xb6\x66\x4b\x0b\x1f\x90\x84\x85\x8d\x82\x1b\x72\x7a\x7b\x75\x73\x9f\x7c\xab\xaa\x0b\x62\xb0\xca\x86\x1f\x6e\x06\x8c\x52\x93" +"\x6b\x9f\x71\x08\x6d\xa2\x0b\x7a\x46\x77\x7a\x4c\x8a\x20\x1d\xf7\xa0\x06\x91\x9d\x05\x0b\x90\x93\x98\x1a\x9f\x7b\x9b\x76\x81\x83" +"\x88\x84\x84\x1e\x0e\xfa\x12\xf7\x87\x15\xfe\x10\x06\x83\x5d\x05\xfa\x10\x06\x0e\x87\x7a\x1f\x9c\x06\xb6\xf7\x32\x05\xfc\x75\x25" +"\x1d\x0b\x15\x8c\x7f\x8b\x8b\x88\x1a\x75\x69\x78\x64\x6c\x6e\x9a\x9b\x0b\xf7\xc6\xf7\x9e\x15\xbc\xfb\x47\x05\x8d\x81\x8d\x80\x85" +"\x1a\x0b\x46\x78\x7a\x4c\x8a\x20\x1d\xf7\x63\x06\x90\x9d\x05\x0b\x79\x1a\x66\x9d\x79\xae\xd2\xc0\xc1\xf7\x55\xf7\x07\x1e\x6d\x0b" +"\x66\x6e\x6f\x65\x66\x6f\xa8\xb0\xae\xa9\xa9\xae\x1f\x0e\x76\x82\x83\x88\x84\x84\x1e\x0e\x1a\x4a\x74\x5d\x5f\x71\x1e\x7a\x6c\x64" +"\x83\x4d\x1b\x79\x0b\xf8\x77\x15\x58\x06\xfc\x43\xfd\x4b\x05\xbf\x06\x0e\x05\xb2\xa5\x9c\x97\xaa\x1b\xa0\xa0\x86\x82\x9c\x1f\x0b" +"\x8a\x9c\x81\x6a\x1a\x81\x89\x7c\x87\x7f\x1e\xfb\x0e\x0b\xfb\x3d\x05\xb2\x06\xf7\x1d\xf3\xdd\x23\x05\xaf\x06\x0b\x1a\x80\x07\x8c" +"\x78\x8b\x86\x87\x1a\x74\x83\x81\x68\x0b\x1f\xbd\xb0\xa8\xc2\xc6\x1a\xeb\x40\xc0\xfb\x1c\x1e\x0b\xbc\xb4\xa4\xbf\xae\x1e\x7a\x9d" +"\x05\x74\x70\x73\x82\x0b\x6e\x1a\x7c\x87\x72\x84\x73\x1e\xfb\x0f\xfc\x4e\x79\x0b\x1a\xa0\x81\x96\x78\x62\x7e\x6f\x21\x80\x1e\x0e" +"\xed\x1d\xbc\x0b\x8d\x90\x81\x1f\x7f\x91\x83\x98\x9a\x1a\x95\x8e\x0b\x19\x86\x79\x05\xf7\x97\x06\x90\x9d\x70\x8c\x83\x0b\x1e\xf7" +"\x1f\xf8\x9b\x15\x8f\xa2\x97\x8c\x98\x1b\x0b\xf8\xa5\xf6\x1d\x0b\xbc\xf7\x28\xc8\xe2\x1f\xdc\xc3\xc8\xb1\xd4\x1b\x0b\x4c\x54\x81" +"\x83\x7a\x1b\x81\x83\x93\x97\x9b\xaa\x0b\xf9\x38\xf6\x1d\x0b\x56\xd9\xfb\x8e\x18\x51\xfb\x6c\x78\x42\x78\x7c\x0b\x75\x1a\x6c\x9d" +"\x7a\xa9\xba\xa1\x9e\xed\xd0\x1e\x0b\xf4\x05\x66\x06\xeb\xfb\x3d\x05\xb9\x06\x0e\x06\x85\x70\x7d\x45\x75\xfb\x05\x68\xfb\x46\x0b" +"\x86\x90\x4e\x7d\x65\x85\x52\x84\x19\x7b\x07\x0b\x1f\x7e\xa4\x9d\x87\xa2\x1b\xf7\x26\xf7\x2e\x0b\xa9\x78\xa0\x6f\x74\x70\x7c\x70" +"\x71\x1f\x62\x0b\x77\x7a\x4e\x8a\x20\x1d\xf7\x96\x06\x0b\x05\xd4\x9e\x9d\x99\xd5\x1b\x8f\x9d\x05\x0b\x08\x2c\x4f\x5a\x58\x6b\x1b" +"\x7e\x83\x95\x0b\x8a\x19\x86\x79\x05\xf7\x97\x06\x90\x9d\x0b\x8c\x84\x8b\x80\x8f\x19\x7b\x90\x81\x9a\x0b\x8e\x9b\x92\x8c\x95\x1b" +"\x9d\x93\x84\x7c\x0b\x15\x58\x06\xfc\x5b\xfd\x42\x05\xbe\x06\x0b\x1b\x57\x6f\x6e\x3e\x77\x1f\xa8\x06\xab\x0b\x1f\x6e\x06\x52\x93" +"\x6c\x9f\x71\x1e\x6e\x0b\xc3\x48\xdc\xbc\xc0\xa2\xb8\xbe\x1f\xcb\x0b\xf8\xe2\xf7\x70\x15\xcd\xfc\x8c\x49\x07\x0b\x70\xa3\x64\x4b" +"\x4c\x4e\xfb\x33\x24\x1e\x0b\x82\x88\x84\x85\x1e\x0e\x01\x00\x01\xe3\x01\x05\x00\x01\x0a\x02\x01\x40\x03\x01\x87\xff\x02\x87\xa0" +"\x02\x8e\x02\x00\x01\x00\x04\x00\x07\x00\x44\x00\x7f\x00\xbf\x01\x53\x02\x12\x02\xcb\x02\xd0\x03\x0c\x03\x48\x04\x19\x04\x2b\x04" +"\x32\x04\x36\x04\x3d\x04\x51\x04\x9e\x04\xf1\x05\x45\x05\xb5\x05\xe9\x06\x39\x06\x99\x06\xbd\x07\x26\x07\x88\x07\xa3\x07\xb0\x07" +"\xcc\x07\xe2\x07\xfc\x08\x57\x09\x04\x09\x08\x09\x82\x09\x86\x09\x8a\x09\x8e\x09\xfe\x0a\x02\x0a\x32\x0a\x37\x0a\x3c\x0a\x40\x0a" +"\x44\x0a\xbf\x0a\xc3\x0a\xc7\x0a\xcd\x0b\x5f\x0b\x63\x0b\x66\x0b\x6a\x0b\x6e\x0b\xb5\x0b\xba\x0c\x4f\x0c\x53\x0c\x57\x0c\x87\x0c" +"\x9a\x0c\xc9\x0c\xe7\x0c\xf2\x0c\xfb\x0c\xfe\x0d\x6e\x0d\x73\x0d\x76\x0d\x7b\x0d\xd5\x0d\xd8\x0d\xda\x0d\xe3\x0e\x1c\x0e\x21\x0e" +"\x28\x0e\xf6\x0e\xf9\x0e\xfc\x0f\x71\x0f\xdc\x0f\xe1\x0f\xe6\x0f\xf5\x0f\xf8\x10\x5b\x10\x5f\x11\x08\x11\x0d\x11\x12\x11\x6f\x11" +"\x7b\x11\xdf\x12\x1d\x12\x5b\x12\xdd\x13\x71\x13\x75\x14\x0d\x14\x91\x15\x3f\x15\xa3\x15\xc3\x15\xe5\x16\x42\x16\x56\x16\xab\x17" +"\x50\x17\xfa\x18\x09\x18\xad\x19\xb5\x19\xb9\x1a\x42\x1a\x5b\x1a\x62\x1a\x7a\x1a\x9c\x1b\x40\x1b\x64\x1c\x61\x1c\xbd\x1c\xc5\x1c" +"\xcb\x1c\xd3\x1c\xe4\x1c\xec\x1c\xf4\x1c\xfd\x1d\x05\x1d\x12\x1d\x3b\x1d\x45\x1d\x6e\x1d\x76\x1d\x7a\x1d\x94\x1d\xf9\x1e\x4b\x1e" +"\x6c\x1f\x1a\x1f\x52\x1f\x63\x1f\x68\x1f\xb2\x1f\xb5\x20\x5c\x21\x14\x21\x66\x21\x76\x21\xef\x22\x85\x22\x88\x22\xf8\x23\x12\x23" +"\x62\x23\xa0\x23\xaf\x23\xc5\x23\xf1\x24\x6f\x24\xc4\x24\xfb\x25\xbb\x25\xc0\x26\x26\x26\x52\x26\xa3\x27\x39\x27\x41\x27\x49\x27" +"\x51\x27\x59\x27\x66\x27\x97\x27\xd9\x27\xe2\x27\xeb\x27\xf4\x27\xfd\x28\x07\x28\x11\x28\x30\x28\x3a\x28\x6b\x28\x72\x28\x7f\x28" +"\x8e\x28\x95\x28\xc9\x28\xd0\x28\xdf\x28\xe8\x28\xf1\x28\xf9\x29\x17\x29\x20\x29\x28\x29\x2e\x29\x35\x29\x3c\x29\x42\x29\x68\x29" +"\x70\x29\xca\x29\xd3\x29\xdd\x29\xe6\x29\xfc\x2a\x1b\x2a\x24\x2a\x31\x2a\x3a\x2a\x41\x2a\x62\x2a\x69\x2a\x70\x2a\x76\x2a\x7e\x2a" +"\x88\x2a\x90\x2a\x98\x2a\xa0\x2a\xa8\x2a\xb1\x2a\xbb\x2a\xc5\x2b\x3e\x2b\xb0\x2c\x99\x2d\x5a\x2d\xf5\x2e\x99\x2f\x24\x2f\xaf\x2f" +"\xc7\x2f\xdc\x2f\xe3\x2f\xf4\x2f\xfd\x30\x66\x30\xab\x30\xf0\x30\xf9\x31\x01\x31\x0b\x31\x16\x31\x95\x31\x9e\x31\xa1\x31\xbb\x31" +"\xd6\x31\xde\x31\xe8\x31\xf0\x32\x6a\x33\x0d\x33\x53\x33\xbe\x33\xc1\x33\xe3\x34\x6a\x34\x6d\x34\x85\x34\x8e\x34\x97\x34\xa1\x34" +"\xfd\x35\x33\x35\xc7\x35\xdc\x35\xe7\x35\xf1\x36\x34\x36\x38\x36\x4b\x36\x75\x36\xa1\x36\xaa\x37\x06\x37\x0f\x37\x18\x37\x24\x37" +"\x39\x37\x42\x37\x4a\x37\xa9\x37\xb1\x37\xb9\x37\xc2\x38\x1b\x38\x2f\x38\x3b\x38\x47\x38\xdd\x39\x29\x39\x78\x39\x9e\x39\xa3\x3a" +"\x03\x3a\xc5\x3a\xcd\x3a\xd6\x3a\xde\x3b\x40\x3b\x48\x3b\x7f\x3b\x8e\x3b\x96\x3b\xdd\x3c\x29\x3c\x76\x3c\x7e\x3c\xd3\x3d\x77\x3d" +"\x80\x3d\x92\x3d\x9e\x3d\xfc\x3e\x00\x3e\x08\x3e\x6f\x3e\x7d\x3e\xad\x3e\xb6\x3e\xc0\x3e\xca\x3e\xd3\x3f\x5a\x3f\x63\x3f\x77\x3f" +"\x91\x3f\x9b\x3f\xd0\x3f\xde\x3f\xf2\x3f\xf6\x40\x52\x40\xa2\x40\xef\x40\xf2\x41\x71\x41\x75\x41\x7e\x42\x6e\x42\xb8\x42\xbc\x42" +"\xf3\x42\xf7\x43\x58\x43\xc0\x43\xc3\x44\x17\x44\x48\x44\xae\x44\xf4\x45\x36\x45\x3d\x45\x43\x45\xc2\x46\x11\x46\x31\x46\x7d\x46" +"\xd5\x47\x26\x47\x5d\x47\x68\x47\xeb\x48\x68\x48\xd6\x49\x1a\x49\x89\x49\xa8\x4a\x35\x4a\xbb\x4a\xbf\x4a\xec\x4b\x49\x4b\xcf\x4c" +"\x52\x4c\xd9\x4c\xec\x4d\x26\x4d\x99\x4e\x0f\x4e\x7a\x4e\xda\x4f\x3f\x4f\x46\x4f\x53\x50\x0e\x50\x3e\x50\x41\x50\x86\x50\x9b\x50" +"\xfd\x51\x8c\x51\xda\x52\x06\x52\x73\x52\xea\x53\x30\x53\xe5\x53\xea\x54\xa0\x55\x2f\x55\xb2\x56\x29\x56\xbd\x57\x8a\x58\x09\x58" +"\x88\x58\xd4\x59\x31\x59\xa3\x5a\x27\x5a\x77\x5b\x0c\x5b\x7e\x5b\xdc\x5c\x48\x5c\x89\x5c\xd2\x5d\x25\x5d\x91\x5d\xfe\x5e\x9d\x5e" +"\xc3\x5f\x00\x5f\x61\x5f\xb4\x60\x06\x60\x98\x61\x1b\x61\xc9\x61\xfd\x62\x40\x62\x48\x62\x7d\x62\xb3\x62\xed\x63\x33\x63\x5d\x63" +"\x93\x63\xb4\x63\xd5\x63\xf6\x64\x17\x64\x24\x64\x3a\x64\xb7\x64\xc1\x64\xcb\x65\x06\x65\x10\x65\x65\x65\xe3\x66\x61\x66\x76\x66" +"\xc0\x67\x34\x67\x63\x67\x88\x67\x9b\x67\xa5\x67\xb0\x67\xda\x67\xe4\x68\x1b\x68\x95\x68\x9a\x68\xb9\x68\xda\x69\x2b\x69\x30\x69" +"\x44\x69\xc7\x69\xe1\x6a\x34\x6a\xca\x6b\x4e\x6b\x67\x6b\x72\x6b\x91\x6b\x99\x6b\xc0\x6b\xfa\x6c\x27\x6c\x6e\x6c\x95\x6c\xd2\x6d" +"\x66\x6d\x70\x6d\xe8\x6e\x55\x6e\x93\x6e\xd1\x6f\x16\x6f\x63\x6f\xa3\x6f\xa8\x6f\xb8\x6f\xe0\x6f\xfe\x70\x4f\x70\x8e\x71\x05\x71" +"\x0f\x71\x85\x71\xa2\x71\xfc\x72\x14\x72\x25\x72\x30\x72\x59\x72\xa2\x73\x10\x73\x86\x73\xab\x73\xf5\x74\x78\x74\x85\x75\x24\x75" +"\x2b\x75\x33\x75\x94\x75\xc8\x76\x2e\x76\x36\x76\x42\x76\x4a\x76\xb5\x77\x39\x77\x3c\x77\x57\x77\x65\x77\x6c\x77\xd7\x78\x43\x78" +"\xbd\x79\x46\x79\x7a\x79\xa2\x79\xd8\x7a\x6c\x7a\x9c\x7a\xa4\x7a\xc0\x7a\xca\x7b\x0f\x7b\x21\x7b\x6c\x7b\x76\x7b\xa1\x7b\xab\x7b" +"\xb4\x7b\xfb\x7c\x51\x7c\xe2\x7d\x3e\x7d\x7a\x7d\xfe\x7e\x5b\x7e\x8e\x7e\xa8\x7f\x0d\x7f\x73\x7f\x90\x7f\xa5\x7f\xb7\x7f\xc1\x7f" +"\xdc\x7f\xdf\x7f\xe3\x7f\xec\x80\x00\x80\x08\x80\x0c\x80\x32\x80\xc9\x81\x57\x81\xcc\x81\xec\x82\x0c\x82\x2d\x82\x4c\x82\xce\x83" +"\x3c\x84\x25\x84\xee\x85\x49\x85\x8a\x85\xd1\x86\x59\x86\xb4\x87\x5b\x87\x8f\x88\x15\x88\x9e\x88\xff\x89\x65\x89\xc1\x8a\x1d\x8a" +"\x95\x8a\xff\x8b\x8c\x8c\x39\x8c\xcb\x8c\xfe\x8d\x3d\x8d\xd0\x8e\x5e\x8e\xe0\x8e\xe2\x8e\xe6\x8f\x47\x8f\x87\x8f\xfd\x90\x73\x91" +"\x0c\x91\x65\x91\x95\x91\xad\x91\xc4\x91\xcf\x92\x87\x93\x00\x93\x04\x93\x08\x93\x24\x93\x41\x93\xb1\x93\xca\x94\x0f\x94\x38\x94" +"\x5c\x94\x61\x94\x6c\x94\x9a\x94\xb9\x94\xd9\x94\xfc\x95\x0b\x95\x14\x95\x1d\x95\x36\x95\xfd\x96\x07\x96\x10\x96\x1a\x96\x25\x96" +"\xbf\xfc\x2e\x0e\xfc\x2e\x0e\xfb\xdb\xf7\x1d\xf7\x45\x15\xc3\xf7\x2d\xa5\xca\xb8\xef\x08\xa7\xc9\x95\xaa\xa9\x1a\xad\x7d\x9c\x71" +"\x66\x78\x6a\x38\x7d\x1e\x74\xfb\x22\x83\x66\x62\xfb\x53\x08\x6e\x34\x15\x70\x72\x73\x70\x6c\xa1\x74\xa8\xaa\xa4\xa2\xa8\xa7\x72" +"\xa4\x6d\x1f\x0e\xfb\x84\xf7\xec\xf8\x39\x15\xc6\xf7\x14\xa8\xd3\x9b\x1a\x9b\x7d\x98\x7a\x73\x71\x78\x75\x86\x1e\x85\x73\x82\x3d" +"\x83\x25\x08\xfb\x32\x16\xc6\xf7\x13\xa8\xd4\x9b\x1a\x9b\x7d\x98\x7a\x73\x71\x78\x75\x86\x1e\x85\x72\x82\x3e\x83\x25\x08\x0e\xf8" +"\x65\xf7\x9f\x15\x2c\x06\xc1\xf7\x23\x05\xf4\x06\x96\xc1\x05\x2b\xc7\x0a\xfb\x16\xc7\x0a\x22\x06\x80\x55\x05\xeb\x06\x55\xfb\x23" +"\x05\x22\x06\x80\x55\x05\xea\xc8\x0a\xf7\x16\xc8\x0a\xf4\x06\x30\xf7\x59\x15\x55\xfb\x23\x05\xfb\x16\x06\xc1\xf7\x23\x05\x0e\xf8" +"\x85\xf8\xf8\x15\x6b\xa2\x60\x9d\x5d\x95\x9b\xcf\x18\x69\x06\x7a\x4c\x05\x3c\x75\x86\x73\x61\x1f\x5c\x70\x6f\x5d\x56\x1a\x66\x97" +"\x6d\xa8\x67\x1e\xa1\x70\x9f\x79\xbf\x67\x46\xfb\xbd\x18\x3d\x9e\x71\xb0\x80\xf4\x7b\x88\x18\x70\xfb\x0f\xaf\x6d\xbf\x74\xc9\x7f" +"\x19\x75\x30\x05\xae\x06\xa0\xe4\xd4\x8e\xad\x92\xb2\x9f\x19\xc6\xa9\xae\xc7\xd1\x1a\xda\x72\xaf\xfb\x09\xe6\x1e\xc3\xf7\x81\xc8" +"\x73\xa2\x68\x8c\x41\x19\x9a\x89\x05\xfb\x4f\x3d\x15\x4d\xb8\x78\xa6\xb9\x1a\xb8\xa3\xae\xb6\x9a\x1e\x92\x9e\x8f\x8c\xb8\x1b\x5c" +"\xfb\xe3\x15\x91\x86\x05\xcf\x53\x9c\x6e\x56\x1a\x37\x57\x5d\x20\x83\x1e\x0e\xf7\x41\xf9\x3f\xf8\x07\x15\x21\xfb\x01\xfb\x0b\xfb" +"\x09\x36\xb7\x59\xd7\xb7\xb3\x9d\xac\xab\x1f\xc1\xc4\xab\xd9\xd8\x1a\xcf\x63\xb3\x48\x1e\x96\x6b\x15\xb2\xab\x67\x5f\x4c\x6b\x3e" +"\x5b\x58\x1f\x73\x75\x6e\x7d\x6e\x1b\x62\x77\xa3\xba\xbb\xa8\xdd\xad\xbc\x1f\xb4\xa6\xa7\x9d\xab\x1b\x62\xf7\xe5\x15\x63\x06\x59" +"\x59\x60\x79\x47\x1b\x6a\x74\x91\x96\x7e\x1f\x79\x9b\x05\x98\x7d\x70\x93\x70\x1b\xfb\x02\xfb\x00\xfb\x0c\xfb\x0f\x42\xbf\x52\xce" +"\xbf\xba\xa5\xbb\xb1\x1f\xb2\xbd\xa8\xd6\xbf\x1a\x97\x89\x9b\x87\x9e\x1e\x8e\x8b\x8b\x8a\x8e\x1e\x83\xa0\x98\x89\xa6\x1b\xba\xa2" +"\x91\xa3\xb6\x1f\xfb\xf2\xfd\x06\x05\xba\x06\xf0\xf8\xf9\x15\x92\x76\x8d\x7e\x7a\x1a\xfb\x06\x3a\xfb\x04\x39\x66\x75\xa3\xb2\xf6" +"\xdd\xf7\x1f\xcb\x90\x8e\x89\x85\x92\x1e\x9a\x7f\x95\x86\xa6\x84\x08\x0e\xf7\x0a\xf8\xa6\xf7\xf2\x15\x78\x07\xb3\x88\x95\x84\x75" +"\x1a\x68\x7b\x6f\x4c\x3f\x1e\x6b\xbc\x6c\xe0\x73\xf2\xca\xab\xa8\x9d\xa6\xa3\x08\xae\xab\x9d\xae\xad\x1a\xc0\x5f\xb4\x51\x2d\x49" +"\x36\xfb\x0d\x80\x8c\x7e\x8e\x70\x1e\x86\x8d\x7f\x8c\x7d\x1e\x23\x5e\x5f\x73\x68\x6e\x08\x5b\x63\x73\x5d\x55\x1a\x2a\xd2\x4e\xf7" +"\x03\xcb\xaa\x98\xcd\xf3\x1e\x52\xb8\xb2\x75\xc0\x1b\xbd\xaf\x9e\xbc\xb6\x1f\x80\x96\x05\x74\x6e\x79\x84\x74\x1b\x5c\x68\xa6\xce" +"\x63\x1f\xc2\xd7\x9a\xa1\xa9\xb5\x9d\xa5\x96\x99\x96\x95\x9a\x96\x96\x8f\xa8\x8e\x08\x9c\x07\xfc\x12\x86\x15\xaf\xfb\x13\xae\x36" +"\xad\x60\x08\x64\x5c\x60\x7a\x59\x1b\x42\x54\xc3\xd5\xd3\xcc\xd3\xed\xb0\x1f\xd8\xde\x15\x87\xa9\x8a\x9f\xa5\x1a\xe5\xa0\xb3\xbb" +"\xa9\x98\x7a\x63\x4a\x75\x6c\x36\x56\x1e\x0e\xfb\xdb\x80\x0a\x0e\xfb\xdb\xf7\x33\xfb\x43\x15\x66\xf1\x80\xc8\xec\x1a\xf7\x0d\xa7" +"\xf7\x23\xba\xf7\x03\x1e\xac\xda\xaa\xba\xcc\xcf\x7e\x9a\x18\xfb\x16\xfb\x0a\x58\x49\x61\x23\x08\x71\x4c\x80\x4e\x3e\x1a\x3e\x97" +"\x40\xa1\x46\x1e\x99\x61\x9a\x6b\xaf\x49\x08\x0e\xfb\xdb\xa8\xfb\x48\x15\xf7\x10\xf7\x00\xbe\xcc\xb8\xf7\x00\x08\xa7\xcd\x97\xca" +"\xd6\x1a\xc4\x83\xca\x7d\xc7\x1e\x7a\xcf\x7c\xaf\x5e\xdb\x78\x86\x18\xad\x3a\x9a\x3a\x27\x1a\xfb\x13\x69\xfb\x35\x59\xfb\x00\x1e" +"\x6e\x4a\x6d\x61\x4e\x4b\x08\x0e\xf7\xd3\xf8\x88\x15\xa0\x8f\x9e\x97\xb0\x1e\x93\xa5\x8e\x98\x96\x1a\xa2\x7d\x9b\x75\x75\x7e\x7c" +"\x72\x82\x8d\x82\x91\x77\x1e\x99\x5e\x8f\x73\x60\x1a\x64\xa2\x77\x9b\x6b\xaf\x08\xa2\x77\x80\x92\x7b\x1b\x77\x7c\x7c\x77\x70\x9a" +"\x80\xb9\x83\x1f\xb0\x85\xaa\x80\xa4\x7c\x97\x84\x18\x60\x71\x7a\x84\x5c\x83\x08\x61\x84\x7a\x7e\x73\x1a\x77\x9b\x7b\x9e\x9c\x9b" +"\x95\xa0\x9c\x1e\xa7\xae\x97\x96\xab\x9e\x94\x90\x8e\x8d\x8e\x8e\x08\x8d\x7b\x8b\x86\x83\x1a\x75\x85\x72\x7e\x67\x1e\x84\x76\x88" +"\x80\x82\x1a\x75\x9a\x7b\x9f\xa2\x9b\x9b\xa3\x94\x89\x92\x85\x9d\x1e\x7c\xb5\x87\xa1\x8a\xc0\x92\x87\x18\xac\x78\xa2\x77\xa5\x6a" +"\x08\x74\x9e\x97\x83\x9a\x1b\xa1\x9b\x9c\xa1\xa2\x7a\x97\x5f\x92\x1f\x6f\x90\x74\x92\x7c\x93\x66\x9e\x18\xb6\xa6\x9c\x92\xba\x93" +"\x08\xb5\x92\x9a\x96\xa5\x1a\xa1\x7c\x9a\x74\x7e\x83\x87\x7a\x7d\x1e\x55\x52\x89\x89\x5f\x6e\x08\x0e\x9a\xf7\xc5\xf7\xb2\x15\xfb" +"\x6f\x49\xf7\x6f\xfb\x70\xcd\xf7\x70\xcb\x0a\xfc\x2e\x90\xfb\x15\x33\x1d\xfb\xdb\xab\x0a\xfc\x2e\xdd\xef\x4c\x0a\x0e\xfc\x12\xf7" +"\xcd\xf9\x2e\x15\xfc\x0e\xfd\x40\x05\xd4\x06\xf8\x0e\xf9\x40\x05\x0e\xf7\xe9\xf9\x38\x15\xfb\x31\xfb\x2c\xfb\x78\xfb\x7f\xfb\x18" +"\xcb\x33\xec\xb6\xb5\x9a\xaa\xb5\x1f\xf0\xd5\xd7\xf7\x3a\xf7\x24\x1a\xf7\x32\x50\xea\x2a\x1e\x85\x6f\x15\xc0\xa9\x5d\x3b\xfb\x1a" +"\x63\xfb\x39\x52\x25\x1f\x49\x65\x62\x69\x5d\x1b\x56\x6b\xbd\xe0\xf6\xbe\xf7\x59\xbf\xe8\x1f\xcb\xb0\xb1\xaa\xb9\x1b\x0e\xbc\x16" +"\xf7\xab\x9a\x7a\x06\x5a\x77\x94\xa2\x94\x8e\x9a\x94\xa7\x1f\x8d\x92\x8c\x90\x8e\x95\xf7\x23\xf8\x9b\x18\x90\x9d\x8c\x91\x90\x1a" +"\x8f\x89\x8e\x88\x1e\x8b\x6f\x86\x55\x80\x1e\x31\x79\x89\x8a\x84\x8a\x7f\x89\x19\x7c\x07\xc4\x8d\x05\xa2\x8c\x9a\x7f\x77\x1a\x84" +"\x89\x84\x86\x77\x1e\xfb\x1e\xfc\x80\x7f\x66\x76\x81\x3c\x84\x19\x0e\xf8\x24\xf7\x1f\x15\x74\x5a\x77\x7f\x53\x89\x08\xfb\x52\x90" +"\x06\xf7\x54\xf7\x54\x05\xf7\x09\xf7\x09\xab\xbd\xce\x1a\xea\x44\xd5\x30\x67\x66\x82\x7a\x6d\x1e\x58\x6f\x70\x69\x6e\x43\xa0\x84" +"\x18\xcc\xb0\xb6\xa8\xc7\x1b\xd3\xc0\x57\x45\x76\x88\x78\x85\x7e\x1f\x73\x55\x5d\x4c\x4a\x45\xfb\x66\xfb\x74\x18\x7a\xf7\xf7\x07" +"\xbd\xf7\x18\x05\x0e\xf7\x46\xf8\xcb\x15\xba\xae\xad\x9f\xb5\x1b\xc1\xae\x67\x54\x61\x76\x67\x60\x6e\x1f\x60\x6e\x60\x7c\x32\x7c" +"\x8c\x7b\x18\xc3\x95\x8a\x82\xa5\x1f\xc8\x74\xab\x55\x3b\x1a\x68\x83\x67\x7d\x73\x1e\x63\x74\x5e\x6f\x62\x1b\x78\x75\x95\xa1\x6d" +"\x1f\xa0\x6e\x7b\x92\x78\x1b\x6f\x7b\x7d\x72\x65\xb3\x76\xd3\xc3\xbf\x98\xa3\xb4\x1f\xda\xb9\xbd\xdf\xe4\x1a\xd4\x6e\xb8\x49\xaa" +"\x1e\x8e\x07\xf7\x0c\xba\xae\xac\xcf\x1a\xd4\x50\xc1\x3a\x46\x4d\x64\x4a\x6b\x1e\x0e\xf8\x59\xf7\x85\x15\x2c\x06\xf7\x0d\xf8\x47" +"\x05\x62\x06\xfc\x35\xfc\x43\x77\x48\x05\xf7\x9a\x06\x5a\xfb\x46\x05\xda\x06\xb9\xf7\x44\x05\xef\x06\xfb\x36\xcc\x15\xfb\x68\x8f" +"\x06\xf7\xc4\xf7\xd2\x05\x8f\x06\x0e\xf7\x82\xf8\xe7\x15\xf7\x7a\x06\xa2\xd2\x05\xfb\x94\x06\x23\xfb\x6e\x05\x7c\x07\xec\x76\xac" +"\x7f\xaf\x6e\x08\xab\x71\xa0\x59\x56\x1a\xfb\x01\x3a\x29\x31\x76\x79\x93\xa0\x6e\x1e\x9e\x72\x7c\x92\x7b\x1b\x74\x7a\x7a\x74\x67" +"\xb2\x76\xce\xf7\x39\xf7\x19\xf7\x14\xf7\x33\xc9\x74\xc0\x60\xb4\x1f\x65\xae\x68\x9b\x3a\x9f\x08\x0e\xf8\x9c\xf9\x42\x15\xfb\x1a" +"\x7b\x48\x73\x35\x4c\x08\xfb\x12\x2d\x3e\xfb\x22\xfb\x23\x1a\xfb\x14\xd3\x38\xf7\x03\xf7\x1a\xf7\x06\xf7\x13\xf7\x2b\xf1\x44\xd5" +"\x28\x6f\x6a\x83\x7e\x70\x1e\x87\x8d\xd0\xf7\x13\xf7\x1c\xf0\xf7\x09\x99\x19\xfb\x9a\xfb\x97\x15\xd0\xb7\x59\x3e\x47\x73\x3c\x66" +"\x57\x1f\x5e\x6d\x68\x76\x60\x1b\x4e\x67\xbc\xdd\xcf\x9f\xde\xa5\xb7\x1f\xb9\xa6\xac\x9f\xba\x1b\x0e\xf8\xad\xf9\x24\x15\x85\x95" +"\x05\xfc\x0b\x06\x3a\xfb\x1c\x99\x82\xb9\xc3\xa7\x9a\xc6\x8c\x19\xf7\x72\x06\x8d\x88\xfc\x03\xfc\xea\x05\xd1\x06\x0e\xf7\xdd\xf8" +"\x12\x15\xf7\x0b\xb2\xb8\xb6\xd2\x1a\xde\x42\xc5\x25\x20\x42\x4e\x32\x55\x9f\x64\xce\x42\x1e\xfb\x12\x63\x46\x44\x33\x1a\x70\x93" +"\x6d\x9a\x72\x1e\x52\xac\xc7\x6e\xde\x1b\xf7\x10\xe6\xd8\xf2\xce\x6d\xc1\x36\xe3\x1f\x39\x65\x15\xf7\x02\xfb\x06\x97\x79\x52\x1a" +"\x3a\x52\x50\x3c\x3c\x53\xc5\xdd\xde\xc1\xd0\xea\xb0\x1e\xcb\xc2\x15\x3d\xd5\x7a\xa4\xb5\x1a\xd1\xb1\xb6\xcb\xcb\xb6\x5c\x44\x4c" +"\x70\x6b\x34\x62\x1e\x0e\xa2\x7a\x15\xf7\x1b\xa2\xce\xa6\xde\xcc\x08\xf7\x08\xe7\xcf\xf7\x19\xf7\x1b\x1a\xf7\x18\x43\xe1\xfb\x01" +"\xfb\x12\xfb\x08\xfb\x14\xfb\x20\x22\xc9\x41\xe3\xb4\xae\x97\xac\xc0\x1e\x8f\x89\x7a\x5d\x59\x4a\x4e\x53\x19\x42\x4e\x5a\x71\x3c" +"\x7a\x08\xf7\xbb\xf9\x1d\x15\xc9\xb0\x5a\x38\x3d\x72\x2e\x6d\x6e\x1f\x71\x71\x62\x7a\x65\x1b\x4b\x67\xbd\xe4\xd5\xa8\xdb\xb6\xb7" +"\x1f\xa4\xa3\xaa\x98\xad\x1b\x0e\xfb\xdb\xf5\xef\x15\x6c\x72\x71\x6c\x6e\xa4\x72\xa8\xab\xa4\xa3\xa9\xaa\x72\xa5\x6d\x1f\xee\xf7" +"\xe9\x9c\x0a\xfb\xdb\xaf\xfb\x15\x69\x0a\xf7\x46\xf8\xbd\x9c\x0a\x9a\xf9\x01\xf8\xe8\x15\xfc\x79\xfb\x9c\x89\x85\xf7\xe3\xfb\xa8" +"\xa8\xf3\xfb\x8d\xf7\x60\xf7\xfd\xf7\x5b\x05\x0e\x9a\xf8\xe2\xf8\x16\x15\xfc\x8c\x49\xf8\x8c\x06\xfb\x1a\x04\xfc\x8c\x49\xf8\x8c" +"\x06\x0e\x9a\xe9\xbd\x15\xf8\x79\xf7\x9c\x8d\x92\xfb\xe4\xf7\xa7\x6f\x24\xf7\x8d\xfb\x61\xfb\xfd\xfb\x5b\x05\x0e\xf7\x6c\xf7\x42" +"\x15\x92\xa8\x99\xc3\xa8\xb1\xd3\xc4\x19\xf7\x06\xe8\x9f\xa6\xc8\x1a\xd9\x51\xbe\x31\x39\x51\x5e\x4b\x6d\x9a\x79\xa4\xa2\x9b\x9a" +"\x9f\x93\x89\x91\x86\x96\x1e\x85\x98\x89\x91\x93\x1a\xa9\xa5\x9d\xb7\xbe\xa8\x6d\x54\x57\x75\x61\x4a\x44\x1e\x38\x2c\x7f\x75\x7a" +"\x28\x08\x7d\x36\x15\x6d\x74\x74\x6e\x6e\xa2\x75\xa9\xa7\xa4\xa3\xa6\xa8\x73\xa2\x6e\x1f\x0e\xf7\x98\xf8\xdf\xf8\x55\x15\xb3\x76" +"\x7c\x96\x68\x1b\x61\x62\x79\x6b\x6d\x1f\x58\x57\x6c\x3e\x44\x1a\x4c\xb2\x5b\xbd\xb5\xb8\xa5\xb8\xaf\x1e\x60\x91\xaf\x6e\xba\x1b" +"\xee\xe0\xf7\x02\xf7\x14\xf7\x37\xfb\x22\xf7\x13\xfb\x4c\xfb\x5e\xfb\x34\xfb\x2e\xfb\x56\xfb\x51\xf7\x33\xfb\x27\xf7\x62\xd2\xbd" +"\x98\xb7\xe9\x1f\x7f\xa8\x05\x68\x3e\x5a\x7f\x49\x1b\xfb\x40\xfb\x0d\xf7\x0d\xf7\x3f\xf7\x50\xf7\x09\xf7\x1a\xf7\x37\xf7\x30\xf7" +"\x15\xfb\x0e\xfb\x26\x4f\x72\x4a\x66\x63\x1f\x77\x78\x72\x80\x72\x1b\x73\x7e\x9a\xa6\x90\x8c\x94\x8d\x92\x1f\xcc\xf7\x90\x05\x46" +"\x06\x48\x6d\x15\xa7\x89\x99\x74\x89\x66\x08\xfb\x05\x85\x53\x27\x52\x1b\x66\x75\xab\xbf\xc1\x9d\xbc\xac\xb1\x1f\xa7\xab\xae\x9f" +"\xa3\x89\x08\x0e\x5a\x26\x1d\x0e\x5a\x83\x16\xf7\xae\x06\xf7\x31\xf7\x00\xdc\xf7\x0b\xd4\x6c\xb0\x2c\xb4\x1f\xd2\x9c\xa8\x97\xab" +"\xa7\x08\xa7\xa3\x9a\xad\xb3\x1a\xea\x44\xbf\xfb\x15\x1e\xfb\x96\x7b\x06\xca\x86\x99\x84\xdf\x1d\x51\x84\x85\x53\x81\x19\xf7\x8a" +"\xf7\xcf\x15\xcb\xb6\x87\x83\x9f\x1f\xb4\x7a\xa4\x60\x54\x1a\xfb\x00\x41\x49\xfb\x0e\x61\x75\x99\xa7\x98\x97\xbb\xa2\xda\x1e\x98" +"\xb6\x93\xa9\x96\xb9\x08\xd6\xf7\x9c\x15\xa1\x91\x97\x91\xb2\x1b\xdc\xaf\x69\x41\x52\x73\x5e\x60\x73\x1f\x69\x78\x5a\x83\x32\x8c" +"\x08\x0e\x92\x38\x0a\x0e\xc9\x79\x1d\x0e\x5a\x27\x1d\x0e\x5a\xf9\x19\x22\x0a\xfc\x86\x7b\x06\xcc\x85\x97\x85\xdf\x1d\x4f\x84\x85" +"\x52\x83\x19\x7b\xf7\x90\x9b\x07\x51\x8e\x79\x96\xa9\x1a\x94\x8d\x97\x92\xa3\x1e\xc9\xf7\x73\x05\x89\xb0\xa1\x8a\xa1\x1b\xb2\x92" +"\x8a\x87\x94\x1f\x9a\x83\x92\x7e\x77\x1a\x7b\x89\x7f\x85\x6c\x1e\x9c\x86\xd7\xf7\x7e\x79\x90\x5e\x31\x88\x8a\xfb\x3c\x89\x19\xcd" +"\xf7\x7d\x05\x9f\x91\x99\x91\xb4\x1b\xf7\x3d\xae\x7e\x4b\x84\x8b\x86\x8a\x81\x1f\x8a\x82\x8b\x89\x8a\x83\xa0\x89\x18\x0e\xc9\x2e" +"\x0a\x0e\xc9\xf9\x93\x22\x0a\xfb\x8b\x7b\x06\xc5\x84\x97\x83\x6f\x57\x0a\x5d\xfb\x38\x05\xfb\xb1\x06\xc1\xf7\x57\x4a\x0a\x88\x77" +"\x83\x70\xb7\x0a\x51\x1d\xf7\x18\xf8\x75\x9c\xc5\x93\x91\xc4\x95\x19\x0e\xfb\xdb\x2c\x1d\x0e\xfb\x6c\x6e\x0a\x0e\x92\x6f\x1d\x0e" +"\x23\x34\x0a\x0e\xf7\x41\xf9\xfd\x22\x0a\xfb\x3b\x06\xfb\xe4\xfc\x81\x54\xf8\x81\x05\xfb\x49\x7b\x06\xbd\x88\xa3\x80\x74\x1a\x83" +"\x87\x7c\x85\x79\x1e\x89\x87\x88\x81\x87\x7b\x88\x80\x18\x21\xfc\x08\x6c\x23\x7c\x77\x57\x85\x19\x7b\xf7\x5a\x9b\x07\x58\x8f\x77" +"\x97\xa7\x1a\x96\x8f\xa3\x90\x9d\x1e\xf7\x0a\xf8\x45\xc8\xfc\xb6\x05\x9c\x06\xf8\x0d\xf8\xc5\xfb\x15\xfc\x6a\x7b\x56\x77\x7c\x4a" +"\x84\x19\x7b\xf7\xa5\x9b\x07\x47\x91\x82\x91\xaa\x1a\x9c\x8d\x98\x94\xaa\x1e\xf7\x0f\xf8\x4f\x9d\xc7\x90\x90\xc6\x94\x19\x0e\x92" +"\x32\x0a\x0e\xc9\x26\x0a\x0e\x5a\xf7\x26\x62\x0a\x0e\xc9\xf7\xab\x7b\x15\xd8\x90\xb1\x95\xc3\xaa\x08\xf7\x28\xde\xf0\xf7\x36\xf7" +"\x32\x1a\xf7\x1b\x2b\xed\xfb\x18\x3a\x30\x62\x43\x3c\x1e\x26\x2e\x50\xfb\x0d\xfb\x0a\x1a\x39\xa9\x47\xc1\x61\x1e\xa6\x76\xa0\x81" +"\xb7\x81\x2f\x3a\x82\x84\x3f\x55\x95\x7c\x18\xa0\xb1\xb0\x95\xb3\x1b\x9f\xa8\x86\x7e\xb7\x1f\x7a\xc8\xc0\x82\xb1\x1b\xc2\xd1\xa5" +"\xb2\xbe\x1f\xa3\x9e\x98\x99\xa5\xae\x7c\x96\x18\x51\x53\x62\x79\x43\x1b\x6d\x67\x91\x9b\x52\x1f\x55\x99\x67\x92\x76\x8a\x72\x8a" +"\x18\xf7\x84\xf9\x56\x15\xdb\xbc\x51\x2c\x21\x5c\xfb\x26\x4b\x2e\x1f\x3b\x54\x4d\x65\x42\x1b\x39\x5d\xc7\xf5\xeb\xe6\x1d\x0e\x5a" +"\x3a\x1d\x0e\x37\x0a\x0e\x23\x50\x1d\x0e\xc9\x27\x0a\x0e\x5a\xf9\x44\x22\x0a\xfb\x4e\x7b\x06\xb8\x86\x9d\x81\x78\x1a\x78\x78\x61" +"\x6a\x51\x1e\xfb\x62\xfb\xf8\x49\xf8\x4f\x05\x8a\x90\x8b\x8f\x91\x1a\xad\x99\x94\xca\x93\x1e\x9b\xfb\x85\x7b\x07\xc3\x84\x8d\x89" +"\xa0\xfb\x12\xe0\xfc\x9c\x18\x9e\x06\xf8\x09\xf8\xfb\x9c\xa6\x9b\x97\xa2\x8c\x19\x0e\xf7\x41\x30\x0a\x0e\x5a\xf9\x23\x22\x0a\xfb" +"\x64\x7b\x06\xbc\x85\x97\x84\x74\x1a\x7e\x85\x7f\x7d\x7b\x1e\xfb\x25\xfb\x3b\x50\xf7\x27\x05\x81\xa5\x86\x9c\x98\x1a\xa4\x9b\x94" +"\xc2\x92\x1e\x9b\xfb\x9c\x7b\x07\xc5\x86\x9a\x81\x9e\x5d\xf5\xfb\x9b\x18\x7a\x78\x7a\x77\x7b\x78\x76\x73\x77\x73\x77\x74\x82\x80" +"\x81\x80\x82\x81\x5b\x53\x6d\x6b\x79\x7d\x72\x77\x7a\x82\x71\x86\x08\x7b\xf7\x6a\x9b\x07\x5b\x7a\x94\xa4\x9a\x92\x9b\x99\x9b\x1f" +"\xf7\x2b\xf7\x40\xce\xfb\x39\x05\x92\x79\x8f\x7b\x7c\x1a\x6e\x81\x86\x49\x86\x1e\x7b\xf7\xa5\x9b\x07\x45\x93\x82\x91\x72\xc7\x25" +"\xf7\x96\x18\xf7\x3d\xf7\x56\xbf\xc5\xa9\xa2\xb6\x99\x19\x0e\x23\x2f\x0a\x0e\x23\x39\x0a\x0e\xfb\xa3\xf8\x14\xf9\x10\x15\x92\xa6" +"\x05\xfb\x41\x06\xfb\x59\xfd\xc4\x05\xf7\x50\x06\x92\xa6\x05\x53\x06\x6b\x7a\x94\x9e\x90\x8b\x8b\x8f\x9b\x1f\xf7\x34\xf9\x3a\x92" +"\xa6\x95\x92\xa9\x8c\x19\x0e\xfc\x12\x62\xf9\x2e\x15\xf7\xb5\xfd\x40\x05\xd2\x06\xfb\xb4\xf9\x40\x05\x0e\xfb\xa3\x9e\xfb\x12\x15" +"\x84\x70\x05\xf7\x41\x06\xf7\x59\xf9\xc4\x05\xfb\x51\x06\x84\x70\x05\xc4\x06\xac\x9b\x82\x79\x86\x8b\x8b\x87\x7b\x1f\xfb\x35\xfd" +"\x3a\x85\x70\x82\x83\x6c\x8a\x19\x0e\xfb\x82\xea\xf7\xc3\x15\xf7\x23\xf7\xb9\xf7\x28\xfb\xb9\x05\xbf\x06\xfb\x43\xf7\xef\x05\x58" +"\x06\xfb\x3d\xfb\xef\x05\x0e\xf8\x6a\xfb\x16\x15\xbd\xfc\x84\x59\x07\x0e\xfb\xdb\xf7\xc1\xf9\x2e\x73\x0a\x0e\x25\x0a\x0e\xf7\x02" +"\xf9\x17\x15\xc7\x89\x90\x88\x75\x1a\x82\x89\x80\x84\x74\x1e\x89\x85\x89\x84\x8a\x85\x89\x84\x18\xfb\x1c\xfc\x89\x05\x87\x07\x74" +"\xd7\x6d\xc4\xf7\x2b\xf7\x3a\xf7\x42\xf7\x32\xd1\x5a\xbd\x48\x45\x57\x62\xfb\x02\x44\x1e\xbe\xf7\x4f\x93\xa7\xb8\xf7\x41\x86\x90" +"\x18\x58\x82\x6e\x86\x42\x82\x08\xf7\x64\xfb\xa0\x15\xb7\xa5\x6a\x56\x49\x59\x20\x4f\x4d\x1f\x65\x66\x60\x76\x60\x1b\x6c\x7c\x96" +"\xa2\xc7\xa9\xeb\xb5\xd6\x1f\xd8\xb7\xb8\xb1\xbb\x1b\x0e\xfb\x6c\x3c\x1d\x0e\x5c\x0a\x0e\xfb\x6c\x28\x1d\x0e\xfc\x12\xae\xf8\x20" +"\x15\xe5\x06\x33\xfc\x38\x05\x20\x75\x6a\x54\x61\x1b\x7f\x83\x92\x94\x8f\x2d\x1d\x91\x8c\x8f\x91\x52\x0a\x79\x74\x68\xad\x71\xb8" +"\xe4\xd0\xed\xf7\x4d\x40\x0a\xf7\x01\x06\x91\xab\x05\xfb\x00\x06\xf7\x32\xa8\xb0\xd1\xc3\x1b\x99\x93\x36\x0a\x87\x43\x1d\x9e\x9d" +"\xa1\xb1\x66\xa6\x59\x5b\x64\x75\x5d\x67\x1e\x6d\x63\x77\x5d\x6d\x2b\x08\x2f\x06\x0e\x39\x1d\x0e\x71\x1d\xfc\x12\x2f\x1d\x76\xf8" +"\xbb\x45\x0a\xfc\x12\xf7\x8a\xf8\x4b\x15\x88\x8d\x36\x7c\x56\x83\x6b\x89\x19\x7b\x07\xa6\x8c\x05\x92\x06\xa7\x97\x81\x75\x81\x86" +"\x71\x80\x5f\x1f\x43\xfb\xb8\x05\xfb\x1e\x69\x74\x60\x63\x54\x1d\xe2\xc7\xd6\xf7\x34\xb3\x1e\xdf\xf9\x06\x45\x0a\xfb\x6c\x72\x1d" +"\x0e\xfc\x12\xf7\x78\x3d\x1d\x0e\xc9\xf9\x45\xf7\x09\x15\x87\x86\x86\x86\x87\x85\x7a\x77\x82\x80\x8a\x8a\x08\x73\x75\x81\x84\x7d" +"\x1b\x83\x87\x90\x96\x8f\x8f\x9c\x91\xa3\x1f\xcf\xf7\x8f\x05\x8c\x90\x8d\x9b\x92\x1a\xaf\x72\xa6\x6a\x77\x77\x84\x7c\x73\x1e\x5a" +"\x6b\x62\x5b\x46\xfb\x02\x08\xa5\xd9\x99\xc2\x9e\x1a\xaf\x74\xa3\x69\x4e\x45\x49\xfb\x25\x2f\x1e\xc5\xf7\x65\x88\x8d\x55\x80\x76" +"\x87\x36\x7b\x19\x7b\x07\xb9\x8a\x8b\x8b\x94\x86\x08\x90\x89\x8f\x84\x84\x1a\x7f\x73\x2f\x68\xfb\x11\x1e\x75\x3f\x87\x7b\x7e\x58" +"\x08\xd6\x06\xbb\xf7\x32\x9a\xb1\xad\xbf\x08\xe1\xc4\xc6\xc2\xad\x1b\x98\x92\x82\x7b\x7e\x6d\xfb\x0a\x63\xfb\x21\x1f\x83\x6e\x87" +"\x7d\x7e\x5a\x08\xd6\x06\xb3\xf7\x30\x9f\xbe\xbe\xd1\x08\xcf\xbc\xbd\xb7\xa8\x1b\x96\x94\x82\x7f\x86\x89\x81\x86\x77\x1f\x51\xfb" +"\x7a\x05\x81\x64\x88\x7a\x81\x1a\x6d\x99\x7b\xa5\xba\xb7\xac\xd5\xc0\x1e\x90\x92\x05\x0e\x32\x1d\x0e\x2b\x1d\x0e\xc3\xf8\x27\x15" +"\xa2\x8c\x05\xa1\x8c\x9f\x7e\x7b\x1a\x7f\x68\xfb\x1f\x67\xfb\x18\x1e\x74\x36\x77\x40\x7c\x4c\xcc\x0a\x9a\x07\x5c\x7a\x93\xa1\x99" +"\x9c\xd7\x9f\xd7\xee\x1d\xf7\x3b\xf7\x34\xd9\x5f\xba\x44\x4a\x5b\x6b\x39\x51\x1f\xa8\xf0\x05\x8c\x90\x8c\x8e\x8b\x1a\x8e\x89\x8d" +"\x88\x1e\x8a\x06\xfb\x2e\x75\x05\xf7\x9b\x76\x15\xb6\x89\x9e\x71\x52\x1a\x47\x6e\x36\x60\x4d\x1e\x4f\x61\x5b\x6d\x57\x1b\x6f\x77" +"\x9a\xa1\xad\xae\xf7\x16\xa9\xd6\x1f\xa6\xcf\xc5\xbc\xbd\x88\x08\x0e\xf8\x1b\xfb\x53\x15\x79\x06\x67\x76\x95\x9e\x8c\x1f\x8e\x8c" +"\x8f\x8c\x8f\x1e\xf7\x38\xf8\xd5\x05\x42\x06\x7c\x5c\x05\xb9\x7b\x77\x9b\x62\x1b\xfb\x18\xfb\x35\xfb\x4c\xfb\x2c\x44\xb2\x5e\xca" +"\xd2\xb9\xaf\xf7\x14\xe4\x1f\x32\xfb\xb9\x7e\x63\x7b\x82\x4a\x87\x19\x7b\xf7\x85\x07\x45\xf9\x08\x15\xac\xa5\x70\x6a\x37\x47\xfb" +"\x22\x47\x52\x1f\x75\x71\x70\x7f\x73\x1b\x68\x76\xa9\xba\xd5\xbf\xf7\x02\xcc\xce\x1f\xaa\xaa\xac\x9d\xa8\x1b\x0e\xfb\xa3\x41\x0a" +"\x0e\xfb\xa3\x31\x0a\x0e\xfc\x12\xf7\xbc\xf8\x40\x15\x45\x1d\x8d\x1a\x91\x4f\x1d\x0e\x2a\x1d\x0e\xfb\x6c\xa0\xf8\x27\x15\x8c\x96" +"\x93\x8b\x96\x1b\xb2\x95\x7a\x2f\x99\x1f\x96\x45\x96\xfb\x27\x4e\x1a\x6e\x8c\x85\x93\xa4\xe6\xf1\xf7\x26\xf3\x1e\xae\xbd\xa5\xcb" +"\xb1\x1a\xab\x71\xa6\x6d\x74\x7d\x7e\x76\x7b\x91\x7f\x9d\x7b\x1e\x98\x7f\x90\x83\x81\x1a\x5c\x4a\xfb\x02\x43\x41\x1e\x6c\x6b\x84" +"\xf7\x21\x85\xbf\x7e\xd5\x19\xf1\x77\x8b\x8d\x82\x1b\x86\x84\x8a\x88\x83\x1f\x7b\x87\x4d\x7f\x6a\x86\x08\x0e\x92\x2d\x0a\x0e\xfb" +"\x6c\xf8\x26\xf7\x03\x15\x83\x82\x86\x85\x82\x7f\x08\x6d\x74\x7f\x81\x7f\x1b\x7d\x82\x98\xa7\x84\x1f\x88\x96\x8b\x8d\x8a\x8e\x08" +"\x72\xf1\x80\xb9\x9a\x1a\xd9\xb8\xae\xb6\x9d\x1b\x91\x94\x88\x86\x94\x1f\x84\x97\x92\x89\x94\x1b\x9f\x99\x9a\xa0\xa1\x7a\x9a\x73" +"\x5f\x66\x67\x20\x45\x1f\x80\xc2\x05\xcf\x7d\x80\x9f\x70\x1b\x74\x6b\x83\x76\x4d\x1f\x85\x89\x8b\x8b\x86\x89\x8f\x7c\x18\x95\xb2" +"\x92\x8c\x95\x1b\xa4\x91\x82\x4f\x99\x1f\xa8\xfb\x0f\x39\xfb\x09\x05\x6d\x76\x78\x79\x80\x1b\x85\x81\x8e\x91\x81\x1f\x92\x7e\x81" +"\x8e\x82\x1b\x77\x7d\x7c\x77\x71\x9e\x7b\xaa\xaa\x97\x94\xc7\xbd\x1f\xa6\xac\xa1\xa9\xb4\xc2\xa9\xfb\x0c\x18\x57\x98\x98\x7c\xab" +"\x1b\xb1\xa5\xa3\xe5\xc5\x1f\x0e\xfb\x6c\x31\x1d\x0e\xfb\xa3\x33\x0a\x0e\xfb\x98\xf8\x2b\xf9\x43\x15\xfb\x05\x5e\x69\x21\x6c\x1f" +"\x5b\xfb\x46\x78\x42\x75\x73\x4b\x7a\x19\xb2\x7d\x98\x7d\x6e\x1a\x73\x7f\x55\x75\x40\x1e\x75\x40\x81\x5d\x74\x1a\x54\xac\x77\xe7" +"\x88\x1e\x8e\x96\x05\x65\x96\x7c\x9d\xb0\x1a\x9b\x91\xa4\x9b\xc8\x1e\xa5\xe8\x9d\xda\x9d\x1a\xa6\x7b\x9e\x64\x9c\x1e\xcc\x9c\xa5" +"\xa8\xa1\xde\xb8\xf7\x3c\x18\xa0\xda\xa5\xa8\xc9\x9b\x08\x0e\xfc\x15\xce\xfb\x8d\x15\xcd\xfa\x7a\x49\x06\x0e\xfb\x98\xf7\x71\xf9" +"\x38\x15\xb1\x80\x9a\x78\x66\x1a\x7d\x84\x6e\x7c\x51\x1e\x89\x83\x8b\x8b\x82\x6a\x08\x6a\xfb\x15\x8b\x8b\x77\x1a\x6f\x9b\x79\xb2" +"\x7a\x1e\x49\x7a\x73\x6f\x74\x37\x5e\xfb\x3c\x18\x76\x3c\x71\x6e\x4d\x7b\x88\x80\x18\xf7\x05\xb8\xad\xf5\xaa\x1f\xbb\xf7\x46\x9e" +"\xd4\xa1\xa3\xcb\x9c\x19\x64\x99\x7e\x99\xa8\x1a\xa3\x97\xc0\xa1\xd7\x1e\xa1\xd6\x95\xb9\xa2\x1a\xc2\x6a\x9f\x2f\x8e\x1e\x0e\xfb" +"\x0b\xf8\x94\xf7\xa8\x15\x55\xab\x05\x64\x73\x7a\x7f\x6c\x1b\x76\x77\x90\x94\x7a\x1f\xba\x32\x79\x91\x5f\x1b\x5d\x6f\x77\x4b\x5d" +"\x1f\xc1\x6c\x05\xb1\xa4\x9c\x97\xa9\x1b\xa0\x9f\x86\x82\x9c\x1f\x5c\xe4\x9d\x85\xb7\x1b\xb1\xaf\xa0\xb3\xa8\x1f\x0e\xfb\xa3\xf7" +"\x74\xf7\xb1\x15\x56\xfb\x24\x67\x31\x65\x39\x08\x6e\x4d\x82\x6d\x6b\x1a\x6a\x99\x7a\xa5\xaf\x9f\xac\xde\x99\x1e\x9e\xf7\x0a\x9b" +"\xe1\xb0\xf7\x3a\x08\xa9\xf7\x54\x15\x6c\x72\x74\x6e\x6e\xa4\x73\xa9\xa6\xa4\xa3\xa6\xaa\x75\xa2\x6e\x1f\x0e\xf8\x32\xf8\xc4\x15" +"\x6d\x06\x61\xfb\x0c\x57\x83\x72\x82\x66\x73\x19\x2e\x50\x51\x28\x26\x1a\x55\x9e\x5f\xac\x72\x1e\x9a\x7f\x99\x85\xa6\x85\x5b\xfb" +"\x1c\x18\xaa\x06\xba\xf7\x19\x05\x8a\x90\x8c\x8b\x90\x1b\xd4\xc1\xaa\xd7\xc7\x1f\x7b\x95\x05\x4f\x53\x65\x76\x58\x1b\x81\x85\x8c" +"\x8e\x83\x1f\xf7\x1d\xf8\x1b\x05\xa3\x8a\x96\x84\x7e\x1a\x87\x89\x86\x87\x82\x1e\xb8\x0a\xa6\xa1\x7f\xa1\x79\x99\x1e\x78\x99\x7b" +"\x90\x68\x8e\x08\xfb\x3e\xfc\x23\x15\x70\xa2\x7f\xa9\xb8\x1a\xcb\xa0\xd3\xae\xc0\x1e\xae\xbf\xa8\xa1\xbe\x9a\x08\x0e\xf8\x20\xf7" +"\xd3\x15\x92\xb5\x05\xfb\x0f\x06\xf7\x76\xb5\xa2\xc1\xc4\x1b\xa3\x97\x7e\x6c\x8f\x1f\x68\x90\x92\x82\xa3\x1b\xa4\x99\x99\xa6\xb8" +"\x65\xaa\x54\x55\x59\x70\x5a\x65\x1f\x59\x4b\x76\x53\x77\xfb\x05\x08\xfb\x02\x06\x82\x61\x05\xf7\x05\x06\x72\xfb\x60\x05\x96\x63" +"\x8a\x8b\x7c\x1b\x53\x65\x6f\x63\x64\xa5\x72\xb2\xae\xa1\x9a\xbb\xb2\x1f\x59\xcb\xaa\x7e\xbc\x1b\xce\xbd\xad\xca\xa4\x1f\x80\x94" +"\x81\x84\x05\x77\x6f\x75\x84\x6e\x1b\x60\x5e\x96\xa6\x43\x1f\xb4\xe4\x91\x9b\xa5\xf7\x02\x08\xfb\x10\xfb\x8a\x15\x69\x7f\x6e\x74" +"\x6d\x1b\x73\x78\x9b\xa0\xa6\xa1\x9d\xaa\xa0\x97\x86\x77\xa7\x1f\x0e\xfc\x81\xac\x0a\xf8\x5c\xf7\x4a\x15\x97\xb3\x05\xfb\x48\x06" +"\xa3\xdd\x91\x93\x05\xf7\x3e\x06\x97\xb3\x05\xfb\x2b\x06\xf7\x49\xf7\x74\xab\xb3\x94\x92\xab\x99\x19\x9b\xfb\x51\x7b\x07\xbc\x85" +"\x8b\x8b\x95\x85\x48\x1d\x6f\x5b\x48\xfb\x06\xfb\x17\x1e\x86\x85\x84\x84\x88\x86\x7e\x7c\x18\x7e\xb8\x89\x95\x7d\xb8\x08\x6f\xeb" +"\x80\xb5\x9b\x1a\xa4\x96\x90\xcb\x91\x1e\x9b\xfb\x83\x7b\x07\xce\x82\x8f\x88\x9c\x55\xca\xfb\x6f\x18\xfb\x20\x06\x7f\x63\x05\xf7" +"\x37\x06\x8e\x81\x74\x3b\x05\xfb\x38\x06\x7f\x63\x05\xf7\x39\x06\x70\x2f\x7a\x58\x6e\x78\x4c\x87\x19\x87\x7b\x05\xf7\xb1\x9b\x06" +"\x35\x92\x85\x8e\xaa\x1a\xa1\x91\xa2\xa4\xdb\x1e\x0e\xf8\x56\xf8\x30\x15\xfb\x12\x06\x9d\xf7\x1f\x92\xae\x9c\xaa\x08\xa3\x97\x9d" +"\x97\xa1\x1b\x97\x94\x86\x82\x88\x89\x87\x87\x84\x1f\x86\x82\x89\x86\x85\x1a\x76\x9e\x79\xa1\xa2\x9c\x9e\xa7\xb3\x68\xa8\x5c\x63" +"\x66\x78\x65\x6d\x1e\x65\x5b\x77\x56\x78\xfb\x04\x08\xfb\x01\x06\x84\x6d\x05\xf7\x04\x06\x64\xfb\xeb\x7f\x25\x81\x5e\x7a\x71\x19" +"\x7c\x81\x7b\x81\x7a\x1b\x7f\x82\x92\x94\x90\x8d\x8f\x8f\x92\x1f\x91\x94\x8d\x92\x91\x1a\xa0\x79\x9c\x75\x71\x79\x77\x6e\x64\xab" +"\x70\xba\xe1\xce\xee\xf7\x36\xa1\x1e\xb5\xf7\xc3\x05\xf7\x0e\x06\x0e\xf7\x8d\xf8\x22\x15\x92\x79\x7a\x8f\x79\x1b\x51\x5b\x54\x47" +"\x5c\xa3\x57\xba\x55\x1f\xd7\x34\x05\xb1\x5f\x97\x74\x6d\x1a\x56\x61\x66\x4f\x66\x69\x9c\x9f\x91\x8f\x90\x96\x91\x1e\x9f\x98\x92" +"\x96\xa1\x1a\xa6\x7a\x9b\x6d\x68\x76\x76\x68\x4e\xc7\x5c\xd7\xe4\xce\xc6\xd9\xb3\x81\xa1\x56\xce\x1e\x8d\x8e\x05\x85\x97\x92\x8a" +"\x99\x1b\xd2\xba\xbd\xd7\xb4\x7c\xb4\x71\xab\x1f\xfb\x0f\xf7\x2a\x05\x7a\xa0\x82\xa4\xa5\x1a\xbe\xae\xab\xc4\xad\xa5\x7d\x7a\x85" +"\x87\x86\x82\x83\x1e\x7c\x7e\x85\x80\x7d\x1a\x71\x9e\x78\xa6\xab\x9f\xa0\xad\xc5\x55\xb4\x3f\x35\x4e\x57\x42\x5f\x9b\x69\xbe\x4d" +"\x1e\x65\x7e\x15\xac\xae\x72\x58\xb2\x1f\xb6\x52\x99\x6e\x69\x1a\x64\x6e\x6b\x67\x51\x20\xf7\x16\xd2\xb0\xa8\xa8\xb0\x1e\x0e\xb0" +"\xdd\x15\xb3\x63\xd8\xda\x05\x74\xac\xaa\x81\xb0\x1b\xb1\xaa\x95\xa2\xaa\x1f\xda\x3c\xb1\xb3\x3e\xd8\x05\xa2\xae\x94\xa8\xb1\x1a" +"\xb1\x82\xa8\x74\xac\x1e\xd8\xd9\x65\xb2\x3c\x3e\x05\xa0\x6d\x6c\x95\x65\x1b\x65\x6d\x82\x75\x69\x1f\x3e\xd8\x63\x64\xd9\x3d\x05" +"\x75\x6b\x81\x6d\x64\x1a\x65\x94\x6e\xa2\x69\x1e\xf7\x23\xf7\x72\x15\xca\xbf\x54\x49\x48\x57\x55\x4a\x49\x56\xc1\xcf\xce\xc0\xc0" +"\xcf\x1f\x0e\xfc\x52\xf7\x2d\xf8\x39\x15\xc6\xf7\x13\xa8\xd4\x9b\x1a\x9b\x7d\x98\x79\x73\x72\x78\x75\x86\x1e\x85\x73\x82\x3d\x83" +"\x25\x08\x0e\x23\xf7\xbc\xf9\x2e\x73\x0a\xf7\x5c\x9c\x15\x36\x5c\x5e\x54\x52\x1a\x63\xa4\x6c\xab\xa9\xa1\x9f\xa6\x9c\xbf\x0a\xa1" +"\xa5\xc0\xae\x1e\x0e\xc0\xf7\x6c\x60\x0a\x71\x77\x52\x4b\x1e\x71\x74\x80\x83\x31\x45\x08\xf7\x36\x82\x15\x97\x79\xa1\x70\xac\x64" +"\x94\x81\x92\x82\x90\x83\x08\x63\xa6\xa4\x6f\x94\x1b\x8f\x8e\x8e\x8f\x95\x72\xc2\x66\xcf\x1f\x88\x90\x83\x9c\x82\x9d\xa6\xa9\xa1" +"\xa2\x9b\x99\x98\x97\x98\x98\x98\x98\x08\xaf\xb1\x9b\xa2\x98\x1a\x8f\x88\x8e\x88\x84\x72\x77\x52\x4a\x1e\x71\x74\x80\x83\x31\x45" +"\x08\x0e\xfb\xdb\xbe\xf7\x6c\x60\x0a\x71\x77\x52\x4b\x1e\x71\x74\x80\x83\x31\x45\x08\x0e\xfb\xdb\xf7\xae\xf7\x74\x15\x7f\x9d\x75" +"\xa6\x6a\xb2\x82\x95\x84\x94\x86\x93\x08\xb3\x70\x72\xa7\x82\x1b\x87\x88\x88\x87\x81\xa5\x54\xaf\x47\x1f\x8e\x86\x93\x7a\x94\x79" +"\x70\x6d\x75\x74\x7b\x7d\x7e\x7f\x7e\x7e\x7e\x7e\x08\x67\x65\x7b\x74\x7e\x1a\x87\x8e\x88\x8e\x92\xa2\x9d\xc6\xce\x1e\xa5\xa2\x93" +"\x91\xc4\xb8\x97\x93\x97\x95\x97\x94\x08\x0e\xf7\x18\xf8\x20\x15\x85\x7b\x76\x29\x63\xfb\x58\x6d\xfb\x28\x7f\x5e\x7a\x6b\x08\x6c" +"\x79\x7a\x7e\x72\x1b\x7c\x86\x8e\x95\x8e\x8c\x8e\x8e\x90\x1f\x8f\x92\x8c\x8f\x90\x1a\xa0\x79\x9c\x76\x97\x0a\x90\x88\x84\x87\x8a" +"\x89\x80\x61\x1f\x50\xfb\x68\x7c\x4e\x88\x0a\x93\xad\xf7\x15\xb1\xf7\x1e\x1f\x94\xac\x93\xa8\x90\x9c\x8c\x8f\x18\x8f\x9b\x8c\x92" +"\x90\x1a\x86\x8e\x05\x87\x87\x8b\x89\x81\x1f\x87\x72\x70\x89\x6e\x1b\xfb\x2a\x06\xa9\xf4\x9a\xb3\x9f\xaa\x08\xb1\xa4\xa9\x9c\xb4" +"\x1b\xa0\x98\x85\x81\x88\x8a\x89\x88\x87\x1f\x84\x84\x89\x86\x80\x1a\x72\x9b\x7a\xa4\xa4\x9c\x9c\xa4\xb5\x61\xa7\x4e\x53\x54\x73" +"\x64\x68\x1e\x61\x5c\x77\x62\x6c\x25\x08\x34\x06\x84\x6b\x05\x0e\xf8\x0b\xf8\x20\x15\x83\x64\x88\x7e\x75\x39\x08\x69\xfb\x17\x7e" +"\x4c\x70\x1a\x6c\x9e\x78\xa8\xb5\xa9\xa3\xdc\xc7\x1e\x7b\x94\x05\x57\x5e\x78\x7a\x7d\x1b\x85\x86\x90\x91\x9b\xe1\xf8\x00\xb4\xf7" +"\x32\x1f\x9c\xca\x8f\x9d\x92\x8b\x0a\x76\x75\x8d\x79\x1b\x53\x53\x72\x61\x64\x1f\x60\x5c\x76\x62\x6d\x28\x08\x30\x06\x85\x6b\x05" +"\xe4\xec\x1d\x6d\xfb\x06\x79\x6c\x08\x6c\x78\x7c\x80\x72\x1b\x7d\x85\x8f\x94\x8e\x2d\x1d\x92\x8c\x90\x90\x1a\x9f\x79\x9c\x75\x77" +"\x7b\x7a\x74\x67\xab\x71\xb9\xe5\xd2\xf0\xf7\x51\xb5\x1e\xd0\xf7\xca\x05\x92\xab\x15\x90\x9f\x05\xf7\x26\xb0\xbc\xcd\xd3\xc9\x0a" +"\x85\x83\x89\x85\x84\x1a\x86\x8c\x86\x8f\x84\x1e\x8f\x84\x8d\x85\x8a\x88\x8a\x88\x18\x67\xfb\x24\x05\x0e\xf8\x8d\xf7\x87\x15\xfc" +"\x8b\x06\x83\x5d\x05\xf8\x8b\x06\x0e\xf7\x47\xfb\x33\x15\xbb\xf7\x66\x9c\xd2\xb1\xec\xa5\xb2\x19\x7e\xa2\x88\x9e\xb6\x1a\xab\x8d" +"\x9b\x92\xae\x1e\xb7\xa0\x87\x7a\xb3\x1f\x83\x9e\x93\x89\x96\x1b\xa7\x9b\x9a\xa6\xa6\x7c\x98\x6b\x7c\x82\x89\x81\x74\x1f\x66\x7c" +"\x80\x89\x61\x8a\x96\xbb\x92\x9e\xa8\xba\x08\x9e\xa7\x90\x99\x9d\x1a\xa8\x7c\x9b\x70\x6c\x7b\x77\x66\x81\x8c\x83\x8e\x7a\x1e\x8f" +"\x78\x8c\x80\x80\x1a\x74\x89\x78\x83\x5f\x1e\x61\x8c\x80\x8d\x66\x9a\x08\x94\x75\x81\x8e\x7d\x1b\x6a\x7c\x7e\x70\x70\x9b\x7c\xa7" +"\x96\x93\x8d\x94\x9f\x1f\x9b\xb2\x9b\x8f\xb4\x1b\x7e\x41\x75\x5c\x64\x60\x08\x86\x8b\x85\x8d\x7b\x1e\x8d\x78\x8c\x7f\x81\x1a\x56" +"\x7e\x2e\x76\x21\x1e\x88\x7c\x83\x63\x82\x5d\x08\x0e\xf7\xae\xf8\x3f\x15\x78\x37\x77\x60\x66\x67\x08\x8c\x87\x8c\x88\x89\x1a\x96" +"\x65\x8e\x7b\x78\x1a\x75\x87\x6c\x84\x6a\x1e\x71\x06\x78\x7e\x8e\x99\x6b\x1f\x95\x73\x7d\x8f\x7e\x1b\x6f\x77\x7a\x72\x73\x9d\x7b" +"\xa6\x99\x95\x8d\x95\xa4\x1f\xb2\x9a\x98\x8d\xb2\x8c\x84\x5f\x84\x7a\x6e\x5c\x08\x77\x6d\x85\x7b\x79\x1a\x6f\x9b\x79\xa4\xa5\xa1" +"\xa4\xa8\x91\x8a\x94\x89\x96\x1e\x87\xa2\x89\x9f\x9e\x1a\xa3\x8e\x9f\x92\xab\x1e\xb2\x8a\x97\x89\xb3\x7c\x08\x82\xa3\x96\x88\x97" +"\x1b\xa8\x9d\x9b\xa3\xa3\x77\x9d\x6f\x7e\x7d\x87\x81\x73\x1f\x7e\x6b\x7e\x87\x78\x1b\x78\x06\x9e\xdf\x9f\xb6\xb0\xaf\x08\x7f\xb5" +"\x87\x9e\xa1\x1a\xa1\x8f\xaa\x92\xab\x1e\xa5\x06\x9d\x99\x88\x7d\xab\x1f\x81\xa3\x98\x87\x99\x1b\xa7\x9f\x9c\xa4\xa3\x79\x9b\x70" +"\x7d\x81\x88\x82\x72\x1f\x63\x7c\x7f\x89\x64\x8a\x92\xb7\x92\x9d\xa8\xba\x08\x9f\xa9\x91\x9b\x9d\x1a\xa6\x7a\x9d\x73\x71\x75\x72" +"\x6e\x85\x8c\x82\x8d\x80\x1e\x8f\x74\x8d\x76\x7a\x1a\x75\x89\x78\x84\x67\x1e\x64\x8c\x7f\x8d\x63\x9a\x08\x94\x73\x80\x8e\x7e\x1b" +"\x6f\x79\x7b\x73\x72\x9f\x7a\xa7\x99\x98\x8f\x95\xa3\x1f\x99\xab\x99\x8e\x9d\x1b\x0e\xfc\x2e\x46\x0a\xfb\x1d\xf8\xfc\x22\x0a\xfb" +"\x95\x06\x25\x4e\x75\x55\x5e\x1f\x67\x60\x74\x47\x4c\x1a\x64\x9b\x6b\xa8\x76\x1e\xa7\x78\xa4\x84\xc2\x89\x7f\x5f\x84\x74\x80\x5e" +"\x47\xfb\x94\x8b\x8b\x7e\x87\x7f\x85\x7b\x88\x5d\x87\x86\x76\x18\xf7\x28\x06\xf7\x5c\xf9\x87\x05\xc5\x06\xfb\x5c\xfd\x87\x05\xf7" +"\x28\x06\x90\xa0\x05\x4c\x92\x82\x8e\x9b\x1a\x97\x8d\x96\x94\xa6\x1e\x8d\x92\x8d\x92\x8c\x1a\xf7\x30\xf8\xdd\x99\xbb\x92\x90\xd7" +"\x90\x19\xfb\xf7\xfb\xdc\x15\x6f\x8e\x7e\x8f\x7f\x97\x08\x76\x9e\x7f\xaa\xac\x1a\xc9\xa7\xd7\xb1\xb4\x1e\xa7\xaa\xa7\x98\xb6\x8e" +"\x08\x0e\xfb\xca\xf7\x5d\xf8\x5a\x15\x42\x51\x51\x42\x40\xc7\x4f\xd5\xd3\xc7\xc6\xd2\xd8\x50\xc6\x3f\x1f\x0e\xfb\xdb\xc0\xfb\x15" +"\x33\x1d\x23\xcd\xfb\x15\x69\x0a\xf7\x6e\x7a\x37\x1d\xc3\xc3\x3e\x0a\x70\x79\x38\x1d\x70\x56\x68\x1e\x0e\x23\x80\x0a\xf7\x6e\x7a" +"\x15\xe0\xba\xb8\xc2\xc4\x3e\x0a\x70\x79\x91\x81\x9e\x7a\x1e\x9a\x7d\x90\x83\x80\x1a\x71\x74\x6f\x57\x69\x1e\x0e\xf8\x53\xf7\x74" +"\x15\x7f\x9d\x75\xa6\x6a\xb2\x82\x96\x84\x93\x86\x93\x08\xb4\x70\x72\xa6\x82\x1b\x87\x88\x88\x87\x81\xa5\x54\xaf\x47\x1f\x8e\x86" +"\x93\x7a\x94\x79\x70\x6d\x75\x74\x7b\x7d\x7e\x7f\x7e\x7e\x7e\x7e\x08\x67\x65\x7b\x74\x7e\x1a\x87\x8e\x88\x8e\x92\xa2\x9d\xc6\xce" +"\x1e\xa5\xa2\x93\x91\xc4\xb8\x97\x93\x97\x95\x97\x94\x08\xfb\x36\x94\x15\x7f\x9d\x75\xa6\x6a\xb2\x82\x95\x84\x94\x86\x93\x08\xb3" +"\x70\x72\xa7\x82\x1b\x87\x88\x88\x87\x81\xa5\x54\xaf\x47\x1f\x8e\x86\x93\x7a\x94\x79\x70\x6d\x75\x74\x7b\x7d\x7e\x7f\x7e\x7e\x7e" +"\x7e\x08\x67\x65\x7b\x74\x7e\x1a\x87\x8e\x88\x8e\x92\xa2\x9d\xc6\xce\x1e\xa5\xa2\x93\x91\xc4\xb8\x97\x93\x97\x95\x97\x94\x08\x0e" +"\xf7\x79\xf7\x04\xef\x4c\x0a\xf7\xbd\x16\x6d\x72\x72\x6b\x6e\xa4\x72\xa7\xab\x36\x1d\xf7\xbd\x16\x6c\x73\x72\x6b\x6e\xa4\x72\xa7" +"\xab\x36\x1d\x0e\xf7\xe8\xf8\xde\xf9\x56\x15\x5f\x06\x35\x33\x79\x80\x56\x1b\x5d\x77\x93\xaa\x66\x1f\xa1\x6f\x7f\x91\x75\x1b\x26" +"\x2f\x26\xfb\x04\x3e\xbf\x4f\xce\xe4\xd8\xf7\x02\xf7\x13\x96\x8b\x8f\x88\x97\x1f\x8a\x92\x05\x7e\xb4\x8f\x8a\x9f\x1b\xc8\xac\x99" +"\xb7\xb0\x1f\xfc\x1d\xfd\x27\x05\xb9\x06\xc4\xf9\x30\x15\x8f\x8a\x90\x88\x93\x83\x96\x80\x8f\x88\x92\x88\x08\xaa\x7b\x8f\x86\x69" +"\x1a\xfb\x07\x4e\x29\x44\x66\x74\xaa\xba\x8d\x1e\x8e\xcb\xa6\xd3\xb0\xb7\x9b\x9f\xa5\x9f\x92\x8a\x08\xf7\xed\xfb\xd4\x15\x29\x2e" +"\x26\xfb\x00\x65\x94\x6e\x9d\x72\x1f\x6e\xa1\xb1\x78\xad\x1b\xe1\xd8\xf7\x01\xf7\x0e\xd6\x69\xb6\x50\x1f\x94\x6f\x15\xae\xa5\x66" +"\x58\x59\x78\x4e\x6e\x61\x1f\x68\x72\x6e\x79\x6a\x1b\x6a\x76\xa7\xb7\xb7\x9d\xcb\xa4\xb8\x1f\xb9\xa6\xa7\xa2\xa9\x1b\xf7\xf3\xa7" +"\x15\x29\x2e\x26\xfb\x00\x64\x94\x6f\x9d\x72\x1f\x6e\xa1\xb1\x78\xad\x1b\xe1\xd8\xf7\x01\xf7\x0e\xd6\x69\xb6\x50\x1f\x94\x6f\x15" +"\xae\xa5\x66\x58\x58\x78\x4f\x6e\x61\x1f\x68\x73\x6e\x79\x69\x1b\x6b\x75\xa7\xb3\xd1\xab\xe0\xb7\xba\x1f\x9a\x99\x9f\x94\x9d\x1b" +"\x0e\xf7\xb0\xf7\xb1\x15\x84\x6e\x7d\x53\x6d\x65\x44\x52\x19\xfb\x06\x2e\x77\x70\x4e\x1a\x3d\xc5\x58\xe4\xde\xc5\xb8\xcb\xa9\x7c" +"\x9d\x72\x74\x7b\x7d\x75\x84\x8d\x85\x90\x80\x1e\x91\x7e\x8d\x85\x83\x1a\x6d\x70\x79\x60\x58\x6e\xa9\xc1\xc0\xa1\xb5\xcc\xd2\x1e" +"\xde\xea\x96\xa1\x9d\xee\x08\x99\xf7\x50\x15\x6e\x73\x73\x70\x6e\xa3\x74\xa8\xa9\xa2\xa2\xa8\xa8\x74\xa1\x6d\x1f\x0e\xfb\xdb\xf7" +"\xac\xf8\x80\x28\x0a\xfb\xdb\xf7\x48\xa7\x1d\xfb\xdb\xf7\xbd\xf9\x29\x20\x0a\xfb\xdb\xf8\x23\xf9\x04\x15\x6a\x7f\x7f\x8e\x1d\xb0" +"\xce\x99\x1f\x0e\xfb\xdb\xf8\x2f\xf8\xdb\x29\x1d\xfb\xdb\xf8\x19\xf9\x1e\x3e\x1d\xfb\xdb\xf7\x95\xf8\xf2\x24\x1d\x0e\xfb\xdb\xf7" +"\x31\xf8\xf2\x23\x1d\xfb\xdb\xf7\x92\xf9\x57\xa4\x1d\x66\x6f\x58\x0a\x0e\xfb\xdb\xa0\x2b\x15\x94\x83\x05\x90\x99\x93\x8d\x95\x1b" +"\xa6\x9e\x79\x71\x71\x78\x7c\x69\x76\x7a\x8f\x96\x6d\x3c\x0a\x82\x85\x8a\x89\x81\x1f\xb7\xcd\x05\x65\x06\x0e\xfb\xdb\xe8\xaa\x1d" +"\x93\xfb\x34\x2b\x0a\xfb\xdb\xf7\x4b\x41\x15\x75\x70\x73\x81\x6b\x1b\x68\x73\xa0\xa9\xa9\x95\xa9\xa2\xae\x1f\x73\x06\x59\x65\x77" +"\x6b\x5f\x1a\x57\xb6\x60\xbf\xbc\xb4\xa5\xbe\xae\x1e\x0e\xfb\xdb\xf8\x3e\xf9\x29\x21\x0a\xf7\x79\xcf\x1d\xf7\x79\x81\x0a\x7d\x89" +"\x7d\x87\x73\x78\x0a\xaa\x88\x9d\x88\x91\x87\x08\x91\x88\x8e\x84\x83\x80\x1d\x0e\xfc\x14\xf7\xbf\xf9\x35\x15\x89\x89\x84\x6d\x05" +"\xa3\x86\x77\x96\x69\x1b\x33\x26\x20\x2e\x5f\xa9\x71\xbb\xbc\xa6\x9e\xcf\xbd\x1f\x7d\x68\x88\x81\x7a\x1a\x7c\x97\x81\x9e\xa5\x99" +"\x96\xc2\xbd\x1e\x84\x95\x05\x6d\x6e\x81\x82\x85\x1b\x89\x89\x8e\x8e\x9a\x9c\xcd\xb4\xf7\x25\x1f\x25\x7a\x15\x96\x8a\x93\x7b\x76" +"\x1a\x6c\x76\x56\x70\x63\x1e\x67\x71\x70\x77\x73\x1b\x7c\x7d\x9e\xa0\xd5\xde\xf7\x02\xbf\x85\x1f\x0e\x23\xf8\xaf\xf7\x4d\x15\x68" +"\x43\x70\x6b\x5f\x75\x08\x7a\x68\x62\x85\x37\x1b\x3c\x71\x93\xa5\x96\x96\xb7\xa6\xe8\x1f\x93\xa8\x90\x9f\xa0\xd5\xf7\x22\xde\x18" +"\x99\xbc\xfb\x23\x36\xbc\xf7\x43\x4a\x0a\x87\x77\x84\x70\x1e\x53\xfb\x5c\x28\x50\x7e\x5b\xee\xc6\x55\xfb\x56\x79\x51\x84\x85\x53" +"\x81\x19\x7b\xf8\x91\x07\xc5\xf7\x47\x05\x0e\xc9\xc3\x0a\x6d\x91\x67\x6a\x0a\x6e\x92\x6c\x64\x1a\x24\x5b\xfb\x29\x4b\x30\x1e\x3c" +"\x55\x4d\x65\x44\x1b\x69\x74\x93\xa0\x74\x1f\x0e\xf7\xb0\xfa\x58\x22\x0a\xfc\x05\x06\xfb\x2c\x98\x05\xfb\x64\xfb\x4e\xfb\x65\xfb" +"\x7c\xfb\x1a\xec\x28\xf7\x16\xa4\x9b\x8c\x8e\xc8\x1f\x8e\xbf\xa3\x8c\xad\x1b\xf7\xee\x06\xcc\xf7\x3a\x7b\x91\x05\xfb\x02\x3b\x50" +"\x6e\xfb\x25\x1b\x52\x79\x94\xa6\x94\x8e\x9b\x93\xa9\x1f\x8c\x8d\x8c\x8e\x8d\x1a\x8d\x92\xbf\xf7\x52\xc9\x88\xda\x88\x9a\x82\x8c" +"\x5c\x19\x89\x7b\x87\x71\x9f\x89\xcd\xf7\x7a\x79\x8f\x63\x31\x7e\x85\xfb\x31\x8c\x19\xcb\xf7\x77\x91\xa3\x94\x92\xa1\x8c\x19\xeb" +"\x06\xf5\x88\x9b\x7c\x89\x28\x08\x9b\x06\xfc\x6f\xfb\xc4\x15\x76\x3f\x7e\x6c\x73\x6e\x08\x72\x77\x67\x7d\x60\x1b\x2b\x5b\xc7\xf7" +"\x0a\xf7\x24\xce\xf7\x34\xe7\xd8\x1f\xad\xb3\xb8\x9c\xba\x1b\xc8\xb5\x6a\x5d\x7d\x8b\x8b\x77\x41\x1f\x0e\xfb\xf2\xf7\x9d\xf9\x38" +"\x15\x26\x2a\x30\x2b\x59\xb1\x6a\xc6\xed\xef\xe9\xe7\xbc\x63\xae\x52\x1f\x84\x75\x15\xa0\x8a\x95\x7c\x6c\x1a\x57\x71\x4a\x67\x65" +"\x1e\x7d\x7e\x78\x83\x7a\x1b\x74\x7c\x9d\xa7\xe0\xcb\xec\xc1\x87\x1f\x0e\x92\xb7\x1d\xf7\x00\xaa\xbb\x9d\xb0\x71\x0a\x6e\x1a\x35" +"\x74\x0a\x0e\xfc\x12\x2f\x1d\x0e\xfc\x12\xf7\x65\xf8\x2e\x15\xd1\xf7\xa0\xed\x1d\xbd\x9d\x84\x7a\x82\x79\x43\x5c\xfb\x43\x1f\x43" +"\x67\x7f\x5d\xd3\xaf\x82\x69\x84\x71\x86\x7b\x19\x76\x41\x05\x78\x45\x84\x6c\x79\x1a\x66\x9b\x78\xac\xbf\xad\xa7\xec\xcc\x1e\x7e" +"\x94\x05\x38\x49\x83\x83\x76\x1b\x81\x86\x91\x98\x93\x8d\x97\x90\x9b\x0a\x70\x1d\x0e\x92\xf8\xe5\xf4\x15\x4f\x3d\x6e\x7c\x65\x1b" +"\x5e\x6d\xad\xbe\xa0\x90\xac\x90\x9b\x1f\x8f\x97\x93\x8f\xa3\x8d\xb6\x8f\xd5\xa8\xb4\xa7\x08\xb6\xaa\xa5\xb3\xb2\x1a\xb5\x6d\xa4" +"\x58\x54\x68\x79\x4d\x46\x1e\xbd\x79\x62\xa9\x56\x1b\xfb\x15\xfb\x25\xfb\x36\xfb\x24\x36\xc8\x4e\xdf\xbf\xae\x9c\xbd\xbe\x1f\x5d" +"\xa3\xae\x75\xb8\x1b\xca\xc6\xab\xd5\xd6\x1f\xfb\xd4\xf7\xd8\x15\xaf\xa2\x71\x63\x69\x7f\x50\x76\x45\x1f\x7a\x50\x7c\x69\x76\x6d" +"\x08\x64\x70\x70\x79\x6a\x1b\x62\x71\xad\xc4\xed\xb7\xf7\x08\xcb\xd0\x1f\xa2\xa1\xa3\x97\xa6\x1b\xf7\x00\xfb\x5f\x15\xa5\xdf\x9e" +"\xaf\xb2\xb5\x08\xa4\xa2\xa4\x99\xa1\x1b\xa0\x98\x7c\x74\x69\x77\x66\x6a\x6d\x1f\x6c\x70\x7a\x83\x34\x70\x08\x0e\xf7\xde\xf8\x14" +"\x15\x93\x8e\x05\xf7\x04\xb6\xb6\xb8\xd4\x1a\xda\x53\xbf\x38\xfb\x11\x3f\xfb\x00\xfb\x94\x51\x1e\x43\xfb\xd3\x05\xfb\x1b\x6d\x70" +"\x5f\x59\x1b\x81\x84\x8e\x90\x8e\x8c\x8e\x8e\x8f\x1f\x90\x94\x8e\x95\x92\x1a\xa0\x7a\x9a\x74\x73\x7c\x7b\x71\x66\xaa\x72\xb9\xdc" +"\xd0\xdc\xf7\x1e\xaf\x1e\xf7\x03\xf8\x3e\x05\xf7\x24\xb1\xbb\xd5\xc6\x1b\xb3\xa1\x6f\x58\x54\x7b\x56\x71\x6e\x1f\x70\x73\x66\x7b" +"\x6a\x1b\x7e\x87\x88\x81\x81\x91\x87\x9f\x8a\x1f\xc2\x89\xa5\x68\x45\x1a\x47\x78\x3b\x6f\x58\x1e\x68\x77\x73\x78\x70\x1b\x81\x83" +"\x91\x92\x8d\x8d\x90\x8d\x8f\x1f\x91\x95\x8d\x93\x94\x1a\xa3\x7c\x9b\x74\x70\x7a\x79\x6e\x64\xab\x70\xbb\xb9\xbc\xa0\xaf\xad\x1e" +"\xbe\xc0\xac\xd9\xd0\x1a\xb9\x73\xba\x68\xa2\x1e\x78\x97\x7c\x90\x6c\x8f\x08\x0e\xfb\xfc\xf7\x74\xf7\xb3\x15\x65\x8c\x80\x8f\x9a" +"\x1a\x94\x91\xa2\x98\xb5\x1e\xe2\xf7\xa6\x05\x8d\x92\x8c\x91\x8e\x1a\x8e\x89\x8d\x88\x1e\x88\x06\x88\x8a\x05\x82\x78\x87\x86\x71" +"\x1f\x73\x86\x7a\x89\x6d\x86\x08\x78\x07\xad\x8c\x05\x98\x93\x85\x7f\x87\x8a\x84\x87\x81\x1f\x31\xfb\xb1\x85\x7c\x7f\x86\x5c\x86" +"\x19\x7b\xf7\x49\x07\x0e\x9a\xf8\xa0\xf7\x00\x15\xcd\xf7\xaa\xfc\x8c\x49\xf8\x4a\x06\x0e\xf8\x79\xf8\x40\x15\x33\x06\x35\xfb\xcd" +"\x05\x5d\x65\x5f\x73\x5f\x1b\x63\x72\xa4\xb4\x94\x8d\x9b\x8d\x93\x1f\xda\xf7\xb0\x05\x33\x06\x26\xfc\x0a\x84\x6f\x7f\x6c\x78\x62" +"\x19\x69\x4e\x82\x71\x68\x1a\x6f\x95\x7e\xa2\xbd\xa5\xca\xf7\x0e\x8c\x1e\xb7\x8c\x98\x8f\xac\x1e\x95\x6b\x94\x7d\x9e\x7e\x08\x81" +"\x9b\xa1\x84\xa1\x1b\xc2\xbc\xa6\xca\xc2\x1f\x87\x7c\x8a\x82\x80\x1a\x66\x9d\x79\xaf\xb3\xa4\x98\xb7\xb8\x1e\x8e\x94\x05\x77\x71" +"\x7d\x85\x7a\x1b\x7b\x82\x94\x9c\x94\x8c\x8f\x92\xa2\x1f\x0e\xf7\xd4\xf7\xda\xf9\x0d\x15\xbd\x06\xae\x8a\x9f\x77\x97\x5c\x08\x9f" +"\xe3\xfb\xed\x33\x9f\x06\x97\xba\x9f\x9f\xaf\x8c\x08\xbc\xfb\xca\x06\x68\x89\x85\x85\x87\x1e\x83\x86\x8b\x8b\x69\x87\x08\x77\xf7" +"\x3f\x9f\x07\x69\x8f\x8b\xce\x0a\xf8\x3f\x3f\x15\x96\x06\xf7\x2e\xf7\xcc\x05\xfb\x80\x07\x69\x8a\x88\x87\x86\x1e\x85\x84\x87\x8a" +"\x69\x87\x08\x77\xf7\x3e\x9f\x07\x6a\x8f\x8a\xce\x0a\xf7\x93\x07\xb2\x99\x98\xb5\x8e\x1e\x9f\x24\x07\xfb\x34\xfb\xc9\xfb\x2e\xf7" +"\xc9\x05\xfb\x0d\x77\x06\xa9\x8a\xa5\x78\x98\x6d\x08\xfb\x8d\x07\x5b\x81\x7e\x61\x87\x1e\x77\xf7\x17\x9f\x07\x60\x8f\x81\x97\xbc" +"\x1a\xf7\x73\x07\x0e\xc9\x5f\x0a\xe5\xf9\x0f\xe8\x1d\xae\x98\x0a\x92\x8e\x1a\x8e\x89\x8d\x88\x85\x73\x87\x85\x6d\x1e\x70\x86\x79" +"\x88\x72\x87\x08\x78\x07\xaa\x8c\x05\x91\x06\x96\x92\x84\x80\x86\x8b\x8b\x86\x7b\x1f\x31\xfb\xb1\x85\x7c\x7f\x86\x5c\x86\x19\x7b" +"\xf7\x49\x07\xf8\x84\xfb\x4c\x15\x7c\x70\x7f\x85\x65\x8a\x08\xfb\x00\x06\x89\x90\xf7\x06\xf7\x02\x05\xe2\xe0\x97\x9b\xae\x1a\xc3" +"\x59\xb9\x4f\x69\x6a\x7f\x75\x71\x1e\x78\x7c\x81\x7c\x7d\x6a\x98\x83\x18\xb1\xa7\xa5\x9a\xa8\x1d\x9a\xe1\x16\xf8\x8c\xcd\xfc\x8c" +"\x06\xf7\x6f\xf7\xae\x15\xfb\x6f\x49\xf7\x6f\xfb\x34\xcd\xf7\x34\xcb\x0a\x5a\xf7\x26\xf9\x11\x15\xc4\x84\x99\x83\x70\xa2\x1d\x97" +"\x8d\x95\x95\xae\x1e\x9c\xc7\x05\x83\xa4\xa1\x89\xb5\x1b\xdf\xcf\x9c\xaa\xb6\xdd\x1d\x53\x06\x9f\xd8\x94\xa7\x98\x94\xb3\x90\x19" +"\x9b\xfb\x82\x07\xf7\x20\xfb\x56\x15\xa0\x91\x97\x93\xa7\x1b\xb2\xb1\x82\x7c\x9f\x1f\xa5\x78\x96\x6e\x5b\xd7\x1d\x87\x8b\x90\x6d" +"\x1f\x0e\xe5\x8d\x1d\xf7\x4d\xe5\x1d\x9f\x98\x0a\x91\x8f\x1a\x8e\x89\x8d\x88\x85\x73\x87\x85\x6d\x1e\x74\x87\x77\x87\x70\x87\x08" +"\x78\x07\xa9\x8c\x05\x92\x06\x96\x92\x84\x80\x87\x8a\x88\x87\x7d\x1f\x31\xfb\xb1\x85\x7c\x7f\x86\x5c\x86\x19\x7b\xf7\x49\x07\x0e" +"\x9a\xf7\x03\x1d\xf7\x90\xfb\x0c\x4c\x0a\xf8\x35\x04\xa1\x0a\xfc\x15\xf7\x0b\xfb\x2d\x15\xcc\xf8\x05\x4a\x06\xcc\xf8\x57\x15\x4a" +"\xfb\xfa\xcc\x06\x0e\xfb\x98\xf7\x88\xf9\x38\x15\x3b\x4c\x4c\x3b\x3c\xca\x4b\xd9\xdd\xca\xc9\xdc\xdb\x4c\xca\x3b\x1f\x69\x04\xc4" +"\xba\x59\x50\x4f\x5c\x5a\x51\x53\x5c\xbd\xc6\xc7\xba\xbc\xc4\x1f\x0e\xf7\x16\xfb\x52\x15\x5c\x7a\x93\xa2\x99\x9b\xd1\xa0\xdc\xee" +"\x1d\xf7\x3c\xf7\x32\xda\x60\xba\x42\x4c\x56\x68\x42\x5d\x1f\x89\x8d\x95\xac\x9b\xc7\xcc\xf7\x8e\x19\x86\x90\x59\x82\x6e\x86\x42" +"\x82\x19\x7a\x07\xc7\x89\x90\x88\x75\x1a\x82\x89\x80\x84\x74\x1e\x89\x85\x8a\x85\x89\x84\x84\x70\x80\x62\x59\xfb\x4a\x60\xfb\x35" +"\x4c\xfb\x85\x83\x6b\xcc\x0a\x07\xf7\x4f\xf8\xef\x15\xb5\x9f\x6f\x52\x47\x6e\x36\x60\x4d\x1f\x50\x61\x5b\x6c\x57\x1b\x6f\x77\x9a" +"\xa1\xad\xae\xf7\x16\xa9\xd6\x1f\xcf\xa6\xc1\xb9\xc1\x1b\x0e\xe5\x8d\x1d\xf7\x4e\xe5\x1d\x49\xf8\xfe\x9e\x0a\xaa\x8d\x8b\x88\x98" +"\x1f\xb5\x80\xa4\x68\x5b\x1a\x56\x67\x63\x5b\x7f\x7f\x90\x99\x78\x1e\x96\x7a\x7e\x91\x83\x1b\x7a\x7e\x7f\x7b\x72\xa4\x7d\xbb\xf7" +"\x00\xd8\xcc\xe7\xa5\x84\x9f\x7d\x9b\x1f\x82\x95\x8a\x8b\x6f\x99\x87\x8d\x18\xd8\xa6\xa3\xa0\xb2\x1a\xb6\x62\xac\x56\x5d\x63\x74" +"\x65\x77\x1e\x0e\xfb\xfc\xf7\xb2\xf7\xfa\x15\x7c\x70\x7f\x85\x65\x8a\x08\xfb\x00\x06\x89\x90\xf7\x06\xf7\x02\x05\xe2\xdf\x97\x9c" +"\xae\x1a\xc3\x59\xb8\x4e\x69\x6a\x7f\x76\x72\x1e\x78\x7b\x81\x7d\x7d\x6a\x98\x83\x18\xb2\xa9\xa3\x99\xa8\x1d\xef\xf7\x71\xf8\x84" +"\x15\x94\x8a\x93\x8a\x92\x8a\x92\x8a\x91\x8a\x8e\x88\x08\x91\x88\x8d\x85\x6c\x1a\xfb\x83\x07\x6d\x89\x84\x85\x88\x1e\x84\x87\x89" +"\x8a\x6c\x88\x08\x7c\xf7\x34\x9a\x07\x6b\x8e\x8a\x8c\x83\x8f\x08\x85\x8e\x8a\x91\xaa\x1a\xed\xba\x07\xa3\x67\x95\x7b\x9c\x6d\xb0" +"\x4c\x99\x7c\x9d\x8a\x08\xca\x94\x06\x77\x9b\x73\xa5\x6c\xb5\x52\xd9\x18\xbf\xa0\xa6\xae\xba\x1a\xc3\x5f\xae\x45\x1e\xfb\x43\x06" +"\xf7\x04\x78\x15\xb4\x06\xb9\xa2\x71\x57\x52\x73\x6b\x5f\x1f\x61\x06\xba\xf7\xe9\x15\xfb\x50\xfb\x2b\xfb\x2d\xfb\x52\xfb\x53\xf7" +"\x2a\xfb\x2a\xf7\x53\xf7\x4e\xf7\x2b\xf7\x2a\xf7\x4f\xf7\x59\xfb\x26\xf7\x2a\xfb\x55\x1f\x8c\x61\x15\xf7\x31\xf7\x12\xfb\x1c\xfb" +"\x3d\xfb\x33\xfb\x16\xfb\x1c\xfb\x2d\xfb\x2f\xfb\x16\xf7\x1c\xf7\x37\xf7\x38\xf7\x16\xf7\x1d\xf7\x2f\x1f\x0e\x9a\xf7\x03\x1d\x0e" +"\xf7\xd8\xf8\xcb\x15\xb3\x57\xa1\x57\x95\x45\x89\x8a\x18\xab\x7a\x6e\x9c\x65\x1b\xfb\x1e\xfb\x25\xfb\x34\xfb\x2c\x34\xc3\x56\xe6" +"\xf7\x31\xf7\x1c\xf7\x3f\xf7\x5b\xe8\x72\xce\x4e\xd4\x1f\xf0\xb8\x6b\xa7\x28\x60\x63\xac\x66\x9d\x5e\x95\x19\x68\x7a\xb5\x7a\xa5" +"\x7a\xae\x6a\x19\xfb\x0f\x55\xac\x6e\x05\xf5\x2b\x15\xb6\xa7\x66\x52\x42\x6a\x27\x5e\x4a\x1f\x56\x67\xd4\x0a\xe3\xbc\xd2\x1f\xc4" +"\xb2\xb5\xa8\xb6\x1b\x0e\x9a\xf7\xb5\xf7\x91\x15\xfb\x58\xfb\x59\xbb\x5b\xf7\x58\xf7\x59\xf7\x59\xfb\x59\xbb\xbb\xfb\x59\xf7\x59" +"\xf7\x59\xf7\x58\x5b\xbb\xfb\x59\xfb\x59\xfb\x58\xf7\x59\x5b\x5b\x05\x0e\xfb\xfc\xf7\x29\xf8\xf4\x9e\x0a\xa8\x90\x8b\x88\x97\x1f" +"\xb5\x80\xa4\x68\x5b\x1a\x56\x67\x63\x5b\x7f\x7f\x90\x99\x78\x1e\x96\x7a\x7e\x91\x83\x1b\x7a\x7e\x7f\x7b\x72\xa4\x7d\xbb\xf7\x00" +"\xd8\xcc\xe7\xa5\x84\x9f\x7d\x9b\x1f\x82\x94\x8a\x8c\x6f\x99\x87\x8d\x18\xd8\xa6\xa3\xa0\xb2\x1a\xb6\x62\xac\x55\x5e\x63\x74\x65" +"\x77\x1e\x0e\xef\xf8\xa5\xf7\x84\x15\x50\x6f\x68\x72\x52\x1b\x31\x58\xca\xf7\x04\xf7\x03\xbc\xc8\xe4\xc9\xae\x6e\x50\x95\x1f\x9b" +"\xd0\x06\x94\x84\x92\x7d\x90\x1e\x87\x8c\x86\x8d\x05\x95\x6b\x71\x90\x6b\x1b\xfb\x15\x32\x39\xfb\x0a\xfb\x06\xdc\x42\xf7\x12\xb1" +"\xa5\x8f\x9a\xbc\x1f\x99\x8f\x8e\x8d\x8d\x96\x9a\xcf\x18\xfb\x39\xf8\x3e\x15\xfb\x50\xfb\x2b\xfb\x2d\xfb\x52\xfb\x53\xf7\x2a\xfb" +"\x2a\xf7\x53\xf7\x4e\xf7\x2b\xf7\x2a\xf7\x4f\xf7\x59\xfb\x26\xf7\x2a\xfb\x55\x1f\x8c\x61\x15\xf7\x31\xf7\x12\xfb\x1c\xfb\x3d\xfb" +"\x33\xfb\x16\xfb\x1c\xfb\x2d\xfb\x2f\xfb\x16\xf7\x1c\xf7\x37\xf7\x38\xf7\x16\xf7\x1d\xf7\x2f\x1f\x0e\x5a\x26\x1d\x59\xf8\x50\xad" +"\x1d\x5a\x26\x1d\xd3\xf8\xf7\x20\x0a\x5a\x26\x1d\x42\xf8\xc0\x23\x1d\x5a\x26\x1d\xc7\xf8\x4e\x28\x0a\x5a\x26\x1d\x9e\xf9\x16\x15" +"\x55\x5e\x5e\x55\x97\x1d\x5a\x26\x1d\xf7\x3d\xf8\xd2\x15\x6a\x80\x7e\x80\x70\x1b\x7c\x7a\x3f\x0a\x72\x92\x74\x1b\x57\x6f\x6e\x3e" +"\x77\x1f\xa8\x06\xab\x95\x9b\x9a\xa4\x1b\x9c\xa3\x84\x75\xc1\x1f\x81\xa5\x9e\x86\x97\xb2\x0a\x92\xf7\xa9\x7d\x15\x88\x9d\x9b\x8a" +"\x9b\x1b\xf2\xdb\xb6\xf5\xe5\x94\x1d\x9d\x88\xb0\xf7\x5b\x05\x76\x63\x1d\x5f\x63\x91\x6a\x1b\xfb\x6a\xfb\x54\xfb\x5c\xfb\x73\xfb" +"\x0e\xd0\x2c\xf7\x01\x6b\x1f\x53\x31\x2a\x0a\x99\x93\x57\x1d\xb5\xa1\x86\xa8\x44\x1d\x82\x85\x2c\x0a\x5a\x27\x1d\xfb\x9b\xf7\x62" +"\x56\x1d\x5a\x27\x1d\xfb\x18\xf8\x09\x20\x0a\x5a\x27\x1d\xfb\xb2\xf7\xd2\x23\x1d\x5a\x27\x1d\xfb\x42\xf7\x60\x3a\x0a\xfb\xdb\x2c" +"\x1d\xf7\x50\xf9\x46\xad\x1d\xfb\xdb\x2c\x1d\xf7\xed\xf9\xed\x20\x0a\xfb\xdb\x2c\x1d\xf7\x57\xf9\xb6\x24\x1d\xf7\x5c\x16\x6f\x75" +"\x75\x71\x6f\xa0\x75\xa7\xa6\xa1\xa1\xa6\xa4\x74\xa3\x72\x1f\x0e\xfb\xdb\x2c\x1d\xf7\xde\xf9\x44\x3a\x0a\x92\x32\x0a\xfb\x20\xf7" +"\x5b\x15\x6a\x80\x7e\x80\x70\x1b\x7c\x7a\x3f\x0a\x72\x92\x74\x1b\x57\x6f\x6e\x3e\x77\x1f\xa8\x06\xab\x95\x9b\x9a\xa4\x1b\x9c\xa3" +"\x84\x75\xc1\x1f\x81\xa5\x9e\x86\x97\xb2\x0a\xc9\x26\x0a\x3f\x95\x0a\x0e\xc9\x26\x0a\xc0\xf7\x84\x15\x59\x06\xfb\x30\xb1\x0a\xc9" +"\x26\x0a\x30\xf7\x4d\x15\x4d\x0a\xf7\x5c\x16\x4d\x0a\x0e\xc9\x26\x0a\xb2\xd2\x3a\x0a\xc9\x26\x0a\xf7\x1f\xf7\x5f\x15\x6a\x80\x7e" +"\x80\x70\x1b\x7c\x7a\x90\x99\x6d\x1f\x9c\x65\x72\x92\x74\xf7\x00\x1d\x95\x9b\x9a\xa4\x1b\x9c\xa3\x84\x75\xc1\x1f\x81\xa5\x9e\x86" +"\x98\x1b\xba\xac\xb0\xce\x99\x1f\x0e\x37\x0a\xd1\xf8\x26\x21\x0a\xc9\x27\x0a\xfb\xf9\xd0\xc4\x1d\x82\x82\x88\x84\x85\x1e\x0e\xc9" +"\x27\x0a\xfb\x81\xf7\x80\x20\x0a\xc9\x27\x0a\xfc\x07\xf7\x49\x23\x1d\xc9\x27\x0a\xfb\x92\xce\x3a\x0a\x23\x2f\x0a\xf7\x72\xc0\x15" +"\xae\x06\xf7\x3f\xf5\x05\x97\x93\x90\x93\x97\x1a\xa0\x7b\x9a\x76\x81\x83\x88\x84\x85\x1e\x0e\x23\x2f\x0a\xf7\x59\xf7\x39\x23\x1d" +"\x23\x39\x0a\x51\xf7\x7e\x21\x0a\x25\x0a\x5e\xd6\x3b\x0a\x25\x0a\xd3\xf7\x86\x20\x0a\x25\x0a\x47\xf7\x4f\x23\x1d\x25\x0a\xc2\xd4" +"\x28\x0a\x25\x0a\xa8\xf7\xb4\x15\x55\x5e\x5e\x55\x53\xb6\x5f\xc3\xc2\xb8\xb8\xc1\xc2\x5e\xb8\x54\x1f\x69\x04\xaf\xa9\x6e\x66\x66" +"\x6e\x6f\x65\x67\x6f\x58\x0a\x0e\x25\x0a\xf7\x42\xf7\x61\x52\x1d\xfb\x6c\xf7\x3c\x80\x15\x93\x06\xd7\xc0\xa9\xd8\xc8\x1f\x7b\x95" +"\x05\x50\x54\x64\x75\x5a\x1b\x52\x69\xb5\xd3\xe0\xae\xe5\xc3\xc5\x1f\xa9\xa8\xb3\x9d\xb3\x1b\xa2\x99\x83\x7f\x86\x89\x86\x87\x82" +"\x1f\x84\x7e\x89\x85\x81\x1a\x73\x9a\x7d\xa3\xa7\x9f\x9e\xa5\xbb\x51\x0a\x3c\xaf\x59\xce\x7b\x1e\x53\x31\x2a\x0a\x99\x93\x57\x1d" +"\xb4\xa2\x86\xa8\x44\x1d\x82\x85\x2c\x0a\xfb\x6c\x28\x1d\xf0\xf7\xb2\x2b\x0a\xfb\x6c\x28\x1d\xf7\x6e\xf8\x59\x20\x0a\xfb\x6c\x28" +"\x1d\xcf\xf8\x22\x23\x1d\xfb\x6c\x28\x1d\xf7\x5c\xf7\xb0\x15\xab\x06\xfb\x08\xf7\x29\x05\x9b\x7e\x80\x92\x41\x1d\xfc\x12\x2f\x1d" +"\x25\xf8\x1b\x15\xae\x06\xf7\x3f\xf5\x05\x97\x92\x90\x94\x97\x1a\x9f\x7b\x9b\x77\x81\x82\x87\x85\x85\x1e\x0e\xfc\x12\x2f\x1d\x90" +"\xf8\xc2\x20\x0a\xfc\x12\xf4\xf8\xf2\x81\x1d\x38\xfc\x80\x7f\x1d\x0e\xfc\x12\x2f\x1d\x9d\xf8\x19\x28\x0a\x32\x1d\x71\xf8\x9c\x52" +"\x1d\x92\x1d\x7f\x76\x15\xb6\xa7\x66\x52\x42\x6b\x27\x5e\x4a\x1f\x56\x66\xd4\x0a\xe2\xbc\xd3\x1f\xc4\xb2\xb5\xa8\xb6\x1b\x5a\xd5" +"\x2b\x0a\x2b\x1d\xc4\xf7\x85\x20\x0a\x2b\x1d\x43\xf7\x4e\x23\x1d\x2b\x1d\xbe\xd3\x28\x0a\x2b\x1d\xf7\x2f\xf7\x60\x52\x1d\xfb\xa3" +"\x31\x0a\xf8\x26\xf8\x97\x21\x0a\x73\x1d\xfb\x71\xf8\x16\x3b\x0a\x2a\x1d\xfb\x0b\xf8\xbd\x20\x0a\x73\x1d\xfb\x88\xf8\x86\x23\x1d" +"\x2a\x1d\xfb\x03\xf8\x14\x28\x0a\xfb\x6c\x31\x1d\xf7\x71\xd8\xac\x1d\xfb\x6c\x31\x1d\xf7\x46\xf7\x51\x23\x1d\xfb\xa3\x33\x0a\xf8" +"\x05\xf7\xf0\x21\x0a\xfb\xed\xf7\xa5\xf7\xf0\x15\x86\x85\x86\x85\x87\x85\x08\x77\x7b\x80\x81\x84\x1b\x88\x88\x8e\x8e\x8f\x8b\x8b" +"\x93\xab\x1f\xad\xf7\x0e\x05\x8e\x98\x8d\x97\x95\x1a\xa2\x7a\x9b\x72\x67\x66\x6a\x3c\x56\x1e\xad\xf7\x01\x86\x8e\x72\x86\x6c\x85" +"\x5f\x83\x19\x7c\x07\xab\x8a\x91\x89\x81\x1a\x8a\x82\x51\xfb\x67\x05\xbe\x06\xa6\xe5\x8e\x93\x9a\xa6\x08\xc9\xaf\xb3\xb6\xa2\x1b" +"\x92\x8f\x86\x82\x85\x88\x79\x85\x77\x1f\x72\x2a\x05\x82\x6a\x8a\x85\x86\x1a\x72\x95\x80\xa0\xa8\x98\x95\xc7\xb8\x1e\x0e\x2d\xf7" +"\x88\xf8\x40\x15\xf7\x32\xa8\xb0\xd1\xc3\x1b\x99\x93\x36\x0a\x87\x43\x1d\x9e\x9d\xa1\xb1\x66\xa6\x59\x5b\x64\x75\x5d\x67\x1e\x6d" +"\x63\x77\x5d\x6d\x2b\x08\x2f\x06\x84\x6b\x05\xe5\x06\x33\xfc\x38\x05\x20\x75\x6a\x54\x61\x1b\x7f\x83\x92\x94\x8f\x2d\x1d\x91\x8c" +"\x8f\x91\x52\x0a\x79\x74\x68\xad\x71\xb8\xe4\xd0\xed\xf7\x4d\x40\x0a\xf7\x2f\x06\x33\xfc\x38\x05\xfb\x00\x74\x6b\x55\x90\x1d\xf7" +"\x01\x06\x91\xab\x05\xfb\x00\x06\x7a\x0a\x76\x5d\x6e\x2b\x08\x0e\xf7\x0a\xf7\x76\xf8\x40\x15\xf7\x32\xa8\xb0\xd1\xc3\x1b\x99\x93" +"\x36\x0a\x87\x43\x1d\x9e\x9d\xa1\xb1\x66\xa6\x59\x5b\x64\x75\x5d\x67\x1e\x6d\x63\x77\x5d\x6d\x2b\x08\x2f\x06\x84\x6b\x05\xe5\x06" +"\x33\xfc\x38\x05\x20\x75\x6a\x54\x61\x1b\x7f\x83\x92\x94\x8f\x2d\x1d\x91\x8c\x8f\x91\x52\x0a\x79\x74\x68\xad\x71\xb8\xe4\xd0\xed" +"\xf7\x4d\x40\x0a\xf7\x45\x06\x86\x7e\x5f\xfb\x64\x6d\xfb\x2a\x08\xfb\x2e\x6d\x6f\x55\x5a\x1b\x7c\x86\x8e\x95\x8e\x8c\x8e\x8e\x90" +"\x1f\x8f\x91\x8c\x90\x90\x1a\xa0\x7a\x9c\x75\x97\x0a\x91\x88\x84\x87\x8b\x8b\x7f\x5f\x1f\x4d\xfb\x70\x7e\x56\x88\x0a\x91\xdf\xf7" +"\xcd\x97\xb2\x1f\x8e\x97\x8d\x94\x8f\x1a\x8b\x8b\x8c\x8a\x8d\x1e\x86\x8e\x05\x87\x87\x8b\x89\x81\x1f\x87\x72\x70\x89\x6e\x1b\xfb" +"\x2a\x06\xa9\xf4\x9a\xb3\xa0\xaa\x08\xb1\xa4\xa8\x9c\xb4\x1b\xa0\x98\x85\x81\x88\x8a\x89\x88\x87\x1f\x84\x84\x89\x86\x80\x1a\x72" +"\x9b\x7a\xa4\xa4\x9c\x9c\xa4\xb5\x61\xa7\x4e\x53\x54\x73\x64\x68\x1e\x61\x5c\x77\x62\x6c\x25\x08\x0e\xf7\x12\xf7\x7a\xf8\x40\x15" +"\x7a\x0a\x77\x5d\x6d\x2b\x08\x2f\x06\x84\x6b\x05\xe5\x06\x33\xfc\x38\x05\x20\x75\x6a\x54\x90\x1d\xf7\x43\xec\x1d\x6e\xfb\x06\x78" +"\x6c\x08\x6c\x78\x7c\x80\x72\x1b\x7d\x85\x8f\x94\x8e\x2d\x1d\x92\x8c\x90\x90\x1a\x9f\x79\x9c\x75\x77\x7b\x7a\x74\x66\xab\x72\xb9" +"\xe6\xd1\xf0\xf7\x51\xb5\x1e\xd1\xf7\xca\x05\xf7\x3a\x06\x82\x64\x88\x7f\x76\x38\x08\x69\xfb\x17\x7e\x4d\x6f\x1a\x6d\x9e\x77\xa7" +"\xb6\xa9\xa3\xdc\xc7\x1e\x7b\x94\x05\x55\x5d\x79\x7c\x7d\x1b\x85\x86\x90\x91\x9b\xe3\xf8\x0b\xb2\xf7\x27\x1f\x9a\xc7\x90\x9f\x93" +"\x8b\x0a\x75\x76\x8d\x7a\x1b\x52\x53\x72\x61\x64\x1f\x60\x5c\x77\x62\x6c\x28\x08\xda\x16\x90\x9f\x05\xf7\x26\xaf\xbc\xcd\xd4\xc9" +"\x0a\x86\x83\x88\x84\x85\x1a\x87\x8c\x86\x8f\x83\x1e\x8d\x85\x8d\x85\x87\x1a\x88\x07\x67\xfb\x24\x05\x0e\xe5\xf7\x85\xf7\xb7\x15" +"\x64\x8c\x80\x8f\x9d\x1a\x93\x91\xa6\x95\xb0\x1e\xd6\xf7\xaa\x05\x8c\x91\x8c\x90\x8f\x1a\x8f\x89\x8d\x88\x86\x72\x87\x85\x6c\x1e" +"\x6b\x85\x7c\x88\x74\x88\x8c\x78\x18\xab\x8c\x05\x91\x06\x96\x92\x83\x7f\x86\x8a\x87\x88\x80\x1f\x3d\xfb\xb4\x86\x7b\x7e\x86\x5c" +"\x86\x19\x8c\x7b\x05\xf7\x4b\x06\xf8\x28\x5d\x15\xd0\xa2\xa6\xa7\xba\x1a\xc0\x5e\xaf\x48\x3f\x61\x1d\x2f\x68\x6d\x6c\x4f\x1a\x4b" +"\xbd\x63\xdd\xe1\xc8\x5d\x1d\x5e\xb4\x82\x97\xa4\x1a\xad\xa4\xa1\xb0\xaf\xa3\x74\x67\x6b\x74\x72\x5e\x79\x1e\x62\x5a\x15\xc5\x58" +"\x95\x7c\x69\x1a\x5d\x6b\x6d\x5c\x5b\x6d\xa7\xb7\xba\xa6\xab\xc9\xa4\x1e\xb8\xd8\x1d\xe5\xf7\x15\xf8\xfd\x15\xa7\xaa\x9b\x93\xa5" +"\x1b\xa8\xa1\x74\x6d\x5d\x5b\x6c\x27\x79\x1f\x82\x98\x07\xcc\xb1\x66\x4c\x56\x67\x63\x5a\x80\x7e\x90\x99\x78\x1f\x97\x7a\x7e\x91" +"\x82\x1b\x7a\x7e\x7f\x7a\x72\xa5\x7d\xbb\xf7\x01\xd8\xcc\xe8\xa6\x84\x9f\x7c\x9b\x1f\x82\x95\x8a\x8c\x6f\x99\x87\x8d\x18\xd8\xa7" +"\xa3\xa0\xb2\x1a\xb7\x61\xad\x55\x5d\x63\x74\x64\x76\x1e\xf8\xa4\xfc\x1f\x15\xcf\xa2\xa7\xa7\xba\x1a\xc0\x5e\xaf\x48\x3f\x61\x1d" +"\x2f\x68\x6d\x6c\x4f\x1a\x4a\xbd\x64\xdd\xe1\xc8\x5d\x1d\x5f\xb2\x81\x99\xa4\x1a\xad\xa4\xa1\xb0\xaf\xa3\x74\x67\x6b\x74\x72\x5e" +"\x79\x1e\x61\x5a\x15\xc2\x5d\x99\x76\xaa\x0a\xc0\xf8\x77\x15\x57\x06\xfc\x42\xfd\x4b\x05\xbf\x06\x0e\xe5\xf7\x66\xf9\x0a\x15\xf7" +"\x1c\x06\x9b\xc2\x05\xfb\x32\x06\x4c\xfb\x17\x05\x7f\x07\xb2\x82\x98\x88\x9a\x85\x08\xb6\x79\x9f\x6e\x5d\x1a\x4c\x5d\x53\x57\x7f" +"\x81\x8f\x98\x7b\x1e\x97\x7c\x81\x8f\x81\x1b\x7b\x80\x80\x7b\x74\xa3\x7d\xb5\xee\xdb\xd8\xeb\xb0\x7d\xac\x71\xa3\x1f\x75\xa0\x77" +"\x95\x5d\x96\x08\xf8\x5d\xfb\xfd\x15\xcf\xa2\xa7\xa7\xb9\x1a\xc1\x5e\xaf\x48\x3e\x61\x1d\x30\x68\x6d\x6c\x4f\x1a\x4b\xbd\x63\xdd" +"\xe0\xc9\x5d\x1d\x5f\xb1\x80\x9b\xa3\x1a\xad\xa4\xa1\xb1\xaf\xa3\x74\x67\x6b\x75\x72\x5d\x79\x1e\x61\x5a\x15\xc2\x5c\x99\x77\xaa" +"\x0a\xbd\xd8\x1d\xe5\xf7\xd1\xf8\xf9\x15\xfb\x55\xfb\xe6\xac\x7b\xf7\x79\xf8\x27\x05\xfb\x62\x06\x53\x2c\x05\xa1\x06\xa6\xb5\x92" +"\x8e\xb8\x8c\x08\xf8\x2b\xbc\x15\xfc\x81\xfd\x2a\x05\xb9\x06\xf8\x81\xf9\x2a\x05\x67\xfc\x51\x15\xcb\xa4\xa9\xac\xb7\x1a\xba\x61" +"\xae\x53\x4d\x55\x5e\x56\x6f\x98\x71\xac\x67\x1e\x40\x6d\x66\x62\x54\x1a\x56\xb9\x63\xc9\xcf\xc9\xc4\xc9\xae\x7b\xab\x67\xb0\x1e" +"\x7c\x9a\x15\x62\xb5\x80\x9e\xa6\x1a\xae\xa1\xa0\xae\xaf\xa2\x76\x69\x64\x78\x72\x5e\x72\x1e\x61\x67\x15\xb9\x5e\x99\x73\x6c\x1a" +"\x60\x67\x68\x5f\x64\x73\xa4\xb4\xbb\xa8\xb2\xc1\xa4\x1e\x0e\xf7\x79\x81\x0a\x7c\x89\x7d\x87\x74\x78\x0a\xc6\x86\x90\x88\x77\x80" +"\x1d\xf7\x37\xf8\x35\x94\x0a\x5a\x26\x1d\xf7\x33\xf8\xec\x15\x4c\x72\x5a\x67\x4e\x1b\x4b\x64\xaf\xca\x86\x75\x0a\x5a\xf8\x07\xf7" +"\x64\x7b\x1d\x5a\xf7\x48\xbd\x1d\x7a\x68\xfb\x0e\x7f\x1e\xf7\x4d\xfb\xc7\x7b\x1d\x5a\x26\x1d\xf7\x49\xf8\xa9\x29\x1d\x5a\xf8\x0a" +"\xf7\x76\x15\xc7\x1d\xf7\x59\x07\x75\x6d\x85\x7b\x70\x1a\x56\xb5\x60\xc0\xbc\xb4\xa5\xbe\xae\x1e\x7a\x9d\x05\x74\x70\x73\x82\x6b" +"\x1b\x66\x75\xa0\xaf\xa1\x90\x9b\x96\x96\x1f\x9b\x07\x52\x90\x85\x93\x7e\xd4\x2d\xf8\xca\x18\x71\x06\xfb\xb6\xfc\x88\x3c\xfb\x19" +"\x81\x80\x63\x83\x19\x7b\xf7\x4f\x9b\x07\x58\x90\x83\x90\xa4\x1a\x9e\x8e\x94\x9c\xad\x1e\xc4\xf7\x05\x05\xa0\xaf\x15\xf7\x2a\xf7" +"\x98\xb7\xfb\x98\x05\x0e\x5a\x26\x1d\x9e\xf8\xc8\x15\x55\x5e\x6c\x65\x63\xb6\x6c\xc4\xc1\xb9\xab\xb0\xb2\x5e\xab\x53\x1f\x73\x04" +"\xb1\xa8\x76\x71\x72\x6e\x77\x65\x67\x6e\x9f\xa5\xa4\xa9\xa0\xae\x1f\x3a\xa9\x15\xae\x06\xf7\x3f\xd5\x05\x97\x91\x90\x90\x94\x1a" +"\x99\x7b\x96\x76\x81\x83\x89\x86\x85\x1e\x0e\x5a\xf7\x3e\x23\x0a\x86\x7a\x05\xc4\x8a\x9f\x81\x6c\x4d\x1d\xfb\x0f\xfc\x5e\x79\x45" +"\x78\x7b\x49\x8a\x19\x7d\x0a\x75\xb7\x6c\xa3\x1e\xa4\x6b\x5c\xca\x1d\x2c\x46\x4b\x22\x7f\x79\x8c\x8c\x78\x1f\x82\x68\x15\xa3\x06" +"\xf0\xba\x66\x3b\x22\x3f\x42\xfb\x03\x76\x7e\x8d\x91\x6f\x1f\x0e\x92\x38\x0a\xfb\x6d\xf7\x82\x93\x0a\x92\x38\x0a\xa8\xf8\x29\x21" +"\x0a\x92\xf9\x1f\x7d\x1d\x33\xf8\x29\x20\x0a\x92\x38\x0a\xfb\x23\xf7\xf2\x15\x4d\x0a\x0e\x5a\xd2\x1d\x70\x76\x7c\x67\x1e\x7a\x06" +"\x85\x79\x05\xf7\x93\x29\x0a\x7e\x06\x5c\x8d\x7b\x9e\x74\xdf\x4c\xf7\x7c\x18\xf7\x33\xf7\x53\xca\xd6\xab\xa0\xc9\x8d\x19\x90\x9d" +"\x05\xfb\x5d\x06\x85\x79\x05\x96\x06\xa3\x94\x85\x7b\x80\x87\x83\x76\x72\x1f\xfb\x26\xfb\x46\x60\xf7\x39\x05\x88\x95\x88\xa3\x93" +"\x1a\xa3\x9f\x98\xae\x1e\x9a\x06\x91\x2e\x1d\x85\x79\x05\x9d\x06\xbd\x8a\x9d\x7a\xa1\x48\xd0\xfb\x8d\x18\xfb\x38\xfb\x5a\x05\x56" +"\x61\x4c\x62\x67\x1b\x85\x55\x0a\x76\x06\x6c\x7b\x93\x9a\x93\x8f\x93\x99\x9c\x1f\x0e\xc9\x79\x1d\xf8\x41\xf9\x5b\x21\x0a\xc9\x5f" +"\x0a\x92\xac\x16\xf8\xee\x06\xfb\xad\xf9\x44\x05\xfb\x8e\xfd\x11\x15\xf7\x69\xf8\x5e\xf7\x51\xfc\x5e\x05\x0e\x5a\x27\x1d\x5c\xf7" +"\xfe\x15\x4c\x73\x59\x67\x4e\x1b\x4b\x63\xb0\xc9\x87\x5c\x1d\xa5\x94\xa0\x94\xb6\x08\x0e\x5a\x27\x1d\x8d\xf8\x09\x21\x0a\x5a\x27" +"\x1d\xfb\x3b\xf7\xd2\x24\x1d\x0e\x5a\x27\x1d\x7e\xf7\xbb\x29\x1d\x91\xf8\x44\xc1\x15\x63\xfb\x0a\x7a\x5b\x7f\x71\x08\x6d\x7e\x77" +"\x7b\x76\x54\x1d\xb5\xb1\x9e\xae\xa7\x1e\xa7\xae\xa4\xbf\x9a\xbe\xf7\x24\xf8\x8b\x18\xb0\xf7\x16\x8f\x90\xca\x99\x08\x9b\xfb\x5b" +"\x7b\x07\xc4\x86\x98\x81\x67\x1a\x7f\x89\x80\x84\x76\x1e\x8a\x88\x8a\x87\x8a\x1a\x25\xfc\x10\xfb\x64\xf8\x87\x05\xfb\x35\x7b\x06" +"\xba\x87\x9f\x7e\x9e\x64\xfb\x0b\xfc\x35\x18\x65\xfb\x14\x83\x7f\x52\x83\x08\x7b\xf7\x5a\x9b\x07\x57\x8f\x79\x96\xa7\x1a\x98\x8e" +"\x9f\x91\xa0\x1e\xf7\x06\xf8\x3a\x05\x0e\x5a\xf8\xcc\xf7\x36\x15\x7b\x93\x5c\x4a\x71\x72\x60\x77\x19\x7a\x66\x47\x81\x3f\x1b\x53" +"\x74\x95\xa3\x97\x97\xba\xa3\xe2\x1f\xab\xf7\x07\x05\x8a\x9b\x9a\x8a\x9b\x1b\xb9\x8a\xa7\x8a\xa3\x86\x92\x85\x19\x94\x84\x8d\x84" +"\x77\x1a\x79\x89\x7f\x86\x75\x1e\x9f\x86\xcf\xf7\x7c\x79\x8f\x65\x36\x81\x84\x31\x88\x19\x7f\x6b\x8a\x8a\x68\x1f\xcd\xf7\x7d\x05" +"\xa2\x91\x95\x8e\xc5\x1b\xf7\x30\xae\x7e\x4f\x7e\x8a\x7c\x8a\x7a\x1f\xa0\x89\xaa\xf7\x2d\x05\xfc\x85\x7b\x06\xc9\x85\x9a\x83\x70" +"\x1a\x7f\x85\x6a\x86\x78\x1e\xfb\x0f\xfc\x4e\x7a\x52\x83\x84\x53\x81\x19\x7b\xf8\x60\x07\x76\x70\x84\x79\x6f\x1a\x56\xb5\x60\xc0" +"\xb0\x0a\x69\x72\xa0\xa8\x98\x90\x9f\x94\xa2\x1f\x0e\x5a\xf7\x9d\xf7\xdf\x9a\x0a\x75\x3d\x6a\x73\x3d\x5e\x1d\xf3\x06\xf1\xb2\x73" +"\x4d\x7f\x8a\x84\xd0\x1d\xa0\x9c\x8a\x89\x93\x1f\xa0\x86\x97\x7d\x78\xba\x0a\x78\x79\x50\x89\x20\x1d\xf8\x83\x06\xc7\xf7\x50\x05" +"\x7b\x06\x75\x5a\x77\x72\x62\x1d\x35\x7e\x8f\xa3\x92\x8c\x91\x8f\x99\x1f\x0e\x9e\xe3\xf8\x56\x15\xbc\x06\xa4\xc2\x05\xa6\xc5\x9b" +"\xbb\xa3\x1a\xa3\x7f\x98\x75\x5c\x79\x68\xfb\x0e\x7f\x1e\xf7\x90\xfb\x4c\x9a\x0a\x74\x3d\x6b\x73\x3d\x5e\x1d\xf3\x06\xf1\xb2\x73" +"\x4d\x80\x8a\x83\xd0\x1d\x9f\x9d\x8a\x89\x93\x1f\xa0\x86\x97\x7d\x78\x1a\x7f\x89\x7d\x87\x7d\x1e\xfb\x0e\xfc\x5e\x7a\x48\x77\x79" +"\x51\x89\x20\x1d\xf8\x83\x06\xc7\xf7\x50\x05\x7b\x06\x74\x5a\x78\x72\x62\x1d\x35\x7e\x8f\xa3\x92\x8c\x91\x8f\x99\x1f\x0e\xc9\x59" +"\x0a\xf7\x18\xda\xf8\x56\x15\xbc\x06\xa5\xc2\x05\xa5\xc3\x9b\xbd\xa3\x1a\xa3\x7f\x98\x76\x5b\x7a\x69\xfb\x0f\x7f\x1e\xf7\x91\xfb" +"\x4d\x6e\x1d\xf7\x9b\xf8\x29\x15\xf7\x2c\xbe\xf0\xf5\xe7\x1b\xc8\xad\x5e\x39\x77\x8a\x7d\x87\x77\x1f\x9d\x06\xc0\xf7\x67\x05\x78" +"\x06\x79\x81\x7e\x80\x80\x1b\x85\x84\x8d\x90\x7e\x1f\x9f\x5a\x81\x8d\x6c\x1b\xfb\x13\xfb\x21\xfb\x0f\xfb\x39\x4c\x1f\x59\x06\x6c" +"\x62\x05\xce\x06\x86\x7a\x87\x78\x86\x6f\x08\x57\x06\x6c\x62\x05\xda\x7b\x06\xfb\x24\xdd\x28\xf7\x0a\xce\xbd\xa1\xbb\xb5\x1e\x9c" +"\xbc\x05\x4f\x5a\x5f\x72\x54\x1b\x38\x57\xd5\xf7\x0a\x96\x8b\x93\x8c\x99\x1f\xf7\x22\x06\xa9\xb4\x05\xfb\x3b\x06\x90\xa4\x8f\x9e" +"\x91\x9f\x08\xf7\x5e\x06\xa9\xb4\x05\x0e\x30\x6b\x0a\xc9\x2e\x0a\x68\xf8\x21\x15\x4c\x72\x90\x0a\xb9\xa3\xb7\xad\x1f\x9f\xa6\x93" +"\xa0\x95\xb5\x08\x0e\xbf\x2e\x0a\xfb\x01\xf8\x2c\x20\x0a\xc9\x2e\x0a\xfc\x55\xfd\x73\x30\x1d\xc9\x2e\x0a\xfb\x5c\xf7\xf5\x24\x1d" +"\x0e\xc9\xf9\x36\xf8\x9e\x15\x96\xb4\x9c\xc5\x92\x91\xc5\x95\x19\x9b\xfb\x8b\x7b\x07\xc6\x83\x96\x84\x6f\x1a\x7b\x87\x77\x84\x71" +"\x1e\x88\x81\x05\xfb\xb1\x06\x96\xb4\x9b\xbe\xa4\xaf\x0a\x7b\x87\x77\x84\x71\x1e\x88\x81\x05\x3f\x06\x81\x6d\x05\xd9\x06\xfb\x04" +"\xfc\x26\x51\x1d\xf7\x05\xf8\x2e\x05\xd8\x06\x94\xa9\x05\xfc\x6a\x6d\x15\xf7\xb2\x06\x68\xfb\x10\x05\xfb\xb1\x06\x0e\xbf\xf8\xbb" +"\xf9\xfd\xc0\x1d\xf7\x15\x58\x15\xfb\x8b\x7b\x06\xc5\x84\x97\x83\x6f\x57\x0a\x5d\xfb\x38\x05\xfb\xb1\x06\xc1\xf7\x57\x4a\x0a\x88" +"\x77\x83\x70\xb7\x0a\x51\x1d\xf7\x18\xf8\x75\x9c\xc5\x93\x91\xc4\x95\x19\x0e\xe5\xf7\x91\x9d\x15\x73\x7f\x8d\x8e\x82\x1f\x7b\x91" +"\x82\x98\x9c\x1a\x95\x8e\x9b\x8f\x9a\x1e\xf7\x17\xf8\x5d\x9f\xd4\x9e\x9a\xd3\x8a\x19\x90\x2e\x1d\x86\x79\x05\xa2\x98\x8a\x87\x94" +"\x1f\x9b\x85\x94\x7e\x7a\x1a\x81\x88\x7b\x87\x7d\x1e\xfb\x17\xfc\x5e\x78\x46\x78\x7a\x60\x1d\xf7\xc9\xf9\x18\x15\xc6\x8c\x9e\x80" +"\x6c\x4d\x1d\xfb\x14\xfc\x52\x05\x53\x7b\x6d\x68\x6c\x1b\x7a\x7f\x94\x99\x95\x8d\x8f\x97\x96\x1f\x95\x96\x8f\x94\x97\x1a\xa4\x77" +"\x9f\x71\x68\x6f\x6b\x64\x57\xb6\x64\xc6\xb7\xbb\xa2\xb1\xb1\x1e\xa8\xa9\xa5\xbd\x9c\xc6\xf5\xf8\x04\x18\x9b\xcb\xa1\xa0\xbc\x8d" +"\x90\x9d\x18\xfb\x91\x06\x0e\xfb\xdb\x2c\x1d\xf8\x49\xf9\xe2\x15\x4c\x72\x5a\xa1\x1d\xa6\x94\xa0\x94\xb5\x08\x0e\xfb\xdb\x2c\x1d" +"\xf7\xc5\xf9\xb6\x24\x1d\x0e\xfb\xdb\x2c\x1d\xf8\x55\xf9\x9f\x29\x1d\xfb\xdb\xf7\x1d\x22\x0a\x7b\x07\xc6\x83\x96\x84\x6f\x9f\x0a" +"\xf7\x56\x07\x75\x6c\x86\x7c\x70\x1a\x56\xa9\x0a\x6b\x1b\x66\x75\xa0\xaf\x9f\x90\x9a\x96\x99\x1f\x9b\x07\x52\x92\x80\x91\xa7\x1a" +"\x9f\x8d\x95\x94\xac\x1e\xf7\x0f\xf8\x4f\x9d\xc5\x92\x91\xc4\x95\x19\x9b\x07\x0e\xfb\xdb\x42\x0a\xfb\xdb\xf7\x8e\x9d\x15\x35\x0a" +"\xf7\x0f\xf8\x5d\x3f\x1d\x6d\xf9\xd2\x53\x1d\xfb\x96\xce\xf8\x56\x15\xbc\x06\xa5\xc2\x05\xa5\xc3\x9b\xbd\xa3\x1a\xa3\x7f\x98\x76" +"\x5b\x7a\x69\xfb\x0f\x7f\x1e\xf7\x95\xfc\x85\x15\x35\x0a\xf7\x0f\xf8\x5d\x3f\x1d\x0e\xfb\xdb\x81\x16\xf7\x88\x9b\x06\xae\x1d\xfb" +"\x8b\xab\x1d\xf8\x44\xf9\xbf\x15\x6a\x80\x7e\x80\x70\x1b\x7c\x7b\x90\x99\x6c\x1f\x9c\x66\x71\x92\x74\x1b\x57\x70\x6e\x3e\x76\xa3" +"\x1d\xfb\x72\x6e\x0a\x58\xf7\x87\x20\x0a\x92\xf7\xa0\xf7\xf1\x15\xf7\x23\xfb\x8d\x05\x96\x78\x91\x7a\x7f\x1a\x76\x78\x81\x61\x88" +"\x1e\x85\x79\x05\xf7\xa1\x06\x91\x9d\x4c\x89\x6d\xa3\x59\xe5\x19\xfb\x21\xf7\x93\xf7\x9c\xf7\x6b\xb6\xac\xa4\x95\xb3\x8c\x19\x91" +"\x9d\x05\xfb\x5d\x22\x1d\xb9\x88\x8f\x89\x7e\x1a\x83\x8a\x89\x77\x91\x0a\xc3\x9f\x80\x6d\x80\x89\x7c\x87\x7d\x1f\xfb\x0f\xfc\x5e" +"\xcd\x1d\x70\x7b\xc2\x1d\x92\x6f\x1d\xfc\xaf\xfe\x1f\x40\x1d\x23\x34\x0a\xfb\x03\xd0\x96\x0a\x0e\x53\xf8\x0e\xf8\x74\x15\x7b\xfc" +"\x19\x82\x1d\x0e\x23\x34\x0a\xca\xfb\x5d\x15\xdf\xba\xb9\xc3\xc3\x48\x0a\x70\x74\x70\x57\x69\x1e\x0e\x23\x34\x0a\xfb\xa8\xfe\x1f" +"\x30\x1d\x23\x34\x0a\x93\xfb\x98\x49\x0a\xf7\x41\xae\x0a\x88\x93\x8a\x96\x86\x19\x9a\x84\x95\x82\x83\x1a\x89\x8a\x87\x8a\x87\x1e" +"\xfb\x19\xfc\x84\x7a\xd3\x1d\x70\x7c\xb6\x0a\x9b\x1a\x96\x8d\x9a\x8f\x9a\x1e\xf7\x10\xf8\x62\xc8\xfc\xc6\x05\x9d\x06\xf7\xfb\xf8" +"\xaf\xfb\x0e\xfc\x46\x78\x46\x78\x7a\x4b\x8a\x20\x1d\xf7\x9f\x24\x0a\x72\x7d\x35\x1d\x9b\x1a\x98\x8d\x98\x8f\x9a\x4b\x1d\xd3\x9e" +"\x9d\x9a\xd0\x21\x1d\xfb\x39\x06\x0e\x92\x32\x0a\xfb\xe8\xd0\x93\x0a\x92\x32\x0a\x2d\xf7\x80\x21\x0a\x92\x32\x0a\xfc\xb4\xfe\x1f" +"\x40\x1d\x92\xf7\x97\xf8\xb0\x15\xf7\x69\xfc\xb8\x05\x9a\x06\xf7\x2b\xf8\xc9\x9d\xd0\x9d\x9b\xcb\x8d\x19\x8f\x9d\x05\xfb\x62\x22" +"\x1d\xa4\x9a\x89\x88\x94\x1f\x9b\x85\x95\x7d\x7a\x1a\x81\x89\x7c\x87\x7c\x1e\x24\xfc\x13\xfb\x4f\xf8\x77\x05\xfb\x44\x06\x86\x7a" +"\x05\x9f\x06\xb5\xa2\x7e\x69\xa1\x1f\xfb\x18\xfc\x81\x79\x45\x78\x7b\x4b\x8a\x19\x86\x55\x0a\x70\x7c\xc2\x1d\xc9\x26\x0a\xf7\x34" +"\xf7\x79\x15\x4c\x72\x5a\xa1\x1d\xa5\x94\xa0\x94\xb6\x08\x0e\xc9\x26\x0a\xfb\x45\x95\x0a\x93\xfb\x34\x92\x0a\xc9\x26\x0a\xf7\x48" +"\xf7\x36\x15\xfb\xc0\x46\x1d\xcd\xdf\xf8\x56\x15\xbc\x06\xa4\xc2\x05\xa7\xc6\x9a\xba\xa3\x1a\xa3\x7f\x98\x75\x5c\x79\x68\xfb\x0e" +"\x7f\x1e\xf8\xd9\xfb\xf4\x15\x74\x4d\x6f\x75\x55\x88\x08\xfb\x03\x06\xcc\xb0\xb1\xa7\xb2\xb3\x08\xdf\xe2\xb7\xea\xea\x1a\xf7\x19" +"\x3a\xdc\xfb\x19\x30\x3f\x6d\x4d\x4a\x1e\x3e\x42\x5f\x2b\x29\x1a\x2a\xb2\x3d\xdc\x4d\x1e\xfb\x0b\x06\x60\x7b\x98\xae\x95\x8c\x93" +"\x8d\xa0\x1f\x77\x84\x7b\xfb\x30\x05\xf7\x76\x06\x9e\xd1\x05\x64\xb6\x7c\xb8\xd5\x1a\xd8\xa2\xf7\x01\xac\xda\x1e\xe2\xb0\xd1\xc1" +"\xd7\x1b\xd7\xbb\x57\x39\x34\x6e\x21\x5b\x33\x1f\x68\x4c\x6d\x66\x4e\x56\x78\x45\x18\xf7\x77\x06\xcf\xf7\x31\x05\x0e\xc9\xf8\x6b" +"\xf9\x34\x15\x38\x30\x5f\x40\x46\x1f\x34\x2e\x57\xfb\x0f\xfb\x04\x1a\xfb\x24\xe2\x30\xf7\x1d\xe1\xd2\xc2\x0a\xf7\x23\x32\xea\xfb" +"\x1a\x1e\x85\x66\x15\xda\xba\x50\x28\x32\x68\xfb\x0d\x55\x25\x1f\x33\x5c\x47\x56\x47\x1b\x3f\x59\xc9\xe8\xf7\x05\xc3\xf7\x35\xd4" +"\xee\x1f\xbf\xb1\xc1\xaa\xbe\x1b\x0e\xc9\xe0\xa9\x1d\xf8\x32\xf7\x31\x15\x37\x30\x5f\x40\x46\x1f\x34\x2d\x57\xfb\x0e\xfb\x05\x1a" +"\xfb\x23\xe2\x30\xf7\x1e\xe0\xd3\xc2\x0a\xf7\x22\x31\xeb\xfb\x19\x1e\x85\x66\x15\xda\xba\x51\x27\x32\x68\xfb\x0e\x55\x26\x1f\x33" +"\x5b\x47\x56\x48\x1b\x3e\x59\xc9\xe9\xf7\x04\xc3\xf7\x35\xd4\xee\x1f\xbf\xb1\xc2\xaa\xbe\x1b\x0e\xc9\xc3\x0a\x6e\x91\x66\x6a\x0a" +"\x6d\x92\x6e\x63\x1a\x24\x5b\xfb\x28\x4b\x2f\x1e\x3c\x54\x4e\x65\x44\x1b\x69\x74\x93\xa0\x74\x1f\xf7\x70\xf9\x26\x56\x1d\xf0\xf9" +"\x10\x6c\x1d\xc9\xf9\xb3\x23\x0a\xfd\x12\x22\x1d\xa3\x98\x89\x88\x94\x1f\x9b\x85\x95\x7d\x7a\x1a\x7e\x89\x7f\x87\x7c\x1e\xfb\x0e" +"\xfc\x5d\x4b\x0a\x90\x9d\x05\x35\x0a\xf7\x0a\xf8\x4a\x9d\xd3\x9f\x9b\xd3\x8a\x19\xea\x06\xbe\xa0\x7e\x6e\x81\x89\x7d\x86\x7b\x1f" +"\xfb\x09\xfc\x4a\x7a\x46\x78\x7a\xc4\x0a\x74\x7e\x8d\x8e\x82\x68\x1d\x98\x8d\x97\x8f\x9a\x1e\xf7\x0e\xf8\x5d\x05\xd4\x9e\x9e\x99" +"\xd4\x1b\x0e\xb6\xf9\xc8\xf9\x1a\x15\xa0\x61\x79\x90\x75\x1b\x5c\x6c\x69\x41\x74\x1f\x6a\x20\x67\xfb\x02\x55\x56\x27\x76\x19\xd7" +"\xf7\xb0\x9e\xd4\x9d\x9a\xd5\x8a\x19\x8f\x2e\x1d\x87\x79\x05\xa2\x99\x8a\x87\x94\x1f\x9b\x85\x95\x7d\x7a\x1a\x82\x89\x7b\x87\x7d" +"\x1e\x3d\xfb\xb6\x05\x41\x9b\x6f\xaa\xce\x1a\xa4\x8e\xa8\x90\xa1\x1e\x9e\xdf\x05\x8f\x9d\x8d\x9f\x98\x1a\xb6\x71\xaa\x66\x73\x69" +"\x7f\x7a\x70\x1e\x92\x76\x05\x91\x98\x90\x8c\x94\x1b\x99\x92\x84\x7d\x84\x8a\x86\x85\x6b\x1f\x7a\x3d\x05\x86\x73\x89\x77\x77\x1a" +"\x4a\xb7\x4c\xcd\x6e\x1e\xa1\x81\x9f\x86\xad\x86\x65\xfb\x20\x18\x7a\x47\x78\x79\x4d\x8a\x86\x79\x18\xf7\x93\x24\x0a\x74\x7e\x35" +"\x1d\x9b\x1a\x99\x8d\x97\x8f\x9a\x1e\xb1\xf7\x25\xf7\x3d\x9c\xed\xd4\xb0\xf7\x1e\x19\xa2\xdf\x05\xbf\x99\x9a\xa1\xa2\x1b\x93\x91" +"\x8a\x86\x98\x1f\x0e\x5a\x3a\x1d\xd7\xf7\xe8\x56\x1d\x5a\x3a\x1d\xf7\xd6\xf8\x8f\x21\x0a\x5a\x3a\x1d\x33\xfd\x10\x40\x1d\x5a\xf7" +"\xb9\xf7\xd8\x15\x81\xb2\x9b\x88\xaa\x1b\xf7\x26\xef\xdc\xf7\x0a\xe9\x3c\xc5\xfb\x14\x1f\xfb\x73\x22\x1d\xa4\x9a\x8a\x87\x95\x1f" +"\x9b\x85\x95\x7d\x7b\x1a\x80\x89\x7c\x87\x7d\x1e\xfb\x0f\xfc\x5e\x7a\x45\x78\x7b\x4a\x8a\x20\x1d\xf7\xa3\x24\x0a\x6f\x7a\xb6\x0a" +"\x9c\x1a\x94\x8d\x9b\x8f\x9a\xe4\x1d\xcd\xb3\x61\x47\x5d\x74\x56\x6a\x6d\x1f\x72\x6f\x63\x7d\x61\x1b\x77\x7e\x8d\x92\x72\x1f\x0e" +"\x37\x0a\xfb\x4e\xf7\x7f\x92\x0a\xf7\x55\x7c\x15\x89\x9b\x93\x8a\x97\x9b\x1d\x6a\x8d\x48\x9d\x88\x18\x7c\x1d\x9a\x85\x92\x89\x98" +"\x87\x54\x32\x18\x94\x83\x05\x90\x98\x93\x8d\x96\x4a\x1d\x75\x7b\x8f\x96\x6d\xc1\x0a\xaf\xbd\xb5\x6b\xa5\x59\x81\x85\x47\x1d\xfb" +"\x3b\xf8\x6a\x5d\x0a\x69\x8d\x49\x08\x6b\xf8\x26\x20\x0a\x37\x0a\xfb\xf3\xfd\x79\x30\x1d\x49\xf8\xdd\xf9\x2b\x15\xfc\x73\x06\xf7" +"\x12\xfb\xf0\xfb\xd2\xfb\xcf\x05\xf8\x9a\x06\xef\xf7\x3f\x6f\x94\x05\x39\x5a\x69\x7a\xfb\x09\x1b\xfb\x4f\x06\x6e\x81\x8f\x95\x92" +"\x9e\xa4\xa6\xa6\x1f\xf7\x61\xf7\x63\x2a\xf7\x9d\x05\xf7\x39\x06\xee\xa9\x7a\x51\x7f\x8a\x7c\x8a\x7b\x1f\xab\x06\x0e\x23\xf8\x47" +"\xf9\x02\x15\xec\x06\xc1\xa6\x74\x5c\x78\x89\x78\x86\x71\x1f\x9c\x06\xb9\xf7\x42\x05\xfc\xb3\x06\x5c\xfb\x42\x05\x9e\x06\x9e\xe6" +"\xc8\xb9\xed\x88\x08\xca\x06\xfb\x1e\xfc\x99\x05\x42\x78\x78\x7d\x41\x1b\x87\x79\x05\xf7\xb6\x24\x0a\x81\x06\x6e\x7b\x8d\x8e\x81" +"\x68\x1d\x95\x8d\x9a\x8f\x9a\x1e\x0e\x23\xf7\xed\xf7\xff\x15\xd2\xf7\x93\x05\xc2\x06\xd3\xab\x72\x53\x7e\x8a\x7c\x89\x7a\x1f\x9c" +"\x89\xb7\xf7\x37\x05\xfc\xa8\x06\x61\xfb\x2e\x9d\x87\xc0\xf7\x00\xac\x9c\xf7\x2c\x89\x19\x45\xfb\x93\x05\x2a\x06\x83\x68\x05\xeb" +"\x06\x4a\xfb\x82\x64\x1d\xf7\xb6\x9b\x07\x99\x0a\xc5\xf7\x64\x05\xf5\x06\x93\xae\x05\x0e\x23\x50\x1d\x76\xf8\x13\xbe\x1d\x23\xf7" +"\x74\x16\xf7\x17\x9b\x06\x99\x0a\xf7\x1f\xf8\x86\x05\xc2\x06\xd3\xab\x72\x53\x7e\x8a\x7c\x89\x7a\x1f\x9c\x89\xb7\xf7\x37\x05\xfc" +"\xa8\x06\x61\xfb\x2e\x9d\x87\xc0\xf7\x00\xac\x9c\xf7\x2c\x89\x19\xfb\x24\xfc\xa4\x64\x1d\xf7\x0d\x07\x50\x2c\x2a\x0a\x99\x93\x8d" +"\x95\x4f\x0a\x7a\x8f\x96\x6d\xc1\x0a\xae\xbe\xb5\x6b\xa5\x59\x82\x85\x2c\x0a\xc9\xf8\xb6\xf8\x5d\x15\x7a\x06\x4f\x76\x77\x7e\x49" +"\x1b\x69\x06\x58\x77\x97\xa8\x93\x8c\x97\x8d\x97\x1f\x7a\x06\x53\xfb\x6d\x05\x9c\x06\xa0\xc8\x9c\x97\xd2\x8c\x08\xab\x06\xc1\x9d" +"\x81\x6e\x83\x8a\x7d\x88\x7e\x1f\x9c\x06\x87\xf8\x49\x15\xfb\x0c\xfb\x07\x5b\x39\x3e\x1f\x3d\x37\x58\xfb\x15\xfb\x09\x1a\xfb\x29" +"\xe8\x36\xf7\x38\xf7\x0c\xf7\x01\xb9\xde\xd8\x1e\xdc\xe2\xbe\xf7\x16\xf7\x09\x1a\xd6\x72\xc7\x5c\xb1\x1e\xb0\x5d\x49\xa0\x45\x1b" +"\x85\x6a\x15\xac\xb1\x81\x7c\xa3\x1f\xb3\x72\xa0\x5a\x48\x1a\x24\x65\xfb\x14\x51\x2c\x1e\x33\x56\x39\x5b\x29\x1b\x67\x66\x94\x9c" +"\x70\x1f\x65\xa2\x77\xb9\xc9\x1a\xf7\x0d\xbf\xf7\x34\xcd\xdf\x1e\xd0\xc2\xd5\xb0\xdf\x1b\x0e\xbf\x63\x0a\xfb\x1d\xf7\x77\x3e\x1d" +"\xc9\x27\x0a\xfc\x49\xd0\xb4\x1d\x85\x1e\x92\xfb\x34\x15\xaf\xb3\x1d\x0e\xc9\x27\x0a\xfb\x0b\xf7\x32\x15\xfb\xc1\x46\x1d\xc9\xf8" +"\xca\x22\x0a\x7b\x07\xc0\x86\x9d\x80\x6d\x1a\x7b\x71\x27\x5b\xfb\x3f\x1e\x7e\x5a\x05\xfb\x38\x5f\x4b\x47\xfb\x02\x1b\x38\x52\xba" +"\xd2\xae\xa7\xf7\x00\xd6\xf7\x9a\x1f\x9f\xd0\x9b\x99\xd0\x93\x44\x0a\xf7\x12\xba\xb1\x93\x9f\xb2\x1e\x72\x6f\x81\x71\x6c\xb1\x1d" +"\xac\xaa\x94\xa2\xb3\xce\x1f\xaa\xc0\x99\xa9\x9a\xbe\xde\xf7\xb1\x18\xb1\xf7\x16\x8f\x90\xc9\x99\x08\x9b\x07\x0e\x23\x75\x1d\x0e" +"\x23\x75\x1d\xa5\xf9\x6e\x53\x1d\x8b\xd2\xa9\x1d\xf8\x36\xfb\x60\x15\xf7\x37\xf7\x76\x05\xd5\xc0\xb9\xac\xc0\x21\x1d\xfb\x72\x06" +"\x85\x79\x05\x9b\x06\xad\x9e\x81\x79\x80\x86\x81\x7a\x73\x1f\xfb\x2a\xfb\x6a\x4b\xf7\x6a\x05\x86\x9d\x89\x94\x92\x1a\xa6\xa0\x97" +"\xb6\x1e\xa0\x06\x8f\x9d\x05\xfb\xaf\x22\x1d\xa0\x06\xb7\x8d\xa5\x75\x9c\xe9\x1d\x3f\x8c\x20\x1d\xf7\xb4\x29\x0a\x72\x7a\x8c\x8d" +"\x82\x1f\x77\x90\x7e\x99\x9f\x1a\x98\x8d\x97\x8f\x9a\x1e\x0e\xc9\x27\x0a\xfb\xa8\xf7\xae\x15\x55\x5e\x5e\x55\x97\x1d\xc9\x63\x0a" +"\xfb\x14\xf7\x58\x15\x69\x7f\x7f\x80\x6f\x1b\x7c\x7b\x3f\x0a\x71\x93\x75\xf7\x00\x1d\x94\x9b\x9a\xa4\x1b\x9d\xa3\x84\x75\xc0\x1f" +"\x80\xa6\x9d\x86\x98\x1b\xba\xad\xb0\xcf\x99\x1f\x0e\xf7\x41\x30\x0a\xfc\x54\xd0\x94\x0a\xf7\x41\x30\x0a\xfb\xf2\xf7\x80\x20\x0a" +"\xf7\x41\x30\x0a\xfc\x8d\xf7\x49\x23\x1d\xf7\x41\x30\x0a\xfc\x15\xce\x28\x0a\x76\xf8\xc7\xf7\x50\x15\x7b\x06\x66\x32\x5c\x69\x30" +"\x8a\x08\x2f\x06\x30\x06\x3e\x69\xa7\xca\x94\x8c\x93\x8c\x9b\x1f\x7b\x06\x59\xfb\x50\x05\xf8\x87\x06\xf7\x33\x23\x0a\xfc\x67\x06" +"\x5d\xfb\x3f\x05\x9c\x06\xa5\xda\xb2\xa4\xed\x89\x08\xf7\x36\x06\xe1\xa5\x7c\x57\x81\x8a\x83\x88\x7a\x1f\x9c\x06\x36\x73\x15\x7a" +"\x06\x78\x4a\x6b\x77\x3d\x8d\x08\x52\x06\x5c\x7c\x8e\x98\x7d\x1f\x82\x93\x87\x95\x98\x1a\x94\x8c\x94\x8f\x9d\x1e\x79\x06\x4b\xfb" +"\x85\x05\x9c\x06\x9d\xd0\xa5\x9e\xd6\x8c\x08\xdc\x06\xc3\xa1\x7e\x6a\x7f\x8a\x82\x85\x75\x1f\x9c\x06\x0e\x23\x2f\x0a\xf7\xf2\xf7" +"\x70\x20\x0a\x23\x2f\x0a\xf7\xba\xbe\x15\xaa\x06\xfb\x08\xf7\x29\x05\x9c\x7e\x80\x91\x41\x1d\x23\x39\x0a\xfb\xce\xce\x15\xae\x06" +"\xf7\x3f\xf5\x05\x96\x92\x90\x93\x98\x1a\xa0\x7b\x9a\x77\x65\x1d\x0e\x23\x39\x0a\xfb\x81\xf7\x47\x24\x1d\x0e\x23\xf7\x29\xb2\x15" +"\xf8\x6f\xf9\x03\x05\xfc\x81\x06\x57\xfb\x30\x05\xa4\x06\xa9\xec\xb8\xa2\xf7\x31\x89\x08\xf7\x16\x06\xfc\x6f\xfd\x04\x05\xf8\x8b" +"\x06\xc2\xf7\x46\x05\x76\x06\x6a\x20\x4c\x6a\xfb\x43\x8c\x08\x0e\x25\x0a\xf7\x37\xf7\x7b\x15\x4c\x73\x90\x0a\xba\x5a\x1d\x92\xb7" +"\x1d\xf6\xaa\xbb\x9d\xb1\x71\x0a\x6d\x1a\x36\x74\x0a\x7d\xf7\xa3\x3b\x0a\xf7\x79\xcf\x1d\x5a\xf8\x07\xf7\x64\x15\x86\xfb\x09\x05" +"\x50\x88\x80\x7d\x5c\x1b\x74\x25\x1d\xf7\x9c\x06\x90\x9d\x05\x73\x06\x5b\x7c\x97\xb4\x92\x8b\x8b\x8c\xa5\x1f\xa2\xf8\xc2\x05\x7a" +"\x06\xfc\x2a\xfc\xcf\x5d\x4d\x7b\x7f\x68\x8c\x19\x7f\x25\x1d\xf7\x5a\x06\x8f\x9d\x05\x77\x06\x6e\x7c\x94\x9d\x91\x8f\x95\x91\x94" +"\x1f\xeb\xf7\x1e\x05\xf7\x48\xaf\x15\xfb\x2f\x06\xf7\x39\xf7\x80\x05\x0e\x45\xf8\xea\x23\x0a\xfc\x4b\x66\x1d\x7e\xa4\x0a\xf7\xa4" +"\x06\xf7\x37\xf7\x03\xdf\xf7\x0f\xf7\x00\x37\xcd\xfb\x1c\x79\x80\x8a\x88\x73\x1f\xcd\xf7\x8d\x05\xf7\x14\x06\xbf\xa6\x72\x5b\x76" +"\x89\x79\x86\x71\x1f\x9c\x06\xfb\xba\xfb\x2b\x15\x91\xa0\x95\x8c\x9d\x1b\xe1\xb8\x5c\x32\x22\x43\x49\xfb\x08\x72\x7d\x8e\x95\x6d" +"\x1f\x0e\x5a\xf7\x3e\x23\x0a\x86\x7a\xaa\x8a\x94\x8a\x96\x87\x19\x9b\x86\x95\x7d\x7a\x4d\x1d\xfb\x0f\xfc\x5e\x05\x45\x79\x78\x7a" +"\x49\x1b\x7d\x0a\x76\xb7\x6b\xa3\x1e\xa4\x6a\x5d\xca\x1d\x2a\x46\x4d\xfb\x01\x7f\x81\x8b\x8d\x74\x1f\x82\x68\x15\xaa\x8c\x05\xe7" +"\xbb\x63\x3f\x20\x3f\x42\xfb\x02\x76\x7e\x8d\x91\x6f\x1f\x0e\x30\x6b\x0a\x73\xf9\x60\x23\x0a\xfc\x8f\x25\x1d\x9b\x06\xb9\xa0\x7d" +"\x6a\x6a\x7d\x40\x73\x2e\x1f\x65\xfb\x28\x62\x33\x47\x40\x08\x5e\x62\x78\x82\x58\x1b\x73\x06\x59\xfb\x4f\x05\x9d\x06\xf7\x15\xb8" +"\xa8\xa6\xeb\x1b\xf7\xe4\x06\xbd\xa1\x75\x5a\x78\x8a\x80\x83\x65\x1f\x8a\x88\x8a\x85\x8a\x83\x08\x9d\x06\xbf\xf7\x4f\x05\x56\x06" +"\x69\x7d\x94\xa0\x92\x8c\x93\x8e\x94\x1f\xf7\x13\xf8\x6f\x05\xd1\x9d\x9e\x99\xd3\x1b\xfb\x50\x79\x15\xfb\x32\xfc\xe2\x05\xfb\x98" +"\x06\xe6\xd6\xc9\xf7\x12\xb5\xf7\x52\x9e\xe6\x99\xcd\x95\xb5\x08\x0e\x5a\x5e\x0a\x0e\x5a\x5e\x0a\xf7\x25\xf9\x76\x53\x1d\xf7\x94" +"\xf8\x57\xf7\xfa\x15\x7f\x06\x2f\xf3\x4c\xf4\xbe\x1a\x9d\x99\x93\xa9\x1e\x9c\x24\x0a\xfb\x55\x06\x86\x79\xb4\x87\x9d\x78\xc9\x27" +"\x19\xb1\x4d\x9a\x75\xb3\x54\xfb\xb9\xfb\xaf\x18\x58\x5b\x71\x7a\x5c\x7b\x86\x79\x18\xf7\x7c\x06\x8f\x9d\x05\x70\x8e\x84\x90\x99" +"\x1a\x93\x8f\x90\x98\x97\x1e\x9b\x9a\xf7\x8b\xf7\x89\x05\x9d\x06\x57\xfb\x70\x7c\x46\x79\x7b\x4d\x89\x19\x87\x79\x05\xf7\x97\x06" +"\x8f\x9d\x69\x8c\x80\x8d\x81\x92\x19\x7f\x93\x85\x97\x9c\x1a\x95\x8c\x93\x8f\x9c\x1e\xbf\xf7\x75\x05\x9e\x06\xf7\x06\xfb\x84\x05" +"\x99\x6e\x8b\x8b\x83\x1a\x7a\x78\x7e\x6e\x1e\x87\x79\x05\xf7\x7b\x06\x90\x9d\x69\x8a\x6c\xa1\x76\xb4\x19\xfb\x28\xf7\xb8\xd9\xc9" +"\xa9\xa4\xd2\xc9\x19\xf7\x05\xed\xaa\xa0\xb6\x8f\x90\x9d\x18\xfb\x56\x22\x1d\x9d\x06\xa1\x96\x87\x81\x78\x74\x73\x2b\x3c\x1f\x73" +"\x77\x69\x6e\x6d\x71\x32\x40\x18\x7b\x06\xb9\xf7\x5b\x05\xd4\x9c\x9c\x99\xd5\x1b\x8f\x9d\x05\xfb\xa4\x25\x1d\xa6\x93\x8a\x87\x96" +"\x1f\x9c\x85\x95\x7c\x77\x1a\x81\x89\x7d\x89\x80\x1e\x0e\xfb\x39\xf7\x28\xf8\x74\x15\xec\xa7\xbd\xbb\xd2\x1b\xcc\xb7\x5d\x48\x37" +"\x42\x52\x20\x81\x84\x8b\x8d\x7b\x1f\x7f\x66\x05\x8c\x97\x90\x8b\x94\x1b\xe8\xc0\x5d\x3d\x29\x43\x44\x29\x3f\x58\xb0\xdb\x68\x1f" +"\x73\x82\x9e\x5a\x97\x76\xa2\x71\x19\x5f\xb5\xc0\x75\xd0\x1b\xf7\x1f\xf2\xe4\xf7\x0c\x89\x1d\x0e\xc9\x4e\x1d\x0e\xc9\x4e\x1d\xf8" +"\x0e\xf9\x53\xd1\x1d\x8e\x8d\x91\x8e\x91\x1e\x95\x9d\x8d\x90\x94\x1a\xa0\x7b\x99\x73\x6b\x75\x74\x69\x58\xbf\x6a\xda\xc7\xbd\x9d" +"\xac\xaa\x1e\x9a\x9c\x95\xa0\x9b\x1a\xa1\x7a\x99\x72\x6f\x79\x78\x6c\x1e\x0e\x8f\x5a\x0a\x0e\x9c\xf8\xbf\xf9\x06\x15\xfb\x20\xfc" +"\x9d\x79\x46\x78\x7b\x4e\x89\x20\x1d\xf7\x96\x06\x90\xb5\x0a\xf7\x0e\xf8\x5e\x05\xd3\x9e\x9d\x99\xd5\x21\x1d\xfc\x85\x25\x1d\x94" +"\x06\xb9\xa5\x7c\x70\x68\x5c\xfb\x3f\x5e\xfb\x13\x1f\xfb\x14\x5d\x5d\x42\x68\x1b\x82\x84\x8e\x93\x7e\x1f\x99\x74\x83\x8e\x7b\x1b" +"\x6b\x76\x78\x6e\x67\xa7\x75\xb9\xd5\xc0\xbd\xf7\x0d\xc3\x1f\xba\xf0\xac\xf4\xcd\xf7\x97\x08\x0e\xf7\x41\xae\x0a\x89\x93\x89\x96" +"\x86\x19\x9a\x84\x95\x82\x83\x1a\x8a\x82\x05\x88\x84\x8a\x85\x8a\x1a\xfb\x15\xfc\x77\x79\xd3\x1d\x69\x7e\x8d\x90\x81\x1f\x7e\x91" +"\x83\x99\x9b\x1a\x96\x8d\x95\x8f\x9d\x1e\xf7\x10\xf8\x62\xc8\xfc\xc6\x05\x9d\x06\xf7\xf3\xf8\xa0\xfb\x04\xfc\x37\x78\x46\x77\x7a" +"\x4a\x8a\x20\x1d\xf7\x9f\x24\x0a\x53\x8c\x79\x95\xab\x1a\x95\x8d\x9a\x8f\x99\x4b\x1d\xd2\x9d\x9f\x9b\xcf\x21\x1d\xfb\x39\x06\x0e" +"\xc9\x59\x0a\xc9\xf8\x6a\xf9\x33\x15\x37\x31\x5f\x42\x46\x1f\x37\x31\x55\xfb\x11\x21\x1a\xfb\x2e\xe0\x32\xf7\x25\xdb\xd5\xab\xc6" +"\xc7\x1e\xec\xec\xcb\xf7\x1f\xf7\x08\x1a\xf7\x23\x31\xea\xfb\x1a\x1e\x85\x65\x15\xdb\xba\x50\x28\x35\x68\xfb\x0d\x56\x26\x1f\x33" +"\x5c\x46\x55\x49\x1b\x3a\x5b\xc8\xf2\xf3\xc5\xf7\x37\xd1\xea\x1f\xbe\xb1\xc1\xaa\xbf\x1b\x0e\xc9\xf7\xdd\xf9\x06\x15\xf7\xa7\x06" +"\xfb\x20\xfc\x9d\x7a\x46\xf0\x1d\x91\x9d\x05\x54\x8c\x7a\x96\xaa\x1a\x96\x8d\x95\x8f\x9d\x1e\xf7\x0f\xf8\x5e\x05\xd3\x9e\x9d\x99" +"\xd4\x21\x1d\xfd\x17\x76\x0a\x0e\x5a\xf7\xa1\xf7\xd8\x15\x81\xb1\x9c\x88\xaa\x1b\xf7\x25\xef\xdc\xf7\x0a\xc3\x6b\xbb\x56\xa4\x1f" +"\x9d\x66\x6b\x90\x42\x1b\xfb\x5f\x22\x1d\xa9\x94\x8a\x87\x96\x1f\x9b\x86\x95\x7c\x79\x1a\x80\x89\x80\x87\x7b\x1e\xfb\x0f\xfc\x5e" +"\x7a\x45\x77\x7b\x4b\x8a\x20\x1d\xf7\xa2\x29\x0a\x6a\x82\x8c\x8f\x7f\x1f\x7b\x91\x81\x99\x9e\x1a\x95\x8d\x9a\x8f\x98\xe4\x1d\xc9" +"\xb5\x60\x4a\x2a\x44\x42\x2d\x77\x7e\x8d\x92\x72\x1f\x0e\x92\xf9\x30\xf8\x6c\x15\xaf\xf7\x5d\x05\x75\x63\x1d\x5d\x64\x91\x69\x1b" +"\xfb\x6c\xfb\x54\xfb\x5d\xfb\x74\xfb\x31\xf7\x03\xfb\x03\xf7\x31\xf3\xdb\xb7\xf6\xe6\x1f\x79\x99\x05\x31\x30\x52\x6e\x37\x1b\xfb" +"\x06\x4a\xd9\xf7\x1a\xf7\x0b\xba\xad\x0a\xce\x1b\xe9\xbf\x54\xfb\x00\x96\x1f\x0e\x23\xf8\x49\xf9\x06\x15\xe5\x06\xc5\xa7\x75\x5c" +"\x75\x89\x77\x86\x70\xc6\x1d\xe9\xc8\xba\xed\x88\x08\xcb\x06\xfb\x20\xfc\x9d\x05\x42\x78\x79\x7d\x41\x1b\x86\x79\x05\xf7\xb7\x06" +"\x8f\x9d\x05\x6f\x82\x8b\x8c\x83\x1f\x6d\x8f\x7c\x98\xa3\x1a\x96\x8d\x97\x8f\x9c\x1e\x0e\x98\xf7\x23\xf9\x2a\x61\x0a\xf7\x24\xf9" +"\x26\x6c\x1d\x5a\xd2\x1d\x71\x76\x7b\x67\x1e\x7a\x06\x85\x79\x05\xf7\x93\x29\x0a\x7d\x06\x5d\x8d\x7b\x9e\x74\xdf\x4c\xf7\x7c\x18" +"\xf7\x33\xf7\x53\xca\xd6\xab\x9f\xc9\x8e\x19\x90\x9d\x05\xfb\x5d\x06\x85\x79\x05\x96\x06\xa3\x94\x85\x7b\x7f\x85\x80\x7a\x76\x1f" +"\xfb\x28\xfb\x46\x60\xf7\x39\x05\x89\x95\x87\xa4\x93\x1a\xa2\x9f\x98\xae\x1e\x9a\x06\x91\x2e\x1d\x85\x79\x05\x9d\x06\xbd\x8a\x9d" +"\x7a\xa1\x48\xd0\xfb\x8d\x18\xfb\x38\xfb\x5a\x05\x56\x61\x4c\x62\x67\x1b\x85\x55\x0a\x76\x06\x6c\x7b\x93\x9a\x93\x8f\x92\x99\x9d" +"\x1f\x0e\xc9\xf8\xa3\x23\x0a\x87\x67\x1d\x78\x1a\x80\x89\x82\x87\x7a\x1e\xfb\x21\xfc\xa3\x05\xfb\xa7\x06\x96\x1d\xfc\x60\x7a\x48" +"\x77\x49\x1d\xf8\x90\x06\xb5\x94\x8a\x82\x9a\x1f\x9d\x81\x94\x78\x6e\x1a\x70\x87\x72\x82\x67\x1e\x9d\x06\xc0\xf7\x4f\x05\x48\x06" +"\x77\x80\x96\x9e\x93\x8d\x95\x90\x9e\x1f\xf7\x0f\xf8\x5f\xf1\x1d\x0e\xa8\xf8\x42\xf4\x15\x79\x47\x78\x79\x4c\x8a\x86\x79\x18\xf7" +"\x97\x06\x90\x9d\x70\xf4\x1d\x9d\x1a\x96\x8d\x98\x8f\x9a\x77\x1d\x0e\xf8\x13\xf7\x6b\xaf\x15\x8c\x1d\xf9\xfc\xb3\x0a\x9c\x1a\x96" +"\x8d\x99\x8f\x99\x1e\xf7\x0e\xf8\x5e\x05\xd4\x9e\x9d\x99\xd5\x34\x1d\xc1\x8a\x9d\x81\x6b\x1a\x80\x89\x7f\x87\x7c\x1e\xfb\x21\xfc" +"\xa3\x05\xfb\x67\x06\xf7\x20\xf8\x9d\x05\xd4\x9e\x9d\x8a\x0a\x6b\x1a\x7f\x89\x80\x87\x7c\x1e\xfb\x21\xfc\xa3\x05\x0e\xf8\x13\xfa" +"\x08\xfb\x30\x15\xc0\xf7\x4f\x05\x56\x06\x68\x81\x91\xa1\x92\x8d\x95\x8e\x97\x1f\xf7\x11\xf8\x69\x05\xa0\x0a\x6b\x1a\x7e\x8a\x88" +"\x85\x75\x1e\xfb\x20\xfc\xa3\x05\xfb\x67\x06\xf7\x20\xf8\x9d\x05\xd4\x9e\x9d\x8a\x0a\x6b\x1a\x7f\x89\x80\x87\x7c\x1e\xfb\x21\xfc" +"\xa3\x05\xfb\x67\x06\x8c\x1d\xf9\x98\x06\xbb\xa3\x75\x60\x70\x87\x6d\x82\x69\x1f\x0e\x9b\xf8\x9a\x23\x0a\xfc\x14\x06\x61\xfb\x36" +"\x05\x9b\x06\xe1\xa9\xbb\xb3\xd6\x1b\xcb\x06\xfb\x20\xfc\x9e\x7a\x47\xf0\x1d\xdf\xc9\x98\xa8\xbc\x1f\xca\xb1\xaf\xc7\xc5\x0a\x76" +"\x1e\xba\xf7\x45\x05\xd3\x9e\x9c\x99\xd5\x1b\xfb\x3b\xfb\xc0\x15\x8c\x98\x93\x8c\x97\x1b\xef\xbe\x60\x35\x20\x38\x42\xfb\x0c\x77" +"\x7e\x8c\x90\x6f\x1f\x0e\xf7\x68\xf7\xd0\x70\x0a\x93\x8c\x96\xa8\x0a\xf8\xf4\x72\x15\x54\x8c\x7a\x96\xaa\x1a\x95\x8d\x98\x8f\x9b" +"\x1e\xf7\x0f\xf8\x5d\x05\xd4\x9d\x9e\x99\xd4\x21\x1d\xfb\xa4\x06\x86\x67\x1d\x7a\x1a\x80\x89\x7b\x87\x7f\x55\x1d\x0e\x45\xf7\xcd" +"\x70\x0a\x92\x8c\x97\xa8\x0a\x0e\x86\xf7\x3d\xf8\x6d\x15\x9d\x06\xa3\xc0\x99\xa2\xa4\xa4\x08\xb2\xb2\xbb\xa0\xc0\x1b\xe7\xc0\x4d" +"\xfb\x00\x67\x87\x71\x82\x66\x1f\xfb\x1b\x06\x50\x79\x96\xb2\x97\x8d\x95\x90\xa2\x1f\x79\x06\x4f\xfb\x7e\x05\x9b\x06\x99\xd5\xb9" +"\xab\xe5\x8a\x08\xf6\x06\x66\x23\x72\x5e\x5a\x54\x08\x52\x59\x4f\x6d\x4d\x1b\x3b\x55\xb8\xea\x67\x1f\x72\x81\x9f\x50\x99\x72\xa5" +"\x6d\x19\x60\xb2\xbe\x74\xc6\x1b\xf7\x5d\xf7\x50\xf7\x6a\xf7\x79\xf7\x23\x35\xe9\xfb\x15\x5f\x6d\x84\x76\x50\x1f\x87\x7f\x7f\x88" +"\x83\x1b\x7e\x82\x96\x99\x1f\x95\x7b\x07\x0e\xf8\x08\xf8\x39\xf7\xdf\x15\x80\x63\x87\x6c\x6a\x1a\xfb\x26\xe2\x30\xf7\x1e\xf2\xdf" +"\xb7\xea\xd6\x1e\xd5\xe8\xb7\xf7\x04\xea\x1a\xf7\x1f\x32\xec\xfb\x15\xfb\x2c\xfb\x24\xfb\x0b\xfb\x47\x4a\x1e\xfb\x27\x91\x1d\x79" +"\x4e\x8a\xe3\x1d\x8b\x80\x8f\x19\x7b\x91\x81\x99\x9c\x1a\x97\x8c\x94\x90\x9e\x1e\xc9\xf7\x7b\x05\xf8\x8f\xf7\xbd\x15\xda\xba\x50" +"\x2a\x4b\x7b\x43\x6a\x37\x1f\xfb\x2a\x51\x3e\x3d\x31\x1b\x6a\x6b\x9a\xa3\x75\x1f\x70\xa9\x80\xb0\xc5\x1a\xdb\xaf\xf7\x0c\xbf\xeb" +"\x1e\xed\xc1\xc6\xb9\xd3\x1b\x0e\x88\xf8\x5a\xf7\xbc\x15\x58\xfb\x53\x4b\x0a\x8f\xb5\x0a\xf7\x0f\xf8\x5e\x05\xd3\x9d\x9d\x99\xd5" +"\x21\x1d\xfb\xad\x06\x34\x5c\x80\x6d\x5c\x1f\x51\x65\x69\x4c\x46\x1a\x5e\x9a\x66\xa6\x72\x1e\xa3\x76\xa3\x82\xc0\x84\x55\x7e\x80" +"\x84\x4d\x48\x27\x21\x18\x4b\x49\x67\x73\x5b\x85\x86\x79\x18\xf7\x34\x06\xf7\x79\xf7\x8a\xb1\xb6\x90\x8e\xb0\x8f\x19\xbe\xb4\x15" +"\x87\x70\x7e\x8a\x7b\x1b\x3b\x60\xb7\xdb\xf4\xd1\xcb\xf7\x05\x9e\x9a\x8a\x89\xb1\x1f\x0e\xfb\x70\xf7\x48\x23\x0a\x86\x79\x05\xc1" +"\x8a\x9c\x81\x6c\x1a\x80\x89\x7f\x87\x7c\x1e\xfb\x10\xfc\x61\x79\x48\x79\x7a\x60\x1d\x90\x9d\x05\x56\x8c\x7a\x95\xab\x1a\x95\x8d" +"\x99\x8f\x98\x1e\xf7\x22\xf8\xa4\x05\xf7\x8a\x06\xae\xf7\x17\x05\x7a\x06\x78\x44\x71\x75\x47\x89\x08\x0e\xf7\x1d\xf8\x6e\xf9\x06" +"\x15\xf7\x10\x06\xbf\xa6\x73\x5f\x75\x89\x75\x86\x71\xc6\x1d\xe8\xc9\xbb\xec\x88\x08\xb0\x06\xfb\x20\xfc\x9d\x05\x42\x79\x78\x7d" +"\x41\x1b\x86\x79\x05\xf7\x4d\x06\xe4\xf7\xdf\x05\x91\xc1\xad\x8d\xa8\x1b\xd2\xaf\x64\x3e\xfb\x03\x4a\x23\x46\x7b\x7f\x93\x97\x8d" +"\x8b\x8d\x8c\x8d\x1f\x94\x9d\x8c\x8f\x95\x1a\xa2\x79\x9b\x70\x6b\x76\x73\x67\x5e\xad\x74\xce\xf7\x21\xf7\x03\xf5\xf7\x1b\xf0\x48" +"\xca\x20\x63\x5d\x87\x82\x51\x1e\x0e\x30\xf7\xed\x6c\x0a\xf7\x3a\xf8\xfc\x15\xaf\x06\xf7\x40\xf7\x00\x05\x97\x92\x90\x93\x98\x1a" +"\x9f\x7b\x9b\x76\x81\xf7\x05\x1d\x94\xf9\x2c\xf9\x33\x15\x75\x7c\x83\x86\x7a\x1b\x81\x82\x8d\x91\x7a\x1f\x9a\x62\x74\x8f\x66\x1b" +"\xfb\x6b\xfb\x4c\xfb\x49\xfb\x68\xfb\x40\xf2\xfb\x08\xf7\x2b\xce\xc6\xa0\xb5\xbe\x1f\xa8\xa4\x9b\x9f\xaa\xbb\x79\x98\x18\x39\x4d" +"\x4b\x66\x3a\x1b\xfb\x02\x4c\xde\xf7\x26\xa1\x8c\x99\x90\xab\x1f\xf7\x3b\x06\xb5\x93\x8a\x84\x97\x1f\x99\x83\x92\x7c\x77\x1a\x7a" +"\x89\x7d\x83\x6c\x1e\x9b\x06\xcc\xf7\x89\x05\x7b\x06\x76\x42\x6c\x72\x48\x8d\x08\xfb\x45\x06\x9f\xc9\x94\xa1\x9e\xa9\x08\xe6\xc3" +"\xe0\xc2\xe0\x1b\xdd\xc2\x57\x3d\x83\x8b\x81\x8a\x80\x1f\x9c\x06\xb5\xf7\x59\x05\x0e\xf8\x77\xf8\x6f\x15\xb1\xf7\x5d\x05\x74\x06" +"\x76\x7d\x82\x86\x74\x1b\x7e\x81\x8e\x94\x74\x1f\x94\x75\x6a\x90\x6b\x1b\x23\x41\x46\x29\x53\x9a\x6d\xca\x4a\x1f\x93\x83\x99\x7b" +"\x9d\x78\xa4\x70\x95\x80\x8f\x87\x08\xbc\x58\x98\x71\x5f\x1a\x3e\x54\x52\x41\x35\x4b\xd4\xec\x92\x8b\x90\x8d\x94\x1e\x76\x8d\x6b" +"\xfb\x76\x05\x9d\x06\xa2\x92\x96\x95\xa0\x1b\x96\x99\x87\x82\xa6\x1f\x7a\xba\xa6\x85\xab\x1b\xf7\x08\xe2\xe1\xf7\x07\xce\x74\xb2" +"\x2e\xe8\x1f\x2e\xe8\x82\x99\xbe\x1a\xca\xb5\xb2\xd0\xb1\xaa\x7e\x73\xa0\x1e\xa1\x71\x94\x69\x8d\x48\x08\x0e\xfb\xdb\x42\x0a\xfb" +"\xdb\xf7\x8e\x9d\x15\x35\x0a\xf7\x0f\xf8\x5d\x05\xd4\x9e\x9d\x99\xd4\x34\x1d\xc0\x9e\x80\x6d\x7e\x89\x7e\x87\x7d\x1f\xfb\x0e\xfc" +"\x5e\x4b\x0a\x6d\xf9\xd2\x98\x1d\xf7\x42\xb9\x1d\xfb\x6c\xf7\x7f\xf9\x18\x15\xa1\x9c\x8a\x89\x93\x1f\xa0\x86\x97\x7d\x78\x1a\x7d" +"\x89\x7f\x87\x7d\x1e\xfb\x0b\xfc\x52\x05\x53\x7c\x6e\x68\x6c\x1b\x79\x7f\x95\x99\x94\x8d\x8f\x96\x96\x1f\x95\x96\x8f\x93\x97\x1a" +"\xa5\x76\x9f\x71\x68\x6f\x6c\x64\x57\xb8\x63\xc8\xb7\xbc\xa2\xb1\xb0\x1e\xa8\xa9\xa4\xbc\x9a\xc7\xee\xf8\x04\x18\x9b\xcb\xa0\xa0" +"\xbc\x8d\x90\x9d\x18\xfb\x95\x06\x0e\xf7\x9f\xf9\x89\x23\x0a\xfc\x85\x25\x1d\x94\x06\xba\xa4\x7d\x70\x5f\x41\xfb\x8e\x61\x26\x1f" +"\x2a\x61\x6c\x60\x6c\x1b\x83\x84\x8e\x93\x7e\x1f\x99\x74\x83\x8e\x7b\x1b\x6b\x76\x78\x6e\x67\xa7\x75\xb9\xc6\xbe\xb0\xd3\xb4\x1f" +"\xc8\xf6\xb5\xf7\x10\xd6\xf7\xbc\x08\xf7\x3f\x06\xfb\x1f\xfc\x9d\xbd\x0a\xee\xc3\x97\xaa\xc0\x1f\xca\xb1\xaf\xc7\xce\x1a\xf7\x02" +"\x33\xce\xfb\x23\x7b\x81\x8a\x89\x75\x1e\xbb\xf7\x45\x05\xd3\x9e\x9c\x98\xd5\x1b\xfb\x3c\xfb\xbf\x15\x8d\x98\x91\x8b\x9c\x1b\xed" +"\xbe\x5f\x36\x20\x38\x42\xfb\x0e\x78\x7d\x8d\x8f\x71\x1f\x0e\xf7\x99\xf8\x99\xf8\x03\x15\xfb\xa0\x91\x1d\x7a\x4e\x89\xe3\x1d\x8c" +"\x80\x8e\x19\x7b\x91\x81\x99\x9d\x1a\x97\x8d\x94\x8f\x9d\x1e\xc9\xf7\x7b\x05\xf7\xa3\x06\x4d\xfb\x76\xbd\x0a\xef\xc1\x96\xab\xc1" +"\x1f\xc8\xb0\xb0\xc6\xc9\x1a\xd9\x57\xc4\x30\xa0\x1e\x94\x65\x81\x8c\x31\x1b\xbe\xf7\x52\x05\xd4\x9e\x9d\x99\xd4\x21\x1d\xfb\xa3" +"\x06\x84\x79\x05\xa7\x93\x8a\x87\x96\x1f\x9c\x86\x95\x7c\x79\x1a\x7f\x8a\x84\x86\x78\x1e\xad\xfb\x7b\x15\xcf\x9a\x89\x81\xaa\x1f" +"\xb8\x7d\xa7\x60\x55\x1a\x28\x36\x43\xfb\x09\x77\x7e\x8c\x90\x6f\x1e\x0e\xf7\x1f\xf8\x56\xf9\x06\x15\xf7\x06\x06\xd9\xa6\x79\x55" +"\x7e\x8a\x82\x88\x77\x1f\x9a\x06\xb3\xf7\x2a\x05\xfc\xbe\x06\x63\xfb\x2a\x05\x9a\x06\x9a\xd3\xc2\xb4\xde\x8c\x08\xc7\x06\xfb\x20" +"\xfc\x9d\x7a\x47\x78\x79\x4d\x8a\x20\x1d\xf7\x96\x06\x8f\x9d\x05\x56\x8c\x7a\x96\xab\x1a\x95\x8d\x95\x90\x9d\x1e\xc9\xf7\x77\x05" +"\x8e\xae\xb1\x8c\xaa\x1b\xd9\xac\x73\x50\x7c\x8a\x83\x84\x71\x1f\x71\x2d\x7a\x47\x78\x79\xc4\x0a\x55\x8c\x7a\x96\xab\x1a\x96\x8d" +"\x9c\x8e\x95\x1e\xa0\xd5\x05\x95\xb0\x8f\xa1\x9f\x1a\xdf\x50\xae\xfb\x22\x6d\x75\x8a\x88\x5a\x1e\x0e\x8f\x5a\x0a\xf7\x85\xf8\xfc" +"\x15\xae\x06\xf7\x40\xf7\x00\x05\x97\x92\xce\x1d\x98\xf8\xe3\xf9\xb3\xd1\x1d\x8f\x8d\x90\x8e\x91\x1e\x95\x9d\x8d\x90\x94\x1a\xa0" +"\x7b\x99\x73\x6b\x75\x74\x6a\x57\xbf\x6a\xda\xc7\xbd\x9d\xac\xaa\x1e\x9a\x9c\x95\xa0\x9b\x1a\xa1\x7a\x99\x71\x70\x79\x78\x6c\x1e" +"\xfc\x4c\xfb\x24\x61\x0a\xf8\x4e\xf2\x15\x62\x6f\x72\x74\x79\x1b\x83\x86\x90\x92\x90\x8c\x91\x90\x9d\x1f\x90\x9a\xe6\xf7\xea\x3f" +"\x81\x7d\x56\x05\xb7\x81\x71\xa3\x65\x1b\xfb\x0a\xfb\x29\xfb\x52\xfb\x29\x46\xaf\x5e\xc0\xa8\xb1\x9a\xa2\xab\x1f\xa8\xa0\x9e\x9f" +"\xb0\xbe\x87\x7b\x8b\x8b\x86\x79\x08\x82\x68\x8a\x88\x7f\x1a\x6f\x9b\x79\xa6\xb3\xb3\xaa\xd1\xbc\x1e\xfb\x31\xf7\xd6\x15\xac\xa0" +"\x73\x64\xfb\x1c\x21\xfb\x39\x34\x69\x78\xa4\xb9\xc6\xa7\xd7\xbf\xd6\x1f\xc2\xb0\xb0\xa7\xb1\x1b\x0e\xfb\x31\xf8\x9c\xf9\x35\x15" +"\x75\x86\x81\x84\x70\x1b\x86\x80\x8b\x8c\x81\x1f\x8c\x7e\x81\x8b\x82\x1b\x36\x47\x6a\x42\x50\x1f\x41\x33\x47\xfb\x4d\xfb\x03\x1a" +"\x26\xbf\x49\xdc\xbc\xbf\xa3\xb7\xbe\x1e\xcb\xc3\xb1\xdd\xdd\x1a\xec\x51\xcf\x3a\x4d\x4e\x66\x46\x55\x1e\xcb\xf7\x39\xc4\xc1\xf7" +"\x08\x8f\xef\x90\xb0\xa5\xa4\xde\x08\xfb\x7a\xfb\x94\x15\xb4\xa8\x61\x51\x4a\x73\x32\x68\x4a\x1f\x52\x6d\x66\x6e\x61\x1b\x5e\x6f" +"\xb2\xca\xe2\xa2\xe1\xb0\xc3\x1f\xbc\xac\xb1\xa4\xb3\x1b\x0e\xfb\x76\xf7\x96\xf7\x7a\x15\xd4\x9f\xa8\x97\xa3\x9f\x08\xa7\xa1\x9b" +"\xa8\xa6\x1a\xbc\x5f\xac\x49\xfb\x28\xfb\x18\xfb\x21\xfb\x32\x27\xbf\x55\xeb\xf5\xdc\xcc\xe0\xc7\x64\xaa\x3f\x1e\xfb\x0b\x89\x15" +"\xa5\xd4\x9b\xa9\xaa\xad\x08\xac\xaa\xad\x9d\xac\x1b\xa7\x9d\x7a\x70\x71\x7d\x73\x6d\x72\x1f\x62\x69\x60\x7a\x32\x79\x08\x82\x6a" +"\x15\x97\xba\xa0\x8e\xa2\x1b\xb8\xa3\x74\x5f\x42\x5e\x53\x50\x60\x74\xac\xc7\xa7\x8e\xa4\x92\xae\x1f\x0e\xfb\xa2\xf7\x09\xf7\xee" +"\x15\xb3\xb4\xae\x9d\xae\x1b\xae\xa4\x72\x68\x5f\x70\x6d\x42\x69\x1f\x3f\x67\x7d\x83\x73\x77\x08\x74\x78\x7e\x6f\x6b\x1a\x4a\xb9" +"\x60\xd1\xc3\xa9\x9c\xd8\xd6\x1e\x7f\x97\x05\x5d\x5d\x64\x76\x61\x1b\x5e\x70\xa8\xba\xbb\xa9\xae\xcd\xaa\x1f\xee\xb8\x8b\x8b\xa5" +"\xa1\x08\xa0\x9d\x96\xa4\xa8\x1a\xc0\x61\xaf\x4e\x6c\x6b\x81\x79\x72\x1e\x7c\x80\x81\x83\x66\x67\x08\x0e\xfb\x2e\xf7\x4a\xf9\x0c" +"\x15\x96\xac\xa6\x90\xa7\x1b\xde\xc1\x3f\xfb\x0a\x77\x8a\x7d\x87\x73\x1f\xab\x74\x6e\x99\x60\x1b\xfb\x18\xfb\x0c\xfb\x1a\xfb\x27" +"\x21\xc5\x49\xe7\xd7\xcb\xb1\xd5\xbd\x1f\xc0\xd9\xaa\xf7\x0a\xf7\x0a\x1a\xf7\x3b\x45\xe3\xfb\x17\x69\x71\x87\x7f\x60\x1e\xf7\x25" +"\xfb\x81\x15\xb5\xa3\x66\x4b\x48\x75\x3a\x6a\x51\x1f\x4a\x65\x61\x6b\x5d\x1b\x5c\x73\xaf\xd1\xf7\x24\xeb\xf7\x2e\xe5\x1f\x0e\xfb" +"\x6c\xf7\xfe\xf3\x6d\x0a\xfb\x6c\xf7\x9c\xf8\xf3\x7f\x0a\x53\xfc\x8b\x6d\x0a\xf7\xa2\xf8\x82\xf8\x46\x15\x76\x42\x58\x34\x31\xfb" +"\x08\x08\x9f\xc6\x91\xa9\xb6\x1a\xe9\x60\xc8\x48\x4d\x56\x68\x3d\x51\x1e\x99\x81\x05\xc1\xb3\xb1\xa5\xb2\x1b\xb8\xa8\x5e\x45\x53" +"\x79\x45\x6f\x51\x1f\x4e\x6d\x6b\x6d\x69\x1b\x76\x7b\x95\x98\x94\x8d\x8d\x9c\x9a\x1f\x96\x94\x91\x96\x96\x1a\xa2\x7b\x9c\x75\x6d" +"\x75\x71\x67\x5c\xaf\x69\xbe\xe8\xef\xe9\xf7\x61\xf7\x11\x1e\x40\xfb\xb4\x05\xcd\x06\x9e\xd0\xc6\xf0\xdd\xf0\x08\x77\x4a\x86\x72" +"\x65\x1a\x2a\xb5\x52\xd1\xaf\xaf\x98\xa5\xac\x1e\x9f\x9a\x97\x98\xad\xb6\x7e\x95\x18\x5d\x63\x66\x75\x62\x1b\x5d\x6e\xb5\xcd\xf7" +"\x12\xd9\xf7\x26\xce\x9d\x9a\x80\x7e\x82\x87\x85\x7f\x81\x1f\x7e\x80\x87\x83\x7d\x1a\x73\x9a\x7b\xa2\xa8\xa2\xa7\xaf\xb9\x66\xb0" +"\x5c\x2f\x2d\x33\xfb\x6d\xfb\x1e\x1e\xd9\xf7\xb9\x05\x0e\xfb\xa2\xf7\x19\xf7\x6d\x15\xa2\x06\xd1\xa9\x76\x59\x44\x5b\x5b\x45\x53" +"\x66\xa3\xc5\x69\x1f\x7b\x83\x05\x3d\xab\xbd\x69\xdd\x1b\xef\xd9\xc8\xd8\xc3\x67\xad\x3c\x9a\x1f\xb8\x8e\xa1\x87\x1d\x0e\x74\x1d" +"\x0e\xf8\x50\xf9\x24\x15\x71\x7b\x7a\x6f\x89\x8b\x88\x8c\x89\x1f\x8c\x81\x8b\x8b\x88\x1a\x77\x6c\x7a\x68\x6e\x71\x98\x9a\x8f\x8d" +"\x90\x8d\x90\x1e\x94\x9a\x8d\x91\x94\x1a\x9d\x7c\x98\x76\x6e\x78\x76\x6c\x5d\xba\x6d\xd3\xdb\xd0\xb7\xbe\x9e\x7c\x98\x74\x1e\xfb" +"\x72\xfb\x67\x76\x1d\x0e\xfb\x54\x7a\x1d\xa6\x95\xa8\xaa\xa8\xba\xa2\xb5\xc0\x0a\x93\x88\x87\x8e\x8d\x0a\x0e\xfb\x74\xf8\x17\xf2" +"\x15\x68\x6f\x75\x79\x7e\x1b\x82\x84\x91\x94\x91\x8b\x8b\x93\xa7\x1f\xe4\xf7\xe3\x05\x39\x06\x3b\x87\x80\x87\x67\x66\x6d\x69\x79" +"\x5f\x6d\xfb\x02\x08\xfb\x13\x68\x80\x74\x6e\x1b\x82\x8a\x8c\x92\x80\xcb\x1d\xa3\x97\xa5\x9e\x1f\x9f\xa4\x99\xb2\xa8\xf1\xb9\xf7" +"\x3d\xab\xb7\xd4\x89\x08\xa6\x06\x32\xfb\xdf\x05\x85\x74\x8a\x83\x7f\x1a\x71\x98\x7c\xa2\xb0\xb4\xaa\xd2\xc5\x1e\x0e\x75\xf8\x80" +"\xf8\x46\x15\xfb\x4d\xfb\xcb\x6e\xf7\xd9\x45\x7b\x79\x88\x46\x83\x19\x86\x78\x05\x8e\x96\x92\x8c\x94\x1b\xa0\x98\x83\x7e\x87\x8a" +"\x85\x89\x83\x1f\x49\xfb\x88\x05\x59\x7e\x80\x7c\x76\x1b\x85\x87\x8c\x90\x83\x1f\x92\x81\x84\x8d\x81\x1b\x73\x7b\x7c\x74\x6f\xa0" +"\x79\xab\xa9\xa3\x99\xa6\x9e\x1f\x97\x9d\x94\xa1\x99\xc0\xd3\xf7\x9d\x18\xa9\xfc\x22\x05\x9d\x06\xf7\x87\xf8\x22\x38\xfb\xc9\x05" +"\x87\x7a\x88\x7a\x7d\x1a\x71\x98\x7b\xa1\xa7\xac\xa0\xb2\xad\x1e\xa7\xac\x98\x99\x7c\x97\x05\x67\x6e\x76\x7a\x7e\x1b\x83\x86\x91" +"\x95\x91\x8c\x8d\x91\xa4\x1f\xe2\xf7\xde\x05\x0e\xfb\x38\xf7\x47\xf7\x93\x15\xbe\xf7\x52\x5a\x7f\x52\x81\x62\x89\x19\x86\x78\x05" +"\x47\x0a\xc7\xf7\x73\xf7\x33\x90\x63\xfb\x29\x05\x88\x7f\x87\x71\x80\x1a\x73\x9a\x7a\xa0\xb0\xb0\xa9\xd9\xc8\x1e\x7e\x96\x05\x61" +"\x6b\x7d\x80\x7a\x1b\x81\x84\x91\x93\x90\x8b\x8b\x93\xa9\x1f\xe3\xf7\xde\x05\x42\x06\x5d\xfb\x43\x05\x0e\xf7\xc9\xf8\x4e\x15\xfb" +"\x14\xfb\x12\xfb\x22\xfb\x26\x29\xf7\x02\x1d\xc3\xb1\xdd\xdd\x1a\xeb\x51\xd0\x3b\x1e\x82\x74\xb5\x1d\xd7\xa5\xe6\xb3\xca\x1f\xbb" +"\xa9\xb0\xa5\xb2\x1b\x0e\xf7\x70\xf8\x51\x15\x59\x7f\x53\x82\x62\x88\x86\x78\x18\x47\x0a\xa9\xf7\x01\x95\xb2\x9c\xaf\xa4\xb0\x19" +"\xf1\xd0\xc5\xc7\xa9\x1b\x9a\x94\x7c\x6f\x80\x8a\x82\x86\x7a\x1f\x4f\xfb\x74\x89\x7c\x05\x88\x7c\x8b\x8a\x7e\x1a\x6c\x96\x7c\xa2" +"\xae\xad\xa7\xdb\xcd\x1e\x7e\x97\x05\x64\x6e\x79\x7c\x7a\x1b\x82\x86\x91\x97\x8a\x1f\x91\x07\xca\xf7\x7f\x05\x93\xa8\x8e\x9f\x9e" +"\x1a\xb5\x79\xa4\x6b\x70\x66\x7a\x71\x6f\x1e\x64\x68\x7b\x78\x3e\x2c\x08\x0e\xf7\x15\x92\x15\x7e\xa3\x9c\x86\xa4\x1b\xf7\x11\xf7" +"\x16\xf7\x36\xf7\x30\xdc\x63\xc1\x50\x5b\x66\x70\x43\x5b\x1f\xa5\xed\x67\x84\x67\x86\x49\x81\x19\x86\x78\x05\x8f\x9a\x90\x8c\x92" +"\x1b\x9b\x94\x80\x78\x83\x8a\x84\x86\x7a\x1f\x21\xfc\x22\x75\x36\x86\x84\x6a\x8a\x19\x71\x22\x1d\xf7\x69\x24\x0a\x67\x06\x71\x80" +"\x90\x99\x93\x8e\x9d\x8f\x99\x1f\xe0\xf7\xcb\x15\x9d\xcf\x96\xa4\xa3\xa8\x08\xa9\xa3\xa9\x9d\xa4\x1b\xac\x9e\x68\x50\xfb\x1e\x30" +"\xfb\x29\x37\x71\x77\x95\x9f\x80\x1f\x0e\xfb\x6c\xf7\xfa\xf7\x01\x15\x5a\x68\x5e\x6f\x5d\x1b\x54\x65\xb9\xce\xf7\x1b\xe6\xf7\x20" +"\xe2\x9f\x9d\x7d\x7c\x84\x8a\x89\x7e\x7e\x1f\x81\x80\x86\x80\x7f\x1a\x77\x9b\x7d\xa2\xa5\xa0\xa7\xae\xb6\x62\xae\x58\xfb\x16\xfb" +"\x17\xfb\x2a\xfb\x2b\x30\xc1\x4e\xdc\xce\xcc\xb2\xd1\xbb\x1e\x0e\xc9\xf7\x66\xf8\x55\x15\x52\x80\x7b\x89\x4e\x85\x85\x78\x18\x8d" +"\x99\x94\x8c\x8f\x1b\x97\x95\x81\x80\x85\x89\x7f\x88\x82\x1f\x2b\xfc\x02\x05\xd3\x06\xa9\xf7\x00\x9c\xc6\xa4\xba\xbf\xd0\x19\xd0" +"\xbf\xb3\xac\xa8\x1b\x9a\x94\x80\x78\x83\x8a\x85\x87\x7d\x1f\x34\xfb\xdb\x05\xd3\x06\xa8\xf7\x00\x9a\xc3\xa3\xb8\xbc\xcc\x19\xe0" +"\xcb\xa9\xa6\xaa\x1b\x9a\x97\x7e\x79\x84\x8a\x88\x87\x79\x1f\x45\xfb\x9c\x05\x85\x75\x8b\x8b\x83\x1a\x71\x9c\x79\xa4\xb5\xb4\xaa" +"\xcb\xb8\x1e\x7e\x97\x05\x6a\x72\x6f\x74\x7c\x1b\x84\x86\x91\x92\x90\x8b\x8c\x90\x99\x1f\xc8\xf7\x7c\x05\x93\xa9\x8f\xa5\x9e\x1a" +"\xb0\x75\xa4\x6a\x66\x64\x75\x5d\x5f\x1e\x70\x6e\x75\x6f\x53\x3b\xa3\xe5\x18\x95\xad\x8c\x93\x98\x1a\xac\x72\xa6\x6b\x4d\x47\x4b" +"\xfb\x2b\x28\x1e\x0e\xfb\x6c\x64\x0a\x0e\xbd\xf7\x8d\x54\x15\x74\x35\x88\x86\x69\x89\x08\x71\x22\x1d\xf7\x6a\x06\x8f\x9d\x05\x70" +"\x06\x67\x82\x8f\x9d\x90\x8c\x90\x8f\x99\x1f\xa8\xf7\x01\x05\x7d\xa4\x9b\x87\xa2\x1b\xf7\x12\xf7\x16\xf7\x36\xf7\x30\xda\x5b\xc3" +"\x48\x67\x70\x80\x6f\x67\x1f\xd4\xf7\xa4\x67\x86\x43\x7f\x8b\x8b\x6b\x87\x19\x86\x78\x05\x8f\x9a\x90\x8c\x93\x1b\x9a\x93\x81\x78" +"\x81\x89\x7f\x88\x80\x1f\x5d\xfb\x43\x05\xa8\x6d\x75\x95\x6a\x1b\xfb\x03\xfb\x08\xfb\x2b\xfb\x26\x2f\xc0\x4b\xd8\xa2\x9e\x8f\x99" +"\xad\x1f\x94\xad\x15\x76\x6f\x74\x82\x72\x1b\x65\x74\xb3\xce\xf7\x20\xdb\xf7\x31\xd1\xae\xa9\x6c\x68\x82\x89\x7c\x86\x7c\x1f\xd4" +"\x8a\x15\x95\xb4\x96\xa0\x9b\x99\x08\x9a\x9c\xa4\x94\xa0\x1b\xb1\x9f\x66\x46\xfb\x23\x33\xfb\x29\x36\x73\x7a\x94\xa0\x7b\x1f\x0e" +"\xfb\x6c\xf7\x63\xf7\x52\x15\xb4\xfb\x15\x05\x5a\x9b\xa0\x74\xa6\x1b\xac\xaa\xa8\xd8\xba\x1f\x7d\x9c\x05\x5a\x6d\x79\x78\x7b\x1b" +"\x7f\x7f\x9e\xb6\x7d\x1f\x55\xf7\x30\x05\xe5\xc7\xa3\xa3\xa9\x1b\x91\x91\x8a\x87\x99\x1f\x87\x98\x91\x8a\x90\x1b\x9e\x98\x99\x9f" +"\xa4\x7a\x9c\x73\x72\x72\x7d\x6d\x6e\x1f\x7a\x78\x8b\x8b\x46\x2e\x63\xf7\x07\x7d\xa4\x6f\x9a\xfb\x13\x6f\x18\x86\x7a\x05\x90\xa0" +"\x95\x8d\x96\x1b\xbc\xa6\x63\xfb\x25\xbf\x1f\x4e\x2f\x05\x50\x65\x72\x70\x7a\x1b\x85\x87\x8d\x98\x7d\x1f\x93\x82\x83\x8e\x82\x1b" +"\x78\x7d\x7c\x77\x72\x9e\x7a\xa6\xaf\xae\xa8\xc8\xb4\x1f\x0e\xf8\x58\xf7\x00\x15\x66\x6f\x78\x7b\x7b\x1b\x83\x85\x92\x95\x91\x8b" +"\x8c\x90\x9d\xd2\x0a\xfb\x24\x62\xfb\x05\xfb\x31\x4b\x1b\x7b\x82\x97\x9f\x93\x8b\x8b\x91\xa0\x1f\xe3\xf7\xdd\x5a\x7f\x52\x82\x61" +"\x88\x89\x0a\x61\xa2\x6e\xaa\xc7\xd8\xd1\xf7\x15\xdf\x1e\x6d\xfb\x01\x05\x87\x7a\x88\x79\x7e\x1a\x72\x99\x7a\xa1\xa6\x9b\x95\xbd" +"\xbe\x1e\x6d\x56\x83\x75\x6d\x1a\x80\x07\x8c\x79\x8b\x88\x85\x1a\x73\x84\x81\x66\x75\x1e\x96\x7e\x05\xcd\xb0\xa3\xa6\xb1\x1a\x94" +"\x8a\x92\x87\x9c\x1e\x86\x9e\x89\x99\x9a\x1a\xa5\x91\x99\xa6\xb0\x1e\x0e\xfb\x4b\xf7\xa1\xc5\x15\x89\x83\x89\x7c\x83\x1a\x76\x9e" +"\x7a\xa2\xb1\xb0\xa8\xd4\xc4\x1e\x7e\x96\x05\x5d\x68\x77\x79\x7b\x1b\x84\x85\x91\x92\x92\x8b\x8c\x92\xa5\x1f\xe8\xf7\xf1\x05\x43" +"\x06\xfb\x00\x74\x2e\xfb\x04\x48\x1b\x7a\x83\x94\x9d\x92\x8b\x8d\x8f\x97\x1f\xbc\xf7\x4b\x5a\x7f\x56\x81\x5e\x88\x20\x1d\x8e\x9b" +"\x93\x8c\x94\x1b\x9e\x93\x84\x7a\x80\x89\x82\x85\x75\x1f\x76\x3d\x05\x88\x7e\x87\x71\x7f\x1a\x68\xa1\x73\xad\xaa\xad\x99\xa6\xae" +"\x1e\xad\xa5\x9e\xa1\xaf\xc0\x08\x0e\xea\xf7\x8d\xf8\x51\x15\x59\x7f\x54\x4e\x0a\x79\x81\x89\x81\x86\x76\x1f\x51\xfb\x6d\x05\x82" +"\x6a\x8a\x83\x78\x1a\x5e\x9f\x6e\xab\xbe\xc7\xc5\xf7\x19\xe4\x1e\x7d\x52\x05\x82\x6c\x89\x7d\x7b\x1a\x61\xa3\x6c\xaa\xbf\xcc\xc9" +"\xf7\x15\xe0\x1e\x6f\x26\x05\x87\x7a\x88\x77\x7f\x1a\x72\x99\x7b\xa1\xb3\xbb\xb2\xd0\xba\x1e\x7e\x96\x05\x67\x70\x77\x7a\x7b\x1b" +"\x83\x85\x91\x93\x90\x8d\x97\x8e\x96\xd2\x0a\xfb\x25\x63\x23\xfb\x30\x53\x1b\x7b\x83\x98\xa3\x95\x8c\x96\x8c\x8e\x1f\xe0\xf7\xd2" +"\x05\x43\x06\x78\x3d\x7f\x59\x65\x38\x67\x53\x19\x43\x5c\x62\x63\x6e\x1b\x7c\x82\x96\x9e\x94\x8b\x8b\x91\xa1\x1f\x0e\xea\xf7\x8a" +"\xf8\x51\x15\x59\x7f\x54\x4e\x0a\x79\x81\x89\x82\x86\x75\x1f\x51\xfb\x6d\x05\x83\x6d\x89\x7f\x77\x1a\x5f\x9f\x6f\xab\xbd\xc8\xc4" +"\xf7\x19\xe4\x1e\x7d\x53\x05\x83\x6e\x88\x79\x7b\x1a\x63\xa3\x6c\xaa\xbd\xce\xca\xf7\x0c\xda\x1e\x72\x2e\x05\x86\x79\x88\x79\x7f" +"\x1a\x72\x9b\x7a\xa2\xa6\xa0\x98\xb6\xb8\x1e\x70\x5e\x82\x72\x68\x1a\x8c\x72\x05\x8c\x85\x8b\x86\x89\x1a\x78\x81\x7f\x69\x76\x1e" +"\x96\x7e\x05\xce\xb0\xa2\xa6\xb1\x1a\x94\x8a\x93\x87\x9b\x1e\x86\x9e\x89\x99\x99\x1a\xa6\x95\xa3\xa0\xa6\x1e\x7e\x96\x05\x66\x70" +"\x78\x7b\x7b\x1b\x82\x86\x91\x95\x93\x8d\x97\x8e\x98\x1f\xe3\xf7\xde\x05\x43\x06\x76\x3d\x05\xfb\x1d\x66\xfb\x02\xfb\x38\x55\x1b" +"\x7c\x80\x98\x9d\x94\x8d\x98\x8d\x93\x1f\xe0\xf7\xd2\x05\x43\x06\x78\x3d\x7f\x59\x65\x38\x67\x53\x19\x43\x5d\x61\x63\x6e\x1b\x7c" +"\x82\x96\x9e\x94\x8b\x8c\x91\xa0\x1f\x0e\xfb\x21\xf7\xf7\xf8\x52\x15\x7f\x79\x79\x85\x76\x1b\x7f\x85\x8c\x92\x76\x1f\x94\x6d\x73" +"\x90\x79\x1b\x5e\x6a\x78\x52\x59\x1f\x97\x81\x05\xa5\xa2\xa2\x98\x9f\x1b\x93\x93\x89\x84\xa1\x1f\x85\xa0\x95\x89\x9b\x1b\xa4\x8c" +"\x8c\xac\xe1\x1f\x44\x58\x76\x79\x70\x6e\x08\x4a\x47\x69\x47\x4f\x1a\x39\xbd\x54\xd6\xf7\x00\xe6\xdc\xeb\xd4\x5d\xbc\x47\x6a\x72" +"\x83\x72\x63\x1e\xb1\xce\xbb\xc9\xc1\xbe\x08\xfb\x2c\xfb\x6e\x15\xa2\xab\xa6\x95\xa4\x1b\xb7\xa5\x6b\x56\x3b\x52\x47\x49\x65\x74" +"\xac\xc2\xb0\x93\xa7\xa1\xba\x1f\x0e\x9c\xf8\xee\xf3\x15\x60\x59\x7a\x7c\x80\x8a\x08\x84\x84\x92\x92\x8f\x8b\x8b\x8e\x95\x1f\xed" +"\xf8\x04\x05\x43\x06\x27\xfc\x0c\x05\x86\x7a\x8a\x85\x83\x1a\x76\x9f\x7a\xa2\xab\xb6\xac\xd0\xc5\x1e\xfc\x03\xf7\xf6\x15\x58\x7f" +"\x55\x82\x60\x88\x85\x78\x18\x8e\x9b\xd0\x0a\x80\x84\x75\x1f\x56\xfb\x43\x05\x85\x78\x86\x6a\x7a\x1a\x4a\xb7\x61\xd0\xf7\x06\xeb" +"\xe0\xef\xd2\x5f\xb9\x46\x6a\x72\x83\x72\x62\x1e\x7e\x61\x15\xa7\xb2\xa0\x94\xa3\x1b\xb1\xa1\x6d\x58\x38\x53\x43\x4a\x69\x76\xa4" +"\xb5\xa0\x8c\x91\x97\xb3\x1f\x0e\xfb\x61\xf7\x7c\xf8\x51\x15\x58\x7f\x55\x4e\x0a\x7a\x7f\x89\x81\x86\x77\x1f\x5c\xfb\x43\x05\x86" +"\x79\x87\x6e\x79\x1a\x48\xba\x5f\xd2\xf7\x03\xe7\xdc\xee\xd4\x5c\xbc\x45\x69\x74\x83\x72\x62\x1e\x80\x61\x15\xa7\xb1\x9f\x94\xa3" +"\x1b\xb3\xa3\x6a\x53\x3c\x55\x47\x4c\x68\x75\xa6\xb8\x9d\x8d\x9a\x93\xa8\x1f\x0e\xfb\x6f\xf7\x2c\xf7\x8c\x15\x83\x6d\x05\xf7\x36" +"\x06\x81\x5d\x81\x6f\x7c\x6f\x08\x53\x6d\x5d\x6b\x57\x1b\x5b\x6b\xa3\xc5\x6f\x1f\x7b\x84\x05\x3d\xa7\xb9\x67\xd0\x1b\xf7\x12\xf7" +"\x04\xf7\x17\xf7\x26\xf7\x01\x48\xd4\x27\x36\x43\x5a\x51\x71\x9d\x76\xa2\xa0\x9d\x9c\xa0\x93\x87\x93\x83\x94\x1f\x82\x95\x89\x8e" +"\x93\x1a\xa1\xb0\x9e\xb8\xc8\xb0\x5b\x3c\x7c\x8a\x80\x89\x79\x1e\x0e\xb8\xf7\x4d\xf7\x6e\x15\xeb\x06\x85\x70\x89\x7c\x76\x1a\x27" +"\xc2\x49\xdf\xba\xc1\xa3\xb7\xbd\x1e\xcb\xc3\xb1\xdd\xdd\x1a\xeb\x51\xd0\x3a\x2c\x29\x3a\xfb\x04\x61\x1e\x2a\x06\xbf\xf7\x58\x59" +"\x7f\x55\x82\x60\x87\x20\x1d\x8d\x9b\x91\x8c\x95\x1b\x9e\x93\x84\x7a\x80\x89\x80\x86\x78\x1f\x30\xfb\xe8\x05\xd3\x06\xf8\x1b\xf8" +"\x37\x15\xb4\xa8\x61\x50\x4a\x73\x33\x68\x4a\x1f\x52\x6d\x65\x6e\x61\x1b\x5e\x6f\xb2\xc9\xd6\xa5\xe7\xb3\xc9\x1f\xbc\xaa\xaf\xa5" +"\xb2\x1b\x0e\xfb\x57\xf8\x35\xf7\x00\x15\x5f\x66\x81\x82\x7d\x1b\x80\x86\x91\x97\x93\x8d\x97\x8e\x96\x1f\xe3\xf7\xdc\x05\x8d\x5c" +"\x4b\x8c\x79\x1b\xfb\x1f\x3f\x5f\x3c\x4b\xb5\x6c\xe9\x85\x1f\x35\x7d\x6e\x74\x62\x31\x08\x5a\x74\x82\x7f\x79\x1b\x7c\x7e\x95\xa0" +"\x80\x1f\x7b\x82\x05\x63\xa0\x9f\x7b\xa7\x1b\xb8\xb9\xb2\xd4\xb4\x1f\xba\xe2\x9e\x9a\xd2\x93\x67\xfb\x18\x18\x87\x7b\x88\x78\x7e" +"\x1a\x71\x99\x7b\xa1\xb1\xa0\x9c\xe6\xd7\x1e\xfb\x0e\xf7\x1e\x15\x89\x6c\x88\x8b\x81\x1b\x86\x06\x52\x68\xa8\xbb\xc9\xc2\xb4\xde" +"\x9b\x9a\x8a\x8a\x9e\x1f\x0e\xfb\xed\xf7\x60\xf8\x2f\x15\xf7\x46\x06\xa3\xe0\x05\x7d\x06\x7a\x5d\x73\x7a\x5f\x8c\x08\xfb\x74\x06" +"\x88\x7e\x05\xaf\x8a\x95\x85\x78\x1a\x84\x8b\x88\x86\x7d\x1e\x30\xfb\xce\x05\x87\x7d\x89\x7f\x83\x1a\x77\x9f\x7a\xa1\xaa\xb6\xac" +"\xc9\xbf\x1e\x84\xa0\x05\x58\x63\x7c\x7d\x7c\x1b\x84\x84\x91\x93\x8f\x8c\x8f\x8c\x90\x1f\x0e\xfb\x49\xf7\x80\xf8\xac\x15\xb0\xf7" +"\x15\x4d\x81\x81\x8a\x4c\x85\x19\x85\x77\x05\x8d\x9a\x95\x8c\x8d\x1b\x97\x97\x81\x81\x84\x87\x77\x83\x6f\x1f\x85\x77\x05\x30\x06" +"\x83\x6d\x05\xe6\x06\xfb\x21\xfc\x8e\x05\xd2\x06\x99\xbb\xaa\xf4\x93\x9d\xb2\xc7\x19\xeb\xc9\xc2\xc1\xae\x1b\xa2\x9c\x6d\x62\x35" +"\x5b\xfb\x47\x59\x29\x1f\x46\x68\x68\x6a\x65\x1b\x83\x86\x8f\x91\x8e\x8c\x8d\x90\x8e\x1f\x92\x92\x8e\x91\x95\x1a\x9f\x7a\x9b\x75" +"\x73\x79\x77\x70\x68\xa7\x76\xb8\xcf\xc6\xb7\xe5\xc1\x1e\xcb\xf7\x00\xb8\xf7\x27\xf3\x1a\xd9\x70\xb9\x5f\x4e\x38\x41\xfb\x17\x33" +"\x1e\xdb\xf7\xa7\x05\xf7\x28\x06\x94\xa9\x05\x0e\xfb\xaf\xf7\x02\xf7\xf1\x15\xb4\xb4\xae\x9d\xae\x1b\xae\xa4\x72\x67\x5f\x70\x6d" +"\x42\x68\x1f\x41\x68\x7a\x82\x74\x77\x08\x74\x77\x7e\x6f\x6b\x1a\x48\xb8\x61\xd3\xc8\xb6\xa5\xd1\xc2\x1e\x80\x96\x05\x5c\x5d\x64" +"\x77\x61\x1b\x5e\x70\xa8\xba\xbc\xa9\xae\xcd\xaa\x1f\xee\xb8\x8b\x8b\xa5\xa2\x08\xa0\x9d\x96\xa4\xa8\x1a\xc1\x61\xaf\x4e\x55\x66" +"\x76\x4b\x52\x1e\xf7\x10\xf7\x24\x15\xae\x06\xf7\x41\xf7\x01\x05\x97\x92\x90\x93\x98\x1a\xa0\x7b\x9b\x75\x82\xf7\x05\x1d\xfb\x74" +"\xf7\x28\xf7\x84\x15\xf7\x03\xaf\xc9\xcf\xcc\x1b\x9f\x9d\x7d\x7c\x84\x8a\x89\x7e\x7e\x1f\x81\x80\x86\x80\x7e\x1a\x79\x9b\x7c\x9e" +"\xa7\xa2\xa8\xae\xb6\x62\xae\x58\xfb\x15\xfb\x18\xfb\x2b\xfb\x29\x5b\x98\x64\xa3\x72\x1e\x72\xa3\xb0\x7a\xab\x1b\xcd\xd6\xb8\xce" +"\xb9\x1f\x79\x94\x05\x59\x68\x5e\x70\x5d\x1b\x54\x65\xb9\xcf\x9f\x8d\x9c\x90\xa6\x1f\xf7\x35\x06\x93\xa9\x05\x0e\xfb\xa3\xf7\xec" +"\xf8\x4b\x15\x7d\x06\x7d\x81\x81\x84\x82\x1b\x87\x84\x8d\x8f\x83\x1f\x98\x71\x75\x91\x74\x1b\x4f\x5a\x5a\x4f\x5f\x99\x70\xc2\x4b" +"\x1f\xb5\x5c\x9c\x6c\x6d\x1a\x5f\x67\x67\x60\x56\x65\xbf\xd7\x87\x1e\x7b\x06\x73\xfb\x2b\x05\x9e\x06\x9a\x94\x91\x90\x98\x1b\x91" +"\x92\x8a\x89\x92\x1f\x7b\xba\x95\x89\xa4\x1b\xd6\xc5\xc2\xd2\xb8\x7b\xa9\x51\xce\x1f\x5b\xc1\x7f\xa0\xa8\x1a\xac\xa3\xa4\xac\xc1" +"\xab\x5e\x40\x8a\x1e\x9b\x06\x0e\xfc\x12\xf7\x6b\xf2\x15\x66\x71\x6e\x6f\x7c\x1b\x83\x84\x92\x92\x8e\x8c\x90\x8c\x90\x1f\xf1\xf8" +"\x10\x56\x7e\x5d\x83\x5a\x87\x20\x1d\x8d\x9b\x93\x8c\x94\x50\x0a\x3f\xfb\xae\x05\x88\x7d\x89\x80\x82\x1a\x77\x9f\x79\xa3\xa9\xb6" +"\xac\xca\xbf\x1e\x86\xf8\xa7\xb8\x1d\xfc\x12\xf7\x6b\xf2\x15\x5c\x65\x77\x79\x7f\x1b\x83\x84\x91\x93\x8e\x8c\x90\x8c\x90\x1f\xf1" +"\xf8\x10\x56\x7e\x5d\x83\x5a\x87\x20\x1d\x8d\x9b\x92\x8c\x95\x50\x0a\x40\xfb\xae\x05\x88\x82\x8a\x82\x82\x1a\x70\x9c\x79\xa3\xaf" +"\xb0\xa9\xd6\xc6\x1e\xfb\x03\xf8\x9f\x15\xa6\x0a\xf7\x34\x16\xa6\x0a\x0e\xfc\x12\xe8\xf8\x23\x15\x8d\x9a\x90\x8b\x93\x1b\x9d\x97" +"\x81\x7b\x85\x89\x81\x88\x81\x1f\x2b\xfb\xfc\x78\x43\x85\x7d\x79\x72\x19\x78\x7c\x74\x7e\x76\x1b\x80\x84\x8f\x94\x84\x1f\x9b\x94" +"\x94\x9b\x9c\x7d\x97\x77\x75\x7a\x7b\x76\x70\xaa\x77\xb5\xde\xcf\xd7\xf7\x18\xaf\x1f\xf6\xf8\x24\x54\x80\x64\x85\x58\x87\x19\xf7" +"\x14\xf7\x59\xb8\x1d\x9e\xf8\x35\xf8\x46\x15\x39\x06\x26\x91\x4b\x43\x63\xfb\x3b\x08\xfb\x0a\x6c\x7b\x6a\x6f\x1b\x82\x89\x8c\x93" +"\x81\xcb\x1d\xa1\x97\xa5\x9f\x1f\x9c\xa1\x9c\xba\xa7\xed\xba\xf7\x3d\xab\xb8\xd5\x88\x08\xa6\x06\x4a\xfb\x89\x05\x85\x71\x89\x7e" +"\x77\x1a\x44\xb6\x62\xd6\xf7\x03\xe8\xdb\xeb\xd3\x5c\xbc\x45\x6a\x71\x83\x72\x63\x1e\x7f\x61\x15\xa7\xb0\xa0\x94\xa4\x1b\xb4\xa2" +"\x6b\x55\x3b\x56\x49\x4c\x69\x73\xa6\xb0\x9d\x8f\xa5\x91\xa1\x1f\x0e\xbf\xf7\x4e\xf7\x73\x15\xf7\x37\x90\x7a\x4c\x05\x86\x78\x87" +"\x6f\x79\x1a\x48\xba\x5f\xd2\xf5\xea\xda\xe3\xb2\x78\xae\x6b\x9e\x1e\x98\x76\x71\x90\x62\x1b\x75\x7a\x8a\x87\x69\x1f\xb8\xf7\x40" +"\x05\x44\x06\x5c\xfb\x44\xfb\x37\x88\xbe\xf7\x52\x5a\x7f\x52\x81\x62\x89\x19\x86\x78\x05\x47\x0a\xf7\xba\xf7\x79\x15\x8c\x98\x99" +"\x8b\x8e\x1b\xb8\x9b\x89\x86\x97\x1f\xa3\x7f\x99\x71\x68\x1a\x46\x55\x4b\x50\x66\x76\xa6\xba\x9d\x8c\x91\x94\xaf\x1e\x0e\xef\x16" +"\x99\xc1\xad\xf7\x0d\x98\xa7\xc6\xd9\x19\xd2\xc1\xb4\xae\xaa\x1b\x98\x95\x80\x7a\x81\x88\x78\x86\x7a\x1f\x4c\xfb\x83\x05\x83\x70" +"\x8b\x8a\x7e\x1a\x71\x9c\x79\xa4\xab\xac\xa3\xc8\xbd\x1e\x94\x97\x7e\x96\x05\x66\x6f\x72\x74\x7f\x1b\x84\x84\x93\x93\x8f\x8d\x98" +"\x8c\x8f\x1f\xcb\xf7\x7e\x05\x92\xa7\x90\xa7\x9d\x1a\xad\x74\xa3\x6a\x6b\x6e\x7b\x5f\x5c\x1e\x68\x6b\x83\x80\x43\x28\xd7\xf7\xa5" +"\x18\xf7\x2a\x06\x94\xa9\x05\xfb\x2a\x06\xac\xf7\x0f\x53\x82\x7b\x89\x4c\x84\x19\x85\x78\x05\x8d\x9a\x95\x8c\x8e\x1b\x98\x96\x81" +"\x80\x86\x8a\x85\x89\x84\x1f\x89\x84\x89\x85\x88\x1a\x82\x69\x05\x33\x06\x82\x6d\x05\xe3\x06\xfb\x22\xfc\x93\x05\x0e\xfb\x54\x7a" +"\x1d\xab\x9a\x97\x97\xb0\xc8\x08\xc3\xae\x95\x95\x9d\x1b\x92\x92\x88\x87\x8f\x8d\x0a\xe9\xf7\x95\x15\xae\x06\xf7\x41\xf6\x05\x96" +"\x93\xce\x1d\xfb\x6c\x64\x0a\xf7\x10\xf8\xaa\x15\x8c\x82\x8b\x8b\x87\x1a\x77\x6d\x7a\x68\x6e\x71\x98\x9a\x8f\x8d\x90\x8d\x90\x1e" +"\x94\x9a\x8d\x91\x94\x1a\x9d\x7c\x98\x76\x6e\x77\x76\x6d\x5c\xb9\x6d\xd4\xdb\xd0\xb7\xbe\x9e\x7c\x98\x74\x72\x7b\x7a\x6f\x1e\x0e" +"\xc9\xf7\x47\xb0\x15\xf7\x21\xf8\x9c\x05\xd4\x9e\x9c\x99\xd5\x21\x1d\xfb\xa2\x06\x83\x79\x05\xc3\xda\x1d\xfc\x5f\x7a\x47\x77\x49" +"\x1d\xf7\x41\x06\xb6\x94\x8a\x83\x98\x1f\x9d\x81\x94\x75\x6c\x1a\x70\x87\x70\x7e\x5a\x1e\x9d\x06\xbc\xf7\x26\xb0\xac\xf7\x03\x87" +"\x08\xf7\x35\xb3\x0a\x9d\x1a\x96\x8d\x98\x8f\x99\x1e\xf7\x0e\xf8\x5e\x58\x1d\x6b\x1a\x7f\x89\x81\x87\x7b\x1e\xfb\x20\xfc\xa2\x05" +"\x0e\xf7\x32\x37\x15\x8c\x78\x8b\x86\x87\x1a\x74\x83\x81\x68\x76\x1e\x96\x7d\x05\xce\xb2\xa1\xa4\xb2\x1a\x95\x8a\x8e\x87\x9f\x1e" +"\x87\x9a\x89\x97\x92\x1a\xa0\xa7\xc3\xa7\xac\x1e\x9e\xa0\x98\x9e\xab\xbb\x6d\xfb\x01\x18\x85\x1d\xe3\xf7\xdd\x5a\x7f\x52\x81\x61" +"\x89\x89\x0a\x62\xa2\x6d\xab\xa8\xab\x9c\xaf\xb5\x1e\x65\x57\x7f\x70\x67\x1a\x0e\xfb\x88\xe8\xf7\x94\x15\xd3\xc0\xc1\xae\xc3\x1b" +"\xc0\xad\x5d\x43\x73\x89\x7b\x83\x6b\x1f\xfb\x9a\x06\x84\x6e\x89\x7d\x79\x1a\x42\xb7\x5e\xd1\xf7\x13\xf7\x0e\xf7\x29\xf7\x2d\xe3" +"\x5c\xc4\x41\x57\x54\x71\x5d\x5e\x1e\x74\x73\x78\x6f\x6c\x56\x08\xf7\x87\xfb\x15\x15\x4b\x72\x62\x67\x5a\x1b\x6a\x75\xa4\xb1\x95" +"\x8c\x94\x8f\x9d\x1f\x0e\xf7\x41\xf7\xef\xf8\x38\x15\x59\x5b\x6b\x7a\x61\x1b\x59\x6d\xaa\xc1\xf6\xde\xf6\xde\xa1\x9a\x83\x7e\x85" +"\x88\x87\x83\x82\x1f\x7f\x7f\x87\x83\x82\x1a\x7d\x97\x7f\x9a\xa1\x9d\xa2\xa7\xb0\x6d\xa2\x58\xfb\x05\xfb\x04\xfb\x09\xfb\x0a\x44" +"\xb5\x60\xd0\xc8\xbb\xa5\xcc\xc3\x1e\xf8\x49\xf7\x96\x15\x5e\x06\xfd\x47\xfd\x4a\x05\xb9\x06\xf8\xda\xf8\x02\x15\xfb\x04\xfb\x00" +"\xfb\x06\xfb\x09\x46\xbb\x5a\xce\xf7\x05\xf4\xf7\x03\xf7\x0b\xd2\x5d\xbb\x48\x1f\x81\x78\x15\xb1\xa1\x6f\x5c\x58\x7b\x53\x6d\x59" +"\x1f\x56\x6c\x6a\x71\x67\x1b\x66\x72\xa9\xb9\xbd\x9b\xc1\xa9\xbf\x1f\xc0\xab\xac\xa5\xb0\x1b\x0e\xfb\x87\xf7\x86\xf7\x9b\x15\xc4" +"\xc6\xad\xb4\xa2\xb1\x08\xb2\xcb\xa3\xd1\xc0\x1a\xbd\x72\xab\x63\x39\x4f\xfb\x13\xfb\xb6\x54\x1e\x76\x72\x76\x75\x7e\x7f\x08\x7d" +"\x7e\x86\x84\x84\x1a\x83\x92\x81\x91\x92\xa5\xa1\xa1\xa0\x1e\x84\x44\x89\x74\x72\x1a\x51\xa4\x6a\xb8\xab\xa5\x9e\xb1\xa2\x1e\x98" +"\x9f\x92\x9e\x97\x1a\x94\x86\x91\x82\x83\x86\x86\x7e\x85\x1e\x64\x78\x7e\x7d\x7a\x1b\x80\x85\x94\x9b\xa4\x9a\xf3\x99\xd5\x1f\x94" +"\xc2\x15\xf7\x79\xb1\xa6\xd9\xb2\x1b\x9a\x95\x7c\x75\x70\x81\x5e\x7c\x65\x1f\x74\x51\x6f\x5f\x56\x51\x08\x0e\xf7\xaf\xf7\x1f\x23" +"\x0a\x85\x79\x05\x9b\x06\xb4\xa1\x7e\x67\x9d\x1f\xfb\x0f\xfc\x63\x05\x56\x7d\x7c\x76\x77\x1b\x84\x83\x8e\x90\x84\x1f\x9a\x77\x7e" +"\x91\x7a\x1b\x70\x76\x76\x6f\x6d\xa6\x79\xb9\xbb\xaa\x9d\xb5\xa4\x1f\x94\x9a\x96\xa8\x95\xb1\xf7\x01\xf8\x33\x18\xf7\x7a\xfc\xb7" +"\x05\x9e\x06\xf7\x21\xf8\xa6\x05\xc0\x99\x99\x9d\xa4\x1b\x94\x91\x89\x84\x9a\x1f\x86\x97\x92\x89\x94\x1b\xa8\xa1\x9c\xa2\xa7\x70" +"\x9e\x62\x48\x67\x64\x24\x70\x1f\x2d\xfb\xf3\xfb\x59\xf8\x77\x05\xf7\x9b\xfd\x2a\x15\xf7\x95\x06\x9b\xc9\x05\xfb\x95\x06\xf7\x71" +"\xf8\x46\x15\x2f\x3b\x30\x21\x34\xba\x4d\xcf\xe8\xdb\xe5\xf4\xe4\x5b\xc9\x47\x1f\x87\x6f\x15\xb2\xa1\x66\x4c\x24\x59\x34\x4f\x66" +"\x74\xb1\xcb\xef\xbe\xe3\xc5\x1f\x0e\xfb\x1b\xb2\x1d\xf7\xb6\x05\x35\x06\x6c\x36\x05\xcc\x83\x6b\xaa\x53\x1b\x59\x55\x6e\x55\x58" +"\x1f\x55\x51\x6d\x43\x41\x1a\x28\x7e\x0a\xc2\x9a\xd0\xa4\xc9\x1f\xdc\xad\xb7\xb6\xbc\x1b\xb8\xa1\x67\x3d\x8d\x1f\x0e\xfb\x1b\xb2" +"\x1d\xf7\xb8\x05\x35\x06\x6c\x35\x05\xcc\x83\x6b\xaa\x53\x1b\x58\x56\x6e\x55\x58\x1f\x55\x50\x6d\x44\x41\x1a\x27\x7e\x0a\xc3\x9a" +"\xd0\xa4\xc8\x1f\xdd\xad\xb7\xb6\xbc\x1b\xb8\xa1\x67\x3c\x8d\x1f\x5f\xf7\x49\x15\xb5\x06\xa1\xba\x05\xa1\xba\x99\xb7\x9f\xe0\x1d" +"\x25\x0a\xf7\x4e\xf7\x38\x29\x1d\xfb\xdb\xc5\xf7\x82\x15\xf7\x42\xfb\xe8\x05\x7c\x93\x95\x83\x97\x1b\x93\x90\x8f\x92\x92\x89\x93" +"\x88\x93\x1f\xfb\x17\xf7\xdd\xf7\x17\xf7\xdd\x05\x8e\x93\x8d\x93\x92\x1a\x93\x86\x8f\x83\x7f\x83\x85\x79\x81\x1e\x0e\xfb\xdb\xf7" +"\xa7\xf7\x82\x15\xfb\x42\xf7\xe8\x05\x9c\x82\x82\x92\x7f\x1b\x83\x86\x87\x83\x85\x8d\x83\x8e\x82\x1f\xf7\x17\xfb\xdd\xfb\x17\xfb" +"\xdd\x05\x88\x84\x89\x83\x84\x1a\x83\x90\x87\x93\x97\x93\x91\x9c\x95\x1e\x0e\xf8\x64\xf7\x02\x15\x6f\x6f\x05\x6b\x6b\x80\x53\x0a" +"\xf7\x40\xba\xf7\x3f\x77\x0a\x7b\x8d\x84\x92\x83\x1e\x78\x71\x84\x76\x6f\x1a\x58\xb6\x60\xbf\xb0\x0a\x67\x74\xa0\xac\xa3\x92\x96" +"\xa3\x98\x1f\xa6\x9a\xa8\xa8\xbb\xc7\x08\x7b\x0a\x0e\xf7\xe8\xf9\x3a\xf7\x6c\xb9\x0a\xba\x32\x79\x92\x5e\x1b\x5d\x6c\x76\x4b\x5d" +"\x1f\xc1\x6b\xd9\x1d\x5b\xe4\x9d\x85\xb8\x1b\xb9\xaa\xa0\xcc\xb9\x1f\x55\xf7\x61\xb9\x0a\xbb\x32\x79\x91\x5e\x1b\x5d\x6d\x76\x4a" +"\x5c\x1f\xc1\x6c\xd9\x1d\x5c\xe4\x9d\x84\xb8\x1b\xb9\xad\xa3\xc8\xb6\x1f\x0e\xf8\x64\xf7\x02\x15\x7b\x7c\x84\x83\x86\x86\x08\x6b" +"\x6c\x7f\x53\x0a\xf7\x3f\xba\xf7\x40\x68\x0a\xb6\xf7\xb4\xa4\x1d\x67\x6e\x58\x0a\x6a\xc9\xbb\x1d\x88\x84\x85\x1e\x0e\xc9\xf9\x03" +"\xf8\x37\x15\xfc\xa0\x06\xf7\x66\xdc\x74\xc0\xfb\xb2\xfb\x14\x05\x3e\x07\xf7\xb2\xfb\x13\xa2\xbf\xfb\x66\xdd\x05\xf8\xa0\x06\xfb" +"\x66\x39\xa2\x57\xf7\xb2\xf7\x13\x05\xd8\x07\xfb\xb2\xf7\x14\x74\x56\x05\x0e\xc9\xf8\x1b\xf9\x66\x15\x4b\xfd\x03\x06\x39\xf7\x66" +"\x57\x74\xf7\x13\xfb\xb2\x05\xd8\x06\xf7\x14\xf7\xb2\x56\xa2\x3a\xfb\x66\x05\x0e\xc9\xf9\x66\xf7\xf9\x15\xcb\xfd\x03\x07\xf7\x66" +"\xdc\x74\xc0\xfb\xb2\xfb\x13\x05\x3e\x07\xf7\xb2\xfb\x14\xa2\xbf\xfb\x66\xdd\x05\x0e\xc9\xf7\xf9\x04\xf9\x03\x06\xfb\x66\x39\xa2" +"\x57\xf7\xb2\xf7\x14\x05\xd8\x07\xfb\xb2\xf7\x13\x74\x56\xf7\x66\x3a\x05\xfd\x03\x06\x0e\xc9\xf8\x1b\x16\xf9\x03\x07\xdc\xfb\x66" +"\xc0\xa3\xfb\x14\xf7\xb1\x05\x3e\x06\xfb\x13\xfb\xb1\xbf\x73\xdd\xf7\x66\x05\xfd\x03\x07\x0e\xc9\xf7\xde\xf9\x03\x83\x0a\xa2\xc6" +"\x0a\x74\x05\x0e\xc9\xf7\x5b\x2c\x15\x51\xf7\xdb\xc5\x07\xfb\x58\xf9\x42\x83\x0a\xa3\xc6\x0a\x73\x05\x0e\xfb\x36\x75\xfb\x40\x15" +"\xda\x06\xc5\xf7\x6b\x05\x66\xa6\xa8\x7b\xb3\x1b\xf7\x0e\xf7\x0a\xf7\x11\xf7\x15\xcf\x72\xc0\x5b\xae\x1f\xd4\xb1\xb6\xc3\xc4\x1a" +"\xcb\x57\xb7\x40\x4a\x50\x6e\x58\x63\x1e\x72\x6b\x77\x5c\x78\x44\x08\xda\x16\x99\xbf\x9c\xc0\x95\xa1\x08\xbe\xa3\xae\xa7\xb4\x1b" +"\xb0\xa3\x6e\x5e\x57\x75\x57\x63\x61\x1f\x99\x71\x7b\x8f\x78\x1b\x70\x78\x7e\x79\x78\x9d\x7f\xa8\x9b\x99\x8e\x93\xa0\x1f\x9a\x71" +"\x90\x72\x64\x1a\x54\x76\x38\x6f\x57\x1e\x55\x6f\x5f\x6a\x60\x1b\x6d\x72\x9d\xb4\x70\x1f\x0e\xfb\x6c\x3c\x1d\xfb\x17\xf8\x22\x2b" +"\x0a\xfb\x6c\x3c\x1d\xf7\x0a\xf8\xc9\x21\x0a\xfb\x72\xf7\xf0\xf5\x15\x50\x54\x64\x75\x5a\x1b\x52\x69\xb5\xd3\xe0\xae\xe5\xc3\xc5" +"\x1f\xa9\xa8\xb3\x9d\xb3\x1b\xa2\x99\x83\x7f\x86\x89\x86\x87\x82\x1f\xb8\x0a\xa6\xba\x51\x0a\x2c\xc1\x54\xe8\xd6\xc0\xa9\xd8\xc8" +"\x1e\x92\xf8\xc9\x20\x0a\xfb\x6c\x3c\x1d\x6a\xf8\x92\x24\x1d\x0e\xfb\x70\xf8\x53\xf8\x46\x15\x38\x06\xfb\x31\xfb\x7a\x05\xf7\x5d" +"\x80\x7c\xb2\x4b\x1b\x6a\x75\x7a\x71\x75\x99\x7e\xa8\x86\x1f\xc4\x86\x92\x77\x95\xfb\x3a\xfb\x8b\xfb\xea\x18\xe0\x06\xf7\x3c\xf7" +"\x85\x8c\x59\x90\x58\x93\x55\x19\x46\x95\x9c\x6d\xaa\x1b\xb0\xb8\xc4\xe3\xa9\x1f\x7e\x92\x05\x52\x72\x74\x73\x6e\x1b\x61\x7a\xc7" +"\xf7\x36\x86\x1f\x0e\xf7\xe8\xf8\x8b\xf9\x4b\x15\xfb\x5c\xfb\x36\xfb\x35\xfb\x5c\xfb\x58\xf7\x36\xfb\x36\xf7\x57\xf7\x59\xf7\x37" +"\xf7\x37\xf7\x57\xf7\x58\xfb\x36\xf7\x39\xfb\x55\x1f\x87\xfb\xd0\x15\xfb\x52\xf7\x50\x05\xb8\xc2\xcc\xa2\xd1\x1b\xd0\xcc\x74\x60" +"\xc3\x1f\xb3\x63\x15\xbb\x51\xa2\x4d\x42\x1a\x43\x74\x4b\x5d\x53\x1e\xfb\x54\xf7\x57\x05\xf7\x2c\xfb\x7f\x15\x5f\x54\x48\x73\x45" +"\x1b\x45\x4b\xa2\xba\x50\x1f\xf7\x55\xf7\x55\x05\xfb\x7d\xfb\x2d\x15\x5f\xc1\x74\xcb\xd1\x1a\xd3\xa2\xcb\xba\xc4\x1e\xf7\x52\xfb" +"\x50\x05\x0e\xf7\xe8\xf9\x83\x16\x9f\x07\x84\x8d\x74\x90\x3e\x9e\x8b\x8c\x70\x9c\x19\x45\xbb\x64\xd8\xe4\x1a\x94\x07\x9b\x07\x9f" +"\x67\x94\x7e\x97\x7c\x08\x5c\xb1\xc8\x6d\xc1\x1b\xe6\xd3\xd5\xe8\xe7\x4a\xd2\x39\x71\x80\x88\x79\x67\x1f\x88\x8a\x82\x86\x82\x87" +"\x08\xa8\xb7\x95\xa5\xb0\x1a\xe5\x43\xd2\x2f\x2e\x44\x45\x31\x67\x92\x78\xad\x56\x1e\xa3\x58\x78\x91\x70\x1b\x3d\x49\x40\x33\x2d" +"\xd3\x43\xe9\xdb\xd1\xbe\xe5\xb6\x1f\x8c\x72\x05\x83\x07\x54\x71\x45\x65\x5f\x1e\x5c\x5a\x8a\x8a\xfb\x0e\x6e\x83\x89\x18\x77\x07" +"\x0e\x3f\x5c\x0a\xf7\x84\x9d\x15\xe0\xba\xb8\xc3\xc3\x48\x0a\x70\x74\x70\x57\x69\x1e\x0e\xf8\x33\xf8\xb4\x15\x60\xfb\x35\x8f\x1d" +"\x7f\x95\x05\xe7\x1d\xf7\x0b\xad\xf7\x03\x1f\x9b\xc3\x9c\xc9\xa3\xe7\x92\xa7\x18\xc5\x06\x93\xae\x05\x52\x06\xa5\xee\x86\x90\x57" +"\x80\x67\x86\x4a\x84\x19\x7a\x07\xc2\x89\x92\x88\x75\x1a\x81\x8a\x83\x86\x78\x1e\xfb\x3c\x06\x83\x68\x05\xc9\xfb\x12\x87\x0a\x0e" +"\xfb\x57\xf8\x68\xf8\xfd\x15\xb1\x48\x3a\xa1\x47\x1b\x46\x63\x6d\x56\x70\x9b\x71\xaa\x72\x1f\xcc\x58\x44\x75\x63\x73\x63\x60\x19" +"\x52\x4c\x69\x37\x3e\x1a\x2a\xc9\x4d\xeb\xf7\x30\xf7\x1b\xf7\x29\xf7\x40\xcf\x71\xbb\x52\xb1\x1e\xfb\x27\xee\x05\x5e\xa9\x8a\x8c" +"\x97\x1a\x99\x98\x93\xa3\xc9\xf1\x64\x5b\xca\x1e\xfb\x37\x29\x15\xcd\x5e\xa4\x61\x4d\x1a\x4d\x73\x42\x64\x50\x1e\x54\x66\x5f\x6f" +"\x5a\x1b\x51\x6d\xb3\xd9\xd1\x9f\xd4\xaf\xc5\x1f\xac\xc1\xac\xa5\xcf\xa6\x08\x0e\xf7\xe8\xf8\x95\xf9\x89\x15\x42\xfb\x13\x4d\x33" +"\xfb\x21\xfb\x45\xf0\xfb\x0f\xf7\x35\xfb\x78\x99\x61\xde\xf7\x20\xdf\xf7\x0b\xf7\x03\xf7\x1a\xfb\x0b\xf7\x26\x2a\xf7\x1d\x4d\xf7" +"\x01\x08\x0e\xfb\xdb\xf7\x84\xf8\xc1\x15\xad\x06\x9b\xac\x05\x9c\xae\x94\xa5\x9b\x1a\x9a\x83\x93\x7b\x6a\x81\x77\x41\x85\x1e\x4b" +"\x70\x15\x86\x0a\xf7\x2e\x59\x1d\xfb\x6c\x28\x1d\xf7\xc4\xf8\x4e\xc5\x1d\x8c\xb4\x59\xe3\x1b\xc0\xba\x5a\x1d\xfb\x6c\x28\x1d\xf7" +"\xef\xf8\x59\x21\x0a\xfb\x6c\x28\x1d\xf7\x46\xf8\x22\x24\x1d\x0e\xf7\xe8\xf9\x93\xf7\x6c\x15\xc8\xfc\x62\x07\x91\xf6\xc3\xbd\xf7" +"\x01\x89\x08\xf7\xb7\xc9\xfb\xac\xa7\x0a\x38\xca\x0a\xc9\xfb\xb7\x06\xfb\x01\x89\x53\xbd\x85\xf5\x08\x0e\xfb\x6c\x28\x1d\xf7\xe0" +"\xf8\x0b\x29\x1d\xfb\x67\xf7\x62\xf8\x4b\x15\x8a\x1d\x80\x85\x6a\x84\x6f\x1f\x3f\xfb\xb8\x05\xfb\x23\x67\x76\x65\x63\x88\x1d\xba" +"\xb4\xae\x9d\xaf\xaa\x1e\xac\xb2\xa0\xbb\xa4\xe9\xd9\xf7\xbb\x18\x90\xa1\x8f\xa1\x99\x1a\xaf\xf7\x04\x1d\x0e\xfb\x6c\xf7\xfa\xf7" +"\x01\x15\x50\x43\x6c\x7b\x5f\x1b\x53\x66\xaf\xc2\x9a\x8d\x99\x93\xab\x1f\xa7\x8f\x05\xf7\x2a\xa0\xf5\xd7\xe1\x1a\xb5\x6d\xa5\x59" +"\xfb\x24\xfb\x31\xfb\x38\xfb\x2b\x3a\xc1\x53\xda\xae\xa6\x92\x9d\xaf\x1e\x70\x6d\x80\x71\x6a\x1a\x58\xb6\x60\xbf\xbc\xb4\xa4\xbf" +"\xae\x1e\x7a\x9d\x05\x75\x70\x73\x81\x6b\x1b\x68\x73\xa0\xab\xb7\x9b\xa9\xc0\xc6\x1f\x9b\x9c\x05\xfb\x6e\xf7\x2f\x15\xe4\xad\xd5" +"\xd8\xbe\x1b\xa0\x99\x7c\x73\x6c\x78\x67\x6c\x6d\x1f\x66\x68\x65\x79\x35\x76\x08\x0e\xfb\x9e\x65\x0a\x0e\xfb\x9e\x65\x0a\xfb\x03" +"\xf7\xeb\x15\xb5\x06\xa0\xba\x05\xa3\xbe\x98\xb3\x9f\x1a\xa0\x81\x96\x78\x62\x7d\x6e\x22\x80\x1e\x0e\xf7\xe8\xf7\x8c\xf7\xb7\x15" +"\x4c\xf8\x8c\xca\x07\xfc\x8c\xf7\x21\x15\x4c\xf8\x8c\xca\x07\xfc\x8c\xfb\xad\x15\x4c\xf8\x8c\xca\x07\x0e\x4f\xf8\x9b\xf7\x8e\x15" +"\x8a\xd3\x87\xae\x7d\xb0\x08\xdb\x6e\x44\xbb\x34\x1b\xfb\x16\x39\x23\xfb\x37\xfb\x37\xda\x29\xf7\x18\xee\xcf\xbf\xeb\xa5\x1f\x64" +"\x06\x46\x6e\x58\x68\x42\x1b\x62\x69\x97\xa2\x74\x1f\x7a\x9b\x83\x9c\x80\xb2\x08\xf4\x07\xf7\xa6\xae\x15\xfb\xa4\xe8\x06\xd5\xab" +"\xad\xa5\xcd\x1b\xce\xc0\x66\x4c\x9f\x1f\x0e\xfb\x38\x67\x0a\x0e\xfb\x38\x67\x0a\xc2\xf9\x22\x15\xb5\x06\xa1\xba\x05\xa1\xbb\x99" +"\xb6\x9f\xe0\x1d\xfb\x20\xdc\xf7\x46\x15\x9a\x87\x05\x8f\x94\x8d\x91\x8c\x1a\xa2\xc7\x8f\x96\x93\xa0\x9f\xba\x19\xc0\xf7\x13\x05" +"\xaa\xd5\x9f\xcf\xa8\x1a\xa5\x7e\x99\x72\x66\x7a\x69\xfb\x0a\x75\x1e\x35\xfc\x3a\x15\x6f\x75\x75\x6f\x70\xa2\x74\xa6\xa6\xa2\xa1" +"\xa6\xa8\x75\xa1\x6f\x1f\xf7\xf5\xe0\x15\x9a\x87\x05\x8d\x91\x8f\x94\x8c\x1a\xa2\xc7\x8e\x95\x9c\xb4\x97\xa7\x19\xc0\xf7\x13\x05" +"\xa9\xd5\xa0\xcf\xa8\x1a\xa5\x7d\x99\x73\x66\x7a\x69\xfb\x0a\x75\x1e\x35\xfc\x3a\x15\x6f\x75\x75\x6f\x70\xa2\x74\xa6\xa6\xa2\xa1" +"\xa6\xa8\x75\xa1\x6f\x1f\x0e\xfb\x80\xbd\x16\xf7\xd9\xf8\xd5\xfb\xd9\x37\xf7\x85\xfb\x36\xfb\x85\x37\xf7\x85\xfb\x37\xfb\x85\x06" +"\x0e\xc9\xf8\x19\xf7\xa7\x15\xb3\x93\x9c\x90\xa4\x9a\x08\xd0\xb3\xb4\xd2\xda\x1a\xf7\x0d\x29\xed\xfb\x0e\xfb\x0d\x29\x29\xfb\x0d" +"\x3c\xb4\x45\xd0\x62\x1e\xa3\x7c\x9c\x85\xb3\x84\x08\x3e\xfb\x29\x57\xf7\x29\xfb\x2c\xc3\xf7\x2c\xf7\x28\xbf\xfb\x28\x07\x6c\xf8" +"\x5d\x15\xe7\xd5\x43\x32\x30\x42\x42\x31\x31\x42\xd4\xe5\xe3\xd4\xd5\xe2\x1f\x0e\xf7\x80\xa3\x15\x4e\x96\x6a\xc0\xe4\x1a\xed\xc2" +"\xf7\x44\xc5\xe7\x1e\xcd\xb5\xc5\xb4\xbe\x1b\xc6\xb6\x53\x3d\x77\x8a\x79\x87\x73\x1f\xa4\x06\xb6\xf7\x73\x05\x76\x06\x6c\x7e\x81" +"\x7e\x80\x1b\x88\x85\x8e\x90\x85\x1f\xa2\x6c\x66\x97\x69\x1b\x34\x31\x50\x23\x44\x1f\x4d\x32\x66\xfb\x06\x27\x1a\xfb\x1e\xce\x37" +"\xf7\x01\xd4\xd3\xaa\xc4\xc7\x1e\x7a\x9d\x63\x69\x6f\x7a\x65\x7f\x19\xbb\xf7\x48\xaa\xb7\x9d\x9c\xa3\x91\x19\x78\x95\x93\x85\x9b" +"\x1b\xa3\x9c\x9c\xa1\x9e\x7f\x96\x76\x6b\x71\x7a\x57\x5d\x1f\x9e\xce\x81\x8e\xfb\x05\x64\x86\x79\x05\x8e\x9a\x8f\x8c\x90\x1b\x94" +"\x8f\x87\x82\x86\x89\x82\x87\x7c\x1f\x0e\xfb\x9e\xf7\x52\xcb\x15\x9c\xda\x92\xc5\xc7\x1a\xf7\x04\x69\xd2\x57\x62\x5a\x57\x37\x64" +"\x1e\x98\x80\x05\xc5\xab\xaa\xaf\x9c\x1b\x96\x9b\x78\x73\x92\x1f\x96\x6a\x90\x5b\x45\x1a\x4e\x87\x51\x84\x5f\x1e\x64\x55\x84\x81" +"\x7f\x72\x08\x7c\x6c\x80\x68\x78\x1a\x74\x9a\x7b\x9f\xa0\x9f\x9d\xad\x9c\x1e\x99\xa8\x94\xa8\xa1\xe8\xa7\xab\x9a\x9b\xaa\xaa\xe4" +"\xe2\x95\x97\xa8\xb3\x08\xab\xb9\x9e\xbf\xb3\x1a\xb1\x76\xa5\x6d\x70\x76\x76\x70\x7d\x8d\x85\x98\x6b\x1e\x93\x79\x8e\x7f\x7d\x1a" +"\x79\x87\x7c\x81\x7a\x1e\x79\x69\x84\x84\x52\x51\x08\x0e\x39\x1d\xf7\x45\xf7\x7b\xc5\x1d\xb5\x59\xe3\xc0\xba\xa3\xb7\xac\x1e\x9f" +"\xa6\x94\xa0\x94\xb5\x08\x0e\xfb\x3b\xf8\x69\x6d\x1d\xdb\xf7\x86\x20\x0a\x39\x1d\xf2\xf7\xb3\xcf\x0a\xac\xa8\xa1\x9f\xa5\x9d\x85" +"\x96\x78\x9c\x1e\x7c\x99\x86\x93\x96\x1a\xa6\xa2\xa5\xbf\xae\x1e\x0e\x39\x1d\x93\xf7\x4f\x24\x1d\x0e\xf7\xe8\xf7\x90\x16\xf8\x30" +"\x06\x9d\xcd\x05\xfc\x30\x06\x92\xa5\x15\xf8\x72\xf7\x81\x8d\x91\xfb\xeb\xf7\x8c\x71\x2e\xf7\x93\xfb\x4c\xfb\xf6\xfb\x42\x05\x0e" +"\xf7\x2f\xf8\x97\x15\x8a\x88\xfb\x1b\xfc\x94\x05\x79\x0a\x7e\x97\x05\x84\x0a\xd7\xf7\xb1\x05\xf7\x25\x06\x92\xac\x05\xfb\x23\x06" +"\xae\xf7\x16\xb4\x0a\xa1\x8c\x9e\x7f\x7d\x1a\x7e\x86\x74\x83\x6f\x1e\x89\x87\x05\x57\x06\x84\x6a\x05\x0e\xfb\x3b\xf8\x66\xf7\x09" +"\x15\x84\x0a\xf7\x0c\xf8\x54\xb4\x0a\xa2\x8c\x9d\x80\x7c\x1a\x7d\x86\x73\x82\x6e\x1e\x8a\x89\x87\x7d\x86\x76\xfb\x1b\xfc\x94\x18" +"\x79\x0a\x3d\xf9\x9b\x20\x0a\xf7\xe8\xf8\x87\x6f\x15\x9c\xde\xc7\xf3\xf7\x0b\xf7\x2b\xb4\xc0\x9b\xa0\x9a\xa3\x08\xb1\xca\x9d\xc2" +"\xc1\x1a\xdc\x44\xcf\x37\x5b\x5f\x76\x65\x6a\x1e\x76\x72\x81\x75\x7e\x5d\x08\xf2\x67\x56\xbb\x3a\x1b\x36\x48\x46\x34\x4a\xa3\x56" +"\xdc\xfb\x01\x1f\xf7\x2c\xfb\x5f\xb2\x48\xa5\x24\x08\x0e\xf7\xe8\xf7\x2d\x16\xf9\x50\xf8\x25\x06\xfb\xf3\xf7\xdc\xfb\xf1\xfb\xdc" +"\x05\xc8\xfb\xf2\x15\xf7\xdc\x07\xf7\xb4\xf7\xa2\xf7\xb6\xfb\xa2\x05\xfb\xdc\x07\x0e\xfc\x12\x8f\x0a\x92\x9d\x1f\x8c\x90\x8d\x91" +"\x8d\x92\x08\x8d\x07\x8c\x8d\xe3\xf7\xd6\x88\x8d\x25\x78\x78\x88\x64\xa3\x0a\x83\x88\x7a\x85\x78\x1e\x5b\xfb\x45\x05\x7b\x4f\x85" +"\x6e\x77\x1a\x66\x9b\x77\xa9\xba\xaf\xa9\xdf\xc4\x1e\xdb\xf8\xb7\x3e\x1d\xf7\x66\xf2\x15\x66\x72\x6d\x6f\x7c\x1b\x84\x84\x91\x93" +"\x8f\x8c\x8f\x8c\x90\x1f\xf7\x01\xf8\x10\x57\x7e\x5d\x83\x5b\x87\x20\x1d\x8d\x9a\xd0\x0a\x7e\x85\x78\x1f\x3a\xfb\xae\x05\x87\x7d" +"\x89\x7f\x83\x1a\x77\x9f\x79\xa1\xa9\xb6\xac\xca\xc0\x1e\x92\xf8\xa7\xbf\x1d\xf3\xfb\x6a\x15\x8d\x9a\x90\x8b\x93\x1b\x9d\x96\x81" +"\x7c\x85\x8a\x84\x86\x7d\x1f\x24\xfb\xfc\x77\x43\x85\x7d\x78\x72\x19\x78\x7c\x75\x7e\x76\x1b\x7f\x84\x8f\x94\x85\x1f\x9b\x94\x94" +"\x9b\x9d\x7e\x96\x77\x75\x7a\x7b\x75\x70\xa9\x78\xb3\xde\xd0\xd7\xf7\x18\xb1\x1f\xf7\x07\xf8\x24\x54\x80\x65\x85\x58\x87\x19\xf7" +"\x17\xf7\x59\xbf\x1d\x0e\xfc\x12\x2f\x1d\xf7\x29\xf8\x74\x29\x1d\xf7\xe8\xf8\x88\xf7\xa4\x15\x60\xb2\x87\x8e\x78\x99\x08\xa5\x6a" +"\x60\x9b\x6a\x1b\x45\x51\x51\x45\x45\xc5\x51\xd1\xad\xb4\x9b\xa5\xad\x1f\x9e\x99\x8f\x8e\xb6\xb2\xb8\x64\x8f\x87\x9c\x7e\x08\x71" +"\xae\xb4\x7b\xad\x1b\xd1\xc5\xc5\xd1\xd1\x51\xc5\x45\x6a\x60\x7b\x71\x69\x1f\x7a\x7e\x86\x87\x5f\x64\x08\xac\x6d\x15\xbe\xbe\xbf" +"\xa9\xb3\x1b\xb7\xb0\x66\x5f\x5e\x66\x66\x5f\x64\x58\xa8\xc0\x56\x1f\x4a\x16\x57\x57\x57\x6e\x64\x1b\x5f\x66\xb0\xb7\xb7\xb0\xb0" +"\xb8\xb2\xbe\x6e\x57\xbf\x1f\x0e\xf7\xe8\xf8\xb3\xf8\xd4\x15\xd5\x8a\xb1\x88\xc5\x1e\x89\xa7\x8a\xaa\x98\x1a\xb0\x96\xa2\x9d\x90" +"\x91\x88\x88\x8d\x1e\x6f\x9c\x92\x86\x9d\x1b\x9e\x9a\x99\x9d\xa6\x73\x9d\x68\x68\x6e\x7a\x6d\x7a\x1f\x73\x5f\x7d\x20\xfb\x21\x1a" +"\xfb\xed\x07\x43\x8c\x65\x8e\x50\x1e\x8d\x6d\x8c\x6f\x79\x1a\x69\x7f\x74\x78\x83\x85\x90\x98\x84\x1e\x9c\x81\x84\x90\x7d\x1b\x77" +"\x7c\x7c\x79\x71\xa3\x79\xae\xae\xa8\x9c\xa9\x9c\x1f\xa3\xb7\x99\xf6\xf7\x21\x1a\x0e\xc9\xf7\xe7\xf9\xb4\x15\xfc\xfb\x07\x60\x8f" +"\x4e\x95\x23\x1e\x8f\x61\x8d\x75\x7f\x1a\x79\x85\x81\x7f\x85\x89\x8c\x96\x80\x1e\x94\x81\x80\x90\x7d\x1b\x71\x75\x75\x70\x6c\xa7" +"\x73\xae\xb7\xaa\xaa\xc5\x99\x1f\x9b\xcb\x90\xd4\xf7\x41\x1a\xf8\xf2\x07\x0e\xc9\xf8\x30\xfb\x61\x15\xf8\xfa\x07\xb7\x87\xc8\x81" +"\xf3\x1e\x87\xb5\x89\xa1\x97\x1a\x9d\x91\x95\x97\x91\x8d\x8a\x80\x96\x1e\x82\x95\x96\x86\x99\x1b\xa5\xa1\xa1\xa6\xaa\x6f\xa3\x68" +"\x5f\x6c\x6c\x51\x7d\x1f\x7b\x4b\x86\x42\xfb\x41\x1a\xfc\xf2\x07\x0e\xf7\xe8\xf9\x64\x16\xf7\x8a\x07\xf7\x1d\x86\xad\x73\xb4\x1e" +"\xca\x65\x44\xb1\x39\x1b\x3f\x4b\x6c\x53\x62\x1f\x6a\x5e\x85\x6b\xfb\x29\x1a\xfb\x8a\xc7\xf7\x8d\x07\xf0\x91\xb6\x9c\xaa\x1e\xb9" +"\xa4\xc2\xa9\xc4\x1b\xc0\xbf\x71\x61\xa7\x1f\xa0\x6b\x91\x66\xfb\x06\x1a\xfb\x8d\x07\x0e\xf7\xe8\xf8\x89\xf9\x6e\x95\x1d\xfb\x01" +"\xfb\x63\xa2\x0a\xfb\x14\xfb\x05\x15\x97\x59\x95\x75\xa5\x6d\x08\x54\xbb\xc7\x71\xdc\x1b\xdc\xc7\xa5\xc2\xbb\x1f\xa5\xa9\x95\xa1" +"\x97\xbd\x84\x36\x80\x62\x6d\x5e\x08\x4c\x61\x4b\x6b\x38\x1b\x3e\x4f\xa6\xc1\x61\x1f\x67\xba\x7c\xb8\x84\xe8\x08\xf7\xee\xf7\x05" +"\xa2\x0a\x0e\xfc\x12\xbc\x0a\x79\x7d\x6a\x1d\x92\x9d\x1f\x90\x9d\x8c\x8d\x05\x8d\x07\x9e\x1d\x50\x85\x6d\x77\x1a\x6c\x94\x7b\xa1" +"\x83\x1e\x7a\x74\x86\x7b\x73\x1a\x55\xa9\x0a\x6c\x1b\x65\x75\xa0\xae\xa6\x90\x92\xae\xa8\x1f\xa7\xa2\x9b\x9e\xab\xbb\x08\x76\xf8" +"\xbb\x45\x0a\xfc\x12\x43\x0a\x0e\xfc\x12\x43\x0a\x45\xf8\x9d\x15\x42\x1d\xf7\x21\x16\x42\x1d\x0e\xfc\x12\xf7\x66\x72\x0a\x76\xf8" +"\x6b\x15\xad\x06\x9b\xac\x05\x9b\xac\x95\xa8\x9a\x1a\x9a\x82\x93\x7c\x6b\x80\x76\x42\x85\x1e\x41\x70\x15\x86\x0a\xf7\x43\x59\x1d" +"\xfc\x12\x43\x0a\x68\xf8\x20\x15\xb5\x06\xa1\xba\x05\xa0\xba\x9a\xb8\x9e\x1a\xa0\x81\x96\x78\x62\x7e\x6f\x21\x80\x1e\x0e\xfc\x12" +"\x8f\x0a\x91\x9d\x1f\x8c\x8d\x8d\x93\x8e\x93\x08\x8d\x07\x8c\x8d\xe3\xf7\xd6\x88\x8d\x25\x78\x77\x88\x65\xa3\x0a\x84\x88\x7a\x85" +"\x77\x1e\x5b\xfb\x45\x05\x7c\x53\x84\x6a\x77\x1a\x66\x9b\x77\xa9\xb9\xb0\xa9\xdf\xc4\x1e\xe7\xf8\x9d\x15\x6a\x7f\x7f\x80\x70\x1b" +"\x7c\x7a\x3f\x0a\x71\x92\x75\x1b\x57\x70\x6e\x3e\x76\xa3\x1d\xfc\x16\xf7\x88\xf8\x4b\x15\x88\x8d\x36\x7c\x56\x83\x6b\x89\x19\x7b" +"\x07\xa6\x8c\x05\x92\x06\xa7\x97\x81\x75\x81\x86\x71\x80\x5f\x1f\x43\xfb\xb8\x05\xfb\x1e\x69\x74\x60\x63\x54\x1d\xe2\xc7\xd6\xf7" +"\x34\xb3\x1e\xf7\x02\xf9\x0d\x15\x5a\x06\xfb\x31\xb1\x0a\xfb\x48\xf7\x78\xf7\x98\x15\xa3\x9e\xa3\x9e\xa2\x9f\xaf\xa8\x97\x8f\xba" +"\x8c\x08\xb0\x93\x8c\x91\x9a\x1f\x9d\x93\x96\x9d\x9f\x1a\xa3\x7a\x9a\x71\x62\x74\x7b\xfb\x08\xfb\x14\x1e\x77\x78\x63\x67\x7a\x7c" +"\xc2\xf7\x5f\x18\x50\x7d\x61\x84\x5b\x87\x86\x78\x18\x3d\x0a\x7a\x80\x89\x82\x86\x76\x1f\x30\xfb\xe8\x05\xd4\x06\xca\xf7\x81\xe9" +"\xfb\x5a\x05\x68\x9c\x9e\x7b\xa3\x1b\x9f\xa4\x98\xa0\x9d\x1f\xa0\xa2\x96\x9e\xa4\xbe\x7c\x93\x18\x5a\x74\x6e\x68\x78\x1b\x7b\x7a" +"\x9e\xb4\x78\x1f\x0e\xfb\x6c\x72\x1d\xfb\xfa\xfc\x04\x30\x1d\xfb\x6c\xf7\x0e\xf7\x44\x15\xcb\xc2\xcf\xfb\x53\x05\x68\x97\x9d\x7a" +"\xa2\x1b\x9e\xa4\x98\xa0\x9e\x1f\xa0\xa3\x98\x9d\xa8\xbe\x7d\x93\x18\x59\x72\x6c\x69\x79\x1b\x7c\x7d\x9f\xb3\x7c\x1f\x4c\xf7\x42" +"\xf7\x07\xf1\xcd\xb3\xc3\x8d\x19\x8f\x9a\x05\xfb\x45\x06\x87\x7c\x05\xad\x8a\x92\x88\x80\x1a\x7f\x8b\x8b\x41\x4c\x1e\xfb\x18\xfb" +"\x06\xce\xf7\x7e\x4b\x7e\x82\x89\x4a\x84\x19\x85\x78\x05\x8e\xa1\x8b\x8b\x91\x1b\x97\x96\x82\x80\x86\x89\x80\x87\x7e\x1f\x2a\xfb" +"\xfc\x05\xce\x06\x0e\xfc\x12\xf7\x78\x3d\x1d\x33\xf8\xe4\x15\xae\x06\xf7\x3e\xf5\x05\x98\x93\x90\x93\x97\x1a\xa0\x7b\x9a\x76\x65" +"\x1d\x0e\xfb\x77\xf7\x9a\xf7\xc0\x15\x7b\xfb\x1c\x05\x84\x50\x87\x67\x7f\x1a\x5f\x9a\x74\xa7\xb2\xb7\xb8\xdb\xb1\x1e\x7a\x95\x05" +"\x56\x6d\x7a\x7c\x72\x1b\x74\x7f\x9e\xaf\x9f\x8c\x9c\x8f\xb1\x1f\xaf\xf7\xed\x05\x8e\xa2\x8c\x9f\x94\x1a\xbc\x74\xa6\x62\x6b\x77" +"\x79\x6d\x78\x93\x7d\x9d\x82\x1e\xb7\x73\x91\x82\x5f\x1a\x74\x89\x75\x87\x6f\x1e\xfb\xd3\xfc\x38\x05\xdf\x06\x0e\xfb\xe8\xf7\x7a" +"\x3d\x1d\xbf\xf7\xd6\x15\xe0\xba\xb8\xc2\xc4\x48\x0a\x71\x74\x70\x57\x68\x1e\x0e\xfc\x12\xf7\x78\x84\x1d\xae\xa8\xeb\xcb\x1e\xfb" +"\x91\xfc\x14\x33\x1d\xfc\x17\xf7\x5f\x3d\x1d\xd9\xf7\x9b\x49\x0a\xf7\xe8\xf9\x18\x16\x9d\xcd\x05\xfc\x30\x06\x79\x49\x05\xf8\xd1" +"\xf8\xdb\x15\xfc\x71\xfb\x81\x89\x85\xf7\xeb\xfb\x8c\xa5\xe8\xfb\x93\xf7\x4c\xf7\xf6\xf7\x42\x05\x0e\x92\x33\x0a\xf8\xa9\xec\x15" +"\xd1\xf7\xa0\xe1\x1d\x9e\x84\x7a\x82\x79\x43\x5c\xfb\x43\x1f\x43\x67\x7f\x5d\xd3\xaf\x82\x69\x84\x71\x86\x7b\x19\x76\x41\x05\x78" +"\x45\x84\x6c\x79\x1a\x66\x9b\x78\xac\xbf\xad\xa7\xec\xcc\x1e\x7e\x94\x05\x37\x49\x84\x84\x75\x1b\x81\x86\x91\x97\x93\x8e\x98\x8f" +"\x9b\x0a\xfc\x12\xc0\xf8\x26\x15\xe6\x06\x2f\xfc\x3e\x05\xfb\x02\x73\x6a\x54\x60\x1b\x7f\x83\x92\x95\x8e\x2d\x1d\x92\x8c\x8f\x91" +"\x1a\xa1\x79\x9c\x75\x76\x7b\x78\x73\x69\xae\x70\xb7\xe5\xd4\xf1\xf7\x4d\xb5\x1e\xed\xf8\x41\x8b\x8b\x94\xa6\x9a\xbc\x98\xa7\x9b" +"\xa1\x08\xa1\x9c\x9e\x96\xa1\x1b\x98\x94\x36\x0a\x86\x1f\x86\x83\x8a\x86\x83\x1a\x73\x9a\x7b\xa1\xa2\x9f\x9e\xa1\xb1\x66\xa6\x59" +"\x5a\x63\x75\x5c\x66\x1e\x6d\x63\x76\x5d\x6c\x29\x08\x2d\x06\x0e\xc9\xf8\xc1\xf8\xe5\x15\x44\xbc\x9c\x78\x9c\x1b\x95\x93\x92\x95" +"\x91\x8a\x8f\x84\x99\x1f\x74\xb6\x7a\xcb\xb7\x1a\xa9\x89\x91\x7e\x86\x84\x88\x83\x7e\x1e\x77\x70\x3d\x76\x60\x1b\x71\x8a\x83\x86" +"\x7e\x1a\x75\xad\x81\xe2\x85\x1e\x25\xfb\x4d\x05\x97\x6c\x6e\x91\x6b\x1b\xfb\x1a\xfb\x00\xfb\x00\xfb\x1a\xfb\x19\xf7\x00\xfb\x00" +"\xf7\x1a\xf7\x19\xf7\x00\xf7\x00\xf7\x1a\xd8\x66\xd3\x4c\xb9\x1f\xfb\x22\x7b\x15\xee\xdc\x3b\x28\x28\x3b\x3a\x28\x27\x3b\xdb\xee" +"\xee\xdb\xdc\xee\x1f\x0e\xfc\x4d\xf7\x17\xf8\x17\x15\xa0\x06\xce\xf7\x22\x05\xad\xd5\x91\x9a\x9b\x1a\x9f\x7c\x99\x74\x77\x79\x81" +"\x7a\x80\x1e\x7d\x77\x86\x75\x84\x45\x08\x0e\xf7\x81\xf7\x43\x15\x92\x7c\x76\x8f\x7b\x1b\x4d\x54\x56\x50\x68\xa5\x75\xb4\xba\xb7" +"\xa2\xb1\xa6\x1f\x9f\xa6\x91\xa1\x8d\xbb\x08\xf7\xb9\x07\xc3\x83\xb9\x40\x37\x1a\x59\x83\x65\x73\x54\x1e\xa6\x06\xaf\xb6\x9e\xc2" +"\xc5\x1a\xd7\x6e\xd1\x51\xd2\x1e\x58\xc7\x8a\x8d\x86\x91\x83\x95\x19\xc5\x5f\x07\x0e\xc9\xf8\x13\xf8\x57\x15\x9e\x72\xa1\x78\xa0" +"\x7f\xc3\x6b\x94\x85\x90\x82\x08\x91\x80\x8f\x78\x76\x1a\xfb\x7c\x07\x92\x7a\x74\x8f\x78\x1b\x46\x4d\x56\x4f\x68\xa8\x75\xb8\xbe" +"\xbb\xa2\xb1\xaa\x1f\xa0\xa6\x92\xa1\x8d\xbc\x08\xf8\x00\x07\x8c\xd3\x6a\xd5\x5d\xa7\x54\xaf\x6d\x9f\x87\x8f\x08\x7e\x99\x85\x9d" +"\xa2\x1a\x98\x5f\xfc\x80\x07\x92\x7b\x74\x8f\x79\x1b\x46\x4f\x56\x4f\x68\xa7\x75\xb7\xbe\xbb\xa2\xb1\xa8\x1f\xa0\xa6\x92\xa1\x8d" +"\xbc\x08\x8e\xf8\x0a\x15\xf7\x03\x4f\xa3\x67\x8f\xfb\x08\xfb\x06\xc8\x74\xae\x87\xf7\x09\x08\x0e\x32\x1d\xfb\x66\xf8\x1a\xbb\x1d" +"\x87\x85\x85\x1e\x0e\x38\xca\xf8\x7d\x15\xd0\xab\xb6\xbe\xbe\x1a\xa7\x76\xa3\x72\x74\x77\x76\x73\x81\x8f\x82\x93\x84\x1e\x99\x7e" +"\x8e\x86\x81\x1a\x73\x74\x75\x5c\x77\x1e\xf7\x8c\x49\x15\x4d\x83\x81\x8a\x4b\x86\x85\x78\x18\x8e\xa0\x8b\x8b\x92\x1b\x97\x96\x82" +"\x80\x84\x88\x7d\x85\x77\x1f\x21\xfb\xf5\x05\xd3\x06\xac\xf7\x06\x9b\xc3\xa5\xb8\xbe\xcb\x19\xd6\xc6\xaf\xa9\xa8\x1b\x99\x96\x7e" +"\x7a\x80\x88\x7e\x85\x76\x1f\x3e\xfb\x8e\x05\x87\x80\x89\x7f\x84\x1a\x73\x9c\x7b\xa4\xb1\xb6\xab\xca\xba\x1e\x82\x94\x05\x67\x6e" +"\x72\x76\x7d\x1b\x84\x85\x91\x93\x8f\x8d\x93\x8d\x95\x1f\xd3\xf7\x8d\x05\x90\x9d\x8e\x9f\x9d\x1a\xb2\x77\xa2\x6a\x4f\x4b\x51\xfb" +"\x26\x25\x1e\x0e\x32\x1d\xaf\xf8\xc1\xbe\x1d\x32\x1d\xfc\x0b\xfc\x0a\x30\x1d\xf7\xe8\xf8\xa4\xf7\x6c\x15\xf7\x83\xc8\xfb\x60\x06" +"\xe3\xf7\x2f\x05\xf7\x08\xc9\x3a\x06\xac\xc6\x61\xa3\x5c\x38\x05\xfb\x23\xa7\x0a\x37\xdc\x69\x1e\x6a\x52\xb6\x74\xb1\xce\x05\x88" +"\xa4\x99\x8a\xb4\x1b\xf7\xac\xc9\xfb\xb7\x06\x77\x85\x8b\x8c\x81\x1f\xab\xf7\x2d\x15\x3a\xfb\x21\x57\x9d\x6c\xbe\x88\xd3\x19\xf7" +"\xb6\xf7\x6c\x15\x33\xfb\x2f\x05\xfb\x5e\x06\x91\xf6\xc3\xbd\xf7\x01\x89\x08\x0e\xf7\xe8\xf8\xcf\xf7\xd4\x15\xf7\x49\xcd\xfb\x28" +"\x06\xba\xe8\x50\xa9\x4d\xfb\x0f\x05\xfb\xae\x49\xf7\x8d\x06\x47\xfb\x1a\x05\xfb\x49\x49\xf7\x28\x06\x5c\x2e\xc6\x6d\xc9\xf7\x0f" +"\x05\xf7\xae\xcd\xfb\x8d\x06\x0e\xfb\x6c\xf7\x8f\xf7\x51\x15\x8a\xc6\x87\xbd\x84\xb2\x08\xd2\x7d\x72\xaf\x65\x1b\x5b\x61\x54\x38" +"\x7e\x1f\x9b\x85\x05\xbe\x96\xa4\xb3\xa0\x1b\x9b\x93\x7d\x68\x92\x1f\x96\x52\x96\xfb\x0e\x4d\x1a\x51\x8a\x72\x88\x69\x1e\xa0\x06" +"\x98\x9c\x8b\x8b\xa7\xae\xcd\xde\x93\x97\xaf\xc8\x08\xb8\xdb\xa4\xcb\xb5\x1a\xb0\x73\xa8\x6d\x74\x78\x79\x73\x7c\x93\x7c\x9a\x83" +"\x1e\x9e\x7f\x8f\x86\x7c\x1a\x54\x5c\x2c\x40\x2a\x1e\x0e\x2b\x1d\xf7\x36\xf7\x7a\x3e\x1d\x2b\x1d\xfb\x1c\xd5\xaf\x1d\x93\xfb\x34" +"\xac\x1d\x2b\x1d\xf7\x4a\xf7\x37\x29\x1d\xb9\xf7\x7c\xf8\x4c\x15\xfb\x0c\x32\x58\x35\xfb\x02\x1a\x2b\xc0\x46\xd3\xbf\xbc\xac\xcd" +"\xbc\x1e\x4b\x9a\xad\x68\xbc\x1b\xf7\x02\xf4\xf7\x36\xf7\x40\xcf\x6a\xbf\x61\x74\x77\x78\x74\x7b\x93\x7c\x9c\x7b\x1f\xb6\x63\x92" +"\x7e\x61\x1a\xfb\x09\x33\xfb\x14\x3c\x63\x6f\xad\xd0\x7d\x1e\xc1\xe6\x9d\xb8\xb9\x1a\xa6\x80\x9a\x77\x5e\x6e\x4b\x28\x78\x8c\x7d" +"\x8e\x6e\x1e\x4c\x5f\x58\x64\x65\x1b\x65\x74\xae\xc4\xee\xc0\xf7\x2a\xc7\xd2\x1f\x0e\xb1\xf8\x22\xf8\x76\x15\xb5\x06\xa0\xba\x05" +"\xa3\xbe\x98\xb3\xa0\x1a\x9f\x81\x96\x78\x62\x7d\x6e\x22\x80\x1e\xfb\x43\x29\x15\xfb\x0c\x32\x58\x36\xfb\x03\x1a\x2b\xc0\x46\xd3" +"\xbf\xbd\xac\xcd\xbb\x1e\x4b\x9a\xad\x68\xbc\x1b\xf7\x02\xf4\xf7\x36\xf7\x40\xcf\x6a\xbf\x61\x74\x77\x78\x74\x7c\x94\x7b\x9b\x7b" +"\x1f\xb7\x63\x92\x7d\x61\x1a\xfb\x08\x33\xfb\x14\x3b\x63\x70\xad\xd0\x7c\x1e\xc1\xe6\x9d\xb8\xb9\x1a\xa6\x80\x9a\x76\x5f\x6e\x4a" +"\x29\x77\x8c\x7d\x8e\x6f\x1e\x4c\x5f\x59\x64\x64\x1b\x65\x74\xae\xc4\xee\xc0\xf7\x29\xc7\xd3\x1f\x0e\x83\x1d\x0e\x83\x1d\x8a\xca" +"\x15\xb5\x06\xa1\xba\x05\xa1\xbc\x99\xb5\x9f\x1a\xa0\x81\x96\x78\x62\x7d\x6f\x21\x81\x1e\x0e\xf7\xd3\x93\x16\xfa\x56\xd3\xfe\x0e" +"\xfa\x03\x43\x06\x0e\x70\x1d\xc9\xf8\x74\x3b\x0a\xf7\x03\xf9\x36\x15\xa2\xb9\xaa\x94\xb1\x1b\xed\xc6\x2a\xfb\x35\x6d\x89\x73\x86" +"\x5b\x1f\xbe\x4b\x67\x9a\x58\x1b\x5b\x65\x7a\x68\x68\x1f\x5c\x5c\x70\x4a\x4a\x1a\x20\xde\x35\xf3\xc8\xc1\xa5\xbb\xb3\x1e\xc3\xd0" +"\xb1\xf7\x1d\xf7\x1e\x1a\xf7\x57\xfb\x08\xf7\x2a\xfb\x2b\x64\x68\x83\x77\x54\x1e\xf7\xc0\xfc\x31\x15\x7a\xfb\x0a\x7d\x55\x6f\x5d" +"\x08\x5c\x6f\x65\x71\x64\x1b\x54\x69\xbe\xe0\xf7\x08\xcd\xe9\xdd\xb0\xa5\x7e\x61\xb5\x1f\x0e\xf7\x82\xf7\x79\x62\x0a\xf8\x51\x67" +"\x15\x53\x06\x9d\xcf\x05\x8c\x8d\x8b\x8d\x8c\x1a\x92\x8c\x87\x8f\x85\x1b\x83\x8b\x8b\x83\x85\x1f\x6c\x64\x68\x6f\x70\x82\x08\x77" +"\x83\x86\x86\x82\x1a\x88\x8b\x89\x8c\x87\x1e\xbe\x06\x59\xfb\x51\x89\x82\x05\x8a\x8a\x89\x8a\x88\x1e\x84\x72\x86\x76\x83\x1a\x7a" +"\x9c\x7e\xa0\xae\xa1\x9e\xd3\xbc\x1e\x7b\x94\x05\x5c\x67\x80\x81\x82\x1b\x87\x88\x8f\x8f\x8c\x8b\x8d\x8c\x8d\x1f\xc8\xf7\x7c\x05" +"\xc7\x06\x0e\x20\xf7\xad\xf8\x52\x15\x4f\x86\x61\x79\x5e\x63\x08\x4e\x54\x65\x35\x35\x1a\x2b\xbf\x52\xed\x7f\x1e\x5b\xfb\x54\x05" +"\xc7\x06\xbc\xf7\x54\xda\x94\xbd\xa2\xbf\xbc\x19\xc9\xc7\xb3\xe3\xd9\x1a\xdf\x54\xcb\x43\x68\x68\x7b\x6e\x72\x1e\x78\x76\x7e\x6e" +"\x7c\x4e\x47\xfb\xa4\x18\x54\x9e\x75\xac\xcb\x1a\xe2\xb0\xf7\x02\xb8\xbc\x1e\xa3\xa5\x9f\x97\xaf\x96\x08\xb8\xfb\x1a\x15\x97\xbb" +"\x90\x9a\x93\x96\x08\x9a\x96\x99\x93\x9a\x1b\xb0\xa7\x5f\x4f\x3e\x6a\x31\x5d\x5e\x1f\x6a\x6a\x6c\x7c\x52\x81\x08\x0e\xfb\x33\xf8" +"\xd1\xf8\x46\x15\xfc\x18\x06\x5d\x81\x88\x75\x6b\x1f\x27\x45\x96\x77\xd0\xb0\xab\x94\xcf\x8a\x19\x40\xfb\x61\x86\x80\x5d\x63\x69" +"\x72\x8b\x8b\x82\x81\x08\x7d\x7c\x83\x79\x7b\x1a\x77\x97\x80\xa2\xae\xa5\x9f\xb9\xa3\x1e\x9c\xad\xa3\xcd\x9f\xd0\x93\xa7\x91\x9e" +"\x8d\x91\xa6\xde\x18\xf7\x5d\x06\x56\x63\x74\x6b\x7b\x51\x69\xfb\x1c\x18\x82\x69\x8a\x85\x7e\x1a\x71\x97\x71\x97\x8d\x8d\x8c\x8f" +"\x97\x1e\xf7\x09\xb9\x8c\x9f\x05\x7d\x62\x8b\x8b\x83\x1b\x7c\x7d\x99\x99\x90\x8b\x8b\x95\xb3\x1f\xa8\xf7\x04\xa0\xe3\x8f\x96\x9e" +"\xa9\x19\xf7\x09\x06\x0e\xf7\xe8\xf9\x45\xf9\x55\x15\xfd\x72\x07\x54\x8a\x78\x77\x54\xbb\x0a\xf9\x3b\x07\xc4\xa0\xa2\xc0\x1e\x9c" +"\x9d\xfd\x9f\x79\x9b\x06\xc1\x9f\x75\x51\x8c\x1f\xfd\x3b\x07\x54\x8a\x77\x77\x55\xbb\x0a\xf9\x72\x07\x0e\xf7\xe8\xf9\x93\xc9\x15" +"\xfb\xb7\x06\xfb\x0d\x57\xc2\xf7\x16\xf7\x15\xbf\xc3\xf7\x0d\x1f\xf7\xb7\xc9\xfb\xac\xcd\x0a\x43\x2b\x1a\xfb\x07\xb8\x37\xca\x0a" +"\x06\x0e\xf7\xe8\xf7\x7d\xc9\x15\x4d\xf7\xac\x07\xde\xae\x92\xa4\xb1\x1f\xcc\xb7\xac\xd3\xf2\x1a\xf6\x5c\xe0\x3e\xac\x1e\x99\x69" +"\x70\x8f\x46\x1b\xfb\xac\x4d\xf7\xb7\x06\xf7\x0d\xbf\x54\xfb\x16\xfb\x16\x57\x54\xfb\x0d\x1f\x0e\x64\xf8\x47\xf8\x46\x15\x43\x06" +"\xfb\x03\xfc\x33\x05\x55\x92\x6e\xa8\xbb\x1a\xa2\x91\xb1\x93\xa8\x1e\xb1\xf7\x23\x05\x90\x9e\x8e\x9e\x99\x1a\xaa\x78\xa4\x72\x6d" +"\x67\x77\x6b\x6e\x1e\x78\x76\x7f\x78\x74\x5f\x9a\x84\x18\xc5\xaa\xac\xaf\xa3\x1b\x94\x90\x85\x80\x84\x8a\x86\x85\x75\x1f\x6a\xfb" +"\x0f\x05\x81\x66\x86\x6d\x77\x1a\x62\x9b\x6a\xab\x70\x1e\xa8\x73\xa2\x83\xbb\x86\x5e\xfb\x3c\x18\xd3\x06\xb7\xf7\x39\xe6\x93\xc7" +"\xad\xbe\xd2\x19\xb6\xc7\xad\xf4\xd5\x1a\xc7\x75\xb2\x68\x72\x75\x74\x72\x7d\x91\x7b\x97\x7c\x1e\xae\x5c\x8f\x83\x69\x1a\x58\x6f" +"\x46\x64\x5e\x1e\x62\x5b\x5e\x75\x43\x81\x08\x0e\xfb\xdb\xf7\xe0\xf8\x58\x15\x61\xad\x79\xa8\xad\x1a\x99\x92\x94\x96\x8c\x8c\x8b" +"\x8a\x8d\x1e\x89\x94\x8f\x8a\x94\x1b\xb5\xa8\xa6\xb1\xa5\x79\x9c\x6e\x53\x5c\x56\x4b\x5a\xab\x59\xbd\x70\x1f\x0e\xfb\xa3\x41\x0a" +"\xf7\x37\xa7\x1d\xc9\xf8\x5b\x4a\x15\xf7\x32\xfa\x68\x53\x94\xfb\x0f\xfd\x95\xfb\x4e\xf8\x0d\xfb\x37\x3c\xa3\x58\xea\xba\x05\x0e" +"\xfb\xa3\x41\x0a\xf8\x2d\xf9\x29\x21\x0a\xfb\xa3\xf7\x0d\x16\xbf\xf7\x3e\x9c\xb6\xb9\xd7\x08\xc4\xad\xa6\xa9\x9c\x1b\x92\x8f\x87" +"\x81\x90\x1f\x7a\x93\x93\x86\x9f\x1b\xa9\x9b\x9c\xac\xef\x1d\x61\x62\x4f\x7c\x64\x7c\x67\x18\xc1\xf7\x6d\x88\x8d\x42\x7e\x80\x89" +"\x44\x7f\x19\x7a\x07\x8f\xa0\x90\xc3\x1d\x60\xfb\xa2\x33\x1d\xf7\x79\xf7\x97\xf7\x00\x15\xf7\x68\xf8\x4a\xcd\xfc\x8c\xfb\xaa\x07" +"\x0e\xfb\x48\x75\xfb\x40\x15\xda\x06\xc3\xf7\x65\x05\x67\xab\xa0\x80\xb0\x1b\xf7\x0e\xf7\x0b\xf7\x22\xf7\x26\xee\x53\xce\x38\x59" +"\x57\x76\x66\x63\x1f\x67\x6a\x78\x64\x74\x34\x08\xe8\xbe\x15\xe3\xa2\xb8\xc0\xbe\x1b\xb4\xa4\x6a\x52\x4a\x75\x2d\x6e\x4f\x1f\x4d" +"\x6d\x61\x6a\x5b\x1b\x6e\x77\x99\xaf\x75\x1f\x0e\xfb\xa3\x31\x0a\xf7\x30\xf7\xf0\x2b\x0a\xfb\xa3\xf7\x21\x81\x15\x8a\x93\x8e\x8b" +"\x92\x1b\xe0\x6f\x0a\x7b\x06\x77\xfb\x33\x05\x9b\x06\x9c\x94\x8f\x8f\x96\x1b\x98\x94\x89\x83\xa9\x1f\x50\x2d\x7c\x0a\x82\x85\x2c" +"\x0a\xfb\xa3\x31\x0a\xf7\xa5\xf8\x97\x20\x0a\xfb\xa3\x31\x0a\x83\xfc\x34\x40\x1d\xfb\x87\xf7\xd6\xf8\x17\x15\xa1\x06\xcf\xf7\x21" +"\x05\x9f\xb5\x9c\xbb\x9c\x1a\x9f\x7d\x98\x75\x76\x75\x7f\x7a\x81\x1e\x7e\x76\x87\x77\x84\x44\x08\xfb\x53\xfb\x20\x15\xa0\x06\xce" +"\xf7\x22\x05\xae\xd6\x90\x98\x9c\x1a\x9f\x7c\x99\x75\x78\x78\x81\x7a\x7f\x1e\x7d\x77\x86\x76\x84\x44\x08\x0e\xfb\x3b\xf8\xd0\xf8" +"\x46\x15\xfb\x85\x06\x22\x55\x76\x48\x4d\x1f\x55\x52\x6a\x3b\x44\x1a\x33\xca\x52\xed\xd1\xce\xa7\xbd\xbc\x1e\xbf\xc0\xa8\xcc\xca" +"\x1a\xc7\x73\xb0\x59\x9e\x1e\xaa\x89\xc4\x88\xcb\x88\xa3\x8a\x05\xfb\x64\x90\x15\x9e\x69\x90\x78\x64\x1a\xfb\x1d\x3d\xfb\x07\x2e" +"\x51\x68\xb6\xd2\xc0\x9d\xc3\xa9\xb5\x1e\xc2\xb4\xba\xa3\xd5\x1b\x0e\xf7\xe8\xf8\x1b\xf8\x9a\x15\x70\x74\x74\x71\x6f\xa2\x74\xa6" +"\xa6\xa2\xa2\xa6\xa6\x74\xa2\x70\x1f\xfb\x14\xfb\x00\x15\x92\x36\x96\x62\xa9\x5e\x08\x4c\xb5\xcb\x6b\xde\x1b\xd8\xc7\xa6\xc1\xb5" +"\x1f\xaf\xba\x9a\xb8\x92\xe8\x80\x59\x80\x75\x71\x6d\x08\x54\x5b\x4f\x71\x3a\x1b\x3a\x4f\xa5\xc2\x5b\x1f\x71\xa9\x80\xa1\x80\xbd" +"\x08\xf7\xee\xf7\x00\x15\x70\x74\x74\x71\x6f\xa2\x74\xa6\xa6\xa2\xa2\xa6\xa6\x74\xa2\x70\x1f\xfb\x01\xf7\x68\x95\x1d\x89\x5a\x15" +"\xf7\x45\xf7\x21\xfb\x20\xfb\x44\xfb\x43\xfb\x21\xfb\x21\xfb\x43\xfb\x41\xfb\x23\xf7\x21\xf7\x3e\xf7\x47\xf7\x1e\xf7\x22\xf7\x44" +"\x1f\x0e\xf7\xe8\xf8\xab\xf7\x99\x15\x7f\x07\x44\x6b\x45\x5a\x66\x1e\x6c\x62\x56\x7a\x57\x1b\x7e\x74\xf8\x77\xa2\x06\xfb\x32\x91" +"\x3c\xe3\x8e\xf7\x3d\x08\x35\xb9\xb6\x6d\xda\x1b\xcd\xc4\xca\xd4\xd0\x73\xb0\xfb\x01\xef\x1f\xfb\x02\xf1\x7a\xa5\x63\xf7\x09\x7c" +"\x30\x4d\x30\x23\x39\x08\x3c\x49\x67\x51\x4c\x1a\x40\xc8\x4d\xd4\xb4\xb4\x9c\xa9\xac\x1e\x9e\x9d\x96\x9a\x9c\xb0\x08\x0e\xf7\xe8" +"\xf7\xee\xf9\x5b\x15\xf7\x85\x06\xf4\x8a\xa5\x75\x9a\x26\x08\xa2\x06\x82\xf7\x39\x05\xfc\xaf\x06\xf7\x66\xfc\x67\xfb\x6e\xfc\x2c" +"\x05\xf8\xc8\x06\xbc\xf7\x66\x05\x74\x06\x6f\x3b\x6c\x78\x26\x8c\x08\xfb\xbc\x06\xf7\x49\xf7\xf4\x05\x0e\xf7\xe8\xf7\xcd\xf8\x77" +"\x15\x6e\x66\x7c\x67\x85\x5b\x08\xfb\x05\x54\xf7\x05\x06\x8f\x61\x9e\x5b\xa6\x6a\x3b\x3c\x18\xb1\x65\xdb\xdb\xb1\x6e\xb2\x7b\xb8" +"\x86\x19\xfb\x05\xc1\xf7\x05\x07\xb7\x90\xb9\x9e\xab\xa5\xdb\x3b\x18\xb0\xb1\x3b\xdb\xa8\xae\x9c\xb5\x90\xb8\x19\xf7\x05\xc2\xfb" +"\x05\x06\x86\xb6\x79\xb7\x70\xad\xda\xda\x18\x66\xb1\x3b\x3b\x69\xa6\x62\x9c\x5c\x92\x19\xf7\x04\x55\xfb\x04\x07\x60\x86\x5f\x79" +"\x68\x6f\x3b\xdb\x18\x65\x65\x05\xf7\x9c\x55\x15\xec\xd8\x40\x2d\x2b\x3f\x3e\x2c\x2d\x3e\xd8\xea\xe7\xd8\xd9\xe6\x1f\x0e\xfb\xc2" +"\xf8\x50\xf8\x46\x15\xfb\xa7\x06\x60\x7a\x86\x75\x6f\x1f\x27\x3d\x99\x75\xd6\xba\xa7\x94\xdc\x8c\x19\xb4\x06\x4e\x59\x7c\x76\x79" +"\x4d\x64\xfb\x2c\x18\x85\x75\x8a\x84\x83\x1a\x73\x99\x71\x97\x8c\x1e\x8e\x8f\x8c\x8e\x91\x1f\xf7\x0f\xba\x90\xa1\x05\x81\x71\x72" +"\x84\x7d\x1b\x7d\x85\x92\x9a\x94\x8b\x8b\x96\xb7\x1f\xb1\xf7\x27\x98\xbc\x91\x9a\x9d\xa8\x19\xf7\x46\x06\x0e\xfc\x12\xf7\x4a\xf7" +"\xc0\x15\xa4\xeb\x05\xdf\x06\x90\xab\x05\x45\x1d\x8c\x1a\x92\xa0\x1d\x72\x2b\x05\x38\x06\x83\x68\x05\xdd\x06\x65\xfb\x24\x89\x81" +"\x8a\x88\x93\x1d\xc0\xf7\x5e\x05\xf3\x06\x92\xae\x05\x0e\xfb\xe2\xf7\xbd\xf8\x40\x15\x3b\x06\xa7\xf2\x05\x8c\x8d\x8b\x8d\x8d\x1a" +"\x91\x4f\x1d\x85\xb3\x9a\x1d\x0e\xfc\x12\xf0\x81\x15\xb3\x93\xab\xa9\xc1\xdd\x7e\x92\x18\x4b\x59\x7c\x7c\x7b\x1b\x82\x85\x92\x98" +"\x8c\x8b\x8b\x8c\x8f\x1f\xe3\xf7\xe1\x05\xdf\x06\x90\xab\x05\x45\x1d\x8d\x1a\x91\x89\x8e\x85\x85\x88\x8a\x83\x85\x1e\x63\x57\x4f" +"\x5a\x6b\x82\x08\x72\x83\x84\x85\x81\x1a\x84\xd5\x07\x43\xfb\xa7\x89\x82\x05\x8a\x89\x86\x89\x85\x1e\x82\x6c\x83\x6b\x80\x1a\x7c" +"\x95\x7f\x9c\x85\x1e\x54\x32\x7c\x0a\x81\x86\x2c\x0a\xfb\x3d\xf7\xf6\xf9\x27\x15\x33\x39\x3f\xfb\x0f\x5d\x1f\x66\x25\x6e\xfb\x16" +"\x47\x1a\xfb\x01\xb8\x4e\xda\xdc\xd7\xca\xf4\xb8\x1e\xb8\xf2\xae\xf7\x2c\xe4\x1a\xea\x5a\xc9\x40\x1e\xfb\x3b\xfb\xba\x15\xad\xf7" +"\x0f\x9c\xba\xa7\xba\x08\xb0\xa1\xa9\xa0\xa9\x1b\xb3\xa4\x6b\x59\x62\x83\x58\x74\x26\x1f\x86\x71\x15\x6e\xfb\x07\x76\x47\x77\x5e" +"\x08\x47\x6e\x68\x69\x62\x1b\x63\x71\xab\xbd\xbc\x9a\xde\xa9\xf7\x08\x1f\x0e\xfb\xdb\xf7\x6c\xf8\x76\x15\xb5\x06\xa1\xba\x05\xa2" +"\xbe\x98\xb3\x9f\x1a\xa0\x81\x96\x78\x62\x7d\x6e\x22\x81\x1e\x0e\xfb\x3b\x2a\x1d\x6d\xf8\xb2\x15\x4c\x72\x5a\x67\x4e\x1b\x4b\x63" +"\xaf\xca\x87\x75\x0a\x2a\x1d\xfb\xbe\xf8\x16\xaf\x1d\x92\xfb\x34\x15\xaf\x9d\x0a\x85\x1e\x0e\x2a\x1d\x9f\xf8\x6f\x15\xfb\xc1\x46" +"\x1d\xaf\x32\x15\x7e\x60\x05\xf8\x8e\x06\x98\xb6\x05\xfc\xae\xfb\x09\x15\x7e\x60\x05\xf8\x8e\x06\x98\xb6\x05\x0e\xfc\x2e\x0e\xfb" +"\xdb\xab\x0a\x23\x50\x1d\xfc\x76\xfd\x8c\x30\x1d\xfc\x12\xf7\xbc\xf8\x40\x15\x45\x1d\x8c\x1a\x92\x4f\x1d\xfb\xc3\xfd\x2e\x33\x1d" +"\xfb\xdb\xf8\x2f\xf8\xdb\x29\x1d\xfc\x2e\x46\x0a\x42\xf8\x60\x16\x97\xf9\x2a\x05\x78\x06\xfc\x8d\xfd\x2a\x05\xf8\x34\xb4\x15\xfb" +"\x97\x06\x71\x7c\x92\x98\x93\x95\x9e\x97\x9c\x1f\xf7\xb6\xf8\x15\x05\x0e\xca\xf9\x58\xf7\x37\x15\x6d\x06\x65\x4b\x75\x7c\x4c\x88" +"\x08\x57\x06\x78\x83\x8a\x89\x75\x1f\x90\x8e\x91\x8e\x91\x8e\xb8\xa2\x18\xc8\xab\x9b\x97\xb1\xb8\x08\xcc\xd7\xae\xe5\xe4\x1a\xd3" +"\x74\xc5\x62\xae\x1e\xaf\x5f\x48\xa1\x45\x1b\xfb\x0a\xfb\x06\x57\x33\x41\x1f\x4a\x3f\x67\x2c\x2f\x1a\x2e\xb0\x50\xe2\x5f\x1e\x8d" +"\x79\x7e\x8c\x83\x1b\x59\x06\x45\x7b\x9a\xce\x89\x1f\x6d\x06\x82\xfb\x37\x05\xf7\xa2\x06\xa0\xd9\x68\x9b\x7d\x97\x7d\xa0\x19\x76" +"\xaa\x80\xb4\xb6\x1a\xdf\xa5\xe9\xb6\xd3\x1e\xee\xc6\xda\xc0\xe3\x1b\xeb\xc0\x52\x24\x2f\x65\xfb\x05\x52\x38\x1f\x62\x51\x61\x6a" +"\x49\x70\x77\x3d\x18\xf7\xa2\x06\x0e\xfb\x32\xf7\x27\xf8\x46\x15\x46\xfb\x97\x7e\x59\x6e\x32\x78\x5b\x19\x67\x30\x88\x80\x76\x1a" +"\x72\x9d\x79\xa4\xa9\x9a\xa2\xb9\x92\x8b\x95\x8a\x96\x1e\x8a\x9f\x8a\x9a\x92\x1a\x98\x8c\x96\x8d\xa2\x1e\x7c\x97\x96\x85\x9c\x1b" +"\xa8\xad\x9e\xb1\xb3\x1f\xb0\xaf\xa7\xaf\xc0\xde\x68\xfb\x17\x18\x86\x7a\x89\x7c\x80\x1a\x75\x9b\x7b\xa0\xaf\xbd\xae\xbf\xb1\x1e" +"\x81\x95\x05\x6b\x6e\x76\x7b\x7e\x1b\x84\x87\x91\x94\x92\x90\xa4\x91\xa0\x1f\xe2\xf7\xde\x05\x44\x06\x75\x34\x73\x31\x7a\x67\x54" +"\x3f\x19\x49\x5b\x65\x69\x6f\x1b\x76\x80\x95\x9f\x95\x8b\x8c\x92\xa3\x1f\xe1\xf7\xd8\x05\x0e\xfb\x92\xf7\xed\xf8\x50\x15\xfb\x2e" +"\xfb\x27\xfb\x30\xfb\x39\x36\xb4\x62\xe1\x94\x95\x8b\x8c\x92\x1f\x8f\xac\x8b\x8b\x95\x1b\xa9\x99\x81\x77\x6b\x68\x6a\x6b\x81\x81" +"\x8d\x90\x7f\x1f\x92\x75\x89\x8c\x80\x1b\x70\x78\x7b\x74\x73\xa0\x7c\xaa\xd8\xe7\xe1\xd3\xb6\x70\xa7\x61\x83\x82\x8a\x8a\x82\x1f" +"\x87\x6a\x8b\x8b\x7d\x1b\x5a\x78\x9d\xba\xbd\x9d\xcf\xa7\xc6\x1f\xc1\xa5\xb0\xa9\xb2\x1b\x9d\x9f\x83\x7a\xa3\x1f\x79\xa4\x94\x87" +"\x99\x1b\xa5\xa0\xa0\xa4\xab\x6d\x9f\x5e\x1f\x0e\x5a\x5b\x0a\xfb\x13\xf7\x63\x15\xab\x06\xfb\x0b\xf7\x2b\x05\x9b\x7e\x7f\x92\x7c" +"\x1b\x77\x7c\x7c\x78\x7e\x91\x82\x98\x80\x1f\x0e\xc9\x4e\x1d\xf7\xd1\xf8\xfe\x15\xaa\x06\xfb\x0b\xf7\x2b\x05\x9b\x7e\x7f\x92\x7c" +"\x1b\x77\x7c\x7c\x78\x7e\x91\x82\x99\x80\x1f\x0e\xfb\x6c\x7e\x1d\xf7\x62\xf7\xb4\x15\xaa\x06\xfb\x08\xf7\x2b\x05\x9b\x7e\x80\x92" +"\x7c\x1b\x76\x7c\x7c\x77\x7f\x90\x82\x99\x80\x1f\x0e\x74\x1d\xf7\x6d\xf8\x13\x15\xab\x06\xfb\x0b\xf7\x2b\x05\x9b\x7e\x80\x92\x7b" +"\x1b\x77\x7c\x7d\x77\x7e\x91\x82\x98\x80\x1f\x0e\x5a\xf7\xde\xf8\xee\x15\xa0\x91\x99\x91\xb4\x1b\xf7\x3e\xad\x7e\x49\x1f\x80\x07" +"\x8a\x80\x8a\x87\x8a\x7c\xa0\x89\xab\xf7\x2f\x05\xfc\x86\x7b\x06\xba\x87\x8f\x8a\x97\x84\x08\x94\x86\x90\x80\x7e\x1a\x7b\x87\x72" +"\x84\x72\x1e\x5b\xfb\x41\x26\x8a\x82\x6b\x05\xf0\x06\x49\xfb\x86\x79\x4e\x84\x85\x52\x83\x19\x7b\xf7\x90\x9b\x07\x51\x8f\x79\x95" +"\xaa\x1a\x94\x8d\x98\x92\xa2\x1e\xc9\xf7\x77\xf4\x88\x9b\x8b\x98\x86\x19\x9a\x86\x94\x7a\x77\x1a\x7a\x89\x7f\x85\x6c\x1e\x9c\x86" +"\xd7\xf7\x81\x79\x90\x5e\x30\x89\x8a\xfb\x3c\x89\x19\x0e\xfb\xa7\xf7\x91\xf7\x86\x15\x8f\x8d\x8f\x8d\x05\xca\xa7\xa9\xaf\xbc\x1a" +"\xbf\x63\xae\x4f\x6d\x6b\x81\x79\x72\x1e\x7b\x80\x82\x83\x66\x67\x97\x7d\x18\xb4\xb5\xad\x9d\xae\x1b\xac\xa3\x73\x68\x6e\x7b\x6e" +"\x72\x79\x1f\x7f\x82\x7b\x82\x73\x7e\x08\xfb\x2e\x06\x82\x68\x05\xe7\x06\x4f\x6e\x6f\x66\x59\x1a\x4b\xb7\x61\xce\xc3\xa8\x9c\xd9" +"\xd8\x1e\x7f\x97\x05\x5d\x5d\x64\x76\x61\x1b\x60\x71\xa7\xb9\xb8\xa7\xb0\xc0\xa5\x1f\xf7\x34\x06\x94\xae\x05\x0e\xf7\x87\xf8\x52" +"\xf7\xfa\x15\x7f\x06\x35\xf1\x4f\xf5\xbc\x1a\x9f\x98\x94\xaa\x1e\x9c\x24\x0a\xfb\x53\x06\x86\x79\xb2\x87\x9e\x78\xc5\x27\x19\xae" +"\x4f\x9b\x73\xb1\x54\xfb\xbc\xfb\xaf\x18\x59\x5c\x70\x79\x5c\x7b\x86\x79\x18\xf7\x78\x06\x90\x9d\x05\x71\x8e\x84\x8f\x99\x1a\x93" +"\x8f\x91\x99\x97\x1e\x8d\x8e\x91\x90\x92\x92\xf7\x8e\xf7\x89\x18\x9c\x06\x54\xfb\x70\x7a\x46\x79\x49\x1d\xf7\x94\x06\x8f\x9d\x05" +"\x54\x8c\x7b\x96\xad\x1a\x95\x8c\x92\x90\x9e\x1e\xc4\xf7\x75\x05\x9c\x06\xf7\x00\xfb\x84\x05\x98\x6f\x8b\x8b\x83\x1a\x79\x78\x7e" +"\x6e\x1e\x86\x79\x05\xbf\xba\x1d\x9d\x06\xb7\xf7\x55\x45\x8a\x7b\x97\x61\xe4\x19\xfb\x06\xf7\x85\xd9\xc9\xa8\xa3\xd4\xca\x19\xf7" +"\x06\xee\xaa\x9f\xb5\x8f\x90\x9d\x18\xfb\x53\x22\x1d\x9c\x06\xa1\x96\x87\x82\x77\x73\x73\x2b\x3c\x1f\x74\x79\x65\x6b\x6f\x72\x6d" +"\x72\x6e\x72\x6c\x72\x08\x7c\x06\xbd\xf7\x5b\x05\xd4\x9d\x9c\x99\xd4\x1b\x8f\x2e\x1d\x87\x79\x05\xc1\x8a\x9c\x81\x69\x1a\x82\x89" +"\x7c\x88\x7f\x1e\x0e\xf7\x59\xf8\x81\xf8\x46\x15\x81\x50\x4e\x25\x2c\xfb\x09\x08\xa1\xc8\x92\xaa\xb7\x1a\xe5\x62\xc4\x4b\x4e\x56" +"\x69\x3e\x50\x1e\x98\x81\x05\xc0\xb4\xb2\xa5\xb1\x1b\xb5\xa7\x60\x4b\x53\x78\x42\x6c\x50\x1f\x4e\x6c\x6c\x6e\x69\x1b\x77\x7b\x95" +"\x98\x93\x8d\x8e\x9c\x99\x1f\x97\x94\x90\x96\x97\x1a\xa1\x7c\x9b\x75\x6e\x74\x70\x67\x5e\xad\x6a\xbc\xe8\xef\xe6\xf7\x60\xf7\x15" +"\x1e\x3a\xfb\xb0\x05\xcc\x06\xa1\xd1\xc4\xe9\xe0\xf3\x08\x76\x49\x85\x6f\x64\x1a\x5a\x99\x5c\x9f\x78\x1e\x94\x82\x93\x88\xa0\x85" +"\x08\xba\x80\xa2\x69\x51\x1a\x7b\x8b\x7c\x89\x79\x1e\x9d\x06\xb8\xf7\x52\x05\x63\x77\x8d\x90\x7b\x1f\x69\x96\x7a\xaa\xbd\x1a\xf7" +"\x12\xdc\xf7\x29\xcf\x9d\x99\x80\x7f\x82\x87\x85\x7e\x81\x1e\x7e\x80\x87\x83\x7d\x1a\x74\x9a\x7c\xa0\xa9\xa2\xa8\xaf\xb7\x67\xae" +"\x5f\x2f\x2c\x34\xfb\x69\xfb\x20\x1e\xde\xf7\xbb\x05\x0e\xfb\x39\xf7\x65\x81\x15\x93\x06\xf7\x1d\xf2\xe5\xf7\x0b\x89\x1d\x9c\x06" +"\xec\xa7\xbd\xbb\xd2\x1b\xcc\xb7\x5d\x48\x37\x42\x52\x20\x81\x84\x8b\x8d\x7b\x1f\x7f\x66\x05\x8c\x97\x90\x8b\x94\x1b\xe8\xc0\x5d" +"\x3d\x29\x43\x44\x29\x3f\x58\xb0\xdb\x68\x1f\x73\x82\xaa\x2f\xc8\x54\xdf\x7f\x19\x54\x32\x2a\x0a\x98\x93\x8d\x96\x4a\x1d\x75\x7a" +"\x8f\x96\x6e\x3c\x0a\x82\x84\x47\x1d\xfb\xa2\xf7\x31\x80\x15\xf0\x8a\xda\xc8\xd9\x1a\xc3\x67\xac\x3c\x9b\x1e\xb9\x8e\xa0\x87\x1d" +"\x83\x6e\x05\xa2\x06\xd1\xa9\x76\x59\x43\x5b\x5b\x45\x53\x66\xa3\xc6\x69\x1f\x7b\x83\xa1\x4e\xb7\x65\xc7\x81\x19\x54\x33\x2a\x0a" +"\x98\x93\x8d\x96\x85\x0a\x81\x86\x2c\x0a\x86\xf7\x97\xf7\xf1\x15\xf7\x1c\xfb\x8d\x05\x96\x76\x90\x7d\x7f\x1a\x75\x7a\x82\x5e\x87" +"\x1e\x85\x79\x05\xc9\xba\x1d\x9c\x06\xb8\xf7\x55\x44\x8a\x81\x93\x5a\xe7\x19\xfb\x19\xf7\x93\xf7\x9e\xf7\x6b\xa5\x1d\xfb\xad\xfb" +"\x7e\xa6\x1d\x7c\x86\x7d\xb6\x1d\x68\x7f\xe2\x1d\x9a\x8f\x9b\x1e\x0e\xfb\x5b\xf7\x6f\xf8\x4b\x15\x5c\x7f\x52\x82\x61\x88\x85\x78" +"\x18\xf5\x1d\x81\x89\x81\x85\x74\x1f\x29\xfb\xe3\x05\xd2\x06\xc9\xf7\x69\x05\x8c\x97\x91\x8c\x8e\x1b\x96\x95\x85\x80\x93\x1f\x91" +"\x82\x8d\x85\x98\x5e\xa6\x2a\x99\x71\xae\x77\x08\xac\x76\x95\x77\x61\x1a\x7f\x8a\x77\x8a\x77\x1e\x9d\x06\xb8\xf7\x52\x45\x8c\x86" +"\x8f\x79\xcd\x19\x78\xd3\x74\xab\x65\x92\xa8\x96\xae\xb1\xab\xc3\x08\xb0\x9f\x96\x95\x9e\x1b\x93\x91\x88\x84\x91\x1f\x81\x94\x93" +"\x87\x98\x1b\xa7\x9d\x9a\xa3\xa6\x75\x9c\x69\x61\x71\x76\x49\x63\x1f\x5a\x39\x69\x71\x4a\x83\x08\x0e\x86\xf7\xbc\xf8\x1c\x15\x6c" +"\x71\xa6\x1d\x7d\x86\x7c\xb6\x1d\x69\x7e\xe2\x1d\x9b\x8f\x9a\x1e\xd1\xf7\x8d\x9b\x6e\x4c\xfb\x6f\x05\xcb\x06\xb4\xf7\x23\xd9\xfb" +"\x24\x05\x96\x77\x90\x7c\x7f\x1a\x76\x7a\x81\x5e\x87\x1e\x85\x79\x05\xf7\x9e\x06\x91\x9d\x4c\x8a\x6e\xa2\x5c\xe5\x19\xfb\x10\xf7" +"\x81\x95\xac\xf7\x8b\xf7\x5c\xa5\x1d\xfb\x3b\xfb\x1f\xab\xf7\x04\x05\x4c\x06\x0e\xfb\x5b\xf7\x5d\xf7\x8d\x15\x7e\x86\x81\x89\x7a" +"\x89\xc5\xf7\x5b\x18\x59\x7f\x55\x82\x61\x88\x85\x78\x18\x8d\x9b\x92\x8c\x94\x1b\x9e\x93\x84\x7c\x81\x89\x82\x85\x74\x1f\x29\xfb" +"\xe3\x05\xd2\x06\xc9\xf7\x69\x05\x8c\x96\x92\x8c\x8c\x1b\x92\x8f\x8a\x87\x92\x1f\x60\xfb\x29\x05\xaf\x06\xab\xf7\x00\x05\x89\x07" +"\xa2\x3a\x92\x75\x9a\x6f\x08\x6e\x9a\xa3\x79\xa5\x1b\xb3\xae\xad\xeb\xc4\x1f\x7c\x94\x05\x55\x68\x76\x78\x6f\x1b\x74\x82\x98\xc0" +"\x7c\x1f\x79\xd2\x74\xab\x66\x92\x08\x8d\x07\xa4\x95\xa9\xaa\xa7\xb8\xa3\xb4\xc0\x0a\x92\x88\x87\x8f\x1f\x7d\x98\x91\x88\x99\x1b" +"\xa7\x9d\x9a\xa3\xa6\x75\x9c\x69\x61\x72\x76\x49\x62\x1f\x73\x62\x78\x74\x76\x78\xad\xf7\x0b\x18\x66\x06\x0e\x8f\xf7\x9f\xf8\x02" +"\x15\xbd\xf7\x54\x05\xd3\x9e\x9d\x99\xd5\x21\x1d\xfc\x14\x06\x61\xfb\x36\x05\x9a\x06\xe1\xaa\xbb\xb3\xd5\x1b\xcc\x06\xfb\x20\xfc" +"\x9d\x82\x0a\xcd\xf7\x8d\x86\x1d\x83\x89\x88\x78\x7b\x1e\x0e\x4d\xf7\xf0\xf8\x54\x15\xfb\x83\x06\x6d\xfb\x05\x05\x9a\x06\xbf\xa5" +"\xb7\xa4\xcc\x1b\xb1\x06\x8a\x88\x78\x46\x30\xfb\xe8\x05\xd4\x06\xc4\xf7\x6c\x05\x8c\x98\x91\x8c\x8c\x1b\xa0\x99\x7c\x6a\x95\x1f" +"\xa3\x39\x93\x74\x9b\x6f\x08\x6d\x9b\xa4\x79\xa5\x1b\xb3\xad\xad\xec\xc4\x1f\x7c\x94\x05\x56\x69\x75\x77\x6f\x1b\x73\x82\x98\xc1" +"\x7a\x1f\x77\xd4\x73\xab\x63\x92\xa7\x96\xa7\xa8\xa8\xbb\xa2\xb5\x8b\x8b\x8f\x8f\x08\x98\x95\x96\x92\x97\x1b\x91\x93\x88\x87\x8f" +"\xd1\x0a\xa2\xa7\x75\x9c\x66\x61\x72\x76\x49\x63\x1f\x5b\x38\x6a\x71\x49\x83\x08\x0e\xbf\xf7\x90\xf7\xdf\x15\xf7\x9f\x06\x49\xfb" +"\x76\x78\x45\x78\x7b\x49\x8a\x20\x1d\xe3\x06\xee\xb4\x6a\x3a\x7e\x8a\x7a\x8a\x78\x1f\x9d\x06\xb8\xf7\x55\x05\x4a\x8c\x75\x96\xac" +"\x1a\x99\x8e\x9f\x92\xa2\x1e\xf7\x0e\xf8\x3d\x05\xd2\x9f\x9e\x9b\xcf\x21\x1d\xfb\x9b\x06\x83\x4c\x1d\x6c\x1a\x80\x89\x7d\x87\x7d" +"\x1e\x51\xfb\x58\x05\xfb\x9c\x06\xc1\xf7\x52\x05\xd4\x9f\x9e\x99\xd3\x1b\x90\x2e\x1d\x86\x79\x05\xc0\x8a\x9c\x81\x6d\x1a\x80\x89" +"\x7d\x86\x7c\x1e\xfb\x17\xfc\x5e\x78\x47\x78\x79\x60\x1d\x91\x9d\x05\x56\x8c\x7a\x95\xaa\x1a\x96\x8d\x96\x90\x9d\x1e\x0e\xfb\x3f" +"\xf7\x48\xf7\x93\x15\xc2\xf7\x52\x5b\x7f\x51\x81\x63\x89\x19\x85\x78\x05\xf5\x1d\x80\x89\x81\x85\x74\x1f\x29\xfb\xe8\x05\xd2\x06" +"\xcb\xf7\x73\xf7\x31\x90\x60\xfb\x29\x05\x88\x80\x87\x6e\x7f\x1a\x74\x93\x82\xaa\x81\x1e\xac\x80\x98\x77\x61\x1a\x7d\x8a\x76\x8a" +"\x77\x1e\x9d\x06\xb8\xf7\x54\x05\x58\x8c\x7a\x90\x99\x1a\x90\x8b\x8c\x92\xa8\x1e\xea\xf7\xde\x05\x44\x06\x59\xfb\x43\x05\x0e\x92" +"\xf7\xcf\x79\x15\x97\x06\xf2\xda\xb6\xf5\xe6\x1f\x7a\x99\x05\x33\x31\x51\x6d\x39\x1b\xfb\x03\x4b\xd6\xf7\x16\xf7\x0b\xbb\xad\x0a" +"\xcd\x1b\xe7\xbe\x55\xfb\x00\x95\x1f\x9d\x88\xb0\xf7\x5b\x05\x76\x06\x7b\x83\x81\x85\x77\x1b\x82\x80\x8d\x90\x76\x1f\x96\x5f\x63" +"\x91\x6a\x1b\xfb\x6a\xfb\x54\xfb\x5c\xfb\x73\xfb\x1b\xdf\x25\xf7\x16\x77\x1f\x58\x39\x2a\x0a\x98\x94\x57\x1d\xb4\xa2\x86\xa8\x44" +"\x1d\x82\x84\x47\x1d\xfb\x6c\xf7\x4e\x80\x15\xd1\x8e\xc3\xac\xc1\xd2\x7b\x95\x18\x50\x54\x64\x75\x5a\x1b\x52\x69\xb5\xd3\xe0\xae" +"\xe5\xc3\xc5\x1f\xa9\xa8\xb3\x9d\xb3\x1b\xa2\x99\x83\x7f\x86\x89\x86\x87\x82\x1f\x84\x7e\x89\x85\x81\x1a\x73\x9a\x7d\xa3\xa7\x9f" +"\x9e\xa6\xba\x51\x0a\x36\xb4\x58\xd9\x7f\x1e\x55\x34\x94\x83\x05\x90\x98\x93\x8d\x96\x4f\x0a\x79\x8f\x96\x6e\x3c\x0a\x81\x85\x47" +"\x1d\x23\xe6\xf9\x1a\x15\xc3\x83\x8e\x88\x9c\x53\xd8\xfb\xa5\x18\x4e\xfb\x6b\x9f\x1d\xa0\x92\xaa\xa3\xda\x1e\x8e\x93\x8d\x93\x8c" +"\x8f\xa8\xf1\x18\xf7\x6f\xf7\xa6\xab\xb3\x93\x92\xa9\x9a\x19\x9b\xfb\x51\x7b\x07\xbb\x85\x8b\x8b\x96\x85\x48\x1d\x6f\x5d\x49\x23" +"\xfb\x0f\x1e\x7a\x77\x85\x83\x7c\x79\x7f\xb8\x86\x9c\x7d\xbd\x08\x72\xe2\x56\x0a\x91\xc7\x91\x1e\x9b\xfb\x83\x07\x0e\xfb\x72\xf7" +"\x2c\xb9\x15\x62\xfb\x2b\x77\x47\x83\x83\x54\x84\x19\x87\x7d\x05\xf7\x55\x06\x8e\x99\x05\x64\x8f\x81\x92\xa2\x1a\x97\x8e\x9d\x90" +"\x9e\x1e\xb7\xf7\x37\xf7\x44\xf7\xa5\xb6\xd0\x95\x95\xaa\x92\x19\x94\x8c\x90\x9b\x05\xfb\x1a\x06\x86\x7b\x05\x90\x06\x9f\x94\x86" +"\x7d\x7f\x80\x75\x72\x62\x1f\xfb\x18\xfb\x65\x75\xf7\x69\x05\x89\xa4\x8a\x95\x95\x1a\xa8\x9b\x9b\xa9\x1e\x92\x06\x90\x9b\x05\xfb" +"\x4c\x06\x87\x7b\x99\x8a\x96\x8a\x95\x86\x8f\x84\x19\x90\x84\x90\x6d\x95\x34\x08\x0e\x23\xf7\xd7\xf7\x7f\x15\xa0\xd6\xf7\x6f\xf7" +"\xa6\xab\xb3\x93\x92\xa9\x9a\x19\x9b\xfb\x51\x7b\x07\xbb\x85\x8b\x8b\x96\x85\x48\x1d\x6f\x5d\x48\x23\xfb\x0e\x1e\x7a\x77\x85\x83" +"\x7c\x79\x7f\xb8\x86\x9c\x7d\xbd\x08\x72\xe2\x56\x0a\x91\xc7\x91\x1e\x9b\xfb\x83\x7b\x07\xc3\x83\x8e\x88\x9c\x53\xd8\xfb\xa5\x18" +"\x77\x44\x05\x26\x06\x82\x69\x05\xef\x06\x6c\xfb\x02\x9f\x1d\xa1\x92\xa7\xa6\xe5\x1e\x8c\x8f\x05\xf7\x03\x06\x94\xad\x05\x0e\xfb" +"\x72\xf7\x62\x87\x15\x9c\xc9\xf7\x44\xf7\xa5\xb7\xd0\x94\x95\xaa\x92\x19\x94\x8c\x90\x9b\x05\xfb\x1a\x06\x87\x7b\x05\x8f\x06\x9f" +"\x94\x86\x7d\x7f\x80\x73\x72\x64\x1f\xfb\x18\xfb\x65\x75\xf7\x69\x05\x88\xaa\x8b\x90\x94\x1a\xa8\x9b\x9b\xa9\x1e\x92\x06\x90\x9b" +"\x05\xfb\x4b\x06\x86\x7b\x99\x8a\x96\x8a\x95\x86\x8f\x84\x19\x91\x84\x90\x6d\x94\x34\xa3\xfb\x7e\x18\x7e\x59\x05\xfb\x01\x06\x82" +"\x63\x05\xf6\x06\x7a\x4e\x77\x47\x83\x83\x54\x84\x19\x87\x7d\x05\xf7\x55\x06\x8f\x99\x05\x63\x8f\x81\x92\xa2\x1a\x97\x8e\x9d\x90" +"\x9e\x1e\x9c\xc8\x05\xf7\x02\x06\x94\xb3\x05\x0e\x51\xf7\xc2\xf7\x9e\x15\xb6\xfb\x47\x05\x8e\x81\x8c\x82\x84\x1a\x70\x76\x7b\x67" +"\x1e\x7a\x06\x85\x79\x05\xda\x06\xcc\xa8\x84\x74\xa1\x1f\x9a\x7b\x95\x6c\x6a\x1a\x7b\x8a\x7b\x8a\x78\x1e\x9d\x06\xb8\xf7\x54\x05" +"\x62\x79\x8f\x94\x80\x1f\x6d\xa3\x82\x99\x82\xb4\x51\xf7\x7c\x18\xf7\x36\xf7\x53\xcb\xd7\xab\x9e\xc8\x8e\x19\x91\x9d\x05\xfb\x5b" +"\x06\x85\x79\x05\x95\x06\xa2\x94\x85\x7c\x7f\x84\x7e\x7b\x77\x1f\xfb\x2a\xfb\x46\x64\xf7\x39\x05\x89\x96\x88\xa1\x94\x1a\xa3\x9f" +"\x98\xae\x1e\x9b\x06\x91\x9d\x05\xfb\x9d\x06\x85\x79\x05\x9c\x06\xbd\x8a\x9c\x7a\x9f\x48\xca\xfb\x8d\x18\xfb\x3b\xfb\x5a\x05\x56" +"\x60\x4d\x62\x67\x1b\x85\x79\x05\xf7\x62\x29\x0a\x76\x06\x6e\x7b\x92\x9a\x94\x8f\x92\x99\x9d\x1f\x0e\xfb\x72\xf7\x5e\xf7\x52\x15" +"\xb1\xfb\x15\x99\x61\x98\x77\x9a\x88\x19\xae\x80\x9a\x6d\x50\x1a\x7f\x8a\x7a\x8a\x79\x1e\x9d\x06\xb8\xf7\x54\x42\x8d\x86\x8e\x79" +"\xcb\x19\x5c\xf7\x2c\x05\xe5\xc7\xa4\xa3\xa8\x1b\x91\x92\x8a\x87\x98\x1f\x87\x99\x8f\x8a\x91\x1b\x9d\x99\x9a\x9f\xa3\x7b\x9c\x73" +"\x72\x73\x7d\x6d\x6e\x1f\x79\x78\x8b\x8b\x45\x2e\x66\xf7\x07\x7f\xa4\x6f\x9a\xfb\x12\x6f\x18\x86\x7a\x05\x90\xa0\x94\x8d\x96\x1b" +"\xbb\xa6\x63\xfb\x25\xba\x1f\x4d\x2f\x05\x50\x64\x71\x70\x7b\x1b\x85\x87\x8d\x98\x7e\x1f\x93\x82\x83\x8e\x83\x1b\x77\x7d\x7c\x76" +"\x72\x9d\x7b\xa6\xae\xae\xa7\xc9\xb5\x1f\x0e\xa8\xf8\xfb\xac\x15\x67\x80\x8d\x90\x7e\x1f\x7b\x91\x78\xa1\x98\x1a\x8e\x8c\x91\x8e" +"\x95\x77\x1d\x54\xfb\x68\x79\x47\x78\x79\x4c\x8a\x20\x1d\xf7\x14\x06\xcc\xaf\x64\x46\x7b\x8a\x7b\x8a\x77\x1f\x9d\x06\x0e\xfb\x52" +"\x66\x0a\x83\x89\x7c\x83\x1a\x76\x9e\x7a\xa2\x9b\x98\x8f\x97\x9d\x1e\x7b\x70\x83\x72\x71\xdc\x1d\x76\x1e\x95\x7d\x05\xcf\xb2\xa1" +"\xa4\xb2\x1a\x95\x8a\x8e\x87\x9f\x1e\x87\x99\x89\x98\x92\x1a\x96\x8e\x93\x9a\xa8\x1e\x96\x96\x9a\x9c\x9d\xa4\x08\x0e\x9e\xf8\x0e" +"\xf7\xbb\x15\xaf\x90\xa5\x90\xb3\x97\x4f\xfb\x69\x18\x78\x47\x78\x7a\x4d\x8a\x86\x79\x18\xf7\x93\x29\x0a\x55\x8c\x7b\x95\xaa\x1a" +"\x97\x8c\x92\x91\x9f\x1e\xf7\x17\xf8\x5e\x05\xd4\xa0\x9d\x99\xd3\x21\x1d\xfb\xa1\x25\x1d\xc0\x8a\x9c\x81\x6d\x4d\x1d\x4f\xfb\x65" +"\x68\x80\x6c\x84\x67\x88\x19\xcc\xf7\x72\x05\x4c\x06\x4a\xfb\x72\x05\x5f\x92\x76\x9e\xad\x1a\x92\x8c\x92\x8e\x94\x1e\xb3\xf7\x21" +"\x05\xd4\x9f\x9e\x99\xd3\x1b\x8f\x9d\x05\xfb\x9f\x22\x1d\xc0\x8a\x9c\x81\x6c\x1a\x80\x89\x7f\x86\x7b\x1e\x67\xfb\x12\x05\x83\x6e" +"\x8a\x86\x7b\x1a\x4b\xbd\x6a\xec\x1e\x5d\xfb\x34\x05\xca\x06\x0e\xfb\x52\xf7\x81\xf7\x53\x15\xb1\xa8\xa0\xa2\xae\xbf\x48\xfb\x81" +"\x18\x89\x84\x88\x79\x84\x1a\x77\x9e\x7a\xa0\xb1\xb1\xa8\xd4\xc4\x1e\x7e\x96\x05\x60\x6a\x75\x77\x7c\x1b\x84\x85\x91\x92\x91\x8e" +"\x9b\x8e\x96\x1f\xef\xf7\xf1\x05\x44\x06\x80\x4c\x58\x39\x52\x5d\xae\xf7\x13\x18\x5b\x06\x5f\xfb\x2f\x05\x8a\x87\x8a\x8b\x87\x1b" +"\x7b\x83\x94\x9c\x92\x8b\x8e\x8f\x97\x1f\xc0\xf7\x4b\x5a\x7e\x59\x83\x5c\x87\x20\x1d\x8e\x9b\x92\x8c\x95\x1b\x9d\x93\x84\x7c\x80" +"\x8a\x83\x83\x72\x1f\x75\x3d\x05\x86\x7d\x87\x6f\x81\x1a\x68\xa0\x74\xac\x98\x97\x8d\x90\x99\x1e\x75\x3c\x05\xbb\x06\x0e\x9e\xf7" +"\x75\xf7\xe3\x15\x9c\xe1\xa2\x8e\xae\x1b\xce\xad\x73\x5b\x79\x88\x7b\x83\x6e\x1f\x6c\xfb\x09\x05\x45\x78\x77\x7c\x41\x1b\x87\x79" +"\x05\xf7\xae\x24\x0a\x4f\x8c\x7c\x93\xa9\x1a\x94\x8e\x9e\x90\x9d\x1e\xab\xf7\x09\x05\x91\xa3\x8f\xa5\x9f\x1a\xd3\x59\xb0\x29\x5e" +"\x7b\x89\x73\xfb\x15\x1e\xbd\xf7\x4e\x05\xd2\x9f\x9f\x99\xd4\x21\x1d\xfb\xae\x22\x1d\xc6\x8a\x9a\x83\x6e\x1a\x80\x88\x79\x86\x79" +"\x1e\xfb\x0f\xfc\x5c\x05\x45\x78\x77\x7c\x42\x1b\x86\x79\x05\xf7\xae\x24\x0a\x50\x8c\x7c\x93\xa8\x1a\x97\x8e\x9d\x90\x9c\x1e\x0e" +"\x71\x1d\xfb\xdb\x42\x0a\xa8\xf9\x1a\xf8\xc1\x15\x8b\x1d\xb6\x91\x8c\x94\x8c\x90\x1f\xb1\xf7\x21\x58\x1d\x6a\x1a\x81\x89\x7f\x87" +"\x7c\x1e\x69\xfb\x12\x05\x86\x76\x89\x80\x7c\x1a\x4b\xbf\x67\xe7\xc1\xc1\x93\x9e\xce\x1e\x5c\xfb\x48\x72\x2e\x7f\x81\x35\x8a\x19" +"\x5b\xfb\x58\x05\x9d\x06\xbb\xf7\x0d\xbc\xb0\xf7\x07\x90\x08\xeb\x06\x8f\x9d\x63\x8c\x82\x8c\x80\x91\x19\x7e\x92\x84\x96\x9b\x1a" +"\x9a\x92\xa9\x9a\xb6\x1e\x0e\xfb\x52\x66\x0a\x84\x89\x7b\x83\x1a\x8a\x8b\x88\x8c\x88\x1e\x6c\x62\x7c\x68\x68\xdc\x1d\x75\x1e\x95" +"\x7e\x05\xcf\xb2\xa1\xa4\xb2\x1a\x94\x8a\x8f\x87\x9e\x1e\x87\x9a\x89\x97\x92\x1a\x95\x8d\x91\x91\x9a\x1e\x82\x95\x95\x87\x97\x1b" +"\xb1\xb0\xa8\xd4\xc4\x1f\x0e\xc9\xcb\xf7\xc1\x15\x84\x68\x88\x76\x79\x1a\xfb\x24\xeb\x2a\xf7\x23\xf7\x75\xf7\x59\xf7\x68\xf7\x87" +"\xbf\x81\xb5\x75\xaf\x1e\xcd\x64\x3f\xb2\x34\x1b\x39\x37\x6e\x56\x43\x1f\x57\x65\x70\x6a\x5b\x3b\xcf\x80\x18\xb6\xd4\xad\xb7\xac" +"\xa6\x08\xb4\xc0\xc8\xa2\xc5\x1b\xbc\xb8\x75\x67\xa3\x1f\x9c\x71\x93\x67\x5a\x1a\x51\x82\x51\x79\x55\x1e\x7c\x60\x15\x72\x4d\x70" +"\x5b\x70\x6b\x08\x4f\x56\x4a\x69\x4b\x1b\x59\x5f\xa1\xae\x74\x1f\x78\xa8\x83\xb1\xc4\x1a\xa0\x8c\x9a\x8d\x9e\x1e\x0e\x5a\xf8\xdc" +"\x9b\x15\x51\x90\x84\x93\x7e\xd5\x26\xf8\xd3\x18\x71\x06\xfb\xb6\xfc\x90\x3d\xfb\x1a\x81\x7f\x62\x83\x19\x7b\xf7\x52\x9b\x07\x56" +"\x91\x83\x8f\xa6\x1a\x9e\x8d\x91\x9d\xb0\x1e\xc4\xf7\x06\x05\xf7\x73\x06\xa0\xfb\x19\x05\x8d\x81\x8c\x80\x83\x1a\x67\x7d\x82\x4a" +"\x85\x1e\x7b\xf7\x8e\x07\xfc\x21\xf7\x9e\x15\xf7\x29\xf7\x9c\xbb\xfb\x9c\x05\xf7\x2d\xf8\xf2\x15\x4b\x73\x5a\x67\x4c\x1b\x4b\xcc" +"\x1d\xae\x7c\xb8\x1b\xc2\xba\xa3\xb8\xac\x1f\x9f\xa6\x94\xa1\x94\xb5\x08\x0e\xf8\x72\xf7\x04\x15\x6e\x6e\x05\x6b\x6c\x7f\x82\x81" +"\x1b\x83\x85\x91\x92\xa1\xbb\xf7\x50\xb9\xf7\x32\x1f\x8e\x95\x8c\x8d\x8d\x94\x84\x8e\x18\x4d\x84\x88\x88\x80\x5b\x05\xb0\x83\x6e" +"\xa0\x5f\x1b\xfb\x1b\xfb\x32\xfb\x4f\xfb\x34\x45\xb1\x62\xcb\xd3\xb6\xad\xf7\x11\xe6\x1f\x74\x38\x89\x83\x71\x1a\x6e\x97\x7f\xa7" +"\xb4\xa3\x9e\xe7\xd8\x1e\xfb\x3a\xf7\xd8\x15\xad\x89\xa1\x73\x68\x1a\x37\x56\xfb\x0d\x45\x3f\x1e\x70\x72\x69\x7a\x6e\x1b\x66\x75" +"\xa7\xb9\xc3\xb2\xf2\xb8\xcc\x1f\xb5\xc6\xba\xab\xb4\x88\x08\xf7\x36\xf7\x7e\xbc\x1d\xa0\x71\x08\x6d\xa2\xae\x7c\xb8\x1b\xc1\xba" +"\xa3\xb8\xad\x1f\x9f\xa6\x94\xa1\x93\xb5\x08\x0e\xc9\xf8\x6e\xf9\x34\x15\x37\x31\x63\x41\x3b\x1f\x26\x2d\x50\xfb\x0e\xfb\x0b\x1a" +"\xfb\x21\xe6\x27\xf7\x13\xf7\x64\xf7\x5e\xf7\x68\xf7\x78\x96\x1e\xf7\x22\x92\x2a\xf7\x00\xfb\x1b\x1b\xe3\xfc\x04\x15\xfb\x4b\x51" +"\x29\x21\xfb\x03\x1b\x3a\x5a\xc9\xef\xb0\x91\xb8\x96\xb8\x1f\x97\xb6\x15\xf7\x4d\xc5\xee\xf6\xf7\x06\x1b\xda\xbd\x50\x2e\x61\x83" +"\x55\x7f\x5f\x1f\x0e\x92\x1d\xfb\x4c\xfb\x58\x15\x8d\x8e\x05\xf7\x03\xba\xc8\xc8\xcb\x1b\xb4\xa7\x65\x53\x70\x89\x7a\x83\x66\x1f" +"\x81\x69\x15\xfb\x0d\x68\x45\x3b\x45\x1b\x5c\x6c\xaf\xc2\xaf\x91\xae\x97\xb2\x1f\x0e\x5a\x5b\x0a\x52\xf8\x01\x15\x4b\x72\x5a\x67" +"\x4d\x1b\x4a\xcc\x1d\xaf\x7c\xb7\x1b\xc3\xb9\xbe\x0a\xfb\x6c\x7e\x1d\xf7\xf6\xf8\x54\xbc\x1d\x9f\x71\x08\x6d\xa2\xaf\x7c\xb7\x1b" +"\xc2\xba\xbe\x0a\xf7\x83\xf9\xbe\x15\x5a\xf8\x85\xbc\x07\x0e\xf7\xe8\xad\x89\x15\x92\x06\xd5\x06\xf7\x44\xcd\x97\xb7\xcc\x1f\xf1" +"\xd0\xd5\xf7\x36\xf7\x2f\x1a\xea\x6d\xde\x5b\xb1\x1e\xa7\x67\x5a\x98\x4a\x1b\xfb\x2b\x20\x56\x2e\x69\x1f\x7d\x66\x87\x73\x8a\x49" +"\xd9\xb1\x18\x94\x07\x8a\xea\xb0\xb7\xe6\x99\x3d\xfc\x3e\x18\x7a\x40\x72\x5c\x6d\x81\x74\x8c\x18\xe5\x16\x8f\x8e\xc2\xb9\x9e\xb6" +"\xa1\xf7\x13\x19\xc7\xf7\xec\x05\x92\x06\x8e\x06\xb4\x96\x8a\x87\x98\x1f\xc4\x76\xa9\x49\x26\x1a\xfb\x66\x2c\xfb\x29\xfb\x1e\x84" +"\x1e\xf7\x8d\xfb\x99\x15\xda\x06\xb1\xf7\x62\x05\x7b\xb2\x8e\x8a\xa1\x1b\xf7\x14\xf7\x01\xf7\x39\xf7\x53\xf7\x00\x5e\xc3\x36\x57" +"\x5e\x75\x62\x6a\x1f\x66\x5d\x76\x50\x73\xfb\x18\x08\xea\xe6\x15\xe6\x9c\xaf\xc0\xb9\x1b\xb4\xa1\x61\x3c\xfb\x2a\x52\xfb\x0b\x43" +"\x6e\x75\x96\xa5\x77\x1f\x0e\x5a\xf7\x97\x16\x7c\xf7\x2f\x05\x49\xb7\x62\xe4\xea\x1a\xc0\x98\xc6\xa2\xbc\x1e\xc9\xa9\xbc\xaf\xc3" +"\x1b\xc3\xbc\x67\x4d\xa9\x1f\xa2\x5a\x98\x50\x56\x1a\x2c\x61\x32\x4a\x5f\x1e\x7c\xfb\x2f\x05\xf7\x88\xf7\x2d\x77\x06\x5e\x84\x7b" +"\x79\x68\x1b\xfb\x0d\x06\x8d\xb1\x05\xf6\xb8\xc9\xe8\xf7\x08\x1a\xbb\x7f\xbe\x74\xba\x1e\xef\x5b\x36\xc5\x2a\x1b\x2a\x36\x51\x27" +"\x5b\x1f\x74\x5c\x7f\x58\x5b\x1a\xfb\x08\xc9\x2e\xf6\x5e\x1e\x8e\x65\x05\xfb\x0e\x06\x68\x7b\x9d\xb8\x84\x1f\x77\xfb\x2d\x06\x0e" +"\xfc\x81\xac\x0a\xfc\x2e\x46\x0a\xf7\xe8\xf8\xa9\xf8\x95\x15\x49\x06\xfb\x74\xfc\x95\x05\xdb\x06\xf7\x45\xf8\x2d\xf7\x45\xfc\x2d" +"\x05\xdb\x06\x0e\xf7\xe8\xf8\xa9\x16\xf7\x74\xf8\x95\x05\x3b\x06\xfb\x45\xfc\x2d\xfb\x45\xf8\x2d\x05\x3b\x06\xf7\x74\xfc\x95\x05" +"\x0e\xf7\xe8\xf8\x8c\xf9\x60\x15\xfb\x60\xfb\x34\xfb\x32\xfb\x5f\xfb\x5b\xf7\x34\xfb\x33\xf7\x5d\xf7\x5b\xf7\x34\xf7\x34\xf7\x5c" +"\xf7\x59\xfb\x34\xf7\x36\xfb\x58\x1f\xa4\x52\x15\xf7\x23\x7e\xf7\x06\xfb\x06\x99\xfb\x25\x08\xfb\xa3\x06\xf7\xa4\x52\x15\x82\xfb" +"\x22\xfb\x0d\xfb\x0f\xfb\x22\x80\x08\xf7\xa8\x07\x53\xfb\xa8\x15\xfb\x27\x99\xfb\x05\xf7\x05\x7d\xf7\x29\x08\xf7\xa6\x06\xfb\xa6" +"\xc4\x15\x99\xf7\x24\xf7\x07\xf7\x06\xf7\x25\x99\x08\xfb\xa4\x07\x0e\xc9\xf7\x11\xf7\x10\x15\xf8\x67\xf8\x67\xfc\x67\x06\xb3\xfc" +"\x3f\x15\xf8\x17\xf8\x17\xfc\x17\x07\x0e\xf7\xe8\xf9\x64\xf8\xc3\x15\x4f\xfb\x8d\x06\x26\x86\x62\x7c\x6e\x1e\x5b\x72\x53\x6b\x50" +"\x1b\x57\x58\xa4\xb3\x6f\x1f\x74\xac\x85\xb4\xf7\x04\x1a\xf7\x8d\x4f\xfb\x8a\x07\xfb\x1d\x90\x69\xa3\x63\x1e\x4a\xb1\xd1\x66\xde" +"\x1b\xd7\xcb\xaa\xc3\xb4\x1f\xac\xb8\x91\xab\xf7\x29\x1a\x0e\x48\xf8\x27\xf8\x1c\x15\xfb\x69\x06\x41\xf7\x4d\x05\x2d\x06\xf7\x7d" +"\xfc\xd5\x05\xde\x06\xf7\x7d\xf8\xd5\x05\x2d\x06\x22\xfb\x9d\x15\x3f\xfb\x48\x40\xf7\x48\x05\x0e\x78\x1d\xfb\x01\x7c\x49\x75\x1a" +"\x7a\x91\x7d\x96\x82\x1e\x78\x71\x84\x76\x70\xb1\x1d\xad\xa4\x91\x94\xac\x9d\x1f\xa6\x9a\x9c\x9f\xbe\xd3\x08\x0e\xfb\x5d\x3b\x1d" +"\x0e\xfb\x5d\x3b\x1d\xf7\x67\xf7\xc2\x7f\x0a\x0e\xfb\x5d\x3b\x1d\xf7\x98\xf7\x90\x15\xac\x06\x9b\xac\x05\x9b\xac\x95\xa7\x9b\x1a" +"\x9a\x83\x93\x7b\x6b\x80\x77\x41\x86\x1e\x41\x70\x15\x72\x77\x78\x73\x71\xa0\x77\xd3\x0a\xf7\x42\x59\x1d\xfb\x5d\x3b\x1d\xf7\x7f" +"\xf7\x45\x15\xb5\x06\xa1\xba\x05\xa1\xbb\x99\xb6\xa0\x1a\x9f\x81\x96\x78\x62\x7d\x6e\x22\x81\x1e\x0e\x2a\x1d\xfb\x1d\xf8\xeb\x15" +"\x55\x5e\x5f\x54\x53\xb6\x5f\xc4\xc2\xb8\xb8\xc1\xc2\x5e\xb8\x53\x1f\x69\x04\xb0\xa9\x6d\x67\xd5\x1d\x2a\x1d\x6f\xf8\x98\x15\x6a" +"\x80\x7e\xc9\x1d\x6f\x6e\x3e\x77\x6b\x1d\xa4\x83\x76\xc0\x1f\x81\xa5\x9d\x86\x98\x1b\xbb\xac\xaf\xcf\x99\x1f\x0e\x92\x2d\x0a\xf7" +"\xe8\xd8\xa5\x0a\x82\x82\x87\x85\x84\x1e\x0e\x92\x2d\x0a\xf8\x46\xf7\x88\x20\x0a\x92\x2d\x0a\xf7\xb2\xf7\x51\x23\x1d\x92\x2d\x0a" +"\xf7\xf0\xd6\x54\x0a\x9b\x7f\x7f\x92\x7c\x1b\x77\x7c\x7c\x78\x7f\x91\x82\x98\x80\x1f\x0e\xfb\x7c\xf7\xb4\xf9\x69\x15\x50\x75\x5f" +"\x6b\x75\x1a\x75\xa9\x74\xc2\x76\x1e\x48\x66\x63\x59\x5c\x1a\x69\x9c\x73\xb5\x72\x1e\xfb\x04\x54\x46\x2f\x2d\x1a\x5d\x9b\x65\xaa" +"\x73\x1e\x7c\x9e\xa1\x86\xb5\x1b\x98\x9b\x8c\x8d\xa1\x1f\x8e\xa1\x9b\x8c\x91\x1b\xa5\x99\x81\x7a\x68\x67\x6b\x62\x82\x84\x8c\x8f" +"\x7f\x1f\x92\x76\x85\x8c\x7f\x1b\x6e\x78\x7c\x74\x75\x9e\x7c\xa7\xac\xb6\x9a\xa5\xb3\x1f\xbd\xab\xa5\xb2\xb7\x1a\xb6\x72\xa5\x63" +"\x82\x79\x8a\x89\x79\x1e\x89\x78\x6e\x89\x7e\x1b\x60\x73\xa3\xb8\xdc\xbb\xdd\xdb\xc3\x1f\x7c\xb1\xab\x84\xae\x1b\xbd\xad\x9e\xa7" +"\x9e\x75\x98\x6b\x65\x66\x82\x72\x50\x1f\x7e\x9d\x86\x9c\xa3\x1a\xbe\xa2\xb9\xba\xb4\x1e\x7e\xbb\xa0\x88\xab\x1b\xce\xb6\x9e\xaa" +"\xa0\x77\x96\x66\x5a\x56\x7c\x6c\x4f\x1f\x6c\x9f\x77\xa2\x9d\x1a\x9c\x96\x97\xae\x9e\x1e\x8d\x8f\x8e\x8f\x92\x1f\x0e\xfb\x6c\x31" +"\x1d\xf7\xd6\xf7\x88\x20\x0a\xfb\x6c\x31\x1d\xf7\x7c\xd6\x28\x0a\xfb\xa3\x33\x0a\xf7\x23\xf7\x49\x2b\x0a\xfb\xa3\x33\x0a\xf7\x70" +"\xf7\xb9\x24\x1d\x0e\xfb\x93\xf7\xae\xf9\x67\x15\x4d\x72\x5b\x64\x72\x1a\x71\xab\x70\xc1\x76\x1e\x4b\x57\x70\x6e\x66\x53\x08\x4f" +"\x33\x6a\x26\x2f\x1a\x33\xbc\x52\xd8\x95\x9c\x8c\x8d\x9b\x1e\x8d\x9c\x99\x8c\x90\x1b\xa6\x9a\x82\x79\x68\x66\x6c\x63\x81\x84\x8c" +"\x8f\x7f\x1f\x92\x76\x85\x8c\x7f\x1b\x6e\x78\x7c\x74\x75\x9e\x7c\xa7\xad\xb6\x9a\xa5\xb2\x1f\xbe\xab\xa5\xb2\xb7\x1a\xb6\x72\xa5" +"\x63\x82\x7c\x8a\x89\x7d\x1e\x89\x7c\x7b\x8a\x81\x1b\x5b\x72\xa7\xc1\xd5\xa2\xe4\xb4\xdf\x1f\xaa\xc9\xa6\xb0\xc0\xc4\x08\x86\xa3" +"\x97\x8a\xa2\x1b\xe0\xc6\xa6\xb2\x9f\x79\x98\x6e\x56\x6c\x7f\x53\x36\x1f\x6a\x9c\x78\xa2\xa3\x1a\xa1\xa2\xa1\xb5\x9f\x1e\x0e\x79" +"\x9d\xf8\x44\x94\xf7\x68\x98\x06\xa2\x0a\xd9\x0b\xa2\x8f\x8f\x8e\x8f\x8f\x8f\x8e\x8f\x91\x8f\x8f\x0c\x0c\xf8\x88\x14\xf9\x28\x15" +"\xae\x13\x00\xb7\x02\x00\x01\x00\x04\x00\x0d\x00\x11\x00\x15\x00\x1a\x00\x2f\x00\x78\x00\xa4\x00\xac\x00\xb1\x00\xb6\x00\xb9\x00" +"\xbe\x01\x58\x01\xde\x02\x56\x02\xd0\x02\xf0\x03\x4e\x03\xab\x03\xe5\x03\xf2\x03\xf9\x04\x02\x04\x07\x04\x3e\x04\x46\x04\x4f\x04" +"\x5b\x04\x65\x04\x6e\x04\x75\x04\x7c\x04\xbb\x04\xc8\x04\xcd\x04\xee\x05\x01\x05\x07\x05\x1e\x05\x2e\x05\x31\x05\x38\x05\x46\x05" +"\x53\x05\x5a\x05\x63\x05\x67\x05\x73\x05\x7f\x05\x87\x05\x91\x05\x9a\x05\xa1\x05\xa8\x05\xb0\x05\xb8\x05\xbe\x05\xe4\x06\x6e\x06" +"\xa6\x06\xb3\x07\x16\x07\x68\x07\xa5\x08\x13\x08\x54\x08\x86\x08\xf0\x09\x59\x09\xb8\x0a\x1f\x0a\x2e\x0a\x3d\x0a\x9a\x0a\x9f\x0a" +"\xc2\x0b\x14\x0b\x5b\x0b\xa9\x0b\xcc\x0c\x18\x0c\x51\x0c\x61\x0c\xa0\x0c\xa9\x0c\xb9\x0c\xea\x0d\x1a\x0d\x49\x0d\x67\x0d\x91\x0d" +"\x9a\x0d\xc2\x0d\xea\x0d\xf3\x0d\xfa\x0e\x1d\x0e\x32\x0e\x54\x0e\x76\x0e\x7f\x0e\x89\x0e\xa9\x0e\xc9\x0e\xe1\x0e\xec\x0f\x0a\x0f" +"\x16\x0f\x2b\x0f\x48\x0f\x4f\x0f\x62\x0f\x7a\x0f\x7f\x0f\x84\x0f\x98\x0f\x9c\x0f\xa1\x0f\xb5\x0f\xcc\x0f\xd9\x0f\xef\x10\x03\x10" +"\x16\x10\x21\x10\x35\x10\x39\x10\x45\x10\x51\x10\x64\x10\x6f\x10\x7c\x10\x80\x10\x92\x10\x9b\x10\xac\x10\xb2\x10\xc3\x10\xd2\x10" +"\xd7\x10\xe1\x10\xf1\x11\x01\x11\x11\x11\x14\x11\x1c\x11\x29\x11\x38\x11\x47\x11\x50\x11\x56\x11\x64\x11\x72\x11\x80\x11\x8e\x11" +"\x9c\x11\xa8\x11\xb4\x11\xc1\x11\xce\x11\xdb\x11\xe8\x11\xf5\x11\xfa\x12\x07\x12\x14\x12\x20\x12\x2c\x12\x38\x12\x44\x12\x4e\x12" +"\x59\x12\x64\x12\x6f\x12\x7a\x12\x85\x12\x90\x12\x9b\x12\xa6\x12\xb1\x12\xbc\x12\xc2\xc0\x1d\x0e\x15\x67\x06\xfb\x22\x22\x31\xeb" +"\x1d\xf9\x21\x15\x0b\xf9\x2a\x15\x0b\x06\x90\x9d\x05\x0b\xf8\x64\xf7\x02\x15\x6f\x6f\x05\x6b\x6b\x80\x53\x0a\xf7\x40\xba\xf7\x3f" +"\x68\x0a\x0b\xf8\x6f\xf9\x2e\x15\x36\x31\x63\x42\x3b\x1f\x26\x2e\x50\xfb\x0e\xfb\x09\x1a\xfb\x20\xe6\x28\xf7\x13\xf7\x64\xf7\x5e" +"\xf7\x66\xf7\x76\x96\x1e\xf7\x21\x92\x2a\xf6\xfb\x1a\x1b\x81\x6a\x15\xdb\xbc\x51\x2d\xfb\x00\x5c\xfb\x26\x4a\x2d\x1f\x3c\x54\x4e" +"\x64\x44\x1b\x37\x5d\xc7\xf7\x01\xea\xe6\x1d\x0b\xf9\x91\x69\x1d\x8e\x0a\xae\xa7\xf7\x00\xd6\xf7\x9a\x1f\x9f\xd0\x9b\x99\xd0\x93" +"\x44\x0a\xf7\x13\xf7\x17\xde\xd2\xf7\x2a\xb7\x1e\xde\xf7\xb1\xb1\xf7\x16\x8f\x90\xc9\x99\x19\x0b\x54\x0a\x9b\x7e\x80\x92\x41\x1d" +"\x06\x91\x9d\x05\x0b\x94\x83\x05\x90\x0b\xb0\x1d\x0e\x8a\x89\x81\x1f\x0e\x9b\xf8\x27\x15\x9f\x8c\xae\x8a\x91\x89\x92\x76\x19\x97" +"\x6a\x9c\xfb\x1c\x8f\x2d\x8f\x33\x18\x64\x8d\x8d\x83\x94\x1b\x96\x9c\xa4\xd0\xaf\x1f\x90\x96\x9f\xae\xa9\xc0\xe4\xf7\x30\x18\xa8" +"\xfb\xd3\x05\x70\x8d\x8d\x88\x92\x1b\x93\x95\x94\xad\xa6\x1f\x8b\x90\x91\x8f\x90\x1e\xf7\x1d\xf7\x38\xd6\xf7\x10\xcb\x1a\xaa\x75" +"\xa1\x6d\x72\x7d\x7e\x76\x7e\x90\x82\x9b\x7d\x1e\x9b\x7c\x91\x80\x7f\x1a\x60\x69\x56\xfb\x17\xfb\x37\x1e\x6b\xf7\xf4\x05\x96\x89" +"\x8e\x85\x86\x88\x89\x83\x86\x1e\xfb\x54\xfb\xc4\x88\xd1\x80\xf4\x80\xd0\x19\xcb\x80\x89\x92\x7f\x1b\x85\x80\x88\x87\x7e\x1f\x8a" +"\x67\x84\x6b\x86\x1e\x87\x80\x89\x89\x80\x1f\x0b\xf9\x58\x23\x0a\x7c\x8f\x05\x73\x7a\x7a\x81\x70\x1b\x81\x80\x8d\x93\x75\x1f\x9b" +"\x5c\x5d\x93\x62\x1b\xfb\x67\xfb\x54\xfb\x5c\xfb\x70\x47\xa8\x45\xba\x5b\x1f\x58\xbe\xd4\x70\xe2\x1b\xe3\xd3\x9e\xb6\xd8\x1f\xbc" +"\xf7\x4f\x9c\xc3\x9a\x97\xcc\x8f\x19\x9b\xfb\x9e\x7b\x07\xc0\x85\x8b\x8b\x98\x84\x08\x92\x87\x90\x82\x83\x1a\x75\x84\x6d\x76\x43" +"\x1e\x76\x44\x87\x82\x7f\x7f\x08\x75\x75\x65\x7f\x5e\x1b\xfb\x15\x42\xd5\xf7\x17\xf7\x0f\xbc\xf7\x14\xda\xde\x1f\xba\xb8\xc9\xa6" +"\xcd\x1b\xcc\xc2\x70\x5d\xa9\x1f\x9b\x72\x92\x75\x90\x5f\x9d\x88\x18\x0b\xe6\xf9\x11\x15\xc3\x83\x8e\x88\x9c\x54\xd8\xfb\xa1\x18" +"\x4e\xfb\x68\x7a\x55\x75\x7b\x49\x87\x19\x7b\xf7\xb5\x9b\x07\x7b\x8c\x7f\x8c\x83\x8c\x7a\x8c\x7d\x8e\x81\x90\x08\x84\x90\x86\x95" +"\x98\x1a\xa0\x92\xa9\xa3\xd9\x1e\x8e\x94\x8d\x92\x8c\x8f\xa8\xf0\x18\xf7\x6f\xf7\xa2\xab\xb3\x93\x92\xa9\x99\x19\x9b\xfb\x51\x7b" +"\x07\xbb\x86\x8b\x8b\x96\x84\x48\x1d\x70\x5d\x4a\x23\xfb\x0d\x1e\x7a\x77\x85\x83\x7c\x79\x7f\xb7\x86\x9c\x7d\xbc\x08\x72\xe1\x56" +"\x0a\x90\xc7\x91\x1e\x9b\xfb\x83\x07\x0b\xfa\x1e\x22\x0a\xfb\x4d\x7b\x06\xc1\x86\x96\x84\x6f\x1a\x7a\x84\x74\x7d\x70\x1e\xfb\x4f" +"\xfc\x04\x63\xf8\x26\x05\x8a\x90\x8b\x92\x8e\x1a\xb3\x99\x98\xc1\x90\x1e\x9b\xfb\x82\x7b\x07\xc5\x89\x95\x84\x92\x5a\x94\x46\x18" +"\xfb\x40\xfb\xf0\x5f\xf8\x2a\x05\x8a\x90\x8b\x92\x8d\x1a\xb2\x97\x94\xc8\x92\x1e\x9b\xfb\x80\x7b\x07\xac\x87\x94\x88\x94\x82\x97" +"\x80\x8f\x78\x97\x2f\xc9\xfc\x99\x18\x9e\x06\xf7\x72\xf8\x5a\x05\x90\x06\xbd\xfc\x5a\x05\x9f\x06\xf7\xc3\xf8\xdb\xa6\xbe\x95\x94" +"\xb1\x97\x19\x0b\xaf\xf7\x26\x15\x77\xfb\x33\x05\x9b\x06\x9c\x94\x8f\x8f\x96\x1b\x96\x9d\x87\x86\x9f\x1f\x84\xa2\x9a\x88\x9c\x1b" +"\xdf\x6f\x0a\x0b\xf9\x6b\x69\x1d\xc4\x86\x98\x81\x67\x1a\x7f\x89\x80\x84\x76\x1e\x8a\x88\x8a\x87\x8a\x1a\x25\xfc\x10\xfb\x64\xf8" +"\x87\x05\xfb\x35\x7b\x06\xba\x87\x9f\x7e\x9e\x64\xfb\x0b\xfc\x35\x18\x65\xfb\x14\x83\x7f\x52\x83\x08\x7b\xf7\x5a\x9b\x07\x57\x8f" +"\x79\x96\xa7\x1a\x98\x8e\x9f\x91\xa0\x1e\xf7\x06\xf8\x3a\xf7\x7a\xfc\xba\x05\x9d\x06\xf7\x24\xf8\x8b\xb0\xf7\x16\x8f\x90\xca\x99" +"\x19\x0b\xdc\xf7\xc9\x15\x9f\xbc\x9a\x96\xb9\x8a\x08\xf7\x26\x06\xfb\xca\xfc\x08\x94\x82\x05\x98\x9b\x98\x90\x9b\x1b\xa5\xab\x7e" +"\x6e\xba\x1f\x6c\xbd\xac\x7e\xa8\x1b\xbd\xb7\xaf\xb3\xa1\x7d\x99\x76\x77\x7d\x7e\x78\x83\x8e\x82\x91\x7f\x1f\x8e\x85\x8d\x85\x88" +"\x1a\x82\x80\x85\x7b\x72\x7f\x94\xb4\x6a\x1e\x5f\xc4\x78\x98\x51\x98\xf7\xb6\xf7\xec\x18\x96\xfb\xb0\x07\x6c\xfb\x07\x05\x0b\xf8" +"\x27\x22\x0a\xfb\xa5\x7b\x06\xca\x85\x99\x83\x6e\x9f\x0a\xf8\x91\x07\xc5\xf7\x47\x77\x91\x68\x43\x70\x6b\x5f\x75\x19\x7a\x68\x62" +"\x85\x33\x1b\x40\x72\x93\xa5\x93\x8f\xa0\x91\xa0\x1f\xf7\x0f\xf8\x4f\x9a\xbe\xa5\x9e\xc7\x8f\x19\x0b\x73\x7e\x35\x1d\x9b\x1a\x95" +"\x8d\x9b\x8f\x9a\x1e\x0b\x86\x83\x89\x8a\x88\x88\x0b\xf8\x68\x5d\x0a\x6a\x8d\x48\x08\x0b\xf9\x20\x7d\x1d\x0b\xf8\xf2\x22\x0a\xfc" +"\x7a\x06\x5d\xfb\x26\x9e\x86\xb6\xe7\xae\x9e\xf7\x17\x8f\x19\xf7\x3f\x06\xfc\x73\xfc\xef\x05\x7d\xf8\x8d\x07\xc1\xf7\x3c\x78\x8e" +"\x57\xfb\x03\x61\x74\xfb\x30\x8a\x19\xfb\x35\x06\xf8\x77\xf8\xef\x05\x0b\x54\x0a\x9c\x7e\x80\x91\x41\x1d\xa5\x0a\x81\x83\x87\x85" +"\x84\x1e\x0e\x1f\x7a\x6e\x05\x7b\xb5\xa2\x86\xa7\x44\x1d\x0b\x8e\x9b\x93\x8c\x94\x1b\x9e\x93\x84\x0b\x1a\xb3\x72\xaa\x6a\x6e\x75" +"\x77\x0b\x90\x99\x6d\x1f\x9c\x65\x0b\xb5\x1e\xd3\xf7\xd4\x05\x0b\xf7\x0d\x16\xbf\xf7\x3f\x9c\xb4\xb9\xd8\x08\xc3\xad\xa6\xaa\x9c" +"\x1b\x92\x8f\x87\x81\x90\x1f\x7a\x93\x93\x86\x9f\x1b\xa9\x9b\x9d\xab\xef\x1d\x60\x63\x51\x7b\x63\x7d\x67\x18\xc0\xf7\x6d\x88\x8d" +"\x42\x7e\x82\x89\x42\x7f\x19\x7a\x07\x8f\xa1\x8f\xc3\x1d\x0b\xf7\x8e\x9d\x15\x35\x0a\xf7\x0f\xf8\x5d\x3f\x1d\x0e\xf7\x67\x72\x0a" +"\x0b\x08\x9b\xfb\xa5\x7b\x07\xce\x85\x96\x85\x6e\x1a\x7f\x88\x7b\x87\x7a\x1e\x56\xfb\x54\x05\x6d\xfb\x01\x7e\x4d\x61\x1a\x2c\xe6" +"\x46\x0b\x15\x70\x77\x75\x6c\x6b\x9e\x76\xa8\xa5\xa2\xa2\xa7\xa8\x74\xa5\x70\x1f\x0e\xf7\x11\xf7\xca\x49\x0a\x8e\x9b\x92\x8c\x94" +"\x1b\x9e\x93\x84\x7a\x80\x89\x7f\x86\x78\x1f\x30\xfb\xe8\x05\xd3\x06\x0b\x3e\x0a\x71\x79\x91\x80\x9e\x7a\x1e\x9a\x7d\x90\x83\x80" +"\x1a\x0b\x15\xa1\x0a\x9a\xbe\xa5\xaf\x0a\x7c\x0b\x7a\x47\x77\x79\x4e\x8a\x19\x86\x79\x05\xf7\x97\x06\x0b\x15\x6d\x72\x72\x6b\x6e" +"\xa4\x72\xa7\xab\x36\x1d\x0b\x6f\x75\x76\x70\x5b\x1d\x0b\x82\x60\x88\x86\x78\x18\x3d\x0a\x0b\x4a\x1d\x76\x0b\x1b\x9e\x93\x84\x7a" +"\x81\x89\x7f\x86\x78\x1f\x0b\x5f\xad\x4e\xfb\x2a\xfb\x20\xfb\x26\xfb\x30\x0b\x1a\xa0\x79\x9c\x76\x76\x7b\x0b\x82\x82\x1b\x83\x85" +"\x91\x92\x9f\xb5\x0b\x15\xaa\x06\xfb\x08\xf7\x29\x05\x0b\x79\x05\xf7\x65\x29\x0a\x0b\x80\xb6\x9a\x1a\xa4\x97\x0b\x1a\x7c\x88\x77" +"\x83\x70\x1e\x0b\xa8\xb0\xae\xa9\xa9\xae\x1f\x0b\xf7\x95\xf7\xde\x6e\x1d\xf7\x99\xf7\xf1\x15\x86\x1d\x82\x89\x89\x78\x91\x0a\xab" +"\x98\x89\x86\x95\x1f\x98\x85\x93\x7e\x7b\x1a\x81\x89\x7d\x87\x7c\x1e\xfb\x0f\xfc\x5e\x82\x0a\x0b\xf9\x1d\x23\x0a\xfc\x8c\x7b\x06" +"\xca\x85\x9b\x83\x6f\x1a\x7f\x86\x6c\x85\x76\x1e\xfb\x0d\xfc\x55\x7a\x51\x84\x84\x52\x81\x19\x7b\xf8\x96\x07\xc9\xf7\x38\x7a\x93" +"\x5d\x4a\x70\x71\x5f\x77\x19\x79\x66\x47\x81\x3d\x1b\x53\x73\x95\xa3\x98\x96\xbb\xa3\xe3\x1f\x90\x9a\x98\xbe\x98\xbe\xbb\x88\x18" +"\xb9\x8a\xa8\x8a\xa3\x87\x93\x84\x19\x94\x84\x8d\x84\x75\x1a\x79\x8a\x81\x86\x74\x1e\x9f\x86\xce\xf7\x7f\x78\x90\x66\x34\x81\x85" +"\x30\x87\x19\x7e\x6b\x8a\x8a\x67\x1f\xcc\xf7\x81\x05\xa2\x91\x95\x8e\xc6\x1b\xf7\x33\xae\x7d\x4e\x7b\x8b\x7f\x8a\x7a\x1f\xa0\x89" +"\x05\x0b\xf8\x63\xf7\x03\x15\xe7\x1d\xf7\x0a\xad\xf7\x04\x1f\xa2\xdb\x9f\xd4\xc3\xf7\x6f\x86\x90\x18\x57\x80\x67\x86\x4a\x84\x08" +"\x7a\x07\xc2\x89\x92\x88\x76\x1a\x7d\x8a\x88\x7d\x56\x1e\x5f\xfb\x38\x8f\x1d\xfb\x38\xf7\xd1\x87\x0a\x0b\xf8\x68\x15\x7c\x1d\x7a" +"\xb9\xa6\x85\xaa\x9b\x1d\x0b\xf7\x9e\xf7\xdf\x15\xd8\x06\xbf\xa2\x7d\x6a\x7b\x89\x82\x84\x6a\x1f\x9c\x06\xcd\xf7\x85\x05\x78\x06" +"\x74\x3d\x6c\x73\x3e\x5e\x1d\xf2\x06\xf0\xb2\x73\x4d\x7f\x8a\x84\x87\x7a\x1f\x9d\x06\xb5\xf7\x32\x05\xfc\x75\x25\x1d\xae\x98\x8a" +"\x85\x95\x1f\x98\x85\x93\x7e\x7c\xba\x0a\x78\x79\x50\x89\x20\x1d\xf8\x82\x06\xc8\xf7\x50\x05\x7b\x06\x75\x5b\x77\x71\x62\x1d\x37" +"\x7e\x8f\xa3\x92\x8c\x90\x8f\x9a\x1f\x0b\xbb\xf7\xda\x15\xe5\x06\x4a\xfb\x80\x7a\x51\x83\x99\x1d\xd5\x0a\x72\x84\x73\x1e\x5d\xfb" +"\x38\x05\x31\x06\xf7\xeb\x16\xfb\x2d\x06\xca\xf7\x76\x05\xa1\x91\x9b\x92\xb6\x1b\xf7\x1c\xd6\x3f\xfb\x1f\xfb\x01\x61\xfb\x03\x47" +"\x47\x1f\x4f\x50\x3a\x6d\x23\x1b\x5d\x78\x96\xa5\x97\x8e\x98\x9c\xc9\x1f\x8d\x93\xb9\xf7\x38\x05\xf7\x2d\x06\x0e\x15\x97\x79\xa1" +"\x70\xac\x64\x94\x81\x92\x82\x90\x83\x08\x63\xa6\xa4\x6f\x94\x1b\x8f\x8e\x8e\x8f\x95\x72\xc2\x66\xcf\x1f\x88\x90\x83\x9c\x82\x9d" +"\xa6\xa9\xa1\xa2\x9b\x99\x98\x97\x98\x98\x98\x98\x08\xaf\xb1\x9b\xa2\x98\x1a\x8f\x88\x8e\x88\x84\x0b\x15\x87\x79\x05\x9e\x06\xba" +"\x8a\x9f\x7a\x99\x58\xf7\x10\xfc\x3e\x18\x45\x61\x73\x70\x78\x1b\x81\x80\x91\x95\x82\x1f\xb4\x66\x88\x8d\x73\x1b\x6d\x75\x75\x6c" +"\x60\xb5\x69\xc2\xb8\xb1\x9e\xb1\xa9\x1f\xad\xb5\x92\x95\xdc\xf7\x16\xf7\x37\xf7\x9c\x18\xd7\xf7\x0e\xaf\xae\xc2\x8e\x90\x9d\x18" +"\xfb\x65\x22\x1d\xa8\x06\xa5\x9a\x84\x7f\x7e\x87\x84\x60\x47\x1f\xfb\x4d\xfb\xb8\x3e\xf7\xde\x05\x8a\x92\x8a\x91\x94\x1a\xab\x9c" +"\x9a\xb0\x1e\xa0\x29\x0a\x0e\xf9\x11\x15\xc4\x84\x99\x82\x71\xa2\x1d\x96\x8d\x93\x95\xb1\x1e\xc0\xf7\x55\x05\x85\xa5\xa3\x89\xb5" +"\x1b\xdd\xcf\x9c\xaa\xb5\xdd\x1d\xfb\x8c\x06\xf7\x44\x51\x15\xa0\x91\x97\x92\xa7\x1b\xb2\xb1\x82\x7c\x9f\x1f\xa5\x79\x96\x6d\x5c" +"\xd7\x1d\x86\x8b\x90\x6e\x1f\x0b\xf9\x91\x69\x1d\x8e\x0a\xad\xa9\xf7\x09\xcf\xf7\x7f\x1f\x8d\x92\x8d\x91\x8c\x91\xa0\xd1\x9b\x99" +"\xcf\x92\x44\x0a\xf7\x13\xf7\x17\xde\xd2\xf7\x2a\xb7\x1e\xde\xf7\xb1\xb1\xf7\x16\x8f\x90\xc9\x99\x19\x0b\xf7\x5d\xf8\x14\x15\x87" +"\xaa\x86\x9b\x7d\x9a\xfb\x1b\x6c\x18\x87\x7b\x05\x8f\x99\x91\x8c\x94\x1b\xb8\x9b\x70\x37\x93\x1f\xa5\xfb\xbe\x05\x41\x4e\x64\x66" +"\x7b\x1b\x86\x88\x8d\x93\x89\x1f\x9b\x85\x82\x92\x7c\x1b\x73\x74\x75\x75\x76\x9d\x79\xa1\xc1\xf7\x07\xf7\x06\xf7\x4c\xf7\x19\x1f" +"\xde\xf7\x08\xb8\xe0\xb5\x1a\xb2\x75\xa7\x6c\x74\x7b\x7c\x74\x75\x9a\x77\xa2\x84\x1e\x96\x88\x8f\x86\x81\x1a\x67\x41\xfb\x0c\x30" +"\xfb\x03\x1e\x0b\xf7\xe7\xf7\x29\x15\x37\x63\x5b\x62\x4f\x1b\x56\x67\xb2\xc5\xb9\x9d\xaf\xae\xa5\x1f\x77\xba\xa0\x86\xa9\x1b\xac" +"\x9e\x97\xa0\x9f\x76\x97\x67\x6e\x78\x87\x7d\x64\x1f\x87\x9a\x8a\x93\x93\x1a\xd7\xb6\xc8\xc1\xaa\x9d\x7a\x6e\x8c\x1e\x8c\x72\x8b" +"\x8b\x90\x81\x08\x7e\x92\x98\x83\x9b\x1b\xa5\x9e\x9f\xa7\xb9\x58\xac\x46\x23\x3c\x57\x46\x6a\x97\x75\xae\x71\x1f\x42\x6f\x5d\x57" +"\x54\x1a\x48\xc8\x59\xdf\xe6\xc9\xba\xf1\xb8\x1e\x0b\xf8\x3e\xf1\x15\x5d\x68\x77\x79\x7b\x1b\x84\x85\x91\x92\x92\x8b\x8c\x92\xa5" +"\x1f\xe8\xf7\xf1\x05\x43\x06\xfb\x00\x74\x2e\xfb\x04\x47\x1b\x7b\x83\x94\x9d\x92\x8b\x8d\x8f\x97\x1f\xbc\xf7\x4b\x5a\x7f\x56\x81" +"\x5e\x88\x20\x1d\x3d\x0a\x7a\x80\x89\x82\x85\x75\x1f\x76\x3d\x05\x88\x7e\x87\x71\x7f\x1a\x68\xa1\x73\xad\xaa\xad\x99\xa6\xae\x1e" +"\xad\xa5\x9e\xa1\xaf\xc0\x4c\xfb\x80\x18\x89\x0b\xf7\xd6\xfb\x40\x15\xf7\x17\xf8\x7f\x05\x91\xa3\x8f\xa2\x9e\x1a\xae\x73\xa3\x67" +"\x53\x4d\x54\xfb\x16\x31\x1e\xa7\xf0\x05\x8e\x98\x8d\x99\x94\x1a\xa9\x7a\x9d\x70\x53\x4f\x57\x37\x64\x1e\x9d\x80\x05\xc0\xa5\xb1" +"\xb5\xa2\x1b\x95\x92\x82\x7f\x85\x8b\x8b\x80\x63\x1f\x35\xfb\xd9\x05\xd3\x06\xb1\xf7\x21\x9c\xcc\xbc\xd7\xc9\xc5\x19\xac\xad\x9b" +"\x95\x9c\x1b\x9a\x94\x80\x79\x79\x8a\x88\x7d\x59\x1f\xfb\x12\xfc\x5b\x05\x0b\x77\x0a\x6e\x97\x7f\xa7\xb3\xa3\x9e\xe6\xd6\x1e\x7b" +"\x0a\x0b\x37\x1d\xc3\xc3\x3e\x0a\x71\x78\x38\x1d\x70\x56\x68\x1e\x0b\x1b\x3c\x30\x62\x43\x3c\x1f\x26\x2e\x50\xfb\x0d\xfb\x09\x1a" +"\x30\xa8\x4e\xcd\x5b\x1e\x35\xfb\x13\x05\xb7\x06\xd5\xf7\x00\x05\x7c\xb1\xa4\x85\xaa\x1b\xf7\x66\xf7\x64\xf7\x73\xf7\x76\xb9\x7f" +"\xbb\x75\xb0\x1f\x7c\xa4\x7e\x98\x6b\xa5\x08\xfc\x33\xfc\xbc\x15\x79\xad\x84\xa9\xb1\x1a\xf3\xba\xf7\x23\xca\xe6\x1e\xdb\xc2\xca" +"\xb2\xd2\x1b\xad\xa2\x84\x78\xa4\x1f\xa3\x6a\x15\x9c\x0b\xf7\xf2\x6c\x0a\x0e\xf9\x06\x15\xf7\x27\x06\xa9\x99\x89\x84\x96\x1f\x9d" +"\x80\x96\x75\x70\x1a\x78\x89\x79\x85\x6b\x1e\x9c\x06\xb9\xf7\x42\x05\xfc\x61\x76\x0a\x0b\x15\x5d\x5d\x63\x76\x5e\x1b\x52\x64\xb7" +"\xcb\x98\x8c\x9b\x8d\x9d\x1f\xd9\x8e\xb8\x94\xb9\xa1\x08\xcf\xaa\xb6\xc2\xc3\x1a\xb6\x63\xaa\x52\xfb\x16\xfb\x1d\xfb\x2e\xfb\x25" +"\x2f\xc1\x4d\xdd\xc9\xcb\xad\xce\xc8\x1e\xfb\x7e\xf7\x12\x15\xf7\x08\xab\xd0\xdf\xc9\x1b\xa2\x9d\x78\x72\x69\x75\x62\x68\x6d\x1f" +"\x66\x6b\x67\x7f\x41\x84\x08\x0e\xf8\x7f\x22\x0a\xfb\x92\xd5\x0a\x77\x83\x6e\x1e\xfb\x17\xfc\x65\x05\x64\x80\x7d\x7c\x73\x1b\x73" +"\x80\x97\xa7\x90\x8b\x90\x8c\x90\x1f\x94\x07\xa4\x75\xa1\x70\x70\x79\x75\x6b\x56\xba\x68\xd1\xbe\xb8\x9f\xb0\xaa\x1e\xa6\xab\x9f" +"\xb8\xa0\xd7\xf2\xf8\x07\x18\x9d\xc7\x92\x91\xc4\x93\x08\x0b\xc7\xc1\xd7\xb2\x76\xb6\x5c\xc5\x1f\x65\xba\x7b\xaa\xa7\x1a\xac\xa0" +"\x9f\xae\xbf\xa9\x66\x3d\x95\x1e\x9b\x06\x9f\xf7\x1f\x05\x7d\x06\x7d\x82\x85\x87\x7c\x1b\x83\x82\x8d\x90\x78\x1f\x93\x72\x7d\x8d" +"\x7a\x1b\x41\x5c\x60\x48\x6b\xa0\x60\xb5\x55\x1f\xb2\x58\x9c\x68\x6e\x1a\x5d\x6d\x6c\x5f\x53\x6d\xb4\xea\x7b\x1e\x0b\xf8\xc1\x15" +"\xa0\x0a\x6a\x1a\x80\x89\x7f\xa4\x0a\xf7\x96\x06\xdf\xca\x99\xa7\xbb\x1f\xc9\xb0\xb0\xc8\xc5\x0a\x75\x1e\x81\x65\x15\x8d\x99\x0b" +"\xa4\x08\xb5\xa7\xa0\xac\xb1\x1a\xb6\x6c\xa6\x59\x62\x69\x79\x5d\x5c\x1e\xa1\xc9\x44\x89\x78\x60\x05\xaf\x7b\x7b\x96\x69\x1b\xfb" +"\x10\xfb\x30\xfb\x5c\xfb\x32\x54\xae\x64\xbc\xcb\xb8\xb0\xf7\x11\xe1\x1f\x86\x7a\x8a\x83\x7c\x1a\x44\xb7\x58\xca\xca\xd7\xb7\xcf" +"\xc3\x1e\xfb\xb9\xf7\xd4\x15\xa6\x8a\x9d\x77\x0b\xef\x15\x68\x73\x6f\x72\x7d\x1b\x83\x84\x91\x91\x8e\x8c\x90\x8c\x90\x1f\xf0\xf8" +"\x0f\x59\x7f\x59\x83\x5c\x87\x20\x1d\x8d\x9b\x93\x8c\x94\x50\x0a\x3f\xfb\xae\x05\x88\x7e\x89\x7e\x81\x1a\x77\x9a\x7f\xa6\xac\xb4" +"\xaa\xcc\xc1\x1e\x0b\xcf\x0a\xab\xa9\xa1\x9f\xa6\x9c\xbf\x0a\xa1\xa5\xc0\xae\x1e\x0b\x54\xfb\x13\x43\x3d\x1e\x72\x74\x6c\x7b\x71" +"\x1b\x73\x7f\xa1\xb1\x8d\x1f\x92\xf7\x27\xf7\x01\xf7\x47\xdb\x87\x08\xe0\xfb\x5a\x15\xa9\xe4\x9d\xad\xae\xb1\x08\x9f\x9f\xa2\x97" +"\xa2\x1b\xa2\x97\x7e\x74\x75\x84\x76\x7e\x77\x1f\x6c\x5c\x60\x73\x31\x74\x08\x0b\x5c\x1d\xa6\x94\xa0\x94\xb5\x08\x0e\x66\x1d\x7d" +"\x87\x7e\x9d\x1d\x9d\x1a\x96\x8d\x96\x8f\x9c\x1e\x0b\x1f\x8e\x95\x8c\x8d\x8d\x94\x84\x8e\x18\x4e\x84\x88\x88\x80\x5b\x05\xb0\x83" +"\x6e\xa0\x60\x1b\xfb\x19\xfb\x2d\xfb\x4a\xfb\x33\x45\xb1\x62\xcb\xd1\xb6\xac\xf7\x10\xe3\x1f\x76\x39\x89\x83\x72\x1a\x0b\x1f\x9c" +"\x87\xd0\xf7\x7c\x79\x8f\x61\x30\x81\x86\xfb\x33\x8a\x19\xc8\xf7\x72\x05\xac\x94\x93\x8f\xbb\x1b\xf7\x37\xa7\x7f\x45\x84\x8b\x7b" +"\x8a\x7e\x1f\x9c\x89\xac\xf7\x2d\x05\xfc\x99\x7c\x06\x0b\xd6\x06\xb3\xf7\x2e\x98\xad\xb3\xc8\x08\xda\xbf\xcf\xc9\xae\x1b\x9a\x98" +"\x7f\x7e\x87\x88\x7e\x87\x7b\x1f\x54\xfb\x63\x05\x7e\x5a\x84\x6c\x7f\x1a\x71\x9c\x7b\xa7\xbd\xae\xa6\xe2\xc7\x1e\x0b\xf7\x32\xa8" +"\xb0\xd1\xc3\x1b\x99\x93\x36\x0a\x87\x43\x1d\x9e\x9d\xa1\xb1\x66\xa6\x59\x5b\x64\x75\x5d\x67\x1e\x6d\x63\x0b\xfb\x3b\xf7\xd3\x15" +"\xad\x89\xa1\x73\x68\x1a\x37\x58\xfb\x0a\x47\x41\x1e\x70\x73\x69\x7a\x6e\x1b\x67\x75\xa7\xb9\xc3\xb0\xf0\xb7\xca\x1f\xb3\xc5\xb9" +"\xab\xb4\x88\x08\x0b\x2a\x0a\x99\x93\x8d\x95\x85\x0a\x0b\x86\x79\x05\xf7\x54\x06\xf7\x28\xbd\x93\xad\xc0\x1f\xc6\xaf\xaf\xca\xce" +"\x1a\xd1\x68\xb7\x3f\xa6\x1e\xbf\x99\xa2\x95\xa4\x9f\x08\xb2\xa9\xa4\xbc\xb8\x1a\xb4\x0b\xc0\x48\xd9\xd1\xbd\xac\xdd\xc5\x1e\x87" +"\x6f\x8a\x7e\x7e\x1a\x67\x9b\x72\xa2\xb2\xb2\xb4\xe9\xbb\x1e\xfb\x5f\xad\x15\x2b\x68\x61\x5a\x5b\x1b\x64\x76\xab\xc6\x0b\x15\x42" +"\x1d\xf7\x2e\x16\x42\x1d\x0b\xf7\x34\xf8\x48\x9a\x1d\x0b\xf9\xce\xf7\x3d\x15\x20\x43\x51\x6e\xfb\x2a\x1b\x6d\x06\x68\x7b\x94\x9f" +"\x97\x9a\xc5\xbc\xf7\x40\x1f\x92\xa3\x05\xb3\x06\xec\xa0\x82\x62\x0b\xcd\x1d\x67\x7f\x8d\x90\x81\x1f\x7e\x92\x83\x98\x9a\x1a\x98" +"\x8d\x97\x8e\x9a\x1e\x0b\x15\xfc\xa0\x07\x3a\xf7\x66\x56\x74\xf7\x13\xfb\xb2\x05\xd8\x06\xf7\x14\xf7\xb2\x56\xa2\x3a\xfb\x66\x05" +"\xf8\xa0\x07\xdc\xfb\x66\xc0\x0b\x48\x55\x7f\x7f\x7b\x1b\x82\x84\x93\x95\x96\x9b\xc9\x9c\xbf\x1f\xa8\xe8\x9e\xd6\xa4\x1a\xb3\x70" +"\xa6\x64\x4a\x44\x4a\xfb\x26\x2e\x1e\x0b\x4f\x0a\x7a\x8f\x96\x6d\x3c\x0a\x0b\x72\x77\x78\x73\x72\xa0\x76\xd3\x0a\x0b\x15\xa9\x89" +"\x9a\x78\x67\x1a\xfb\x2c\x23\xfb\x40\x2f\x68\x74\xa5\xb3\xdd\xbd\xf7\x09\xcd\xd1\x1e\xa7\xa8\xb0\x9e\xa7\x89\x08\x0b\x73\x1a\x6e" +"\x9e\x77\xa8\xb3\xae\xa7\xd8\xc4\x1e\x7b\x94\x79\x76\x80\x7f\x87\x86\x19\x75\x75\x7e\x82\x81\x1b\x85\x86\x8f\x91\x0b\x19\x86\x78" +"\x05\x3d\x0a\x79\x81\x89\x80\x86\x77\x1f\x51\xfb\x6d\x05\x82\x6a\x89\x7f\x79\x1a\x0b\x99\xd5\x21\x1d\xfb\xa3\x06\x85\x4c\x1d\x0b" +"\x1a\x90\x89\x8f\x88\x89\x87\x8a\x89\x87\x1e\x87\x8a\x87\x8a\x05\x85\x7d\x8b\x8b\x85\x1b\x86\x80\x8d\x8d\x7c\x1f\x90\x0b\x06\xf7" +"\x3f\xf5\x05\x97\x93\x90\x93\x97\x1a\x0b\xd1\x0a\xa3\xa6\x74\x9d\x68\x60\x72\x76\x48\x64\x1f\x5b\x38\x6a\x71\x48\x83\x08\x0b\xc0" +"\x86\x9d\x80\x6d\x1a\x7b\x71\x27\x5b\xfb\x3f\x1e\x7e\x5a\x05\xfb\x38\x5f\x4b\x47\xfb\x02\x1b\x38\x52\xba\xd2\x0b\xbc\x0a\x79\x7d" +"\x6a\x1d\x0b\x5a\x67\x4d\x1b\x4c\x63\xaf\xca\x87\xf7\x01\x1d\xa1\xae\x7c\xb8\x1b\xc0\x0b\x7b\x1e\xfb\xab\xfb\x7e\xbe\xf7\x53\x9d" +"\xd2\x9e\x9a\xcc\x8c\x19\x90\x9d\x05\xfb\x9f\x22\x1d\x0b\xb4\x1d\x84\x1e\x0e\xc4\x1d\x82\xd6\x0a\x15\xae\x06\xf7\x3f\xf5\x05\x97" +"\x92\x90\x94\x97\x1a\xa0\x7b\x9a\x77\x81\xd6\x0a\xd4\x96\x0a\x0b\x15\xae\xb3\x1d\x0b\x76\x7b\x7a\x74\x67\xac\x71\xb8\xe5\xd0\xec" +"\xf7\x4e\x40\x0a\xf7\x2f\x06\x96\x0b\xf7\xbd\x15\x64\x8c\x81\x8f\x9b\x1a\x93\x92\xa4\x97\xb3\x1e\xe1\xf7\xa6\x05\x8d\x91\x8c\x0b" +"\x35\x92\x87\x8d\xb0\x1a\x97\x8d\x95\x95\xaf\x1e\x0b\x15\xd9\x06\xc0\xa2\x7c\x6a\x7b\x89\x81\x84\x6c\x1f\x9c\x06\xcb\xf7\x85\x05" +"\x7a\x06\x0b\x9d\x1f\x8c\x8f\x8c\x8e\x8c\x8c\x08\x8d\x07\xd0\xf7\x9d\xed\xbd\x97\xb9\x05\x0e\x15\x6c\x73\x72\x6b\x6d\xa3\x73\xa9" +"\xab\xa4\xa3\xa9\xab\x72\xa4\x6c\x1f\x0e\x8c\x0a\x9f\x7b\x9b\x76\x82\x82\x87\x85\x0b\x15\xa7\xaa\x9b\x93\xa5\x1b\xa7\xa1\x75\x6d" +"\x5e\x5c\x6d\x27\x78\x1f\x82\x07\x0b\xc1\x1d\x7b\x0b\xd4\x9e\x9d\x99\xd5\x34\x1d\xc2\x8a\x9c\x81\x0b\x6d\x72\x72\x6b\x6e\xa4\x72" +"\xa8\xaa\x36\x1d\x0e\x15\xa9\xa4\x72\x6d\x6d\x72\x72\x6d\x6e\x71\xa4\xa8\xaa\xa4\xa4\xa9\x1f\x0b\x88\x19\x7b\x07\xc1\x8a\x94\x88" +"\x77\x1a\x0b\x87\x7d\x1e\xfb\x0e\xfc\x5f\x79\x47\x78\x49\x1d\x0b\x5f\x1d\x77\x0b\x6f\x75\x76\x70\x6e\xa1\x75\xa7\xa6\xa1\xa1\xa6" +"\xa5\x73\xa3\x72\x1f\x0b\xcd\x0a\x42\x2c\x1a\xfb\x08\xb8\x0b\x1b\xf0\xbe\x5f\x35\x22\x37\x41\xfb\x0b\x77\x7d\x8c\x90\x6f\x1f\x0b" +"\xb5\x60\xc0\xde\x1d\x0b\x6a\x1a\x5d\x6b\x6d\x5c\x5b\x6d\xa7\xb7\xba\xa6\xab\xc8\xa4\x1e\x0b\xf7\xae\xf7\x93\x15\xfb\x6f\x06\x7d" +"\x4c\x05\xf7\x70\x06\x0e\xf7\xe5\xe8\x1d\x0e\xf7\x0d\xd9\xdc\x1f\xbc\xbb\xca\xa7\x0b\xf8\x1b\xf7\x2c\x15\x54\xf8\x92\x05\xfb\x45" +"\x06\x86\x79\xac\x0b\x9e\xc7\x8f\x19\x9b\xfb\xa5\x7b\x07\xca\x85\x99\x83\x6e\x1a\x0b\xbc\xb4\xa5\xbe\xae\x1e\x7a\x9d\x05\x75\x70" +"\x73\x81\x6b\x1b\x0b\xdb\x1d\x0e\x1b\xbb\xac\xb0\xce\x99\x1f\x0e\x24\x0a\x70\x84\x8c\x8f\x80\x1f\x7b\x90\x81\x9a\x0b\x86\x90\x4f" +"\x7d\x64\x85\x51\x84\x19\x7b\x07\xa5\x8c\x05\x0b\x9d\x05\x55\x8c\x7a\x96\xab\x1a\x95\x8d\x97\x8f\x9b\x1e\x0b\x8c\x8f\x81\x1f\x7b" +"\x91\x81\x99\x0b\x1e\xfb\x0f\xfc\x4e\x0b\x84\x7e\x89\x85\x81\x1a\x73\x9a\x7d\xa3\xa7\x9f\x9e\x0b\x15\x64\x71\x7a\x7f\x6c\x1b\x76" +"\x76\x90\x94\x7a\x1f\x0b\x1a\x7f\x89\x7d\x87\x7d\x1e\xfb\x0e\xfc\x5e\x7a\x48\x0b\x1b\x7b\x78\xf7\xb8\x9e\x7a\x06\x55\x77\x9f\xc2" +"\x1f\x0b\xf7\x72\xf7\x06\x15\x72\x6a\x85\x83\x81\x81\x08\x7a\x0b\x79\x47\x78\x7a\x4e\x89\x20\x1d\xf7\x89\x06\x0b\xa3\xb8\xad\x1f" +"\x9f\xa6\x93\xa1\x94\xb5\x08\x0e\x85\x96\x78\x9c\x1e\x7c\x99\x86\x93\x96\x1a\xa6\x0b\x8b\x8b\x8e\x8f\x08\x98\x95\x97\x92\x96\x1b" +"\x92\x0b\x1f\x7a\x6e\x05\x7b\xb4\xa2\x86\xa8\x1b\xd1\xbc\x0b\xa8\xc8\xc9\x1e\xee\xec\xca\xf7\x1e\xf7\x0b\x1a\x0b\xf9\x31\xf9\x66" +"\x15\x5f\x06\x57\x3d\x05\x9b\x65\x0b\x4d\xf3\x1d\x05\x0b\xce\x1a\xf7\x01\x33\xcf\xfb\x23\x7b\x81\x8a\x89\x0b\xfb\x14\xf7\xb2\x05" +"\x3e\x06\xfb\x13\xfb\xb2\xc0\x0b\x06\xdb\xf7\x68\x05\x4e\x06\x3b\xfb\x68\x05\x0b\x06\x3b\xfb\x69\x05\xc9\x06\xda\xf7\x69\x05\x0b" +"\x1b\xa2\x9f\x81\x7f\x89\x8a\x88\x88\x87\x1f\x0b\xda\x69\x1e\x7d\xad\xa6\x87\xd0\x1b\xf7\xac\x0b\xf7\x6f\xcd\xfb\x6f\xf7\x70\x49" +"\x06\x0e\x81\x5d\x7d\x7f\x60\x8a\x08\x7b\xf7\x61\x0b\x06\x38\x68\x84\x72\x66\x1f\x4a\x60\x69\x0b\x8b\x83\x90\x08\x85\x8f\x89\x91" +"\xae\x1a\x0b\x15\x36\x5c\x5e\x54\x52\x1a\x63\xa4\x6c\x0b\x93\x8c\x94\x1b\x9d\x93\x84\x7c\x80\x89\x0b\x1f\x7d\x99\x91\x88\x9a\x1b" +"\xa7\x9c\x9a\x0b\x1f\xe3\xf7\xe5\x05\x43\x06\x75\x3d\x05\x0b\xa4\xa4\x9e\x9e\xa3\xa4\x76\xa0\x73\x1f\x0b\x65\x72\x60\x1b\x5c\x6c" +"\xaf\xc2\xd5\xa8\x0b\x7b\x06\xca\x85\x99\x83\x70\x1a\x7c\x87\x0b\x83\x88\x84\x84\x1e\x0e", 56086 +}; diff --git a/dviware/dvisvgm/src/fonts/NimbusRoman-Regular.cff.cpp b/dviware/dvisvgm/src/fonts/NimbusRoman-Regular.cff.cpp new file mode 100644 index 0000000000..cd38304e97 --- /dev/null +++ b/dviware/dvisvgm/src/fonts/NimbusRoman-Regular.cff.cpp @@ -0,0 +1,1522 @@ +#include "Base14Fonts.hpp" + +extern const MemoryFontData NimbusRoman_Regular_cff = { +"\x01\x00\x04\x02\x00\x01\x01\x01\x14\x4e\x69\x6d\x62\x75\x73\x52\x6f\x6d\x61\x6e\x2d\x52\x65\x67\x75\x6c\x61\x72\x00\x01\x01\x01" +"\x2f\xf9\xbc\x00\xf9\xbd\x01\xf9\xbe\x0c\x00\xf9\xbf\x02\xf9\xc0\x03\xf8\x18\x04\x20\x0c\x03\xfb\x3c\xfb\xad\xfa\x7c\xfa\xb1\x05" +"\x1c\x28\xad\x0f\x1c\x28\xc0\x11\xbc\x1d\x00\x00\xac\xae\x12\x01\xa6\x02\x00\x01\x00\x08\x00\x0e\x00\x13\x00\x1d\x00\x24\x00\x2b" +"\x00\x35\x00\x39\x00\x3f\x00\x45\x00\x50\x00\x5a\x00\x5d\x00\x63\x00\x69\x00\x6e\x00\x74\x00\x7a\x00\x84\x00\x8b\x00\x8e\x00\x95" +"\x00\x9c\x00\xa8\x00\xab\x00\xb3\x00\xb7\x00\xbc\x00\xc2\x00\xcd\x00\xd9\x00\xe3\x00\xe7\x00\xf2\x00\xf4\x00\xfa\x01\x04\x01\x0b" +"\x01\x12\x01\x16\x01\x22\x01\x2b\x01\x31\x01\x3c\x01\x41\x01\x4d\x01\x53\x01\x59\x01\x5f\x01\x6b\x01\x6f\x01\x71\x01\x77\x01\x7d" +"\x01\x89\x01\x8b\x01\x91\x01\x9e\x01\xa5\x01\xaf\x01\xb6\x01\xc2\x01\xcd\x01\xd0\x01\xd2\x01\xd5\x01\xdb\x01\xe1\x01\xed\x01\xf0" +"\x01\xf6\x01\xfe\x02\x09\x02\x15\x02\x1a\x02\x1d\x02\x21\x02\x27\x02\x33\x02\x38\x02\x3e\x02\x4b\x02\x52\x02\x59\x02\x60\x02\x6f" +"\x02\x7b\x02\x80\x02\x86\x02\x8c\x02\x97\x02\xa0\x02\xa6\x02\xa8\x02\xb3\x02\xb9\x02\xbf\x02\xc9\x02\xcd\x02\xd3\x02\xda\x02\xe3" +"\x02\xec\x02\xf5\x02\xfe\x03\x07\x03\x10\x03\x19\x03\x22\x03\x2b\x03\x34\x03\x3d\x03\x46\x03\x4f\x03\x58\x03\x61\x03\x6a\x03\x73" +"\x03\x7c\x03\x85\x03\x8e\x03\x97\x03\xa0\x03\xa9\x03\xb2\x03\xbb\x03\xc4\x03\xcd\x03\xd6\x03\xdf\x03\xe8\x03\xf1\x03\xfa\x04\x03" +"\x04\x0c\x04\x15\x04\x1e\x04\x27\x04\x30\x04\x39\x04\x42\x04\x4b\x04\x54\x04\x5d\x04\x66\x04\x6f\x04\x78\x04\x81\x04\x8a\x04\x93" +"\x04\x9c\x04\xa5\x04\xae\x04\xb7\x04\xc0\x04\xc9\x04\xd2\x04\xdb\x04\xe4\x04\xed\x04\xf6\x04\xff\x05\x08\x05\x11\x05\x1a\x05\x23" +"\x05\x2c\x05\x35\x05\x3e\x05\x47\x05\x50\x05\x59\x05\x62\x05\x6b\x05\x74\x05\x7d\x05\x86\x05\x8f\x05\x98\x05\xa1\x05\xaa\x05\xb3" +"\x05\xbc\x05\xc5\x05\xce\x05\xd7\x05\xe0\x05\xe9\x05\xf2\x05\xfb\x06\x04\x06\x0d\x06\x16\x06\x1f\x06\x28\x06\x31\x06\x3a\x06\x43" +"\x06\x4c\x06\x55\x06\x5a\x06\x64\x06\x6b\x06\x74\x06\x7e\x06\x85\x06\x90\x06\x9a\x06\xa3\x06\xac\x06\xb5\x06\xbf\x06\xc6\x06\xcf" +"\x06\xdb\x06\xdf\x06\xe5\x06\xeb\x06\xf6\x07\x00\x07\x03\x07\x11\x07\x15\x07\x1b\x07\x21\x07\x26\x07\x2d\x07\x3a\x07\x40\x07\x46" +"\x07\x50\x07\x57\x07\x5e\x07\x61\x07\x68\x07\x6f\x07\x7b\x07\x86\x07\x8f\x07\x92\x07\x9a\x07\xa3\x07\xae\x07\xb4\x07\xb9\x07\xbe" +"\x07\xc4\x07\xcf\x07\xdb\x07\xe5\x07\xf1\x07\xf5\x08\x00\x08\x05\x08\x0a\x08\x10\x08\x12\x08\x19\x08\x21\x08\x29\x08\x33\x08\x3d" +"\x08\x49\x08\x55\x08\x5c\x08\x60\x08\x6c\x08\x7d\x08\x86\x08\x8c\x08\x97\x08\x9c\x08\xa8\x08\xb4\x08\xba\x08\xc0\x08\xc6\x08\xd2" +"\x08\xd6\x08\xdf\x08\xe3\x08\xe8\x08\xec\x08\xf2\x08\xfd\x09\x0b\x09\x11\x09\x1c\x09\x22\x09\x2e\x09\x38\x09\x40\x09\x42\x09\x48" +"\x09\x55\x09\x5c\x09\x61\x09\x6b\x09\x72\x09\x7e\x09\x88\x09\x93\x09\x9e\x09\xa4\x09\xa7\x09\xa9\x09\xb0\x09\xbc\x09\xca\x09\xcd" +"\x09\xda\x09\xe0\x09\xe7\x09\xed\x09\xf9\x0a\x06\x0a\x09\x0a\x0f\x0a\x17\x0a\x22\x0a\x2e\x0a\x34\x0a\x39\x0a\x42\x0a\x47\x0a\x50" +"\x0a\x53\x0a\x56\x0a\x5a\x0a\x60\x0a\x6c\x0a\x71\x0a\x76\x0a\x7c\x0a\x89\x0a\x90\x0a\x9d\x0a\xa4\x0a\xab\x0a\xb2\x0a\xb9\x0a\xc0" +"\x0a\xc7\x0a\xce\x0a\xd5\x0a\xdc\x0a\xe3\x0a\xea\x0a\xf1\x0a\xf8\x0a\xff\x0b\x06\x0b\x0d\x0b\x14\x0b\x1b\x0b\x22\x0b\x29\x0b\x30" +"\x0b\x37\x0b\x3e\x0b\x45\x0b\x4c\x0b\x53\x0b\x5a\x0b\x61\x0b\x68\x0b\x6f\x0b\x76\x0b\x7d\x0b\x84\x0b\x8b\x0b\x92\x0b\x99\x0b\xa0" +"\x0b\xa7\x0b\xae\x0b\xb5\x0b\xbc\x0b\xc3\x0b\xca\x0b\xd1\x0b\xd8\x0b\xdf\x0b\xe6\x0b\xed\x0b\xf4\x0b\xfb\x0c\x02\x0c\x09\x0c\x10" +"\x0c\x17\x0c\x1e\x0c\x25\x0c\x2c\x0c\x33\x0c\x3a\x0c\x41\x0c\x48\x0c\x4d\x0c\x56\x0c\x5d\x0c\x64\x0c\x73\x0c\x87\x0c\x93\x0c\x98" +"\x0c\x9e\x0c\xa4\x0c\xaf\x0c\xb8\x0c\xbe\x0c\xc0\x0c\xcb\x0c\xd1\x0c\xd7\x0c\xe1\x0c\xe5\x0c\xe9\x0d\x1f\x0d\x5f\x0d\x73\x0d\x7f" +"\x41\x45\x61\x63\x75\x74\x65\x41\x62\x72\x65\x76\x65\x41\x6c\x70\x68\x61\x41\x6c\x70\x68\x61\x74\x6f\x6e\x6f\x73\x41\x6d\x61\x63" +"\x72\x6f\x6e\x41\x6f\x67\x6f\x6e\x65\x6b\x41\x72\x69\x6e\x67\x61\x63\x75\x74\x65\x42\x65\x74\x61\x43\x61\x63\x75\x74\x65\x43\x63" +"\x61\x72\x6f\x6e\x43\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x43\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x43\x68\x69\x44\x63\x61\x72" +"\x6f\x6e\x44\x63\x72\x6f\x61\x74\x44\x65\x6c\x74\x61\x45\x62\x72\x65\x76\x65\x45\x63\x61\x72\x6f\x6e\x45\x64\x6f\x74\x61\x63\x63" +"\x65\x6e\x74\x45\x6d\x61\x63\x72\x6f\x6e\x45\x6e\x67\x45\x6f\x67\x6f\x6e\x65\x6b\x45\x70\x73\x69\x6c\x6f\x6e\x45\x70\x73\x69\x6c" +"\x6f\x6e\x74\x6f\x6e\x6f\x73\x45\x74\x61\x45\x74\x61\x74\x6f\x6e\x6f\x73\x45\x75\x72\x6f\x47\x61\x6d\x6d\x61\x47\x62\x72\x65\x76" +"\x65\x47\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x47\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x47\x64\x6f\x74\x61\x63\x63\x65" +"\x6e\x74\x48\x62\x61\x72\x48\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x49\x4a\x49\x62\x72\x65\x76\x65\x49\x64\x6f\x74\x61\x63\x63" +"\x65\x6e\x74\x49\x6d\x61\x63\x72\x6f\x6e\x49\x6f\x67\x6f\x6e\x65\x6b\x49\x6f\x74\x61\x49\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69" +"\x73\x49\x6f\x74\x61\x74\x6f\x6e\x6f\x73\x49\x74\x69\x6c\x64\x65\x4a\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x4b\x61\x70\x70\x61" +"\x4b\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4c\x61\x63\x75\x74\x65\x4c\x61\x6d\x62\x64\x61\x4c\x63\x61\x72\x6f\x6e\x4c\x63" +"\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4c\x64\x6f\x74\x4d\x75\x4e\x61\x63\x75\x74\x65\x4e\x63\x61\x72\x6f\x6e\x4e\x63\x6f\x6d" +"\x6d\x61\x61\x63\x63\x65\x6e\x74\x4e\x75\x4f\x62\x72\x65\x76\x65\x4f\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x4f\x6d\x61" +"\x63\x72\x6f\x6e\x4f\x6d\x65\x67\x61\x74\x6f\x6e\x6f\x73\x4f\x6d\x69\x63\x72\x6f\x6e\x4f\x6d\x69\x63\x72\x6f\x6e\x74\x6f\x6e\x6f" +"\x73\x4f\x73\x6c\x61\x73\x68\x61\x63\x75\x74\x65\x50\x68\x69\x50\x69\x50\x73\x69\x52\x61\x63\x75\x74\x65\x52\x63\x61\x72\x6f\x6e" +"\x52\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x52\x68\x6f\x53\x61\x63\x75\x74\x65\x53\x63\x65\x64\x69\x6c\x6c\x61\x53\x63\x69" +"\x72\x63\x75\x6d\x66\x6c\x65\x78\x53\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x53\x69\x67\x6d\x61\x54\x61\x75\x54\x62\x61\x72" +"\x54\x63\x61\x72\x6f\x6e\x54\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x54\x68\x65\x74\x61\x55\x62\x72\x65\x76\x65\x55\x68\x75" +"\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x55\x6d\x61\x63\x72\x6f\x6e\x55\x6f\x67\x6f\x6e\x65\x6b\x55\x70\x73\x69\x6c\x6f\x6e\x55" +"\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x55\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x55\x72\x69\x6e\x67\x55" +"\x74\x69\x6c\x64\x65\x57\x61\x63\x75\x74\x65\x57\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x57\x64\x69\x65\x72\x65\x73\x69\x73\x57" +"\x67\x72\x61\x76\x65\x58\x69\x59\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x59\x67\x72\x61\x76\x65\x5a\x61\x63\x75\x74\x65\x5a\x64" +"\x6f\x74\x61\x63\x63\x65\x6e\x74\x5a\x65\x74\x61\x61\x62\x72\x65\x76\x65\x61\x65\x61\x63\x75\x74\x65\x61\x66\x69\x69\x30\x30\x32" +"\x30\x38\x61\x66\x69\x69\x31\x30\x30\x31\x37\x61\x66\x69\x69\x31\x30\x30\x31\x38\x61\x66\x69\x69\x31\x30\x30\x31\x39\x61\x66\x69" +"\x69\x31\x30\x30\x32\x30\x61\x66\x69\x69\x31\x30\x30\x32\x31\x61\x66\x69\x69\x31\x30\x30\x32\x32\x61\x66\x69\x69\x31\x30\x30\x32" +"\x33\x61\x66\x69\x69\x31\x30\x30\x32\x34\x61\x66\x69\x69\x31\x30\x30\x32\x35\x61\x66\x69\x69\x31\x30\x30\x32\x36\x61\x66\x69\x69" +"\x31\x30\x30\x32\x37\x61\x66\x69\x69\x31\x30\x30\x32\x38\x61\x66\x69\x69\x31\x30\x30\x32\x39\x61\x66\x69\x69\x31\x30\x30\x33\x30" +"\x61\x66\x69\x69\x31\x30\x30\x33\x31\x61\x66\x69\x69\x31\x30\x30\x33\x32\x61\x66\x69\x69\x31\x30\x30\x33\x33\x61\x66\x69\x69\x31" +"\x30\x30\x33\x34\x61\x66\x69\x69\x31\x30\x30\x33\x35\x61\x66\x69\x69\x31\x30\x30\x33\x36\x61\x66\x69\x69\x31\x30\x30\x33\x37\x61" +"\x66\x69\x69\x31\x30\x30\x33\x38\x61\x66\x69\x69\x31\x30\x30\x33\x39\x61\x66\x69\x69\x31\x30\x30\x34\x30\x61\x66\x69\x69\x31\x30" +"\x30\x34\x31\x61\x66\x69\x69\x31\x30\x30\x34\x32\x61\x66\x69\x69\x31\x30\x30\x34\x33\x61\x66\x69\x69\x31\x30\x30\x34\x34\x61\x66" +"\x69\x69\x31\x30\x30\x34\x35\x61\x66\x69\x69\x31\x30\x30\x34\x36\x61\x66\x69\x69\x31\x30\x30\x34\x37\x61\x66\x69\x69\x31\x30\x30" +"\x34\x38\x61\x66\x69\x69\x31\x30\x30\x34\x39\x61\x66\x69\x69\x31\x30\x30\x35\x30\x61\x66\x69\x69\x31\x30\x30\x35\x31\x61\x66\x69" +"\x69\x31\x30\x30\x35\x32\x61\x66\x69\x69\x31\x30\x30\x35\x33\x61\x66\x69\x69\x31\x30\x30\x35\x34\x61\x66\x69\x69\x31\x30\x30\x35" +"\x35\x61\x66\x69\x69\x31\x30\x30\x35\x36\x61\x66\x69\x69\x31\x30\x30\x35\x37\x61\x66\x69\x69\x31\x30\x30\x35\x38\x61\x66\x69\x69" +"\x31\x30\x30\x35\x39\x61\x66\x69\x69\x31\x30\x30\x36\x30\x61\x66\x69\x69\x31\x30\x30\x36\x31\x61\x66\x69\x69\x31\x30\x30\x36\x32" +"\x61\x66\x69\x69\x31\x30\x30\x36\x35\x61\x66\x69\x69\x31\x30\x30\x36\x36\x61\x66\x69\x69\x31\x30\x30\x36\x37\x61\x66\x69\x69\x31" +"\x30\x30\x36\x38\x61\x66\x69\x69\x31\x30\x30\x36\x39\x61\x66\x69\x69\x31\x30\x30\x37\x30\x61\x66\x69\x69\x31\x30\x30\x37\x31\x61" +"\x66\x69\x69\x31\x30\x30\x37\x32\x61\x66\x69\x69\x31\x30\x30\x37\x33\x61\x66\x69\x69\x31\x30\x30\x37\x34\x61\x66\x69\x69\x31\x30" +"\x30\x37\x35\x61\x66\x69\x69\x31\x30\x30\x37\x36\x61\x66\x69\x69\x31\x30\x30\x37\x37\x61\x66\x69\x69\x31\x30\x30\x37\x38\x61\x66" +"\x69\x69\x31\x30\x30\x37\x39\x61\x66\x69\x69\x31\x30\x30\x38\x30\x61\x66\x69\x69\x31\x30\x30\x38\x31\x61\x66\x69\x69\x31\x30\x30" +"\x38\x32\x61\x66\x69\x69\x31\x30\x30\x38\x33\x61\x66\x69\x69\x31\x30\x30\x38\x34\x61\x66\x69\x69\x31\x30\x30\x38\x35\x61\x66\x69" +"\x69\x31\x30\x30\x38\x36\x61\x66\x69\x69\x31\x30\x30\x38\x37\x61\x66\x69\x69\x31\x30\x30\x38\x38\x61\x66\x69\x69\x31\x30\x30\x38" +"\x39\x61\x66\x69\x69\x31\x30\x30\x39\x30\x61\x66\x69\x69\x31\x30\x30\x39\x31\x61\x66\x69\x69\x31\x30\x30\x39\x32\x61\x66\x69\x69" +"\x31\x30\x30\x39\x33\x61\x66\x69\x69\x31\x30\x30\x39\x34\x61\x66\x69\x69\x31\x30\x30\x39\x35\x61\x66\x69\x69\x31\x30\x30\x39\x36" +"\x61\x66\x69\x69\x31\x30\x30\x39\x37\x61\x66\x69\x69\x31\x30\x30\x39\x38\x61\x66\x69\x69\x31\x30\x30\x39\x39\x61\x66\x69\x69\x31" +"\x30\x31\x30\x30\x61\x66\x69\x69\x31\x30\x31\x30\x31\x61\x66\x69\x69\x31\x30\x31\x30\x32\x61\x66\x69\x69\x31\x30\x31\x30\x33\x61" +"\x66\x69\x69\x31\x30\x31\x30\x34\x61\x66\x69\x69\x31\x30\x31\x30\x35\x61\x66\x69\x69\x31\x30\x31\x30\x36\x61\x66\x69\x69\x31\x30" +"\x31\x30\x37\x61\x66\x69\x69\x31\x30\x31\x30\x38\x61\x66\x69\x69\x31\x30\x31\x30\x39\x61\x66\x69\x69\x31\x30\x31\x31\x30\x61\x66" +"\x69\x69\x31\x30\x31\x34\x35\x61\x66\x69\x69\x31\x30\x31\x39\x33\x61\x66\x69\x69\x31\x30\x38\x34\x36\x61\x66\x69\x69\x36\x31\x32" +"\x34\x38\x61\x66\x69\x69\x36\x31\x32\x38\x39\x61\x66\x69\x69\x36\x31\x33\x35\x32\x61\x6c\x70\x68\x61\x61\x6c\x70\x68\x61\x74\x6f" +"\x6e\x6f\x73\x61\x6d\x61\x63\x72\x6f\x6e\x61\x6e\x67\x6c\x65\x6c\x65\x66\x74\x61\x6e\x67\x6c\x65\x72\x69\x67\x68\x74\x61\x6f\x67" +"\x6f\x6e\x65\x6b\x61\x70\x70\x72\x6f\x78\x65\x71\x75\x61\x6c\x61\x72\x69\x6e\x67\x61\x63\x75\x74\x65\x61\x72\x72\x6f\x77\x62\x6f" +"\x74\x68\x61\x72\x72\x6f\x77\x64\x6f\x77\x6e\x61\x72\x72\x6f\x77\x6c\x65\x66\x74\x61\x72\x72\x6f\x77\x72\x69\x67\x68\x74\x61\x72" +"\x72\x6f\x77\x75\x70\x61\x72\x72\x6f\x77\x75\x70\x64\x6e\x61\x72\x72\x6f\x77\x75\x70\x64\x6e\x62\x73\x65\x62\x65\x74\x61\x63\x61" +"\x63\x75\x74\x65\x63\x63\x61\x72\x6f\x6e\x63\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x63\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x63" +"\x68\x69\x63\x69\x72\x63\x6c\x65\x6d\x75\x6c\x74\x69\x70\x6c\x79\x63\x6c\x75\x62\x64\x63\x61\x72\x6f\x6e\x64\x63\x72\x6f\x61\x74" +"\x64\x65\x6c\x74\x61\x64\x69\x61\x6d\x6f\x6e\x64\x64\x69\x65\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73\x65\x62\x72\x65\x76\x65\x65" +"\x63\x61\x72\x6f\x6e\x65\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x65\x6c\x65\x6d\x65\x6e\x74\x65\x6d\x61\x63\x72\x6f\x6e\x65\x6e\x67" +"\x65\x6f\x67\x6f\x6e\x65\x6b\x65\x70\x73\x69\x6c\x6f\x6e\x65\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x65\x71\x75\x69\x76\x61" +"\x6c\x65\x6e\x63\x65\x65\x73\x74\x69\x6d\x61\x74\x65\x64\x65\x74\x61\x65\x74\x61\x74\x6f\x6e\x6f\x73\x65\x78\x63\x6c\x61\x6d\x64" +"\x62\x6c\x65\x78\x69\x73\x74\x65\x6e\x74\x69\x61\x6c\x66\x65\x6d\x61\x6c\x65\x66\x72\x61\x6e\x63\x67\x61\x6d\x6d\x61\x67\x62\x72" +"\x65\x76\x65\x67\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x67\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x67\x64\x6f\x74\x61\x63" +"\x63\x65\x6e\x74\x67\x72\x65\x61\x74\x65\x72\x65\x71\x75\x61\x6c\x68\x62\x61\x72\x68\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x68" +"\x65\x61\x72\x74\x68\x6f\x75\x73\x65\x69\x62\x72\x65\x76\x65\x69\x6a\x69\x6d\x61\x63\x72\x6f\x6e\x69\x6e\x66\x69\x6e\x69\x74\x79" +"\x69\x6e\x74\x65\x67\x72\x61\x6c\x69\x6e\x74\x65\x67\x72\x61\x6c\x62\x74\x69\x6e\x74\x65\x67\x72\x61\x6c\x74\x70\x69\x6e\x74\x65" +"\x72\x73\x65\x63\x74\x69\x6f\x6e\x69\x6e\x76\x73\x6d\x69\x6c\x65\x66\x61\x63\x65\x69\x6f\x67\x6f\x6e\x65\x6b\x69\x6f\x74\x61\x69" +"\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69\x73\x69\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73\x69\x6f\x74\x61" +"\x74\x6f\x6e\x6f\x73\x69\x74\x69\x6c\x64\x65\x6a\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x6b\x61\x70\x70\x61\x6b\x63\x6f\x6d\x6d" +"\x61\x61\x63\x63\x65\x6e\x74\x6b\x67\x72\x65\x65\x6e\x6c\x61\x6e\x64\x69\x63\x6c\x61\x63\x75\x74\x65\x6c\x61\x6d\x62\x64\x61\x6c" +"\x63\x61\x72\x6f\x6e\x6c\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6c\x64\x6f\x74\x6c\x65\x73\x73\x65\x71\x75\x61\x6c\x6c\x69" +"\x72\x61\x6c\x6f\x6e\x67\x73\x6d\x61\x6c\x65\x6d\x69\x6e\x75\x74\x65\x6d\x75\x73\x69\x63\x61\x6c\x6e\x6f\x74\x65\x6d\x75\x73\x69" +"\x63\x61\x6c\x6e\x6f\x74\x65\x64\x62\x6c\x6e\x61\x63\x75\x74\x65\x6e\x61\x70\x6f\x73\x74\x72\x6f\x70\x68\x65\x6e\x63\x61\x72\x6f" +"\x6e\x6e\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6e\x6f\x74\x65\x6c\x65\x6d\x65\x6e\x74\x6e\x6f\x74\x65\x71\x75\x61\x6c\x6e" +"\x75\x6f\x62\x72\x65\x76\x65\x6f\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x6f\x6d\x61\x63\x72\x6f\x6e\x6f\x6d\x65\x67\x61" +"\x6f\x6d\x65\x67\x61\x74\x6f\x6e\x6f\x73\x6f\x6d\x69\x63\x72\x6f\x6e\x6f\x6d\x69\x63\x72\x6f\x6e\x74\x6f\x6e\x6f\x73\x6f\x72\x74" +"\x68\x6f\x67\x6f\x6e\x61\x6c\x6f\x73\x6c\x61\x73\x68\x61\x63\x75\x74\x65\x70\x61\x72\x74\x69\x61\x6c\x64\x69\x66\x66\x70\x65\x73" +"\x65\x74\x61\x70\x68\x69\x70\x69\x70\x72\x6f\x64\x75\x63\x74\x70\x72\x6f\x70\x65\x72\x73\x75\x62\x73\x65\x74\x70\x72\x6f\x70\x65" +"\x72\x73\x75\x70\x65\x72\x73\x65\x74\x70\x73\x69\x71\x75\x6f\x74\x65\x72\x65\x76\x65\x72\x73\x65\x64\x72\x61\x63\x75\x74\x65\x72" +"\x61\x64\x69\x63\x61\x6c\x72\x63\x61\x72\x6f\x6e\x72\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x72\x65\x76\x6c\x6f\x67\x69\x63" +"\x61\x6c\x6e\x6f\x74\x72\x68\x6f\x73\x61\x63\x75\x74\x65\x73\x63\x65\x64\x69\x6c\x6c\x61\x73\x63\x69\x72\x63\x75\x6d\x66\x6c\x65" +"\x78\x73\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x73\x65\x63\x6f\x6e\x64\x73\x69\x67\x6d\x61\x73\x6d\x69\x6c\x65\x66\x61\x63" +"\x65\x73\x70\x61\x64\x65\x73\x75\x6d\x6d\x61\x74\x69\x6f\x6e\x73\x75\x6e\x74\x61\x75\x74\x62\x61\x72\x74\x63\x61\x72\x6f\x6e\x74" +"\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x74\x68\x65\x74\x61\x74\x6f\x6e\x6f\x73\x75\x62\x72\x65\x76\x65\x75\x68\x75\x6e\x67" +"\x61\x72\x75\x6d\x6c\x61\x75\x74\x75\x6d\x61\x63\x72\x6f\x6e\x75\x6e\x64\x65\x72\x73\x63\x6f\x72\x65\x64\x62\x6c\x75\x6e\x69\x30" +"\x30\x41\x30\x75\x6e\x69\x30\x30\x41\x44\x75\x6e\x69\x30\x32\x31\x41\x75\x6e\x69\x30\x32\x31\x42\x75\x6e\x69\x30\x32\x43\x39\x75" +"\x6e\x69\x30\x33\x38\x37\x75\x6e\x69\x30\x33\x39\x34\x75\x6e\x69\x30\x33\x41\x39\x75\x6e\x69\x30\x33\x42\x43\x75\x6e\x69\x30\x33" +"\x43\x32\x75\x6e\x69\x30\x34\x30\x30\x75\x6e\x69\x30\x34\x30\x44\x75\x6e\x69\x30\x34\x35\x30\x75\x6e\x69\x30\x34\x35\x44\x75\x6e" +"\x69\x30\x34\x39\x32\x75\x6e\x69\x30\x34\x39\x33\x75\x6e\x69\x30\x34\x39\x36\x75\x6e\x69\x30\x34\x39\x37\x75\x6e\x69\x30\x34\x39" +"\x38\x75\x6e\x69\x30\x34\x39\x39\x75\x6e\x69\x30\x34\x39\x41\x75\x6e\x69\x30\x34\x39\x42\x75\x6e\x69\x30\x34\x39\x43\x75\x6e\x69" +"\x30\x34\x39\x44\x75\x6e\x69\x30\x34\x41\x30\x75\x6e\x69\x30\x34\x41\x31\x75\x6e\x69\x30\x34\x41\x32\x75\x6e\x69\x30\x34\x41\x33" +"\x75\x6e\x69\x30\x34\x41\x41\x75\x6e\x69\x30\x34\x41\x42\x75\x6e\x69\x30\x34\x41\x45\x75\x6e\x69\x30\x34\x41\x46\x75\x6e\x69\x30" +"\x34\x42\x30\x75\x6e\x69\x30\x34\x42\x31\x75\x6e\x69\x30\x34\x42\x32\x75\x6e\x69\x30\x34\x42\x33\x75\x6e\x69\x30\x34\x42\x36\x75" +"\x6e\x69\x30\x34\x42\x37\x75\x6e\x69\x30\x34\x42\x38\x75\x6e\x69\x30\x34\x42\x39\x75\x6e\x69\x30\x34\x42\x41\x75\x6e\x69\x30\x34" +"\x42\x42\x75\x6e\x69\x30\x34\x43\x30\x75\x6e\x69\x30\x34\x43\x42\x75\x6e\x69\x30\x34\x43\x43\x75\x6e\x69\x30\x34\x44\x38\x75\x6e" +"\x69\x30\x34\x45\x32\x75\x6e\x69\x30\x34\x45\x33\x75\x6e\x69\x30\x34\x45\x38\x75\x6e\x69\x30\x34\x45\x39\x75\x6e\x69\x30\x34\x45" +"\x45\x75\x6e\x69\x30\x34\x45\x46\x75\x6e\x69\x32\x30\x33\x45\x75\x6e\x69\x32\x30\x41\x46\x75\x6e\x69\x32\x31\x32\x36\x75\x6e\x69" +"\x32\x32\x31\x35\x75\x6e\x69\x32\x32\x31\x39\x75\x6e\x69\x32\x32\x32\x37\x75\x6e\x69\x32\x32\x32\x38\x75\x6e\x69\x32\x32\x39\x35" +"\x75\x6e\x69\x32\x35\x41\x31\x75\x6e\x69\x6f\x6e\x75\x6e\x69\x76\x65\x72\x73\x61\x6c\x75\x6f\x67\x6f\x6e\x65\x6b\x75\x70\x73\x69" +"\x6c\x6f\x6e\x75\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x75\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69" +"\x73\x74\x6f\x6e\x6f\x73\x75\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x75\x72\x69\x6e\x67\x75\x74\x69\x6c\x64\x65\x77\x61\x63" +"\x75\x74\x65\x77\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x77\x64\x69\x65\x72\x65\x73\x69\x73\x77\x67\x72\x61\x76\x65\x78\x69\x79" +"\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x79\x67\x72\x61\x76\x65\x7a\x61\x63\x75\x74\x65\x7a\x64\x6f\x74\x61\x63\x63\x65\x6e\x74" +"\x7a\x65\x74\x61\x31\x2e\x30\x30\x28\x55\x52\x57\x29\x2b\x2b\x2c\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x32\x30\x31\x34\x20\x62" +"\x79\x20\x28\x55\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69\x67\x6e\x20\x26\x20\x44\x65\x76\x65\x6c\x6f\x70\x6d\x65\x6e\x74\x43\x6f" +"\x70\x79\x72\x69\x67\x68\x74\x20\x28\x55\x52\x57\x29\x2b\x2b\x2c\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x32\x30\x31\x34\x20\x62" +"\x79\x20\x28\x55\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69\x67\x6e\x20\x26\x20\x44\x65\x76\x65\x6c\x6f\x70\x6d\x65\x6e\x74\x4e\x69" +"\x6d\x62\x75\x73\x20\x52\x6f\x6d\x61\x6e\x20\x52\x65\x67\x75\x6c\x61\x72\x4e\x69\x6d\x62\x75\x73\x20\x52\x6f\x6d\x61\x6e\x00\xd1" +"\x02\x00\x01\x00\x18\x00\x1c\x00\x1f\x00\x26\x00\x42\x00\x98\x00\xa1\x00\xa6\x00\xcc\x00\xd1\x00\xe6\x00\xef\x01\x01\x01\x12\x01" +"\x1c\x01\x23\x01\x28\x01\xb1\x02\x30\x02\xa7\x02\xfa\x03\x15\x03\x33\x03\x41\x03\x57\x03\x64\x03\x67\x03\x70\x03\x78\x03\x82\x03" +"\x8f\x03\xf6\x04\x47\x04\x53\x04\x7a\x04\x7e\x04\x90\x04\xa1\x04\xad\x04\xb3\x04\xbd\x04\xca\x04\xd1\x04\xda\x04\xe1\x04\xe9\x04" +"\xf0\x04\xf7\x04\xfe\x05\x06\x05\x4a\x05\x8a\x05\xa5\x05\xb2\x05\xc9\x05\xdf\x05\xe5\x05\xfa\x06\x0f\x06\x22\x06\x34\x06\x42\x06" +"\x52\x06\x66\x06\x75\x06\x8d\x06\xa2\x06\xae\x06\xb9\x06\xc4\x06\xcf\x06\xd8\x06\xe1\x06\xef\x06\xfd\x07\x05\x07\x0d\x07\x15\x07" +"\xb5\x07\xbe\x07\xed\x08\x64\x08\x9d\x08\xf0\x09\x5e\x09\xc9\x0a\x0c\x0a\x68\x0a\x99\x0a\xa3\x0a\xe1\x0b\x02\x0b\x5c\x0b\xb3\x0b" +"\xeb\x0c\x08\x0c\x44\x0c\x7a\x0c\xc2\x0d\x05\x0d\x49\x0d\x4e\x0d\x88\x0d\xc0\x0d\xcd\x0e\x09\x0e\x32\x0e\x6b\x0e\x83\x0e\xba\x0e" +"\xc0\x0e\xef\x0f\x22\x0f\x4f\x0f\x7f\x0f\x9f\x0f\xcd\x0f\xe4\x0f\xf1\x10\x0d\x10\x15\x10\x25\x10\x4c\x10\x56\x10\x7c\x10\xa2\x10" +"\xae\x10\xd3\x10\xf0\x11\x13\x11\x2a\x11\x4c\x11\x6e\x11\x8f\x11\xa1\x11\xa9\x11\xba\x11\xda\x11\xee\x11\xfa\x12\x19\x12\x37\x12" +"\x55\x12\x73\x12\x82\x12\x87\x12\x8d\x12\x9a\x12\xb6\x12\xba\x12\xd5\x12\xd9\x12\xed\x12\xfd\x13\x17\x13\x2b\x13\x3e\x13\x4c\x13" +"\x64\x13\x7c\x13\x8c\x13\xa3\x13\xa7\x13\xb1\x13\xb5\x13\xc9\x13\xd3\x13\xe6\x13\xee\x14\x01\x14\x13\x14\x25\x14\x37\x14\x49\x14" +"\x5a\x14\x69\x14\x73\x14\x79\x14\x89\x14\x99\x14\xa8\x14\xb7\x14\xc0\x14\xc6\x14\xd4\x14\xe2\x14\xf0\x14\xfe\x15\x0c\x15\x18\x15" +"\x25\x15\x32\x15\x3f\x15\x46\x15\x52\x15\x5e\x15\x6a\x15\x76\x15\x80\x15\x8a\x15\x94\x15\x9e\x15\xa9\x15\xb4\x15\xbf\x15\xca\x15" +"\xd5\x15\xe0\x15\xe9\x15\xfb\x11\xf7\x3b\x05\x4d\x06\xfb\x10\xfb\x3b\x05\xad\x06\xf7\x0d\xf2\xf7\x0e\x24\x05\x0e\xf9\x2a\x15\x0b" +"\xb7\x1d\x0e\x15\x55\xf7\xcb\xc1\x07\x0e\x82\x1d\xf7\x3e\xf7\x01\xd6\xae\xcf\xb2\x1e\xa3\xb5\x94\xb9\xd8\x1a\xf7\x99\x07\x8d\xf4" +"\x96\x99\xdc\x94\x08\x0b\xf8\x73\xbd\x15\x86\x06\x5a\x8d\x84\x93\x8a\xba\x08\xf7\xeb\xfb\x32\x7a\x07\xc9\x88\x97\x81\x59\x1a\xfb" +"\x7f\x07\x6f\x86\x7d\x7d\x80\x1e\x75\x70\x6c\x7f\x6d\x1b\x64\x6b\xad\xb5\x1f\xf7\xda\xfb\x26\x7d\x07\xba\x89\x99\x7d\x8c\x5b\x08" +"\xfb\x90\x07\x3c\xbb\x58\xd4\xb0\xb2\x9b\xa6\xa6\x1e\xb6\xb6\x05\x38\x07\x8f\x89\xbd\x9f\xaf\x96\xbe\x99\x19\x0b\x79\x1d\xa0\x97" +"\xb1\xae\x7b\x1d\x0b\xf8\x2c\x7f\x1d\x0b\x9d\x16\xf7\xbd\x9e\x06\x39\x8d\x7d\x99\x89\xd5\x08\xf8\x50\x07\x8d\xd6\x98\x97\xde\x8e" +"\x08\x9e\xfb\xbd\x78\x07\xe0\x66\x1d\x3f\x7f\x80\x37\x88\x08\x0b\x15\x7a\x9c\x07\x0b\x99\x94\x97\x9b\x1a\x9f\x7e\x97\x75\x7c\x82" +"\x86\x79\x79\x1e\xfb\x27\xfb\x28\x05\x0b\x15\x71\x75\x74\x70\x6f\x49\x1d\x0b\x6d\x72\x72\x6b\x6e\xa4\x72\xa8\xaa\xa5\xa3\xa9\xaa" +"\x71\xa5\x6d\x1f\x0b\xd5\x9b\x7c\x45\x8c\x1f\xfc\x5c\x07\x45\x8a\x7b\x7c\x41\x1b\x79\x0b\xa2\x8a\x05\xc0\x89\x9a\x78\x4c\x1a\x0b" +"\xd6\x9a\x7c\x45\x8c\x1f\x0b\xf7\x2e\xec\x05\x0b\xf8\xcf\xf8\x56\x15\x7c\x07\xad\x84\x95\x84\x7a\x1a\x7c\x85\x73\x80\x70\x1e\x31" +"\xfb\x72\x37\xf7\x74\x05\x7a\xb9\x8b\x8b\x98\x1a\xa1\x96\x92\xba\x92\x1e\x9a\xfb\x5f\x7c\x07\xb0\x87\x97\x7f\x9f\x56\x90\x7d\x94" +"\x72\x91\x7a\x30\xfb\x5b\x18\x28\xf7\x99\x05\x87\x95\x89\x95\x95\x1a\xa0\x96\x93\xae\x8f\x1e\x9a\xfb\x48\x7c\x07\xa2\x89\x93\x81" +"\xa1\x58\xf7\x1b\xfb\xea\x18\x6c\x97\x93\x7e\x91\x1b\x90\x93\x97\xa6\x97\x1f\xf7\x04\xf7\x84\xe6\xfb\x80\x05\x65\x9a\x8d\x86\x92" +"\x1b\x92\x90\x94\xb3\x9b\x1f\xf7\x1e\xf7\xee\x9d\xb5\x8e\x90\x9f\x92\x19\x9a\x07\x0b\xfa\x38\x21\x1d\xfb\x5a\x78\x06\xbe\x86\x9d" +"\x80\x70\x1a\x77\x85\x70\x81\x6f\x1e\xfb\x11\xfb\xe7\xfb\x18\xf7\xe9\x84\x9d\x88\x93\x89\x8f\x19\x82\xa0\x85\x9e\x96\x1a\xa3\xa2" +"\x95\xc1\x8c\x1e\x9e\xfb\x9f\x78\x07\xc4\x8a\x95\x82\xad\x3b\xac\x39\x18\x20\xfb\xae\xfb\x24\xf8\x0c\x05\x84\x9d\x87\x9c\x96\x1a" +"\xa1\x99\x91\xbe\x8f\x1e\x9e\xfb\x89\x78\x07\xbe\x86\x9a\x79\xb0\x2d\xf7\x55\xfc\xad\x18\x9a\x06\xf7\x2e\xf8\x3b\xf7\x34\xfc\x3b" +"\x05\x9a\x06\xe1\xf7\x9a\x92\xa0\xf7\x03\xf7\xc0\x9e\xbf\x96\x94\xc0\x95\x08\x0b\xf8\x6f\xf8\x56\x15\xfb\x1b\x7c\x06\xab\x9b\x82" +"\x7b\x87\x8a\x85\x88\x84\x1f\x2a\xfb\xa8\xfb\x07\xf7\x91\x05\x85\x99\x87\x99\x95\x1a\x9d\x9a\x92\xb6\x8d\x1e\x9a\xfb\x62\x7d\x07" +"\xa5\x87\x9c\x80\x93\x7a\xf7\x06\xfb\x8a\x18\x97\x70\x8c\x8a\x90\x81\x08\xa7\x59\x9b\x66\x7c\x1a\x7b\x74\x4e\x7a\x6c\x1e\x72\x7c" +"\x76\x78\x7d\x1b\x85\x82\x8d\x90\x80\x1f\x92\x79\x79\x8f\x7b\x1b\x73\x78\x78\x72\x6a\xaa\x72\xb6\xcf\xb9\xc2\xf7\x25\xc2\x1f\xf7" +"\x2e\xf8\x2c\x98\xab\x96\x95\xa3\x8e\x19\x0b\xf9\x53\x21\x1d\xfb\x6f\x78\x06\xbf\x8a\x9c\x83\x73\x1a\x81\x87\x7f\x81\x7c\x1e\xfb" +"\x23\xfb\x76\xfb\x28\xf7\x72\x05\x80\x9b\x85\x9c\x96\x1a\x9e\x99\x93\xab\x8d\x1e\x8f\x95\x8b\x8c\x96\x1f\x9e\xfb\xac\x78\x07\xbb" +"\x89\x99\x7d\xef\xfb\x21\xf7\x17\xfb\x54\x18\xfb\x42\x62\x1d\xf7\x56\x07\xf7\x28\xf7\x76\xc8\xe3\xa5\xa1\xbe\x8f\x19\x0b\xf8\x22" +"\xf7\x30\x15\x90\x1d\xfb\x15\xda\x2e\xf7\x03\xb8\xb3\x9b\xaa\xaf\x1e\xa6\xa2\x9e\xa7\xa9\xc6\x08\x0b\xf7\xba\x21\x1d\xfb\xae\x78" +"\x06\xd4\x86\x97\x7e\x8d\x43\x08\xfc\x50\xa0\x1d\xf8\x6d\x07\x8d\xd4\x98\x98\xd9\x8f\x08\x0b\x15\x3f\x6e\x73\x76\x51\x1b\x4a\xd3" +"\x1d\xa4\xb2\xe9\x1d\xa7\x1d\x78\x83\x90\x7b\x1b\x77\x7e\x7f\x78\x7b\x95\x7c\x9e\x7f\x1f\xf7\x2e\x2a\x05\x0e\x5a\x1d\xb2\x78\xbb" +"\x1b\xdf\xb9\xbe\xf5\x97\x1f\x0e\x15\x5f\x1d\x8c\x05\x56\x8d\x7c\x9e\xca\x1a\x0b\x07\xca\x9a\x9e\xc0\x8d\x1e\x0b\x9b\x9a\xd5\x1e" +"\x9d\xfb\xb2\x79\x07\x0b\x86\x82\x58\x88\x08\x7a\x7a\xf7\x76\x9c\x7b\x06\x0b\xac\xf8\x20\x15\x93\x98\x91\x8d\x96\x1b\xaa\x93\x7a" +"\x4b\x1f\xfb\x4d\x07\x2e\xbb\x55\xdd\xc1\xbe\xa5\xbc\xb5\x1e\xb5\xbc\x9e\xc9\xde\x1a\xf7\x07\x65\xe1\x59\x72\x77\x77\x72\x78\x95" +"\x7b\xa1\x77\x1e\xa6\x73\x91\x83\x93\x7c\x08\x97\x73\x91\x6c\x6a\x1a\x2a\x51\x44\x3b\x6f\x73\x96\x9e\x7f\x1e\x80\x9d\x87\xa3\xbb" +"\x1a\xf7\x65\x07\xa9\x88\x97\x81\x99\x1e\x9a\x80\x82\x92\x84\x1b\x88\x87\x8a\x89\x87\x1f\x24\x55\x05\x0b\x90\x16\xf7\x84\x9a\x06" +"\x48\x8d\x7b\x99\x89\xc6\x08\xf7\x75\x07\xab\xb5\xbd\xa7\x91\x94\x86\x81\x96\x1e\x7c\x9a\x97\x86\x98\x1b\xa3\x9a\x9c\xa7\xac\x76" +"\x9f\x69\x61\x6f\x75\x43\x59\x1f\xe7\x07\x86\x8d\x53\x75\x67\x7d\x53\x79\x19\x7b\x07\x8e\x99\x94\x8c\x97\x1b\xa4\x94\x7b\x5f\x1f" +"\xfb\x8e\x07\x89\x57\x85\x85\x4c\x80\x08\x0b\xae\x1d\xa6\xa2\xa1\xa7\xa6\x74\xa2\x70\x1f\x0e\x15\x55\x5e\x5e\x55\x53\xb6\x5f\xc3" +"\xc2\xb8\xb7\xc2\xc2\x5e\xb8\x54\x1f\x8c\x69\x15\xae\xa9\x6d\x67\x67\x6e\x6e\x65\x68\x6e\xa8\xb0\xaf\xa9\xa8\xaf\x1f\x0e\x15\xa6" +"\x1d\x0b\x1f\x7d\x6c\x05\x7f\xa8\xa2\x87\xab\x1b\xd8\xbb\xab\xbf\xb7\x6b\xa4\x0b\x9d\x07\x41\x7b\x9a\xd1\x1f\xf8\x5c\x07\xd1\x9b" +"\x9a\xd5\x1e\x9d\x0b\x92\x62\x28\x64\x6f\x22\x89\x19\xfb\x0b\x06\x0b\x07\x51\x1d\x7a\x7a\x0b\x82\x8c\x42\x08\xfc\x45\x07\x8a\x36" +"\x0b\xa0\x75\xa6\xa6\xa2\xa1\xa7\xa6\x74\xa2\x70\x1f\x0b\x30\x1d\xa0\x98\x94\x98\x0b\x5e\x68\x73\x74\x69\x6b\xa1\x78\x0b\x07\xd1" +"\x9b\x9a\x6a\x1d\x0b\x6e\x74\x74\x6f\x6e\xa2\x74\x0b\x44\x57\x62\x53\x64\x98\x0b\x89\x1e\x74\x8a\x05\x79\x0b\x15\xf7\x2d\xec\x05" +"\xa1\x0b\x8a\x2f\x86\x82\x58\x88\x08\x0b\x15\xaa\x70\xd3\x4d\xb0\x69\xc8\x4f\x19\x86\x8f\x8d\x8a\x90\x1b\x91\x8e\x8e\x91\x98\x62" +"\xc5\x3e\xed\x1f\x88\x8f\x8a\x8b\x85\x94\xa4\xac\x9c\xa0\xac\xb2\x08\xa8\xaf\xa4\xb3\x98\x1a\x90\x86\x90\x86\x85\x77\x79\x76\x7a" +"\x1e\x8a\x88\x6c\x6d\x6e\x71\x84\x85\x83\x84\x82\x83\x0b\xf8\x58\x9e\x15\x39\x8f\x7e\x97\x8a\xd5\x08\xf8\x93\xc1\x07\xf7\x08\x89" +"\xa0\x7a\xa1\xfb\x01\x08\xa3\x06\x85\xf7\x3e\x05\xfc\xc8\x06\x85\xfb\x3e\x05\xa3\x06\xa2\xf7\x01\xa0\x9c\xf7\x07\x8d\x08\xc1\xfc" +"\x88\x06\x8a\x35\x82\x81\x37\x86\x08\x78\xf7\xb8\x07\x0b\x06\xf7\x08\x89\x9f\x7d\x9b\x32\x08\xa4\x06\x88\xf7\x23\x05\xfc\xa7\x78" +"\x06\xd4\x86\x97\x7e\x8d\x43\x08\x0b\x2d\x1d\xf7\xc6\x9d\x07\x31\x78\x99\xd1\x8a\x1f\x0b\xaf\x1f\xfb\x00\xcb\x05\x6f\x9c\x7c\xa3" +"\xa6\x1a\xb4\xaa\xa6\xb9\xc4\xa9\x6a\x31\xa2\x1e\x0b\x15\x90\xa6\x9e\x8d\x9f\x1b\xea\xcb\x4b\x2c\x32\x4c\x4e\x31\x76\x7b\x8e\x94" +"\x68\x1f\x0b\xc8\x1d\x75\x7b\x9b\x0b\x07\x89\x21\x7e\x7a\x39\x86\x08\x78\xf7\x7f\x9e\x07\x3e\x8f\x7c\xa0\x89\xf2\x08\x0b\x76\x51" +"\x1b\x4b\x69\xa9\xce\x7d\x1f\x6e\x06\x8c\x58\x92\x73\x9e\x6f\x08\x68\xa4\x0b\x15\x70\x74\x74\x6f\x6e\xa1\x75\xa7\xa9\xa1\xa1\xa8" +"\xa8\x74\xa1\x6e\x1f\x0e\x07\x44\x8a\x7b\x7c\x41\x1b\x79\xf7\xb2\x9d\x07\x41\x7b\x9a\xd2\x1f\x0b\xbd\x1d\x2f\x08\xfb\x64\x07\x51" +"\x1d\x7a\x7a\xf7\x76\x0b\x1a\x4f\xbe\x62\xd7\xd7\xbd\xb4\xca\xb8\x76\xa7\x46\xbc\x1e\x0b\x4a\x1d\x9b\x1a\x9f\x7e\x97\x76\x7b\x82" +"\x86\x79\x79\x1e\xfb\x27\xfb\x28\x05\x0e\x93\x9a\xbc\x8c\x1e\x9b\x9c\xfb\x76\x7a\x9c\x06\xbe\x88\x0b\xf7\x28\x05\x9d\x78\x83\x90" +"\x7c\x1b\x76\x7e\x7f\x78\x7b\x95\x7b\x9e\x80\x1f\xf7\x2e\x2a\x05\x0e\x07\x8a\x33\x82\x82\x30\x87\x08\x78\xf7\xc6\x9e\x07\x32\x8d" +"\x7e\x96\x8a\xd8\x08\x0b\x71\x75\x7b\x82\x75\x1b\x66\x7c\xa6\xca\x1f\x0b\x78\x1f\x73\x97\x05\x97\x74\x72\xe4\x1d\x0b\x06\x38\x68" +"\x84\x72\x66\x1f\x4a\x60\x69\x0b\x86\x96\x81\x8c\x40\x08\xfc\x50\x07\x8a\x0b\x07\x45\x8a\x7c\x7c\x40\x1b\x79\x0b\x07\x8a\x55\x7d" +"\x7d\x4d\x87\x08\x0b\x52\x84\x08\x7c\xf7\x6c\x9a\x07\x51\x90\x83\x96\x89\x0b\xd5\x1e\x9d\xfb\xb2\x79\x07\xd5\x9b\x7c\x45\x8c\x1f" +"\x0b\x07\xe4\x93\x99\xbc\x8c\x1e\x0b\x9c\x8c\x18\x81\xf7\x2a\x05\x0b\xde\xfb\x0d\xfb\x45\xfb\x49\x0b\xf9\xc4\xf8\x9d\x15\xf7\x21" +"\xfc\xc8\x77\x07\xcc\x89\xa4\x82\x75\x1a\x85\x88\x80\x85\x80\x1e\xfb\x89\xfc\x78\x6a\x4e\x7f\x80\x60\x85\x19\x78\xf7\x5b\x9e\x8a" +"\x07\x61\x8f\x71\x96\x9a\x1a\xa1\xa2\xc5\xb4\xd9\x1e\xa7\xc0\x05\xf7\x44\xfb\x2c\x06\x89\x46\x84\x82\x4c\x82\x7a\x89\x18\x78\xf8" +"\x92\x07\xb7\xf7\x3c\x05\x73\x06\x51\xfb\x02\x70\x79\xfb\x04\x89\x08\x3f\x06\x6c\x71\x8f\x90\x87\x1f\x86\x8e\x88\x9c\xa3\x1a\xf7" +"\x82\xf7\x25\x07\xd2\x89\x9e\x77\x93\x3d\x08\xa0\xf7\x7e\x76\x06\x84\x3b\x77\x7c\x22\x89\x08\xfb\x03\xf7\x7a\x06\xa2\x8c\x91\x92" +"\x9f\x1b\xe2\x06\xf7\x25\xa4\x7d\x30\x97\x1f\xfc\xbe\xfb\x72\x15\xf7\x33\xf7\xd3\x05\xfb\xd3\x07\x0b\x79\x1d\x9f\x97\xb1\xaf\x7b" +"\x1d\x0b\xf7\x61\xf7\xd5\x15\xf7\x49\xfb\x4f\x05\xbe\x57\x9d\x73\x7b\x1a\x7b\x7c\x85\x60\x89\x1e\x79\xf7\xd2\x9d\x07\x4e\x8c\x60" +"\xa5\x36\xe2\xfb\x78\xf7\x80\x18\x91\x92\x91\x92\x93\x93\x7e\x1d\x0b\x15\xb2\x3e\x07\x76\x7d\x8e\x92\x77\x1f\x75\x93\x05\x95\x71" +"\x6f\x90\x71\x1b\x2e\x41\x44\x2f\x4c\xa5\x65\xce\x6a\x1f\x71\x73\x76\x77\x7f\x80\x88\x87\x19\x76\x75\x85\x80\x7a\x1a\x75\x96\x80" +"\xb5\x77\x1e\x43\x57\x71\x6a\x66\x1a\x56\xd8\x5f\xeb\xd6\xd9\xa5\xb5\xbf\x1e\xb1\xaa\x9c\xab\xb1\x1a\xc9\x5c\xb4\x41\x8f\x1e\xfb" +"\x15\x91\x05\x55\x8d\x73\x94\x9b\x1a\x9f\xac\xae\xa6\x93\x1e\x88\xaf\x9e\x89\x8d\x1b\xb0\xb3\x9a\xa6\xaa\x1f\xac\xa7\x9a\xae\xbd" +"\x1a\xa8\x86\xa2\x7d\xab\x1e\x0b\xb9\x1d\xf7\x62\x9c\x84\x06\x77\x73\x98\xa4\x71\x1f\xfb\x5e\xf7\x57\xf7\x39\xf7\x22\xaa\xa6\xa6" +"\x97\xb4\x8d\x19\x9c\xfb\x53\x7a\x97\x07\xa0\x95\x84\x7a\x84\x87\x84\x7f\x81\x1f\xfb\x3f\xfb\x2d\x05\xed\x07\xe2\x93\x9a\x97\x1d" +"\x0b\x9b\xf9\x17\x15\xda\x84\x93\x83\x8c\x40\x08\xfb\x56\x38\x5f\xde\xfb\x62\x07\x8a\x42\x7f\x7f\x40\x86\x08\x78\xf7\xb0\x07\xf7" +"\x08\xf4\xac\xc3\xc9\x1f\xcc\xc6\xb0\xe4\xec\x1a\xe5\x6e\xd9\x53\xc2\x1e\xd0\x47\xfb\x01\xaf\xfb\x1d\x1b\xfb\xa2\x06\xf7\xe4\xfb" +"\xc3\x15\xfb\x26\xf7\x77\x06\xaa\x95\x93\xb2\xe5\xac\x1d\xf7\x81\xf7\x26\x07\x0e\xf7\x80\x9b\x15\x4b\x72\x76\x70\x72\x1b\x85\x88" +"\x8c\x92\x7d\x1f\x91\x7c\x7e\x8f\x80\x1b\x6f\x74\x75\x72\x6d\xa7\x75\xb0\xae\xa9\x98\xa6\xa5\x1f\xa3\xa2\x9f\xb1\xa9\xd9\xf7\x0e" +"\xf7\xd4\x18\xa6\xd3\x92\x95\xaa\x92\x95\x8c\x18\x9c\xfb\x23\x7a\x90\x07\xa4\x8c\x98\x81\x78\x1a\x7e\x86\x79\x7d\x65\x1e\x3a\xfb" +"\x6d\x37\xf7\x71\x05\x79\xba\x8a\x8f\x96\x1a\xa0\x97\x96\xa6\x8a\x1e\x93\x9c\xfb\x58\x7a\x06\x9a\x8a\xad\x86\x8b\x8b\xc1\xfb\x1d" +"\x19\x0b\x8e\x21\x1d\x79\x07\xcb\x8a\xa8\x75\xb9\x3c\xf7\x5b\xfc\x12\x18\x37\x62\x7e\x7a\x72\x1b\x7f\x82\x8f\x99\x78\x1f\x99\x77" +"\x80\x8f\x7a\x1b\x6b\x75\x79\x70\x67\xab\x74\xbe\xb6\xb3\x9b\xa8\xa8\x1f\xa1\xa1\x94\x98\xab\xcf\xf7\x4a\xf8\x15\x18\xb6\xe1\xb1" +"\xab\xca\x8d\x08\x9d\xfb\x73\x79\x07\xbc\x98\x84\x74\x84\x8b\x8b\x82\x72\x1f\x83\x75\xfb\x16\xfb\xaf\xfb\x1e\xf7\xa2\x05\x7d\xa5" +"\x82\xa6\x98\x1a\xa0\x9d\x95\xb1\x1e\x98\x9d\x06\x0b\xf7\xbc\xf8\x56\x29\x1d\xb0\x8c\x9b\x7b\x8d\x68\xfb\x5d\xfb\xa0\x18\xf7\x6a" +"\x07\xe3\x93\x9a\xbc\x8c\x5d\x1d\x9c\x7b\x06\x66\x7c\x98\xb0\x88\x1f\xf7\x5d\xf7\x9d\x05\xfb\x67\x07\x8a\x2f\x3e\x1d\x5a\x8c\x83" +"\x9a\xe3\x1a\xf7\x64\x07\xe3\x93\x9a\xbc\x8c\x1e\x9b\x9c\x06\x0b\xf8\x7b\x9a\x15\x55\x94\x86\x92\x8a\xd2\x08\xf7\x5b\x07\xf4\x62" +"\xc1\x39\x50\x61\x73\x4f\x5d\x1e\xf7\xc4\x07\x86\x8e\x68\x7f\x72\x83\x54\x7b\x19\x70\x83\x05\x7b\x07\x8c\x8f\x8d\x8b\x91\x1b\xb6" +"\x93\x83\x60\x1f\xfc\x6b\x07\x89\x43\x86\x83\x69\x1d\xd2\x08\xf7\x85\x07\xb9\xb5\xa9\x9c\xb3\x1b\xbc\xa4\x67\x45\x1f\xfb\x5a\x07" +"\x89\x44\x82\x80\x52\x86\x08\x7c\xf7\x68\x07\x0b\xf7\xcf\xf7\xae\x15\xfb\x47\x07\x4c\x7c\x78\x55\xb6\x1d\xbd\xe1\xad\xa9\xc0\x8e" +"\x19\x96\x8c\x05\x9d\xfb\x73\x79\xa0\x07\xa6\x8a\x99\x81\x79\x1a\x7d\x86\x7e\xa9\x1d\xbd\x84\xa2\x77\xb5\x42\x19\x0b\x7c\x1d\x56" +"\x90\x9d\x77\xb4\x1b\xad\x0b\x6f\x06\x5b\x21\x5e\x72\xfb\x23\x8a\x08\x70\x06\x23\x8e\x8a\x8c\xb2\x1a\xf7\x8b\xf7\x2e\x07\xdf\x89" +"\x98\x7f\x98\x39\x08\xa2\xf7\x7c\x74\x06\x7f\x3a\x7d\x7f\x37\x89\x08\xfb\x2e\xf7\x72\x06\xa9\x8c\x8f\x8f\xa7\x1b\xf7\x1b\x54\x1d" +"\xfc\x50\xd0\x1d\x0b\x1f\xfb\x2f\xde\x15\x6d\x86\x80\x76\x7f\x1e\x7d\x72\x70\x83\x76\x1b\x68\x6f\xad\xb6\x1f\x8f\x07\x8c\xc7\xb7" +"\xb1\xf7\x09\xb4\x08\x0b\xf8\x4e\xcd\x15\x7d\x7a\x7f\x86\x7c\x1b\x74\x84\x99\xb7\x1f\xf7\x57\x07\xbf\x86\xa8\x7c\xa3\x1e\xaf\x75" +"\x60\x9e\x50\x1b\x2d\x41\x5a\x4c\x74\x9e\x77\xa3\xa3\xa0\x9f\xa1\x8f\x8a\x90\x8a\x92\x1f\x89\x94\x8a\x93\x92\x1a\xa6\xab\xa1\xb3" +"\xbc\xa6\x6e\x55\x1e\x4e\x07\xfb\x2d\x4e\x79\x82\x60\x65\x08\x75\x77\x7d\x69\x6a\x1a\x4c\xb7\x5f\xc8\xb7\xb4\xa0\xbf\xc8\x1e\x0b" +"\xf7\xcf\xf7\xce\x15\x87\xf7\x1d\x05\x80\x06\x83\x86\x86\x88\x85\x1b\x85\x81\x8d\x90\x80\x1f\x93\x74\x74\x90\x73\x1b\x3c\x52\x57" +"\x43\x53\xab\x63\xe0\x5b\x1f\xc5\x6a\x05\xae\x77\x9c\x73\x6c\x1a\x5f\x6b\x6f\x58\x46\x68\xb1\xf1\x74\x1e\x7b\xfb\x30\x98\x06\x95" +"\x92\x8f\x8d\x97\x1b\x96\x97\x89\x85\xa2\x1f\x85\xa6\xa5\x87\x9f\x1b\xd9\xca\xc5\xd1\xbd\x0b\x9a\x9a\x9a\x9b\x9a\x9b\x95\x94\xc7" +"\xcd\xa9\xab\xd1\xdb\xa3\x9a\xce\x8f\x08\x9e\xfb\x87\x78\x07\xba\xcb\x1d\xcc\x9b\x9d\xc4\x8c\x1e\x8d\x94\x8b\x8c\x93\x1f\x9d\xfb" +"\xb4\x79\x07\x2d\x1d\xf7\xb4\x9d\x07\x3f\x7b\x99\xd2\x1f\x0b\x8d\x1d\xf7\x07\xea\xd6\xc6\xf7\x00\xb5\x1e\xfb\xd9\xf7\x2c\x15\xd9" +"\x96\xad\xb0\xc8\x1b\xc8\xa3\x6f\x34\x98\x1f\x0b\xf8\x07\xf9\x31\x15\x7f\x06\xfb\x80\xfc\xb5\x63\x2d\x80\x81\x49\x89\x19\x79\xf7" +"\x71\x9e\x7f\x07\x67\x74\x99\xa2\x92\x92\xa3\x95\xa4\x1f\xb5\xf4\x05\xf7\x86\x06\xb1\x2a\x05\x98\x6a\x8f\x7b\x7c\x1a\x73\xc1\x1d" +"\xef\xf7\x82\xf6\xfb\x82\x05\x0b\xf7\xfb\xf9\x31\xc7\x1d\xd3\xa9\xc9\xc7\x1f\xc8\xcb\xac\xe1\xec\x1a\xf7\x55\xfb\x1c\xf7\x24\xfb" +"\x4b\x1e\x8a\x64\x15\xf7\x0c\x6d\x1d\x3b\xfb\x0b\xfb\x0f\xfb\x09\x3b\xf7\x0e\xf7\x45\xf7\x47\xda\xf7\x0c\xf7\x0a\x1f\x0e\xf9\x55" +"\x21\x1d\xfb\x7c\x78\x06\xd8\x86\x9a\x77\x8d\x24\x08\xfb\xa2\x07\x47\x85\x65\x7a\x6d\x1e\x5b\x70\x4b\x6c\x40\x1b\x44\x5a\xa3\xba" +"\x70\x1f\x79\xab\x84\xb0\xca\x1a\xf7\xd4\x07\x8c\xd4\x95\x95\xdb\x92\x08\x9e\xfb\xaf\x78\x07\xda\x85\x95\x81\x8c\x41\x08\xfb\xcc" +"\x07\xfb\x41\xdc\x39\x0b\x15\xa4\x06\x96\xb1\x05\x93\xa4\x8e\x9a\x9a\x1a\xaa\x7f\x9b\x74\x76\x7d\x79\x71\x7e\x90\x73\x91\x76\x1e" +"\x58\x5a\x15\x72\x77\x78\x72\x73\x9f\x77\xa3\xa3\x9f\x9f\xa3\xa3\x77\x9f\x74\x1f\xf7\x2c\x16\x72\x77\x78\x72\x73\x9f\x77\xa3\xa3" +"\x9f\x9f\xa3\xa3\x77\x9f\x74\x1f\x0e\xf9\x56\x9e\x15\x5e\x8e\x81\x95\x68\xd5\xfb\x8d\xf8\xcc\x18\x77\x06\xfb\x64\xfc\x7f\x4b\xfb" +"\x26\x7f\x7b\x5b\x89\x19\x78\xf7\x5a\x9e\x07\x5b\x77\x97\xa8\x97\x8e\x99\x90\x98\x1f\xb9\xf7\x09\x05\xf7\x9a\x06\xb4\x2b\x05\x97" +"\x70\x92\x71\x7d\x1a\x72\x7a\x83\x56\x8a\x1e\x78\x0b\x87\x1d\x40\x07\x0b\xf7\x42\xf8\x67\x15\x48\x6a\x80\x86\x46\x6f\x90\x7c\x18" +"\x92\x8d\x05\x8d\x92\x93\x8c\x91\x1b\xa7\xec\x1d\x9a\x79\x1e\x82\x94\x92\x85\x8f\x1b\x8e\x8f\x8d\x8e\x91\x1f\xf2\xc1\x85\x99\x05" +"\x83\x7e\x84\x89\x80\x1b\x6d\x83\x9c\xcb\x1f\x0b\xbe\x88\x90\x82\x8c\x2f\x08\xfb\x00\x07\x82\x6a\x6d\x86\x70\x1b\x4f\x71\xa8\xcd" +"\x1f\xa6\x07\xe3\x92\x9a\xbd\x8c\x1e\x94\x9c\xfb\x6f\xef\x1d\x70\x07\x61\x8e\x79\x96\x79\x1e\x6d\x9e\xb2\x7b\xc4\x1b\xb2\xae\x90" +"\x98\xbf\x1f\x0b\xf7\x92\x15\xd7\x07\x95\x1d\xf7\x6b\x2a\x47\x1d\x0b\xf7\x93\xf8\x61\x15\x4d\x5d\x77\x5e\x5f\x1f\x5e\x5e\x72\x4b" +"\x48\x1a\xfb\x17\xe7\x28\xf7\x0e\xf7\x0e\xec\xf6\xf7\x1c\xf7\x18\x32\xeb\xfb\x0e\x1e\x7e\x68\x15\xdb\xc2\x30\xfb\x19\x20\x5c\x45" +"\x43\x3a\x54\xdf\xf7\x0f\xf7\x0f\xb7\xd2\xd7\x1f\x0b\x15\x65\x7a\x7e\x7f\x74\x1b\x7d\x77\x91\x94\x64\x1d\xab\x96\x9c\x99\xa2\x1b" +"\x96\x9a\x87\x84\x9a\x1f\xa2\x80\x05\x77\xb4\x9a\x87\xa4\x1b\xc2\xa8\xa8\xd8\xa0\x1f\x0e\xf7\xd3\xf7\xd8\x15\xfb\x1c\xfb\x49\x39" +"\xfb\x02\x77\x7d\x3b\x8a\x19\x79\xf7\x88\x9d\x07\x5c\x8e\x7c\x93\x9f\x1a\x97\x90\x95\x9d\xa3\x1e\xf7\x22\xf7\x4e\xf7\x0a\xfb\x41" +"\x05\x9c\x72\x92\x7a\x7c\x1a\x73\x7c\x83\x5d\x8a\x1e\x79\x0b\xba\x1d\xfb\xc1\x06\x37\xa9\x60\xc6\xbc\xb1\xa3\xbf\xac\x1e\x7e\x96" +"\x05\x63\x1d\xf7\xb2\xf0\x0b\xf7\x38\x15\x3f\x5b\x60\x6e\x4b\x1b\x52\x60\xa8\xc4\x6e\x1f\x79\xb1\x84\xab\x89\xc9\x08\xf7\xc8\x06" +"\x83\xcc\x81\xa8\x72\xab\x08\xaf\x6d\x5d\xa0\x57\x1b\x59\x5c\x79\x69\x65\x1f\x5c\x62\x70\x44\x39\x1a\xfb\x1e\xd3\x35\x0b\x7d\x94" +"\x18\x90\x1d\x0b\xf7\xfe\x15\x3d\x55\x05\x5f\x07\xd9\xc0\x05\xfb\x7a\x68\x1d\x7c\xf7\x80\x9a\x07\x4c\x8e\x80\x95\x8a\xc3\x08\xf7" +"\xb7\x07\xd8\xc0\x05\xb7\x07\x3e\x56\x05\xf7\x9a\x07\x87\x8d\x58\x7b\x66\x0b\x45\x5b\x67\x73\x52\x1b\x2f\x4c\xdb\xf7\x07\xf3\xc2" +"\xd1\xdc\xaf\x98\x81\x65\x95\x1f\x91\x75\x05\x6e\x93\x9d\x7a\xa1\x1b\xa5\xa0\x9e\xa2\xc3\x45\xba\x37\x5a\x58\x77\x67\x62\x1f\x59" +"\x5f\x6f\x47\x3b\x1a\x0b\xf7\xdd\x15\xf7\x3a\x06\xc5\x8a\x9f\x71\x89\x45\x08\x9d\xf7\x85\x79\x06\x8c\x42\x76\x70\x53\x8c\x08\xfb" +"\x3a\xf7\x8d\xf7\x2d\x06\xf2\x8d\xab\x72\x96\x32\x6c\x1d\xfc\x8a\x79\x06\x0b\x78\x9c\x79\x93\x64\x93\xa6\x94\x97\x91\x97\x94\x08" +"\xa4\x9f\x9b\xaa\xac\x1a\xcb\x54\xb0\x2e\x6f\x7e\x89\x83\x6b\x1e\x85\x77\x81\x89\x83\x1b\x7e\x84\x91\x96\x8a\x1f\x7d\x06\x83\xfb" +"\x23\x05\x0b\x7a\x40\x6d\x87\x68\x1b\x2e\x68\xb0\xee\x1f\xf7\x08\x4c\x1d\xfb\x08\x07\xfb\x0e\xc7\x51\xf7\x15\xb8\x9a\x8d\xa3\xf7" +"\x10\x1e\x0b\x07\xe9\x5f\xc3\x41\x5d\x6c\x7a\x4b\x47\x1e\xda\x07\x84\x8d\x57\x78\x69\x80\x57\x7c\x19\x7a\x07\x8e\x92\x94\x8c\x96" +"\x1b\xa7\x94\x7c\x5a\x1f\xfb\x8c\x07\x8a\x50\x80\x7e\x59\x88\x08\x0b\xe2\x60\x1d\x90\x82\x8c\x30\x08\xfb\x65\x07\x8a\x2f\x3e\x1d" +"\x5a\x8c\x83\x9a\xe3\x1a\xec\x0b\xf7\x54\x15\x71\x75\x74\x70\x6f\xa0\x75\xa6\xaa\x1d\xd2\x1d\x2f\x08\xfb\x65\x07\x89\x2f\x87\x82" +"\x58\x88\x08\x7a\x7a\xf7\x76\x9c\x7b\x06\x5a\x8d\x83\x99\xe3\x1a\x0b\xd7\x1d\x94\x8c\x96\xa8\x1d\x0b\xc8\xc7\x1a\xbe\x68\xb1\xbc" +"\x1d\x83\x6b\x6f\x66\x55\x66\x1f\x0e\xc6\x9e\xa9\xb1\xa1\x98\x81\x6e\x9d\x1e\x71\x9b\x97\x81\x9c\x1b\xa3\x9d\x9d\xa2\xaf\x5f\xa5" +"\x4f\x4c\x57\x70\x5e\x71\x1f\x71\x5e\x83\x67\x8a\x3b\x08\x39\x0b\xa8\x1d\x55\x81\x85\x8a\x89\x81\x1f\x0b\x4e\x4f\x1a\x58\xad\x65" +"\xb9\xae\xa3\xa2\xad\xab\x75\x9e\x66\x84\x84\x8a\x8a\x85\x1e\x89\x86\x8a\x8b\x8a\x1b\x83\x85\x91\x93\xac\xa6\xae\xc2\xb1\x1f\x0b" +"\x9a\x83\x19\xa5\x7c\x9a\x72\x6c\x1a\x62\x70\x70\x62\x79\x80\x8f\x9b\x75\x1e\x99\x78\x80\x90\x80\x1b\x77\x7c\x7b\x76\x6b\xa9\x79" +"\xc0\xf7\x03\xdd\xc5\x0b\xb3\x1d\xf7\xb2\x9d\x07\x41\x7b\x9a\xd1\x1f\x0b\x90\xfb\x6d\x15\xf7\x86\x9d\x06\x40\x8c\x7f\x95\x8a\xcb" +"\x08\xf7\x31\x07\x6a\xaf\xa2\x81\xb5\x1b\xf7\x0b\xe6\xf7\x04\xf7\x25\xf7\x10\x45\xe4\x2a\x0b\xd0\x1d\xf8\xae\x07\xbb\xf7\x42\x05" +"\x72\x06\x5c\x22\x60\x71\xfb\x15\x87\x08\x48\x06\x3e\x8d\x83\x8e\x8a\xaf\x08\x0b\x07\xab\x65\x70\x96\x63\x1b\xfb\x07\x2e\xfb\x05" +"\xfb\x22\xfb\x14\xd5\x34\xf7\x03\xc3\xb1\x9f\xba\xad\x1f\x4b\x07\x8f\x88\xf7\x27\xbf\x05\x0b\x8a\x2f\x3e\x1d\x5a\x8c\x83\x9a\xe3" +"\x1a\xf7\x65\x07\xe3\x93\x99\xbc\x8c\x1e\x9b\x9c\x06\x0e\x89\x49\x81\x7f\x54\x8a\x08\x7c\xf7\x70\x9a\x07\x53\x8f\x7e\x99\xc2\x1a" +"\xf7\xdd\xe1\x07\xec\x8e\x89\x55\x8c\x1f\xfb\x9c\x07\x8a\x46\x0b\x15\xfc\xa0\x07\x3a\xf7\x66\x56\x74\xf7\x13\xfb\xb2\x05\xd8\x06" +"\xf7\x14\xf7\xb2\x56\xa2\x3a\xfb\x66\x05\xf8\xa0\x07\xdc\xfb\x66\xc0\x0b\x87\x8e\xfb\x2f\x54\x05\x7c\x07\x93\x8c\x05\x8d\x97\x97" +"\x8c\x95\x1b\xa3\x94\x7b\x5f\x1f\xfb\x7c\x07\x89\x41\x82\x81\x47\x88\x08\x0b\x71\x75\x74\x71\x6e\x9f\x75\xa7\xa6\xa2\xa1\xa7\xa6" +"\x74\xa2\x70\x1f\x0b\x15\xfb\x27\xf7\x28\x05\x9d\x0b\x1b\xb1\x9a\x81\x71\x70\x76\x7a\x69\x76\x7a\x8e\x94\x70\x44\x1d\x0b\x7a\x6f" +"\x1e\xfb\x15\xfb\x6e\xfb\x16\xf7\x61\x05\x78\xa9\x83\x9e\x9b\x1a\xa1\x9d\x95\xb0\x1e\x99\x9d\xfb\xc1\x79\x06\xa2\x89\x0b\xa6\xa2" +"\xa1\xa7\xa6\x74\xa2\x70\x1f\xf7\x5b\x16\x71\x75\x74\x71\x6e\x49\x1d\x0e\x07\x64\x6c\x7c\x72\x69\x1a\x61\x58\x1d\xa2\x0b\xcb\x7b" +"\x69\xbb\x1e\xd9\x55\xb4\x35\xfb\x00\x1a\xfb\x0a\x62\x37\x3a\x5c\x1e\x6e\x58\x51\x7f\x34\x1b\x63\x7f\x94\xab\x1f\x0b\x89\x3e\x84" +"\x81\x4f\x88\x08\x7c\xf7\x74\x9a\x07\x53\x90\x7d\x97\x8a\xba\x08\xf7\xe7\xf7\x50\xfb\xe2\x07\x8a\x59\x7c\x0b\x15\x71\x75\x74\x71" +"\x6e\x9f\x75\xa7\xa6\xa2\xa1\xa7\xa6\x74\xa2\x70\x1f\xf7\x5b\x16\x71\x75\x74\x71\x6e\x9f\x75\xa7\x0b\xa1\xf8\x7b\x15\xa8\x06\x95" +"\xb7\x05\x9a\xc2\x8c\x92\xa0\x1a\xaf\x7d\x9e\x71\x70\x7d\x78\x67\x76\x8c\x85\x99\x53\x1e\x0b\x07\x45\x8a\x7b\x7c\x41\x1b\x79\xf7" +"\xb2\x45\x1d\xfb\xb2\x0b\x15\xfb\x27\x61\x1d\xd3\x1d\xa3\xb3\xe9\x1d\x4c\x1d\xfc\x5c\x07\x45\x8a\x7b\x7c\x41\x1b\x79\x0b\x16\xfb" +"\x50\x06\x8a\xbf\x05\xf0\x8a\xa2\xc0\xb7\x1b\xa1\x97\x83\x70\x9d\x1f\x6f\x9e\x98\x82\xa2\x1b\x93\x8e\x0b\xda\xb7\x1d\x0b\x89\x1e" +"\x72\x8a\x05\x79\xf7\xbe\x9d\x07\x70\x8c\x05\x55\x8d\x7c\x9e\xca\x1a\xf7\x47\x07\xf7\x24\xf7\x86\x0b\x15\xb8\x1d\x0b\x4a\x1d\x9b" +"\x1a\x9f\x7e\x97\x75\x7c\x82\x86\x79\x79\x1e\xfb\x27\xfb\x28\x05\x0b\xf7\x33\xf7\x6c\x15\x8f\x06\xf7\x36\xfb\x36\xde\x1d\x82\x7a" +"\x0b\x95\x89\x8e\x86\x1e\x51\x37\x6d\x69\x6e\x7a\x08\x80\x84\x85\x85\x85\x1a\x88\x8c\x89\x8e\x89\x1e\xc0\x0b\x3c\x1d\xa1\x8c\x05" +"\x9d\xfb\xb2\x79\x07\xa2\x8a\x05\xbf\x89\x9b\x78\x4c\x1a\x0b\x4b\x1d\xb0\x92\x92\x8c\x8c\x91\x1e\x8d\x90\x8c\x8b\x8c\x1b\x93\x91" +"\x85\x0b\x1e\x9b\x9c\xfb\x76\x7a\x9c\x06\xbe\x88\x90\x82\x8c\x0b\xbc\x1a\xca\x56\xb6\x3d\x62\x69\x7f\x74\x74\x1e\x76\x78\x81\x78" +"\x7b\x5d\xa4\x7d\x18\xbb\xa1\x0b\x07\x86\x8d\x5c\x7b\x69\x80\x49\x7a\x19\x7b\x07\x8c\x93\x90\x8b\x94\x1b\xb0\x94\x81\x62\x1f\x0b" +"\xa2\x8a\x05\xbf\x89\x9b\x78\x4c\x1a\xfc\x5b\x07\x4b\xd1\x1d\x0b\x78\x7e\x67\x1e\x7b\x78\xf7\xaa\x9d\x7e\x06\x5e\x71\xa8\xe3\x67" +"\x1f\xfc\x01\xf7\x0f\x15\x0b\xc5\x1d\x5b\x0b\x6a\x1d\xfc\x96\xfb\x8a\xf8\x96\x07\x0b\x16\xcd\x1d\x0e\x8c\xd4\x95\x95\xd8\x92\x08" +"\x9e\xfb\xaa\x78\x07\xd8\x85\x95\x81\x8c\x41\x08\x0b\x6b\xa4\x55\x81\x85\x8a\x89\x81\x1f\x0e\x15\xfb\x48\xfb\x1b\xfb\x25\xfb\x55" +"\xfb\x55\xf7\x1b\xfb\x25\xf7\x48\xe8\x0b\xdc\x1d\x6c\x78\x82\x76\x1b\x0b\x75\x7b\x8e\x94\x70\x1f\x7d\x6c\x05\x7f\xa7\xa3\x87\xaa" +"\x1b\xd9\xba\xab\x0b\xf7\x6a\xf7\xcf\x15\xf7\xbb\xfb\x67\x06\x44\x8a\x7b\x7c\x41\x1b\x79\x0b\x8a\x96\x86\x77\x1a\x67\x2a\xfb\x05" +"\xfb\x1d\xfb\x0e\x1e\xf7\x69\x07\x0b\x15\x7a\x92\x7d\x75\x82\x87\x6f\x8a\x19\xfb\x0d\x06\xe1\xe0\x05\xc8\x0b\x6e\x74\x75\x6f\x6f" +"\xa2\x74\xa7\xa8\xa2\xa2\xa7\xa6\x74\xa2\x6f\x1f\x0b\xaa\xa6\xa6\x97\xb4\x8d\x19\x9c\xfb\x52\x7a\x97\x07\xa0\x95\x84\x0b\x5c\x46" +"\x43\x3a\x54\xde\xf7\x0c\xf7\x0d\xb7\xd1\xd7\x1f\x0e\x07\x89\x43\x7e\x7d\x43\x87\x08\x78\x0b\x7b\x78\x57\x4f\x1d\x0b\xbc\x8c\x1e" +"\x9b\x9c\xfb\x76\x7a\x9c\x06\xbe\x88\x8f\x83\x8d\x0b\x69\xa9\xce\x7e\x1f\x6e\x06\x8c\x58\x91\x73\x9f\x6f\x08\x68\x0b\x07\x3f\x88" +"\x72\x80\x77\x1e\x81\x85\x7d\x83\x7d\x1b\x7c\x0b\x9d\x1e\x97\x07\x8a\xc4\x96\x97\xc5\x8d\xa2\x8c\x18\x9d\x0b\x98\x94\x98\x9b\x1a" +"\x9f\x7e\x97\x0b\x92\x86\x05\x8e\x93\x0b\xbb\x65\x49\x52\x5f\x67\x44\x7b\x7f\x8d\x90\x71\x1f\x0b\x07\x89\xa5\x9c\x8a\xa5\x1b\xda" +"\xc0\x95\xa3\xb6\x1f\x0b\xf7\xfd\xf9\x38\x15\xfb\x53\xfb\x1c\xfb\x23\xfb\x5e\x0b\x9d\x07\x74\x8c\x51\x8d\x80\x97\x8c\xc4\x19\x97" +"\x07\x0b\xaa\x6a\xb5\xb4\xad\xa2\xc0\xb0\x1e\x77\x9b\x05\x70\x0b\x7b\x83\x86\x79\x79\x1e\xfb\x27\xfb\x28\x05\x0e\x05\x98\x7e\x8e" +"\x86\x84\x1a\x81\x86\x89\x73\x1e\x0b\x15\x69\x06\xfb\x0e\x24\xfb\x0d\xf2\x05\x69\x06\x0b\xaa\x77\xa4\xa8\x1a\xa8\xa2\xa0\xac\xb0" +"\xa1\x75\x0b\x3c\x1d\xa2\x8c\x05\x9d\x0b\x07\x89\x45\x85\x83\x52\x84\x08\x7c\xf7\x61\x0b\x89\x9b\x78\x4c\x1a\xfc\x5c\x07\x4c\x7b" +"\x78\x0b\x91\x75\x1b\x59\x67\x67\x4a\x7c\x1f\xa8\x06\x0b\x1f\x4c\xc5\xe4\x64\xe3\x1b\xf7\x59\xf7\x1c\x0b\x7e\x7a\x6a\x78\x8c\x87" +"\x98\x56\x1e\x0e\xf7\x6f\xcd\xfb\x6f\xf7\x70\x49\x06\x0e\xa7\xa1\xa1\xa7\xa6\x74\xa2\x70\x1f\x0e\x78\xbb\x1b\xde\xb9\xbe\xf5\x98" +"\x1f\x0e\x82\x6f\x71\x81\x81\x90\x99\x7d\x1e\x9f\x0b\x86\x08\x7c\xf7\x70\x9a\x07\x53\x8f\x81\x0b\x92\x7d\x54\x1f\xfb\x90\x07\x68" +"\x8e\x7f\x0b\x1a\xac\x7e\x9c\x73\x73\x7e\x7a\x6a\x78\x0b\xf8\xaa\xf7\x70\x15\xcd\xfc\x8c\x49\x07\x0b\x7a\x9c\x06\xbe\x88\x90\x82" +"\x8c\x2f\x08\x0b\xf7\x8e\x04\x5a\xfa\x7c\xbc\x07\x0e\x01\x00\x01\xe3\x01\x05\x00\x01\x0a\x02\x01\x40\x03\x01\x87\xff\x02\x87\xa0" +"\x02\x8e\x02\x00\x01\x00\x04\x00\x07\x00\x45\x00\x85\x00\xe6\x01\x73\x02\x2e\x02\xd3\x02\xdb\x03\x1b\x03\x5a\x04\x2b\x04\x3d\x04" +"\x44\x04\x48\x04\x4f\x04\x60\x04\xb3\x04\xe2\x05\x2c\x05\xa0\x05\xc7\x06\x33\x06\x94\x06\xb8\x07\x1a\x07\x7a\x07\x89\x07\xcd\x07" +"\xeb\x08\x01\x08\x1d\x08\x86\x09\x35\x09\x38\x09\xb9\x09\xbe\x09\xc1\x09\xc5\x09\xf7\x09\xfa\x09\xfd\x0a\x02\x0a\x40\x0a\x43\x0a" +"\x47\x0a\x98\x0a\x9b\x0a\x9e\x0a\xeb\x0b\x6c\x0b\x71\x0b\x75\x0b\x79\x0b\x7c\x0b\xc9\x0b\xce\x0c\x5b\x0c\x5e\x0c\x62\x0c\x85\x0c" +"\x98\x0c\xba\x0c\xd7\x0c\xe3\x0c\xf0\x0c\xf4\x0d\x49\x0d\x4d\x0d\x53\x0d\x57\x0d\x74\x0d\x78\x0d\x7c\x0d\x86\x0d\x8f\x0d\x93\x0d" +"\x98\x0e\x32\x0e\x36\x0e\x3a\x0e\x6a\x0e\xcb\x0e\xd0\x0e\xd5\x0e\xda\x0e\xde\x0f\x3b\x0f\x3e\x0f\xc4\x0f\xc8\x0f\xcc\x10\x17\x10" +"\x23\x10\x6f\x10\xa9\x10\xe8\x11\x61\x12\x17\x12\x1b\x12\x92\x13\x29\x13\xd5\x14\x3b\x14\x5d\x14\x95\x14\xb2\x14\xc1\x14\xf8\x15" +"\x55\x15\x70\x15\x7a\x15\xcb\x16\x75\x16\x7d\x16\xce\x16\xe7\x16\xee\x17\x05\x17\x29\x17\x8f\x17\xc0\x18\x96\x18\xfa\x19\x02\x19" +"\x0a\x19\x12\x19\x1a\x19\x21\x19\x2d\x19\x36\x19\x3d\x19\x45\x19\x5a\x19\x71\x19\x9a\x19\xa2\x19\xa6\x19\xab\x1a\x1f\x1a\x54\x1a" +"\x57\x1a\xff\x1b\x34\x1b\xe4\x1b\xe9\x1b\xf4\x1b\xfd\x1c\x89\x1d\x00\x1d\x33\x1d\x42\x1d\xa4\x1e\x20\x1e\x22\x1e\x47\x1e\x61\x1e" +"\xbd\x1e\xc5\x1e\xd5\x1e\xe9\x1f\x14\x1f\x45\x1f\x80\x1f\x9c\x20\x56\x20\x5a\x20\xcd\x20\xf9\x21\x32\x21\xbe\x21\xc6\x21\xcd\x21" +"\xde\x21\xe5\x21\xec\x21\xf3\x22\x6c\x22\x75\x22\x7d\x22\x8f\x22\x9b\x22\xa5\x22\xaf\x22\xb8\x22\xc2\x22\xe5\x22\xeb\x22\xf2\x22" +"\xf9\x22\xff\x23\x07\x23\x0f\x23\x16\x23\x1d\x23\x23\x23\x2a\x23\x31\x23\x39\x23\x42\x23\x4a\x23\x52\x23\x5b\x23\x63\x23\x6b\x23" +"\x77\x23\x93\x23\x9f\x23\xa7\x23\xb0\x23\xb8\x23\xc1\x23\xcb\x23\xf3\x23\xfd\x24\x06\x24\x0d\x24\x15\x24\x1d\x24\x24\x24\x2d\x24" +"\x35\x24\x3e\x24\x46\x24\x4f\x24\x58\x24\x67\x24\x70\x24\x78\x24\xe4\x25\x51\x25\xc7\x25\xf0\x26\x5e\x27\x07\x27\xb9\x28\x22\x28" +"\x2b\x28\x32\x28\x35\x28\x51\x28\x59\x28\x90\x28\xb6\x29\x22\x29\x2c\x29\x35\x29\x3e\x29\x49\x29\xdd\x29\xe5\x29\xe7\x2a\x02\x2a" +"\x0f\x2a\x17\x2a\x21\x2a\x2a\x2a\x91\x2a\xae\x2a\xc5\x2b\x1a\x2b\x3e\x2b\x6e\x2c\x04\x2c\x41\x2c\x49\x2c\x51\x2c\x59\x2c\x62\x2c" +"\x8c\x2c\x94\x2c\xf9\x2d\x07\x2d\x12\x2d\x1b\x2d\x54\x2d\x58\x2d\x7d\x2d\xb2\x2d\xef\x2e\x31\x2e\x95\x2e\x9c\x2e\xa3\x2e\xe0\x2e" +"\xea\x2e\xf6\x2e\xff\x2f\x44\x2f\x4b\x2f\x5b\x2f\x68\x2f\xa3\x2f\xb3\x2f\xbd\x2f\xc5\x30\x50\x30\x52\x30\x78\x30\x80\x30\xe1\x31" +"\x09\x31\xa4\x31\xad\x31\xb7\x31\xc5\x31\xef\x31\xf8\x32\x47\x32\x4f\x32\x60\x32\x9e\x32\xd2\x32\xfd\x33\x05\x33\x42\x33\xb7\x33" +"\xcb\x33\xe6\x33\xee\x34\x1b\x34\x1e\x34\x2c\x34\x77\x34\x80\x34\xbb\x34\xc4\x34\xcd\x34\xd5\x34\xdd\x35\x50\x35\x57\x35\x5d\x35" +"\x66\x35\x70\x35\xa4\x35\xac\x36\x62\x36\x66\x36\x9a\x36\xc4\x37\x30\x37\x4d\x37\xbf\x37\xe1\x38\x34\x38\xc8\x39\x1a\x39\x1d\x39" +"\x62\x39\x67\x39\xc1\x39\xea\x39\xf9\x39\xfb\x3a\x20\x3a\x41\x3a\x90\x3a\xbc\x3a\xc1\x3b\x29\x3b\x66\x3b\x7c\x3b\x9a\x3b\xbb\x3b" +"\xe2\x3c\x1d\x3c\x46\x3c\x61\x3c\xd4\x3d\x18\x3d\x82\x3d\x9c\x3e\x0a\x3e\x38\x3e\xaa\x3f\x2a\x3f\x2e\x3f\x56\x3f\x92\x40\x0b\x40" +"\x99\x40\xfe\x41\x10\x41\x53\x41\xc9\x42\x42\x42\xb8\x42\xe2\x43\x41\x43\x47\x43\x56\x43\xe7\x44\x31\x44\x35\x44\x9e\x44\xa2\x44" +"\xd8\x45\x36\x45\x43\x45\x73\x45\x92\x46\x07\x46\x4a\x46\x74\x46\x78\x47\x22\x47\xa2\x47\xdc\x47\xf9\x48\x45\x48\x9f\x48\xe7\x49" +"\x2c\x49\x59\x49\xb0\x49\xe6\x4a\x4e\x4a\x75\x4b\x05\x4b\x34\x4b\x8b\x4b\xfe\x4c\x2c\x4c\x4e\x4c\x91\x4d\x00\x4d\x5a\x4d\xd9\x4d" +"\xe2\x4e\x19\x4e\x3d\x4e\x84\x4e\xca\x4f\x39\x4f\xbb\x50\x4d\x50\x54\x50\x6f\x50\x78\x50\xad\x50\xe3\x51\x27\x51\x75\x51\x81\x51" +"\xb6\x51\xd6\x51\xf6\x52\x16\x52\x36\x52\x42\x52\x57\x52\xc7\x52\xdb\x52\xe3\x52\xeb\x52\xf5\x53\x55\x53\xd3\x54\x3f\x54\x62\x54" +"\x85\x54\xf3\x55\x1f\x55\x27\x55\x4d\x55\x55\x55\x5e\x55\x8e\x55\x97\x55\xdb\x56\x0a\x56\x0e\x56\x28\x56\x49\x56\xa2\x56\xe9\x57" +"\x3f\x57\xaa\x57\xc3\x58\x0b\x58\x9b\x59\x13\x59\x1c\x59\x25\x59\x56\x59\x86\x59\xab\x5a\x14\x5a\x1c\x5a\x64\x5a\x8b\x5a\x99\x5b" +"\x0e\x5b\x1c\x5b\x94\x5c\x02\x5c\x36\x5c\x6a\x5c\xaf\x5d\x3c\x5d\x7c\x5d\x81\x5d\x9b\x5d\xa4\x5d\xc4\x5d\xd0\x5d\xd9\x5e\x4f\x5e" +"\x60\x5e\xe2\x5e\xeb\x5f\x4b\x5f\x68\x5f\x71\x5f\x97\x5f\xbe\x5f\xca\x60\x07\x60\x7c\x60\x82\x60\xcd\x61\x4f\x61\x58\x61\xe2\x61" +"\xeb\x61\xf4\x62\x5b\x62\x93\x62\xec\x62\xf9\x63\x09\x63\x12\x63\x81\x64\x05\x64\x09\x64\x29\x64\x37\x64\x45\x64\xb7\x65\x4a\x65" +"\xca\x66\x4b\x66\x7f\x66\xa7\x66\xdd\x67\x5a\x67\x8a\x67\x94\x67\xaf\x67\xb9\x67\xc2\x67\xd4\x68\x1f\x68\x2a\x68\x94\x68\x9c\x68" +"\xa6\x68\xc5\x69\x16\x69\xa7\x69\xf8\x6a\x34\x6a\xb8\x6b\x07\x6b\x2e\x6b\x46\x6b\x78\x6b\xcf\x6b\xf0\x6b\xf9\x6c\x0d\x6c\x16\x6c" +"\x29\x6c\x2c\x6c\x30\x6c\x3d\x6c\x47\x6c\x4e\x6c\x56\x6c\x7e\x6d\x0d\x6d\x84\x6e\x00\x6e\x0c\x6e\x2c\x6e\x36\x6e\x3e\x6e\x74\x6e" +"\xb5\x6f\x55\x6f\xee\x70\x60\x70\xc0\x70\xfd\x71\x4a\x71\xdb\x72\x22\x72\x86\x72\xf5\x73\x14\x73\x31\x73\x7a\x73\xa8\x73\xe9\x74" +"\x42\x74\x8e\x74\xf1\x75\x3c\x75\xc2\x76\x12\x76\x49\x76\xa3\x77\x0a\x77\x35\x77\x92\x77\x96\x77\xc7\x77\xff\x78\x66\x78\x6d\x78" +"\x75\x78\xcb\x79\x12\x79\x27\x79\x8e\x79\x99\x7a\x51\x7a\xcc\x7a\xd0\x7a\xd8\x7a\xf4\x7b\x11\x7b\x81\x7b\x99\x7b\xde\x7c\x07\x7c" +"\x7f\x7c\x83\x7c\x9c\x7c\xe6\x7c\xfa\x7d\x03\x7d\x0b\x7d\x12\x7d\x19\x7d\x2a\x7d\x31\x7d\xeb\x7e\x07\x7e\x28\x7e\x31\x7e\x3b\x7e" +"\xce\xfb\x95\x0e\xfb\x95\x0e\xfb\x42\xf7\x51\xf7\x44\x15\xb8\xf8\x13\x05\x8c\x97\x8c\x96\x99\x1a\xbf\x78\xa7\x69\x6a\x77\x6d\x5c" +"\x71\x93\x3f\x97\x40\x1e\x94\x50\x91\x5a\x8d\x6d\x94\xfb\x00\x18\x92\x3b\x15\x6d\x74\x73\x6d\x6e\xa1\x75\xa9\xac\xa2\xa0\xa9\xa9" +"\x72\xa3\x6d\x1f\x0e\x28\xf7\xbf\xf8\x43\x15\x8e\x9d\x8d\x98\x8d\x94\x08\x9b\xd7\x94\xc7\xa8\x1a\xa1\x78\x9d\x74\x73\x78\x79\x74" +"\x7a\x99\x31\x9d\x2a\x1e\xfb\x28\x16\x8e\x9d\x8d\x98\x8d\x94\x08\x9b\xd7\x94\xc7\xa8\x1a\xa1\x78\x9d\x74\x73\x78\x79\x74\x7a\x99" +"\x31\x9d\x2a\x1e\x0e\x84\xf8\x6b\xf7\xa3\x15\x27\x06\x9f\xf7\x1a\x05\xf4\xc2\x2a\x06\xa9\xf7\x5e\x05\x51\x06\x6d\xfb\x5e\x05\xfb" +"\x19\x06\xaa\xf7\x5e\x05\x51\x06\x6c\xfb\x5e\x05\xfb\x0a\x54\xf7\x02\x06\x76\xfb\x1a\x05\xfb\x08\x54\xf6\x06\x6a\xfb\x6c\x05\xc5" +"\x06\xac\xf7\x6c\x05\xf7\x1a\x06\x6c\xfb\x6c\x05\xc5\x06\xaa\xf7\x6c\x05\xf7\x01\x06\xfb\x1e\xf7\x51\x15\x77\xfb\x1a\x05\xfb\x1a" +"\x06\xa0\xf7\x1a\x05\x0e\x84\xf8\x3d\xf8\x88\x15\xf7\x03\x07\x69\xa7\x60\x9a\x37\x95\x08\xca\x69\x4c\x07\x4c\x84\x6f\x82\x6a\x71" +"\x08\x69\x70\x77\x63\x60\x1a\x5c\x9b\x68\xb3\x66\x1e\xa8\x6f\xa1\x7c\xd2\x63\x08\xfb\xae\x07\x2d\x8c\x56\xba\x73\xf4\x08\x7c\xfb" +"\x16\x06\xc7\x66\xb5\x80\xdf\x88\x08\x34\xad\xe2\x07\xd5\x97\xaa\x97\xaf\xa8\x08\xac\xa7\x9e\xb4\xbb\x1a\xaf\x84\xac\x7e\xa0\x1e" +"\x71\xb4\x70\xa0\xfb\x0c\xd0\x08\xf7\x8a\x07\xdf\x81\xb8\x61\x9c\x36\x08\xfb\x49\x2e\x15\x37\xc3\x78\xa3\xba\x1a\xc2\xad\xad\xd0" +"\x99\x1e\xae\xfb\xec\x15\xe8\x51\xa0\x70\x4d\x1a\x49\x67\x66\x3d\x7c\x1e\x0e\xf7\xda\xf9\x31\xf8\x07\x15\xfb\x05\x20\xfb\x09\xfb" +"\x11\x3d\xba\x58\xd4\xb8\xb0\x9b\xae\xae\x1f\xc0\xc1\xac\xdc\xd9\x1a\xcf\x65\xb2\x4a\x1e\x92\x6b\x15\xb2\xaa\x67\x5f\x52\x72\x47" +"\x65\x5b\x1f\x64\x6b\x6e\x7a\x67\x1b\x66\x73\xa5\xb1\xc1\xa7\xdc\xb0\xbf\x1f\xb3\xa6\xa7\x9d\xaa\x1b\x61\xf7\xe5\x15\x64\x06\x58" +"\x54\x64\x7a\x4c\x1b\x63\x75\x92\x9f\x73\x1f\xa1\x71\x7e\x90\x6c\x1b\xfb\x07\x21\xfb\x0b\xfb\x13\x45\xc0\x52\xcc\xb6\xb8\x9f\xae" +"\xac\x1f\xbf\xc0\xab\xdb\xd3\x1a\x99\x89\x97\x86\x9d\x1e\x84\x9d\x9e\x88\xa8\x1b\xb6\xa4\x92\xa3\xb4\x1f\xfb\xf3\xfd\x07\x05\xbb" +"\x06\xf0\xf8\xf9\x15\x91\x77\x8e\x7c\x7d\x1a\x62\x7c\x56\x74\x61\x1e\x51\x6a\x5d\x69\x5d\x1b\x68\x73\xa4\xaf\xf5\xde\xf7\x22\xc9" +"\x90\x8d\x8a\x86\x91\x1f\x99\x7e\x97\x86\xa8\x83\x08\x0e\xf7\xa3\xf9\x5b\xf8\x3e\x15\xfb\x6c\x76\x06\xbd\x86\x99\x81\x6d\x1a\x5f" +"\x71\x57\x4a\x35\x1e\x54\xd0\x6a\xbe\x5f\xe1\x08\xf7\x06\xc1\xb4\xb8\xd3\x1a\xd2\x53\xbd\x3c\x35\x47\x47\x35\x65\x93\x6b\xa6\x40" +"\x1e\x65\x75\x05\x21\x4e\x58\x44\x37\x1a\x2c\xcb\x52\xf6\xdc\xc7\xa4\xcd\xd6\x1e\x4a\xca\xbc\x71\xc5\x1b\xcb\xc4\xb5\xd2\xa9\x1f" +"\x7c\x96\x05\x63\x6b\x75\x7e\x67\x1b\x53\x58\xaa\xc8\x5c\x1f\xb7\xc6\xa4\xb0\xaa\xc1\xa5\xb9\x18\xa3\xb4\x9f\x97\xbd\x91\x08\xfc" +"\x1a\x96\x15\x6d\xca\x81\xb1\xb8\x1a\xbb\xaa\xad\xb9\xb9\xad\x67\x5a\x54\x65\x5d\x3c\x61\x1e\x46\x42\x15\xc7\xfb\x06\xae\x54\xc4" +"\x45\x08\x5c\x4f\x65\x79\x60\x1b\x44\x51\xca\xd9\xcb\xaa\xb6\xe2\xc3\x1f\x0e\xfb\x42\xf5\xf8\x45\x4d\x0a\x0e\xfb\x42\xf7\xbb\xf9" +"\x38\x15\x41\x5a\x6d\x72\x66\x5d\x08\x44\x34\x68\x27\xfb\x09\x1a\xfb\x14\xb0\x2a\xe3\x25\x1e\xb4\x5b\xa5\x75\xbf\x6b\x97\x9b\x18" +"\x3b\xca\x6f\xaf\x70\xd5\x08\x73\xce\x80\xd6\xf0\x1a\xf4\x98\xde\xa6\xc8\x1e\xa7\xc9\xa9\xaf\xd3\xc5\x08\x0e\xfb\x42\xb1\xfb\x45" +"\x15\xd5\xbc\xa9\xa4\xb0\xb9\x08\xd2\xe2\xae\xef\xf7\x09\x1a\xf7\x14\x66\xec\x33\xf1\x1e\x62\xbb\x71\xa1\x57\xab\x7f\x7b\x18\xdb" +"\x4c\xa6\x68\xa7\x40\x08\xa3\x48\x96\x40\x26\x1a\x22\x7e\x39\x70\x4e\x1e\x70\x4d\x6c\x66\x43\x51\x08\x0e\x84\xf7\x85\xf8\x55\x15" +"\x8c\x82\x8c\x85\x89\x1a\x71\x85\x71\x7f\x6b\x1e\x84\x78\x87\x7a\x80\x1a\x78\x9b\x7a\x9e\xa0\x9d\x9e\xa0\x91\x88\x97\x86\x99\x1e" +"\x7e\xae\x84\xb1\xb2\x1a\x92\x07\x92\x88\xa0\x83\xa2\x77\xa5\x6b\x19\x6c\xa4\x9c\x7f\x9d\x1b\xa0\x99\x9a\xa1\xa5\x7c\x96\x5f\x92" +"\x1f\x64\x91\x6a\x97\x72\x9b\x83\x90\x18\xbc\xa7\x9e\x92\xb7\x92\x08\xb2\x91\x97\x95\xa5\x1a\xa2\x7d\x9b\x75\x7c\x7a\x7e\x6f\x73" +"\x1e\x72\x6d\x73\x75\x74\x7f\x84\x87\x18\xa5\x07\xa6\xf7\x16\x05\x9f\x7b\x9b\x77\x77\x7c\x7c\x77\x80\x8f\x78\x91\x76\x1e\x95\x68" +"\x90\x6c\x72\x1a\x7e\x07\x65\xa0\x77\x9b\x6b\xaf\x08\xa3\x77\x7f\x93\x7b\x1b\x77\x7d\x7c\x76\x72\x9e\x7e\xbc\x82\x1f\xb0\x84\xa9" +"\x81\x9e\x7e\x96\x84\x18\x62\x72\x7b\x85\x5d\x82\x08\x5e\x83\x7a\x7f\x71\x1a\x76\x98\x7e\xa2\x9b\x94\x90\x9e\x9c\x1e\xa8\xac\x90" +"\x90\x93\x92\x95\x93\x8f\x8f\xb0\xa3\x08\x0e\xc4\xf7\x8d\xf7\xb2\x15\xfb\x6f\x49\xf7\x6f\xfb\x70\xcd\xf7\x70\xe7\x1d\xfb\x95\xde" +"\xfb\x21\x25\x0a\xfb\x42\xc9\x0a\xfb\x95\xf7\x11\xef\x2b\x0a\xfb\x79\xf7\xb3\xf9\x38\x15\x48\x06\xfb\x79\xfd\x46\x05\xcf\x06\x0e" +"\x84\xf7\x92\xf9\x38\x15\x54\x61\x7b\x67\x66\x1f\x51\x53\x65\xfb\x07\xfb\x09\x1a\xfb\x02\xac\xfb\x08\xba\x53\x1e\x5f\xb0\xbe\x73" +"\xc5\x1b\xbe\xb6\x9c\xae\xaf\x1f\xc5\xc2\xb1\xf7\x08\xf7\x0d\x1a\xf7\x61\x30\xf7\x21\xfb\x17\x1e\x88\x71\x15\xdf\xb8\xfb\x05\xfb" +"\x65\xfb\x65\x5f\x20\x35\x35\x5f\xf6\xf7\x64\xf7\x69\xb8\xf7\x02\xe1\x1f\x0e\x84\xf7\x0a\x16\xf7\xa8\x9a\x06\x3e\x7a\x96\xbb\x8a" +"\x1f\xf8\xec\x07\x83\x8d\xfb\x48\x30\x05\x7d\x07\x9a\xb2\xa3\x92\x94\x1b\xa0\x94\x7c\x6b\x1f\xfc\x59\x07\x89\x4c\x7a\x7d\x3f\x8a" +"\x08\x0e\x84\xf8\x6f\xf7\x1d\x15\x7e\x90\x66\x51\x80\x84\x5c\x8a\x19\xfb\x83\x06\xf7\x3c\xf7\x44\x05\xe4\xe8\xb2\xd7\xd9\x1a\xef" +"\x3a\xd8\x23\x54\x57\x75\x63\x66\x1e\x6b\x69\x7c\x6b\x7a\x44\xa0\x86\x18\xed\xb3\xae\xab\xd1\x1b\xe0\xc3\x52\x37\x3c\x5d\x2f\x37" +"\x32\x1f\xfb\x46\xfb\x51\x05\x7f\xf8\x1a\x07\x0e\x84\xf7\x2d\xf7\xde\x15\xc6\xa2\x89\x82\xa2\x1f\xca\x74\xb1\x53\x46\x1a\x36\x53" +"\x4b\x41\x6f\x77\x92\xa3\x66\x1e\x9d\x6e\x7a\x92\x7a\x1b\x74\x7c\x7d\x76\x68\xb6\x75\xd1\xd7\xda\xa5\xb4\xbb\x1f\xba\xb4\xa4\xc5" +"\xce\x1a\xbf\x7b\xb9\x6f\xaa\x1e\x76\xa1\x78\x97\x60\x9e\x08\xcf\xba\xa4\xb0\xc1\x1a\xdd\x4c\xc2\x2e\x59\x5f\x7a\x6b\x67\x1e\x6d" +"\x6f\x7c\x72\x76\x4f\x9a\x87\x18\xd5\xb3\xb8\xab\xca\x1b\xcd\xb7\x60\x4b\x67\x7c\x68\x72\x71\x1f\x6d\x6d\x6f\x7c\x47\x73\x08\x0e" +"\x84\xf8\x6c\xf7\x7b\x15\x25\xf8\x51\x5f\x06\xfb\xce\xfc\x51\x05\x4b\xf7\xad\xfb\x3b\xd8\xf7\x3b\xf1\x07\xfb\x48\xcb\x15\xfb\x84" +"\x06\xf7\x84\xf7\xeb\x05\x0e\x84\xf7\x49\xf8\xdb\x15\xf7\x58\x06\x9c\x8e\x8c\x93\x8e\x1f\xb1\xe4\x82\x92\x05\x77\x7c\x82\x85\x75" +"\x1b\xfb\x65\x06\xfb\x01\xfb\x81\x05\x8a\x89\x8b\x8a\x89\x1a\x85\x8f\x89\x93\xab\xb2\x84\x7e\xb5\x1e\xf7\x07\x66\xbf\x4e\x27\x1a" +"\x2b\x4f\x40\x3c\x77\x7b\x92\xa1\x6d\x1e\xa3\x6b\x75\x94\x74\x1b\x6f\x7d\x7f\x72\x65\xb9\x73\xd7\xde\xd3\xa6\xbe\xbe\x1f\xb8\xb8" +"\xa0\xc4\xd7\x1a\xd3\x78\xb9\x5a\xbd\x1e\x5f\xb7\x52\xa2\xfb\x0a\xa0\x08\x0e\x84\xf8\x52\xf9\x40\x15\xfb\x06\x81\x51\x78\x42\x58" +"\x08\xfb\x00\x3e\x50\xfb\x06\xfb\x1a\x1a\x34\xa6\x33\xb6\x59\x1e\x5f\xb1\xc1\x73\xc9\x1b\xf7\x10\xe1\xea\xf7\x1e\xf7\x15\x43\xdb" +"\xfb\x09\x5f\x77\x84\x65\x4c\x1f\xa6\xf7\x2b\xf7\x04\xf7\x00\xf7\x31\xa5\x08\xfb\x62\xfb\xb2\x15\xe2\xbc\x43\xfb\x11\xfb\x02\x64" +"\x4e\x45\x33\x55\xe9\xf7\x2f\xbe\x93\xa7\x9f\x9a\x1f\x9b\xa0\xaa\x94\xae\x1b\x0e\x84\xf8\x55\x21\x1d\xfc\x06\x06\x50\xfb\x27\x9c" +"\x83\xb4\xce\x9e\x98\xc3\x8c\x19\xf7\x6d\x06\xfb\x5a\xfc\xe8\x05\xcc\x06\xf7\x68\xf9\x22\x05\x0e\x84\xf7\xb6\xf8\x07\x15\xef\xc1" +"\xad\xb4\xcf\x1a\xde\x44\xc6\x26\xfb\x01\x3a\x48\x30\x4a\x9e\x6e\xf4\x2f\x1e\xfb\x01\x38\x76\x6e\x46\x1a\x29\xd9\x48\xf7\x06\xf7" +"\x0c\xd8\xcd\xf2\xd8\x69\xbb\xfb\x0d\xe6\x1e\x79\x24\x15\xd4\x57\xa3\x67\x53\x1a\x4a\x5e\x5e\x4a\x3f\x58\xc5\xe1\xcc\xa0\xb4\xc6" +"\xbb\x1e\xbc\xd8\x15\x32\xc5\x67\xb9\xc3\x1a\xc5\xb8\xb4\xca\xcf\xb6\x5f\x46\x4e\x71\x63\x47\x5e\x1e\x0e\x84\xc6\x75\x15\xf7\x04" +"\x98\xc2\x9e\xcf\xbc\x08\xf3\xd7\xc8\xf7\x10\xf7\x1b\x1a\xf7\x39\x30\xf7\x09\xfb\x16\xfb\x0b\x32\x26\xfb\x1b\xfb\x0e\xd3\x3a\xf7" +"\x00\xc2\xb5\x9b\xb4\xc0\x1e\x62\xfb\x37\xfb\x03\x20\xfb\x2c\x71\x08\xf7\xc6\xf7\xf9\x15\x77\x87\x82\x80\x82\x1e\x74\x70\x65\x7d" +"\x67\x1b\x3f\x5b\xd6\xf7\x0b\xc4\x9b\xc7\xa0\xa5\x1f\x9f\x9c\xa4\x96\xa8\x1b\xe2\xb8\x35\xfb\x3c\x1f\x0e\xfb\x79\xf7\x1c\xf8\x5f" +"\x15\x2c\x1d\xfb\xfb\x04\x2c\x1d\x0e\xfb\x79\xf6\xfb\x21\x15\xd0\xad\xb6\xc7\xc7\x1a\xbe\x68\xb1\x5e\x67\x74\x75\x69\x6a\xa1\x78" +"\xb0\x92\x92\x8c\x8c\x91\x1e\x8d\x90\x8c\x8b\x8c\x1b\x93\x91\x85\x83\x6b\x6f\x66\x55\x66\x1f\xb1\xf8\xd9\x15\x6d\x72\x72\x6b\x6e" +"\xa4\x72\xa8\xaa\xa5\xa4\xa8\xaa\x71\xa5\x6d\x1f\x0e\xc4\xf8\x7c\xf8\xe8\x15\xfc\x30\xfb\x9c\x05\x85\x07\xf8\x30\xfb\xa8\x05\xf3" +"\x07\xfb\xc6\xf7\x60\xf7\xc6\xf7\x5b\x05\x0e\xc4\xf8\xaa\xf8\x16\x15\xfc\x8c\x49\xf8\x8c\x06\xfb\x1a\x04\xfc\x8c\x49\xf8\x8c\x06" +"\x0e\xc4\xd7\xbd\x15\xf8\x30\xf7\x9c\x05\x92\x07\xfc\x30\xf7\xa7\x05\x24\x07\xf7\xc6\xfb\x61\xfb\xc6\xfb\x5b\x05\x0e\x4c\xf7\x88" +"\xf7\x38\x15\x96\xcf\x9c\xb3\xb0\xb9\xb9\xc3\x8b\x8b\x99\xa0\x08\xab\xbc\x98\xaf\xb4\x1a\xb1\x7e\xaf\x74\xa2\x1e\xae\x69\x50\xa2" +"\x54\x1b\x2f\x45\x4d\x38\x62\x9b\x76\xab\xa4\x9b\x9b\xa4\x99\x85\x97\x7c\x9c\x1f\x7e\x99\x87\x93\x94\x1a\xab\xb9\xa9\xbb\xc8\xbb" +"\x56\x48\x5d\x7e\x54\x73\x54\x1e\x6f\x4b\x78\x5a\x81\x5a\x8a\x5f\x19\x95\x48\x15\x6d\x74\x73\x6c\x6e\xa1\x76\xaa\xab\xa2\xa0\xa9" +"\xa9\x72\xa3\x6d\x1f\x0e\xf8\x32\xf9\x44\xd4\x15\x68\x3d\x58\x7e\x48\x1b\xfb\x3f\xfb\x0d\xf7\x0f\xf7\x43\xe8\xaf\xea\xc4\xc5\x1f" +"\xbc\xbc\xcd\xa6\xd5\x1b\xf7\x31\xf7\x16\xfb\x0f\xfb\x29\x26\x4c\x2b\x49\x71\x7e\x9a\xaa\x92\x8c\x91\x8c\x90\x1f\xcc\xf7\x92\x05" +"\x46\x06\x81\x65\x05\xb4\x75\x7c\x96\x68\x1b\x60\x68\x7b\x69\x68\x1f\x57\x56\x6c\x40\x41\x1a\x4c\xb2\x5a\xbc\xb7\xba\xa6\xb8\xad" +"\x1e\x5f\x91\xb0\x6e\xbb\x1b\xee\xe0\xf7\x03\xf7\x15\xf7\x39\xfb\x23\xf7\x14\xfb\x4d\xfb\x5f\xfb\x36\xfb\x2f\xfb\x57\xfb\x54\xf7" +"\x34\xfb\x28\xf7\x64\xd1\xbc\x98\xb7\xec\x1f\xfb\x3d\xf8\x39\x15\xa7\x89\x9a\x74\x89\x64\x89\x59\x7a\x51\x72\x5c\x08\x67\x77\x6e" +"\x75\x70\x1b\x66\x74\xab\xc0\xc1\x9d\xbd\xad\xb1\x1f\xa7\xab\xae\x9f\xa3\x89\x08\x0e\x22\x0a\x0e\xf7\x34\x9c\xf9\x17\x15\xdf\x66" +"\x1d\x40\x7e\x7f\x39\x88\x08\x78\xf7\xe2\x07\xd8\xd3\xa0\xad\xb0\x1f\xaf\xab\x9f\xb8\xbb\x1a\xb7\x7a\xb3\x6b\xa8\x1e\x6d\xa6\x70" +"\x97\x4a\x9b\xbf\x98\xa0\x95\xa3\xa0\x08\xa4\xa1\x9a\xaf\xb5\x1a\xf7\x04\x31\xc5\xfb\x40\x1e\xfb\xac\x06\xf7\x5a\xfb\xe4\x15\xec" +"\xb9\x85\x7c\xaf\x1f\xc4\x74\xa6\x62\x4d\x1a\x55\x76\x64\x63\x74\x1e\x79\x6b\x62\x83\x49\x1b\x5a\x7d\x94\xab\x1f\xf7\xb3\x04\xf7" +"\x7a\x07\x8c\xa1\x8f\x91\x9c\x8c\xb7\x8c\x18\xf7\x03\x8e\xcc\x58\x32\x1a\x3c\x58\x61\x2b\x8a\x1e\x0e\xf7\x34\x31\x0a\x0e\x6a\x0a" +"\x0e\xf3\x21\x0a\x0e\xbc\xf8\x73\xf7\x7b\x15\xf7\x7c\x74\x07\x80\x3c\x7a\x7d\x39\x89\x08\xfb\x25\xf7\x72\x06\x8c\xa9\x8e\x8e\xa7" +"\x8c\x08\xf7\x1c\x54\x1d\xfc\x45\xa5\x0a\xf7\x6e\xf7\x25\x07\xdd\x8a\x9b\x7d\x97\x3a\x08\x0e\x30\x0a\x0e\x69\x0a\x0e\xfb\x42\x28" +"\x1d\x0e\xfb\x0a\xf8\x06\x21\x1d\xfb\xb3\x78\x06\xdc\x85\x96\x81\x8c\x41\x08\xfc\x63\x07\x5e\x7f\x76\x71\x7d\x85\x93\xa4\x84\x1e" +"\xae\x81\x7b\x9b\x71\x1b\x70\x75\x74\x70\x61\xb4\x6d\xc5\xf7\x00\xc8\xd3\xf7\x11\x1f\xf8\x06\x07\x8d\xd6\x94\x94\xdc\x91\x08\x0e" +"\x63\x0a\x0e\xf3\x36\x1d\x0e\xf8\x12\xf9\xf3\x21\x1d\xfb\x5b\x06\xfb\x71\xfc\x8d\xfb\x7b\xf8\x8d\x05\xfb\x5a\x78\x06\xdd\x87\x96" +"\x80\x8d\x40\x08\xfc\x2a\x59\x1d\xf8\x27\x07\xf7\x8f\xfc\xba\x05\x99\x06\xf7\x94\xf8\xd1\x05\xfc\x59\x07\x8a\x36\x80\x80\x3c\x86" +"\x08\x78\xf7\xac\x9e\x07\x43\x8f\x7e\x99\x89\xd3\x08\xf8\x50\x07\x8d\xd3\x97\x98\xd4\x90\x08\x0e\x33\x0a\x0e\x23\x0a\x0e\xbc\x9b" +"\xf9\x17\x15\xd5\x83\x94\x48\x1d\x84\x82\x3f\x84\x08\x78\xf7\xac\x9e\x07\x3c\x8d\x7d\x99\x8a\xd5\x08\xf7\x4a\xd9\x1d\xc7\xab\xaf" +"\xc8\xcd\x1a\xb5\x7d\xb1\x70\xa8\x1e\xb7\x63\x34\xa7\x2d\x1b\xfb\x9c\x06\xf7\x4e\x44\x15\xa6\x92\x92\xa6\xf7\x1b\xc9\x5c\x24\x2a" +"\x50\x59\xfb\x07\x77\x7d\x8c\x8d\x74\x1e\x0e\xf9\x51\xfb\x33\x15\xfb\x06\x8e\x3b\xb7\x3a\xf4\xcf\x98\xaf\x9c\xb9\xb3\x08\xd5\xcd" +"\xb1\xe6\xf7\x03\x1a\xf7\x5d\xfb\x1c\xf7\x24\xfb\x53\xfb\x53\xfb\x1c\xfb\x24\xfb\x5f\x29\xa9\x39\xc6\x4b\x1e\xb2\x61\xab\x77\xd2" +"\x73\xba\x54\x18\x3b\xcf\xf7\x0d\x61\xf7\x34\x1b\x96\x98\x8b\x8c\x95\x1f\x91\x06\xfb\xe5\xf9\xc5\x15\xb6\xb9\x78\x6c\xae\x1f\xc1" +"\x5b\xab\x2b\xfb\x05\x1a\x28\x6e\x25\x63\x5d\x1e\x62\x66\x57\x74\x54\x1b\x5b\x5f\x9c\xab\x66\x1f\x57\xba\x6b\xee\xf7\x0a\x1a\xec" +"\xa8\xec\xb4\xb9\x1e\xb7\xb4\xba\xa0\xc5\x1b\x0e\xf7\x34\x3b\x0a\x0e\xbc\x2f\x0a\x0e\xf3\x53\x1d\x0e\x24\x1d\x0e\xf9\x4d\x21\x1d" +"\xfb\x61\x78\x06\xc2\x87\x9d\x81\x6f\x1a\x7b\x84\x70\x7f\x6d\x1e\xfb\x27\xfc\x03\xfb\x2b\xf7\xe6\x05\x6a\xd5\x83\xa1\x9a\x1a\x9f" +"\x99\x94\xab\x8d\x1e\x90\x96\x8c\x8c\x98\x1f\x9e\xfb\x9e\x78\x07\xbc\x89\x99\x7d\xb6\x32\xf7\x8a\xfc\xb9\x18\x9a\x06\xf7\x72\xf8" +"\xc5\xac\xda\x96\x96\xbb\x8e\x19\x0e\xf8\x49\x32\x1d\x0e\xf9\x4c\x21\x1d\xfb\x82\x78\x06\xc1\x89\x9b\x84\x74\x1a\x7c\x81\x79\x6d" +"\x67\x1e\xfb\x05\xfb\x1e\x61\xc6\x05\x4e\xe1\x73\xb5\xa1\x1a\x9f\x9a\x93\xac\x8c\x1e\xa7\x8c\x05\x9e\xfb\xc2\x78\x07\xcc\x88\x9d" +"\x7c\xed\xfb\x1f\xf7\x01\xfb\x34\x18\xfb\x31\xfb\x55\x32\x21\x86\x87\x58\x87\x19\x78\xf7\x7d\x9e\x07\x50\x8f\x7a\x93\xa2\x1a\x9a" +"\x9a\xa4\xb0\xb9\x1e\xf7\x0b\xf7\x28\xea\xfb\x20\x05\xad\x58\x9c\x6b\x7c\x1a\x79\x7b\x81\x69\x8a\x1e\x87\x80\x8a\x8a\x7f\x1f\x78" +"\xf7\xbd\x9e\x07\x56\x91\x7c\x95\x60\xc5\xfb\x54\xf7\xa6\x18\xf7\x26\xf7\x4a\xcc\xd9\x9f\x97\xcb\x8f\x19\x0e\x34\x1d\x0e\xf3\x3c" +"\x0a\x0e\xfb\x42\xf7\xbf\xf9\x11\x15\xa4\xfb\x67\xfd\xc6\xf7\x67\xa4\x35\x07\x69\x8c\x7d\x9a\x8a\xaf\x08\xf9\x34\x07\x8c\xab\x96" +"\x96\xac\x8c\x08\x0e\xfb\x79\x82\xf9\x38\x15\xf7\x78\xfd\x46\x05\xcf\x06\xfb\x79\xf9\x46\x05\x0e\xfb\x42\xad\xfb\x17\x15\x72\xf7" +"\x67\xf9\xc6\xfb\x67\x72\xe1\x07\xad\x8a\x99\x7c\x8c\x67\x08\xfd\x34\x07\x8a\x6b\x80\x80\x6a\x8a\x08\x0e\x65\xe8\xf7\xbb\x15\xf7" +"\x22\xf7\xb3\xf7\x21\xfb\xb3\x05\xcf\x06\xfb\x48\xf7\xfe\x05\x50\x06\xfb\x48\xfb\xfe\x05\x0e\x84\xf8\x87\xfb\x18\x15\xbd\xfc\x85" +"\x59\x07\x0e\xfb\x42\xf7\x77\xf9\x38\x15\x48\x6a\x5e\x9c\x1d\x0e\x4c\x26\x1d\x0e\x84\xf7\x2d\xf9\x3d\x15\x86\x8d\x62\x7d\x70\x82" +"\x5b\x7e\x19\x6e\x83\x05\x7b\x07\x8c\x91\x8e\x8b\x93\x1b\xb3\x94\x82\x61\x1f\xfc\x9b\x07\x6c\xdf\x6a\xdc\xf7\x18\xf1\xf7\x02\xf7" +"\x23\xf7\x10\x3f\xe8\x27\x4e\x51\x68\x59\x77\x1e\x56\x04\xb2\xba\xaf\xbf\xa7\xa4\x81\x78\xa0\x1e\xab\x6c\xa1\x47\x43\x1a\xfb\x03" +"\x5b\x4b\x39\x57\x5e\xa1\xa5\x1e\x0e\x4c\x35\x1d\x0e\x84\xf8\x7f\x67\x0a\x0e\x4c\x27\x1d\x0e\xfb\x42\xf7\xc9\x26\x0a\xfb\x0f\xf7" +"\x08\x06\x7b\x0a\xf7\x98\x9a\x07\x39\x8e\x80\x96\xd6\x1a\xf7\xce\xf7\x0e\x07\x0e\x84\x3a\x0a\x0e\x84\x77\x1d\x0e\xfb\x79\x27\x0a" +"\xf7\x04\xf9\x30\x5b\x1d\xfb\x79\x70\x0a\x58\xf9\x3f\x5b\x1d\x84\x62\x0a\x0e\xfb\x79\x3d\x0a\x0e\xf7\xa3\x9b\x16\xf7\x72\x9a\x06" +"\x58\x8c\x7b\x96\x8a\xb3\x08\xf7\xae\x07\x8d\x93\x95\x92\x92\x1e\xa2\xa4\xb6\x9c\xae\x1b\xb7\xa1\x68\x45\x1f\xfb\x6d\x07\x89\x52" +"\x81\x80\x53\x88\x08\x7c\xf7\x74\x9a\x07\x53\x7d\x9b\xcb\x89\x1f\xf7\x90\x07\xb6\xa9\xab\x9d\xba\x1b\xc4\x9d\x70\x38\x1f\xfb\x67" +"\x07\x89\x50\x85\x84\x51\x85\x08\x7c\xf7\x6f\x9a\x07\x71\x8d\x05\x6b\x90\x80\x9a\xb2\x1a\xf7\x62\x07\xf7\x0a\x64\xc7\x3e\x51\x58" +"\x71\x51\x55\x1e\xc4\x79\x69\xa6\x55\x1b\x5e\x70\x7e\x4b\x38\x1f\xd6\x07\x84\x8d\x56\x78\x69\x80\x56\x7c\x19\x7a\x07\x8e\x97\x94" +"\x8c\x96\x1b\xa5\x94\x7b\x5b\x1f\xfb\x91\x07\x53\x89\x7e\x7d\x54\x1b\x0e\x84\x32\x0a\x0e\x84\x24\x0a\x0e\x84\x9f\x1d\x53\x5f\x73" +"\x54\x5f\x1f\xd8\x07\x85\x8d\x55\x76\x68\x7e\x54\x7a\x19\x7b\x07\x8c\x94\x91\x8b\x95\x1b\xad\x92\x81\x5c\x1f\xfc\x68\x07\x56\x80" +"\x81\x50\x85\x1e\xf7\x2e\xf8\xaa\xa3\x0a\x84\xf7\xfc\xf8\x3d\x15\xa5\x5e\x6d\x94\x63\x1b\xfb\x12\x2c\xfb\x03\xfb\x25\xfb\x11\xcd" +"\x32\xe9\xc5\xc2\xa5\xbb\xb7\x1f\xfb\x50\x07\x8a\x53\x79\x7b\x45\x87\x08\x7a\xf7\x80\x99\x07\x55\x97\x84\x92\x89\xb6\x08\xf8\xe9" +"\x07\x80\x8c\x05\x42\xfb\xde\x15\x73\x87\x7e\x81\x82\x1e\x79\x75\x6a\x7f\x6c\x1b\x6c\x70\x95\x9e\x77\x1f\x6b\xa9\x76\xcb\xce\x1a" +"\xf7\x0a\xc0\xd4\xe0\xc9\xaa\x6a\x49\x1e\x0e\xfb\x42\x40\x1d\x0e\xfb\x0a\x4a\x0a\x0e\xfb\x79\x74\x0a\x0e\x84\x25\x1d\x0e\x84\xf8" +"\x71\x26\x0a\xfb\x1f\x7c\x06\xab\x88\x9a\x81\x78\x1a\x81\x89\x81\x87\x81\x1e\x28\xfb\x97\x25\xf7\x94\x05\x85\x99\x88\x99\x94\x1a" +"\x9d\x96\x92\xae\x8e\x1e\x9a\xfb\x58\x7c\x07\xb1\x89\x92\x81\xb9\x24\xf7\x0c\xfb\xb3\x18\x8d\x85\x8e\x84\x8e\x83\x8e\x83\x8e\x84" +"\x8e\x86\x08\x87\x8d\x8f\x89\x8e\x1b\x91\x92\x98\xb0\x9a\x1f\xf7\x14\xf7\xd5\xa8\xcf\x91\x92\xa9\x8e\x19\x0e\x31\x1d\x0e\x84\xf7" +"\xaa\x16\xf7\x5d\x9a\x06\x6c\x77\x9b\xb7\x6c\x1f\xfb\x14\xf7\x58\xde\xf7\x0c\x9e\xa6\xa8\x9a\xac\x8d\x19\x9a\xfb\x32\x7c\x07\xa9" +"\x89\x95\x85\x7d\x1a\x7f\x7f\x75\x72\x6c\x1e\x86\x85\x7f\x79\x7e\x77\x83\x97\x18\x7c\xa2\x82\x98\x89\x8f\x08\x78\xaa\x84\x9b\x95" +"\x1a\x9a\x98\x91\xa9\x8c\x1e\x9a\xfb\x63\x7c\x94\x07\xa9\x9b\x7e\x5c\xaa\x1f\xe9\xfb\x24\xfb\x06\xfb\x39\x6d\x62\x81\x84\x6a\x88" +"\x19\x7c\xf7\x25\x9a\x07\x6e\x80\x90\x98\x92\x91\x98\x99\xa0\x1f\xda\xf7\x0f\xe6\xfb\x20\x05\x8f\x85\x8d\x86\x84\x1a\x79\x84\x87" +"\x6a\x89\x1e\x0e\x84\x33\x1d\x0e\x4c\x34\x0a\x0e\x70\xf7\xf2\xfb\x3e\x15\x47\x9b\x75\xaa\x8a\xd7\x08\xf7\x3c\x07\x8a\xe0\x78\xa4" +"\x41\x9d\xd5\x9e\x9e\xa5\x8c\xdf\x08\xf7\x3c\x07\x8c\xd7\xa1\xaa\xcf\x9b\x08\x96\x07\xfb\x10\x64\x6a\x21\x89\x1f\xfb\x46\x07\x8a" +"\x45\x79\x72\x49\x79\xcd\x78\x9d\x72\x8c\x45\x08\xfb\x45\x07\x20\x8e\xb1\x6a\xf7\x10\x1b\x0e\xfb\xc7\xce\xfb\x8d\x15\xcd\xfa\x7a" +"\x49\x06\x0e\x70\xf7\x16\xf9\x31\x15\xce\x7b\xa2\x6c\x8c\x3f\x08\xfb\x3c\x07\x8c\x36\x9e\x72\xd5\x79\x41\x78\x78\x71\x8a\x37\x08" +"\xfb\x3c\x07\x8a\x3f\x74\x6c\x48\x7b\x08\x80\x07\xf7\x10\xb2\xac\xf5\x8d\x1f\xf7\x46\x07\x8c\xd1\x9d\xa4\xcd\x9e\x49\x9d\x79\xa4" +"\x8a\xd1\x08\xf7\x45\x07\xf7\x00\x88\x65\xab\xfb\x10\x1b\x0e\xad\xf8\x53\xf7\xce\x15\x64\x72\x79\x7f\x6d\x1b\x76\x76\x90\x94\x7a" +"\x1f\xba\x33\x78\x92\x5f\x1b\x5d\x6e\x77\x4a\x5c\x1f\xc1\x6c\x05\xb2\xa4\x9c\x97\xaa\x1b\xa0\x9f\x86\x82\x9d\x1f\x5b\xe3\x9d\x85" +"\xb8\x1b\xb9\xa7\x9f\xcc\xbb\x1f\x0e\xfb\x42\xf7\x24\xf7\xae\x15\x5e\xfc\x13\x05\x8a\x7f\x8a\x7e\x7f\x1a\x57\x9e\x6f\xad\xac\x9f" +"\xa8\xbc\xad\x83\xd2\x7f\xd2\x1e\x84\xb8\x85\xb9\x87\xba\x82\xf7\x00\x18\x85\xf7\x4d\x15\x6c\x74\x76\x6e\x6c\xa2\x73\xa9\xaa\xa3" +"\xa3\xa9\xa8\x73\xa1\x6d\x1f\x0e\x84\xf8\x27\xf8\xd7\x15\x68\x06\x5f\xfb\x10\x05\x8f\x73\x7e\x8c\x7d\x1b\xfb\x10\x2b\x21\xfb\x1b" +"\x54\x9c\x55\xa8\x64\x1f\x9d\x72\x9a\x7e\xb0\x76\x58\xfb\x2a\x18\xad\x06\xbc\xf7\x1e\x05\x84\xa3\x9a\x89\x9c\x1b\xb1\xb0\x99\xa3" +"\xa7\x1f\xae\xa9\x9e\xa6\xad\xd1\x7e\x93\x18\x40\x57\x67\x72\x50\x1b\x77\x7b\x8e\x94\x74\x1f\xf0\xf7\xb7\x05\x64\x9d\x9a\x7e\xa4" +"\x1b\xa4\x9d\x9d\xa6\xae\x70\xa9\x5b\x9e\x1f\xfb\x32\xfb\xee\x15\x5a\xb8\x78\xb8\xd3\x1a\xf1\xc1\xcf\xdd\x9c\x97\x89\x84\x9d\x1e" +"\x0e\x84\xf7\xec\xf8\x09\x15\xfb\x11\x06\x82\xd5\x89\xa6\xaf\x1a\xe3\xae\xbe\xc7\xb0\x9e\x7a\x68\x1e\x56\x8c\x93\x7d\xa9\x1b\xa8" +"\xa0\xa1\xaa\xc0\x54\xb3\x40\xfb\x0c\x40\x31\xfb\x24\x72\x8d\x79\x90\x71\x1f\x20\x5e\xf7\x00\x06\x8d\x7a\x8d\x7b\x05\x96\x3f\x91" +"\x54\x79\x1a\x84\x8a\x85\x89\x83\x1e\x8f\x78\x7f\x8c\x7c\x1b\x54\x67\x6d\x5d\x65\xa5\x73\xb5\xae\xa2\x99\xbb\xb3\x1f\x5c\xcf\xac" +"\x7d\xb6\x1b\xbb\xb8\xa0\xb0\xab\x1f\xa0\xa3\xa1\xb7\x9d\x1a\x8e\x89\x8c\x87\x85\x84\x86\x80\x81\x1e\x69\x6c\x67\x7c\x5d\x1b\x5a" +"\x68\x93\xa6\x4a\x1f\xa1\xf7\x01\x8e\x9f\xac\x1a\x8b\x8b\x98\x8a\x9a\x1e\x8a\xa6\x05\xf7\x0e\x06\xfb\x93\xfb\x7e\x15\xa4\xa7\x81" +"\x83\x83\x85\x7e\x80\x7f\x1f\x7a\x7e\x7e\x85\x77\x1b\x73\x7a\x9a\xa1\xa3\x9c\x98\xad\x1f\x0e\xfb\xe8\xb4\x0a\x84\xf7\xf7\x9e\x15" +"\x4c\x8c\x7b\x9c\x8a\xd3\x08\xd4\xf7\x41\xb3\xfb\x41\xd7\x07\x92\x99\x05\xf7\x3a\xb3\xfb\x26\x06\xe7\xf7\x4c\xb0\xd0\xa9\xa6\xbe" +"\x96\x19\x9e\xfb\x57\x78\x99\x07\xa9\xa0\x7f\x78\x81\x86\x7a\x82\x7a\x1f\xfb\x04\xfb\x70\xfb\x0a\xf7\x71\x05\x83\x9a\x86\x9c\x98" +"\x1a\xa0\x9d\x93\xba\x1e\x9e\xfb\x87\x78\x07\xb9\x89\x9c\x7a\xc2\x28\xea\xfb\x41\x18\xfb\x24\x63\xf7\x3b\x06\x92\x7d\x05\x3f\xfb" +"\x42\x63\xf7\x42\x4d\x07\x8a\x37\x80\x7d\x48\x88\x08\x78\xf7\x88\x07\x0e\x84\xf8\x44\xf8\x2b\x15\xfb\x12\x06\x8e\xac\x8e\xa5\x8d" +"\x9c\x90\xc2\x98\xba\x9e\xae\x08\x9c\x94\x9d\x95\xa0\x1b\x97\x93\x86\x84\x88\x89\x86\x88\x85\x1f\x86\x82\x88\x82\x85\x1a\x79\x9d" +"\x7b\x9f\xa4\xa0\x9f\xa4\xb1\x65\xa9\x5c\x61\x60\x74\x66\x71\x1e\x65\x52\x7a\x5b\x7b\x23\x08\x20\x06\x81\x6c\x05\xf7\x03\x06\x89" +"\x7c\x80\x48\x8a\x87\x85\x53\x86\x56\x19\x7c\xfb\x40\x05\xfb\x09\x81\x70\x52\x5d\x1b\x7f\x83\x90\x93\x8e\x8d\x8f\x8f\x92\x1f\x91" +"\x95\x8e\x93\x94\x1a\xa1\x7d\x99\x75\x70\x78\x79\x70\x63\xac\x6e\xba\xc2\xb2\xab\xd4\xac\x1e\xaa\xd1\x9c\xdb\xa3\xf7\x4d\x8d\x9c" +"\x92\xc4\x92\xbe\x08\xf7\x0c\x06\x0e\x84\xf7\xca\xf7\x11\x15\xcf\xbb\xbd\xd1\xc0\x6c\xc1\x51\xbb\x1f\xfb\x1d\xf7\x05\x05\x77\x9c" +"\x7d\xa7\xa5\x1a\xb5\xad\xa8\xbe\xae\xa6\x7d\x79\x88\x89\x88\x85\x86\x1e\x7b\x80\x81\x7a\x7b\x1a\x72\x9e\x79\xa7\xab\x9e\x9f\xac" +"\xc3\x54\xb5\x42\x38\x53\x5a\x42\x55\x9e\x6d\xdc\x49\x1e\x8c\x81\x82\x8b\x85\x1b\x49\x5a\x58\x47\x41\xbc\x4c\xf7\x0e\x37\x1f\xcc" +"\x5f\xa3\x6b\x64\x1a\x5c\x69\x6d\x56\x66\x69\x9c\x9d\x8f\x8f\x90\x92\x91\x1e\x9a\x98\x93\x99\x99\x1a\xa3\x76\x9d\x70\x6c\x74\x74" +"\x6c\x53\xc7\x5f\xd9\xe2\xc4\xbe\xd7\xbf\x78\xa8\x40\xcc\x1e\x26\xf7\x96\x15\xaa\xbf\x6c\x5c\xba\x1f\xad\x69\x9e\x6a\x71\x1a\x68" +"\x6b\x6c\x66\x65\x66\xa2\xc7\x4e\x1e\x69\xad\x7f\xa2\xa9\x1a\xb2\xa7\xa7\xb3\x1e\x0e\x84\x75\xf7\x00\x15\xbd\x59\xeb\xed\x05\x6e" +"\xb5\xb1\x7f\xba\x1b\xba\xb1\x98\xa7\xb3\x1f\xed\x29\xbb\xbd\x2b\xeb\x05\xa8\xb8\x95\xad\xbb\x1a\xbc\x81\xac\x6e\xb6\x1e\xeb\xed" +"\x5b\xbb\x29\x2b\x05\xa6\x64\x66\x97\x5a\x1b\x5b\x68\x80\x6f\x5f\x1f\x2b\xeb\x59\x5b\xed\x29\x05\x6e\x63\x7f\x65\x5b\x1a\x5b\x97" +"\x67\xa8\x61\x1e\xf7\x45\xf7\xa9\x15\xda\xcc\x47\x39\x36\x4a\x48\x3a\x39\x49\xcf\xde\xe0\xcd\xcd\xdf\x1f\x0e\xfb\xdb\xf0\xf8\x43" +"\x15\x8e\x9d\x8d\x98\x8d\x94\x08\x9b\xd7\x94\xc7\xa8\x1a\xa1\x78\x9d\x74\x73\x78\x79\x74\x7a\x99\x31\x9d\x2a\x1e\x0e\x4c\xf7\x2f" +"\xf9\x38\x15\x47\x6a\x5f\x9c\x1d\xf7\x73\x9e\x15\x47\x6a\x5f\x4e\x4f\x1a\x58\xae\x65\xb8\xae\xa3\xa2\xad\xab\x75\x9e\x66\x84\x84" +"\x8a\x8a\x85\x1e\x89\x86\x8a\x8b\x8a\x1b\x83\x85\x91\x93\xac\xa6\xae\xc2\xb1\x1f\x0e\x84\xb5\xf7\x72\x52\x1d\x89\x8a\x85\x85\x80" +"\x82\x08\xf7\x13\x50\x52\x1d\x88\x89\x18\x86\x86\x86\x86\x85\x87\x08\x0e\xfb\x42\xca\xf7\x72\x52\x1d\x89\x8a\x85\x85\x80\x82\x08" +"\x0e\xfb\x42\xf7\xa2\xf7\x72\x15\x4a\xc6\x85\x8f\x86\x90\x86\x90\x19\x88\x8d\x82\x93\x81\x94\x86\x8f\x19\x6e\xa5\x6c\xa9\x8a\x8e" +"\x08\xa0\x7a\x77\x9d\x85\x1b\x86\x86\x86\x86\x7e\xa4\x63\xa8\x67\x1f\xac\x64\x9c\x76\x4e\x0a\x0e\xbc\xaa\xf8\x35\x15\xcf\xfb\xd7" +"\x06\xa3\x1d\x85\x83\x4d\xeb\x1d\x98\x8a\xcc\x08\xf7\x9a\x07\x97\x8b\x9a\x8c\x9e\x1e\x8c\xbf\x87\x8e\x05\x84\x63\x6b\x88\x62\x1b" +"\xfb\x31\xb6\x06\x8a\xb0\x8f\xb2\x90\x9b\x08\xb6\x98\xb3\xa9\xb8\x1b\xa7\x9d\x7f\x68\xa4\x1f\x70\x9e\x98\x81\x9c\x1b\xa0\x9a\x9b" +"\xa2\xb6\x59\xa6\x3e\x3f\x51\x71\x5a\x67\x1f\x6d\x62\x80\x66\x85\x3b\x08\x46\x06\x0e\xbc\xab\xf8\x36\x15\xd0\xfb\xcd\x06\xad\x1d" +"\x7b\x58\x88\x78\x0a\x44\x06\xf7\xe9\xb4\x1d\x8c\x91\x90\x1f\x0e\x84\xf7\x8e\x04\x5a\xf8\x88\xbc\x07\x0e\x84\xf7\x9a\xfb\x29\x15" +"\x8c\xf7\x0f\x8d\xf7\x12\x98\xeb\xa4\xc4\x19\x6e\xaa\x7e\xc3\xed\x1a\xad\x88\x9b\x88\xb4\x7b\x08\x84\x9f\x9f\x86\x97\x1b\xa1\x9b" +"\x9d\xa4\xa4\x7a\x9e\x75\x7f\x79\x86\x83\x78\x1f\x61\x7a\x7c\x87\x67\x8a\x08\xc0\x8f\xa4\x75\x0a\x08\x28\x7e\x54\x6e\x6c\x1e\xa1" +"\x54\x9d\xfb\x0c\x8d\x23\x8c\xfb\x0f\x18\x0e\x84\xf7\x99\xf8\x5c\x15\xc1\x8f\xa3\x75\x0a\x8c\x34\x7f\x57\x6d\x64\xa8\x70\x97\x59" +"\x8a\x29\x69\x8e\x7c\x8e\x61\x9b\x08\x92\x77\x77\x90\x80\x1b\x74\x7b\x7a\x71\x71\x9b\x79\xa3\x95\x9e\x90\x93\x9e\x1f\xb5\x9c\x9a" +"\x8f\xaf\x8c\x08\x56\x87\x72\x77\x59\x1e\x84\x78\x86\x7a\x81\x1a\x73\xa1\x75\xa3\xa4\xa1\xa1\xa3\x95\x86\x9c\x84\x9e\x1e\x77\xbd" +"\x87\xa4\xc0\x1a\xaf\x8a\x9a\x87\xb5\x7a\x08\x83\x9e\x9e\x86\x95\x1b\xa2\x9c\x9d\xa4\xa6\x7b\x9c\x74\x7f\x78\x86\x84\x77\x1f\x61" +"\x7b\x7c\x88\x69\x88\x08\xec\x95\xb7\xaa\xad\x1e\x6c\xb0\x81\xb7\x8c\xec\xad\x88\x9b\x88\xb4\x7b\x08\x84\x9f\x9f\x86\x97\x1b\xa1" +"\x9b\x9d\xa3\xa5\x7b\x9e\x74\x80\x79\x86\x83\x77\x1f\x61\x7a\x7c\x87\x67\x8a\x08\x0e\xfb\x95\xf7\x11\xf7\xca\x2b\x0a\x55\xf7\x82" +"\xf9\x14\x15\xc5\xfd\xae\xf7\x2e\xa1\x06\x5e\x0a\xf8\xe7\x07\x8c\xd4\x95\x95\xd8\x92\x08\x9e\xfb\x9b\x07\xfb\x27\x4d\x54\xfb\x16" +"\x3a\xa2\x52\xba\x6b\x1f\xac\x73\xa7\x84\xca\x88\x08\xfb\xc4\x46\x0a\x75\xf7\x2e\x07\x49\xf8\x55\x15\x35\x94\x6b\xbe\xf7\x11\x1a" +"\xd3\x99\xb8\xa8\xa0\x1e\x9d\x98\x9c\x91\xb3\x8e\x08\x0e\xfb\x31\xf7\x42\xf8\x63\x15\x41\x50\x50\x41\x3f\xc6\x50\xd6\xd4\xc8\xc7" +"\xd3\xd8\x50\xc6\x3f\x1f\x0e\xfb\x42\xf5\xfb\x21\x25\x0a\x4c\xd3\xfb\x21\x15\xcf\xac\xb7\x8f\x0a\x67\x55\x65\x1f\xf7\x85\x78\x15" +"\xcf\xac\xb7\x99\x1d\x4c\xc4\xf8\x45\x4d\x0a\xf7\x85\x78\x15\xce\xac\xb8\xc8\xc7\x1a\xbe\x68\xb1\x5e\x68\x73\x74\x69\x6b\xa1\x78" +"\xb1\x40\x0a\x6f\x67\x55\x66\x1f\x0e\x84\xf8\x5e\xf7\x72\x15\x4a\xc6\x80\x94\x85\x91\x89\x8c\x19\x81\x94\x83\x92\x85\x90\x6e\xa5" +"\x6c\xa9\x8a\x8e\x08\xa0\x7b\x76\x9d\x85\x1b\x86\x86\x86\x86\x7e\xa3\x63\xa9\x67\x1f\xab\x65\x9d\x75\x4e\x0a\xfb\x35\xa6\x15\x4a" +"\xc6\x85\x8f\x86\x90\x86\x90\x19\x88\x8d\x82\x93\x81\x94\x86\x8f\x19\x6e\xa5\x6c\xa9\x8a\x8e\x08\xa0\x7a\x77\x9d\x85\x1b\x86\x86" +"\x86\x86\x7e\xa4\x63\xa8\x67\x1f\xac\x64\x9c\x76\x4e\x0a\x0e\xf8\x81\xf7\x3a\xef\x15\x2c\x1d\xf7\xe1\x16\x6d\x72\x72\x6b\x6e\xa4" +"\x72\xa8\xaa\xa5\xa3\xa9\xaa\x71\xa5\x6d\x1f\xf7\xe1\x16\x6c\x73\x72\x6b\x6e\xa4\x72\xa8\xaa\xa5\xa3\xa9\xaa\x72\xa5\x6c\x1f\x0e" +"\xf8\x81\xf8\xcb\xf9\x56\x15\x5f\x06\x33\x30\x7c\x82\x51\x1b\x62\x76\x94\xa9\x66\x1f\xa1\x70\x7f\x91\x76\x1b\x25\x30\x27\xfb\x05" +"\x3d\xbe\x50\xce\xad\xa7\x98\xa8\xa8\x1f\xb9\xb9\xa8\xd3\xce\x1a\x9b\x8a\x96\x88\x9c\x1e\x80\xab\x9d\x88\xa5\x1b\xc0\xaa\x99\xb6" +"\xb0\x1f\xfc\x1e\xfd\x26\x05\xba\x06\xc8\xf9\x2f\x15\x9c\x7a\x98\x81\x99\x84\x08\xa0\x81\x8f\x84\x6e\x1a\xfb\x07\x4d\x26\x45\x69" +"\x74\xa7\xb5\xc4\x9d\xc8\xac\xbd\x1e\x9e\xa8\x96\x95\xb2\x9e\x08\xf7\xe6\xfb\xd3\x15\x2b\x2e\x23\x20\x3d\xc0\x4f\xcf\xe1\xd9\xf7" +"\x03\xf7\x0d\xd5\x68\xb6\x4e\x1f\x97\x6f\x15\xaf\xa4\x67\x57\x22\x49\x26\x47\x6b\x73\xa8\xb3\xce\xad\xe3\xb7\xba\x1f\x99\x98\x9e" +"\x94\x9e\x1b\xf7\xf2\xa7\x15\x2b\x2e\x23\x21\x3c\xc0\x4f\xcf\xe1\xd9\xf7\x03\xf7\x0d\xd5\x68\xb6\x4e\x1f\x96\x6f\x15\xb0\xa4\x67" +"\x57\x22\x49\x26\x47\x6a\x74\xa9\xb4\xc2\xa9\xe2\xad\xb5\x1f\xa6\xa0\x9f\x97\xa2\x1b\x0e\x4c\xf7\x5c\xf7\xba\x15\x7d\x3a\x79\x68" +"\x4c\x41\x08\x58\x4d\x73\x55\x58\x1a\x65\x98\x67\xa2\x74\x1e\x68\xad\xc6\x74\xc2\x1b\xe7\xd1\xc9\xde\xb4\x7a\xa0\x6c\x72\x7b\x7b" +"\x72\x7d\x91\x7f\x9a\x7a\x1f\x97\x7d\x90\x83\x82\x1a\x6b\x5d\x6d\x5b\x4e\x5b\xc0\xce\xb9\x98\xc2\xa3\xc2\x1e\xa7\xcb\x9e\xbb\x95" +"\xbd\x8c\xb7\x19\x82\xf7\x40\x15\x6b\x75\x76\x6e\x6b\xa2\x74\xa9\xaa\xa3\xa3\xa9\xa8\x74\xa1\x6c\x1f\x0e\xfb\x42\xf7\x86\xf8\x8f" +"\x29\x0a\xfb\x42\xf7\x19\xf8\x8f\x3a\x1d\xfb\x42\xf7\xd6\xf8\x8f\x20\x1d\xfb\x42\xf7\xc2\xf9\x12\x4b\x0a\xfb\x42\x96\xf8\xed\x23" +"\x1d\xfb\x42\xf7\xaa\xf9\x2c\x15\x3f\x6f\x72\x39\x1d\xfb\x42\xf7\x3a\xf9\x03\x43\x1d\x0e\xfb\x42\xcd\xf9\x03\x41\x1d\xfb\x42\xf7" +"\x3a\xf9\x5b\x42\x1d\xfb\x42\xed\x28\x15\x92\x86\x05\x8e\x93\x94\x8c\x96\x9b\x1d\xa4\xcc\x05\x68\x06\x0e\xfb\x42\xf7\x55\xf8\x8f" +"\x15\x4a\x1d\x9b\x1a\x9f\x7e\x97\x76\x7b\x44\x0a\xfb\x08\x16\x5f\x1d\xfb\x42\xf7\x79\x42\x15\x70\x6c\x78\x82\x76\x1b\x75\x7b\x9b" +"\xa3\xa2\x98\xa0\xaa\xa4\x1f\x5d\x06\x65\x6d\x7b\x70\x6a\x1a\x61\xaa\x6a\xb5\xb4\xad\xa2\xc0\xb0\x1e\x0e\xfb\x42\xf7\xd6\xf9\x36" +"\x20\x0a\xf8\x81\xf0\x1d\xf8\x12\x6e\x1d\x0e\xfb\x7b\xf7\xa2\xf8\x4e\x15\x82\x81\x83\x88\x81\x1b\x80\x89\x91\xa8\x1f\xf7\x07\x07" +"\xcb\x68\xab\x45\x4c\x5e\x6f\x64\x79\x99\x7e\x9d\x9c\x99\x97\x98\x8d\x8b\x8e\x8a\x8e\x1e\x8a\x90\x8a\x90\x8f\x1a\x97\xa1\x96\xa2" +"\xa2\x98\x7c\x70\x1e\x6d\x07\xfb\x14\x5c\x72\x78\x5b\x1a\x63\xa9\x6f\xb4\xaa\xa5\x98\xaa\xad\x1e\x6b\x91\x97\x7f\xa6\x1b\xa2\x97" +"\x91\xa3\xa3\x1f\xfb\x04\xbd\x15\x83\x87\x84\x84\x84\x1e\x83\x7a\x7f\x88\x7e\x1b\x76\x7a\x9f\xa3\xa5\x9f\x9a\xd2\xa4\x1f\x0e\xf3" +"\xee\xf7\xd9\x15\x34\x59\x05\x5a\x07\xe2\xbd\x05\xfb\x3b\xa0\x1d\xf7\x93\x07\xf7\x2f\xe4\x05\xbc\x07\xfb\x2f\x32\x05\xf7\x3d\x07" +"\x8d\xd4\x98\x98\xd9\x8f\x08\x9e\xfb\xae\x78\x07\xd4\x86\x97\x7e\x8d\x43\x08\x0e\x64\x0a\x0e\xf8\x12\xf9\xda\xf8\x9d\x15\xf7\x21" +"\xfb\xda\x07\x75\x70\x8c\x8d\x5e\x1f\x80\x06\x8e\x5b\x8a\x8b\x7c\x1b\x38\x40\x71\x5a\x54\x1f\x4c\x53\x66\x27\xfb\x07\x1a\xfb\x00" +"\xa9\x37\xc7\x50\x1e\x59\xbd\xcf\x70\xd4\x1b\x9a\x9f\x8c\x8c\xa3\x1f\x9a\x06\x9a\x8c\x05\x8e\xb5\x93\x8b\xb4\x1b\xf7\xf2\x06\xb7" +"\xf7\x3c\x05\x73\x06\x58\x2c\x67\x6c\x4c\x89\xfb\x10\x89\x18\x5c\x8c\x84\x91\x89\xb2\x08\xf7\x89\x07\xf7\x1e\x8c\xd1\x89\xa0\x76" +"\x92\x3e\x19\xa0\xf7\x7e\x76\x06\x84\x3b\x78\x7d\x21\x88\x23\x8a\x18\xf7\x80\x07\xa0\x90\x8c\xc7\x8d\x1e\xbe\x06\xf7\x16\xa5\x7b" +"\x32\x97\x1f\xfc\x14\xfc\x1a\x15\x44\x6e\x6e\x44\xfb\x0f\x49\xf2\xf7\x53\xf7\x58\xd0\xf7\x03\xf7\x0d\xd0\xa9\x6b\x42\x1e\x0e\xfb" +"\x59\xf7\x33\xf9\x38\x15\x2f\x4e\x52\x35\x3a\xc8\x51\xdf\xe3\xcc\xcb\xdf\xda\x4f\xc2\x36\x1f\x82\x6a\x15\xbb\xac\x56\x3f\x53\x72" +"\x6c\x5d\x72\x78\x97\xa1\x7f\x1f\x7b\xa7\x82\xb4\xb2\x1a\xb8\xa7\xa8\xb6\x1e\x0e\xf7\x34\xf9\x00\xf7\x2e\x15\x44\x5b\x64\x71\x52" +"\x1b\x62\x65\x9f\xa9\x7b\x1f\x75\xb2\x86\xaa\xef\x1a\xf7\x9a\x06\xf7\x15\x7f\x5c\xc1\x26\x1b\x5c\x70\x81\x68\x5e\x1f\xad\x64\x6e" +"\x96\x59\x1b\x31\x46\x5c\x4e\x6d\x9c\x79\xa6\xa7\x9a\x9c\xaa\x8f\x8b\x92\x8a\x91\x1f\x8a\x96\x05\x91\x07\xac\x8d\xa2\x9c\xb6\x1b" +"\xa3\x9e\x83\x7d\x92\x1f\x92\x7b\x90\x6c\x74\x1a\x89\x4c\x35\x67\x05\x20\x5f\x61\x62\x4f\x1a\x4a\xbb\x5e\xcf\xbd\xad\x9b\xc4\xcf" +"\x1e\x57\xad\xb0\x76\xc5\x1b\xb9\xb5\x9b\xab\xae\x1f\xa7\xa3\x9d\xa7\xa7\xc6\x08\xfb\xfa\xbf\x15\x8c\x66\x91\x66\x96\x67\x08\x8c" +"\x8a\x8b\x8a\x8a\x1a\x79\x4a\x6b\x67\x66\x6d\xb2\xbb\xc7\xa6\xa3\xf7\x0d\xb7\x1e\xdd\xc1\x15\xe3\x90\xa4\xaf\xc4\x1b\xc1\xa2\x66" +"\x34\x8d\x1f\x0e\xfb\x79\x27\x0a\x0e\xfb\x79\xed\x8f\x1d\x80\x44\x7a\x43\x0a\x0e\x84\x68\x0a\xa1\x81\x71\xa6\x1e\x0e\xf9\x3b\xf7" +"\x25\x15\x4b\x5c\x68\x73\x5b\x1b\x66\x68\x9f\xa9\x79\x1f\x71\xb9\x82\xb0\x87\xe2\x08\xf7\x92\x06\x88\xc9\x83\xa7\x74\xaa\x08\xb2" +"\x6f\x5c\xa2\x58\x1b\x54\x69\x77\x53\x62\x1f\xc3\x59\x63\x9f\x4d\x1b\x59\x60\x7a\x6c\x69\x1f\x5d\x60\x6e\x40\x3f\x1a\xfb\x19\xe0" +"\x2c\xf7\x0d\xcf\xb4\xa5\xd0\xb1\x1e\x47\xa9\xaf\x70\xc9\x1b\xd9\xbb\xb3\xf7\x01\xc0\x1f\xfc\x61\xf7\xb8\x15\xd4\xb4\x37\xfb\x28" +"\xfb\x0c\x68\x4c\x47\x3c\x62\xe1\xf7\x3d\xbf\x99\xc1\x9f\xa0\x1f\xa1\xa1\xa3\x96\xa8\x1b\xf7\x52\xfb\x10\x15\xde\x8c\xa6\xb4\xc0" +"\x1b\xb9\xac\x62\x53\x1f\x70\x07\x0e\x84\x97\x16\xf7\x25\xf8\xb9\x06\xcc\xad\xb5\xbf\xc4\xad\x57\x33\x3c\x6d\x62\x4a\x84\x1e\x76" +"\x89\x83\x87\x82\x1a\x80\x94\x86\xa2\x8a\x1e\xe3\x88\xb7\x46\xfb\x1b\x1a\x36\x75\x5e\x61\x78\x83\x93\xa1\x89\x1e\x89\xa1\x05\xa2" +"\x89\x79\x9c\x75\x1b\x71\x78\x76\x70\x60\xb3\x6d\xc4\xf0\xd9\xe0\xf7\x02\xc4\x75\xbb\x63\xae\x1f\x6b\xa7\x6e\x97\x4e\x96\x08\xf6" +"\xbc\xa9\xac\xd3\x1a\xe8\x49\xc6\x23\x47\x58\x71\x58\x6e\x1e\x76\x66\x82\x5e\x45\x1a\xfc\x06\x07\x89\x54\x82\x80\x59\x88\x08\x0e" +"\xfb\x63\xf7\x8c\xf7\xba\x15\x5f\x8d\x7f\x93\x8a\xa5\x08\xf7\xeb\x07\x7d\x8e\xfb\x0a\x54\x05\x74\x07\x94\xa4\x99\x8f\x8f\x1b\x91" +"\x8d\x85\x75\x1f\xfb\x95\x07\x8a\x74\x81\x84\x61\x89\x08\x73\xf7\x53\x07\x0e\xc4\xa9\xf8\x22\x15\x3b\xf8\x3c\xfb\x69\xdb\xf7\xb9" +"\x07\x0e\x84\xf8\x40\xf8\x53\x15\x34\xfb\xe1\x06\x63\x73\x64\x75\x5d\x1b\x57\x6b\xad\xc4\x1f\xf7\xc4\x34\xfc\x1d\x07\x76\x89\x79" +"\x81\x51\x1e\x84\x63\x86\x60\x76\x1a\x5f\x9c\x71\xa8\xa9\x9a\xa5\xbe\xa7\x86\xa6\x7e\xbf\x1e\x7f\xbc\x89\x96\x87\xb0\x08\x57\xa9" +"\xae\x75\xbe\x1b\xc1\xb5\xa6\xc9\xb3\x1f\x4d\x8d\xa1\x70\xbb\x1b\xb1\xa2\x99\xb6\xab\x1f\x93\x07\x75\x74\x80\x85\x7c\x1b\x75\x81" +"\x9e\xb8\x1f\x0e\xf8\x6d\xf7\x82\xf9\x16\x15\xbd\x06\xae\x8a\x9f\x77\x97\x5c\x08\x9f\xe3\xfb\xed\x33\x9f\x06\x97\xba\x9f\x9f\xaf" +"\x8c\x08\xbc\xfb\xca\x06\x69\x89\x83\xc4\x0a\xf7\x3f\xb5\x0a\xf8\x3f\x3f\x15\x96\x06\xf7\x2e\xf7\xcc\x05\xfb\x80\x07\x68\x8a\x84" +"\xc4\x0a\xf7\x3e\xb5\x0a\xf7\x93\x07\xb2\x99\x98\xb5\x8e\x1e\x9f\x24\x07\xfb\x34\xfb\xc9\xfb\x2e\xf7\xc9\x05\xfb\x0d\x77\x06\xa9" +"\x8a\xa5\x78\x98\x6d\x08\xfb\x8d\x07\x8a\x5a\x82\x7f\x61\x87\x08\x77\xf7\x17\x9f\x07\x60\x8f\x82\x97\x8a\xbc\x08\xf7\x73\x07\x0e" +"\x73\x1d\xf7\x87\xf8\xec\xf9\x38\x2c\x0a\xd3\x80\x0a\xf8\xa0\xfb\x4d\xcc\x1d\xc7\xa2\xb4\xbe\x1d\xa6\xa1\xb0\x1b\xb3\xac\x69\x61" +"\x6d\x6c\x57\x59\x54\xcc\x0a\xc4\xa9\x16\xf8\x8c\xcd\xfc\x8c\x06\xf7\x6f\xf7\xae\x15\xfb\x6f\x49\xf7\x6f\xfb\x34\xcd\xf7\x34\xe7" +"\x1d\xbc\xf7\xbc\x9e\x15\x3c\x8d\x7d\x99\x8a\xd5\x08\xbf\x07\x89\xa5\x9c\x8a\xa5\x1b\xda\xc0\x95\xa3\xb6\x1f\xc6\xab\xb0\xc8\xcd" +"\x1a\xf7\x03\x27\xd1\xfb\x34\x1e\x3b\x06\x8a\xe6\x95\x98\xdd\x92\x08\x9e\xfb\xa9\x78\x07\xd5\x83\x94\x48\x1d\x84\x82\x3f\x84\x08" +"\x78\xf7\xac\x07\x2d\xf8\x61\x15\xa5\x91\x92\xa5\xf7\x1e\xc8\x5d\x24\x2a\x50\x59\xfb\x07\x76\x7d\x8c\x8d\x75\x1e\x0e\xf7\x87\x7e" +"\x0a\xb4\x80\x0a\x0e\xc4\xee\x1d\xf7\x90\xf7\xbc\x15\x2c\x1d\xfc\x33\x04\x2c\x1d\x0e\xfb\xc7\xce\xfb\x2c\x15\xcd\xf7\xdb\x49\x06" +"\xf7\x1d\x04\xcd\xf7\xdb\x49\x06\x0e\x20\xf7\x5c\xf9\x38\x15\x3b\x4c\x4c\x3b\x3c\xca\x4b\xd9\xdc\xcb\xc9\xdb\xdc\x4d\xca\x3a\x1f" +"\x69\x04\xc4\xba\x59\x50\x4f\x5c\x5a\x51\x53\x5c\xbd\xc6\xc7\xba\xbc\xc4\x1f\x0e\x84\x9f\x1d\x54\x5f\x73\x55\x5e\x1f\xf7\xbe\x07" +"\x86\x8e\x5c\x7b\x70\x82\x44\x78\x19\x7b\x07\x8c\x91\x8e\x8b\x93\x1b\xb3\x94\x82\x61\x1f\xfd\x54\x07\x56\x80\x81\x50\x86\x1e\xf7" +"\x2e\xf8\xa9\xa3\x0a\xf7\x87\x7e\x0a\x2e\xf8\x6e\x15\xa2\x8e\x96\x8c\xa5\x84\x9d\x1d\xd9\xbf\x6e\xb1\x52\xa2\x1f\xb6\xaa\x9c\xa2" +"\xa7\x1a\xba\x5c\xaf\x4e\x4d\x64\x70\x47\x68\x1e\xa4\x79\x05\xb7\xaa\x9f\x98\xaf\x1b\xae\xa0\x78\x6d\x66\x71\x75\x45\x74\x1f\x0e" +"\xfb\x63\xf7\xbc\xf7\xf7\xcc\x1d\xc8\xa2\xb3\xbe\x1d\xa5\xa1\xb1\x1b\xb3\xac\x69\x61\x6d\x6c\x56\x59\x55\xcc\x0a\xf7\x91\xf7\x6f" +"\xf8\x8d\x15\xac\x88\x8c\x8a\x93\x87\x08\x90\x88\x8d\x83\x6d\x1a\xfb\x85\x07\x6d\x89\x84\x86\x88\x1e\x83\x87\x88\x8a\x6c\x88\x08" +"\x7c\xf7\x36\x9a\x07\x6c\x8e\x88\x8c\x83\x8f\x08\x86\x8e\x89\x92\xa9\x1a\xee\xbb\x07\xb0\x53\x8f\x84\x96\x77\xa8\x57\xa5\x6d\x99" +"\x8e\x08\xcb\x93\x06\x73\x9f\x73\xa5\x6f\xb2\x52\xda\x18\xbf\xa0\xa6\xae\xbb\x1a\xc3\x5f\xaf\x44\x1e\xfb\x45\x06\xf7\x05\x78\x15" +"\xb4\x06\xba\xa3\x70\x57\x52\x72\x6b\x5f\x1f\x60\x06\xbc\xf7\xeb\x15\xfb\x53\xfb\x2c\xfb\x2d\xfb\x55\xfb\x54\xf7\x2b\xfb\x2c\xf7" +"\x54\xf7\x51\xf7\x2c\xf7\x2c\xf7\x4f\xf7\x5a\xfb\x28\xf7\x2d\xfb\x55\x1f\x61\x04\xf7\x33\xf7\x13\xfb\x1d\xfb\x3f\xfb\x34\xfb\x18" +"\xfb\x1e\xfb\x2e\xfb\x31\xfb\x17\xf7\x1d\xf7\x39\xf7\x3a\xf7\x17\xf7\x1e\xf7\x31\x1f\x0e\xc4\xee\x1d\x0e\x84\xf7\xa2\xf8\xd3\x15" +"\xc6\x4f\xa2\x62\x9a\x41\x08\xba\x58\x70\x98\x5b\x1b\xfb\x0c\x2f\x24\xfb\x1a\xfb\x19\xe8\x27\xf7\x11\xc0\xb9\x9d\xae\xaf\x1f\xc2" +"\xbf\xad\xe9\xeb\x1a\xd1\x7b\xd3\x6c\xca\x1e\x75\xb8\x79\xa3\x58\xbc\xe6\xbb\x18\x6a\xa9\x2c\x59\x58\xa9\x68\x96\x49\x91\x19\x61" +"\x74\xc0\x82\xaa\x7e\xbc\x69\x19\xfb\x0d\x4b\xac\x6d\x05\xe5\x3d\x15\xe0\xc6\x2c\xfb\x1c\xfb\x08\x5f\x48\x3f\x63\x67\xa3\xb4\x75" +"\x1f\x6f\xbf\x7b\xd2\xd2\x1a\xe8\xba\xc9\xd2\x1e\x0e\xc4\xf7\x7e\xf7\x91\x15\xfb\x58\xfb\x59\xbb\x5b\xf7\x58\xf7\x59\xf7\x59\xfb" +"\x59\xbb\xbb\xfb\x59\xf7\x59\xf7\x59\xf7\x58\x5b\xbb\xfb\x59\xfb\x59\xfb\x58\xf7\x59\x5b\x5b\x05\x0e\xfb\x63\xe9\xf8\x60\x15\xa2" +"\x8e\x96\x8d\xa5\x83\x9d\x1d\xda\xbe\x6e\xb1\x52\xa2\x1f\xb6\xaa\x9c\xa2\xa7\x1a\xba\x5c\xaf\x4e\x4d\x64\x70\x47\x68\x1e\xa4\x79" +"\x05\xb7\xaa\x9f\x98\xaf\x1b\xae\xa0\x78\x6d\x66\x71\x75\x45\x74\x1f\x0e\xf7\x91\xf8\xa7\xf7\x8b\x15\x4d\x6d\x69\x73\x4f\x1b\x33" +"\x57\xcc\xf7\x03\xf7\x04\xbd\xca\xe4\xca\xaf\x6d\x50\x94\x1f\x9c\xd1\x06\x92\x86\x92\x82\x8e\x1e\x99\x6a\x63\x93\x6a\x1b\xfb\x18" +"\x32\x3a\xfb\x0c\xfb\x06\xdc\x3f\xf7\x0d\xc4\xd9\x9c\x98\x8e\x1f\x9c\xd7\x05\xfb\x35\xf8\x41\x15\xfb\x58\xfb\x2c\xfb\x2b\xfb\x57" +"\xfb\x54\xf7\x2b\xfb\x2c\xf7\x54\xf7\x53\xf7\x2a\xf7\x2b\xf7\x55\xf7\x53\xfb\x2b\xf7\x2f\xfb\x4d\x1f\x8a\x61\x15\xf7\x2c\xf7\x16" +"\xfb\x1f\xfb\x38\xfb\x39\xfb\x16\xfb\x1e\xfb\x30\xfb\x31\xfb\x17\xf7\x1d\xf7\x39\xf7\x3c\xf7\x17\xf7\x1c\xf7\x35\x1f\x0e\x22\x0a" +"\xfb\x10\xf8\x62\x22\x1d\x22\x0a\xcc\xf8\x62\x20\x1d\x22\x0a\xfb\x55\xf8\xd6\x15\x71\x75\x74\x70\x6f\x9f\x75\xa7\x93\x0a\x22\x0a" +"\x81\xf8\x62\x29\x0a\x22\x0a\x2b\xf9\x26\x42\x1d\x22\x0a\xbd\xf8\xe5\x8a\x1d\xf7\x34\xf7\xe4\x7e\x15\x8a\x94\x92\x8b\x93\x1b\xf7" +"\x05\xef\xba\xdb\xc7\x1f\x79\x9d\x05\x44\x42\x48\x6d\x38\x1b\x4c\x53\x9f\xb1\x60\x1f\x54\xbc\x6c\xe5\xf7\x04\x1a\xf7\x49\xe8\xf7" +"\x08\xf7\x25\xc4\xbf\x76\x64\xb3\x1e\xab\x6b\x9a\x6f\x9e\x4a\x08\xa2\x06\x82\xf7\x75\x05\x76\x06\x76\x85\x7b\x7f\x77\x1b\x82\x7c" +"\x8e\x90\x7c\x1f\x9c\x5a\x59\x93\x5c\x1b\x39\x39\x6c\x54\x4c\x1f\x45\x4d\x65\x2f\xfb\x03\x1a\xfb\x49\xf6\xfb\x16\xf7\x3b\x73\x1e" +"\x66\x32\x98\x1d\x54\x82\x85\x8a\x89\x81\x1f\x0e\xf3\x21\x0a\xfb\xab\xf9\x63\x22\x1d\xf3\x21\x0a\x31\xf9\x63\x20\x1d\xf3\x21\x0a" +"\xfb\xee\xf9\xd7\x15\x71\x75\x74\x70\x6f\xa0\x75\xa6\x93\x0a\xf3\x21\x0a\xfb\x3f\xf9\x63\x15\xfb\x26\x61\x1d\xfb\x42\x28\x1d\xf7" +"\x07\xf9\x50\x22\x1d\xfb\x42\x28\x1d\xf7\xc4\xf9\x50\x20\x1d\xfb\x42\x28\x1d\xbb\xf9\xc4\x3e\x0a\xfb\x42\x28\x1d\xf7\x75\xf9\x50" +"\xb1\x1d\x33\x0a\xfb\x66\xf7\x63\x15\x65\x7a\x7e\x7f\x74\x1b\x7d\x77\x91\x94\x64\x1d\xab\x96\x9c\x99\xa2\x1b\x96\x9a\xb6\x0a\xa9" +"\xa9\xd7\x9f\x1f\x0e\x23\x0a\x6a\xb5\x1d\x0e\x23\x0a\xf7\x30\xda\x20\x1d\x23\x0a\x27\xf7\x57\x3e\x0a\x23\x0a\xd7\xda\x29\x0a\x23" +"\x0a\xf7\x1c\xf7\x66\x8a\x1d\xbc\x2f\x0a\x68\xf8\x3b\x20\x0a\x24\x1d\xfb\xf4\xd7\x22\x1d\x24\x1d\xfb\x3d\xd7\x20\x1d\x24\x1d\xfc" +"\x3e\x96\x1d\x24\x1d\xfb\x8e\xd7\xb1\x1d\x34\x1d\xfb\xeb\xd7\x22\x1d\x34\x1d\xfc\x3e\xf7\x54\x3e\x0a\xf3\x3c\x0a\xfb\x1b\xf9\x5a" +"\x20\x0a\x4c\x26\x1d\x29\xf7\x83\x2a\x0a\x4c\x26\x1d\xe6\xf7\x83\x20\x1d\x4c\x26\x1d\xfb\x39\xf7\xf7\x41\x1d\x4c\x26\x1d\x96\xf7" +"\x83\x38\x1d\x4c\x26\x1d\x4a\xf8\x5a\x42\x1d\x4c\x26\x1d\xd2\xf8\x06\x15\x65\x79\x7e\x79\x0a\x4c\xf7\x76\x81\x15\xdc\x92\xc0\xb8" +"\xbf\xf4\x8e\x1d\xfb\x0b\xcd\x33\xf0\x7e\x1e\x65\x30\x2d\x0a\x97\x9b\x1d\x0e\x4c\x27\x1d\xfb\x06\xf7\x5a\x50\x1d\x2a\x1d\x0e\x4c" +"\x27\x1d\xd6\xf7\x5a\x20\x1d\x4c\x27\x1d\xfb\x49\xf7\xce\x41\x1d\x4c\x27\x1d\x86\xf7\x5a\x38\x1d\xfb\x79\x27\x0a\xe5\xf8\x80\x3a" +"\x1d\xfb\x79\x27\x0a\xf7\xab\xf8\x80\x20\x1d\xfb\x79\xc6\xf9\x03\x15\x71\x75\x74\x71\x6e\x49\x1d\xf7\x33\x16\xa6\x1d\xfb\x5e\xfd" +"\x03\x15\xf7\x81\x9a\x06\x49\x90\x84\x94\x8a\xd4\x08\xf7\xf7\x07\xa5\x1d\x0e\xfb\x79\x27\x0a\xf7\x5b\xf8\x80\x29\x0a\x84\x32\x0a" +"\xf8\x03\xf9\x03\x77\x0a\x84\x24\x0a\x77\xd6\x2a\x0a\x84\x24\x0a\xf7\x3d\xd6\x20\x1d\x84\x24\x0a\x34\xf7\x53\x84\x0a\x84\x24\x0a" +"\xe4\xd6\x38\x1d\x84\x24\x0a\xf7\x28\xf7\x62\x77\x0a\xfb\x0a\x65\x0a\xf7\xfc\x20\x0a\x84\x25\x1d\xfb\x9a\xf8\x6b\x2a\x0a\x84\x25" +"\x1d\x35\xf8\x6b\x20\x1d\x84\x25\x1d\xfb\xf1\xf8\xdf\x84\x0a\x84\x25\x1d\xfb\x42\xf8\x6b\x38\x1d\x84\x33\x1d\xfb\x96\xd3\x15\xf7" +"\x2d\xec\x05\xa1\x2a\x1d\x0e\x84\x33\x1d\xfb\xca\xf7\x50\x41\x1d\x4c\x34\x0a\x71\xf9\x36\x20\x0a\xfb\x24\xab\xf7\xb8\x15\x75\xf7" +"\x23\xa1\x07\x68\x8d\x84\x8f\x9d\x1a\xf7\x37\x07\xa3\xa6\x98\x91\x9e\x1b\xa6\x97\x7b\x68\x1f\xfb\x0f\x07\x8a\x66\x86\x87\x69\x89" +"\x08\x75\xf7\x20\xa1\x07\x6c\x8f\x89\x8d\x8a\xa5\x08\xf7\x1c\x07\xc6\x6c\xaf\x59\x6f\x75\x81\x6d\x68\x1e\xb0\x07\x80\x8e\x71\x82" +"\x73\x83\x76\x85\x19\x7f\x87\x85\x8a\x05\x72\x07\x8f\x93\x92\x8c\x92\x1b\x96\x8e\x85\x72\x1f\xfb\x26\x07\x8a\x70\x87\x84\x7b\x89" +"\x83\x89\x18\x0e\xed\xf8\xa9\x16\x9a\x07\x39\x8e\x80\x96\xd6\x1a\xf7\xce\xf7\x0e\xab\xfb\x0f\xf7\x08\x07\xc5\x9e\xaa\xbf\x0a\xa3" +"\x9d\x9d\xa2\xaf\x60\xa5\x4f\x58\x5d\x79\x6c\x6e\x1f\xa9\x81\x64\x9e\x56\x1b\x4c\x57\x70\x5e\x71\x1f\x71\x5e\x83\x67\x8a\x3b\x08" +"\x39\x6b\xdd\x54\x0a\x07\xf7\x3a\x47\x0a\xc6\x9e\xa9\xbf\x0a\x8f\x8c\x8b\x8c\x8f\x1f\x7c\x64\x86\x68\x52\x1a\x6b\x04\xfb\xce\x07" +"\x89\x41\x81\x80\x49\x87\x08\x52\x8f\x83\x96\xd5\x1a\xf7\xce\x07\x0e\xf7\xe5\xf7\x54\x47\x0a\x9a\x1d\x6a\xdd\xfb\xcd\x06\x89\x40" +"\x81\x80\x44\x88\x08\x7c\xf7\x80\x9a\x07\x4e\x8e\x83\x96\xd6\x1a\xf7\xcd\xf7\x4f\xfb\xd7\x07\xa3\x1d\x84\x83\x4e\xeb\x1d\x97\x8a" +"\xcd\x08\xf7\x9a\x07\xa3\x8b\xa0\x8d\xc0\x1e\x87\x8e\x05\x84\x62\x6c\x88\x62\x1b\xfb\x31\xb6\x06\x8a\xb0\x8f\xb2\x90\x9b\x08\xb6" +"\x98\xb3\xa9\xb8\x1b\xa7\x9e\x7e\x69\xa3\x1f\x70\x9e\x98\x81\x9c\x1b\xa0\x9a\x9b\xa2\xb6\x59\xa6\x3e\x3f\x51\x71\x5a\x67\x1f\x6d" +"\x62\x80\x66\x85\x3b\x08\x0e\xf7\xe3\xf7\x54\x47\x0a\x7b\x0a\xf7\x80\x9a\x07\x4e\x8e\x83\x96\xd6\x1a\xf7\xce\xf7\x4f\xfb\xcd\x07" +"\xad\x1d\x7c\x58\x87\x78\x0a\xf7\xa2\xb4\x1d\x8d\x90\x90\x1f\x0e\xf7\x87\xf7\x6c\xf7\xb4\x15\x61\x8e\x7d\x95\x8a\xa8\x08\xf7\xe6" +"\x07\x84\x8c\xfb\x04\x57\x05\x82\x07\x95\xa8\x8b\x8b\x92\x1b\x97\x8e\x83\x70\x1f\xfb\x95\x07\x8a\x71\x7e\x81\x64\x89\x08\x80\xf7" +"\x46\x07\xf8\x37\x54\x15\xc1\xa6\xa2\xa7\xb3\x1a\xbe\x5c\xb0\x4a\x4e\x1d\x78\xc5\x5a\x1e\x4e\x5f\x7c\x77\x63\x5e\x1d\x70\x4c\x15" +"\xb3\x70\x99\x77\x6c\x1a\x6a\x74\x74\x68\x62\x70\xa9\xba\xac\x97\xa2\xa6\x50\x0a\x76\x68\x73\x1e\x97\xf8\x47\x2c\x0a\x0e\xf7\x87" +"\xed\xf8\x69\x15\x9d\x8d\x05\x8c\x8e\x8e\x8b\x8d\x1b\xbb\xb4\x61\x5b\x60\x6e\x6e\x60\x78\x7f\x90\x9b\x75\x1f\x98\x7a\x80\x90\x81" +"\x1b\x7a\x7e\x7d\x79\x6e\xa7\x7b\xbc\xf7\x00\xda\xc3\xd6\xab\x7c\xaa\x71\xa0\x1f\x7f\x95\x84\x8f\x6d\x97\x9a\x96\x94\x92\x8f\x8d" +"\x08\xa2\x9d\x99\xa3\xa0\x1a\xb6\x5e\xad\x51\x5d\x62\x75\x66\x72\x1e\x86\x83\x8a\x89\x80\x78\x9d\x7e\x18\xb4\xa8\xa1\x99\xaf\x1b" +"\xb0\xa3\x76\x6b\x65\x72\x75\x44\x72\x1f\xf8\xae\xfb\x9f\x15\xc1\xa6\xa2\xa7\xb3\x1a\xbe\x5c\xb0\x4a\x4e\x1d\x78\xc5\x5a\x1e\x4e" +"\x5f\x7c\x77\x63\x5e\x1d\x70\x4c\x15\xb3\x70\x99\x77\x6c\x1a\x6a\x74\x74\x68\x62\x70\xa9\xba\xac\x97\xa2\xa6\x50\x0a\x75\x68\x74" +"\x1e\x9c\xf8\x47\x2c\x0a\x0e\xf7\x87\xf7\x13\x21\x1d\x48\xfb\x1c\x05\x89\x89\x8a\x86\x88\x1a\x85\x8e\x8a\x97\x89\x1e\x99\x9c\x89" +"\x88\x99\x1f\xdd\x79\xb5\x63\x4e\x1a\x54\x66\x60\x5c\x7e\x85\x8e\x99\x76\x1e\x87\x8e\x05\x97\x7a\x7e\x90\x7c\x1b\x76\x7f\x81\x7a" +"\x73\xa8\x7d\xbe\xf7\x02\xd2\xc8\xe8\xb9\x7a\xb0\x6b\xa4\x1f\x6c\xa2\x6d\x96\x44\x97\xa0\xb6\x18\xf7\x1c\x06\xab\xca\x7c\x92\x05" +"\x7e\x80\x86\x88\x7d\x1b\xf8\x0c\xfc\x4c\x15\xc0\xa6\xa2\xa8\xb2\x1a\xbe\x5c\xb0\x4a\x4e\x1d\x78\xc6\x5a\x1e\x4d\x5f\x7d\x78\x62" +"\x1a\x4f\xbe\x62\xd7\xd7\xbd\xb4\xc9\xb9\x76\xa7\x46\xbc\x1e\x70\x4c\x15\xb3\x70\x99\x77\x6d\x1a\x69\x74\x74\x68\x62\x70\xa9\xba" +"\xac\x96\xa2\xa7\xa2\x1e\xa9\xc7\x15\x5c\xe0\x1d\x67\x6b\x7d\x75\x69\x74\x1e\x9e\xf8\x47\x2c\x0a\x0e\xf7\x87\xf9\x0f\xf7\x72\x15" +"\xc1\xa6\xa2\xa7\xb3\x1a\xbe\x5d\xb0\x49\x4e\x1d\x77\xc6\x5b\x1e\x4d\x60\x7c\x77\x62\x5e\x1d\x71\x4c\x15\xb2\x70\x99\x77\x6c\x1a" +"\x69\x74\x75\x68\x62\x70\xa9\xba\xac\x96\xa2\xa7\x50\x0a\x75\x68\x74\x1e\xfb\xb9\xf8\x38\x15\xfb\x88\x06\x62\x2a\xa1\x81\x05\xaf" +"\xa6\x95\x92\xad\x1b\xf7\x0c\x06\xfb\x11\xfb\xec\x05\xc9\x06\xf7\x1b\xf8\x1b\x05\xf7\xc0\xab\x15\x5d\x06\xfc\x59\xfd\x46\x05\xbc" +"\x06\x0e\xf8\x12\x6e\x1d\xb6\xf8\x44\x22\x1d\x22\x0a\xa5\xf8\xff\x8b\x0a\x80\x1d\x0e\x80\x1d\xfb\xb4\xf7\x79\x37\x0a\xc3\x8c\x92" +"\x9f\x1a\xaf\x7d\x9e\x71\x70\x7d\x78\x66\x77\x8c\x86\x99\x52\x1e\x0e\x22\x0a\xfb\x85\xf8\xc0\x23\x1d\x84\x1d\xf7\x60\x07\x63\x6b" +"\x7d\x73\x69\x1a\x61\xaa\x6a\xb5\xb5\xac\xa2\xc0\xb0\x1e\x77\x9b\x05\x70\x6c\x79\x82\x75\x1b\x75\x7b\x9b\xa3\xa5\xa6\xb1\xa1\x90" +"\x1f\xfc\x7e\xf7\x95\x15\xf7\x07\xf7\xa7\xf7\x08\xfb\xa7\x05\x0e\x22\x0a\x2b\xf9\x04\xa9\x0a\xc3\xc2\xb3\x0a\x6d\x6e\x66\x68\x6e" +"\xa9\xaf\xaf\xa9\xa8\xaf\x1f\x54\xae\x15\x4a\x1d\x9c\x1a\x9e\x7e\x97\x76\x7b\x44\x0a\x0e\xf7\x34\xc2\x21\x1d\x79\x07\x36\x0a\xf7" +"\x5d\x07\xf7\x30\xa7\x8e\xa1\xbb\x1f\xcb\xa9\xb3\xc7\xcf\x1a\xb3\x7d\xb0\x71\xa8\x1e\x74\xa4\x75\x98\x5b\x9c\xac\x9a\x9a\x95\x9a" +"\x9b\x08\xa5\xa7\x9c\xb5\xb1\x1a\xc3\x67\xc0\x50\xaa\x1e\xa3\x60\x6a\x90\x2a\x1b\x5d\x61\x15\x8e\xa0\x94\x8c\x99\x1b\xe9\xc7\x57" +"\x3b\x3a\x55\x5b\x31\x7a\x7f\x8c\x90\x72\x1f\x58\x04\x90\xa3\x95\x8c\x9d\x1b\xf1\xcb\x55\x33\x37\x4d\x52\x31\x73\x7e\x8d\x92\x6e" +"\x1f\x0e\xf7\x34\x31\x0a\xfb\x81\xf7\xa0\x22\x1d\xf7\x34\x31\x0a\x3d\xf8\x47\x20\x0a\xf7\x34\x31\x0a\x37\xf7\xa0\x20\x1d\xf7\x34" +"\x31\x0a\xfb\x88\xf8\x14\x2b\x1d\x0e\xf7\xd3\xf7\xd8\x15\xfb\x1c\xfb\x49\x39\xfb\x02\x77\x7d\x3b\x8a\x19\x79\xf7\x88\x9d\x07\x76" +"\x8d\x05\x71\x8d\x7c\x96\x9b\x1a\x97\x90\x95\x9d\xa3\x1e\xf7\x22\xf7\x4e\xf7\x0a\xfb\x41\x05\x9c\x72\x92\x7a\x7c\x1a\x73\x7c\x83" +"\x5d\x8a\x1e\x79\xf7\xb7\x9d\x07\x76\x8d\x63\x8f\x72\xa1\x4e\xe5\x19\xfb\x33\xf7\x7d\xf7\x16\xf7\x3f\xd4\xe9\x92\x90\xc0\x8f\x19" +"\x97\x8c\x05\x9d\xfb\x73\x79\x9b\x07\xaa\x9c\x7f\x76\x81\x86\x81\x7a\x75\x1f\xfb\x0d\xfb\x33\x24\xf7\x2e\x05\x81\x9a\x85\x9a\x97" +"\x1a\x9b\x94\x99\x98\x8f\x1e\x93\x8d\x8d\x8c\xa8\x8c\x08\x9d\xfb\xbc\x79\x07\xa1\x88\xb7\x86\xa3\x76\xc4\x38\x19\x0e\x6a\x0a\xf7" +"\xcb\xf9\xbc\x20\x0a\x73\x1d\xf7\x34\xac\x16\xf8\xee\x06\xfb\xad\xf9\x44\x05\xfb\x8e\xfd\x11\x15\xf7\x69\xf8\x5e\xf7\x51\xfc\x5e" +"\x05\x0e\xf3\x21\x0a\xfb\x1c\xfa\x00\x15\x3f\x6e\x73\x39\x1d\xf3\x21\x0a\x30\xfa\x0a\x20\x0a\xf3\x21\x0a\xfb\x8b\xf9\xd7\x2b\x1d" +"\x0e\xf3\x21\x0a\xfc\x26\xf9\xc1\x23\x1d\xf8\xa0\xda\x15\x5d\x07\x76\x07\x57\x07\x3a\x8b\x85\x85\x7b\x1e\x73\x83\x76\x7a\x74\x1b" +"\x7e\x80\x93\x9f\x7a\x1f\xa2\x7a\x7d\x94\x7a\x1b\x75\x79\x7a\x75\x6a\xb3\x75\xc7\xbe\xb8\x99\xa3\xa6\x1f\xae\xa9\x9c\xcf\xf7\x00" +"\x1a\xf8\x7d\x07\x8e\xf3\x98\x9c\xda\x92\x08\x9e\xfb\x7f\x78\x07\xdb\x86\x98\x7a\x8e\x21\x08\xfb\xe5\x07\xfc\x15\xf8\x78\x05\xfb" +"\x3f\x78\x06\xb6\x99\x83\x5c\xb3\x1f\xfc\x4d\x59\x1d\xf8\x1c\x07\x0e\xf3\xf8\xbc\x16\xb8\xf7\x3d\x05\x7a\x1d\xf8\x68\x07\x65\x6d" +"\x7b\x71\x69\x1a\x61\x58\x1d\xa3\xac\xad\xaf\xa9\x1f\x0e\xf3\xf7\x6e\x91\x1d\xc0\x1d\xf8\x94\x07\xc4\xf7\x3b\x7b\x46\x1d\x5c\x8a" +"\x85\x94\xca\x1a\x0e\xf7\x4f\xa4\xf8\x7b\x37\x0a\xc2\x8c\x92\xa0\x1a\xaf\x7d\x9e\x71\x70\x7d\x78\x67\x76\x8c\x85\x99\x53\x1e\xf7" +"\xbc\xfb\x5e\x15\xf7\x3b\xa0\x0a\x8d\x42\x75\x6f\x53\x8d\x08\xfb\x3b\xf7\x8d\xf7\x2d\x06\xf3\x8d\xab\x73\x97\x31\x6c\x1d\xfc\x8c" +"\x79\x06\x2e\x1d\xfc\x5b\x07\x4b\x59\x0a\xf8\x96\x07\xc4\xf7\x3b\x7a\x46\x1d\x5b\x8a\x85\x94\xca\x1a\x0e\xf7\x6a\xf7\xcf\x15\xf7" +"\xbb\xfb\x67\x06\x4b\x52\x0a\xcb\x1a\xf8\x5b\xbb\x1d\xfb\x5b\xfb\xbb\xf7\x5b\xbb\x1d\xfc\x5b\x07\x4b\x52\x0a\xcb\x1a\x0e\xf7\xc1" +"\xaf\x1d\xf7\xbe\xfb\x6c\x15\xf7\xbc\xfb\x67\x06\x4b\x42\x0a\x57\x8d\x7b\x9e\xcb\x1a\xf8\x5b\x9f\x0a\xfb\x5b\xfb\xbc\xf7\x5b\x9f" +"\x0a\xfc\x5b\x07\x4b\x42\x0a\x57\x8d\x7b\x9e\xcb\x1a\x0e\x84\xf7\x29\xf8\x1a\x15\x90\xc1\x93\xba\x96\xac\x08\xd9\xa4\xbb\xb8\xc4" +"\x1b\xbc\xbe\x67\x55\xa7\x1f\x99\x6f\x94\x69\x91\x5f\x08\x9c\x06\x7b\xf7\x73\x05\x79\x06\x6c\x85\x84\x7e\x7f\x1b\x87\x86\x8e\x90" +"\x83\x1f\xa2\x69\x67\x97\x68\x1b\xfb\x0a\x2a\xfb\x07\xfb\x3c\x74\x1f\x5c\x06\x70\x62\x05\xd1\x06\x8a\x83\x8b\x84\x80\x1a\x7a\x8b" +"\x82\x8d\x80\x1e\x5f\x06\x70\x62\x05\xd6\x06\xfb\x33\xa5\xe7\x27\xf7\x0c\x1b\xd4\xcb\xad\xc7\xb6\x1f\xad\x07\x51\x6b\x4c\x64\x50" +"\x1b\x2e\x49\xe3\xf7\x20\x7d\x1f\xf7\x12\x06\xa5\xb4\x05\xfb\x2f\x06\x8a\x9d\x8b\x94\x8e\x1a\x8f\x8b\x92\x8c\xa1\x1e\xf7\x57\x06" +"\xa6\xb4\x05\x0e\xd2\xf7\xa9\x9f\x15\x41\x91\x7c\x9a\xce\x1a\xf8\x5a\x07\x89\xb3\x99\x99\xbb\x8e\x08\xf7\x05\x06\xf2\x88\xbe\x68" +"\xb1\x2d\x08\xa7\x06\x5a\xf7\x43\x05\xfc\xad\x77\x06\xd5\x85\x9a\x7c\x48\x1a\xfc\x52\x07\x48\x7c\x7c\x41\x85\x1e\x77\xf7\xae\x07" +"\x0e\x30\x0a\xfb\x80\xf8\xb0\x8b\x0a\x30\x0a\xfb\x4b\xf8\x13\x20\x1d\x30\x0a\xfc\x1a\xfc\xfd\x25\x0a\x30\x0a\xfb\xe8\xf8\x87\x2b" +"\x1d\x0e\xf8\xfa\xf8\x65\x15\xe6\xb3\x30\xbb\x06\xc2\x1d\xfb\xc3\xbb\x07\xc2\x1d\x32\x63\xe4\xfb\xed\x46\x0a\x78\xf7\xaa\x9e\x07" +"\x8e\x0a\x25\xf7\xf8\x15\x21\xfb\xc3\xf5\x07\x0e\x69\x0a\xf8\x85\xf9\x50\x20\x1d\xf7\x70\xf7\xcd\x9d\x15\x75\x3b\x1d\xf8\x5c\x3c" +"\x1d\xa1\x8c\x05\x9d\xfb\xb2\x79\x07\xa1\x8a\x05\xc0\xe3\x1d\x56\x89\x1e\x75\x8a\x05\x79\xf7\xb2\x07\xf7\x03\xf9\x18\x15\xa1\x8a" +"\x05\xbd\xa1\x71\x51\x8d\x1f\xfc\x33\x07\x37\x84\x71\x75\x80\x81\x94\x9a\x84\x1e\xb7\x75\x7e\x96\x6d\x1b\x6e\x77\x78\x70\x5f\xb5" +"\x6d\xc9\xf3\xcd\xd9\xf7\x0e\x1f\xf8\x02\x07\x8a\xca\x9b\x9e\xc0\x8d\x9f\x8c\x18\x9d\xfb\xb3\x07\x0e\xfb\x42\x28\x1d\xf7\x98\xf9" +"\xed\x15\x3f\x6e\x73\x39\x1d\xfb\x42\x28\x1d\xf7\x28\xf9\xc4\x2b\x1d\x0e\xfb\x42\x28\x1d\x84\xf9\xae\x23\x1d\xfb\x42\x9d\xf9\x2a" +"\x15\x78\x07\xe0\x66\x1d\x3f\x7f\x80\x37\x88\x08\x78\xf7\x8c\xab\x1d\x9f\x95\x9d\x9d\x9e\x1f\x95\x94\x8f\x8e\x90\x8c\x08\x9e\x07" +"\x39\x8d\x7d\x99\x89\xd5\x08\xf8\x50\x07\x8d\xd6\x98\x97\xde\x8e\x08\x9e\x07\x0e\xfb\x42\x4c\x0a\xfb\x42\xa2\xf9\x18\x15\x2e\x1d" +"\xfc\x5c\x07\x4c\x42\x0a\x56\x8d\x7c\x9e\xca\x1a\xf8\x5c\x5d\x0a\x07\xbe\xf7\x33\x15\x41\x0a\xf7\x4d\x16\x41\x0a\x0e\x2b\xa3\xf8" +"\x7b\x37\x0a\xc2\x8c\x92\xa0\x1a\xaf\x7d\x9e\x71\x70\x7d\x78\x67\x76\x8c\x85\x99\x53\x1e\xef\xf7\x05\x15\x2e\x1d\xfc\x5c\x07\x4c" +"\x7c\x78\x56\x4f\x1d\xf7\xb3\x9d\x07\x74\x3b\x1d\xf8\x5c\x5d\x0a\x07\x0e\xfb\x42\x28\x1d\xf7\xb0\xf9\xcd\x15\x65\x7a\x7e\x7f\x74" +"\x1b\x7c\x78\x90\x95\x78\x1f\x73\x97\x05\x97\x74\x72\x91\x75\x1b\x59\x67\x67\x4a\x7c\x1f\xa8\x06\xaa\x96\x9c\x9a\xa2\x1b\x96\x9a" +"\x48\x0a\x78\xb3\x9b\x86\xa4\x1b\xc2\xa8\xa9\xd7\xa0\x1f\x0e\xfb\x0a\xf8\x07\xf9\x2a\x15\xfb\xb3\x78\x06\xdc\x85\x96\x81\x8c\x41" +"\x08\xfc\x63\x07\x5e\x7f\x76\x71\x7d\x85\x93\xa4\x84\x1e\xae\x81\x7b\x9b\x71\x1b\x70\x75\x74\x70\x61\xb4\x6d\xc5\xf7\x00\xc8\xd3" +"\xf7\x11\x1f\xf8\x06\x07\x8d\xd6\x94\x94\xdc\x91\x08\x95\xd7\x20\x1d\xf7\x7d\xf7\xd5\x15\xf7\x49\xfb\x4f\x05\xbd\x58\x9e\x73\x7c" +"\x1a\x7c\x7c\x82\x70\x8a\x1e\x7b\x8a\x05\x79\xf7\xd2\x9d\x07\x4e\x8c\x60\xbb\x0a\x92\x93\x92\x93\x91\x91\x9a\x9a\x9a\x9b\x9a\x9b" +"\x94\x93\xcb\xd1\xa6\xa8\xce\xd7\xa2\x9a\xc4\x92\x99\x8c\x18\x9e\xfb\x87\x78\x07\xba\xcb\x1d\xcc\x9a\x9d\xc5\x8c\x1e\x9e\x8c\x05" +"\x9d\xfb\xb4\x79\x07\x36\x0a\xf7\xb4\x9d\x07\x74\x8c\x55\x8d\x7b\x9e\x8c\xca\x19\x0e\x63\x0a\x2d\xfe\x43\x25\x0a\xf3\x36\x1d\x75" +"\xd7\x22\x1d\xf7\x6e\xf8\x09\xc1\x0a\x82\x49\x88\x19\x79\xf7\x71\x9e\x7f\x07\x67\x74\x99\xa2\x93\x94\xa7\x93\x9f\x1f\xf7\x35\xf8" +"\x11\xf7\x35\xfc\x09\x05\x97\x6f\x90\x79\x7a\x1a\x72\x78\x7e\x67\x1e\x7b\x78\xf7\xaa\x9d\x7e\x06\x5e\x8c\x71\xa7\x67\xe4\x08\x0e" +"\xf3\x36\x1d\xf7\x01\xfb\x66\x4d\x0a\x0e\xf3\x36\x1d\x6c\xfe\x30\x15\xcf\xac\xb7\x85\x0a\xf3\x36\x1d\xf7\x03\xfb\x91\x2b\x0a\xf8" +"\x12\xbe\x0a\x4c\x7b\x78\x56\x89\x1e\x78\x8a\x05\x79\xf7\xaf\x9d\x07\x75\x8c\x56\x8d\x7b\x9e\x8c\xca\x19\xf8\x5c\x07\x8a\xca\x9b" +"\x9e\xc0\x8d\xa1\x8c\x18\x9d\xfb\x57\x07\xfb\x6b\xfc\x7f\xfb\x74\xf8\x7f\x05\xfb\x53\x79\x06\x36\x0a\xf7\x7c\x9d\x07\x73\x3b\x1d" +"\xf8\x3a\x07\x0e\x33\x0a\xfc\x0f\xd7\x22\x1d\x33\x0a\xfb\x52\xf7\x87\xdf\x1d\xf7\x0f\xfb\x3b\x05\xca\x06\x0e\x33\x0a\xfc\x18\xfe" +"\x30\x89\x0a\x66\x55\x66\x1f\x0e\xf8\xf2\x16\x9b\xf8\xc3\x06\xca\x9a\x9e\xc0\x8d\x1e\xa2\x8c\x05\x9d\xfb\x7b\x79\x07\x2e\x1d\xfb" +"\xf6\x07\xfc\x1c\xf8\x5d\x05\xfb\x58\x79\x06\xc2\x8a\x98\x83\xc6\x4e\x08\xfc\x6b\x07\x4c\x59\x0a\xf7\x7b\x9d\x07\x74\x3b\x1d\xf8" +"\x30\x07\x0e\x23\x0a\xf7\x04\xf7\x80\x15\x3f\x6e\x73\x76\x50\x1b\x4b\xb2\x1d\x23\x0a\xce\xb5\x1d\xfb\x08\x16\x99\x0a\x23\x0a\xfb" +"\x2f\xf7\x41\x23\x1d\xf7\x80\xa8\xf8\x7b\x37\x0a\xc2\x8c\x92\xa0\x1a\xaf\x7d\x9e\x71\x70\x7d\x78\x67\x76\x8c\x85\x99\x53\x1e\xf9" +"\x69\xfb\xff\x15\x7a\x8e\x6e\x3f\x6f\x76\x41\x89\x19\x23\x06\xf7\x17\xc4\xda\xf7\x02\xf7\x12\x1a\xf7\x3e\xfb\x1d\xf7\x1a\xfb\x42" +"\xfb\x41\xfb\x1e\xfb\x1b\xfb\x3c\x39\xab\x41\xc8\x50\x1e\xb1\x66\xaf\x72\xb5\x7a\x08\x24\x06\x40\x8d\x6f\xa0\x6e\xd7\x7a\x88\x18" +"\xb1\xfb\x3c\x05\xf7\x91\xd5\x06\x65\x9e\x78\x9c\x72\xb4\x08\x68\xc2\x79\xd2\xdd\x1a\xf7\x33\xdd\xf7\x04\xf7\x08\xf7\x08\xdd\xfb" +"\x03\xfb\x32\xfb\x1f\x57\xfb\x02\x38\x65\x1e\x41\xf7\x91\x07\x0e\x81\x1d\xaf\x1d\xf8\x00\xf7\x1e\xc7\x1d\xd2\xa9\xc9\xc8\x1f\xc8" +"\xcb\xac\xe1\xec\x1a\xf7\x55\xfb\x1c\xf7\x24\xfb\x4b\x1e\x8a\x64\x15\xf7\x0c\x6d\x1d\x3b\x86\x0a\x64\x0a\xfb\x42\xf7\x2d\x98\x0a" +"\xf7\x74\xf7\xce\xf8\xe2\x15\xfb\x3e\x79\xfb\x09\x22\xfb\x1c\x1a\xfb\x1c\xf7\x0b\x20\xf7\x3c\x7b\x1e\x7f\x07\x8c\x52\x80\x7f\x51" +"\x89\x74\x8a\x18\x79\xf7\xb1\xdb\x1d\xf7\x3c\x9b\xf7\x0b\xf6\xf7\x1c\x1a\xf7\x1c\xfb\x08\xf4\xfb\x3f\xd5\x1d\xfb\xb1\xb8\x0a\xfb" +"\x00\xa1\x4d\xe0\xf7\x10\x1a\xf7\x10\xcb\xe2\xf5\xa0\x1e\xf2\x8a\x15\xf7\x00\x73\xc9\x37\xfb\x0f\x1a\xfb\x0f\x4b\x34\x21\x75\x1e" +"\x0e\xf9\x54\x21\x1d\xfd\x42\x79\x06\x36\x0a\xf7\xb2\x9d\x07\x75\x3b\x1d\xf8\x4e\x07\xca\x9b\x9f\xbf\x8d\x1e\xf7\x33\x06\xbf\x89" +"\x9b\x77\x4c\x1a\xfc\x4e\x8a\x0a\x0e\xf7\x7b\xf7\x76\x21\x1d\x79\x07\x2e\x1d\xfb\xc5\x07\x5f\x94\x7a\x94\x6e\xa7\x63\xb7\x80\xaf" +"\x89\xf3\x8a\xd3\x88\xa2\x83\xa2\x08\xb8\x7c\x6d\xa1\x5d\x1b\x73\x73\x86\x82\x73\x1f\x92\x76\x05\x90\x96\x91\x8c\x93\x1b\xa8\x90" +"\x7f\x48\x8e\x1f\x90\xfb\x35\x91\x74\xc1\x46\xbb\x55\xc2\x72\xdc\x84\x08\xfb\x0b\x07\x4c\x42\x0a\x56\x8d\x7c\x9e\xca\x1a\xf7\x0b" +"\x07\xcc\x91\xb1\x98\xb8\xac\xd3\xc7\xa4\xc4\x8c\xf7\x09\x8f\xeb\x8b\x8b\x8e\x94\x08\x9e\x8f\x96\x93\x9d\x1b\x93\x90\x8a\x86\x96" +"\x1f\x93\xa0\x05\x94\x72\x74\x90\x73\x1b\x60\x6e\x78\x64\x7b\x1f\x80\x72\x88\x74\x8a\x3c\x8c\xfb\x20\x5f\x45\x27\x77\x08\xf7\xc5" +"\xe1\x1d\x07\x0e\xf7\x34\x3b\x0a\xeb\xf8\x0c\x22\x1d\xf7\x34\x3b\x0a\xf7\xb1\xf8\xb3\x20\x0a\xf7\x34\x3b\x0a\xe2\xfd\x04\x89\x0a" +"\x67\x55\x65\x1f\x0e\xbc\x83\x0a\x36\x0a\xf7\xb4\x9d\x07\x73\x8c\x56\x8d\x7b\x9e\x8c\xca\x19\xf8\x93\x04\x93\xa1\x99\x8d\xa1\x1b" +"\xe0\xc3\x51\x35\x36\x56\x54\x3b\x74\x79\x8f\x95\x72\x1f\x0e\xbc\x2f\x0a\xfb\x74\xf7\x94\x98\x0a\xbc\xf7\xac\x7d\x15\x94\x06\xf7" +"\x06\xe3\xdb\xf1\xde\x54\xcb\xfb\x18\xd3\x1f\x22\xc4\x61\xb7\xc2\x1a\xc2\xb5\xb0\xc9\xb8\xb5\x78\x67\xae\x1e\xaa\x6b\x99\x71\x9b" +"\x50\x08\xa4\x06\x75\xf7\x69\x05\x6f\x0a\xa5\x80\xa2\x86\xa7\x87\x67\x33\x18\x2d\x0a\x96\x5a\x0a\x6a\xc9\x1d\xbf\xb7\x6c\xa4\x55" +"\x81\x84\x8a\x89\x82\x1f\x0e\xbc\x2f\x0a\x5f\xf7\x94\x20\x1d\xbc\x2f\x0a\xfb\x7d\xfd\x7c\x8d\x0a\x84\x6a\x6f\x66\x55\x66\x1f\x0e" +"\xd6\xf8\xab\x21\x1d\xfc\x7f\x06\xf7\x3e\xfb\xf4\xfb\x3e\xfb\xca\x05\xf8\x7f\x06\xbc\xf7\x76\x05\x6c\x06\x55\xfb\x13\x46\x5b\xfb" +"\x15\x8d\x08\xfb\x07\x06\xf7\x21\xf7\xad\xfb\x27\xf7\xb3\x05\xf7\x04\x06\xf7\x1d\x8f\xcd\x58\x94\xfb\x09\x08\xaa\x06\x0e\xf3\xf7" +"\x36\x16\xf7\xb3\x9d\x06\x75\x8c\x05\x55\x8d\x7c\x9e\xcb\x1a\xf8\x92\xe4\x07\xe0\x8c\xac\x6c\x8f\x37\x9e\x8d\x18\x81\xf7\x34\x05" +"\xfc\xb5\x3f\x0a\xe4\xfc\x92\x06\x4b\x7c\x78\x55\x89\x1e\x75\x8a\x05\x0e\xf3\xf7\x92\xf7\xd0\x15\xfb\x58\x07\x8a\x35\x82\x81\x37" +"\x86\x08\x78\xf7\xb8\x9e\x07\x39\x8f\x7e\x97\x8a\xd5\x08\xf7\x63\xf4\xad\x22\xf7\xa2\x71\x0a\xfb\xa2\x23\x69\x06\x0e\xf3\x53\x1d" +"\x94\xfa\x0a\x20\x0a\xf3\xf7\xcd\x16\xf7\x1f\x9e\x06\x39\x8f\x7e\x97\x8a\xd5\x08\xf8\x93\x71\x0a\xfc\x88\x06\x8a\x35\x82\x81\x37" +"\x86\x08\x78\xf7\x09\x07\x63\x28\x2d\x0a\x97\x1b\xb0\x9a\x81\x72\x6f\x77\x7a\x69\xc9\x1d\xc0\xb6\x6c\xa4\x54\x82\x84\x8a\x89\x82" +"\x1f\x0e\xf7\x93\xf8\x46\x15\xfb\x5a\xaa\x07\xba\xa4\xa3\xbd\xbc\xa4\x73\x5c\x1e\xaa\xf7\x5a\x6c\x06\x5b\x86\x76\x77\x5b\x1b\x5a" +"\x76\x9f\xbb\x86\x1f\xd9\xf7\x85\x15\xfb\x56\xfb\x1d\xfb\x23\xfb\x5e\xfb\x5a\xf7\x1e\xfb\x25\xf7\x51\xf7\x52\xf7\x1e\xf7\x24\xf7" +"\x5b\xf7\x5a\xfb\x1e\xf7\x27\xfb\x4e\x1f\x82\x65\x15\xb7\xb6\x7b\x6d\xad\x1f\xc9\x56\xad\x2c\xfb\x0c\x1a\xfb\x04\x6d\x30\x56\x59" +"\x1e\x6f\x6d\x5d\x7a\x5b\x1b\xfb\x16\x35\xf7\x0f\xf7\x4f\xf7\x52\xd7\xf7\x04\xf7\x16\x1f\x0e\x24\x1d\xfb\x7e\xf7\x7c\x15\x3f\x6e" +"\x73\x5a\x1d\xb3\x78\xba\x1b\xdf\xb9\x49\x0a\x24\x1d\xfb\xa9\xd7\x50\x1d\xd6\x1d\x75\x7c\x81\x86\x79\x79\x1e\xfb\x26\xfb\x28\x05" +"\xfb\x08\x16\xb8\x1d\x0e\x24\x1d\xfc\x73\xf7\x3e\x23\x1d\x82\x1d\xf7\x3d\xac\xa9\x8f\x92\xab\x1e\x68\x6e\x7c\x72\x6b\x1a\x60\x58" +"\x1d\xa1\xaa\x9d\xa7\xb4\xae\x1f\xdb\xcd\x9a\xaf\x8d\xf7\x15\x08\xf7\x99\x07\x8d\xf4\x96\x99\xdc\x94\x08\x0e\x78\x1d\x0e\x78\x1d" +"\xf7\x30\xf7\xab\x35\x0a\xf7\x4e\x16\x41\x0a\x0e\xf7\xc9\xbc\xf8\x7b\x37\x0a\xc2\x8c\x92\xa0\x1a\xaf\x7d\x9e\x71\x70\x7d\x78\x67" +"\x76\x8c\x85\x99\x53\x1e\xf8\x16\xfb\x8d\x15\xfb\x47\x07\x4c\x7b\x78\x56\xb6\x1d\xbc\xe1\xae\xa9\xc0\x8e\x19\x96\x8c\x05\x9d\xfb" +"\x73\x79\xa0\x07\xa6\x8a\x99\x81\x79\x1a\x7e\x86\x7d\xa9\x1d\xbc\x84\xa3\x77\xb5\x42\x19\x0e\x24\x1d\xfb\xd8\xf7\xac\x87\x0a\x0e" +"\x24\x1d\xfb\x66\xf7\x61\x15\x65\x7a\x7e\x7f\x74\x1b\x7c\x77\x90\x95\x79\x1f\x73\x97\x05\x96\x74\x71\x92\x76\x1b\x59\x67\x67\x4a" +"\x7c\x1f\xa8\x06\xaa\x96\x9c\x9a\xa2\x1b\x96\x9a\x48\x0a\x78\xb2\x9c\x86\xa4\x1b\xc2\xa8\xa8\xd8\xa0\x1f\x0e\xf8\x49\x32\x1d\xfc" +"\x86\xd7\x22\x1d\xf8\x49\x32\x1d\xfb\xc8\xd7\x20\x1d\xf8\x49\x32\x1d\xfc\xc8\x96\x1d\xf8\x49\x32\x1d\xfc\x19\x96\x0a\xf7\x1c\xf7" +"\x28\xf7\x7b\x15\x9d\x06\x89\xca\x9e\xa1\xc6\x8c\x08\xf7\x33\x06\xc6\x8a\x9e\x75\x89\x4c\x08\x9d\xf7\x85\x79\x06\x8d\x52\x76\x76" +"\x52\x8c\x08\xfb\x33\x06\x52\x8a\x76\xa0\x8d\xc4\x08\x79\x06\x56\xb1\x15\x94\xc9\xa4\x9b\xdb\x8a\x08\xf7\x74\x06\xdb\x8c\xa5\x7a" +"\x93\x4e\x9c\x8d\x18\x81\xf7\x2a\x05\xfc\x66\x06\x81\xfb\x2a\x05\x99\xfc\x94\x15\xf8\x60\x06\xb4\xf7\x3d\x7a\x8f\x6e\x45\x6d\x77" +"\x3f\x89\x19\xfb\x82\x06\x3e\x8d\x6e\x9e\x6e\xd2\x7a\x87\x18\x0e\x34\x1d\xfb\x4a\xd7\x20\x1d\x34\x1d\xfb\x9e\x96\x0a\xf3\x3c\x0a" +"\xfb\xd9\xf8\xb3\x22\x1d\xf3\x3c\x0a\xfb\xb8\xf9\x27\x2b\x1d\x0e\xf3\xf8\x3c\xf8\xfd\x15\xfc\x36\xfc\xfd\x05\xf8\xba\x06\xaf\xf7" +"\x4a\x78\x8d\x75\x22\x5a\x64\x20\x90\x19\xfb\x7b\x06\xf8\x34\xf8\xfd\x05\xfc\x83\x06\x78\xfb\x41\x9e\x89\x9a\xf7\x04\xa3\xa0\xf7" +"\x05\x88\x19\x0e\x4c\x26\x1d\xba\xf8\x20\x37\x1d\xf7\x34\xf9\x00\xf7\x2e\x15\x45\x5b\x64\x70\x52\x1b\x62\x65\x9f\xa9\x7b\x1f\x75" +"\xb2\x86\xaa\xef\x1a\xf7\x9a\x06\xf7\x15\x7f\x5c\xc1\x26\x1b\x5c\x70\x81\x68\x5e\x1f\xad\x64\x6e\x96\x59\x1b\x31\x46\x5c\x4e\x6d" +"\x9c\x79\xa6\xa7\x9a\x9c\xaa\x8f\x8b\x92\x8a\x91\x1f\x8a\x96\x05\x91\x07\xac\x8d\xa2\x9c\xb6\x1b\xa3\x9e\x83\x7d\x92\x1f\x92\x7b" +"\x90\x6c\x74\x1a\x89\x4c\x35\x67\x05\x20\x5f\x61\x62\x4f\x1a\x4a\xbb\x5e\xcf\xbd\xad\x9b\xc4\xcf\x1e\x57\xad\xb0\x76\xc5\x1b\xb9" +"\xb5\x9b\xab\xae\x1f\xa7\xa3\x9d\xa7\xa7\xc6\x08\xfb\xfa\xbf\x15\x8c\x66\x91\x66\x96\x67\x08\x8c\x8a\x8b\x8a\x8a\x1a\x79\x4a\x6b" +"\x67\x66\x6d\xb2\xbb\xc7\xa6\xa3\xf7\x0d\xb7\x1e\xdd\xc1\x15\xe3\x8f\xa5\xaf\xc4\x1b\xc1\xa2\x66\x34\x8d\x1f\xfb\x6f\xf7\x5c\x15" +"\x99\x0a\xf8\x81\xf0\x1d\xf8\x07\xc1\x0a\x81\x49\x89\x19\x79\xf7\x71\x9e\x7f\x07\x67\x73\x9a\xa0\x8c\x1f\x94\x92\xa2\x95\xa4\x1e" +"\xb5\xf4\x05\xf7\x86\x06\xb1\x2a\x05\x98\x6a\x8f\x7b\x7d\x1a\x72\xc1\x1d\xf1\xf7\x85\xf4\xfb\x85\x05\x0e\xce\x96\xf9\x2a\x15\x79" +"\x07\xd5\x9b\x7c\x44\x8c\x1f\xfc\x5b\x4f\x0a\xf7\x82\xf7\x0b\x07\xf3\x8d\xab\x74\x96\x35\x9c\x8d\x18\x81\xf7\x2a\x05\xfb\xa5\xfb" +"\xd7\x57\x1d\x0e\xf7\x34\xc2\x21\x1d\x79\x07\x2d\x1d\xf7\x5d\x07\xf7\x30\xa7\x8e\xa1\xbb\x1f\xcb\xa9\xb3\xc7\xcf\x1a\xb3\x7d\xb0" +"\x71\xa8\x1e\x74\xa4\x75\x98\x5b\x9c\xac\x9a\x9a\x95\x9a\x9b\x08\xa5\xa7\x9c\xb5\xb1\x1a\xc3\x67\xc0\x50\xaa\x1e\xa3\x60\x6a\x90" +"\x2a\x1b\x5d\x61\x15\x8e\xa0\x94\x8c\x99\x1b\xe9\xc7\x57\x3b\x3a\x55\x5b\x31\x7a\x7f\x8c\x90\x72\x1f\x58\x04\x90\xa3\x95\x8c\x9d" +"\x1b\xf1\xcb\x55\x33\x37\x4d\x52\x31\x73\x7e\x8d\x92\x6e\x1f\x0e\xd2\xf7\x78\xf8\xfd\x15\xf7\x44\x06\xe0\x8c\xac\x6c\x8f\x34\x9e" +"\x8c\x18\x81\xf7\x35\x05\xfc\x8b\x79\x06\x55\x1d\x0e\xf7\x43\xf7\x05\xf9\x2a\x15\x79\x07\xa1\x8a\x05\xc3\x8a\x98\x78\x3e\x1a\xfb" +"\x64\x73\xfb\x41\x65\x49\x1e\x5d\x70\x6c\x74\x67\x1b\x6a\x06\x84\xfb\x54\x05\x9d\x06\x9f\xf7\x0b\xbd\xb7\xf7\x07\x8a\x08\xf7\x7d" +"\x06\xf7\x0d\x8c\xb9\x64\xa2\xfb\x10\x08\x9d\x06\x84\xf7\x54\x05\x40\x7c\x9a\xd3\x8a\x1f\xf8\x4e\x07\xca\x9a\x9e\xc0\x8d\x1e\xa2" +"\x8c\x05\x9d\x07\xfb\x58\x5e\x15\xfc\xd0\xfb\xb6\x07\xbb\xbd\x9f\xc3\x99\xf7\x10\x08\x93\xd5\x8f\xe0\xf7\x0d\x1a\xc9\x07\x0e\xf3" +"\xf7\x6e\x91\x1d\xd5\x9b\x2e\x0a\xfc\x5b\x07\x44\x8a\x7b\x7c\x41\x1b\x79\xf8\x94\x07\xc4\xf7\x3b\x7b\x46\x1d\x5b\x86\x93\xca\x1f" +"\x0e\xf3\xf7\x6d\xf7\xdd\x15\xf7\x3a\xa0\x0a\x8c\x42\x76\x70\x53\x8c\x08\xfb\x3a\xf7\x8d\xf7\x2d\x06\xf2\x8d\xab\x72\x96\x32\x6c" +"\x1d\xfc\x8a\x79\x06\xc0\x1d\xf8\x94\x07\xc4\xf7\x3b\x7b\x46\x1d\x5c\x8a\x85\x94\xca\x1a\x80\xf9\x63\x15\x71\x75\x74\x70\x6f\x9f" +"\x75\xa6\xa7\x57\x0a\xf7\x5b\x16\x71\x75\x74\x70\x6f\x9f\x75\xa6\xa7\x57\x0a\x0e\xf8\x19\x7a\x0a\xf7\x91\x9d\x07\x5b\x8c\x68\xa6" +"\x47\xe1\xfb\x4a\xf7\x80\x18\xbd\xcd\xb7\xc6\xb1\xbe\xc4\xdb\x9d\x9a\xc1\x8f\x08\x9e\xfb\x56\x78\x07\xae\x8a\x96\x85\x7b\x1a\x66" +"\x41\xfb\x02\x24\xfb\x08\x1e\x76\xf7\x5e\x06\xd1\x98\x9a\xc6\x1e\x9d\xfb\x78\x79\x07\xc6\x98\x7c\x45\x1f\xfb\x5e\x76\x07\x24\xf7" +"\x08\x41\xf7\x02\xb0\x1a\x9c\x96\x90\xae\x8c\x1e\x9e\xfb\x56\x78\x07\xc1\x87\x9e\x7c\xc3\x3b\x9c\x73\xbe\x47\x97\x7c\x97\x7b\x97" +"\x7b\x97\x7c\x9b\x75\x18\xfb\x4a\xfb\x80\x46\x34\x69\x71\x5b\x8a\x19\x79\xf7\x91\x9d\x07\x69\x8d\x80\x91\x9d\x1a\x9a\x92\x97\xba" +"\xca\x1e\xf7\x16\xf7\x4f\x05\x0e\x85\xb8\xf8\x7b\x15\x9e\x06\xe6\x96\xbc\xba\xde\x1b\xd6\xb9\x5f\x42\x34\x56\x5e\x25\x87\x7f\x8b" +"\x8c\x7f\x1f\x5e\x9a\x07\xc5\xb2\x84\x7c\xa3\x1f\xb4\x72\xa2\x5e\x54\x1a\x32\x51\x4f\x34\x42\x53\xb0\xd9\x5f\x1e\x75\x7e\xa1\x5f" +"\x98\x79\xa4\x75\x19\x61\xb8\xc2\x76\xce\x1b\xf7\x1b\xeb\xda\xf7\x03\xc2\x75\xbc\x63\xaa\x1f\x81\x0a\x0e\x6d\x0a\x0e\xf8\x61\xf9" +"\xec\x15\x72\x7a\x7b\x74\x85\x8c\x85\x8d\x85\x1f\x8f\x7c\x8c\x89\x86\x1a\x7a\x6b\x7a\x6a\x68\x6c\x9c\x9d\x8e\x8c\x8f\x8c\x90\x1e" +"\x90\x9a\x8c\x8f\x93\x1a\xa2\x79\x9b\x72\x6f\x78\x78\x70\x55\xca\x62\xdf\xe0\xca\xb4\xc1\xa6\x77\x9e\x6f\x1e\xfb\x8b\xfd\x37\x6e" +"\x0a\x0e\xf7\x34\x70\x1d\x0e\xf7\x3f\xf7\x0f\x21\x1d\x79\x07\xd5\x9b\x7c\x45\x8c\x1f\xfb\x7d\x07\xfb\x3b\x6f\x2e\x59\x81\x84\x8e" +"\x98\x79\x1e\x98\x7a\x7e\x90\x7d\x1b\x71\x77\x75\x6f\x67\xaa\x74\xbc\xca\xb6\xaa\xce\xa7\x1f\xa3\xc4\x92\xbf\xf7\x12\x1a\xf7\xb9" +"\xf7\x53\xfc\x96\x07\x45\x7b\x7c\x40\x1e\x79\xf7\xb3\x9d\x07\x40\x7c\x9a\xd1\x8a\x1f\xf8\x5b\x07\xd2\x8c\x9b\x9a\xd5\x1b\x9d\x07" +"\x0e\xf8\x12\xbe\x0a\x46\x8a\x7c\x7b\x43\x1b\x79\xf7\xaf\x45\x1d\xfb\x57\x07\xfb\x6b\xfc\x7f\xfb\x74\xf8\x7f\x05\xfb\x53\x79\x06" +"\x2d\x1d\xf7\x7c\x60\x0a\xf8\x3a\x07\x0e\xca\x1d\xf7\xb2\x9d\x07\x41\x7b\x9a\xd2\x1f\xf8\x5b\x76\x0a\x81\x1d\x97\xf9\x2a\x15\x79" +"\x07\xd5\x9b\x2e\x0a\xfc\x5c\xae\x0a\xf8\x97\x07\xf7\xc5\x8a\x05\xfc\x96\x07\x45\x8a\x7c\x7c\x41\x1b\x79\xf7\xb1\x45\x1d\x07\x0e" +"\xbc\x83\x0a\x2d\x1d\xf7\xb4\x60\x0a\xf8\x93\x04\x93\xa1\x99\x8d\xa1\x1b\xe0\xc3\x51\x35\x36\x56\x54\x3b\x74\x7c\x8e\x96\x6f\x1f" +"\x0e\xf7\x34\xf8\xfd\xf7\x2f\x15\x3b\x4e\x43\x65\x30\x1b\xfb\x25\x2e\xf7\x05\xf7\x46\xf7\x4c\xe8\xf7\x0c\xf7\x22\xc7\xc3\x74\x60" +"\xb6\x1f\xae\x68\x9c\x66\x93\x52\x9d\x8d\x18\x85\xf7\x73\x05\x76\x06\x6f\x87\x82\x7f\x7a\x1b\x81\x8a\x8b\x9e\x63\x1f\x9d\x64\x59" +"\x95\x58\x1b\xfb\x55\xc0\x0a\xf7\x4c\xf4\xed\xc3\xea\xcb\x1f\x0e\xf3\xf7\x36\x16\xf7\xb3\x9d\x06\x40\x7b\x9a\xd2\x1f\xf8\x92\xe4" +"\x07\xe0\x8c\xac\x6c\x8f\x37\x9e\x8d\x18\x81\xf7\x34\x05\xfc\xb5\x3f\x0a\xe4\xfc\x92\x06\x44\x7b\x7c\x40\x1e\x0e\xf7\x5d\x75\x1d" +"\x0e\xf7\xaf\xf7\xea\xf8\xe2\x15\xfb\x50\x79\xfb\x15\x22\xfb\x1c\x1a\xfb\x1c\xf7\x18\x20\xf7\x4d\x7b\x1e\x7f\x07\x8c\x52\x7f\x7f" +"\x52\x89\x74\x8a\x18\x79\xf7\xb3\xdb\x1d\xf7\x4e\x9b\xf7\x17\xf6\xf7\x1c\x1a\xf7\x1c\xfb\x14\xf4\xfb\x51\xd5\x1d\xfb\xb3\xb8\x0a" +"\x61\x92\x72\x94\x6f\x9c\x08\x49\xb3\x64\xd4\xe0\x1a\xf7\x10\xd6\xe2\xf7\x11\xa0\x1e\xf4\x8a\x15\xf7\x13\x73\xd4\x37\xfb\x0f\x1a" +"\xfb\x0f\x40\x34\xfb\x11\x75\x1e\x0e\x8b\x1d\xf7\xb7\x9d\x07\x50\x8d\x78\x9b\x46\xef\xfb\x33\xf7\x7d\x18\xf7\x16\xf7\x3f\xd7\xec" +"\x90\x8f\xcb\x8e\x19\x9d\xfb\x73\x79\x07\xa6\x8f\x8b\x89\x92\x1f\x9a\x87\x96\x7e\x7d\x1a\x81\x86\x81\x7a\x75\x1e\x90\x0a\xcb\x86" +"\x9e\x7d\xcb\x2e\x08\x0e\xf9\x5d\xfb\x36\x15\x83\xf7\x54\x05\x41\x7b\x9a\xd3\x1f\xf8\x4e\x7c\x0a\xf8\x88\xc7\x0a\xf7\x23\xf8\x5c" +"\xf7\xdc\x15\x93\x1d\xfb\x4e\x07\x45\x8a\x7c\x7c\x40\x1b\x79\xf7\xb2\x45\x1d\xfb\xb2\x79\x07\x2f\x1d\x0e\xf8\x8a\xf9\xb7\xb8\x15" +"\xfb\x8a\xf8\x96\x06\xb2\x0a\xfc\x96\xfb\x8a\x95\x0a\xfa\x70\x9d\x07\x41\x7b\x9a\xd1\x1f\xf8\x5c\x4c\x1d\x0e\xf8\x8a\xfa\x7c\xfb" +"\x36\x15\x84\xf7\x54\x44\x8a\x7e\x96\x89\xc6\x19\xf8\x60\x07\xd1\x9b\x9a\xc3\x1d\xd2\x9b\x99\xc3\x1d\xd1\x3d\x1d\x2d\x1d\xf9\xa8" +"\xc7\x0a\xf7\x5b\xf7\x70\xf8\xfd\x15\xfc\x96\xc3\x0a\xf7\x37\xe3\xce\xf7\x10\xf7\x10\x2d\xd1\xfb\x3b\x6c\x77\x8a\x86\x6d\x1f\xf7" +"\x48\xa2\x0a\xf7\x3c\xfb\xaa\x15\x90\xa6\x9e\x8d\x9f\x1b\xeb\xcb\x4b\x2c\x32\x4c\x4e\x31\x75\x7b\x8e\x94\x68\x1f\x0e\xf8\x01\xf7" +"\xce\xf9\x2a\x15\xfb\xb2\x79\x06\xd5\x9b\x2e\x0a\xfc\x5c\x4f\x0a\xf7\x48\x39\x0a\x31\xfb\xc5\x57\x1d\xf7\xe1\xf8\xe7\x15\x2f\x1d" +"\xfc\x5c\xb0\x1d\x07\x0e\xce\xf7\xc1\x21\x1d\xfb\xb2\x79\x06\xd5\x9b\x2e\x0a\xfc\x5c\x4f\x0a\xf7\x48\x39\x0a\x31\xfb\xc5\x57\x1d" +"\x0e\xf7\x2d\xf8\x91\xf7\xcf\x15\xfb\x42\x84\x32\x23\xfb\x22\x1b\x2f\x43\xb1\xdb\x4f\x1f\x7a\x80\x05\x2c\xca\xee\x53\xf4\x1b\xf7" +"\x4c\xf7\x29\xf7\x2b\xf7\x4f\xf7\x51\xfb\x2d\xf7\x29\xfb\x55\x59\x59\x81\x79\x63\x1f\x78\x64\x8a\x8b\x81\x1b\x7a\x82\x97\xa7\x86" +"\x1f\x77\x06\x84\xfb\x73\x9e\x89\x91\xbf\x9a\xac\xa8\xad\x19\xbb\xb6\xc8\xa7\xcb\x1b\xf7\x1b\xe3\x24\xfb\x3d\x97\x1f\xfb\x70\x06" +"\x53\x8a\x76\xa6\x8d\xd4\x08\x79\xfb\x85\x9d\x06\x89\xd1\x9e\xa5\xc6\x8c\x08\x0e\xf8\x9d\xf7\x78\xf7\xfc\x15\xf7\x5b\xaf\x0a\xfc" +"\x5b\x5c\x1d\xf7\x67\xf7\x0b\x07\xfb\x52\x94\xf7\x17\xfb\x18\xf7\x47\x1b\xf7\x48\xf7\x1a\xf7\x24\xf7\x56\xf7\x57\xfb\x1c\xf7\x23" +"\xfb\x4b\xfb\x3e\xfb\x14\xfb\x12\xfb\x4b\x7b\x1f\xf7\xcd\xf7\xa2\x15\xf7\x0d\x6d\x1d\x3a\x86\x0a\xf7\x34\xf8\x4d\xf7\xcb\x15\xfb" +"\x63\x07\x8a\x45\x7c\x7c\x43\x8a\x08\x79\xf7\xb0\x9d\x07\x40\x7b\x9a\xd2\x1f\xf8\x5a\x07\xd2\x8c\x9a\x9a\xd6\x1b\x9d\xfb\xa8\x07" +"\x4f\x6e\x88\x83\x70\x1f\x41\x76\x5b\x4d\x40\x1a\x5c\xa0\x5d\xae\x6b\x1e\xa5\x74\xa1\x80\xbd\x7d\xfb\x2d\xfb\x5d\x18\x42\x2e\x80" +"\x83\x4f\x8c\x08\x78\xf7\x41\x07\xf7\x80\xf7\xcb\x05\xbf\xae\x15\x79\x06\xfb\x06\x46\xc0\xe2\xdb\xc4\xc2\xdf\x9f\x98\x89\x82\xa6" +"\x1f\x0e\x52\x9a\xf9\x2a\x15\x79\x07\x55\x1d\xf8\x97\xf7\x8a\xf7\x42\x79\x07\x75\x29\x62\x6d\xfb\x04\x8a\x08\x0e\xf7\x89\xf7\xd6" +"\xf8\xfa\x15\xf7\x1d\x06\xe0\x8c\xad\x6c\x8e\x37\x9e\x8d\x18\x82\xf7\x34\x05\xfc\xb1\x3f\x0a\xaf\xfc\x92\x06\x44\x7b\x7c\x40\x1e" +"\x79\xf7\x58\xf7\xc9\x07\xa3\xc7\xa4\x91\xb1\x1b\xe7\xb5\x53\xfb\x0f\x2c\x70\x52\x5c\x75\x80\x95\x9f\x90\x8b\x8d\x8c\x91\x1f\x8c" +"\x8f\x8b\x8e\x8e\x1a\xa2\x79\x9c\x72\x6e\x77\x76\x6d\x5e\xb7\x70\xd3\xc4\xb7\x9c\xad\xac\x1e\xb3\xb3\xa2\xc6\xc6\x1a\xf7\x0a\x32" +"\xd8\xfb\x1b\x56\x64\x82\x72\x52\x1e\x0e\xd2\xf7\x75\xf8\xfd\x15\xf7\x44\x06\xe0\x8c\xac\x6c\x8f\x34\x9e\x8c\x18\x81\xf7\x35\x05" +"\xfc\x8b\x79\x06\x55\x1d\xae\xf8\xfd\x5b\x0a\x98\x95\x98\x9b\x1a\x9f\x7d\x97\x76\x7b\x44\x0a\x0e\xf7\x2d\xf8\x65\xf7\x6e\x15\xf7" +"\x85\x79\x07\x8c\x42\x77\x70\x52\x8c\x08\xfb\x6f\x06\xf7\x3c\x95\xe5\xf3\xf7\x1a\x1b\xc7\xc3\x74\x60\xb6\x1f\xae\x68\x9d\x66\x92" +"\x52\x9d\x8d\x18\x85\xf7\x73\x05\x76\x06\x6f\x87\x82\x7f\x7a\x1b\x81\x8a\x8b\x9e\x63\x1f\x9d\x64\x59\x95\x59\x1b\xfb\x56\xc0\x0a" +"\xf7\x4b\xf7\x03\xe5\xbd\xf0\xce\x1f\x7a\x96\x05\x3b\x4f\x42\x65\x30\x1b\x35\x44\xb4\xd5\x62\x1f\x71\xb8\x80\xba\x88\xd2\x08\xf7" +"\x70\x06\xc6\x8a\x9e\x72\x89\x44\x08\x0e\xbc\xf4\x16\x9f\x92\x93\x92\x9b\x1b\x94\x98\x88\x86\x9a\x1f\x71\xdd\x8b\x8b\xb2\x1b\xf7" +"\x06\xdd\xd7\xf6\xd8\x5c\xc9\x25\xc6\x1f\x3e\xb7\x05\x4c\xaf\x69\xb4\xb3\x1a\xbf\xb7\xb1\xc7\xb1\xac\x7e\x72\xa3\x1e\xa5\x71\x9b" +"\x69\xa2\x40\x08\x9d\xf7\x66\x77\x06\x7a\x83\x83\x84\x7f\x1b\x82\x88\x8c\x98\x63\x1f\x98\x64\x75\x8f\x6d\x1b\x22\x44\x45\x25\x44" +"\xb1\x58\xe7\x55\x1f\xd9\x5f\xa1\x7e\xa2\x79\x9e\x78\x19\xa7\x6e\x96\x73\x6c\x1a\x4f\x59\x5c\x4a\x57\x57\xa8\xbb\x6c\x1e\x76\xaa" +"\x82\xa5\x84\xc1\x08\x77\xfb\x74\x06\x0e\xfb\x42\x4c\x0a\xfb\x42\xa2\xf9\x18\x15\x2f\x1d\xfc\x5c\x67\x1d\xf7\xb3\x9d\x07\x40\x7c" +"\x9a\xd1\x8a\x1f\xf8\x5c\x07\xd1\x8c\x9a\x9a\xd6\x1b\x9d\xfb\xb3\x07\xb6\xf7\x41\x3e\x0a\xfb\x0a\xdb\xf9\x18\x15\xa1\x8a\x05\xbd" +"\xa1\x71\x51\x8d\x1f\xfc\x33\x07\x37\x84\x71\x75\x80\x81\x94\x9a\x84\x1e\xb7\x75\x7e\x96\x6e\x1b\x6e\x76\x78\x70\x5f\xb6\x6d\xc9" +"\xf2\xcd\xd9\xf7\x0e\x1f\xf8\x02\x3c\x1d\x9f\x8c\x05\x9d\xfb\xb3\x07\x0e\xf8\x01\xe7\x21\x1d\x79\x07\x2f\x1d\xfb\x7d\x07\x20\x84" +"\x4c\x79\x61\x1e\x6c\x7e\x78\x79\x77\x1b\x83\x81\x8f\x91\x82\x1f\x9f\x70\x81\x8f\x7b\x1b\x71\x77\x76\x6e\x68\xaa\x74\xba\xca\xb9" +"\xad\xcf\xa8\x1f\xa0\xbe\x93\xc7\xf7\x0c\x1a\xf7\xb9\xf7\x53\xfc\x96\x07\x44\x7b\x7d\x40\x1e\x79\xf7\xb3\x07\xf7\x37\xe3\xce\xf7" +"\x10\xf7\x10\x2c\xd1\xfb\x3a\x6c\x78\x8a\x86\x6c\x1f\xf7\x48\xba\x0a\x07\x30\xfb\xd7\x15\x90\xa4\xa0\x8d\x9f\x1b\xea\xcb\x4b\x2c" +"\x33\x4d\x4d\x32\x73\x77\x8e\x94\x6d\x1f\x0e\xf8\x01\xf8\x4c\xf7\xcf\x15\xfb\x68\x07\x8a\x61\x87\x7a\x7c\x7e\x86\x87\x89\x8a\x81" +"\x87\x08\x88\x7c\x85\x8a\x72\x1b\x8a\x79\xf7\x9c\x06\xf7\x2a\xde\xcc\xf7\x0b\xdb\x61\xc0\x37\xa6\x1f\x99\x60\x71\x8d\xfb\x0d\x1b" +"\xf7\x5c\x07\xd1\x9a\x99\xcf\x1e\x9d\xfb\x9c\x79\x07\xcf\x9b\x7c\x45\x1f\xfb\x5b\xfb\x91\xf7\x5b\x07\xd2\x9a\x99\xcf\x1e\x9d\xfb" +"\x9c\x79\x07\xd0\x99\x7c\x45\x8c\x1f\xfc\x5c\x07\x44\x8a\x7d\x7d\x46\x1b\x79\xf7\x9c\x9d\x07\x46\x7d\x99\xd2\x1f\xf7\x68\x07\xf7" +"\xf2\x16\xe4\x91\x8a\x7f\xac\x1f\xbb\x7a\xab\x5a\x51\x1a\x39\x50\x50\x3a\x75\x77\x8e\x94\x71\x1e\x0e\xf7\x7e\xf7\x47\xf8\xfa\x15" +"\xfc\x92\x07\x44\x7b\x7c\x40\x1e\x79\xf7\xb2\x9d\x07\x41\x7b\x9a\xd2\x1f\xf7\x54\x07\xb4\xd9\x9b\x90\xc2\x1b\xe9\xa4\x6e\x20\x1f" +"\x24\x07\x45\x8a\x7c\x7c\x41\x1b\x79\xf7\xb2\x9d\x07\x40\x7c\x99\xd2\x8a\x1f\xf2\x07\xc6\x86\xa1\x78\xa9\x1e\xb7\x6f\x54\xa0\x33" +"\x1b\x48\x5e\x82\x71\x49\x1f\xf7\x9f\xf7\x38\x07\xdf\x8c\xad\x6c\x8e\x37\x9f\x8d\x18\x81\xf7\x34\x05\xfc\xcb\x3f\x0a\x0e\xf7\x34" +"\x70\x1d\xf7\x19\xf8\xfc\x15\x30\x1d\x9f\x98\x95\x98\x7f\x0a\x0e\xf7\x5d\x75\x1d\xf7\x4b\xf7\x56\x15\x72\x7a\x7b\x74\x85\x8c\x85" +"\x8d\x85\x1f\x8f\x7c\x8b\x8a\x86\x1a\x79\x6c\x7a\x6a\x69\x6b\x9c\x9d\x8e\x8c\x8f\x8c\x90\x1e\x8f\x9a\x8c\x90\x92\x1a\xa2\x7a\x9b" +"\x72\x6f\x78\x78\x70\x55\xca\x62\xdf\xdf\xca\xb4\xc1\xa6\x78\x9e\x6f\x1e\x0e\x4c\xf8\x3d\xd4\x15\x7b\x7a\x7c\x84\x7d\x1b\x7b\x87" +"\x95\xb2\x1f\xf7\x6e\x07\xed\x61\xb5\x28\x30\x3e\x57\x4f\x71\x9f\x75\xa2\xa1\x9d\x9e\xa2\xb0\x8b\x8d\x90\x98\x1e\xa3\x94\xa3\x99" +"\xab\x1b\xa8\xa1\x7f\x77\x96\x1f\x94\x78\x8d\x7e\x57\x1a\x76\x07\x2f\x69\x70\x7f\x65\x76\x08\x53\x6d\x70\x63\x57\x1a\x4d\xb7\x5b" +"\xc3\xb8\xb2\x9f\xbd\xc3\x1e\x5d\x91\x9e\x73\xab\x1b\xb2\xad\xa2\xb9\xaa\x1f\xfb\x35\xaf\x15\x6d\x6f\x71\x7d\x6c\x1b\x61\x6e\xaa" +"\xb7\xc2\xa7\xa3\xf7\x14\xbf\x1f\x0e\x8d\xf7\xac\xf8\xc5\x15\x8a\x93\x91\x8b\x8f\x1b\xd8\xad\xa6\xd2\x98\x1f\x7e\x06\x76\x84\x79" +"\x85\x52\x1b\x84\x80\x8b\x8c\x7e\x1f\x74\x06\x48\x57\x6f\x55\x67\x1f\x68\x54\x74\x21\xfb\x02\x1a\x38\x99\x48\xa5\x5d\x1e\x53\xab" +"\xc7\x69\xcc\x1b\xf7\x03\xe3\xf5\xf7\x19\xf7\x17\x3b\xe9\xfb\x04\x48\x5b\x6a\x3e\x60\x1f\x96\xd7\x90\xa0\x97\xa4\x08\xc7\xa6\xb8" +"\xab\xc5\x1b\x7e\xfb\x1f\x15\xd0\xba\x33\xfb\x18\x21\x64\x47\x4f\x40\x5c\xde\xf7\x1a\xc5\x91\xac\x9b\xaa\x1f\xb0\x9f\xa6\x9d\xaf" +"\x1b\x0e\x68\xa9\xf8\x56\x29\x1d\xbe\x88\x8f\x83\x8d\x2e\x08\xfb\x64\x07\x8a\x2e\x86\x83\x58\x88\x08\x7a\x7a\xf7\x31\x06\xf7\x02" +"\x9e\x8d\x9a\xad\x1f\xb8\x9f\xa7\xb4\xb9\x1a\xc1\x6d\xac\x48\xa1\x1e\xa4\x96\x95\x91\x97\x97\x08\x9e\x9e\x97\xa7\xa5\x1a\xb1\x72" +"\xaf\x61\xa1\x1e\x9a\x6d\x72\x8f\x48\x1b\x6b\x6e\x15\x8d\x99\x92\x8c\x95\x1b\xca\xb4\x68\x55\x53\x67\x6b\x4d\x7f\x83\x8c\x8e\x7a" +"\x1f\x68\x04\x8f\x9b\x93\x8c\x97\x1b\xd2\xb7\x66\x4f\x52\x60\x64\x4d\x7b\x81\x8c\x90\x77\x1f\x0e\x2a\xf7\x49\xf8\x2f\x15\xde\x06" +"\xcf\xab\x6e\x44\x96\x1f\x9c\x06\x7b\xf7\x1f\x05\xfb\xf0\x7a\x9c\x06\xbe\x88\x90\x83\x8c\x2f\x08\xfb\x66\x07\x8a\x30\x28\x0a\xe2" +"\x1a\x0e\x8d\xf8\x76\x26\x0a\xfc\x1b\x7a\x99\x06\xb5\x99\x74\x46\x38\x7e\xfb\x06\x7c\x5d\x1f\x5e\x7d\x6e\x74\x62\x1b\x70\x06\x82" +"\xfb\x21\x05\x9c\x06\x94\xda\xab\xac\xce\x8a\x08\xf7\x74\x06\xcd\xad\x69\x3e\x93\x1f\x9c\x06\x82\xf7\x21\x05\x67\x06\x6e\x8a\x87" +"\x8f\xab\x1a\xf7\x9d\x07\xe3\x93\x99\xbc\x8c\x1e\x9b\x06\xfb\x2c\xfc\x1e\x15\xfb\x51\x06\xb3\xab\x9b\xf2\xf7\x81\x1a\xf7\x19\x06" +"\x0e\x4c\xf8\x20\x72\x0a\x0e\x4c\xf8\x1e\x72\x0a\xfb\x25\xf7\xd0\x53\x0a\xf7\x2d\xc4\x1d\xf7\x4c\x7d\x0a\xf7\x5b\x9c\x85\x06\x67" +"\x6f\x9d\xbd\x64\x1f\xfb\x19\xf7\x3a\xf7\x01\xf7\x0f\xb1\xb6\xad\x9c\xb8\x8a\x19\x9c\xfb\x4b\x7a\x94\x07\x9d\x98\x82\x7e\x82\x87" +"\x82\x81\x80\x1f\xfb\x11\xfb\x21\x05\x71\xe4\x06\x8c\xe6\x90\x94\xbd\x8e\x08\x9d\x9c\xfb\x77\x7a\x9d\x06\xbd\x88\x90\x82\x8d\x30" +"\x08\x32\x70\x07\xfb\x11\xf7\x21\x05\x82\x96\x87\x93\x95\x1a\x99\x96\x93\x9e\x1e\x94\x9c\xfb\x4b\x7a\x06\xb8\x8c\xad\x7a\xb1\x60" +"\xf7\x02\xfb\x0f\x18\xfb\x19\xfb\x3a\x05\x5a\x64\x6e\x78\x69\x1b\x83\x7a\xf7\x5b\x9c\x79\x06\x80\x84\x90\x93\x92\x8e\x92\x92\x94" +"\x1f\xf7\x10\xf7\x31\x05\x0e\xfb\x04\xc0\xf7\xcd\x15\xd7\x97\xb2\xb3\xcb\x1b\xc3\xae\x6a\x58\x5b\x67\x6a\x58\x1f\x6b\x66\x06\x8c" +"\x92\x8f\x8b\x91\x1b\xb5\xa3\x84\x7a\x9d\x1f\x9e\x79\x96\x71\x70\x1a\x52\x5f\x63\x4b\x54\x62\xa2\xc2\x5d\x1e\x79\x7f\x05\x3d\xbd" +"\xbe\x6c\xdb\x1b\xef\xd7\xc4\xd8\xad\x7d\xab\x73\xa1\x1f\x92\x1d\x0e\xa7\x76\x1d\x0e\xa7\xf8\x05\xf9\x05\x15\x78\x7d\x7c\x77\x85" +"\x8c\x88\x8e\x7f\x1f\x8d\x84\x8c\x84\x88\x1a\x79\x69\x7b\x63\x60\x6a\x9c\xa2\x8f\x8c\x8f\x8d\x91\x1e\x8e\x92\x8c\x8f\x92\x1a\x9f" +"\x7d\x9a\x78\x76\x7c\x7c\x74\xbc\x0a\x42\xfb\x43\x29\x1d\xb0\x8c\x9b\x7b\x8d\x68\xfb\x5d\xfb\xa0\x18\xf7\x6a\x07\xe3\x93\x9a\xbc" +"\x8c\x5d\x1d\x9c\x7b\x06\x66\x7c\x98\xb0\x88\x1f\xf7\x5d\xf7\x9d\x05\xfb\x67\x07\x8a\x2f\x28\x0a\xe3\x1a\x56\x0a\x06\x0e\x76\x72" +"\x1d\x0e\x83\xcf\x26\x0a\x7a\x97\x07\xc2\x98\x77\x34\xfb\x44\x76\x2f\x63\x84\x84\x8e\x91\x80\x1f\x92\x7e\x82\x8e\x82\x1b\x73\x78" +"\x78\x75\x6e\xa3\x79\xb1\xe9\xb0\xe8\xf7\x7e\x9c\x8b\x9b\x8a\xc9\x1f\xf7\x1a\xfb\xb6\x06\xa2\x1d\xf7\x12\xf8\x61\xf7\xfb\x15\xfb" +"\x82\xca\x0a\xf7\x76\x9c\x7c\x06\x59\x8c\x83\x9a\x8c\xe3\x08\xf7\x64\x07\x8a\xe3\x93\x9a\xbd\x8c\x08\x9a\x9c\xfb\x25\x06\xfb\x26" +"\xfb\xe6\xfb\x21\xf7\xe6\x05\xfb\x34\x7a\x95\x06\xbf\x8a\x9d\x78\x8a\x56\x08\xfb\xa6\x07\x8c\x59\x79\x79\x57\x8a\x08\x81\x7a\xf7" +"\x43\x9c\x82\x06\x5f\x8c\x7d\x9c\x8d\xbe\x08\xf7\xa3\x07\xf7\x31\xfb\xfc\x05\x9a\x06\x0e\xa7\xf7\x34\x88\x1d\xf7\x76\x45\x0a\xf7" +"\x65\x9e\x0a\x84\xf7\x93\xf8\x5d\x15\x4e\x5c\x78\x5e\x5f\x1f\x5e\x5f\x72\x4c\x48\x1a\xfb\x15\xe7\x2a\xf7\x0e\xf7\x0e\xec\xf5\xf7" +"\x19\xf7\x16\x32\xea\xfb\x0e\x1e\x7e\x68\x15\xdb\xc2\x32\xfb\x17\x22\xcf\x1d\xa7\x99\xf8\x56\x29\x1d\xbe\x88\x90\x83\x8c\x2f\x08" +"\xfb\x65\x07\x8a\x2f\x28\x0a\xe3\x1a\xf7\xb6\xf7\x5f\xfb\xb6\x07\xa2\x1d\x84\xf7\x3a\xa4\x15\x73\xb2\xa2\x83\xac\x1b\xf7\x04\xec" +"\xf7\x03\xf7\x16\xf7\x0e\x40\xf0\x32\x59\x68\x75\x49\x54\x1f\xe9\x07\x46\x6a\x80\x86\x42\x6d\x91\x7d\x18\x95\x8e\x05\x8e\x92\x91" +"\x8c\x91\x1b\xa8\x95\x7a\x57\x1f\xfb\xfa\x07\x88\x65\x89\x6f\x8b\x8b\x89\x84\x19\x74\x83\x7e\x83\x6c\x1b\x79\x7a\xf7\x77\x9c\x7f" +"\x06\x5a\x8c\x82\x9a\x8a\xe3\x08\xf7\xfd\x04\xbf\xb6\x9b\x96\xb0\x1b\xd2\xba\x44\xfb\x01\x23\x5a\x42\x44\x6c\x6d\x9a\xa2\x7b\x1f" +"\x7d\x9f\x88\x9f\xbe\x1a\x0e\x4c\xf8\x20\xf7\x49\x15\x46\x72\x5a\x65\x4a\x1b\x37\x56\xd0\xf7\x01\xf1\xb8\xcd\xd0\xb1\x9c\x7b\x61" +"\x91\x1f\x69\x90\x9c\x7a\xab\x1b\xa7\x9f\x9d\xa4\xc4\x47\xb9\x39\xfb\x0f\x34\x29\xfb\x1e\x4d\x9c\x56\xaa\x63\x1f\x5e\xae\xc2\x6f" +"\xc0\x1b\xe1\xca\xc9\xf7\x0a\xaf\x1f\x0e\x45\xf7\x97\xf8\x2f\x15\xb0\x06\xcc\x8c\xaa\x6f\x99\x42\x08\x9a\x06\x7f\xf7\x1f\x05\xfc" +"\x10\x58\x0a\x98\xd6\xa8\xa3\xdb\x8c\x08\xa5\xfb\xb6\x06\x8a\x2f\x86\x82\xab\x0a\x84\x74\x1d\x0e\xf7\x21\xf8\x47\xfb\x34\x15\x9c" +"\x7e\x07\x5a\x8c\x82\x9b\x8a\xe2\x08\xb9\x07\x81\xad\x9f\x87\x9d\x1b\xee\xe0\xf7\x02\xf7\x15\xf7\x15\x41\xe9\x26\x77\x7c\x89\x83" +"\x5d\x1f\xf7\x73\x07\x47\x69\x80\x86\x42\x6e\x91\x7c\x18\x91\x9a\x92\x8c\x95\x1b\x95\x97\x86\x85\x90\x1f\x93\x80\x8c\x84\x64\x1a" +"\x37\x07\x97\x5a\x7d\x8d\x77\x1b\x30\x38\xfb\x03\xfb\x0f\xfb\x13\xda\x27\xf0\x9d\xa7\x8f\x93\xaa\x1f\x5f\x07\x89\x65\x89\x70\x8b" +"\x89\x88\x85\x19\x74\x83\x7e\x83\x6c\x1b\x79\x7a\x06\xf7\x2f\xf8\xc7\x15\x9a\xa2\x96\x8f\x9f\x1b\xd1\xb6\x36\xfb\x1b\xfb\x01\x67" +"\x4a\x50\x73\x7a\x92\xa2\x6c\x1f\x3d\x7f\x15\x7e\x75\x7d\x86\x77\x1b\x47\x5f\xdb\xf7\x10\xf7\x0e\xad\xcf\xc9\xa4\x9c\x83\x71\xa9" +"\x1f\x0e\x84\xf7\xd0\xf7\xd5\x15\xcf\xef\x94\x93\xbb\x90\x08\x90\x9b\xfb\x35\x7b\x93\x06\xa0\x9a\x83\x7f\x8a\x1f\x83\x86\x7f\x83" +"\x7f\x1e\x52\x39\x63\xcb\x05\x7e\x9e\x81\xa3\x95\x1a\x95\x98\x92\x9c\x1e\x92\x9b\xfb\x5c\x7b\x93\x06\xb8\x87\x8c\x8a\xdb\xfb\x15" +"\xb8\x42\x18\x47\x21\x54\x34\x7f\x7f\x65\x86\x19\x78\x8a\x05\x7b\xf7\x3a\x9c\x80\x07\x77\x80\x91\x97\x93\x8d\x90\x9f\xab\x1f\xce" +"\xf7\x01\xcf\xfb\x02\x05\x97\x79\x91\x7c\x82\x1a\x7e\x80\x84\x75\x1e\x83\x7a\xf7\x62\x9c\x84\x06\x5f\x8d\x7c\x9d\xfb\x20\xf7\x76" +"\x08\x0e\xa7\xf8\x9e\xfb\x03\x15\x81\xf7\x21\x05\x8a\x85\x85\x8b\x89\x1b\x5f\x84\x9a\xe3\x1f\xf7\x59\x07\xa7\x0a\xfb\xb6\xfb\x5e" +"\xf7\xb6\x07\xa7\x0a\xfb\x65\x07\x8a\x2f\x86\x83\x58\x88\x08\x7a\x7a\xf8\x14\x06\xd1\x88\xa8\x6e\x94\x3c\x08\x0e\x87\xf7\xe0\xf7" +"\x0d\x15\x8a\x2f\x86\x82\x58\x88\x08\x6c\x7a\xf7\x84\x45\x0a\x56\x0a\xfb\x70\x7a\x96\x06\x87\x1d\x0e\xf7\x9b\xf9\x86\x16\x9c\x7b" +"\x07\x5a\x8c\x83\x99\xe3\x1a\xf7\x62\x07\xe6\x38\x0a\xfb\x69\x7a\x96\x06\xb7\x86\x8f\x82\x8d\x31\x08\xfb\xb5\xfb\x44\xf7\xb5\x6b" +"\x1d\x94\x9c\xfb\x69\x7a\x96\x06\xbe\x88\x90\x82\x8c\x2f\x08\xfb\xb5\xfb\x46\xf7\xb5\x07\xe0\x92\x9a\xb7\x8f\x1e\x94\x9c\xfb\x69" +"\x51\x0a\x7a\x06\x0e\xf7\x9b\xf9\x88\xfb\x03\x15\x83\xf7\x20\x05\x7f\x06\x5a\x8d\x83\x94\xc8\x1a\xf7\x75\x07\xe6\x38\x0a\xfb\x69" +"\x7a\x96\x06\xb7\x86\x8f\x82\x8d\x31\x08\xfb\xb5\xfb\x44\xf7\xb5\x6b\x1d\x94\x9c\xfb\x69\x7a\x96\x06\xbe\x88\x90\x82\x8c\x2f\x08" +"\xfb\xb5\xfb\x46\xf7\xb5\x07\xe0\x92\x9a\xb7\x8f\x1e\x94\x9c\xfb\x69\x51\x0a\x7a\xf8\xea\x06\xdf\x8e\xac\x6e\x95\x36\x08\x0e\x95" +"\xf7\xcd\x26\x0a\xfb\xba\x58\x0a\x9d\xd7\xa6\xa4\xce\x8a\x08\xa6\xfb\xb6\x06\x89\x2f\x86\x82\x59\x88\x08\x79\x7a\xf7\x74\x06\xf7" +"\x08\xd3\xbd\xdd\xd8\x40\xbe\xfb\x05\x77\x7c\x8a\x88\x68\x1f\xd5\x07\xe3\x92\x99\xbd\x8c\x1e\x9b\x06\x42\xfb\x61\x15\x8d\x9c\x93" +"\x8b\x98\x1b\xde\xd8\x1d\x0e\xf7\x39\xa0\xf8\x56\x29\x1d\xbe\x88\x90\x82\x8c\x30\x08\xfb\x65\x47\x1d\xf7\x74\x06\xf7\x08\xd2\xb9" +"\x0a\x7c\x8a\x88\x68\x1f\xd5\xac\x0a\x42\xfb\x72\x15\x8d\x9d\x92\x8b\x99\x55\x0a\xf8\x72\x74\x15\x7b\x06\x5a\x8c\x83\x99\xe4\x1a" +"\xf7\x64\x07\xe4\x93\x98\xbc\x8d\x5d\x1d\x06\x0e\x58\x9f\xf8\x56\x29\x1d\xbe\x88\x90\x82\x8c\x30\x08\xfb\x65\x47\x1d\xf7\x74\x06" +"\xf7\x08\xd2\xb9\x0a\x7c\x8a\x88\x68\x1f\xd5\xac\x0a\x42\xfb\x72\x15\x8d\x9d\x92\x8b\x99\x55\x0a\x0e\x3d\xa8\xf7\xbf\x15\x9b\x06" +"\xe0\x9c\xbb\xb9\xd6\x1b\xdf\xb8\x50\xfb\x08\x8f\x1f\xfb\x50\x67\xf7\x50\x06\x8a\x56\x85\x70\x78\x6b\x08\x5d\x70\x62\x73\x56\x1b" +"\x50\x61\xa2\xc3\x5b\x1f\x7a\x7e\x05\x3b\xc3\xbe\x6d\xd8\x1b\xf7\x11\xeb\xf0\xf7\x18\xf7\x1c\x31\xea\xfb\x16\x72\x77\x88\x83\x71" +"\x1f\x7f\x63\x8b\x8b\x81\x1b\x81\x86\x8f\x97\x85\x1f\x7f\x06\x0e\xf7\x84\xf7\xa6\xf7\x6e\x15\xfb\x17\x8e\xe4\x2d\xf7\x0d\x1b\xf7" +"\x0f\xec\xf5\xf7\x1a\xf7\x17\x32\xe8\xfb\x11\xfb\x03\x34\x39\xfb\x0d\x78\x1f\x27\xd7\x06\x95\x1d\x07\xf7\xc7\xf7\x60\x15\xdb\xc2" +"\x32\xfb\x16\x21\xcf\x1d\x5c\xf7\xc1\xf7\x0d\x15\x89\x2f\x87\x82\x58\x88\x08\x79\x7a\xf7\x77\x45\x0a\x56\x0a\xfb\x7a\x06\x59\x5e" +"\x82\x7c\x72\x1f\x66\x73\x77\x67\x5d\x1a\x42\xb8\x66\xf0\x82\x1e\x69\x83\x7b\x81\x77\x6f\x40\xfb\x00\x18\x7d\x78\x76\x7f\x78\x8c" +"\x08\x83\x7a\xf7\x07\x06\xf7\x05\xf7\x36\x05\xac\xa3\x9a\x95\xa7\x1b\x8f\x90\x8b\x8a\x97\x1f\xa6\x04\x86\x74\x81\x8a\x7a\x1b\x41" +"\x5e\xaf\xc6\xc9\xb8\xb3\xd0\x9c\x97\x89\x86\xa5\x1f\x0e\xfb\x30\x90\xf8\x56\x29\x1d\xbe\x88\x90\x83\x8c\x2f\x08\xfb\x66\x07\x8a" +"\x30\x28\x0a\xe2\x1a\xf7\xb7\xf7\x53\xf7\x16\x7a\x07\x85\x47\x79\x72\x5f\x8d\x08\x0e\x73\xf7\x36\xf9\x30\x15\x47\x69\x80\x86\x41" +"\x6d\x92\x7d\x18\x91\x9a\x92\x8c\x94\x1b\x9a\x97\x84\x7e\x90\x1f\x8e\x83\x8b\x8a\x8c\x71\x08\x2a\x6e\xec\xfc\x17\x06\x33\x83\x7c" +"\x5a\x8a\x1e\x7a\x7a\xf7\x74\x9c\x7d\x06\x5a\x8c\x83\x9a\xe3\x1a\xf7\x6e\x07\xb6\xb2\xab\x9d\xb2\x1b\xa5\xa2\x7e\x74\x9b\x1f\xa5" +"\x67\x93\x54\xfb\x19\x1a\xfb\x2b\x83\x49\x75\x65\x1e\x77\x80\x7d\x82\x7a\x1b\x7a\x7e\x97\x9a\x8c\x1f\x8c\x9c\x05\xa3\x8c\x7a\x9e" +"\x72\x1b\x73\x7c\x7b\x72\x64\xb3\x6d\xbc\xf7\x01\xcf\xf7\x1b\xf7\x6e\xf7\x4d\x5d\xdf\x25\x52\x63\x76\x53\x59\x1f\xf7\x16\xf7\x2f" +"\xa8\xfb\x2f\x07\x0e\x2a\xf7\x45\xf8\x2f\x15\xde\x06\xcf\xab\x6e\x44\x96\x1f\x9c\x06\x7b\xf7\x1f\x05\xfb\xf0\x7a\x9c\x06\xbe\x88" +"\x90\x83\x8c\x2f\x08\xfb\x66\x07\x8a\x30\x28\x0a\xe2\x1a\xf7\x0c\xf8\x95\xc8\x0a\x3d\xf8\x19\x26\x0a\x7f\x06\x7f\x86\x85\x87\x82" +"\x1b\x84\x80\x8d\x8e\x80\x1f\x9a\x5d\x79\x8e\x6b\x1b\xfb\x13\x31\x2b\xfb\x1b\xfb\x18\xeb\x26\xf7\x11\xd8\xbe\xa9\xdb\xc3\x1f\x7a" +"\x98\x05\x53\x5b\x61\x74\x50\x1b\x5a\x65\x9f\xb2\x70\x1f\x73\xad\x83\xaa\x8a\xc5\x08\xf7\x50\xaf\xfb\x50\x06\xf7\x08\x8f\xb8\xc6" +"\xdf\x1b\xd6\xbb\x5e\x35\x9c\x1f\x9b\x06\x0e\xfb\x0a\xdc\x88\x15\x96\x8d\x8f\x8e\x95\x1b\x90\x8f\x8a\x89\x93\x1f\x7e\xbb\x9a\x89" +"\xa7\x1b\xde\xc5\xbf\xd6\xc3\x6a\xb8\x44\xb0\x1f\x59\xa6\x05\x56\xa6\x77\xa2\xaa\x1a\xac\xa6\xa4\xb1\xc6\xb0\x64\x41\x98\x1e\x9c" +"\xf7\x22\x79\x06\x83\x87\x87\x87\x85\x1b\x88\x89\x8b\x90\x78\x1f\x94\x6b\x7d\x8d\x76\x1b\x3c\x53\x56\x42\x68\x99\x6e\xa9\x71\x1f" +"\x9d\x7b\x8c\x8a\xb8\x73\xb2\x75\x18\xbc\x6f\xa2\x6f\x6a\x1a\x68\x6e\x72\x65\x4b\x62\xb7\xe1\x79\x1e\x7a\xfb\x36\x06\x0e\xfb\x79" +"\xb1\x0a\x8e\x92\x93\x8c\x90\x1b\xa8\x92\x7e\x53\x1f\xfb\x5a\x07\x8a\x2f\x28\x0a\xe3\x1a\x5e\xf8\xa7\x15\x6e\x74\x75\x6f\x6f\xa2" +"\x74\xa8\xa7\xa2\xa2\xa7\xa6\x74\xa2\x6f\x1f\x0e\xfb\x79\xb1\x0a\x8d\x92\x93\x8d\x90\x1b\xa8\x92\x7e\x53\x1f\xfb\x5a\x07\x8a\x2f" +"\x28\x0a\xe3\x1a\xfb\x0a\xf8\x8d\x53\x0a\xf7\x2c\xc4\x1d\xfb\x79\xf7\x55\xf8\x63\x15\x47\x69\x80\x87\x41\x6d\x92\x7d\x18\x96\x8e" +"\x05\x8d\x91\x93\x8d\x91\x1b\xa8\x92\x7e\x53\x1f\xfb\xd3\x07\x34\xea\x1d\x75\x7c\x93\x7b\x1b\x74\x79\x79\x76\x6e\xad\x76\xb9\xc8" +"\xc0\xa9\xbc\xa6\x1f\x9c\xac\x8f\xa4\xe1\x1a\x5d\xf8\xde\x53\x0a\x0e\xf7\x70\xf8\x3f\xf7\xde\x15\xe3\x93\x99\xbc\x8c\x1e\x9b\x9c" +"\xfc\x22\x7a\x97\x06\xc2\x98\x77\x35\xfb\x46\x77\x30\x63\x83\x85\x8d\x92\x7f\x1f\x92\x7d\x83\x8e\x83\x1b\x72\x78\x79\x74\x6e\xa3" +"\x79\xb1\xe9\xb0\xe7\xf7\x80\x9c\x8b\x95\x8a\xce\x1f\xf7\x1a\xfb\xb6\x06\x51\x1d\x7a\x7a\xf7\x73\x06\xf7\x09\xd2\xbd\xdd\xd8\x40" +"\xbe\xfb\x05\x76\x7d\x8a\x88\x68\x1f\x6f\x04\x8d\x9d\x93\x8b\x97\x1b\xde\xbb\x65\x49\x52\x5f\x67\x45\x7a\x7c\x8d\x90\x74\x1f\x0e" +"\xf7\x6c\xf8\x0a\xf7\x92\x15\xfb\x6b\xd7\x06\xe2\x60\x1d\x90\x82\x8c\x30\x08\xfb\x65\x07\x8a\x2f\x3e\x1d\x5a\x8d\x83\x99\xe3\x1a" +"\xec\xf7\x6b\x2a\x47\x1d\xf7\x74\x06\xf7\x07\xd3\xbd\xdd\xd8\x40\xbe\xfb\x06\x78\x7b\x8a\x88\x69\x1f\xd5\x07\xe2\x93\x99\xbc\x8d" +"\x1e\x9b\x9c\xfb\x76\x7a\x9d\x06\xbd\x88\x90\x82\x8c\x30\x08\xda\x25\x15\x8d\x9c\x92\x8b\x9a\x55\x0a\x0e\x84\xf7\x34\xf8\xad\x15" +"\xf7\x17\x07\x47\x69\x80\x86\x41\x6d\x92\x7d\x18\x91\x9a\x92\x8c\x94\x1b\xa4\x95\x7e\x67\x8c\x1f\x85\x2a\x6e\xec\xfc\x17\x07\x33" +"\x83\x7c\x5a\x8a\x1e\x7a\x7a\xf7\x74\x9c\x7d\x06\x5a\x8c\x83\x9a\xe3\x1a\xf7\x6c\x07\xba\xbd\xa9\x9b\xad\x1b\xa6\xa6\x78\x71\x93" +"\x1f\x91\x7b\x8e\x6f\x6e\x1a\xfb\x35\x07\x33\x83\x7c\x5b\x8a\x1e\x80\x7a\xf7\x68\x9c\x81\x06\x5a\x8c\x84\x9a\xe3\x1a\xf7\x35\x07" +"\xc5\x86\xaa\x7c\xa9\x1e\xad\x7b\x66\xa1\x64\x1b\x57\x67\x77\x4a\x4b\x1f\xf7\x1c\xf7\x2f\xa8\x07\x0e\x76\x72\x1d\xf7\x5f\xf8\x94" +"\xc8\x0a\x84\x74\x1d\xf7\x88\xf7\xe3\x15\x78\x7d\x7c\x77\x85\x8c\x86\x8e\x81\x1f\x8d\x83\x8c\x86\x87\x1a\x79\x69\x7b\x63\x60\x6a" +"\x9c\xa2\x90\x8c\x8e\x8d\x91\x1e\x8d\x91\x8c\x90\x92\x1a\x9f\x7e\x9a\x78\x76\x7c\x7b\x75\xbc\x0a\x0e\xf9\x58\x16\x9d\x07\x41\x7b" +"\x9a\xd1\x1f\xf8\x5c\x7c\x0a\xf7\x63\x07\xdd\x92\xb7\x4d\x91\xfb\x18\x08\x9c\x06\x91\xf7\x17\xb8\xca\xdd\x84\x08\x0e\xa7\x8f\x16" +"\xf7\x37\x06\xc5\x8a\xaa\x59\x8e\x2a\x08\x9d\x06\x8e\xee\xa9\xbb\xc5\x8c\x08\xf7\x37\x9c\x7b\x06\x5a\x8c\x83\x99\xe3\x1a\xf7\x65" +"\x6b\x1d\x9b\x9c\xfb\x77\x7a\x9d\x06\xbe\x88\x90\x83\x8c\x2e\x08\xfb\xb6\x07\x89\x8c\x05\xfb\x70\xf7\xb5\x06\xe3\x38\x0a\xfb\x76" +"\x51\x0a\x06\x0e\x4c\xbb\xf7\x9d\x15\xd4\xae\xbb\xb1\xc4\x1b\xdb\xc4\x3b\xfb\x09\x8d\x1f\xfb\xab\x06\xfb\x07\x8d\xca\x44\xee\x1b" +"\xf7\x01\xdc\xee\xf7\x19\xf7\x18\x3c\xef\x22\x55\x58\x70\x5c\x68\x1f\x79\x72\x7f\x6e\x79\x53\x08\xf7\xbc\xfb\x19\x15\x49\x83\x6a" +"\x65\x58\x1b\x59\x6c\xb1\xcd\x89\x1f\x0e\xf7\xda\xf8\x0f\xf8\x8d\x15\x5f\x7a\x70\x76\x62\x1b\x58\x6b\xb3\xca\xc6\xa6\xb1\xb4\xa2" +"\x93\x83\x73\x8f\x1f\x75\x8f\x97\x80\xa0\x1b\x9f\x99\x97\x9c\xaf\x5f\xa8\x55\x3c\x53\x4f\x37\x3b\xc0\x4f\xd1\xc4\xb3\xb0\xd6\xa3" +"\x1f\xfb\x6d\xfc\x85\x15\xb6\x06\xf8\x29\xf9\x2a\x05\x5f\x06\x64\xfc\x15\x15\x3a\x4d\x4c\x39\x3c\xc6\x4f\xda\xda\xc9\xcc\xdc\xdb" +"\x52\xc5\x3c\x1f\x83\x70\x15\xbb\xac\x57\x3f\x4d\x6f\x63\x60\x5a\x6a\xbb\xd2\xd1\xa5\xb4\xb9\x1f\x0e\x6f\xf7\x84\xf7\x9a\x15\xc4" +"\xc8\xab\xb1\xa2\xb0\x08\xb3\xcb\xa3\xd1\xc0\x1a\xbe\x71\xac\x62\x37\x4f\xfb\x14\xfb\xb4\x54\x1e\x6b\x65\x84\x84\x7b\x7c\x08\x7e" +"\x7e\x86\x84\x84\x1a\x82\x93\x80\x91\x91\xa4\x9f\xa2\xa0\x1e\x85\x49\x8a\x75\x73\x1a\x4d\xa4\x6a\xba\xaa\xa6\x9e\xb0\xa3\x1e\x97" +"\xa0\x93\x9f\x98\x1a\x95\x85\x91\x83\x82\x86\x86\x7d\x85\x1e\x64\x78\x7f\x7e\x7b\x1b\x80\x85\x94\x9b\xa4\x97\xe1\x9b\xe4\x1f\x94" +"\xc5\x15\xf7\x7a\xb1\xa3\xd2\xb2\x1b\x99\x95\x7c\x77\x70\x80\x5d\x7c\x64\x1f\x75\x53\x6e\x5e\x5b\x56\x08\x0e\xf8\x53\xf7\x53\x21" +"\x1d\xfb\x3c\x79\x06\xb1\x8a\xa6\x7b\xa1\x67\x08\xfc\x69\x07\x5e\x85\x7f\x76\x82\x88\x8c\x91\x81\x1e\x90\x82\x85\x8d\x82\x1b\x6f" +"\x76\x78\x72\x6c\xa4\x77\xb3\xd2\xae\xbb\xed\x1f\xf8\x2c\x07\xf8\x26\xfc\xba\x05\x9e\xf8\xcf\x06\xa4\x96\x9c\x9c\x8f\x8f\x8a\x89" +"\x8f\x1e\x81\xa7\x91\x89\x9a\x1b\xa9\x9e\x9d\xa7\xa9\x73\x9d\x63\x3f\x5c\x54\x33\x1f\xfb\xec\x07\xf7\x8c\xf7\xc3\x15\x3b\x4e\x40" +"\x27\x27\xc5\x44\xdb\xde\xc7\xd5\xf0\xee\x50\xd3\x3a\x1f\x83\x6b\x15\xc1\xab\x53\x2e\x34\x72\x5d\x5a\x57\x6a\xc7\xe9\xdc\xa6\xba" +"\xb9\x1f\x2a\xfc\x64\x15\xf7\x72\xc9\xfb\x72\x06\x0e\x9c\xf8\x9b\xf8\x59\x66\x0a\x9c\xf7\x70\xf8\x8b\x15\xa5\x06\x95\xb3\x05\x98" +"\xbe\x8c\x91\xa8\x0a\x8c\x87\x99\x56\x1e\xf7\xc8\x31\x66\x0a\x4c\x26\x1d\xfb\x70\xf7\xe1\x23\x1d\xfb\x42\xc5\xf7\x82\x15\xf7\x42" +"\xfb\xe8\x05\x7c\x93\x95\x83\x97\x1b\x93\x90\x8f\x92\x92\x89\x93\x88\x93\x1f\xfb\x17\xf7\xdd\xf7\x17\xf7\xdd\x05\x8e\x93\x8d\x93" +"\x92\x1a\x93\x86\x8f\x83\x7f\x83\x85\x79\x81\x1e\x0e\xfb\x42\xf7\xa7\xf7\x82\x15\xfb\x42\xf7\xe8\x05\x9c\x82\x82\x92\x7f\x1b\x83" +"\x86\x87\x83\x85\x8d\x83\x8e\x82\x1f\xf7\x17\xfb\xdd\xfb\x17\xfb\xdd\x05\x88\x84\x89\x83\x84\x1a\x83\x90\x87\x93\x97\x93\x91\x9c" +"\x95\x1e\x0e\x4c\x7c\x1d\x8e\x6a\x91\x7c\x9b\x7c\x08\x65\x6d\x7b\x71\x6a\x1a\x60\xc8\x1d\x74\x7c\x9c\xa5\xa7\x9b\xa1\xa3\x90\x1f" +"\xb4\x92\x96\x91\xae\xb1\x08\xfb\x2f\xde\x15\x6d\x86\x80\x76\x7f\x1e\x7d\x72\x70\x83\x76\x1b\x68\x6f\xad\xb6\x1f\x8f\x07\x8c\xc7" +"\xb7\xb1\xf7\x09\xb4\x08\x0e\xf8\x81\xf9\x3a\xf7\x6c\xa6\x0a\x6c\x76\x4b\x5d\x1f\xc1\x6b\x05\xb2\xa5\x9c\x97\xaa\x1b\xa0\xa0\x86" +"\x82\x9c\x1f\x5c\xe4\x9d\x84\xb8\x1b\xb9\xaa\xa0\xcc\xb9\x1f\x55\xf7\x61\xa6\x0a\x6d\x76\x4a\x5c\x1f\xc1\x6c\x05\xb2\xa5\x9c\x97" +"\xaa\x1b\xa0\xa0\x86\x82\x9c\x1f\x5b\xe4\x9d\x85\xb8\x1b\xb9\xad\xa3\xc8\xb6\x1f\x0e\x4c\x6f\x1d\x4a\xf8\x5a\x87\x0a\x57\xcf\x3a" +"\x1d\xf9\x03\xf8\x37\x15\xfc\xa0\x06\xf7\x66\xdc\x74\xc0\xfb\xb2\xfb\x14\x05\x3e\x07\xf7\xb2\xfb\x13\xa2\xbf\xfb\x66\xdd\x05\xf8" +"\xa0\x06\xfb\x66\x39\xa2\x57\xf7\xb2\xf7\x13\x05\xd8\x07\xfb\xb2\xf7\x14\x74\x56\x05\x0e\xf8\x1b\xf9\x66\x15\x4b\xfd\x03\x06\x39" +"\xf7\x66\x57\x74\xf7\x13\xfb\xb2\x05\xd8\x06\xf7\x14\xf7\xb2\x56\xa2\x3a\xfb\x66\x05\x0e\xf9\x66\xf7\xf9\x15\xcb\xfd\x03\x07\xf7" +"\x66\xdc\x74\xc0\xfb\xb2\xfb\x13\x05\x3e\x07\xf7\xb2\xfb\x14\xa2\xbf\xfb\x66\xdd\x05\x0e\xf7\xf9\x04\xf9\x03\x06\xfb\x66\x39\xa2" +"\x57\xf7\xb2\xf7\x14\x05\xd8\x07\xfb\xb2\xf7\x13\x74\x56\xf7\x66\x3a\x05\xfd\x03\x06\x0e\xf8\x1b\x16\xf9\x03\x07\xdc\xfb\x66\xc0" +"\xa3\xfb\x14\xf7\xb1\x05\x3e\x06\xfb\x13\xfb\xb1\xbf\x73\xdd\xf7\x66\x05\xfd\x03\x07\x0e\xf7\xde\xf9\x03\xa4\x1d\xa2\xc2\x0a\x74" +"\x05\x0e\xf7\x5b\x2c\x15\x51\xf7\xdb\xc5\x07\xfb\x58\xf9\x42\xa4\x1d\xa3\xc2\x0a\x73\x05\x0e\x8d\xf7\x31\xbd\x15\x60\xb3\xa7\x7d" +"\xb7\x1b\xf7\x00\xe1\xf3\xf7\x16\xe8\x62\xd3\x40\xb1\x1f\xc5\xb3\xa4\xb3\xbc\x1a\xcd\x55\xb7\x3a\x40\x4e\x6c\x51\x63\x1e\x6b\x5c" +"\x82\x62\x21\x1a\xfc\xc9\xda\x07\xf8\xdb\x04\xd9\x91\xba\x98\xaa\x1e\xba\x9f\xb0\xa6\xb5\x1b\xbd\xaf\x65\x57\x64\x81\x75\x66\x60" +"\x1f\x8f\x7a\x81\x8d\x7e\x1b\x5f\x6c\x7b\x73\x7d\x9a\x7f\x9d\xa1\xa2\x93\x9f\xb0\x1f\xbc\x54\x9e\x55\x3b\x1a\xfb\x03\x56\x3c\x41" +"\x66\x73\x99\xb8\x66\x1e\x0e\x4c\x35\x1d\xfb\x5f\xf7\xfc\x5b\x0a\x99\x94\x97\x9b\x1a\x9f\x7e\x97\x75\xdd\x1d\x4c\x35\x1d\x7d\xf8" +"\xa3\x20\x0a\x4c\x35\x1d\x74\xf7\xfc\x20\x1d\x4c\x35\x1d\xfb\x3e\xf8\x70\x43\x1d\x0e\x4c\xf7\x97\xf7\x28\x15\xf7\x4b\xf7\xc3\x05" +"\x31\x06\xfb\x13\xfb\x73\x6f\xd3\x05\xf0\x64\x53\xc4\x4f\x1b\x6d\x76\x78\x71\x72\xa2\x77\xa7\x1f\xc9\x8f\xa1\x79\xac\x3f\xb2\x2d" +"\x18\xfb\x6c\xfb\xff\x05\xe6\x06\xf7\x31\xf7\xad\xba\xfb\x0f\x05\x24\xb3\xae\x4d\x9e\x1b\x8e\x8f\x8c\x8e\x90\x1f\xda\xbb\x85\x9a" +"\x05\x86\x7e\x83\x89\x81\x1b\x72\x75\x98\xa5\x79\x1f\x76\xa8\x82\x9e\x6c\xdc\x08\x0e\xf8\x81\xf8\x8b\xf9\x4b\x15\xfb\x5c\xfb\x36" +"\xfb\x35\xfb\x5c\xfb\x58\xf7\x36\xfb\x36\xf7\x57\xf7\x59\xf7\x37\xf7\x37\xf7\x57\xf7\x58\xfb\x36\xf7\x39\xfb\x55\x1f\x87\xfb\xd0" +"\x15\xfb\x52\xf7\x50\x05\xb8\xc2\xcc\xa2\xd1\x1b\xd0\xcb\x75\x5f\xc4\x1f\xb3\x63\x15\xbb\x51\xa2\x4d\x42\x1a\x43\x74\x4b\x5d\x53" +"\x1e\xfb\x54\xf7\x57\x05\xf7\x2c\xfb\x7f\x15\x5f\x54\x48\x73\x45\x1b\x45\x4b\xa2\xba\x50\x1f\xf7\x55\xf7\x55\x05\xfb\x7d\xfb\x2d" +"\x15\x5f\xc1\x74\xcb\xd1\x1a\xd3\xa2\xcb\xba\xc4\x1e\xf7\x52\xfb\x50\x05\x0e\xf8\x81\xf9\x83\x16\x9f\x07\x24\x9f\x6e\x99\x5d\xbb" +"\x5c\xbf\x7a\xc0\x8a\xeb\xa0\x66\x93\x7e\x97\x7d\x08\x5d\xb2\xc9\x6c\xc0\x1b\xe6\xd2\xd5\xe9\xe5\x4a\xd3\x3a\x6e\x84\x89\x6e\x50" +"\x1f\xa7\xb4\x96\xaa\xb0\x1a\xe3\x42\xd2\x30\x2e\x44\x45\x30\x68\x92\x79\xad\x55\x1e\xa3\x5a\x77\x91\x6c\x1b\x40\x49\x3f\x34\x2e" +"\xd4\x42\xe7\xdc\xcf\xbd\xe6\xb8\x1f\x8c\x7b\x8b\x80\x86\x1a\x43\x65\x3a\x55\x5f\x1e\x6b\x72\x74\x82\x2c\x77\x08\x77\x07\x0e\xf0" +"\xf8\x7e\x67\x0a\xf7\x28\xf0\x15\xce\xac\xb7\xc8\xc7\x1a\xbd\x69\xb2\x5d\x69\x73\x74\x69\x6b\xa1\x78\xb0\x40\x0a\x70\x67\x55\x66" +"\x1f\x0e\x84\xf7\xe8\xf8\xa3\x15\xfb\x02\xa1\x1d\x9b\x07\xc5\x0a\xf8\x31\xd7\xad\x3f\xf7\x0c\xbf\x1d\x7f\xfb\x0d\x69\x07\xf7\x0d" +"\xfc\x3d\x97\x0a\x0e\x67\xf8\x23\xf9\x0a\x15\xa9\x28\x3e\x9a\x50\x1b\x4c\x61\x6f\x61\x6f\x9a\x76\xb7\x6a\x1f\xe3\x48\x05\xfb\x05" +"\x77\x3e\x29\xfb\x0d\x1a\xfb\x18\xe6\x2b\xf7\x10\xf7\x12\xee\xf7\x00\xf7\x20\xd9\x71\xc0\x45\xc9\x1e\x6b\xa7\x7f\x95\x3e\xc0\x43" +"\xbe\x18\x6b\xa1\x7e\x99\x99\x1a\x99\x9a\x93\xa5\xc4\xe4\x6f\x5d\xe5\x1e\xfb\x45\xfb\x24\x15\xde\xc5\x2c\xfb\x1d\xfb\x01\x62\x4c" +"\x44\x66\x67\x9e\xaa\x76\x1f\x6d\xb7\x79\xd1\xd1\x1a\xf6\xb5\xca\xd2\x1e\x0e\xf8\x81\xf7\x8e\xf7\xf1\x15\xf0\xfb\x11\xf7\x10\xfb" +"\x45\xb1\x40\xc7\xf7\x00\xf7\x06\xf7\x35\xf3\xf7\x10\x3a\xe8\xfb\x36\xf7\x78\x68\xd2\x54\x24\x40\x21\xfb\x26\xfb\x4b\x08\x0e\xfb" +"\x42\xf7\x2e\xf8\xe5\x83\x1d\x4c\x27\x1d\xac\xf7\xf7\x15\x40\x6f\x72\x75\x51\x1b\x4b\x69\xa9\xce\x7d\x1f\x6e\x06\x8c\x58\x92\x73" +"\x9e\x6f\x08\x68\xa4\xb2\x78\xbb\x1b\xdf\xb9\x49\x0a\x4c\x27\x1d\xd6\xf8\x01\x20\x0a\x4c\x27\x1d\x3a\xf7\xce\x43\x1d\x0e\xf8\x81" +"\xf9\x93\xf7\x6c\x15\xc8\xfc\x62\x07\x91\xf6\xc3\xbd\xf7\x01\x89\x08\xf7\xb7\xc9\xfb\xac\x65\x1d\x42\x2c\x1a\xfb\x08\xb8\x38\xc6" +"\x0a\xc9\xfb\xb7\x06\xfb\x01\x89\x53\xbd\x85\xf5\x08\x0e\x4c\x27\x1d\xfb\x80\xf7\xb8\x23\x1d\x84\xf7\x38\xf7\xf0\x15\xb8\xbb\xa1" +"\x97\xac\x1b\xbc\xa3\x6c\x49\x1f\xfb\xf5\xd4\x1d\x80\x92\xa0\x7b\x1f\xa2\x79\x7d\x94\x7b\x1b\x74\x79\x7a\x75\x6b\xb2\x74\xc2\xb7" +"\xb3\x99\xa4\xa6\x1f\xaf\xab\xa1\xcf\xda\x1a\xf7\xca\x94\x1d\x7c\xf7\x68\x9a\x07\x59\x8e\x7b\x98\xaf\x1a\x0e\x4c\xf8\x2c\x8d\x1d" +"\xf7\x08\xa1\x9a\x8d\x92\xa1\x1e\x65\x6b\x7d\x73\x6a\x1a\x61\xdc\x1d\x6b\x79\x82\x76\x1b\x75\x7b\x9b\xa1\xa6\x98\xa1\xb5\xb7\x1f" +"\xc2\xc6\xa2\xab\x9a\xb7\x08\x91\x0a\x0e\x34\x6b\x0a\x0e\x34\x6b\x0a\xfb\x1f\xf7\x19\x15\xa6\x06\x94\xb3\x05\x98\xbe\x8c\x91\x9e" +"\x1a\xab\x7e\x9d\x73\x74\xe6\x1d\xf8\x81\xf7\x8c\xf7\xb8\x15\x4b\xf8\x8c\xcb\x07\xfc\x8c\xfb\x54\x15\x4b\xf8\x8c\xcb\x07\xfc\x8c" +"\xf8\x14\x15\x4b\xf8\x8c\xcb\x07\x0e\xe8\xf8\xa4\xf7\x8e\x15\x89\xd4\x86\xae\x7d\xaf\x08\xdb\x6a\x3e\xbb\x2b\x1b\xfb\x23\x31\x23" +"\xfb\x38\xfb\x36\xe2\x29\xf7\x25\xf7\x01\xd5\xbe\xec\xa9\x1f\x5f\x06\x46\x6c\x52\x68\x3b\x1b\x5e\x66\x97\xa2\x72\x1f\x78\x9b\x82" +"\x9c\x7f\xb2\x8c\xf4\x18\xf7\xc0\xae\x15\xfb\xbe\xe8\x06\xd5\xad\xb1\xa5\xd3\x1b\xc4\xb2\x79\x62\xae\x1f\x97\x7d\x8f\x84\x92\x77" +"\x08\x0e\x9b\xf7\x49\xf8\x67\x15\x46\x69\x81\x86\x41\x6c\x92\x7d\x18\x95\x8f\x05\x8d\x92\x91\x8c\x93\x1b\xa8\x92\x7e\x52\x1f\xfb" +"\xd4\xda\xf7\xeb\x07\xb9\xc0\xa4\x98\xaf\x1b\xc2\x9a\x72\x30\x1f\xfc\x65\xda\xf8\x62\x07\xcd\x87\xa6\x7d\xa9\x1e\xae\x7c\x66\xa1" +"\x62\x1b\x5a\x5e\x72\x50\x51\x1f\x0e\x9b\xf7\x45\xf8\x67\x15\x46\x69\x81\x86\x41\x6c\x92\x7d\x18\x95\x8f\x05\x8d\x92\x91\x8c\x93" +"\x1b\xa8\x92\x7e\x52\x1f\xfb\xd4\xda\xf7\xeb\x07\xb9\xc0\xa4\x98\xaf\x1b\xc2\x9a\x72\x30\x1f\xfc\x65\xda\xf8\x62\x07\xcd\x87\xa6" +"\x7d\xa9\x1e\xae\x7c\x66\xa1\x62\x1b\x5a\x5e\x72\x50\x51\x1f\xd2\xf7\x10\x5f\x0a\xbe\x8c\x91\xa8\x0a\x8b\x88\x99\x55\x1e\x0e\x98" +"\xf7\x3c\xf7\x43\x15\xb4\xf7\xef\x05\x8e\xa3\x8e\xad\x99\x1a\xc0\x78\xa7\x68\x68\x78\x6f\x56\x7e\x8e\x60\x8d\x7b\x1e\xb4\xfb\xef" +"\x05\x93\x43\x15\x6b\x71\x71\x6b\x6b\xa5\x71\xab\xaa\xa5\xa5\xab\xab\x71\xa5\x6c\x1f\xf7\x63\xd3\x15\xb4\xf7\xef\x05\x8e\xa3\x8e" +"\xad\x99\x1a\xc0\x78\xa7\x68\x68\x78\x6f\x56\x7e\x8e\x60\x8d\x7b\x1e\xb4\xfb\xef\x05\x93\x43\x15\x6b\x71\x71\x6b\x6b\xa5\x71\xab" +"\xaa\xa5\xa5\xab\xab\x71\xa5\x6c\x1f\x0e\x38\xbd\x16\xf7\xd9\xf8\xd5\xfb\xd9\x37\xf7\x85\xfb\x36\xfb\x85\x37\xf7\x85\xfb\x37\xfb" +"\x85\x06\x0e\xf8\x13\xf7\xac\x15\xf7\x02\x97\xdd\xe6\xf7\x01\x1a\xf7\x0b\x2b\xea\xfb\x0a\xfb\x0a\x2c\x2b\xfb\x0a\xfb\x01\xdd\x30" +"\xf7\x01\x7f\x1e\x32\xfb\x29\x64\xf7\x29\xfb\x2c\xb7\xf7\x2c\xf7\x28\xb2\xfb\x28\x07\x72\xf8\x6a\x15\xeb\xd8\x40\x2e\x2d\x3f\x3f" +"\x2d\x2e\x3f\xd7\xe8\xe7\xd7\xd8\xe5\x1f\x0e\x84\xf7\xb2\xa9\x15\xfb\x02\x90\x4a\xf7\x07\xf7\x50\x1a\xf7\x4d\xd1\xf7\x0e\xf4\xb3" +"\xb2\x74\x63\xa7\x1e\xa3\x69\x96\x6e\x9a\x47\x08\xa5\x06\x84\xf7\x75\x05\x72\x06\x77\x87\x80\x7e\x7f\x1b\x84\x82\x8e\x90\x81\x1f" +"\x9c\x6b\x68\x93\x67\x1b\x3f\x3f\x65\x4f\x60\x1f\x5d\x4b\x72\x31\x28\x1a\xfb\x5f\xf1\xfb\x1c\xf7\x2c\xe3\xd6\xb9\xdc\xb9\x1e\x74" +"\x9b\x6d\x63\x6d\x70\x66\x7a\x19\xf7\x3a\x07\x9d\xb6\x9a\x9d\xa1\x91\x08\x78\x9a\x95\x85\x9a\x1b\x9f\x96\x96\xa1\xa2\x7c\x98\x71" +"\x6a\x78\x7b\x56\x6a\x1f\xce\x07\x80\x8e\x25\x64\x05\x79\x07\x8e\x99\x8f\x8c\x8f\x1b\x9a\x8f\x81\x6b\x1f\x0e\x4a\x7d\xf8\x19\x15" +"\x91\x95\x90\x8d\x93\x1b\xa5\xa8\x67\x3f\xad\x1f\xb8\x28\xab\x2f\x9a\x45\x08\x74\x4b\x84\x6e\x68\x1a\x5e\xa2\x67\xa7\xac\xa1\xb4" +"\xc8\xa8\x87\xa8\x82\xb5\x1e\xee\xf7\x5a\x8e\x92\x94\x9c\x99\xa3\x19\x96\x9f\x94\x9d\x93\x9c\x08\x99\xab\x93\xa8\xa4\x1a\xad\x75" +"\xa4\x6c\x70\x77\x78\x72\x84\x8d\x80\x8f\x82\x1e\x9a\x63\x8c\x87\x7b\x1a\x6c\x87\x80\x66\x3f\x1e\x47\xfb\x22\x76\xf1\x55\xf7\x2f" +"\x66\xcd\x19\xae\x76\x6b\xb0\x81\x1b\x8a\x87\x89\x88\x87\x1f\x3c\x4f\x05\x0e\x84\x3a\x0a\xf7\x66\xf7\xdd\x37\x1d\x84\x3a\x0a\xf7" +"\x91\xf7\x40\x20\x1d\x84\x3a\x0a\xf7\x21\xf8\x25\x15\x48\x6a\x5e\x4e\x4f\x1a\x59\xae\x64\xb8\xad\xa3\xa2\xad\xaa\x75\x9f\x67\x84" +"\x85\x8a\x8a\x84\x1e\x89\x85\x8b\x8b\x89\x1b\x84\x85\x91\x93\xac\xa7\xaf\xc1\xb0\x1f\x0e\x84\xf7\x8b\xf9\x10\x35\x0a\xf7\x73\xfb" +"\x8c\x71\x1d\xfb\x7f\x59\x15\xc6\xa7\xae\xb9\xaa\xa5\x7a\x6d\x9b\x1e\x9e\x68\x96\x5e\x63\x1a\x53\x6f\x68\x5d\x4d\x62\xcc\xeb\x1e" +"\x86\xfb\xe5\x9b\x0a\x0e\xf8\x81\xf7\xba\x16\xf8\x30\xcd\xfc\x30\x06\xa5\x04\xf8\x30\xf7\x81\x05\x91\x07\xfc\x30\xf7\x8c\x05\x2e" +"\x07\xf7\xc6\xfb\x4c\xfb\xc6\xfb\x42\x05\x0e\x84\xd4\xf8\x92\x15\xfc\x2c\x07\x89\x43\x86\x83\x69\x1d\xd2\x08\xf7\x85\x07\xb9\xb5" +"\xa9\x9c\xb3\x1b\xbc\xa4\x67\x45\x1f\xfb\x5a\x07\x89\x44\x82\x80\x52\x86\x08\x7c\xf7\x68\x9a\x07\x55\x94\x86\x92\x8a\xd2\x08\xf7" +"\x5b\x07\xf4\x62\xc1\x39\x4f\x62\x73\x4f\x5d\x1e\xf7\x1a\xf7\x1f\xb2\xfb\x1f\xf7\x17\x07\x86\x8e\x68\x7f\x72\x82\x54\x7c\x19\x70" +"\x83\x05\x7b\x07\x8c\x8e\x8f\x8b\x8f\x1b\xb7\x93\x83\x60\x1f\x73\x56\x64\x07\x0e\x84\x77\x1d\x36\xf9\x6a\x20\x1d\xf8\x81\xf8\x87" +"\x6f\x15\x9f\xe5\xc7\xf2\xf7\x08\xf7\x25\x08\xeb\xf7\x0e\xab\xce\xdb\x1a\xdd\x45\xcf\x37\x5b\x5f\x76\x65\x6a\x1e\x75\x72\x81\x75" +"\x7e\x5d\x7f\xaf\x83\x9d\x7f\x9d\x08\xbd\x6a\x58\xa8\x54\x1b\x36\x49\x47\x32\x48\xa0\x5e\xdf\xfb\x06\x1f\xf7\x2b\xfb\x5e\xb3\x47" +"\xa5\x24\x08\x0e\xf8\x81\xf7\x2d\x16\xf9\x50\xf8\x25\x06\xfb\xf3\xf7\xdc\xfb\xf1\xfb\xdc\x05\xc8\xfb\xf2\x15\xf7\xdc\x07\xf7\xb4" +"\xf7\xa2\xf7\xb6\xfb\xa2\x05\xfb\xdc\x07\x0e\xfb\x79\x27\x0a\xf7\x7a\xf9\x1d\x15\x3f\x6f\x72\x39\x1d\xb8\xf7\x58\xf8\x6a\x15\x47" +"\x69\x80\xad\x0a\x92\x90\x8c\x93\x1b\xa8\x92\x7e\x53\x1f\xfb\x5e\x07\x8a\x2e\x86\x82\xcb\x0a\x5a\x8d\x83\x99\xe4\x1a\x5e\xf8\xb1" +"\x15\x4d\x1d\xa8\xa7\xa2\xa2\xa8\xa7\x74\xa2\x6f\x1f\xf7\xc2\xfb\x55\x15\x46\x69\x81\x86\x41\x6d\x92\x7c\x18\x96\x8f\x05\x8d\x91" +"\x90\x8c\x94\x1b\xa8\x92\x7e\x53\x1f\xfb\xd8\x07\x33\xea\x1d\x74\x7d\x93\x7b\x1b\x74\x79\x79\x76\x6e\xad\x75\xb9\xc8\xc0\xa9\xbd" +"\xa6\x1f\x9c\xad\x8f\xa4\xe2\x1a\x5d\xf8\xe8\x35\x0a\x0e\xfb\x79\x27\x0a\x6b\xf8\xde\x15\x55\xf7\xc8\xc1\x07\x0e\xf8\x81\xf8\x88" +"\xf7\xa4\x15\x60\xb2\x87\x8e\x78\x99\x08\xa5\x6a\x60\x9b\x6a\x1b\x45\x51\x51\x45\x45\xc5\x51\xd1\xad\xb4\x9b\xa5\xad\x1f\x9e\x99" +"\x8f\x8e\xb6\xb2\xb8\x64\x8f\x87\x9c\x7e\x08\x71\xae\xb4\x7b\xad\x1b\xd1\xc5\xc5\xd1\xd1\x51\xc5\x45\x6a\x60\x7b\x71\x69\x1f\x7a" +"\x7e\x86\x87\x5f\x64\x08\xac\x6d\x15\xbe\xbe\xbf\xa9\xb3\x1b\xb7\xb0\x66\x5f\x5e\x66\x66\x5f\x64\x58\xa8\xc0\x56\x1f\x4a\x16\x57" +"\x57\x57\x6e\x64\x1b\x5f\x66\xb0\xb7\xb7\xb0\xb0\xb8\xb2\xbe\x6e\x57\xbf\x1f\x0e\xf8\x81\xf8\xb3\xf8\xd4\x15\xd5\x8a\xb1\x88\xc5" +"\x1e\x89\xa8\x8a\xa9\x9a\x1a\xae\x96\xa2\x9d\x90\x91\x88\x88\x8d\x1e\x6f\x9c\x92\x86\x9d\x1b\x9e\x9a\x99\x9e\xa5\x73\x9d\x68\x69" +"\x6d\x7a\x6e\x7b\x1f\x72\x60\x7d\xfb\x00\xfb\x22\x1a\xfb\xed\x07\x44\x8c\x61\x8e\x53\x1e\x8d\x6d\x8c\x71\x78\x1a\x68\x7e\x74\x79" +"\x83\x85\x90\x98\x84\x1e\x9c\x82\x83\x90\x7d\x1b\x77\x7c\x7c\x79\x71\xa3\x79\xae\xad\xa8\x9c\xa8\x9c\x1f\xa4\xb6\x99\xf6\xf7\x23" +"\x1a\x0e\xf7\xfc\xf9\x80\x15\xfd\x83\x07\x59\x07\x48\x8b\x8b\x89\x78\x1e\x77\x89\x84\x82\x7e\x1b\x82\x85\x90\x99\x82\x1f\xa0\x7e" +"\x7e\x93\x76\x1b\x72\x78\x78\x73\x6b\xa6\x74\xb1\xe1\xc6\xe2\xf7\x14\x1f\xf9\x83\x07\x0e\xf8\x43\xfb\x6e\x15\xf9\x82\x07\xbe\x07" +"\xcd\x8b\x8b\x8d\x9e\x1e\xa0\x8d\x92\x94\x98\x1b\x94\x91\x86\x7e\x94\x1f\x75\x98\x98\x83\xa0\x1b\xa4\x9e\x9e\xa3\xab\x70\xa2\x65" +"\x35\x50\x33\xfb\x14\x1f\xfd\x82\x07\x0e\xf8\x81\xf9\x64\x16\xf7\x8a\x07\xf7\x1d\x86\xad\x73\xb4\x1e\xca\x65\x44\xb1\x39\x1b\x3f" +"\x4b\x6c\x53\x62\x1f\x6a\x5e\x85\x6b\xfb\x29\x1a\xfb\x8a\xc7\xf7\x8d\x07\xf0\x91\xb6\x9c\xaa\x1e\xb9\xa4\xc2\xa9\xc4\x1b\xc0\xbf" +"\x71\x61\xa7\x1f\xa0\x6b\x91\x66\xfb\x06\x1a\xfb\x8d\x07\x0e\xf8\x81\xf8\x89\xf9\x6e\x15\xfb\x5b\xfb\x3a\xfb\x38\xfb\x57\xfb\x63" +"\xf7\x35\xfb\x38\xf7\x5d\xf7\x61\xf7\x37\xf7\x36\xf7\x5f\xf7\x5e\xfb\x37\xf7\x37\xfb\x5e\x1f\xfb\x01\xfb\x63\x15\xa9\xa4\x72\x6d" +"\x6d\x72\x72\x6d\x6e\x71\xa4\xa8\xaa\xa4\xa4\xa9\x1f\xfb\x14\xfb\x05\x15\x96\x59\x96\x75\xa5\x6d\x08\x54\xbb\xc7\x71\xdc\x1b\xdc" +"\xc7\xa5\xc2\xbb\x1f\xa5\xa9\x96\xa1\x96\xbd\x84\x36\x80\x62\x6d\x5e\x08\x4c\x61\x4b\x6b\x38\x1b\x3e\x4f\xa6\xc1\x61\x1f\x67\xba" +"\x7c\xb8\x84\xe8\x08\xf7\xee\xf7\x05\x15\xa9\xa4\x72\x6d\x6d\x72\x72\x6d\x6e\x71\xa4\xa8\xaa\xa4\xa4\xa9\x1f\x0e\xfb\x79\xf7\x47" +"\xf8\x5d\x15\x87\x8e\xfb\x2f\x54\x05\x7c\x07\x93\x8c\x05\x8d\x97\x97\x8c\x95\x1b\xa3\x94\x7b\x5f\x1f\xfb\x7c\x07\x89\x41\x82\x81" +"\x47\x88\x08\x7c\xf7\x17\xab\x1d\xb0\xac\xac\xb1\x1f\xac\x9a\x06\x49\x90\x84\x94\x8a\xd4\x08\x58\xf8\xd9\x5b\x1d\xfb\x82\x86\x1d" +"\x0e\xfb\x82\x73\x0a\xfb\x06\xf8\x8a\x35\x0a\xf7\x2c\x16\x4d\x1d\xa7\xa8\xa2\xa2\xa8\xa6\x74\xa3\x6f\x1f\x0e\xfb\x82\x73\x0a\x58" +"\xf8\x5f\x83\x1d\xfb\x82\x86\x1d\x56\xf8\x05\x5f\x0a\xbf\x8c\x90\x9e\x1a\xac\x7e\x9c\x73\x72\x7f\x7a\x6a\x7c\x8d\x7e\x90\x76\x1e" +"\x92\x70\x05\x0e\xfb\x79\x9c\x16\x6c\x0a\xf7\x92\xf9\x03\x4b\x0a\xfb\x79\x70\x0a\xe0\xf8\x8f\x20\x1d\x88\xf7\x49\xf8\x67\x15\x46" +"\x69\x80\x86\x42\x6d\x92\x7d\x18\x96\x8f\x05\x8d\x91\x91\x8c\x93\x1b\xa8\x92\x7e\x53\x1f\xfb\xd6\xda\xf7\x81\x07\xf7\x3c\xfb\x7f" +"\x05\x83\x91\x90\x87\x90\x1b\x8e\x90\x8d\x8e\x91\x1f\xec\xbd\x85\x9a\x05\x86\x7e\x84\x89\x83\x1b\x7d\x7e\x92\x98\x7e\x1f\x7b\x9a" +"\x73\xa6\x82\x98\xfb\x01\xf7\x29\x18\xde\xd3\x9d\x99\xad\x1b\x91\x91\x8b\x8a\x92\x1f\x89\x95\x93\x8a\x8f\x1b\xa2\xa0\xa3\xa5\xa4" +"\x77\x9d\x70\x5b\x5a\x60\xfb\x2d\xfb\x0e\x1f\x85\x83\x05\x0e\x84\x62\x0a\xf7\x5d\xfb\xbc\x8d\x0a\x84\x69\x6f\x67\x55\x66\x1f\x0e" +"\x84\xf7\x49\xf7\x7a\x15\xf7\x08\xfb\x39\x05\x95\x7e\x92\x7d\x85\x1a\x81\x84\x86\x7e\x1e\x81\x7a\xf7\x65\x9c\x06\x58\x74\x9c\xdd" +"\x52\x1f\xfb\x09\xf7\x35\xe5\xec\xb8\xbc\x9f\x97\xbb\x8f\x19\x98\x8c\x05\x9c\xfb\x45\x7a\x90\x07\x9c\x89\x93\x86\x80\x1a\x83\x85" +"\x80\x81\x80\x1e\xfb\x09\xfb\x16\x05\xf7\x64\x07\x46\x69\x80\x86\x42\x6d\x91\x7d\x18\x96\x8e\x05\x8d\x92\x93\x8d\x90\x1b\x97\x96" +"\x87\x83\x90\x1f\x93\x81\x8c\x83\x63\x1a\xfb\x5e\x07\x32\x83\x7d\x5a\x89\x1e\x7d\x7a\xf7\x70\x9c\x7e\x06\x59\x8c\x83\x9a\x8c\xe4" +"\x08\x0e\xfb\x79\x3d\x0a\xe0\xf9\x54\x22\x1d\x75\xf8\x5a\xcb\x15\x84\x7d\x84\x89\x82\x1b\x6b\x75\xaa\xdf\x70\x1f\x2d\xf7\xb3\x71" +"\xdd\x78\xb5\x72\xa8\x19\xad\x70\x6a\x9d\x6c\x1b\x6e\x77\x78\x6f\x6f\xa0\x75\xa5\x90\x93\x8c\x8c\x92\x1f\x8d\x93\x92\x8c\x8f\x1b" +"\x9f\x9f\x7e\x75\x97\x1f\x96\x79\x95\x70\x9a\x56\xfb\x52\xfc\x49\x18\xe0\x06\xf7\x1f\xf7\xe2\xd2\xfb\x80\x05\x44\xa0\x9e\x65\x98" +"\x1b\x8d\x8e\x8c\x8c\x8d\x1f\xde\xc6\x05\x0e\xfb\x15\x3d\x0a\xf7\x7b\xf8\x36\x15\xcf\xac\xb7\xc8\xc7\x1a\xbe\x68\xb1\x4b\x1d\xb1" +"\x40\x0a\x6f\x67\x55\x66\x1f\x0e\xfb\x79\x3d\x0a\xd7\xfb\xbc\x25\x0a\xfb\x37\xa2\x16\xf7\x80\x9a\x06\x4c\x8e\x80\x95\x8a\xc3\x08" +"\xf8\xe9\x07\x87\x8d\x58\x7b\x66\x80\x44\x7a\x43\x0a\xfc\x71\x68\x1d\xf7\x95\xf8\x0b\x2b\x0a\xf8\x81\xf9\x56\x16\xcd\xfc\x30\x49" +"\x07\xf8\x30\xf8\xdb\x15\xfc\x30\xfb\x81\x05\x85\x07\xf8\x30\xfb\x8c\x05\xe8\x07\xfb\xc6\xf7\x4c\xf7\xc6\xf7\x42\x05\x0e\x34\x0a" +"\xf7\x1e\x8f\x1d\x81\x44\x79\x43\x0a\x0e\xfb\x79\xf7\x90\x9a\x15\x39\x8f\x80\x95\xd6\x1a\xf8\x62\x07\xc5\x9e\xaa\xb0\xa1\x98\x81" +"\x6e\x9d\x1e\x71\x9b\x97\x81\x9d\x1b\xa2\x9d\x9d\xa2\xaf\x5f\xa5\x4f\x4d\x56\x70\x5e\x71\x1f\x71\x5e\x83\x67\x8a\x3b\x08\x5e\x6b" +"\xb8\x54\x0a\xf7\x98\x07\x0e\xf8\xc1\xf8\xe5\x15\x43\xbc\x9c\x79\x9c\x1b\x95\x93\x92\x95\x91\x8a\x8f\x84\x99\x1f\x74\xb6\x7a\xcb" +"\xb7\x1a\xa9\x89\x91\x7e\x86\x84\x88\x83\x7e\x1e\x78\x70\x3d\x75\x60\x1b\x71\x8a\x83\x86\x7e\x1a\x75\xad\x81\xe2\x85\x1e\x25\xfb" +"\x4d\x05\x97\x6c\x6e\x91\x6b\x1b\xfb\x1a\xfb\x00\xfb\x00\xfb\x1a\xfb\x19\xf7\x00\xfb\x00\xf7\x1a\xf7\x19\xf7\x00\xf7\x00\xf7\x1a" +"\xd8\x66\xd3\x4c\xb9\x1f\xfb\x22\x7b\x15\xee\xdc\x3b\x28\x28\x3b\x3a\x28\x27\x3b\xdb\xee\xee\xdb\xdc\xee\x1f\x0e\xfb\xb4\xea\x9d" +"\x0a\x0e\x84\xf7\x81\xf7\x43\x15\x92\x7c\x76\x8f\x7b\x1b\x4d\x54\x56\x50\x68\xa5\x75\xb4\xba\xb7\xa2\xb1\xa6\x1f\x9f\xa6\x91\xa1" +"\x8d\xbb\x08\xf7\xb9\x07\xc3\x83\xb9\x40\x37\x1a\x59\x83\x65\x73\x54\x1e\xa6\x06\xaf\xb6\x9e\xc2\xc5\x1a\xd7\x6e\xd1\x51\xd2\x1e" +"\x58\xc7\x8a\x8d\x86\x91\x83\x95\x19\xc5\x5f\x07\x0e\xf8\x13\xf8\x57\x15\x9e\x72\xa1\x78\xa0\x7f\xc3\x6b\x94\x85\x90\x82\x08\x91" +"\x80\x8f\x78\x76\x1a\xfb\x7c\x07\x92\x7a\x74\x8f\x78\x1b\x46\x4d\x56\x4f\x68\xa8\x75\xb8\xbe\xbb\xa2\xb1\xaa\x1f\xa0\xa6\x92\xa1" +"\x8d\xbc\x08\xf8\x00\x07\x8c\xd3\x6a\xd5\x5d\xa7\x54\xaf\x6d\x9f\x87\x8f\x08\x7e\x99\x85\x9d\xa2\x1a\x98\x5f\xfc\x80\x07\x92\x7b" +"\x74\x8f\x79\x1b\x46\x4f\x56\x4f\x68\xa7\x75\xb7\xbe\xbb\xa2\xb1\xa8\x1f\xa0\xa6\x92\xa1\x8d\xbc\x08\x8e\xf8\x0a\x15\xf7\x03\x4f" +"\xa3\x67\x8f\xfb\x08\xfb\x06\xc8\x74\xae\x87\xf7\x09\x08\x0e\x84\x32\x0a\xf7\x5b\xf8\x80\x2a\x0a\xec\x91\xf8\x59\x15\xd9\x97\xbc" +"\xbf\xd0\x1a\xbc\x6e\xb0\x63\x6c\x73\x74\x6d\x6e\xa3\x72\xa7\x93\x91\x8c\x8f\x9b\x1e\x89\x5b\x6d\x67\x56\x7a\x08\xf7\xa3\x8c\x15" +"\x47\x69\x80\xad\x0a\x91\x93\x8d\x91\x1b\xa8\x92\x7e\x52\x1f\xfb\x5e\x07\x32\x83\x7d\x5a\x89\x1e\x79\x7a\xf7\x74\x9d\x77\x06\x5d" +"\x8e\x88\x91\x8a\xee\x08\xf7\x6d\x07\xba\xc1\xa3\x97\xb0\x1b\xc2\x9a\x72\x30\x1f\xfb\x34\x07\x8a\x28\x88\x85\x5d\x88\x08\x78\x79" +"\xf7\x6a\x9d\x7c\x06\x5c\x8e\x88\x91\x8a\xee\x08\xf7\x31\x07\xcd\x87\xa6\x7e\xa9\x1e\xae\x7b\x67\xa1\x61\x1b\x5a\x5e\x72\x50\x50" +"\x1f\x0e\x84\x32\x0a\xf8\x18\xf9\x27\x20\x0a\x84\x32\x0a\xf7\x52\xfb\xbc\x25\x0a\xf8\x81\xf8\xa4\xf7\x6c\x15\xf7\x83\xc8\xfb\x60" +"\x06\xe3\xf7\x2f\x05\xf7\x08\xc9\x3a\x06\xac\xc6\x61\xa3\x5c\x38\x05\xfb\x23\x65\x1d\x42\x2c\x1a\xfb\x08\xb8\x37\xdc\x69\x1e\x6a" +"\x52\xb6\x74\xb1\xce\x05\x88\xa4\x99\x8a\xb4\x1b\xf7\xac\xc9\xfb\xb7\x06\x77\x85\x8b\x8c\x81\x1f\xab\xf7\x2d\x15\x3a\xfb\x21\x57" +"\x9d\x6c\xbe\x88\xd3\x19\xf7\xb6\xf7\x6c\x15\x33\xfb\x2f\x05\xfb\x5e\x06\x91\xf6\xc3\xbd\xf7\x01\x89\x08\x0e\xf8\x81\xf8\x14\xf7" +"\x04\x15\x4f\xfb\x0b\xd3\x67\xd9\xf7\x2f\x05\xf7\xaa\xdb\xfb\x82\x06\xc8\xf7\x0e\x05\xf7\x45\xdb\xfb\x1c\x06\xc7\xf7\x0b\x43\xaf" +"\x3d\xfb\x2f\x05\xfb\xaa\x3b\xf7\x82\x06\x4e\xfb\x0e\x05\xfb\x45\x3b\x06\x0e\x54\xf7\x90\xf7\x03\x15\x32\xf7\xae\x05\xb2\x7f\x71" +"\xae\x7b\x1b\x87\x87\x89\x88\x87\x1f\x3a\x4d\x92\x7d\x05\x91\x97\x91\x8d\x94\x1b\x98\x98\x83\x7f\x91\x1f\x92\x7e\x8b\x8b\x9d\x54" +"\xf0\xfb\xd0\x18\xa4\x06\xf7\x31\xf7\xca\x05\xa0\xb4\x96\xb0\xa6\x1a\xad\x77\xa3\x70\x70\x77\x75\x6c\x84\x8c\x81\x8d\x83\x1e\x94" +"\x68\x8c\x86\x7c\x1a\x74\x83\x70\x77\x62\x1e\x0e\x84\x24\x0a\xf7\x10\xf7\x7c\x15\x3f\x6f\x72\x39\x1d\x84\x24\x0a\xb3\xd6\x9a\x0a" +"\xfb\x08\x16\x30\x1d\xa0\x2a\x1d\x0e\x84\x24\x0a\xfb\x22\xf7\x3d\x23\x1d\xf7\x2b\xf7\x49\xf8\x62\x15\x39\x4f\x60\x33\x24\x1a\xfb" +"\x11\xc9\x2e\xdf\xc1\xb9\xaf\xd0\xab\x1e\x45\xab\xb2\x68\xbb\x1b\xdf\xcc\xf5\xf7\x1d\xf7\x1a\x5a\xe7\x44\x72\x79\x79\x72\x78\x97" +"\x79\x9b\x84\x1f\xbd\x78\x90\x88\x9a\x74\x08\x9d\x71\x95\x62\x60\x1a\x2f\x5a\x46\x48\x60\x6e\xa2\xc1\x72\x1e\x9d\xc0\x92\xad\xb5" +"\x1a\xbd\x7d\xa7\x73\x6f\x7b\x6c\x55\x5e\x92\x6a\x9d\x5d\x1e\x57\x71\x6d\x73\x68\x1b\x51\x69\xcc\xf7\x04\xdf\xa0\xd1\xb5\xc7\x1f" +"\x0e\xf7\x2b\xf7\x49\xf8\x63\x15\x3a\x4f\x5f\x33\x23\x1a\xfb\x11\xc9\x2e\xdf\xc1\xb9\xb0\xd0\xab\x1e\x44\xab\xb2\x68\xbb\x1b\xdf" +"\xcc\xf6\xf7\x1d\xf7\x1a\x5a\xe8\x44\x72\x79\x79\x72\x77\x97\x79\x9b\x85\x1f\xbd\x78\x90\x88\x9a\x74\x08\x9d\x70\x95\x62\x60\x1a" +"\x2e\x5a\x46\x48\x60\x6e\xa2\xc2\x72\x1e\x9d\xbf\x92\xae\xb6\x1a\xbd\x7d\xa7\x73\x6f\x7b\x6b\x55\x5e\x92\x6a\x9d\x5c\x1e\x57\x71" +"\x6d\x73\x67\x1b\x52\x69\xcc\xf7\x05\xdf\xa0\xd2\xb5\xc6\x1f\xf7\x0b\xc0\x15\xa6\x06\x94\xb3\x05\x98\xbd\x8c\x91\x9f\x1a\xac\x7e" +"\x9c\x74\x73\xe6\x1d\x84\x89\x1d\x0e\x84\x89\x1d\x85\xd8\x15\xa6\x06\x94\xb3\x05\x98\xbd\x8c\x91\x9f\x1a\xab\x7e\x9d\x73\x74\x7e" +"\x7a\x6a\x77\x8c\x88\x98\x56\x1e\x0e\xf8\x6c\x93\x16\xfa\x56\xd3\xfe\x0e\xfa\x03\x43\x06\x0e\x84\x68\x0a\xa0\x81\x71\xa7\x1e\xfb" +"\x0b\xf7\x03\x2a\x0a\x84\xf7\x03\xf9\x36\x15\xa2\xb8\xab\x94\xae\x1b\xf1\xc5\x2c\xfb\x38\x6e\x89\x73\x86\x5b\x1f\xbd\x4b\x67\x9b" +"\x58\x1b\x5a\x62\x79\x64\x67\x1f\x5f\x5d\x72\x4c\x4d\x1a\xfb\x00\xde\x35\xf3\xd1\xc5\xab\xc9\xb5\x1e\xb9\xcf\xac\xf7\x19\xf7\x0a" +"\x1a\xf7\x08\x6a\xe7\x46\xd1\x1e\xbc\x5b\x56\xa2\x4b\x1b\x64\x68\x83\x77\x54\x1f\xf7\xc0\xfc\x31\x15\x7b\xfb\x03\x81\x60\x71\x58" +"\x08\x56\x71\x60\x6a\x5f\x1b\x54\x6a\xbf\xe1\xf7\x06\xce\xe9\xdc\xb1\xa4\x7e\x61\xb5\x1f\x0e\xf7\xec\xd3\xf9\x17\x15\xd5\x83\x94" +"\x48\x1d\x84\x82\x3f\x84\x08\x78\xf7\xac\x9e\x07\x3c\x8d\x7d\x99\x8a\xd5\x08\xf7\x4a\xd9\x1d\xc7\xab\xaf\xc8\xcd\x1a\xb5\x7d\xb1" +"\x70\xa8\x1e\xb7\x63\x34\xa7\x2d\x1b\xfb\x9c\x06\xf7\x4e\x44\x15\xa6\x92\x92\xa6\xf7\x1b\xc9\x5c\x24\x2a\x50\x59\xfb\x07\x77\x7d" +"\x8c\x8d\x74\x1e\xf8\x5e\x73\x15\x48\xcf\x06\x97\x87\x8f\x7f\x1e\x6a\x5b\x71\x6c\x7a\x81\x08\x80\x84\x87\x86\x85\x1a\x86\x8d\x87" +"\x91\x88\x1e\xa8\xfb\x51\x06\x51\xa2\x6c\xb6\xa7\xa8\x99\xa2\x9d\x1e\x8e\x8f\x8b\x8b\x96\x9c\x78\x9b\x18\x76\x78\x86\x87\x7c\x1b" +"\x77\x84\x99\xaf\x1f\xf7\x47\xce\x07\x0e\xd1\xf7\x78\xf8\x61\x15\xfb\x11\x82\x3f\x37\xfb\x14\x1a\xfb\x1f\xdd\x31\xf7\x1f\x7c\x1e" +"\xfb\x59\xce\xf7\x59\x07\xce\x92\xaf\x98\xb1\xa7\x08\xc7\xb8\xae\xd4\xdc\x1a\xca\x77\xbf\x63\xb5\x1e\xb2\x66\x5d\xa1\x5c\x1b\x65" +"\x69\x7a\x6e\x77\x1f\x7b\x75\x86\x6e\x4c\x1a\xfb\xaa\x07\x6a\x95\x7d\x92\x7a\x9a\x08\x5f\xb1\x75\xca\xe4\x1a\xde\x9f\xc5\xb3\xad" +"\x1e\x98\x95\x97\x91\xa4\x92\x08\xe2\xfb\x1c\x15\xbb\x8c\x9a\x92\x97\x1e\x9a\x92\x98\x93\x9c\x1b\xc8\xbd\x37\x26\x3d\x74\x54\x5c" +"\x6a\x1f\x74\x7b\x78\x84\x5f\x83\x08\x0e\x89\xf8\xa4\xf8\x54\x15\xfc\x23\x06\x5d\x80\x87\x75\x71\x1f\x37\x41\x9c\x77\xc7\xba\xa9" +"\x96\xd2\x8a\x19\x79\xfb\x57\x80\x5b\x69\x6c\x08\x62\x65\x86\x83\x71\x1a\x6e\x9c\x7a\xa8\xc7\x9f\xc1\xf7\x4f\x93\x1e\x8d\xad\x8c" +"\xa2\x94\x1a\x91\xe0\x05\xf7\x62\x06\x5f\x61\x7c\x6b\x8a\x50\x08\xfb\x2b\x07\x61\x8c\x82\x92\x78\x1e\x78\x93\x9c\x78\x94\x1b\x8d" +"\x8d\x8c\x8f\x96\x1f\xf7\x00\xba\x87\xa0\x05\x82\x70\x7c\x86\x87\x1b\x7b\x79\x99\x9a\x87\x1f\x8a\x90\x8b\x8b\xb3\x1a\xf7\x13\x07" +"\x8a\xe6\x8c\x95\x96\xaa\x08\xf7\x0d\x06\x0e\xf8\x81\xf9\x45\xf9\x55\x15\xfd\x72\x07\x54\x8a\x78\x77\x54\xbd\x0a\xf9\x3b\x07\xc4" +"\xa0\xa2\xc0\x1e\x9c\x9d\xfd\x9f\x79\x9b\x06\xc1\x9f\x75\x51\x8c\x1f\xfd\x3b\x07\x54\x8a\x77\x77\x55\xbd\x0a\xf9\x72\x07\x0e\xf8" +"\x81\xf9\x93\xc9\x15\xfb\xb7\x06\xfb\x0d\x57\xc2\xf7\x16\xf7\x15\xbf\xc3\xf7\x0d\x1f\xf7\xb7\xc9\xfb\xac\x65\x1d\x43\x2b\x1a\xfb" +"\x07\xb8\x37\xc6\x0a\x06\x0e\xf8\x81\xf7\x7d\xc9\x15\x4d\xf7\xac\x07\xde\xae\x92\xa4\xb1\x1f\xcc\xb7\xac\xd3\xf2\x1a\xf6\x5c\xe0" +"\x3e\xac\x1e\x99\x69\x70\x8f\x46\x1b\xfb\xac\x4d\xf7\xb7\x06\xf7\x0d\xbf\x54\xfb\x16\xfb\x16\x57\x54\xfb\x0d\x1f\x0e\xf7\x0b\xf7" +"\xba\xf8\x56\x15\xfc\x14\x07\x31\x93\x68\xb3\x8f\xe4\x08\xf7\x46\x07\xa9\x89\x95\x82\x99\x1e\x99\x82\x81\x93\x85\x1b\x89\x86\x89" +"\x88\x85\x1f\x26\x58\x91\x7e\x05\x93\x98\x92\x8d\x96\x1b\xaa\x94\x7a\x4c\x1f\xfb\x1b\x07\x88\xfb\x06\xcf\x49\xf7\x15\x81\x08\xfb" +"\x40\xd6\xf7\x3e\x07\xf7\x13\xa8\xd5\xf0\xf7\x24\x1a\xf7\x00\x65\xdf\x59\x73\x76\x77\x74\x7b\x93\x7c\x9e\x79\x1e\xb0\x68\x8b\x8b" +"\x95\x7b\x08\x98\x76\x91\x71\x6c\x1a\x53\x76\x58\x68\x6e\x1e\x71\x75\x71\x82\x56\x84\x08\xf8\x18\x07\x0e\xfb\x42\xf7\x80\xf8\x58" +"\x15\x55\xb1\x6f\xae\xac\x1a\x93\x91\x91\x93\x8c\x8c\x8b\x8a\x8d\x1e\x89\x95\x8f\x8a\x94\x1b\xb0\xa1\x9e\xab\xad\x73\xa2\x68\x5e" +"\x68\x65\x58\x4f\xb8\x4e\xce\x6a\x1f\x0e\xfb\x42\x40\x1d\xf7\x14\xf8\x80\x3a\x1d\xf8\x5b\x4a\x15\xf7\x32\xfa\x68\x53\x94\xfb\x0f" +"\xfd\x95\xfb\x4e\xf8\x0d\xfb\x37\x3c\xa3\x58\xea\xba\x05\x0e\xfb\x42\x40\x1d\xf7\xd1\xf9\x27\x20\x0a\xfb\x42\x40\x1d\xda\xfb\xbc" +"\x25\x0a\xf8\x12\xf9\x4c\xf8\x22\x15\xfc\x8c\xfb\xb9\xdb\xf7\x69\xf8\x3c\x06\x0e\x83\xf7\x2c\xfb\x4a\x15\xf7\x6c\x07\x6b\xae\xa7" +"\x7f\xb5\x1b\xf7\x07\xe2\xf2\xf7\x1c\xf7\x20\x3c\xe7\xfb\x0b\x4d\x54\x72\x5f\x6a\x1f\x70\x66\x80\x59\x2e\x1a\xfc\x1e\x07\xda\xf8" +"\x66\x15\xb8\x90\xa6\x99\xa2\x1e\xa9\x9b\xa8\x9c\xac\x1b\xd6\xba\x3c\xfb\x15\xfb\x09\x5d\x41\x43\x67\x70\x99\xb0\x65\x1f\x0e\xfb" +"\x0a\x4a\x0a\xfb\x0b\xf7\x55\x15\x5f\x1d\xfb\x0a\xf7\x5a\x81\x15\x96\x06\xd7\xca\xc5\xd1\xbd\x73\xac\x4f\x56\x1d\x9a\x06\x87\xf7" +"\x1d\x05\x80\x06\x83\x86\x86\x88\x85\x1b\x85\x81\x8d\x90\x80\x1f\x93\x74\x74\x90\x73\x1b\x3c\x52\x57\x43\x53\xab\x63\xe0\x5b\x1f" +"\xc5\x6a\x05\xae\x77\x9c\x73\x6c\x1a\x5f\x6b\x6f\x58\x46\x68\xb1\xf1\x74\x1e\x7b\xfb\x30\x98\x06\x95\x92\x8f\x8d\x97\x1b\x96\x96" +"\x89\x85\xa3\x1f\x97\x89\x91\x89\x98\x89\x64\x2e\x18\x98\x1d\x55\x81\x5c\x0a\x0e\xfb\x0a\x65\x0a\xf7\x55\x20\x1d\xfb\x0a\x4a\x0a" +"\xfb\x28\xfc\xe7\x25\x0a\x31\xf7\x17\x9d\x0a\xf7\x32\x16\xab\xcb\x05\xa7\xc4\x98\xb0\xa5\x1a\xa3\x7a\x9c\x73\x68\x7b\x62\x23\x84" +"\x1e\x86\x3b\x05\x0e\xab\xf8\xac\xf8\x5f\x15\xfb\x89\x06\x46\x7c\x89\x7c\x69\x1f\x37\x67\x53\x31\x28\x1a\xfb\x18\xe6\x2b\xf7\x10" +"\xf7\x12\xee\xf7\x00\xf7\x1f\xbd\x7c\xbc\x72\xad\x1e\x7c\x9f\x7d\x97\x6b\x9f\xf7\x38\x76\x18\xfb\xbf\xa5\x15\xe1\xc4\x2e\xfb\x22" +"\x21\x61\x4c\x45\x66\x67\x9e\xaa\x76\x1f\x6d\xb8\x79\xd0\xd2\x1a\xf4\xb5\xcb\xd0\x1e\x0e\xf8\x81\xf8\x1b\xf8\x9a\xaa\x0a\xfb\x14" +"\xfb\x00\x15\x92\x36\x96\x62\xa9\x5e\x08\x4c\xb5\xcb\x6b\xde\x1b\xd8\xc7\xa6\xc1\xb5\x1f\xaf\xba\x9a\xb8\x92\xe8\x80\x59\x80\x75" +"\x71\x6d\x08\x54\x5b\x4f\x71\x3a\x1b\x3a\x4f\xa5\xc2\x5b\x1f\x71\xa9\x80\xa1\x80\xbd\x08\xf7\xee\xf7\x00\xaa\x0a\xfb\x01\xf7\x68" +"\x15\xfb\x5b\xfb\x3a\xfb\x38\xfb\x57\xfb\x63\xf7\x35\xfb\x38\xf7\x5d\xf7\x61\xf7\x37\xf7\x36\xf7\x5f\xf7\x5e\xfb\x37\xf7\x37\xfb" +"\x5e\x1f\x89\x5a\x15\xf7\x45\xf7\x21\xfb\x20\xfb\x44\xfb\x43\xfb\x21\xfb\x21\xfb\x43\xfb\x41\xfb\x23\xf7\x21\xf7\x3e\xf7\x47\xf7" +"\x1e\xf7\x22\xf7\x44\x1f\x0e\xf8\x81\xf7\xbb\x16\xf8\x77\xa2\x06\xfb\x35\x93\x3f\xe0\x8e\xf7\x3e\x08\x38\xb7\xb9\x6a\xd4\x1b\xd1" +"\xc5\xc9\xd5\xcf\x71\xb4\x20\xec\x1f\xfb\x01\xf0\x78\xa6\x64\xf7\x09\x7b\x2e\x51\x37\x20\x34\x08\x3a\x48\x69\x53\x4b\x1a\x40\xc8" +"\x4d\xd4\xb5\xb4\x9c\xa9\xab\x1e\x9e\x9d\x96\x9a\x9c\xb0\x91\xfb\x3b\x34\x2c\xfb\x33\x8a\x08\x0e\xf8\x81\xf7\xee\xf9\x5b\x15\xf7" +"\x85\x06\xf4\x8a\xa5\x75\x9a\x26\x08\xa2\x06\x82\xf7\x39\x05\xfc\xaf\x06\xf7\x66\xfc\x67\xfb\x6e\xfc\x2c\x05\xf8\xc8\x06\xbc\xf7" +"\x66\x05\x74\x06\x6f\x3b\x6c\x78\x26\x8c\x08\xfb\xbc\x06\xf7\x49\xf7\xf4\x05\x0e\xf8\x81\xf7\xcd\xf8\x77\x15\x6e\x66\x7c\x67\x85" +"\x5b\x08\xfb\x05\x54\xf7\x05\x06\x8f\x61\x9e\x5b\xa6\x6a\x3b\x3c\x18\xb1\x65\xdb\xdb\xb1\x6e\xb2\x7b\xb8\x86\x19\xfb\x05\xc1\xf7" +"\x05\x07\xb7\x90\xb9\x9e\xab\xa5\xdb\x3b\x18\xb0\xb1\x3b\xdb\xa8\xae\x9c\xb5\x90\xb8\x19\xf7\x05\xc2\xfb\x05\x06\x86\xb6\x79\xb7" +"\x70\xad\xda\xda\x18\x66\xb1\x3b\x3b\x69\xa6\x62\x9c\x5c\x92\x19\xf7\x04\x55\xfb\x04\x07\x60\x86\x5f\x79\x68\x6f\x3b\xdb\x18\x65" +"\x65\x05\xf7\x9c\x55\x15\xec\xd8\x40\x2d\x2b\x3f\x3e\x2c\x2d\x3e\xd8\xea\xe7\xd8\xd9\xe6\x1f\x0e\x22\xf8\x3c\x26\x0a\xfb\xae\x06" +"\x4c\x8a\x79\x85\x74\x6b\x54\x3e\x18\xb4\x74\xb6\xc8\xae\x9b\xe2\x8a\x19\x9a\x06\x6a\x4d\x83\x6b\x89\x49\x08\xfb\x24\x07\x56\x9b" +"\x5f\x9e\x8e\x8b\x8b\x95\x9e\x1e\xf7\x0e\xb6\x05\xb2\x07\x7f\x70\x80\x88\x7f\x1b\x70\x7e\xa7\xc5\x1f\xf7\x1a\x07\x8d\xc7\x90\xa1" +"\x9c\xa1\x08\xf7\x2a\x06\x0e\xfb\x79\xf7\x2e\xf7\xd1\x15\xf0\x92\x0a\x26\x45\x69\xd1\xfb\x3a\x06\x37\xa9\x60\xc6\xbc\xb1\xa3\xbf" +"\xac\x1e\x7e\x96\x05\x63\x1d\xf7\x2b\xf7\x10\xad\x07\x0e\xfb\x0a\xf7\x32\x47\x0a\x8c\x1d\xab\x07\x6b\x76\x15\xa8\xa0\x05\xbf\xb2" +"\xa9\xbc\xbc\x8c\x0a\x0e\xfb\x79\xf7\x42\x82\x15\xb8\x92\xad\xa3\xa5\xb7\x7e\x96\x18\x63\x1d\xf7\xb2\x92\x0a\xfb\xc1\x06\x8d\x3c" +"\x9f\x67\xbb\x81\x65\x30\x18\x2d\x0a\x97\x5a\x0a\x6a\x75\x7a\x8e\x94\x70\xa1\x0a\xc0\xb6\xc6\x1d\x6f\xf7\x88\xf9\x31\x15\x51\x5c" +"\x6d\x4d\x64\x1f\x60\x48\x73\x31\x2b\x1a\x36\x9e\x3b\xae\x4b\x1e\x49\xae\xc0\x67\xc8\x1b\xf7\x0a\xe7\xf7\x2c\xf7\x56\xf7\x51\x35" +"\xf7\x21\xfb\x08\x1f\xfb\x0d\xfb\xb2\x15\xf7\x36\x93\xb1\xe4\xc9\x1b\xcd\xb7\x30\xfb\x34\x98\x1f\x8d\x66\x15\x8c\x79\x8b\x7f\x7e" +"\x1a\xfb\x3a\x60\xfb\x01\x48\x3e\x5b\xf7\x0e\xf7\x58\x1e\x0e\xfb\x42\xf7\x2e\xf8\x8b\x15\xa5\x06\x95\xb3\x05\x98\xc0\x8c\x8e\x9f" +"\x1a\xac\x7e\x9c\x73\x73\x7e\x7a\x6a\x78\x8c\x85\x98\x58\x1e\x0e\x84\x25\x1d\xfb\x0f\xf9\x08\x37\x1d\x84\x25\x1d\xfb\x5e\xf8\x6b" +"\x50\x1d\x2a\x1d\xfb\x08\x16\x30\x1d\xa0\x2a\x1d\x0e\x84\x25\x1d\xfc\x14\xf8\xc9\x23\x1d\x84\xfb\x44\x04\x5a\xf8\x88\xbc\x07\xfc" +"\x88\xe8\x15\x5a\xf8\x88\xbc\x07\x0e\xfb\x95\x0e\xfb\x42\xc9\x0a\xf3\x53\x1d\xfb\x51\xfb\xad\x15\xce\xac\xb8\x99\x1d\xfb\x79\x74" +"\x0a\xfb\x32\xfd\x4f\x25\x0a\xfb\x42\x96\xf8\xed\x23\x1d\xfb\x95\xf7\x11\xf7\xca\x2b\x0a\xf7\x1c\xf7\xd9\xf9\x31\x15\x82\x06\xfb" +"\xb8\xfd\x31\x05\xf8\xe8\x06\xfb\x22\xd7\x15\xfb\xd7\x06\x73\x82\x8f\x96\x92\x8f\x9a\x92\x9a\x1f\xf7\x36\xf8\x0a\x05\x0e\xf7\x80" +"\xf7\xc2\xf7\x22\x15\x60\x9b\x75\x9a\x75\xa7\x08\x68\xba\x78\xcc\xd8\x1a\xdd\xa1\xcf\xb5\xb9\x1e\xaf\xac\xbd\x9e\xcb\x1b\xca\xbd" +"\x78\x67\xac\x1f\xb5\x5d\xa1\x48\x37\x1a\x3e\x78\x4b\x68\x5c\x1e\x75\x6f\x75\x7c\x60\x7b\x7c\xfb\x22\x18\xf7\xbb\xf7\x37\x7b\x06" +"\x59\x7f\x7f\x81\x5b\x1b\xfb\x28\x99\x06\xc1\x9b\xb0\x9c\xaa\xa4\x08\xc5\xbb\xb0\xdd\xde\x1a\xdb\x67\xdb\x4e\xbf\x1e\xbc\x52\x39" +"\xa5\x2c\x1b\x2d\x39\x71\x5a\x52\x1f\x4e\x57\x67\x3b\x3b\x1a\x3f\xaa\x3e\xbe\x5b\x1e\xac\x6c\xb2\x76\xca\x79\x08\x7d\xfb\x28\x07" +"\x5b\x80\x95\xbd\x7f\x1f\x7a\xfb\x37\xf7\xbb\x06\x0e\xa8\xf8\x43\xf8\x56\x15\x3c\xfb\xe1\x06\x5b\x53\x78\x81\x69\x1b\x59\x77\xaa" +"\xd9\x1f\xf7\xae\x3c\xfb\x23\x07\x89\xfb\x37\x88\x69\x79\xfb\x16\x08\x7c\x2b\x8b\x8b\x7c\x1a\x6b\x9d\x75\xa5\xa3\x9b\x9f\xa9\x96" +"\x89\x9c\x87\x9b\x1e\x78\xdc\x89\x9c\x89\xcc\x08\x55\x9e\xa9\x72\xba\x1b\xac\xae\x99\xa4\xa6\x1f\x9a\x98\x90\x90\xa9\xad\x08\x7a" +"\x07\x69\x8e\x80\x9b\x7a\x1e\x81\x93\x92\x86\x8f\x1b\x8d\x90\x8d\x8e\x91\x1f\xf2\xbf\x85\x99\x05\x83\x7f\x84\x88\x80\x1b\x6c\x83" +"\x9c\xcc\x1f\x0e\xfb\x03\xf7\xcc\xd9\x15\x81\x82\x8a\x88\x6f\x1f\x89\x79\x78\x8a\x81\x1b\x3e\x60\xbe\xe7\xc5\x9a\xb9\xa9\xab\x1f" +"\xa9\xa6\xb4\xa0\xac\x1b\x99\x99\x87\x80\xa0\x1f\x7d\xa6\x94\x88\x9b\x1b\xa5\x9d\x9d\xa3\xab\x6b\x9f\x58\xfb\x29\xfb\x0d\xfb\x12" +"\xfb\x2e\x4f\x9d\x5a\xad\x69\x1f\x6d\xa9\xb3\x7e\xc6\x1b\x99\x98\x8c\x8c\x98\x1f\x8e\xa5\xa1\x8d\x90\x1b\xa2\x98\x7f\x78\x69\x70" +"\x6e\x6d\x82\x85\x8c\x90\x7d\x1f\x8f\x7f\x83\x8d\x84\x1b\x73\x7b\x7d\x75\x72\xa2\x7a\xaf\xcf\xcc\xd5\xda\xbf\x71\xa8\x5c\x1f\x0e" +"\xf3\x21\x0a\xfb\x3f\xf9\x63\x15\xfb\x26\x61\x1d\x6d\x0a\x36\xf7\x33\x15\xfb\x27\xf7\x28\x05\x9d\x79\x82\x90\x7b\x1b\x77\x7e\x7f" +"\x78\x7b\x95\x7c\x9e\x7f\x1f\xf7\x2e\x2a\x05\x0e\x4c\xf8\x33\x7f\x1d\xb0\xf7\x5a\x29\x0a\xa7\x76\x1d\xfb\x3c\xc4\x38\x1d\xbc\xf7" +"\x5d\xf7\xdb\x15\xf7\x25\x06\xdd\x8a\x9b\x7d\x97\x3a\x08\xa2\xf7\x7c\x74\x06\x80\x3c\x7a\x7d\x39\x89\x08\xfb\x25\xf7\x72\x06\x8c" +"\xa9\x8e\x8e\xa7\x8c\x08\xf7\x1c\x54\x1d\xfb\x4d\x3c\x62\xda\xfb\x63\xa5\x0a\x0e\x2a\xf7\x49\xf7\x81\x15\xf7\x42\xdd\x07\xcf\xac" +"\x6e\x44\x95\x1f\x9d\x06\x7a\xf7\x1f\x05\xfb\xef\x7a\x9c\x06\xbe\x88\x90\x83\x8c\x2e\x08\x2f\x3d\x6a\xd9\x37\x07\x8a\x2f\x86\x83" +"\x58\x88\x08\x7a\x7a\xf7\x75\x9c\x7c\x06\x5a\x8c\x83\x9a\xe2\x1a\xdf\xf4\xac\x07\x0e\xf8\x19\x7a\x0a\xc9\x07\xf7\x0e\xb3\x67\xfb" +"\x12\xa2\x1f\x9d\x06\x84\xf7\x54\x05\x45\x82\x90\xea\x3c\x1f\xfb\x48\xf7\x82\xbd\xcd\xb7\xc6\xb1\xbe\x19\xc4\xdb\x9d\x9a\xc1\x8f" +"\x08\x9e\xfb\x56\x78\x07\xae\x8a\x96\x85\x7b\x1a\x66\x41\xfb\x02\x24\xfb\x08\x1e\x76\xf7\x5e\x06\xd1\x98\x9a\xc6\x1e\x9d\xfb\x78" +"\x79\x07\xc6\x98\x7c\x45\x1f\xfb\x5e\x76\x07\x24\xf7\x08\x41\xf7\x02\xb0\x1a\x9c\x96\x90\xae\x8c\x1e\x9e\xfb\x56\x78\x07\xc1\x87" +"\x9e\x7c\xc3\x3b\x9c\x73\xbe\x47\x97\x7c\x97\x7b\x97\x7b\x97\x7c\x9b\x75\x18\xfb\x4a\xfb\x80\x46\x34\x69\x71\x5b\x8a\x19\x79\xf7" +"\x91\x9d\x07\x69\x8d\x80\x91\x9d\x1a\x9a\x92\x97\xba\xca\x1e\xf7\x16\xf7\x4f\x05\x0e\xf7\x4c\x7d\x0a\xb0\x06\xee\xa6\x76\x29\xa5" +"\x1f\x9e\xf7\x28\x06\x4c\x8c\x7e\x91\x61\xbc\xfb\x19\xf7\x3a\x18\xf7\x01\xf7\x0f\xb1\xb6\xad\x9c\xb8\x8a\x19\x9c\xfb\x4b\x7a\x94" +"\x07\x9d\x98\x82\x7e\x82\x87\x82\x81\x80\x1f\xfb\x11\xfb\x21\x05\x71\xe4\x06\x8c\xe6\x90\x94\xbd\x8e\x08\x9d\x9c\xfb\x77\x7a\x9d" +"\x06\xbd\x88\x90\x82\x8d\x30\x08\x32\x70\x07\xfb\x11\xf7\x21\x05\x82\x96\x87\x93\x95\x1a\x99\x96\x93\x9e\x1e\x94\x9c\xfb\x4b\x7a" +"\x06\xb8\x8c\xad\x7a\xb1\x60\xf7\x02\xfb\x0f\x18\xfb\x19\xfb\x3a\x05\x5a\x64\x6e\x78\x69\x1b\x83\x7a\xf7\x5b\x9c\x79\x06\x80\x84" +"\x90\x93\x92\x8e\x92\x92\x94\x1f\xf7\x10\xf7\x31\x05\x0e\x85\xf7\x8c\x82\x15\xf7\x15\x93\xe1\xd7\xf5\x1a\xc2\x75\xbc\x63\xaa\x1e" +"\x81\x0a\x86\xfb\x47\x05\x9e\x06\xe6\x96\xbc\xba\xde\x1b\xd6\xb9\x5f\x42\x34\x56\x5e\x25\x87\x7f\x8b\x8c\x7f\x1f\x5e\x9a\x07\xc5" +"\xb2\x84\x7c\xa3\x1f\xb4\x72\xa2\x5e\x54\x1a\x32\x51\x4f\x34\x42\x53\xb0\xd9\x5f\x1e\x75\x7e\xb5\x31\xd4\x58\xe8\x86\x19\x65\x30" +"\x92\x86\x05\x8e\x94\x93\x8c\x97\x1b\xb0\x9a\x81\x71\x70\x77\x7a\x69\x75\x7b\x8e\x94\x6f\x44\x1d\x56\x80\x85\x8a\x89\x81\x1f\x0e" +"\xfb\x04\xf7\x59\x85\x15\xea\x90\xcf\xc2\xd4\x1a\xad\x7d\xab\x73\xa1\x1e\x92\x1d\x9c\x06\xd7\x97\xb2\xb3\xcb\x1b\xc3\xae\x6a\x58" +"\x5b\x67\x6a\x58\x1f\x6b\x65\x06\x8d\x92\x8e\x8b\x92\x1b\xb5\xa3\x84\x7a\x9d\x1f\x9e\x79\x96\x72\x6f\x1a\x52\x5f\x64\x4b\x54\x62" +"\xa1\xc2\x5d\x1e\x79\x7f\xb2\x49\xbf\x68\xcf\x85\x19\x64\x2d\x2d\x0a\x97\x5a\x0a\x69\x76\x7a\x8e\x94\x70\xa1\x0a\xc0\xb6\xc6\x1d" +"\xf7\x60\xf7\x6a\xf7\xd5\x15\xf7\x49\xfb\x4f\x05\xbe\x57\x9d\x73\x7b\x1a\x7b\x7c\x85\x60\x89\x1e\x79\xee\x07\xf7\x09\xb8\x64\xfb" +"\x0f\xa2\x1f\x9d\x06\x84\xf7\x54\x4b\x8a\x7c\x94\x31\xe9\x19\xfb\x75\xf7\x80\x91\x92\x91\x92\x93\x93\x19\x7e\x1d\x0e\xa5\xb9\x1d" +"\xbd\x06\xee\xa6\x75\x2a\xa5\x1f\x9d\x06\x8c\xf7\x28\x05\x58\x76\x91\x9f\x77\x1f\xfb\x5e\xf7\x57\xf7\x39\xf7\x22\xaa\xa6\xa6\x97" +"\xb4\x8d\x19\x9c\xfb\x53\x7a\x97\x07\xa0\x95\x84\x7a\x84\x87\x84\x7f\x81\x1f\xfb\x3f\xfb\x2d\x05\xec\x07\xe3\x93\x9a\xd2\x1d\x2e" +"\x08\xfb\x64\x07\x89\x2e\x87\x83\xab\x0a\xf7\x3d\xf7\x95\xf8\x16\x15\x86\x86\x89\x89\x81\x82\x82\x83\x82\x83\x83\x83\x08\xf7\x69" +"\x07\xcc\x9a\x9d\xc4\x8c\x1e\x8e\x93\x8b\x8c\x94\x1f\x9d\xfb\xb4\x79\x07\xd6\x9a\x7d\x44\x8c\x1f\xfc\x5b\x07\x44\x8a\x7b\x7c\x41" +"\x1b\x79\xf7\xb4\x60\x0a\xf7\x6e\x07\xb6\x5e\x05\xfb\x44\xc9\xf7\x04\x07\xd7\x3d\x05\xbd\x58\x9d\x72\x7b\x1a\x7b\x7c\x85\x61\x89" +"\x1e\x79\xf7\xd1\x9d\x07\x4f\x8c\x5f\xa5\x36\xe2\xfb\x6b\xf7\x73\x18\xa6\x07\x8f\x8f\x8e\x8f\xcb\xcd\x91\x92\xd6\xdd\x19\xd1\xda" +"\xa4\x9a\xcd\x90\x08\x9d\xfb\x86\x79\x07\xb9\x89\x97\x86\x78\x1a\x72\x5b\x4b\x3a\x38\x1e\xf7\x15\x4d\x07\x0e\x76\xf7\x66\xf7\xaa" +"\x15\x58\x5d\x05\xed\x07\xe3\x93\x99\x97\x1d\xeb\x8f\x07\xba\x5c\x05\xfb\x01\xae\xd4\x07\xdb\x3b\xde\x1d\x81\x7a\xf7\x62\x9c\x84" +"\x06\x77\x73\x98\xa4\x72\x1f\xfb\x4f\xf7\x48\x05\xa7\x07\xf7\x29\xf7\x15\xce\x1d\x7b\x83\x88\x86\x7e\x7f\x1f\x36\x40\x05\xe3\x68" +"\x07\x0e\xf7\xaf\xf7\x72\xf8\xfd\x15\xfc\x96\x67\x1d\xf7\xb5\x9d\x07\x3e\x7b\x9a\xd1\x1f\xf7\x6d\x07\xf7\x4a\xfb\x4e\x05\xbd\x57" +"\x9d\x73\x7b\x1a\x7b\x7c\x85\x61\x89\x1e\x79\xf7\xd1\x9d\x07\x4f\x8c\x5f\xbb\x0a\x92\x92\x92\x93\x91\x92\x9a\x9a\x9a\x9b\x9a\x9b" +"\x8e\x8c\xd4\xdb\xa3\xa5\xd1\xdb\xa4\x9a\xcd\x8f\x08\x9e\xfb\x86\x78\x07\xb9\x8a\x96\x86\x77\x1a\x67\x2a\xfb\x05\xfb\x1d\xfb\x0e" +"\x1e\xf7\x69\xa2\x0a\x0e\xc6\xf7\x35\xf8\x2f\x15\xfb\xb6\x07\x88\x4b\x8b\x8a\x89\x83\x08\x74\x83\x7d\x83\x6d\x1b\x79\x7a\xf7\x77" +"\x9c\x7b\x06\x59\x8d\x84\x99\xe3\x1a\xea\x8f\x07\xf7\x36\xfb\x36\x05\x97\x7e\x8f\x86\x84\x1a\x81\x86\x89\x73\x1e\x81\x7a\xf7\x63" +"\x9c\x84\x06\x76\x74\x98\xa4\x71\x1f\xfb\x5e\xf7\x57\xf7\x38\xf7\x22\xce\x1d\x7a\x83\x87\x86\x7f\x80\x1f\xfb\x3f\xfb\x2d\x05\xed" +"\x07\xe3\x92\x98\xbd\x8d\x1e\x9b\x9c\xfb\xba\x58\x0a\x9d\xd7\xa6\xa4\xce\x8a\x08\x0e\xf7\x79\xca\x1d\xf4\x07\xf7\x0a\x8a\xb8\x64" +"\xa1\xfb\x0f\x08\x9e\x06\x83\xf7\x55\x32\x8c\x7a\x9b\x8c\xe0\x19\xf8\x3f\x76\x0a\xa7\xf7\x35\x88\x1d\xd5\x06\xee\xa6\x76\x29\xa5" +"\x1f\x9d\x06\x8c\xf7\x28\x3b\x8e\x7c\x94\x8e\xb6\x19\xf7\x8a\x9e\x0a\xf7\x34\xf7\xeb\x7d\x15\x9c\x06\xf7\x05\xef\xb9\xdc\xc7\x1f" +"\x82\x0a\xa2\x06\x9c\x0a\x38\x6c\x54\x4d\x1f\x45\x4d\x65\x2f\xfb\x02\x1a\xfb\x4d\xf5\xfb\x13\xf7\x43\x72\x1e\x66\x33\x92\x86\x05" +"\x8e\x93\x94\x8c\x96\x1b\xb1\x9a\x81\x72\x6f\x77\x7a\x68\x76\x7a\x8e\x94\x70\x44\x1d\x55\x81\x5c\x0a\x0e\x4c\xf7\x7d\x82\x15\xd8" +"\x94\xbf\xb7\xbd\xf2\x8e\x1d\xfb\x0e\xcf\x34\xf3\x7f\x1e\x66\x31\x2d\x0a\x97\x1b\xb1\x9a\x81\x72\x6f\x77\x7a\x69\x75\x7b\x8e\x94" +"\x6f\x44\x1d\x55\x81\x5c\x0a\x0e\xf9\x53\x21\x1d\xfb\x6f\x78\x06\xbf\x8a\x9c\x83\x73\x1a\x81\x87\x7f\x81\x7c\x1e\xfb\x23\xfb\x76" +"\xfb\x28\xf7\x72\x05\x80\x9b\x85\x9b\x97\x88\x0a\x99\x7d\xef\xfb\x21\xf7\x17\xfb\x54\x18\xfb\x42\x62\x1d\xf7\x56\x07\xf7\x28\xf7" +"\x76\xc8\xe3\xa5\xa1\xbe\x8f\x19\x0e\x68\xf7\x61\xbb\x15\xfb\x31\xe2\x1d\x9a\x07\x52\x90\x82\x95\x89\xd1\x08\xf7\x3e\x07\xf7\x01" +"\xf7\xae\xa6\xd3\x92\x95\xaa\x92\x19\x95\x8c\x05\x9c\xfb\x23\x7a\x90\x07\xa4\x8c\x98\x81\x78\x1a\x7e\x86\x78\x7d\x66\x1e\x3b\xfb" +"\x6c\x37\xf7\x70\x05\x7b\xb4\x88\x95\x96\x1a\xa0\x97\x96\xa5\x8a\x1e\x93\x9c\xfb\x57\x7a\x06\x99\x8a\xad\x87\x8c\x88\xc0\xfb\x1b" +"\x19\x0e\xf8\x35\xf7\x81\x15\xcd\x07\xf7\x28\xf7\x76\xc8\xe3\xa5\xa1\xbe\x8f\x19\x9e\xfb\x6f\x78\x07\xbf\x8a\x9c\x83\x73\x1a\x81" +"\x87\x80\x81\x7b\x1e\xfb\x23\xfb\x76\xfb\x28\xf7\x72\x05\x80\x9b\x85\x9b\x97\x88\x0a\x9a\x7d\xee\xfb\x21\xf7\x17\xfb\x54\x18\x52" +"\xfb\x08\x63\xf7\x08\x3e\x62\x1d\xe3\xf7\x04\xb3\x07\x0e\x68\xf7\xa9\x86\x15\xb9\x07\xf7\x02\xf7\xc2\xa3\xd0\x96\x9a\xa8\x90\x19" +"\x95\x8c\x05\x9c\xfb\x23\x7a\x90\x07\xa4\x8c\x98\x81\x78\x1a\x7d\x89\x84\x7a\x5b\x1e\x3a\xfb\x80\x37\xf7\x84\x05\x7a\xb9\x8a\x90" +"\x96\x1a\xa0\x97\x96\xa5\x8a\x1e\x93\x9c\xfb\x57\x7a\x06\x9a\x8a\xab\x88\x92\x81\xbc\xfb\x15\x19\xe7\xfb\x9a\x05\x6a\x2a\x64\xec" +"\x4a\xe2\x1d\x99\x07\x51\x91\x82\x95\x8a\xd1\x08\xcc\xf2\xb2\x07\x0e\xf7\x85\x8b\x1d\xef\x07\xf7\x0a\x8c\xb8\x63\xa1\xfb\x0f\x08" +"\x9d\x06\x84\xf7\x58\x47\x89\x78\x99\x4a\xe5\x19\xfb\x33\xf7\x7d\xf7\x16\xf7\x3f\xd7\xec\x90\x8f\xcb\x8e\x19\x9d\xfb\x73\x79\x07" +"\xa6\x8f\x8b\x89\x92\x1f\x9a\x87\x96\x7e\x7d\x1a\x81\x86\x81\x7a\x75\x1e\x90\x0a\xcb\x86\x9e\x7d\xcb\x2e\x08\x0e\x67\xf7\x99\xf7" +"\x9b\x15\xb2\xc5\xcf\xef\x94\x93\xbb\x90\x19\x90\x9b\xfb\x35\x7b\x93\x06\xa0\x9a\x83\x7f\x8a\x1f\x83\x86\x7f\x83\x7f\x1e\x52\x39" +"\x63\xcb\x05\x7e\x9e\x81\xa3\x95\x1a\x95\x98\x92\x9c\x1e\x92\x9b\xfb\x5c\x7b\x93\x06\xb8\x87\x8c\x8a\xdb\xfb\x15\xb8\x42\x18\x47" +"\x21\x54\x34\x7f\x7f\x65\x86\x19\x78\x8a\x05\x7b\xf7\x3a\x9c\x80\x07\x77\x80\x91\x97\x93\x8d\x90\x9f\xab\x1f\xce\xf7\x01\xcf\xfb" +"\x02\x05\x97\x79\x91\x7c\x82\x1a\x7e\x80\x84\x75\x1e\x83\x7a\xc5\x06\xee\xa6\x75\x2a\xa5\x1f\x9d\xf7\x28\x06\x4b\x79\x93\xb5\x6f" +"\x1f\x0e\xf7\x23\xf9\x1f\x21\x1d\xfb\xb2\x79\x06\xd6\x9a\x2e\x0a\xfb\x7b\x07\x7a\x40\x6d\x87\x68\x1b\x2e\x68\xb0\xee\x1f\xf7\x08" +"\x4c\x1d\xfb\x08\x07\xfb\x0e\xc7\x51\xf7\x15\xb8\x9a\x8d\xa3\xf7\x10\x1e\xfb\x4e\x67\x1d\xeb\x07\xf7\x06\x86\xb4\x66\xa2\xfb\x0d" +"\x08\x9d\x06\x84\xf7\x58\x3d\x8c\x7e\x95\x8d\xc6\x19\xf8\x5c\x39\x0a\x0e\x77\xf8\x78\xf8\x45\x15\x9c\xfb\x70\x7a\x96\x07\x85\x1d" +"\x51\x1d\x6c\x7a\xf4\x06\xd4\x85\xa4\x73\xa2\x33\x08\x9d\x06\x8c\xf7\x28\x05\x62\x74\x8f\x93\x85\x1f\x86\x8f\x88\xa5\xbc\x1a\xf7" +"\x64\x07\xe3\x93\x9a\xbc\x8c\x1e\x0e\xf7\x37\xf7\xf3\xf7\xa2\x15\x90\x8c\x9b\x8d\x9b\x8e\x9b\x8e\x19\x94\x8d\x9c\x8e\xa5\x90\x08" +"\xfb\x4d\x5c\x1d\xf8\x5a\x07\xd2\x3d\x1d\xd6\x9a\x7c\x44\x8c\x1f\xfb\x7b\x07\x57\x80\x73\x87\x6e\x88\x08\xf7\x8d\x49\xfb\x8d\x07" +"\x43\x95\x70\xb1\x8d\xe0\x08\xf7\x08\x07\xd2\x3d\x1d\xd5\x9b\x7c\x44\x8c\x1f\xfb\x08\x07\xfb\x0d\xc7\x51\xf7\x13\x1e\x9a\xfb\x18" +"\xcd\x06\x0e\x87\xf7\xa1\xf7\x4b\x15\xa3\x8f\x94\x8d\xa9\x92\x08\x40\x07\x89\x2f\x87\x82\x59\x88\x08\x6c\x7a\xf7\x83\x45\x0a\xf7" +"\x65\x07\xe2\x38\x0a\xfb\x6f\x7a\x96\x06\xbd\x88\x8f\x83\x8d\x2f\x08\xfb\x01\x07\x74\x85\x82\x89\x6c\x87\x08\xf7\x2b\x5a\xfb\x2b" +"\x07\x5f\x93\x77\xa8\xc4\x1a\xa6\x07\xe2\x93\x9a\xbc\x8c\x1e\x94\x9c\xfb\x6f\x7a\x9d\x06\xbd\x88\x90\x83\x8c\x2f\x08\x70\x07\x31" +"\x87\xb2\x69\xf4\x1b\x8e\x28\xbc\x06\x0e\xf7\x37\xf7\x6a\xf7\xe2\x15\x9c\xd6\xa8\x8f\xae\x1b\xe8\xaf\x66\x28\x1f\xfb\x08\xae\x0a" +"\xf7\x08\x07\xf7\x0f\x4e\xc4\xfb\x15\x5f\x7d\x89\x73\xfb\x11\x1e\xf7\x4e\x9e\x1d\x0e\x84\xf8\x7b\x9a\x15\x55\x94\x87\x91\x89\xd1" +"\x08\xf7\x59\x07\xf2\x62\xc0\x39\x50\x61\x73\x50\x5d\x1e\xf7\xc0\x07\x86\x8e\x67\x7f\x71\x82\x56\x7c\x19\x70\x83\x05\x7c\x07\x8c" +"\x8f\x8f\x8b\x91\x1b\xb4\x93\x82\x61\x1f\xfc\x64\x07\x8a\x44\x85\x84\x69\x1d\xd0\x08\xf7\x82\x07\xb8\xb5\xa9\x9c\xb2\x1b\xbd\xa4" +"\x67\x47\x1f\xfb\x58\x07\x89\x46\x82\x80\x52\x86\x08\x7c\xf7\x68\x07\x0e\xfb\x42\x4c\x0a\xf7\x23\xf8\x5c\xf2\x15\x8c\x50\x7f\x81" +"\x3d\x8a\x84\xfb\x58\x18\x9d\x06\xa1\xf7\x0d\xb4\xb0\xf7\x06\x90\x08\xeb\x9d\x06\x41\x7b\x9a\xd1\x1f\xf8\x5c\x07\xd1\x3d\x1d\x2f" +"\x1d\xfb\x7b\x07\x93\x1d\x0e\x77\xf7\x92\xa9\x15\x8c\xfb\x28\x05\x9d\x06\xa2\xe3\xa4\xa3\xd4\x91\x08\xf4\x9c\x6c\x06\x58\x8e\x87" +"\x93\x89\xe8\x08\xf7\x64\x07\xe3\x38\x0a\xfb\x70\x7a\x96\x06\x85\x1d\x64\x88\x6b\x88\x86\x1e\x88\x82\x79\x86\x65\x8a\x08\x0e\xad" +"\xf7\xc0\x15\x8f\x50\x92\x6f\x9f\x61\x08\xfb\x09\xc3\xf7\x01\x47\xf7\x17\x1b\xf7\x55\xf7\x1a\xf7\x22\xf7\x5e\xf7\x5e\xfb\x1c\xf7" +"\x24\xfb\x53\x3a\x3c\x6e\x56\x4f\x1f\x5f\x65\x77\x69\x70\x3b\xd5\x80\x18\xa3\xd5\xa2\xb6\xa7\xa7\x08\xb4\xb6\xc4\xa2\xc4\x1b\xbe" +"\xb9\x7a\x6a\xaf\x1f\xbf\x5d\xac\x25\xfb\x03\x1a\x79\x8b\x8b\x8a\x7e\x1e\x87\x60\x15\xfb\x29\x79\x3f\x35\xfb\x05\x1b\xfb\x06\x40" +"\xdf\xf7\x2b\x75\x1f\x0e\x22\x0a\xa5\xf8\xf9\x37\x1d\x4c\x6f\x1d\xba\xf8\x20\x37\x1d\xda\x1d\x2e\xab\x2f\xc1\x51\xe5\x1d\xf7\x20" +"\xf7\x5e\xee\x6e\xe0\x54\xc6\x1f\xd0\x4c\x37\xaf\x2b\x1b\xf7\x68\xfc\x05\x15\x87\x3b\x79\x45\x71\x62\x08\x4e\x65\x51\x6a\x48\x1b" +"\x44\x48\xb3\xc7\x6c\x1f\x72\xbe\x7c\xc8\x87\xd4\x08\x8a\xb7\x15\x8e\xd4\x9a\xc9\xa7\xc1\x08\xc7\xaa\xce\xb3\xd0\x1b\xd0\xce\x63" +"\x4f\xaa\x1f\xa7\x55\x9a\x4d\x8e\x42\x08\x0e\x84\xf7\x8e\xf8\x59\x15\xfb\x17\x31\x2d\xfb\x1d\xfb\x19\xe8\x28\xf7\x12\xf7\x12\xeb" +"\xf3\xf7\x1c\xf7\x16\x2f\xe8\xfb\x14\x1f\xf7\x16\xfb\x85\x15\x79\x07\xfb\x01\x5e\x48\x42\x42\x5b\xce\xf7\x13\x79\x1e\x88\xaf\x15" +"\x8a\x96\x8b\x91\x92\x1a\xe7\xba\xc8\xd2\xd3\xc1\x47\xfb\x01\x98\x1e\x0e\xf3\x21\x0a\xfb\x24\xf9\xfa\x15\x3f\x6f\x72\x5a\x1d\xb3" +"\x78\xba\x1b\xdf\xb9\x49\x0a\x4c\xf8\x31\xf7\x38\x15\x3f\x5b\x60\x6e\x4b\x1b\x52\x60\xa8\xc4\x6e\x1f\x79\xb1\x84\xab\x89\xc9\x08" +"\xf7\xc8\x06\x83\xcc\x81\xa8\x72\xab\x08\xaf\x6d\x5d\xa0\x57\x1b\x59\x5c\x79\x69\x65\x1f\x5c\x62\x70\x44\x39\x1a\xfb\x1e\xd3\x35" +"\xf7\x07\xea\xd6\xc6\xf7\x00\xb5\x1e\x91\x0a\xb3\xf7\xf7\x15\x3f\x6e\x73\x76\x51\x1b\x4b\x69\xa9\xce\x7d\x1f\x6e\x06\x8c\x58\x92" +"\x73\x9e\x6f\x08\x68\xa4\xb2\x78\xbb\x1b\xde\xba\x49\x0a\x84\x8d\xf9\xbe\x15\x5a\xf8\x85\xbc\x07\x0e\xf8\x81\xad\x89\x15\x92\x06" +"\xd5\x06\xf7\x44\xcd\x97\xb7\xcc\x1f\xf1\xd0\xd5\xf7\x36\xf7\x2f\x1a\xea\x6d\xde\x5b\xb1\x1e\xa7\x67\x5a\x98\x4a\x1b\xfb\x2b\x20" +"\x56\x2e\x69\x1f\x7d\x66\x87\x73\x8a\x49\xd9\xb1\x18\x94\x07\x8a\xea\xb0\xb7\xe6\x99\x3d\xfc\x3e\x18\x7a\x40\x72\x5c\x6d\x81\x74" +"\x8c\x18\xe5\x16\x8f\x8e\xc2\xb9\x9e\xb6\xa1\xf7\x13\x19\xc7\xf7\xec\x05\x92\x06\x8e\x06\xb4\x96\x8a\x87\x98\x1f\xc4\x76\xa9\x49" +"\x26\x1a\xfb\x66\x2c\xfb\x29\xfb\x1e\x84\x1e\xf7\x8d\xfb\x99\x15\xda\x06\xb1\xf7\x62\x05\x7b\xb2\x8e\x8a\xa1\x1b\xf7\x14\xf7\x01" +"\xf7\x39\xf7\x53\xf7\x00\x5e\xc3\x36\x57\x5e\x75\x62\x6a\x1f\x66\x5d\x76\x50\x73\xfb\x18\x08\xea\xe6\x15\xe6\x9b\xb0\xc0\xb9\x1b" +"\xb4\xa1\x61\x3c\xfb\x2a\x52\xfb\x0b\x43\x6e\x75\x96\xa5\x77\x1f\x0e\xf3\xf7\x92\x16\x7c\xf7\x2f\x05\x49\xb9\x62\xe2\xea\x1a\xbf" +"\x98\xc7\xa2\xbc\x1e\xc9\xa9\xbc\xaf\xc4\x1b\xc2\xbc\x67\x4d\xa9\x1f\xa2\x5a\x98\x50\x56\x1a\x2c\x62\x33\x49\x5e\x1e\x7c\xfb\x2f" +"\x05\xf7\x88\xf7\x2d\x77\x06\x5e\x84\x7b\x79\x68\x1b\xfb\x0d\x06\x8d\xb1\x05\xf7\x00\xb9\xc8\xe7\xf7\x09\x1a\xcf\x73\xd3\x60\xc4" +"\x1e\xd1\x58\x47\xaf\x3c\x1b\x46\x4e\x6f\x55\x5a\x1f\x56\x50\x6a\x38\x3c\x1a\xfb\x09\xc9\x2e\xf6\x5e\x1e\x8d\x65\x05\xfb\x0d\x06" +"\x68\x8c\x7b\x9c\x84\xb8\x08\x77\xfb\x2d\x06\x0e\xfb\xe8\xb4\x0a\xfb\x95\xf7\x11\xf7\xca\x2b\x0a\xf8\x81\xf8\xa9\xf8\x95\x15\x49" +"\x06\xfb\x74\xfc\x95\x05\xdb\x06\xf7\x45\xf8\x2d\xf7\x45\xfc\x2d\x05\xdb\x06\x0e\xf8\x81\xf8\xa9\x16\xf7\x74\xf8\x95\x05\x3b\x06" +"\xfb\x45\xfc\x2d\xfb\x45\xf8\x2d\x05\x3b\x06\xf7\x74\xfc\x95\x05\x0e\xf8\x81\xf8\x8c\xf9\x60\x15\xfb\x60\xfb\x34\xfb\x32\xfb\x5f" +"\xfb\x5b\xf7\x34\xfb\x33\xf7\x5d\xf7\x5b\xf7\x34\xf7\x34\xf7\x5c\xf7\x59\xfb\x34\xf7\x36\xfb\x58\x1f\xa4\x52\x15\xf7\x23\x7e\xf7" +"\x06\xfb\x06\x99\xfb\x25\x08\xfb\xa3\x06\xf7\xa4\x52\x15\x82\xfb\x22\xfb\x0d\xfb\x0f\xfb\x22\x80\x08\xf7\xa8\x07\x53\xfb\xa8\x15" +"\xfb\x27\x99\xfb\x05\xf7\x05\x7d\xf7\x29\x08\xf7\xa6\x06\xfb\xa6\xc4\x15\x99\xf7\x24\xf7\x07\xf7\x06\xf7\x25\x99\x08\xfb\xa4\x07" +"\x0e\xf7\x11\xf7\x10\x15\xf8\x67\xf8\x67\xfc\x67\x06\xb3\xfc\x3f\x15\xf8\x17\xf8\x17\xfc\x17\x07\x0e\xf8\x81\xf9\x64\xf8\xc3\x15" +"\x4f\xfb\x8d\x06\x26\x86\x62\x7c\x6e\x1e\x5b\x72\x53\x6b\x50\x1b\x57\x58\xa4\xb3\x6f\x1f\x74\xac\x85\xb4\xf7\x04\x1a\xf7\x8d\x4f" +"\xfb\x8a\x07\xfb\x1d\x90\x69\xa3\x63\x1e\x4a\xb1\xd1\x66\xde\x1b\xd7\xcb\xaa\xc3\xb4\x1f\xac\xb8\x91\xab\xf7\x29\x1a\x0e\xe1\xf8" +"\x27\xf8\x1c\x15\xfb\x69\x06\x41\xf7\x4d\x05\x2d\x06\xf7\x7d\xfc\xd5\x05\xde\x06\xf7\x7d\xf8\xd5\x05\x2d\x06\x22\xfb\x9d\x15\x3f" +"\xfb\x48\x40\xf7\x48\x05\x0e\x84\xf8\x73\xbd\x15\x86\x06\x5a\x8d\x84\x93\x8a\xba\x08\xf7\xeb\xfb\x32\x7a\x07\xc9\x88\x97\x81\x59" +"\x1a\xfb\x7f\x07\x6f\x86\x7d\x7d\x80\x1e\x75\x70\x6c\x7f\x6d\x1b\x64\x6b\xad\xb5\x1f\xf7\xda\xfb\x26\x7d\x07\xba\x89\x99\x7d\x8c" +"\x5b\x08\xfb\x90\x07\x3c\xbb\x58\xd4\xb0\xb2\x9b\xa6\xa6\x1e\xb6\xb6\x05\x22\x07\x7a\x74\x85\x7b\x76\x1a\x60\xaa\x6a\xb5\xb4\xad" +"\xa1\xc1\xb0\x1e\x77\x9b\x05\x70\x6c\x78\x82\x76\x1b\x75\x7b\x9b\xa2\xa3\x9d\xa9\xa5\xa1\x1f\x9f\x9b\x99\x92\xa9\x92\x08\x0e\x7f" +"\x3f\x1d\x0e\x7f\x3f\x1d\xf7\x25\xf7\x76\x35\x0a\xf7\x2c\x16\x4d\x1d\xa8\xa7\xa2\xa2\xa8\xa6\x74\xa3\x6f\x1f\x0e\x7f\x3f\x1d\xf7" +"\x64\xf7\x4b\x15\xa4\x06\x97\xb1\x05\x93\xa5\x8e\x99\x99\x1a\xab\x7f\x9b\x73\x76\x7d\x79\x71\x7e\x8f\x77\x93\x72\x1e\x58\x5a\x15" +"\x72\x77\x78\x72\x73\x9e\x77\xa4\xa3\x9f\x9f\xa3\xa3\x77\x9f\x74\x1f\xf7\x2c\x16\x72\x77\x78\x72\x73\x9f\x77\xa3\xa3\x9f\x9f\xa3" +"\xa3\x77\x9f\x74\x1f\x0e\x7f\x3f\x1d\xf7\x63\xe8\x5f\x0a\xc0\x8c\x8f\x9e\xed\x1d\x8c\x84\x98\x59\x1e\x0e\x84\x25\x1d\xfb\x79\xf9" +"\x37\x42\x1d\x84\x25\x1d\x28\xf8\xee\x4b\x0a\x31\x1d\xfc\x07\xc4\x3a\x1d\x31\x1d\xfb\x49\xc4\x20\x1d\x31\x1d\xfc\x49\xf7\x41\x15" +"\x71\x75\x74\x70\x6f\x9f\x75\xa7\xaa\x1d\x31\x1d\xfb\x9a\xc4\x29\x0a\x4e\xf7\x2c\xf9\x60\x15\x56\x5e\x05\x86\x86\x87\x85\x87\x1a" +"\x7e\xb3\x75\xc6\x79\x1e\x50\x64\x72\x68\x5c\x1a\x5b\xa3\x6c\xbe\x77\x1e\x34\x4a\x64\x4a\x3c\x1a\x57\x9f\x5c\xae\x6a\x1e\x6c\xad" +"\xb2\x7d\xc2\x1b\xa0\x9b\x8c\x8f\xb3\x1f\x8c\x96\x96\x8c\x92\x1b\xa3\x99\x7d\x75\x6c\x71\x72\x6b\x84\x86\x8c\x8f\x7f\x1f\x90\x7c" +"\x82\x8d\x82\x1b\x75\x7b\x7b\x76\x71\xa2\x7a\xab\xd3\xcc\xd4\xda\xbf\x6f\xa9\x59\x84\x7c\x8a\x89\x7b\x1f\x89\x71\x71\x89\x7c\x1b" +"\x4a\x64\xb9\xd9\xce\xa5\xc6\xc1\xc0\x1f\x87\xa1\x96\x8a\x9c\x1b\xd0\xc7\xa9\xad\x9d\x76\x98\x6e\x69\x5f\x78\x65\x55\x1f\x6f\xa5" +"\x81\xa2\xae\x1a\xb3\x99\xa8\xaf\xac\x1e\x82\xb2\x9f\x88\xa8\x1b\xcd\xbe\xa3\xaa\x9e\x72\x99\x69\x63\x5e\x7d\x6d\x53\x1f\x4c\xa2" +"\x7d\x94\x9d\x1a\x95\x8f\x96\x93\x97\x1e\x0e\x84\x33\x1d\x47\xd3\x15\xfb\x11\xf7\x3b\x05\x4d\x06\xfb\x10\xfb\x3b\x05\xad\x06\xf7" +"\x0d\xf2\xf7\x0e\x24\x05\x0e\x84\x33\x1d\xfb\x30\xd3\x15\xfb\x27\xf7\x28\x05\x9d\x79\x82\x90\x7b\x1b\x77\x7e\x7f\x78\x7b\x95\x7c" +"\x9e\x7f\x1f\xf7\x2e\x2a\x05\x0e\x4c\x34\x0a\xfb\x6b\xf8\x8f\x2a\x0a\x4c\x34\x0a\xfb\x4a\xf9\x03\x43\x1d\x0e\x2e\xf7\x0e\xf9\x3e" +"\x15\x57\x5a\x05\x89\x88\x89\x87\x88\x1a\x72\xc5\x64\xd1\x75\x1e\x20\xfb\x02\x56\xfb\x07\xfb\x11\x1a\x4a\x9c\x5f\xb1\x67\x1e\x6c" +"\xad\xb2\x7d\xc2\x1b\xa0\x9b\x8c\x8f\xb3\x1f\x8c\x96\x96\x8c\x92\x1b\xa3\x99\x7d\x75\x6c\x71\x72\x6b\x84\x86\x8c\x8f\x7f\x1f\x90" +"\x7c\x82\x8d\x82\x1b\x75\x7b\x7b\x76\x71\xa2\x7a\xab\xd3\xcc\xd4\xda\xbf\x6f\xa9\x59\x84\x7c\x8a\x89\x7b\x1f\x89\x70\x72\x89\x7c" +"\x1b\x48\x66\xb9\xdc\xf7\x07\xaf\xf4\xd8\xf7\x04\x1f\x8a\x98\x94\x8b\x96\x1b\xd5\xd7\xb4\xb4\x9b\x78\x99\x75\x60\x5c\x72\x55\x4e" +"\x1f\x4d\xa2\x69\xa7\xa6\x1a\x95\x90\x95\x97\x99\x1e\x0e\x7d\x99\xf8\x56\x95\xf7\x5e\x99\x06\xb1\x0a\xde\x0b\xa4\x8f\x8f\x90\x8e" +"\x8e\x8f\x91\x8f\x8f\x8f\xb2\x0c\x0c\xb2\x8f\x9f\x90\x8f\x8f\x8e\x8f\x8f\x8f\x95\x8f\x0c\x0d\xf9\x66\x14\xf8\x8f\x15\xbc\x13\x00" +"\xad\x02\x00\x01\x00\x0b\x00\x16\x00\x2a\x00\x7f\x00\xbc\x00\xc2\x00\xc6\x00\xcb\x00\xd0\x00\xd8\x00\xdb\x00\xdf\x00\xea\x00\xef" +"\x00\xf4\x01\x27\x01\x9f\x01\xc4\x01\xf9\x02\x32\x02\x66\x02\x6a\x02\x74\x02\x7c\x02\x84\x02\x8b\x02\xb5\x03\x1a\x03\x52\x03\x71" +"\x03\x7e\x03\x8c\x03\x9e\x03\xab\x03\xb5\x03\xc5\x03\xd0\x03\xda\x03\xe3\x03\xe9\x03\xf1\x03\xf6\x03\xfe\x04\x1b\x04\x31\x04\x3a" +"\x04\x5a\x04\x6f\x04\x7b\x04\x89\x04\x97\x04\x9b\x04\xa7\x04\xac\x04\xb8\x04\xc1\x04\xc9\x04\xcf\x04\xd8\x04\xdd\x04\xe3\x04\xe8" +"\x04\xf0\x04\xf8\x05\x00\x05\x06\x05\x87\x06\x03\x06\x79\x06\x82\x06\xed\x06\xff\x07\x68\x07\x81\x07\xc3\x08\x20\x08\x31\x08\x38" +"\x08\x51\x08\xa5\x08\xe7\x09\x0c\x09\x50\x09\x8a\x09\x96\x09\xd5\x09\xe8\x09\xee\x0a\x26\x0a\x4e\x0a\x84\x0a\x8b\x0a\x9d\x0a\xc7" +"\x0a\xf0\x0a\xfa\x0b\x29\x0b\x56\x0b\x81\x0b\xab\x0b\xaf\x0b\xb6\x0b\xca\x0b\xdd\x0b\xf2\x0c\x12\x0c\x20\x0c\x2a\x0c\x39\x0c\x40" +"\x0c\x52\x0c\x58\x0c\x79\x0c\x8b\x0c\x94\x0c\xa4\x0c\xad\x0c\xb2\x0c\xbb\x0c\xd8\x0c\xe0\x0c\xe8\x0c\xed\x0d\x08\x0d\x22\x0d\x3c" +"\x0d\x49\x0d\x50\x0d\x5e\x0d\x6c\x0d\x7e\x0d\x93\x0d\x97\x0d\xac\x0d\xc1\x0d\xca\x0d\xce\x0d\xd7\x0d\xea\x0d\xef\x0d\xfa\x0e\x05" +"\x0e\x17\x0e\x1b\x0e\x28\x0e\x3a\x0e\x40\x0e\x51\x0e\x58\x0e\x68\x0e\x72\x0e\x79\x0e\x88\x0e\x91\x0e\x9a\x0e\xa3\x0e\xb1\x0e\xbf" +"\x0e\xcd\x0e\xdb\x0e\xe8\x0e\xf5\x0f\x02\x0f\x0e\x0f\x1a\x0f\x26\x0f\x32\x0f\x3c\x0f\x46\x0f\x50\x0f\x5b\x0f\x66\x0f\x6f\xdf\x1d" +"\xf7\x10\xfb\x3b\x05\xc9\x06\x0e\xf8\xe9\xf7\x3d\x15\x7a\x1d\xf8\xb0\x07\x0b\x84\x1d\xf7\x93\x07\xfc\x7e\xf7\x95\x15\xf7\x07\xf7" +"\xa7\xf7\x08\xfb\xa7\x05\x0b\xda\x1d\x2d\xab\x2f\xc1\x52\xe5\x1d\xf7\x1f\xf7\x5e\xee\x6e\xe1\x54\xc6\x1f\xd0\x4c\x37\xaf\x2b\x1b" +"\x67\x04\xb9\xb9\x79\x6b\xaf\x1f\xc1\x5a\xaa\x2d\xfb\x0b\x1a\x50\x7f\x46\x76\x57\x1e\x82\x72\x7a\x72\x74\x74\x08\x68\x68\x5e\x79" +"\x56\x1b\x5d\x5e\x9d\xaa\x67\x1f\x58\xb9\x6a\xf0\xf7\x03\x1a\xf1\xa7\xec\xb5\xba\x1e\xb6\xb2\xbc\xa1\xc2\x1b\x0b\xf7\x8e\xf8\x60" +"\x15\xfb\x17\x31\x2b\xfb\x1e\xfb\x1c\xe8\x27\xf7\x12\xf7\x12\xeb\xf4\xf7\x1f\xf7\x18\x2f\xe9\xfb\x14\x1f\x7e\x6f\x15\xdf\xc6\x2b" +"\xfb\x1d\xfb\x06\x5e\x48\x40\x64\x66\xa3\xb3\x76\x1f\x6f\xbf\x7b\xd1\xd2\x1a\xea\xb9\xc9\xd3\x1e\x0b\x15\xce\xac\xb8\x85\x0a\xf8" +"\x56\x15\x0b\x9b\x16\x6c\x0a\x0b\x86\x82\xb7\x0a\x0b\xb0\x0a\x95\x7c\x9e\x7f\x61\x0a\x9a\x0a\x0e\x15\x2c\x1d\x0e\x15\x5d\x06\xfc" +"\x59\xfd\x46\x05\xbc\x06\x0b\xd7\x1d\x93\x8c\x0b\x7c\x45\x8c\x1f\x0b\xf8\x53\xf9\x38\x15\x6f\x0a\x7c\xb1\xb4\x83\xb2\x1b\xf7\x08" +"\xe3\xda\xf3\xdd\x54\xcb\xfb\x18\xd3\x1f\x22\xc4\x61\xb7\xc2\x1a\xc2\xb5\xb0\xc9\xb8\xb5\x78\x67\xae\x1e\xaa\x6b\x99\x71\x9b\x50" +"\x08\xa4\x06\x0b\xf9\x59\xf7\xf6\x15\xfb\x93\x79\x06\xd9\x86\x93\x83\x8d\x3f\x08\xfb\x36\x07\x6b\x4f\x70\x42\xfb\x37\x27\xf7\x06" +"\xf7\x4e\xe9\xa7\xe6\xb7\xbc\x1e\xbc\xb6\xca\xa6\xcf\x1b\xc3\xbd\x78\x67\xb1\x1f\xa9\x6e\x9b\x71\xa4\x4e\x08\xa2\x06\x83\xf7\x67" +"\x05\x75\x06\x77\x85\x79\x7e\x76\x1b\x81\x7b\x8e\x92\x79\x1f\x9a\x5e\x5c\x93\x5e\x1b\xfb\x5b\xfb\x23\xfb\x27\xfb\x60\x29\xa6\x40" +"\xc3\x50\x1f\x46\xcd\xec\x65\xf7\x02\x1b\xe2\xf7\x10\xae\xae\xb3\x1f\xf7\x5f\x07\x8d\xc8\x96\x97\xc4\x8f\x08\x0b\xf9\x00\xf8\x57" +"\x15\x9c\x0a\x38\x6c\x54\x4d\x1f\x45\x4d\x65\x2f\xfb\x02\x1a\xfb\x60\xf7\x19\xfb\x1c\xf7\x5b\xf7\x05\xef\xb9\xdc\xc7\x1e\x82\x0a" +"\x0b\x9d\x16\xf7\x68\x9a\x06\x59\x8e\x7b\x98\xaf\x1a\xf7\xad\x07\xb8\xbb\xa1\x97\xac\x1b\xbc\xa3\x6c\x49\x1f\xfb\x65\x07\x89\x4a" +"\x7f\x7b\x5a\x88\x08\x7c\xf7\x64\x9a\x07\x5a\x90\x80\x97\x8a\xbc\x08\xf7\x79\x94\x1d\x0b\xf9\x57\x21\x1d\xfb\x7f\x78\x06\xdb\x86" +"\x98\x7a\x8e\x21\x08\xfb\xe5\x07\xfc\x15\xf8\x78\x05\xfb\x3f\x78\x06\xb6\x99\x83\x5c\xb3\x1f\xfc\x4d\x59\x1d\xf8\x1c\x07\xf8\x4e" +"\xfc\xba\x05\x9c\xf8\xa2\x06\x8e\xf3\x98\x9c\xda\x92\x08\x0b\xf8\x36\xf7\x1b\x15\x79\x8f\x79\x2d\x7d\x7f\x2b\x88\x19\xfb\x1e\x06" +"\xf7\xa1\xf8\x29\x05\x9a\xfb\xef\x07\x88\xfb\x0a\x05\x9d\x06\x93\xd2\x99\x9a\xc9\x8d\x08\xf7\x1e\x06\xfb\x9e\xfc\x29\x05\x7c\xf8" +"\x0d\x07\x0b\x15\x41\x0a\x0b\xa2\x8a\x05\xbf\xe3\x1d\x57\x4f\x1d\x0b\x15\xa8\x06\x95\xb7\x05\x9a\x0b\x93\x9a\xbc\x8c\x1e\x9b\x9c" +"\x0b\x07\xd1\x9b\x9a\xd5\x1e\x0b\xf8\x6a\xf8\x18\x71\x1d\xfb\x84\xfc\x1a\x9b\x0a\x90\xf7\xe8\x15\xc6\xa7\xae\xb9\xaa\xa5\x7a\x6d" +"\x9b\x1e\x9e\x68\x96\x5e\x63\x1a\x53\x6f\x68\x5d\x4d\x62\xcc\xeb\x1e\x0b\xf9\x27\x9e\x15\x65\x8e\x77\x95\x6e\xad\xfb\x62\xf7\x91" +"\x18\xf7\x13\xa4\xc1\xbd\xe7\x1a\xb6\x7e\xb0\x71\xa8\x1e\xb4\x65\x37\xa5\x2e\x1b\xfb\xa8\x78\x06\xd5\x83\x95\x48\x1d\x82\x81\x40" +"\x85\x08\x78\xf7\xa9\x9e\x07\x3e\x90\x7f\x97\x8a\xd4\x08\xf7\x59\x07\xc3\x8d\xf7\x82\xfb\xc8\x05\xf7\x35\x06\xfc\x5b\xf8\xe1\x15" +"\xa7\x96\x93\xb3\xf7\x11\xc5\x60\x2d\x59\x76\x61\x67\x78\x1e\x5d\x71\x68\x85\x2b\x89\x08\x0b\xf8\xd2\xf7\x44\x15\x6d\x20\x69\x70" +"\xfb\x00\x87\x08\xfb\x95\x06\xf8\x44\xf8\xf5\x05\x9a\xfc\xa2\x07\x77\xfb\x3f\x05\xa5\x06\x9c\xf0\xaf\xa8\xf7\x07\x8e\x08\xf7\x71" +"\x06\xfc\x49\xfc\xf5\x05\x7c\xf8\xc8\x07\xa3\xf7\x44\x05\x0b\xa0\x16\xf7\x80\x9a\x06\x4c\x8e\x80\x95\x8a\xc3\x08\xf8\xe9\x07\x87" +"\x8d\x58\x7b\x66\x80\x44\x7a\x43\x0a\xfc\x71\x68\x1d\x0b\x2b\x1d\xf7\x5b\x16\x71\x75\x74\x70\x6f\x49\x1d\x0e\x06\x81\xfb\x34\x9e" +"\x89\x8f\xdf\xac\xaa\xe0\x8a\x19\x0b\x92\x91\x8c\x8c\x91\x1e\x8d\x90\x8b\x8b\x8d\x1b\x93\x91\x85\x83\x6a\x0b\x4d\x1d\xa7\xa8\xa2" +"\xa2\xa8\xa7\x74\xa2\x6f\x1f\x0b\x59\x0a\xf7\xb3\x9d\x07\x74\x8c\x05\x0b\x19\x7b\x91\x07\x8c\x96\x97\x8c\x93\x1b\xab\x95\x7d\x5c" +"\x1f\x0b\x82\x86\x79\x79\x1e\xfb\x27\xfb\x28\x05\x0b\x9c\x7b\x06\x5a\x8c\x83\x9a\xe3\x1a\x0b\x07\x8a\x36\x82\x80\x3d\x86\x08\x0b" +"\x26\x0a\xf7\x08\x07\x0b\x87\x84\x9a\x1f\xa2\x80\x05\x0b\xbe\xf5\x97\x1f\x0e\x7d\x1d\x73\xac\x4f\x56\x1d\x0b\x15\x65\x7a\x7e\x7f" +"\x74\x1b\x7c\x78\x91\x94\x64\x1d\xaa\x96\x9c\x9a\xa2\x1b\x97\x99\xb6\x0a\xa8\xa9\xd7\xa0\x1f\x0e\xa3\xf9\x18\x15\xa2\x8a\x05\xbf" +"\x89\x9b\x78\x4c\x1a\xfc\x5c\x8a\x0a\x9d\xfb\xb2\x07\x0e\x15\xce\xac\xb8\xc8\xc7\x8c\x0a\x0b\xa4\x6a\x87\x85\x18\x85\x84\x05\x3e" +"\x29\x62\x51\x7e\x1a\x85\x8e\x88\x91\x90\x8d\x8c\x90\x8f\x1e\xc6\xc5\xb3\xb0\xd2\xc8\x08\x0b\xc3\x0a\xf7\x36\xe4\xce\xf7\x10\xf7" +"\x10\x2c\xd1\xfb\x3a\x6c\x77\x8a\x86\x6d\x1f\x0b\xa2\x1e\xa9\xc7\x15\x5d\xe0\x1d\x66\x6c\x7d\x0b\xef\x1d\xfb\x65\x07\x8a\x2f\x86" +"\x82\x58\x89\x08\x7a\x0b\xd1\x1d\xf7\xb2\x9d\x07\x75\x8c\x05\x56\x8d\x7c\x9e\x0b\x15\xcd\x1d\x0b\xfb\xce\x06\x89\x40\x81\x80\x44" +"\x88\x08\x7c\x0b\x1b\xdd\xd8\x1d\x0b\xf7\x64\x07\xe3\x93\x9a\xbc\x8c\x1e\x9b\x9c\x0b\xa2\xa1\xa7\xa6\x74\xa2\x70\x1f\x0b\x06\x7e" +"\xfb\x1f\x05\x9b\x06\x0b\x7c\x78\x56\x4f\x1d\x0b\x1b\xb1\x9a\x81\x71\x70\x76\x7a\x0b\x15\x30\x1d\xa0\x0b\x85\x8a\x89\x81\x1f\x0b" +"\xe1\x1d\xfb\xb3\x0b\x40\x91\x7f\x97\x8a\xd3\x08\x0b\x15\xa6\x06\x94\xb3\x05\x99\x0b\x9d\x07\x3f\x7b\x99\xd2\x1f\x0b\x1f\xf7\x2e" +"\x2a\x05\x0e\x92\x16\xf7\x7e\x9a\x06\x77\x8c\x61\x8e\x7f\x96\x8a\xb0\x19\xf7\x4c\x07\xf7\x20\xfb\x4f\x8f\x86\x8e\x86\x8e\x88\x19" +"\x93\x81\x8e\x85\x86\x1a\x82\x82\x85\x7f\x1e\x78\x7c\xf7\x6e\x9a\x06\x5f\x8e\x6c\x9e\x61\xbe\xfb\x2d\xf7\x56\x18\xa8\xa6\xf7\x11" +"\xf7\x04\xa6\x9b\xcb\x89\x19\x9a\xfb\x60\x7d\x07\xb2\x8a\x96\x87\x7e\x1a\x82\x82\x7e\x7d\x7e\x1e\xfb\x1d\xfb\x0e\x05\xf8\x38\x07" +"\x87\x8d\x64\x7f\x6e\x82\x52\x7c\x19\x6d\x83\x05\x7b\x07\x8c\x98\x94\x8c\x95\x1b\xad\x94\x7e\x5b\x1f\xfc\x76\x07\x8a\x56\x88\x88" +"\x44\x80\x08\x0b\xf8\x31\xf9\x17\x15\xc7\x88\x93\x87\x73\x1a\x75\x74\x6d\x54\x58\x1e\xfb\x45\xfb\x35\x05\xf7\x61\x07\x8c\xd6\x95" +"\x94\xdc\x91\x08\x9e\xfb\xb0\x78\x07\xd8\x86\x96\x7f\x8d\x42\x08\xfc\x45\x07\x8a\x36\x80\x80\x3d\x86\x08\x78\xf7\xae\x9e\x07\x3e" +"\x90\x7f\x96\x8a\xd5\x08\xf7\x4f\x07\xa5\xa0\xf5\x22\x05\xd8\x3e\xc0\x46\x73\x1a\x7c\x7e\x85\x6e\x8a\x1e\x86\x80\x8b\x8a\x7f\x1f" +"\x78\xf7\xc5\x9e\x07\x57\x8c\x7d\x95\x30\xec\xfb\x7d\xf7\x8e\x18\xf7\x52\xf7\x50\xcf\xcc\x9b\x93\xcf\x90\x19\x9e\xfb\x9a\x07\x0b" +"\xf9\x26\xf9\x72\x15\x5a\x06\x43\x20\x05\xaf\x4b\x5e\x98\x49\x1b\xfb\x55\xfb\x1b\xfb\x23\xfb\x5f\x4b\x9a\x4b\xa5\x59\x1f\x9d\x68" +"\x9b\x77\xb5\x65\x2c\xfb\x1f\x18\xbc\x06\xda\xf7\x08\x05\x66\xc9\xb9\x7e\xcf\x1b\xf7\x56\xf7\x1a\xf7\x21\xf7\x61\xcb\x7c\xcc\x70" +"\xbd\x1f\x79\xae\x7a\x9f\x62\xb1\x08\x60\x4b\x15\xad\x4a\x98\x53\x31\x1a\xfb\x52\x3a\xfb\x09\xfb\x18\x51\x62\x9e\xba\x60\x1e\x72" +"\xae\x15\x69\xcb\x7f\xc2\xe3\x1a\xf7\x53\xdd\xf7\x0b\xf7\x17\xc3\xb4\x78\x5d\xb7\x1e\x0b\x7d\x1d\x74\xac\x4e\x56\x1d\xbd\x0b\x15" +"\x25\x06\x64\xfb\x17\x7c\xbb\x86\x99\x82\x9d\x19\xb9\x72\x65\xa3\x5a\x1b\xfb\x07\x2e\xfb\x0d\xfb\x29\xfb\x14\xd3\x31\xf2\xd6\xc4" +"\xae\xd3\xb5\x1f\x91\x65\x93\x77\x9a\x74\x08\x7a\x96\x96\x82\x92\x1b\x8e\x90\x8d\x8e\x92\x1f\xe6\xb4\x05\xaf\x07\x84\x7a\x83\x89" +"\x81\x1b\x63\x6e\xb0\xd6\x7a\x1f\x34\x9d\x15\xfb\x08\x66\x66\x53\x62\x1b\x58\x68\xdb\xf7\x09\xf7\x1f\xb4\xdf\xce\xa8\xa2\x7c\x69" +"\x9f\x1f\x99\x74\x93\x72\xa0\x3d\x08\x0e\xc5\x15\xc5\x0a\xf8\xcb\xbf\x1d\xfb\x30\xa1\x1d\xfb\x2b\xc7\x97\x0a\x0b\xf8\x49\xf8\xbb" +"\x15\x64\x06\x52\xfb\x01\x05\x98\x68\x74\x90\x69\x1b\xfb\x15\x30\x2a\xfb\x1c\x5d\x97\x5d\xa0\x65\x1f\x9b\x70\x98\x7c\xad\x70\x42" +"\xfb\x20\x18\xb0\x06\xcc\xf7\x0f\x05\x7b\xae\xa2\x86\xae\x1b\xf7\x13\xeb\xf4\xf7\x1f\xbb\x7d\xbc\x73\xb0\x1f\x7b\xa3\x7e\x97\x6c" +"\xa1\x08\x6b\x4f\x15\xa8\x55\x96\x5e\x4b\x1a\xfb\x09\x5f\x47\x40\x69\x74\x97\xa9\x72\x1e\x76\xab\x15\x70\xc5\x7f\xc4\xd0\x1a\xe9" +"\xba\xc9\xd2\xaa\x0b\x9e\x16\xf7\xaa\x9e\x06\x8e\x0a\xf8\x50\xa4\x0a\xfb\x56\xfb\xc3\xf7\x56\xa4\x0a\xfc\x45\x46\x0a\x0b\x9b\x16" +"\xf7\xb0\x06\xf7\x08\xf4\xac\xc3\xc9\x1f\xcc\xc6\xb0\xe4\xec\x1a\xe5\x6e\xd9\x53\xc2\x1e\xd0\x47\xfb\x01\xaf\xfb\x1d\x1b\xfb\xa2" +"\x78\x06\xda\x84\x93\x83\x8c\x40\x08\xfc\x50\x07\x8a\x42\x7f\x7f\x40\x86\x08\xf7\x52\xf8\xcb\x15\xaa\x95\x93\xb5\xe2\xac\x1d\x0b" +"\xf8\x04\xf8\x51\x15\x97\x5c\x5c\x91\x5d\x1b\x2b\x40\x5a\x4b\x66\xa0\x6f\xbd\x6e\x1f\x4b\x62\x75\x6a\x57\x1a\x3b\xd1\x52\xec\xef" +"\xd1\xc8\xf3\x9f\x1e\x78\x8e\x05\x3d\x72\x5b\x62\x48\x1b\x48\x58\xbd\xcf\xa8\x93\xa0\xa2\xaa\x1f\x7d\xab\xa8\x84\xaa\x1b\xa9\x9e" +"\x97\xa0\x9f\x74\x98\x68\x72\x75\x86\x7e\x67\x1f\x7a\x9a\x84\x9c\xa1\x1a\xbb\xaf\xa6\xcb\xb7\xb0\x83\x78\xb8\x1e\x0b\xf7\x81\x9a" +"\x06\x49\x90\x84\x94\x8a\xd4\x08\xf7\xf7\x07\xa5\x1d\x0b\xf7\x6a\xf7\x49\x6e\x0a\x0b\x15\xf8\x0e\x9e\x1d\x91\x07\xf7\xbb\xf8\x0e" +"\x05\xfc\x14\xb0\x1d\x79\x07\xd5\x9b\x7d\x45\x8c\x1f\x0b\x76\x06\x75\x87\x80\x7f\x7a\x1b\x81\x7a\x8f\x93\x7a\x1f\x99\x66\x66\x93" +"\x6a\x1b\x61\x5f\x7a\x6e\x6a\x1f\x68\x6c\x79\x61\x57\x1a\x3b\xb7\x53\xf7\x04\x50\x1e\xd3\x64\xbf\x63\xa4\x65\x08\x94\x7e\x90\x76" +"\x72\x1a\x49\x59\x5d\x42\x31\x4d\xc2\xf7\x0e\x59\x1e\x74\x06\xa9\xfb\x68\x05\xa1\x06\x9e\x8c\x97\x99\x9a\x1b\x96\x9c\x87\x84\x9e" +"\x1f\x0b\xf7\x55\xf8\x5d\x15\x86\x8e\x4d\x73\x65\x7e\x53\x7a\x19\x7b\x07\x90\x8c\x05\x8d\x9a\x9a\x8c\x95\x1b\xa2\x94\x7a\x60\x1f" +"\xfc\x0f\xd4\x1d\x81\x92\xa0\x7a\x1f\xa2\x79\x7d\x94\x7b\x1b\x74\x79\x7a\x75\x6b\xb2\x74\xc2\xb7\xb3\x99\xa4\xa6\x1f\xaf\xab\xa1" +"\xcf\xda\x1a\x0b\xc1\x07\xf7\x08\x89\xa0\x7a\xa1\xfb\x01\x08\xa3\x06\x85\xf7\x3e\x05\xfc\xc8\x06\x85\xfb\x3e\x05\xa3\x06\xa2\xf7" +"\x01\xa0\x9c\xf7\x07\x8d\x08\xc1\x0b\xf7\x4d\x15\x42\x67\x5b\x65\x52\x1b\x3b\x53\xdb\xf7\x09\x88\x1f\xf7\xac\x06\xf7\x07\x88\x4c" +"\xd2\x29\x1b\xfb\x01\x3a\x27\xfb\x18\xfb\x18\xda\x27\xf4\xc1\xbe\xa6\xbb\xad\x1f\x9d\xa3\x98\xa8\x9d\xc3\x08\xfb\xbd\xf7\x19\x15" +"\xcd\x93\xad\xb1\xbd\x1b\xbe\xa9\x65\x49\x8e\x1f\x0b\xf7\x41\xf8\x67\x15\x48\x6a\x81\x86\x45\x6f\x91\x7c\x18\x91\x8d\x05\x8d\x93" +"\x92\x8c\x92\x1b\xa6\xec\x1d\x9b\x79\x1e\x82\x93\x92\x85\x8f\x1b\x8e\x90\x8d\x8e\x90\x1f\xf2\xc1\x85\x99\x05\x83\x7e\x85\x89\x80" +"\x1b\x6c\x83\x9c\xcb\x1f\x0b\xf7\x93\x26\x0a\x26\xf7\x08\x06\x8c\x1d\x07\x0b\x9f\xbd\x1e\x92\x9e\x90\x9c\x95\x1a\xa3\x75\xa1\x72" +"\x73\x75\x75\x73\x81\x90\x7a\x92\x78\x1e\x9f\x58\x8f\x73\x56\x1a\x67\x8c\x7c\x8f\x61\x9c\x08\x93\x78\x78\x90\x81\x1b\x74\x7a\x79" +"\x71\x6f\x9a\x7c\xa8\x97\x95\x8e\x94\xa3\x1f\xb2\x9a\x9c\x8f\xae\x8e\x0b\x07\xd1\x3d\x1d\x2f\x1d\xfb\x5b\xfb\xbb\xf7\x5b\xaf\x0a" +"\xfc\x5b\x5c\x1d\x0e\x15\x65\x7b\x7d\x79\x0a\x08\x7c\xf7\x6b\x9a\x07\x55\x8f\x81\x94\xc0\x1a\xf8\xec\x07\x86\x8d\x82\x89\x81\x88" +"\x7f\x85\x19\x82\x78\x7c\x86\x83\x1b\x86\x81\x8e\x90\x7c\x1f\x96\x6f\x6e\x91\x72\x1b\x5d\x5d\x73\x64\x6f\x1f\x6d\x60\x81\x64\x87" +"\x33\x08\x0b\x7f\x74\x1b\x7d\x77\x91\x94\x79\x1f\x73\x97\x05\x97\x73\x73\xe4\x1d\xaa\x96\x9b\x9a\xa3\x1b\x96\x9a\x48\x0a\x77\xb4" +"\x99\x87\xa4\x1b\xc3\xa8\xa9\xd7\xa0\x1f\x0e\xf8\x28\xf7\xd5\x15\xfb\x6e\x07\x4c\x7f\x78\x61\x89\x1e\x79\x8a\x05\x79\xf7\x78\x9d" +"\x07\x79\x8c\x05\x61\x8d\x7f\x9e\xca\x1a\xf7\x6e\xa5\x07\xf7\x16\xfb\x4f\x05\xba\x4c\x92\x7f\x7c\x1a\x79\x80\x85\x69\x89\x1e\x79" +"\x0b\x9a\x1d\x6b\xdd\x54\x0a\x0b\x39\x0a\x9d\xfb\xb1\x79\x07\xd5\x9a\x2e\x0a\xfc\x96\xfb\xc5\x95\x0a\x0b\xf7\xc7\xf7\x66\x15\x32" +"\xca\x0a\xf7\x77\x9c\x79\x06\x59\x8e\x86\x94\x8a\xe7\x08\xe4\xa6\x07\xf7\x10\xfb\x31\x05\x93\x82\x8e\x84\x84\x1a\x83\x84\x86\x7f" +"\x1e\x79\x7a\x0b\xf9\x62\xf7\x27\x15\x54\xf7\x96\x5c\x06\xfb\x5f\xfb\x9e\x05\x5a\xf7\x48\x31\xd1\xe5\xc2\x07\xfb\x11\xc4\x15\xfb" +"\x1b\x06\xf7\x1b\xf7\x47\x05\xb7\xf7\xf2\x2c\x0a\x0b\x9b\x1a\x9f\x7e\x97\x75\x7c\x44\x0a\x0b\xf7\xc8\x15\x5f\x8d\x7f\x93\x8a\xa5" +"\x08\xf7\xeb\x07\x7d\x8e\xfb\x0a\x54\x05\x74\x07\x94\xa4\x99\x8f\x8f\x1b\x91\x8d\x85\x75\x1f\xfb\x95\x07\x8a\x74\x81\x84\x61\x89" +"\x08\x73\xf7\x53\x07\x0b\x6d\xa4\x6f\x95\x53\x92\xbb\x98\xa0\x94\xa2\x9d\x08\xb0\xa9\xa1\xb8\xbb\x1a\xe4\x3f\xc8\xfb\x04\x66\x6f" +"\x85\x7b\x62\x1e\x83\x74\x81\x88\x80\x1b\x76\x81\x94\x9e\x88\x1f\x7b\x06\x0b\x79\x9d\x05\x44\x42\x48\x6d\x38\x1b\x4c\x53\x9f\xb1" +"\x60\x1f\x54\xbc\x6c\xe5\xf7\x04\x1a\xf7\x49\xe8\xf7\x08\xf7\x25\xc4\xbf\x76\x64\xb3\x1e\xab\x6b\x9a\x6f\x9e\x4a\x08\x0b\xf7\x6d" +"\xf7\xd0\x15\x7e\xb0\xa7\x86\xae\x1b\xc8\xc6\x9e\xac\xb4\x1f\xae\xa7\x9f\xb9\xc0\x1a\xd8\x67\xc0\x40\xad\x1e\x62\x9d\x77\x8d\xfb" +"\x12\x8c\x08\xfb\x6a\x79\x06\x0b\xae\x1d\xe8\x1d\x8f\x0a\x66\x55\x66\x1f\x0e\xfb\x0b\xfb\x0f\xfb\x09\x3b\xf7\x0e\xf7\x45\xf7\x47" +"\xda\xf7\x0c\xf7\x0a\x1f\x0e\xa9\x0a\xc2\xc3\xb3\x0a\x6e\x6e\x65\x68\x6e\xa8\xb0\xaf\xa9\xa8\xaf\x1f\x0b\x1a\x9e\x99\x93\xab\x8d" +"\x1e\x8f\x95\x8b\x8c\x96\x1f\x9e\xfb\xac\x78\x07\xbb\x89\x0b\x15\xce\xac\xb8\xc8\xc7\x1a\xbd\x68\xb2\x4b\x1d\xb0\x92\x91\x8c\x8c" +"\x91\x1e\x8d\x91\x8c\x8b\x8c\x1b\x93\x91\x85\x83\x6b\x6f\x0b\x07\x4c\x52\x0a\xca\x1a\xf8\x5c\x3c\x1d\xa1\x8c\x05\x0b\x15\x3f\x6e" +"\x73\x76\x51\x1b\x4a\xb2\x1d\x1a\xbd\x68\xb2\x4b\x1d\xb1\x40\x0a\x6f\x67\x55\x66\x1f\x0b\x15\xce\xac\xb8\x94\x0a\x0b\x5e\x0a\xf7" +"\x62\xf7\xc3\xfb\x57\x46\x0a\x78\xf7\xaa\x9e\x07\x5e\x0a\x0b\x94\x0a\x83\x6b\x6f\x0b\xfb\x0d\xfb\x33\x24\xf7\x2e\x05\x81\x9a\x85" +"\x9a\x97\x1a\x9b\x94\x99\x98\x8f\x1e\x93\x8d\x8d\x8c\xa8\x8c\x08\x9d\xfb\xbc\x79\x07\x0b\xfb\xd9\xf7\x2c\x15\xd9\x96\xad\xb0\xc8" +"\x1b\xc8\xa3\x6f\x34\x98\x1f\x0b\xf0\xab\x26\xf7\x08\x07\xba\x1d\x0b\xa6\x57\x0a\xf7\x5b\x16\x71\x75\x74\x70\x6f\xa0\x75\xa6\xe8" +"\x1d\xc8\xc7\x1a\xbd\x68\xb2\xbc\x1d\x0b\xf8\x96\xb3\x1d\x0b\xd7\xb0\x0a\x96\x7b\x9d\x80\x61\x0a\x15\x84\x84\x7f\x81\x80\x1e\x77" +"\x7a\x71\x81\x6e\x1b\x37\x55\xdb\xf7\x10\xf7\x04\xbc\xd5\xd7\xc1\xbb\x5c\x56\x1f\x0b\x50\x1d\x98\x94\x98\x7f\x0a\x0e\x30\x1d\x9f" +"\xd6\x1d\x76\xdd\x1d\x5b\x0a\x2a\x1d\x0b\x15\x84\xad\xd9\x85\xbe\x1b\xe5\xac\x7e\x67\x51\x3f\x64\xfb\x05\x32\x52\xa8\xb7\xa2\x94" +"\x9a\xb3\xbb\x1f\x0b\x82\xf7\x75\x05\x76\x06\x76\x85\x7b\x7f\x77\x1b\x82\x7c\x8e\x90\x7c\x1f\x9c\x5a\x59\x93\x5c\x1b\x39\x0b\xf8" +"\x53\x15\xab\xcb\x05\xa7\xc3\x98\xb1\xa5\x1a\xa3\x7a\x9c\x73\x68\x7a\x62\x23\x85\x1e\x86\x3b\x05\x0b\x07\xe2\x93\x99\xbc\x8d\xbd" +"\x1d\x30\x08\x3f\x07\x0e\x5d\x0a\x79\x07\x2e\x1d\x0b\x06\xc5\x8a\x9f\x71\x89\x45\x08\x9d\xf7\x85\x79\x06\x0b\x1f\x7d\x6c\x05\x7f" +"\xa8\xa2\x87\xab\x1b\xd8\xbb\xab\x0b\xba\x0a\xfc\x1a\x07\x81\xfb\x35\x9e\x8a\x8f\xe2\xac\xaa\xe0\x8a\x19\x0b\x15\xa9\xc3\xaf\xb9" +"\xd5\xbc\x3f\xfb\x09\xfb\x02\x5a\x40\x43\x5c\x52\xaf\xa9\x1e\x0e\x07\xc5\x1d\x0b\x07\x8a\x36\x81\x80\x3f\x86\x08\x78\xf7\xac\x9e" +"\x07\x3f\x8e\x7d\x99\x8a\xd4\x08\x0b\x15\x64\x71\x7a\x7f\x6c\x1b\x76\x76\x90\x94\x7a\x1f\xba\x32\x79\x92\x5e\x1b\x5d\x0b\xe3\x60" +"\x1d\x90\x82\x8c\x2f\x08\x0b\x9e\xed\x1d\x0b\x15\x55\x5e\x5e\x55\x53\xb6\x5f\x0b\x15\x70\x74\x74\x71\x6f\xa2\x74\xa6\xa6\xa2\xa2" +"\xa6\xa6\x74\xa2\x70\x1f\x0b\xb7\x0a\xe3\x1a\x0e\x07\xe3\x93\x99\xbc\x8c\x1e\x9b\x9c\x06\x0b\x86\x41\x6d\x92\x7c\x18\x96\x8f\x05" +"\x8d\x0b\x07\x45\x8a\x7b\x7c\x41\x1b\x79\xf7\xb2\x9d\x07\x41\x7b\x9a\xd1\x1f\x0b\x07\xb2\x0a\x0b\xa7\x1d\x79\x82\x90\x7c\x1b\x76" +"\x7e\x7f\x78\x7b\x0b\xf7\x49\xf8\x63\x15\x47\x69\x80\x87\x41\x6d\x92\x7d\x18\x96\x8e\x05\x0b\xd2\x9b\x99\x6a\x1d\x0b\xb8\xb7\xc2" +"\xc2\x5e\xb8\x54\x1f\x8c\x69\x15\xae\xa9\x6d\x67\x67\x0b\xf7\xdf\xf9\x38\x2c\x0a\x0e\x9f\x07\x6b\x8f\x89\x8b\x83\x90\x08\x85\x8e" +"\x89\x93\xad\x1a\x0b\x48\x0a\x77\xb4\x9a\x87\xa4\x1b\xc2\x0b\xcb\x0a\x5a\x8c\x83\x9a\x0b\x79\x07\xa2\x8a\xc5\x89\x96\x7f\x8a\x52" +"\x19\xfc\x8a\x04\x0b\xbd\xdd\xd8\x40\xbe\xfb\x06\x78\x0b\x07\xd1\x8c\x9b\x9a\xd5\x1b\x9d\x0b\xa5\x36\xe2\xfb\x78\xf7\x80\x18\x0b" +"\x56\xc6\x64\xdb\xd9\xc4\xb2\xc0\xa2\x7c\x9a\x76\x1e\x0b\x1b\x7b\x78\xf7\xb8\x9e\x7a\x06\x55\x77\x9f\xc2\x1f\x0b\xf8\x2e\x16\x9b" +"\x06\xf7\x80\xf8\xa7\x05\xfc\x40\x07\x0b\xb1\xa1\x98\x81\x6e\x9d\x1e\x71\x9b\x97\x81\x9c\x1b\x0b\xfb\x2c\xfb\x29\xfb\x51\xfb\x4e" +"\xf7\x29\xfb\x2c\x0b\xf9\x31\x15\x7f\x06\xfb\x80\xfc\xb5\x63\x2d\x80\x0b\xfb\x14\xf7\xb2\x05\x3e\x06\xfb\x13\xfb\xb2\xc0\x0b\x07" +"\x44\x8a\x7c\x7d\x40\x1b\x79\xf7\xb3\x07\x0b\x85\x88\x1e\x83\x86\x89\x8b\x6b\x87\x08\x77\x0b\x8a\x7e\x85\x8b\x87\x1b\x68\x82\x96" +"\xb9\x1f\x0b\xda\x69\x1e\x7d\xad\xa6\x87\xd0\x1b\xf7\xac\x0b\x07\xf7\x0a\xb8\x64\xfb\x0f\xa1\x1f\x0e\x15\x38\x06\x61\xfb\x13\x98" +"\x81\x05\x0e\xb2\xf7\x95\x15\x4c\xf7\x8a\xca\x07\x0e\x07\x89\x2f\x86\x82\x59\x88\x08\x79\x7a\x0b\x58\x88\x08\x7a\x7a\xf7\x76\x9c" +"\x7b\x06\x0b\x1f\x29\x20\x05\x74\xf7\x91\x07\x0e", 48556 +}; diff --git a/dviware/dvisvgm/src/fonts/NimbusSans-Bold.cff.cpp b/dviware/dvisvgm/src/fonts/NimbusSans-Bold.cff.cpp new file mode 100644 index 0000000000..f0c89f2b2d --- /dev/null +++ b/dviware/dvisvgm/src/fonts/NimbusSans-Bold.cff.cpp @@ -0,0 +1,1068 @@ +#include "Base14Fonts.hpp" + +extern const MemoryFontData NimbusSans_Bold_cff = { +"\x01\x00\x04\x02\x00\x01\x01\x01\x10\x4e\x69\x6d\x62\x75\x73\x53\x61\x6e\x73\x2d\x42\x6f\x6c\x64\x00\x01\x01\x01\x31\xf9\xbc\x00" +"\xf9\xbd\x01\xf9\xbe\x0c\x00\xf9\xbf\x02\xf9\xc0\x03\xf8\x14\x04\xfb\x2f\x0c\x03\xd0\x0c\x04\xfb\x50\xfb\xc7\xfa\xc1\xfa\xc2\x05" +"\x1c\x1f\x20\x0f\x1c\x1f\x33\x11\xc0\x1c\x79\x91\x12\x01\xa6\x02\x00\x01\x00\x08\x00\x0e\x00\x13\x00\x1d\x00\x24\x00\x2b\x00\x35" +"\x00\x39\x00\x3f\x00\x45\x00\x50\x00\x5a\x00\x5d\x00\x63\x00\x69\x00\x6e\x00\x74\x00\x7a\x00\x84\x00\x8b\x00\x8e\x00\x95\x00\x9c" +"\x00\xa8\x00\xab\x00\xb3\x00\xb7\x00\xbc\x00\xc2\x00\xcd\x00\xd9\x00\xe3\x00\xe7\x00\xf2\x00\xf4\x00\xfa\x01\x04\x01\x0b\x01\x12" +"\x01\x16\x01\x22\x01\x2b\x01\x31\x01\x3c\x01\x41\x01\x4d\x01\x53\x01\x59\x01\x5f\x01\x6b\x01\x6f\x01\x71\x01\x77\x01\x7d\x01\x89" +"\x01\x8b\x01\x91\x01\x9e\x01\xa5\x01\xaf\x01\xb6\x01\xc2\x01\xcd\x01\xd0\x01\xd2\x01\xd5\x01\xdb\x01\xe1\x01\xed\x01\xf0\x01\xf6" +"\x01\xfe\x02\x09\x02\x15\x02\x1a\x02\x1d\x02\x21\x02\x27\x02\x33\x02\x38\x02\x3e\x02\x4b\x02\x52\x02\x59\x02\x60\x02\x6f\x02\x7b" +"\x02\x80\x02\x86\x02\x8c\x02\x97\x02\xa0\x02\xa6\x02\xa8\x02\xb3\x02\xb9\x02\xbf\x02\xc9\x02\xcd\x02\xd3\x02\xda\x02\xe3\x02\xec" +"\x02\xf5\x02\xfe\x03\x07\x03\x10\x03\x19\x03\x22\x03\x2b\x03\x34\x03\x3d\x03\x46\x03\x4f\x03\x58\x03\x61\x03\x6a\x03\x73\x03\x7c" +"\x03\x85\x03\x8e\x03\x97\x03\xa0\x03\xa9\x03\xb2\x03\xbb\x03\xc4\x03\xcd\x03\xd6\x03\xdf\x03\xe8\x03\xf1\x03\xfa\x04\x03\x04\x0c" +"\x04\x15\x04\x1e\x04\x27\x04\x30\x04\x39\x04\x42\x04\x4b\x04\x54\x04\x5d\x04\x66\x04\x6f\x04\x78\x04\x81\x04\x8a\x04\x93\x04\x9c" +"\x04\xa5\x04\xae\x04\xb7\x04\xc0\x04\xc9\x04\xd2\x04\xdb\x04\xe4\x04\xed\x04\xf6\x04\xff\x05\x08\x05\x11\x05\x1a\x05\x23\x05\x2c" +"\x05\x35\x05\x3e\x05\x47\x05\x50\x05\x59\x05\x62\x05\x6b\x05\x74\x05\x7d\x05\x86\x05\x8f\x05\x98\x05\xa1\x05\xaa\x05\xb3\x05\xbc" +"\x05\xc5\x05\xce\x05\xd7\x05\xe0\x05\xe9\x05\xf2\x05\xfb\x06\x04\x06\x0d\x06\x16\x06\x1f\x06\x28\x06\x31\x06\x3a\x06\x43\x06\x4c" +"\x06\x55\x06\x5a\x06\x64\x06\x6b\x06\x74\x06\x7e\x06\x85\x06\x90\x06\x9a\x06\xa3\x06\xac\x06\xb5\x06\xbf\x06\xc6\x06\xcf\x06\xdb" +"\x06\xdf\x06\xe5\x06\xeb\x06\xf6\x07\x00\x07\x03\x07\x11\x07\x15\x07\x1b\x07\x21\x07\x26\x07\x2d\x07\x3a\x07\x40\x07\x46\x07\x50" +"\x07\x57\x07\x5e\x07\x61\x07\x68\x07\x6f\x07\x7b\x07\x86\x07\x8f\x07\x92\x07\x9a\x07\xa3\x07\xae\x07\xb4\x07\xb9\x07\xbe\x07\xc4" +"\x07\xcf\x07\xdb\x07\xe5\x07\xf1\x07\xf5\x08\x00\x08\x05\x08\x0a\x08\x10\x08\x12\x08\x19\x08\x21\x08\x29\x08\x33\x08\x3d\x08\x49" +"\x08\x55\x08\x5c\x08\x60\x08\x6c\x08\x7d\x08\x86\x08\x8c\x08\x97\x08\x9c\x08\xa8\x08\xb4\x08\xba\x08\xc0\x08\xc6\x08\xd2\x08\xd6" +"\x08\xdf\x08\xe3\x08\xe8\x08\xec\x08\xf2\x08\xfd\x09\x0b\x09\x11\x09\x1c\x09\x22\x09\x2e\x09\x38\x09\x40\x09\x42\x09\x48\x09\x55" +"\x09\x5c\x09\x61\x09\x6b\x09\x72\x09\x7e\x09\x88\x09\x93\x09\x9e\x09\xa4\x09\xa7\x09\xa9\x09\xb0\x09\xbc\x09\xca\x09\xcd\x09\xda" +"\x09\xe0\x09\xe7\x09\xed\x09\xf9\x0a\x06\x0a\x09\x0a\x0f\x0a\x17\x0a\x22\x0a\x2e\x0a\x34\x0a\x39\x0a\x42\x0a\x47\x0a\x50\x0a\x53" +"\x0a\x56\x0a\x5a\x0a\x60\x0a\x6c\x0a\x71\x0a\x76\x0a\x7c\x0a\x89\x0a\x90\x0a\x9d\x0a\xa4\x0a\xab\x0a\xb2\x0a\xb9\x0a\xc0\x0a\xc7" +"\x0a\xce\x0a\xd5\x0a\xdc\x0a\xe3\x0a\xea\x0a\xf1\x0a\xf8\x0a\xff\x0b\x06\x0b\x0d\x0b\x14\x0b\x1b\x0b\x22\x0b\x29\x0b\x30\x0b\x37" +"\x0b\x3e\x0b\x45\x0b\x4c\x0b\x53\x0b\x5a\x0b\x61\x0b\x68\x0b\x6f\x0b\x76\x0b\x7d\x0b\x84\x0b\x8b\x0b\x92\x0b\x99\x0b\xa0\x0b\xa7" +"\x0b\xae\x0b\xb5\x0b\xbc\x0b\xc3\x0b\xca\x0b\xd1\x0b\xd8\x0b\xdf\x0b\xe6\x0b\xed\x0b\xf4\x0b\xfb\x0c\x02\x0c\x09\x0c\x10\x0c\x17" +"\x0c\x1e\x0c\x25\x0c\x2c\x0c\x33\x0c\x3a\x0c\x41\x0c\x48\x0c\x4d\x0c\x56\x0c\x5d\x0c\x64\x0c\x73\x0c\x87\x0c\x93\x0c\x98\x0c\x9e" +"\x0c\xa4\x0c\xaf\x0c\xb8\x0c\xbe\x0c\xc0\x0c\xcb\x0c\xd1\x0c\xd7\x0c\xe1\x0c\xe5\x0c\xe9\x0d\x1f\x0d\x5f\x0d\x6f\x0d\x7a\x41\x45" +"\x61\x63\x75\x74\x65\x41\x62\x72\x65\x76\x65\x41\x6c\x70\x68\x61\x41\x6c\x70\x68\x61\x74\x6f\x6e\x6f\x73\x41\x6d\x61\x63\x72\x6f" +"\x6e\x41\x6f\x67\x6f\x6e\x65\x6b\x41\x72\x69\x6e\x67\x61\x63\x75\x74\x65\x42\x65\x74\x61\x43\x61\x63\x75\x74\x65\x43\x63\x61\x72" +"\x6f\x6e\x43\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x43\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x43\x68\x69\x44\x63\x61\x72\x6f\x6e" +"\x44\x63\x72\x6f\x61\x74\x44\x65\x6c\x74\x61\x45\x62\x72\x65\x76\x65\x45\x63\x61\x72\x6f\x6e\x45\x64\x6f\x74\x61\x63\x63\x65\x6e" +"\x74\x45\x6d\x61\x63\x72\x6f\x6e\x45\x6e\x67\x45\x6f\x67\x6f\x6e\x65\x6b\x45\x70\x73\x69\x6c\x6f\x6e\x45\x70\x73\x69\x6c\x6f\x6e" +"\x74\x6f\x6e\x6f\x73\x45\x74\x61\x45\x74\x61\x74\x6f\x6e\x6f\x73\x45\x75\x72\x6f\x47\x61\x6d\x6d\x61\x47\x62\x72\x65\x76\x65\x47" +"\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x47\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x47\x64\x6f\x74\x61\x63\x63\x65\x6e\x74" +"\x48\x62\x61\x72\x48\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x49\x4a\x49\x62\x72\x65\x76\x65\x49\x64\x6f\x74\x61\x63\x63\x65\x6e" +"\x74\x49\x6d\x61\x63\x72\x6f\x6e\x49\x6f\x67\x6f\x6e\x65\x6b\x49\x6f\x74\x61\x49\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69\x73\x49" +"\x6f\x74\x61\x74\x6f\x6e\x6f\x73\x49\x74\x69\x6c\x64\x65\x4a\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x4b\x61\x70\x70\x61\x4b\x63" +"\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4c\x61\x63\x75\x74\x65\x4c\x61\x6d\x62\x64\x61\x4c\x63\x61\x72\x6f\x6e\x4c\x63\x6f\x6d" +"\x6d\x61\x61\x63\x63\x65\x6e\x74\x4c\x64\x6f\x74\x4d\x75\x4e\x61\x63\x75\x74\x65\x4e\x63\x61\x72\x6f\x6e\x4e\x63\x6f\x6d\x6d\x61" +"\x61\x63\x63\x65\x6e\x74\x4e\x75\x4f\x62\x72\x65\x76\x65\x4f\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x4f\x6d\x61\x63\x72" +"\x6f\x6e\x4f\x6d\x65\x67\x61\x74\x6f\x6e\x6f\x73\x4f\x6d\x69\x63\x72\x6f\x6e\x4f\x6d\x69\x63\x72\x6f\x6e\x74\x6f\x6e\x6f\x73\x4f" +"\x73\x6c\x61\x73\x68\x61\x63\x75\x74\x65\x50\x68\x69\x50\x69\x50\x73\x69\x52\x61\x63\x75\x74\x65\x52\x63\x61\x72\x6f\x6e\x52\x63" +"\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x52\x68\x6f\x53\x61\x63\x75\x74\x65\x53\x63\x65\x64\x69\x6c\x6c\x61\x53\x63\x69\x72\x63" +"\x75\x6d\x66\x6c\x65\x78\x53\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x53\x69\x67\x6d\x61\x54\x61\x75\x54\x62\x61\x72\x54\x63" +"\x61\x72\x6f\x6e\x54\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x54\x68\x65\x74\x61\x55\x62\x72\x65\x76\x65\x55\x68\x75\x6e\x67" +"\x61\x72\x75\x6d\x6c\x61\x75\x74\x55\x6d\x61\x63\x72\x6f\x6e\x55\x6f\x67\x6f\x6e\x65\x6b\x55\x70\x73\x69\x6c\x6f\x6e\x55\x70\x73" +"\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x55\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x55\x72\x69\x6e\x67\x55\x74\x69" +"\x6c\x64\x65\x57\x61\x63\x75\x74\x65\x57\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x57\x64\x69\x65\x72\x65\x73\x69\x73\x57\x67\x72" +"\x61\x76\x65\x58\x69\x59\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x59\x67\x72\x61\x76\x65\x5a\x61\x63\x75\x74\x65\x5a\x64\x6f\x74" +"\x61\x63\x63\x65\x6e\x74\x5a\x65\x74\x61\x61\x62\x72\x65\x76\x65\x61\x65\x61\x63\x75\x74\x65\x61\x66\x69\x69\x30\x30\x32\x30\x38" +"\x61\x66\x69\x69\x31\x30\x30\x31\x37\x61\x66\x69\x69\x31\x30\x30\x31\x38\x61\x66\x69\x69\x31\x30\x30\x31\x39\x61\x66\x69\x69\x31" +"\x30\x30\x32\x30\x61\x66\x69\x69\x31\x30\x30\x32\x31\x61\x66\x69\x69\x31\x30\x30\x32\x32\x61\x66\x69\x69\x31\x30\x30\x32\x33\x61" +"\x66\x69\x69\x31\x30\x30\x32\x34\x61\x66\x69\x69\x31\x30\x30\x32\x35\x61\x66\x69\x69\x31\x30\x30\x32\x36\x61\x66\x69\x69\x31\x30" +"\x30\x32\x37\x61\x66\x69\x69\x31\x30\x30\x32\x38\x61\x66\x69\x69\x31\x30\x30\x32\x39\x61\x66\x69\x69\x31\x30\x30\x33\x30\x61\x66" +"\x69\x69\x31\x30\x30\x33\x31\x61\x66\x69\x69\x31\x30\x30\x33\x32\x61\x66\x69\x69\x31\x30\x30\x33\x33\x61\x66\x69\x69\x31\x30\x30" +"\x33\x34\x61\x66\x69\x69\x31\x30\x30\x33\x35\x61\x66\x69\x69\x31\x30\x30\x33\x36\x61\x66\x69\x69\x31\x30\x30\x33\x37\x61\x66\x69" +"\x69\x31\x30\x30\x33\x38\x61\x66\x69\x69\x31\x30\x30\x33\x39\x61\x66\x69\x69\x31\x30\x30\x34\x30\x61\x66\x69\x69\x31\x30\x30\x34" +"\x31\x61\x66\x69\x69\x31\x30\x30\x34\x32\x61\x66\x69\x69\x31\x30\x30\x34\x33\x61\x66\x69\x69\x31\x30\x30\x34\x34\x61\x66\x69\x69" +"\x31\x30\x30\x34\x35\x61\x66\x69\x69\x31\x30\x30\x34\x36\x61\x66\x69\x69\x31\x30\x30\x34\x37\x61\x66\x69\x69\x31\x30\x30\x34\x38" +"\x61\x66\x69\x69\x31\x30\x30\x34\x39\x61\x66\x69\x69\x31\x30\x30\x35\x30\x61\x66\x69\x69\x31\x30\x30\x35\x31\x61\x66\x69\x69\x31" +"\x30\x30\x35\x32\x61\x66\x69\x69\x31\x30\x30\x35\x33\x61\x66\x69\x69\x31\x30\x30\x35\x34\x61\x66\x69\x69\x31\x30\x30\x35\x35\x61" +"\x66\x69\x69\x31\x30\x30\x35\x36\x61\x66\x69\x69\x31\x30\x30\x35\x37\x61\x66\x69\x69\x31\x30\x30\x35\x38\x61\x66\x69\x69\x31\x30" +"\x30\x35\x39\x61\x66\x69\x69\x31\x30\x30\x36\x30\x61\x66\x69\x69\x31\x30\x30\x36\x31\x61\x66\x69\x69\x31\x30\x30\x36\x32\x61\x66" +"\x69\x69\x31\x30\x30\x36\x35\x61\x66\x69\x69\x31\x30\x30\x36\x36\x61\x66\x69\x69\x31\x30\x30\x36\x37\x61\x66\x69\x69\x31\x30\x30" +"\x36\x38\x61\x66\x69\x69\x31\x30\x30\x36\x39\x61\x66\x69\x69\x31\x30\x30\x37\x30\x61\x66\x69\x69\x31\x30\x30\x37\x31\x61\x66\x69" +"\x69\x31\x30\x30\x37\x32\x61\x66\x69\x69\x31\x30\x30\x37\x33\x61\x66\x69\x69\x31\x30\x30\x37\x34\x61\x66\x69\x69\x31\x30\x30\x37" +"\x35\x61\x66\x69\x69\x31\x30\x30\x37\x36\x61\x66\x69\x69\x31\x30\x30\x37\x37\x61\x66\x69\x69\x31\x30\x30\x37\x38\x61\x66\x69\x69" +"\x31\x30\x30\x37\x39\x61\x66\x69\x69\x31\x30\x30\x38\x30\x61\x66\x69\x69\x31\x30\x30\x38\x31\x61\x66\x69\x69\x31\x30\x30\x38\x32" +"\x61\x66\x69\x69\x31\x30\x30\x38\x33\x61\x66\x69\x69\x31\x30\x30\x38\x34\x61\x66\x69\x69\x31\x30\x30\x38\x35\x61\x66\x69\x69\x31" +"\x30\x30\x38\x36\x61\x66\x69\x69\x31\x30\x30\x38\x37\x61\x66\x69\x69\x31\x30\x30\x38\x38\x61\x66\x69\x69\x31\x30\x30\x38\x39\x61" +"\x66\x69\x69\x31\x30\x30\x39\x30\x61\x66\x69\x69\x31\x30\x30\x39\x31\x61\x66\x69\x69\x31\x30\x30\x39\x32\x61\x66\x69\x69\x31\x30" +"\x30\x39\x33\x61\x66\x69\x69\x31\x30\x30\x39\x34\x61\x66\x69\x69\x31\x30\x30\x39\x35\x61\x66\x69\x69\x31\x30\x30\x39\x36\x61\x66" +"\x69\x69\x31\x30\x30\x39\x37\x61\x66\x69\x69\x31\x30\x30\x39\x38\x61\x66\x69\x69\x31\x30\x30\x39\x39\x61\x66\x69\x69\x31\x30\x31" +"\x30\x30\x61\x66\x69\x69\x31\x30\x31\x30\x31\x61\x66\x69\x69\x31\x30\x31\x30\x32\x61\x66\x69\x69\x31\x30\x31\x30\x33\x61\x66\x69" +"\x69\x31\x30\x31\x30\x34\x61\x66\x69\x69\x31\x30\x31\x30\x35\x61\x66\x69\x69\x31\x30\x31\x30\x36\x61\x66\x69\x69\x31\x30\x31\x30" +"\x37\x61\x66\x69\x69\x31\x30\x31\x30\x38\x61\x66\x69\x69\x31\x30\x31\x30\x39\x61\x66\x69\x69\x31\x30\x31\x31\x30\x61\x66\x69\x69" +"\x31\x30\x31\x34\x35\x61\x66\x69\x69\x31\x30\x31\x39\x33\x61\x66\x69\x69\x31\x30\x38\x34\x36\x61\x66\x69\x69\x36\x31\x32\x34\x38" +"\x61\x66\x69\x69\x36\x31\x32\x38\x39\x61\x66\x69\x69\x36\x31\x33\x35\x32\x61\x6c\x70\x68\x61\x61\x6c\x70\x68\x61\x74\x6f\x6e\x6f" +"\x73\x61\x6d\x61\x63\x72\x6f\x6e\x61\x6e\x67\x6c\x65\x6c\x65\x66\x74\x61\x6e\x67\x6c\x65\x72\x69\x67\x68\x74\x61\x6f\x67\x6f\x6e" +"\x65\x6b\x61\x70\x70\x72\x6f\x78\x65\x71\x75\x61\x6c\x61\x72\x69\x6e\x67\x61\x63\x75\x74\x65\x61\x72\x72\x6f\x77\x62\x6f\x74\x68" +"\x61\x72\x72\x6f\x77\x64\x6f\x77\x6e\x61\x72\x72\x6f\x77\x6c\x65\x66\x74\x61\x72\x72\x6f\x77\x72\x69\x67\x68\x74\x61\x72\x72\x6f" +"\x77\x75\x70\x61\x72\x72\x6f\x77\x75\x70\x64\x6e\x61\x72\x72\x6f\x77\x75\x70\x64\x6e\x62\x73\x65\x62\x65\x74\x61\x63\x61\x63\x75" +"\x74\x65\x63\x63\x61\x72\x6f\x6e\x63\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x63\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x63\x68\x69" +"\x63\x69\x72\x63\x6c\x65\x6d\x75\x6c\x74\x69\x70\x6c\x79\x63\x6c\x75\x62\x64\x63\x61\x72\x6f\x6e\x64\x63\x72\x6f\x61\x74\x64\x65" +"\x6c\x74\x61\x64\x69\x61\x6d\x6f\x6e\x64\x64\x69\x65\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73\x65\x62\x72\x65\x76\x65\x65\x63\x61" +"\x72\x6f\x6e\x65\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x65\x6c\x65\x6d\x65\x6e\x74\x65\x6d\x61\x63\x72\x6f\x6e\x65\x6e\x67\x65\x6f" +"\x67\x6f\x6e\x65\x6b\x65\x70\x73\x69\x6c\x6f\x6e\x65\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x65\x71\x75\x69\x76\x61\x6c\x65" +"\x6e\x63\x65\x65\x73\x74\x69\x6d\x61\x74\x65\x64\x65\x74\x61\x65\x74\x61\x74\x6f\x6e\x6f\x73\x65\x78\x63\x6c\x61\x6d\x64\x62\x6c" +"\x65\x78\x69\x73\x74\x65\x6e\x74\x69\x61\x6c\x66\x65\x6d\x61\x6c\x65\x66\x72\x61\x6e\x63\x67\x61\x6d\x6d\x61\x67\x62\x72\x65\x76" +"\x65\x67\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x67\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x67\x64\x6f\x74\x61\x63\x63\x65" +"\x6e\x74\x67\x72\x65\x61\x74\x65\x72\x65\x71\x75\x61\x6c\x68\x62\x61\x72\x68\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x68\x65\x61" +"\x72\x74\x68\x6f\x75\x73\x65\x69\x62\x72\x65\x76\x65\x69\x6a\x69\x6d\x61\x63\x72\x6f\x6e\x69\x6e\x66\x69\x6e\x69\x74\x79\x69\x6e" +"\x74\x65\x67\x72\x61\x6c\x69\x6e\x74\x65\x67\x72\x61\x6c\x62\x74\x69\x6e\x74\x65\x67\x72\x61\x6c\x74\x70\x69\x6e\x74\x65\x72\x73" +"\x65\x63\x74\x69\x6f\x6e\x69\x6e\x76\x73\x6d\x69\x6c\x65\x66\x61\x63\x65\x69\x6f\x67\x6f\x6e\x65\x6b\x69\x6f\x74\x61\x69\x6f\x74" +"\x61\x64\x69\x65\x72\x65\x73\x69\x73\x69\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73\x69\x6f\x74\x61\x74\x6f" +"\x6e\x6f\x73\x69\x74\x69\x6c\x64\x65\x6a\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x6b\x61\x70\x70\x61\x6b\x63\x6f\x6d\x6d\x61\x61" +"\x63\x63\x65\x6e\x74\x6b\x67\x72\x65\x65\x6e\x6c\x61\x6e\x64\x69\x63\x6c\x61\x63\x75\x74\x65\x6c\x61\x6d\x62\x64\x61\x6c\x63\x61" +"\x72\x6f\x6e\x6c\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6c\x64\x6f\x74\x6c\x65\x73\x73\x65\x71\x75\x61\x6c\x6c\x69\x72\x61" +"\x6c\x6f\x6e\x67\x73\x6d\x61\x6c\x65\x6d\x69\x6e\x75\x74\x65\x6d\x75\x73\x69\x63\x61\x6c\x6e\x6f\x74\x65\x6d\x75\x73\x69\x63\x61" +"\x6c\x6e\x6f\x74\x65\x64\x62\x6c\x6e\x61\x63\x75\x74\x65\x6e\x61\x70\x6f\x73\x74\x72\x6f\x70\x68\x65\x6e\x63\x61\x72\x6f\x6e\x6e" +"\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6e\x6f\x74\x65\x6c\x65\x6d\x65\x6e\x74\x6e\x6f\x74\x65\x71\x75\x61\x6c\x6e\x75\x6f" +"\x62\x72\x65\x76\x65\x6f\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x6f\x6d\x61\x63\x72\x6f\x6e\x6f\x6d\x65\x67\x61\x6f\x6d" +"\x65\x67\x61\x74\x6f\x6e\x6f\x73\x6f\x6d\x69\x63\x72\x6f\x6e\x6f\x6d\x69\x63\x72\x6f\x6e\x74\x6f\x6e\x6f\x73\x6f\x72\x74\x68\x6f" +"\x67\x6f\x6e\x61\x6c\x6f\x73\x6c\x61\x73\x68\x61\x63\x75\x74\x65\x70\x61\x72\x74\x69\x61\x6c\x64\x69\x66\x66\x70\x65\x73\x65\x74" +"\x61\x70\x68\x69\x70\x69\x70\x72\x6f\x64\x75\x63\x74\x70\x72\x6f\x70\x65\x72\x73\x75\x62\x73\x65\x74\x70\x72\x6f\x70\x65\x72\x73" +"\x75\x70\x65\x72\x73\x65\x74\x70\x73\x69\x71\x75\x6f\x74\x65\x72\x65\x76\x65\x72\x73\x65\x64\x72\x61\x63\x75\x74\x65\x72\x61\x64" +"\x69\x63\x61\x6c\x72\x63\x61\x72\x6f\x6e\x72\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x72\x65\x76\x6c\x6f\x67\x69\x63\x61\x6c" +"\x6e\x6f\x74\x72\x68\x6f\x73\x61\x63\x75\x74\x65\x73\x63\x65\x64\x69\x6c\x6c\x61\x73\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x73" +"\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x73\x65\x63\x6f\x6e\x64\x73\x69\x67\x6d\x61\x73\x6d\x69\x6c\x65\x66\x61\x63\x65\x73" +"\x70\x61\x64\x65\x73\x75\x6d\x6d\x61\x74\x69\x6f\x6e\x73\x75\x6e\x74\x61\x75\x74\x62\x61\x72\x74\x63\x61\x72\x6f\x6e\x74\x63\x6f" +"\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x74\x68\x65\x74\x61\x74\x6f\x6e\x6f\x73\x75\x62\x72\x65\x76\x65\x75\x68\x75\x6e\x67\x61\x72" +"\x75\x6d\x6c\x61\x75\x74\x75\x6d\x61\x63\x72\x6f\x6e\x75\x6e\x64\x65\x72\x73\x63\x6f\x72\x65\x64\x62\x6c\x75\x6e\x69\x30\x30\x41" +"\x30\x75\x6e\x69\x30\x30\x41\x44\x75\x6e\x69\x30\x32\x31\x41\x75\x6e\x69\x30\x32\x31\x42\x75\x6e\x69\x30\x32\x43\x39\x75\x6e\x69" +"\x30\x33\x38\x37\x75\x6e\x69\x30\x33\x39\x34\x75\x6e\x69\x30\x33\x41\x39\x75\x6e\x69\x30\x33\x42\x43\x75\x6e\x69\x30\x33\x43\x32" +"\x75\x6e\x69\x30\x34\x30\x30\x75\x6e\x69\x30\x34\x30\x44\x75\x6e\x69\x30\x34\x35\x30\x75\x6e\x69\x30\x34\x35\x44\x75\x6e\x69\x30" +"\x34\x39\x32\x75\x6e\x69\x30\x34\x39\x33\x75\x6e\x69\x30\x34\x39\x36\x75\x6e\x69\x30\x34\x39\x37\x75\x6e\x69\x30\x34\x39\x38\x75" +"\x6e\x69\x30\x34\x39\x39\x75\x6e\x69\x30\x34\x39\x41\x75\x6e\x69\x30\x34\x39\x42\x75\x6e\x69\x30\x34\x39\x43\x75\x6e\x69\x30\x34" +"\x39\x44\x75\x6e\x69\x30\x34\x41\x30\x75\x6e\x69\x30\x34\x41\x31\x75\x6e\x69\x30\x34\x41\x32\x75\x6e\x69\x30\x34\x41\x33\x75\x6e" +"\x69\x30\x34\x41\x41\x75\x6e\x69\x30\x34\x41\x42\x75\x6e\x69\x30\x34\x41\x45\x75\x6e\x69\x30\x34\x41\x46\x75\x6e\x69\x30\x34\x42" +"\x30\x75\x6e\x69\x30\x34\x42\x31\x75\x6e\x69\x30\x34\x42\x32\x75\x6e\x69\x30\x34\x42\x33\x75\x6e\x69\x30\x34\x42\x36\x75\x6e\x69" +"\x30\x34\x42\x37\x75\x6e\x69\x30\x34\x42\x38\x75\x6e\x69\x30\x34\x42\x39\x75\x6e\x69\x30\x34\x42\x41\x75\x6e\x69\x30\x34\x42\x42" +"\x75\x6e\x69\x30\x34\x43\x30\x75\x6e\x69\x30\x34\x43\x42\x75\x6e\x69\x30\x34\x43\x43\x75\x6e\x69\x30\x34\x44\x38\x75\x6e\x69\x30" +"\x34\x45\x32\x75\x6e\x69\x30\x34\x45\x33\x75\x6e\x69\x30\x34\x45\x38\x75\x6e\x69\x30\x34\x45\x39\x75\x6e\x69\x30\x34\x45\x45\x75" +"\x6e\x69\x30\x34\x45\x46\x75\x6e\x69\x32\x30\x33\x45\x75\x6e\x69\x32\x30\x41\x46\x75\x6e\x69\x32\x31\x32\x36\x75\x6e\x69\x32\x32" +"\x31\x35\x75\x6e\x69\x32\x32\x31\x39\x75\x6e\x69\x32\x32\x32\x37\x75\x6e\x69\x32\x32\x32\x38\x75\x6e\x69\x32\x32\x39\x35\x75\x6e" +"\x69\x32\x35\x41\x31\x75\x6e\x69\x6f\x6e\x75\x6e\x69\x76\x65\x72\x73\x61\x6c\x75\x6f\x67\x6f\x6e\x65\x6b\x75\x70\x73\x69\x6c\x6f" +"\x6e\x75\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x75\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x74" +"\x6f\x6e\x6f\x73\x75\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x75\x72\x69\x6e\x67\x75\x74\x69\x6c\x64\x65\x77\x61\x63\x75\x74" +"\x65\x77\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x77\x64\x69\x65\x72\x65\x73\x69\x73\x77\x67\x72\x61\x76\x65\x78\x69\x79\x63\x69" +"\x72\x63\x75\x6d\x66\x6c\x65\x78\x79\x67\x72\x61\x76\x65\x7a\x61\x63\x75\x74\x65\x7a\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x7a\x65" +"\x74\x61\x31\x2e\x30\x30\x28\x55\x52\x57\x29\x2b\x2b\x2c\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x32\x30\x31\x34\x20\x62\x79\x20" +"\x28\x55\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69\x67\x6e\x20\x26\x20\x44\x65\x76\x65\x6c\x6f\x70\x6d\x65\x6e\x74\x43\x6f\x70\x79" +"\x72\x69\x67\x68\x74\x20\x28\x55\x52\x57\x29\x2b\x2b\x2c\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x32\x30\x31\x34\x20\x62\x79\x20" +"\x28\x55\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69\x67\x6e\x20\x26\x20\x44\x65\x76\x65\x6c\x6f\x70\x6d\x65\x6e\x74\x4e\x69\x6d\x62" +"\x75\x73\x20\x53\x61\x6e\x73\x20\x42\x6f\x6c\x64\x4e\x69\x6d\x62\x75\x73\x20\x53\x61\x6e\x73\x00\xa6\x02\x00\x01\x00\x0c\x00\x19" +"\x00\x31\x00\x36\x00\x3a\x00\x43\x00\x8e\x00\xe0\x00\xfa\x00\xff\x01\x23\x01\x27\x01\x4d\x01\x54\x01\x59\x01\x5e\x01\x66\x01\x6c" +"\x01\x72\x01\x7a\x01\xe6\x02\x40\x02\x5a\x02\x66\x02\x72\x02\x7b\x02\x80\x02\xe4\x03\x25\x03\x44\x03\x60\x03\x80\x03\x87\x03\x8b" +"\x03\x90\x03\x94\x03\x9b\x03\xa4\x03\xb2\x03\xbb\x03\xc2\x03\xc8\x03\xce\x03\xd3\x03\xf9\x04\x0e\x04\x18\x04\x28\x04\x3b\x04\x49" +"\x04\x5a\x04\x67\x04\x87\x04\xa0\x04\xa4\x04\xa8\x04\xab\x04\xb3\x04\xc2\x04\xcf\x04\xd7\x04\xdf\x04\xe7\x04\xf3\x04\xf9\x05\x04" +"\x05\x0f\x05\x16\x05\x1f\x05\x25\x05\x2b\x05\x4d\x05\x54\x05\xb3\x05\xb8\x05\xc0\x06\x06\x06\x3b\x06\x77\x06\xb1\x06\xe9\x07\x16" +"\x07\x47\x07\x77\x07\x7b\x07\xa7\x07\xc2\x07\xc7\x07\xf1\x08\x1b\x08\x46\x08\x4c\x08\x67\x08\x73\x08\x9b\x08\xb7\x08\xbb\x08\xc4" +"\x08\xdc\x08\xfb\x09\x00\x09\x1e\x09\x27\x09\x3f\x09\x5c\x09\x6c\x09\x88\x09\x9f\x09\xb9\x09\xd3\x09\xd6\x09\xef\x0a\x07\x0a\x17" +"\x0a\x2e\x0a\x42\x0a\x57\x0a\x6c\x0a\x81\x0a\x94\x0a\xa8\x0a\xbc\x0a\xd0\x0a\xdd\x0a\xf0\x0b\x03\x0b\x15\x0b\x27\x0b\x39\x0b\x49" +"\x0b\x53\x0b\x60\x0b\x70\x0b\x7f\x0b\x88\x0b\x96\x0b\xa1\x0b\xaf\x0b\xb9\x0b\xc5\x0b\xd2\x0b\xdf\x0b\xe4\x0b\xf1\x0b\xfd\x0c\x07" +"\x0c\x12\x0c\x1d\x0c\x28\x0c\x33\x0c\x36\x0c\x3d\x0c\x47\x0c\x51\x0c\x5b\x0c\x65\x0c\x6f\x0c\x77\x0c\x80\x0c\x89\x0c\x92\x0c\x9b" +"\x0c\xa4\x0c\xad\x0c\xb3\x0c\xb9\x15\xfb\x12\x06\x45\xfb\x2a\x05\xd1\x06\x0e\x15\xf7\x12\xfb\x2a\x05\xd1\x06\x45\xf7\x2a\x05\x0e" +"\x15\xfb\x04\xce\x07\x8c\x59\x75\x6d\x5d\x82\x08\x5d\x07\xd1\x8d\xc2\xcb\x88\xd9\x08\xf2\x07\x0e\x15\x25\x27\xb1\x1d\xf8\xb0\x15" +"\x0b\x45\x1d\xf7\x4e\xf7\x0e\x45\x1d\x0e\xf8\xa0\x9c\x15\x73\xa2\x83\x9b\xa6\x1a\xf7\xc0\x07\xf7\x02\x40\xc3\xfb\x26\xfb\x26\x3f" +"\x4d\xfb\x11\x82\x1e\xf7\x1b\x06\xc3\x92\xa2\x9d\xd0\x1b\xc1\xa6\x79\x67\x79\x82\x7c\x7c\x82\x62\x1d\x20\x79\x57\x54\x2a\x1a\x2a" +"\xcc\x4a\xee\xc7\xc1\xa4\xbf\xbd\x1e\x6f\x8e\x81\x98\x7b\x1e\xf7\x2c\x06\x88\x1d\x0b\xf8\xa0\xf7\x76\x15\x8c\x97\x8b\x90\x92\x1a" +"\xc1\x83\xbd\x7e\xb1\x1e\xed\x67\x34\xc6\xfb\x01\x1b\xfb\x2f\x2c\xfb\x04\xfb\x49\xfb\x41\xe9\x21\xf7\x2d\xf7\x0d\xed\xcf\xf6\xaa" +"\x1f\xfb\x1e\x06\x60\x7a\x64\x72\x58\x1b\x63\x6b\x9c\xa9\x77\x1f\x7e\x9f\x86\xa3\x89\xbe\x08\x8d\xe8\x15\xde\x94\xae\xb3\xc9\x1b" +"\xcb\xb1\x60\x3b\x92\x1f\x0b\xf7\xc1\x54\x1d\x8c\xfb\x05\x15\xd8\xbd\x46\x21\x26\x57\x45\x40\x3f\x58\xd0\xf3\xf3\xbe\xd0\xd7\x1f" +"\x0b\xf7\x69\x31\x1d\x0b\xf8\x37\xf7\xa2\x15\xf7\x7b\xf8\x5f\x05\xfb\x3c\x06\xfb\x1f\xfb\xd6\xfb\x29\xf7\xd6\x05\xfb\x3b\x06\xf7" +"\x86\xfc\x5f\x05\xfb\xa2\xf7\x2a\x07\x0b\x15\x20\x52\x1d\x15\x58\x63\x64\x58\x59\xb3\x63\xbd\xbc\xb4\xb3\xbc\xbf\x64\xb2\x59\x1f" +"\x5b\x04\xa2\x9d\x79\x73\x74\x78\x78\x75\x73\x78\x9e\xa2\xa3\x9e\x9d\xa3\x1f\x0b\xfb\x20\xfc\xb0\xf7\x20\x0b\xf7\x2a\xf7\xdf\x0b" +"\xf9\x5f\x46\x1d\x0b\xf7\x63\x24\x1d\x2d\x1d\x06\x0b\x5c\x1d\xf7\x2a\x06\x0b\xfd\x6d\xf7\x2a\x06\x0b\xfb\x2a\xfb\x26\xf7\x2a\x06" +"\x0b\xf8\x8d\xf8\x02\x15\xf7\x06\x89\x33\xd0\xfb\x25\x1b\xfb\x1d\x36\x46\xfb\x03\x67\x96\x6c\x9e\x76\x1f\x9e\x78\x9c\x82\xbf\x7a" +"\xf7\x3b\x57\x18\xae\x80\x97\x80\x75\x1a\x6a\x64\x77\x4a\x66\x6f\x91\x98\x79\x1e\x7c\x96\x85\x96\x85\xa8\x08\xfb\x1d\x06\xfb\x0b" +"\x8f\xe2\x4e\xf7\x38\x1b\xd6\xc4\x9b\xab\xb3\x1f\xb3\xab\xa3\xbd\xc0\x1a\xd1\x68\xb8\x44\xa0\x1e\xfb\x45\xbe\x05\x64\x97\x81\x93" +"\xa1\x1a\xa9\xab\x9f\xbc\xce\xac\x73\x5a\x8c\x1e\x0b\xf9\x5b\xf8\x1c\x15\xfb\xb8\xfb\x11\xf7\x3a\x06\x87\x62\x81\x72\x75\x71\x08" +"\x5f\x67\x53\x71\x52\x1b\xfb\x0e\x35\xf5\xf7\x2a\xf7\x31\xd7\xea\xf7\x14\xbf\xb7\x7c\x6e\xac\x1f\xa0\x79\x96\x7a\x98\x65\x08\xf7" +"\x21\x06\xf7\x2b\x79\xfb\x0e\xe9\xfb\x44\x1b\xfb\x66\xfb\x23\xfb\x2f\xfb\x77\xfb\x71\xf7\x24\xfb\x35\xf7\x59\xed\xcd\xae\xdd\xc3" +"\x1f\x9d\x2b\x05\xe5\x06\x0b\xf8\x9e\xf7\xe6\x15\xf7\x18\x81\x34\xda\xfb\x1c\x1b\xfb\x36\x2e\x21\xfb\x4c\xfb\x46\xe8\x23\x7c\x1d" +"\x0b\xca\x9a\x1d\xfb\xe1\xf7\x20\xf7\xfe\x89\x1d\x0b\xf7\x7a\x5c\x1d\xf8\x87\xf7\x11\xfb\xf1\x06\x0b\x15\x2d\x1d\x06\xf9\x6d\xbf" +"\x1d\x0b\xf8\x3f\xfb\x20\x0b\xf7\x7a\xf7\xb5\x15\xf7\x40\x06\xcc\xa7\x71\x4f\x1f\x6d\x07\x8a\x78\x8b\x79\x80\x1a\x46\x8f\x76\x9d" +"\x68\x1e\xf7\x35\xa6\x06\x74\x98\x82\x9a\xab\x1a\x87\xf7\x6b\x87\x95\x2e\xb3\x08\xdd\xab\xb4\xc6\xe4\x1a\xc5\x77\xc0\x68\xaf\x1e" +"\xad\x6a\x5d\x9b\x4d\x1b\xfc\x1b\x32\x1d\xf8\x32\x04\xf7\x52\xf7\x49\x07\xb6\x9c\x87\x7c\x9e\x1f\x9d\x7c\x94\x72\x69\x1a\x68\x82" +"\x6f\x79\x7c\x1e\x7d\x7a\x78\x86\x60\x1b\x0b\xf7\x52\x24\x1d\xfb\x20\xfb\xdc\x06\x35\x9b\x56\xaf\x67\x1e\x63\xb3\xcc\x77\xe1\x1b" +"\xe5\xcf\xa2\xb9\xb2\x1f\xaa\xaf\x97\xb8\xe0\x1a\xf7\xdc\xfb\x20\xfb\xd6\x07\x54\x85\x74\x79\x77\x1e\x78\x79\x6f\x80\x6c\x1b\x6c" +"\x6e\x96\x9d\x7a\x1f\x78\x9f\x85\xa1\xc4\x1a\x0b\xca\x24\x1d\xfc\xb0\xf7\x20\xf7\xb3\x07\xdd\xb4\xb4\xdd\x9a\x95\xb9\x1d\x88\x8b" +"\x85\x1b\x4b\x54\x61\x42\x6c\x1f\xf5\x07\x0b\xcc\x16\xf7\x2a\xe4\x06\xf7\xb5\xf7\xfa\x05\xfc\x53\x48\x1d\x30\x07\xfb\xb5\xfb\xfc" +"\x05\xf8\x57\xfb\x2a\x07\x0b\xd1\x16\xf7\x20\xd2\x06\xf7\x57\xf7\x92\x05\xfb\xd9\xf7\x20\xf8\xb0\xfb\x20\x44\x07\xfb\x57\xfb\x92" +"\x05\xf7\xd9\xfb\x20\x07\x0b\xf7\xcd\xf8\xa5\x67\x1d\x0b\xf9\x7b\x25\x1d\xf8\x15\x9d\x1d\x0b\xf9\x89\x20\x1d\xf7\x63\xf9\x6d\x64" +"\x1d\x0b\x15\xfb\x02\xfb\x0e\xf7\x02\x06\x0b\x15\xfc\x3b\xfd\x73\x05\xe2\x06\xf8\x3b\xf9\x73\x05\x0b\xec\x05\x3d\x06\xf2\xfb\x2a" +"\x05\x0e\xf7\x2a\xf9\x6d\xfb\x2a\x0b\x7f\x89\x86\x7c\x1f\x0b\x15\xd2\xba\x47\x23\x0b\xe5\xfb\x83\x05\x0b\xf7\xc1\xf8\xa5\x15\xb5" +"\x1d\xfb\xe0\x06\x36\xb8\x61\xe7\xab\xa2\x8e\x93\xa5\x1e\xed\x07\x89\x7d\x84\x8a\x80\x1b\x66\x82\x96\xbb\x1f\xf7\xba\xd9\x07\x0b" +"\x1f\x43\xa4\x05\x98\x67\x8a\x8b\x79\x1b\x53\x68\x5d\x3d\x87\x1f\xca\x06\xab\x90\x0b\x99\x1d\xf8\xb5\xf7\x11\xfc\x1f\x06\x0b\x63" +"\x1d\xd8\x06\xdd\xef\xdd\x27\x05\xd8\x06\x24\xf7\x2a\x05\x0e\x15\xd8\xbd\x46\x21\x26\x57\x45\x40\x3f\x58\xd0\xf3\xf3\xbe\xd0\xd7" +"\x1f\x0e\x68\x5d\x3d\x87\x1f\xca\x06\xab\x90\x96\x98\xa3\x1b\x0b\xfb\x2a\x05\xd7\x06\xdd\xef\xdd\x27\x05\xd9\x06\x24\xf7\x2a\x05" +"\x0e\xf7\x1e\xf0\xea\xf7\x17\xf7\x17\x27\xea\x59\x1d\x0b\xf8\xb9\x15\xfb\x39\x26\xfb\x01\xfb\x45\xfb\x46\xf0\xfb\x00\xf7\x3a\xf7" +"\x39\xf1\xf7\x00\xf7\x42\xf7\x4b\x28\xf6\xfb\x3d\x1f\x0b\xf7\xdf\x15\xfb\xdf\xf7\x2a\xf9\x6d\xfb\x2b\xfb\xa5\xfb\xb4\xf7\xa5\xfb" +"\x2a\xfd\x6d\x2e\x1d\x07\x0b\x77\x95\x1d\x0b\xb4\x1d\x6f\x0b\xbf\x1d\x0e\xfb\x1f\x1f\xfb\x34\xf7\xa9\x0b\x46\x1e\x47\xca\xdd\x6a" +"\xf3\x1b\xf3\xdd\xac\xcf\xca\x1f\x0b\xa9\x9b\xaa\x9b\xb3\x1b\xc4\xa6\x70\x44\x9b\x1f\x0b\xf9\x6d\x15\xfb\x2a\xfd\x6d\x0b\x15\xfb" +"\xbf\x3c\xf7\xbf\x06\x0b\xfb\x1a\x06\x45\x7a\x6f\x70\x0b\x1f\xd2\x71\x05\x83\xa0\x9e\x87\x9a\x1b\xc6\x0b\xf8\xf0\xfb\x2a\x06\x0e" +"\x15\xb3\xa0\x9b\xa3\xb5\x1a\xcd\x51\xbc\x0b\x1f\x78\x81\x8b\x8b\x46\x80\x53\x81\x18\x0b\x15\xfb\x00\xfb\x2a\x05\x0b\x15\xfb\x20" +"\xfd\x6d\xf7\x20\x06\x0b\x26\xfb\x00\xfb\x46\x0b\xf7\x20\xf7\xae\x06\x0b\x15\x38\xc0\x06\xa7\x97\x99\xa5\x98\xc1\x1d\x6d\x6e\x8c" +"\x76\x1b\x2e\x5e\x5f\x30\x1f\x4a\x3f\x2e\xd7\xfc\x48\xf7\x20\xf8\x48\xde\x07\x0b\xf8\x24\xf8\xb0\x69\x1d\x0b\x15\x38\x07\xca\x64" +"\x60\xa8\x52\x1b\x5b\x56\x73\x64\x66\x1f\x55\x53\x6f\x3d\x2c\x1a\xfb\x3a\xe3\xfb\x06\xf7\x15\xc5\xae\x9e\xc6\xbc\x1e\x42\x07\x4a" +"\x5d\x5e\x49\x59\x6c\xa1\xb4\x80\x1e\xfb\x24\x06\x8c\x61\x9a\x6e\xb0\x6d\x08\x68\xb6\xc6\x7a\xd7\x1b\xf7\x30\xe9\xd6\xf7\x11\x1f" +"\xf8\xc2\x07\xfb\x8a\xfb\x00\x15\xcd\xbc\x42\x27\x29\x5c\x48\x45\x4e\x60\xce\xed\xf1\xb6\xd2\xca\x1f\x0b\x6b\x1d\xf7\x77\x0b\x40" +"\x1d\xf7\xe1\xe8\x67\x1d\x0b\x15\x25\x37\x69\x48\x4d\x1f\x4a\x45\x66\x25\xfb\x01\x1a\xfb\x01\xb0\x24\xcc\x5a\x1d\xca\xce\xb2\xf5" +"\xf2\x1a\xf7\x06\x66\xf2\x4a\xd0\x1e\xd0\x4b\x3b\xab\x21\x1b\x8c\xfb\x14\x15\xf7\x0f\xd9\x27\xfb\x32\xfb\x2a\x3a\x27\xfb\x0c\xfb" +"\x0e\x3c\xef\xf7\x2e\xf7\x2e\xda\xef\xf7\x0e\x1f\x0b\x16\xf7\x20\xf9\x6d\xfb\x20\xfb\x97\x06\xc1\x68\x5d\xa4\x47\x1b\xfb\x15\x29" +"\xfb\x10\xfb\x37\x42\xa1\x41\xaf\x57\x1f\x56\xb0\xcd\x6a\xcd\x1b\xcf\xb9\xa3\xc1\xae\x1f\xfb\x0a\xf8\x0d\xa8\x1d\xf0\xbb\xd0\xd1" +"\x1f\x0b\xd8\x16\xf7\xb1\x06\xf7\x03\xd1\xa5\xc6\xbd\x1f\xc4\xcf\xaa\xed\xf7\x06\x1a\xf7\x05\x6c\xed\x52\xd0\x1e\xc6\x59\x46\xa4" +"\xfb\x04\x1b\xfb\xb1\x06\xf7\x2a\xfc\xf0\x15\xf8\x73\xf7\x1b\x07\xf7\x05\xc3\x3c\xfb\x35\xfb\x34\x53\x3c\xfb\x05\x1f\x0b\xf8\x42" +"\xf7\x2c\x15\xfb\x2c\xf8\xac\xf7\x11\xfc\x16\xf7\x51\xf7\xe7\xf7\x11\xfb\xe7\xf7\x39\xf8\x02\xf7\x11\xfd\x3e\x07\xfb\x9b\xfd\x6d" +"\x05\xf7\x2d\x06\xc0\xf7\x2c\x05\xf7\x73\xf7\x11\x15\xfb\x49\x06\xf7\x06\xf7\xdb\x05\xce\x06\x0b\xb0\x79\x1b\x82\x84\x83\x81\x83" +"\x8e\x88\x9c\x7c\x1f\xba\x63\xad\x5f\xb4\x42\x08\x77\x96\x91\x84\x92\x1b\x93\x90\x8f\x93\x90\x1f\xc6\xf0\xa1\xa7\xc7\xbd\x08\x94" +"\x93\x8d\x8f\x92\x1a\x95\x84\x93\x82\x85\x6a\x7f\x83\x7b\x1e\x0b\x61\x1d\x3c\x3c\x51\x5a\x49\x62\x9c\x71\xb2\x77\x1e\x5a\x70\x76" +"\x6b\x59\x1a\x3a\xc9\x53\xe4\xe4\xc9\xc3\xdc\xbd\x76\xab\x5a\xa6\x1e\x3b\xf7\x1a\x15\xb0\xa5\x75\x6a\x6a\x71\x74\x0b\x85\xda\x82" +"\xe8\x1e\x87\xb5\x89\xa0\x98\x1a\x9d\x91\x95\x97\x91\x8d\x8a\x80\x96\x1e\x81\x95\x97\x86\x98\x1b\xa6\xa0\xa1\xa7\xa9\x6f\xa3\x68" +"\x60\x6c\x6c\x51\x7d\x1f\x7b\x4b\x86\x46\xfb\x45\x1a\x0b\xbe\x16\xf7\x23\x06\xce\x8c\xbd\xab\xa9\xc7\xf7\xb0\xf9\x10\x18\xfb\x2f" +"\x06\xfb\x2e\xfc\x05\xfb\x2f\xf8\x05\x05\xfb\x2f\x06\xf7\x7d\xfc\x9e\x78\x63\x7d\x67\x89\x89\x73\x87\x19\xfb\x15\x06\x0b\xf7\x76" +"\x76\x1d\xf7\xa4\x15\xf7\x44\xf7\xa0\x05\xfb\x3c\x06\x34\xfb\x37\x33\xf7\x37\x05\xfb\x3c\x06\xf7\x44\xfb\xa0\xfb\x48\xfb\xa4\x05" +"\xf7\x3c\x06\xe7\xf7\x3c\xe6\xfb\x3c\x05\xf7\x3c\x06\x0e\xf7\x98\x15\xf7\x4f\x06\xf7\x1a\xe1\xea\xf7\x28\xf7\x26\x38\xdb\xfb\x2c" +"\x1f\xfb\xd6\x32\x1d\xf8\x15\xa1\x1d\xf7\xe4\x7a\x1d\x0b\x15\xfb\x04\xfc\x1d\xfb\x0b\xf8\x1d\x05\xfb\x2e\x06\xf7\x5d\xfc\xc6\x81" +"\x44\x74\x7c\x30\x8e\x19\xfb\x05\x07\xe7\x98\x8c\x92\xa7\x1f\xc0\x9e\x9f\xa1\xa3\xd1\xc5\x1d\x0b\xf7\x74\xf7\x88\x15\xd6\xd9\xf7" +"\x83\xfb\xd6\x05\xf7\x47\x06\xfb\xd6\xf8\x33\xf7\xb7\xf7\xce\x05\xfb\x45\x06\xfb\xb1\xfb\xd4\x05\xf7\xd4\xfb\x2a\xfd\x6d\xf7\x2a" +"\x07\x0e\xf9\x6d\x15\xfc\xaf\x07\x54\x6e\x6d\x57\x52\x73\xa7\xce\x1e\xd1\xfb\x2a\x43\x07\x3f\x9d\x5c\xb6\x63\x1e\x65\xb5\xc3\x77" +"\xd0\x1b\xf7\x29\xe0\xd8\xf7\x1c\x1f\xf8\xaf\x07\x0b\x83\x1d\xf9\xcb\x58\x1d\xf7\x34\xf7\x17\xe6\xdc\xf7\x15\x98\x1f\x5e\x1d\x53" +"\x1b\x44\x61\xca\xf5\xbf\x95\xba\x9c\xab\x1f\x5b\x1d\x0b\xcd\x9a\x1d\xfc\xbb\xf7\x20\xf8\xd8\x89\x1d\x0b\x06\xf7\x2a\xfb\x11\x15" +"\xf7\x37\x06\xd1\xaf\x6f\x55\x54\x67\x6f\x45\x1f\xfb\x37\x06\xfb\x11\x04\xf7\x47\x06\xd4\xb1\x6b\x4c\x4d\x65\x6b\x42\x1f\xfb\x47" +"\x06\x0e\xf7\x5b\xf7\xde\x15\xf8\x23\xfb\x20\xfd\x6d\xf7\x20\xf7\x45\x07\xc3\xc8\xf7\x15\xfb\x82\x05\xf7\x38\xa7\x1d\x0b\xf9\x7b" +"\x82\x1d\x57\x1d\x75\x91\xa3\x55\x9c\x1d\x0b\x15\x2a\xfb\x0e\xec\x06\xf7\x5b\xf7\x0e\x15\x2a\xfb\x0e\xec\x06\x2a\xf7\xa0\x15\x25" +"\x31\xb1\x1d\x15\xfb\x20\xfc\xef\x06\x6c\x80\x80\x6d\x82\x84\x8c\x8e\x82\x1e\xfb\x04\x07\x88\xa6\xad\x89\xa1\x1b\xe2\xaf\xaf\xe3" +"\x1f\x0b\xf8\x8f\x55\x1d\x0e\xfc\x82\x07\x33\x5e\x61\x2d\x2d\x5e\xb5\xe3\x1e\xf8\x82\xfb\x2a\xfc\x82\x07\x39\xa1\x51\xbc\x5f\x1e" +"\x5b\xc0\xd8\x71\x0b\x15\x53\x06\x5d\x83\x74\x56\x1d\x0e\xf9\x6a\x15\xfb\x2a\xfb\x66\x06\xb4\xfb\xc9\x05\xce\x06\xb5\xf7\xc9\x05" +"\xfc\x06\x04\x33\x1d\x0b\xfb\x3d\xf7\x6d\x15\x3a\x63\x5d\x44\x5c\x6e\xa4\xb3\xb5\xa1\x9f\xc5\x97\x1e\xbb\x94\xb0\x92\x91\x8d\x9b" +"\x93\x19\x0b\x07\xf7\x0c\x4a\xce\xfb\x08\x42\x5a\x71\x4e\x63\x1e\xd9\x07\x0b\x07\x93\x79\x7a\x8e\x79\x1b\x4a\x52\x55\x4e\x65\xa6" +"\x74\xb7\xba\xb9\xa3\xb3\xa7\x1f\xa0\xa8\x93\xa9\xbc\x1a\x0b\x6e\x4f\x69\x1f\xf7\x0a\x6f\x4a\x1d\x29\x5b\x47\x45\x44\x5c\xcf\xef" +"\xf1\xba\xcf\xd2\x1f\x0e\x06\xfb\x97\xfd\x6d\x05\xf7\x2d\x06\xbc\xf7\x27\x05\xf7\x7c\xf7\x11\x15\xfb\x52\x06\xea\xf7\xb1\x05\x0b" +"\x1b\x57\x6b\x9f\xab\x1f\xf7\x71\xfb\x20\xfb\x71\x07\x57\x96\x66\xa1\x71\x1e\x6c\xa8\xc0\x78\xc9\x1b\x0b\x90\x1d\x0e\xf7\x6e\x15" +"\xf7\x3b\xfb\x26\x05\xf7\x06\x07\x26\xe4\xf0\xe4\x05\xf7\x09\x07\xfb\x3b\xfb\x29\x05\x0b\xfb\x11\xdb\x07\x8d\x59\x71\x6e\x53\x81" +"\x08\x5d\x07\xe3\x93\xbe\xc3\x87\xe2\x08\xf7\x01\x07\x0b\xb8\x1d\x31\xb4\xfb\x01\x1b\xfb\x62\xfb\x14\xfb\x27\xfb\x80\x0b\x39\xce" +"\x49\xde\xdc\xcf\xcd\xdb\xdf\x49\xcd\x37\x1f\x3b\x04\xb3\xaa\x6c\x64\x65\x6b\x6c\x0b\x15\xf7\x00\xf7\x2a\x05\x3e\x06\x39\x2a\x39" +"\xec\x05\x3e\x06\xf2\xfb\x2a\x05\x0e\x06\x30\xf7\xa5\x05\xfb\x2c\x06\xf7\x07\xfb\xe5\xfb\x32\xfc\x1c\x05\xf7\x32\x06\x0b\x5f\x1b" +"\x5d\x72\xa0\xb8\x85\x1f\x53\x81\x06\x3f\xc3\x52\xd7\xd6\xc4\xc4\xd6\x1e\x0b\xf7\x50\xf9\x6d\x15\xfb\x1e\xfb\x16\x06\xb3\xfb\x15" +"\x05\xc3\x06\xb5\xf7\x15\x05\x0b\x07\xf8\x7d\xfb\x4a\x05\xf7\x03\x07\xfc\x12\xf7\x17\xf8\x12\xf7\x19\x05\x0e\xd9\x2d\xfb\x25\x3f" +"\x78\x48\x69\x5e\x1e\x77\x71\x76\x7a\x56\x69\x08\xfb\x11\x0b\xf7\xce\x15\xf7\xf1\xf7\x11\xfb\xf1\xf7\x39\xf8\x0d\xf7\x11\xfc\xa3" +"\xfd\x6d\x0b\xf8\xb0\x15\xfc\xb0\xf7\x20\xf7\xd8\x07\xcb\xb7\xb5\xd0\xc7\xa9\x6a\x4b\x1e\x0b\xc0\x1d\xfb\x0d\x04\xfc\x78\xfb\x0b" +"\xf8\x78\x06\x0b\x1f\x78\x57\x05\x75\xcc\xa8\x85\xb8\x1b\xde\xb8\xac\xc7\xb7\x6e\xa6\x5c\x0b\xf8\xf0\x15\xf7\x69\xf7\x11\xfc\xdc" +"\xfb\x11\xf7\x71\xfc\xf0\xf7\x2a\x06\x0b\xf7\xaf\x06\xf5\xd9\xd4\xef\xee\x41\xcf\xfb\x02\x1f\xfb\x23\xf7\x5c\x0b\x1b\x38\x5b\xac" +"\xc6\x1f\xf7\xb5\xfb\x2a\xfb\xb5\x07\xfb\x1f\xf2\x3a\x0b\xf8\x79\x15\xfb\x47\xf7\x74\xfb\x1a\xfb\x74\xfb\x47\xfb\x08\xf7\x47\x0b" +"\x04\xf7\x6f\xf7\x20\x07\xdb\xb0\x68\x41\x40\x66\x68\x3b\x1f\x0e\x94\x89\x87\x97\x1f\xd2\x71\x05\x83\x0b\xfb\x2a\xfb\xa5\xfb\xb5" +"\xf7\xa5\xfb\x2a\x32\x1d\x0b\x15\xf7\x06\xf7\x1c\x07\xa9\xa0\x73\x6a\x6a\x76\x73\x6d\x1f\x0b\xfb\x27\xfb\x25\xfb\x5b\x3a\xa1\x46" +"\xb5\x58\x1e\xa1\x70\x0b\x9f\x7d\x76\x74\x72\x79\x6b\x6f\x0b\x06\xfb\x59\xf7\xe4\xf7\x4c\xf7\x60\x05\xfb\x33\x06\x0b\x4a\x1d\x29" +"\x5b\x47\x45\x45\x5b\xd0\xee\x0b\x73\x76\x94\x9a\x7e\x1e\x80\x99\x86\x9c\x8a\xad\x08\x0b\xfb\x20\xfc\x3f\xfb\x41\x3a\x1d\x06\x0e" +"\xfa\x7f\xf7\xcb\x15\xfe\x86\x23\xfa\x86\x06\x0e\x06\xfb\x04\xf7\xc1\xe6\xf7\x83\x05\xfb\x23\x06\x0b\x15\xfb\x4f\x06\x99\x9c\x91" +"\x91\x93\x92\x91\x90\x0b\xd9\xe8\xb5\x1d\x0b\x7b\x76\x1b\x84\x77\x8e\x8e\x84\x1f\x44\xa4\x05\x0b\x08\x73\xbc\x88\x93\xa0\x1a\xbf" +"\xb4\xb1\xc4\x0b\x06\xa9\x28\x05\xb3\x06\xab\xee\x05\x0e\xc7\xba\xa8\x70\x60\x1e\xfb\xfc\xf7\x20\x0b\xf8\x99\xdc\x15\xfc\x7d\x30" +"\xf8\x7d\x06\x0b\x9f\x1b\xa9\x9f\x7d\x76\x74\x72\x79\x6b\x0b\x3d\xf7\x25\xfb\x20\xfb\x25\x46\x2e\xd0\x0b\x64\x1d\x0e\x71\xa2\xac" +"\xac\xa5\xa1\x0b\x86\xca\x7e\xb3\x6c\xb4\x08\xd5\x53\x0b\x8a\x88\x9e\x1e\xf7\x22\x07\x8c\x83\x0b\x16\xf7\x20\xf7\x77\xf7\x57\xfb" +"\x77\x0b\x1a\x4f\xc1\x68\xea\xa7\x9e\x8d\x92\x0b\xf7\x20\xf7\xd8\x07\xc9\xb8\xb7\xca\x0b\x15\xfc\xec\x46\xf8\xec\x06\x0e\xf7\x2a" +"\xf8\xf0\xf7\x8d\xf7\x11\x0b\x04\xfb\x20\xfb\x11\xf7\x20\x06\x0b\x15\xfc\x78\xfb\x0b\xf8\x78\x06\x0b\x98\x8a\x89\x99\x1e\xf4\x07" +"\x8d\x0b\x1f\x9a\x7f\x94\x78\x75\x1a\x64\x0b\xad\xbb\x6f\xcf\x1b\xf7\x16\xeb\x0b\x06\x30\xfb\xa5\x05\x0b\xf7\x72\xf9\x13\x18\x0b" +"\x01\x00\x01\xe3\x01\x05\x00\x01\x0a\x02\x01\x40\x03\x01\x87\xff\x02\x87\xa0\x02\x8e\x02\x00\x01\x00\x02\x00\x03\x00\x09\x00\x22" +"\x00\x6a\x00\xec\x01\x50\x01\xde\x01\xe4\x02\x13\x02\x43\x02\x6c\x02\x8a\x02\xa7\x02\xab\x02\xb3\x02\xc5\x03\x33\x03\x4b\x03\x91" +"\x03\xf8\x04\x23\x04\x6c\x04\xd6\x05\x01\x05\x6a\x05\xca\x05\xd6\x05\xfb\x06\x0a\x06\x12\x06\x30\x06\x74\x07\x4c\x07\x50\x07\x53" +"\x07\x57\x07\x5b\x07\x5f\x07\x6f\x07\x74\x07\x77\x07\x7a\x07\x7e\x07\x81\x07\x85\x07\x89\x07\x8d\x07\x92\x07\x95\x07\xfb\x07\xff" +"\x08\x03\x08\x07\x08\x0b\x08\x29\x08\x2e\x08\x31\x08\x35\x08\x39\x08\x4e\x08\x5c\x08\x71\x08\x91\x08\x98\x08\xb5\x08\xb9\x08\xfc" +"\x09\x00\x09\x06\x09\x0a\x09\x0f\x09\x13\x09\x17\x09\x1e\x09\x24\x09\x28\x09\x2b\x09\x62\x09\x66\x09\x6a\x09\xa1\x09\xe5\x09\xea" +"\x09\xee\x09\xf3\x09\xf7\x09\xfc\x0a\x01\x0a\x06\x0a\x0a\x0a\x0f\x0a\x62\x0a\x6e\x0a\xc1\x0b\x0e\x0b\x2e\x0b\x85\x0c\x1e\x0c\x23" +"\x0c\x60\x0c\xc0\x0d\x6b\x0d\xd2\x0d\xd7\x0e\x10\x0e\x2f\x0e\x35\x0e\x3c\x0e\x45\x0e\x4e\x0e\x5b\x0e\x6a\x0e\x89\x0e\x8b\x0e\xb6" +"\x0e\xcf\x0e\xd5\x0e\xe0\x0e\xeb\x0f\x0b\x0f\x1a\x0f\x7e\x0f\xc7\x0f\xce\x0f\xd4\x0f\xdc\x0f\xe2\x0f\xea\x0f\xf2\x0f\xfa\x10\x00" +"\x10\x09\x10\x1e\x10\x26\x10\x4e\x10\x61\x10\x65\x10\x6a\x10\xdd\x11\x05\x11\x0a\x11\x60\x11\x98\x11\x9d\x11\xa0\x11\xc1\x11\xc5" +"\x12\x45\x12\xaa\x12\xb3\x12\xc2\x13\x0c\x13\x42\x13\x45\x13\x93\x13\xba\x13\xe1\x13\xf3\x14\x06\x14\x1a\x14\x46\x14\x63\x14\x75" +"\x14\xb7\x15\x4e\x15\x5c\x15\xd1\x15\xff\x16\x08\x16\x8e\x16\x97\x16\x9f\x16\xa7\x16\xb0\x16\xb9\x16\xe0\x17\x1d\x17\x26\x17\x2e" +"\x17\x36\x17\x3e\x17\x43\x17\x4b\x17\x4d\x17\x55\x17\x73\x17\x7d\x17\x86\x17\x8f\x17\x99\x17\xc3\x17\xcb\x17\xd4\x17\xdd\x17\xe6" +"\x17\xef\x17\xf5\x17\xfc\x18\x05\x18\x0d\x18\x16\x18\x1f\x18\x28\x18\x31\x18\x47\x18\x9c\x18\xa4\x18\xad\x18\xb6\x18\xb9\x18\xbe" +"\x18\xc6\x18\xca\x18\xd2\x18\xe9\x18\xf2\x18\xfa\x19\x02\x19\x0b\x19\x33\x19\x3b\x19\x41\x19\x4a\x19\x51\x19\x5a\x19\x63\x19\x6c" +"\x19\x76\x19\xa6\x19\xaa\x19\xb2\x19\xba\x19\xd1\x1a\x62\x1a\xdf\x1b\x0e\x1b\x18\x1b\x20\x1b\x24\x1b\x2d\x1b\x36\x1b\x5f\x1b\x6c" +"\x1b\x6f\x1b\x77\x1b\x80\x1b\x89\x1b\x92\x1b\x95\x1b\x9d\x1b\xa0\x1b\xb9\x1b\xc2\x1b\xce\x1b\xd7\x1b\xe0\x1c\x32\x1c\x5b\x1c\x5f" +"\x1c\x6b\x1c\x6e\x1c\x7a\x1c\xf6\x1d\x05\x1d\x29\x1d\x33\x1d\x51\x1d\x5b\x1d\x8c\x1d\x96\x1d\xa1\x1d\xa8\x1d\xaf\x1d\xbc\x1d\xe5" +"\x1d\xe8\x1d\xea\x1d\xf6\x1e\x21\x1e\x2a\x1e\x2d\x1e\x57\x1e\x5f\x1e\x78\x1e\x80\x1e\x88\x1e\x91\x1e\x95\x1e\x9e\x1e\xa7\x1e\xaf" +"\x1e\xb3\x1e\xbc\x1e\xc5\x1e\xcf\x1f\x03\x1f\x08\x1f\x14\x1f\x1d\x1f\x8a\x1f\x9d\x1f\xf3\x20\x04\x20\x0d\x20\x15\x20\x18\x20\x20" +"\x20\x5c\x20\x65\x20\x6e\x20\x94\x20\x98\x20\xbc\x20\xc4\x20\xec\x21\x00\x21\x09\x21\x12\x21\x1b\x21\x61\x21\x65\x21\x6c\x21\x97" +"\x21\xa1\x21\xc8\x21\xcf\x21\xd9\x21\xe1\x21\xeb\x22\x0c\x22\x15\x22\x1e\x22\x27\x22\x30\x22\x34\x22\x3c\x22\x46\x22\x4a\x22\x59" +"\x22\x8c\x22\xba\x22\xbe\x22\xf2\x22\xf8\x23\x1a\x23\x3a\x23\xa6\x23\xaa\x23\xdb\x23\xef\x24\x10\x24\x16\x24\x1d\x24\x24\x24\x35" +"\x24\x3a\x24\x5f\x24\x65\x24\x69\x24\xc0\x24\xe2\x24\xf2\x24\xfa\x25\x10\x25\x2b\x25\x42\x25\x5d\x25\x6e\x25\xcd\x26\x2d\x26\x88" +"\x26\x98\x26\xe7\x26\xf4\x27\x54\x27\xa9\x27\xae\x27\xb4\x27\xe1\x28\x21\x28\x43\x28\x8d\x28\xac\x28\xdd\x29\x13\x29\x69\x29\xad" +"\x29\xb2\x29\xe6\x2a\x0c\x2a\x2f\x2a\x65\x2a\xb7\x2a\xbb\x2a\xe4\x2a\xf8\x2b\x1d\x2b\x45\x2b\x4e\x2b\x54\x2b\x67\x2b\x8b\x2b\x9a" +"\x2b\xaf\x2b\xb3\x2c\x2e\x2c\x33\x2c\x43\x2c\x4d\x2c\x63\x2c\x7e\x2c\x92\x2c\xaa\x2c\xb5\x2c\xfe\x2d\x46\x2d\x8d\x2d\xa3\x2d\xea" +"\x2d\xfc\x2e\x40\x2e\x7d\x2e\x84\x2e\x8a\x2e\xad\x2e\xf1\x2f\x0e\x2f\x3b\x2f\x68\x2f\x92\x2f\xa3\x2f\xb4\x30\x06\x30\x7f\x30\xfd" +"\x31\x5a\x31\xb5\x32\x14\x32\x1c\x32\x51\x32\x87\x32\xc4\x33\x5b\x33\x68\x33\xee\x34\x3b\x34\x88\x34\xd6\x35\x22\x35\x7a\x35\xdb" +"\x36\x54\x36\x65\x36\x6d\x36\x78\x36\x80\x36\xb3\x37\x31\x37\x9c\x37\xa7\x37\xe5\x38\x22\x38\x4d\x38\x53\x38\x5b\x38\x63\x38\x6b" +"\x38\x96\x38\xa4\x38\xe3\x39\x59\x39\xc0\x3a\x2b\x3a\x3d\x3a\xa7\x3a\xab\x3a\xb4\x3a\xbd\x3a\xd7\x3b\x18\x3b\x40\x3b\x65\x3b\x78" +"\x3b\x80\x3b\xfe\x3c\x66\x3c\x88\x3c\xb4\x3c\xbd\x3d\x04\x3d\x29\x3d\x30\x3d\x3c\x3d\x4b\x3d\xc2\x3d\xec\x3e\x15\x3e\x25\x3e\x6a" +"\x3e\xd7\x3f\x0f\x3f\x12\x3f\x18\x3f\x1e\x3f\x25\x3f\x2a\x3f\x36\x3f\x4f\x3f\x58\x3f\x81\x3f\x86\x3f\xa5\x3f\xae\x3f\xb5\x3f\xc2" +"\x3f\xd1\x40\x79\x40\x98\x41\x27\x41\x2e\x41\x72\x41\x8b\x41\x94\x41\xbd\x41\xc7\x41\xcf\x42\x3e\x42\x75\x42\x7a\x42\x83\x42\x8b" +"\x42\x9a\x42\x9f\x42\xa9\x42\xaf\x42\xb9\x42\xc7\x42\xcf\x43\x41\x43\xe2\x44\x52\x44\x6e\x44\x97\x44\xba\x44\xf1\x45\x3c\x45\x59" +"\x45\x63\x45\x82\x45\x95\x45\x9f\x45\xaf\x45\xf4\x46\x05\x46\x4f\x46\x5f\x46\x68\x46\x75\x46\xb0\x47\x60\x47\xb0\x47\xe5\x48\x69" +"\x48\x7e\x48\xac\x48\xca\x49\x11\x49\x7e\x49\x86\x49\xab\x49\xb3\x49\xbb\x49\xd1\x49\xd2\x49\xd6\x49\xde\x49\xfd\x4a\x05\x4a\x07" +"\x4a\x23\x4a\x52\x4a\x7e\x4a\xe5\x4a\xed\x4a\xf6\x4a\xf9\x4b\x01\x4b\x22\x4b\x40\x4b\x73\x4b\xb6\x4c\x29\x4c\x93\x4c\xac\x4c\xd1" +"\x4c\xee\x4d\x08\x4d\x2a\x4d\x46\x4d\x55\x4d\x64\x4d\x9f\x4d\xe7\x4d\xeb\x4e\x0a\x4e\x3e\x4e\x64\x4e\x8d\x4e\xc3\x4e\xd3\x4e\xe3" +"\x4f\x1f\x4f\x68\x4f\x92\x4f\xb5\x4f\xba\x4f\xda\x4f\xfd\x50\x50\x50\x5f\x50\x68\x50\xbb\x50\xe0\x51\x1a\x51\x26\x51\x2e\x51\xf0" +"\x52\x58\x52\x5d\x52\x5f\x52\x7b\x52\x98\x53\x08\x53\x1f\x53\x64\x53\x8d\x53\xce\x53\xd2\x53\xda\x53\xe2\x53\xeb\x53\xf4\x53\xfa" +"\x54\x01\x54\x0b\x54\x15\x54\x1f\x54\xb7\x54\xc0\x54\xc9\x54\xd2\x54\xdc\x55\x3e\x0e\x0e\xfb\xcf\xf7\x9a\x72\x0a\xfb\x42\x96\x1d" +"\xf7\x80\xf7\x16\x15\xfb\x1e\xfb\x16\x06\xb3\xfb\x15\x05\xc3\x06\xb5\xf7\x15\x05\x0e\x2f\xf7\x26\x6b\x15\xb3\xf7\x60\x05\xf2\x06" +"\x63\xfb\x60\x05\xf4\x06\xb3\xf7\x60\x05\xf7\x0b\xee\x27\x06\xaa\xf7\x2d\x05\xf7\x01\xee\x31\x98\x0a\x24\x98\x0a\xfb\x0b\x28\xee" +"\x06\x6d\xfb\x2d\x05\x2a\x28\xd8\x06\x63\xfb\x60\x05\xf7\x39\xf7\xc3\x15\xa9\xf7\x2d\x05\xf2\x06\x6d\xfb\x2d\x05\x0e\x2f\xf8\x99" +"\xf8\x86\x15\x89\xf7\x11\x3d\xda\xfb\x12\x92\x08\xc1\x47\x55\x07\xfb\x15\x7f\x40\x42\xfb\x04\x1a\xfb\x03\xd0\x44\xf7\x1b\x6c\x1e" +"\xfb\x69\x07\x53\x95\x6c\xb4\x88\xd1\x08\xfb\x17\x82\x06\x42\xa9\x50\xc3\x62\x1e\xb1\x70\xb0\x7e\xc7\x85\x08\x22\xcf\xf4\x07\xc2" +"\x91\xb5\x99\xac\xa0\x08\xc1\xae\xab\xcb\xd7\x1a\xf7\x02\x4f\xc6\xfb\x30\xb6\x1e\xf7\x5d\x07\xbe\x84\xa8\x61\x89\x4e\x08\xfb\x26" +"\x44\x15\x53\x9d\x72\xa6\xb7\x1a\xbf\xa5\xa8\xc2\x96\x1e\xcf\xfb\xda\x15\xc3\x7a\xa7\x69\x5b\x1a\x59\x6f\x6a\x53\x7d\x1e\x0e\xf7" +"\x85\xf7\x62\xf9\x51\x15\x26\x38\x39\x27\x27\xde\x39\xf0\xf0\xde\xdc\xee\xf2\x3a\xdc\x24\x1f\x28\x04\xbb\xb0\x66\x5c\x5d\x65\x66" +"\x5c\x5c\x65\xb0\xba\xb9\xb1\xb0\xba\x1f\xf8\x24\xf6\x15\xfc\x20\xfd\x6d\x05\xd8\x06\xf8\x1f\xf9\x6d\x05\x88\xfb\xf9\x15\x25\x39" +"\x39\x27\x26\xdd\x39\xf1\xf0\xde\xdd\xed\xf3\x3a\xdc\x24\x1f\x28\x04\xbb\xb0\x66\x5b\x5e\x64\x65\x5d\x5c\x65\xb1\xb9\xb9\xb1\xb1" +"\xba\x1f\x0e\xd5\xf8\xa2\xf8\x09\x15\x81\x07\x5f\x83\x6e\x75\x61\x1e\xfb\x08\xf7\x24\x05\xe4\xc8\xa7\xb5\xd5\x1a\xe7\x44\xc9\x20" +"\x20\x39\x43\x2c\x66\x99\x67\xa7\x6a\x1e\x94\x80\x94\x80\x95\x7f\x8d\x89\x8f\x86\x91\x83\x08\xfb\x09\x4e\x63\x56\x2d\x1a\xfb\x16" +"\xea\x35\xf7\x22\xd0\xb7\x9d\xc8\xdd\x1e\xb9\x53\x05\xf7\x35\x06\xfb\x0f\xf7\x2e\xb3\xb9\xa5\xdc\x8d\xd7\x19\x90\x07\x96\x07\xfb" +"\xfd\x55\x15\xf7\x1c\xfb\x3f\x05\x67\x5c\x61\x78\x6c\x1b\x55\x57\xc4\xc7\xac\x9b\xa8\xa6\x9d\x1f\xe1\xf7\x48\x15\x59\xc9\x86\x94" +"\xa4\x1a\xa8\xa2\x9e\xae\xaf\xa0\x76\x66\x67\x78\x70\x62\x74\x1e\x0e\xcd\xf9\x6d\x37\x0a\x0e\xfb\xcf\xf7\x5f\x21\x0a\xfb\x07\xfb" +"\x42\x5b\xfb\x1c\xfb\x2e\x1a\xfb\x2f\xbb\xfb\x1c\xf7\x07\xfb\x42\x1e\xef\x06\x20\xf7\x62\x6a\xf7\x03\xf7\x28\x1a\xf7\x27\xad\xf7" +"\x05\xf5\xf7\x60\x1e\x0e\xfb\xcf\xf7\x0e\xfb\x5c\x15\xf7\x07\xf7\x42\xbb\xf7\x1c\xf7\x2e\x1a\xf7\x2f\x5b\xf7\x1c\xfb\x07\xf7\x42" +"\x1e\x27\x06\xf6\xfb\x62\xac\xfb\x03\xfb\x28\x1a\xfb\x27\x69\xfb\x05\x21\xfb\x60\x1e\x0e\xfb\x97\xf7\x17\xf8\xb4\x15\x48\x2d\xc5" +"\x60\xcf\xe9\xce\x2d\xc5\xb6\x48\xe9\xf7\x00\xae\x75\xd1\xfb\x00\x67\x05\xf7\x08\x43\xfb\x08\x07\xfb\x01\xaf\x75\x46\x05\x0e\x4b" +"\xf8\xa9\xf7\xb7\x15\xfb\x4a\xf7\x4a\xfb\x0b\xfb\x4a\xfb\x4a\xfb\x0b\xf7\x4a\xfb\x4a\xf7\x0b\xf7\x4a\xf7\x4a\x06\x0e\xcb\xf7\x26" +"\x15\xfb\x26\xe1\x07\x8d\x47\x6f\x64\x4f\x80\x08\x53\x07\xf6\x9b\xba\xc4\x87\xf7\x02\x08\xf7\x1d\x07\x0e\xfb\xcf\x8e\x0a\xf7\x6a" +"\xf7\x26\x15\x33\x1d\x0e\xf7\x64\xf9\x5e\x15\xfb\x62\xfd\x6c\x05\xce\x06\xf7\x62\xf9\x6c\x05\x0e\x2f\xf7\xa5\xf9\x68\x15\x3f\x4a" +"\x6b\x50\x60\x1f\x62\x54\x78\x31\xfb\x1e\x1a\xfb\x12\x9b\x33\xad\x55\x1e\x47\xb5\xd0\x66\xde\x1b\xd8\xca\xaa\xc6\xb7\x1f\xb3\xc2" +"\x9f\xe6\xf7\x19\x1a\xf7\x16\x7b\xe3\x69\xc2\x1e\xcf\x61\x46\xb0\x38\x1b\xfb\x05\x04\xaf\xa8\x77\x66\x9c\x1f\x99\x6d\x93\x3e\x29" +"\x1a\x3b\x84\x3d\x80\x6e\x1e\x61\x7b\x6d\x74\x63\x1b\x66\x6f\x9e\xaf\x7a\x1f\x7d\xa9\x83\xd5\xea\x1a\xdf\x92\xdb\x96\xa8\x1e\xb6" +"\x9a\xaa\xa3\xb3\x1b\x0e\x2f\xf7\x82\xf8\x7d\x15\xfc\x7d\xf7\x20\xf9\x59\x2e\x07\x37\x75\x42\x60\xfb\x0e\x1b\x2e\x07\x0e\x2f\xf8" +"\x94\xf7\x11\x15\xfb\xc1\x06\x9e\xb1\xa1\xa0\xf3\xd6\x08\xf7\x0f\xe5\xaf\xc0\xec\x1a\xf7\x1d\x2c\xe3\xfb\x28\xfb\x27\x35\x34\xfb" +"\x2a\x1e\x72\xf7\x1b\xa2\x07\xda\xb0\xb9\xcb\xc9\xb1\x60\x44\x3c\x73\x6e\xfb\x32\xfb\x04\x1e\xfb\x0c\x39\x66\x4d\x85\xfb\x18\x08" +"\xf8\x76\x06\x0e\x2f\xf7\x6d\xf7\xd1\x15\xc1\x8e\x8b\x84\xa4\x1f\xba\x7e\xa9\x62\x57\x1a\x4c\x5f\x5f\x4e\x49\x67\xb1\xd4\x87\x1e" +"\xfb\x1c\x06\xfb\x22\x8c\xe7\x32\xf7\x26\x1b\xf7\x2b\xec\xe4\xf7\x1e\xde\x67\xc1\x3b\xb2\x1f\xcc\xb4\xa7\xb8\xcc\x1a\xf7\x0a\x33" +"\xd6\xfb\x1d\x24\x3c\x5e\x3e\x6c\x1e\x7e\x69\x87\x74\x50\x1a\xf7\x16\x06\x8c\xb1\x8e\x9e\x92\x9d\x08\xaa\x98\xab\x9e\xb4\x1b\xc3" +"\xab\x69\x50\x43\x62\x68\x38\x1f\x7f\x06\x0e\x2f\xf8\x9e\xf7\xa5\x15\x41\xf8\x48\xfb\x39\x06\xfb\x97\xfc\x46\x05\xfb\x0a\xf7\xb0" +"\xfb\x31\xf7\x20\xf7\x31\xd5\x07\xfb\x6a\xf7\x08\x15\xfb\x4d\x06\xf7\x4d\xf7\xc3\x05\x0e\x2f\xf8\x7d\xf9\x59\x15\xfc\x0f\x06\x4c" +"\xfc\x1f\x05\xf7\x12\x06\xae\x9a\xab\x9e\xb6\x1b\xd2\xb6\x58\x35\x38\x60\x58\x44\x4e\x69\xaa\xc4\x88\x1f\xfb\x1e\x06\xfb\x10\x8d" +"\xe9\x37\xf7\x1e\x1b\xf7\x2c\xf3\xf3\xf7\x2d\xf7\x26\x31\xee\xfb\x17\x5c\x68\x7f\x6c\x62\x1f\xa2\xf7\x28\x05\xf7\xb9\x06\x0e\x2f" +"\xf8\x8f\xf8\xb8\x15\x84\xb9\x82\xa2\x79\xa5\x08\xbe\x66\x4a\xa9\x3e\x1b\x33\x43\x64\x44\x60\x1f\x61\x46\x7a\x3c\xfb\x15\x1a\xfb" +"\x0e\x9a\x3f\xaf\x52\x1e\x49\xb4\xd5\x64\xdf\x1b\xf7\x21\xeb\xf4\xf7\x2f\xf7\x1c\x37\xe9\xfb\x0e\x51\x64\x7a\x5d\x5f\x1f\x8c\x9a" +"\x8d\xcd\x8e\xa0\x95\xa6\x19\xbf\x9e\xad\xa5\xbc\x1b\xb8\xa3\x79\x5e\x9d\x1f\x28\xfb\x54\x15\xcd\xb5\x59\x3c\x40\x5d\x54\x4d\x4b" +"\x5f\xbf\xd7\xd8\xb7\xc1\xcb\x1f\x0e\x2f\xf8\xa4\xf9\x59\x15\xfc\x87\xfb\x11\xf7\xf5\x06\x60\x5d\x36\xfb\x15\x6f\x4d\x5a\x24\x72" +"\x2e\x78\xfb\x2b\x08\xf7\x21\x06\x98\xf7\x74\xd4\xf7\x40\xf7\x3c\xf7\x5f\x08\x0e\x2f\xf8\x2d\xf8\x16\x15\xa3\x98\x96\x92\x96\x95" +"\x08\xa8\xa6\x9c\xb6\xb9\x1a\xf7\x03\x2b\xdc\xfb\x17\xfb\x18\x2b\x3a\xfb\x04\x47\xa7\x60\xcb\x69\x1e\x39\x5e\x69\x56\x37\x1a\xfb" +"\x1a\xf2\x2e\xf7\x29\xf7\x28\xf2\xe8\xf7\x1a\xdf\x69\xc0\x39\xb8\x1e\xfb\x1a\xf7\x75\x15\xc9\xb6\x65\x54\x55\x5f\x64\x4e\x4c\x60" +"\xb1\xc3\xc1\xb6\xb1\xca\x1f\x89\xfb\xad\x15\xd0\xb6\x5d\x41\x47\x5f\x5e\x47\x47\x60\xb8\xd1\xd3\xb6\xb9\xcf\x1f\x0e\x2f\xb1\xf7" +"\x39\x15\xfb\x01\x8e\xe7\x3b\xf7\x0e\x1b\xe6\xd0\xb1\xd3\xb5\x1f\xb0\xca\xa1\xf6\xf7\x06\x1a\xf3\x7b\xdb\x6a\xc1\x1e\xd7\x5e\x45" +"\xb3\x36\x1b\xfb\x22\x2a\x25\xfb\x28\xfb\x26\xe1\x27\xf7\x12\xaf\xad\x95\x9b\xa1\x1f\x98\x94\x93\x94\xa2\xa5\x08\xfb\x1d\x65\x4a" +"\x3c\x59\x6a\xa6\xb5\x88\x1e\xe5\xf8\x51\x15\xcf\xb5\x57\x37\x3d\x60\x57\x4a\x4b\x63\xbd\xdd\xdd\xb2\xbf\xca\x1f\x0e\xfb\xcf\xf7" +"\x9b\x3d\x0a\xf8\x9c\x04\x33\x1d\x0e\xfb\xcf\xf7\x05\xf7\x26\x15\xfb\x26\xe1\x07\x8d\x47\x6f\x64\x4f\x80\x08\x53\x07\xf6\x9b\xba" +"\xc4\x87\xf7\x02\x08\xf7\x1d\x07\xf8\x0a\x04\x33\x1d\x0e\x4b\xf8\xa5\xf8\x6e\x15\xfc\x7d\xfb\x49\x05\xfb\x0d\x97\x1d\x4b\xf8\xaa" +"\xf8\x2f\x9b\x1d\x0e\x4b\xb3\x81\x15\xf8\x7d\xf7\x49\x05\xf7\x0d\x07\xfc\x7d\xf7\x4a\x05\xfb\x03\x07\xf8\x12\xfb\x17\xfc\x12\xfb" +"\x19\x05\x0e\x66\xf8\x05\xf7\x5d\x15\xcd\x92\x96\xc7\xb5\x1e\xe8\xcd\xa6\xb7\xdf\x1a\xf7\x1c\x25\xe9\xfb\x27\x35\x48\x6d\x50\x60" +"\x1e\x6a\x5f\x7e\x5b\x8a\x39\x08\xf7\x1c\x06\xe5\xb5\xc2\xd0\xc6\xb8\x5a\x49\x5e\x7f\x78\x51\x5b\x1e\x3b\x47\x74\x5e\x8e\x36\x08" +"\xf7\x20\x54\x15\x33\x1d\x0e\xf7\xdb\xf9\x18\xf8\x90\x15\x7b\x4d\x05\xbd\x73\x69\xa1\x53\x1b\x47\x46\x69\x52\x5e\x1f\x5d\x52\x6f" +"\x40\x47\x1a\x2c\xd4\x3f\xe6\xc2\xc3\xa7\xba\xb2\x1e\x93\x72\x93\x81\x9f\x7d\x08\x7a\xa4\xaa\x82\xac\x1b\xc7\xc7\xa9\xc1\xbb\x1f" +"\xc2\xca\xa6\xd0\xde\x1a\xf6\x68\xdf\x3f\xd5\x1e\xdd\x36\xfb\x01\xb6\xfb\x13\x1b\xfb\x1b\xfb\x0a\x5a\x2c\x2f\x1f\x32\x2f\x55\xfb" +"\x14\xfb\x0d\x1a\xfb\x07\xc4\xfb\x05\xe9\x41\x1e\x4a\xdd\xec\x6d\xf7\x13\x1b\xea\xd3\x99\xaa\xd1\x1f\x6f\xd4\x05\x72\x51\x3e\x7c" +"\x43\x1b\x30\x35\xa8\xbf\x48\x1f\x3d\xc8\x63\xde\xef\x1a\xef\xb1\xf0\xcc\xd6\x1e\xde\xd3\xeb\xb6\xf7\x08\x1b\xed\xdc\x6d\x4d\xd1" +"\x1f\xcd\x50\xab\x48\x3b\x1a\x51\x79\x52\x6a\x5d\x1e\x5f\x6a\x61\x6f\x68\x1b\x6d\x78\x9e\xa9\x97\x8b\x8c\x93\xa8\x1f\xd9\xf7\xac" +"\x05\xfb\x73\x4e\x15\xbf\xab\x64\x4c\x58\x71\x48\x66\x60\x1f\x6f\x73\x68\x78\x6e\x1b\x58\x65\xb9\xc8\xf2\xd8\xef\xda\x1f\x0e\xd5" +"\x20\x0a\x0e\xd5\x5e\x0a\xd5\x2d\x0a\x0e\xd5\x6e\x1d\x0e\x9e\x22\x0a\x0e\x66\xf7\x74\xf7\xce\x15\xf7\xd3\xf7\x11\xfb\xd3\x93\x0a" +"\x06\x0e\xf7\x16\x35\x1d\x0e\xd5\x84\x1d\x29\x1d\x0e\x2f\x77\x1d\x0e\xd5\x79\x1d\x66\x38\x1d\x0e\xf7\x4d\x66\x0a\xd5\x29\x0a\x0e" +"\xf7\x16\x24\x0a\x0e\x9e\x74\x1d\xf7\x16\xf9\x2d\xf2\x15\xbc\xc7\xaa\xef\xed\x1a\xf6\x65\xf2\x4b\xd0\x1e\xcf\x4c\x39\xac\x23\x1b" +"\x23\x39\x6a\x47\x4c\x1f\x4a\x46\x66\x24\xfb\x01\x1a\xfb\x01\xb1\x24\xcb\x46\x1e\x47\xca\xdd\x6a\xf3\x1b\xd7\xc2\x9a\xae\xc5\x1f" +"\xe1\x3a\xd7\xdc\x05\xfb\x9d\xf7\x8f\x15\x3f\x3a\xd8\x42\x05\x7f\x73\x6b\x84\x6b\x1b\xfb\x0c\x3b\xf0\xf7\x2d\xf7\x2e\xda\xef\xf7" +"\x0e\xf7\x0e\xda\x27\xfb\x2f\x4f\x80\x55\x75\x5f\x1f\x0e\xd5\x3b\x1d\x0e\x9e\x2c\x0a\x0e\x66\x42\x1d\x0e\xd5\x25\x0a\x0e\x9e\xf8" +"\x21\x16\xf7\x8e\xf9\x6d\x05\xfb\x2b\x06\xfb\x33\xfc\xb9\xfb\x36\xf8\xb9\x05\xfb\x2b\x06\xf7\x8a\xfd\x6d\x05\x0e\xf7\xbc\x2f\x0a" +"\x0e\x9e\x62\x0a\x9e\x2a\x1d\x0e\x66\x31\x0a\x0e\xfb\xcf\xf7\xc8\x21\x0a\xfb\x86\xfe\x35\xf7\x86\xf1\xfb\x04\xf9\x69\xf7\x04\x06" +"\x0e\xc2\xf9\x5e\x15\x48\x06\xf7\x7e\xfd\x6c\x05\xce\x06\x0e\xfb\xcf\x9d\xfb\x5c\x15\xf7\x86\xfa\x35\xfb\x86\x25\xf7\x04\xfd\x69" +"\xfb\x04\x06\x0e\x4b\xf8\x9e\xf7\xa2\x15\xfb\x3f\xf8\x3d\x05\xfb\x11\x06\xfb\x39\xfc\x3d\x05\xf7\x04\x06\xf7\x07\xf7\xc0\xf7\x0d" +"\xfb\xc0\x05\x0e\x2f\xf8\xd6\xfb\x0c\xbd\x1d\xf7\x62\xf8\x69\x15\xf7\x11\x3b\x07\x89\xbd\xa5\xa8\xc3\x95\x08\xb9\x07\x33\x84\x58" +"\x52\x8f\x34\x08\xfb\x01\x07\x0e\x2f\x26\x1d\x0e\x66\xc6\x21\x0a\xfd\x6d\xf7\x20\xc2\x07\x56\xad\xba\x72\xcf\x1b\xf7\x15\xed\xf7" +"\x0f\xf7\x37\xd4\x75\xd5\x67\xbf\x1f\xc0\x66\x49\xad\x49\x1b\x47\x5c\x72\x55\x69\x1f\xf7\x97\x07\xf7\x0a\xfb\xbd\x15\xd0\xbc\x45" +"\x27\x28\x5b\x46\x45\x44\x5c\xce\xf3\xee\xbb\xcf\xd1\x1f\x0e\x2f\x36\x1d\x0e\x66\xf8\x29\x6d\x1d\x0e\x2f\x27\x1d\x0e\xfb\xcf\x40" +"\x1d\x0e\x66\x68\x1d\x0e\x66\x61\x0a\x0e\xf7\x63\xf8\xb0\x39\x1d\x0e\xf7\x66\xf8\xb0\x7b\x1d\x2f\x7f\x1d\x0e\x44\x1d\x0e\xf7\x85" +"\xc7\xf8\xb0\x15\xfc\xb0\xf7\x20\xf7\xd8\x07\xce\xaf\xb2\xb2\x1d\xf7\xd8\x07\xcd\xaf\xb3\xb2\x1d\xf8\x12\x07\xf4\x4b\xc9\xfb\x00" +"\x46\x5c\x73\x53\x61\x1e\xbe\x71\x55\xa8\x48\x1b\x4d\x63\x77\x53\x5d\x1f\xce\x07\x0e\x66\x37\x1d\x0e\x66\x28\x1d\x0e\x66\xf7\x5a" +"\x24\x1d\xfb\x20\xfd\x8a\x66\x1d\x4f\xc3\x1d\xf7\x0e\xf7\x38\xd7\x75\xd7\x67\xbd\x1f\xbe\x67\x48\xad\x4a\x1b\x47\x5b\x6e\x4f\x69" +"\x1f\xf7\x0a\x6f\x4a\x1d\x28\x5b\x47\x45\x44\x5c\xcf\xf0\xf1\xba\xcf\xd2\x1f\x0e\x66\xf8\x28\x24\x1d\x3b\x07\xc6\x6a\x59\xa9\x48" +"\x1b\xfb\x16\x2b\xfb\x0e\xfb\x39\x3f\xa1\x3f\xaf\x5a\x1f\x58\xaf\xce\x69\xcb\x1b\xcf\xbd\xa8\xc6\xac\x1f\xfb\xae\xf7\x20\xf9\x8a" +"\x07\xfb\x96\xfb\x00\x15\xd3\xb9\x47\x22\x29\x5b\x47\x45\x45\x5b\xcf\xf0\xf0\xbb\xd0\xd1\x1f\x0e\xfb\x97\x3d\x1d\x0e\x2f\x34\x1d" +"\x0e\xfb\xcf\x4c\x1d\x0e\x66\x26\x0a\x0e\x2f\xf7\xf2\x75\x0a\xf7\x16\x30\x0a\x0e\x2f\xf7\xf7\x75\x1d\x2f\x2e\x0a\x0e\xfb\x28\x36" +"\x0a\x0e\xfb\x97\xf7\xd1\x21\x0a\x3f\x06\x44\x8c\x56\x4e\x8c\x3b\x08\xfb\x67\x07\x61\x8c\x76\x76\x5e\x1b\x7f\x06\x87\x2f\x06\xca" +"\x8c\x9e\x7a\x8a\x52\x08\xfb\x66\x07\x89\x3b\xc1\x4e\xd2\x8c\x08\xd7\xee\x66\x06\x69\x7f\x9e\xb9\x8c\x1f\xf7\x57\x07\xd3\x71\xa8" +"\x44\x94\x1e\xd2\x93\xa5\xa8\xd3\x1a\xf7\x57\x07\xb2\x8a\x9a\x9d\xaa\x1b\xb0\x06\x0e\xfc\x04\xf7\x48\x21\x0a\x3b\xfe\x35\xdb\x06" +"\x0e\xfb\x97\xd3\xfb\x5c\x15\xd7\x06\xd2\x8a\xc0\xc8\x8a\xdb\x08\xf7\x67\x07\xb5\x8a\xa0\xa0\xb8\x1b\x97\x06\x8f\xe7\x06\x4c\x8a" +"\x78\x9c\x8c\xc4\x08\xf7\x66\x07\x8d\xdb\x55\xc8\x44\x8a\x08\x3f\x28\xb0\x06\xad\x97\x78\x5d\x8a\x1f\xfb\x57\x07\x43\xa5\x6e\xd2" +"\x82\x1e\x44\x83\x71\x6e\x43\x1a\xfb\x57\x07\x64\x8c\x7c\x79\x6c\x1b\x66\x06\x0e\x4b\xf8\x4d\xf8\x2f\x15\x8a\x70\x8a\x87\x88\x83" +"\x08\x79\x83\x7b\x82\x73\x1b\x76\x7d\x90\x9f\x71\x1f\x52\xb5\x05\x9c\x73\x71\x93\x6a\x1b\x3c\x60\x5b\x2a\x86\x1f\xd9\x06\x8c\xa6" +"\x8c\x8e\x8e\x93\x08\x9d\x93\x9b\x94\xa3\x1b\xa0\x9c\x84\x7a\xa2\x1f\xc4\x61\x05\x79\xa5\xa3\x83\xac\x1b\xdb\xb4\xbb\xed\x91\x1f" +"\x0e\xfb\xcf\xcd\xfb\x4e\x15\xf7\x2a\xf7\x66\x06\x62\xf7\xc9\x05\x48\x06\x61\xfb\xc9\x05\xf8\x06\x04\xf7\x2a\xf7\x26\xfb\x2a\x06" +"\x0e\x2f\xf7\xc3\xf8\x47\x15\xba\x84\xa4\x6f\x98\x4d\x08\xf7\x1a\x06\x83\xf7\x10\x33\xe0\xfb\x0f\x8d\x08\xe0\x5f\x35\x07\xfb\x24" +"\x7c\x3d\x26\xfb\x41\x1a\xfb\x3a\xde\x22\xf7\x1f\x82\x1e\x25\x07\xb7\x8a\x05\xf1\x07\xf7\x0b\x8f\xe4\xe0\x96\xf7\x0c\x08\xfb\x1a" +"\x06\x7c\x4e\x73\x6f\x5d\x84\x08\x5f\x8e\x15\x56\x9a\x6e\xc5\xe8\x1a\xee\xa8\xc8\xc0\x98\x1e\x0e\x2f\xf8\x0b\xf8\x07\x15\xfb\x1f" +"\x06\x85\x99\x86\x98\x78\xb1\xb0\x1d\xaa\xa5\x82\x79\x9f\x1e\xa0\x79\x93\x79\x91\x5d\x8c\x80\x18\xf7\x18\x06\x86\xc6\x83\xac\x7c" +"\xa8\x08\xd2\x67\x3d\xb2\x23\x1b\x48\x54\x7a\x6b\x61\x1f\x5d\x66\x6f\x53\x52\x1a\x5e\x93\x76\xb8\x3c\x1e\x4f\x54\xe4\x06\x9b\x63" +"\x90\x77\x72\x1a\x51\x70\x66\x38\x53\x1e\xc2\x26\x05\xa2\xb7\xa6\x92\xb1\x1b\xa6\xa1\x87\x7f\xbc\x1f\x7f\xbc\xa2\x87\xa6\x1b\xbc" +"\xb3\x97\xac\xc3\x1f\x62\xf7\x01\x05\x77\x63\x6b\x82\x6a\x1b\x7a\x77\x8e\x92\x71\x1f\x95\x64\x84\x8c\x79\x1b\x6e\x77\x85\x6c\x4c" +"\x1f\xe0\xce\xaa\xb9\xc5\x1a\x9f\x88\x98\x7f\xa5\x1e\xf7\x0e\x06\x0e\xf7\xc5\x2f\x1d\x0e\x2f\xf8\x85\xf7\xf3\x15\xfb\x1d\x06\xf7" +"\x54\xf7\xf5\x05\xfb\x1b\x06\xfb\x1a\xfb\x92\xfb\x1f\xf7\x92\x05\xfb\x1f\x06\xf7\x5f\xfb\xf5\x05\xfb\x1e\x50\xf7\x25\x56\xfb\x25" +"\x50\xf7\x25\xfb\x48\xf7\x20\xf7\x48\xf7\x22\xc6\xfb\x22\xc0\xf7\x22\x06\x0e\x2f\xf8\x88\xf8\x74\x15\xfb\x0f\x06\x92\xb4\x05\xd3" +"\x97\xa4\xae\xb2\x1b\x9c\x95\x88\x7e\xa7\x1f\x9f\xf7\x07\x05\x98\x60\x76\x8f\x6b\x1b\x22\x52\x4c\xfb\x22\x73\x1f\x81\x50\x05\xfb" +"\x1f\x2a\xf7\x0f\x06\x50\xfc\x0c\x05\x38\x7e\x7a\x6f\x67\x1b\x7b\x7a\x91\x9a\x73\x1f\x73\xfb\x07\x05\x7b\xac\xa4\x85\xab\x1b\xbd" +"\xb9\x9d\xa9\xa8\x1f\xad\xad\xa0\xc1\x98\xe0\xc6\xf8\x12\x18\xf7\x1d\x06\x0e\x2f\xf8\x6d\xf8\xb4\x15\x89\xbc\x84\xa6\x7a\xa6\x08" +"\xbb\x6c\x4a\xa7\x3d\x1b\xfb\x0d\x33\x43\x27\x6c\x95\x6a\x9c\x75\x1f\x91\x83\x8e\x87\xa4\x72\x08\x43\x54\x77\x6b\x4f\x1a\x54\xa7" +"\x5c\xbe\x6d\x1e\xf7\x3f\x27\xb4\x74\x8b\x8b\x96\x81\x19\x96\x80\x92\x7b\x79\x1a\x67\x6c\x72\x5e\x71\x75\x93\x99\x7d\x1e\x7e\x97" +"\x87\x99\x89\xab\x08\x95\xfb\x17\x07\xfb\x19\x8c\xd2\x47\xf7\x1f\x1b\xf7\x16\xe3\xd8\xf7\x06\xc4\x74\xb7\x5c\xac\x1f\xce\xaa\xa6" +"\xb3\xce\x1a\xcf\x6d\xbb\x48\xb0\x1e\xfb\x13\xd1\x05\x44\xb2\x78\x9d\xa8\x1a\xa9\xa4\x9f\xb2\xba\xa3\x73\x56\x92\x1e\x82\xfb\x82" +"\x15\xba\x72\x99\x7a\x6b\x1a\x74\x7f\x79\x69\x73\x1e\xfb\x27\xdb\x05\x61\xa2\x7f\x9b\xaa\x1a\xa8\x98\x9d\xa9\x9d\x1e\x0e\x2f\xf8" +"\x18\xf8\xa4\x15\x9e\x6e\x63\x96\x65\x1b\x66\x62\x7f\x78\x6c\x1f\x3e\xd8\x46\x47\xda\x3c\x05\x78\x6d\x81\x66\x65\x1a\x64\x93\x70" +"\xa1\x63\x1e\x3d\x3e\xcf\x46\xda\xd9\x05\x78\xa6\xb7\x7f\xb3\x1b\xb0\x9b\x90\xa4\xba\x1f\xd6\x40\xd0\xcf\x3e\xd7\x05\x9f\xae\x94" +"\xad\xb2\x1a\xb1\x85\xa3\x76\xb4\x1e\xd6\xd6\x46\xd0\x05\xfb\x49\xfb\x21\x15\xc5\xbb\x5a\x51\x4f\x5b\x5b\x50\x50\x5b\xbb\xc6\xc8" +"\xbb\xba\xc7\x1f\x0e\xfc\x2e\x96\x1d\x0e\xfb\x28\xf7\x66\xf8\x69\x15\xf7\x11\x3b\x07\x89\xbd\xa5\xa8\xc3\x95\x08\xb9\x07\x33\x84" +"\x58\x52\x8f\x34\x08\xfb\x01\x07\xf7\xfe\x16\xf7\x11\x3b\x07\x89\xbd\xa5\xa8\xc3\x95\x08\xb9\x07\x33\x84\x58\x52\x8f\x34\x08\xfb" +"\x01\x07\x0e\x2f\xe3\x8f\x1d\xf7\x69\xfb\x06\x15\xf7\x3b\xfb\x26\x05\xf7\x06\x07\x26\xe4\xf0\xe4\x05\xf7\x09\x07\xfb\x3b\xfb\x29" +"\x05\x0e\xfb\xcf\xde\x8f\x1d\x0e\xfb\xcf\xf7\x8b\x79\x0a\x0e\x66\x40\x1d\xf7\x77\xf3\x39\x1d\x0e\x66\x40\x1d\xf7\x77\xf7\xb9\xb6" +"\x1d\x2f\xf8\xc1\xf7\xcb\x15\xfc\xca\x23\xf8\xca\x06\x0e\x2f\xf8\x9f\xa0\x1d\xfc\xc7\xf7\x1a\xf8\xc7\xf7\x47\x06\x0e\x2f\xf8\x9c" +"\xa0\x1d\xfb\x73\xfb\x47\xfb\x08\xf7\x47\xfb\x74\xf7\x1a\xf7\x74\xf7\x47\xf7\x08\xfb\x47\xf7\x73\xf7\x47\x06\x0e\x4b\x0a\x2f\xf8" +"\xa5\xf9\x6d\x15\xfb\xc3\x06\x4a\x57\x71\x56\x65\x1f\x6a\x5f\x79\x53\x54\x1a\xfb\x15\xe0\x2e\xf7\x0e\x85\x1e\xfc\x5e\xed\xf9\xe4" +"\xca\xfd\xe4\xed\xf9\xe4\xb6\x07\x0e\xfb\xbe\xf7\x45\xf8\x3d\x15\x44\x53\x54\x45\x46\xc3\x53\xd0\xd0\xc3\xc3\xd0\xd0\x53\xc3\x48" +"\x1f\x0e\xcd\xf7\x11\x37\x0a\x0e\xfb\x28\xd3\xf7\x11\x37\x0a\xe5\x16\x8e\x1d\xfb\x28\xd4\xf9\x6d\x37\x0a\xec\x16\x8e\x1d\x2f\xf7" +"\x93\x79\x0a\xf7\x63\xf7\x07\x15\xfb\x3b\xf7\x26\x05\xfb\x06\x07\xf0\x32\x26\x32\x05\xfb\x09\x07\xf7\x3b\xf7\x28\x05\x0e\xf7\xf4" +"\xf7\x86\x3d\x0a\xf7\xe1\x3d\x0a\xf7\xe1\x3d\x0a\x0e\xf7\xf4\xf7\x34\xf9\x77\x15\x39\x48\x49\x39\x92\x1d\x64\x65\x6b\xaa\xb2\xb1" +"\xaa\xaa\xb2\x1f\xf7\xe4\xda\x15\xfc\x38\xfd\x8b\x05\xcd\x06\xf8\x39\xf9\x8b\x05\x2f\xfc\x64\x15\x39\x48\x48\x3a\x39\xce\x49\xde" +"\xdc\xcf\xcd\xdb\xdf\x49\xcd\x37\x1f\x3b\x04\xb3\xaa\x6c\x64\x65\x6b\x6c\x65\x64\x6b\xaa\xb2\xb1\xab\xaa\xb1\x1f\xf8\x05\xdb\x15" +"\x39\x48\x49\x39\x92\x1d\x65\x64\x6b\xaa\xb2\xb1\xaa\xaa\xb2\x1f\x0e\x66\xf7\x83\xf7\xe7\x15\x4a\x84\x7f\x4f\x61\x1e\x2d\x49\x70" +"\x5f\x37\x1a\xfb\x1c\xf1\x2d\xf7\x28\xe1\xce\xa9\xc6\xb6\x1e\xac\xb7\x98\xbb\x8c\xdd\x08\xfb\x1c\x06\x31\x61\x54\x46\x4f\x5e\xbc" +"\xcd\xb8\x97\x9e\xc6\xbb\x1e\xdb\xcf\xa2\xb8\x88\xe0\x08\xfb\x20\xc2\x15\xf7\x2a\xf7\x26\xfb\x2a\x06\x0e\xfb\xcf\x9c\xf9\x89\x21" +"\x1d\xfb\xcf\xf7\xd1\x43\x1d\xfb\xcf\xf7\x08\xf9\x89\x23\x0a\xfb\xcf\xf7\xae\x40\x0a\xfb\xcf\xf7\xcf\xf9\x63\x28\x0a\xfb\xcf\xf7" +"\xbf\xf9\x80\x44\x0a\xfb\xcf\xf7\x72\xf9\x7b\x27\x0a\xfb\xcf\xf7\x14\x41\x1d\xfb\xcf\xf7\x3c\xf9\x96\x2c\x1d\x0e\xfb\xcf\xf7\x36" +"\x16\x55\x21\x05\x95\x9f\x94\x8d\x81\x1d\x7c\x49\x1d\xa8\xca\x05\x0e\xfb\xcf\xf7\x2c\xf9\x89\x32\x0a\xfb\xcf\xf7\x3d\x16\x3e\x6f" +"\x5c\x57\x50\x1a\x51\xc2\x66\xe4\xa7\xa3\x8e\x92\xa6\x1e\xba\x07\x87\x79\x78\x89\x77\x1b\x56\x74\x9b\xad\xbe\xa3\xa9\xe0\xbf\x1f" +"\x0e\xfb\xcf\xf7\x6f\xf8\xf3\x15\xf7\x00\xf7\x2a\x05\x3f\x06\x39\x2a\x39\x47\x1d\xf7\xf4\xab\x1d\xf7\xf4\x6f\x1d\x0e\xfb\xaa\xf7" +"\xd5\xf7\xe8\x15\xfb\xb0\x3d\xf7\xb0\x06\x93\xf7\x28\x15\x7c\x99\x86\x94\x9c\x1a\xf7\x47\x07\xcd\x5e\xad\x33\x32\x5e\x65\x41\x89" +"\x1e\xda\x06\xac\x8f\x9a\x96\xb3\x1b\xab\x9c\x80\x77\x80\x86\x83\x81\x86\x1f\x80\x85\x8b\x8b\x61\x84\x6a\x85\x18\x4a\x80\x6c\x6a" +"\x50\x1a\x50\xb2\x64\xc7\xaf\xac\x9b\xa9\xa8\x1e\x7b\x8d\x85\x93\x81\x1e\xe7\x06\x25\xf7\x16\x15\x5b\x72\x6f\x61\x6e\x7a\x9a\xa3" +"\xa4\x98\x97\xae\x92\x1e\xa8\x91\xa1\x8f\x8f\x8c\x95\x90\x19\x0e\x66\xf7\x7a\xf8\x3b\x15\xf7\xc6\xfb\x2a\xfc\x13\x07\x3b\x53\x05" +"\x32\x07\xdb\xc3\x05\xfb\x95\xf8\x99\xf7\x11\xfc\x03\xf7\x65\x07\xf7\x39\xf7\x05\x05\xe3\x07\x0e\xf7\x16\x5a\x0a\x0e\xf7\xf4\xf9" +"\x04\xf7\xce\x15\xf7\xbf\xf7\x11\xfb\xbf\xf7\x39\xf7\xdb\xf7\x11\xfc\x6b\x57\x06\xbb\x5b\x64\x9b\x4b\x1b\xfb\x46\xfb\x0f\xfb\x30" +"\xfb\x76\xfb\x73\xf7\x10\xfb\x33\xf7\x41\xcf\xb1\x9f\xc9\xbc\x1f\x50\xf8\x7e\xf7\x11\xfb\xee\x07\xfb\x2a\xc0\x15\x58\x6e\x68\x75" +"\x55\x1b\x20\x44\xf0\xf7\x2d\xf7\x2d\xd2\xf0\xf6\xc1\xae\x75\x58\xa8\x1f\x0e\xfb\xaf\xf7\xe2\xf7\xe8\x15\xfb\xc1\x3d\xf7\xc1\x06" +"\xfb\x2b\xf8\x67\x15\x27\x4f\x4a\x20\x21\xc8\x4a\xee\xee\xc8\xcc\xf3\xf7\x02\x50\xcb\x26\x1f\x47\x04\xb9\xa9\x62\x4b\x4f\x6c\x61" +"\x5e\x5d\x6d\xb5\xc9\xc9\xa9\xb4\xb9\x1f\x0e\xf7\x85\x58\x0a\x0e\x30\x1d\x0e\xf7\x58\xf8\x4e\x15\xf7\xb3\xfb\x20\xfb\xf8\x07\x53" +"\x63\x05\x3c\x07\xc3\xb3\x05\xfb\xba\xf7\x20\xf7\xff\x07\xc3\xb3\x05\xda\x07\x0e\x66\x5c\x0a\x0e\xf7\xbc\xf9\x9c\xf7\x2c\x15\x63" +"\x7e\x60\x6f\x5a\x1b\x63\x68\x9d\xa9\x79\x1f\x7d\xa2\x85\xa4\x8a\xb9\x08\xf7\xfe\x06\x8c\x97\x8b\x90\x92\x1a\xc1\x83\xbd\x7e\xb1" +"\x1e\xed\x67\x34\xc6\xfb\x03\x1b\x3f\x4e\x71\x59\x60\x1f\xbe\x5a\x4a\xa4\x3a\x1b\xfb\x3a\x65\x1d\xfb\x46\xf0\xfb\x00\xf7\x3a\xdb" +"\xcb\xa4\xbd\xbe\x1f\x5a\xb7\xc9\x71\xd4\x1b\xf7\x0d\xed\xd0\xf5\xaa\x1f\xfd\x04\xf7\xb0\x70\x0a\xf7\xa1\xfb\x09\x15\x8e\xab\x90" +"\x9e\x94\x9d\x08\xac\x9c\xae\xa0\xb1\x1b\xac\xac\x7a\x6f\x9e\x1f\x98\x78\x91\x77\x8f\x64\x08\x0e\x66\xf7\xb1\xf7\xf1\x15\x98\x06" +"\xe1\xbe\x5d\x3d\x45\x5b\x58\x46\x89\x1f\x77\x06\x89\x86\x8b\x8a\x85\x1f\xfb\x04\x07\x87\xac\x9c\x89\xa1\x1b\xf7\x17\xe2\xf0\xf7" +"\x2c\xc9\x7d\xb1\x66\xad\x1f\x71\xa3\x79\x95\x68\x92\x08\xc4\xa1\xa9\xba\xce\x1a\xf6\x2d\xd6\xfb\x1b\x46\x48\x78\x6c\x64\x1e\x60" +"\x69\x79\x5a\x3d\x1a\xfc\x9a\xf7\x20\xf8\xad\x07\xbd\xab\xa8\xc2\xc8\xb0\x6c\x57\x55\x66\x69\x4e\x8a\x1e\x82\x06\x0e\xfb\xcf\xf7" +"\x1e\xf8\xd1\x3c\x0a\x0e\x4b\xb3\xf8\x0b\x15\x3e\xf8\x3f\xfb\x68\xd8\xf7\xb5\x07\x0e\x66\xf7\x54\xfb\x70\x15\xf7\x7f\x07\x70\xa7" +"\xa9\x80\xb5\x1b\xb9\xa9\x99\xb3\xb3\x1f\x63\xa3\xa3\x7d\xba\x1b\xa7\x9e\x90\x97\xa2\x1f\xe2\x07\x88\x81\x87\x8a\x85\x1b\x73\x85" +"\x9a\xc5\x1f\xf8\x1a\x55\x0a\x4d\x61\x5f\x50\x6f\x73\x97\xa0\x7d\x1e\x7d\x9f\x87\x9d\xb2\x1a\xf7\xe2\xfb\x20\xfd\x8c\x07\x0e\xf7" +"\xf4\xf7\xc3\xf9\x1f\x15\xf7\x19\xd9\xfc\x01\x3d\xf7\x1d\xfc\x0e\xea\x06\xf8\x58\x16\xde\xf7\xf1\x05\xfb\xf1\xe6\xf8\x5c\xfb\x1d" +"\x07\x37\xfb\xf2\x35\xf7\xf2\x05\xfb\x1d\xfc\x5c\xe6\xf7\xf1\x06\xe0\xfb\xf1\x05\x0e\xd5\x5d\x0a\xf7\x4e\xf7\x16\xf8\xd1\x3c\x0a" +"\xf8\xb7\xf7\x22\x46\x1d\xf7\x3e\xfd\x0e\xad\x1d\xa3\x9c\xa8\xa0\x08\xdb\xc2\xa1\xaa\xc7\x1a\xe1\x55\xbb\x2a\x27\x53\x58\x2f\x88" +"\x8b\x84\x8c\x83\x1e\xe7\x06\x8a\x92\x8a\x92\x8d\x1a\xb8\xa1\xa5\xb1\xb2\xa1\x73\x63\x5e\x7d\x7c\x28\x48\x1e\x3d\x59\x74\x65\x88" +"\x3a\x08\xf7\xca\x06\x0e\x4b\xf8\xa3\xf2\x15\xfc\x6b\xfb\x0b\xf8\x6b\x06\xf8\x54\x04\xfb\x44\xf7\x44\xfb\x0b\xfb\x44\xfb\x44\xfb" +"\x0b\xf7\x44\xfb\x44\xf7\x0b\xf7\x44\xf7\x44\x06\x0e\x9e\xf7\x76\xf7\x20\x15\xf7\x4f\x06\xf7\x1b\xe0\xe8\xf7\x29\xd5\x77\xc3\x61" +"\xb4\x1f\xb2\x63\x58\x9c\x39\x1b\xfb\x40\xf7\x0c\xfb\x2a\x32\x1d\xf7\x9d\xa1\x1d\xf7\x4e\xf7\x16\xf8\xd1\x3c\x0a\xf8\xbd\xf7\x22" +"\x46\x1d\xf7\x23\x6f\x0a\x4b\xf8\xaa\xf7\xb7\xc0\x1d\xfb\xc4\xf7\xc2\xa8\x0a\xfb\x10\xfb\xfe\x3e\x0a\xfc\x04\xf7\x48\x21\x0a\x3b" +"\xfc\x19\xdb\x06\xfb\x2b\x04\x3b\xfc\x19\xdb\x06\x0e\xfb\x8c\xf7\x5c\xf9\x42\x15\x37\x47\x47\x38\x38\xcf\x46\xdd\xe0\xcf\xce\xe0" +"\xde\x47\xcf\x38\x1f\x4c\x04\xbb\xb3\x64\x5a\x59\x63\x64\x59\x5c\x63\xb3\xbb\xbc\xb3\xb3\xbc\x1f\x0e\x66\xf7\x5a\x21\x0a\xfb\x20" +"\xfe\x47\x66\x1d\x50\xc3\x1d\xf7\x0d\xf7\x38\xf7\x39\x2b\xf7\x0e\xfb\x16\x47\x5b\x8b\x1d\xf7\x4e\xf7\x1d\xf8\x6b\x5f\x0a\xf8\x6b" +"\xf7\x4a\x46\x1d\xf7\x0a\x6f\x0a\xfb\xcf\xf7\xd1\xf8\x01\xad\x1d\xa2\x9b\xa9\xa1\x08\xdb\xc2\xa1\xaa\xc7\x1a\xe1\x55\xbb\x2a\x27" +"\x53\x58\x2f\x88\x8b\x84\x8c\x83\x1e\xe7\x06\x8a\x92\x8a\x92\x8d\x1a\xb8\xa1\xa5\xb1\xb1\xa2\x73\x63\x5e\x7c\x7b\x29\x49\x1e\x3d" +"\x59\x74\x65\x88\x3a\x08\xf7\xca\x06\x0e\xe4\xf7\xb4\xf7\xcd\x15\xe6\x06\xb5\x9e\x7c\x69\x1f\x7a\x07\x8a\x82\x8b\x80\x85\x1a\x5d" +"\x8d\x7f\x98\x74\x1e\xf1\xa0\x06\x7d\x93\x86\x92\x9e\x1a\x88\xf7\x14\x89\x92\x58\xa3\x08\xbb\xa3\xa0\xac\xbe\x1a\xd7\x5e\xb8\x3f" +"\x1e\xfb\x81\xfc\x4f\xeb\x06\xf7\x92\x04\xf7\x00\xf1\x07\xbc\x9b\x7e\x62\x62\x7b\x7e\x5a\x1f\x76\xf7\xf1\x15\xfb\x67\xfb\x40\xfb" +"\x40\xfb\x66\xfb\x65\xf7\x40\xfb\x42\xf7\x62\xf7\x6c\xf7\x3f\xf7\x3d\xf7\x6a\xf7\x67\xfb\x3f\xf7\x3f\xfb\x67\x1f\x8a\x43\x15\xf7" +"\x3c\xf7\x1d\xfb\x1f\xfb\x3f\xfb\x42\xfb\x1c\xfb\x1d\xfb\x40\xfb\x38\xfb\x1d\xf7\x21\xf7\x3e\xf7\x3f\xf7\x1c\xf7\x1f\xf7\x3c\x1f" +"\x0e\x4b\xf8\xb4\xf7\xb7\x15\xfc\x8c\xfb\x0b\xf8\x8c\x06\x0e\x66\xf8\x44\xf9\x5a\x15\x58\xad\x34\x57\x83\x8e\x85\x8e\x8a\x8c\x19" +"\x6d\x9c\x7c\x93\x7a\x93\x72\x94\x19\x48\x5c\xbc\x73\x99\x83\xa6\x7b\x19\x45\x5f\xb5\x66\xd8\xb9\xb1\x75\xa9\x6c\xa6\x60\x19\x9a" +"\x64\x77\x8f\x71\x1b\x60\x5f\x7e\x73\x64\x1f\x3f\x5e\x66\x3e\xfb\x02\x1a\xfb\x48\xef\xfb\x00\xf7\x3b\xe1\xd4\xaa\xc3\xba\x1e\xb4" +"\xbe\x9f\xcd\xe3\x1a\xf7\x3a\x46\xf7\x0f\xfb\x2c\xf1\x1e\x5d\xfb\x7b\x15\xd8\xbc\x49\x21\x27\x59\x48\x3f\x3e\x5a\xcd\xf3\xf1\xbc" +"\xce\xd8\x1f\x0e\x4b\xf8\x39\xf8\x50\x15\xfb\x15\xfb\x15\xfb\x15\xf7\x15\x37\x36\xf7\x15\xfb\x14\xfb\x14\xfb\x14\xdf\x37\xf7\x14" +"\xf7\x14\xf7\x14\xfb\x15\xdf\xdf\xfb\x14\xf7\x15\xf7\x15\xf7\x15\x05\x0e\xfb\xcf\xf7\x11\xf8\x6b\x5f\x0a\x0e\xe4\xf8\xbc\xf8\x43" +"\x15\x88\xb4\x83\xa3\x78\xa5\x08\xb8\x69\x54\xa4\x48\x1b\xfb\x11\x3d\x32\xfb\x23\xfb\x23\xd8\x32\xf7\x10\xf7\x04\xd4\xcb\xf4\x90" +"\x1f\x2f\x06\x53\x86\x69\x6d\x52\x1b\x45\x62\xc1\xe9\xe9\xb6\xc3\xd2\xc0\xa8\x73\x55\x96\x1f\x2e\xf7\xcc\x15\xfb\x67\xfb\x40\xfb" +"\x40\xfb\x66\xfb\x65\xf7\x40\xfb\x42\xf7\x62\xf7\x6c\xf7\x3f\xf7\x3d\xf7\x6a\xf7\x67\xfb\x3f\xf7\x3f\xfb\x67\x1f\x8a\x43\x15\xf7" +"\x3c\xf7\x1d\xfb\x1f\xfb\x3f\xfb\x42\xfb\x1c\xfb\x1d\xfb\x40\xfb\x38\xfb\x1d\xf7\x21\xf7\x3e\xf7\x3f\xf7\x1c\xf7\x1f\xf7\x3c\x1f" +"\x0e\xd5\x20\x0a\xf7\x25\xf8\x0f\x20\x1d\xd5\x20\x0a\x57\xf8\x0f\x4f\x1d\xd5\x20\x0a\x64\xf8\x01\x25\x1d\xd5\x20\x0a\xfb\x24\xf8" +"\x0f\x21\x1d\xd5\x20\x0a\x8c\xf8\x1c\x2c\x1d\x0e\xd5\x20\x0a\xf7\x0b\xf8\x07\x15\x6b\x87\x7f\x7b\x77\x1b\x84\x77\x53\x0a\x6b\x86" +"\x4f\x0a\x88\x1f\xc9\x87\x0a\xa0\x9d\x87\x9b\x1b\xc6\xaa\xb5\xe0\x90\x1f\x0e\xd5\xf8\x0f\x74\x15\xf7\x4a\x8f\xf7\x08\xf2\x93\xf7" +"\x39\x08\x45\x0a\xf7\x23\x06\x86\xca\x7e\xb3\x6c\xb4\x08\xd5\x53\x31\x8f\x0a\xfb\x27\xfb\x80\xfb\x15\xb1\x24\xd4\x45\x1f\xbb\x5e" +"\xb2\x79\xe8\x7b\x60\x38\x18\x94\x9e\x95\x8e\x81\x1d\x7b\x50\x0a\x9e\x22\x0a\xf7\x8f\xf9\xbf\x20\x1d\x9e\x22\x0a\xcb\xf9\xbf\x2b" +"\x1d\x9e\x22\x0a\xd9\xf9\xb1\x25\x1d\x9e\x22\x0a\x76\xf9\xbf\x21\x1d\x29\x1d\xd8\x39\x0a\x29\x1d\xfb\x10\xfa\x3c\x23\x0a\x6b\x0a" +"\x29\x1d\xfb\x73\xfa\x3c\x21\x1d\xd5\x29\x0a\xf7\xa0\xf8\x3c\x15\x6b\x87\x7f\x7b\x76\x1b\x84\x78\x53\x0a\x6a\x87\x8c\x79\x1b\x53" +"\x51\x1d\x95\x94\x43\x0a\xf7\x16\x24\x0a\xf7\x1f\xf7\xd7\x20\x1d\xf7\x16\x24\x0a\x58\xf7\xd7\x23\x0a\xf7\x16\x24\x0a\x65\xf7\xc9" +"\x25\x1d\xf7\x16\x24\x0a\xfb\x1d\xf7\xd7\x21\x1d\xf7\x16\x24\x0a\xf7\x0d\xf7\xcf\x15\x6b\x87\x80\xaf\x1d\x97\x6a\x86\x4f\x0a\x88" +"\x1f\xc9\x06\xab\x90\x97\x98\xa3\x1b\x94\x94\x89\x87\x97\x5f\x1d\xaa\xb5\xe0\x90\x1f\x0e\x9e\x2c\x0a\x35\xf7\xab\x2a\x0a\xd5\x25" +"\x0a\xfb\x2a\xf7\x63\x20\x1d\xd5\x25\x0a\xfb\xe8\xf7\x63\x23\x0a\xd5\x25\x0a\xfb\xdb\xf7\x55\x25\x1d\xd5\x25\x0a\xfc\x3e\xf7\x63" +"\x21\x1d\x9e\x2a\x1d\xc8\x39\x0a\x9e\x2a\x1d\xfb\x07\x38\x0a\x66\x31\x0a\xfb\x6f\xf7\x4a\x2a\x0a\x2f\x26\x1d\xc3\xf8\x8a\x20\x1d" +"\x2f\x26\x1d\xfb\x1a\xf8\x8a\x7d\x0a\x2f\x26\x1d\xfb\x0d\xf8\x7c\x25\x1d\x2f\x26\x1d\xfb\x73\xf8\x8a\x21\x1d\x2f\x26\x1d\x39\xf8" +"\x97\x2c\x1d\x0e\x2f\x26\x1d\xab\xf8\x82\x15\x6b\x87\xa7\x0a\x85\x4d\x1d\x96\x98\xa3\x1b\x94\x95\x43\x0a\x2f\xf7\xb7\x74\x15\xf7" +"\x11\x8a\xea\xe1\x96\xf7\x11\x08\x5e\x1d\x55\x1b\x6c\x6d\x97\x9f\x7b\x1f\x73\xa8\x7d\xbf\xc4\x1a\xbe\x95\xba\x9c\xab\x1e\x5b\x1d" +"\xf7\x1a\x06\x47\x0a\xfb\x38\xd7\x29\xf7\x1e\x79\x1f\x60\x36\x05\x94\x9e\x96\x8e\x9e\x1b\xaa\xa6\x1d\x71\x92\xa2\x59\x34\x0a\xc9" +"\xaa\x85\xb8\x1b\xde\xb9\x52\x0a\x7c\x7e\x89\x86\x7e\x1f\x0e\x2f\x27\x1d\xb3\xf8\x4a\x20\x1d\x2f\x27\x1d\xfb\x2a\xf8\x4a\x7d\x0a" +"\x2f\x27\x1d\xfb\x1d\xf8\x3c\x25\x1d\x2f\x5b\x0a\x30\x1d\xde\x43\x1d\x30\x1d\xfb\x0a\xf9\x89\x23\x0a\xf7\x63\x6e\x0a\x30\x1d\xfb" +"\x6d\xf9\x89\x21\x1d\x66\x37\x1d\xf7\x69\xf7\x65\x15\x6b\x87\xa7\x0a\x85\x4d\x1d\x96\x98\xa3\x1b\x94\x95\x43\x0a\x66\x28\x1d\xf7" +"\x1f\xf7\xd5\x20\x1d\x66\x28\x1d\x58\xf7\xd5\x23\x0a\x66\x28\x1d\x65\xf7\xc7\x25\x1d\x66\x28\x1d\xfb\x1d\xf7\xd5\x21\x1d\x66\x28" +"\x1d\xf7\x0a\xf7\xcd\x15\x6b\x87\x7f\x7b\x77\x1b\x83\x78\x8e\x8e\x84\x4d\x1d\x97\x98\xa2\x1b\x95\xa2\x1d\x9f\x9e\x87\x9a\x1b\xc7" +"\xaa\xb5\xe0\x8f\x1f\x0e\x2f\x34\x1d\x66\xf7\x85\x2a\x0a\x66\x26\x0a\xb0\x43\x1d\x66\x26\x0a\xfb\x2d\xf9\x89\x4f\x1d\x66\x26\x0a" +"\xfb\x20\x41\x1d\x66\x26\x0a\xfb\x82\xf9\x89\x21\x1d\x2f\x2e\x0a\xfb\x12\xf7\x6d\x20\x1d\x2f\x2e\x0a\xfb\xc3\xf7\x5f\x25\x1d\xfb" +"\x28\x36\x0a\xfb\x30\xf7\x48\x2a\x0a\xfb\x90\xb5\xf8\xde\x15\xfb\xd3\xed\xf7\x36\x07\xc8\xa0\xa6\xbb\xaf\x9b\x79\x62\x1e\xfb\x53" +"\xed\xf7\x5a\x07\xb3\x87\xa1\x7f\x9d\x1e\xa9\x78\x63\x9e\x5f\x1b\x5f\x6d\x7d\x69\x71\x1f\xb3\x07\x0e\x9d\x6b\x1d\x0e\xf7\xbb\x6a" +"\x1d\xf3\x39\x1d\x0e\xf7\xbb\x6a\x1d\xf7\xb9\xb6\x1d\xf7\x4e\xf8\xc8\x2f\x1d\xfc\xa2\xfb\x22\x3c\x0a\xf9\x69\xfb\xe9\x71\x1d\x66" +"\x65\x73\x0a\x0e\xf7\x4e\xf8\xe9\x2f\x1d\xcd\xfc\x77\x61\x1d\x3c\x3c\x51\x5a\x49\x62\x9c\x7a\x0a\x3a\xf7\x1a\x15\xb1\xa5\x75\x6a" +"\x6a\x71\x74\x65\x66\xb7\x1d\xb0\x1f\xfb\x3c\x04\xb4\xa5\x70\x5e\x62\x71\x70\x62\x62\x71\xa6\xb5\xb6\xa5\xa7\xb4\x1f\xfc\xa3\xf7" +"\xa5\x15\xa6\x9d\x89\x89\x94\x1f\xa7\x84\x9d\x74\x6e\x1a\x68\x71\x72\x67\x61\x76\xa0\xb8\x89\x1e\x2f\x06\x30\x8c\xc3\x57\xec\x1b" +"\xec\xca\xc1\xdf\xba\x75\xad\x5f\xa1\x1f\xad\xa0\x9d\xaa\xb0\x1a\xd2\x52\xb9\x33\x57\x60\x7a\x6b\x72\x1e\x78\x74\x84\x72\x88\x59" +"\x08\xe4\x06\xc2\x8c\x9a\x9e\xb4\x1b\xab\xa0\x76\x6a\x65\x71\x77\x59\x1f\x81\x06\x0e\xf7\x4e\xf8\xdc\x2f\x1d\xda\xfc\x77\x61\x1d" +"\x3d\x3c\x51\x5a\x49\x62\x9b\x7a\x0a\x3b\xf7\x1a\x15\xb0\xa5\x74\x6b\x6a\x71\x74\x65\x67\x71\xa3\xab\xab\xa5\xa2\xb0\x1f\x8a\xfb" +"\x3c\x15\xb4\xa5\x70\x5e\x62\x71\x70\x62\x62\x71\xa6\xb5\xb6\xa5\xa7\xb4\x1f\xfc\x08\xf8\xa4\x15\xfb\x77\x06\x65\xfb\x81\x05\xd7" +"\x06\xa0\x94\x9e\x97\xa4\x1b\xb7\xa4\x6c\x57\x59\x71\x6c\x61\x66\x76\x9d\xae\x89\x1f\x39\x06\x42\x8a\xc5\x57\xde\x1b\xe7\xc9\xca" +"\xe7\xe2\x55\xc7\x3c\x6f\x76\x84\x78\x73\x1f\x98\xe4\x05\xf7\x44\x06\x0e\xf7\x4e\xf8\xbf\x2f\x1d\xe7\xfc\x77\x71\x1d\x65\x66\x73" +"\x0a\xfb\xc1\xf8\xa4\x15\xfb\xbf\x40\xf7\x67\x06\x2f\xfb\x05\x64\x2f\x79\xfb\x26\x08\xe0\x06\x93\xf7\x1b\xb7\xf2\xef\xf7\x0e\x08" +"\x0e\xf7\xf4\x6f\x1d\xf7\x9c\xf7\xe0\x20\x1d\xd5\x20\x0a\xd4\xf8\x06\x42\x0a\xd5\x20\x0a\x0e\xd5\x20\x0a\xfb\x60\xf7\x40\x23\x1d" +"\xd5\x20\x0a\xf7\x29\xf7\xe9\x28\x0a\xd5\xf8\x89\xf7\x27\x15\xbb\xfb\x27\x05\xd6\x06\x3d\x6f\x5d\x58\x50\x1a\x4e\xc0\x69\xea\xa6" +"\xa0\x8e\x91\xa6\x9f\x0a\x74\x9b\xb0\xbc\xb7\xbd\xd0\xa9\x1f\x71\x0a\x0e\xd5\x20\x0a\x89\xf8\x1c\x2c\x1d\xa9\xf7\x3d\x20\x1d\xd5" +"\x5e\x0a\xd5\x2d\x0a\x6e\xf8\x5a\x20\x1d\xd5\x2d\x0a\xfb\x04\xf7\xc4\x7c\x0a\xd5\x2d\x0a\xfb\x70\xf8\x5a\x2b\x1d\xd5\x2d\x0a\xfb" +"\x0b\xf8\x4c\x27\x0a\x9e\x62\x0a\xd5\x6e\x1d\xa8\xf9\x29\x2a\x0a\xd5\x5d\x0a\x67\x8f\x16\xf8\xf0\x06\xfb\x97\xf9\x0a\x05\x33\x06" +"\xb7\x25\x15\xf7\x4b\xfc\x5b\x05\xfc\x01\x06\x0e\x9e\x22\x0a\xf7\x8b\xf9\xb6\x74\x0a\x9e\x22\x0a\xf7\x3b\xf9\x29\x15\xf7\x00\x3a" +"\x0a\x9e\x22\x0a\xf7\x3f\xf9\xb1\x27\x0a\x9e\x22\x0a\xf7\x9d\xf9\x99\x28\x0a\xd6\xf8\x1e\xfb\xb3\x15\x86\xb6\xb0\x89\xa9\x1b\xc7" +"\xb6\x9c\xad\xa2\x1f\x9d\xa6\x92\xac\xd0\x1a\xf8\xef\x07\xea\x77\xc3\x58\xb8\x1e\xb0\x62\x54\x9e\x4d\x1b\x2d\x4a\x67\x39\x58\x1f" +"\xf5\x33\x0a\xf8\x56\x07\xb9\x9c\xb2\xaa\xa5\x1e\xa1\xa6\xab\x95\xbe\x1b\xea\xae\x69\x2c\x1f\xfc\xb7\x07\x51\x80\x7e\x5e\x79\x7e" +"\x8d\x8f\x74\x1e\x0e\x9e\xf7\x79\x99\x1d\xf8\x6b\x06\x35\x64\x64\x60\x53\xbb\x1d\xa6\x1e\xba\x07\x88\x79\x78\x89\x77\x1b\x58\x73" +"\x9c\xaf\xba\xb0\xb6\xd2\xb2\x1f\xf7\x11\xfc\x1f\x07\x0e\x9e\x22\x0a\x0e\xf7\x61\xf8\x00\x4e\x1d\xfb\x66\xf8\xf0\x23\x1d\xd5\x84" +"\x1d\xf7\x96\xf9\x1a\x55\x1d\xfb\x66\xf8\x22\x23\x1d\x2f\xa9\xf7\xd2\x15\x73\x47\x05\xd3\x06\x98\x4b\x9f\x57\xaa\x5d\x08\x48\xb8" +"\xde\x5f\xda\x1b\xb2\xad\x93\xa5\xda\x1f\xf7\x29\x07\x61\x3d\x6f\x81\x63\x1b\x4f\x5b\xbe\xe6\x71\x1f\xf7\x49\x06\xa4\xcf\x05\xfb" +"\x6d\x06\x89\x95\x8b\x92\x95\x1a\x99\x8c\x96\x8d\x9b\x1e\xf7\x84\x06\xa3\xcf\x05\xfb\x8f\x06\xe7\xa3\xb8\xbb\xc9\x1b\xb9\xb0\x7a" +"\x59\xca\x1f\xb8\xf7\x15\x05\xc0\x43\x63\x9a\x45\x1b\xfb\x24\x22\x28\xfb\x3f\x66\x1f\x5b\x06\x73\x47\x05\xca\x06\x8a\x7f\x8b\x82" +"\x7f\x1a\x7f\x8b\x82\x8d\x7d\x1e\x0e\x5c\xd5\x16\xf7\x2a\xf8\xf0\xf7\xfe\xf7\x11\xfc\x94\x06\x0e\xf7\x16\x35\x1d\xfb\x49\xfa\x35" +"\x15\x53\x06\x5c\x82\x75\x78\x5e\x1b\x5e\x72\xa0\xb8\x85\x1f\x53\x81\x06\x3f\xc3\x52\xd7\xd6\xc4\xc4\xd6\x1e\x0e\xf7\x16\x35\x1d" +"\xfc\x09\xfa\x3e\x2b\x1d\xf7\x16\x35\x1d\xfc\x0f\x51\x15\xfb\x04\xce\x07\x8c\x59\x75\x6d\x5d\x82\x08\x5d\x07\xd1\x8d\xc2\xcb\x35" +"\x0a\xf2\x07\x0e\xf7\x16\x35\x1d\xfb\xab\xfa\x30\x27\x0a\xd5\xf8\x8f\xf7\xdf\x15\xfb\xdf\xf7\x2a\xf8\xad\xce\xdb\x48\xf7\x04\xfb" +"\x2a\xfb\x04\xfb\xb5\xf7\x04\xfb\x2a\xfb\x04\x48\x3b\xce\xfc\xad\x2e\x1d\x07\xf7\xb5\xf7\x11\x15\xfb\xb5\xdc\xf7\xb5\x06\x0e\xd5" +"\xf8\x8f\x55\x1d\xe7\xf8\xf1\x2b\x1d\xf7\x1d\xf7\x6a\x31\x1d\xf7\xfd\x7a\x1d\x0e\x29\x1d\xc5\xfa\x33\x74\x0a\x29\x1d\x77\xfa\x2e" +"\x27\x0a\x29\x1d\xc8\xfa\x16\x15\xfb\xa4\x3c\xf7\xa4\x06\x0e\xf7\x69\x5c\x1d\xdf\x06\x3e\x62\x67\x60\x57\x1a\x4f\xbe\x66\xdd\xa2" +"\xa0\x8e\x91\xa5\x1e\xba\x07\x88\x7b\x76\x89\x7e\x1b\x66\x71\xa0\xa9\xb6\xab\xba\xc4\xb4\x1f\x0e\x29\x1d\x0e\x6b\x0a\xfb\x42\xf7" +"\xfd\x31\x1d\xfb\x66\xf9\x6d\x23\x1d\x29\x1d\xb4\xfa\x34\x15\x6b\x88\x7f\x7b\x76\x1b\x84\x78\x8e\x8e\x83\x1f\x44\xa4\x05\x97\x6a" +"\x86\x8c\x79\x1b\x54\x51\x1d\x95\x94\x89\x87\x96\x5f\x1d\xaa\xb5\xe0\x90\x1f\x0e\x2f\x77\x1d\xfb\x13\xf7\x63\x2b\x1d\xd5\x79\x1d" +"\xd5\xf7\x74\xf7\x88\x15\xd6\xd9\xf7\x83\xfb\xd6\x05\xf7\x47\x06\xfb\xd6\xf8\x33\xf7\xb7\xf7\xce\x05\xfb\x45\x06\xfb\xb1\xfb\xd4" +"\x05\xf7\xd4\x33\x0a\x07\xe6\x4f\x22\x1d\x66\x38\x1d\xcf\xf9\xbf\x20\x1d\x9e\x86\x16\xf7\x2d\x06\xf7\x4e\xf8\xc1\xf7\x4d\xfc\xc1" +"\x05\xf7\x2d\x06\xfb\x97\xf9\x6d\x56\x0a\x0e\x66\x38\x1d\xef\xf8\xf0\x22\x1d\x66\x38\x1d\xb2\xfb\x4d\x22\x1d\x66\x38\x1d\xf7\x2b" +"\xf7\xc0\x3e\x0a\xf7\x4d\x66\x0a\xd5\x29\x0a\xf7\xae\xf8\x44\x20\x1d\xd5\x29\x0a\xf7\x5b\xf7\xae\x7c\x0a\xd5\x29\x0a\xdd\xfc\xc8" +"\x22\x1d\xd5\x29\x0a\x0e\xf7\x16\x24\x0a\xd6\xf7\xce\x42\x0a\xf7\x16\x24\x0a\xd1\xf7\xd7\x32\x0a\xf7\x16\x24\x0a\xf7\x2a\xf7\xb1" +"\x28\x0a\xf7\x52\xf8\x19\x7b\x0a\xf7\x0c\x98\x1d\xf7\xcd\xf7\x11\xfb\x38\x07\xb6\xa6\xa0\xa0\x0a\xf7\x5b\xfb\x27\xf7\x25\xfb\x5f" +"\xfb\x5f\xa5\x1d\xa0\x7a\xb6\x70\x08\xfb\x38\xfb\x11\xf7\xcd\x06\xfb\xaa\xf9\x6d\x23\x1d\xf7\x16\x24\x0a\x0e\xf7\x45\xf8\x46\x3f" +"\x0a\xfb\xde\xf7\x08\x23\x1d\xf7\x16\x5a\x0a\x6a\xf8\x11\x20\x1d\xf7\x41\xf7\xf1\x7d\x15\xf7\x11\xe4\x06\xcf\x91\xb4\x96\xb7\xa3" +"\x08\xe0\xb9\xbd\xe7\xf7\x03\x1a\xf7\x02\x59\xe7\x36\xb9\x1e\x5f\xa3\x62\x96\x47\x91\x08\xe4\xfb\x11\x32\x07\x4a\x85\x64\x80\x61" +"\x75\x08\x33\x5e\x54\x2a\xfb\x00\x1a\xfb\x01\xc2\x2a\xe3\x5e\x1e\xb5\x75\xb2\x80\xcc\x85\x08\xf7\x09\x04\x2c\x9c\x57\xc8\xea\x1a" +"\xeb\xbe\xc6\xeb\x9a\x1e\xf7\x11\x16\xb8\x85\xa2\x82\xa2\x78\x08\xae\x6e\x9f\x5a\x55\x1a\x2c\x55\x4a\x2f\x7a\x1e\x0e\xd5\xcd\x16" +"\xf7\x2a\xf8\xf0\xf7\xb4\xfc\xf0\xf7\x2b\xf9\x6d\xfc\xe1\x06\x0e\xf7\x35\xf7\xe1\x16\xf7\x27\xf7\x16\x06\xd8\x8e\xc9\x9e\xb9\xb0" +"\xd4\xc9\x9f\xd3\x8a\xf7\x50\x08\xf7\x6e\xfb\x2a\xfb\x6e\x07\xfb\x21\x87\x6b\x75\x69\x1e\x6a\x71\x69\x7a\x62\x1b\xf8\x6f\xfb\x27" +"\xfc\x6f\x07\x66\x6d\x97\xa6\x72\x1f\x6c\xad\x86\xab\xf7\x2c\x1a\xf7\x6e\xfb\x2a\xfb\x6e\x07\x8a\xfb\x41\x9a\x4b\xc3\x4b\xba\x59" +"\xd1\x70\xe6\x88\x08\x0e\xd5\x3b\x1d\xde\xf8\x9e\x15\xfb\x13\x06\x46\xfb\x2a\x05\xd0\x06\x0e\xd5\x3b\x1d\xf8\x08\x04\xf6\x3a\x0a" +"\xd5\x3b\x1d\x2e\xfc\x6e\x22\x1d\x9e\x74\x1d\x9e\x2c\x0a\x8a\xf8\x41\x20\x1d\x9e\xf7\xe8\x74\x15\xf7\x57\x94\xed\xda\xf7\x29\x1a" +"\xf7\x06\x51\xc7\xfb\x1b\xa5\x1e\x7e\x0a\xf7\x20\x06\x67\x0a\x95\xfb\x26\xdf\x3e\xf7\x3f\x79\x61\x38\x18\x95\x9e\x95\x8d\x78\x0a" +"\xdd\xb9\xac\xc7\xb8\x6e\xa5\x5b\x7c\x80\x89\x87\x7c\x1f\x0e\x9e\x2c\x0a\xfb\x5c\xf8\x41\x23\x0a\x9e\x2c\x0a\xfb\x4d\xfc\xcb\x22" +"\x1d\x5b\xa5\x16\xf8\xbd\xf7\x11\xfc\x02\x06\xf7\x7e\xf7\x87\xfb\x7a\xf7\x80\x05\xf7\xee\xf7\x11\xfc\xaa\xfb\x11\x06\xf7\x7e\xfb" +"\x80\xfb\x81\xfb\x8d\x05\x0e\x66\x42\x1d\x0e\x66\xf8\x15\xf8\x5a\x15\xf7\x2a\xf7\x69\xf7\x11\xfc\xdc\xfb\x11\xf7\x71\xfb\x2a\xfb" +"\x26\x3b\xf7\x26\xfc\x0a\xf7\x2a\xf8\x0a\xf7\x27\xdb\x07\x0e\x66\x42\x1d\x74\xf9\xa6\x2a\x0a\x66\xf7\xff\x16\xa1\xf8\xf0\xf7\x69" +"\xf7\x11\xfc\xdc\xfb\x11\xf7\x71\xfc\xf0\xe0\x06\x55\x21\x05\x95\x9e\x95\x8d\x57\x1d\x74\x92\xa2\x56\x9c\x1d\x7c\x49\x1d\x0e\xf7" +"\x16\xf8\xa1\xf8\x2b\x15\xfb\x9f\x29\xf7\x9f\x06\xfb\x1b\xf8\x44\x6c\x1d\x0e\xd5\x25\x0a\xfb\x6c\xf7\x5a\x42\x0a\xd5\x25\x0a\xfb" +"\x71\xf7\x63\x32\x0a\xd5\x25\x0a\xfb\x1f\xf7\x3d\x28\x0a\xd5\xf8\xe9\xfb\x45\x15\x87\x78\x79\x89\x76\x1b\x57\x72\x9c\xad\xae\x9e" +"\xae\xb9\xbc\x1f\xf7\x00\xf7\x03\x9a\xaa\x8f\xf5\x08\xf8\x82\xfb\x2a\x85\x1d\xe6\x1b\xb2\xa2\x8e\x98\xba\x1f\x3e\x5b\x70\x68\x5b" +"\x1a\x62\xa1\x6f\xb9\x7c\x1e\x83\xa3\xa4\x87\xa6\x1b\xa8\xa3\x8e\x92\xa6\x1f\x0e\x9e\x2a\x1d\x0e\x9e\x2a\x1d\xfb\x0f\x38\x0a\xf7" +"\xab\xf8\xee\xf7\xa2\x15\xf7\x7b\xf8\x5f\x05\xfb\x3c\x06\xfb\x1f\xfb\xd6\xfb\x29\xf7\xd6\x05\xfb\x3b\x06\xf7\x86\xfc\x5f\x05\xfb" +"\xa2\xf7\x2a\x07\xfc\x3a\xf9\x6d\x23\x1d\xd5\x25\x0a\xfb\xb4\xf7\x70\x2c\x1d\x0e\xd5\x25\x0a\xfb\x45\xf7\x5b\x15\x6b\x87\x7f\x7b" +"\x77\x1b\x84\x77\x53\x0a\x6b\x86\x4f\x0a\x88\x1f\xc9\x87\x0a\xa0\x9d\x87\x9b\x1b\xc6\xaa\xb5\xe0\x90\x1f\x0e\xf7\xbc\x2f\x0a\xad" +"\x39\x0a\xf7\xbc\x2f\x0a\xfb\x42\xfa\x3c\x2b\x1d\xf7\xbc\x2f\x0a\xfb\x35\x38\x0a\xf7\xbc\x2f\x0a\xfb\x86\xfa\x3c\x21\x1d\x87\xa6" +"\x16\xf8\xe1\xf7\x11\xfc\xe1\x06\xae\xf7\x51\x15\xf8\x93\xf7\x11\xfc\x93\x06\x6d\xf7\x39\x15\xf8\xd6\xf7\x11\xfc\xd6\x06\x0e\x9e" +"\x2a\x1d\xfb\x1c\xfa\x3c\x23\x0a\x9e\x2a\x1d\xfb\x48\xfa\x3c\x21\x1d\x66\x31\x0a\xfb\x1d\xf7\xe0\x20\x1d\x66\x31\x0a\xfb\x6c\xf7" +"\xd2\x27\x0a\x66\x31\x0a\x0e\x2f\x26\x1d\xbf\xf8\x81\x86\x1d\xf7\x85\x58\x0a\xfb\x35\xf8\x4a\x20\x1d\xf7\xf4\xab\x1d\xd5\xf8\x86" +"\xa2\x0a\xfb\x87\xf9\x6d\x05\xfb\x43\x8c\x1d\x0e\xd2\xd5\x16\xf7\xf3\x06\xf7\x20\xf3\xe9\xf7\x11\xf7\x0e\xfb\x00\xed\xfb\x1c\x1f" +"\xfb\x5d\xf7\x39\xf8\x0f\xf7\x11\xfc\xa5\x06\xf7\x2a\xfc\xf0\x15\xf7\x51\xf7\x6b\x07\xb8\xae\x62\x54\x54\x6a\x65\x5c\x1f\x0e\xd5" +"\xda\x16\xf7\xdd\x06\xdf\xc2\x9b\xb0\xb7\x1f\xb7\xb0\xa7\xc8\xc6\x1a\xd3\x65\xc4\x38\xbb\x1e\xd4\xb9\xa6\xb5\xc9\x1a\xbe\x73\xbf" +"\x62\xaf\x1e\xb0\x61\x59\x9b\x3e\x1b\xfb\xdd\x7e\x1d\x3a\x8d\x0a\x0e\xcb\x7e\xfb\x1c\x15\xf7\x2a\xf7\x1c\xf8\x3b\xfb\x1c\xf7\x2a" +"\xf7\x99\x49\xf8\xf0\xfc\x74\xfc\x55\x06\x8c\x35\x48\x47\x35\x8a\x08\x72\x06\xf8\x8f\x16\xfb\x9b\x06\xbe\xad\xab\xc4\xc5\x1a\xf7" +"\xde\xf7\x48\x07\x0e\x9e\xf7\x73\x4e\x1d\x0e\xa0\xf7\x74\xf7\xce\x15\xf7\xf1\xf7\x11\xfb\xf1\xf7\x39\xf8\x0d\xf7\x11\xfc\xa3\xfd" +"\x6d\xf8\xb5\xf7\x11\xfc\x1f\x06\xdf\xf9\xb1\x25\x1d\xf7\x94\xf8\x0d\x16\x2e\x1d\xe2\x83\x0a\xfb\x2b\xc4\x1d\x2d\xf7\xa5\xfb\x2a" +"\xfb\xa5\x24\x94\x1d\xf7\x1a\xf7\xdf\x05\xec\x06\x0e\x75\xc6\xf7\x86\x15\x6f\x07\x4a\x9d\x58\xb0\x63\x1e\x58\xba\xd5\x6d\xdb\x1b" +"\xf7\x25\xf7\x03\xf2\xf7\x19\xe1\x61\xcc\x42\xa4\x1f\xcc\xaf\xaa\xbd\xd0\x1a\xf7\x06\x26\xde\xfb\x1e\x3f\x42\x72\x63\x61\x1e\x64" +"\x66\x7b\x5e\x44\x1a\x72\xf7\x2a\xa4\x07\xc3\xad\xad\xc4\xc3\xb1\x69\x59\x56\x62\x66\x51\x1e\x5e\xfb\x11\xc3\x06\xa2\xa2\x84\x7e" +"\x9f\x1f\xa6\x79\x97\x71\x64\x1a\x49\x64\x63\x4c\x66\x6c\x98\xa1\x7a\x1e\x7b\xa0\x84\xa7\xc0\x1a\x0e\xd2\x3e\x1d\x0e\xd2\x3e\x1d" +"\xf8\x08\xf7\x60\x15\x5a\x85\x70\x72\x5f\x1b\x5e\x71\xa4\xbc\x84\x1f\x33\x06\x8c\x65\x8e\x7b\x95\x76\x08\x55\xa7\xbe\x6f\xd4\x1b" +"\xce\xba\xa2\xbb\xa9\x1f\x9b\xa4\x8f\x9d\x8d\xb6\x08\x0e\x65\xc5\x16\x2e\x1d\xe5\x06\x7f\x0a\x26\xfb\xa5\x05\x35\xf7\xa5\xfb\x2a" +"\x06\x0e\xc1\x90\x16\xdf\x06\xdf\x8a\xd5\xd3\x35\x0a\xf8\x5b\xf7\x7b\xfc\xf0\x2b\x0a\xfc\xa7\xfc\xcd\x07\x73\x8a\x7f\x80\x74\x1b" +"\x56\x06\x0e\xf7\x4d\xf7\x68\x68\x0a\xd5\xa3\x0a\x2b\x0a\x89\x0a\xf7\x16\xf8\x18\x3f\x0a\x0e\xd2\xd3\x16\xf7\x2a\xf8\xf2\xf7\xa8" +"\xfc\xf2\x2b\x0a\xfc\xd4\x06\x0e\x9e\xf7\x6f\x76\x1d\xd5\xf9\x3d\xf8\x76\x15\xb8\x1d\x30\x8f\x0a\xfb\x26\xfb\x81\xfb\x7f\xf7\x12" +"\xfb\x26\xf7\x5f\xf7\x49\xf7\x0c\xf4\xf7\x3b\x94\x1f\xfb\x24\x77\x0a\x0e\x66\xf8\x14\x9d\x1d\x0e\x71\x73\x1d\x0e\xf7\x62\xf7\xf3" +"\x16\xf7\x2a\xf0\xbc\x06\xf7\x2a\xf7\x04\xf7\x05\xf7\x2c\xf7\x2a\xfb\x04\xf7\x04\xfb\x2a\x1f\x5a\xf0\xfb\x2a\x26\x55\x06\xfb\x2a" +"\xfb\x04\xfb\x04\xfb\x2a\xfb\x2c\xf7\x04\xfb\x05\xf7\x2a\x1f\xc1\x06\x88\xf8\x26\x15\xfb\xa9\x72\x07\x3a\x52\xc5\xdd\xdc\xc3\xc3" +"\xdd\x1f\xf7\x48\x16\x9f\x06\xdd\xc4\x53\x3a\x39\x52\x51\x39\x1f\x77\x06\x0e\x9e\xf8\x33\xf8\x06\x15\xf7\x79\xf7\xfb\x05\xfb\x43" +"\x06\xfb\x1e\x81\x0a\xf7\x3e\x06\xf7\x1f\xf7\x91\xf7\x1e\xfb\x91\x05\xf7\x43\x06\x0e\xdd\xcf\x16\xf8\x76\xfb\x33\xf7\x2a\xf7\xb0" +"\x49\xf8\xf0\x91\x0a\xc2\xf8\x81\x16\x2b\x0a\x6c\x0a\xf7\xf9\xbc\x16\xfa\x1e\xf9\x6d\xfb\x2a\xfc\xf0\xfb\x78\x57\x0a\xfc\xf0\xfb" +"\x78\x60\x1d\xf8\x07\xbf\x16\xf9\xba\xfb\x33\xf7\x2a\xf7\xb0\x49\x57\x0a\xfc\xf0\xfb\x71\x57\x0a\xfc\xf0\xfb\x6f\x60\x1d\xf7\x72" +"\xf7\x9a\x16\xf7\xca\x06\x53\x1d\xfc\x20\xfb\x11\xf7\x8a\x06\xf7\x2a\xfc\x73\x4a\x0a\xf7\xdf\xf6\x16\xf7\xca\x06\x53\x1d\xfb\x2a" +"\x06\xf7\x2a\xfc\xf0\x76\x0a\xf7\xc5\xfb\x11\x15\x48\x1d\x06\x0e\xd2\xef\x16\xf7\xca\x06\x53\x1d\xfb\x2a\x06\xf7\x2a\xfc\xf0\x4a" +"\x0a\xca\xf8\xa5\xf7\xce\x15\xfb\x1a\x7c\x4a\x40\x23\x1b\x2f\x4f\xbf\xf7\x02\x69\x1f\xfb\x20\x5e\x05\xfb\x2f\xba\xf7\x0d\x31\xf7" +"\x36\x1b\xef\xda\xae\xd1\xc7\x1f\xc6\xd0\xad\xf0\xf6\x1a\xed\x6e\xe9\x58\xcf\x1e\xdc\x50\x35\xb4\xfb\x00\x1b\xfb\x20\x23\x4b\xfb" +"\x11\x4c\x1f\xf7\x16\x4b\x05\xe2\xb3\xc0\xb1\xdc\x1b\xc7\xbd\x70\x5c\xaa\x1f\x9d\x6e\x93\x75\x96\x5a\x08\xfb\xbc\xfb\x11\x06\x0e" +"\xf8\x13\xf7\x5f\xf8\x5c\x15\xf7\xa5\x33\x0a\xf7\xdf\xf5\x07\x90\x46\x9a\x50\xa8\x55\x08\xfb\x06\xc8\xed\x51\xf7\x18\x1b\xef\xdc" +"\xad\xce\xc7\x1f\xca\xd1\xaf\xf1\xf7\x01\x1a\xf7\x01\x67\xf1\x4c\xd1\x1e\xce\x4f\x3b\xad\x26\x1b\xfb\x40\xfb\x0c\x24\xfb\x4a\x64" +"\x1f\xf7\xde\xf7\x31\x15\xf7\x09\xd5\x27\xfb\x32\xfb\x2a\x3f\x27\xfb\x06\xfb\x08\x40\xef\xf7\x2e\xf7\x2e\xd6\xef\xf7\x07\x1f\x0e" +"\xd2\xf8\x81\x16\x2b\x0a\xfb\xe9\x06\x4c\x5a\x7a\x66\x61\x1f\x5b\x61\x70\x4e\x4d\x1a\x5a\x9b\x59\xa8\x66\x1e\x9b\x76\x9b\x80\xac" +"\x7d\x53\x89\x6a\x61\x8c\x47\x08\xfb\x0d\x07\x87\x4f\x7f\x72\x6e\x81\x08\xf7\x1e\x06\xae\x8a\x9e\xa7\x8e\xc4\x08\xf7\x1f\x07\xaf" +"\x99\x99\xb1\x8d\x1e\xf7\x58\x06\xf7\x11\x04\xfb\x42\x06\x51\x65\xb3\xc8\xc7\xb3\xb6\xc3\x1f\xf7\x42\x06\x0e\xfb\x35\xf8\x03\x21" +"\x0a\xfb\xb4\xfd\x6d\xbe\x1d\x06\xe4\x4e\x0a\xf7\x81\xf7\x91\x16\xf7\x2a\xf7\xb8\x06\xb8\xa6\xbe\xa3\xce\x1b\xc5\xad\x71\x60\x1f" +"\xfb\x05\x07\x89\x69\x73\x76\x67\x8c\x08\x44\xfb\x11\xf7\x14\x06\xdc\x87\xd2\xd0\x8e\xe0\x08\xf7\x43\x07\xb2\x7e\xb0\x74\xa8\x1e" +"\xb3\x6a\x5b\x9e\x46\x1b\x3b\x4c\x76\x5e\x51\x1f\xf7\x49\xf7\x56\xf7\x11\xfc\xb7\xfb\x11\xf7\x5f\x07\x0e\x3a\x8d\x0a\xf7\x0a\xcd" +"\x15\xf7\x04\x06\xe3\x4e\x0a\xca\xf8\x78\xf7\xce\x15\xf7\x11\xfb\xbc\x07\x96\xbc\x93\xa1\x9d\xa8\x08\xba\xaa\xbd\xa6\xc7\x1b\xdc" +"\xc0\x65\x34\xb3\x1f\xf7\x16\xcb\x05\xf7\x11\x4c\x23\xcb\xfb\x20\x1b\x28\x3b\x68\x48\x50\x1f\x4f\x46\x68\x24\xfb\x00\x1a\x2a\xa7" +"\x2e\xbd\x47\x1e\x38\xc8\xdf\x62\xf7\x01\x1b\xf7\x36\xf7\x09\xe2\xf7\x32\xbe\x1f\xfb\x20\xb8\x05\xfb\x02\x69\x4f\x57\x2f\x1b\x23" +"\x4a\xd6\xf7\x1a\x7c\x1f\x0e\x9e\xf8\xf3\xf8\x8f\x15\xf7\x2b\x8a\x26\xde\xfb\x4d\x1b\xfb\x42\x95\x0a\xf0\x77\x05\xf0\x78\xb0\x6f" +"\x50\x1a\x4e\x53\x66\x30\x25\x52\xb5\xda\x86\x1e\xfb\x26\x06\xfb\x30\x94\xf6\x36\xf7\x4e\x1b\xf7\x51\xf7\x02\xe2\xf7\x2a\xf7\x06" +"\x50\xc7\xfb\x1a\xa5\x1f\xfb\x06\xa1\x05\xfb\x00\xa0\x6d\xa0\xc0\x1a\xc3\xbb\xad\xd9\xea\xc0\x63\x41\x90\x1e\x0e\xf7\x6a\x31\x1d" +"\x0e\xfc\x08\xf7\x68\x6d\x0a\x2f\xf7\xe7\x21\x0a\xfc\xab\x07\x51\x6e\x6c\x56\x53\x73\xa5\xca\x1e\xd7\xfb\x2a\x3f\x07\x40\x9d\x5d" +"\xb6\x64\x1e\x65\xb5\xc3\x78\xcf\x1b\xf7\x2a\xe0\xd9\xf7\x1f\x1f\xf8\xab\x07\x0e\xf8\x52\x9b\x16\xdf\x06\xdf\x8a\xd5\xd3\x35\x0a" +"\xf8\x5b\xf7\x7b\xfc\xf0\xf7\xca\x07\xf7\x1e\xf0\xea\xf7\x17\xf7\x17\x27\xea\x59\x1d\xfc\xa7\xfc\xcd\x06\x73\x8a\x7f\x80\x74\x1b" +"\x56\x06\xf9\x00\x16\xf7\x5e\xf7\x34\x07\xc2\xad\x65\x4d\x4d\x68\x63\x55\x1f\x0e\xf8\x33\xf7\x5e\xf7\xdf\x15\xf7\xb5\xfb\xdf\xf7" +"\xca\x06\xf7\x1e\xf0\xea\xf7\x17\xf7\x18\x27\xe9\x59\x1d\xa3\x1d\xf8\x4b\xf7\x11\x4a\x0a\xf7\x77\xf7\x8b\x16\xf7\x2a\xf7\xb8\x06" +"\x95\x9c\x91\x94\x94\x94\x08\xa0\xa0\xb6\x98\xbf\x1b\xbf\xa2\x85\x7c\x99\x1f\x96\x7d\x92\x7a\x7a\x1a\xfb\xb8\xf7\x2a\xf7\xd9\x07" +"\xb0\x7d\xb3\x73\xa7\x1e\xb5\x69\x5c\x9c\x38\x1b\x2d\x63\x7d\x57\x4d\x1f\xf7\x49\xf7\x59\xf7\x11\xfc\xa7\xfb\x11\xf7\x4c\x07\x0e" +"\x65\xac\x16\x2e\x1d\xe1\x83\x0a\xfb\x2c\x06\x2b\xfb\xa5\x05\x34\xf7\xa5\xfb\x2a\x06\xf7\x68\xcd\x15\xf7\x03\x06\xe4\x4e\x0a\x71" +"\x73\x1d\xf7\xe5\xf9\xbc\x15\x5a\x84\x71\x72\x5e\x1b\x5f\x70\xa4\xbc\x85\x1f\x32\x06\x8c\x65\x8f\x7b\x95\x76\x08\x55\xa6\xbf\x6f" +"\xd3\x1b\xcf\xba\xa2\xbb\xa9\x1f\x9a\xa4\x90\x9d\x8c\xb6\x08\x0e\x2f\xf8\xa0\x9c\x15\x74\xa1\x84\x9c\xa6\x1a\xf7\xc0\x07\xf7\x02" +"\x3f\xc3\xfb\x28\x60\x0a\xf7\x2d\x06\xfb\x3e\xf7\x6d\x15\x3a\x63\x5d\x44\x5c\x6e\xa4\xb3\xb5\xa1\x9f\xc5\x97\x1e\xbb\x94\xb0\x92" +"\x91\x8d\x9b\x93\x19\x0e\x6d\xf8\x0c\xf9\xe3\x15\x89\x40\x79\x6f\x56\x7c\x2c\x6d\x5d\x6e\x61\x51\x08\x56\x44\x72\x2a\xfb\x17\x1a" +"\x32\x94\x4c\x9e\x61\x1e\x31\xb3\xe3\x57\xf7\x03\x1b\xf7\x3a\xf0\xf7\x00\xf7\x46\xdc\x77\xcc\x62\xbd\x1f\xc1\x5e\x46\xab\x44\x1b" +"\x54\x5a\x7b\x67\x56\x1f\x93\xcb\xb8\xa9\xf7\x0c\xa4\xf7\x1a\xa7\xb0\xbc\x90\xf7\x32\x08\xfb\x69\xfc\x2f\x50\x1d\x6a\xe2\x16\xf7" +"\xcb\x06\xe7\xcd\xca\xe3\xcd\x6b\xb5\x48\xa1\x1f\xc7\xa4\xa7\xb2\xc4\x1a\xd9\x4b\xc7\x38\x1e\xfb\xcb\x06\xf7\x20\xfc\x3f\x15\xf7" +"\x0c\xf7\x18\x07\xab\xa4\x70\x6a\x69\x72\x71\x6b\x1f\xfb\x18\xf7\x6b\x15\xee\xf7\x18\x07\xa6\x9e\x77\x6e\x6d\x78\x77\x70\x1f\x0e" +"\xfb\x7b\x90\x0a\x0e\x7e\x92\xfb\x04\x15\xf7\x20\xf7\x04\xf7\xdd\xfb\x04\xf7\x20\xf7\x75\x59\xf8\x3f\xfc\x3d\xfb\xbd\x06\x3d\x8c" +"\x6c\x57\x5b\x1b\x53\x06\xf8\x37\x16\xfb\x63\x06\xb4\xac\x9f\xba\x8c\xd0\x08\xf7\x39\xf7\x25\x07\x0e\x2f\x65\x0a\x61\x7a\x65\x74" +"\x59\x1b\x63\x6b\x9b\xa9\x77\x1f\x7e\x9f\x86\xa2\x89\xbd\x08\x8d\xe8\x15\xdc\x94\xae\xb2\xc9\x1b\xcb\xb1\x61\x3d\x92\x1f\x0e\x2f" +"\x65\x0a\x5f\x7a\x65\x73\x59\x1b\x63\x6b\x9b\xaa\x77\x1f\x7e\xa0\x86\xa2\x89\xbe\x08\x8d\xe8\xad\x0a\xc9\x97\x0a\xfb\x23\xf8\x3c" +"\x25\x1d\xc8\xf8\x3d\x16\xf7\x83\xbe\x07\x4b\x1d\xf7\x23\xac\x1d\x46\xfb\x50\x05\x58\xf7\x50\xfb\x20\xfb\x50\x4f\x06\x46\xf7\x50" +"\x05\xfb\x21\x06\xe4\xfb\x83\xfb\x04\xfb\xc1\x05\xf7\x24\x06\xe4\xf7\x83\x05\xc7\xfb\x83\x06\x0e\xfb\x2b\xad\xf7\x47\x15\x8f\x48" +"\x96\x6b\xa9\x69\x08\x5e\xb2\xc6\x73\xd1\x1b\xf7\x0c\xe3\xd4\xee\xc4\x72\xb1\x4f\xad\x1f\xbd\xa5\xa6\xb7\xc1\x1a\xe3\x3b\xc6\xfb" +"\x0d\xfb\x09\x37\x50\x39\x1e\x64\xf7\x1a\x97\x07\xac\xa4\xa1\xb2\xb3\xa3\x75\x67\x63\x71\x78\x56\x1e\x70\x2c\xa6\x06\xb4\x95\x89" +"\x7f\x9a\xc2\x1d\x6f\x6f\x62\xa9\x1d\x0e\x6a\x3f\x1d\x0e\x6a\x3f\x1d\xf7\xca\xa6\x0a\x5a\x77\x9a\xb3\x87\x1f\x48\x06\x6e\x8f\x7b" +"\x93\x7a\x1e\x63\x9f\xbf\x6f\xc3\x1b\xc2\xbf\xa7\xb3\x9f\x1f\x93\x9c\x8f\x9b\x8c\xa8\x08\x0e\xfb\x28\xae\x24\x1d\xfc\xb0\xf7\x20" +"\xf7\x83\xcc\x07\x46\x0a\x4a\xf7\x50\x06\x0e\x7e\xb0\x16\xeb\x06\xd4\x8c\xc8\xc7\x8a\xd3\x08\xf7\xba\xf7\x25\xfc\x3f\xf7\x20\xf8" +"\xb0\xfc\x3d\xfc\x0f\x07\x8c\x72\x79\x76\x74\x89\x08\x5a\x06\x0e\xe7\xf9\x27\x16\xf8\xb0\xfb\x51\x07\x24\xfc\x29\x29\xf8\x29\x05" +"\xfb\x50\xfc\xb0\xf7\x17\xf8\x30\x06\xef\xfc\x30\x05\xf7\x03\x06\xf1\xf8\x30\x05\xfc\x30\x07\x0e\x5f\x9d\x0a\xf7\x20\xf8\xb0\x92" +"\x0a\x66\xf7\xc5\x41\x0a\x0e\x5f\xd4\x16\xf7\x20\xf8\x3f\xf7\x46\xfc\x3f\xf7\x20\xf8\xb0\xfc\x5e\x06\x0e\x66\xf7\x5c\xf8\xb0\x15" +"\xfb\x20\xfd\x8a\x66\x1d\x50\xac\xbc\x6f\xce\x1b\xf7\x17\xeb\xf7\x0d\xf7\x39\xf7\x3c\x2f\xf7\x0a\xfb\x16\x46\x58\x8b\x1d\x2f\xf8" +"\xa0\xf7\xe6\x15\x47\x0a\xfb\x47\xe8\x24\x7c\x1d\x0e\xfb\x32\xf7\x43\x16\xf7\x20\xf8\x3f\xf7\x33\xf7\x05\xfc\x5e\xfb\x05\xf7\x33" +"\x06\x0e\x2f\x64\x0a\x0e\xf7\x77\xf8\x04\x16\xfb\x6e\xf7\x20\xf7\x6e\xa0\x07\xcd\xdc\xa6\xb2\xbe\x1f\xc8\xbb\xb2\xda\xd7\x1a\xd3" +"\x67\xd8\x55\xbb\x1e\xbb\x55\x41\xa5\x3b\x1b\x76\xf7\x58\xfb\x20\xfb\x58\x76\x06\xfb\x3e\xfb\x16\xfb\x06\xfb\x2b\xfb\x2d\xf7\x19" +"\xfb\x0e\xf7\x3b\x1f\xa0\xf7\x05\x15\x4d\x8f\x6e\x94\x6a\xa6\x08\x68\xa9\x75\xb8\xb7\x1a\xb5\x9f\xb4\xad\xa8\x1e\xac\xa7\xa9\x95" +"\xcb\x90\x08\xf7\x20\x16\xca\x87\xa8\x82\xac\x6f\x08\xad\x6d\x9f\x60\x5e\x1a\x5c\x75\x5f\x66\x6f\x1e\x6c\x73\x6f\x82\x4e\x88\x08" +"\x0e\x2f\xf7\xfa\x75\x1d\x6a\xd2\x16\xf8\x05\xfb\x34\xf7\x20\xf7\xa5\x53\xf8\x3f\xaa\x1d\x48\xf8\x13\x16\xf7\x23\xf8\xb0\x69\x0a" +"\xf7\x4d\xc7\x16\xf9\x5e\xf8\xb0\xfb\x20\xfc\x3f\xfb\x27\x3a\x1d\xfc\x3f\xfb\x27\x9c\x0a\xf7\x58\xb6\x16\xf9\x21\xfb\x33\xf7\x20" +"\xf7\xa4\x53\x3a\x1d\xfc\x3f\xfb\x32\x3a\x1d\xfc\x3f\xfb\x33\x9c\x0a\xdc\xf7\x60\x16\x9e\x1d\xfb\xd3\xfb\x05\xf7\x47\x06\xf7\x20" +"\xfb\xce\xa4\x1d\x0e\xf7\x62\xf0\x16\x80\x0a\x06\xf7\x20\x49\x0a\xf7\x7f\xfb\x05\x15\xf7\x20\xf8\xb0\xfb\x20\x06\x0e\x6a\xe7\x16" +"\x80\x0a\x06\xf7\x20\x49\x0a\x0e\x2b\xf7\x41\xf7\x76\x15\xf7\x6b\x06\x34\x7f\x5e\x5a\x48\x1b\x50\x62\xaf\xd1\x77\x1f\xfb\x1b\x67" +"\x05\xfb\x0b\xae\xe4\x4b\xf7\x16\x1b\xf7\x3a\xf0\xf7\x00\xf7\x46\xf7\x46\x26\xf7\x00\xfb\x39\x21\x37\x5d\x39\x60\x1f\xf7\x10\x4f" +"\x05\xbe\xa4\xad\xa3\xbc\x1b\xc8\xbc\x5d\x46\x96\x1f\xfb\x67\x06\x0e\xf7\x62\xf7\x51\xf7\xe8\x15\xf7\x5c\x2d\x1d\xf7\x77\xef\x07" +"\xfb\x35\x9a\xea\x32\xf7\x2f\x1b\xf7\x3a\xf0\xf7\x00\xf7\x45\xf7\x47\x26\xf7\x00\xfb\x3a\x35\x43\x6d\x52\x5c\x1f\x6e\x68\x7d\x6c" +"\x7f\x53\x08\xf7\x98\xeb\x15\xd8\xbd\x46\x21\x25\x57\x46\x40\x3f\x58\xd0\xf3\xf2\xbe\xd1\xd7\x1f\x0e\x4a\xf8\x09\x16\xf7\x20\xf8" +"\xb0\xfb\xbf\x06\x29\x48\x4b\x2c\x49\xa9\x5a\xc1\x74\x1f\x62\x70\x83\x7a\x88\x49\x88\x42\x85\x71\x74\x69\x08\xf7\x25\x06\x97\xa3" +"\x93\xaf\xb4\x1a\xad\x07\xbc\x9c\x9c\xbd\x1e\xe7\x06\xf7\x05\x04\xfb\x21\x06\x6f\x76\xa2\xac\xad\x9f\xa2\xa8\x1f\xf7\x21\x06\x0e" +"\xfb\x5d\xf7\xdd\x24\x1d\xfb\x85\xfc\xb0\xab\x0a\x06\xf7\x1a\xf7\x32\x05\xfb\x1a\x06\x0e\x66\xf7\x22\x16\xf7\x20\xf7\x71\x06\xb1" +"\xa9\x9e\x97\xa8\x1b\xad\x9d\x7a\x6a\x1f\xfb\x5e\x07\x8c\x65\x72\x70\x66\x8a\x08\x2c\x2e\xf7\x10\x06\xed\x8c\xd8\xdb\x88\xee\x08" +"\xf7\x49\x07\xe6\x50\xc8\x34\x60\x6a\x7e\x69\x5b\x1e\xf7\x69\xf7\x1a\xe8\xfb\x1a\xf3\xfb\x20\x23\x21\x2e\xf5\x07\x0e\xfb\x7b\x90" +"\x0a\xe0\xc5\x15\xe4\x06\xf7\x1a\xf7\x32\x05\xfb\x1a\x06\x0e\x2b\xf8\x0f\xf7\x76\x15\xea\xfb\x67\x07\xd0\x96\xbc\xb9\xc8\x1b\xbc" +"\xad\x73\x58\xa4\x1f\xf7\x10\xc7\x05\xdd\x60\x37\xb9\x21\x1b\xfb\x39\x65\x1d\xfb\x46\xef\xfb\x00\xf7\x3b\xf7\x16\xe3\xcb\xf7\x0b" +"\xaf\x1f\xfb\x1c\xaf\x05\x45\x78\x62\x67\x50\x1b\x48\x5e\xbc\xe2\x7f\x1f\x0e\x2f\xf8\x8d\xf8\x02\x15\xf7\x06\x89\x33\xd0\xfb\x26" +"\x1b\xfb\x1c\x63\x0a\x69\x64\x78\x49\x44\x6f\x9d\xbf\x81\x1e\xfb\x1d\x06\xfb\x0b\x8f\xe0\x4e\xf7\x36\x1b\xdc\xc8\x9d\xb0\xb5\x1f" +"\xae\xaa\xa0\xbb\xbd\x1a\xd0\x67\xb8\x45\xa0\x1e\x85\x0a\x1e\x0e\xf7\x65\xf8\xb0\x39\x1d\x0e\xfc\x03\xf7\x64\x6e\x0a\xf7\x67\x24" +"\x1d\xfb\x20\xfc\xef\x06\x6a\x81\x82\x62\x1e\x7c\xfb\x05\x9a\x06\xf3\x92\x8b\x97\xa7\x1f\xad\x9b\x9d\xaf\xc4\x1a\xf9\xce\x58\x1d" +"\xf7\xd5\xac\x16\xeb\x06\xd4\x8c\xc8\xc7\x8a\xd3\x08\xf7\xba\xf7\x3f\xfc\x3f\xf7\xc6\x07\xf5\xd9\xd4\xef\xee\x41\xcf\xfb\x02\x1f" +"\xfb\x3a\xf7\x5c\xfc\x57\xfc\x0f\x06\x8c\x72\x79\x76\x74\x89\x08\x5a\x06\xf8\xb0\x16\xf7\x06\xf7\x34\x07\xa8\xa0\x73\x6a\x6a\x76" +"\x73\x6e\x1f\x0e\xf7\x96\xd1\xba\x1d\xf7\xaf\x06\xf5\xd9\xd4\xef\xee\x41\xcf\xfb\x02\x1f\xfb\x23\xf7\x5c\x9b\x0a\xf8\x6f\x49\x0a" +"\x0e\x66\xdb\x16\xf7\x20\xf7\xbb\x06\xc7\xa7\xab\xa5\xbc\x1b\xc0\xad\x69\xa5\x0a\xed\x44\xd1\x28\x51\x64\x7b\x57\x46\x1e\xf7\x07" +"\xf7\x1d\xe8\xfb\x1d\xf0\xfb\x20\x26\x24\x2e\xf2\x07\x0e\xfb\x28\xf7\x52\xf8\xea\x15\xe7\x06\xf7\x17\xf7\x32\x05\xfb\x17\x06\xfb" +"\x8b\xfb\x6c\x15\xfc\xb0\xf7\x20\xf7\x83\xc9\x07\x4b\x1d\xf7\x24\xac\x1d\x45\xfb\x50\x05\x4d\xf7\x50\x06\x0e\x2f\x64\x0a\xfb\x4b" +"\xa6\x0a\x5b\x77\x9a\xb3\x87\x1f\x47\x06\x8c\x6e\x8e\x7b\x94\x7a\x08\x63\x9e\xc0\x6f\xc2\x1b\xc2\xc0\xa7\xb3\x9e\x1f\x94\x9c\x8e" +"\x9b\x8c\xa8\x08\x0e\xd2\xd8\x16\xf7\x64\xfb\x34\xf7\x2a\xf7\x34\xf7\x64\xf9\x6d\x91\x0a\x5f\xd7\x16\xf7\x30\xfb\x34\xf7\x20\xf7" +"\x34\xf7\x31\xf8\xb0\xaa\x1d\x42\xaf\xf7\xc0\x15\x8a\x80\x8b\x82\x85\x1a\x58\x93\x56\x98\x67\x1e\x29\xaf\xe2\x50\xf7\x01\x1b\xf7" +"\x2e\xea\xf7\x04\xf7\x49\xf7\x41\x2c\xf5\xfb\x2e\xfb\x0f\x29\x46\x21\x6c\x1f\xf7\x24\x06\xb5\x9c\xb0\xa2\xbe\x1b\xb3\xab\x7b\x6d" +"\x9e\x1f\x98\x77\x90\x74\x8d\x59\x08\x8a\x2e\x15\x3a\x82\x68\x64\x4d\x1b\x4a\x65\xb5\xd9\x85\x1f\x0e\xf7\x81\xf8\x1f\xf8\xd4\x15" +"\xec\x83\x4c\xc5\x29\x1b\xfb\x09\x48\x3e\xfb\x19\xfb\x15\xce\x40\xf7\x08\xe9\xcd\xc7\xe9\x95\x1f\xfb\x06\x06\x61\x81\x7b\x7b\x6d" +"\x1b\x63\x73\xb3\xcf\xd7\xa0\xb1\xb6\xaa\x9a\x7c\x5f\x95\x1f\xf8\x05\xfb\x47\x15\xfb\x0b\x42\x3d\xfb\x15\xfb\x14\xd4\x3d\xf7\x0c" +"\xf7\x0b\xd5\xd9\xf7\x12\xf7\x18\x44\xd8\xfb\x0f\x1f\x8c\x2b\x15\xb8\xa8\x5f\x47\x4a\x6d\x5f\x5f\x5f\x6d\xb7\xcd\xce\xa9\xb7\xb7" +"\x1f\x42\xf8\x2c\x15\xfc\x14\xfd\x59\x05\xdb\x06\xf8\x13\xf9\x59\x05\x0e\xfb\x33\xf7\x3e\xf7\xb6\x15\xca\xce\xb2\xba\xa5\xb7\x08" +"\xb4\xd1\xa4\xd9\xc5\x1a\xc1\x70\xae\x61\x33\x49\xfb\x22\xfb\xd4\x4e\x1e\x70\x6c\x79\x79\x7c\x7e\x08\x79\x7b\x85\x83\x83\x1a\x82" +"\x93\x81\x93\x92\xa6\x9f\xa3\xa4\x1e\x7f\x2f\x8a\x7b\x6b\x1a\x51\xa8\x68\xba\xaf\xa9\xa0\xb8\xa5\x1e\x98\xa1\x92\x9f\x97\x1a\x95" +"\x84\x92\x81\x82\x85\x85\x7c\x83\x1e\x5e\x75\x7e\x7d\x79\x1b\x7e\x86\x92\x9d\xa4\x9e\xf7\x13\x9b\xd8\x1f\x96\xce\x15\xf7\x8b\xb4" +"\xaa\xe7\xb5\x1b\x9a\x95\x7b\x74\x31\x55\xfb\x08\x36\x2d\x1f\x0e\xf8\x67\xf8\x40\x16\xf7\x0d\xf9\x6d\xfb\x0d\xfc\x84\x06\xfb\x7d" +"\xf8\x84\x05\xfb\x10\xfd\x6d\xf7\x0d\xf8\x8c\x06\xf8\x5b\xfc\x8c\x15\xf8\x38\xea\xfc\x38\x06\xf7\x62\xf9\x1a\x15\xfb\x19\x39\xfb" +"\x01\xfb\x45\xfb\x46\xdc\xfb\x00\xf7\x1a\xf7\x19\xde\xf7\x00\xf7\x42\xf7\x4b\x3b\xf6\xfb\x1c\x1f\xfb\x05\x04\xc9\xb4\x46\x21\x26" +"\x61\x45\x4f\x4d\x62\xd0\xf3\xf3\xb4\xd0\xc8\x1f\x0e\x6a\xf8\x8d\xf7\xa6\x15\xf5\xf7\x9e\x05\xfb\x26\x06\x63\xfb\x19\x76\xb3\x7f" +"\x9d\x76\xa0\x19\xb3\x65\x58\xa2\x5a\x1b\xfb\x0d\x31\xfb\x0f\xfb\x39\xfb\x38\xe3\xfb\x0d\xf7\x0d\xde\xc8\xbe\xf7\x04\xc0\x1f\xbd" +"\xfb\x1f\x05\xf7\x2d\x06\xfb\x94\xf7\xa6\x15\x71\x38\x82\x72\x7c\x74\x08\x69\x75\x6e\x77\x71\x1b\x55\x65\xd3\xf2\xf3\xb0\xd0\xc3" +"\xbf\xb2\x59\xfb\x05\xae\x1f\x0e\x6a\xf8\x98\xf7\xa6\x15\xf6\xf7\x9e\x05\xfb\x26\x06\x62\xfb\x19\x77\xb3\x7e\x9d\x77\xa0\x19\xb3" +"\x64\x58\xa2\x59\x1b\xfb\x11\x2d\xfb\x10\xfb\x38\xfb\x37\xe7\xfb\x0d\xf7\x11\xdf\xc8\xbd\xf7\x04\xc0\x1f\xbd\xfb\x1f\x05\xf7\x2e" +"\x06\xfb\x94\xf7\xa6\x15\x71\x38\x81\x73\x7d\x74\x08\x68\x74\x6f\x78\x6f\x1b\x50\x62\xd4\xf2\xf0\xb4\xd1\xc7\xc0\xb2\x5a\xfb\x06" +"\xaf\x1f\x47\xf8\x97\x23\x1d\x2f\x26\x1d\xce\xf8\x64\x28\x0a\xfb\xcf\xc5\xf7\x82\x15\xf7\x42\xfb\xe8\x05\x7b\x93\x95\x84\x97\x1b" +"\x93\x90\x8f\x92\x92\x89\x93\x88\x93\x1f\xfb\x17\xf7\xdd\xf7\x17\xf7\xdd\x05\x8e\x93\x8d\x93\x92\x1a\x93\x86\x8f\x83\x7f\x83\x85" +"\x79\x81\x1e\x0e\xfb\xcf\xf7\xa7\xf7\x82\x15\xfb\x42\xf7\xe8\x05\x9c\x82\x82\x92\x7f\x1b\x83\x86\x87\x83\x85\x8d\x83\x8e\x82\x1f" +"\xf7\x17\xfb\xdd\xfb\x17\xfb\xdd\x05\x88\x84\x89\x83\x84\x1a\x83\x90\x87\x93\x97\x93\x91\x9c\x95\x1e\x0e\x2f\xf8\xa0\x9c\x15\x73" +"\xa2\x83\x9b\xa6\x1a\xf7\xc0\x07\xf7\x02\x40\xc3\xfb\x26\x60\x0a\xd8\x06\x3e\x70\x5c\x56\x50\x1a\x50\xc1\x68\xe9\xa7\x9f\x8d\x92" +"\xa6\x1e\xba\x07\x88\x78\x78\x89\x78\x1b\x57\x73\x9c\xaf\xba\xb1\xb8\xd2\xb0\x1f\x88\x1d\x0e\x28\xf8\x73\xf8\x25\x15\x6c\x6d\x75" +"\x81\x64\x1b\x71\x7e\x8e\x9b\x51\x1f\x9c\x4a\x6a\x92\x73\x1b\x71\x74\x82\x7a\x75\x1f\x7c\x80\x83\x80\x72\x67\x88\x86\x84\x80\x83" +"\x81\xb0\x5a\x18\xaf\xa9\xa5\x98\xb3\x1b\xa1\xa6\x86\x7c\xc4\x1f\x76\xd9\x97\x89\xa5\x1b\xa9\xa8\x97\xa1\xa1\x1f\x98\x98\x8c\x8c" +"\xae\xb4\x08\x65\xfb\x11\x15\x6c\x6d\x75\x81\x64\x1b\x71\x7e\x8e\x9b\x51\x1f\x9c\x4a\x6a\x92\x73\x1b\x71\x74\x82\x7a\x75\x1f\x7c" +"\x80\x82\x80\x73\x67\x88\x87\x84\x80\x83\x80\xb0\x5a\x18\xaf\xa9\xa5\x98\xb3\x1b\xa1\xa6\x86\x7c\xc4\x1f\x76\xd9\x97\x89\xa5\x1b" +"\xaa\xa7\x97\xa2\xa1\x1f\x98\x97\x8d\x8d\xad\xb3\x08\x0e\x2f\x26\x1d\x32\xf8\x97\x2c\x1d\xb0\xf7\x3e\x20\x1d\xf7\xf4\xf9\x5d\xf7" +"\xac\x15\x6a\x5e\x6e\x53\x78\x1a\x81\x93\x84\x95\x92\x8f\x8d\x94\x93\x1e\xbc\xc6\xa6\xa0\xea\xc4\x08\x9c\x94\x8d\x8e\x95\x1a\x92" +"\x85\x90\x76\x97\x1e\x42\xb5\x5f\xad\x64\xb9\x08\x9c\x7d\x87\x8e\x83\x1b\x81\x83\x84\x82\x79\xb0\x40\xa4\x6d\x1f\xfc\x3f\x06\xa6" +"\xac\xaf\xd3\x9e\x1a\x93\x83\x92\x81\x83\x88\x88\x7a\x7c\x1e\x63\x5c\x61\x6a\x41\x61\x08\x77\x80\x84\x85\x84\x1a\x83\x8f\x86\x93" +"\x86\x1e\xe9\x54\xaa\x73\xb7\x58\x08\x76\x9d\x8c\x8a\x94\x1b\x95\x93\x92\x94\x91\x7f\xab\x83\x9b\x1f\x80\xa0\x80\x9d\x76\xa7\x08" +"\x0e\xfb\x28\xf7\xa2\xf9\x65\x15\x4f\xfd\x2a\x06\x74\x9c\x7b\x95\x77\x96\x08\x95\x78\x67\x99\x83\x1b\x82\x84\x83\x81\x84\x8d\x87" +"\x94\x83\x1f\xc7\x59\x9e\x73\xc5\x2a\x08\x79\x95\x8e\x89\x94\x1b\x92\x91\x92\x9f\x96\x1f\xb4\xd4\xad\xb7\xba\xb3\x08\x9c\x9a\x8e" +"\x8e\x93\x1a\x95\x84\x93\x82\x79\x40\x65\x73\x6e\x1e\x0e\xf7\xf4\xfa\x25\xf7\xad\x15\xc7\xfd\x2a\x07\x9c\xa2\x95\x9b\x96\x9f\x08" +"\x95\x9e\x99\xaf\x93\x1a\x94\x83\x92\x81\x84\x87\x89\x82\x83\x1e\x59\x4f\x73\x78\x2a\x51\x08\x79\x81\x89\x88\x82\x1a\x84\x92\x85" +"\x9f\x80\x1e\xd4\x62\xb7\x69\xb3\x5c\x08\x7a\x9a\x8e\x88\x93\x1b\x95\x93\x92\x94\x9d\x65\xd6\x73\xa8\x1f\x0e\xf7\xf4\xe0\xf7\xad" +"\x15\xf9\x2a\x06\x73\x6e\x65\x40\x79\x1a\x82\x93\x84\x95\x93\x8e\x8e\x9c\x9a\x1e\xb3\xba\xb7\xad\xd4\xb4\x08\x9f\x96\x92\x91\x92" +"\x1a\x93\x87\x90\x83\x90\x1e\x26\xc6\x70\xa1\x58\xc7\x08\x94\x83\x87\x8d\x84\x1b\x81\x83\x84\x82\x85\x97\x6a\x93\x7b\x1f\x96\x74" +"\x97\x79\x9e\x71\x08\xfd\x2a\x06\x0e\xfb\x28\xf7\x66\x20\x15\xc7\xf9\x2a\x06\xa2\x7a\x9b\x81\x9f\x80\x08\x81\x9e\xaf\x7d\x93\x1b" +"\x94\x92\x93\x95\x92\x89\x8f\x82\x93\x1f\x4f\xbd\x78\xa3\x51\xec\x08\x9d\x81\x88\x8d\x82\x1b\x84\x85\x84\x77\x80\x1f\x62\x42\x69" +"\x5f\x5c\x63\x08\x7a\x7c\x88\x88\x83\x1a\x81\x92\x83\x94\x9d\xd5\xb1\xa3\xa9\x1e\x0e\xfb\x28\xf7\x67\xf7\x19\x15\xa5\x6c\x42\x70" +"\x1d\x73\x7f\x79\x7f\x72\x78\x8a\xf8\x3a\x18\xa2\x7a\x9b\x81\x9f\x80\x08\x81\x9e\xaf\x7d\x93\x1b\x94\x92\x93\x95\x92\x89\x8f\x82" +"\x93\x1f\x4f\xbd\x78\xa3\x51\xec\x08\x9d\x81\x88\x8d\x82\x1b\x84\x85\x84\x77\x80\x1f\x62\x42\x69\x5f\x5c\x63\x08\x7a\x7c\x88\x88" +"\x83\x1a\x81\x92\x83\x94\x9d\xd5\xb1\xa3\xa9\x1e\x0e\xfb\x28\xf7\x0c\x47\x15\x60\xf7\x9c\xb6\x07\xfb\x41\xf7\x94\x15\xa4\x6d\x41" +"\x70\x1d\x74\x80\x79\x7f\x71\x78\x8a\xf8\x3a\x18\xa3\x7a\x9a\x81\x9f\x80\x08\x81\x9e\xaf\x7d\x93\x1b\x94\x92\x93\x95\x92\x89\x8f" +"\x82\x93\x1f\x4f\xbd\x78\xa3\x51\xec\x08\x9d\x81\x88\x8d\x82\x1b\x84\x85\x84\x77\x80\x1f\x62\x42\x69\x5f\x5c\x63\x08\x7a\x7c\x88" +"\x88\x83\x1a\x81\x92\x83\x94\x9d\xd6\xb1\xa3\xa8\x1e\x0e\x65\xcd\xfb\x6e\x15\xf7\x20\xf7\x8b\x06\x66\xb6\xb5\x7c\xc5\x1b\xf7\x15" +"\xeb\xee\xf7\x17\xc6\x77\xc2\x6a\xac\x1f\x77\x9f\x76\x96\x5f\x9a\x08\xca\xb3\xa7\xb9\xcc\x1a\xf7\x04\x2f\xd8\xfb\x19\x36\x44\x6e" +"\x57\x63\x1e\x6d\x63\x81\x5f\x2b\x1a\xf7\x20\x99\x15\xc9\x8e\xa1\x97\xa1\x1e\xa6\x9a\xab\x9d\xad\x1b\xc2\xaf\x64\x50\x63\x79\x67" +"\x6f\x7c\x1f\x79\x81\x7a\x88\x66\x89\x08\x39\x90\x07\x9a\x8c\x9b\x8c\xae\x82\xa0\x80\x19\xb6\x76\xa3\x5f\x52\x1a\x3b\x58\x50\x44" +"\x65\x67\x97\xa3\x6b\x1e\x0e\x2f\x36\x1d\xb2\xf8\x37\x15\xfb\x12\x06\x45\xfb\x2a\x05\xd1\x06\x0e\x2f\x36\x1d\x5c\xf7\xa1\x93\x1d" +"\x2f\x36\x1d\xfb\x35\xf8\x37\x15\x20\x52\x1d\x2f\x36\x1d\x5e\xf8\x29\x27\x0a\x43\xf7\xb5\xf7\xbb\x15\xfb\x04\xf7\x89\x05\xfb\x2b" +"\x06\xf7\x52\xfc\x03\xfb\x61\xfc\x1b\x05\xf7\x29\x06\xf7\x13\xf7\xa5\xf7\x11\xfb\xa5\x05\xf7\x2e\x06\xfb\x62\xf8\x1f\xf7\x51\xf7" +"\xff\x05\xfb\x27\x06\x0e\xf7\xf4\xf8\x8b\xf9\x4b\x15\xfb\x5c\xfb\x36\xfb\x35\xfb\x5c\xfb\x58\xf7\x36\xfb\x36\xf7\x57\xf7\x59\xf7" +"\x37\xf7\x37\xf7\x57\xf7\x58\xfb\x36\xf7\x39\xfb\x55\x1f\x87\xfb\xd0\x15\xfb\x52\xf7\x50\x05\xb8\xc2\xcc\xa2\xd1\x1b\xd0\xcb\x74" +"\x60\xc4\x1f\xb3\x63\x15\xbb\x52\xa2\x4c\x42\x1a\x43\x74\x4b\x5d\x53\x1e\xfb\x54\xf7\x57\x05\xf7\x2c\xfb\x7f\x15\x5f\x54\x48\x73" +"\x45\x1b\x45\x4b\xa2\xba\x50\x1f\xf7\x55\xf7\x55\x05\xfb\x7d\xfb\x2d\x15\x5f\xc1\x74\xcb\xd1\x1a\xd3\xa2\xcb\xba\xc4\x1e\xf7\x52" +"\xfb\x50\x05\x0e\x93\xf8\xd7\x16\x9f\x07\x24\x9f\x6e\x99\x5d\xbb\x5c\xbf\x7a\xc0\x8a\xeb\xa0\x66\x93\x7e\x97\x7d\x08\x5d\xb2\xc9" +"\x6c\xc0\x1b\xe6\xd2\xd5\xe9\xe5\x4a\xd3\x3a\x6e\x84\x89\x6e\x50\x1f\xa7\xb4\x96\xaa\xb0\x1a\xe3\x42\xd2\x30\x2e\x44\x45\x31\x67" +"\x92\x78\xad\x56\x1e\xa3\x5b\x76\x91\x6c\x1b\x40\x49\x3f\x34\x2e\xd4\x42\xe7\xdc\xcf\xbd\xe6\xb8\x1f\x8c\x7b\x8b\x80\x86\x1a\x43" +"\x65\x3a\x55\x5f\x1e\x6b\x72\x74\x82\x2c\x77\x08\x77\x07\x0e\xea\xf8\x2b\x6d\x1d\xf7\xcb\xf7\xbd\x22\x1d\x66\xf8\x29\xf8\xe8\x15" +"\xfb\x12\x07\xc1\x68\x5d\xa4\x47\x1b\xfb\x15\x29\xfb\x10\xfb\x37\xfb\x36\xed\xfb\x0f\xf7\x15\xcf\xb9\xa3\xc1\xae\x1f\x54\xf7\x20" +"\xf8\xe8\xc7\xce\x4f\xcd\xfb\x20\x49\xfb\x19\x48\x07\x9a\xfb\x38\xa8\x1d\xef\xbb\xd1\xd1\x1f\x0e\x61\xf6\xf9\x81\x15\x2a\x07\xf7" +"\x2f\xfb\x0c\x45\x85\x68\x7e\x65\x69\x19\x55\x59\x6e\x41\x2d\x1a\xfb\x44\xf1\xfb\x00\xf7\x39\xf7\x3a\xf0\xf7\x00\xf7\x46\xf7\x0b" +"\x67\xd3\x2b\xd4\x1e\xfb\x26\xf7\x03\x05\xf7\x6a\xf7\x03\x06\xfb\x5f\xfb\xcd\x50\x1d\xfb\x1e\x90\xf7\xf1\x15\xf0\xfb\x11\xf7\x10" +"\xfb\x45\xb1\x40\xc7\xf7\x00\xf7\x05\xf7\x34\xf4\xf7\x11\x3b\xe6\xfb\x39\xf7\x7d\x6a\xcf\x53\x24\x41\x22\xfb\x26\xfb\x4c\x08\x0e" +"\xfb\x4b\xf7\x4a\x80\x1d\x2f\x27\x1d\xac\xf8\x41\x86\x1d\x2f\x27\x1d\x5b\xf7\xb4\x93\x1d\x2f\x27\x1d\x5f\xf8\x3c\x27\x0a\xf7\xf4" +"\xf9\x93\xf7\x6c\x15\xc8\xfc\x62\x07\x91\xf6\xc3\xbd\xf7\x01\x89\x08\x8c\x0a\x42\x2c\x1a\xfb\x08\xb8\x38\x9a\x0a\xc9\xfb\xb7\x06" +"\xfb\x01\x89\x53\xbd\x85\xf5\x08\x0e\x2f\x27\x1d\xbe\xf8\x24\x15\xfb\xbf\x3c\xf7\xbf\x06\x0e\x66\xf7\xe8\xfb\x69\x15\x88\xa6\xad" +"\x89\xa1\x1b\xe5\xac\xad\xe5\x1f\xf8\x5c\x07\xd0\x7a\xb8\x65\xab\x1e\xa5\x6c\x5f\x9a\x58\x1b\x42\x5a\x71\x4e\x63\x1f\xd9\xfb\x20" +"\xa1\x0a\xcf\xca\xa7\x6d\x49\x1e\xfc\x1a\x07\x67\x81\x7e\x6f\x81\x85\x8c\x8f\x7f\x1e\x0e\x2f\xf8\x72\xfb\x45\x15\x87\x78\x79\x89" +"\x77\x1b\x57\x73\x9b\xaf\xb7\x9f\xad\xd0\xd5\x1f\xc5\xc9\x97\x9d\x99\xbe\x08\xfb\x1e\x06\x5f\x7a\x65\x72\x58\x1b\x63\x6a\x9c\xa9" +"\x78\x1f\x7e\xa0\x86\xa3\x89\xbe\x08\xf7\xfe\x06\x8c\x97\x8b\x92\x90\x1a\xc1\x83\xbe\x7e\xb0\x1e\xed\x67\x34\xc6\xfb\x02\x1b\xfb" +"\x2f\x2c\xfb\x04\xfb\x49\xfb\x41\xe9\x20\xf7\x2d\xa7\x9d\x8e\x95\xaf\x1f\x44\x5a\x73\x6b\x5e\x1a\x4f\xc2\x66\xe4\xa7\xa3\x8e\x92" +"\xa6\x1e\xfb\xcf\xf8\xb3\xad\x0a\xca\x97\x0a\x0e\xfb\x41\xf7\xc5\xf7\xcb\x15\x5d\x8c\x7d\x8c\x74\x91\x08\x6b\x93\x79\xa1\xa9\x1a" +"\xb3\xa9\xa3\xbc\xc0\xaa\x76\x5d\x97\x1e\xf7\x20\x06\xf7\x05\x78\x37\xc7\xfb\x1f\x1b\xfb\x14\x39\x51\x30\x59\xa1\x64\xb9\x67\x1f" +"\x51\x75\x6f\x61\x4c\x1a\x23\xe3\x48\xf7\x1c\xe4\xc6\xa1\xbe\xbb\x1e\xab\xac\x99\xa8\x97\xc0\x08\xfb\x20\x06\x4e\x79\x6c\x73\x50" +"\x1b\x54\x68\xa7\xb7\xa9\x9d\xa3\xa8\x92\x1f\xa3\x91\x8e\x8c\xd5\x8c\x08\x0e\xfb\x59\xf7\xb9\xf7\xcb\x15\x5e\x8c\x7e\x8c\x76\x91" +"\x08\x6c\x93\x79\xa1\xa9\x1a\xb3\xa7\xa3\xba\xbf\xaa\x76\x5d\x97\x1e\xf7\x20\x06\xf7\x05\x78\x37\xc7\xfb\x1e\x1b\xfb\x12\x3b\x51" +"\x2f\x5b\x9f\x63\xb6\x67\x1f\x55\x75\x70\x61\x4d\x1a\x21\xe1\x49\xf7\x1c\xe0\xc7\xa2\xbd\xbb\x1e\xab\xac\x99\xa8\x97\xc0\x08\xfb" +"\x20\x06\x4f\x79\x6c\x72\x51\x1b\x57\x69\xa7\xb7\xa9\x9c\xa3\xa7\x92\x1f\xa3\x91\x8e\x8c\xd2\x8c\x08\x7a\xf8\xcc\x23\x1d\x4a\xf8" +"\xaa\xf7\xb7\x9b\x1d\xf8\xeb\x04\xfc\x78\xfb\x0b\xf8\x78\x06\x0e\x5b\xf8\xa9\xf7\x88\x15\x92\x07\x94\x07\x89\xd4\x86\xa8\x7c\xb2" +"\x08\xde\x69\x3a\xbd\x28\x1b\xfb\x29\x2c\xfb\x00\xfb\x3c\xfb\x3c\xe6\x26\xf7\x2b\xf7\x06\xd8\xc1\xf0\xaa\x1f\x8d\x90\x8d\x92\x05" +"\x4b\x06\x8a\x89\x89\x86\x8a\x88\x08\x4f\x70\x53\x69\x42\x1b\x60\x68\x96\xa0\x73\x1f\x7b\x9a\x82\x9b\x80\xae\x8c\xe9\x18\xf7\xac" +"\xc1\x15\xfb\xaa\xdb\x06\xcf\xab\xae\xa3\xce\x1b\xc1\xaf\x7b\x64\xac\x1f\x96\x7f\x8f\x84\x91\x7a\x08\x0e\x66\x7d\x1d\x0e\x66\x7d" +"\x1d\xf7\x53\xf7\x8d\x23\x1d\x5f\xf7\x8a\x87\x1d\xf7\xc4\x72\x0a\xfb\x74\xbe\x16\xf7\xd9\xf8\xd5\xfb\xd9\x37\xf7\x85\xfb\x36\xfb" +"\x85\x37\xf7\x85\xfb\x37\xfb\x85\x06\x0e\xf1\xf7\xf4\xf7\x98\x15\xfb\x37\x60\xf7\x37\xfb\x3a\xbb\xf7\x3a\xf7\x35\xb6\xfb\x35\xf3" +"\x06\xe4\x98\xcf\xda\xe6\x1a\xee\x37\xde\x28\x29\x38\x34\x26\x34\xcf\x3e\xe6\x7e\x1e\xa6\xf7\xcb\x15\xd0\xc5\x50\x45\x43\x51\x51" +"\x44\x42\x52\xc5\xd4\xd2\xc5\xc4\xd5\x1f\x0e\x2f\xf8\x3a\xf8\x4b\x15\xfb\x8e\x93\x0a\xf7\xce\xf7\x02\xfb\xce\xf7\x20\xf7\x4e\x06" +"\xdd\xb4\xb4\xdd\x99\x96\xb9\x1d\x87\x8b\x86\x1b\x4a\x55\x61\x42\x6c\x1f\x0e\x2f\xf7\x68\xfb\x6e\x15\xf7\x18\xf7\x78\x06\xf7\x5a" +"\xf8\xa6\x05\xfb\x2a\x06\xfb\x06\xfc\x1b\xfb\x06\xf8\x1b\x05\xfb\x2a\x06\xf7\x5a\xfc\xa6\x05\x0e\x66\xf8\x48\xf9\x80\x15\x53\x06" +"\x5d\x83\x74\x56\x1d\x67\xfb\x59\x69\x1d\x0e\x66\x68\x1d\x3c\xf7\xd9\x23\x0a\x66\xf7\xfa\xf8\xf2\x15\xf7\x04\x48\x07\x8a\xbd\xa1" +"\xa9\xb9\x94\x08\xb9\x07\x45\x89\x54\x4b\x8e\x3d\x08\x24\x07\xf7\x38\x49\x15\x38\x07\xca\x64\x60\xa8\x52\x1b\x5b\x56\x73\x64\x66" +"\x1f\x55\x53\x6f\x3d\x2c\x1a\xfb\x3a\xe3\xfb\x06\xf7\x15\xc5\xae\x9e\xc6\xbc\x1e\x42\x07\x4a\x5d\x5e\x49\x59\x6c\xa1\xb4\x80\x1e" +"\xfb\x24\x06\x8c\x61\x9a\x6e\xb0\x6d\x08\x68\xb6\xc6\x7a\xd7\x1b\xf7\x30\xe9\xd6\xf7\x11\x1f\xf8\xc2\x07\xfb\x8a\xfb\x00\x15\xcd" +"\xbc\x42\x27\x29\x5c\x48\x45\x4e\x60\xce\xed\xf1\xb6\xd2\xca\x1f\x0e\x66\xf7\xf3\xf9\x7b\x45\x1d\xbc\x3a\x15\x38\x07\xca\x64\x60" +"\xa8\x52\x1b\x5b\x56\x73\x64\x66\x1f\x55\x53\x6f\x3d\x2c\x1a\xfb\x3a\xe3\xfb\x06\xf7\x15\xc5\xae\x9e\xc6\xbc\x1e\x42\x07\x4a\x5d" +"\x5e\x49\x59\x6c\xa1\xb4\x80\x1e\xfb\x24\x06\x8c\x61\x9a\x6e\xb0\x6d\x08\x68\xb6\xc6\x7a\xd7\x1b\xf7\x30\xe9\xd6\xf7\x11\x1f\xf8" +"\xc2\x07\xfb\x8a\xfb\x00\x15\xcd\xbc\x42\x27\x29\x5c\x48\x45\x4e\x60\xce\xed\xf1\xb6\xd2\xca\x1f\x0e\x28\xb3\x1d\xfc\x7d\xf7\x39" +"\x15\xf8\x7d\xf7\x49\x05\xf7\x0d\x07\xfc\x7d\xf7\x4a\x05\xfb\x03\x07\xf8\x12\xfb\x17\xfc\x12\xfb\x19\x05\x0e\x66\xf7\x63\xf9\x34" +"\x15\xc4\xfb\x20\x52\x4d\x3b\xc9\xfc\xe4\xbc\x1d\xa9\xa2\x80\x75\x9b\x1e\x98\x78\x8f\x7d\x82\x0a\x5d\x1b\x47\x59\x6f\x50\x64\x1f" +"\xf7\x16\xf7\x47\xdb\x07\x0e\x66\x61\x0a\xfb\x05\xf7\x63\x23\x0a\x55\xf7\xbc\x6f\x15\x9f\xe5\xc7\xf2\xf7\x08\xf7\x25\x08\xeb\xf7" +"\x0e\xab\xce\xda\x1a\xde\x45\xcf\x37\x5b\x5f\x76\x65\x6a\x1e\x75\x72\x81\x75\x7e\x5d\x7f\xaf\x83\x9d\x7f\x9d\x08\xbd\x6a\x58\xa8" +"\x54\x1b\x36\x49\x47\x32\x48\xa0\x5e\xdf\xfb\x06\x1f\xf7\x2b\xfb\x5e\xb3\x47\xa5\x24\x08\x0e\x5f\xa6\x16\xf8\xba\xf8\x25\x06\xfb" +"\xa7\xf7\xdc\xfb\xa7\xfb\xdc\x05\xbe\xfb\xf2\x15\xf7\xdc\x07\xf7\x74\xf7\xa2\xf7\x74\xfb\xa2\x05\xfb\xdc\x07\x0e\x30\x1d\xc7\xf9" +"\x78\x44\x0a\x2f\xf7\x74\xf8\xb0\x39\x1d\xf7\x93\x4b\x7b\x1d\xf7\x64\x48\x0a\xc6\xf9\x63\x15\xfb\x97\x3c\xf7\x97\x06\x0e\xcc\xf7" +"\xf8\xf7\xbd\x15\x5b\xb6\x86\x8f\x78\x99\x08\xa7\x67\x5c\x9d\x67\x1b\x3e\x4c\x4c\x3e\x3e\xca\x4c\xd8\xb0\xb8\x9d\xa7\xb0\x1f\x9e" +"\x99\x90\x8f\xbb\xb6\xbc\x60\x90\x87\x9e\x7d\x08\x6f\xaf\xb9\x79\xb0\x1b\xd8\xca\xca\xd8\xd8\x4c\xca\x3e\x67\x5c\x79\x6f\x67\x1f" +"\x78\x7d\x86\x87\x5a\x60\x08\xaf\x6a\x15\xc4\xc5\xc2\xaa\xb5\x1b\xbc\xb3\x63\x5b\x5a\x63\x63\x5a\x61\x53\xab\xc4\x52\x1f\x44\x16" +"\x53\x52\x53\x6b\x61\x1b\x5a\x63\xb3\xbb\xbb\xb3\xb3\xbc\xb5\xc3\x6c\x52\xc4\x1f\x0e\xfc\x0a\xf7\x50\xf8\x9f\x15\xb0\x72\x1d\xfb" +"\x78\x07\x5f\x8f\x4d\x95\x24\x88\x0a\x94\x81\x80\x90\x7d\x1b\x71\x75\x75\x70\x6c\xa7\x73\xae\xb7\xaa\x0a\xd4\xf7\x41\x1a\x0e\x5f" +"\xf7\xab\xfa\x25\x15\xfd\x79\x07\x66\x91\x3c\x94\x2e\x88\x0a\x95\x81\x7f\x90\x7e\x1b\x70\x76\x75\x6f\x6d\xa7\x73\xae\xb6\xaa\x0a" +"\xcf\xf7\x46\x1a\xf9\x70\x07\x0e\x5f\xf7\xf5\xfb\x6e\x15\xf9\x78\x07\xb1\x72\x1d\xfd\x70\x07\x0e\xd2\xf8\xeb\x16\xf7\xa1\x07\xf7" +"\x29\x86\xb1\x71\xb7\x1e\xd1\x61\x3e\xb4\x31\x1b\x38\x46\x6a\x4d\x5e\x1f\x66\x5a\x85\x67\xfb\x36\x1a\xfb\xa1\xd1\xf7\xa4\x07\xf7" +"\x05\x91\xba\x9d\xad\x1e\xbd\xa6\xc5\xad\xc8\x1b\xc4\xc2\x6e\x5d\xa8\x1f\xa2\x67\x91\x62\xfb\x12\x1a\xfb\xa4\x07\x0e\xf8\x28\xf8" +"\xa3\xf9\x6e\x15\xfb\x5b\xfb\x3a\xfb\x38\xfb\x57\xfb\x63\xf7\x35\xfb\x38\xf7\x5d\xf7\x61\xf7\x37\xf7\x36\xf7\x5f\xf7\x5e\xfb\x37" +"\xf7\x37\xfb\x5e\x1f\xfb\x01\xfb\x63\x84\x0a\xfb\x14\xfb\x05\x15\x96\x59\x96\x75\xa5\x6d\x08\x54\xbb\xc7\x71\xdc\x1b\xdc\xc7\xa5" +"\xc2\xbb\x1f\xa5\xa9\x96\xa1\x96\xbd\x84\x36\x80\x62\x6d\x5e\x08\x4c\x61\x4b\x6b\x38\x1b\x3e\x4f\xa6\xc1\x61\x1f\x67\xba\x7c\xb8" +"\x84\xe8\x08\xf7\xee\xf7\x05\x84\x0a\x0e\xf7\x63\x24\x1d\xfb\x20\xfc\xb0\xd8\x06\x40\x5f\x68\x60\x5a\x1a\x4f\xbe\x66\xde\x9f\x97" +"\x8d\x92\xaa\x1e\xba\x07\x87\x74\x80\x8a\x81\x1b\x7c\x7d\x8f\x92\x7e\x1f\x7b\x95\x86\x96\xa1\x1a\xb8\xa8\xb7\xc1\xb2\x1e\xf9\x6d" +"\x58\x1d\x3b\x0a\x0e\x3b\x0a\xfb\x00\x41\x1d\x3b\x0a\xfb\x0d\x80\x1d\x3b\x0a\x78\xf9\xa9\x23\x1d\x30\x1d\xba\x40\x0a\xf7\x66\xf8" +"\xb0\x83\x1d\xfb\x0f\xf9\xe7\x23\x0a\x31\xf7\x5c\xf7\xde\x15\xf7\x66\x2d\x1d\xf7\x45\x07\xc5\xca\xf7\x15\xfb\x84\x05\xf7\x36\xa7" +"\x1d\x0e\x2f\x7f\x1d\xfb\x27\xfc\xec\x22\x1d\x2f\xf7\x33\xf7\x3e\x15\xbf\xc2\xf7\x3b\xfb\x75\x05\xf7\x12\x06\xfb\x75\xf7\xb7\xf7" +"\x60\xf7\x6f\x05\xfb\x11\x06\xfb\x5b\xfb\x74\x05\xf7\x74\x22\xfc\x92\xf4\x07\x0e\x44\x1d\xd2\x39\x0a\x2f\x9b\x16\xf7\x24\x06\xf7" +"\x09\xf7\xf3\xf7\x07\xfb\xf3\x05\xf7\x2d\x06\xfb\xb6\xf9\x6d\x05\xfb\x21\x06\xe8\xfb\x82\x05\x0e\xfb\x8c\x44\x1d\xc0\xf9\x6d\x22" +"\x1d\x44\x1d\xfb\x15\x4f\x22\x1d\xfb\x3d\xf7\x6f\xf9\x6d\x64\x1d\xec\xf8\x3d\x3e\x0a\x28\xb3\x1d\xf9\x1d\x04\xfc\x7d\xfb\x4a\x05" +"\xfb\x0c\x97\x1d\x2f\xf8\x0b\xf7\xd0\x15\xc2\xfb\x1f\x07\x87\x95\x82\x9f\x7a\xae\xb0\x1d\xa9\xa6\x82\x79\x9f\x1e\xa0\x79\x93\x79" +"\x91\x5d\x8c\x80\x18\xf7\x17\x06\x87\xc6\x83\xac\x7c\xa8\x08\xd2\x66\x3e\xb2\x23\x1b\x48\x54\x7b\x6a\x61\x1f\x5d\x66\x6f\x53\x52" +"\x1a\x60\x93\x74\xb4\x43\x1e\x8f\x84\x05\x4f\x54\xe4\x06\x8f\x7f\x90\x7e\x8d\x84\x08\x27\x54\xf7\x01\x06\x8a\x51\x72\x69\x38\x52" +"\xc2\x26\x18\xa2\xb7\xa6\x92\xb1\x1b\xa6\xa1\x87\x7f\xbc\x1f\x7f\xbc\xa2\x87\xa6\x1b\xbc\xb3\x97\xac\xc3\x1f\x62\xf7\x01\x05\x77" +"\x63\x6b\x82\x6a\x1b\x79\x78\x8e\x92\x70\x1f\x95\x64\x84\x8c\x7a\x1b\x6e\x76\x84\x6d\x4d\x1f\xd0\xc0\xae\xb8\x94\xb8\x08\xf7\x02" +"\xc2\xfb\x02\x06\x88\x96\x88\x92\x85\x99\x08\x0e\xf7\x5f\x16\xf8\xda\x07\xa7\x97\x99\xa5\x97\xc1\x1d\x6c\x6f\x8c\x75\x1b\x30\x5e" +"\x5f\x30\x1f\x4a\x3e\x2e\xd8\xfc\x48\x07\x0e\xf1\xf8\x14\xf8\x82\x15\x9f\x64\x73\x92\x69\x1b\x28\x36\x36\x27\x2b\xe0\x39\xef\xed" +"\xdf\xe1\xf0\xb9\x79\xb5\x68\xae\x1f\xf7\x2a\xf7\x2a\x90\x72\x9f\x5a\x9a\x6d\x19\x77\x96\x90\x85\x95\x1b\x92\x90\x91\x92\x90\x8a" +"\x8f\x89\x96\x1f\x84\xab\x89\xa1\xa8\x1a\xb1\x8e\xa9\x92\xa4\x1e\x90\x9c\x8b\x8c\x8f\x1a\x91\x87\x8f\x85\x87\x82\x89\x88\x82\x1e" +"\x83\x71\x79\x89\x5c\x1b\x6f\x73\x8e\x91\x6e\x1f\x8d\x80\x88\x8c\x86\x1b\x83\x85\x86\x83\x7e\xa6\x79\xb2\x7c\x1f\xb4\x7c\x91\x89" +"\x98\x88\x08\xfb\x8c\xfb\x41\x15\xd3\xc7\x4e\x42\x41\x4f\x4f\x41\x41\x4f\xc7\xd6\xd5\xc7\xc6\xd7\x1f\x0e\xfc\x2c\xf7\x4e\x99\x0a" +"\x0e\xfb\x28\xf7\x7f\xf7\x53\x15\x92\x7b\x75\x90\x78\x1b\x48\x4f\x52\x4a\x64\xa7\x73\xb8\xe8\xcd\xd3\xf0\x1f\xf7\xd4\x07\xc8\x82" +"\xbd\x39\x30\x1a\x54\x82\x60\x72\x50\x1e\xa8\x06\xb2\xbb\xa0\xc6\xcb\x1a\xdd\x6c\xd9\x4b\xd7\x1e\x53\xce\x8a\x8c\x85\x92\x83\x96" +"\x19\xcb\x5b\x07\x0e\xf1\xf7\x95\xf9\x19\x15\xfc\x59\x8a\x1d\xf7\xf0\x07\xf7\xb5\x5f\x05\xfc\x03\x8a\x1d\xf8\x52\x07\x0e\x66\x37" +"\x1d\xf7\x80\xf7\x6d\x20\x1d\xc7\xf7\x26\xf8\xb0\x15\xa1\x0a\xd0\xc7\xa9\x6a\x4b\x1e\xfb\xe1\xf7\x20\xf7\xfe\x07\xf7\x0c\x4a\xce" +"\xfb\x08\x42\x5a\x71\x4e\x63\x1e\xd9\x07\xfb\xa3\xf7\x51\x22\x1d\x66\x37\x1d\xf7\x29\xce\x15\xf6\x3a\x0a\x66\x37\x1d\xb4\xfc\xec" +"\x22\x1d\xf7\xf4\xf8\xa4\xf7\x6c\x15\xf7\x83\xc8\xfb\x60\x06\xe3\xf7\x2f\x05\xf7\x08\xc9\x3a\x06\xac\xc6\x61\xa3\x5c\x38\x05\xfb" +"\x23\x06\x38\x68\x84\x72\x65\x1f\x4b\x60\x69\x42\x2c\x1a\xfb\x08\xb8\x37\xdc\x69\x1e\x6a\x52\xb6\x74\xb1\xce\x05\x88\xa5\x97\x8a" +"\xb5\x1b\xf7\xac\xc9\xfb\xb7\x06\x77\x85\x8b\x8c\x82\x1f\xaa\xf7\x2d\x15\x3a\xfb\x21\x57\x9d\x6c\xbe\x88\xd3\x19\xf7\xb6\xf7\x6c" +"\x15\x33\xfb\x2f\x05\xfb\x5e\x06\x91\xf6\xc3\xbd\xf7\x01\x89\x08\x0e\x28\xf7\x0f\xbf\x15\x64\x4a\xec\x53\xcf\xf7\x0d\x05\xf7\xb1" +"\xf7\x0b\xfb\x6e\x06\xcf\xf7\x0d\x05\xf7\x2a\xf7\x0b\x37\x06\xae\xc8\x29\xc3\x4a\xfb\x09\x05\xfb\xa4\xfb\x0b\xf7\x61\x06\x47\xfb" +"\x0d\x05\xfb\x1d\xfb\x0b\x06\x0e\x2f\xf7\xf5\x75\x0a\x66\x28\x1d\xf7\x15\xf7\xcc\x44\x0a\x66\x28\x1d\xd0\xf7\xd5\x32\x0a\x66\x28" +"\x1d\xf7\x2a\xf7\xaf\x15\xfb\xbf\x3c\xf7\xbf\x06\x0e\xf7\x59\x59\x0a\x0e\xf7\x59\x59\x0a\xfb\x58\xf7\x8d\x23\x1d\x66\xf7\xc5\x41" +"\x0a\x0e\x66\xf7\xc5\x41\x0a\xbe\xf7\xf5\x23\x1d\xf7\xdf\xbd\x16\xfa\x04\xcd\xfd\xc2\xf9\xb8\x49\x06\x0e\x66\x5c\x0a\xa5\xf8\x03" +"\x20\x1d\xfb\x2e\xf5\xf9\x32\x15\xac\xd5\x8b\x8b\xb1\x1b\xba\xb2\x79\x69\xa3\x1f\xad\x5c\xa0\x40\x41\x1a\x6f\x89\x73\x82\x4f\x1e" +"\xc0\x46\x70\x97\x55\x1b\x5a\x64\x7b\x69\x69\x1f\x5d\x5c\x6f\x48\x4a\x1a\xfb\x01\xde\x36\xf6\xd7\xc8\xb4\xd8\xb6\x1e\xb1\xcf\xa7" +"\xf7\x16\xf3\x1a\xf7\x5c\xfb\x03\xf7\x25\xfb\x2d\x5e\x5c\x81\x79\x63\x1e\xf7\xbf\xfc\x36\x15\x7d\x32\x84\x6a\x7d\x60\x08\x3d\x70" +"\x5d\x5f\x55\x1b\x53\x6a\xbe\xe2\xf7\x08\xcd\xeb\xdb\xb6\xaf\x75\x62\xa5\x1f\x0e\xf8\x52\xf9\x2e\xf7\xb2\x15\x5f\xd9\x37\x3d\x64" +"\x55\xb2\xfb\x44\x06\x5d\xa4\x75\xc3\x9d\x98\x8d\x8f\x9b\x1e\xc0\x07\x89\x82\x86\x8b\x84\x1b\x78\x87\x91\xa4\x1f\xf7\x30\xb7\x07" +"\xd1\xfb\x27\x15\x4b\x8d\xbe\x6a\xea\x1b\xe0\xbf\xb1\xc8\xb0\x76\xa4\x61\x96\x1f\x26\xa7\x05\x76\x91\x86\x8f\x98\x1a\x9c\x9c\x95" +"\xa6\xb1\x9b\x80\x6e\x8d\x1e\xdc\x06\xc8\x8a\x57\xb1\x37\x1b\x3d\x59\x66\x4f\x64\x9b\x7a\xc0\x7b\x1f\xeb\x6e\x05\x9e\x86\x91\x85" +"\x7f\x1a\x78\x77\x81\x65\x62\x7c\x95\xa7\x86\x1e\xfc\xd5\xf7\x43\x15\xb0\x06\xf7\x1a\xe1\xea\xf7\x28\xf7\x26\x38\xdb\xfb\x2c\x1f" +"\xfb\x40\x32\x1d\xf8\x15\x04\xf7\x6f\x9f\x07\xc6\xa7\x68\x40\x41\x6f\x68\x50\x1f\x0e\xce\xf7\xb8\xe2\x15\x63\x90\x73\x96\x75\xa5" +"\x08\x6d\xaf\x7c\xbc\xc7\x1a\xd7\xa3\xc7\xb7\xad\x1e\xe2\x07\xfb\x13\x6b\x44\x2b\xfb\x1f\x1a\xfb\x00\xb2\x3a\xd7\x5c\x1e\xb5\x71" +"\xaf\x81\xcf\x86\x08\xfb\x61\xf7\x17\xf7\x61\x07\xcf\x90\xaf\x95\xb6\xa5\x08\xd6\xba\xb2\xdc\xf6\x1a\xf7\x4d\xfb\x08\xf0\xfb\x68" +"\x72\x7d\x8a\x88\x72\x1e\xf7\x17\x26\x15\xb4\x87\xa2\x80\xa1\x71\x08\xa9\x69\x9a\x5b\x52\x1a\x52\x7c\x5d\x6d\x69\x1e\x75\x72\x74" +"\x80\x62\x87\x08\x0e\xf7\x0a\xf9\x4c\x24\x1d\xfd\x06\xfb\x04\xd4\xfc\x40\xf7\x20\xf8\x40\xf7\x5c\xfc\x40\xf7\x20\xf8\x40\xd4\x06" +"\x0e\xf7\xf0\xf7\x68\xfb\x30\x15\x3e\x36\xf7\x8f\x06\x8a\xe0\x05\x40\xf9\xab\xf7\xfe\xfd\xab\x45\x06\x8c\x36\x05\xf7\x84\xe0\x42" +"\xf9\xab\xf0\xe0\xfd\x8f\x36\xf3\x06\x0e\xf7\xf4\xf9\x93\xc9\x15\xfb\xb7\x06\xfb\x0d\x57\xc2\xf7\x16\xf7\x15\xbf\xc3\xf7\x0d\x1f" +"\x8c\x0a\x43\x2b\x1a\xfb\x07\xb8\x37\x9a\x0a\x06\x0e\xf7\xf4\xf7\x7d\xc9\x15\x4d\xf7\xac\x07\xde\xae\x92\xa4\xb1\x1f\xcc\xb6\xac" +"\xd4\xee\x1a\xf7\x03\x5d\xe0\x3d\xac\x1e\x99\x69\x70\x8f\x46\x1b\xfb\xac\x4d\xf7\xb7\x06\xf7\x0d\xbf\x54\xfb\x16\xfb\x16\x57\x54" +"\xfb\x0d\x1f\x0e\xf4\xf7\xca\xfb\x6e\x15\xf7\x19\xf7\x60\x06\xe3\x8c\xc8\xa2\xbd\xbe\x08\xb7\xbd\x97\xb3\xec\x1a\xf7\xb8\xfb\x20" +"\xfb\xb1\x07\x8d\xfb\x03\x68\x59\x39\x8a\x08\xf8\x53\xfb\x19\xfc\x53\x07\x38\x8e\x6a\xb9\x8d\xf7\x05\x08\xf7\xb1\xfb\x20\xfb\xb8" +"\x07\x2e\x94\x69\xb0\x5a\x1e\xbc\x51\xcd\x70\xe8\x8a\x08\x0e\xf7\x6c\xf9\x6d\x15\xfb\x1b\xfb\x01\x06\x87\x34\xbe\x53\xe3\x83\x08" +"\xb9\x07\x53\x95\x71\xa8\x8d\xbd\x08\xdb\x06\x0e\xfb\x97\x3d\x1d\xf7\x25\xf7\x6d\x20\x1d\x28\xf8\x73\xfa\x25\x15\xfb\x14\xfd\xa8" +"\xfb\x55\xf8\x20\xfb\x28\x42\x9d\x6a\xe9\xb9\xf7\x85\xfc\x85\xf7\x2c\xfa\x44\x05\x0e\xfb\x97\x3d\x1d\xc8\xce\x15\xf7\x00\xf7\x2a" +"\x05\x3f\x06\x39\x2a\x39\x47\x1d\xfb\x97\x3d\x1d\xfb\x15\xfc\xec\x22\x1d\x4b\xf8\xab\xf7\xd1\x15\xd8\xfc\x79\xfb\xc8\xd8\xf7\x7b" +"\x07\x0e\x6e\xcc\xfb\x6e\x15\xf7\x20\xf7\xaf\x06\x4d\xae\xb6\x71\xd0\x1b\xf7\x1c\xe8\xf7\x07\xf7\x3a\xf7\x4b\x2b\xf7\x00\xfb\x36" +"\x39\x44\x6d\x56\x5f\x1f\x5e\x56\x7b\x4f\xfb\x00\x1a\xf7\x99\xf7\x53\x15\xd3\xb6\x49\xfb\x04\x22\x5f\x4c\x42\x40\x5f\xcb\xf7\x01" +"\xf7\x02\xb7\xca\xd8\x1f\x0e\x2f\x34\x1d\xbc\xf8\x1b\x15\xfb\x13\x06\x46\xfb\x2a\x05\xd0\x06\x0e\x2f\xf7\xaf\x74\x15\x9d\x06\xf7" +"\x15\xe5\xd6\xf7\x00\xd1\x68\xb8\x44\xa0\x1f\x85\x0a\x8c\x1e\xf7\x1b\x06\xf7\x06\x89\x33\xd0\xfb\x25\x1b\xfb\x1d\x63\x0a\x6a\x64" +"\x77\x4a\x66\x6f\x91\x98\x79\x1e\x7c\x96\x85\x96\x85\xa8\x08\xfb\x1d\x06\x90\xfb\x01\xc9\x56\xf7\x23\x7a\x60\x37\x18\x94\x9d\x96" +"\x6a\x0a\x2f\x34\x1d\xfb\x20\xf8\x1b\x63\x1d\xd8\x06\xdd\xef\xdc\x8a\x0a\x2f\x34\x1d\xfb\x23\xfc\x3e\x22\x1d\xfb\x3d\xf7\x85\x99" +"\x0a\xf7\x60\xf7\x94\xa4\x0a\x0e\xaf\xf9\x10\x24\x1d\xfb\x6a\x06\x92\x5b\x76\x8d\x70\x1b\x45\x43\x6c\x5a\x5e\x1f\x5d\x59\x73\x45" +"\x35\x1a\xfb\x46\xf0\xfb\x00\xf7\x39\xdc\xd0\xa7\xbe\xb9\x1e\xb6\xbc\xa6\xd2\xd0\x1a\xd5\x71\xc3\x50\xc0\x1e\xf7\x0c\x06\xfb\xc0" +"\x93\x50\x1d\xf8\x09\xf8\x93\xf9\x6e\x15\xfb\x5b\xfb\x3a\xfb\x38\xfb\x57\xfb\x63\xf7\x35\xfb\x38\xf7\x5d\xf7\x61\xf7\x37\xf7\x36" +"\xf7\x5f\xf7\x5e\xfb\x37\xf7\x37\xfb\x5e\x1f\x5a\x04\xf7\x43\xf7\x21\xfb\x21\xfb\x43\xfb\x44\xfb\x21\xfb\x20\xfb\x45\xfb\x43\xfb" +"\x1f\xf7\x22\xf7\x47\xf7\x3e\xf7\x23\xf7\x21\xf7\x41\x1f\xfb\x01\xfb\x37\x15\x70\x74\x74\x71\x6f\xa2\x74\xa6\xa6\xa2\xa2\xa6\xa6" +"\x74\xa2\x70\x1f\xfb\x14\xfb\x00\x15\x92\x36\x96\x62\xa9\x5e\x08\x4c\xb5\xcb\x6b\xde\x1b\xd8\xc7\xa6\xc1\xb5\x1f\xaf\xba\x9a\xb8" +"\x92\xe8\x80\x59\x80\x75\x71\x6d\x08\x54\x5b\x4f\x71\x3a\x1b\x3a\x4f\xa5\xc2\x5b\x1f\x71\xa9\x80\xa1\x80\xbd\x08\xf7\xee\xf7\x00" +"\x15\x70\x74\x74\x71\x6f\xa2\x74\xa6\xa6\xa2\xa2\xa6\xa6\x74\xa2\x70\x1f\x0e\xfb\x09\xc7\x16\xf8\x77\xa2\x06\xfb\x35\x93\x3f\xe0" +"\x8e\xf7\x3e\x08\x38\xb7\xb9\x6a\xd4\x1b\xd1\xc5\xc9\xd5\xcf\x71\xb4\x20\xec\x1f\xfb\x01\xf0\x78\xa6\x64\xf7\x09\x7b\x2f\x50\x35" +"\x21\x35\x08\x3b\x48\x68\x53\x4b\x1a\x40\xc8\x4d\xd4\xb5\xb4\x9c\xa9\xab\x1e\x9e\x9d\x96\x9a\x9c\xb0\x91\xfb\x3b\x34\x2c\xfb\x33" +"\x8a\x08\x0e\xf7\xf0\xf9\x6a\xf9\x7e\x15\xfc\x7f\x38\x06\xf7\x55\xfb\xe8\xfb\x55\xfc\x06\x05\x36\xf8\x87\xf7\x7d\x2d\x07\x89\xfb" +"\x1e\x05\xfb\xb2\x06\xf7\x4f\xf7\xfe\xfb\x4e\xf7\xda\x05\xf7\xaa\x06\x8f\xfb\x1e\x05\xe6\x06\x0e\xf7\xa1\xf7\x94\xf8\xa3\x15\x6b" +"\x62\x7a\x63\x85\x58\x08\xfb\x10\x4f\xf7\x10\x06\x90\x5b\x9f\x5a\xa8\x67\x34\x34\x18\xb5\x62\xe2\xe2\xb5\x6b\xb7\x79\xb9\x86\x19" +"\xfb\x0f\xc6\xf7\x0f\x07\xba\x90\xba\x9e\xb3\xaa\xe2\x34\x18\xb4\xb4\x34\xe2\xa9\xb1\x9e\xb8\x91\xbd\x19\xf7\x0f\xc7\xfb\x0f\x06" +"\x85\xbd\x78\xb8\x6d\xb1\xe2\xe1\x18\x62\xb4\x34\x34\x66\xa9\x5c\x9e\x59\x91\x19\xf7\x0f\x50\xfb\x0e\x07\x5b\x85\x5e\x78\x64\x6c" +"\x34\xe2\x18\x61\x62\x05\xf7\xb9\x50\x15\xf0\xdf\x36\x26\x24\x37\x37\x24\x23\x39\xde\xf4\xf2\xde\xdd\xf4\x1f\x0e\xfb\x5e\xf7\x2e" +"\x16\xf7\x20\xf8\x40\xf7\x22\xf7\x04\xfc\x3d\xfb\x04\xf7\x23\x06\x0e\xfb\xcf\xf7\x73\xf7\xe5\x15\xee\xae\x1d\x28\x50\x48\xc6\xfb" +"\x3a\x07\x36\xb8\x61\xe7\xab\xa1\x8e\x93\xa6\x1e\xed\x07\x89\x7d\x83\x8a\x80\x1b\x67\x82\x96\xbb\x1f\xf7\x14\xd2\xce\x07\x0e\xfb" +"\x97\x4c\x1d\x72\xf8\x1d\x15\xfb\x04\xce\x07\x8c\x59\x75\x6d\x5d\x82\x08\x5d\x07\xd1\x8d\xc2\xcb\x35\x0a\xf2\x07\x0e\xfb\xcf\xf7" +"\x3f\x79\x15\x87\x9c\x9b\x8a\x9b\x1b\xaa\xa3\x8e\x93\xa5\x1f\xed\x07\x89\x7d\x84\x8a\x7f\x1b\x66\x83\x96\xba\x1f\xf7\xbb\xae\x1d" +"\xfb\xe0\x07\x54\x9a\x6d\xb0\x74\x1e\x56\x25\x05\x95\x9f\x95\x8d\x4c\x0a\x76\x91\xa3\x54\x34\x0a\xcd\xa6\x85\xb8\x1b\xde\xb9\x52" +"\x0a\x7c\x50\x0a\x20\xf7\xa4\xf9\x76\x15\x3c\x4c\x6d\x51\x5e\x1f\x5d\x4e\x75\x30\xfb\x17\x1a\x22\x9c\x26\xa5\x54\x1e\x35\xb5\xd0" +"\x60\xed\x1b\xf7\x3b\xe3\xf7\x14\xf7\x89\xf7\x08\x79\xe9\x69\xc7\x1f\xda\x5e\x48\xb2\x33\x1b\xfb\x07\xfb\xd4\x15\x8d\xd0\x8f\xac" +"\x93\xa5\x08\xbf\x9d\xac\xa6\xba\x1b\xc2\xae\x6b\x4b\x99\x1f\x92\x6a\x8e\x75\x8c\x53\x08\x2e\x04\x3a\x87\x61\x7e\x67\x1e\x58\x78" +"\x6d\x72\x5d\x1b\x52\x65\xb2\xd3\x7f\x1f\x84\xb0\x8a\xa1\xcc\x1a\x0e\xfb\xcf\xf7\x6e\xf9\xa9\x23\x1d\x66\x26\x0a\x68\xf9\x80\x15" +"\x5d\x82\x75\x77\x5e\x1b\x5e\x72\xa0\xb8\x84\x1f\x54\x06\x8a\x87\x8b\x86\x8a\x1a\x3f\xc3\x52\xd7\xdb\xbf\xc3\xe2\x1e\x0e\x66\x26" +"\x0a\x6d\xf9\x89\x32\x0a\x66\x26\x0a\xbb\xf9\x63\x28\x0a\x2b\xf8\xd4\xfb\x6b\x15\xfc\xec\x46\xf8\xec\x06\xf7\x63\x04\xfc\xec\x46" +"\xf8\xec\x06\x0e\x0e\xfb\xcf\x8e\x0a\x66\x42\x1d\xfb\x19\x4f\x22\x1d\xfb\xcf\x4c\x1d\xfb\x42\xfc\x84\x15\xfb\x04\xce\x07\x8c\x59" +"\x75\x6d\x5d\x82\x08\x5d\x07\xd1\x8d\xc2\xcb\x35\x0a\xf2\x07\x0e\xfb\xcf\xf7\xcf\xf9\x63\x28\x0a\x4b\x0a\xd2\x8e\x16\xf9\x5d\x06" +"\xfb\x98\xf9\x6d\x05\xfb\x55\x06\x4c\xfc\xf0\x15\xf7\x33\xf8\x60\xf7\x34\xfc\x60\x05\x0e\xf7\x2e\xf7\xf1\x7b\x0a\xf7\x0d\x98\x1d" +"\xf7\xcc\xf7\x11\xfb\x37\x07\xb6\xa6\x9f\xa0\x0a\xf7\x5c\xfb\x27\xf7\x24\xfb\x5f\xfb\x5e\xa5\x1d\x9f\x7a\xb6\x70\x08\xfb\x37\xfb" +"\x11\xf7\xcc\x06\x0e\x67\xcc\xf8\xb0\x15\xfd\x8a\xf7\x19\xf7\x9b\x07\x5f\xa1\xa7\x78\xb5\x1b\xbf\xaa\xa1\xcb\xae\x1f\x47\xf7\x20" +"\xf8\xb0\x55\x0a\x49\x64\x63\x4c\x49\x68\xb0\xd1\x1e\xf7\xe5\x07\x0e\xfb\x14\xf8\x94\xf7\xe0\x15\x87\xca\x80\xac\x6d\xb0\x08\xc2" +"\x5f\x48\xa8\x39\x1b\x47\x4e\x77\x66\x5f\x1f\x52\x5a\x67\x36\x36\x1a\xfb\x1d\xd7\x2e\xf7\x25\x64\x1e\xe3\x73\x05\xb9\x7e\x9a\x7e" +"\x6f\x1a\x73\x7c\x5c\x6b\x42\x1e\xf7\x09\x06\xb2\xf3\x92\xa8\xb5\x1a\xac\x80\xa5\x75\xa1\x1e\x78\x9d\x78\x94\x4a\xa2\x53\x9e\x18" +"\x5f\x9a\x61\xa1\x77\x9d\x08\x6d\xa6\x79\xbb\xbf\x1a\xe3\xbd\xc6\xd4\xca\xb1\x66\x48\x91\x1e\x0e\x9e\x22\x0a\x6d\xf9\xbf\x21\x1d" +"\xd2\x3e\x1d\xf7\x2e\xf7\x63\x21\x1d\x2f\x5b\x0a\x6a\x3f\x1d\xe6\xf7\x6d\x21\x1d\xfb\x3d\xf7\x75\xf8\x4b\x15\xf7\x39\xf7\x8d\xf7" +"\x11\xfc\x23\xfb\xb6\x59\xfb\x11\xbd\xfb\xce\xf7\x2a\xf7\xce\xf7\x51\xf7\x11\x07\x0e\xfb\x8c\xf7\x60\xf7\xd5\x15\xf5\xf7\x52\xf7" +"\x05\xfb\xde\xfb\x6f\x62\x2c\xb4\xfb\x76\xf7\x20\xf7\x76\xf7\x34\xea\x07\x0e\xf8\x70\xf8\x62\x16\x2e\x1d\xf0\x51\x0a\xc5\xfb\x33" +"\xf7\x2a\xf7\xb0\x27\x06\xfb\x00\xf7\x9f\xf7\x06\xf7\xe5\x05\xfb\x2b\xc4\x1d\x20\xf7\xa5\xfb\x2a\xfb\xa5\xfb\x02\x94\x1d\xf7\x1b" +"\xf7\xdf\x05\xf2\x06\x0e\xf7\x8c\xf8\x83\x16\xf7\x83\xcc\x07\x4b\x1d\xbd\xfb\x34\xf7\x20\xf7\xa5\x32\x06\x46\xf7\x50\xe5\xf7\x83" +"\x05\xfb\x22\xac\x0a\x4a\xf7\x50\xfb\x20\xfb\x50\x45\x06\x46\xf7\x50\x05\xfb\x21\x06\xe4\xfb\x83\xfb\x04\xfb\xc1\x05\xf7\x24\x06" +"\xe4\xf7\x83\x05\xd1\xfb\x83\x06\x0e\x75\xf7\xd6\x74\x15\xf7\x23\x8d\xf7\x00\xf1\xf7\x18\x1a\xe1\x61\xcc\x42\xa4\x1e\xcc\xaf\xaa" +"\xbd\xd0\x1a\xf7\x06\x26\xde\xfb\x1e\x3f\x42\x72\x63\x61\x1e\x64\x66\x7b\x5e\x44\x1a\x72\xf7\x2a\xa4\x07\xc3\xad\xad\xc4\xc3\xb1" +"\x69\x59\x56\x62\x66\x51\x1e\x5e\xfb\x11\xc3\x06\xa2\xa2\x84\x7e\x9f\x1f\xa6\x79\x97\x71\x64\x1a\x49\x64\x63\x4c\x66\x6c\x98\xa1" +"\x7a\x1e\x7b\xa0\x84\xa7\xc0\x1a\xfb\x2a\x6f\x06\x89\xfb\x13\xdd\x32\xf7\x1e\x78\x5f\x36\x18\x94\x9e\x95\x6a\x0a\xfb\x2b\xf7\x95" +"\x74\x15\xf7\x08\x8f\xdd\xd3\xeb\x1a\xc4\x72\xb1\x4f\xad\x1e\xbd\xa5\xa6\xb7\xc1\x1a\xe3\x3b\xc6\xfb\x0d\xfb\x09\x37\x50\x39\x1e" +"\x64\xf7\x1a\x97\x07\xac\xa4\xa1\xb2\xb3\xa3\x75\x67\x63\x71\x78\x56\x1e\x70\x2c\xa6\x06\xb4\x96\x89\x7f\x99\xc2\x1d\x6e\x6f\x63" +"\xa9\x1d\xfb\x20\x06\x8d\xfb\x06\xcc\x43\xf7\x05\x7d\x60\x36\x18\x95\x9f\x94\x8d\x4c\x0a\x74\x92\xa2\x56\x34\x0a\xcd\xa7\x85\x8b" +"\x0a\x5b\x7d\x49\x1d\x0e\xdb\xf8\x7d\x16\xfb\x34\xf7\x2a\xf7\xb1\x2b\x07\xfb\x00\xf7\x9f\x94\x0a\x3a\x86\x0a\xe0\x51\x0a\x0e\x60" +"\xf8\x2f\x16\xfb\x34\xf7\x20\xf7\xa5\x22\x07\x45\xf7\x50\xe6\xf7\x83\x05\xfb\x23\xac\x0a\x59\xf7\x50\x2d\x1d\xf7\x83\xbd\x06\xe5" +"\xfb\x83\x05\x0e\xa9\xf7\x8b\xf8\x5c\x15\x6d\x86\x0a\xa9\xfb\x20\xda\xf7\x20\x9f\x06\x7f\x0a\x30\xfb\xa5\x05\x71\xf7\x20\x3c\x06" +"\x0e\x32\xf7\x80\xf7\xf4\x15\x6b\xf7\x50\x2d\x1d\xf7\x83\xab\x28\xa9\xee\xa6\x06\x46\x0a\x70\xf4\x6d\x06\x0e\x65\xc5\xf8\xf0\x15" +"\xfc\xf0\x2e\x1d\xe5\x07\xf7\x1a\xfb\xdf\x05\xf7\x32\x06\xfb\x32\xf8\x1c\x94\x0a\x35\xf7\xa5\xfc\x20\xfb\x11\x06\x0e\xfb\x28\xf7" +"\x42\xf8\xaf\x15\xfb\xd1\x8c\x05\xfb\x05\xf7\x45\xfc\x3f\xf7\x20\xf7\x83\xcc\x07\x46\x0a\x4a\x06\x0e\xd5\xa3\x0a\xcd\xfb\x34\xf7" +"\x2a\xf7\xb1\x49\xf8\xf0\x89\x0a\x5e\x9d\x0a\xc3\xfb\x35\xf7\x20\xf7\xa6\x53\xf8\x3f\x92\x0a\xd5\xf8\x23\x75\x15\xf7\x3e\x96\xf7" +"\x01\xf2\x92\xf7\x31\x08\x45\x0a\xf7\x23\x06\x91\x1d\xfb\x77\xf7\x0b\xfb\x26\xf7\x54\x83\x1f\x60\x38\x05\x94\x9e\x96\x8e\x4c\x0a" +"\x74\x91\xa3\x56\x34\x0a\xcc\xa7\x85\xb8\x1b\xde\xb9\x52\x0a\x7c\x50\x0a\x2f\xf7\xcb\x75\x15\xf7\x07\x92\xe1\xe0\x95\xf7\x09\x08" +"\x5e\x1d\x53\x1b\x44\x61\xca\xf5\xbf\x95\xba\x9c\xab\x1f\x5b\x1d\xf7\x1a\x06\x47\x0a\xfb\x3f\xdc\x29\xf7\x2c\x7f\x1f\x60\x37\x05" +"\x94\x9d\x96\x8e\xb4\x1d\x70\x70\x93\xa1\x59\x34\x0a\xca\xaa\x85\x8b\x0a\x5c\x7c\x7e\x89\x86\x7e\x1f\x0e\x9e\x2a\x1d\x0e\x22\xf8" +"\x20\x24\x1d\xfb\x03\xfc\x1d\xfb\x0c\x4d\x0a\xf7\x59\xfc\xb0\x05\xfb\x6e\xf7\x20\xf7\x6e\x07\xf7\x54\xf8\xb0\x05\x0e\x9e\xf8\x37" +"\xf7\x83\x15\xab\x07\xf7\x7b\xf8\x5e\x05\xfb\x3c\x06\xfb\x1f\xfb\xd5\xfb\x29\xf7\xd5\x05\xfb\x3b\x06\xf7\x86\xfc\x5e\x05\x6b\xfb" +"\x17\xfb\x11\xf7\x17\xfb\x06\xf7\x2a\xf7\x06\xf7\x17\xf7\x11\x07\x0e\x22\xf7\xf0\x16\xf7\x54\xf8\xb0\x05\xfb\x24\x06\xfb\x03\xfc" +"\x1d\xfb\x0c\x4d\x0a\xf7\x59\xfc\xb0\x05\x20\x2c\xf6\xfb\x0f\xf7\x20\xf7\x0f\xf6\xea\x06\x0e\xd0\xf8\x32\xf8\x06\x15\xf7\x7a\xf7" +"\xfb\x05\xfb\x44\x06\xfb\x1d\x81\x0a\xf7\x3d\x06\xf7\x20\xf7\x91\xf7\x1d\xfb\x91\x05\xd7\xfb\x33\xf7\x2a\xf7\xb0\xfb\x14\x06\x0e" +"\x46\xf7\xf3\xf7\xa4\x15\xf7\x44\xf7\xa0\x05\xfb\x3c\x06\x34\xfb\x37\x33\xf7\x37\x05\xfb\x3c\x06\xf7\x44\xfb\xa0\xfb\x48\xfb\xa4" +"\x05\xf7\x3c\x06\xe7\xf7\x3c\xe6\xfb\x3c\x05\xd6\xfb\x33\xf7\x20\xf7\xa4\xfb\x0e\x06\x0e\xd0\xf8\x88\x16\xcd\xfb\x36\xf7\x2a\xf7" +"\xb3\x49\xf8\xf0\x6c\x0a\x5c\xf8\x1d\x16\xc6\xfb\x31\xf7\x20\xf7\xa2\x53\xf8\x3f\x69\x0a\xd0\xf8\x15\xf7\x74\x15\xaa\x8e\x9e\x90" +"\xcd\x9c\x08\xfb\x8d\x48\x1d\xfb\xf4\x07\x62\x7f\x68\x84\x63\x86\x08\xf7\x27\x3c\xfb\x2c\x07\x41\x90\x62\xab\xc2\x1a\xf7\xb5\xfb" +"\x2a\xfb\xb5\x07\x8a\xfb\x1a\xef\x38\xf7\x3a\x88\x08\xfb\x1b\xda\x07\x0e\x5c\xf7\xd7\xf7\x37\x15\xa6\x90\x9d\x8f\xa4\x93\x08\xfb" +"\x48\xf7\x23\xf8\xb0\xfb\x20\xfb\x8d\x07\x70\x81\x78\x86\x70\x86\x08\xf7\x0d\x4f\xfb\x11\x07\x5c\x8e\x71\x9e\xa9\x1a\xf7\x71\xfb" +"\x20\xfb\x71\x07\x57\x96\x65\xa1\x72\x1e\x6c\xa8\xc0\x78\xca\x1b\x96\x93\x8b\x8c\x9b\x1f\xfb\x08\xc7\x07\x0e\xd0\xf7\x6d\xf9\x6d" +"\x15\x33\x0a\xf7\xf4\x06\x9e\xd0\xc9\x95\xbb\x1b\xde\xbb\x6a\x50\x1f\xfb\xb5\xf7\x2a\xf7\xb5\x07\xf7\x1f\x24\xdc\xfb\x43\x4f\x6f" +"\x87\x72\x2d\x1e\x0e\x6a\xdd\x16\xf7\x20\xf7\xbb\x06\xc8\xa7\xab\xa5\xbc\x1b\xbf\xad\x68\xa5\x0a\xee\x44\xd1\x28\x52\x64\x7b\x56" +"\x46\x1e\xf7\xc9\xfb\x20\x07\x0e\xf7\x6a\x31\x1d\x0e\xc2\xf8\x81\xf7\x11\x15\x21\xfb\xb0\xf7\x2a\xf7\x33\xf5\xf9\x6d\x96\x0a\x4e" +"\x81\x5a\x9f\x1d\xf7\x44\xc6\xa7\x8f\xa4\xe9\x1e\x0e\x48\xf8\x13\xf7\x05\x15\x47\xfb\xa5\xf7\x20\xf7\x34\xd2\xf8\xb0\xfb\x20\xfb" +"\x8d\x06\x7a\x5e\x65\x84\x64\x8d\x1d\xbf\xc4\x94\x9c\xc4\x1f\x0e\xf7\x16\xb5\xf8\x3b\x15\x88\x71\x8a\x7a\x75\x1a\xfb\x00\xb1\x24" +"\xcb\x5a\x1d\xcb\xd0\xb1\xf2\xf7\x01\x1a\xf7\x0f\x5c\xf7\x07\x3d\xcf\x1e\xbd\x50\x41\xa5\x34\x1b\xfb\x24\x21\x4b\xfb\x11\x4b\x1f" +"\xf7\x16\x4b\x05\xe3\xb5\xc1\xb0\xe1\x1b\xf3\xcb\x4c\xfb\x13\xa3\x1f\xfb\x11\x04\xfb\x10\x76\x45\x46\x22\x1b\x23\x44\xd0\xf7\x10" +"\x76\x1f\x0e\xd2\x3e\x1d\xf8\x4b\xf7\x2d\x15\xfb\xbf\x3c\xf7\xbf\x06\x0e\x6a\x3f\x1d\xf8\x0c\xf7\x1c\x28\x0a\xf7\x16\xf8\x18\xf9" +"\x79\x15\x25\x37\x69\x48\x4d\x1f\x4a\x45\x66\x25\xfb\x01\x1a\xfb\x01\xb0\x24\xcc\x5a\x1d\xca\xce\xb2\xf5\xf2\x1a\xf7\x06\x66\xf2" +"\x4a\xd0\x1e\xd0\x4b\x3b\xab\x21\x1b\xf7\x59\xfc\x4f\x15\xfb\x10\x76\x45\x46\x22\x1b\x23\x44\xd0\xf7\x10\x76\x1f\xf7\x11\x04\xf7" +"\x0e\xa1\xd1\xcf\xf3\x1b\xf3\xd1\x47\xfb\x0e\xa1\x1f\x0e\x66\xf7\xc5\x54\x1d\xf7\x10\xfb\xe1\x15\x3a\x7c\x5f\x5e\x4b\x1b\x4b\x5f" +"\xb8\xdc\x7c\x1f\xe9\x04\xdc\x9a\xb7\xb8\xcb\x1b\xcb\xb7\x5e\x3a\x9a\x1f\x0e\x71\xf8\x66\xfa\x16\x5d\x1d\xfc\x33\xfd\xc7\x15\xf7" +"\x23\x06\xce\x8c\xbd\xab\xa9\xc7\xf7\xb0\xf9\x10\x18\xfb\x2f\x06\xfb\x2e\xfc\x05\xfb\x2f\xf8\x05\x05\xfb\x2f\x06\xf7\x7d\xfc\x9e" +"\x78\x63\x7d\x67\x89\x89\x73\x87\x19\xfb\x15\x06\x0e\x2f\xf8\x4c\xf9\x4f\x5d\x1d\x66\x3b\x78\x1d\x0e\xfb\xcf\xf8\x66\xfa\x2a\xbd" +"\x1d\xf7\xa0\xb0\x89\x15\xf7\x69\xaf\x8f\xa5\xc8\x1f\xf7\x05\xbd\xdf\xf7\x33\xf7\x37\x1a\xe1\x70\xd6\x5f\xad\x1e\xa4\x6c\x5e\x97" +"\x50\x1b\xfb\x08\x38\x6b\x4d\x5e\x1f\x71\x67\x81\x64\x89\x42\xcc\xab\x18\x97\x07\xc1\x9c\xb1\xad\xa2\x1e\x9c\x96\x95\x8e\xb9\x94" +"\x42\xfc\x1f\x18\x7c\x45\x73\x61\x6e\x81\x08\x77\x06\xd3\x8a\x15\xc8\xbc\x9a\xac\xa1\xf7\x0f\xc2\xf7\xd2\x18\x92\x06\x90\x06\x9e" +"\x06\xa9\x97\x88\x7f\x9e\x1f\xb3\x72\xa1\x51\x3a\x1a\x20\x73\x34\x5c\x4c\x1e\x64\x59\x58\x6e\x54\x88\x08\xf7\x7b\xfb\x7d\x15\xce" +"\x06\xad\xf7\x52\x05\x7d\xaa\x97\x88\x9e\x1b\xf7\x06\xee\xf7\x29\xf7\x42\xec\x64\xbd\x3e\x5c\x63\x77\x66\x6d\x1f\x69\x61\x79\x55" +"\x75\xfb\x0b\x08\xb9\xfb\x00\x15\xae\xf7\x54\x05\xe1\x9b\xad\xbc\xb7\x1b\xb2\xa0\x63\x41\xfb\x20\x56\xfb\x02\x47\x71\x77\x95\xa1" +"\x79\x1f\x0e\xf7\x0c\xf7\xe0\xf7\x11\x15\x5a\xaa\x76\x9c\x78\xa2\x08\x66\xb8\x76\xd0\xda\x1a\xf7\x26\xd9\xe9\xf7\x0c\xf7\x0d\xd9" +"\x2d\xfb\x26\x42\x79\x49\x6a\x5e\x1e\x77\x70\x75\x79\x55\x68\x08\xfb\x11\xf7\xcc\xf7\x11\xfb\x3e\x07\xbf\xad\x9c\x99\x9f\xa2\x08" +"\xb7\xbe\xa2\xd0\xdd\x1a\xf7\x5a\xfb\x27\xf7\x25\xfb\x5e\xfb\x5f\xfb\x27\xfb\x25\xfb\x5b\x40\x9f\x49\xb1\x5a\x1e\xa2\x6e\x9d\x7c" +"\xc4\x65\x08\xfb\x3e\xfb\x11\xf7\xcc\x06\x0e\xf7\xc5\x2f\x1d\x0e\x4b\x0a\xf7\xf4\xf8\xa9\xf8\x95\x15\x49\x06\xfb\x74\xfc\x95\x05" +"\xdb\x06\xf7\x45\xf8\x2d\xf7\x45\xfc\x2d\x05\xdb\x06\x0e\xf7\xf4\xf8\xa9\x16\xf7\x74\xf8\x95\x05\x3b\x06\xfb\x45\xfc\x2d\xfb\x45" +"\xf8\x2d\x05\x3b\x06\xf7\x74\xfc\x95\x05\x0e\xf7\xf4\xf8\x8c\xf9\x60\x15\xfb\x60\xfb\x34\xfb\x33\xfb\x5e\xfb\x5b\xf7\x34\xfb\x33" +"\xf7\x5d\xf7\x5b\xf7\x34\xf7\x34\xf7\x5c\xf7\x59\xfb\x35\xf7\x36\xfb\x57\x1f\xa4\x52\x15\xf7\x23\x7e\xf7\x06\xfb\x06\x99\xfb\x25" +"\x08\xfb\xa3\x06\xf7\xa4\x52\x15\x82\xfb\x22\xfb\x0d\xfb\x0f\xfb\x22\x80\x08\xf7\xa8\x07\x53\xfb\xa8\x15\xfb\x27\x99\xfb\x05\xf7" +"\x05\x7d\xf7\x29\x08\xf7\xa6\x06\xfb\xa6\xc4\x15\x99\xf7\x24\xf7\x07\xf7\x06\xf7\x25\x99\x08\xfb\xa4\x07\x0e\x5f\xb6\x16\xf8\x9b" +"\xf8\x9b\xfc\x9b\x06\xf8\x67\xfc\x67\x15\xfc\x33\xf8\x33\xf8\x33\x06\x0e\xd2\xf8\xeb\xf8\xf7\x15\x45\xfb\xa4\x06\xfb\x05\x86\x5f" +"\x7b\x6b\x1e\x56\x70\x50\x67\x4c\x1b\x54\x54\xa7\xb7\x6e\x1f\x73\xb0\x84\xb7\xf7\x11\x1a\xf7\xa4\x45\xfb\xa1\x07\xfb\x29\x90\x65" +"\xa6\x5f\x1e\x45\xb5\xd7\x62\xe5\x1b\xde\xd1\xac\xc9\xb8\x1f\xaf\xbc\x91\xaf\xf7\x36\x1a\x0e\x54\xf8\x27\xf8\x1c\x15\xfb\x69\x06" +"\x41\xf7\x4d\x05\x2d\x06\xf7\x7d\xfc\xd5\x05\xde\x06\xf7\x7d\xf8\xd5\x05\x2d\x06\x22\xfb\x9d\x15\x3f\xfb\x48\x40\xf7\x48\x05\x0e" +"\x66\xf8\x65\x16\x73\x82\x83\x88\x7d\x82\x08\x5a\x6f\x6d\x5d\x60\xbb\x1d\xa7\x9f\x0a\x73\x9c\xaf\xba\xb1\xb8\xd4\xb0\x1f\xf8\xb0" +"\x55\x0a\x4b\x5f\x61\x46\x4f\x6d\xab\xcc\x1e\xf7\xef\xfb\x20\xfc\x0c\x07\xfb\x0c\xcc\x48\xf7\x08\xd4\xbc\xa5\xc8\xb3\x1e\x4b\x07" +"\x0e\x49\x3c\x1d\x0e\x49\x3c\x1d\xcb\xf8\xa1\x25\x1d\x49\x3c\x1d\xbe\xf8\xa1\x82\x1d\x49\x3c\x1d\xf7\x2d\xf8\xcf\x23\x1d\x66\x26" +"\x0a\x27\xf9\x96\x2c\x1d\x0e\x66\x26\x0a\x9f\x40\x0a\xf7\x16\x30\x0a\xa2\x43\x1d\xf7\x16\x30\x0a\xfb\x17\xf9\x7d\x4f\x1d\xf7\x16" +"\x30\x0a\xfb\x11\xf9\x7b\x25\x1d\xf7\x16\x30\x0a\xfb\x62\xf9\x89\x21\x1d\xfb\x5f\xf8\x35\xfb\x6e\x15\xb1\xef\x97\xbb\xc0\x1a\xb0" +"\x7f\xab\x76\x9e\x1e\x78\x9d\x74\x93\x59\x91\x46\x93\x18\x54\x92\x7f\x8e\x79\x98\x08\x76\x9a\x7e\xa9\xaa\x1a\xb7\xa5\xb2\xb3\x9a" +"\x1e\x96\xa9\xa8\x8f\xc9\x1b\xcb\xf7\x05\x4d\x06\x63\x6d\x90\x95\x73\x1f\x6c\x98\x75\xaa\xac\x1a\xa9\x9d\xa7\xa7\x99\x1e\x97\xa4" +"\xa3\x8f\xbf\x1b\xe4\xf7\x05\xfc\x22\xfb\x05\xdd\x06\x66\x6c\x7b\x6c\x61\x1a\x4e\xac\x62\xd0\x72\x1e\x5d\x7c\x76\x81\x73\x76\x08" +"\x64\x6b\x76\x5b\x51\x1a\x49\xa8\x4f\xb9\x6a\x1e\xab\x74\xb2\x80\xcd\x84\xb9\x87\x18\xb5\x87\x94\x89\x97\x82\x08\x95\x84\x91\x7b" +"\x79\x1a\x6e\x84\x76\x5f\xfb\x01\x1e\x0e\x2f\x2e\x0a\xfb\xcc\xf7\x6d\x2b\x1d\x2f\x2e\x0a\xfc\x2d\xf7\x6d\x21\x1d\xfb\x28\x36\x0a" +"\x43\xf7\xde\x20\x1d\xfb\x28\x36\x0a\xfb\x2d\xf7\xd0\x27\x0a\xfb\x50\xd1\xf8\xfc\x15\xf7\x58\x06\x3f\x57\x69\x6a\x5e\x4c\x08\x50" +"\x38\x6f\x3c\x34\x1a\x33\xad\x44\xc4\x6e\x1e\xa8\x7d\xb7\x80\xc0\x86\xb0\x88\x18\xcf\x85\x99\x82\x66\x1a\x69\x7e\x62\x63\x32\x1e" +"\xf7\x0a\x06\xb3\xf4\x94\xb0\xc7\x1a\xdc\x68\xab\x2a\x94\x1e\x65\x8f\x54\x90\x74\x90\x79\x96\x19\x70\x9b\x7c\xb0\xbb\x1a\xd4\xa9" +"\xd7\xc5\xd8\x1e\xc4\xd7\xb7\xae\xeb\xba\x08\xf7\x05\xfc\x11\x07\x0e\x74\xa2\xf8\xb0\x94\xf7\x48\x97\x6b\x9a\x06\xf7\x10\x0a\xf7" +"\x1f\x0b\xc8\x92\x90\x8e\x8f\x9a\x96\x92\x90\x8e\x8e\x8f\x0c\x0c\xca\x90\x95\x90\x99\x90\x92\x97\x97\x8e\x8e\x97\x0c\x0d\xf7\xaa" +"\x14\xf9\x1c\x15\xc0\x13\x00\x8e\x02\x00\x01\x00\x08\x00\x0c\x00\x11\x00\x16\x00\x1b\x00\x33\x00\x5c\x00\x5f\x00\x62\x00\x79\x00" +"\x7d\x00\x82\x00\xa3\x00\xbe\x00\xf1\x01\x22\x01\x51\x01\x70\x01\x79\x01\x80\x01\x86\x01\x8a\x01\xa9\x01\xad\x01\xb1\x01\xb5\x01" +"\xbf\x01\xc4\x01\xd5\x01\xdb\x01\xde\x01\xe3\x02\x01\x02\x09\x02\x29\x02\x3d\x02\x46\x02\x4b\x02\x60\x02\x6f\x02\x75\x02\x7a\x02" +"\x7d\x02\x82\x02\x88\x02\x8f\x02\x96\x02\x9e\x02\xa4\x02\xab\x02\xaf\x02\xb8\x02\xbe\x02\xc4\x02\xc9\x02\xce\x03\x6d\x03\xdc\x04" +"\x4a\x04\x5d\x04\xb9\x05\x0e\x05\x3b\x05\x8f\x05\xc2\x05\xe1\x06\x13\x06\x2e\x06\x35\x06\x65\x06\x69\x06\x8c\x06\xb1\x06\xc4\x06" +"\xd0\x06\xd4\x06\xe4\x06\xea\x06\xef\x07\x10\x07\x23\x07\x2d\x07\x30\x07\x4a\x07\x54\x07\x6f\x07\x7f\x07\x99\x07\xaa\x07\xc3\x07" +"\xdc\x07\xf3\x08\x00\x08\x09\x08\x1e\x08\x2d\x08\x32\x08\x46\x08\x5a\x08\x69\x08\x7c\x08\x8f\x08\x96\x08\xa1\x08\xb3\x08\xb6\x08" +"\xbf\x08\xc6\x08\xd6\x08\xdf\x08\xec\x08\xf5\x08\xfd\x09\x05\x09\x08\x09\x15\x09\x1c\x09\x29\x09\x31\x09\x39\x09\x45\x09\x4a\x09" +"\x56\x09\x62\x09\x66\x09\x6a\x09\x75\x09\x80\x09\x8b\x09\x96\x09\xa1\x09\xab\x09\xb5\x09\xbf\x09\xc9\x09\xd2\x09\xdb\x09\xe4\x09" +"\xed\x09\xf6\x09\xfc\x0a\x02\xf8\x89\xa2\x0a\x71\x0a\x0b\xf9\x6d\x15\x0b\xf7\x79\x4e\x1d\x0b\x15\xfb\x00\x52\x1d\xf8\x1a\x3f\x0a" +"\x0b\xf8\x8c\x21\x0a\x85\x1d\xe3\x1b\xe3\xd8\xa5\xbb\xc0\x1f\xbc\xb7\xa1\xc5\xdd\x1a\xf8\x82\x07\x0b\xf8\xb1\x16\xf8\xb0\xfb\x20" +"\xfb\xe6\x07\x4b\x5f\x61\x46\x4f\x6d\xab\xcc\x1e\xf7\xef\xfb\x20\xfc\x0c\x07\xfb\x0c\xcc\x48\xf7\x08\xd4\xbc\xa5\xc8\xb3\x1e\x4b" +"\x07\x0b\x45\x1d\x0e\x5d\x1d\x0e\xf8\x93\x16\x48\x1d\xfc\x84\x06\xfb\xb5\xf8\x84\x05\xfb\x2e\xfd\x6d\xf7\x2a\xf8\x8c\x06\x0b\x15" +"\xf6\x3a\x0a\xf7\x2a\xf9\x6d\x0b\xf8\xf3\xf8\x8f\x15\x67\x0a\xfb\x30\x94\xf6\x36\xf7\x4e\x1b\xf7\x50\xf7\x03\xe2\xf7\x29\xf7\x07" +"\x51\xc7\xfb\x1b\xa5\x1f\x7e\x0a\x0b\xf9\x3e\xf8\x76\x15\x91\x1d\xfb\x7f\xf7\x13\xfb\x26\xf7\x5f\xf7\x4a\xf7\x0c\xf4\xf7\x3b\x94" +"\x1f\x45\x0a\x0b\xf8\x1e\xf8\xb0\x15\xfb\x04\xfc\x1d\xfb\x0b\x4d\x0a\xf7\x5d\xfc\xc6\x05\x53\x68\x65\x57\x80\x82\x8d\x8f\x7a\x1e" +"\x22\x07\x88\xa0\x97\x8a\x9c\x1b\xaf\xb3\x92\x95\xa4\x1f\xb2\x9b\x9c\xa1\xa2\xcc\xc5\x1d\x0b\xf9\x6e\x16\xf7\x5e\xf9\x6d\x56\x0a" +"\xfb\x01\xfc\xb7\xfb\x0a\xf8\xb7\x05\xfb\x28\x06\xfb\x05\xfc\xb6\xfb\x05\xf8\xb6\x56\x0a\xf7\x62\xfd\x6d\x05\xf7\x1b\x06\xf7\x0b" +"\xf8\xcd\xf7\x0e\xfc\xcd\x05\x0b\xf8\xf9\x16\xf7\x2d\xf8\xb0\x05\xfb\x25\x06\x39\xfc\x0e\x3a\xf8\x0e\x05\xfb\x20\x06\x39\xfc\x0e" +"\x35\xf8\x0e\x05\xfb\x25\x06\xf7\x2c\xfc\xb0\x05\xf7\x24\x06\xe1\xf8\x11\xdc\xfc\x11\x05\x0b\xf8\xd6\x21\x0a\xfc\xb8\xfb\x11\xf8" +"\x09\x06\xfc\x09\xfc\x73\x05\xfb\x11\xf8\xb8\xf7\x11\xfc\x08\x07\xf8\x08\xf8\x73\x05\x0b\x9e\x0a\xf7\xce\xf7\x27\x9e\x0a\x0e\xfb" +"\x2a\xfd\x6d\xf7\x2a\x0b\x1f\x78\x57\x05\x75\x0b\x88\xd9\x08\x0b\xf8\x5f\x24\x1d\xfc\x38\xfb\x05\xf7\x8d\x06\xfb\x9f\xfb\xce\x05" +"\xfb\x05\xf8\x53\xf7\x05\xfb\xa6\x07\xf7\x9d\xf7\xce\x05\x0b\x15\x90\x1d\x0b\xfa\x2e\x25\x1d\xfa\x3c\x20\x1d\xf7\x2a\x05\x3f\x06" +"\x39\x2a\x39\x47\x1d\xf7\x65\x48\x0a\x0b\x15\xfb\xb5\xea\xf8\x3d\x4b\x07\x59\x7d\x5d\x72\x3d\x1b\x4e\x07\x0b\xf7\x26\x15\x33\x1d" +"\x0b\xa8\x0a\x0e\xf9\x79\x6c\x1d\x0b\xf9\x81\x15\x6b\x88\x7f\xaf\x1d\x98\x67\x8a\x8b\x78\x1b\x54\x51\x1d\x94\x95\x89\x87\x96\x5f" +"\x1d\xab\xb5\xe0\x8f\x1f\x0e\x54\x1d\x8c\xfb\x05\x70\x0a\x0b\x15\x5c\x82\x75\x78\x5e\x1b\x5e\x72\xa0\xb8\x84\x1f\x54\x06\x32\x8d" +"\xbd\x55\xdb\x1b\xd6\xc4\xc4\xd6\x8d\x8b\x8f\x8a\x90\x1f\x0e\x89\x87\x96\x1f\xd3\x71\x05\x83\x9f\x9e\x87\x9a\x1b\xc6\xab\xb5\xe0" +"\x8f\x1f\x0e\x15\x53\x06\x5d\x82\x75\x56\x1d\x0e\xfb\x26\x77\x0a\x0b\x4b\x1d\xf7\x23\x06\xfb\x03\xf7\xc1\xe5\xf7\x83\x05\xfb\x22" +"\x06\x45\xfb\x50\x05\x0b\xf7\x18\x81\x34\xda\xfb\x1c\x1b\xfb\x36\x2e\x21\xfb\x4c\x0b\x24\x1d\x2d\x1d\x06\x0b\xfc\x3f\xa4\x1d\x0b" +"\x76\x0a\x0e\xcb\xf7\xe7\x3e\x0a\x9e\x1b\xaa\xa6\x1d\x0b\xf8\x1d\x05\xfb\x2e\x06\x0b\xf7\x0e\x05\xfb\x19\x06\x0e\x8c\x79\x1b\x53" +"\x68\x5d\x3d\x0b\x7f\x89\x86\x7d\x1f\x0e\x06\xf7\x1a\xfb\xdf\x05\x0b\x54\x0a\x5b\x0b\x8e\x8e\x84\x1f\x43\xa4\x05\x97\x0b\xac\xc7" +"\xb7\x6e\xa6\x0b\xfb\x20\xfb\xe6\x07\x0b\x05\xfb\x33\x06\x0b\xf8\xf0\xfb\x2a\x0b\xf9\x5c\xf7\x2c\x15\x63\x7f\x5f\x6f\x5b\x1b\x64" +"\x68\x9d\xaa\x77\x1f\x7c\xa2\x86\xa3\xb9\x1a\xf7\xfe\x06\x8c\x97\x8b\x92\x90\x1a\xc1\x83\xbf\x7e\xaf\x1e\xee\x66\x35\xc5\xfb\x04" +"\x1b\x4e\x56\x7a\x6a\x62\x1f\xac\x65\x50\x9c\x3d\x1b\xfb\x29\x3e\x4c\xfb\x10\x89\x1f\xf7\x17\x06\xc1\x92\xa4\x9f\xca\x1b\xc4\xa7" +"\x7a\x67\x7b\x82\x7b\x7c\x83\x62\x1d\xfb\x00\x79\x58\x54\x29\x1a\x26\xcc\x4b\xf2\xdc\xc9\xaa\xd5\xc9\x1e\x47\xb5\xd1\x67\xe3\x1b" +"\xf7\x0e\xec\xcf\xf6\xaa\x1f\xfc\x84\xcb\x15\x39\x64\x5e\x43\x5c\x6e\xa4\xb4\xb4\xa6\xa4\xc0\x92\x1e\xbb\x92\xa9\x90\x97\x8f\x9c" +"\x95\x19\xf7\x21\xcc\x15\xdc\x91\xb0\xb5\xcb\x1b\xcc\xb0\x61\x3a\x92\x1f\x0b\xf8\x9a\x24\x1d\xda\x30\xb0\x2c\xfb\x02\x1a\x2c\x6d" +"\x52\x59\x75\x7b\x95\x9f\x7e\x1e\x7e\xa1\x87\xa5\xcb\x1a\xf7\x3e\xfb\x12\xfb\x3e\x07\x51\x88\x72\x81\x76\x1e\x72\x7f\x78\x7e\x73" +"\x1b\x59\x6d\xc4\xea\xf7\x03\xb0\xe9\xda\xe6\x1f\xfb\x2c\x06\x43\x31\x6b\x2f\xfb\x07\x1a\x33\x9f\x4b\xb5\x5a\x1e\x61\xaf\xbd\x74" +"\xc1\x1b\xcd\xbc\xac\xcf\xad\x1f\x46\xae\xbb\x6b\xcd\x1b\xc1\xbe\xa3\xb5\xaf\x1f\xb4\xbc\x9f\xcb\xe1\x1a\xf7\x08\x6b\xe7\x43\xe5" +"\x1e\x0b\xf7\x39\xbf\x15\x59\xc5\xd5\x72\xe6\x1b\xf2\xdd\xac\xcf\xcb\x1f\xcb\xcf\xb1\xf3\xf6\x1a\xe8\x6f\xe9\x5e\xc8\x1e\xe4\xee" +"\x57\xb8\x38\x2f\x05\xc6\x48\x45\xa4\x2c\x1b\x22\x39\x6a\x47\x4c\x1f\x49\x46\x66\x24\xfb\x01\x1a\x29\xa6\x36\xc2\x41\x1e\x35\x2c" +"\xbe\x5d\x05\xf8\x79\xf8\xac\x15\x99\x64\x93\x5a\x5b\x1a\xfb\x30\x3c\x27\xfb\x0f\x57\x5b\x9d\xa9\x6c\x1e\x61\xc3\x15\x78\xb6\x81" +"\xbc\xc2\x1a\xf7\x31\xda\xef\xf7\x10\xc3\xba\x78\x64\xb0\x1e\x0b\x27\x1d\xfb\x8a\xf8\x4a\x15\xf7\x13\xfb\x2a\x05\xd0\x06\x46\xf7" +"\x2a\x05\x0e\xf7\x12\xae\x15\x67\xb3\xcf\x75\xd3\x1b\xf7\x39\xf1\xf7\x01\xf7\x45\xd3\x7c\xc5\x6b\xbd\x1f\xd3\xd4\x60\xb4\x47\x45" +"\x05\xb5\x58\x51\x9f\x42\x1b\xfb\x3c\x65\x1d\x40\x9b\x4f\xad\x5a\x1f\x40\x3e\xb6\x63\x05\xf8\x03\xf8\x0a\x15\x93\x73\x8f\x72\x70" +"\x1a\x27\x56\x45\x41\x6a\x6e\x99\xa7\x73\x1e\x6d\xbf\x15\x82\xa2\x86\xa7\xaa\x1a\xf0\xbf\xd1\xd6\xae\xa6\x7d\x6a\xa6\x1e\x0b\xd8" +"\xf7\xe7\x15\xfb\xe7\xf7\xb1\x07\xf7\x06\xd0\xa4\xc7\xbb\x1f\xc2\xcf\xac\xf3\xf7\x00\x1a\xf7\x00\x6a\xf2\x54\xd0\x1e\xc6\x5a\x48" +"\xa4\xfb\x07\x1b\xfb\xb1\xfb\xca\x3e\x3b\x06\xf7\x77\x16\xf7\x2a\xdb\xfb\x2a\xf7\x4d\xf7\x1b\x06\xcc\xb1\x7b\x65\xa5\x1f\xaa\x5f" +"\x9a\x4e\x3a\x1a\x3b\x7c\x4e\x6c\x5f\x1e\x65\x71\x65\x7b\x4a\x1b\xfb\x1b\x06\x0e\xdd\x16\xf7\xdc\x06\xdf\xc3\x9b\xb0\xb7\x1f\xb7" +"\xb0\xa7\xc8\xc6\x1a\xd3\x65\xc4\x38\xbb\x1e\xd3\xb9\xa7\xb5\xc9\x1a\xbe\x72\xbf\x62\xaf\x1e\xb0\x60\x58\x9b\x3d\x1b\xfb\xd9\x7e" +"\x1d\x15\xa6\x9d\x89\x89\x94\x1f\xa7\x84\x9d\x74\x6e\x1a\x68\x71\x72\x67\x61\x76\xa0\xb8\x89\x1e\x2f\x06\x30\x8c\xc3\x57\xec\x1b" +"\xec\xca\xc1\xdf\xba\x75\xad\x5f\xa1\x1f\xad\xa0\x9d\xaa\xb0\x1a\xd2\x52\xb9\x33\x57\x60\x7a\x6b\x72\x1e\x78\x74\x84\x72\x88\x59" +"\x08\xe4\x06\xc2\x8c\x9a\x9e\xb4\x1b\xab\xa0\x76\x6a\x65\x71\x77\x59\x1f\x81\x06\x0b\xfb\x26\x3f\x4d\xfb\x11\x82\x1e\xf7\x1b\x06" +"\xc3\x92\xa2\x9d\xd0\x1b\xc1\xa6\x79\x67\x79\x82\x7c\x7c\x82\x62\x1d\x20\x79\x57\x54\x2a\x1a\x2a\xcc\x4a\xee\xc7\xc1\xa4\xbf\xbd" +"\x1e\x6f\x8e\x81\x98\x7b\x1e\x0b\xce\x21\x0a\xfd\x6d\xbc\x1d\xaa\xa2\x80\x75\x9b\x1e\x98\x79\x8e\x7c\x82\x0a\x5e\x1b\x46\x59\x70" +"\x4f\x64\x1f\xf7\x9f\x07\x0b\xf8\x37\xf8\x08\x15\xf7\x75\xf7\xf9\x05\xfb\x42\x06\xfb\x1a\xfb\x84\xfb\x14\xf7\x84\x05\xfb\x46\x06" +"\xf7\x72\xfb\xfe\xfb\x7a\xfc\x03\x05\xf7\x42\x06\xf7\x1f\xf7\x91\xf7\x20\xfb\x91\x05\xf7\x46\x06\x0e\x36\x46\xfb\x03\x67\x96\x6c" +"\x9e\x76\x1f\x9e\x78\x9c\x82\xbf\x7a\xf7\x3b\x57\x18\xae\x80\x97\x80\x75\x1a\x0b\xf8\x27\xf8\xb0\x78\x1d\x0b\xf8\xa6\xf7\x76\x15" +"\x8c\x96\x8b\x95\x90\x1a\xbe\x83\xc0\x7e\xaf\x1e\xed\x67\x34\xc6\xfb\x01\x1b\xfb\x2e\x2c\xfb\x04\xfb\x49\xfb\x41\xea\x21\xf7\x2e" +"\xf7\x0e\xee\xd0\xf5\xaa\x1f\xfb\x24\x06\x0b\xf7\x6c\x68\x0a\xf7\x2b\x8a\x26\xde\xfb\x4c\x1b\xfb\x43\x95\x0a\xf1\x77\x05\xef\x78" +"\xb0\x6f\x50\x1a\x4e\x53\x66\x30\x25\x52\xb6\xd9\x86\x1e\xfb\x26\x06\x0b\xf8\xcc\x15\xf7\x17\xfc\xcc\x05\xf7\x2a\x06\xf7\x15\xf8" +"\xcc\x05\xfc\xcc\x2b\x0a\xfb\x76\x07\xfb\x14\xfc\xd8\xfb\x18\xf8\xd8\x05\xfb\x74\x32\x1d\x0e\xfb\x20\xfb\x8d\x06\x7b\x5e\x64\x83" +"\x65\x8d\x1d\xbe\xc4\x94\x9c\xc5\x1f\x0e\x8e\x78\x0a\xde\xb8\x54\x0a\x5c\x7c\x49\x1d\x0e\xf7\x69\x6d\x0a\x96\x0a\x4d\x81\x5b\x9f" +"\x1d\xf7\x43\xc7\xa7\x8f\xa4\xe9\x1e\x0e\x31\x1d\xfb\x04\x38\x0a\x48\x0a\x21\x41\x1d\xfc\xb7\x15\x5d\xf7\x95\xfb\x01\x06\xfb\x39" +"\xfb\x96\x05\x41\xf7\x47\x2e\xea\xe8\xb9\x07\xfb\x21\xd6\x15\x21\x06\xf5\xf7\x38\x05\x0e\x15\xd8\xbd\x46\x21\x26\x57\x45\x40\x3f" +"\x58\xd0\xf3\xf3\xbe\xd0\xd7\x1f\x0b\xfb\x90\xf9\x6d\x05\xfb\x3a\x8c\x1d\x0b\x87\x1d\x0e\xb7\x1d\xb1\x1f\x8a\xfb\x3c\x15\xb4\xa5" +"\x70\x5e\x62\x71\x70\x62\x62\x71\xa6\xb5\xb6\xa5\xa7\xb4\x1f\x0b\x15\x53\x06\x5c\x82\x75\x78\x95\x1d\x0e\x16\xf7\x4e\xf8\xb0\x05" +"\xfb\x28\x06\xfb\x01\xfc\x1f\xfb\x09\xf8\x1f\x05\xfb\x28\x06\xf7\x51\xfc\xb0\x05\x0e\x15\xf7\x5e\xf7\x34\x07\xc2\xad\x65\x4d\x4d" +"\x68\x63\x55\x1f\x0b\x06\x2e\x81\x51\x56\x2e\x1b\xfb\x08\x47\xe9\xf7\x33\xf7\x35\xd2\xeb\xf7\x0a\xe2\xbc\x61\x32\x9f\x1f\x0b\x57" +"\x1d\x72\x92\xa2\x58\x1f\x78\x57\x05\x76\xc8\xac\x84\xb8\x1b\x0b\xf7\xe3\x15\xfb\x3b\xf7\x26\x05\xfb\x06\x07\xf0\x32\x26\x32\x05" +"\xfb\x09\x07\xf7\x3b\xf7\x28\x05\x0b\x71\xb2\x77\x1e\x5a\x70\x76\x6b\x59\x1a\x3a\xc9\x53\xe4\xe4\xc9\xc3\xdc\xbd\x76\xab\x5a\xa6" +"\x1e\x0b\xf7\x11\x15\x5c\xa9\x77\x9a\x79\xa0\x08\x63\xb9\x75\xd1\xde\x1a\xf7\x25\xd9\xe9\xf7\x0c\x0b\x15\xf7\x00\xf7\x2a\x05\x3f" +"\x06\x38\x2a\x3a\x47\x1d\x63\x1d\xd7\x06\xde\xef\xdc\x8a\x0a\xfb\x06\xa1\x05\x20\xa0\x6c\xa0\xc0\x1a\xc2\xbb\xae\xd9\xea\xc0\x63" +"\x41\x90\x1e\x0b\xf7\x1a\xfb\xdf\x05\xf7\x32\x06\xfb\x32\xf8\x1c\xa9\x0a\x0b\x9e\x1d\xfb\x20\x0b\xfb\x84\xfb\x13\xf7\x84\x05\xfb" +"\x4a\x06\xf7\x76\xfb\xfb\xfb\x76\xfc\x06\x05\x0b\x69\x1a\xfb\xde\xf7\x20\xf7\xfe\x07\xce\x79\xbb\x66\xaa\x1e\xa5\x6c\x5e\x9a\x0b" +"\x51\x0a\xf7\x33\x06\xfb\x33\xf8\x1c\xf7\x07\xf7\xe5\x05\x0b\x15\xa9\xa4\x72\x6d\x6d\x72\x72\x6d\x6d\x72\xa4\xaa\xa8\xa5\xa4\xa8" +"\x1f\x0b\xfb\x45\xbe\x05\x64\x97\x81\x93\xa1\x1a\xa9\xab\x9f\xbc\xce\xac\x73\x5a\x0b\xf7\xa5\x33\x0a\xf7\xdf\x0b\x06\xab\x90\x97" +"\x98\xa2\x1b\x95\xa2\x1d\x0b\x1e\x8f\x61\x8d\x75\x7f\x1a\x79\x85\x81\x7f\x85\x89\x8c\x96\x80\x1e\x0b\xa3\x1d\x0e\x27\x05\xd9\x06" +"\x24\xf7\x2a\x05\x0e\xb8\x1b\xde\xb8\x54\x0a\x0b\xf7\xb7\xc9\xfb\xac\x06\x38\x68\x84\x72\x66\x1f\x4a\x60\x69\x0b\xf7\x0b\x16\xbe" +"\x1d\xfc\x23\x06\x0b\xf7\xbe\xf7\xea\x15\xfb\xa4\xfb\x1b\xf7\xa4\x06\x0e\xb4\xfb\x01\x1b\xfb\x62\xfb\x14\x0b\xd4\x16\xab\x0a\xfb" +"\xde\x06\x0b\xfb\x2a\xfc\xf0\xfb\x9e\x60\x1d\x9b\x0a\x0e\xf7\x39\xf7\xfe\xf7\x11\xfc\x94\xfd\x6d\xf7\x2a\x0b\xa9\x0a\x26\xfb\xa5" +"\x05\x0b\x26\x39\xfb\x22\xfb\x05\xc4\x54\xf7\x28\x6f\x1f\x0b\xfb\x2a\xfb\xf4\x06\x78\x46\x0b\x1b\xcb\xb1\x60\x3b\x92\x1f\x0b\x06" +"\xad\xf7\x42\x05\x22\x06\x69\xfb\x42\x05\x0b\xf9\x35\xa4\x0a\x0b\xda\x69\x1e\x7d\xad\xa6\x87\xd0\x1b\xf7\xac\x0b\xfb\x20\xfb\x5c" +"\xfb\x57\xf7\x5c\xfb\x20\x06\x0b\x3a\x1d\x06\x0e\xcb\xba\x1d\x0b\x15\xfb\x12\x06\x45\xfb\x27\x05\xd1\x06\x0b\x1e\xba\x07\x88\x78" +"\x78\x89\x77\x1b\x57\x0b\x9c\xa1\xa6\x08\xb5\xbe\xa1\xd0\xdc\x1a\x0b\xfc\xb0\xf7\x20\xf7\xd8\x07\xcb\xb7\xb5\x0b\xf7\x27\x15\xbb" +"\xfb\x27\x05\xf7\x2e\x06\x0b\xf7\x6d\xf7\xdf\x15\xf7\xb5\xfb\xdf\x0b\x15\x41\x06\x55\xfb\x94\x05\xc4\x06\x0b\x57\x1f\xfb\xbb\xf7" +"\x20\xf7\xdb\x07\x0b\xf7\x62\x15\x63\x87\x77\x7c\x5b\x1b\x0b\x7f\x7b\x76\x1b\x84\x77\x8e\x8e\x0b\x15\xfb\x0f\xf7\x10\xf7\x0f\x07" +"\x0b\xf7\x07\xf7\xe5\x05\xfb\x2c\x06\x0b\xaa\xaa\xc5\x99\x1f\x9b\xcb\x90\x0b\xf7\x20\xf8\x3f\xf7\x52\xf7\x05\x0b\x06\x45\xfb\x50" +"\x05\x0b\x15\xde\x94\xae\xb3\x0b", 34024 +}; diff --git a/dviware/dvisvgm/src/fonts/NimbusSans-BoldItalic.cff.cpp b/dviware/dvisvgm/src/fonts/NimbusSans-BoldItalic.cff.cpp new file mode 100644 index 0000000000..becc7420ee --- /dev/null +++ b/dviware/dvisvgm/src/fonts/NimbusSans-BoldItalic.cff.cpp @@ -0,0 +1,1236 @@ +#include "Base14Fonts.hpp" + +extern const MemoryFontData NimbusSans_BoldItalic_cff = { +"\x01\x00\x04\x02\x00\x01\x01\x01\x16\x4e\x69\x6d\x62\x75\x73\x53\x61\x6e\x73\x2d\x42\x6f\x6c\x64\x49\x74\x61\x6c\x69\x63\x00\x01" +"\x01\x01\x37\xf9\xbc\x00\xf9\xbd\x01\xf9\xbe\x0c\x00\xf9\xbf\x02\xf9\xc0\x03\xf8\x14\x04\x7f\x0c\x02\xfb\x03\x0c\x03\xd0\x0c\x04" +"\xfb\x0e\xfb\xc9\x1c\x04\xac\xfa\xc5\x05\x1c\x25\xfe\x0f\x1c\x26\x11\x11\xb2\x1d\x00\x00\x8c\x28\x12\x01\xa6\x02\x00\x01\x00\x08" +"\x00\x0e\x00\x13\x00\x1d\x00\x24\x00\x2b\x00\x35\x00\x39\x00\x3f\x00\x45\x00\x50\x00\x5a\x00\x5d\x00\x63\x00\x69\x00\x6e\x00\x74" +"\x00\x7a\x00\x84\x00\x8b\x00\x8e\x00\x95\x00\x9c\x00\xa8\x00\xab\x00\xb3\x00\xb7\x00\xbc\x00\xc2\x00\xcd\x00\xd9\x00\xe3\x00\xe7" +"\x00\xf2\x00\xf4\x00\xfa\x01\x04\x01\x0b\x01\x12\x01\x16\x01\x22\x01\x2b\x01\x31\x01\x3c\x01\x41\x01\x4d\x01\x53\x01\x59\x01\x5f" +"\x01\x6b\x01\x6f\x01\x71\x01\x77\x01\x7d\x01\x89\x01\x8b\x01\x91\x01\x9e\x01\xa5\x01\xaf\x01\xb6\x01\xc2\x01\xcd\x01\xd0\x01\xd2" +"\x01\xd5\x01\xdb\x01\xe1\x01\xed\x01\xf0\x01\xf6\x01\xfe\x02\x09\x02\x15\x02\x1a\x02\x1d\x02\x21\x02\x27\x02\x33\x02\x38\x02\x3e" +"\x02\x4b\x02\x52\x02\x59\x02\x60\x02\x6f\x02\x7b\x02\x80\x02\x86\x02\x8c\x02\x97\x02\xa0\x02\xa6\x02\xa8\x02\xb3\x02\xb9\x02\xbf" +"\x02\xc9\x02\xcd\x02\xd3\x02\xda\x02\xe3\x02\xec\x02\xf5\x02\xfe\x03\x07\x03\x10\x03\x19\x03\x22\x03\x2b\x03\x34\x03\x3d\x03\x46" +"\x03\x4f\x03\x58\x03\x61\x03\x6a\x03\x73\x03\x7c\x03\x85\x03\x8e\x03\x97\x03\xa0\x03\xa9\x03\xb2\x03\xbb\x03\xc4\x03\xcd\x03\xd6" +"\x03\xdf\x03\xe8\x03\xf1\x03\xfa\x04\x03\x04\x0c\x04\x15\x04\x1e\x04\x27\x04\x30\x04\x39\x04\x42\x04\x4b\x04\x54\x04\x5d\x04\x66" +"\x04\x6f\x04\x78\x04\x81\x04\x8a\x04\x93\x04\x9c\x04\xa5\x04\xae\x04\xb7\x04\xc0\x04\xc9\x04\xd2\x04\xdb\x04\xe4\x04\xed\x04\xf6" +"\x04\xff\x05\x08\x05\x11\x05\x1a\x05\x23\x05\x2c\x05\x35\x05\x3e\x05\x47\x05\x50\x05\x59\x05\x62\x05\x6b\x05\x74\x05\x7d\x05\x86" +"\x05\x8f\x05\x98\x05\xa1\x05\xaa\x05\xb3\x05\xbc\x05\xc5\x05\xce\x05\xd7\x05\xe0\x05\xe9\x05\xf2\x05\xfb\x06\x04\x06\x0d\x06\x16" +"\x06\x1f\x06\x28\x06\x31\x06\x3a\x06\x43\x06\x4c\x06\x55\x06\x5a\x06\x64\x06\x6b\x06\x74\x06\x7e\x06\x85\x06\x90\x06\x9a\x06\xa3" +"\x06\xac\x06\xb5\x06\xbf\x06\xc6\x06\xcf\x06\xdb\x06\xdf\x06\xe5\x06\xeb\x06\xf6\x07\x00\x07\x03\x07\x11\x07\x15\x07\x1b\x07\x21" +"\x07\x26\x07\x2d\x07\x3a\x07\x40\x07\x46\x07\x50\x07\x57\x07\x5e\x07\x61\x07\x68\x07\x6f\x07\x7b\x07\x86\x07\x8f\x07\x92\x07\x9a" +"\x07\xa3\x07\xae\x07\xb4\x07\xb9\x07\xbe\x07\xc4\x07\xcf\x07\xdb\x07\xe5\x07\xf1\x07\xf5\x08\x00\x08\x05\x08\x0a\x08\x10\x08\x12" +"\x08\x19\x08\x21\x08\x29\x08\x33\x08\x3d\x08\x49\x08\x55\x08\x5c\x08\x60\x08\x6c\x08\x7d\x08\x86\x08\x8c\x08\x97\x08\x9c\x08\xa8" +"\x08\xb4\x08\xba\x08\xc0\x08\xc6\x08\xd2\x08\xd6\x08\xdf\x08\xe3\x08\xe8\x08\xec\x08\xf2\x08\xfd\x09\x0b\x09\x11\x09\x1c\x09\x22" +"\x09\x2e\x09\x38\x09\x40\x09\x42\x09\x48\x09\x55\x09\x5c\x09\x61\x09\x6b\x09\x72\x09\x7e\x09\x88\x09\x93\x09\x9e\x09\xa4\x09\xa7" +"\x09\xa9\x09\xb0\x09\xbc\x09\xca\x09\xcd\x09\xda\x09\xe0\x09\xe7\x09\xed\x09\xf9\x0a\x06\x0a\x09\x0a\x0f\x0a\x17\x0a\x22\x0a\x2e" +"\x0a\x34\x0a\x39\x0a\x42\x0a\x47\x0a\x50\x0a\x53\x0a\x56\x0a\x5a\x0a\x60\x0a\x6c\x0a\x71\x0a\x76\x0a\x7c\x0a\x89\x0a\x90\x0a\x9d" +"\x0a\xa4\x0a\xab\x0a\xb2\x0a\xb9\x0a\xc0\x0a\xc7\x0a\xce\x0a\xd5\x0a\xdc\x0a\xe3\x0a\xea\x0a\xf1\x0a\xf8\x0a\xff\x0b\x06\x0b\x0d" +"\x0b\x14\x0b\x1b\x0b\x22\x0b\x29\x0b\x30\x0b\x37\x0b\x3e\x0b\x45\x0b\x4c\x0b\x53\x0b\x5a\x0b\x61\x0b\x68\x0b\x6f\x0b\x76\x0b\x7d" +"\x0b\x84\x0b\x8b\x0b\x92\x0b\x99\x0b\xa0\x0b\xa7\x0b\xae\x0b\xb5\x0b\xbc\x0b\xc3\x0b\xca\x0b\xd1\x0b\xd8\x0b\xdf\x0b\xe6\x0b\xed" +"\x0b\xf4\x0b\xfb\x0c\x02\x0c\x09\x0c\x10\x0c\x17\x0c\x1e\x0c\x25\x0c\x2c\x0c\x33\x0c\x3a\x0c\x41\x0c\x48\x0c\x4d\x0c\x56\x0c\x5d" +"\x0c\x64\x0c\x73\x0c\x87\x0c\x93\x0c\x98\x0c\x9e\x0c\xa4\x0c\xaf\x0c\xb8\x0c\xbe\x0c\xc0\x0c\xcb\x0c\xd1\x0c\xd7\x0c\xe1\x0c\xe5" +"\x0c\xe9\x0d\x1f\x0d\x5f\x0d\x76\x0d\x81\x41\x45\x61\x63\x75\x74\x65\x41\x62\x72\x65\x76\x65\x41\x6c\x70\x68\x61\x41\x6c\x70\x68" +"\x61\x74\x6f\x6e\x6f\x73\x41\x6d\x61\x63\x72\x6f\x6e\x41\x6f\x67\x6f\x6e\x65\x6b\x41\x72\x69\x6e\x67\x61\x63\x75\x74\x65\x42\x65" +"\x74\x61\x43\x61\x63\x75\x74\x65\x43\x63\x61\x72\x6f\x6e\x43\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x43\x64\x6f\x74\x61\x63\x63" +"\x65\x6e\x74\x43\x68\x69\x44\x63\x61\x72\x6f\x6e\x44\x63\x72\x6f\x61\x74\x44\x65\x6c\x74\x61\x45\x62\x72\x65\x76\x65\x45\x63\x61" +"\x72\x6f\x6e\x45\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x45\x6d\x61\x63\x72\x6f\x6e\x45\x6e\x67\x45\x6f\x67\x6f\x6e\x65\x6b\x45\x70" +"\x73\x69\x6c\x6f\x6e\x45\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x45\x74\x61\x45\x74\x61\x74\x6f\x6e\x6f\x73\x45\x75\x72\x6f" +"\x47\x61\x6d\x6d\x61\x47\x62\x72\x65\x76\x65\x47\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x47\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65" +"\x6e\x74\x47\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x48\x62\x61\x72\x48\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x49\x4a\x49\x62\x72" +"\x65\x76\x65\x49\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x49\x6d\x61\x63\x72\x6f\x6e\x49\x6f\x67\x6f\x6e\x65\x6b\x49\x6f\x74\x61\x49" +"\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69\x73\x49\x6f\x74\x61\x74\x6f\x6e\x6f\x73\x49\x74\x69\x6c\x64\x65\x4a\x63\x69\x72\x63\x75" +"\x6d\x66\x6c\x65\x78\x4b\x61\x70\x70\x61\x4b\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4c\x61\x63\x75\x74\x65\x4c\x61\x6d\x62" +"\x64\x61\x4c\x63\x61\x72\x6f\x6e\x4c\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4c\x64\x6f\x74\x4d\x75\x4e\x61\x63\x75\x74\x65" +"\x4e\x63\x61\x72\x6f\x6e\x4e\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4e\x75\x4f\x62\x72\x65\x76\x65\x4f\x68\x75\x6e\x67\x61" +"\x72\x75\x6d\x6c\x61\x75\x74\x4f\x6d\x61\x63\x72\x6f\x6e\x4f\x6d\x65\x67\x61\x74\x6f\x6e\x6f\x73\x4f\x6d\x69\x63\x72\x6f\x6e\x4f" +"\x6d\x69\x63\x72\x6f\x6e\x74\x6f\x6e\x6f\x73\x4f\x73\x6c\x61\x73\x68\x61\x63\x75\x74\x65\x50\x68\x69\x50\x69\x50\x73\x69\x52\x61" +"\x63\x75\x74\x65\x52\x63\x61\x72\x6f\x6e\x52\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x52\x68\x6f\x53\x61\x63\x75\x74\x65\x53" +"\x63\x65\x64\x69\x6c\x6c\x61\x53\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x53\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x53\x69" +"\x67\x6d\x61\x54\x61\x75\x54\x62\x61\x72\x54\x63\x61\x72\x6f\x6e\x54\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x54\x68\x65\x74" +"\x61\x55\x62\x72\x65\x76\x65\x55\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x55\x6d\x61\x63\x72\x6f\x6e\x55\x6f\x67\x6f\x6e" +"\x65\x6b\x55\x70\x73\x69\x6c\x6f\x6e\x55\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x55\x70\x73\x69\x6c\x6f\x6e\x74" +"\x6f\x6e\x6f\x73\x55\x72\x69\x6e\x67\x55\x74\x69\x6c\x64\x65\x57\x61\x63\x75\x74\x65\x57\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78" +"\x57\x64\x69\x65\x72\x65\x73\x69\x73\x57\x67\x72\x61\x76\x65\x58\x69\x59\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x59\x67\x72\x61" +"\x76\x65\x5a\x61\x63\x75\x74\x65\x5a\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x5a\x65\x74\x61\x61\x62\x72\x65\x76\x65\x61\x65\x61\x63" +"\x75\x74\x65\x61\x66\x69\x69\x30\x30\x32\x30\x38\x61\x66\x69\x69\x31\x30\x30\x31\x37\x61\x66\x69\x69\x31\x30\x30\x31\x38\x61\x66" +"\x69\x69\x31\x30\x30\x31\x39\x61\x66\x69\x69\x31\x30\x30\x32\x30\x61\x66\x69\x69\x31\x30\x30\x32\x31\x61\x66\x69\x69\x31\x30\x30" +"\x32\x32\x61\x66\x69\x69\x31\x30\x30\x32\x33\x61\x66\x69\x69\x31\x30\x30\x32\x34\x61\x66\x69\x69\x31\x30\x30\x32\x35\x61\x66\x69" +"\x69\x31\x30\x30\x32\x36\x61\x66\x69\x69\x31\x30\x30\x32\x37\x61\x66\x69\x69\x31\x30\x30\x32\x38\x61\x66\x69\x69\x31\x30\x30\x32" +"\x39\x61\x66\x69\x69\x31\x30\x30\x33\x30\x61\x66\x69\x69\x31\x30\x30\x33\x31\x61\x66\x69\x69\x31\x30\x30\x33\x32\x61\x66\x69\x69" +"\x31\x30\x30\x33\x33\x61\x66\x69\x69\x31\x30\x30\x33\x34\x61\x66\x69\x69\x31\x30\x30\x33\x35\x61\x66\x69\x69\x31\x30\x30\x33\x36" +"\x61\x66\x69\x69\x31\x30\x30\x33\x37\x61\x66\x69\x69\x31\x30\x30\x33\x38\x61\x66\x69\x69\x31\x30\x30\x33\x39\x61\x66\x69\x69\x31" +"\x30\x30\x34\x30\x61\x66\x69\x69\x31\x30\x30\x34\x31\x61\x66\x69\x69\x31\x30\x30\x34\x32\x61\x66\x69\x69\x31\x30\x30\x34\x33\x61" +"\x66\x69\x69\x31\x30\x30\x34\x34\x61\x66\x69\x69\x31\x30\x30\x34\x35\x61\x66\x69\x69\x31\x30\x30\x34\x36\x61\x66\x69\x69\x31\x30" +"\x30\x34\x37\x61\x66\x69\x69\x31\x30\x30\x34\x38\x61\x66\x69\x69\x31\x30\x30\x34\x39\x61\x66\x69\x69\x31\x30\x30\x35\x30\x61\x66" +"\x69\x69\x31\x30\x30\x35\x31\x61\x66\x69\x69\x31\x30\x30\x35\x32\x61\x66\x69\x69\x31\x30\x30\x35\x33\x61\x66\x69\x69\x31\x30\x30" +"\x35\x34\x61\x66\x69\x69\x31\x30\x30\x35\x35\x61\x66\x69\x69\x31\x30\x30\x35\x36\x61\x66\x69\x69\x31\x30\x30\x35\x37\x61\x66\x69" +"\x69\x31\x30\x30\x35\x38\x61\x66\x69\x69\x31\x30\x30\x35\x39\x61\x66\x69\x69\x31\x30\x30\x36\x30\x61\x66\x69\x69\x31\x30\x30\x36" +"\x31\x61\x66\x69\x69\x31\x30\x30\x36\x32\x61\x66\x69\x69\x31\x30\x30\x36\x35\x61\x66\x69\x69\x31\x30\x30\x36\x36\x61\x66\x69\x69" +"\x31\x30\x30\x36\x37\x61\x66\x69\x69\x31\x30\x30\x36\x38\x61\x66\x69\x69\x31\x30\x30\x36\x39\x61\x66\x69\x69\x31\x30\x30\x37\x30" +"\x61\x66\x69\x69\x31\x30\x30\x37\x31\x61\x66\x69\x69\x31\x30\x30\x37\x32\x61\x66\x69\x69\x31\x30\x30\x37\x33\x61\x66\x69\x69\x31" +"\x30\x30\x37\x34\x61\x66\x69\x69\x31\x30\x30\x37\x35\x61\x66\x69\x69\x31\x30\x30\x37\x36\x61\x66\x69\x69\x31\x30\x30\x37\x37\x61" +"\x66\x69\x69\x31\x30\x30\x37\x38\x61\x66\x69\x69\x31\x30\x30\x37\x39\x61\x66\x69\x69\x31\x30\x30\x38\x30\x61\x66\x69\x69\x31\x30" +"\x30\x38\x31\x61\x66\x69\x69\x31\x30\x30\x38\x32\x61\x66\x69\x69\x31\x30\x30\x38\x33\x61\x66\x69\x69\x31\x30\x30\x38\x34\x61\x66" +"\x69\x69\x31\x30\x30\x38\x35\x61\x66\x69\x69\x31\x30\x30\x38\x36\x61\x66\x69\x69\x31\x30\x30\x38\x37\x61\x66\x69\x69\x31\x30\x30" +"\x38\x38\x61\x66\x69\x69\x31\x30\x30\x38\x39\x61\x66\x69\x69\x31\x30\x30\x39\x30\x61\x66\x69\x69\x31\x30\x30\x39\x31\x61\x66\x69" +"\x69\x31\x30\x30\x39\x32\x61\x66\x69\x69\x31\x30\x30\x39\x33\x61\x66\x69\x69\x31\x30\x30\x39\x34\x61\x66\x69\x69\x31\x30\x30\x39" +"\x35\x61\x66\x69\x69\x31\x30\x30\x39\x36\x61\x66\x69\x69\x31\x30\x30\x39\x37\x61\x66\x69\x69\x31\x30\x30\x39\x38\x61\x66\x69\x69" +"\x31\x30\x30\x39\x39\x61\x66\x69\x69\x31\x30\x31\x30\x30\x61\x66\x69\x69\x31\x30\x31\x30\x31\x61\x66\x69\x69\x31\x30\x31\x30\x32" +"\x61\x66\x69\x69\x31\x30\x31\x30\x33\x61\x66\x69\x69\x31\x30\x31\x30\x34\x61\x66\x69\x69\x31\x30\x31\x30\x35\x61\x66\x69\x69\x31" +"\x30\x31\x30\x36\x61\x66\x69\x69\x31\x30\x31\x30\x37\x61\x66\x69\x69\x31\x30\x31\x30\x38\x61\x66\x69\x69\x31\x30\x31\x30\x39\x61" +"\x66\x69\x69\x31\x30\x31\x31\x30\x61\x66\x69\x69\x31\x30\x31\x34\x35\x61\x66\x69\x69\x31\x30\x31\x39\x33\x61\x66\x69\x69\x31\x30" +"\x38\x34\x36\x61\x66\x69\x69\x36\x31\x32\x34\x38\x61\x66\x69\x69\x36\x31\x32\x38\x39\x61\x66\x69\x69\x36\x31\x33\x35\x32\x61\x6c" +"\x70\x68\x61\x61\x6c\x70\x68\x61\x74\x6f\x6e\x6f\x73\x61\x6d\x61\x63\x72\x6f\x6e\x61\x6e\x67\x6c\x65\x6c\x65\x66\x74\x61\x6e\x67" +"\x6c\x65\x72\x69\x67\x68\x74\x61\x6f\x67\x6f\x6e\x65\x6b\x61\x70\x70\x72\x6f\x78\x65\x71\x75\x61\x6c\x61\x72\x69\x6e\x67\x61\x63" +"\x75\x74\x65\x61\x72\x72\x6f\x77\x62\x6f\x74\x68\x61\x72\x72\x6f\x77\x64\x6f\x77\x6e\x61\x72\x72\x6f\x77\x6c\x65\x66\x74\x61\x72" +"\x72\x6f\x77\x72\x69\x67\x68\x74\x61\x72\x72\x6f\x77\x75\x70\x61\x72\x72\x6f\x77\x75\x70\x64\x6e\x61\x72\x72\x6f\x77\x75\x70\x64" +"\x6e\x62\x73\x65\x62\x65\x74\x61\x63\x61\x63\x75\x74\x65\x63\x63\x61\x72\x6f\x6e\x63\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x63" +"\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x63\x68\x69\x63\x69\x72\x63\x6c\x65\x6d\x75\x6c\x74\x69\x70\x6c\x79\x63\x6c\x75\x62\x64\x63" +"\x61\x72\x6f\x6e\x64\x63\x72\x6f\x61\x74\x64\x65\x6c\x74\x61\x64\x69\x61\x6d\x6f\x6e\x64\x64\x69\x65\x72\x65\x73\x69\x73\x74\x6f" +"\x6e\x6f\x73\x65\x62\x72\x65\x76\x65\x65\x63\x61\x72\x6f\x6e\x65\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x65\x6c\x65\x6d\x65\x6e\x74" +"\x65\x6d\x61\x63\x72\x6f\x6e\x65\x6e\x67\x65\x6f\x67\x6f\x6e\x65\x6b\x65\x70\x73\x69\x6c\x6f\x6e\x65\x70\x73\x69\x6c\x6f\x6e\x74" +"\x6f\x6e\x6f\x73\x65\x71\x75\x69\x76\x61\x6c\x65\x6e\x63\x65\x65\x73\x74\x69\x6d\x61\x74\x65\x64\x65\x74\x61\x65\x74\x61\x74\x6f" +"\x6e\x6f\x73\x65\x78\x63\x6c\x61\x6d\x64\x62\x6c\x65\x78\x69\x73\x74\x65\x6e\x74\x69\x61\x6c\x66\x65\x6d\x61\x6c\x65\x66\x72\x61" +"\x6e\x63\x67\x61\x6d\x6d\x61\x67\x62\x72\x65\x76\x65\x67\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x67\x63\x6f\x6d\x6d\x61\x61\x63" +"\x63\x65\x6e\x74\x67\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x67\x72\x65\x61\x74\x65\x72\x65\x71\x75\x61\x6c\x68\x62\x61\x72\x68\x63" +"\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x68\x65\x61\x72\x74\x68\x6f\x75\x73\x65\x69\x62\x72\x65\x76\x65\x69\x6a\x69\x6d\x61\x63\x72" +"\x6f\x6e\x69\x6e\x66\x69\x6e\x69\x74\x79\x69\x6e\x74\x65\x67\x72\x61\x6c\x69\x6e\x74\x65\x67\x72\x61\x6c\x62\x74\x69\x6e\x74\x65" +"\x67\x72\x61\x6c\x74\x70\x69\x6e\x74\x65\x72\x73\x65\x63\x74\x69\x6f\x6e\x69\x6e\x76\x73\x6d\x69\x6c\x65\x66\x61\x63\x65\x69\x6f" +"\x67\x6f\x6e\x65\x6b\x69\x6f\x74\x61\x69\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69\x73\x69\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69" +"\x73\x74\x6f\x6e\x6f\x73\x69\x6f\x74\x61\x74\x6f\x6e\x6f\x73\x69\x74\x69\x6c\x64\x65\x6a\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78" +"\x6b\x61\x70\x70\x61\x6b\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6b\x67\x72\x65\x65\x6e\x6c\x61\x6e\x64\x69\x63\x6c\x61\x63" +"\x75\x74\x65\x6c\x61\x6d\x62\x64\x61\x6c\x63\x61\x72\x6f\x6e\x6c\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6c\x64\x6f\x74\x6c" +"\x65\x73\x73\x65\x71\x75\x61\x6c\x6c\x69\x72\x61\x6c\x6f\x6e\x67\x73\x6d\x61\x6c\x65\x6d\x69\x6e\x75\x74\x65\x6d\x75\x73\x69\x63" +"\x61\x6c\x6e\x6f\x74\x65\x6d\x75\x73\x69\x63\x61\x6c\x6e\x6f\x74\x65\x64\x62\x6c\x6e\x61\x63\x75\x74\x65\x6e\x61\x70\x6f\x73\x74" +"\x72\x6f\x70\x68\x65\x6e\x63\x61\x72\x6f\x6e\x6e\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6e\x6f\x74\x65\x6c\x65\x6d\x65\x6e" +"\x74\x6e\x6f\x74\x65\x71\x75\x61\x6c\x6e\x75\x6f\x62\x72\x65\x76\x65\x6f\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x6f\x6d" +"\x61\x63\x72\x6f\x6e\x6f\x6d\x65\x67\x61\x6f\x6d\x65\x67\x61\x74\x6f\x6e\x6f\x73\x6f\x6d\x69\x63\x72\x6f\x6e\x6f\x6d\x69\x63\x72" +"\x6f\x6e\x74\x6f\x6e\x6f\x73\x6f\x72\x74\x68\x6f\x67\x6f\x6e\x61\x6c\x6f\x73\x6c\x61\x73\x68\x61\x63\x75\x74\x65\x70\x61\x72\x74" +"\x69\x61\x6c\x64\x69\x66\x66\x70\x65\x73\x65\x74\x61\x70\x68\x69\x70\x69\x70\x72\x6f\x64\x75\x63\x74\x70\x72\x6f\x70\x65\x72\x73" +"\x75\x62\x73\x65\x74\x70\x72\x6f\x70\x65\x72\x73\x75\x70\x65\x72\x73\x65\x74\x70\x73\x69\x71\x75\x6f\x74\x65\x72\x65\x76\x65\x72" +"\x73\x65\x64\x72\x61\x63\x75\x74\x65\x72\x61\x64\x69\x63\x61\x6c\x72\x63\x61\x72\x6f\x6e\x72\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65" +"\x6e\x74\x72\x65\x76\x6c\x6f\x67\x69\x63\x61\x6c\x6e\x6f\x74\x72\x68\x6f\x73\x61\x63\x75\x74\x65\x73\x63\x65\x64\x69\x6c\x6c\x61" +"\x73\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x73\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x73\x65\x63\x6f\x6e\x64\x73\x69\x67" +"\x6d\x61\x73\x6d\x69\x6c\x65\x66\x61\x63\x65\x73\x70\x61\x64\x65\x73\x75\x6d\x6d\x61\x74\x69\x6f\x6e\x73\x75\x6e\x74\x61\x75\x74" +"\x62\x61\x72\x74\x63\x61\x72\x6f\x6e\x74\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x74\x68\x65\x74\x61\x74\x6f\x6e\x6f\x73\x75" +"\x62\x72\x65\x76\x65\x75\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x75\x6d\x61\x63\x72\x6f\x6e\x75\x6e\x64\x65\x72\x73\x63" +"\x6f\x72\x65\x64\x62\x6c\x75\x6e\x69\x30\x30\x41\x30\x75\x6e\x69\x30\x30\x41\x44\x75\x6e\x69\x30\x32\x31\x41\x75\x6e\x69\x30\x32" +"\x31\x42\x75\x6e\x69\x30\x32\x43\x39\x75\x6e\x69\x30\x33\x38\x37\x75\x6e\x69\x30\x33\x39\x34\x75\x6e\x69\x30\x33\x41\x39\x75\x6e" +"\x69\x30\x33\x42\x43\x75\x6e\x69\x30\x33\x43\x32\x75\x6e\x69\x30\x34\x30\x30\x75\x6e\x69\x30\x34\x30\x44\x75\x6e\x69\x30\x34\x35" +"\x30\x75\x6e\x69\x30\x34\x35\x44\x75\x6e\x69\x30\x34\x39\x32\x75\x6e\x69\x30\x34\x39\x33\x75\x6e\x69\x30\x34\x39\x36\x75\x6e\x69" +"\x30\x34\x39\x37\x75\x6e\x69\x30\x34\x39\x38\x75\x6e\x69\x30\x34\x39\x39\x75\x6e\x69\x30\x34\x39\x41\x75\x6e\x69\x30\x34\x39\x42" +"\x75\x6e\x69\x30\x34\x39\x43\x75\x6e\x69\x30\x34\x39\x44\x75\x6e\x69\x30\x34\x41\x30\x75\x6e\x69\x30\x34\x41\x31\x75\x6e\x69\x30" +"\x34\x41\x32\x75\x6e\x69\x30\x34\x41\x33\x75\x6e\x69\x30\x34\x41\x41\x75\x6e\x69\x30\x34\x41\x42\x75\x6e\x69\x30\x34\x41\x45\x75" +"\x6e\x69\x30\x34\x41\x46\x75\x6e\x69\x30\x34\x42\x30\x75\x6e\x69\x30\x34\x42\x31\x75\x6e\x69\x30\x34\x42\x32\x75\x6e\x69\x30\x34" +"\x42\x33\x75\x6e\x69\x30\x34\x42\x36\x75\x6e\x69\x30\x34\x42\x37\x75\x6e\x69\x30\x34\x42\x38\x75\x6e\x69\x30\x34\x42\x39\x75\x6e" +"\x69\x30\x34\x42\x41\x75\x6e\x69\x30\x34\x42\x42\x75\x6e\x69\x30\x34\x43\x30\x75\x6e\x69\x30\x34\x43\x42\x75\x6e\x69\x30\x34\x43" +"\x43\x75\x6e\x69\x30\x34\x44\x38\x75\x6e\x69\x30\x34\x45\x32\x75\x6e\x69\x30\x34\x45\x33\x75\x6e\x69\x30\x34\x45\x38\x75\x6e\x69" +"\x30\x34\x45\x39\x75\x6e\x69\x30\x34\x45\x45\x75\x6e\x69\x30\x34\x45\x46\x75\x6e\x69\x32\x30\x33\x45\x75\x6e\x69\x32\x30\x41\x46" +"\x75\x6e\x69\x32\x31\x32\x36\x75\x6e\x69\x32\x32\x31\x35\x75\x6e\x69\x32\x32\x31\x39\x75\x6e\x69\x32\x32\x32\x37\x75\x6e\x69\x32" +"\x32\x32\x38\x75\x6e\x69\x32\x32\x39\x35\x75\x6e\x69\x32\x35\x41\x31\x75\x6e\x69\x6f\x6e\x75\x6e\x69\x76\x65\x72\x73\x61\x6c\x75" +"\x6f\x67\x6f\x6e\x65\x6b\x75\x70\x73\x69\x6c\x6f\x6e\x75\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x75\x70\x73\x69" +"\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73\x75\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x75\x72\x69\x6e" +"\x67\x75\x74\x69\x6c\x64\x65\x77\x61\x63\x75\x74\x65\x77\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x77\x64\x69\x65\x72\x65\x73\x69" +"\x73\x77\x67\x72\x61\x76\x65\x78\x69\x79\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x79\x67\x72\x61\x76\x65\x7a\x61\x63\x75\x74\x65" +"\x7a\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x7a\x65\x74\x61\x31\x2e\x30\x30\x28\x55\x52\x57\x29\x2b\x2b\x2c\x43\x6f\x70\x79\x72\x69" +"\x67\x68\x74\x20\x32\x30\x31\x34\x20\x62\x79\x20\x28\x55\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69\x67\x6e\x20\x26\x20\x44\x65\x76" +"\x65\x6c\x6f\x70\x6d\x65\x6e\x74\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x28\x55\x52\x57\x29\x2b\x2b\x2c\x43\x6f\x70\x79\x72\x69" +"\x67\x68\x74\x20\x32\x30\x31\x34\x20\x62\x79\x20\x28\x55\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69\x67\x6e\x20\x26\x20\x44\x65\x76" +"\x65\x6c\x6f\x70\x6d\x65\x6e\x74\x4e\x69\x6d\x62\x75\x73\x20\x53\x61\x6e\x73\x20\x42\x6f\x6c\x64\x20\x49\x74\x61\x6c\x69\x63\x4e" +"\x69\x6d\x62\x75\x73\x20\x53\x61\x6e\x73\x00\xce\x02\x00\x01\x00\x06\x00\x0c\x00\x10\x00\x15\x00\x1b\x00\x21\x00\x2f\x00\x3b\x00" +"\x42\x00\x45\x00\x4a\x00\x55\x00\x5c\x00\x62\x00\x6f\x00\x7f\x00\x84\x00\x8a\x00\x94\x00\x99\x00\xb5\x00\xe6\x01\x06\x01\x12\x01" +"\x15\x01\x35\x01\x49\x01\x4f\x01\x59\x01\x66\x01\xe7\x01\xea\x02\x34\x02\x44\x02\x86\x02\xa7\x02\xce\x02\xd3\x02\xe7\x02\xec\x03" +"\x02\x03\x0e\x03\x1d\x03\x26\x03\x2b\x03\x36\x03\x3c\x03\x50\x03\x84\x03\xa5\x03\xcc\x03\xd4\x03\xf0\x03\xff\x04\x15\x04\x2a\x04" +"\x3d\x04\x5f\x04\x6b\x04\x7c\x04\x80\x04\x87\x04\x94\x04\x9f\x04\xa6\x04\xb2\x04\xbe\x04\xca\x04\xde\x04\xeb\x04\xf3\x04\xfd\x05" +"\x06\x05\x0f\x05\x16\x05\x24\x05\x2c\x05\x37\x05\xe5\x06\x5d\x06\xdd\x07\x5a\x07\x61\x07\xda\x08\x29\x08\x4c\x08\x56\x08\x6b\x08" +"\xcf\x08\xff\x09\x24\x09\x49\x09\x4e\x09\xa3\x09\xc2\x0a\x15\x0a\x67\x0a\xb0\x0a\xf0\x0b\x1b\x0b\x48\x0b\x5e\x0b\x91\x0b\x97\x0b" +"\xa4\x0b\xd2\x0c\x0b\x0c\x41\x0c\x73\x0c\x8b\x0c\xaf\x0c\xdf\x0c\xe6\x0d\x15\x0d\x2e\x0d\x5b\x0d\x87\x0d\xb2\x0d\xdc\x0e\x04\x0e" +"\x28\x0e\x41\x0e\x61\x0e\x81\x0e\xa2\x0e\xaf\x0e\xce\x0e\xd8\x0e\xf6\x0e\xf9\x0f\x16\x0f\x1a\x0f\x2a\x0f\x3a\x0f\x54\x0f\x64\x0f" +"\x68\x0f\x6f\x0f\x76\x0f\x90\x0f\x95\x0f\xae\x0f\xc7\x0f\xd2\x0f\xea\x0f\xee\x0f\xfc\x10\x13\x10\x29\x10\x3f\x10\x53\x10\x68\x10" +"\x71\x10\x86\x10\x9b\x10\xae\x10\xb2\x10\xc6\x10\xd9\x10\xec\x10\xfe\x11\x10\x11\x14\x11\x24\x11\x35\x11\x46\x11\x57\x11\x67\x11" +"\x77\x11\x87\x11\x97\x11\xa4\x11\xb4\x11\xc2\x11\xcc\x11\xd8\x11\xe7\x11\xf6\x11\xff\x12\x0d\x12\x1b\x12\x27\x12\x33\x12\x3f\x12" +"\x4c\x12\x56\x12\x63\x12\x68\x12\x70\x12\x7c\x12\x88\x12\x94\x12\xa0\x12\xac\x12\xb8\x12\xc4\x12\xd0\x12\xdc\x12\xe8\x12\xf2\x12" +"\xfd\x13\x08\x13\x13\x13\x1e\x13\x29\x13\x34\x05\xf7\x20\x06\x0b\x06\xa6\xf7\x11\x05\x0b\xf9\x6d\x15\x0b\x15\xfb\x20\x06\x0b\x06" +"\x70\xfb\x11\x05\x0b\x06\xa5\xf7\x11\x05\x0b\x15\x25\x06\x76\x27\x94\x28\x05\xb2\x06\xc1\xee\x05\x0e\x15\xfb\x2a\x06\x6c\xfb\x26" +"\x05\xf7\x2a\x06\x0b\x06\xfb\x2f\xfd\x6d\x05\x0b\x46\x1d\x0e\xf7\xd6\xaa\x1d\x0b\x15\xfb\x13\x06\x26\xfb\x2a\x05\xd1\x06\x0e\xfb" +"\x07\xfc\xb0\x20\x1d\x0b\xf8\xa3\x9c\x6f\x1d\x0b\x15\x51\xe5\x1d\xb4\x6d\xa9\x61\x1f\x81\xbd\x1d\x0b\xcf\xf7\x01\xd9\xa7\xe3\xb7" +"\xc8\x1f\xcf\xbd\xcc\xaf\xd8\x1b\x0b\xf9\x89\x4d\x1d\x0b\x06\x72\xfb\x0c\x05\x0b\x05\xf7\x2a\x06\xf7\x2f\xf9\x6d\x05\x0b\x06\x77" +"\x2e\x05\x0b\xf7\x46\xf8\xb0\x15\xfb\x07\xfc\xb0\x05\x58\x1d\x89\x7f\x87\x74\x1f\x48\xfb\xcd\x20\x1d\xd8\xf7\xfe\xb7\x1d\x0b\xf9" +"\x6e\x16\xf7\xf9\xf9\x6d\x05\xfb\x33\x06\xfb\x75\xfc\xb8\x8e\xf8\xb8\x05\xfb\x32\x06\xfb\x74\xfc\xb6\x8e\xf8\xb6\x05\xfb\x33\x06" +"\xbe\xfd\x6d\x05\xf7\x1b\x06\xf7\x81\xf8\xbf\x8f\xfc\xbf\x05\x0b\xf9\x71\x22\x1d\xfc\xb8\x24\x1d\xf8\x09\x06\xfc\x6e\xfc\x73\x70" +"\xfb\x11\x05\xf8\xb8\x21\x1d\xfc\x09\x06\xf8\x6e\xf8\x73\x05\x0b\xf8\x15\x60\x1d\xf8\x87\x21\x1d\xfb\xf1\x06\x0b\x55\x1d\x0e\x5c" +"\xfb\x12\xfb\x07\x1a\xfb\x43\xf7\x03\xfb\x01\xf7\x46\xf7\x15\xea\xb8\xf1\xe1\x1e\xd9\xe6\xb8\xf7\x0e\xf7\x0a\x1a\xf7\x49\x0b\x15" +"\xf7\x1f\xf7\x27\x05\x3f\x06\x24\x2a\x4e\xec\x05\x3d\x06\xd2\xfb\x27\x05\x0e\x06\xb3\xf7\x50\x05\x0b\x06\xf7\x14\xf8\xf0\x05\xfb" +"\x2a\x06\x0b\xfb\x14\x15\xef\xc7\x49\xfb\x02\x3c\x70\x33\x60\x0b\xf7\xb7\xf7\xb5\x15\xf7\x40\x06\xc4\xa7\x79\x66\x7f\x89\x7f\x81" +"\x66\x1f\x78\x47\x84\x65\x71\x1a\x7e\x8d\x81\x91\x79\x1e\xf7\x33\x06\x91\xa6\x05\x7e\x95\x86\x95\x99\x1a\x92\x8c\x94\x8d\x95\x1e" +"\xa2\xf7\x0f\x90\xae\xa4\x1a\xb1\x71\xa6\x57\x9c\x1e\xc0\xa5\xa5\x9c\xa3\xa4\x08\xb2\xb3\xa4\xca\xc3\x1a\xb1\x7b\xb2\x70\xa6\x1e" +"\xab\x6b\x63\x99\x51\x1b\xfc\x0d\x28\x1d\xf7\x2a\x06\xe3\xf8\x32\x15\xb3\xf7\x52\x05\xf7\x3c\x06\xb9\xa2\x85\x7c\x9e\x1f\x99\x7e" +"\x93\x7a\x78\x1a\x6f\x80\x6c\x78\x77\x1e\x6e\x71\x6c\x7f\x59\x1b\x0b\x6f\x1d\x0e\xf7\xc9\xf8\xb0\x23\x1d\x48\xfb\xcf\x05\x82\x62" +"\x86\x65\x75\x1a\x6f\x96\x6d\x9e\x75\x1e\x5d\xb1\xc6\x76\xe3\x1b\xe3\xd0\xa0\xb4\xb7\x1f\xb1\xad\x9f\xb9\x9f\xe8\xd1\xf7\xdc\x18" +"\xfb\x20\x06\x46\xfb\xd6\x80\x54\x81\x75\x74\x76\x19\x78\x75\x6c\x80\x6c\x1b\x59\x6a\xa6\xb3\x96\x8f\xa4\x90\xa4\x1f\x0b\x59\x1d" +"\x68\x87\x6d\x75\x1a\xfb\x09\xea\x41\xf7\x2c\x5b\x1d\x0e\xc7\x1d\x52\xa3\x41\x1b\x3d\x3b\x6c\x5a\x5c\x1f\x4b\x48\x5d\xfb\x09\x27" +"\x1a\xfb\x10\xe0\x37\xf7\x12\xf7\x0d\xf0\xca\xf7\x04\xc2\x1e\xfb\x1e\x06\x65\x78\x5e\x72\x5b\x1b\x52\x65\xb0\xc2\x95\x8c\x95\x8d" +"\xa4\x1f\x9d\xe8\x15\xd9\xa0\xb9\xb3\xcd\x6d\x1d\x89\x68\x1a\x0e\xcc\x16\xf7\x2a\x06\x9e\xe4\xf8\x01\xf7\xfa\x2c\xfc\x53\x32\x1d" +"\xfb\x2a\x06\x78\x30\xfc\x02\xfb\xfc\xeb\xf8\x57\x05\xfb\x2a\x06\x0b\xf8\xd3\xf8\xb0\x15\xfc\x39\x06\x73\xfb\x05\x05\xf7\x8d\x06" +"\xfb\xe2\xfb\xce\x73\xfb\x05\x05\xf8\x54\x06\xa3\xf7\x05\x05\xfb\xa6\x06\xf7\xe0\xf7\xce\x05\x0b\xfa\x2c\x55\x1d\x0b\x15\xfb\x1f" +"\xfb\x27\x05\xd7\x06\xf2\xec\xc8\x2a\x05\xd9\x06\x44\xf7\x27\x05\x0b\xf7\xfe\xce\x1d\x0b\x8c\x8e\x87\x1f\x73\xfb\x03\x05\x87\x99" +"\x97\x8a\x9e\x1b\xf7\x06\xc3\xb0\xe2\x9d\x1f\x0b\x15\xfb\x02\x06\x71\xfb\x0e\x05\xf7\x02\x06\x0e\x1b\xac\xad\x9a\xa5\xa4\x1f\x9e" +"\x9f\x96\xa0\x96\xb3\x08\x0e\x15\xfb\x02\x06\x71\xfb\x0c\x05\x0b\xf9\x89\x61\x1d\x0b\x15\xfb\x12\x06\x25\xfb\x2a\x05\xd1\x06\x0b" +"\x06\x73\xfb\x04\x05\x0b\xf9\x27\xf9\x6d\x59\x1d\x69\x87\x6c\x74\x1a\xfb\x08\xeb\x41\xf7\x2b\x5b\x1d\x0b\xf8\x91\xf8\xb0\x15\xfb" +"\x57\xfc\x1d\x67\xf8\x1d\x05\xfb\x2e\x06\xd7\xfc\xb0\x8c\x7c\x05\x52\x5f\x67\x46\x7f\x86\x8b\x8d\x80\x1e\x74\xfb\x01\x05\x88\x98" +"\x96\x8a\x9f\x1b\xb8\xb0\x91\x96\xaa\x1f\xb6\xec\x1d\x0b\x15\xfb\x10\x26\x5b\x29\x39\x1f\x3d\x2e\x39\x1d\x21\xf4\xfb\x4c\x1e\x78" +"\x3d\x1d\x4f\x1f\x44\x59\x4c\x69\x3e\x1b\x25\x4d\x2f\x1d\x0b\x15\x2a\x06\x71\xfb\x0e\x05\xec\x06\xf7\x75\xf7\x0e\x15\x2a\x06\x71" +"\xfb\x0e\x05\xec\x06\x63\xf7\xa0\x15\x25\x06\x78\x31\x94\x28\x05\xb2\x06\xc1\xee\x05\x0e\x15\x60\x7a\x68\x75\x58\xa7\x1d\x15\xc9" +"\xb1\x5e\x43\x5a\x7d\x56\x73\x61\x1f\x53\x6c\x5d\x6c\x57\x1b\x4f\x64\xb8\xd2\xf7\x13\xd6\xf4\xe6\x1f\x0b\x4b\x1d\xf7\x02\x06\xf7" +"\x68\xf7\x0c\x4b\x1d\xf7\x02\x06\x0b\x75\x92\xa2\x5b\x1f\x6d\x58\x05\x75\xc4\xaa\x84\xb8\x1b\xe6\xc6\xb5\xcc\xaf\x73\xa0\x0b\xcc" +"\x1d\xc5\xa3\xbb\xdc\x1d\xac\xa4\x7f\x76\x98\x1f\x93\x7c\x8d\x7f\x8c\x64\x08\x0b\xf7\x20\x06\xcc\xf7\xc4\x05\xde\x9c\xbf\xbd\xcf" +"\x1b\xbb\xa5\x71\x5a\x7d\x0b\x15\x22\xfc\x82\x05\x31\x78\x59\x63\x2f\x1b\x3e\x5e\xaa\xc1\x9a\x8d\x99\x8e\x9b\x1f\xf4\xf8\x82\x05" +"\xfb\x2a\x06\x26\xfc\x6e\x05\x84\x0b\xf7\x68\x21\x1d\xfc\xdc\x24\x1d\xf7\x72\x06\x0b\xe3\xdd\xa5\xbb\xc8\x1e\xc4\xb8\xab\xc3\x9d" +"\xde\xf4\xf8\x82\x18\x0b\x1a\x4d\xe7\x1d\x05\xfb\x20\x06\x2c\x1d\x0b\x15\x8f\x9d\x8c\x93\x97\x1a\xe6\x3f\xc1\xfb\x12\x0b\x68\xb8" +"\xcf\xf7\x12\xd5\xf7\x01\xe1\x1f\x0e\x22\x1d\xfb\x2a\x28\x1d\x0b\x15\xf0\xfb\x2a\x05\xca\x06\x5e\xf7\x2a\x05\x0b\x94\x8a\x88\x9d" +"\x1f\xa9\xf7\x22\x05\x8c\x83\x0b\xf7\x20\x06\xf7\x07\xf8\xb0\x05\xfb\x20\x06\x0b\xfb\x20\x06\x47\xfb\xd2\x05\x3a\x7a\x57\x57\x4a" +"\x1b\x58\x72\xa4\xbd\x9a\x8c\x0b\xf7\x46\xf8\xb0\x15\x2c\x1d\xc8\xf7\xb3\x05\xdd\x0b\xf7\x29\x06\xd1\xf7\xdf\x05\x0b\xeb\xe2\xe0" +"\xe9\xcf\x57\xbc\x43\x1f\x0b\x83\x81\x5d\x18\xd7\x91\xce\xce\x0b\x97\xb8\x91\xb5\xb1\x1a\xb9\x7a\x0b\x06\xfb\x15\xfc\xf0\x05\x0b" +"\x8e\xa3\x8c\x94\x95\x1a\xb5\x7a\xb3\x6c\xaa\x1e\xb1\x0b\xf7\x20\x06\xe6\xf8\x40\x05\x0b\x1b\xba\xac\x6f\x60\x90\x1f\x8d\x81\x8b" +"\x0b\xf9\x82\xdd\x1d\xad\xbf\x99\x8c\x96\x91\xa5\x1f\xf7\xfe\x06\x69\x1d\xbb\x6f\xae\x1e\xb8\x67\x52\xa3\x44\x1b\x4f\x50\x7a\x6b" +"\x5d\x1f\xad\x6a\x59\x9a\x3d\x1b\x31\x45\x76\x63\x5e\x1f\x6a\x6e\x7a\x69\x7e\x4c\x08\xf7\x17\x06\xc2\x9c\xaa\x9f\xcc\x1b\xbd\xa1" +"\x7e\x6d\x76\x7d\x75\x77\x81\x1f\x76\x80\x8b\x8b\x43\x81\x52\x82\x18\x5b\x83\x66\x7d\x6b\x74\x08\x56\x65\x6b\x4f\x4d\x1a\x3a\xc5" +"\x5b\xec\xe8\xc0\xa4\xd6\xd1\x1e\x4b\xa7\xcc\x67\xe3\x1b\xf7\x0c\xf7\x01\xcf\xf6\xc0\x1f\xfc\x78\xcb\x15\x39\x79\x5b\x5e\x45\x1b" +"\x5c\x73\x9c\xac\xba\xaf\xac\xcd\x96\x1f\xbd\x93\x9b\x8e\x05\x8c\x95\x92\x8d\x8f\x1b\x96\x8e\x8e\x8c\x97\x91\x08\xf8\x08\xcc\x15" +"\xfb\x6c\x06\xd9\xa0\xb8\xb3\xcc\x1b\xc2\xa9\x6a\x51\x1f\x0b\x15\x7c\x9c\x85\x98\x9a\x1a\x91\x8c\x92\x8d\x93\x1e\xca\xf7\xc0\x05" +"\x8f\x9d\x8d\x9a\x97\x1a\xa8\x7a\xae\x73\x9e\x1e\xa5\x6b\x5b\x97\x44\x1b\xfb\x31\x3a\x52\xfb\x16\x6f\x1f\xf7\x17\x06\xc2\x9c\xa9" +"\x9f\xcc\x1b\xbe\xa1\x7e\x6d\x76\x7d\x75\x77\x81\x1f\x77\x80\x8b\x8b\x43\x81\x51\x82\x18\x5b\x83\x66\x7d\x6c\x75\x08\x56\x65\x6a" +"\x4e\x4f\x1a\x65\x9d\x65\xa8\x73\x1e\x76\xa4\xad\x81\xb7\x1b\xc4\xbc\xa1\xc2\xc7\x1f\x88\x7c\x8b\x86\x84\x1a\x81\x8d\x85\x90\x80" +"\x1e\xf7\x2d\x06\x97\x1d\x0b\x15\x76\x9b\x7c\x95\x75\x97\x08\x95\x79\x65\x99\x84\x1b\x82\x84\x83\x81\x82\x8d\x88\x9f\x7b\x1f\xba" +"\x63\xa4\x6b\xc1\x31\x08\x7a\x94\x8e\x89\x93\x1b\x94\x91\x91\xa0\x96\x1f\xa7\xc3\xbd\xca\xb7\xb0\x08\x98\x95\x92\x93\x90\x1a\x98" +"\x85\x93\x81\x78\x42\x66\x72\x6c\x1e\xf8\x3f\x07\x72\xa9\xd6\x65\x9d\x1b\x95\x91\x93\x97\x90\x88\x8f\x7a\x9a\x1f\x69\xa6\x53\xd0" +"\x76\xb3\x08\xb3\x75\x86\x92\x83\x1b\x83\x86\x88\x82\x86\x1f\x4f\x27\x7a\x75\x56\x5c\x08\x76\x78\x8a\x8a\x82\x1a\x81\x92\x84\x94" +"\x9f\xc9\xab\xaa\xb2\x1e\x0e\xf9\x07\xf8\xb0\x15\xb6\x48\x9e\x4c\x3e\x1a\x54\x7e\x4e\x76\x5a\x1e\x5b\x76\x6a\x6f\x69\x1b\x6d\x78" +"\xa2\xb0\xa2\x8e\x9d\x96\xc2\x1f\xad\xf7\x30\x05\xfb\x12\x06\x66\xfb\x3e\x81\x5c\x86\x77\x80\x75\x19\x6a\x7b\x70\x76\x6e\x1b\x69" +"\x75\xa9\xb9\xf7\x10\xc9\xf7\x10\xf7\x0f\xf7\x11\x1f\xfb\x33\x06\x27\xfb\x01\x4e\xfb\x20\xfb\x0d\x1a\xfb\x07\xd0\x3b\xef\xcd\xbe" +"\xb0\xd4\xaf\x1e\x98\x6c\x92\x7f\x95\x7d\x08\x6a\xa5\xb3\x78\xba\x1b\xcd\xc7\xad\xcb\xb7\x1f\xba\xcf\xa7\xec\xec\x1a\xdd\x7c\xc4" +"\x65\xcc\x1e\x0b\xf9\x61\xf8\x8f\x74\x1d\x0b\xf7\x1b\xaf\x15\x64\xb3\xc5\x77\xd2\x1b\xf1\xe5\xb7\xda\xc7\x1f\xba\xc9\xac\xef\xde" +"\x1a\xae\x85\xa9\x7f\xa9\x1e\xe6\xd7\x69\xb4\x36\x44\x05\xb4\x64\x4f\xa1\x41\x1b\x24\x31\x5f\x3c\x4f\x1f\x5b\x4c\x6b\x28\x35\x1a" +"\x68\x92\x6b\x99\x6c\x1e\x2e\x3d\xad\x63\x05\xf8\x53\xf8\x0a\x15\x8c\x84\x8b\x86\x88\x1a\x65\x82\x5f\x7b\x67\x1e\x43\x6d\x57\x61" +"\x50\x1b\x69\x6c\x9a\xa4\x7a\x1f\x79\xc1\x15\x8a\x96\x8b\x90\x94\x1a\xb9\x9a\xc2\xa2\xb4\x1e\xc3\xaa\xb9\xaa\xc0\x1b\xae\xa9\x7b" +"\x6e\x9d\x1f\x0b\x15\x94\x1d\x22\x31\x57\xac\xc5\x8f\x8c\x94\x8c\x94\x1e\xfb\x26\x06\x88\x77\x8a\x81\x7d\x1a\x56\x9f\x5d\xaf\x6a" +"\x1e\x5f\xbb\xcf\x76\xec\x1b\xf7\x0e\xe8\xae\xce\xc5\x1f\xb5\xbb\xa6\xd3\xcd\x1a\xd8\x54\xbf\x25\x9f\x1e\xfb\x01\xa1\x05\x2d\x9e" +"\x70\x9b\xb1\x1a\xcb\xc3\xb3\xe6\xe1\xb9\x6e\x55\x86\x8a\x82\x8a\x82\x1e\x0b\xf8\x9f\xf8\xb0\x15\x79\x38\x05\xca\x70\x62\xa8\x50" +"\x1b\x3f\x3f\x65\x49\x57\x1f\x51\x43\x66\xfb\x01\x2a\x1a\xfb\x02\xd4\x3b\xf1\x7f\x1d\x0b\xf7\xbd\x4c\x1d\xf7\x31\xfc\xa7\x42\x1d" +"\x89\x1d\x93\x1a\xf7\x13\xfb\x01\xe0\xfb\x37\xfb\x10\xfb\x00\x59\x2c\x39\xa2\x1d\x0b\xdd\x16\xf7\xdc\x06\xef\xd0\xa3\xc1\xc3\x1f" +"\xbc\xbb\xab\xd0\xc7\x1a\xc2\x77\xb1\x58\xb3\x1e\xd8\xbd\xb3\xca\xd1\x1a\xb2\x7c\xb2\x72\xa6\x1e\xaf\x67\x59\x9c\x41\x1b\xfb\xd9" +"\x06\xe3\xfb\xb6\x15\xae\xf7\x39\x05\xf7\x38\x06\xc9\xa6\x78\x60\x72\x81\x70\x79\x78\x1f\x72\x75\x75\x84\x57\x1b\xfb\x7a\xfb\xce" +"\x15\xb3\xf7\x51\x05\xf7\x46\x06\xc9\xa8\x75\x5c\x72\x82\x6f\x7d\x76\x1f\x69\x74\x6f\x7f\x52\x1b\x0e\xf8\xe5\xf7\xe6\x15\x6b\x1d" +"\x66\x5c\x9c\x48\x1b\x2d\x41\x6c\x4b\x57\x1f\x50\x45\x61\xfb\x09\x2c\x1a\x59\x9d\x5a\xaa\x68\x1e\x62\xaf\xc3\x77\xd4\x1b\xf7\x16" +"\xed\xd7\xf7\x1a\xb5\x1f\x57\x1d\x0b\xf8\xae\xf9\x79\x15\xfb\x10\x26\x5b\x28\x39\x1f\x3d\x2f\x39\x1d\x20\xf4\xfb\x4b\x1e\x78\x3d" +"\x1d\x4e\x1f\x45\x59\x4c\x69\x3e\x1b\x26\x4c\x2f\x1d\x0e\xf8\xae\xf9\x79\x15\xfb\x10\x26\x5b\x29\x39\x1f\x3d\x2e\x39\x1d\x20\xf4" +"\xfb\x4b\x1e\x78\x3d\x1d\x4f\x1f\x44\x59\x4c\x69\x3e\x1b\x25\x4d\x2f\x1d\x0b\xfb\x57\x51\x1d\x0e\xf7\x2a\xf7\xe9\x15\x42\xfb\xe9" +"\x05\xf7\xb1\x06\xf7\x25\xdf\xb2\xf0\xd4\x1f\xd3\xed\xb3\xf7\x0f\xf7\x0a\x1a\xf7\x43\x3d\xd6\xfb\x49\x1e\xfb\xb1\x06\x49\xfb\xc8" +"\x05\x3f\x06\x7a\x3b\x05\xf7\x77\x16\xf7\x41\x06\x9c\xdb\x05\xfb\x42\x06\xb2\xf7\x4b\x05\xf7\x1b\x06\xe7\xb8\x5f\x30\x3c\x71\x24" +"\x69\x50\x1f\x40\x60\x5a\x6f\x34\x1b\xfb\x1a\x06\x0e\x8a\x1d\x2a\x59\xc1\xf4\xde\xa5\xe2\xb8\xd1\x1f\xd5\xba\xc8\xae\xdc\x1b\xc1" +"\xb3\x79\x68\xa0\x1f\x98\x77\x8f\x78\x64\x1a\x0b\xc9\xb3\x9e\xc6\xcb\x1e\x7b\x42\x05\x49\x7d\x50\x5f\x42\x1b\x59\x67\xa0\xa9\x1f" +"\x8c\x97\x05\xfb\x24\x06\x89\x7f\x8a\x80\x83\x1a\x64\xa5\x66\xb3\x77\x1e\x79\xb0\xb7\x83\xc9\x1b\xf7\x3a\xf7\x01\xd3\xf7\x14\xa6" +"\x1f\xf7\x0b\xf8\xc2\x05\xfb\xa9\x24\x15\xc3\xaf\x5b\x41\xfb\x0e\x3f\x23\x32\x57\x6b\xb5\xd1\xf7\x0f\xd6\xf7\x05\xdd\x1f\x0b\xf8" +"\xd8\xf7\x76\x15\x96\xbc\x8f\xae\xb0\x1a\xf7\x0d\x34\xdc\xfb\x15\x36\x3c\x65\x47\x55\x1e\x56\x49\x69\x24\x2b\x1a\xfb\x11\xdd\x3e" +"\xf7\x17\xf7\x0d\xea\xc9\xf7\x06\xbf\x1e\xfb\x24\x06\x61\x72\x63\x74\x5b\x1b\x53\x6c\xaa\xc2\x9b\x8d\x9a\x8f\xa1\x1f\xa1\xe8\x15" +"\xdc\xa5\xb7\xb2\xc9\x1b\xbf\xac\x6a\x56\x80\x8a\x83\x8a\x7c\x1f\x0b\xf8\x2f\xf8\xb9\x15\x32\x3d\x6c\x53\x54\x1f\x4b\x49\x63\x25" +"\x28\x1a\xfb\x1a\xe3\x37\xf7\x21\xe1\xd8\xaa\xc4\xc4\x1e\xc8\xc8\xb5\xf3\xe6\x1a\xf7\x25\x38\xde\xfb\x23\x1e\x7e\xfb\x05\x15\xc9" +"\xae\x61\x40\x5b\x7b\x54\x72\x61\x1f\x54\x6b\x5e\x6e\x57\x1b\x4e\x67\xb5\xd3\xf7\x12\xd8\xf5\xe8\x1f\x0b\xf7\x49\xf8\xb0\x15\x2c" +"\x1d\xcc\xf7\xc7\x96\xbb\x99\xa5\xa7\xa0\x19\x9d\xa3\xa8\x95\xab\x1b\xba\xa7\x74\x65\x82\x87\x73\x86\x74\x1f\xfb\x04\xfc\xa7\x20" +"\x1d\xf7\x0f\xf8\xd8\x05\x90\xa1\x8d\x9f\x9a\x1a\xd7\x4c\xc1\x30\x41\x5c\x73\x4c\x55\x1e\x9c\xd9\x05\x0b\x16\xf7\x20\x06\xf7\x2f" +"\xf9\x6d\x05\xfb\x20\x06\x54\xfb\x97\x9e\x1d\x66\xf8\x12\x15\xc1\xad\x5f\x45\xfb\x12\x42\xfb\x00\x35\x55\x6a\xb8\xd3\xf7\x0d\xd6" +"\xf7\x02\xde\x1f\x0b\x15\x23\x32\x5f\x3c\x50\x1f\x5b\x4b\x6c\x28\x35\x1a\xfb\x0e\xdf\x3d\xf7\x19\xf7\x00\xe2\xb5\xdc\xc8\x1e\xbb" +"\xca\xaa\xee\xe2\x1a\xf7\x10\x37\xd7\xfb\x1d\x1e\x75\xfb\x04\x54\x1d\x0b\xc8\x1d\x75\x92\xa2\x5b\x1f\x6d\x58\x05\x75\xc4\xaa\x84" +"\xb8\x1b\xe6\xc6\xb5\xcc\xaf\x0b\xf7\x72\x22\x1d\xfb\x2f\xfd\x6d\x20\x1d\xcc\xf7\xc4\x05\xdc\x9c\xc0\xbf\xcc\x1b\xba\xa4\x70\x5a" +"\x7e\x89\x7e\x87\x75\x1f\x48\xd6\x1d\x9d\x9d\x1a\xda\x51\xc0\x34\x43\x55\x6f\x4c\x55\x1e\xc5\xf7\xa3\x05\x0b\xf8\xb1\x16\x88\x1d" +"\x0b\xf7\x07\xf8\xb0\x05\x64\x1d\x94\x91\xa4\x9d\x1d\x0b\xf9\xaf\xcf\x1d\x62\x7d\x72\x70\x71\x08\x5e\x5e\x50\x72\x51\x1b\x28\x44" +"\xd6\xf3\xd2\xa5\xe6\xaf\xc2\x1f\xd6\xbb\xcf\xb0\xe0\x1b\xea\xc4\x62\x3f\x93\x1f\xf7\x1e\x06\x8c\x99\x8c\x96\x0b\xf9\xa9\xf8\x76" +"\x15\x8e\xa6\x8c\x96\x97\x1a\xf7\x11\x22\xdf\xfb\x2f\xfb\x0f\x20\x56\x26\x39\x1e\x45\x33\x5f\xfb\x1b\xfb\x15\x1a\xfb\x34\xf3\x29" +"\xf7\x3f\xf7\x4a\xf7\x1a\xf0\xf7\x3f\xb7\x1e\xfb\x23\x06\x2f\x6e\x44\x57\x2b\x1b\x0b\xf8\xa9\xf9\x79\x15\xfb\x0d\xfb\x02\x57\x2d" +"\x3b\x1f\x44\x37\x60\xfb\x0a\xfb\x03\x1a\xfb\x4f\xf7\x05\xfb\x0a\xf7\x45\xf7\x13\xf6\xbd\xe8\xd8\x1e\xd2\xe3\xb5\xf7\x08\xf7\x04" +"\x1a\xf7\x51\xfb\x02\xf7\x08\xfb\x47\x1e\x0b\x06\xf7\x07\xf8\xb0\x05\xfb\x20\x06\x56\xfb\x8d\x05\x7b\x5d\x60\x83\x62\x1b\x60\x6f" +"\x9c\xa5\x8f\x8b\x8d\x8c\x8e\x1f\xba\xf7\x71\x05\xfb\x20\x06\x5c\xfb\x71\x05\x87\x77\x88\x77\x7e\x1a\x49\xce\x5d\x0b\x65\x1d\x9d" +"\xbd\xb4\xde\x1b\x9a\x62\x1d\x88\x8b\x85\x1b\x4a\x4c\x61\x42\x5c\x1f\xa2\xf5\x05\x0b\xf8\xd5\xf7\xdf\x15\x45\xfb\xdf\x32\x1d\xfb" +"\x2b\x06\x51\xfb\xa5\x05\xfb\xb4\x06\xc5\xf7\xa5\x05\xfb\x2a\x28\x1d\xf7\x2a\x06\xd1\xf7\xdf\x05\x0e\xa8\x5c\xb7\x72\x1e\x74\xb2" +"\xba\x81\xc9\x1b\xf7\x3e\xf7\x00\xdd\xf7\x14\xc7\x64\xb2\x38\xa4\x1f\x2b\xa7\x05\x58\x9a\x7d\x95\x9f\x1a\xab\xae\xa0\xc0\xc2\xac" +"\x78\x6a\x85\x8a\x87\x89\x82\x1e\x0b\xf8\x95\xf8\xb0\x95\x1d\x0b\xda\x16\xf7\x24\x06\xd9\x8d\xba\xa5\xb4\xcc\xf8\x37\xf9\x10\x18" +"\xfb\x35\x06\xfb\x7d\xfc\x05\x3f\xf8\x05\x05\xfb\x29\x06\xf7\x0e\xfc\x9e\x6b\x5a\x79\x70\x84\x86\x6a\x8a\x19\xfb\x07\x06\x0b\xf7" +"\xb6\xf7\xce\x15\xf7\xf1\x25\x1d\xfb\xf1\x06\xae\xf7\x39\x05\xf8\x0d\x21\x1d\xfc\xa3\x9f\x1d\x0b\xf8\x81\xf8\x06\x15\xf7\xc6\xf7" +"\xfb\x05\xfb\x4c\x06\xfb\x50\xfb\x84\x3f\xf7\x84\x05\xfb\x42\x06\xf7\x2a\xfb\xfb\xfb\xc5\xfc\x06\x05\xf7\x46\x06\xf7\x55\xf7\x91" +"\xdf\xfb\x91\x05\x0b\x91\xa7\x8d\x99\x9f\x1a\xf7\x00\x2e\xcb\xfb\x33\x2a\x3f\x73\x59\x52\x1e\x52\x5a\x68\x40\x44\x1a\x38\xbd\x5f" +"\xf7\x0b\x73\x1e\xed\x77\x05\xe6\x79\xa8\x77\x5c\x1a\x47\x48\x60\x0b\x15\xfb\x57\xfc\x1d\x67\xf8\x1d\x05\xfb\x29\x06\xdd\xfc\xc6" +"\x77\x4e\x6b\x74\x4f\x8c\x19\x7f\x06\x79\x06\x73\xfb\x05\xf7\x32\x87\xb2\x9e\xc5\xf4\x19\xf7\xfa\xf9\x12\x05\x0b\xf7\x1b\x15\xad" +"\xa1\x7a\x71\x64\x69\x6d\x60\x6c\x77\x9d\xa6\xb1\xab\xa8\xb3\x1f\x6a\xfb\x3d\x15\xac\xa0\x78\x6c\x57\x6a\x66\x5c\x6a\x73\x9f\xa7" +"\xbe\xb0\xb3\xb9\x1f\x0b\xfb\x0f\xf7\x6d\x15\x39\x79\x5b\x5d\x47\x1b\x5b\x72\x9c\xac\xba\xb0\xac\xcc\x96\x1f\xbd\x93\x9b\x8e\x95" +"\x8d\x92\x8c\x8f\x8c\x19\x96\x8d\x8e\x8c\x97\x92\x08\x0b\x15\xea\xc3\x4b\xfb\x02\x3a\x70\x35\x5e\x4c\x1f\x46\x59\x4c\x68\x3f\x1b" +"\x2e\x53\xcc\xf7\x01\xdd\xa7\xe2\xb8\xc9\x1f\xcf\xbc\xcb\xae\xd4\x1b\x0e\xf7\xbc\xf7\xce\x15\xf7\xf1\x25\x1d\xfb\xf1\x06\xae\xf7" +"\x39\x05\xf8\x0e\x21\x1d\xfc\xa4\x28\x1d\x0b\x20\x1d\xb1\xf7\x45\xcf\xc9\xda\xfb\x83\x05\xf7\x38\x06\xfb\x15\xf7\xe2\xf7\x7c\xf7" +"\x62\x05\xfb\x33\x06\xfb\x73\xfb\x66\x05\x0b\x15\x60\x7b\x68\x75\x58\x1b\x58\x75\x9f\xb8\x8a\x1f\x60\x06\x87\x7a\x8a\x81\x7e\x1a" +"\x4d\xb5\x62\xcb\xd9\xd0\xc8\xdd\x99\x1e\x0e\x1a\x52\xb4\x65\xe3\x6e\x1e\xda\x72\x05\xca\x77\x98\x82\x74\x1a\x6b\x60\x74\x4e\x48" +"\x67\xa2\xb8\x88\x1e\xfb\x1d\x06\x88\x7d\x8a\x0b\x1f\xd0\xb5\x1d\xc0\xa6\xcb\xc2\x1e\x7c\x47\x05\x0b\x05\xc1\x74\x61\xa4\x47\x1b" +"\x3a\x39\x5d\x40\x57\x1f\x5a\x44\x6e\x31\x39\x1a\xfb\x13\xce\x3a\xf4\xcf\xbf\xa3\xc1\xb9\x1e\x0b\x28\x1d\xf8\xb5\x21\x1d\xfc\x1f" +"\x06\x0b\x99\x1a\xc5\xc0\xbc\xc8\xc9\xaa\x6c\x4d\x86\x8b\x81\x8a\x80\x1e\xf7\x17\x06\x8e\xa4\x8c\x98\x9c\x1a\xf7\x08\x46\xc7\x0b" +"\xa5\x1d\x0e\x1e\x3d\x30\x5b\xfb\x13\xfb\x08\x1a\xfb\x42\xf7\x04\xfb\x03\xf7\x44\xe8\xcd\xab\xda\xd5\x1e\x84\x31\x05\xe5\x06\x0b" +"\x16\xab\x1d\x0e\xc8\xf7\xb5\x05\xfb\x2a\x06\x4e\xfb\xb5\x05\x87\x79\x89\x78\x0b\x23\x1d\x2c\x1d\xf7\x2f\x22\x1d\xfb\x20\x24\x1d" +"\xf7\x20\x06\x0b\x15\x73\xfb\x04\x05\xce\x06\x85\x5f\x68\x66\x5e\x83\x82\x5d\x18\xd6\x91\xcf\xce\x95\xd9\x9f\xeb\x18\x0e\x1b\x5c" +"\x70\xa0\xaf\x1f\x93\x61\x07\x86\x7a\x8a\x81\x7e\x5c\x1d\x15\xab\x1d\x0b\x15\x69\x7d\x7a\xb3\x1d\x0b\xf8\xb0\x23\x1d\x2c\x1d\x0b" +"\x70\xfb\x11\x05\xdc\x06\x82\x59\x6b\x6e\x51\x81\x81\x5d\x18\xe4\x92\xcb\xc4\x99\xe2\xa2\xf7\x01\x18\x0b\x06\xcb\xb2\x1d\x0b\x06" +"\x6e\xf7\x50\x05\xfb\x1d\x06\xb2\xfb\x83\xfb\x44\xfb\xc1\x05\xf7\x29\x06\xf7\x20\xf7\x83\x05\x0b\xf8\xd1\x15\x4d\xfb\xb5\x05\xe9" +"\x06\xe5\xf8\x3d\x05\x4c\x06\x59\x73\x59\x72\x3d\x1b\x7e\x4e\x05\x0b\x79\xa8\x76\x1e\x4b\xc6\x1d\x67\xa1\x1e\x0b\xf7\xe3\x15\xfb" +"\x1c\xf7\x26\x73\xfb\x06\xdd\x32\xfb\x0c\x32\x72\xfb\x09\xf7\x5b\xf7\x28\x05\x0b\xf7\x63\xb6\x1d\xfb\xdf\x05\xf7\x2a\x06\x40\xf8" +"\x1c\xf7\x4f\xe4\x1d\x0b\x7b\x74\x1b\x80\x88\x8c\x93\x78\x1f\x59\xa0\x05\x9b\x67\x83\x8d\x71\x1b\x54\x60\x61\x3f\x0b\xf9\x89\x15" +"\xfb\x20\xfb\x27\x05\xd8\x06\xf2\xec\xc8\x2a\x05\xd8\x06\x44\xf7\x27\x05\x0b\xf7\xdb\x05\xfb\x20\x06\x3b\xfc\x0c\x05\x87\x78\x89" +"\x79\x79\x1a\x3b\xc5\x57\xe3\xd5\x0b\x15\xfb\x20\xfb\x27\x05\xd8\x06\xf2\xec\xc7\x2a\x05\xd9\x06\x44\xf7\x27\x05\x0e\x05\x8f\x9e" +"\x8d\x9d\x9d\x1a\xdb\x51\xbf\x32\x41\x55\x70\x4b\x55\x1e\x9d\xdd\x05\x0b\x06\xe8\xbf\x99\xb2\xbd\xd0\x1d\x0b\x1f\xc1\x06\xad\x9c" +"\x9b\x9a\x9d\x1b\x93\x9e\x85\x82\x9c\x1f\xbd\x72\x05\x85\x98\x0b\xa3\xc4\xc1\x1f\xc1\xc4\xad\xe0\xd8\x1a\xbf\x74\xba\x62\xaa\x1e" +"\xa7\x67\x62\x96\x0b\x05\xfb\x20\x06\x30\xfc\x3f\x05\xfb\x41\x06\xe6\xf8\x3f\x05\xfb\x20\x06\x0e\xbf\x1d\x81\x0b\x59\x15\x9e\x99" +"\x7e\x79\x72\x72\x73\x70\x77\x7d\x99\x9d\xa4\xa5\xa2\xa6\x1f\x0b\x05\xfb\x20\x06\x61\xfb\x5c\x05\xfb\x58\x06\xb6\xf7\x5c\x05\xfb" +"\x20\x06\x0b\x15\x60\x7b\x68\x75\x58\x1b\x5c\x70\xa0\xaf\x1f\x93\x60\x07\x87\x7a\x8a\x0b\x1e\x8f\x61\x8d\x75\x7f\x1a\x79\x85\x81" +"\x7f\x85\x89\x8c\x96\x80\x1e\x0b\xaa\xa2\x9d\x9f\xa1\x08\xa5\xaa\x99\xaf\xb1\x1a\xcd\x5a\xb2\x38\x27\x0b\xf7\x8d\xcd\x1d\x68\x5f" +"\x82\x81\x5d\x18\xd6\x91\xcf\xce\x95\xd9\xa0\xeb\x18\x0e\x06\x6a\xf7\xa5\x05\xfb\x24\x06\xb7\xfb\xe5\xfb\x86\xfc\x1c\x05\x0b\xbc" +"\x6f\xe2\xa7\xa0\x8d\x92\xaa\x1e\x96\xbf\x05\x83\x72\x76\x88\x0b\x6c\x6a\x5b\x4f\x1a\x49\xbd\x62\xda\xef\xdb\xd5\xe7\xaf\x7d\xa1" +"\x0b\x15\x97\xb9\x91\xb3\xb1\x1a\xb9\x7a\xbb\x6f\xaf\x1e\xb8\x67\x0b\x95\xa3\x97\x8e\x9c\x1b\xa5\x9d\x7e\x77\x72\x6e\x78\x65\x6e" +"\x0b\x9b\xa6\xae\x1f\xbb\xb2\xa9\xc6\xc4\x1a\xda\x48\xca\x37\x1e\x0b\xcf\xa1\xb7\xc0\x1e\xb3\xac\xa0\xac\x9b\xc3\x08\xfb\x20\x06" +"\x0b\xf8\xf2\xf7\xb8\x15\xfc\x8c\x31\x1d\xf8\x8c\x06\x0b\xfb\x1a\x06\x44\x6c\x6a\x70\x55\x1b\x4f\x6e\xac\xd1\xc1\x98\x0b\x15\x25" +"\x06\x75\x27\x95\x28\x05\xb2\x06\xc0\xee\x05\x0e\x22\x1d\xfb\x20\x28\x1d\xf7\x20\x06\x0b\xf8\x1c\x15\xfb\xb8\x24\x1d\xf7\x3a\x06" +"\x7e\x0b\x1f\xcb\xbe\xb1\xd9\xdc\x1a\xf7\x0a\x3f\xd2\xfb\x14\x1e\x0b\xab\xa2\xac\xb8\x1a\xc1\x5a\xb1\x45\x34\x42\x4d\x40\x71\x0b" +"\x15\xfb\x20\x28\x1d\xf7\x20\x06\x0e\x06\x30\xfc\x3f\x05\xf7\x20\x06\xf7\x07\xf8\xb0\x05\x0b\x16\xeb\x06\xd5\x8c\xd4\xc7\x9a\xd3" +"\xc9\xf7\xba\x18\x0b\x1f\x4c\xfb\xbb\x20\x1d\xd1\xf7\xdb\x05\x8e\x0b\xfb\xcd\x20\x1d\xd8\xf7\xfe\x05\x8f\x9e\x8d\x0b\x15\xf7\x2a" +"\x06\xaa\xf7\x26\x05\xfb\x2a\x06\x0e\x05\xfb\x46\x06\x72\xfb\x08\x05\xf7\x47\x06\x5b\x0b\x3b\x1d\xfb\x20\x06\x63\xfb\x50\x05\x0b" +"\x1e\x87\xb5\x89\xa1\x97\x1a\x9d\x91\x95\x97\x91\x0b\xed\x1d\xd1\x06\x0b\x1f\xc6\xa7\xb0\xa5\xc2\x1b\x0b\xf7\x2c\x15\x65\x77\x5e" +"\x72\x5a\x1b\x52\x64\x0b\x06\xd3\xf7\x41\x05\x21\x06\x44\xfb\x41\x05\x0b\x86\x9b\x1b\xac\xad\x9a\xa5\xa5\x1f\x9e\x9f\x0b\x8c\x94" +"\x78\x1f\x59\xa0\x05\x99\x6b\x7d\x8e\x0b\x15\xfb\x1e\x06\x6f\xfb\x16\x98\xfb\x15\x05\x0b\x15\xfb\x03\x06\x72\xfb\x0c\x05\xf7\x02" +"\x06\x0b\x1b\x73\x7d\x94\x9b\x90\x8d\x98\x8e\x9b\x1f\x0b\xf7\xe5\x05\xfb\x34\x06\xfb\x29\xfb\xa5\x05\x0b\x55\x57\x52\x62\xa9\x6d" +"\xb5\xc5\xc1\xbf\xc4\x0b\xf7\xa2\x15\xf7\xdc\xf8\x5f\x05\xfb\x3b\x06\x0b\xb5\x62\xcb\xda\xcf\xc8\xdd\x99\x1e\x0e\x15\xfb\xc0\x06" +"\x7a\x3b\x05\xf7\xc1\x06\x0b\x15\xc1\xad\x5f\x45\xfb\x12\x41\xfb\x00\x0b\x15\xfb\x13\x06\x26\xfb\x27\x05\xd1\x06\x0b\x15\xfc\xec" +"\x06\x7c\x46\x05\xf8\xec\x06\x0b\x9c\xa1\xa1\xaf\xcc\xf7\xfa\xf9\x12\x18\x0b\xfa\x3c\x15\xfb\x13\x06\x26\xfb\x2a\x05\x0b\x01\x00" +"\x01\xe3\x01\x05\x00\x01\x0a\x02\x01\x40\x03\x01\x87\xff\x02\x87\xa0\x02\x8e\x02\x00\x01\x00\x02\x00\x03\x00\x0a\x00\x19\x00\x6c" +"\x01\x12\x01\x83\x02\x0a\x02\x1b\x02\x4d\x02\x84\x02\xae\x02\xc4\x02\xe4\x02\xe8\x02\xef\x03\x01\x03\x59\x03\x76\x03\xc8\x04\x46" +"\x04\x79\x04\xd0\x05\x35\x05\x62\x05\xd7\x06\x3c\x06\x4b\x06\x73\x06\x91\x06\xaa\x06\xc6\x07\x25\x07\xf8\x07\xfc\x07\xff\x08\x03" +"\x08\x07\x08\x0b\x08\x22\x08\x27\x08\x2a\x08\x2d\x08\x31\x08\x34\x08\x38\x08\x3c\x08\x40\x08\x44\x08\x47\x08\xac\x08\xb0\x08\xb4" +"\x08\xb8\x08\xbc\x08\xd8\x08\xdd\x08\xe0\x08\xe4\x08\xe8\x09\x08\x09\x18\x09\x38\x09\x56\x09\x5c\x09\x61\x09\x65\x09\xab\x09\xaf" +"\x09\xb5\x09\xb9\x09\xc2\x09\xc6\x09\xca\x09\xce\x09\xdd\x09\xe1\x09\xe4\x0a\x42\x0a\x46\x0a\x4a\x0a\x75\x0a\xbe\x0a\xc3\x0a\xde" +"\x0a\xe3\x0a\xe7\x0b\x03\x0b\x08\x0b\x39\x0b\x3d\x0b\x42\x0b\xb9\x0b\xca\x0c\x41\x0c\x80\x0c\x9a\x0d\x0c\x0d\x91\x0d\x96\x0d\xe3" +"\x0e\x44\x0e\xf7\x0f\x5e\x0f\x6d\x0f\x90\x0f\x9e\x0f\xa7\x0f\xae\x0f\xba\x0f\xc7\x0f\xd7\x10\x06\x10\x3b\x10\x3d\x10\x73\x10\x8c" +"\x10\x9c\x10\xa6\x10\xb1\x10\xd0\x10\xe5\x11\x60\x11\xb1\x11\xb8\x11\xbf\x11\xc7\x11\xcf\x11\xd7\x11\xdf\x11\xe7\x11\xef\x11\xf8" +"\x12\x12\x12\x18\x12\x4f\x12\x57\x12\x5b\x12\x60\x12\xf2\x13\x1c\x13\x21\x13\x85\x13\xc7\x13\xcc\x13\xcf\x13\xf0\x13\xf4\x14\x76" +"\x14\xe1\x14\xfe\x15\x17\x15\x70\x15\xb7\x15\xba\x15\xfc\x16\x20\x16\x4b\x16\x80\x16\xae\x16\xca\x16\xf7\x17\x1a\x17\x5c\x17\x97" +"\x18\x25\x18\x29\x18\xb5\x18\xdf\x18\xe6\x19\x52\x19\x5b\x19\x63\x19\x6b\x19\x73\x19\x7c\x19\xa5\x1a\x0e\x1a\x17\x1a\x20\x1a\x29" +"\x1a\x32\x1a\x38\x1a\x3f\x1a\x46\x1a\x4d\x1a\x87\x1a\xae\x1a\xba\x1a\xc6\x1a\xd1\x1a\xed\x1a\xff\x1b\x0b\x1b\x17\x1b\x20\x1b\x2d" +"\x1b\x34\x1b\x3b\x1b\x56\x1b\x60\x1b\x6c\x1b\x76\x1b\x80\x1b\x89\x1b\x92\x1b\xf4\x1b\xff\x1c\x09\x1c\x1b\x1c\x1e\x1c\x25\x1c\x2c" +"\x1c\x32\x1c\x38\x1c\x41\x1c\x75\x1c\x7e\x1c\xb3\x1c\xc1\x1d\x02\x1d\x14\x1d\x29\x1d\x33\x1d\x45\x1d\x51\x1d\x59\x1d\x62\x1d\x6c" +"\x1d\xad\x1d\xb1\x1d\xba\x1d\xc4\x1d\xeb\x1e\x8f\x1e\xf2\x1f\x26\x1f\x30\x1f\x3c\x1f\x40\x1f\x49\x1f\x52\x1f\x9b\x1f\xa8\x1f\xab" +"\x1f\xbc\x1f\xc4\x1f\xcd\x20\x38\x20\x3b\x20\x49\x20\x4c\x20\x65\x20\x6e\x20\x77\x20\x80\x20\x8a\x20\xe0\x21\x05\x21\x09\x21\x25" +"\x21\x28\x21\x3c\x21\xb0\x21\xc2\x21\xd0\x21\xda\x21\xed\x22\x63\x22\xa6\x22\xbf\x23\x00\x23\x0e\x23\x16\x23\x25\x23\x4f\x23\x52" +"\x23\x59\x23\x64\x23\x74\x23\x7a\x23\x7d\x23\x84\x23\x8d\x23\xa6\x23\xaf\x23\xb7\x23\xc9\x23\xcd\x23\xd6\x23\xe3\x23\xeb\x23\xef" +"\x24\x03\x24\x14\x24\x1e\x24\x2a\x24\x2e\x24\x3a\x24\x43\x24\xb7\x24\xcb\x25\x32\x25\x3b\x25\x43\x25\x4c\x25\x4f\x25\x57\x25\xc7" +"\x25\xd0\x25\xdd\x26\x07\x26\x0b\x26\x32\x26\x3b\x26\x7e\x26\xd1\x26\xda\x26\xe3\x26\xeb\x27\x5c\x27\x60\x27\x68\x27\x88\x27\x92" +"\x27\xa5\x27\xae\x27\xb7\x27\xbf\x27\xc8\x27\xe9\x27\xf1\x27\xf9\x28\x01\x28\x0b\x28\x0f\x28\x2f\x28\x38\x28\x3c\x28\x6a\x28\xa3" +"\x28\xfa\x29\x06\x29\x47\x29\x4b\x29\x54\x29\x7a\x29\x9a\x29\x9e\x29\xda\x29\xe6\x2a\x0f\x2a\x35\x2a\x42\x2a\x4b\x2a\x62\x2a\xa1" +"\x2b\x00\x2b\x18\x2b\x1c\x2b\x7c\x2b\x83\x2b\x9a\x2b\xab\x2b\xc5\x2b\xee\x2c\x2a\x2c\x3a\x2c\x3f\x2c\xa0\x2c\xe4\x2d\x3d\x2d\x5a" +"\x2d\xbf\x2d\xda\x2e\x3c\x2e\xb9\x2e\xbe\x2e\xc5\x2f\x0a\x2f\x55\x2f\x88\x2f\xd4\x2f\xef\x30\x2b\x30\xc7\x31\x31\x31\x87\x31\x93" +"\x31\xd1\x31\xd5\x31\xdd\x31\xfc\x32\x16\x32\x1a\x32\x4a\x32\x71\x32\x7e\x32\xb0\x32\xbb\x32\xdd\x32\xe9\x33\x28\x33\x84\x33\x96" +"\x33\x9a\x34\x1e\x34\x4f\x34\x62\x34\x72\x34\x7f\x34\x96\x34\xbb\x34\xc8\x34\xcd\x35\x28\x35\x79\x35\xca\x35\xe8\x36\x48\x36\x63" +"\x36\xc4\x37\x38\x37\x3c\x37\x43\x37\x74\x37\xa3\x37\xce\x38\x11\x38\x41\x38\x73\x38\x8b\x38\xa3\x38\xf5\x39\x81\x3a\x05\x3a\x83" +"\x3a\xdc\x3b\x3e\x3b\x4e\x3b\x83\x3b\xb9\x3c\x57\x3c\xd4\x3c\xe1\x3d\x67\x3d\xaf\x3d\xf5\x3e\x3c\x3e\x81\x3e\x89\x3e\x9a\x3f\x12" +"\x3f\x1b\x3f\x35\x3f\x3d\x3f\x46\x3f\x77\x3f\xf5\x40\x72\x40\x82\x40\xba\x41\x17\x41\x46\x41\x4e\x41\x56\x41\x70\x41\x78\x41\xa3" +"\x41\xac\x41\xcd\x42\x29\x42\x88\x42\xf0\x43\x0a\x43\x74\x43\x78\x43\x7f\x43\x9e\x43\xb8\x43\xfa\x44\x43\x44\x65\x44\x76\x44\x7e" +"\x44\x9f\x45\x27\x45\x52\x45\xa8\x45\xae\x45\xf4\x46\x19\x46\x21\x46\x35\x46\x44\x46\xbc\x46\xf8\x47\x0f\x47\x43\x47\x88\x48\x15" +"\x48\x51\x48\x54\x48\x5b\x48\x62\x48\x6a\x48\x9f\x48\xae\x48\xd2\x48\xe6\x48\xf4\x48\xfa\x49\x16\x49\x20\x49\x27\x49\x34\x49\x5f" +"\x4a\x01\x4a\x0b\x4a\xa1\x4a\xa8\x4a\xfa\x4b\x14\x4b\x1d\x4b\x48\x4b\x55\x4b\x69\x4b\xd8\x4c\x12\x4c\x2e\x4c\x37\x4c\x4b\x4c\x5b" +"\x4c\x60\x4c\x68\x4c\x6c\x4c\x75\x4c\x83\x4c\x8b\x4c\xfd\x4d\xeb\x4e\x5d\x4e\x7a\x4e\xa3\x4e\xc6\x4e\xfd\x4f\x5e\x4f\x87\x4f\x91" +"\x4f\xb0\x4f\xcd\x4f\xf5\x50\x0d\x50\x5f\x50\x68\x50\xd6\x50\xf0\x51\x58\x51\x6c\x51\xc1\x52\x51\x52\xac\x52\xe1\x53\x82\x53\x98" +"\x53\xd5\x53\xea\x54\x32\x54\x9e\x54\xa6\x54\xaf\x54\xb6\x54\xcc\x54\xd8\x54\xd9\x54\xdd\x54\xf7\x55\x25\x55\x2d\x55\x2f\x55\x4a" +"\x55\x51\x55\x8c\x55\xf7\x56\x00\x56\x09\x56\x0c\x56\x16\x56\x48\x56\x74\x56\xb3\x56\xea\x57\x1a\x57\x60\x57\x8b\x57\xb4\x57\xd7" +"\x58\x10\x58\x2b\x58\x50\x58\x78\x58\x8d\x58\xe5\x59\x23\x59\x27\x59\x3e\x59\x75\x59\xa8\x59\xba\x59\xf6\x5a\x2c\x5a\x72\x5a\xc5" +"\x5b\x1e\x5b\x52\x5b\x83\x5b\x88\x5b\xa5\x5b\xc1\x5c\x22\x5c\x2b\x5c\x3b\x5c\x67\x5c\x94\x5c\xcd\x5c\xd9\x5c\xe1\x5d\xa3\x5e\x05" +"\x5e\x0a\x5e\x0c\x5e\x28\x5e\x45\x5e\xb5\x5e\xcc\x5f\x11\x5f\x3a\x5f\x69\x5f\x6d\x5f\x76\x5f\x7f\x5f\x94\x5f\xa7\x5f\xb0\x5f\xb9" +"\x5f\xc1\x5f\xd1\x5f\xdb\x60\x6b\x60\x74\x60\x7e\x60\x87\x60\x90\x60\xf7\x0e\x0e\xfb\xc5\xf8\x35\x81\x0a\x0e\xfb\x38\xf7\xeb\xf9" +"\x6d\xa3\x0a\xf7\x9c\xf7\x16\xa3\x0a\x0e\x39\xf7\x1e\x6b\x15\xdf\xf7\x60\x05\xf1\x06\x38\xfb\x60\x05\xf4\x06\xdf\xf7\x60\x05\xf7" +"\x0b\x06\xa0\xef\x05\x28\x06\xc9\xf7\x2c\x05\xf5\x06\xa0\xef\x05\x34\xde\x1d\x24\xde\x1d\xfb\x0a\x06\x75\x27\x05\xee\x06\x4d\xfb" +"\x2c\x05\x2a\x06\x76\x27\x05\xd8\x06\x38\xfb\x60\x05\xf7\x79\xf7\xc4\x15\xca\xf7\x2c\x05\xf1\x06\x4d\xfb\x2c\x05\x0e\x39\xf9\x03" +"\xf8\x86\x15\x8f\xa0\x8c\x97\x9b\x1a\xbe\x79\xb6\x6b\xa7\x1e\x70\xa2\x69\x97\x53\x90\x97\xc1\x18\x47\x06\x80\x55\x57\x86\x68\x81" +"\x65\x77\x19\x3d\x63\x5a\x3d\x3a\x1a\x30\xc1\x52\xf7\x03\x6f\x1e\x5d\xfb\x69\x05\x5f\x94\x76\xa7\xbe\x1a\x96\x8b\x93\x8c\x99\x1e" +"\xfb\x16\x06\x85\x73\x89\x7b\x78\x1a\x2a\xcb\x4f\xf7\x08\x7f\x1e\x74\x22\x05\xcf\x06\xa1\xf4\xc3\x91\xb7\x98\xb2\xa0\x19\xd7\xb5" +"\xbf\xe3\xe3\x1a\xdc\x56\xbe\xfb\x0f\xb1\x1e\xb6\xf7\x5d\x05\xaf\x85\xa1\x71\x65\x1a\x7f\x8a\x82\x89\x78\x1e\xfb\x35\x44\x15\x61" +"\x9b\x77\xa4\xac\x1a\xad\x9e\xae\xa7\x9e\x1e\x99\x95\x99\x8f\xa4\x90\x08\x8a\xfb\xda\x15\xb2\x7b\x9f\x6f\x63\x1a\x53\x66\x62\x4b" +"\x7c\x1e\x0e\xf7\x8f\xf9\x88\xf9\x59\x15\xfc\xba\xfd\x6d\x05\xd7\x06\xf8\xbb\xf9\x6d\x05\xfc\x75\x83\x15\xfb\x07\xfb\x00\x21\xfb" +"\x05\x38\xcb\x4d\xe2\xf7\x0a\xf6\xf4\xf7\x07\xdf\x4b\xc7\x32\x1f\x76\x29\x15\xb6\xaa\x6f\x64\x56\x5b\x5b\x54\x61\x6c\xa7\xb1\xc1" +"\xbc\xbb\xc0\x1f\xf8\x37\xfb\x97\x15\xfb\x07\xfb\x00\x21\xfb\x05\x38\xcb\x4d\xe2\xf7\x0a\xf6\xf4\xf7\x07\xdf\x4b\xc7\x32\x1f\x76" +"\x29\x15\xb6\xaa\x6f\x64\x56\x5b\x5b\x54\x61\x6c\xa7\xb1\xc1\xbc\xbb\xc0\x1f\x0e\xdf\xf8\xf3\xf8\x09\x15\x80\x52\x7c\x6d\x69\x6c" +"\x39\xf7\x1d\x18\xc1\xab\xa9\xa1\xa1\xa4\x08\xac\xb0\x9f\xbe\xba\x1a\xd1\x4d\xba\x30\xfb\x0c\x22\x2e\x20\x6c\x9c\x64\xaf\x57\x1e" +"\x59\x74\x74\x7f\x6c\x75\x08\x46\x5c\x66\x49\x40\x1a\xfb\x05\xd4\x49\xf7\x11\xd8\xb5\x9b\xce\xe8\x1e\xb0\x4f\x05\xf7\x34\x06\x2d" +"\xf7\x34\xc6\xc0\xbb\xe2\x96\xd4\x19\xfc\x09\x55\x15\xee\xfb\x3b\x05\x5d\x48\x6d\x7e\x69\x1b\x5a\x63\xb5\xbf\xb9\x9e\xa8\xbd\xa7" +"\x1f\xf7\x10\xf7\x48\x15\x6b\xc2\x87\x94\x9d\x1a\xb0\xa6\xa5\xb1\xab\x9e\x7c\x71\x62\x6f\x67\x57\x70\x1e\x0e\xf7\x70\xf9\x6d\x86" +"\x0a\xe9\x92\xc9\xc3\x97\xe3\xa2\xf7\x01\x18\x0e\xfb\xc5\xf7\xfa\xf9\x6d\x15\xfb\x53\xfb\x70\x38\xfb\x4c\xfb\x5f\x1a\x29\xa4\x21" +"\xbf\xfb\x0a\x1e\xef\x06\x5f\xf7\x25\x7d\xd6\xe7\x1a\xf7\x19\xb0\xf7\x18\xd6\xf7\x1c\x1e\xae\xcb\xb0\xc2\xd2\xec\x08\x0e\xfb\xc5" +"\xda\xfb\x5c\x15\xc4\xcd\xc1\xd1\xaf\xc2\x08\xe0\xf7\x18\xb8\xf7\x25\xf7\x1e\x1a\xee\x72\xf1\x54\xf7\x0e\x1e\x27\x06\xba\xfb\x28" +"\x99\x44\x2d\x1a\xfb\x18\x66\xfb\x18\x3f\xfb\x1c\x1e\x67\x4b\x6b\x5b\x3e\x23\x08\x0e\xfb\x8d\xf7\x8a\xf8\xb4\x15\x34\x2d\xbc\x60" +"\xe2\xe9\xba\x2d\xce\xb6\x5c\xe9\xf7\x08\xae\x84\xd1\xfb\x09\x67\xa4\xf7\x08\x05\x43\x06\x73\xfb\x08\x26\xaf\x66\x46\x05\x0e\x55" +"\xf8\xe8\xf7\xb8\x91\x0a\x64\xfb\x4a\x05\xf7\x0b\x06\xb2\xf7\x4a\x05\xf7\x4b\x06\x0e\xea\xf7\x26\x15\x6c\xfb\x26\x05\xe1\x06\x7e" +"\x47\x67\x64\x4d\x80\x7f\x53\x18\xf7\x02\x9b\xc7\xc4\x9e\xf7\x02\xa8\xf7\x1d\x18\x0e\xfb\xc5\xa6\x0a\xf7\x89\xf7\x26\x27\x1d\x0e" +"\xf7\xfc\xf9\x5e\x15\xfb\xfd\xfd\x6c\x05\xce\x06\xf7\xfd\xf9\x6c\x05\x0e\x39\xf8\x39\xf9\x68\x15\xfb\x05\x2f\x4a\xfb\x0a\x54\x1f" +"\x61\x2f\x65\xfb\x3f\x25\x1a\xfb\x10\xd3\x40\xf7\x0a\xf7\x08\xe7\xcb\xf7\x0b\xc2\x1e\xb5\xe6\xb1\xf7\x41\xf1\x1a\xf7\x10\x43\xd5" +"\xfb\x0d\x1e\x70\xfb\x04\x15\xba\xa9\x6a\x58\x4d\x74\xfb\x1a\x70\x2c\x1f\x28\x6f\x69\x64\x50\x1b\x5d\x6d\xac\xbe\xec\xbc\xf7\x72" +"\xac\xc0\x1f\xb1\xa3\xa8\x9e\xae\x1b\x0e\x39\xf7\xea\xf8\x7d\x15\x23\xfc\x7d\x20\x1d\xf7\x2b\xf9\x59\x05\x2e\x06\x37\x63\x39\x60" +"\xfb\x0e\x1b\x77\x2e\x05\x0e\x39\xf8\xae\xf7\x11\x15\xfb\xc0\x06\xa4\xb0\xa9\xa1\xf7\x0a\xd6\xde\xbf\xb0\xa8\xab\xb1\x08\xb5\xbd" +"\xa2\xc8\xca\x1a\xf7\x00\x3e\xcb\xfb\x16\xfb\x30\x26\x2d\xfb\x3c\x71\x1e\xf7\x1a\x06\xec\x98\xb8\xc0\xd1\x1b\xc0\xab\x6d\x59\x5c" +"\x77\x5d\x69\x68\x1f\x6c\x6a\x6b\x75\xfb\x07\x43\xfb\x1f\x38\x5a\x4d\x68\xfb\x18\x08\xf8\x76\x06\x0e\x39\xf7\xb0\xf7\xd1\x15\xc1" +"\x8e\x8b\x84\xa3\x1f\xaf\x80\xa0\x6f\x63\x1a\x71\x83\x70\x7d\x75\x1e\x65\x72\x6a\x78\x61\x1b\x52\x6b\xa7\xbc\x8a\x1f\xa1\x07\x8a" +"\x95\x05\xfb\x1c\x06\x87\x75\x89\x7b\x78\x1a\xfb\x02\xd6\x4b\xf7\x16\xed\xda\xac\xc9\xbe\x1e\xb3\xbd\xa4\xd2\xcb\x1a\xc1\x75\xb2" +"\x59\xa9\x1e\xdb\xbc\xb3\xcc\xda\x1a\xeb\x42\xc2\xfb\x13\x35\x46\x71\x58\x5d\x1e\x66\x63\x79\x60\x7c\x3d\x08\xf7\x15\x06\x94\xb2" +"\x91\x9e\x95\x9c\x08\xac\x9e\xac\x9d\xb3\x1b\xb9\xaa\x6f\x61\x3b\x50\x58\x30\x1f\x80\x06\x0e\x39\xf8\xd8\xf7\xa5\x15\x41\x06\xe8" +"\xf8\x48\x05\xfb\x39\x06\xfb\xf4\xfc\x46\x72\xfb\x0a\x05\xf7\xb1\x06\x69\xfb\x31\x20\x1d\xad\xf7\x31\x05\xd4\x06\xfb\x51\xf7\x08" +"\x15\xfb\x4c\x06\xf7\x8d\xf7\xc4\x05\x0e\x39\xf9\x15\xf9\x59\x15\xfc\x13\x06\xfb\x26\xfc\x1f\x05\xf7\x12\x06\xad\xa2\xae\x9e\xb6" +"\x1b\xc5\xab\x6b\x50\x26\x4f\x3f\x3a\x55\x69\xa4\xb1\x91\x8c\x93\x8c\x94\x1f\xfb\x1e\x06\x87\x77\x8a\x81\x7d\x1a\x28\xda\x4a\xf7" +"\x0d\xf0\xe3\xb7\xdb\xc6\x1e\xb4\xc4\xa3\xd3\xd1\x1a\xf7\x03\x48\xcf\xfb\x00\x5a\x66\x7f\x6c\x5c\x1e\xc1\xf7\x28\x05\xf7\xbc\x06" +"\x0e\x39\xf9\x04\xf8\xb8\x15\x8c\x94\x8b\x94\x90\x1a\xea\x47\xc5\xfb\x06\x20\x35\x55\x21\x4a\x1e\x56\x34\x5c\xfb\x4c\xfb\x0e\x1a" +"\xfb\x0b\xd9\x40\xf7\x0d\xe2\xda\xb3\xd2\xc0\x1e\xb9\xc8\xa7\xda\xd3\x1a\xf3\x4c\xca\x22\x56\x5d\x7a\x64\x59\x1e\x9c\xc9\x8d\x92" +"\x98\xab\x08\xd1\xa7\xb0\xa9\xc4\x1b\xbb\xa2\x79\x5d\x94\x1f\xfb\x22\xfb\x55\x15\xbd\xab\x69\x57\x2e\x4f\x3e\x42\x58\x68\xb0\xbf" +"\xe5\xca\xd8\xd5\x1f\x0e\x39\xf9\x3b\xf9\x59\x15\xfc\x89\x24\x1d\xf7\xf5\x06\xfb\x57\xfb\x50\x29\xfb\x2e\x3b\xfb\x86\x08\xf7\x22" +"\x06\xc0\xf7\x53\xd9\xf7\x1d\xf7\x27\xf7\x37\xc9\xcb\xae\xaf\x93\x93\x08\x0e\x39\xf8\x7f\xf8\x16\x15\xad\x9f\x9e\x98\x9b\x9c\x08" +"\xb1\xb0\xa1\xbc\xbb\x1a\xe6\x3a\xca\xfb\x09\xfb\x25\xfb\x0d\x23\xfb\x11\x5f\x9d\x6e\xba\x67\x1e\x59\x72\x70\x78\x72\x6e\x08\x66" +"\x5f\x75\x50\x54\x1a\xfb\x01\xde\x46\xf7\x19\xde\xd7\xa8\xbf\xc1\x1e\xc0\xbf\xac\xd6\xcf\x1a\xc7\x74\xaf\x4e\xb0\x1e\x2e\xf7\x76" +"\x15\xc2\xb0\x6e\x60\x4b\x53\x58\x44\x57\x6a\xa8\xb9\xca\xbf\xbc\xcf\x1f\x53\xfb\xae\x15\xc2\xae\x6b\x58\x35\x53\x4d\x3c\x54\x64" +"\xad\xba\xdf\xc8\xcd\xd9\x1f\x0e\x39\xd3\xf7\x39\x15\x88\x7c\x8a\x83\x81\x1a\x2f\xd4\x4c\xf6\xf7\x02\xe4\xc1\xf3\xc7\x1e\xc9\xf5" +"\xb5\xf7\x31\xf7\x0d\x1a\xf7\x11\x3d\xdb\xfb\x0c\xfb\x38\xfb\x15\xfb\x21\xfb\x48\xfb\x01\xcb\x49\xf4\xc3\xae\x9a\xbb\xc3\x1e\x80" +"\x5b\x80\x6a\x7f\x6f\x08\x56\x73\x60\x6d\x59\x1b\x5c\x6b\xa1\xab\x8e\x8b\x8f\x8c\x90\x1f\xf7\x4a\xf8\x53\x15\xc3\xaf\x67\x52\x2a" +"\x4b\x3d\x3b\x5a\x6c\xad\xc0\xf0\xc5\xdb\xd5\x1f\x0e\xfb\xc5\xf7\xba\xf7\x26\x27\x1d\xf7\x03\xf8\x9c\x27\x1d\x0e\xfb\xc5\xf7\x24" +"\xf7\x26\x15\x6c\xfb\x26\x05\xe1\x06\x7e\x47\x67\x64\x4d\x80\x7f\x53\x18\xf7\x02\x9b\xc7\xc4\x9e\xf7\x02\xa8\xf7\x1d\x18\xdb\xf8" +"\x0a\x27\x1d\x0e\x55\xf9\x0a\xf8\x6e\x15\xfc\xa3\xfb\x49\x71\xfb\x0d\xf8\x56\xfb\x4a\xa7\xf7\x17\xfb\xb8\xf7\x03\xf7\xe8\xf7\x05" +"\x05\x0e\x55\xf9\x02\xf8\x30\x15\xfc\x79\x31\x1d\xf8\x79\x06\x71\xfb\x0c\x15\xfc\x79\x31\x1d\xf8\x79\x06\x0e\x55\xb1\x81\x15\xf8" +"\xa3\xf7\x49\xa5\xf7\x0d\xfc\x56\xf7\x4a\x6f\xfb\x17\xf7\xb8\xfb\x03\xfb\xe8\xfb\x05\x05\x0e\x70\xf8\x32\xf7\x5d\x15\x99\xcd\x94" +"\x96\xcf\xb5\xc6\xaf\xb0\xa9\xa0\xa6\x08\xa9\xb2\x9f\xc7\xc1\x1a\xc0\x74\xbd\x63\xaa\x1e\xa8\x68\x56\x9a\x4b\x1b\x35\x45\x6d\x52" +"\x56\x1f\x64\x60\x75\x5a\x78\x37\x08\xf7\x1c\x06\xe3\x9c\xbc\xbe\xcf\x1b\xc1\xb0\x67\x58\x76\x85\x77\x81\x78\x1f\x7c\x71\x81\x82" +"\x53\x64\x2d\x49\x64\x53\x84\x3f\x08\xf7\x12\x54\x15\x2a\x0a\x6c\xfb\x26\x05\x23\x0a\x0e\xf7\xe5\xf9\x82\xf8\x90\x15\x70\x50\x05" +"\xbd\x77\x70\x9e\x5a\x1b\x3b\x34\x5c\x3a\x46\x1f\x53\x49\x69\x40\x4f\x1a\x3b\xc3\x53\xdc\xc2\xc1\xa4\xbb\xbd\x1e\x5d\x9a\xb0\x73" +"\xc3\x1b\xdd\xe1\xbd\xe2\xd2\x1f\xc5\xd2\xa9\xdf\xe6\x1a\xcd\x75\xc6\x5e\xc1\x1e\xe0\x46\x29\xb5\xfb\x14\x1b\xfb\x38\xfb\x31\x47" +"\xfb\x0c\xfb\x06\x1f\x25\x20\x4f\xfb\x1f\xfb\x16\x1a\x36\xad\x3a\xc7\x52\x1e\x4a\xd0\xe6\x6d\xf7\x12\x1b\xeb\xd5\x99\xaa\xd8\x1f" +"\x7f\xda\x05\x6c\x2c\x55\x81\x4c\x1b\xfb\x46\xfb\x11\xf2\xf7\x27\xe5\xaf\xf2\xca\xe1\x1f\xf7\x0d\xe3\xf7\x16\xcd\xf7\x2c\x1b\xf3" +"\xd2\x6f\x4c\xc6\x1f\xb5\x5e\xa0\x5a\x57\x1a\x4d\x72\x45\x5f\x53\x1e\x51\x5e\x50\x63\x61\x1b\x73\x7c\x98\xa1\x9a\x8d\x91\x9c\xac" +"\x1f\xf7\x1c\xf7\xac\x05\xfb\x7e\x4d\x15\xb3\x89\xa4\x6f\x63\x1a\x62\x73\x51\x64\x59\x1e\x51\x5f\x58\x6a\x5e\x1b\x63\x70\xab\xba" +"\xf2\xf7\x0b\xf7\x19\xe1\x86\x1f\x0e\xdf\x24\x0a\x0e\xdf\x78\x1d\xdf\x7e\x1d\x0e\xdf\x73\x0a\x0e\xa8\x26\x0a\x0e\x70\xf7\xb7\xf7" +"\xce\x15\xf7\xd3\x21\x1d\xfb\xd4\x40\x0a\xf7\xfe\x21\x1d\xfc\x94\x35\x0a\x0e\xf7\x20\x77\x1d\x0e\xdf\x8e\x1d\x25\x0a\x0e\x39\x70" +"\x0a\x0e\xdf\x79\x0a\x70\x37\x1d\x0e\xf7\x57\x75\x0a\xdf\x30\x0a\x0e\xf7\x20\x7a\x1d\xa8\x6e\x0a\xf7\x20\xf9\x42\xf2\x15\xe0\xdd" +"\xc7\xf7\x25\xf7\x0f\x1a\xf7\x48\xfb\x02\xf7\x00\xfb\x4b\xfb\x10\x28\x5c\x27\x37\x1e\x3f\x31\x5d\xfb\x12\xfb\x08\x1a\xfb\x43\xf7" +"\x03\xfb\x02\xf7\x45\xd3\xc5\x9a\xae\xc8\x1e\xd0\x3a\xe8\xdc\x05\xfb\x67\xf7\x8f\x15\x2d\x3a\xc9\x42\x05\x7f\x71\x6c\x84\x6b\x1b" +"\x28\x4e\xce\xf7\x02\xda\xa6\xe1\xb7\xc8\x1f\xd1\xbd\xca\xae\xd7\x1b\xf2\xc8\x49\xfb\x03\x39\x6b\x2b\x5d\x51\x1f\x0e\xdf\x3e\x1d" +"\x0e\xa8\x5f\x0a\x0e\x70\x46\x0a\x0e\xdf\x4f\x1d\x0e\xa8\xf8\x24\x16\xf8\x26\xf9\x6d\x05\xfb\x2b\x06\xfb\xa8\xfc\xb9\x5e\xf8\xb9" +"\x05\xfb\x2b\x06\xe9\xfd\x6d\x05\x0e\xf7\xc6\x35\x1d\x0e\xa8\x78\x0a\xa8\x2c\x0a\x0e\x70\x36\x1d\x0e\xfb\xc5\xf8\x63\x22\x1d\xfb" +"\x87\x06\xfb\x59\xfe\x35\x05\xf7\x87\x06\xa0\xef\x05\xfb\x05\x06\xf7\x2e\xf9\x6d\x05\xf7\x05\x06\x0e\xf7\x1e\xf9\x59\x15\xd3\xfd" +"\x70\x05\xd6\x06\x42\xf9\x70\x05\x0e\xfb\xc5\x72\xfb\x5c\x15\xf7\x87\x06\xf7\x59\xfa\x35\x05\xfb\x87\x06\x76\x27\x05\xf7\x05\x06" +"\xfb\x2e\xfd\x6d\x05\xfb\x05\x06\x0e\x55\xf8\xd8\xf7\xa2\x15\x3a\xf8\x3d\x05\xfb\x11\x06\xfb\x93\xfc\x3d\x05\xf7\x04\x06\xf7\x46" +"\xf7\xc0\xc5\xfb\xc0\x05\x0e\x39\xf8\xba\x3f\x57\x0a\xf7\xc2\x89\x0a\x0e\x39\x2d\x1d\x0e\x70\xf7\x6a\x22\x1d\xfb\x2f\xfd\x6d\x05" +"\x21\x0a\x97\xc2\x05\x55\xa2\xb4\x73\xcf\x1b\xf7\x2f\xf7\x22\xf7\x43\xf7\x52\xf7\x11\x46\xdd\x21\x47\x57\x72\x55\x5d\x1f\xc2\xf7" +"\x97\x05\xc2\xfb\xb8\x15\xc2\xac\x5e\x42\xfb\x0e\x40\xfb\x00\x35\x56\x68\xb8\xcf\xf7\x12\xd6\xf7\x01\xe1\x1f\x0e\x39\x79\x1d\x0e" +"\x70\xf8\x29\x83\x1d\x0e\x39\x65\x0a\x0e\xfb\xc5\xf8\x3d\xf8\xa5\x37\x0a\x0e\x70\x75\x1d\x0e\x70\x86\x1d\x0e\xf7\xd6\x84\x0a\xf8" +"\x01\xf9\x6d\x9f\x0a\x7e\x4b\x5b\x0a\x7d\x84\x48\x1d\x0e\x39\x7b\x0a\x0e\x47\x1d\x0e\xf7\x8f\xf7\x43\x29\x0a\x2c\x1d\xd0\xf7\xd8" +"\x05\xd1\x9a\xb8\xb6\xc5\x1b\xb2\xa3\x74\x68\x7f\x8a\x81\x89\x80\x1f\x41\xfb\xee\x20\x1d\xd0\xf7\xd8\x05\xd3\x9a\xb8\xb4\xca\x1b" +"\xb1\x9f\x77\x67\x7f\x89\x7c\x88\x7d\x1f\x43\xfb\xe8\x20\x1d\xd8\xf7\xfe\x05\x91\xa9\x8d\x97\x9e\x1a\xdb\x57\xb9\x31\x47\x55\x72" +"\x52\x54\x1e\xbd\x7d\x5b\xab\x4d\x1b\x49\x5d\x73\x49\x50\x1f\x9c\xdc\x05\x0e\x70\x34\x1d\x0e\x70\x36\x0a\x0e\x70\xf7\xcc\xf8\xb0" +"\x23\x1d\xfb\x35\xfd\x8a\x9b\x0a\xf7\x5c\xf7\x13\x48\xdb\x20\x48\x54\x6e\x4f\x5d\x1f\xf7\x03\x74\x15\xc1\xad\x5f\x45\xfb\x12\x41" +"\xfb\x00\x34\x57\x5f\x1d\x70\xf8\x9b\x29\x0a\x7a\x3b\x05\xc7\x77\x5f\xa8\x46\x1b\x38\x3b\x5f\x40\x55\x1f\x59\x44\x6d\x2f\x35\x1a" +"\xfb\x10\xd1\x3b\xf6\xce\xc3\xa8\xc5\xb9\x1e\x4f\xfb\xae\x20\x1d\xf7\x35\xf9\x8a\x05\xfb\xae\x24\x15\xc1\xae\x5f\x46\xfb\x13\x41" +"\xfb\x00\x33\x55\x68\xb8\xcf\xf7\x11\xd7\xf7\x02\xe1\x1f\x0e\xfb\x8d\x8d\x1d\x0e\x39\xf8\xdc\xf8\x02\x5e\x1d\x3c\x48\x76\x65\x60" +"\x1e\x60\x65\x6f\x52\x59\x9c\x1d\x84\x82\x1a\x5e\x8f\x1d\x0e\xfb\xc5\x6f\x0a\x0e\x70\x4f\x0a\x0e\x39\xf7\xf2\x16\xf7\xc1\xf8\xb0" +"\x05\xfb\x28\x06\xfb\x58\xfc\x1f\x6d\xf8\x1f\x05\xfb\x28\x06\xd5\xfc\xb0\x05\x0e\xf7\x20\x38\x0a\x0e\x39\xf8\x2f\xf7\xa6\x15\xf7" +"\x81\xf7\x9e\x05\xfb\x3c\x06\xfb\x0f\xfb\x37\x58\xf7\x37\x05\xfb\x3c\x06\xf7\x03\xfb\x9e\xfb\x7d\xfb\xa6\x05\xf7\x3c\x06\xf7\x0f" +"\xf7\x3c\xc6\xfb\x3c\x05\xf7\x3c\x06\x0e\x39\x50\x1d\x0e\xfb\x1e\x44\x1d\x0e\xfb\x8d\xf8\x6c\x22\x1d\x3f\x06\x3a\x89\x54\x59\x7a" +"\x33\x5e\xfb\x67\x18\x61\x83\x71\x76\x5f\x1b\x7f\x06\x87\x06\x77\x2f\x8f\x8a\x05\x98\x06\xad\x9f\x7d\x73\x85\x89\x7e\x88\x7c\x1f" +"\x5e\xfb\x66\x05\x88\x7e\x8a\x7e\x7d\x1a\x4f\xb2\x63\xc5\x1e\xd8\x06\xa0\xee\x05\x68\x06\x72\x7d\x94\x9b\x95\x8d\x98\x8e\x9c\x1f" +"\xb5\xf7\x57\x05\x8e\x9a\x8d\x9b\x95\x1a\xa6\x7e\xa0\x76\x94\x1e\x7f\x91\x83\x8d\x72\x8f\xd4\x93\xab\xa8\x9b\xd3\xb4\xf7\x57\x18" +"\x93\xb8\x96\x96\xb1\x8c\x08\xb0\x06\x0e\xfb\xfa\xf7\xe3\xf9\x6d\x15\x3b\x06\xfb\x5a\xfe\x35\x05\xdb\x06\x0e\xfb\x8d\xa8\xfb\x5c" +"\x15\xd8\x06\xdc\x8d\xc2\xbd\x9c\xe3\xb8\xf7\x67\x18\xb5\x93\xa5\xa0\xb7\x1b\x98\x06\x8f\x06\x9f\xe7\x87\x8c\x05\x7d\x06\x69\x77" +"\x99\xa3\x91\x8d\x98\x8e\x9a\x1f\xb8\xf7\x66\x05\x8e\x98\x8c\x98\x99\x1a\xc7\x64\xb3\x51\x1e\x3d\x06\x76\x28\x05\xaf\x06\xa4\x99" +"\x82\x7b\x81\x89\x7e\x88\x7a\x1f\x61\xfb\x57\x05\x88\x7c\x89\x7b\x81\x1a\x70\x98\x76\xa0\x82\x1e\x97\x85\x93\x89\xa4\x87\x42\x83" +"\x6b\x6e\x7b\x43\x62\xfb\x57\x18\x83\x5e\x80\x80\x65\x8a\x08\x65\x06\x0e\x55\xf8\x8c\xf8\x2f\x15\x58\x7d\x7c\x7c\x65\x1b\x75\x7e" +"\x91\x9e\x76\x1f\x5a\xb5\x05\x9c\x77\x73\x93\x6b\x1b\x3a\x57\x5b\x2a\x71\x1f\xd9\x06\xbd\x99\x9a\x9a\xb1\x1b\xa0\x9a\x85\x79\x9f" +"\x1f\xbb\x61\x05\x79\xa0\xa2\x83\xac\x1b\xdb\xc2\xbe\xea\xa2\x1f\x0e\xfb\xc5\xa5\xfb\x4e\x15\x23\x0a\xb8\xf7\x66\xa3\xf7\xc9\x05" +"\x48\x06\x20\xfb\xc9\x05\xda\xf8\x06\xd7\x1d\x39\xf8\x2e\xf8\x47\x15\xb1\x7f\x97\x72\x4f\x1a\xf7\x1a\x06\x8e\xa3\x8c\x94\x95\x1a" +"\xcd\x5f\xc9\x4a\xa5\x1e\x7b\x91\x7c\x8e\x73\x8e\x9e\xe2\x18\x49\x06\x78\x35\x33\x84\x47\x65\x5a\x45\x19\x59\x44\x69\x21\x37\x1a" +"\x3b\xb7\x44\xcf\x71\x1e\x9b\x84\x9c\x87\xa3\x87\x75\x23\x18\xcd\x06\xa0\xf1\xf7\x09\x91\xeb\xdc\xaf\xf7\x0e\x19\xfb\x1a\x06\x73" +"\x50\x71\x6e\x62\x81\x08\x4a\x8f\x15\x66\x9b\x7e\xa6\xc2\x1a\xd3\xa3\xdc\xaf\xbc\x1e\x9a\xa0\xa0\x99\xa5\x92\x08\x0e\x39\xf8\x5b" +"\xf8\x07\x15\xfb\x1f\x06\x88\x9a\x87\x9b\x82\xad\x08\x81\xb0\x89\x94\xa0\x1d\xfb\x1b\x3a\x47\x72\x5b\x57\x1e\x5a\x5e\x6d\x4d\x52" +"\x1a\x6f\x8f\x7a\xa1\x4d\x1e\x4f\x06\x7f\x54\x05\xe4\x06\x8f\x6f\x8c\x7f\x7c\x1a\x45\x63\x59\x23\x4e\x1e\xac\x26\x05\xa0\xbc\xa8" +"\x92\xb0\x1b\xa6\xa2\x87\x80\xb8\x1f\x7f\xbc\x9f\x88\xa6\x1b\xbc\xb5\x97\xac\xcb\x1f\x79\xf7\x01\x05\x76\x5e\x6a\x83\x67\x1b\x7a" +"\x74\x8e\x90\x71\x1f\x94\x5f\x88\x8b\x79\x1b\x6c\x7f\x87\x6e\x4a\x1f\xf7\x03\xd9\xb3\xc1\xd4\x1a\x92\x8b\x91\x89\x97\x1e\xf7\x0e" +"\x06\x0e\xf8\x5f\x32\x0a\x0e\x39\xf8\xd2\xf7\xf4\x15\xfb\x1f\x06\xf7\x9f\xf7\xf4\x05\xfb\x1c\x06\xfb\x4f\xfb\x92\x36\xf7\x92\x05" +"\xfb\x1f\x06\xf7\x14\xfb\xf4\x22\x0a\x7f\x4f\x05\xf7\x26\x06\x80\x57\x05\xfb\x26\x06\x7e\x4f\x05\xf7\x26\x06\x65\xfb\x48\x20\x1d" +"\xb1\xf7\x48\x05\xf7\x24\x06\x98\xc7\x05\xfb\x24\x06\x96\xbf\x05\xf7\x24\x06\x0e\x39\xf8\xef\xf8\x77\x15\xfb\x0f\x06\x9a\xb4\x05" +"\xd2\xa7\xab\xad\xb2\x1b\x9c\x95\x88\x7e\xa4\x1f\xb7\xf7\x06\x05\x98\x63\x77\x8f\x6b\x1b\x22\x44\x4c\xfb\x1f\x55\x1f\x74\x50\x05" +"\xfb\x1e\x06\x76\x27\x05\xf7\x0f\x06\xfb\x1f\xfc\x0c\x05\x38\x6c\x74\x6f\x67\x1b\x7b\x78\x93\x98\x7a\x1f\x5a\xfb\x07\x05\x7b\xa9" +"\xa3\x85\xab\x1b\xf7\x03\xd4\xce\xf7\x2e\xc3\x1f\xf7\x20\xf8\x12\x05\xf7\x1d\x06\x0e\x39\xf8\xe1\xf8\xb4\x15\x90\xa4\x8d\x96\x99" +"\x1a\xdc\x4b\xbb\x20\x41\x4b\x74\x62\x5f\x1e\x62\x66\x73\x58\x5c\x1a\x63\x97\x6e\xa5\x70\x1e\x57\x6a\x7c\x7f\x76\x73\x08\x71\x6d" +"\x7e\x65\x5f\x1a\x64\x9f\x67\xad\x74\x1e\xf7\x2a\x27\x05\xbd\x6c\x90\x85\x70\x1a\x61\x64\x6b\x58\x61\x74\x9e\xaf\x95\x8c\x92\x8d" +"\x9c\x1e\xfb\x17\x06\x84\x71\x89\x7d\x78\x1a\x34\xcf\x54\xf7\x00\xe3\xd3\xaa\xc6\xbd\x1e\xad\xb4\x9f\xbd\xba\x1a\xb5\x7c\xa9\x6a" +"\xa6\x1e\xe7\xad\xb1\xbe\xe6\x1a\xbb\x76\xae\x5b\xa9\x1e\xfb\x04\xd1\x05\x58\xaa\x77\xa0\xa1\x1a\xaf\xab\xa5\xb6\xb3\xa1\x76\x65" +"\x87\x8b\x84\x8a\x84\x1e\xfb\x60\xfb\xbd\x15\x6e\x9c\x81\x9a\xa1\x1a\xae\x9d\xa5\xb1\x9f\x1e\xf7\x13\x3f\x05\xae\x76\x96\x7d\x73" +"\x1a\x6a\x79\x75\x5c\x75\x1e\x0e\x39\xf8\x89\xf8\xa4\x15\x9d\x72\x66\x97\x68\x1b\x63\x60\x7f\x78\x68\x1f\x4e\xd8\x38\x47\xc9\x3c" +"\x05\x68\x61\x77\x54\x58\x1a\x75\x8e\x7a\x93\x73\x1e\x2d\x3e\xc1\x46\xe9\xd9\x05\x79\xa0\xb7\x7e\xb1\x1b\xb0\xa2\x91\xa3\xbb\x1f" +"\xc6\x40\xde\xcf\x4f\xd7\x05\xaf\xb9\x9f\xc1\xbe\x1a\x9f\x88\x9b\x84\xa3\x1e\xe6\xd6\x55\xd0\x05\xfb\x69\xfb\x21\x15\xbe\xae\x68" +"\x59\x42\x53\x52\x43\x58\x68\xad\xbe\xd5\xc3\xc3\xd3\x1f\x0e\xfc\x24\xf7\xeb\xf9\x6d\xe1\x1d\xc2\x06\xd1\xf7\x15\x05\x0e\xfb\x1e" +"\xf7\xc6\x89\x0a\xf7\xfe\x16\xa6\xf7\x11\x05\x3a\x06\x94\xbd\xab\xa8\xc5\x95\x95\xb9\x18\x32\x84\x4b\x52\x7d\x34\x74\xfb\x01\x18" +"\x0e\x39\xf7\x1b\xf7\x6e\x53\x0a\xf7\x51\xfb\x06\x53\x0a\x0e\xfb\xc5\xf7\x14\xf7\x6e\x53\x0a\x0e\xfb\xc5\xf7\xd3\xb0\x1d\x0e\x70" +"\xf8\x3d\xf8\xa5\x37\x0a\xf7\x8e\xf3\xa1\x1d\x70\xf8\x3d\xf8\xa5\x37\x0a\xf7\xb6\xf7\xb9\xd2\x1d\x39\xf9\x04\xf7\xcb\x15\xfc\xcb" +"\x06\x75\x23\x05\xf8\xcb\x06\x0e\x39\xf9\x06\xf8\x79\x15\xfb\x47\x06\xba\xf7\x74\x05\xfb\x19\x06\x5b\xfb\x74\x05\xfb\x47\x06\x72" +"\xfb\x08\x05\xf7\x47\x06\xfb\x0b\xfc\xc7\x05\xf7\x1a\x06\xf7\x0b\xf8\xc7\x05\xf7\x47\x06\x0e\x39\xf9\x03\xf8\x79\x15\xfb\x47\x06" +"\xbb\xf7\x74\x05\xfb\x1a\x06\x5b\xfb\x74\xd8\x1d\xfb\x73\xd8\x1d\xfb\x74\x05\xf7\x1a\x06\xbb\xf7\x74\x05\xf7\x46\x06\xa4\xf7\x08" +"\x05\xfb\x47\x06\xbb\xf7\x73\x05\xf7\x46\x06\x0e\x55\x0a\x39\xf9\x40\x22\x1d\xfb\xc2\x06\x4a\x53\x71\x55\x58\x1f\x52\x4e\x6b\x3f" +"\x3e\x1a\x29\xca\x4a\xef\x86\x1e\x2a\xfc\x5e\x05\xed\x06\xf7\x48\xf9\xe3\x05\xc9\x06\xfb\x48\xfd\xe3\x05\xed\x06\xf7\x48\xf9\xe3" +"\x05\xb7\x06\x0e\xfb\xb4\xf7\x96\xf8\x3d\x15\x3d\x46\x46\x3e\x4f\xb8\x5f\xc8\xd9\xd3\xd1\xd7\xc6\x5c\xb8\x4d\x1f\x0e\xe7\xf7\x11" +"\x86\x0a\xe9\x92\xc9\xc3\x97\xe3\xa2\xf7\x01\x18\x0e\xfb\x1e\xe7\xf7\x11\xa8\x1d\xef\xa3\x1d\xfb\x1e\xf7\x78\xf9\x6d\xa8\x1d\xec" +"\xa3\x1d\x39\xf7\xda\xb0\x1d\xf7\x7b\xf7\x07\x15\xfb\x1c\xf7\x26\x73\xfb\x06\xdd\x32\xfb\x0c\x32\x72\xfb\x09\xf7\x5b\xf7\x28\x05" +"\x0e\xf7\xfe\xf7\xa5\xf7\x26\x27\x1d\xf8\x00\xf7\x26\x27\x1d\xf8\x00\xf7\x26\x27\x1d\x0e\xf7\xfe\xf9\x22\xf9\x76\x15\xfc\xda\xfd" +"\x8b\x05\xcd\x06\xf8\xdb\xf9\x8b\x05\xfc\x29\x8c\x15\x2c\x34\x35\x2e\x48\xbf\x59\xd2\x67\x1d\x7a\x3d\x15\xae\xa5\x73\x6b\x5e\x63" +"\x64\x5e\x68\x71\xa2\xaa\xb8\xb4\xb4\xb7\x1f\xf7\x79\xfc\x15\x15\x2d\x34\x35\x2e\x48\xbf\x59\xd1\x67\x1d\x7b\x3d\x15\xae\xa4\x73" +"\x6a\x5f\x63\x64\x5e\x69\x71\xa2\xaa\xb8\xb3\xb4\xb8\x1f\xf8\x15\xd9\x15\x2d\x34\x35\x2e\x48\xbf\x59\xd1\x67\x1d\x7b\x3d\x15\xae" +"\xa4\x73\x6a\x5f\x63\x64\x5e\x69\x71\xa2\xaa\xb8\xb3\xb4\xb8\x1f\x0e\x70\xf7\xca\xf7\xe7\x15\x7d\x49\x82\x7f\x47\x62\x43\x5f\x67" +"\x6b\x75\x67\x08\x74\x64\x7d\x58\x5f\x1a\xfb\x02\xde\x47\xf7\x18\xe1\xd1\xa8\xc5\xc0\x1e\xb2\xb6\xa1\xbc\x9e\xdf\x08\xfb\x1c\x06" +"\x34\x7b\x59\x57\x48\x1b\x55\x65\xaf\xbe\x9f\x91\xa0\x95\x9e\x1f\x9a\xa5\x96\x95\xc2\xb1\xe9\xcd\xb2\xc2\x92\xd8\x08\xfb\x12\xc2" +"\xd7\x1d\xfb\xc5\xf7\x43\x4c\x1d\x0e\xfb\xc5\xf8\x6f\x30\x1d\x0e\xfb\xc5\xf7\xa6\xf9\x89\x29\x1d\xfb\xc5\xf8\x52\xf9\x7c\x41\x0a" +"\xfb\xc5\xf8\x67\xf9\x66\x2d\x0a\xfb\xc5\xf8\x31\xf9\x86\x53\x1d\xfb\xc5\xf8\x0d\xf9\x79\x3b\x0a\xfb\xc5\xf7\xaf\xf9\x79\x38\x1d" +"\xfb\xc5\xf7\xda\xf9\x99\x2e\x1d\x0e\xfb\xc5\xf7\x2e\x16\x47\x21\xbc\x0a\x6d\x78\x65\x6f\x56\x1d\x63\x7c\x7f\x89\x87\x7b\x1f\xb4" +"\xc9\x05\x0e\xfb\xc5\xf7\xca\x8a\x0a\xfb\xc5\xf7\x42\x16\x62\x7a\x78\x82\x73\x7a\x08\x61\x6e\x72\x60\x61\x1a\x5c\xbe\x6e\xde\xa5" +"\x9e\x8d\x92\xab\x1e\x95\xbf\x05\x83\x76\x74\x88\x70\x1b\x6a\x7a\x98\xa6\xa2\x96\xa4\xa2\xa8\x1f\x9e\xa3\x91\x8f\xcd\xb1\x08\x0e" +"\xfb\xc5\xf7\xee\xf8\xf6\x3a\x1d\xf7\xfe\xaa\x0a\xf7\xfe\x6c\x0a\x0e\xfb\xa0\xf8\x20\xf7\xea\x15\xfb\xaf\x27\x0a\xf7\xb0\x06\xb3" +"\xf7\x27\x15\x82\x96\x88\x92\x94\x1a\x90\x8b\x8f\x8c\x8f\x1e\xb2\xf7\x48\x05\x8d\x96\x8c\x94\x93\x1a\xb8\x61\xa6\x43\x30\x56\x66" +"\x40\x7a\x1e\xda\x06\xab\x95\x9d\x97\xb2\x1b\xaa\x98\x83\x7a\x7e\x83\x7e\x7f\x85\x1f\x7e\x85\x8b\x8b\x60\x85\x69\x85\x18\x41\x80" +"\x5b\x5a\x4c\x1a\x5b\xab\x6d\xbe\xb3\xaa\x98\xac\xaf\x1e\x89\x81\x8b\x89\x87\x1a\x85\x8c\x87\x8e\x85\x1e\xe7\x06\x41\xf7\x16\x15" +"\x5b\x81\x6d\x6f\x62\x1b\x70\x7c\x95\x9f\xa7\xa1\x9f\xb1\x91\x1f\xa9\x91\x95\x8c\x05\x8c\x91\x8f\x8c\x8d\x1b\x92\x8d\x8d\x8c\x92" +"\x8e\x08\x0e\x70\xf7\xe6\xf8\x39\x15\xcc\xf7\xc8\x28\x0a\x3c\xfc\x09\x27\x4e\x77\x2d\xef\xc8\x53\xfb\x9a\x05\xf8\x87\x21\x1d\xfb" +"\xf1\x06\xb6\xf7\x5e\xf7\x4f\xf7\x02\x9f\xe9\x05\x0e\xf7\x20\x5e\x0a\x0e\xf7\xfe\xf9\x48\xf7\xce\x15\xf7\xbe\x21\x1d\xfb\xbe\x40" +"\x0a\xf7\xda\x21\x1d\xfc\x6b\x06\x80\x57\x05\xb9\x66\x63\x9d\x49\x1b\x2d\x36\x62\x3a\x41\x1f\x38\x2f\x53\xfb\x29\xfb\x19\x1a\xfb" +"\x35\xe9\x20\xf7\x22\xce\xb7\xa1\xc7\xc3\x1e\x7f\x50\x05\xf8\x7e\x25\x1d\xfb\xed\x06\xfb\x1f\xc0\x15\x57\x64\x66\x76\x55\x1b\x30" +"\x56\xc9\xf6\xd1\x9e\xd6\xae\xca\x1f\xe2\xba\xcb\xb7\xd9\x1b\xc3\xac\x75\x58\x9e\x1f\x0e\xfb\xa5\xf8\x2e\xf7\xea\x15\xfb\xc1\x27" +"\x0a\xf7\xc1\x06\x55\xf8\x67\x15\xfb\x06\x36\x2c\xfb\x14\x41\xbd\x5d\xda\xcb\xc0\xa4\xbc\xb0\x1f\xa8\xb0\x9e\xc7\xc0\x1a\xd5\x5a" +"\xb8\x38\x1e\x7d\x47\x15\xaf\xa2\x70\x5f\x3e\x5e\x4b\x55\x68\x74\xa7\xb6\xd8\xb7\xcb\xc1\x1f\x0e\xf7\x8f\x6e\x1d\x0e\x2a\x1d\x0e" +"\xf7\xbc\xf8\x47\x15\xca\xf7\xba\x22\x0a\x3f\xfb\xf5\x3f\x5c\x7a\x38\xd7\xbb\x4d\xfb\xba\x20\x1d\xd6\xf7\xf5\xd7\xb8\x9c\xdd\x05" +"\x0e\x70\x73\x1d\x0e\xf7\xc6\xf9\xbd\xdd\x1d\xae\xbd\x9a\x8c\x96\x91\xa5\x1f\xf7\xfe\x06\x69\x1d\xba\x6f\xaf\x1e\xb8\x67\x52\xa3" +"\x45\x1b\x3f\x42\x70\x5e\x5d\x1f\xb9\x69\x48\xa5\x3c\x1b\x25\x31\x5f\x3c\x4f\x1f\x5b\x4b\x6b\x28\x34\x1a\xfb\x0f\xde\x3f\xf7\x1a" +"\xdc\xd8\xa6\xb9\xbf\x1e\x5f\xa7\xcd\x6e\xd5\x1b\xf7\x0b\xf7\x01\xcf\xf6\xc0\x1f\xfc\xcb\xf7\xb1\x15\xc9\xb1\x5e\x43\x5a\x7d\x56" +"\x73\x61\x1f\x53\x6c\x5d\x6c\x57\x1b\x4f\x64\xb8\xd2\xf7\x13\xd6\xf4\xe6\x1f\xf8\x63\xfb\x0a\x15\xfb\x6c\x06\xd8\xa0\xb9\xb4\xcb" +"\x1b\xc1\xaa\x6a\x52\x1f\x0e\x70\xf7\xfb\xf7\xf1\x15\x9a\x06\xd6\xb1\x6a\x4a\x5f\x77\x5f\x69\x6d\x1f\x6c\x70\x6f\x82\x54\x8a\x08" +"\x7d\x06\x73\xfb\x04\x05\x86\xab\x9c\x89\x9e\x1b\xe5\xdb\xb8\xdc\xc2\x1f\xac\xbd\xa2\xd1\xc1\x1a\xd2\x67\xbc\x4d\x99\x1e\xd6\xa5" +"\xba\xce\xd9\x1a\xe4\x3b\xc5\xfb\x0e\xfb\x20\x23\x48\x23\x75\x1e\xfb\x0b\xfc\xc2\x20\x1d\xf7\x06\xf8\xad\x05\xc0\x96\xad\xa6\xc3" +"\x1b\xc3\xac\x73\x62\x6d\x7c\x6b\x72\x78\x1f\x79\x75\x6f\x82\x61\x1b\x0e\xfb\xc5\xf7\x98\xf8\xd1\x15\x4d\xfb\xb5\x05\xe9\x06\xe5" +"\xf8\x3d\x05\x4c\x06\x59\x73\x59\x72\x3d\x1b\x7e\x4e\x05\x0e\x55\xf7\x14\xf8\x0c\x15\x72\xfb\x0c\x05\xf8\x15\x06\x67\xfb\x3e\x05" +"\xf7\x0b\x06\xc8\xf7\xb6\x05\x0e\x70\xf7\x26\xfb\x70\x15\xbd\xf7\x7f\x05\x6f\xa4\xa4\x81\xb8\x1b\xc4\xaf\x99\xb4\xbb\x1f\x62\x9b" +"\x9f\x7d\xba\x1b\xa7\x9f\x90\x98\xa5\x1f\x9d\xe1\x05\x88\x81\x87\x8a\x84\x1b\x7d\x84\x93\x9a\x96\x8d\x9b\x90\xa2\x1f\xde\xf8\x1a" +"\x22\x0a\x43\xfb\xe6\x05\x4c\x7e\x57\x63\x48\x1b\x5c\x6e\xa3\xb1\x94\x8e\x9d\x8f\x9e\x1f\xd2\xf7\xe1\x22\x0a\xfb\x36\xfd\x8c\x05" +"\x0e\xf7\xfe\xf8\x51\xf9\x1d\x15\xf7\x19\x06\x9c\xdb\x05\xfc\x01\x27\x0a\xf7\x1d\x06\x3b\xfc\x0c\x05\xea\x06\xf8\x57\x16\xf7\x31" +"\xf7\xf1\x41\xfb\xf1\x05\xe6\x06\xec\xf8\x5c\x05\xfb\x1d\x06\xfb\x32\xfb\xf3\x80\xf7\xf3\x05\xfb\x1e\x06\x2a\xfc\x5c\x05\xe6\x06" +"\xd6\xf7\xf1\x95\xfb\xf1\x05\x0e\xdf\x7d\x1d\xf7\x58\xf7\x89\xae\x1d\xf8\xe0\xae\x0a\xa7\xfd\x0f\x15\xfb\x4c\x06\x99\x9d\x9e\x99" +"\xd0\xb4\xbe\xc1\x1d\x4d\x52\x23\x7a\x1e\xe6\x06\xc5\x92\xa5\xaa\xb5\x1b\xac\x9e\x7a\x6e\x71\x80\x71\x76\x77\x1f\x78\x78\x75\x7d" +"\x47\x62\x33\x59\x6b\x64\x76\x3a\x08\xf7\xc6\x06\x0e\x55\xf9\x0a\xf8\x58\x91\x0a\x68\xfb\x36\x05\xf7\x0b\x06\xae\xf7\x36\x05\xf7" +"\x4b\x06\x5d\xfb\x69\x15\xfc\x78\x06\x72\xfb\x0b\x05\xf8\x78\x06\x0e\xa8\xf7\x94\xf7\x20\x15\xf7\x4f\x06\xda\xc4\xba\x1d\x49\x1b" +"\xfb\x33\x06\xa5\xf7\x0c\x34\x0a\xc3\xf7\x9d\x15\xba\xf7\x6f\x05\xf7\x2d\x06\xc1\xaf\x6c\x5b\x6e\x80\x64\xc3\x0a\xf7\x58\xf7\x90" +"\xae\x1d\xf8\xe3\xae\x0a\x9c\xfc\xb9\x15\x5d\x06\xc2\xf7\x97\x05\xfb\x00\x06\xfb\x6d\xfb\x98\x7b\x43\x05\xf7\x45\x33\x1d\xe9\x06" +"\x9e\xe8\x05\xb9\x06\xfb\x0f\xd4\x15\x22\x06\xf7\x20\xf7\x3a\x05\x0e\x55\xcb\x1d\xfb\x9b\x5b\x15\x64\x66\x67\x64\x6f\xa0\x76\xa8" +"\xb2\xb0\xae\xb1\xa9\x77\xa0\x6d\x1f\xd3\xf7\xe6\x15\x64\x66\x67\x64\x6f\xa0\x76\xa8\xb2\xb0\xaf\xb0\xa9\x77\xa0\x6d\x1f\x0e\xfb" +"\xfa\xf7\xe3\xf9\x6d\x15\x3b\x06\x38\xfc\x19\x05\xdb\x06\x6b\xfb\x2b\x15\x3b\x06\x38\xfc\x19\x05\xdb\x06\x0e\xfb\x82\xf7\xcf\xf9" +"\x42\x15\x38\x47\x47\x38\x38\xcf\x46\xdd\xe0\xcf\xce\xe0\xde\x47\xcf\x37\x1f\x8c\x4c\x15\xbb\xb3\x64\x5a\x59\x63\x64\x59\x5c\x63" +"\xb3\xbb\xbc\xb3\xb3\xbc\x1f\x0e\x70\xf7\xf4\xf9\x6d\x23\x1d\xfb\x5d\xfe\x47\x9b\x0a\xf7\x5d\xf7\x12\x48\xdb\x21\x48\x53\x6e\x4f" +"\x5d\x1f\xf7\x03\x74\xe9\x1d\x35\x56\x5f\x1d\xf7\x58\xf7\x80\x66\x0a\xf8\x90\xf7\x49\x15\xfc\xd9\xfd\x73\x05\xe0\x06\xf8\xd9\xf9" +"\x73\x05\x8f\xfc\xb9\x15\x5d\x06\xc2\xf7\x97\x05\xfb\x00\x06\xfb\x6e\xfb\x98\x7c\x43\x05\xf7\x45\x33\x1d\xe8\x06\x9f\xe8\x05\xb9" +"\x06\xfb\x0f\xd4\x15\x21\x06\xf7\x20\xf7\x3a\x05\x0e\xfb\xc5\xf8\x1b\xf8\x00\x15\xfb\x4c\x06\x98\x9d\x9f\x99\xcf\xb4\xbf\xc1\x1d" +"\x4c\x52\x23\x7b\x1e\xe6\x06\xc5\x91\xa5\xaa\xb6\x1b\xac\x9e\x7a\x6e\x71\x7f\x71\x77\x77\x1f\x78\x78\x76\x7d\x45\x62\x34\x59\x6b" +"\x64\x76\x3a\x08\xf7\xc6\x06\x0e\xee\xf7\xf8\xf7\xcd\x15\xe6\x06\xaf\x9c\x80\x73\x85\x89\x83\x87\x7a\x1f\x83\x6a\x85\x6c\x7c\x1a" +"\x82\x8c\x85\x8f\x7e\x1e\xf1\x06\x90\xa0\x05\x82\x91\x88\x91\x94\x1a\x8c\x98\x05\x97\xd2\x8e\xa0\x9c\x1a\xa1\x80\x99\x6f\x98\x1e" +"\xcb\xa8\xac\xba\xcb\x1a\xc6\x6a\xa9\x49\x1e\xfb\x82\x06\x2d\xfc\x4e\x05\xeb\x06\xc1\xf7\x92\x15\xa2\xf7\x00\x05\xf1\x06\xb3\x9a" +"\x82\x73\x78\x84\x73\x82\x80\x1f\x7c\x80\x79\x85\x6a\x1b\xc2\xf7\xf1\x15\xfb\x8a\xb1\x0a\xf7\x8b\xf7\x79\xf7\x72\xf7\x84\xf7\x43" +"\xfb\x15\xf7\x14\x9c\x0a\xfb\x20\x25\xf3\xf7\x21\xf7\x57\xf7\x4b\xf7\x49\xf7\x58\x1f\x0e\x55\xcb\x1d\x0e\x70\xf7\xf7\xf8\xf5\x15" +"\xb1\x70\xae\x65\xa3\x62\x08\xa0\x65\x77\x91\x6b\x1b\x45\x48\x6d\x58\x5e\x1f\x50\x48\x65\x21\x29\x1a\xfb\x12\xde\x40\xf7\x1f\xf3" +"\xe1\xb4\xda\xc5\x1e\xbf\xd0\xa7\xe3\xe6\x1a\xf7\x14\x5a\xdf\xfb\x16\xec\x1e\xe8\xb4\x60\xb6\x23\x5e\x85\x8f\x86\x8d\x89\x8d\x19" +"\x6f\x9b\x7a\x95\x7e\x92\x73\x95\x19\x45\x59\xb1\x73\x91\x87\xa5\x79\x19\x33\x62\xb4\x60\x05\xf7\x15\xfb\x19\x15\xa3\xa6\x82\x7d" +"\x9f\x1f\xa2\x7a\x95\x72\x63\x1a\xfb\x1c\x45\x26\x2c\x73\x73\x94\x9a\x78\x1e\x75\x9e\x81\xa8\xb8\x1a\xbd\x98\xc1\xa3\xb4\x1e\xbf" +"\xa8\xb6\xa7\xbe\x1b\x0e\x55\xf8\x98\xf8\x50\x15\xfb\x31\xfb\x15\x26\xf7\x15\x25\x36\xf0\xfb\x14\xfb\x2f\xfb\x14\xcd\x37\xf7\x2f" +"\xf7\x14\xf0\xfb\x15\xf1\xdf\x26\xf7\x15\xf7\x31\xf7\x15\x05\x0e\xfb\xc5\xf7\x74\x66\x0a\x0e\xee\xf9\x18\xf8\x43\x15\x8d\x9c\x8c" +"\x92\x94\x1a\xd8\x4e\xbe\x2e\x3f\x48\x6a\x4e\x5b\x1e\x60\x54\x70\x3b\x3f\x1a\x28\xc7\x4f\xed\xf7\x06\xe1\xcb\xf4\xa7\x1e\x2f\x06" +"\x53\x79\x63\x6d\x52\x1b\x53\x6d\xac\xc8\xbc\x9b\xc1\xa4\xb1\x1f\xb5\xa8\xb0\xa0\xb9\x1b\xc0\xa2\x73\x55\x1f\x73\xf7\xcc\x15\xfb" +"\x8b\xb1\x0a\xf7\x8c\xf7\x79\xf7\x72\xf7\x84\xf7\x44\xfb\x15\xf7\x13\x9c\x0a\xfb\x21\x25\xf2\xf7\x22\xf7\x57\xf7\x4b\xf7\x49\xf7" +"\x59\x1f\x0e\xdf\x24\x0a\xf7\x7b\xf8\x11\x2b\x0a\xdf\x24\x0a\xa7\xf8\x11\x29\x1d\xdf\x24\x0a\xb2\xf8\x01\x38\x1d\xdf\x24\x0a\x3f" +"\xf8\x11\x3d\x0a\xdf\x24\x0a\xdd\xf8\x22\x2e\x1d\x0e\xdf\x24\x0a\xf7\x5e\xf8\x04\x15\x69\x7d\x79\x7b\x75\x1b\x7f\x88\x8c\x93\x79" +"\x1f\x59\xa0\x05\x9b\x67\x82\x8d\x71\x1b\x54\x61\x61\x3f\x73\xb9\x1d\xa1\x86\x9b\x4a\x1d\xdf\xf8\x19\x74\x15\xf7\x44\x8c\xf7\x1c" +"\xf3\xb4\xf7\x3b\x08\xfb\x23\x06\x2f\x6e\x44\x57\x2a\x1b\x2a\x5a\xc1\xf5\xdd\x51\x0a\xf7\x21\x06\x8e\xa5\x8c\x96\x97\x1a\xf7\x12" +"\x22\xdf\xfb\x2f\xfb\x0f\x20\x56\x26\x3a\x1e\x44\x33\x5f\xfb\x1b\xfb\x15\x1a\xfb\x25\xe7\x26\xf7\x21\x80\x1e\x54\x37\x05\xb6\x0a" +"\x66\x6e\x74\x92\xa2\x5b\x1f\x6d\x58\x05\x74\xc5\xa9\x85\xb8\x1b\xe7\xc6\xb5\xcc\xaf\x73\xa0\x63\x7b\x7f\x89\x86\x7c\x1f\x0e\xa8" +"\x26\x0a\xf8\x37\xf9\xbf\x2b\x0a\xa8\x26\x0a\xf7\x82\xf9\xbf\x39\x0a\xa8\x26\x0a\xf7\x8a\xf9\xaf\x38\x1d\xa8\x26\x0a\xf7\x24\xf9" +"\xbf\x3d\x0a\x25\x0a\xf7\xa8\x56\x0a\x25\x0a\xd6\xfa\x3c\x29\x1d\x25\x0a\xdf\xfa\x2c\x38\x1d\x25\x0a\x6b\xfa\x3c\xbb\x0a\xdf\x30" +"\x0a\xa1\xfa\x2f\x15\x69\x7d\x79\x7b\x74\x1b\x80\x88\x8c\x93\x79\x1f\x59\xa0\x05\x9b\x67\x82\x8d\x71\x1b\x54\x60\x61\x3f\x74\x1f" +"\xc1\x06\xad\x9c\x9b\x9a\x9d\x1b\x93\x9e\x85\x82\x9c\x1f\xbd\x72\x05\x85\x98\xa0\x86\x9c\x4a\x1d\xf7\x20\xf9\x70\xdb\x1d\x67\x5e" +"\x15\xfb\x10\x26\x5b\x29\x39\x1f\x3d\x2e\x39\x1d\x21\xf4\xfb\x4c\xaf\x0a\x4f\x1f\x44\x59\x4c\x69\x3e\x1b\x25\x4d\x2f\x1d\x0e\xf7" +"\x20\xf8\xb1\xfa\x3c\x46\x1d\xfb\x03\x7c\x1d\xf7\x20\xf8\xba\x45\x1d\xfb\x40\x50\x51\x1d\x0e\xf7\x20\xf8\x56\xfa\x3c\x3e\x0a\x6c" +"\x7c\x1d\xf7\x20\xf8\xae\xf9\x79\x51\x1d\xf7\x57\xf7\xca\x15\x69\x7e\x79\xb3\x1d\x74\x1f\xc1\x06\xac\x9b\x9b\x9b\x83\x0a\xa8\xf8" +"\xad\xf9\xa9\x3a\x0a\xd2\xfb\x27\x05\xf7\xb4\xfb\xae\x74\x1d\x0e\xdf\xf9\x48\xfa\x3c\x4d\x1d\xf7\x11\x52\x41\x1d\xdf\xf8\x98\xfa" +"\x3c\x46\x1d\xae\xfb\x63\x41\x1d\xdf\xf8\x9b\x45\x1d\x77\x44\x41\x1d\xdf\xf8\x42\xfa\x3c\x61\x1d\xf7\x02\xfb\x63\x41\x1d\xa8\x2c" +"\x0a\xf7\x8d\x56\x0a\xa8\x2c\x0a\xd7\x45\x1d\x0e\x70\x36\x1d\xfb\x4b\xf7\x4d\x15\xf7\x1f\xf7\x27\x05\x3e\x06\x25\x2a\x4e\xec\x05" +"\x3d\x06\xd2\xfb\x27\x05\x0e\x39\xf8\xdf\x30\x1d\xed\xfc\xe2\x3f\x1d\x39\xf8\x16\xf9\x89\x46\x1d\xac\xfd\x78\x3f\x1d\x39\xf8\x1f" +"\x52\x0a\x6f\xfc\xf0\x3f\x1d\x39\xf7\xc3\x4c\x1d\xf4\xfd\x78\x3f\x1d\x39\x2d\x1d\xac\xf8\x9a\x2e\x1d\x0e\x39\x2d\x1d\xf7\x2a\xf8" +"\x7d\x41\x0a\x39\xf7\xb4\x74\x15\xf7\x13\x88\xf6\xdd\xb2\xf7\x17\x08\x57\x1d\xf7\x1a\x06\x8e\xa3\x8c\x94\x95\x1a\xb5\x7a\xb3\x6c" +"\xaa\x1e\xb1\x65\x5d\x9c\x48\x1b\x2d\x42\x6c\x4b\x56\x1f\x50\x45\x61\xfb\x09\x2d\x1a\x43\xaf\x48\xc2\x6d\x1e\x9e\x81\x9d\x85\xaf" +"\x84\x52\x34\x18\xb6\x0a\x65\x6e\x75\x92\xa3\x5b\x1f\x6d\x57\x05\x75\xc4\xaa\x84\xb8\x1b\xe7\xc6\xb5\xcc\xaf\x73\xa0\x63\x7b\x7f" +"\x89\x87\x7c\x1f\x0e\x39\xf8\xc6\x30\x1d\xf7\x3d\xfc\x11\x42\x1d\x39\xf8\x0e\xb4\x1d\xe3\xfc\xa7\x42\x1d\x39\xf8\x1c\xf9\x79\x2e" +"\x0a\xf7\x67\xf7\x0c\x2e\x0a\x9f\xfc\x1f\x42\x1d\x39\x76\x1d\x2a\x1d\xf7\x85\x30\x1d\x0e\x2a\x1d\xb3\xf9\x89\x29\x1d\x2a\x1d\xbc" +"\x52\x0a\x0e\x2a\x1d\x4f\x4c\x1d\x0e\x70\x34\x1d\xf7\xa6\xf7\x60\x41\x0a\x70\xf8\xeb\x30\x1d\x6f\x51\x15\x23\x32\x5f\x3c\x50\x1f" +"\x5b\x4b\x6c\x28\x35\x1a\xfb\x0e\xdf\x3d\xf7\x19\xf7\x00\xe2\xb5\xdc\xc8\x1e\xbb\xca\xaa\xee\xe2\x1a\xf7\x10\x37\xd7\xfb\x1d\x1e" +"\x75\xfb\x04\x54\x1d\x0e\x70\xf8\x33\x99\x0a\xfb\x01\x6d\x0a\x70\xf8\x39\x52\x0a\xfb\x3c\x43\x15\x23\x32\x5f\x3c\x50\x1f\x5b\x4b" +"\x6c\x28\x35\x1a\xfb\x0e\xdf\x3d\xf7\x19\xf7\x00\xe2\xb5\xdc\xc8\x1e\xbb\xca\xaa\xee\xe2\x1a\xf7\x10\x37\xd7\xfb\x1d\x1e\x75\xfb" +"\x04\x54\x1d\x0e\x70\xf7\xdb\xf9\x89\xa7\x0a\x5f\xf7\x2a\x05\x69\x6d\x0a\x70\x36\x0a\xf7\x56\xf7\xc7\x15\x69\x76\x76\x7a\x74\x1b" +"\x80\x88\x8c\x94\x7a\x1f\x5e\xa0\x05\x99\x6e\x7d\x8e\x73\x1b\x54\x57\x61\x40\x64\x1f\xc1\x06\xac\xa2\x9e\x9a\x9d\x1b\x93\xa0\x84" +"\x84\x98\x1f\xb8\x72\x05\x84\x96\x9f\x87\x9c\x1b\xcb\xc5\xb7\xd9\xb0\x1f\x0e\x39\xf8\x5e\xf8\xf6\x3a\x0a\xd2\xfb\x27\x05\xf7\x7e" +"\xfb\x88\x63\x0a\x0e\x70\xf8\xdf\xf9\x89\x15\xfb\x13\x06\x26\xfb\x2a\x05\xd1\x06\xf7\x04\xfc\xf3\x42\x0a\x70\xf8\x2a\xb4\x1d\xa7" +"\xfd\x89\x42\x0a\x70\xf8\x38\xf9\x79\x2e\x0a\xf7\x67\xf7\x0c\x2e\x0a\x63\xfd\x01\x42\x0a\x70\xf7\xd9\xf9\x89\x3e\x0a\xec\xfd\x89" +"\x42\x0a\x39\x72\x0a\x34\xf7\x6d\x2b\x0a\x39\x72\x0a\xfb\x94\xf7\x5d\x45\x0a\xfb\x1e\x44\x1d\xfb\x09\xf7\x4b\x9a\x0a\xfb\x86\xf7" +"\x42\xf8\xf5\x15\x46\xfb\xd9\x05\xe8\x06\xb2\xf7\x4b\x05\xbb\x96\xa8\xa7\xb4\x1b\xa7\x9a\x7c\x6e\x83\x8a\x83\x89\x80\x1f\x63\xfb" +"\x50\x05\xe8\x06\xb9\xf7\x6d\x05\x8e\x96\x8c\x97\x95\x1a\xbb\x64\xac\x53\x64\x66\x7c\x70\x70\x1e\x87\x86\x94\xb4\x05\x0e\xa7\x4b" +"\x0a\x0e\xf7\xc5\x4b\x0a\xf7\x8e\xf3\xa1\x1d\xf7\xc5\x4b\x0a\xf7\xb6\xf7\xb9\xd2\x1d\xf7\x58\xf9\x60\x32\x0a\xfc\xbe\xfb\x22\x15" +"\x4d\xfb\xb5\x05\xe9\x06\xe5\xf8\x3d\x05\x4c\x06\x59\x73\x59\x72\x3d\x1b\x7e\x4e\x05\xf9\x1c\xfb\xe9\x6a\x0a\x0e\xf7\x58\xf9\x81" +"\x32\x0a\x64\xfc\x77\x15\xc1\xab\xa2\xac\xb8\x1a\xc1\x5b\xb1\x45\x33\x43\x4d\x40\x71\x95\xaf\x1d\x53\xf7\x1b\x15\xac\xa1\x7a\x71" +"\x64\x69\x6d\x61\x6c\x77\x9d\xa6\xb1\xaa\xa8\xb4\x1f\x69\xfb\x3d\x15\xac\xa0\x78\x6c\x57\x6a\x66\x5c\x6a\x73\x9f\xa7\xbe\xb0\xb3" +"\xb9\x1f\xfc\x63\xf7\xa5\x15\x8c\x90\x8e\x8b\x90\x1b\xc0\xa2\x7c\x69\x62\x6a\x6a\x63\x66\x78\x9b\xaa\x91\x8b\x8f\x8d\x93\x1f\x30" +"\x06\x88\x7b\x8a\x82\x80\x1a\x47\xbb\x64\xde\xf7\x01\xd6\xd0\xee\xab\x7d\xa2\x6e\x9d\x1e\xba\xa8\xa3\xb1\xb9\x1a\xc6\x5c\xad\x3a" +"\x27\x57\x5e\x25\x77\x1e\xe2\x06\xc3\x97\x9c\x9e\xb2\x1b\xa6\x9d\x7b\x73\x76\x82\x78\x7c\x7e\x1f\x7b\x7d\x7a\x87\x63\x8a\x08\x0e" +"\xf7\x58\xf9\x74\x32\x0a\x71\xfc\x77\x15\xc2\xd1\x1d\x95\x7a\xa8\x75\x1e\x4c\xc6\x1d\x66\xa1\x1e\x53\x96\x1d\xfb\x91\xf8\xa3\x15" +"\xfb\x79\x06\x33\xfb\x81\x05\xd6\x06\xa0\x99\xa0\x96\xa5\x1b\xae\x9e\x77\x68\x4e\x67\x5e\x5a\x6b\x76\x9a\xa2\x8e\x8c\x91\x8c\x90" +"\x1f\x38\x06\x89\x7f\x8a\x85\x83\x1a\x4f\xbb\x64\xd3\xf4\xde\xe1\xf7\x00\xcd\x63\xb4\x4a\x6e\x74\x84\x79\x6f\x1e\xab\xe3\x05\xf7" +"\x46\x06\x0e\xf7\x58\xf9\x5d\x32\x0a\x7f\xfc\x77\x6a\x0a\xfb\x51\xf8\xa2\x15\xfb\xc1\x06\x7b\x40\x05\xf7\x68\x06\xfb\x09\xfb\x05" +"\x50\x2f\x5b\xfb\x25\x08\xe0\x06\xab\xf7\x06\xba\xde\xe3\xec\xb0\xb2\xa0\xa0\x90\x90\x08\x0e\xf7\xfe\x6c\x0a\xf7\xdc\xf7\xe0\x2b" +"\x1d\xdf\x24\x0a\xf7\x3b\xf8\x0f\xbc\x1d\x7e\x5c\x1d\xdf\x24\x0a\x0e\xdf\x24\x0a\xfb\x3b\xf7\x42\x26\x1d\xdf\x24\x0a\xf7\x73\xf7" +"\xee\x2d\x0a\xdf\xf8\xa8\xf7\x27\x15\x9d\xfb\x27\x05\xd6\x06\x5f\x7c\x77\x81\x73\x79\x08\x60\x6c\x72\x62\x63\x1a\x59\xc5\x1d\x71" +"\x1b\x65\x7a\x98\xa9\xbd\xc3\xc5\xd9\xab\x1f\x2a\xf9\x6d\x05\xfb\x41\x06\xfc\x2b\xfd\x6d\x05\xf7\x2d\x06\xdc\xf7\x27\x05\xf7\x96" +"\xf7\x11\x15\xfb\x51\x06\xf7\x2e\xf7\xaf\x05\x0e\xdf\x24\x0a\xd2\xf8\x22\x2e\x1d\xc0\xf7\x3e\x2b\x0a\xdf\x78\x1d\xdf\x69\x0a\xdd" +"\xf8\x5a\x15\xfb\x1a\x06\x2d\xfb\x2a\x05\xca\x06\x0e\xdf\x69\x0a\x65\xf7\xc7\x3a\x1d\xdf\x7e\x1d\xfb\x19\xf8\x5b\x39\x0a\xdf\xf9" +"\xa4\xf8\x76\x15\x8d\x9b\x8d\x9d\x91\x1a\xc5\x75\xbe\x61\xb5\x1e\xb9\x5b\x4e\xa1\x3a\x1b\xfb\x17\xfb\x09\x54\x2c\x47\x1f\x4a\x33" +"\x5e\xfb\x22\xfb\x04\x1a\x47\xa3\x46\xb4\x58\x1e\x51\xb9\xc8\x71\xe3\x1b\xf5\xef\xae\xc6\xca\x1f\xbc\xb9\xab\xc2\x9f\xd8\x08\xfb" +"\x27\x06\x31\x6f\x40\x53\x31\x1b\x2f\x5b\xbe\xee\xe8\xa5\xe6\xb9\xcc\x1f\xd5\xc0\xc8\xb0\xd2\x1b\xce\xb6\x70\x5a\x96\x1f\x8f\x7a" +"\x8c\x83\x6d\x1a\x71\xf8\x4c\x49\x1d\xa8\x78\x0a\xdf\x73\x0a\xf7\x33\xf9\x2c\x3a\x0a\xd3\xfb\x27\x05\x0e\xdf\x7d\x1d\x71\x8f\x16" +"\xf8\xf0\x06\xfb\x97\xf9\x0a\x05\x33\x06\xb7\x25\x15\xf7\x4b\xfc\x5b\x05\xfc\x01\x06\x0e\xa8\x26\x0a\xf8\x0a\xf9\xbd\x53\x1d\xa8" +"\x26\x0a\xf7\xc7\xf9\x2c\x3a\x1d\xa8\x26\x0a\xf7\xe4\xf9\xad\x3b\x0a\xa8\x26\x0a\xf8\x42\xf9\x9c\xe8\x1d\x0e\xe0\xd6\x16\x23\x0a" +"\xf3\xf8\x7c\x05\xe6\x9e\xc2\xb3\xf4\x1b\xd3\xac\x74\x58\x7d\x89\x7e\x87\x76\x1f\xfb\x09\xfc\xba\x05\x6c\x84\x7d\x7f\x6c\x1b\x7d" +"\x85\x8c\x8d\x87\x1f\x71\xfb\x0c\x05\x87\x99\x99\x8a\xa3\x1b\xf7\x09\xc3\xaf\xe3\x9d\x1f\xf7\x1e\xf9\x1c\x05\x8f\x9e\x8d\x9d\x9d" +"\x1a\xdf\x45\xbb\xfb\x10\x2d\x51\x73\x48\x49\x1e\x9d\xdd\x28\x0a\x0e\xa8\x99\x1d\xf8\x6c\x06\x5f\x7c\x77\x81\x73\x79\x08\x5f\x6c" +"\x73\x62\x62\x1a\x5a\xc5\x1d\x70\x1b\x66\x7a\x97\xa7\xbd\xb1\xb5\xe6\xbe\x1f\xbf\x0a\x0e\xa8\x26\x0a\x0e\xf7\x6c\xf8\x43\xf7\xce" +"\x15\xf7\xf1\x25\x1d\xfb\xf0\x40\x0a\xf8\x0e\x25\x1d\xfc\xa4\x9f\x1d\x39\xf8\xf0\x26\x1d\xdf\x8e\x1d\xf7\xa0\xf9\x61\xf7\xdf\x15" +"\x44\x7f\x0a\xd2\xf7\xdf\x05\xfb\x12\xf8\x22\x26\x1d\x39\xc7\xf7\xd2\x15\x64\x47\x05\xd4\x06\x8c\x47\x93\x5a\x9f\x5e\x08\x4a\xa9" +"\xd5\x5d\xd9\x1b\xb3\xad\x92\xa6\xe2\x1f\xaa\xf7\x29\x05\x61\x34\x6e\x81\x62\x1b\x4f\x67\xbd\xe7\x84\x1f\xf7\x49\x06\xb1\xcf\x05" +"\xfb\x6d\x06\x8f\xa1\x8f\x9e\x93\xa6\x08\xf7\x84\x06\xb2\xcf\x05\xfb\x8f\x06\xe7\xb5\xc4\xbb\xca\x1b\xb7\xad\x7a\x59\xbf\x1f\xd4" +"\xf7\x15\x05\xc1\x4d\x67\x99\x44\x1b\xfb\x23\xfb\x11\x28\xfb\x3f\x41\x1f\x5b\x06\x64\x47\x05\xcb\x06\x83\x6f\x89\x80\x86\x6e\x08" +"\x0e\x6f\xd9\x16\x23\x0a\xf7\x14\xf8\xf0\x05\xf7\xfe\x21\x1d\xfc\x94\x06\x0e\xf7\x20\x64\x0a\x6a\xfa\x3c\xbc\x1d\x7f\x1a\x4c\xe7" +"\x1d\xf7\x20\x77\x1d\xfb\x44\xfa\x3e\x29\x1d\xf7\x20\x64\x0a\xfc\x18\x51\x15\x73\xfb\x04\x05\xce\x06\x85\x5e\x68\xc3\x1d\xf7\x20" +"\xf9\xae\xcf\x1d\x63\x7d\x75\x6d\x6f\x08\x5c\x58\x52\x72\x53\x1b\x28\x4d\xcc\xf3\xdc\xa4\xdf\xb6\xc6\x1f\xd7\xc2\xcf\xb2\xd9\x1b" +"\xbe\xb7\x7c\x70\xa4\x1f\x9c\x7a\x90\x7b\x90\x61\x08\xf7\x21\x06\x8c\x97\x8b\x92\x92\x1a\xc3\x70\xc4\x5d\xb4\x1e\xb7\x5a\x4c\xa0" +"\x3a\x1b\xfb\x16\xfb\x0a\x57\x32\x43\x1f\x3f\x2e\x5d\xfb\x11\xfb\x03\x1a\x45\x9e\x4f\xb1\x55\x1e\x3e\xc2\xcc\x6a\xeb\x1b\xc2\xbf" +"\x98\xa3\xba\x1f\xae\x9d\x9a\x99\xb0\xbb\x88\x2b\x18\xe5\x06\x38\xfa\x30\x49\x1d\xdf\xbd\x0a\xf7\x06\xf8\xad\x05\xce\x06\x9c\xdb" +"\x05\x48\x06\xa3\xf7\x04\x05\xfb\x2b\x06\x74\xfb\x04\x05\xfb\xb5\x06\xa3\xf7\x04\x05\xfb\x2a\x4e\x1d\x48\x27\x0a\xce\x06\xfb\x06" +"\xfc\xad\x20\x0a\xd1\xf7\xdf\x05\xf7\xd0\xf7\x11\x15\xfb\xb5\x06\x9c\xdc\x05\xf7\xb5\x06\x0e\xdf\xbd\x0a\xf7\x2f\xf9\x6d\x05\xfb" +"\x2b\x06\x51\xfb\xa5\x05\xfb\xb4\x54\x0a\xf7\x6c\xf8\xf1\x39\x0a\xf7\x24\x25\x0a\xf8\x91\x22\x1d\xfb\x06\xfc\xaf\x05\x54\x7f\x68" +"\x6d\x56\x1b\x64\x70\xa1\xab\x94\x8d\x97\x8d\x98\x1f\x9c\xd8\x28\x0a\x7b\x43\x05\x87\x75\x88\x73\x78\x1a\x2a\xd2\x50\xf7\x09\xce" +"\xd0\x9d\xa7\xb6\x1e\xbc\xab\xae\xc5\x9c\xd8\xf7\x06\xf8\xaf\x18\x0e\xf8\x05\x33\x0a\xf7\x61\xfa\x3a\xbf\x1d\x82\x7d\x5c\x1d\x25" +"\x0a\xf7\x43\xfa\x2a\x3b\x0a\x25\x0a\xf7\x91\xfa\x19\x15\xfb\xa5\x27\x0a\xf7\xa5\x06\x0e\xf8\x04\x60\x1d\xd7\x06\x31\x59\x61\x5b" +"\x52\x1a\x5a\xb9\x6e\xd6\xa2\x99\x8d\x92\xad\x1e\x96\xbf\x05\x85\x79\x6f\x86\x7d\x1b\x6e\x7a\x9b\xa7\xb7\xbc\xca\xc7\xab\x1f\x0e" +"\x25\x0a\x0e\x25\x0a\xdf\xfa\x2e\x44\x0a\xfb\x39\xf8\x97\x33\x0a\x54\xf9\x6d\x26\x1d\x25\x0a\xf7\x8f\xfa\x2f\xa9\x1d\x73\xb9\x1d" +"\xa1\x86\x9b\x4a\x1d\x39\x70\x0a\x2e\xb1\x1d\xdf\x79\x0a\xdf\x7a\x0a\xdc\x4f\x8d\x0a\x70\x37\x1d\xf7\x81\xf9\xbf\x2b\x0a\xa8\x86" +"\x16\xf7\x32\x06\xf7\xc4\xf8\xc1\xce\xfc\xc1\x05\xf7\x28\x06\x23\xf9\x6d\x05\xfb\x33\x06\x0e\x70\x37\x1d\xf7\x78\xf8\xf0\x31\x0a" +"\x70\x37\x1d\x93\xfb\x4f\xa6\x1d\x70\x37\x1d\xf8\x09\xf7\xf3\x15\x2a\x0a\x6c\xfb\x26\x05\xf7\x29\x06\x0e\xf7\x57\x75\x0a\xdf\x30" +"\x0a\xa8\xed\x1d\xd0\x06\x0e\xdf\x30\x0a\x37\xf9\xa9\x3a\x0a\xd3\xfb\x27\x05\x0e\xdf\x30\x0a\xfc\x09\x4f\xa6\x1d\xdf\x30\x0a\x0e" +"\xf7\x20\xf8\xae\x67\x0a\xf7\x2a\xf7\xd5\x15\x60\x7b\x68\x75\x58\x1b\x5b\x88\x0a\xf7\x20\x7b\x1d\xf7\x1a\xf7\xd7\xea\x1d\xf7\xee" +"\xf7\x27\xea\x1d\x0e\xf7\x20\x7b\x1d\xf7\x6a\xf7\xb4\x2d\x0a\xf7\x65\xf8\x38\x62\x0a\xfb\x22\xf9\x6d\xcd\x1d\xf7\x20\x7a\x1d\xf7" +"\x62\xf8\xe3\x67\x0a\xfb\xc3\xf7\x08\x26\x1d\xf7\x20\x5e\x0a\xae\xf8\x0f\x2b\x1d\xf7\x4c\xf7\xee\x7d\x15\xf7\x11\x06\x9e\xe4\xd8" +"\x8f\xc4\x9a\xc5\xab\x19\xf2\xc3\xcc\xf7\x02\xf7\x09\x1a\xf7\x16\x32\xe7\xfb\x28\xa2\x1e\x9e\xe4\x05\xfb\x11\x06\x78\x32\x43\x88" +"\x54\x7d\x52\x6c\x19\xfb\x00\x52\x48\x20\xfb\x09\x1a\x37\xb5\x3e\xd1\x5f\x1e\xb0\x73\xac\x80\xc1\x81\x08\xa4\xf7\x09\x15\x41\x9a" +"\x61\xbe\xd8\x1a\xc9\xaa\xc9\xbe\xb0\x1e\xaa\xa1\xa5\x95\xbd\x92\x08\xf7\x11\x16\xd6\x7d\xb5\x58\x3e\x1a\x4c\x6c\x4e\x58\x66\x1e" +"\x6c\x75\x71\x81\x58\x83\x08\x0e\xdb\xcb\x5a\x0a\xf7\xb4\x06\xfb\x14\xfc\xf0\x05\xf7\x2b\x4a\x0a\xfc\xe1\x06\x0e\xf7\x53\xf7\xe9" +"\x16\xf7\x27\x06\xa7\xf7\x16\xf7\x58\x90\xe8\xd4\xb7\xf7\x4b\x19\x94\xb3\x93\xb3\x93\xb3\xba\xf7\x6e\x18\x2a\x0a\x5c\xfb\x6e\x6e" +"\xfb\x20\x7f\x69\x6e\x6a\x19\x69\x6a\x65\x7b\x62\x1b\xf0\xf8\x6f\x05\xfb\x27\x06\x26\xfc\x6f\x05\x4e\x8c\x64\xb1\xc4\x1a\xa3\x8b" +"\x8b\xa6\xf7\x1d\x1e\xba\xf7\x6e\x05\x2a\x0a\x5c\xfb\x6e\x05\x79\x36\x82\x4e\x69\x1a\x45\xb3\x4b\xcd\x67\x1e\xae\x77\xaa\x83\xbf" +"\x88\x08\x0e\xdf\x3e\x1d\xf7\x42\xf8\x9e\x2b\x1d\xdf\x3e\x1d\xcc\xf8\x0b\x3a\x1d\xdf\x3e\x1d\xfb\x5d\xfc\x6e\x8d\x0a\xa8\x6e\x0a" +"\xa8\x72\x1d\xd3\xf8\x41\x2b\x1d\xa8\xf7\xef\x74\x15\xf3\x8c\xd6\xa1\xc7\xbb\x08\xc8\xbb\xb3\xe1\xde\x98\x0a\xe1\xb9\xb3\x0a\xf7" +"\x20\x06\x91\xa7\x8d\x99\x9f\x1a\xf7\x00\x2e\xcb\xfb\x33\x2a\x3f\x73\x59\x52\x1e\x52\x5a\x68\x40\x44\x1a\x38\xbd\x5f\xf7\x0b\x73" +"\x1e\xed\x77\x05\xe6\x79\xa8\x77\x5c\x1a\x47\x48\x60\x22\x31\x57\xac\xc5\x8f\x8c\x94\x8c\x94\x1e\xfb\x26\x06\x88\x77\x8a\x81\x7d" +"\x1a\x4c\xa7\x56\xbf\x67\x1e\xac\x74\xaa\x82\xd9\x7f\x54\x37\x18\x50\x0a\x7f\x89\x87\x7b\x1f\x0e\xa8\x5f\x0a\xfb\x0e\xf8\x41\x29" +"\x1d\xa8\x72\x1d\xfb\xc5\xfc\xcb\x3c\x0a\x5f\x68\xa5\x0a\x5b\xa0\x16\xf8\xc7\x25\x1d\xfc\x0d\x06\xf7\xb3\xf7\x8e\xfb\x49\xf7\x7c" +"\x05\xf7\xe6\x06\xa4\xf7\x0e\x05\xfc\x9f\x06\x73\xfb\x03\xf7\x4a\xfb\x7a\xfb\xb4\xfb\x95\x05\x0e\x70\x46\x0a\x0e\x70\xf8\x75\xf8" +"\x57\x15\xac\xf7\x2d\x05\x5a\x1d\x6a\xfb\x2d\x05\xfb\x2d\x27\x0a\xf7\x2d\x06\x3c\xfc\x07\x20\x0a\xda\xf8\x07\x05\xf7\x2d\x06\x9c" +"\xdb\x05\x0e\x70\x46\x0a\xf7\x26\xf9\xa9\x9a\x0a\x70\xf7\xf8\x16\xa8\x06\xf7\x15\xf8\xf0\x05\x5a\x1d\xfb\x15\xfc\xf0\x05\xd2\x06" +"\x4d\x2b\x05\x96\xa4\x97\x8e\x9c\x1b\xa5\x9d\x7e\x77\x72\x6e\x78\x65\x6e\x76\x91\xa3\x5a\x1f\x6d\x57\x05\x75\xc6\xa7\x85\xb9\x1b" +"\xe6\xc6\xb5\xcc\xaf\x73\xa0\x63\x7c\x7f\x89\x86\x7b\x1f\x0e\xf7\x20\xf8\xf7\xf8\x2b\x15\xfb\x9f\x06\x76\x29\x05\xf7\x9f\x06\x50" +"\xf8\x44\x15\xfb\x09\x23\x5c\x32\x3d\x1f\x3e\x35\x5a\xfb\x16\xfb\x07\x1a\xfb\x46\xf7\x0c\xfb\x0b\xf7\x45\xf7\x0e\xf0\xba\xe8\xdd" +"\x1e\xd6\xe1\xb8\xf7\x0e\xf7\x09\x1a\xf7\x4b\xfb\x07\xf7\x08\xfb\x4a\x1e\x7f\x3d\x1d\x4e\x1f\x45\x59\x4c\x69\x3e\x1b\x26\x4c\x2f" +"\x1d\x0e\xdf\x4f\x1d\xfb\x44\xf7\x61\x9b\x1d\xdf\x4e\x0a\xfb\x5d\xf7\x63\x90\x0a\xdf\x4e\x0a\x25\xf7\x40\x2d\x0a\xdf\xf8\xcd\xfb" +"\x40\x15\x83\x76\x73\x88\x71\x1b\x65\x79\x99\xa9\xa2\x95\xa2\xa1\xa9\x1f\xa1\xa9\x9b\x99\xc6\xba\xd9\xc6\xac\xbe\xa1\xec\xf4\xf8" +"\x82\x18\xfb\x2a\x06\x22\xfc\x82\x05\x31\x78\x59\x63\x2f\x1b\x3e\x5e\xaa\xc1\x9a\x8d\x99\x8e\x9b\x1f\xf4\xf8\x82\x05\x2a\x0a\x26" +"\xfc\x6e\x05\x84\x69\x87\x6c\x74\x1a\xfb\x09\xeb\x42\xf7\x2d\xac\xa1\x8e\x95\xbd\x1e\x61\x78\x71\x7b\x7b\x7c\x08\x6c\x6f\x7b\x69" +"\x68\x1a\x5b\xbe\x6f\xe4\xa4\x9f\x8e\x91\xaa\x1e\x0e\xa8\x2c\x0a\x0e\xa8\x2c\x0a\xd4\xfa\x2e\x44\x0a\xf7\xb8\xf9\x29\xe6\x1d\xfb" +"\x62\xfb\xcf\x39\xf7\xcf\x05\xfb\x3c\x06\xf7\x25\xfc\x5f\x52\xfb\xa2\x20\x0a\xfb\xa0\xf9\x6d\x26\x1d\xdf\x4e\x0a\xfb\x86\xf7\x74" +"\x2e\x1d\x0e\xdf\x4f\x1d\xfb\x3d\xf7\x56\xa9\x1d\x74\x1f\xc1\x06\xad\x9b\x9b\x9a\x83\x0a\xf7\xc6\x35\x1d\xf7\x76\xdb\x1d\x0e\xf7" +"\xc6\x35\x1d\x93\xfa\x3c\x39\x0a\xf7\xc6\x35\x1d\xa7\x45\x1d\x0e\xf7\xc6\x35\x1d\x45\xfa\x39\x3d\x0a\x9e\xad\x16\xf8\xe1\x21\x1d" +"\xfc\xe1\x06\xd6\xf7\x51\x15\xf8\x93\x21\x1d\xfc\x93\x06\x90\xf7\x39\x15\xf8\xd6\x25\x1d\xfc\xd6\x06\x0e\xa8\x2c\x0a\xbb\xfa\x3c" +"\x29\x1d\xa8\x2c\x0a\x79\xfa\x3c\x3d\x0a\x70\x36\x1d\x39\xf7\xe0\x2b\x0a\x70\x36\x1d\xfb\x31\xf7\xce\x2e\x0a\x0e\x70\x36\x1d\x0e" +"\x39\x2d\x1d\xf7\x08\xf8\x87\x15\x60\x7b\x68\x75\x58\x1b\x58\x75\x9f\xb8\x8a\x1f\x60\x06\x87\xab\x0a\xd9\xd0\xc8\xdd\x99\x1e\x0e" +"\xf7\x8f\x6e\x1d\x3e\xf8\x2e\x2b\x1d\xf7\xfe\xaa\x0a\xdf\xf8\xaf\xf7\x27\x15\x9c\xfb\x27\x05\xf7\x24\x06\x33\xf9\x6d\x05\xfb\x43" +"\x06\xfc\x32\xfd\x6d\x05\xf7\x37\x06\xdb\xf7\x27\x05\xf7\x97\xf7\x11\x15\xfb\x53\x06\xf7\x31\xf7\xb1\x05\x0e\xd1\xd0\x16\xf7\xf3" +"\x06\xe4\xbc\x96\xab\xbb\x1f\xce\xb7\xb5\xd8\xda\x1a\xf7\x06\x37\xdd\xfb\x09\x1e\xfb\x5e\x40\x0a\xf8\x0f\x21\x1d\xfc\xa5\x06\xa1" +"\xfc\xf0\x15\xb3\xf7\x51\x05\xf7\x6a\x06\xb1\xa4\x6f\x60\x4c\x5b\x54\x54\x1f\x0e\xdf\xda\x16\xf7\xdd\x06\xf7\x05\xc6\x9b\xb9\xc3" +"\x1f\xbe\xb4\xab\xd1\xce\x1a\xc5\x71\xb4\x47\xbb\x1e\xe3\xb0\xb7\xc5\xdc\x1a\xf1\x40\xcb\xfb\x0b\x1e\xfb\xdd\x06\xf7\x0f\xfb\x11" +"\x15\xf7\x38\x06\xc7\xa9\x76\x61\x6c\x7b\x6b\x71\x79\x1f\x7c\x77\x6f\x85\x61\x1b\xfb\x31\x06\x71\xfb\x11\x15\xf7\x46\x06\xca\xaa" +"\x74\x5d\x43\x57\x5b\x3d\x1f\xfb\x4a\x06\x0e\x73\xe1\x5a\x0a\xf7\xc5\x21\x1d\xfc\x5b\x06\x0e\xdf\x70\xfb\x1c\x15\x23\x0a\xa8\xf7" +"\x1c\x05\xf8\x29\x06\x6e\xfb\x1c\x20\x0a\xc2\xf7\x99\x05\x49\x06\xf7\x14\xf8\xf0\x05\xfc\x61\x06\x2b\xfc\x55\x7b\x35\x39\x47\x34" +"\x8a\x19\x72\x06\xf8\x7d\x16\xfb\x89\x06\xc6\xad\xb7\xc4\x97\xc5\xd1\xf7\xde\x18\xf7\x35\x06\x0e\xa8\x92\x1d\x0e\xa8\x92\x1d\xf7" +"\x84\xf9\xaf\x38\x1d\xf7\xb5\xf8\x19\x16\xf7\x29\x06\xd2\xf7\xdf\x05\xf7\x02\x93\x0a\x26\x5c\x0a\x51\xfb\xa5\x05\xfb\x0d\xc4\x1d" +"\xf7\x3b\x06\xf7\x60\xf7\xdf\x05\xee\x06\x0e\x90\xf7\x0a\xf7\x86\x15\x85\x6f\x05\x87\x77\x89\x7a\x7d\x1a\x21\xee\x3b\xf7\x17\xf7" +"\x3a\xf7\x11\xf7\x06\xf7\x2c\xc9\x68\x0a\x0e\xdc\x43\x1d\x0e\xdc\x43\x1d\xf7\x39\xf7\x46\x15\x88\x79\x89\x7b\x7f\x1a\x6d\x98\x6e" +"\xa2\x75\x1e\x77\xa2\xab\x81\xbb\x1b\xc3\xb6\x9b\xad\xb2\x1f\xac\xa8\x98\xa2\x9a\xc2\x08\x32\x06\x58\x77\x6e\x74\x5f\x1b\x71\x76" +"\x97\xa0\x82\x1f\x86\x94\x8a\x95\xa1\x1a\x0e\x74\xc3\x16\x66\x1d\xf0\x93\x0a\x30\x5c\x0a\x0e\xbc\x88\x16\xdf\x06\xde\x8a\xe4\xd3" +"\x99\xd9\xec\xf8\x5b\x18\xf7\x7c\x06\xfb\x15\xfc\xf0\x32\x1d\xfc\xa7\x06\xfb\x0d\xfc\xcd\x05\x73\x85\x7c\x80\x75\x1b\x56\x06\x0e" +"\xf7\x57\xf7\xe0\xf8\xcc\x15\x95\xfc\xcc\x20\x0a\xf7\x8e\xf8\xcc\xfb\x0d\xfc\xcc\x32\x1d\xfb\x76\x06\xfb\x8f\xfc\xd8\x82\xf8\xd8" +"\x05\xfb\x74\x35\x0a\x0e\xdf\xf7\xb2\xf7\xdf\x15\xf7\xb5\x06\x45\x7f\x0a\x0e\xf7\x20\x8b\x1d\x7d\xfb\x14\x98\x1d\xdc\xd3\x16\x23" +"\x0a\xf7\x15\xf8\xf2\x05\xf7\xa8\x06\xfb\x15\xfc\xf2\x32\x1d\xfc\xd4\x06\x0e\xa8\xf7\xa6\xf7\x98\x15\xf7\x4f\x06\xda\xc9\xa3\xc0" +"\xbf\x1f\xbe\xbd\xab\xde\xde\x1a\xbf\x76\xbe\x69\xa7\x1e\xa6\x6c\x53\x9d\x5a\x1b\xfb\xd6\x35\x0a\xdd\xf8\x15\x15\xb9\xf7\x6f\x20" +"\x1d\xce\xaa\x73\x58\x6a\x81\x68\x7a\x73\x1f\x67\x73\x66\x7b\x53\x1b\x0e\xdf\xf9\xa2\xf8\x76\x15\x8d\x9e\x8c\x93\x96\x1a\xf7\x16" +"\xfb\x02\xe6\xfb\x33\xfb\x08\x28\x5d\x30\x3f\x1e\x40\x31\x5d\xfb\x18\xfb\x11\x1a\x36\xa9\x3e\xbf\x5a\x1e\x5e\xb9\xd1\x73\xdd\x1b" +"\xf2\xe7\xaf\xcc\xcc\x1f\xbd\xbd\xaa\xc4\x96\xcb\x08\xfb\x2a\x06\x2e\x6e\x47\x56\x2e\x1b\x32\x58\xc4\xef\xdf\xa4\xe7\xb5\xcc\x1f" +"\xd6\xba\xca\xb0\xd8\x1b\xd5\xbd\x63\x4f\x84\x8a\x7f\x8a\x7f\x1f\x0e\x70\xf8\x95\xf8\xf0\x15\xf7\x69\x21\x1d\xfc\xdc\x24\x1d\xf7" +"\x71\x06\xfb\x14\xfc\xf0\x20\x0a\x0e\xb2\x91\x1d\x0e\xf7\x23\xf7\xbf\x16\xf7\x2b\x06\xa0\xf0\x05\xe1\x06\xcd\xcb\xa7\xba\xb5\x1f" +"\xbe\xc4\xad\xe6\xdd\x1a\xf7\x18\x46\xe5\x26\x1e\x49\x06\xa0\xf0\x05\xfb\x2b\x06\x76\x26\x05\x3c\x06\xfb\x1e\xfb\x06\xfb\x1d\xfb" +"\x3b\xfb\x1a\xcd\x32\xed\x1f\xc7\x06\xda\xf8\x26\x15\x53\xfb\xa9\x05\x58\x06\x6c\x77\xb4\xcb\xeb\xbb\xd7\xc6\x1f\xf7\x63\x16\xc5" +"\x06\xad\xa0\x63\x4b\x2c\x59\x3d\x4e\x1f\x51\x06\x0e\xa8\x93\x1d\xf7\x3b\x06\x0e\xe6\xcf\x16\xf8\x76\x06\x6a\xfb\x30\x20\x0a\xc7" +"\xf7\xad\x05\x48\x06\xf7\x15\xf8\xf0\x96\x0a\xd1\xf8\x83\x16\xf7\x2a\x77\x0a\xf7\x2a\xc9\xc3\x94\x9f\xcc\x1e\x0e\xf7\xe9\xce\x16" +"\xf9\xe1\x59\x0a\xfb\x14\xfc\xf0\x05\xfb\x5a\x3c\x1d\xfb\x14\xfc\xf0\x05\xfb\x59\x58\x0a\xf7\xf3\xca\x16\xf9\x84\x06\x69\xfb\x35" +"\x05\x23\x0a\xc8\xf7\xb2\x05\x48\x3c\x1d\xfb\x14\xfc\xf0\x05\xfb\x55\x06\xf7\x15\xf8\xf0\x05\xfb\x2a\x6a\x1d\xfb\x54\x58\x0a\xf7" +"\x6c\xf7\x37\x22\x1d\x70\xfb\x11\x05\xf7\x8a\x06\xfb\x14\xfc\xf0\x05\xf7\xbf\x06\xe8\xc0\x99\xb2\xbc\x1f\xcb\xbe\xb1\xd9\xdc\x1a" +"\xf7\x0a\x3f\xd2\xfb\x14\x1e\xfb\x26\x06\xc6\xf7\xa9\x05\xfb\x15\xfc\xf0\x15\xb6\xf7\x5e\x05\xf7\x2d\x9e\x0a\xf7\xfe\xf7\x09\x71" +"\x0a\xf7\xab\xfb\x11\x15\xf7\x2a\x59\x0a\x0e\xd1\xe9\x71\x0a\x0e\xdc\xf8\xec\xf7\xce\x15\xfb\x1b\x60\x3a\x41\x22\x1b\x30\x5a\xbf" +"\xf7\x02\x80\x1f\xfb\x28\x5f\x05\xfb\x32\xa5\xf4\x33\xf7\x36\x1b\xf7\x0a\xf1\xbd\xea\xd8\x1f\xd0\xe1\xb5\xf7\x0a\xf7\x01\x1a\xf7" +"\x51\xfb\x01\xf7\x09\xfb\x44\x39\x3b\x71\x5d\x4a\x1e\x65\x6f\x6e\x6e\x61\x54\xf7\x12\x47\x18\xe0\xc4\xca\xb2\xdb\x1b\xc7\xba\x70" +"\x5b\x9f\x1f\x97\x6f\x8f\x75\x5a\x1a\xfb\xbd\x06\x71\xfb\x11\x05\x0e\xf8\x28\xf8\x0a\xf7\xdf\x15\x8a\x77\x8a\x7f\x7b\x1a\xfb\x51" +"\xf7\x04\xfb\x09\xf7\x4a\xf7\x0e\xf7\x02\xbf\xe6\xd6\x1e\xd2\xe4\xb5\xf7\x08\xf7\x04\x1a\xe4\x72\xd5\x5a\xc2\x1e\xc5\x57\x46\xa7" +"\x2d\x1b\xfb\x43\xfb\x2a\xfb\x01\xfb\x44\x48\x1f\x20\x54\x0a\xf8\x94\xf7\xae\x98\x1d\xe6\xf8\x86\x16\xf7\x2a\x4a\x0a\xfb\xef\x06" +"\x45\x48\x71\x5e\x58\x1f\x56\x5c\x69\x41\x4a\x1a\x4c\xa8\x55\xba\x70\x1e\x53\x89\x62\x61\x7c\x47\x72\xfb\x0d\x18\x79\x4d\x7c\x74" +"\x6b\x81\x08\xf7\x2c\x06\xaa\x95\x9e\xa4\x98\xbc\xa5\xf7\x19\x18\x94\xb6\x9d\x99\xb7\x8c\x08\xf7\x52\x06\xa5\xf7\x11\x15\xfb\x42" +"\x06\x5b\x6e\xa7\xbb\xd0\xc2\xc6\xcd\x1f\xf7\x42\x06\x0e\x4c\xf8\xc9\x22\x1d\xfb\xb3\x35\x0a\xf7\x14\xf8\xf0\x05\xf7\x8d\x06\xa6" +"\xf7\x11\xf7\x06\xf7\x0e\x05\xfb\x19\x06\x0e\xf7\x8c\xf7\x93\x16\x23\x0a\xc9\xf7\xb8\x99\x9b\x93\x94\x95\x93\x19\xa3\xa7\xb6\x98" +"\xbb\x1b\xc9\xa8\x7a\x65\x86\x8a\x81\x88\x81\x1f\x76\x24\x82\x6a\x6e\x75\x68\x8c\x19\x43\x06\x71\xfb\x11\x05\xf7\x14\x06\xe9\xd4" +"\xc8\xea\xa0\x1f\xaa\xf7\x29\x05\x8f\x9a\x8c\x98\x98\x1a\xc0\x6d\xbf\x61\x9f\x1e\x98\x71\x62\x92\x5f\x1b\x3e\x61\x7c\x56\x47\x1f" +"\xb1\xf7\x49\x05\xf7\x70\x25\x1d\xfc\xb9\x24\x1d\xf7\x48\x06\x0e\x73\xda\x5a\x0a\xf7\xcd\x25\x1d\xfc\x62\x06\xf7\x41\xc5\x15\xf7" +"\x03\x06\xf7\x07\xf7\x0e\x05\xfb\x19\x06\x0e\xdc\xf8\xbf\xf7\xce\x15\xa5\xf7\x11\x05\xfb\xc0\x06\xa1\xbc\x99\xa3\xa3\xa6\x08\xbb" +"\xb5\xc5\xa6\xc7\x1b\xda\xb9\x63\x35\xa0\x1f\xf7\x1f\xc9\x05\xf7\x10\x69\x2c\xce\xfb\x24\x1b\xfb\x0f\x26\x59\x26\x3d\x1f\x47\x33" +"\x5f\xfb\x16\xfb\x04\x1a\xfb\x3e\xf7\x02\xfb\x05\xf7\x39\xf7\x38\xf7\x0a\xd7\xf7\x3a\xeb\x1e\xfb\x20\xbb\x05\xfb\x02\x52\x44\x57" +"\x2f\x1b\x35\x53\xc8\xea\x97\x8c\xa0\x8d\x9f\x1f\x0e\xa8\xf9\x5e\xf8\x8f\x15\x8f\xa6\x8c\x98\x9a\x1a\xc3\x74\xb9\x61\xa7\x1e\xaa" +"\x5c\x45\x9d\x3f\x1b\x34\x3b\x72\x5f\x55\x1f\x52\x5e\x68\x40\x3e\x1a\x3a\xc0\x5c\xf7\x09\x73\x1e\xec\x78\x05\xdf\x7a\xac\x73\x5d" +"\x1a\x44\x47\x5c\x25\x35\x57\xae\xc4\x91\x8c\x96\x8c\x95\x1e\xfb\x26\x06\x88\x75\x8a\x81\x7b\x1a\xfb\x0a\xf3\x40\xf7\x38\xf7\x00" +"\xe9\xaa\xc1\xc1\x1e\xbd\xbc\xaa\xd4\xcf\x1a\xe3\x58\xc1\x25\x9f\x1e\xfb\x02\xa1\x05\x30\x9d\x6d\x9d\xb0\x1a\xcd\xc7\xb7\xe3\xd9" +"\xbb\x6a\x56\x85\x8a\x81\x89\x81\x1e\x0e\xf8\x05\x33\x0a\x0e\x25\x0a\xde\xfa\x2c\x45\x0a\x39\xf8\x83\x22\x1d\xfb\x06\xfc\xab\x05" +"\x51\x7e\x68\x6c\x55\x1b\x62\x73\x9d\xab\x95\x8d\x9a\x8e\x99\x1f\x9b\xd7\x28\x0a\x7b\x3f\x05\x86\x75\x89\x79\x7a\x1a\x60\x9f\x61" +"\xae\x6c\x1e\x6e\xad\xbc\x7c\xc8\x1b\xd2\xcc\x9f\xae\xba\x1f\xb7\xac\xa4\xba\x9b\xd6\xf7\x08\xf8\xb2\x18\x0e\xf8\x5c\x9b\x16\xdf" +"\x06\xde\x8a\xe4\xd3\x99\xd9\xec\xf8\x5b\x18\xf7\x7c\x6a\x1d\xf7\xc0\xb8\x1d\xfb\x27\x06\xc6\xf7\xa9\x05\xfc\xa7\x06\xfb\x0d\xfc" +"\xcd\x85\x73\x7c\x7f\x75\x8c\x19\x56\x06\xf9\x00\x16\xb6\xf7\x5e\x05\xf7\x2d\x06\xa8\x99\x87\x7d\x97\x1f\x96\x7d\x91\x79\x74\x1a" +"\x44\x5a\x51\x4f\x1e\x0e\xf8\x28\xf7\xa8\xf7\xdf\x15\xf7\xa7\x06\x45\xfb\xdf\x05\xf7\xaf\xb8\x1d\xfb\x16\x06\xc6\xf7\xa9\x28\x0a" +"\x51\xfb\xa5\x05\xfb\xa7\x06\xc5\xf7\xa5\x34\x0a\xf8\x57\xf7\x11\x15\xb6\xf7\x5e\x05\xf7\x1d\x9e\x0a\xf7\x6c\xf7\x60\x16\x23\x0a" +"\xc9\xf7\xb8\x05\xbf\xb7\xaf\x9d\xc9\x1b\xc1\xa7\x79\x68\x85\x8a\x81\x88\x80\x1f\x4f\xfb\xae\x20\x0a\xcc\xf7\xc5\x05\x8f\x9d\x8d" +"\x9b\x98\x1a\xba\x6c\xbf\x64\x9e\x1e\x98\x72\x63\x93\x63\x1b\x47\x61\x7b\x57\x47\x1f\xb2\xf7\x49\x05\xf7\x66\x21\x1d\xfc\xa9\x24" +"\x1d\xf7\x41\x06\x0e\x7b\xc7\x16\x66\x1d\xf1\xac\x1d\x2f\x5c\x0a\xf7\x51\xcc\x15\xf7\x04\x06\xf7\x05\xf7\x05\x05\xfb\x1b\x06\x0e" +"\xb2\x91\x1d\xf7\x98\xf9\xba\x15\x88\x78\x89\x7a\x7f\x1a\x6e\x99\x6d\xa2\x75\x1e\x75\xa2\xad\x81\xba\x1b\xc5\xb9\x9b\xae\xb2\x1f" +"\xad\xa9\x99\xa2\x9a\xc4\x08\x30\x06\x57\x76\x6d\x73\x5d\x1b\x63\x71\xa7\xb3\x8e\x1f\x8d\x8b\x8d\x8c\x8f\x1e\x0e\x39\xf8\xa3\x9c" +"\x15\x7e\x9c\x86\x98\x98\x1a\x92\x8c\x92\x8d\x94\x1e\xca\xf7\xc0\x05\x8f\x9a\x8c\x98\x99\x1a\xab\x7a\xad\x73\x9e\x1e\xa5\x69\x59" +"\x98\x42\x1b\x32\x4e\x79\x63\x5f\x1f\x65\x67\x73\x60\x83\x59\x08\xf7\x1c\x06\xc1\x99\xaa\x9f\xce\x1b\xba\xa3\x7d\x70\x7b\x85\x7b" +"\x7f\x80\x1f\x7a\x7a\x81\x88\x38\x7e\x52\x81\x18\x4e\x82\x61\x78\x6a\x6c\x08\x64\x66\x75\x57\x55\x1a\x3a\xbf\x5a\xe2\xcc\xbf\xa2" +"\xc1\xc2\x1e\x89\x7c\x8a\x86\x84\x1a\x81\x8d\x85\x91\x80\x1e\xf7\x2d\x06\xfb\x10\xf7\x6d\x15\x3a\x7a\x59\x5d\x44\x1b\x62\x74\x9d" +"\xab\xa1\x95\xa0\x9b\x9b\x1f\x9c\x9b\x99\x91\xb3\x93\xbe\x94\x18\xb0\x92\x93\x8d\x9c\x93\x08\x0e\x78\xf8\xc4\xf9\xe3\x15\x78\x40" +"\x74\x6f\x52\x7c\xfb\x0b\x67\x4f\x65\x4f\x3c\x08\x43\x2e\x4f\xfb\x48\xfb\x0d\x1a\xfb\x10\xe6\x3a\xf7\x1f\xec\xe2\xb3\xd2\xc3\x1e" +"\xbc\xc9\xac\xf0\xe4\x1a\xf7\x0f\x33\xe1\xfb\x11\x52\x5b\x79\x65\x5e\x1e\xa4\xcd\xb8\xa6\xf7\x13\xa5\xf7\x20\xa8\xb9\xbb\xb2\xf7" +"\x32\x08\xfb\xbe\xfc\x2f\x15\xc6\xb0\x5f\x44\x5a\x7d\x55\x72\x61\x1f\x53\x6b\x5d\x6d\x56\x1b\x50\x66\xb7\xd1\xf7\x13\xd8\xf4\xe8" +"\x1f\x0e\x69\xdd\x16\xf7\xcb\x06\xbe\xc2\x9e\xa8\xad\x1f\xae\xaa\xa3\xbf\xba\x1a\xbc\x70\xae\x55\x9e\x1e\xae\x98\x9b\x94\x9c\x9b" +"\x08\xa7\xa5\x9b\xb1\xb2\x1a\xcf\x57\xbd\x45\x1e\xfb\xc4\x06\xbc\xfc\x3f\x15\xa4\xf7\x0c\x05\xf7\x18\x06\xa7\x9d\x78\x6e\x65\x6a" +"\x69\x65\x1f\x33\xf7\x65\x15\xa2\xf7\x00\x05\xf7\x18\x06\xa2\x98\x7c\x72\x66\x70\x6c\x6b\x1f\x0e\x23\xcf\x48\x0a\xf7\x91\x2f\x0a" +"\xfc\x1d\x06\x0e\x77\x82\xfb\x04\x15\x21\x0a\xa3\xf7\x04\x05\xf7\xc1\x4e\x1d\x21\x0a\xbb\xf7\x75\x05\x58\x06\xe6\xf8\x3f\x05\xfc" +"\x20\x06\x4b\xfb\xbd\x05\x3d\x7c\x61\x57\x5b\x1b\x53\x06\xf8\x1a\x16\xfb\x46\x06\xbc\xad\xa7\xb8\x9b\xd1\xaf\xf7\x39\x18\xf7\x08" +"\x06\x0e\x39\x80\x1d\x0e\x39\x80\x1d\x50\xf8\x3a\x45\x0a\xed\xf8\x4a\x16\xbd\xf7\x83\x05\xdd\x06\xa9\xa4\x0a\xfb\x02\xfb\x50\x05" +"\x4d\xd9\x1d\x42\xad\x1d\xca\x06\x59\xfb\x83\x05\x0e\xfb\x14\xda\xf7\x47\x15\x88\x76\x89\x77\x7e\x1a\x32\xd6\x50\xf7\x03\xf7\x1c" +"\xf6\xe1\xf7\x00\x6b\x0a\x0e\x70\x43\x0a\x0e\x70\x43\x0a\xf7\x1d\xf7\x4e\x15\x88\x7b\x89\x7d\x81\x1a\x58\xbe\x64\xcd\xba\xb8\x9d" +"\xab\xac\x1e\xa3\xa1\x93\x9c\x95\xb4\x08\x47\x06\x62\x7e\x74\x7c\x5b\x1b\x63\x75\x99\xa5\x1f\x8c\x9b\x05\x0e\xfb\x17\xf7\x3b\xf8" +"\xb0\x15\x2c\x1d\xbe\xf7\x83\x05\xd2\x5d\x0a\xf7\x1f\x06\x5b\xf7\xc1\xf7\x22\xf7\x83\x05\xfb\x28\x06\xfb\x02\xfb\x50\x05\x4e\x3b" +"\x1d\x0e\x7b\xa9\xd4\x1d\xf7\x25\xd3\x1d\xfc\x3d\xb4\x0a\x0e\xf1\xf9\x27\x16\xf7\x07\xf8\xb0\x05\xfb\x51\x06\xfb\x51\xfc\x29\x7f" +"\xf8\x29\x05\xfb\x50\x06\xfb\x07\xfc\xb0\x05\xf7\x17\x06\xe3\xf8\x30\x97\xfc\x30\x05\xf7\x03\x06\xf7\x52\xf8\x30\x33\xfc\x30\x05" +"\x0e\x69\xa9\x0a\x21\x0a\xf7\x07\xf8\xb0\x9d\x0a\x70\x7d\x0a\x81\xfb\x05\x15\xc5\xb0\x5e\x45\x5a\x7d\x56\x72\x60\x1f\x54\x6b\x5b" +"\x6c\x57\x1b\x51\x66\xb7\xd1\xf7\x13\xd9\xf4\xe8\x1f\x0e\x70\xd7\x48\x0a\xf7\x46\xd3\x1d\xfc\x5e\x06\x0e\x70\xf7\xcf\xf8\xb0\x23" +"\x1d\xfb\x35\xfd\x8a\x20\x1d\xc7\xf7\xae\x05\x4f\xa1\xb7\x70\xd4\x1b\xdf\xd4\xb2\xd4\xc0\x1f\xbc\xce\xa7\xe9\xe7\x1a\xf7\x0e\x44" +"\xe0\x25\x47\x53\x6e\x4f\x5e\x1e\xf7\x03\x74\x15\xc1\xad\x5f\x45\xfb\x12\x41\xfb\x00\x35\x56\x5f\x1d\x39\xf8\xe8\xf7\xe6\x15\x8c" +"\x9a\x8c\x99\x95\x1a\xb2\x7c\xb3\x70\xa9\x1e\xb6\x65\x58\x9f\x41\x1b\x38\x46\x6e\x52\x55\x1f\x4d\x4a\x5f\xfb\x0d\x24\x1a\xfb\x0b" +"\xdf\x3e\xf7\x18\xd9\xc7\xa1\xba\xbb\x1e\xb3\xb2\xa5\xb7\x9c\xc4\x08\xfb\x23\x06\x47\x6d\x6a\x6f\x58\x1b\x54\x6d\xae\xcd\xc1\x9a" +"\xc8\xa5\xbb\x1f\xc2\xa8\xb0\xa5\xbd\x1b\xbb\xaa\x70\x62\x81\x8a\x84\x88\x7e\x1f\x0e\xf7\x8f\xf8\x0b\x48\x0a\xf7\x70\x2f\x0a\xfc" +"\xf0\x3f\x0a\xf7\x88\x06\x0e\x39\x90\x1d\x0e\xf7\x8b\xf7\xdb\xfb\x6e\x15\x21\x0a\xb9\xf7\x6e\x05\xd3\xb6\x93\xa3\xc1\x1f\xf7\x0a" +"\xc0\xda\xf7\x09\xf7\x0e\x1a\xf7\x13\x23\xe5\xfb\x27\x8a\x1e\xb4\xf7\x58\x22\x0a\x62\xfb\x58\x05\x42\x63\x84\x77\x59\x1f\xfb\x0f" +"\x57\x3b\xfb\x07\xfb\x15\x1a\x2d\xc6\x40\xf0\x69\x1e\x7f\xad\x9c\x89\xb3\x1b\xa3\xf7\x05\x15\x62\x8e\x79\x8f\x75\x98\x08\x68\x9e" +"\x77\xb1\xb8\x1a\xc0\xa7\xc2\xbc\xb2\x1e\xae\xa8\xaa\x96\xc7\x90\x08\xf7\x20\x16\xb4\x89\x9e\x86\xa1\x7f\x08\xad\x78\x9f\x66\x60" +"\x1a\x50\x6c\x4f\x58\x65\x1e\x69\x71\x6d\x82\x52\x87\x08\x0e\x39\xf8\x33\xf7\xa4\x15\xf7\x7d\xf7\xa0\x05\xfb\x41\x06\xfb\x0e\xfb" +"\x37\x56\xf7\x37\x05\xfb\x37\x06\xf7\x0b\xfb\xa0\xfb\x82\xfb\xa4\x05\xf7\x41\x06\xf7\x14\xf7\x3c\xc2\xfb\x3c\x05\xf7\x37\x06\x0e" +"\x93\xe2\x16\xf8\x05\x06\x69\xfb\x2f\x05\x21\x0a\xc5\xf7\xa0\x05\x53\x94\x0a\x54\xf8\x15\x16\xf7\x22\x8c\x1d\xec\xc1\xc1\x94\x9c" +"\xbc\x1e\x0e\xf7\x8f\xc9\x16\xf9\x92\x06\xf7\x06\xf8\xb0\x80\x0a\xf7\xbd\xd6\x16\xf9\x3e\x06\x68\xfb\x31\x20\x1d\xc6\xf7\xa2\x05" +"\x53\x06\xe5\xf8\x3f\x80\x0a\xd0\xf7\x15\x29\x0a\x73\xfb\x05\x05\xf7\x47\x06\x30\xfc\x3f\x05\xf7\xaf\xa0\x0a\xfb\x23\x06\xb6\xf7" +"\x5c\x05\x30\xfc\x3f\x15\xa3\xb9\x0a\x69\x1f\x0e\xf7\x6c\xf0\x76\x0a\xf7\x67\xfb\x05\x15\x63\x1d\x0e\x5f\xdd\x76\x0a\x0e\x35\xf7" +"\x6e\xf7\x76\x15\xf7\x6b\x06\x34\x6d\x53\x5a\x48\x1b\x67\x6c\x9d\xa9\x7c\x1f\x82\x9b\x88\x98\x89\xa8\xfb\x21\x68\x18\x94\x58\x95" +"\x71\x9f\x6f\x08\x59\xb0\xd0\x6e\xdd\x1b\xe8\xe1\xaf\xc8\xbf\x1f\xc4\xcd\xaf\xef\xe6\x1a\xf7\x1a\x33\xdf\xfb\x22\x25\x35\x60\x38" +"\x4d\x1e\xf7\x07\x4d\x05\xbf\xb0\xb2\xa2\xbd\x1b\xc2\xb7\x5c\x52\x88\x1f\x8a\x80\x05\xfb\x67\x06\x0e\xf7\x77\xf7\xe5\xf7\x77\x15" +"\x89\x7d\x8b\x84\x80\x1a\xfb\x1d\xe0\x3a\xf7\x25\xe9\xe0\xb1\xcd\xc2\x1e\xc1\xcc\xad\xed\xe4\x1a\xf7\x1a\x35\xdd\xfb\x22\xfb\x20" +"\x24\x42\xfb\x1c\x56\x1e\x2d\x06\xb6\xf7\x5c\x5d\x1d\xbb\xf7\x77\x05\xf8\x28\xf7\x65\x15\xc5\xb0\x5e\x45\xfb\x11\x3d\x21\x2e\x51" +"\x66\xb7\xd1\xf7\x13\xd9\xf4\xe8\x1f\x0e\x5a\xf8\x0c\x16\x21\x0a\xf7\x07\xf8\xb0\x05\xfb\xbf\x06\xfb\x0a\x33\x3d\x22\x58\x9e\x68" +"\xb6\x6f\x1f\x5f\x77\x79\x73\x7f\x55\x84\x6a\x18\x7e\x59\x7b\x6a\x71\x6e\x08\xf7\x24\x06\x9f\xa3\x98\xab\x94\xb8\x93\xad\x18\xbc" +"\x95\xa0\x9c\xbd\x1b\xe7\x06\xa3\xf7\x05\x15\xfb\x21\x06\x73\x7d\x9a\xa6\xb3\xa6\xaa\xae\x1f\xf7\x21\x06\x0e\xfb\x3f\xf8\x59\x29" +"\x0a\xfb\xa1\x06\x2c\x1d\xe6\xf8\x3f\x05\xf7\x6e\x06\xa3\xf7\x05\xf7\x3b\xf7\x32\x05\xfb\x19\x06\x0e\x70\xf7\x22\x16\x21\x0a\xba" +"\xf7\x71\x05\xaf\xb0\xa4\x98\xa7\x1b\xa5\x9b\x7e\x78\x81\x8b\x8a\x8a\x85\x1f\x60\xfb\x5e\x84\x65\x6c\x70\x66\x8a\x19\x2b\x06\x78" +"\x2e\x05\xf7\x10\x06\xf7\x0a\x91\xcf\xc5\xa3\xf7\x08\xb2\xf7\x49\x18\x8e\x99\x8c\x98\x9a\x1a\xcc\x5b\xb7\x45\x60\x66\x7e\x6a\x54" +"\x1e\xb6\xf7\x60\x05\xf7\x1a\x06\x9f\xe8\x05\xfb\x1a\x2f\x0a\xfb\x20\x3f\x0a\x21\x33\x1d\xf5\x06\x0e\xfb\x3d\xca\x48\x0a\xf7\x75" +"\x2f\x0a\xfc\x01\x06\xf7\x18\xc5\x15\xe4\x06\xf7\x3c\xf7\x32\x05\xfb\x1a\x06\x0e\x40\xf8\x45\xf7\x76\x15\x9f\xea\x05\xfb\x67\x06" +"\xd0\xa5\xc5\xb9\xc8\x1b\xbc\xa8\x73\x58\x99\x1f\xf7\x18\xc5\x7e\xaa\x7f\x9d\x7a\x9d\x19\xb2\x64\x4a\xa3\x44\x1b\x34\x39\x68\x4e" +"\x52\x1f\x52\x4d\x65\x24\x2e\x1a\x4f\xa3\x4d\xb1\x66\x1e\x65\xb2\xc7\x76\xd0\x1b\xd6\xd0\xa3\xba\xc4\x1f\xb3\xab\xa0\xa7\xa1\xbe" +"\xfb\x18\xb0\x18\x44\x68\x5b\x68\x4e\x1b\x54\x64\xb8\xc9\x94\x8b\x94\x8c\x96\x1f\x0e\x39\xf8\xdd\xf8\x02\x15\x8d\xa3\x8b\x8c\x92" +"\x1a\xe7\x38\xc6\xfb\x14\x46\x50\x78\x67\x5e\x1e\x5d\x67\x6d\x50\x57\x1a\x5a\xab\x66\xc5\x78\x1e\xf7\x30\x58\x05\xa3\x82\x98\x7d" +"\x78\x1a\x64\x5f\x74\x42\x4e\x6c\x9d\xad\x91\x8b\x8e\x8d\x94\x1e\xfb\x20\x06\x89\x7e\x8b\x85\x83\x1a\x27\xd6\x56\xf7\x1e\xeb\xd6" +"\xa4\xba\xbb\x1e\xb0\xaf\xa3\xc0\xb6\x1a\xb9\x6c\xb4\x5d\x99\x1e\xfb\x39\xbf\x05\x70\x93\x7c\x9c\xa0\x1a\xae\xb1\xa3\xc2\xc2\xab" +"\x78\x69\x84\x8a\x87\x87\x82\x1e\x0e\xf7\xd8\x84\x0a\x2a\x1d\xbc\xf9\x79\x45\x0a\xf7\xda\xf8\xb0\x23\x1d\xfb\x14\xfc\xee\x05\x69" +"\x84\x7f\x82\x63\x1b\x7b\x3f\x0a\x9a\x06\xc0\x06\xc4\xa2\x90\x9a\xa3\x1f\xa8\x9e\xa0\xad\x95\xbb\x08\xf7\x43\xf9\xce\x23\x1d\x71" +"\xfb\x11\x20\x1d\x0e\xf7\xdf\xac\xd4\x1d\xf7\x3e\x06\x31\xfc\x3f\x05\xf7\xc4\xa0\x0a\xfb\x38\x06\xb6\xf7\x5c\x05\xfc\x57\xb4\x0a" +"\xf8\xb0\x16\xa3\xf7\x06\x05\xf7\x31\x06\xa3\x9b\x7b\x71\x64\x6d\x6a\x69\x1f\x0e\xf7\xa0\xd1\x16\x21\x0a\xbb\xf7\x77\x05\xf7\x58" +"\x06\x5a\xfb\x77\x05\xf7\xaf\x06\xc5\xc0\xc9\x1d\xfb\x23\x06\xb5\xf7\x5c\xbe\x1d\xf8\x14\xfc\x3f\x15\xa4\xb9\x0a\x68\x1f\x0e\x70" +"\xea\x16\x21\x0a\xca\xf7\xbb\x05\xc7\xb5\xb2\xa5\xbd\x1b\xb4\xa4\x72\x62\x84\x8a\x84\x8a\x85\xd5\x1d\x98\x8c\x98\x98\x1a\xd2\x4b" +"\xc5\x3e\x52\x5a\x78\x5a\x44\x1e\xa3\xf7\x07\x05\xf7\x1d\x06\x9f\xe8\x05\xfb\x1d\x06\xa0\xf0\x22\x0a\x76\x26\x05\x24\x33\x1d\xf2" +"\x06\x0e\xfb\x17\xf7\x40\xad\x0a\xd1\x06\xb2\xfb\x83\x05\xf7\x1e\x06\x5c\xf7\xc1\xf7\x21\xf7\x83\x05\xfb\x27\x06\xfb\x02\xfb\x50" +"\x05\x4f\x3b\x1d\xa6\xc5\x15\xe7\x06\xf7\x39\xf7\x32\x05\xfb\x17\x06\x0e\x39\x90\x1d\xfb\xfc\xf7\x5b\x15\x88\x7b\x8a\x7d\x80\x1a" +"\x56\xbe\x64\xd0\xba\xb9\x9d\xab\xac\x1e\xa2\xa2\x94\x9d\x96\xb5\x08\x46\x06\x5f\x7c\x77\x7e\x58\x1b\x60\x77\x98\xa6\x8f\x8b\x92" +"\x8c\x91\x1f\x0e\xdc\xd8\x16\xf7\x64\x06\x6a\xfb\x33\x20\x0a\xac\xf7\x33\x05\xf7\x64\x06\xf7\x2f\xf9\x6d\x96\x0a\x70\xda\x16\xf7" +"\x30\x06\x6b\xfb\x31\x20\x1d\xab\xf7\x31\x05\xf7\x31\x06\xf7\x07\xf8\xb0\xbb\x1d\x4c\xee\xf7\xc0\x15\x80\x5a\x87\x68\x66\x1a\xfb" +"\x0d\xe2\x3a\xf7\x16\xe0\xda\xb1\xcf\xc1\x1e\xc0\xcd\xad\xf1\xeb\x1a\xf7\x11\x39\xd8\xfb\x18\xfb\x0c\x2c\x4d\xfb\x05\x57\x1e\xf7" +"\x24\x06\xb4\xa3\xb3\xa2\xbc\x1b\xc3\xaa\x6d\x54\x7a\x89\x7d\x86\x75\x1f\x76\x2e\x15\x3a\x70\x60\x64\x4c\x1b\x57\x6a\xac\xc0\x95" +"\x8c\x94\x8d\x9a\x1f\x0e\xf7\x8b\xf8\x99\xf8\xd4\x15\x8c\x98\x8c\x92\x94\x1a\xda\x58\xba\x35\x4a\x53\x73\x5f\x62\x1e\x5e\x5a\x6d" +"\x37\x3f\x1a\x35\xc1\x58\xe8\xe9\xd9\xc6\xea\xa9\x1e\xfb\x06\x06\x61\x79\x78\x7b\x6c\x1b\x6d\x7b\xa0\xb2\xad\x94\xb4\x9a\xab\x1f" +"\xb2\x9d\x9f\x9b\xaa\x1b\xab\x96\x7c\x5f\x8c\x1f\xf7\xe0\xfb\x47\x15\x41\x47\x6a\x53\x60\x1f\x67\x5d\x74\x45\x4c\x1a\x30\xc5\x55" +"\xed\xf7\x20\xf3\xf7\x07\xf7\x2f\xe5\x51\xc0\x29\x1e\x78\x2b\x15\xac\xa0\x70\x60\x3a\x5b\x45\x54\x69\x76\xa6\xb6\xdc\xbb\xd1\xc3" +"\x1f\x97\xf8\x2c\x15\xfc\xaa\xfd\x59\x05\xda\x06\xf8\xab\xf9\x59\x05\x0e\xfb\x0e\xf7\xb0\xf7\xb8\x15\xda\xcd\xbc\xbb\xab\xb6\x08" +"\xbf\xd1\xaa\xd8\xc4\x1a\xc0\x6b\xac\x59\x20\x38\xfb\x23\xfb\xd1\x40\x1e\x69\x6d\x71\x75\x7b\x81\x08\x76\x7c\x83\x83\x83\x1a\x85" +"\x94\x82\x92\x94\xb0\xa3\xa5\xac\x1e\x7c\x29\x89\x79\x6b\x1a\x52\xad\x69\xc3\xb8\xae\xa0\xb7\xac\x1e\x9a\xa0\x94\x9f\x97\x1a\x92" +"\x84\x91\x82\x80\x84\x86\x7d\x83\x1e\x5d\x6f\x7a\x7c\x71\x1b\x79\x83\x94\x9e\xa5\xa1\xf7\x0a\xa0\xe2\x1f\x97\xc2\x15\xf7\x9d\xc3" +"\xaf\xe2\xc3\x1b\xa1\x99\x7a\x71\x6d\x7e\x5a\x78\x62\x1f\x6c\x48\x5f\x53\x3e\x49\x08\x0e\xf8\x90\xf8\x46\x16\xf7\x0b\x06\xf7\x2e" +"\xf9\x6d\x05\xfb\x10\x06\x20\xfc\x8e\xfb\x1f\xf8\x8e\x05\xfb\x0f\x06\xfb\x2e\xfd\x6d\x05\xf7\x11\x06\xf7\x00\xf8\x96\x05\xf7\xfd" +"\xfc\x96\x15\xf8\x45\x06\x9f\xea\x05\xfc\x45\x06\xf7\xe5\xf9\x1a\x15\x38\x40\x60\x3c\x57\x1f\x64\x4f\x6c\xfb\x04\x38\x1a\xfb\x09" +"\xd5\x3d\xf7\x02\xdf\xd4\xb5\xda\xc0\x1e\xb3\xc7\xaa\xf7\x04\xe0\x1a\xf7\x08\x41\xd9\xfb\x03\x1e\x6b\xfb\x05\x15\xbe\x88\xa7\x62" +"\x44\x1a\xfb\x11\x4b\x21\x3e\x5a\x6c\xb6\xd2\xf7\x12\xce\xf7\x02\xd6\x87\x1e\x0e\x79\xf8\xc9\xf7\x9d\x15\xf7\x3d\xf7\xa7\x22\x0a" +"\x42\xba\x0a\x56\x1b\x43\x49\x65\x49\x5c\x1f\x59\x44\x6f\x30\x32\x1a\xfb\x18\xce\x36\xf1\xc4\xc4\xa5\xb7\xb3\x1e\xa0\xa3\x97\x9b" +"\xaa\xbb\x9f\xfb\x1b\x18\xf7\x20\x06\xfb\x4c\xf7\xa6\x15\x6a\x4c\x83\x7d\x79\x6f\x08\x5b\x6c\x5f\x6c\x67\x1b\x6c\x75\xba\xcc\xf7" +"\x10\xc9\xf7\x02\xd0\xbf\xa7\x59\xfb\x04\x97\x1f\x0e\x79\xf8\xca\xf7\x9d\x15\xf7\x3d\xf7\xa7\x22\x0a\x41\xba\x0a\x57\x1b\x44\x4a" +"\x65\x49\x5c\x1f\x5b\x44\x6f\x30\x32\x1a\xfb\x18\xcc\x36\xef\xc3\xc5\xa5\xb7\xb2\x1e\xa0\xa3\x97\x9b\xaa\xbb\x9f\xfb\x1b\x18\x21" +"\x0a\xfb\x4c\xf7\xa6\x15\x60\x38\x7c\x73\x77\x74\x08\x69\x6d\x6b\x77\x72\x1b\x6a\x77\xb6\xd2\xbf\x98\xc3\xa1\xbb\x1f\xbb\xa2\xad" +"\xa7\xad\x1b\xbf\xa8\x59\xfb\x04\x96\x1f\xb4\xf8\x97\x26\x1d\x39\x2d\x1d\xf7\x3f\xf8\x67\x15\xfb\xc0\x27\x0a\xf7\xc0\x06\x0e\xfb" +"\xc5\xc5\xf7\x82\x15\xf7\x42\xfb\xe8\x05\x7b\x93\x95\x84\x97\x1b\x93\x90\x8f\x92\x92\x89\x93\x88\x93\x1f\xfb\x17\xf7\xdd\xf7\x17" +"\xf7\xdd\x05\x8e\x93\x8d\x93\x92\x1a\x93\x86\x8f\x83\x7f\x83\x85\x79\x81\x1e\x0e\xfb\xc5\xf7\xa7\xf7\x82\x15\xfb\x42\xf7\xe8\x05" +"\x9c\x82\x82\x92\x7f\x1b\x83\x86\x87\x83\x85\x8d\x83\x8e\x82\x1f\xf7\x17\xfb\xdd\xfb\x17\xfb\xdd\x05\x88\x84\x89\x83\x84\x1a\x83" +"\x90\x87\x93\x97\x93\x91\x9c\x95\x1e\x0e\x39\xf8\xa3\x9c\x15\x7c\x9c\x85\x98\x9a\x1a\x91\x8c\x92\x8d\x93\x1e\xca\xf7\xc0\x05\x8f" +"\x9d\x8d\x9a\x97\x1a\xa8\x7a\xae\x73\x9e\x1e\xa5\x6b\x5b\x97\x44\x1b\xfb\x31\x3a\x52\xfb\x16\x6f\x1f\xf7\x17\x06\xc2\x9c\xa9\x9f" +"\xcc\x1b\xbe\xa1\x7e\x6d\x76\x7d\x75\x77\x81\x1f\x77\x80\x8b\x8b\x43\x81\x51\x82\x18\x5b\x83\x66\x7d\x6c\x75\x08\x56\x65\x6a\x4e" +"\x4f\x1a\x65\x9d\x65\xa8\x73\x1e\x76\xa4\xad\x81\xb7\x1b\xc4\xbc\xa1\xc2\xc7\x1f\x88\x7c\x8b\x86\x84\x1a\x81\x8d\x85\x90\x80\x1e" +"\xda\x06\x24\x64\x56\x56\x4d\x1a\x57\xba\x70\xe3\xa8\x9f\x8d\x92\xab\x1e\x95\xbf\x05\x83\x72\x77\x88\x6c\x1b\x68\x7b\x98\xa9\xba" +"\xb5\xb9\xe4\xba\x1f\x97\x1d\x0e\x32\xf7\x31\xf7\x84\x15\xbc\xae\xa0\x99\xac\x1b\x9d\x90\x89\x73\xc8\x1f\x78\xba\xa4\x84\x9f\x1b" +"\xa9\xac\x95\x9e\xa9\x1f\xa9\x9f\xa0\xa1\xb3\xc5\x50\xb2\x18\x62\x6a\x76\x7e\x6a\x1b\x76\x82\x8d\xa2\x56\x1f\x9e\x5c\x6f\x93\x72" +"\x1b\x47\x5d\x68\x28\x4c\x1f\x98\xfb\x8b\x15\xbc\xaf\x9f\x99\xac\x1b\x9e\x8f\x89\x73\xc8\x1f\x78\xbb\xa4\x84\x9f\x1b\xa9\xac\x95" +"\x9e\xa9\x1f\xa9\x9f\x9f\xa1\xb4\xc5\x4f\xb2\x18\x61\x6a\x77\x7f\x69\x1b\x76\x83\x8d\xa2\x55\x1f\x9e\x5c\x6f\x93\x73\x1b\x47\x5c" +"\x68\x28\x4d\x1f\x0e\x39\x2d\x1d\xa9\xf8\x9a\x2e\x1d\xc9\xf7\x35\x2b\x1d\xf7\xfe\xf9\x5e\xf7\xac\x15\x7b\x77\x81\x7b\x7f\x75\x08" +"\x81\x79\x7d\x65\x84\x1a\x82\x93\x84\x95\x94\x8e\x8d\x9f\x9b\x1e\xb3\xba\xab\xa4\xe5\xc1\x08\x9c\x94\x8d\x8e\x93\x1a\x94\x85\x91" +"\x76\x96\x1e\x53\xa7\x4c\xbd\x66\xb7\x08\x98\x81\x83\x92\x86\x1b\x7e\x83\x85\x81\x78\xb0\x41\xa4\x6d\x1f\xfc\x3f\x06\xa4\xa9\xb1" +"\xd6\x9d\x1a\x95\x83\x91\x7f\x86\x87\x88\x7a\x7c\x1e\x70\x69\x46\x53\x63\x76\x08\x63\x75\x84\x86\x83\x1a\x83\x8e\x86\x94\x86\x1e" +"\xef\x4f\xa1\x7a\xba\x56\x08\x76\x9e\x8c\x8a\x94\x1b\x95\x92\x92\x94\x9f\x6b\xc8\x6c\xb3\x1f\x0e\xfb\x1e\xf7\x6e\xf9\x69\x15\xfd" +"\x29\x07\xa4\x6d\x41\xb0\x79\x1b\x83\x83\x83\x83\x81\x8f\x86\x9b\x7e\x1f\xbb\x61\xa6\x69\xba\x3a\x08\x74\x98\x8e\x87\x92\x1b\x97" +"\x8c\x8c\xac\x9e\x1f\xb0\xcc\xac\xb6\xba\xb3\x08\xa0\x9d\x8c\x8d\x94\x1a\x95\x84\x92\x82\x76\x4c\x6b\x6d\x65\x1e\xf9\x29\x07\x0e" +"\xf7\xfe\xfa\x25\xf7\xad\x15\xc7\xfd\x29\x07\xa9\xb1\xab\xca\xa0\x1a\x94\x84\x92\x81\x82\x89\x8a\x76\x79\x1e\x67\x61\x63\x6b\x56" +"\x6b\x08\x56\x6c\x8b\x8b\x7f\x1a\x84\x8f\x88\xa2\x7e\x1e\xdc\x5c\xad\x70\xb5\x5b\x08\x7b\x98\x90\x87\x95\x1b\x93\x93\x93\x93\x9d" +"\x66\xd5\x72\xa9\x1f\x0e\xf7\xfe\xe1\xf7\xad\x15\xf9\x29\x06\x72\x6d\x66\x41\x79\x1a\x83\x93\x83\x93\x95\x90\x8f\x9b\x98\x1e\xb5" +"\xbb\xad\xa6\xdc\xba\x08\xa2\x98\x8f\x8e\x92\x1a\x97\x8a\x8c\x6a\x9e\x1e\x4a\xb0\x60\xac\x63\xba\x08\xa0\x79\x89\x8c\x82\x1b\x81" +"\x84\x84\x82\x76\xab\x4c\xa9\x65\x1f\xfd\x29\x06\x0e\xfb\x1e\xf7\x6e\x25\x15\xc7\xf9\x29\x06\x6d\xb1\xca\x6b\xa0\x1b\x94\x92\x92" +"\x95\x94\x8a\x8d\x76\x9d\x1f\x61\xaf\x6b\xb3\x6b\xc0\x08\xc0\x6c\x8b\x8b\x7f\x1b\x84\x88\x87\x74\x7e\x1f\x5c\x3a\x70\x69\x5b\x61" +"\x08\x7b\x7e\x87\x86\x81\x1a\x83\x93\x83\x93\x9d\xd4\xb0\xa4\xaa\x1e\x0e\xfb\x1e\xf7\x6f\xf7\x16\x70\x1d\xfb\x1e\xf7\x0d\x47\x15" +"\x60\xf7\x9b\xb6\x07\xfb\x39\xf7\x96\x70\x1d\x7a\xa5\xfb\x6e\x15\x21\x0a\xbf\xf7\x8b\x05\x68\xb0\xbe\x79\xc6\x1b\xf7\x23\xf7\x0e" +"\xf7\x17\xf7\x2c\xd2\x6d\xb4\x43\xa8\x1f\xe0\xb8\xb5\xc6\xd7\x1a\xec\x3d\xca\xfb\x0c\x36\x43\x70\x58\x5c\x1e\x63\x60\x79\x62\x76" +"\x28\x08\xf7\x23\x99\x15\x98\xc8\x93\xa2\x9c\xa1\x08\xa6\x9f\xaf\x9d\xae\x1b\xb7\xa8\x6f\x60\x5b\x6e\x59\x63\x77\x1f\x79\x82\x78" +"\x87\x65\x89\x79\x39\x18\x8c\x92\x95\x8b\x8d\x1b\xae\xa0\x86\x7e\x9d\x1f\xa4\x78\x9b\x6a\x6a\x1a\x2c\x42\x39\x36\x66\x69\x98\xa2" +"\x72\x1e\x0e\x39\x4c\x0a\xf7\x06\xf8\x37\x2b\x0a\x39\x4c\x0a\x93\xf7\xa4\x15\xf7\x20\xf7\x27\x05\x3e\x06\x24\x2a\x4e\xec\x05\x3e" +"\x06\xd2\xfb\x27\x05\x0e\x39\x79\x1d\x4b\xf8\x37\x29\x1d\x39\x4c\x0a\xb2\xf8\x27\x2e\x0a\x0e\x4f\xf7\xef\xf7\xbb\x15\x4f\xf7\x89" +"\x05\xfb\x26\x06\xf7\x04\xfc\x03\xfb\xb4\xfc\x1b\x05\xf7\x2f\x06\xf7\x4c\xf7\xa5\xcf\xfb\xa5\x05\xf7\x28\x06\xfb\x0e\xf8\x1f\xf7" +"\x9e\xf7\xff\x05\xfb\x2c\x06\x0e\xf7\xfe\xf8\x8b\xf9\x4b\x15\xfb\x5c\xfb\x36\xfb\x35\xfb\x5c\xfb\x58\xf7\x36\xfb\x36\xf7\x57\xf7" +"\x59\xf7\x37\xf7\x37\xf7\x57\xf7\x58\xfb\x36\xf7\x39\xfb\x55\x1f\x87\xfb\xd0\x15\xfb\x52\xf7\x50\x05\xb8\xc2\xcc\xa2\xd1\x1b\xd0" +"\xcb\x74\x60\xc4\x1f\xb3\x63\x15\xbb\x52\xa2\x4c\x42\x1a\x43\x74\x4b\x5d\x53\x1e\xfb\x54\xf7\x57\x05\xf7\x2c\xfb\x7f\x15\x5f\x54" +"\x48\x73\x45\x1b\x45\x4b\xa2\xba\x50\x1f\xf7\x55\xf7\x55\x05\xfb\x7d\xfb\x2d\x15\x5f\xc1\x74\xcb\xd1\x1a\xd3\xa2\xcb\xba\xc4\x1e" +"\xf7\x52\xfb\x50\x05\x0e\x9d\xf8\xd7\x16\x9f\x07\x84\x8d\x74\x90\x3e\x9e\x8b\x8c\x70\x9c\x19\x45\xbb\x64\xd8\xe4\x1a\x94\x07\x9b" +"\x07\x9f\x67\x94\x7e\x97\x7c\x08\x5c\xb1\xc8\x6d\xc1\x1b\xe6\xd3\xd5\xe8\xe7\x4a\xd2\x39\x71\x80\x88\x79\x67\x1f\x88\x8a\x83\x86" +"\x81\x87\x08\xa9\xb7\x94\xa5\xb0\x1a\xe5\x43\xd2\x2f\x2e\x44\x45\x31\x67\x92\x78\xad\x56\x1e\xa3\x58\x78\x91\x70\x1b\x3d\x49\x40" +"\x33\x2d\xd3\x43\xe9\xdb\xd1\xbe\xe5\xb6\x1f\x8c\x72\x05\x83\x07\x54\x71\x45\x65\x5f\x1e\x5c\x5a\x8a\x8a\xfb\x0e\x6e\x83\x89\x18" +"\x77\x07\x0e\xf4\xf8\x34\x83\x1d\xf8\x10\xf7\xb8\xa8\x0a\xd6\x91\xcf\xa2\x0a\x70\xf8\xb6\xf9\x2b\x23\x1d\x7d\x48\x20\x1d\x70\xfb" +"\x12\x9e\x1d\x7f\x54\x05\x21\x0a\xf7\x13\xf8\xe8\x05\xc7\x06\x99\xce\x05\x4f\x06\x99\xcd\x22\x0a\xfb\x48\xfb\xb8\xe9\x1d\x36\x55" +"\x6a\xb8\xd3\xf7\x0e\xd6\xf7\x01\xde\x1f\x0e\x6f\xf8\x0d\xf8\xa8\x15\x3a\x88\x59\x77\x56\x59\x08\x49\x4d\x61\x24\x29\x1a\xfb\x1a" +"\xe5\x36\xf7\x22\xea\xe1\xb3\xd4\xc5\x1e\xba\xc6\xac\xee\xe0\x1a\xd4\x6e\xc3\x43\xcc\x1e\xfb\x0e\xf7\x03\x05\xf7\x7a\x06\xa3\xf7" +"\x03\x05\xfc\x23\x06\x76\x2a\x05\xf7\x2c\xfb\x6c\x15\xc6\xaf\x5f\x41\x5b\x7b\x53\x71\x60\x1f\x57\x6b\x5c\x6e\x58\x1b\x51\x66\xb7" +"\xd1\xf7\x13\xd9\xf4\xe9\x1f\x0e\xfb\x14\xf7\xa0\xf9\x89\x15\x42\xfb\x12\x4c\x31\xfb\x20\xfb\x44\xf0\xfb\x0f\xf7\x35\xfb\x78\x99" +"\x61\xde\xf7\x20\xdf\xf7\x0b\xf7\x03\xf7\x1a\xfb\x0a\xf7\x25\x29\xf7\x1f\x4d\xf7\x00\x08\x0e\xfb\xc5\xf7\xa5\xf9\x7b\x52\x1d\x39" +"\x65\x0a\xd4\xf8\x47\x82\x0a\x39\x4d\x0a\x91\xf7\xb7\x15\xf7\x1f\xf7\x27\x05\x3f\x06\x24\x2a\x4e\xec\x05\x3d\x06\xd3\xfb\x27\x05" +"\x0e\x39\x4d\x0a\xad\xf8\x3a\x3b\x0a\xf7\xfe\xf9\x93\xf7\x6c\x15\xc8\xfc\x62\x07\x91\xf6\xc3\xbd\xf7\x01\x89\x08\xac\x0a\x42\x2c" +"\x1a\xfb\x08\xb8\x38\xc2\x0a\xc9\xfb\xb7\x06\xfb\x01\x89\x53\xbd\x85\xf5\x08\x0e\x39\x4d\x0a\xf7\x15\xf8\x27\x2d\x0a\x70\xca\x16" +"\x58\x1d\x89\x7f\x87\x74\x1f\x3b\xfc\x0b\x05\x6b\x84\x7d\x7f\x6d\x1b\x7c\x85\x48\x1d\xec\xf8\x5c\xb7\x1d\xfb\x20\x06\x0e\x39\xf8" +"\x4f\xfb\x40\x15\x83\x76\x74\x88\x70\x1b\x6a\x79\x9a\xa7\xb1\xb1\xc3\xc3\xb8\x1f\xd2\xc1\xb3\xb8\xa5\xc1\x08\xfb\x1e\x06\x65\x77" +"\x5f\x72\x5b\x1b\x52\x65\xaf\xc3\x95\x8c\x95\x8d\xa4\x1f\xf7\xff\x06\x8c\x0a\xfb\x0a\x27\x1a\xfb\x10\xe1\x37\xf7\x12\x9f\x97\x8c" +"\x91\xa6\x1e\x35\x57\x70\x6b\x58\x1a\x57\xbc\x6e\xe0\xa5\x9e\x8d\x92\xaa\x1e\xfb\x60\xf8\xb3\x8f\x0a\x0e\xfb\x33\xf8\x09\xf7\xcb" +"\x15\x32\x8c\x6d\x98\xb5\x1a\xb7\xb3\xab\xc2\xc1\xa4\x76\x5d\x8d\x1e\xf7\x20\x96\x06\xf0\x39\xc8\xfb\x1b\x45\x59\x7c\x6c\x61\x1e" +"\x60\x6a\x73\x5d\x59\x1a\x61\x99\x6c\xa8\x74\x1e\x63\x7d\x79\x80\x78\x75\x08\x73\x70\x7c\x63\x66\x1a\x2e\xd9\x52\xf7\x10\xdc\xca" +"\x1d\x50\x6b\x67\x74\x4f\x1b\x5c\x70\x9f\xae\xa9\x9d\xa7\xa8\x98\x1f\x9f\x94\x9d\x8d\xda\x8c\x08\x0e\xfb\x33\xf8\x09\xf7\xcb\x15" +"\x36\x8c\x70\x98\xb5\x1a\xb7\xb0\xab\xbf\xc0\xa4\x76\x5d\x8c\x1e\xf7\x20\x06\x8c\x90\x8b\x90\x8c\x1a\xf0\x39\xc8\xfb\x1a\x47\x59" +"\x7c\x6c\x63\x1e\x61\x6a\x74\x5d\x58\x1a\x62\x97\x6c\xa3\x74\x1e\x66\x7d\x79\x80\x79\x75\x08\x75\x71\x7d\x62\x66\x1a\x2e\xd6\x52" +"\xf7\x0d\xdb\xca\x1d\x51\x6b\x66\x73\x51\x1b\x60\x72\x9f\xae\xa9\x9d\xa7\xa6\x98\x1f\x9f\x94\x9b\x8d\xd7\x8c\x08\xe9\xf8\xcc\x26" +"\x1d\x54\xf8\xe6\xf7\xac\xc5\x0a\xc9\xf7\xb6\x15\xfc\x79\x06\x75\x27\x05\xf8\x79\x06\x51\xfb\xac\xc5\x0a\x0e\x65\xf8\xb8\xf7\x84" +"\x15\x92\x07\x94\x07\x89\xd5\x86\xa8\x7c\xb2\x08\xde\x69\x3a\xbe\x28\x1b\xfb\x29\x2c\xfb\x00\xfb\x3e\xfb\x3c\xe6\x25\xf7\x2b\xf7" +"\x06\xd7\xc0\xf2\xab\x1f\x8d\x90\x8d\x92\x05\x4b\x06\x8a\x89\x89\x86\x8a\x88\x08\x4f\x70\x53\x69\x42\x1b\x60\x68\x96\xa0\x73\x1f" +"\x7b\x9a\x82\x9b\x80\xae\x8c\xe9\x18\xf7\xac\xc2\x15\xfb\xaa\xdc\x06\xcf\xab\xae\xa3\xce\x1b\xc1\xaf\x7b\x64\xac\x1f\x96\x7e\x8f" +"\x84\x91\x7a\x08\x0e\x70\x82\x1d\x0e\x70\x82\x1d\xf7\x74\xc2\x1d\x69\xf8\x16\x81\x0a\xf8\x52\xf9\x6a\x15\x2a\x0a\x5e\xfb\x66\x72" +"\xfb\xc9\x05\xcf\x06\xf6\xf7\xc9\x05\x3c\xfc\x06\x27\x1d\x0e\xfb\x6a\xbe\x16\xf7\xd9\xf8\xd5\xfb\xd9\x37\xf7\x85\xfb\x36\xfb\x85" +"\x37\xf7\x85\xfb\x37\xfb\x85\x06\x0e\xf7\x04\xf7\xf4\xf7\x98\x15\xfb\x37\x60\xf7\x37\xfb\x3a\xbb\xf7\x3a\xf7\x35\xb6\xfb\x35\xf3" +"\x06\xe7\xa2\xcc\xd9\xe2\x1a\xeb\x36\xdc\x27\x2a\x39\x38\x2a\x36\xcd\x3e\xe8\x74\x1e\xa6\xf7\xcb\x15\xd0\xc5\x50\x45\x43\x51\x51" +"\x43\x43\x52\xc5\xd4\xd3\xc5\xc3\xd5\x1f\x0e\x39\xf8\x09\xf8\x40\x15\xfb\x08\x06\xaf\xf7\x38\x05\xf7\x92\x06\xa4\xf7\x0c\x05\xfc" +"\x1e\x06\xfb\x2b\xfd\x5c\x20\x1d\xcd\xf7\xc8\x05\xf7\x07\x06\x49\xfb\xc8\x05\xf7\x17\x06\xba\xf7\x6d\x05\xda\x9b\xbe\xb7\xd4\x1b" +"\x99\x62\x1d\x87\x8b\x86\x1b\x52\x4f\x61\x42\x5d\x1f\xa1\xf5\x05\xfb\x17\x06\x0e\x39\xf7\x3a\xfb\x6e\x15\xf7\x18\x06\xbb\xf7\x78" +"\xf7\xcb\xf8\xa6\x28\x0a\xfb\x57\xfc\x14\x68\xf8\x14\x05\xfb\x28\x06\xe1\xfc\xa6\x05\x0e\x70\x60\x0a\xf7\x44\xf7\xd1\x15\x60\x7b" +"\x68\x75\x57\x1b\x5c\x88\x0a\x70\x75\x1d\x90\xf7\xd4\x29\x1d\x70\x60\x0a\xf7\x05\xf7\x3e\x15\xa3\xf7\x04\x05\x48\x06\x92\xb8\xad" +"\xaf\xb8\x93\x95\xb9\x18\x3f\x85\x48\x48\x80\x3d\x77\x2b\x18\x0e\x70\xf8\x9e\x29\x0a\x79\x38\x82\x9c\x84\x94\x77\xa2\x19\xaa\x70" +"\x71\x97\x64\x1b\x3e\x3e\x64\x4a\x59\x1f\x53\x42\x67\x24\x30\x1a\x4b\x9c\x5a\xaf\x63\x1e\x6a\xaa\xb0\x7c\xbe\x1b\xd2\xc5\xa6\xbe" +"\xb1\x1f\x7b\x42\x05\x4d\x7e\x4d\x5b\x48\x1b\x6c\x6e\x95\x9a\x7d\x1f\x83\x94\x87\x95\x9e\x1a\xfb\x25\x06\x8a\x82\x8a\x84\x87\x1a" +"\x63\xaa\x5e\xb4\x76\x1e\x78\xae\xb6\x83\xc7\x1b\xf7\x3d\xf1\xcf\xf7\x18\xa7\x1f\xf7\x0a\xf8\xc2\x05\xfb\xa6\xfb\x00\x15\xc4\xac" +"\x62\x42\xfb\x0c\x3d\x23\x32\x57\x6d\xb0\xcb\xf7\x0f\xd7\xf7\x06\xde\x1f\xf7\x0b\xf7\xcb\x49\x1d\x32\xf8\xae\xf3\x15\xfc\x7d\x06" +"\x75\x23\x05\xf8\x7d\x06\xfc\x5f\xf7\x20\x15\xf8\xa3\xf7\x49\xa5\xf7\x0d\xfc\x56\xf7\x4a\x6f\xfb\x17\xf7\xb8\xfb\x03\xfb\xe7\xfb" +"\x05\x05\x0e\x70\xf7\xf2\xf9\x34\x15\x97\xc4\x22\x0a\x7f\x52\x05\x4d\x27\x0a\xc9\x06\xfb\x12\xfc\xe4\x20\x1d\xd0\xf7\xd8\x05\xc7" +"\x98\xc4\xb9\xc9\x1b\xb5\xa6\x74\x67\x83\x89\x7a\x87\x7b\x1f\x45\xfb\xde\x20\x1d\xd8\xf7\xfe\x05\x8f\x9d\x8d\x9f\x9b\x1a\xdc\x53" +"\xbf\x33\x67\x63\x81\x7a\x69\x1e\x71\x7e\x7f\x7f\x70\x68\xa7\xf7\x16\x18\xf7\x48\x06\x9c\xdb\x05\x0e\x70\x86\x1d\x3c\xb1\x1d\x5f" +"\xf7\xbc\x6f\x15\x9c\xde\xc7\xf3\xf7\x0b\xf7\x2b\xb4\xc0\x9b\xa0\x9a\xa3\x08\xb1\xca\x9d\xc2\xc1\x1a\xdc\x45\xcf\x36\x5b\x5f\x76" +"\x65\x6b\x1e\x76\x72\x80\x75\x7e\x5d\x08\xf2\x67\x56\xbb\x3a\x1b\x36\x48\x46\x34\x4a\xa3\x57\xdc\xfb\x02\x1f\xf7\x2c\xfb\x60\xb2" +"\x49\xa5\x24\x08\x0e\x69\x96\x16\xf8\xdb\xf8\x25\x06\xfb\xb8\xf7\xdc\xfb\xb7\xfb\xdc\x05\xbe\xfb\xf2\x15\xf7\xdc\x07\xf7\x84\xf7" +"\xa2\xf7\x85\xfb\xa2\x05\xfb\xdc\x07\x0e\x2a\x1d\xf7\x46\xf9\x86\x9b\x1d\x39\xf7\xea\x87\x0a\xf7\xaa\xf7\x11\x9f\x0a\x7e\x4b\x5b" +"\x0a\x7c\x85\x48\x1d\x0e\x2a\x1d\xf7\x6d\xf9\x66\x15\xfb\x9f\x27\x0a\xf7\x9f\x06\x0e\xd6\xf8\x37\xf7\xbd\x15\x6d\xae\x80\x96\x79" +"\x9b\x08\xa8\x6b\x63\x9b\x65\x1b\x32\x38\x39\x34\x4a\xb9\x5d\xcd\xc5\xc2\xa7\xda\xf1\x1f\x37\xd7\xb0\x74\xc2\x1b\xe6\xde\xdc\xe3" +"\xcc\x5d\xb9\x4b\x63\x5b\x7b\x6e\x5f\x1f\x75\x7c\x85\x87\x51\x60\x08\xa8\x6a\x15\xc7\xd5\xc4\xa9\xb6\x1b\xb3\xab\x6b\x65\x53\x54" +"\x55\x52\x6f\x79\x93\xa9\x66\x1f\x74\x9e\x81\x95\x79\xa2\x08\x44\x16\x71\x75\x80\x83\x67\x75\x08\x6e\x5c\x73\x82\x6e\x1b\x62\x6b" +"\xaa\xb3\xc4\xc1\xbf\xc5\xb4\xb9\x6c\x50\xba\x1f\x0e\xfc\x00\xf7\x50\xf8\x9f\x15\xb0\x85\xda\x82\xe8\xda\x1d\x8e\x8a\x80\x95\x1e" +"\x81\x95\x97\x86\x98\x1b\xa6\xa0\xa1\xa7\xa9\x6f\xa3\x68\x60\x6c\x6c\x51\x7d\x1f\x7b\x4b\x86\x46\xfb\x45\x1a\xfb\x78\x07\x5f\x8f" +"\x4e\x95\x22\xc0\x1d\x95\x8e\x0a\x0e\x69\xf7\xab\xf9\xb4\x15\xfc\xfa\x07\x5f\x8f\x4e\x95\x23\xc0\x1d\x94\x8e\x0a\xf8\xf2\x07\x0e" +"\x69\xf7\xf4\xfb\x61\x15\xf8\xfa\x07\xb7\x87\xc8\x81\xf3\xda\x1d\x8d\x8a\x80\x96\x1e\x82\x95\x96\x86\x99\x1b\xa5\xa1\xa1\xa6\xaa" +"\x6f\xa3\x68\x5f\x6c\x6c\x51\x7d\x1f\x7b\x4b\x86\x42\xfb\x41\x1a\xfc\xf2\x07\x0e\xdc\xf8\xeb\x16\xf7\xa1\x07\xf7\x29\x86\xb1\x71" +"\xb7\x1e\xd1\x61\x3e\xb4\x31\x1b\x38\x46\x6a\x4d\x5e\x1f\x66\x5a\x85\x67\xfb\x36\x1a\xfb\xa1\xd1\xf7\xa4\x07\xf7\x05\x91\xba\x9d" +"\xad\x1e\xbd\xa6\xc5\xad\xc8\x1b\xc4\xc2\x6e\x5d\xa8\x1f\xa2\x67\x91\x62\xfb\x12\x1a\xfb\xa4\x07\x0e\xf8\x32\xf8\xa3\xf9\x6e\x15" +"\xfb\x5b\xfb\x3a\xfb\x38\xfb\x57\xfb\x63\xf7\x35\xfb\x38\xf7\x5d\xf7\x61\xf7\x37\xf7\x36\xf7\x5f\xf7\x5e\xfb\x37\xf7\x37\xfb\x5e" +"\x1f\xfb\x01\xfb\x63\x15\xa9\xa4\x72\x6d\x6d\x72\x72\x6d\x6d\x72\xa4\xaa\xa8\xa5\xa4\xa8\x1f\xfb\x14\xfb\x05\x15\x96\x59\x96\x75" +"\xa5\x6d\x08\x54\xbb\xc7\x71\xdc\x1b\xdc\xc7\xa5\xc2\xbb\x1f\xa5\xa9\x96\xa1\x96\xbd\x84\x36\x80\x62\x6d\x5e\x08\x4c\x61\x4b\x6b" +"\x38\x1b\x3e\x4f\xa6\xc1\x61\x1f\x67\xba\x7c\xb8\x84\xe8\x08\xf7\xee\xf7\x05\x15\xa9\xa4\x72\x6d\x6d\x72\x72\x6d\x6d\x72\xa4\xaa" +"\xa8\xa5\xa4\xa8\x1f\x0e\xf7\xd2\xf8\xb0\x23\x1d\xfb\x07\xfc\xb0\x05\xd4\x06\x2e\x53\x67\x61\x57\x1a\x57\xb8\x6c\xd5\x9e\x8e\x8b" +"\x94\xb4\x1e\x96\xbf\x05\x82\x6d\x86\x8a\x7c\x1b\x6c\x7b\x9a\xa6\xb8\xaf\xbd\xcb\xb8\x1f\xf7\x2f\xf9\x6d\x23\x1d\x71\xfb\x11\x20" +"\x1d\x0e\x47\x0a\x0e\x47\x0a\xbd\xf9\x7b\x44\x0a\x47\x0a\xb0\xf9\x7b\x52\x1d\x47\x0a\xf7\x29\xf9\xa9\x26\x1d\x2a\x1d\xf7\x67\xf9" +"\x7c\x15\x69\x7e\x79\x7a\x74\x1b\x80\x88\xe0\x1d\x73\x1b\x54\x60\x61\x40\x74\x1f\xc1\x06\xac\x9b\x9b\x9a\x9d\x1b\x93\xa1\x84\x84" +"\x99\x1f\xbe\x72\x05\x85\x98\xa0\xdf\x1d\x96\xa0\x96\xb3\x08\x0e\xf7\xd9\xf8\xb0\x5b\x0a\x7d\x84\x48\x1d\xc4\xf9\xe7\x39\x0a\x43" +"\xf7\xa6\xf7\xde\x15\xb8\xf7\x66\x5d\x1d\xaf\xf7\x3b\xd8\xd1\xd9\xfb\x81\x05\xf7\x27\x06\xfb\x0b\xf7\xd8\xf7\x87\xf7\x6c\x05\xfb" +"\x3e\x06\x0e\x39\x7b\x0a\x5a\xfc\x1a\x3c\x0a\x5f\x68\x66\x5f\x83\x81\xb2\x0a\xa0\xeb\x18\x0e\x39\xf7\xcc\xf8\xb0\x23\x1d\xfb\x05" +"\xfc\xb0\x9a\x1d\x0e\x47\x1d\xf7\x9f\x56\x0a\x39\x9b\x16\xf7\x26\x06\xf7\x50\xf7\xec\xbc\xfb\xec\x05\xf7\x26\x06\xfb\x1c\xf9\x6d" +"\x22\x0a\xb5\xfb\x82\x05\x0e\xfb\x82\x47\x1d\xf7\x6b\xf9\x6d\x31\x0a\x47\x1d\xfb\x24\x4f\x31\x0a\xfb\x33\xf7\xff\xce\x1d\xf7\xe6" +"\xf8\x53\x27\x1d\x0e\x32\xf8\xa5\xf3\x15\xfc\x7d\x06\x75\x23\x05\xf8\x7d\x06\xf7\x19\xf9\x04\x15\xfc\xa4\xfb\x49\x72\xfb\x0d\xf8" +"\x56\xfb\x4a\xa7\xf7\x17\xfb\xb8\xf7\x03\xf7\xe7\xf7\x05\x05\x0e\x39\xf8\x4f\xf7\xd0\x15\x97\xc2\x05\xfb\x1f\x06\x8a\x91\x89\x95" +"\x87\x9c\x82\xab\x19\x81\xb1\x89\x93\xa0\x1d\xfb\x1c\x3b\x47\x72\x5b\x57\x1e\x5a\x5e\x6d\x4d\x51\x1a\x71\x8f\x79\x9e\x54\x1e\x8e" +"\x84\x05\x4f\x06\x7f\x54\x05\xe4\x06\x8c\x86\x05\x87\x07\x8c\x84\x8c\x86\x8c\x82\x08\x24\x06\x7f\x54\x05\xf7\x04\x06\x81\x53\x63" +"\x61\x31\x56\xac\x26\x18\xa0\xbc\xa8\x92\xb0\x1b\xa6\xa2\x87\x80\xb8\x1f\x7f\xbc\x9f\x88\xa6\x1b\xbc\xb5\x97\xac\xcb\x1f\x79\xf7" +"\x02\x05\x76\x5e\x6a\x82\x67\x1b\x7a\x74\x8e\x90\x71\x1f\x94\x5f\x88\x8b\x79\x1b\x6c\x7e\x87\x6e\x4b\x1f\xd9\xc1\xb8\xba\x9b\xb7" +"\x08\xf7\x02\x06\x97\xc2\x05\xfb\x02\x90\x06\x93\x8b\x8e\x89\x99\x1e\x0e\xf7\x5e\x16\xf7\x10\xf8\xda\x7c\x0a\x0e\xf7\x04\xf8\x14" +"\xf8\x82\x15\x9f\x64\x72\x92\x6a\x1b\x27\x37\x38\x29\x2a\xe5\x36\xf2\xab\xa9\x93\x9b\xa6\x1f\xbe\xaa\xae\xc4\xbf\x1a\xb6\x78\xbd" +"\x68\xc0\x1e\xf7\x2a\xf7\x2a\x8e\x79\xa1\x52\x9a\x6e\x19\x77\x96\x90\x85\x95\x1b\x92\x90\x90\x92\x8e\x8b\x8b\x88\x9d\x1f\x84\xae" +"\x89\xa1\xa6\x1a\xab\x91\xbd\x92\xa2\x1e\x8d\x90\x8b\x8d\x8d\x1a\x91\x87\x8f\x84\x88\x88\x8b\x8a\x88\x1e\x81\x69\x6d\x87\x67\x1b" +"\x70\x75\x8d\x92\x68\x1f\x8e\x79\x8b\x8b\x88\x1b\x85\x85\x84\x85\x7b\xb5\x73\xc2\x7a\x1f\xa2\x84\x91\x89\x05\xfb\x8c\xfb\x41\x15" +"\xd3\xc7\x4e\x42\x41\x4f\x4f\x41\x40\x4f\xc7\xd6\xd5\xc7\xc6\xd8\x1f\x0e\xfc\x22\xf7\x7b\xc1\x0a\x0e\xfb\x1e\xf7\x7f\xf7\x53\x15" +"\x93\x75\x7b\x8f\x7a\x1b\x46\x4f\x52\x49\x65\xa8\x73\xb8\xbe\xba\xa4\xb5\xa9\x1f\xa0\xa9\x94\xaa\xb8\x1a\xf7\xd4\x07\xab\x85\xa1" +"\x7b\xa2\x66\x08\xa3\x65\x95\x65\x55\x1a\x59\x81\x61\x73\x51\x1e\xa8\x06\xb2\xb9\xa0\xc7\xcc\x1a\xdc\x6b\xdb\x4c\xd6\x1e\x53\xce" +"\x89\x8d\x83\x95\x86\x92\x19\xcb\x5b\x07\x0e\xf7\x04\xf7\x95\xf9\x19\x15\xfc\x59\x8b\x0a\xf7\xf0\x07\xf7\xb5\x5f\x05\xfc\x03\x8b" +"\x0a\xf8\x52\x07\x0e\x70\x34\x1d\xf7\xa8\xf7\x6d\x2b\x0a\xd1\xf7\xa5\xf8\xb0\x15\xfb\x07\xfc\xb0\x05\x58\x1d\x8a\x80\x85\x73\x1f" +"\x49\xd6\x1d\x9e\x9c\x1a\xdb\x51\xbf\x32\x41\x55\x70\x4b\x55\x1e\x9d\xdd\x05\xfb\x94\xf7\x51\x31\x0a\x70\x34\x1d\xf7\x34\xd1\x3a" +"\x0a\xd3\xfb\x27\x05\x0e\x70\x34\x1d\x34\xfc\xec\x3c\x0a\x5f\x68\x66\x5f\x68\x1d\x95\xd9\xa0\xeb\x18\x0e\xf7\xfe\xf8\xa4\xf7\x6c" +"\x15\xf7\x83\xc8\xfb\x60\x06\xe3\xf7\x2f\x05\xf7\x08\xc9\x3a\x06\xac\xc6\x61\xa3\x5c\x38\x05\xfb\x23\x06\x38\x68\x84\x72\x65\x1f" +"\x4b\x60\x69\x42\x2c\x1a\xfb\x08\xb8\x37\xdc\x69\x1e\x6a\x52\xb6\x74\xb1\xce\x05\x88\xa5\x97\x8a\xb5\x1b\xf7\xac\xc9\xfb\xb7\x06" +"\x77\x85\x8b\x8c\x82\x1f\xaa\xf7\x2d\x15\x3a\xfb\x21\x57\x9d\x6c\xbe\x88\xd3\x19\xf7\xb6\xf7\x6c\x15\x33\xfb\x2f\x05\xfb\x5e\x06" +"\x91\xf6\xc3\xbd\xf7\x01\x89\x08\x0e\x32\xf7\x04\xbf\x15\x5b\x4c\xea\x4c\xec\xf7\x12\x05\xf7\xa5\x06\xa4\xf7\x0c\x05\xfb\x63\x06" +"\xe8\xf7\x0c\x20\x1d\xa4\xf7\x0c\x05\x42\x06\xc0\xd0\x2c\xca\x25\xfb\x18\x05\xfb\xa0\x31\x1d\xf7\x5d\x06\x2e\xfb\x0c\x05\xfb\x1a" +"\x31\x1d\x0e\x39\xf7\xf1\x16\xf7\xc1\xf8\xb0\x05\xfb\x2b\x06\xfb\x55\xfc\x1f\x6a\xf8\x1f\x05\xfb\x25\x06\xd5\xfc\xb0\x05\x0e\x70" +"\x36\x0a\xf7\x35\xf7\xd1\x53\x1d\x70\x36\x0a\xf7\x17\xf7\xd4\x49\x0a\xd2\x06\xf7\xed\xf7\x27\x49\x0a\xd2\x06\x0e\x70\x36\x0a\xf7" +"\x6b\xf7\xb1\x15\xfb\xc0\x27\x0a\xf7\xc0\x06\x0e\xf7\x58\x71\x1d\x0e\xf7\x58\x71\x1d\xfb\x1b\xc2\x1d\x70\x81\x1d\x0e\x70\x81\x1d" +"\xf7\x08\xf7\xf5\x26\x1d\xf7\xe9\xbd\x16\xfa\x04\xcd\xfd\xc2\xf9\xb8\x49\x06\x0e\x70\x73\x1d\xec\xf8\x01\x2b\x0a\xfb\x24\xf5\xf9" +"\x32\x15\xac\xd5\x8b\x8b\xb1\x1b\xb9\xb2\x79\x69\xa3\x1f\xad\x5c\xa0\x40\x41\x1a\x6e\x89\x74\x83\x4f\x1e\xc0\x46\x70\x97\x55\x1b" +"\x5a\x64\x7b\x69\x69\x1f\x5d\x5c\x6f\x48\x4a\x1a\xfb\x01\xde\x36\xf6\xd7\xc8\xb4\xd8\xb6\x1e\xb1\xcf\xa7\xf7\x16\xf3\x1a\xf7\x5c" +"\xfb\x03\xf7\x25\xfb\x2d\x5e\x5c\x81\x79\x63\x1e\xf7\xbf\xfc\x36\x15\x7e\x33\x83\x6a\x7c\x5f\x08\x3d\x70\x5e\x5f\x54\x1b\x53\x6a" +"\xbe\xe1\xf7\x08\xcd\xea\xdc\xb5\xb0\x76\x63\xa5\x1f\x0e\xf8\x66\xf7\x9f\xf7\x8c\x15\xec\x06\xd6\xc7\xa5\xc2\xbd\x1f\xbe\xc3\xab" +"\xdb\xd5\x1a\xc0\x75\xbc\x64\xaa\x1e\xa8\x68\x64\x96\x4b\x1b\xfb\x64\x06\xfb\x2b\xfd\x5c\x20\x1d\xd9\xf8\x01\x15\xbb\xf7\x77\x05" +"\xca\x06\xc6\xac\x6d\x55\x6a\x80\x66\x7c\x75\x1f\x68\x72\x68\x7b\x55\x1b\xf8\x2a\xfb\xab\x15\x89\x81\x85\x8a\x82\x1b\x75\x7b\x95" +"\x9a\x8c\x1f\x8f\x8d\x97\x8f\x9d\x1e\x9f\xe6\x05\xcd\x06\x9d\xe1\x05\x49\x06\xa4\xf7\x0b\x05\xfb\x17\x06\x72\xfb\x0b\x05\x57\x06" +"\x79\x35\x05\xbf\x06\x6f\xfb\x15\x05\x88\x7d\x89\x7b\x80\x1a\x53\xb3\x6d\xd7\xa5\x96\x8d\x94\xa5\x1e\xf8\x02\xf7\x82\x15\x8f\x99" +"\x8c\x91\x93\x1a\xc1\x5a\xae\x3e\x59\x62\x7e\x71\x6f\x1e\x70\x72\x7a\x67\x68\x1a\x64\xa3\x73\xc4\x79\x1e\xb7\x7c\x05\xab\x81\x8f" +"\x89\x81\x1a\x78\x7a\x80\x6c\x69\x7b\x96\xa1\x8a\x1e\x26\x06\x89\x80\x8b\x87\x85\x1a\x52\xc2\x65\xdd\xf7\x00\xcd\xc1\xe3\xb0\x71" +"\xa5\x57\x9a\x1e\x54\x9c\x05\x73\x92\x87\x8e\x96\x1a\x9c\x99\x93\xa7\xa4\x98\x84\x7d\x86\x8a\x88\x88\x86\x1e\x0e\xcd\xf7\xc1\xe2" +"\x15\x70\x8e\x7e\x8f\x7d\x96\x08\x6f\x9f\x7b\xb2\xba\x1a\xea\xb8\xea\xcd\xb6\x1e\x9d\xe2\x05\xfb\x32\x65\x22\xfb\x1d\xfb\x3f\x1a" +"\x55\x99\x60\xaa\x69\x1e\xaf\x61\xbb\x78\xdd\x85\x5f\xfb\x61\x18\xf7\x17\x06\xb7\xf7\x61\xe6\x91\xc6\xa1\xc4\xbc\x19\xd6\xcb\xb9" +"\xf3\xf6\x1a\xf7\x1e\x2d\xd3\xfb\x49\x72\x7c\x8a\x88\x72\x1e\xf7\x01\x26\x15\xa7\x88\x97\x87\x9a\x81\x08\xa6\x78\x9c\x63\x5c\x1a" +"\x54\x78\x4f\x6d\x60\x1e\x69\x5b\x67\x75\x53\x85\x08\x0e\xd5\xf9\xa1\x29\x0a\xfd\x07\x4e\x1d\xd8\x06\x30\xfc\x40\x05\x6c\x1d\xf7" +"\x5c\x06\x30\xfc\x40\x05\x6c\x1d\xd1\x06\x0e\xf7\xfa\xf7\x80\xfb\x30\x15\x3e\x36\xf7\x8f\x06\x8a\xe0\x05\x40\xf9\xab\xf7\xfe\xfd" +"\xab\x45\x06\x8c\x36\x05\xf7\x84\xe0\x42\xf9\xab\xf0\xe0\xfd\x8f\x36\xf3\x06\x0e\xf7\xfe\xf9\x93\xc9\x15\xfb\xb7\x06\xfb\x0d\x57" +"\xc2\xf7\x16\xf7\x15\xbf\xc3\xf7\x0d\x1f\xac\x0a\x43\x2b\x1a\xfb\x07\xb8\x37\xc2\x0a\x06\x0e\xf7\xfe\xf7\x7d\xc9\x15\x4d\xf7\xac" +"\x07\xde\xae\x92\xa4\xb1\x1f\xcc\xb6\xac\xd4\xee\x1a\xf7\x03\x5d\xe0\x3d\xac\x1e\x99\x69\x70\x8f\x46\x1b\xfb\xac\x4d\xf7\xb7\x06" +"\xf7\x0d\xbf\x54\xfb\x16\xfb\x16\x57\x54\xfb\x0d\x1f\x0e\xf7\x1b\xf7\xa6\xfb\x6e\x15\xf7\x19\x06\xb6\xf7\x60\x05\xdf\xbe\x97\xac" +"\xc1\x1f\xd1\xb9\xa4\xb7\xa5\xf7\x13\xc9\xf7\xb8\x18\xfb\x20\x06\x4f\xfb\xb1\x75\xfb\x03\x5f\x5a\x38\x89\x19\xea\xf8\x53\x05\xfb" +"\x19\x06\x2c\xfc\x53\x05\x4c\x8e\x70\xa5\xc5\x1a\x9b\x8f\xaa\x91\xa7\x1e\xc7\xf7\xb1\x22\x0a\x4d\xfb\xb8\x05\x85\x6b\x87\x6d\x72" +"\x1a\x64\x9c\x62\xa8\x6e\x1e\xb5\x61\xb5\x7a\xda\x84\x08\x0e\xf8\x04\x22\x1d\xfb\x1c\x06\x74\xfb\x01\x05\x86\x74\x88\x76\x82\x1a" +"\x54\xb8\x64\xce\x87\x1e\x94\xb9\x05\x60\x94\x76\x9e\xab\x1a\x92\x8c\x93\x8d\x99\x1e\xdc\x06\x0e\xfb\x8d\x8d\x1d\xf7\x4a\xf7\x6d" +"\x2b\x1d\x32\xf9\x36\xfa\x25\x15\xfb\xbb\xfd\xa8\xfb\x02\xf8\x20\xfb\x37\x42\x96\x6a\xf3\xb9\xf7\x1b\xfc\x85\xf7\xf5\xfa\x44\x05" +"\x0e\xfb\x8d\x65\x1d\x9c\xbe\xb4\xde\x1b\x9a\x62\x1d\x87\x8b\x86\x1b\x4a\x4b\x61\x42\x5d\x1f\xa2\xf5\x05\xd7\xd1\x3a\x1d\xfb\x8d" +"\x65\x1d\x9d\xbd\xb4\xde\x1b\x9a\x95\x8a\x88\x9c\x1f\xa9\xf7\x22\x05\x8c\x83\x88\x8b\x85\x1b\x4b\x4b\x61\x42\x5d\x1f\xa1\xf5\x05" +"\xfb\x96\xfc\xec\x31\x0a\x55\xf9\x0c\xf8\x0c\x15\xfc\x8c\x06\x4e\xfb\xb6\x05\xf7\x0b\x06\xaf\xf7\x3e\x05\xf8\x15\x06\x0e\x6a\x97" +"\xfb\x6e\x15\x21\x0a\xc7\xf7\xaf\x94\x7a\x8f\x83\x94\x81\x19\x6b\xa6\xbc\x76\xbe\x1b\xf7\x2a\xf7\x15\xf7\x33\xf7\x4e\xf7\x21\x35" +"\xe2\xfb\x20\x3d\x45\x6e\x56\x55\x1f\x57\x57\x72\x53\x72\xfb\x07\x08\xf7\xbd\xf7\x53\x15\xc6\xab\x63\x41\xfb\x11\x43\x20\x36\x54" +"\x64\xb8\xc9\xc1\x9c\xca\xa6\xba\x1f\xba\xa6\xb6\xa7\xb9\x1b\x0e\x39\x61\x0a\xf7\x0d\xf8\x1b\x2b\x1d\x39\xf7\xb4\x75\x15\xf7\x3a" +"\xf4\xdd\xf7\x13\x95\x0a\x6a\x85\x8a\x87\x89\x82\x1e\xf7\x1b\x06\x8f\x9d\x8c\x93\x97\x1a\xe6\x3f\xc1\xfb\x12\x3c\x48\x76\x65\x60" +"\x1e\x60\x65\x6f\x52\x59\x1a\x52\xb4\x65\xe3\x6e\x1e\xda\x72\x05\xca\x77\x98\x82\x74\x1a\x6b\x60\x74\x4e\x48\x67\xa2\xb8\x88\x1e" +"\xfb\x1d\x06\x88\x7d\x8a\x84\x82\x1a\x54\xb2\x58\xc7\x74\x1e\x7e\xab\xa3\x85\xa2\x1b\x55\x36\xbc\x0a\x6d\x78\x65\x6f\x56\x1d\x64" +"\x7b\x7f\x89\x87\x7c\x1f\x0e\x39\x61\x0a\x51\xf8\x1b\x15\xfb\x20\xfb\x27\x05\xd8\x06\xf2\xec\xc8\x2a\x05\xd8\x06\x44\xf7\x27\x05" +"\x0e\x39\xf8\xdc\xf8\x02\x5e\x1d\x3b\x4a\x77\x64\x5f\x1e\x5f\x65\x70\x53\x58\x1a\x52\xb3\x65\xe4\x6e\x1e\xda\x72\x05\xca\x77\x98" +"\x82\x74\x1a\x6b\x60\x74\x4e\x68\x6c\x93\x99\x78\x1e\x7d\x97\x85\x96\x8a\xa2\x08\xfb\x1d\x06\x88\x7e\x8a\x84\x82\x1a\x5d\xa8\x5c" +"\xb7\x72\x1e\x74\xb2\xba\x81\xc9\x1b\xf7\x3e\xf7\x00\xdd\xf7\x14\x95\x0a\x69\x86\x8a\x87\x89\x82\x1e\xfb\x83\xfc\x3e\x15\x73\xfb" +"\x04\x05\xce\x06\x84\x5e\x69\xc3\x1d\xfb\x33\xf7\x93\xc1\x0a\xf7\x60\xf7\x94\x15\x41\x06\x55\xfb\x94\x05\xc4\x06\x0e\xa5\xf8\x91" +"\x29\x0a\x93\x67\x7a\x8d\x70\x1b\x37\x3c\x6b\x54\x56\x1f\x4b\x48\x63\x26\x29\x1a\xfb\x1a\xe5\x35\xf7\x21\xde\xd9\xa9\xc1\xc3\x1e" +"\xc5\xc3\xb0\xe2\xdb\x1a\xc8\x7b\xb6\x66\xb3\x1e\xf7\x07\x06\xa3\xf7\x04\x05\xfb\xd0\x23\x15\xc8\xae\x61\x40\x5c\x7b\x53\x73\x61" +"\x1f\x54\x6a\x5e\x6e\x58\x1b\x4e\x67\xb6\xd2\xf7\x12\xd8\xf5\xe8\x1f\x0e\xf8\x13\xf8\x93\xf9\x6e\x15\xfb\x5b\xfb\x3a\xfb\x38\xfb" +"\x57\xfb\x63\xf7\x35\xfb\x38\xf7\x5d\xf7\x61\xf7\x37\xf7\x36\xf7\x5f\xf7\x5e\xfb\x37\xf7\x37\xfb\x5e\x1f\x5a\x04\xf7\x43\xf7\x21" +"\xfb\x21\xfb\x43\xfb\x44\xfb\x21\xfb\x20\xfb\x45\xfb\x43\xfb\x1f\xf7\x22\xf7\x47\xf7\x3e\xf7\x23\xf7\x21\xf7\x41\x1f\xfb\x01\xfb" +"\x37\xa1\x0a\xfb\x14\xfb\x00\x15\x92\x36\x96\x62\xa9\x5e\x08\x4c\xb5\xcb\x6b\xde\x1b\xd8\xc7\xa6\xc1\xb5\x1f\xaf\xba\x9a\xb8\x92" +"\xe8\x80\x59\x80\x75\x71\x6d\x08\x54\x5b\x4f\x71\x3a\x1b\x3a\x4f\xa5\xc2\x5b\x1f\x71\xa9\x80\xa1\x80\xbd\x08\xf7\xee\xf7\x00\xa1" +"\x0a\x0e\x20\xf7\xc0\xf7\x99\x15\x7f\x07\x44\x6b\x45\x5a\x66\x1e\x6c\x62\x56\x7a\x57\x1b\x7e\x74\xf8\x77\xa2\x06\xfb\x32\x91\x3c" +"\xe3\x8e\xf7\x3d\x08\x35\xb9\xb6\x6d\xda\x1b\xcd\xc4\xca\xd4\xd0\x73\xb0\xfb\x01\xef\x1f\xfb\x02\xf1\x7a\xa5\x63\xf7\x09\x7c\x30" +"\x4d\x31\x23\x38\x08\x3c\x49\x67\x51\x4c\x1a\x40\xc8\x4d\xd4\xb4\xb4\x9c\xa9\xac\x1e\x9e\x9d\x96\x9a\x9c\xb0\x08\x0e\xf7\xfa\xf9" +"\x6a\xf9\x7e\x15\xfc\x7f\x38\x06\xf7\x55\xfb\xe8\xfb\x55\xfc\x06\x05\x36\xf8\x87\xf7\x7d\x2d\x07\x89\xfb\x1e\x05\xfb\xb2\x06\xf7" +"\x4f\xf7\xfe\xfb\x4e\xf7\xda\x05\xf7\xaa\x06\x8f\xfb\x1e\x05\xe6\x06\x0e\xf7\xab\xf7\x94\xf8\xa3\x15\x73\x74\x6c\x42\x67\x1a\xfb" +"\x10\x4f\xf7\x10\x06\x68\x9c\x60\xb0\x54\x1e\x34\x34\xb4\x62\xe3\xe2\x9d\x78\xa1\x7e\xa1\x86\x19\xce\x7a\x8e\x8a\x05\xfb\x0f\xc6" +"\xf7\x0f\x07\x8f\x8c\xb2\x95\xa5\x91\x8d\x8c\x19\x96\x90\x9e\x96\xab\xa0\xe3\x34\x18\xb4\xb4\x34\xe2\x9d\xa6\x99\xa4\x8f\x96\x19" +"\x8e\x92\x90\x9f\x96\xb6\x08\xf7\x0f\xc7\xfb\x0f\x06\x81\xb3\x85\xa2\x88\x92\x87\x96\x7d\xa4\x79\xa6\xe2\xe1\x18\x62\xb4\x33\x35" +"\x6d\xa6\x7e\x91\x31\xa1\x19\xf7\x0e\x50\xfb\x0e\x07\x88\x8a\x48\x79\x84\x89\x77\x7f\x68\x74\x19\x33\xe2\x62\x62\x05\xf7\xba\x50" +"\x15\xef\xde\x36\x26\x24\x38\x37\x24\x22\x3a\xdd\xf5\xf3\xde\xdc\xf5\x1f\x0e\xfb\x79\xf7\x1b\x16\x6c\x1d\xf7\x05\x06\xa3\xf7\x04" +"\x05\xfc\x09\x4e\x1d\xf7\x0c\x06\x0e\xfb\xc5\x92\x0a\x77\x2b\x05\x4f\x06\x7d\x48\x05\xc6\x06\x68\xfb\x3d\x05\x87\x7d\x8a\x7e\x7d" +"\x1a\x53\xb3\x6d\xd4\xac\xa3\x8e\x93\xa7\x1e\x9f\xed\x05\x89\x7d\x84\x8a\x7f\xe3\x1d\xa7\xf7\x17\x05\xd3\x06\x99\xce\x05\x44\x06" +"\x9f\xeb\x05\xd9\x06\x0e\xfb\x8d\x6f\x0a\xc9\xf8\x1d\x3c\x0a\x5e\x68\x67\x5e\x83\x82\xb2\x0a\x9f\xeb\x18\x0e\xfb\xc5\xf7\x52\x75" +"\x15\x8a\x94\x92\x8b\x95\x1b\xaa\xa3\x8e\x93\xa7\x1f\x9f\xbe\x0a\x8f\x8d\x98\x8f\x9c\x1f\xc9\xf7\xba\x05\xd9\x06\x9f\xe8\x05\x85" +"\x0a\x69\x9b\x71\xa9\x7d\x1e\x4e\x2c\x05\x95\xa3\x97\x8e\x9c\x1b\xa5\x9d\x7e\x78\x71\x6e\x78\x65\x6e\x56\x1d\x63\x7c\x7f\x89\x87" +"\x7b\x1f\x0e\x3b\xf8\x3b\xf9\x76\x15\x2a\x38\x5b\x33\x54\x1f\x51\x30\x5e\xfb\x40\xfb\x11\x1a\x4c\x9f\x4a\xac\x61\x1e\x5f\xae\xc2" +"\x73\xce\x1b\xed\xd7\xbd\xf3\xca\x1f\xbe\xe0\xb7\xf7\x3e\xf7\x03\x1a\xf7\x30\x43\xe1\xfb\x18\x1e\xfb\x3b\xfb\xd4\x15\x98\xc4\x91" +"\xa0\x98\xaa\x08\xc9\xa3\xb9\xaf\xc1\x1b\xc2\xa7\x6a\x49\x6d\x88\x71\x82\x57\x1f\x77\x2e\x15\x7c\x44\x82\x6e\x79\x62\x08\x4f\x70" +"\x60\x69\x58\x1b\x57\x6c\xb0\xca\xb0\x8f\xaa\x9a\xce\x1f\x0e\xfb\xc5\xf8\x15\xf9\xa9\x26\x1d\x70\x4f\x0a\xf7\x1a\xf9\x86\x82\x0a" +"\x70\x87\x1d\xf7\x00\x8a\x0a\x70\xf8\xb1\x16\xf7\x07\xf8\xb0\x05\x64\x1d\x93\x91\xa5\x9d\x1d\xf7\x5f\xf9\x66\x2d\x0a\x35\xf8\x9a" +"\xfb\x6e\xeb\x1d\xb8\xf7\x67\x57\x0a\x0e\xfb\xc5\xa6\x0a\x70\x46\x0a\xfb\x28\x4f\x15\x74\xfb\x04\x05\xcd\x06\x85\x5e\x69\x67\x5e" +"\x68\x1d\x96\xd9\x9f\xeb\x18\x0e\xfb\xc5\x92\x0a\x45\xfb\xe0\x05\x87\x7d\x8a\x7e\x7d\x1a\x53\xb3\x6d\xd4\xac\xa3\x8e\x93\xa6\x1e" +"\xa0\xed\x05\x89\x7d\x83\x8a\x80\xe3\x1d\xca\xf7\xba\x05\xd9\x06\xfb\xac\xfc\x84\x31\x0a\xfb\xc5\xf8\x67\xf9\x66\x2d\x0a\x55\x0a" +"\xac\x79\x16\xf9\x56\x06\x22\xf9\x6d\x05\xfb\x4e\x06\xfb\x51\xfc\xf0\x15\xf7\x95\xf8\x60\xc8\xfc\x60\x05\x0e\xf7\x23\xf8\x02\x62" +"\x0a\x0e\x68\xf7\x43\x29\x0a\xfb\x35\xfd\x8a\x05\xf7\x19\x06\xc3\xf7\x9b\x05\x60\x97\xa3\x77\xb5\x1b\xbf\xb4\xa4\xc8\xb7\x1f\x7c" +"\x47\x05\x63\x1d\x43\xfb\xe6\x05\x49\x7d\x5c\x63\x4c\x1b\x58\x6b\xa6\xb6\x95\x8d\x99\x8d\x98\x1f\xd3\xf7\xe5\x05\x0e\x21\xf8\xe8" +"\xf7\xe0\x15\x8a\xc7\x83\xaa\x75\xaf\x08\xc5\x67\x45\xac\x34\x1b\x38\x47\x6e\x51\x56\x1f\x54\x50\x69\x33\x3b\x1a\xfb\x00\xc7\x3b" +"\xf7\x02\x63\x1e\xbe\x78\x05\xba\x7a\x94\x83\x71\x1a\x78\x83\x78\x73\x65\x1e\x66\x52\x8b\x8b\x7b\x74\x08\xf7\x17\x06\xd7\xf7\x0e" +"\x9b\xaf\xb8\x1a\xa2\x83\x9f\x7a\x9b\x1e\x7c\x9a\x77\x95\x58\x9e\x58\x9e\x18\x3b\xa9\x6b\xb3\xcf\x1a\xf2\xd0\xe3\xdc\xc2\xab\x68" +"\x50\x8a\x8b\x86\x8a\x87\x1e\x0e\xa8\x26\x0a\xf7\x33\xf9\xbf\x3d\x0a\xdc\x43\x1d\xf7\x3f\xf7\x63\xbb\x0a\x39\x76\x1d\x70\x43\x0a" +"\xf7\x15\xf7\x6d\x3e\x0a\x0e\xfb\x33\xf7\xd2\xf8\x4b\x15\xae\xf7\x39\x05\xf7\x8d\x06\xa6\xf7\x11\x05\xfc\x23\x06\x4d\xfb\xb6\x05" +"\x5b\x06\x71\xfb\x11\x05\xbb\x06\x48\xfb\xce\x20\x0a\xce\xf7\xce\x05\xf7\x50\x06\xa6\xf7\x11\x05\x0e\xfb\x82\xf7\xa4\xf7\xd5\x15" +"\xa2\xf5\x05\xf7\x52\x2f\x0a\xfb\xde\x06\x5c\xfb\x6f\x05\x5f\x06\x77\x2c\x05\xb7\x06\x5b\xfb\x76\x20\x1d\xbb\xf7\x76\x05\xf7\x34" +"\x06\x9f\xea\x05\x0e\xf8\x7c\xf8\x62\x16\x23\x0a\xd2\xf7\xdf\x05\xf7\x13\x06\xca\xfb\xdf\x05\xbe\x06\x6a\xfb\x31\x20\x0a\xc7\xf7" +"\xae\x05\x26\x06\x58\xf7\x9f\xb7\x0a\xfb\x0a\x06\xc5\xf7\xa5\x28\x0a\x51\xfb\xa5\x05\xfb\x15\xc4\x1d\xf7\x3a\x06\xf7\x61\xf7\xdf" +"\x05\xf6\x06\x0e\xf7\x96\xf8\x83\x16\xbe\xf7\x83\x05\xdf\x5d\x0a\xb8\x06\x64\xfb\x35\x05\x21\x0a\xca\xf7\xa6\x05\x32\x06\x6e\xf7" +"\x50\xf7\x21\xf7\x83\x05\xfb\x27\x06\xfb\x02\xfb\x50\x05\x41\xd9\x1d\x38\xad\x1d\xd4\x06\x58\xfb\x83\x05\x0e\x90\xf7\xf1\x74\x15" +"\xf7\x34\x91\xf7\x0a\xf7\x05\xf7\x26\x1a\xca\x68\x0a\xfb\x2a\x06\x85\x6f\x05\x87\x77\x89\x7a\x7d\x1a\x2c\xdb\x3f\xf7\x07\x7e\x1e" +"\x54\x36\x05\x50\x0a\x80\x89\x86\x7b\x1f\x0e\xfb\x14\xf7\xb3\x75\x15\xb5\x8f\xac\x94\xa7\x99\x08\xcf\xae\xb8\xcd\xcc\x1a\x6b\x0a" +"\xfb\x20\x06\x88\x76\x89\x77\x7d\x1a\x3a\xcb\x52\xee\x83\x1e\x55\x37\x05\xc8\x1d\x76\x91\xa4\x5a\x1f\x6d\x57\x05\x75\xc5\xa9\x84" +"\xb8\x1b\xe6\xc6\xb5\xcc\xaf\x74\xa0\x63\x7b\x7f\x89\x87\x7c\x1f\x0e\xe5\xce\x16\x23\x0a\xd1\xf7\xdf\x05\xf4\x06\xca\xfb\xdf\x05" +"\xbe\x06\x68\xfb\x30\x20\x0a\xc8\xf7\xad\x05\x27\x06\x58\xf7\x9f\xf7\x4e\xe4\x1d\x2d\x06\xc5\xf7\xa5\x28\x0a\x0e\x6a\xf7\x47\xad" +"\x0a\xd3\x5d\x0a\xb8\x06\x68\xfb\x34\x20\x1d\xc6\xf7\xa5\x05\x32\x06\x6d\xf7\x50\xf7\x22\xf7\x83\x05\xfb\x28\x06\xfb\x02\xfb\x50" +"\x05\x4e\x3b\x1d\x0e\xb3\xf8\x0a\xf8\x5c\x15\x4f\x54\x0a\xc7\x06\x6e\xfb\x20\x05\xda\x06\xa9\xf7\x20\x05\xa7\x06\xca\xb2\x1d\x79" +"\x06\xa9\xf7\x20\x05\x3c\x06\x0e\x3c\xf7\xd8\xf7\xf4\x15\x5d\x06\xb3\xf7\x50\x5d\x1d\xbe\xf7\x83\x05\xb9\x06\x71\xfb\x0c\x05\xc7" +"\x06\xa5\xf7\x0c\xb3\xfb\x83\x05\xf7\x23\x06\x5b\xf7\xc1\xf7\x22\xf7\x83\x05\xfb\x23\x06\xfb\x02\xfb\x50\xa4\xf7\x0c\x05\x4f\x06" +"\x0e\x74\xf7\x4d\xf8\xf0\x15\xfb\x15\xfc\xf0\x05\x66\x1d\xf0\xac\x1d\x30\x06\xc5\xf7\xa5\x05\xfc\x1b\x24\x1d\x0e\xfb\x17\xf7\x24" +"\xf8\x41\x15\x2f\xfc\x41\x20\x1d\xbe\xf7\x83\x05\xd3\x06\xb2\xa4\x0a\xfb\x01\xfb\x50\x05\x4d\x3b\x1d\xfb\xd5\x3f\x0a\xf7\x47\x06" +"\x0e\xdf\xf7\xb3\xf7\xdf\x15\xf7\xb5\x06\x45\xfb\xdf\x05\xcd\x06\x69\xfb\x31\x20\x0a\xc8\xf7\xae\x05\x49\x3c\x1d\x51\xfb\xa5\x05" +"\xfb\xb5\x06\xc5\xf7\xa5\x34\x0a\x0e\x68\xa9\x0a\xc3\x06\x67\xfb\x33\x20\x1d\xc7\xf7\xa4\x05\x53\x06\xe6\xf8\x3f\x9d\x0a\xdf\xf8" +"\x18\x74\x15\xf7\x47\x8d\xf7\x19\xf2\xb5\xf7\x3b\x08\xfb\x23\x06\x2f\x6e\x44\x57\x2b\x1b\x2a\x59\xc1\xf4\xde\x51\x0a\xf7\x21\x06" +"\x8e\xa6\x8c\x96\x97\x1a\xf7\x11\x22\xdf\xfb\x2f\xfb\x0f\x20\x56\x26\x39\x1e\x45\x33\x5f\xfb\x1b\xfb\x15\x1a\x21\xbe\x33\xde\x66" +"\x1e\xa8\x7f\xaa\x83\xb2\x86\x54\x36\x18\x85\x1d\x74\xa0\x63\x7b\x80\x89\x87\x7b\x1f\x0e\x39\xf7\xc0\x74\x15\xf7\x0e\x8c\xf1\xdd" +"\xb0\xf7\x13\x08\x57\x1d\xf7\x1a\x06\x6b\x1d\x66\x5c\x9c\x48\x1b\x2d\x41\x6c\x4b\x57\x1f\x50\x45\x61\xfb\x09\x2c\x1a\x3f\xb3\x47" +"\xc8\x6e\x1e\xa1\x81\xa2\x85\xa8\x87\x54\x36\x18\x50\x0a\x7f\x89\x87\x7c\x1f\x0e\xa8\x2c\x0a\x0e\x2c\xf8\x93\xb0\x0a\xdd\xfc\xb0" +"\x5d\xfb\x6e\x05\x21\x0a\xb9\xf7\x6e\xf7\xc7\xf8\xb0\x05\x0e\xa8\xf8\x6a\xf7\x83\x15\x91\xab\xf7\xdd\xf8\x5e\x05\xfb\x3c\x06\xfb" +"\x63\xfb\xd5\x3a\xf7\xd5\x05\xfb\x3b\x06\xf7\x24\xfc\x5e\x85\x6b\x05\xfb\x17\x24\x1d\xf7\x17\x06\x73\xfb\x06\x20\x0a\xa3\xf7\x06" +"\x05\xf7\x17\x21\x1d\x0e\x2c\xf7\xf0\x16\xf7\xc7\xf8\xb0\x05\xfb\x24\x06\xfb\x57\xfc\x1d\x67\xf8\x1d\x05\xfb\x2e\x06\xdd\xfc\xb0" +"\x05\x20\x06\x77\x2c\x05\xf6\x06\x71\xfb\x0f\x05\xf7\x20\x06\xa5\xf7\x0f\x05\xf6\x06\x9f\xea\x05\x0e\xda\x93\x1d\xce\x06\x68\xfb" +"\x31\x20\x0a\xc9\xf7\xae\x05\xfb\x14\x06\x0e\x5a\xf8\x2d\xf7\xa4\x15\xf7\x7d\xf7\xa0\x05\xfb\x41\x06\xfb\x0e\xfb\x37\x56\xf7\x37" +"\x05\xfb\x37\x06\xf7\x0b\xfb\xa0\xfb\x82\xfb\xa4\x05\xf7\x41\x06\xf7\x14\xf7\x3c\xc2\xfb\x3c\x05\xd1\x06\x6a\xfb\x33\x20\x1d\xc4" +"\xf7\xa4\x05\xfb\x0e\x06\x0e\xda\xf8\x88\x16\xcd\x06\x68\xfb\x30\x20\x0a\xc9\xf7\xad\x05\x49\x3c\x1d\x41\xfb\xf4\x05\x78\x40\x4d" +"\x81\x57\x1b\x46\x62\xa6\xb8\x92\x8c\x92\x8c\x91\x1f\xa4\x1d\x7b\x1a\x21\xe3\x4e\xf7\x2a\xc6\xa8\x8f\xa4\xee\x1e\x0e\x66\xf8\x1e" +"\x16\xc6\x06\x69\xfb\x33\x20\x1d\xc5\xf7\xa4\x05\x53\x06\xe6\xf8\x3f\x22\x0a\x56\xfb\x8d\x05\x7b\x5d\x60\x83\x63\x1b\x5f\x6f\x9c" +"\xa5\x8f\x8b\x8e\x8c\x8d\x1f\xba\xf7\x71\x05\xfb\x20\x06\x5c\xfb\x71\x05\x86\x77\x89\x77\x79\x1a\x47\xc0\x64\xea\xbf\xc6\x94\x9c" +"\xc9\x1e\x0e\xda\xf8\x45\xf7\x74\x15\xaa\x8e\x9e\x8f\xd1\x9d\x56\xfb\x8d\x18\xf7\x2a\x97\x0a\x5f\x7f\x67\x84\x62\x86\x19\xaa\xf7" +"\x27\x05\x3c\x06\x6b\xfb\x2c\x05\x49\x90\x6b\xa3\xb6\x1a\x92\x8c\x92\x8c\x91\x1e\xc8\xf7\xb5\x28\x0a\x4e\xfb\xb5\x05\x87\x79\x89" +"\x78\x7a\x1a\x4b\xaf\x57\xca\x70\x1e\xad\x7d\xb2\x83\xbf\x8a\x6f\xfb\x1b\x18\xda\x06\x0e\x66\xf7\xfa\xf7\x37\x15\xa7\x90\x9e\x8f" +"\xa7\x93\x64\xfb\x48\x18\xf7\x23\x06\xf7\x07\xf8\xb0\x22\x0a\x56\xfb\x8d\x6f\x81\x77\x86\x6d\x86\x19\xa5\xf7\x0d\x05\x49\x06\x71" +"\xfb\x11\x05\x5d\x96\x80\x93\xa3\x1a\x8f\x8b\x8e\x8c\x8d\x1e\xba\xf7\x71\x22\x0a\x5c\xfb\x71\x05\x86\x77\x89\x77\x79\x1a\x44\xc1" +"\x67\xf3\x94\x8f\x8b\x8c\x93\x1e\x72\xfb\x08\x05\xcd\x06\x0e\xda\xf8\x08\x33\x0a\xd6\xf7\xf4\x05\x9d\xd4\xd0\x96\xba\x1b\xd0\xb3" +"\x70\x5e\x7f\x8b\x8a\x89\x84\x1f\x4e\xfb\xb5\x20\x0a\xc9\xf7\xb5\x05\x8e\x9d\x8d\x9b\x9f\x1a\xf2\x2f\xca\xfb\x2a\x4d\x53\x82\x77" +"\x4a\x1e\x0e\x56\xdd\x16\x21\x0a\xca\xf7\xbb\x05\xc8\xb5\xb2\xa5\xbd\x1b\xb4\xa4\x72\x62\x83\x8a\x85\x8a\x84\xd5\x1d\x99\x8c\x98" +"\x97\x1a\xd2\x4b\xc6\x3e\x52\x5a\x78\x59\x44\x1e\xcc\xf7\xc9\x05\xfb\x20\x06\x0e\xf8\x05\x33\x0a\x0e\xd1\xf8\x9e\xf7\x11\x15\x36" +"\x06\x51\xfb\xad\x20\x0a\xab\xf7\x30\x05\xdf\x77\x0a\xf7\x2b\xc8\xc4\x94\x9f\xcb\x1e\x0e\x54\xf8\x2d\xf7\x05\x15\x44\x06\x55\xfb" +"\xa6\x20\x1d\xa9\xf7\x35\x05\xd4\x8c\x1d\xed\xc0\xc1\x94\x9c\xbc\x1e\x0e\xf7\x20\xf7\x18\xf8\x3b\x15\x77\x50\x83\x5b\x54\x1a\x43" +"\x9d\x4d\xae\x5a\x1e\x47\xba\xd7\x6a\xf4\x1b\xf7\x10\xf7\x00\xbd\xeb\xde\x1f\xdb\xe9\xba\xf7\x0e\xf7\x0a\x1a\xf7\x47\x26\xf4\xfb" +"\x41\xfb\x24\xfb\x0c\x4c\xfb\x12\x30\x1e\xf7\x09\x4b\x05\xe3\xc7\xca\xb0\xe0\x1b\xee\xc1\x4e\xfb\x02\x89\x8b\x81\x8a\x84\x1f\x71" +"\xfb\x11\x15\xfb\x10\x5a\x37\x46\x23\x1b\x29\x51\xcc\xf7\x00\x1f\x9f\x07\x0e\xdc\x43\x1d\xf8\x62\xf7\x34\x2d\x0a\x70\x43\x0a\xf8" +"\x1f\xf7\x1e\x15\xfb\xc0\x27\x0a\xf7\xc0\x06\x0e\xf7\x20\x8b\x1d\xfb\xa5\xfc\x4f\x15\xf8\x15\x06\xfb\x0c\x5f\x33\x42\x26\x1b\x2c" +"\x52\xcb\xf7\x00\x1f\xa5\xf7\x26\x15\xf7\x0c\xb9\xe1\xd1\xf0\x1b\xf0\xbe\x4b\xfb\x12\x8a\x1f\x0e\x70\x7d\x0a\xfb\x49\xfb\xe1\x15" +"\xf7\x8a\x06\x39\x6a\x56\x5f\x4a\x1b\x51\x66\xb7\xcf\x1f\x9f\xf7\x00\x15\xdd\xac\xc0\xb7\xcc\x1b\xaf\xab\x77\x6d\x99\x1f\x95\x75" +"\x8e\x78\x68\x1a\x0e\xb2\xf9\x28\xfa\x01\xc4\x0a\xfc\xc8\xfd\xb1\x15\xf7\x24\x06\xd9\x8d\xba\xa5\xb4\xcc\xf8\x37\xf9\x10\x18\xfb" +"\x35\x06\xfb\x7d\xfc\x05\x3f\xf8\x05\x05\xfb\x29\x06\xf7\x0e\xfc\x9e\x6b\x5a\x79\x70\x84\x86\x6a\x8a\x19\xfb\x07\x06\x0e\x39\xf8" +"\xc6\xf9\x48\xe8\x1d\x6a\x43\x95\x1d\x0e\xfb\xc5\xf9\x14\xf9\xfe\x57\x0a\xf7\xaa\xb0\x89\x15\xf7\x69\xaf\x8f\xa5\xc8\x1f\xf7\x05" +"\xbd\xdf\xf7\x33\xf7\x37\x1a\xe1\x70\xd6\x5f\xad\x1e\xa4\x6c\x5e\x97\x50\x1b\xfb\x08\x38\x6b\x4d\x5e\x1f\x71\x67\x81\x64\x89\x42" +"\xcc\xab\x18\x97\x07\xc1\x9c\xb1\xad\xa2\x1e\x9c\x96\x95\x8e\xb9\x94\x42\xfc\x1f\x18\x7c\x45\x73\x61\x6e\x81\x08\x77\x06\xd3\x8a" +"\x15\xc8\xbc\x9a\xac\xa1\xf7\x0f\xc2\xf7\xd2\x18\x92\x06\x90\x06\x9e\x06\xa9\x97\x88\x7f\x9e\x1f\xb3\x72\xa1\x51\x3a\x1a\x20\x73" +"\x34\x5c\x4c\x1e\x64\x59\x58\x6e\x54\x88\x08\xf7\x7b\xfb\x7d\x15\xce\x06\xad\xf7\x52\x05\x7d\xaa\x97\x88\x9e\x1b\xf7\x06\xee\xf7" +"\x29\xf7\x42\xec\x64\xbd\x3e\x5c\x63\x77\x66\x6d\x1f\x69\x61\x79\x55\x75\xfb\x0b\x08\xb9\xfb\x00\x15\xae\xf7\x54\x05\xe1\x9b\xad" +"\xbc\xb7\x1b\xb2\xa0\x63\x41\xfb\x20\x56\xfb\x02\x47\x71\x77\x95\xa1\x79\x1f\x0e\xf7\x16\xa0\x16\xf7\xcc\x06\xa6\xf7\x11\x69\xa4" +"\x7f\x96\x7b\x9d\x19\x72\xa9\x7e\xb5\xbf\x1a\xf7\x4b\xf7\x05\xf7\x23\xf7\x23\xeb\xca\x4c\x2b\x39\x69\x28\x58\x4b\x1e\x6c\x64\x77" +"\x7a\x3f\x5f\x70\xc7\x0a\xfb\x3e\x06\xd3\xb5\xa9\xa3\xab\xb2\x08\xc1\xcc\xab\xea\xe5\x1a\xf7\x2f\xfb\x07\xf5\xfb\x3c\xfb\x7c\xfb" +"\x5b\xfb\x57\xfb\x78\x52\x9b\x5b\xab\x67\x1e\x98\x7c\x97\x80\xad\x71\x08\xfb\x3e\x06\x0e\xf8\x5f\x32\x0a\x0e\x55\x0a\xf7\xfe\xf8" +"\xa9\xf8\x95\x15\x49\x06\xfb\x74\xfc\x95\x05\xdb\x06\xf7\x45\xf8\x2d\xf7\x45\xfc\x2d\x05\xdb\x06\x0e\xf7\xfe\xf8\xa9\x16\xf7\x74" +"\xf8\x95\x05\x3b\x06\xfb\x45\xfc\x2d\xfb\x45\xf8\x2d\x05\x3b\x06\xf7\x74\xfc\x95\x05\x0e\xf7\xfe\xf8\x8c\xf9\x60\x15\xfb\x60\xfb" +"\x34\xfb\x33\xfb\x5e\xfb\x5b\xf7\x34\xfb\x33\xf7\x5d\xf7\x5b\xf7\x34\xf7\x34\xf7\x5c\xf7\x59\xfb\x35\xf7\x36\xfb\x57\x1f\xa4\x52" +"\x15\xf7\x23\x7e\xf7\x06\xfb\x06\x99\xfb\x25\x08\xfb\xa3\x06\xf7\xa4\x52\x15\x82\xfb\x22\xfb\x0d\xfb\x0f\xfb\x22\x80\x08\xf7\xa8" +"\x07\x53\xfb\xa8\x15\xfb\x27\x99\xfb\x05\xf7\x05\x7d\xf7\x29\x08\xf7\xa6\x06\xfb\xa6\xc4\x15\x99\xf7\x24\xf7\x07\xf7\x06\xf7\x25" +"\x99\x08\xfb\xa4\x07\x0e\x69\xb6\x16\xf8\x9b\xf8\x9b\xfc\x9b\x06\xf8\x67\xfc\x67\x15\xfc\x33\xf8\x33\xf8\x33\x06\x0e\xdc\xf8\xeb" +"\xf8\xf7\x15\x45\xfb\xa4\x06\xfb\x05\x86\x5f\x7b\x6b\x1e\x56\x70\x50\x67\x4c\x1b\x54\x54\xa7\xb7\x6e\x1f\x73\xb0\x84\xb7\xf7\x11" +"\x1a\xf7\xa4\x45\xfb\xa1\x07\xfb\x29\x90\x65\xa6\x5f\x1e\x45\xb5\xd7\x62\xe5\x1b\xde\xd1\xac\xc9\xb8\x1f\xaf\xbc\x91\xaf\xf7\x36" +"\x1a\x0e\x5e\xf8\x27\xf8\x1c\x15\xfb\x69\x06\x41\xf7\x4d\x05\x2d\x06\xf7\x7d\xfc\xd5\x05\xde\x06\xf7\x7d\xf8\xd5\x05\x2d\x06\x22" +"\xfb\x9d\x15\x3f\xfb\x48\x40\xf7\x48\x05\x0e\x70\xf9\x24\x29\x0a\x74\x0a\xcc\x06\x26\x5e\x5b\x5a\x4f\x1a\x56\xb9\x71\xe8\xa2\x93" +"\x8c\x90\xa3\x1e\x9a\x8e\x96\xbf\x05\x83\x74\x74\x88\x75\x1b\x68\x79\x99\xa6\xbd\xb8\xbe\xdb\xb4\x1f\x0e\x5c\x40\x1d\x0e\x5c\x40" +"\x1d\xf7\x43\xf8\xa1\x44\x0a\x5c\x40\x1d\xf7\x36\xf8\xa1\x52\x1d\x5c\x40\x1d\xf7\xa5\xf8\xcf\x15\x25\x06\x76\x27\x94\x28\x05\xb3" +"\x06\xc0\xee\x05\x0e\x70\x87\x1d\xca\xf9\x99\x15\x52\xe5\x1d\xb5\x6d\xa8\x60\x1f\x82\xbd\x1d\x0e\x70\x4f\x0a\xf7\x4c\xf9\x7c\x41" +"\x0a\xf7\x20\x38\x0a\xf7\x4b\x30\x1d\x0e\xf7\x20\x38\x0a\x9d\x99\x0a\x0e\xf7\x20\x38\x0a\xa5\xf9\x79\x2e\x0a\xf7\x67\xf7\x0c\x2e" +"\x0a\x0e\xf7\x20\x38\x0a\x48\xf9\x89\x3e\x0a\x0e\xfb\x50\xf7\xfc\xfb\x6e\x15\xd8\xf7\x0a\xab\xd0\xbe\x1a\xa1\x81\xa2\x7c\x98\x1e" +"\x7b\x99\x74\x93\x64\x8f\x48\x92\x18\x62\x90\x7a\x8f\x7d\x93\x08\x79\x95\x80\xa2\xa4\x1a\xb5\xa3\xb4\xb1\xa4\x1e\xa1\xac\xb1\x92" +"\xdc\x1b\xcb\x2f\x0a\x4d\x06\x34\x61\xa3\xbe\xaf\xa5\xaf\xb0\x9c\x1f\x97\xa6\xa4\x8f\xbf\x1b\xe4\x2f\x0a\xfc\x22\x3f\x0a\xdd\x06" +"\x55\x64\x73\x65\x5a\x1a\x59\xa5\x68\xbf\x77\x1e\x50\x7d\x6d\x7c\x6b\x6d\x08\x5f\x63\x70\x4e\x4e\x1a\x57\xa0\x5e\xaf\x70\x1e\xa7" +"\x77\xac\x81\xc1\x86\xb7\x86\x18\xb4\x87\x8b\x8b\x96\x83\x08\x90\x87\x8f\x83\x84\x1a\x6d\x6f\x59\x3e\x20\x1e\x0e\x39\x50\x1d\xfb" +"\xaa\xf7\x6d\xb6\x1d\x39\x50\x1d\xfb\xee\xf7\x6d\x3e\x0a\x0e\xfb\x1e\x44\x1d\x82\xf7\xde\x2b\x1d\xfb\x1e\x44\x1d\x34\xf7\xce\x3b" +"\x0a\xfb\x26\xf7\x6a\xf8\xfc\x15\xf7\x59\x06\x31\x57\x56\x60\x50\x46\x08\x38\x2b\x5d\x24\x2e\x1a\x31\xc5\x57\xf7\x05\x7f\x1e\xba" +"\x87\x05\xb5\x86\x98\x84\x78\x1a\x6f\x72\x5e\x3b\xfb\x08\x1e\xf7\x17\x06\xd8\xf7\x06\xac\xd3\xc1\x1a\xa2\x80\xa3\x7a\x98\x1e\x79" +"\x98\x7a\x90\x5b\x91\x66\x8f\x18\x4d\x92\x7d\x8e\x7b\x95\x08\x7a\x95\x80\xa4\xa6\x1a\xd7\xc2\xf3\xe3\xe7\x1e\xd2\xd4\xcd\xba\xec" +"\xb8\xa0\xef\x18\xfc\x11\x06\x0e\x74\xa2\xf8\xb0\x94\xf7\x48\x97\x6b\x9a\x06\xf7\x05\x0a\xf7\x23\x0b\xbf\x94\x92\x8e\x8f\x90\x9a" +"\x99\x8f\x93\x8e\x8f\x0c\x0c\xf7\xaa\x14\xf9\x12\x15\xb2\x13\x00\xa8\x02\x00\x01\x00\x05\x00\x09\x00\x0e\x00\x12\x00\x3f\x00\x44" +"\x00\x4c\x00\x51\x00\x55\x00\x59\x00\x5d\x00\x60\x00\x79\x00\x7c\x00\x82\x00\x88\x00\xac\x00\xb3\x00\xb8\x00\xbd\x00\xc3\x00\xc8" +"\x00\xcf\x00\xdf\x01\x0f\x01\x16\x01\x26\x01\x2c\x01\x35\x01\x38\x01\x44\x01\x4a\x01\x50\x01\x7b\x01\x7f\x01\x9b\x01\xac\x01\xb5" +"\x01\xc3\x01\xc8\x01\xd1\x01\xda\x01\xe1\x01\xed\x02\x2f\x02\x6d\x02\x81\x02\x8c\x02\x93\x02\xab\x02\xb0\x02\xc6\x02\xd1\x02\xe2" +"\x02\xe7\x02\xea\x02\xed\x02\xf2\x02\xfc\x03\x0a\x03\x13\x03\x19\x03\x9a\x03\xd4\x03\xf6\x03\xfd\x04\x5f\x04\x75\x04\x8a\x04\xbb" +"\x05\x17\x05\x38\x05\x8a\x05\x94\x05\x9f\x05\xf0\x06\x32\x06\x37\x06\x5d\x06\x7e\x06\xbb\x06\xe3\x07\x0b\x07\x45\x07\x57\x07\x82" +"\x07\xb4\x07\xcf\x07\xff\x08\x02\x08\x27\x08\x34\x08\x5d\x08\x88\x08\x98\x08\xab\x08\xb5\x08\xcd\x08\xd5\x08\xeb\x08\xee\x09\x00" +"\x09\x11\x09\x16\x09\x2b\x09\x48\x09\x4c\x09\x68\x09\x76\x09\x82\x09\x9d\x09\xb0\x09\xbd\x09\xd4\x09\xe3\x09\xef\x09\xf5\x0a\x0c" +"\x0a\x15\x0a\x1b\x0a\x31\x0a\x3a\x0a\x4e\x0a\x61\x0a\x76\x0a\x79\x0a\x83\x0a\x8b\x0a\x91\x0a\xa4\x0a\xab\x0a\xb4\x0a\xc6\x0a\xd0" +"\x0a\xe0\x0a\xe8\x0a\xf3\x0b\x03\x0b\x12\x0b\x1c\x0b\x2c\x0b\x35\x0b\x3a\x0b\x3f\x0b\x4e\x0b\x5d\x0b\x66\x0b\x6f\x0b\x7d\x0b\x8b" +"\x0b\x99\x0b\xa7\x0b\xb3\x0b\xc1\x0b\xcf\x0b\xd6\x0b\xe3\x0b\xee\x0b\xfb\x0c\x03\x0c\x0f\x0c\x1b\x0c\x27\x0c\x31\x0c\x3c\x0c\x47" +"\x0c\x52\x0c\x5d\x05\x23\x0a\x0b\xf7\x20\x06\x0b\x05\xfb\x20\x06\x0b\xf7\x2a\x06\x0b\xf8\xa8\xf7\x27\x15\x9d\xfb\x27\x05\xf7\x2d" +"\x06\x2a\xf9\x6d\x05\xfb\x41\x06\xfc\x2b\xfd\x6d\x05\xf7\x2d\x06\xdc\xf7\x27\x05\xf7\x96\xf7\x11\x15\xfb\x51\x06\xf7\x2e\xf7\xaf" +"\x05\x0b\xf8\x04\x33\x0a\x0b\x99\x1d\xf8\xb5\x06\xbf\x0a\x0b\x06\x7a\x3b\x05\x0b\x05\x2a\x0a\x0b\xf8\xb0\x15\x0b\xfb\x2a\x06\x0b" +"\x4d\x1d\x0e\xf8\x71\xe6\x1d\xfb\x63\xfb\xcf\x39\xf7\xcf\x05\xfb\x3b\x06\xf7\x25\xfc\x5f\x51\xfb\xa2\x20\x0a\x0b\xc4\x0a\x0e\x4b" +"\x1d\xf7\x03\x06\x0b\x06\xa3\xf7\x05\x05\x0b\xf9\xc4\x22\x1d\xfb\x22\x06\xfb\x01\xfc\x97\xfb\x54\xf8\x97\x05\xfb\x2a\x28\x1d\xf7" +"\x22\x06\xf7\x03\xf8\x9f\xf7\x54\xfc\x9f\x05\xf7\x28\x06\x0b\xa8\x0a\xd7\x91\xce\xa2\x0a\xf9\x5f\xb5\x0a\x0b\x60\x1d\x23\x0a\x0b" +"\x05\xfb\x2a\x35\x0a\x0b\x28\x1d\x23\x0a\x0b\xf8\x31\xf8\xb9\x84\x1d\x0b\x15\x38\x06\x97\xc0\x7c\x0a\x21\x0a\xe8\xf8\x48\x05\xdd" +"\x06\x0b\xf8\xfd\x16\xf7\x9c\xf8\xb0\x05\xfb\x25\x06\xfb\x37\xfc\x0e\x05\xf8\x0e\xfb\x24\x07\xfb\x33\xfc\x0e\x86\xf8\x0e\x05\xfb" +"\x25\x06\xb0\xfc\xb0\x05\xf7\x25\x06\xf7\x3a\xf8\x10\x8f\xfc\x10\x05\x0b\x7e\x0a\x43\xf7\x27\x05\x0e\x15\xf7\x1f\xf7\x27\x05\x3f" +"\x06\x24\x2a\x4e\xec\x05\x3d\x06\x0b\x4b\x1d\xf7\x02\x06\x0e\x15\x73\xfb\x04\x05\xce\x06\x85\x0b\x61\x1d\x0e\x15\xef\xfb\x2a\x05" +"\xcb\x06\x5e\xf7\x2a\x05\x0b\x06\x73\xfb\x05\x05\x0b\x06\xae\xf7\x39\x05\x0b\x15\x69\x7d\x7a\x7a\x74\x1b\x7f\x89\xe0\x1d\x72\x1b" +"\x55\x5f\x61\x40\x74\x1f\xc1\x06\xac\x9c\x9b\x9a\x9d\x1b\x93\xa0\x84\x84\x9a\x1f\xbd\x72\x05\x85\x98\xa0\x86\x9c\x4a\x1d\x15\x88" +"\x1d\x0e\xcf\x16\x21\x0a\x9a\xd2\xf7\x8d\xf7\x92\x46\xfb\xd9\x05\x63\x1d\x7c\x44\xfb\x8d\xfb\x92\xd0\xf7\xd9\x22\x0a\x0b\x15\xfb" +"\x02\x06\x71\xfb\x0e\x05\xf7\x02\x06\xf7\x68\xf7\x0e\x49\x1d\xe2\x1d\xf7\x68\xf7\x0c\xe2\x1d\x0e\xf8\x96\xf8\xf0\x15\x5a\x1d\xfb" +"\x15\xfc\xf0\x20\x0a\x0b\xf7\xd8\xaa\x1d\x0b\x16\xf7\x20\x06\xe6\xf8\x3f\x05\x0b\x15\xfb\x12\x06\x25\xfb\x27\x05\x0b\x06\xf7\x2f" +"\xf9\x6d\x05\x0b\xf8\x3d\xf8\xa5\x37\x0a\xf7\xf5\xe8\x37\x0a\x0b\xf8\xe5\xf7\xe6\x15\x6b\x1d\x66\x5c\x9c\x48\x1b\x2d\x41\x6c\x4b" +"\x57\x1f\x50\x45\x61\xfb\x09\x2c\x1a\x59\x9d\x5a\xaa\x68\x1e\x62\xaf\xc3\x77\xd4\x1b\xf7\x16\xed\xd7\xf7\x1a\xb5\x1f\xcc\x1d\xc4" +"\xa3\xbc\xdc\x1d\xad\xa3\x7f\x76\x98\x1f\x93\x7c\x8d\x7e\x8c\x65\x08\x0b\xf8\xd1\xf7\x76\xc7\x1d\x51\xa3\x42\xc6\x0a\xfb\x09\x27" +"\x1a\xfb\x10\xe0\x37\xf7\x12\xf7\x0d\xf0\xca\xf7\x04\xc2\x1e\xfb\x1e\x06\x65\x78\x5e\x72\x5b\x1b\x52\x65\xb0\xc2\x95\x8c\x95\x8d" +"\xa4\x1f\x9d\xe8\x15\xd9\xa0\xb9\xb3\xcd\x6d\x1d\x89\x68\x1a\x0b\xf9\x27\xf9\x6d\x59\x1d\x68\x87\x6d\x75\x1a\xfb\x09\xea\x41\xf7" +"\x2c\x5b\x1d\x0b\xf8\xb1\x16\xf7\x07\xf8\xb0\x05\x74\x0a\x0b\x85\x1d\x73\xa0\x64\x7b\x0b\xa5\xe2\xb8\xd1\x1f\xd5\xba\xc8\xae\xdc" +"\x1b\xc1\xb3\x79\x68\xa0\x1f\x98\x77\x8f\x78\x64\x1a\x0b\xf9\x79\x55\x1d\x0b\x15\xf7\x1c\xfb\x26\xa3\xf7\x06\x39\xe4\xf7\x0c\xe4" +"\xa4\xf7\x09\xfb\x5b\xfb\x29\x05\x0b\x06\xc5\xf7\xa5\x34\x0a\xd1\xf7\xdf\x05\x0b\xf7\x1c\xf7\xe7\x15\x71\xfb\x0f\x05\xf7\x10\x06" +"\xa5\xf7\x0f\x05\x0e\xfa\x3c\x4d\x1d\x0e\xeb\x1d\x0e\x3c\x1d\x0e\x4a\x0a\x2a\x0a\x0b\x16\xf7\x2a\x06\xf7\x14\xf8\xf0\x05\x0b\x23" +"\x1d\xfb\x14\xfc\xee\x05\x6b\x84\x7d\x7f\x6d\x1b\x0b\x06\xc5\xf7\xa5\x05\xfb\x29\x06\x0b\x06\xb2\xfb\x83\x05\x0b\xf7\x49\xc3\x15" +"\x57\xba\xd5\x70\xe8\x1b\xf7\x10\xf5\xbc\xec\xdd\x1f\xd9\xe7\xba\xf7\x10\xf7\x05\x1a\xc5\x80\xbd\x74\xba\x1e\xf7\x00\xec\x61\xb8" +"\x26\x31\x05\xc2\x59\x43\xa6\x2d\x1b\xfb\x11\x22\x5a\x2a\x38\x1f\x3d\x2f\x5c\xfb\x11\xfb\x07\x1a\x4f\x97\x56\xa3\x5f\x1e\xfb\x03" +"\x28\xb4\x5d\x05\xf8\xef\xf8\xaf\x15\x8f\x76\x8c\x79\x75\x1a\x39\x70\x35\x5e\x4d\x1e\x46\x59\x4b\x68\x3f\x1b\x54\x60\x9d\xad\x6e" +"\x1f\x6d\xc3\x15\x87\xa2\x89\xa0\xa2\x1a\xdb\xa7\xe2\xb7\xc9\x1e\xcf\xbc\xcc\xaf\xd8\x1b\xc3\xb6\x79\x65\xa9\x1f\x0b\xf9\x61\xf8" +"\x8f\x15\x94\x1d\x23\x30\x57\xac\xc4\x90\x8c\x94\x8c\x94\x1e\xfb\x26\x06\x88\x77\x8a\x81\x7d\x1a\x56\x9f\x5d\xaf\x6a\x1e\x5f\xbb" +"\xcf\x76\xec\x1b\xf7\x0e\xe8\xae\xce\xc5\x1f\xb5\xba\xa6\xd4\xcd\x98\x0a\xe0\xba\xb3\x0a\x0b\xf8\x9f\x29\x0a\x79\x38\x05\xca\x70" +"\x62\xa8\x50\x1b\x3f\x40\x65\x49\x56\x1f\x51\x43\x66\xfb\x01\x2a\x1a\xfb\x02\xd5\x3b\xf0\x7f\x1d\x0b\xf8\xdc\xf8\x02\x63\x0a\x0b" +"\xf7\x11\x15\x6e\xa0\x7f\x96\x7c\x9a\x08\x6d\xaa\x7c\xb8\xc3\x1a\xf7\x49\xf7\x01\xf7\x1c\xf7\x24\xed\xcc\x4c\x2c\x3b\x6a\x2b\x5a" +"\x4d\x1e\x6d\x65\x72\x77\x3f\x61\x71\xc7\x0a\xfb\x38\x06\xca\xac\xad\xa4\xad\xb1\x08\xc0\xc6\xac\xe6\xdf\x1a\xd5\x6c\xd5\x57\xbf" +"\x1e\xc4\x51\x3d\xa9\x2d\x1b\x21\x26\x63\x43\x3f\x1f\x40\x43\x5b\xfb\x03\x23\x1a\x33\xb0\x43\xd6\x51\x1e\xfb\x41\x24\x1d\xf7\xcc" +"\x06\x0b\x5e\x1d\x3b\x4a\x77\x64\x5f\x1e\x5f\x65\x70\x53\x58\x9c\x1d\x85\x82\x1a\x5d\x8f\x1d\x0b\x89\x1d\x92\x1a\xf7\x14\xfb\x01" +"\xe0\xfb\x37\xfb\x10\xfb\x01\x59\x2c\x3a\xa2\x1d\x0b\xf8\xd1\xf7\x76\x15\x8c\x0a\xfb\x09\x26\x1a\xfb\x0f\xe0\x37\xf7\x12\xf7\x0d" +"\xf0\xca\xf7\x04\xc2\x1e\xfb\x1e\x06\x65\x77\x5f\x72\x5b\x1b\x52\x65\xaf\xc3\x95\x8c\x95\x8d\xa4\x1f\x9d\xe8\x8f\x0a\x0b\xf8\x6b" +"\x15\x8c\x90\x8e\x8b\x90\x1b\xc0\xa2\x7c\x69\x62\x6a\x6a\x63\x66\x78\x9b\xaa\x91\x8b\x8f\x8d\x93\x1f\x30\x06\x88\x7b\x8a\x82\x80" +"\x1a\x47\xbb\x64\xde\xf7\x01\xd6\xd0\xee\xab\x7d\xa2\x6e\x9d\x1e\xba\xa8\xa3\xb1\xb9\x1a\xc6\x5c\xad\x3a\x27\x57\x5e\x25\x77\x1e" +"\xe2\x06\xc3\x97\x9c\x9e\xb2\x1b\xa6\x9d\x7b\x73\x76\x82\x78\x7c\x7e\x1f\x7b\x7d\x7a\x87\x63\x8a\x08\x0b\xf9\x79\x15\xfb\x10\x26" +"\x5b\x28\x39\x1f\x3d\x2f\x39\x1d\x20\xf4\xfb\x4b\xaf\x0a\x4e\x1f\x45\x59\x4c\x69\x3e\x1b\x26\x4c\x2f\x1d\x0b\x70\xbb\x55\xaf\x1e" +"\xb6\x9e\x9f\x98\xa0\xa5\x08\xa8\xac\x9c\xb9\xb7\x1a\xf2\x33\xcf\xfb\x18\x41\x4e\x78\x67\x5e\x1e\x5b\x65\x72\x5c\x7a\x3d\x86\x72" +"\x18\x23\x0a\x90\xa4\x05\xc3\x97\xb5\xad\xc3\x1b\xba\xaa\x72\x65\x4d\x56\x5a\x49\x1f\x5e\x24\x1d\xc2\x06\xbf\xae\x6e\x5f\x3d\x54" +"\x51\x42\x56\x6a\xa9\xbd\x9c\x8d\x97\x90\xa7\x1f\x0b\x8a\x1d\x29\x5a\xc1\xf5\xdd\x51\x0a\x0b\x15\xc1\xd1\x1d\x96\xaf\x1d\x52\x96" +"\x1d\x0b\xb8\x75\xae\x5f\xa6\x1e\xc9\xa5\xb2\xc1\xc7\x1a\xdb\x44\xbe\xfb\x03\x3c\x4f\x75\x5e\x5f\x1e\x70\x6f\x81\x74\x80\x4d\x08" +"\x21\x0a\xba\x93\xa5\xa2\xb7\x1b\xac\xa1\x79\x70\x5c\x68\x6f\x50\x1f\x6f\x06\x77\x2c\x05\xa7\x06\xb0\x92\x8a\x82\x98\x1f\x98\x83" +"\x92\x7c\x79\x1a\x5c\x64\x64\x5c\x67\x73\xa2\xad\x94\x8c\x92\x8e\x9e\x1e\x0b\xf8\x64\xf7\x2c\x15\x6b\xfb\x2c\x05\xf8\xac\x21\x1d" +"\xfc\x16\x06\xb3\xf7\x51\x05\xf7\xe7\x25\x1d\xfb\xe7\x06\xaf\xf7\x39\x05\xf8\x03\x25\x1d\xfd\x3f\x06\xfc\x38\xfd\x6d\x05\xf7\x33" +"\x06\xe0\xf7\x2c\x05\xf7\x8a\xf7\x11\x15\xfb\x49\x06\xf7\x4d\xf7\xdb\x05\xcd\x06\x0b\xfb\x64\x84\x1d\x0e\xf7\xad\xf7\x98\x15\xf7" +"\x4f\x06\xda\xc5\xba\x1d\x48\x1b\xfb\xc8\x35\x0a\xdd\xf8\x15\x15\xb9\xf7\x6f\x05\xf7\x2e\x06\xc1\xaf\x6b\x5c\x6d\x80\x65\xc3\x0a" +"\xf8\x32\xf8\xa5\x15\x85\x0a\x53\xb3\x6d\xd4\xac\xa3\x8e\x93\xa7\x1e\x9f\xbe\x0a\x8f\x8d\x98\x8f\x9c\x1f\xc9\xf7\xba\x05\xd9\x06" +"\x0b\xf8\x7f\x22\x1d\xfb\x07\xfc\xaf\x05\x54\x80\x68\x6d\x56\x1b\x64\x70\xa1\xab\x95\x8c\x97\x8e\x97\x1f\x9b\xd8\x28\x0a\x7c\x43" +"\x05\x86\x75\x89\x75\x76\x1a\x2a\xd2\x50\xf7\x09\xce\xd0\x9d\xa7\xb6\x1e\xbc\xab\xae\xc5\x9b\xd8\xf7\x07\xf8\xaf\x18\x0b\x16\xf7" +"\xc0\x06\xe7\xc0\x99\xb2\xbc\xd0\x1d\xfb\x26\x06\xc6\xf7\xa9\x05\x2a\x0a\xa1\xfc\xf0\x15\xb6\xf7\x5e\x05\xf7\x2d\x06\xa8\x98\xc0" +"\x0a\x5b\x51\x4f\x1e\x0b\xf8\x91\xb0\x0a\xd7\xfc\xb0\x8c\x7c\x05\x52\x5f\x67\x46\x7f\x86\x8b\x8d\x80\x1e\x74\xfb\x01\x05\x88\x98" +"\x95\x8a\xa1\x1b\xb7\xb1\x91\x96\xa8\x1f\xb7\xec\x1d\x0b\xd8\x16\xf7\xb1\x06\xf7\x25\xdf\xb2\xf0\xd4\x1f\xd3\xed\xb3\xf7\x0f\xf7" +"\x0a\x1a\xf7\x43\x3d\xd6\xfb\x49\x1e\xfb\xb1\x06\xa1\xfc\xf0\x15\xf0\xf8\x73\x05\xf7\x1b\x06\xe7\xb8\x5f\x30\x3c\x71\x24\x69\x50" +"\x1f\x40\x60\x5a\x6f\x34\x1b\x0b\x64\x1d\x95\x90\xa3\x1f\xd1\xb5\x1d\xc1\xa6\xcb\xc1\x1e\x7c\x47\x05\x0b\xf8\x85\x16\xf7\xa1\xf8" +"\xff\xfb\x18\xfc\xff\x05\xf7\x22\x4a\x0a\xfb\x6f\x06\xfb\x92\xfc\xc4\x77\xf8\xc4\x05\xfb\x6d\x28\x1d\xf7\x22\x06\xf7\x18\xf8\xff" +"\x92\xfc\xff\x05\x0e\x16\xf7\xaf\x06\xc5\xc0\x9b\xa6\xae\x1f\xbb\xb2\xa9\xc6\xc4\x1a\xda\x48\xca\x36\x1e\xfb\x23\x06\xb6\xf7\x5c" +"\x22\x0a\xbc\xfc\x3f\x15\xa3\xf7\x06\x05\xf7\x1c\x06\xa4\x9b\x7b\x71\x64\x6d\x6a\x68\x1f\x0b\x97\x0a\x05\x79\x41\x46\x80\x5c\x1b" +"\x46\x63\xa6\xb8\x93\x8c\x90\x8c\x92\x1f\xa4\x1d\x7a\x1a\x24\xe7\x4c\x0b\xf8\x87\xf8\x08\x15\xf7\xc3\xf7\xf9\x05\xfb\x43\x06\xfb" +"\x4b\xfb\x80\x3c\xf7\x80\x05\xfb\x46\x06\xf7\x25\xfb\xfe\xfb\xca\xfc\x03\x05\xf7\x43\x06\xf7\x51\xf7\x8d\xe5\xfb\x8d\x05\xf7\x47" +"\x06\x0e\x7a\x0a\x0e\xf7\xa6\xf7\x7e\x15\xe6\xdb\xf7\x41\xfb\xce\x05\xf7\x47\x06\xfb\x7f\xf8\x2e\xf7\xfd\xf7\xd3\x05\xfb\x46\x06" +"\xfb\xf6\xfb\xd4\xcf\xf7\xd4\x34\x0a\x0b\xf7\xf6\xf9\x6d\x23\x1d\xfb\x2f\xfd\x6d\x9a\x1d\x0b\x05\xa8\x91\x99\x99\xa5\x1b\x95\x92" +"\x8a\x88\xa4\x1f\xa1\xf4\x05\x8e\x5c\x81\x8b\x77\x1b\x29\x56\x61\x2e\x77\x1f\x7d\x4a\x05\x3f\x33\x1d\xd8\x06\x2e\xfc\x48\x05\x0b" +"\xf8\x2d\xf8\xb9\x15\x2b\x36\x65\x49\x54\x1f\x55\x4a\x69\x29\x32\x1a\xfb\x1b\xe1\x3a\xf7\x22\xec\xdf\xb0\xce\xc2\x1e\xc0\xcc\xae" +"\xee\xe3\x1a\xf7\x1b\x35\xdc\xfb\x22\x1e\x0b\x15\xfb\x1f\xfb\x27\x05\xd7\x06\xf2\xec\xc8\x2a\x05\xd9\x06\x0b\xfb\xdf\x32\x1d\x2a" +"\x0a\x51\xfb\xa5\x05\xfb\xb5\x06\xc5\xf7\xa5\x34\x0a\x0b\x22\x0a\x31\xfc\x3f\x05\xfb\x41\x94\x0a\xf9\x6a\x15\x2a\x0a\x5e\xfb\x66" +"\x73\xfb\xc9\x05\xce\x06\xf6\xf7\xc9\x05\x3c\xfc\x06\x27\x1d\x0b\x15\x60\x7b\x68\x75\x57\xa7\x1d\x9d\x1b\x93\x9e\x85\x82\x9c\x1f" +"\xbe\x72\x05\x85\x97\xa1\xdf\x1d\x95\xa0\x97\xb3\x08\x0e\x87\x0a\x0e\xb8\x0a\x46\x33\x1d\xd0\x06\x45\xfb\xe0\x05\x88\x7d\x89\x7d" +"\x7e\x1a\x0b\x15\x70\xfb\x11\x05\xdc\x06\x82\x59\x6b\x6e\x51\x81\x81\x5d\x18\x0b\xf8\xb0\xa5\x1d\x0b\x70\xa0\xaf\x8c\x8b\x8e\x8c" +"\x8f\x1f\x60\x06\x86\xab\x0a\xda\xd0\xc8\xdd\x98\x1e\x0e\xf8\x69\x15\xa6\xf7\x11\x05\x3a\x06\x94\xbd\xab\xa8\xc5\x95\x95\xb9\x18" +"\x32\x84\x4b\x52\x7d\x34\x74\xfb\x01\x18\x0b\xf9\x89\x90\x0a\x07\x93\x79\x7a\x8e\x79\x1b\x4a\x52\x55\x4e\x65\xa6\x74\xb7\xba\xb9" +"\xa3\xb3\xa7\x1f\xa0\xa8\x93\xa9\xbc\x1a\x0b\x69\x1d\xba\x6f\xaf\x1e\xb8\x67\x51\xa3\x42\xc6\x0a\x0b\x15\x74\xfb\x04\x05\xcd\x06" +"\x85\x5f\x69\xa5\x0a\x81\x80\x90\x7d\x1b\x71\x75\x75\x70\x6c\xa7\x73\xae\xb7\xaa\xaa\xc5\x99\x1f\x9b\xcb\x90\xd4\xf7\x41\x1a\x0b" +"\x15\x94\xab\x93\x9e\x98\x9b\x08\xab\xa3\xb2\x9e\xb3\x6d\x1d\x8b\x66\x1a\x0b\x49\x0a\xd1\x06\xf7\xee\xf7\x27\x49\x0a\xd1\x06\x0e" +"\x15\xfb\x4b\x06\xb2\xf7\x49\x05\xfb\x0b\x06\x64\xfb\x49\x05\xfb\x4a\x31\x1d\xf7\x4a\x06\x0b\xf8\x32\xf8\xa5\x15\xb8\x0a\x45\x06" +"\x78\x2e\x05\xd0\x06\x0b\x06\xcb\xfb\xdf\x20\x0a\x40\xf8\x1c\xb7\x0a\x0b\x06\xe6\xf8\x3f\xbb\x1d\xc7\x64\xb2\x38\xa4\x1f\x2b\xa7" +"\x05\x58\x9a\x7d\x95\x9f\x1a\xab\xae\xa0\xc0\xc2\xac\x78\x0b\x05\xfb\x2a\x6a\x1d\xfb\x9d\x58\x0a\x59\x0a\x41\xfb\xf4\x0b\x1a\xd8" +"\x54\xbf\x25\x9f\x1e\xfb\x01\xa1\x05\x2d\x9e\x70\x9b\xb1\x1a\xcb\xc3\xb3\xe6\x0b\xf9\x89\x7e\x0a\x43\xf7\x27\x05\x0b\x15\xf7\x20" +"\xf7\x27\x05\x3e\x06\x24\x2a\x4f\xec\x05\x3d\x06\xd2\xfb\x27\x05\x0e\x20\x1d\xc7\xf7\xae\x05\x4f\xa0\xb5\x70\xd1\x1b\xf7\x35\xf7" +"\x18\xf7\x39\x0b\xfb\x46\x1f\x7b\x43\x15\xf7\x21\xf1\x24\xfb\x21\xfb\x57\xfb\x4b\xfb\x4a\xfb\x59\x0b\xbe\x1d\x0e\x06\xa9\x98\xc0" +"\x0a\x5a\x51\x50\x1e\x0e\x15\xfb\x20\x24\x1d\x21\x0a\x0b\x06\xc5\xbf\xc9\x1d\x0b\x15\x70\x74\x74\x71\x6f\xa2\x74\xa6\xa6\xa2\xa2" +"\xa6\xa6\x74\xa2\x70\x1f\x0b\xce\x95\xd9\xa0\xeb\x18\x0e\xe1\x1d\xc3\x06\xd0\xf7\x15\x05\x0b\xfb\x83\x05\xf7\x1e\x06\x5b\xf7\xc1" +"\xf7\x22\xf7\x83\x05\xfb\x28\x06\x0b\x66\x5e\x68\x1d\x96\xd9\x9f\xeb\x18\x0e\xf8\x07\xf7\xea\x15\xfb\xa4\x06\x6e\xfb\x1b\x05\xf7" +"\xa4\x06\x0e\x15\xf0\xfb\x2a\x05\xca\x06\x0b\x3c\x0a\x5e\x68\x67\x5f\x83\x81\x5d\x18\x0b\xcb\x16\x21\x0a\xbb\xf7\x77\x05\xf7\x58" +"\x06\x5a\xfb\x77\x05\x0b\xfa\xc2\xf7\xcb\x15\xfe\x87\x06\x75\x23\x05\xfa\x87\x06\x0e\x7a\x8a\x81\x7e\x1a\x4d\xb5\x62\xcb\x0b\xf7" +"\xb7\xc9\xfb\xac\x06\x38\x68\x84\x72\x66\x1f\x4a\x60\x69\x0b\x29\x0a\x2c\x1d\xbe\xf7\x83\x05\x0b\xf7\x22\xb5\x0a\x0b\x1e\x78\x3d" +"\x1d\x0b\xf8\xb0\x15\xfb\x57\xfc\x1d\x67\xf8\x1d\x05\xfb\x2e\x06\x0b\xfb\x79\xfb\x73\xfb\x83\xfb\x43\xf7\x15\xfb\x14\xf7\x45\x0b" +"\x5d\x18\xd6\x91\xcf\xce\x95\xd9\x0b\x6e\x55\x86\x8a\x82\x8a\x82\x1e\x0b\x06\x3b\xfc\x0f\x86\x72\x75\x76\x73\x89\x19\x5a\x06\x0b" +"\x15\xfc\xd9\xfd\x73\x05\xe0\x06\xf8\xd9\xf9\x73\x05\x0b\x95\xa3\x97\x8e\x9d\x1b\xa5\x9d\x7e\x77\x72\x6d\x78\x0b\xf7\x4e\xf7\xe5" +"\x05\xfb\x33\x06\xfb\x29\xfb\xa5\x05\x0b\x3d\x06\xaa\xf7\x25\x22\x0a\x6c\xfb\x25\x05\x0b\xf7\x06\x05\xf7\x1c\x06\xa3\x9b\x7b\x71" +"\x64\x6d\x6a\x0b\xfb\x22\x7e\xb9\x80\xa5\x7a\x9f\x19\xb0\x6c\x5b\xa1\x0b\xa7\x0a\x5f\xf7\x2a\x05\x0e\x05\x95\xa3\x97\x8e\x9c\x1b" +"\xa5\x9d\x7e\x77\x72\x0b\xf8\xd5\xf7\xdf\x15\x45\xfb\xdf\x20\x0a\x0b\xed\x05\x89\x7d\x83\x8a\x80\x1b\x73\x7d\x94\x9b\x0b\xa6\xf7" +"\x11\x05\xfc\x1f\x06\x0b\x87\x7d\x97\x1f\x96\x7d\x91\x79\x74\x1a\x44\x0b\xf9\x35\x15\x41\x06\x55\xfb\x94\x05\xc4\x06\x0b\xda\x69" +"\x1e\x7d\xad\xa6\x87\xd0\x1b\xf7\xac\x0b\x7d\x76\x1f\x68\x72\x69\x7b\x56\x1b\x0e\x15\xfb\xc0\x06\x7a\x3b\x05\xf7\xc0\x06\x0b\x15" +"\xfc\x79\x06\x75\x27\x05\xf8\x79\x06\x0b\x1b\x3d\x3b\x6c\x5a\x5c\x1f\x4b\x48\x5d\x0b\xfb\x11\x18\xf7\xcc\x06\xa6\xf7\x11\x05\x0b", 39424 +}; diff --git a/dviware/dvisvgm/src/fonts/NimbusSans-Italic.cff.cpp b/dviware/dvisvgm/src/fonts/NimbusSans-Italic.cff.cpp new file mode 100644 index 0000000000..d91e23c8e9 --- /dev/null +++ b/dviware/dvisvgm/src/fonts/NimbusSans-Italic.cff.cpp @@ -0,0 +1,1252 @@ +#include "Base14Fonts.hpp" + +extern const MemoryFontData NimbusSans_Italic_cff = { +"\x01\x00\x04\x02\x00\x01\x01\x01\x12\x4e\x69\x6d\x62\x75\x73\x53\x61\x6e\x73\x2d\x49\x74\x61\x6c\x69\x63\x00\x01\x01\x01\x34\xf9" +"\xbc\x00\xf9\xbd\x01\xf9\xbe\x0c\x00\xf9\xbf\x02\xf9\xc0\x03\xf8\x18\x04\x7f\x0c\x02\xfb\x2b\x0c\x03\xfb\x0f\xfb\xb0\x1c\x04\x82" +"\xfa\xc2\x05\x1c\x26\x00\x0f\x1c\x26\x13\x11\xb0\x1d\x00\x00\x8d\xa6\x12\x01\xa6\x02\x00\x01\x00\x08\x00\x0e\x00\x13\x00\x1d\x00" +"\x24\x00\x2b\x00\x35\x00\x39\x00\x3f\x00\x45\x00\x50\x00\x5a\x00\x5d\x00\x63\x00\x69\x00\x6e\x00\x74\x00\x7a\x00\x84\x00\x8b\x00" +"\x8e\x00\x95\x00\x9c\x00\xa8\x00\xab\x00\xb3\x00\xb7\x00\xbc\x00\xc2\x00\xcd\x00\xd9\x00\xe3\x00\xe7\x00\xf2\x00\xf4\x00\xfa\x01" +"\x04\x01\x0b\x01\x12\x01\x16\x01\x22\x01\x2b\x01\x31\x01\x3c\x01\x41\x01\x4d\x01\x53\x01\x59\x01\x5f\x01\x6b\x01\x6f\x01\x71\x01" +"\x77\x01\x7d\x01\x89\x01\x8b\x01\x91\x01\x9e\x01\xa5\x01\xaf\x01\xb6\x01\xc2\x01\xcd\x01\xd0\x01\xd2\x01\xd5\x01\xdb\x01\xe1\x01" +"\xed\x01\xf0\x01\xf6\x01\xfe\x02\x09\x02\x15\x02\x1a\x02\x1d\x02\x21\x02\x27\x02\x33\x02\x38\x02\x3e\x02\x4b\x02\x52\x02\x59\x02" +"\x60\x02\x6f\x02\x7b\x02\x80\x02\x86\x02\x8c\x02\x97\x02\xa0\x02\xa6\x02\xa8\x02\xb3\x02\xb9\x02\xbf\x02\xc9\x02\xcd\x02\xd3\x02" +"\xda\x02\xe3\x02\xec\x02\xf5\x02\xfe\x03\x07\x03\x10\x03\x19\x03\x22\x03\x2b\x03\x34\x03\x3d\x03\x46\x03\x4f\x03\x58\x03\x61\x03" +"\x6a\x03\x73\x03\x7c\x03\x85\x03\x8e\x03\x97\x03\xa0\x03\xa9\x03\xb2\x03\xbb\x03\xc4\x03\xcd\x03\xd6\x03\xdf\x03\xe8\x03\xf1\x03" +"\xfa\x04\x03\x04\x0c\x04\x15\x04\x1e\x04\x27\x04\x30\x04\x39\x04\x42\x04\x4b\x04\x54\x04\x5d\x04\x66\x04\x6f\x04\x78\x04\x81\x04" +"\x8a\x04\x93\x04\x9c\x04\xa5\x04\xae\x04\xb7\x04\xc0\x04\xc9\x04\xd2\x04\xdb\x04\xe4\x04\xed\x04\xf6\x04\xff\x05\x08\x05\x11\x05" +"\x1a\x05\x23\x05\x2c\x05\x35\x05\x3e\x05\x47\x05\x50\x05\x59\x05\x62\x05\x6b\x05\x74\x05\x7d\x05\x86\x05\x8f\x05\x98\x05\xa1\x05" +"\xaa\x05\xb3\x05\xbc\x05\xc5\x05\xce\x05\xd7\x05\xe0\x05\xe9\x05\xf2\x05\xfb\x06\x04\x06\x0d\x06\x16\x06\x1f\x06\x28\x06\x31\x06" +"\x3a\x06\x43\x06\x4c\x06\x55\x06\x5a\x06\x64\x06\x6b\x06\x74\x06\x7e\x06\x85\x06\x90\x06\x9a\x06\xa3\x06\xac\x06\xb5\x06\xbf\x06" +"\xc6\x06\xcf\x06\xdb\x06\xdf\x06\xe5\x06\xeb\x06\xf6\x07\x00\x07\x03\x07\x11\x07\x15\x07\x1b\x07\x21\x07\x26\x07\x2d\x07\x3a\x07" +"\x40\x07\x46\x07\x50\x07\x57\x07\x5e\x07\x61\x07\x68\x07\x6f\x07\x7b\x07\x86\x07\x8f\x07\x92\x07\x9a\x07\xa3\x07\xae\x07\xb4\x07" +"\xb9\x07\xbe\x07\xc4\x07\xcf\x07\xdb\x07\xe5\x07\xf1\x07\xf5\x08\x00\x08\x05\x08\x0a\x08\x10\x08\x12\x08\x19\x08\x21\x08\x29\x08" +"\x33\x08\x3d\x08\x49\x08\x55\x08\x5c\x08\x60\x08\x6c\x08\x7d\x08\x86\x08\x8c\x08\x97\x08\x9c\x08\xa8\x08\xb4\x08\xba\x08\xc0\x08" +"\xc6\x08\xd2\x08\xd6\x08\xdf\x08\xe3\x08\xe8\x08\xec\x08\xf2\x08\xfd\x09\x0b\x09\x11\x09\x1c\x09\x22\x09\x2e\x09\x38\x09\x40\x09" +"\x42\x09\x48\x09\x55\x09\x5c\x09\x61\x09\x6b\x09\x72\x09\x7e\x09\x88\x09\x93\x09\x9e\x09\xa4\x09\xa7\x09\xa9\x09\xb0\x09\xbc\x09" +"\xca\x09\xcd\x09\xda\x09\xe0\x09\xe7\x09\xed\x09\xf9\x0a\x06\x0a\x09\x0a\x0f\x0a\x17\x0a\x22\x0a\x2e\x0a\x34\x0a\x39\x0a\x42\x0a" +"\x47\x0a\x50\x0a\x53\x0a\x56\x0a\x5a\x0a\x60\x0a\x6c\x0a\x71\x0a\x76\x0a\x7c\x0a\x89\x0a\x90\x0a\x9d\x0a\xa4\x0a\xab\x0a\xb2\x0a" +"\xb9\x0a\xc0\x0a\xc7\x0a\xce\x0a\xd5\x0a\xdc\x0a\xe3\x0a\xea\x0a\xf1\x0a\xf8\x0a\xff\x0b\x06\x0b\x0d\x0b\x14\x0b\x1b\x0b\x22\x0b" +"\x29\x0b\x30\x0b\x37\x0b\x3e\x0b\x45\x0b\x4c\x0b\x53\x0b\x5a\x0b\x61\x0b\x68\x0b\x6f\x0b\x76\x0b\x7d\x0b\x84\x0b\x8b\x0b\x92\x0b" +"\x99\x0b\xa0\x0b\xa7\x0b\xae\x0b\xb5\x0b\xbc\x0b\xc3\x0b\xca\x0b\xd1\x0b\xd8\x0b\xdf\x0b\xe6\x0b\xed\x0b\xf4\x0b\xfb\x0c\x02\x0c" +"\x09\x0c\x10\x0c\x17\x0c\x1e\x0c\x25\x0c\x2c\x0c\x33\x0c\x3a\x0c\x41\x0c\x48\x0c\x4d\x0c\x56\x0c\x5d\x0c\x64\x0c\x73\x0c\x87\x0c" +"\x93\x0c\x98\x0c\x9e\x0c\xa4\x0c\xaf\x0c\xb8\x0c\xbe\x0c\xc0\x0c\xcb\x0c\xd1\x0c\xd7\x0c\xe1\x0c\xe5\x0c\xe9\x0d\x1f\x0d\x5f\x0d" +"\x71\x0d\x7c\x41\x45\x61\x63\x75\x74\x65\x41\x62\x72\x65\x76\x65\x41\x6c\x70\x68\x61\x41\x6c\x70\x68\x61\x74\x6f\x6e\x6f\x73\x41" +"\x6d\x61\x63\x72\x6f\x6e\x41\x6f\x67\x6f\x6e\x65\x6b\x41\x72\x69\x6e\x67\x61\x63\x75\x74\x65\x42\x65\x74\x61\x43\x61\x63\x75\x74" +"\x65\x43\x63\x61\x72\x6f\x6e\x43\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x43\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x43\x68\x69\x44" +"\x63\x61\x72\x6f\x6e\x44\x63\x72\x6f\x61\x74\x44\x65\x6c\x74\x61\x45\x62\x72\x65\x76\x65\x45\x63\x61\x72\x6f\x6e\x45\x64\x6f\x74" +"\x61\x63\x63\x65\x6e\x74\x45\x6d\x61\x63\x72\x6f\x6e\x45\x6e\x67\x45\x6f\x67\x6f\x6e\x65\x6b\x45\x70\x73\x69\x6c\x6f\x6e\x45\x70" +"\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x45\x74\x61\x45\x74\x61\x74\x6f\x6e\x6f\x73\x45\x75\x72\x6f\x47\x61\x6d\x6d\x61\x47\x62" +"\x72\x65\x76\x65\x47\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x47\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x47\x64\x6f\x74\x61" +"\x63\x63\x65\x6e\x74\x48\x62\x61\x72\x48\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x49\x4a\x49\x62\x72\x65\x76\x65\x49\x64\x6f\x74" +"\x61\x63\x63\x65\x6e\x74\x49\x6d\x61\x63\x72\x6f\x6e\x49\x6f\x67\x6f\x6e\x65\x6b\x49\x6f\x74\x61\x49\x6f\x74\x61\x64\x69\x65\x72" +"\x65\x73\x69\x73\x49\x6f\x74\x61\x74\x6f\x6e\x6f\x73\x49\x74\x69\x6c\x64\x65\x4a\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x4b\x61" +"\x70\x70\x61\x4b\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4c\x61\x63\x75\x74\x65\x4c\x61\x6d\x62\x64\x61\x4c\x63\x61\x72\x6f" +"\x6e\x4c\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4c\x64\x6f\x74\x4d\x75\x4e\x61\x63\x75\x74\x65\x4e\x63\x61\x72\x6f\x6e\x4e" +"\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x4e\x75\x4f\x62\x72\x65\x76\x65\x4f\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74" +"\x4f\x6d\x61\x63\x72\x6f\x6e\x4f\x6d\x65\x67\x61\x74\x6f\x6e\x6f\x73\x4f\x6d\x69\x63\x72\x6f\x6e\x4f\x6d\x69\x63\x72\x6f\x6e\x74" +"\x6f\x6e\x6f\x73\x4f\x73\x6c\x61\x73\x68\x61\x63\x75\x74\x65\x50\x68\x69\x50\x69\x50\x73\x69\x52\x61\x63\x75\x74\x65\x52\x63\x61" +"\x72\x6f\x6e\x52\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x52\x68\x6f\x53\x61\x63\x75\x74\x65\x53\x63\x65\x64\x69\x6c\x6c\x61" +"\x53\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x53\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x53\x69\x67\x6d\x61\x54\x61\x75\x54" +"\x62\x61\x72\x54\x63\x61\x72\x6f\x6e\x54\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x54\x68\x65\x74\x61\x55\x62\x72\x65\x76\x65" +"\x55\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x55\x6d\x61\x63\x72\x6f\x6e\x55\x6f\x67\x6f\x6e\x65\x6b\x55\x70\x73\x69\x6c" +"\x6f\x6e\x55\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x55\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x55\x72\x69" +"\x6e\x67\x55\x74\x69\x6c\x64\x65\x57\x61\x63\x75\x74\x65\x57\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x57\x64\x69\x65\x72\x65\x73" +"\x69\x73\x57\x67\x72\x61\x76\x65\x58\x69\x59\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x59\x67\x72\x61\x76\x65\x5a\x61\x63\x75\x74" +"\x65\x5a\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x5a\x65\x74\x61\x61\x62\x72\x65\x76\x65\x61\x65\x61\x63\x75\x74\x65\x61\x66\x69\x69" +"\x30\x30\x32\x30\x38\x61\x66\x69\x69\x31\x30\x30\x31\x37\x61\x66\x69\x69\x31\x30\x30\x31\x38\x61\x66\x69\x69\x31\x30\x30\x31\x39" +"\x61\x66\x69\x69\x31\x30\x30\x32\x30\x61\x66\x69\x69\x31\x30\x30\x32\x31\x61\x66\x69\x69\x31\x30\x30\x32\x32\x61\x66\x69\x69\x31" +"\x30\x30\x32\x33\x61\x66\x69\x69\x31\x30\x30\x32\x34\x61\x66\x69\x69\x31\x30\x30\x32\x35\x61\x66\x69\x69\x31\x30\x30\x32\x36\x61" +"\x66\x69\x69\x31\x30\x30\x32\x37\x61\x66\x69\x69\x31\x30\x30\x32\x38\x61\x66\x69\x69\x31\x30\x30\x32\x39\x61\x66\x69\x69\x31\x30" +"\x30\x33\x30\x61\x66\x69\x69\x31\x30\x30\x33\x31\x61\x66\x69\x69\x31\x30\x30\x33\x32\x61\x66\x69\x69\x31\x30\x30\x33\x33\x61\x66" +"\x69\x69\x31\x30\x30\x33\x34\x61\x66\x69\x69\x31\x30\x30\x33\x35\x61\x66\x69\x69\x31\x30\x30\x33\x36\x61\x66\x69\x69\x31\x30\x30" +"\x33\x37\x61\x66\x69\x69\x31\x30\x30\x33\x38\x61\x66\x69\x69\x31\x30\x30\x33\x39\x61\x66\x69\x69\x31\x30\x30\x34\x30\x61\x66\x69" +"\x69\x31\x30\x30\x34\x31\x61\x66\x69\x69\x31\x30\x30\x34\x32\x61\x66\x69\x69\x31\x30\x30\x34\x33\x61\x66\x69\x69\x31\x30\x30\x34" +"\x34\x61\x66\x69\x69\x31\x30\x30\x34\x35\x61\x66\x69\x69\x31\x30\x30\x34\x36\x61\x66\x69\x69\x31\x30\x30\x34\x37\x61\x66\x69\x69" +"\x31\x30\x30\x34\x38\x61\x66\x69\x69\x31\x30\x30\x34\x39\x61\x66\x69\x69\x31\x30\x30\x35\x30\x61\x66\x69\x69\x31\x30\x30\x35\x31" +"\x61\x66\x69\x69\x31\x30\x30\x35\x32\x61\x66\x69\x69\x31\x30\x30\x35\x33\x61\x66\x69\x69\x31\x30\x30\x35\x34\x61\x66\x69\x69\x31" +"\x30\x30\x35\x35\x61\x66\x69\x69\x31\x30\x30\x35\x36\x61\x66\x69\x69\x31\x30\x30\x35\x37\x61\x66\x69\x69\x31\x30\x30\x35\x38\x61" +"\x66\x69\x69\x31\x30\x30\x35\x39\x61\x66\x69\x69\x31\x30\x30\x36\x30\x61\x66\x69\x69\x31\x30\x30\x36\x31\x61\x66\x69\x69\x31\x30" +"\x30\x36\x32\x61\x66\x69\x69\x31\x30\x30\x36\x35\x61\x66\x69\x69\x31\x30\x30\x36\x36\x61\x66\x69\x69\x31\x30\x30\x36\x37\x61\x66" +"\x69\x69\x31\x30\x30\x36\x38\x61\x66\x69\x69\x31\x30\x30\x36\x39\x61\x66\x69\x69\x31\x30\x30\x37\x30\x61\x66\x69\x69\x31\x30\x30" +"\x37\x31\x61\x66\x69\x69\x31\x30\x30\x37\x32\x61\x66\x69\x69\x31\x30\x30\x37\x33\x61\x66\x69\x69\x31\x30\x30\x37\x34\x61\x66\x69" +"\x69\x31\x30\x30\x37\x35\x61\x66\x69\x69\x31\x30\x30\x37\x36\x61\x66\x69\x69\x31\x30\x30\x37\x37\x61\x66\x69\x69\x31\x30\x30\x37" +"\x38\x61\x66\x69\x69\x31\x30\x30\x37\x39\x61\x66\x69\x69\x31\x30\x30\x38\x30\x61\x66\x69\x69\x31\x30\x30\x38\x31\x61\x66\x69\x69" +"\x31\x30\x30\x38\x32\x61\x66\x69\x69\x31\x30\x30\x38\x33\x61\x66\x69\x69\x31\x30\x30\x38\x34\x61\x66\x69\x69\x31\x30\x30\x38\x35" +"\x61\x66\x69\x69\x31\x30\x30\x38\x36\x61\x66\x69\x69\x31\x30\x30\x38\x37\x61\x66\x69\x69\x31\x30\x30\x38\x38\x61\x66\x69\x69\x31" +"\x30\x30\x38\x39\x61\x66\x69\x69\x31\x30\x30\x39\x30\x61\x66\x69\x69\x31\x30\x30\x39\x31\x61\x66\x69\x69\x31\x30\x30\x39\x32\x61" +"\x66\x69\x69\x31\x30\x30\x39\x33\x61\x66\x69\x69\x31\x30\x30\x39\x34\x61\x66\x69\x69\x31\x30\x30\x39\x35\x61\x66\x69\x69\x31\x30" +"\x30\x39\x36\x61\x66\x69\x69\x31\x30\x30\x39\x37\x61\x66\x69\x69\x31\x30\x30\x39\x38\x61\x66\x69\x69\x31\x30\x30\x39\x39\x61\x66" +"\x69\x69\x31\x30\x31\x30\x30\x61\x66\x69\x69\x31\x30\x31\x30\x31\x61\x66\x69\x69\x31\x30\x31\x30\x32\x61\x66\x69\x69\x31\x30\x31" +"\x30\x33\x61\x66\x69\x69\x31\x30\x31\x30\x34\x61\x66\x69\x69\x31\x30\x31\x30\x35\x61\x66\x69\x69\x31\x30\x31\x30\x36\x61\x66\x69" +"\x69\x31\x30\x31\x30\x37\x61\x66\x69\x69\x31\x30\x31\x30\x38\x61\x66\x69\x69\x31\x30\x31\x30\x39\x61\x66\x69\x69\x31\x30\x31\x31" +"\x30\x61\x66\x69\x69\x31\x30\x31\x34\x35\x61\x66\x69\x69\x31\x30\x31\x39\x33\x61\x66\x69\x69\x31\x30\x38\x34\x36\x61\x66\x69\x69" +"\x36\x31\x32\x34\x38\x61\x66\x69\x69\x36\x31\x32\x38\x39\x61\x66\x69\x69\x36\x31\x33\x35\x32\x61\x6c\x70\x68\x61\x61\x6c\x70\x68" +"\x61\x74\x6f\x6e\x6f\x73\x61\x6d\x61\x63\x72\x6f\x6e\x61\x6e\x67\x6c\x65\x6c\x65\x66\x74\x61\x6e\x67\x6c\x65\x72\x69\x67\x68\x74" +"\x61\x6f\x67\x6f\x6e\x65\x6b\x61\x70\x70\x72\x6f\x78\x65\x71\x75\x61\x6c\x61\x72\x69\x6e\x67\x61\x63\x75\x74\x65\x61\x72\x72\x6f" +"\x77\x62\x6f\x74\x68\x61\x72\x72\x6f\x77\x64\x6f\x77\x6e\x61\x72\x72\x6f\x77\x6c\x65\x66\x74\x61\x72\x72\x6f\x77\x72\x69\x67\x68" +"\x74\x61\x72\x72\x6f\x77\x75\x70\x61\x72\x72\x6f\x77\x75\x70\x64\x6e\x61\x72\x72\x6f\x77\x75\x70\x64\x6e\x62\x73\x65\x62\x65\x74" +"\x61\x63\x61\x63\x75\x74\x65\x63\x63\x61\x72\x6f\x6e\x63\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x63\x64\x6f\x74\x61\x63\x63\x65" +"\x6e\x74\x63\x68\x69\x63\x69\x72\x63\x6c\x65\x6d\x75\x6c\x74\x69\x70\x6c\x79\x63\x6c\x75\x62\x64\x63\x61\x72\x6f\x6e\x64\x63\x72" +"\x6f\x61\x74\x64\x65\x6c\x74\x61\x64\x69\x61\x6d\x6f\x6e\x64\x64\x69\x65\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73\x65\x62\x72\x65" +"\x76\x65\x65\x63\x61\x72\x6f\x6e\x65\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x65\x6c\x65\x6d\x65\x6e\x74\x65\x6d\x61\x63\x72\x6f\x6e" +"\x65\x6e\x67\x65\x6f\x67\x6f\x6e\x65\x6b\x65\x70\x73\x69\x6c\x6f\x6e\x65\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x65\x71\x75" +"\x69\x76\x61\x6c\x65\x6e\x63\x65\x65\x73\x74\x69\x6d\x61\x74\x65\x64\x65\x74\x61\x65\x74\x61\x74\x6f\x6e\x6f\x73\x65\x78\x63\x6c" +"\x61\x6d\x64\x62\x6c\x65\x78\x69\x73\x74\x65\x6e\x74\x69\x61\x6c\x66\x65\x6d\x61\x6c\x65\x66\x72\x61\x6e\x63\x67\x61\x6d\x6d\x61" +"\x67\x62\x72\x65\x76\x65\x67\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x67\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x67\x64\x6f" +"\x74\x61\x63\x63\x65\x6e\x74\x67\x72\x65\x61\x74\x65\x72\x65\x71\x75\x61\x6c\x68\x62\x61\x72\x68\x63\x69\x72\x63\x75\x6d\x66\x6c" +"\x65\x78\x68\x65\x61\x72\x74\x68\x6f\x75\x73\x65\x69\x62\x72\x65\x76\x65\x69\x6a\x69\x6d\x61\x63\x72\x6f\x6e\x69\x6e\x66\x69\x6e" +"\x69\x74\x79\x69\x6e\x74\x65\x67\x72\x61\x6c\x69\x6e\x74\x65\x67\x72\x61\x6c\x62\x74\x69\x6e\x74\x65\x67\x72\x61\x6c\x74\x70\x69" +"\x6e\x74\x65\x72\x73\x65\x63\x74\x69\x6f\x6e\x69\x6e\x76\x73\x6d\x69\x6c\x65\x66\x61\x63\x65\x69\x6f\x67\x6f\x6e\x65\x6b\x69\x6f" +"\x74\x61\x69\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69\x73\x69\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73\x69" +"\x6f\x74\x61\x74\x6f\x6e\x6f\x73\x69\x74\x69\x6c\x64\x65\x6a\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x6b\x61\x70\x70\x61\x6b\x63" +"\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6b\x67\x72\x65\x65\x6e\x6c\x61\x6e\x64\x69\x63\x6c\x61\x63\x75\x74\x65\x6c\x61\x6d\x62" +"\x64\x61\x6c\x63\x61\x72\x6f\x6e\x6c\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6c\x64\x6f\x74\x6c\x65\x73\x73\x65\x71\x75\x61" +"\x6c\x6c\x69\x72\x61\x6c\x6f\x6e\x67\x73\x6d\x61\x6c\x65\x6d\x69\x6e\x75\x74\x65\x6d\x75\x73\x69\x63\x61\x6c\x6e\x6f\x74\x65\x6d" +"\x75\x73\x69\x63\x61\x6c\x6e\x6f\x74\x65\x64\x62\x6c\x6e\x61\x63\x75\x74\x65\x6e\x61\x70\x6f\x73\x74\x72\x6f\x70\x68\x65\x6e\x63" +"\x61\x72\x6f\x6e\x6e\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6e\x6f\x74\x65\x6c\x65\x6d\x65\x6e\x74\x6e\x6f\x74\x65\x71\x75" +"\x61\x6c\x6e\x75\x6f\x62\x72\x65\x76\x65\x6f\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x6f\x6d\x61\x63\x72\x6f\x6e\x6f\x6d" +"\x65\x67\x61\x6f\x6d\x65\x67\x61\x74\x6f\x6e\x6f\x73\x6f\x6d\x69\x63\x72\x6f\x6e\x6f\x6d\x69\x63\x72\x6f\x6e\x74\x6f\x6e\x6f\x73" +"\x6f\x72\x74\x68\x6f\x67\x6f\x6e\x61\x6c\x6f\x73\x6c\x61\x73\x68\x61\x63\x75\x74\x65\x70\x61\x72\x74\x69\x61\x6c\x64\x69\x66\x66" +"\x70\x65\x73\x65\x74\x61\x70\x68\x69\x70\x69\x70\x72\x6f\x64\x75\x63\x74\x70\x72\x6f\x70\x65\x72\x73\x75\x62\x73\x65\x74\x70\x72" +"\x6f\x70\x65\x72\x73\x75\x70\x65\x72\x73\x65\x74\x70\x73\x69\x71\x75\x6f\x74\x65\x72\x65\x76\x65\x72\x73\x65\x64\x72\x61\x63\x75" +"\x74\x65\x72\x61\x64\x69\x63\x61\x6c\x72\x63\x61\x72\x6f\x6e\x72\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x72\x65\x76\x6c\x6f" +"\x67\x69\x63\x61\x6c\x6e\x6f\x74\x72\x68\x6f\x73\x61\x63\x75\x74\x65\x73\x63\x65\x64\x69\x6c\x6c\x61\x73\x63\x69\x72\x63\x75\x6d" +"\x66\x6c\x65\x78\x73\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x73\x65\x63\x6f\x6e\x64\x73\x69\x67\x6d\x61\x73\x6d\x69\x6c\x65" +"\x66\x61\x63\x65\x73\x70\x61\x64\x65\x73\x75\x6d\x6d\x61\x74\x69\x6f\x6e\x73\x75\x6e\x74\x61\x75\x74\x62\x61\x72\x74\x63\x61\x72" +"\x6f\x6e\x74\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x74\x68\x65\x74\x61\x74\x6f\x6e\x6f\x73\x75\x62\x72\x65\x76\x65\x75\x68" +"\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x75\x6d\x61\x63\x72\x6f\x6e\x75\x6e\x64\x65\x72\x73\x63\x6f\x72\x65\x64\x62\x6c\x75" +"\x6e\x69\x30\x30\x41\x30\x75\x6e\x69\x30\x30\x41\x44\x75\x6e\x69\x30\x32\x31\x41\x75\x6e\x69\x30\x32\x31\x42\x75\x6e\x69\x30\x32" +"\x43\x39\x75\x6e\x69\x30\x33\x38\x37\x75\x6e\x69\x30\x33\x39\x34\x75\x6e\x69\x30\x33\x41\x39\x75\x6e\x69\x30\x33\x42\x43\x75\x6e" +"\x69\x30\x33\x43\x32\x75\x6e\x69\x30\x34\x30\x30\x75\x6e\x69\x30\x34\x30\x44\x75\x6e\x69\x30\x34\x35\x30\x75\x6e\x69\x30\x34\x35" +"\x44\x75\x6e\x69\x30\x34\x39\x32\x75\x6e\x69\x30\x34\x39\x33\x75\x6e\x69\x30\x34\x39\x36\x75\x6e\x69\x30\x34\x39\x37\x75\x6e\x69" +"\x30\x34\x39\x38\x75\x6e\x69\x30\x34\x39\x39\x75\x6e\x69\x30\x34\x39\x41\x75\x6e\x69\x30\x34\x39\x42\x75\x6e\x69\x30\x34\x39\x43" +"\x75\x6e\x69\x30\x34\x39\x44\x75\x6e\x69\x30\x34\x41\x30\x75\x6e\x69\x30\x34\x41\x31\x75\x6e\x69\x30\x34\x41\x32\x75\x6e\x69\x30" +"\x34\x41\x33\x75\x6e\x69\x30\x34\x41\x41\x75\x6e\x69\x30\x34\x41\x42\x75\x6e\x69\x30\x34\x41\x45\x75\x6e\x69\x30\x34\x41\x46\x75" +"\x6e\x69\x30\x34\x42\x30\x75\x6e\x69\x30\x34\x42\x31\x75\x6e\x69\x30\x34\x42\x32\x75\x6e\x69\x30\x34\x42\x33\x75\x6e\x69\x30\x34" +"\x42\x36\x75\x6e\x69\x30\x34\x42\x37\x75\x6e\x69\x30\x34\x42\x38\x75\x6e\x69\x30\x34\x42\x39\x75\x6e\x69\x30\x34\x42\x41\x75\x6e" +"\x69\x30\x34\x42\x42\x75\x6e\x69\x30\x34\x43\x30\x75\x6e\x69\x30\x34\x43\x42\x75\x6e\x69\x30\x34\x43\x43\x75\x6e\x69\x30\x34\x44" +"\x38\x75\x6e\x69\x30\x34\x45\x32\x75\x6e\x69\x30\x34\x45\x33\x75\x6e\x69\x30\x34\x45\x38\x75\x6e\x69\x30\x34\x45\x39\x75\x6e\x69" +"\x30\x34\x45\x45\x75\x6e\x69\x30\x34\x45\x46\x75\x6e\x69\x32\x30\x33\x45\x75\x6e\x69\x32\x30\x41\x46\x75\x6e\x69\x32\x31\x32\x36" +"\x75\x6e\x69\x32\x32\x31\x35\x75\x6e\x69\x32\x32\x31\x39\x75\x6e\x69\x32\x32\x32\x37\x75\x6e\x69\x32\x32\x32\x38\x75\x6e\x69\x32" +"\x32\x39\x35\x75\x6e\x69\x32\x35\x41\x31\x75\x6e\x69\x6f\x6e\x75\x6e\x69\x76\x65\x72\x73\x61\x6c\x75\x6f\x67\x6f\x6e\x65\x6b\x75" +"\x70\x73\x69\x6c\x6f\x6e\x75\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x75\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72" +"\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73\x75\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x75\x72\x69\x6e\x67\x75\x74\x69\x6c\x64\x65" +"\x77\x61\x63\x75\x74\x65\x77\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x77\x64\x69\x65\x72\x65\x73\x69\x73\x77\x67\x72\x61\x76\x65" +"\x78\x69\x79\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x79\x67\x72\x61\x76\x65\x7a\x61\x63\x75\x74\x65\x7a\x64\x6f\x74\x61\x63\x63" +"\x65\x6e\x74\x7a\x65\x74\x61\x31\x2e\x30\x30\x28\x55\x52\x57\x29\x2b\x2b\x2c\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x32\x30\x31" +"\x34\x20\x62\x79\x20\x28\x55\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69\x67\x6e\x20\x26\x20\x44\x65\x76\x65\x6c\x6f\x70\x6d\x65\x6e" +"\x74\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x28\x55\x52\x57\x29\x2b\x2b\x2c\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x32\x30\x31" +"\x34\x20\x62\x79\x20\x28\x55\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69\x67\x6e\x20\x26\x20\x44\x65\x76\x65\x6c\x6f\x70\x6d\x65\x6e" +"\x74\x4e\x69\x6d\x62\x75\x73\x20\x53\x61\x6e\x73\x20\x49\x74\x61\x6c\x69\x63\x4e\x69\x6d\x62\x75\x73\x20\x53\x61\x6e\x73\x00\xc8" +"\x02\x00\x01\x00\x06\x00\x0a\x00\x0e\x00\x11\x00\x14\x00\x19\x00\x20\x00\x25\x00\x3e\x00\x48\x00\x54\x00\x62\x00\x70\x00\x75\x00" +"\x7c\x00\xa0\x00\xb4\x00\xb9\x00\xbf\x00\xc5\x00\xca\x00\xe3\x00\xee\x00\xf3\x00\xf9\x01\x1d\x01\x4a\x01\x82\x01\xc2\x01\xd9\x01" +"\xe8\x01\xf9\x02\x04\x02\x0c\x02\x13\x02\x1a\x02\x5f\x02\x77\x02\x99\x02\x9d\x02\xb7\x02\xc7\x02\xdb\x02\xe9\x03\x07\x03\x23\x03" +"\x2e\x03\x39\x03\x3f\x03\x4e\x03\x5b\x03\x63\x03\xa0\x03\xdd\x03\xfd\x04\x28\x04\x61\x04\x6d\x04\x94\x04\xa7\x04\xc1\x04\xca\x04" +"\xd1\x04\xe0\x04\xe5\x04\xea\x05\x03\x05\x30\x05\x35\x05\x49\x05\x5b\x05\x63\x05\x72\x05\x8a\x05\x97\x05\xa2\x05\xb7\x05\xc3\x05" +"\xd7\x05\xde\x05\xe3\x05\xea\x05\xf4\x05\xfb\x06\x04\x06\x0b\x06\x13\x06\x1f\x06\x2b\x06\x36\x06\x41\x07\x06\x07\x46\x07\x4d\x07" +"\x72\x07\xb6\x08\x35\x08\xb1\x09\x29\x09\x6c\x09\xd0\x0a\x34\x0a\x70\x0a\xbb\x0a\xea\x0b\x3b\x0b\x40\x0b\x83\x0b\xc3\x0c\x04\x0c" +"\x3c\x0c\x69\x0c\x87\x0c\xc3\x0c\xfe\x0d\x22\x0d\x3c\x0d\x65\x0d\x77\x0d\xa4\x0d\xc6\x0d\xf2\x0e\x1d\x0e\x3c\x0e\x5c\x0e\x6d\x0e" +"\x94\x0e\xba\x0e\xde\x0f\x00\x0f\x07\x0f\x29\x0f\x3c\x0f\x5e\x0f\x77\x0f\x8b\x0f\xa8\x0f\xb2\x0f\xba\x0f\xd1\x0f\xd7\x0f\xf3\x10" +"\x0d\x10\x18\x10\x31\x10\x36\x10\x4a\x10\x62\x10\x7a\x10\x91\x10\xa0\x10\xb3\x10\xc9\x10\xde\x10\xed\x10\xf6\x11\x0a\x11\x1e\x11" +"\x30\x11\x43\x11\x56\x11\x69\x11\x76\x11\x87\x11\x8e\x11\x9e\x11\xaf\x11\xc0\x11\xcd\x11\xde\x11\xeb\x11\xf8\x12\x05\x12\x15\x12" +"\x25\x12\x33\x12\x42\x12\x51\x12\x5e\x12\x6c\x12\x7a\x12\x88\x12\x96\x12\x9e\x12\xaa\x12\xb7\x12\xc2\x12\xc5\x12\xd1\x12\xdd\x12" +"\xe9\x12\xf5\x13\x01\x13\x0c\x13\x17\x13\x22\x13\x2d\x13\x38\x13\x43\x13\x4e\x06\x9c\xdd\x05\x0b\x05\x37\x06\x0b\xf9\x6d\x15\x0b" +"\x2c\x1d\x0e\x4b\x1d\x0e\x06\xeb\xf8\x56\x0b\x06\xfb\x2f\xfd\x6d\x05\x0b\x06\x7c\x43\x05\x0b\xf8\xa0\xf7\x6f\x15\xa6\xfb\x6f\x05" +"\xf1\x06\xd9\x1d\xee\x06\xf7\x0f\xf7\x6f\x05\xf7\xa7\xe7\x1d\x0b\xf7\xf1\x22\x1d\x2d\x26\x1d\xe9\x06\x0b\x15\xf7\x14\xf7\x28\x05" +"\x4b\x06\x23\x79\x1d\x0e\x15\x78\x30\x8f\x23\x05\xa9\x06\xbb\xf3\x9e\xe6\x05\x0e\x15\xfb\x14\xfb\x28\x05\xc7\x06\xf7\x48\xf7\x28" +"\x05\x0b\x06\x9b\xd5\x05\x0b\x06\xf7\x1e\xf9\x1b\x05\x0b\xf8\x54\xf7\xb2\x15\xf8\x04\xf8\x4f\x05\xfb\x03\x06\xfb\xb5\xfb\xf9\xfb" +"\x1c\xf7\xf9\x05\xfb\x04\x06\xf7\x4e\xfc\x4f\x4e\xfb\xb2\x05\xe9\x06\x0b\x15\x23\x06\x75\x24\x05\xf2\x06\xf7\x4c\xf2\x15\x23\x06" +"\x75\x24\x05\xf2\x06\x0b\xb5\xcc\xa0\x1f\x0e\xfb\x3a\x05\xe9\x06\x0b\x1f\x6f\x65\x05\x71\x0b\x2b\xfc\x56\x05\x0b\x15\x76\x29\x05" +"\xc2\x06\x50\x80\x73\x6e\x64\x1b\x83\x65\x05\xca\xbb\xbc\xdd\x9d\x1f\x9e\xe8\x05\x0e\x15\xfb\xa6\x06\x7c\x46\x05\xf7\xa6\x06\x0e" +"\xf9\x6d\xe4\x1d\x0b\xf7\x03\xf8\xa0\x05\x0b\xf7\x49\xf8\xa0\x15\xfb\x03\xfc\xa0\x05\x78\x1d\xe5\x1b\xbd\xb0\x68\x5d\x85\x89\x7d" +"\x87\x7a\x1f\x41\xfb\xf1\x05\xdf\x06\xdb\xf8\x0c\x6c\x1d\x0b\xf8\xc0\x16\xf7\x9c\xf8\xa0\x05\x30\x06\xfb\x58\xfc\x2c\x80\xf8\x2c" +"\x05\x22\x06\xfb\x51\xfc\x2c\x78\xf8\x2c\x05\x30\x06\xb3\xfc\xa0\x05\xeb\x06\xf7\x57\xf8\x36\x97\xfc\x36\x05\x0b\x15\x35\x06\x9a" +"\xd0\x05\xbe\x96\x9c\x9b\xb7\x1b\x92\x92\x8b\x89\x98\x1f\x9a\xd0\x05\x8f\x79\x80\x8c\x7b\x1b\x3e\x53\x5e\x41\x7b\x1f\x78\x32\x05" +"\x45\x06\x7d\x48\x05\xd1\x06\x2a\xfc\x5d\x05\xdf\x06\xec\xf8\x5d\x05\xe1\x06\x0b\x44\x4e\x76\x64\x62\x1e\x66\x68\x74\x57\x5c\x1a" +"\x4e\xae\x6e\xf2\x70\x1e\xd5\x78\xac\x82\x9a\x85\x94\x80\x19\x92\x82\x91\x7c\x82\x1a\x78\x7c\x6d\x7a\x7e\x1e\x76\x72\x60\x7e\x60" +"\x1b\x45\x65\xa6\xbd\x91\x8c\x94\x8c\x95\x1f\x32\x06\x86\x74\x8a\x7f\x7b\x1a\x0b\x15\x89\x82\x87\x8b\x87\x1b\x71\x7f\x94\x9f\x8e" +"\x8b\x8f\x8c\x8e\x1f\xcb\xf7\xc1\x05\x91\x0b\xf7\xdd\x22\x1d\x2d\x26\x1d\xf8\x5a\x20\x1d\xfb\xfc\x06\x0b\x8d\x9a\x8e\x9a\x1f\xf7" +"\x01\xf8\x94\x05\x2d\x06\x25\xfc\x72\x05\x0b\x15\x87\x79\x8a\x83\x81\x1a\x50\xbf\x63\x0b\x06\xb5\xf7\x5d\x05\x37\x06\x0b\x96\x89" +"\x87\x95\x1f\x75\x0b\x98\x93\x8c\xb7\x9a\x08\x0b\xf7\x46\xf8\xa0\x15\x42\xfb\xe7\x05\x84\x6a\x87\x6c\x7c\x1a\x3e\xd8\x57\xf7\x05" +"\xd1\xc4\x9e\xb1\xb5\x1e\xb1\xad\x97\xa5\x9e\xe6\xd4\xf7\xe7\x18\x37\x06\x42\xfb\xe7\x80\x54\x7b\x6f\x6d\x76\x19\x7a\x71\x68\x81" +"\x67\x1b\x4c\x63\xa8\xb9\x94\x8e\xa2\x90\xa3\x1f\xd4\xf7\xe7\x05\x0b\x9b\x51\x1b\x7e\x3e\x15\xd5\xb6\x5b\x3a\x50\x7b\x4a\x6f\x59" +"\x1f\x46\x65\x55\x67\x46\x66\x1d\x0b\xf8\xc1\xf8\xa0\x15\xfc\x1c\x27\x1d\xf7\xba\x06\xfc\x1f\xfc\x0e\x79\x41\x05\xf8\x3f\x06\x9a" +"\xd3\x05\xfb\xda\x06\xf8\x1c\xf8\x0d\x05\x0b\x15\x69\x1d\x0b\xf8\x81\xf9\x1b\x15\xf7\x82\x20\x1d\xfc\xd1\x06\x7a\x39\x05\xf7\x85" +"\x06\xfb\x1e\xfd\x1b\x05\xe9\x06\x0b\xfb\x01\xfc\x94\x05\x28\x76\x3a\x4f\xfb\x06\x1b\x2a\x4b\xb9\x0b\x15\x23\x06\x75\x24\x05\xf3" +"\x06\xf7\x4b\xf2\x15\x23\x06\x75\x24\x05\xf3\x06\x0b\xbb\x1d\xf3\xee\xc3\x28\x05\xca\x06\x4b\xf7\x2a\x05\x0b\xfb\x20\x37\x50\xfb" +"\x03\x78\x1e\xdf\x06\x94\xa7\x92\x99\x99\x99\x08\xa2\xa1\xb5\x99\xb6\x1b\xc8\xb8\x70\x66\x86\x8a\x0b\x1f\x88\x79\x82\x62\x78\x80" +"\x42\x84\x19\xfb\x1a\x7f\x61\x81\x5a\x6c\x08\x57\x6a\x6d\x56\x51\x1a\x3b\xc1\x5b\x0b\xf8\xa0\x15\xfb\x03\xfc\xa0\x05\xdf\x06\x0b" +"\x06\xdd\xb3\x6c\x4b\x31\x3e\x44\x28\x1f\x0b\x9d\x1f\x9f\xe8\x05\x0e\xa2\xb6\xac\x9e\xac\xa9\x9d\x1f\xa4\x9a\xa7\x93\xbc\x92\x0b" +"\x1f\xfb\x00\xf7\x46\x15\x4d\x7e\x33\x56\x33\x1b\x0b\x15\xfb\xa7\x06\x7c\x46\x05\x0b\x3d\x1d\xa6\x8b\x8b\x95\x1a\xcf\x46\xb8\x22" +"\x4c\x1d\x85\x8a\x83\x4d\x1d\xe5\xaf\xb3\x92\x98\xb0\x1e\xaa\x96\x9a\x95\xb5\xaf\x08\x84\x07\x87\x07\x61\xa7\x73\xbb\x97\x8e\x8b" +"\x91\xa3\x1e\x8d\x91\x8d\x8c\x91\x52\x1d\x52\x6b\x51\x1d\xea\x43\x1d\x0e\xf7\x92\xf7\xce\x15\xf7\x83\x06\xcd\xae\x71\x5a\x79\x88" +"\x76\x86\x76\x1f\x73\x27\x8b\x8b\x6c\x1a\x7b\x8c\x80\x8e\x76\x1e\xf7\x05\x06\x90\xa2\x05\x7e\x97\x83\x9e\xa1\x1a\x95\x8d\x9d\x8f" +"\xa1\x1e\x9f\xf7\x02\x8c\x93\x8c\x1d\x6d\x61\x7a\x4b\x1b\x0b\xf8\xc7\xf7\x7e\x15\x99\xd6\x8e\xa5\xab\x1a\xed\x5f\x1d\xdf\xa1\x8c" +"\x95\x8f\x9a\x1f\x9d\xd3\x77\x1d\x81\x8a\x84\x89\x7b\x1f\x0b\xf9\x56\x22\x1d\x49\x1d\xd0\x99\x3f\x1d\x84\x68\x84\x5e\x7b\x1a\x62" +"\xa2\x59\xab\x6e\x1e\x66\xb4\xcd\x76\xd8\x1b\xf7\x3c\xf7\x15\xe9\xf7\x26\xaa\x1f\xf7\x01\xf8\x94\x05\x0b\xf8\x77\x16\x38\x1d\x37" +"\x06\x4c\xfb\xbd\x05\xfb\x00\x74\x45\x45\x35\x1b\x54\x69\xa8\xbb\x93\x8c\x94\x8d\x95\x1f\xda\xf8\x07\x21\x1d\x35\xfc\x28\x05\x89" +"\x81\x8a\x80\x7e\x1a\x47\xbf\x62\xe1\xd9\xc4\xa3\xc3\xc5\x1e\x7f\x52\x05\x0b\xa6\x1d\x5a\x6a\x9f\xa9\x1f\x90\x07\x93\x07\x0e\x6a" +"\xa8\x1e\xaf\x62\x56\x9b\x3d\x1b\x24\x3a\x6e\x53\x55\x1f\x62\x61\x6c\x44\x58\x1a\x4c\xb7\x56\xce\x78\x1e\xf7\x3f\x5b\x05\xdc\x74" +"\xab\x6f\x5a\x1a\x6c\x0b\xd6\x16\xe9\x06\x9d\xde\xf8\x68\xf8\x42\xfb\x01\xfc\x95\x05\xe8\xb8\x1d\x0b\xef\x8c\x19\x90\x06\x95\x06" +"\x9d\xe0\x05\x8d\x7e\x83\x8c\x80\x1b\x51\x5f\x71\x44\x4c\x1f\x9c\xdd\x05\x0b\x18\x60\x1d\x92\xa1\x62\x33\x1d\x0b\xe5\x1d\x64\x1b" +"\x83\xd7\x1d\xad\x1d\xc4\x1b\xf7\x0c\xf2\xd5\xf7\x00\xaa\x1f\xdf\x1d\x0b\xb6\x1d\x6e\x73\x0b\xf9\x79\x63\x1d\x0b\x79\xb3\x71\xa6" +"\x1e\xab\x6c\x62\x9a\x52\x1b\x31\x3a\x65\x46\x56\x1f\x5c\x4e\x69\xfb\x01\x2f\x1a\x0b\x15\xfb\x05\x2a\x61\x36\x3a\x1f\x32\x2f\x56" +"\xfb\x17\xfb\x14\x1a\x34\xa6\x3f\xb9\x5d\x1e\x5b\xbb\xdc\x6e\xe0\x1b\xe9\xe0\xa6\xbd\xcc\x1f\xf7\x09\xe5\xd7\xf7\x36\xf7\x32\x1a" +"\xda\x0b\xfa\x40\x4b\x1d\x0e\x15\x23\x06\x75\x24\x05\xf3\x06\xf7\x4c\xf2\x15\x23\x06\x75\x24\x05\xf3\x06\x0e\x1b\x44\x5f\xbc\xdc" +"\xc5\x9c\xcc\xa6\xbd\x1f\xcf\xaf\xc4\xb0\xcd\x1b\x0b\xf7\x48\x4e\x1d\xc5\xf7\xa4\x0b\x98\x8c\x94\x8e\x9e\x1f\x34\x06\x84\x71\x89" +"\x7b\x76\x1a\x0b\x75\x24\x05\xbb\x06\x81\x52\x76\x6f\x67\x86\x83\x65\x18\xc8\x8f\xb7\xbb\x9c\xda\xa0\xef\x18\x0b\xfb\x14\xfb\x2a" +"\x05\xc7\x06\xf7\x48\xf7\x2a\x05\x0b\x15\xfc\xeb\x06\x80\x59\x05\xf8\xeb\x06\x0e\x05\x8e\x98\x8c\x97\x98\x1a\xd7\x56\xbc\x38\x3f" +"\x49\x70\x56\x57\x1e\x98\xcc\x05\x0b\x8b\x90\x1b\x9c\x99\x81\x7f\x6b\x71\x74\x66\x0b\x06\xdb\xc7\x9f\xb5\xbb\x1f\xc0\xba\xab\xd3" +"\xd3\x1a\xf5\x46\xc8\xfb\x0d\x1e\x0b\xd0\x1d\x6d\xa7\x61\x1f\x0b\x15\x20\x74\x1d\x0b\xf7\x82\x05\x25\x75\x1d\x0b\x08\xc0\x06\xa8" +"\xa0\x91\x8f\xa2\x1b\x0b\xdf\x06\x38\x1d\x37\x06\x0b\x06\xf7\x11\xfb\x28\x05\xc0\x06\x0b\x06\xfb\x28\xfb\x5d\x05\x0b\xdf\x06\xf7" +"\x04\xf8\xa0\x05\x0b\x15\xe7\xa5\xd5\xcb\xdc\x1b\xd2\xb8\x5b\x40\x0b\xdf\x06\xc8\xf7\xb5\x05\xf7\x02\xa3\xd1\xcf\x0b\x29\x53\xed" +"\x05\x4c\x06\xcb\xfb\x28\x05\x0b\x71\x71\x6f\x77\x7c\x99\xa0\xa5\xa6\xa5\x0b\xf7\x75\xf8\x05\x15\xcd\xa0\xb4\xa6\xda\x1b\xcc\xb2" +"\x76\x67\x85\x8a\x85\x8a\x84\x1f\x86\x72\x81\x60\x79\x80\x43\x84\x19\xfb\x15\x80\x60\x81\x59\x6d\x08\x58\x6b\x6c\x55\x51\x1a\x3c" +"\xc2\x5a\xe2\xe2\xe2\xb0\xcc\xce\x1e\x45\xb2\xc2\x6b\xdb\x1b\xf7\x0d\xf1\xd4\xf7\x01\xab\x1f\x37\x06\x46\x67\x56\x67\x49\x1b\x68" +"\x70\x93\x9c\x77\x1f\x71\xa1\x7a\xad\xa7\x1a\x91\x07\x97\x07\xa4\x8c\x96\x8f\x9c\x1e\xf8\x16\x06\x99\xd8\x8e\xa5\xac\x1a\xe8\x36" +"\xd7\x25\x47\x46\x72\x63\x5e\x1e\x88\x92\x89\x8d\x78\x9b\x08\xa9\x67\x68\x95\x4b\x1b\x38\x46\x75\x64\x62\x1f\x73\x73\x7e\x70\x7b" +"\x51\x08\xf7\xac\xfb\x61\x15\x4f\x7e\x34\x54\x37\x1b\x50\x6c\xa2\xb6\xac\x9e\xab\xa9\x9e\x1f\xa3\x9a\xa6\x93\xbf\x92\xee\x99\x91" +"\x8c\xb0\x98\x08\xe4\xbc\x15\xed\xaa\xcf\xc5\xdf\x1b\xd1\xb7\x5c\x3f\x80\x8a\x84\x89\x7c\x1f\x0b\xf8\xbc\xbe\x3d\x1d\xa5\x8b\x8b" +"\x96\x1a\xcf\x46\xb8\x22\x4c\x1d\x85\x8a\x83\x4d\x1d\xe5\xaf\xb3\x92\x98\xb0\x1e\xaa\x96\x9a\x95\xb5\xaf\x08\x84\x07\x87\x07\x61" +"\xa7\x73\xbb\x97\x8e\x8b\x91\xa3\x1e\x8d\x91\x8d\x8c\x91\x52\x1d\x52\x6b\x51\x1d\xea\x43\x1d\x0b\xf9\x56\xf8\x97\x7e\x1d\x0b\x15" +"\x91\xa7\x8d\x97\x9b\x1a\xb6\x76\xb9\x5a\x1d\x78\x65\x6f\x71\xe6\x1d\xb5\xe6\x68\x1d\xfb\x0d\xe5\x44\xf7\x2b\xf4\xe3\x92\x1d\x83" +"\x88\x78\x1e\x0b\xf8\x96\xf8\x0e\x15\x90\xa0\x8c\x94\x98\x1a\xd1\x49\xbb\x29\x3c\x1d\x3b\xd0\x5b\xf7\x09\xf7\x29\xec\xd8\xf7\x0b" +"\xc8\x6a\xab\x33\xa1\x1e\x3f\x9e\x05\x53\x99\x6e\x9f\xa5\x1a\x9f\x97\xa4\x9d\x9c\x1e\xa2\xa3\xa9\x95\xb7\x1b\xc6\xac\x75\x63\x1f" +"\x85\x07\x86\x07\x8a\x80\x05\x0b\xf8\xa0\x15\x7a\x3d\x7c\xac\x81\x99\x75\x9b\x19\x9e\x71\x6b\x96\x69\x1b\x3e\x3d\x65\x4d\x5a\x1f" +"\x55\x48\x66\xfb\x03\x2e\x1a\xfb\x01\xd2\x3f\xf1\xca\xc5\xa6\xc0\xbe\x1e\x87\x78\x05\xfb\x1d\x6e\x56\x56\x20\x1b\x47\x63\xa6\xb8" +"\x1f\x91\x07\x93\x37\x07\x89\x73\x8b\x8a\x85\x1a\x3e\xd0\x59\xf7\x00\xdb\xd1\xa3\xb6\xb8\x1e\xbd\xbb\xa6\xc8\xa6\xf7\x13\xe8\xf8" +"\x4b\x18\xfb\x82\x4d\x15\xcb\xb5\x5b\x41\x4c\x79\x41\x6f\x5a\x1f\x4e\x6a\x50\x65\x4f\x1b\x48\x61\xbc\xdb\xc7\x9b\xcb\xa8\xbf\x1f" +"\xcc\xb0\xc2\xb0\xcb\x1b\x0b\xf9\xad\xf8\x15\x15\xfb\xc4\x06\x79\x39\x05\xf7\x72\x06\x85\x71\x7c\x49\x6e\x5d\x58\x61\x19\x5f\x55" +"\x51\x76\x46\x1b\x41\x4b\xa7\xb9\x6c\x1f\x73\xae\x7e\xc0\xc4\x1a\xe3\xae\xf2\xc0\xd1\x1e\xda\xc8\xe1\xb6\xec\x1b\xc8\xbd\x79\x69" +"\xac\x1f\xa5\x70\x95\x70\x8c\x5d\x08\xe6\x92\x06\x8f\x07\x91\x07\xf7\x19\x2a\xde\xfb\x31\xfb\x08\x29\x63\x3d\x3d\x1e\x2b\x2b\x51" +"\xfb\x1c\xfb\x16\x1a\x2d\xad\x35\xc3\x5d\x1e\x66\xb8\xcd\x76\xcf\x1b\xcc\xd0\x9d\xaa\xc1\x1f\xa3\x99\x9e\x99\xb1\xab\x8f\x31\x18" +"\xc6\x06\x0b\x9e\x89\x15\xa5\x6f\xd9\xd2\x05\x61\xa9\xc0\x75\xcf\x1b\xe7\xd8\xb3\xd7\xc2\x1f\xb9\xcb\xac\xf7\x00\xe4\x1a\xa8\x85" +"\xa4\x7e\xa8\x1e\xdc\xd5\x71\xa9\x3f\x46\x05\xb8\x6a\x59\xa1\x44\x1b\x2f\x3a\x62\x40\x58\x1f\x5e\x4a\x6a\xfb\x01\x36\x1a\x6c\x91" +"\x70\x9a\x6b\x1e\xd4\xce\x15\x86\x9a\x8a\x92\x9c\x1a\xc9\x9b\xcb\xa7\xbe\x1e\xcf\xaf\xc3\xb0\xcb\x1b\xb9\xaf\x79\x69\x9e\x1f\x99" +"\x63\x15\x8f\x77\x8c\x80\x80\x1a\x5b\x78\x3f\x73\x5e\x1e\x49\x67\x52\x64\x4b\x1b\x5f\x67\x9c\xaa\x78\x1f\x0b\xf8\xbc\xbe\x3d\x1d" +"\xa6\x8b\x8b\x95\x1a\xcf\x46\xb8\x22\xfb\x20\x37\x50\xfb\x03\x78\x1e\xdf\x06\x94\xa7\x92\x99\x99\x99\x08\xa2\xa1\xb5\x99\xb6\x1b" +"\xc7\xb9\x70\x66\x87\x8a\x84\x8a\x83\x4d\x1d\xe4\xb0\xb3\x92\x98\xb0\x1e\xaa\x96\x9b\x95\xb4\xaf\x08\x84\x07\x87\x07\x0b\xda\x16" +"\xf7\xde\x06\xdd\xcb\xa7\xc6\xbf\x1f\xb6\xbb\xa1\xc5\xcc\x1a\xc8\x70\xae\x45\xa9\x1e\xe3\xb2\xbb\xd3\xe5\x1a\xb1\x80\xa7\x72\xa6" +"\x1e\xaf\x69\x61\x9a\x46\x1b\xfb\xbc\x06\xa6\xfb\xce\x15\xbd\xf7\x7c\x05\xf7\x48\x06\xe1\xb1\x70\x50\x66\x7d\x67\x73\x70\x1f\x6b" +"\x6d\x64\x7d\x48\x1b\xfb\x8f\xfb\xe1\x15\xc1\xf7\x8f\x05\xf7\x76\x06\xd0\xb0\x6c\x4f\x64\x80\x69\x74\x6d\x1f\x63\x6c\x65\x7a\x53" +"\x1b\x0e\xf7\xee\xf7\xc4\x15\x22\x60\x9f\xbc\xbc\xc2\xb3\xce\xb0\xae\x7d\x75\x9b\x1f\x95\x7e\x8f\x7d\x8d\x6d\x08\xe0\x06\x8a\xba" +"\x85\xa4\x78\xa6\x08\xb8\x6c\x51\xa5\x45\x1b\xfb\x09\x2c\x40\x30\x65\x9c\x6f\xb6\x6c\x1f\x39\x75\x5c\x53\x41\x1a\x33\xd5\x50\xf7" +"\x03\xd3\xcd\xa3\xb7\xbb\x1e\xb0\xac\x9e\xac\x9e\xc4\x08\x2e\x06\x41\x72\x53\x63\x3c\x1b\x47\x65\xa7\xbf\xcd\xca\xae\xf7\x09\x8e" +"\x94\x8b\x8a\x95\x1f\x0b\xf7\x35\xf7\xe9\x15\x43\xfb\xe9\x05\xa3\x1d\x47\xfb\xd5\x05\x45\x06\x7e\x48\x05\xf7\x36\x16\xf7\x3b\x06" +"\x99\xce\x05\xfb\x3a\x06\xbe\xf7\x83\x05\xf7\x3f\x06\xf6\xcb\x4d\x22\x2f\x6b\xfb\x0c\x63\x4c\x1f\x3b\x58\x3e\x60\x30\x1b\xfb\x40" +"\x06\x0e\xfc\x79\x15\xc4\xaa\xa1\xaa\xbc\x1a\xc3\x62\xad\x4a\x36\x46\x4e\x40\x6f\x94\x7d\xab\x74\x1e\x4b\x6e\x69\x5d\x4f\x1a\x4b" +"\xb8\x64\xd3\xe9\xdb\xd3\xdf\xaf\x7a\xa6\x67\x9e\x1e\x66\xf7\x2e\x15\xb2\xa1\x78\x6b\x5c\x65\x68\x58\x64\x75\x9e\xab\xb9\xb2\xaf" +"\xbd\xd4\x1d\x60\x6f\xa4\xb2\xc5\xbb\xb9\xc7\x1f\x0b\x22\x1d\x37\x06\x4f\xfb\xad\x9f\x1d\xfb\x20\xf8\x62\x15\xd6\xb6\x59\x36\x4f" +"\x7b\x4f\x6d\x57\x1f\x48\x64\x5a\x69\x4e\x1b\x41\x60\xbd\xe1\xc4\x9b\xca\xa7\xbe\x1f\xd0\xb1\xbb\xab\xcb\x1b\x0b\xf8\xc9\xf7\x7e" +"\x15\x98\xb8\x90\xa7\xae\x1a\xf7\x0d\x40\xd7\xfb\x0c\x36\x3e\x65\x47\x53\x1e\x58\x4b\x6a\x27\x2d\x1a\xfb\x0f\xd7\x40\xf7\x10\xf7" +"\x0d\xe5\xcb\xf7\x0a\xb8\x1e\x32\x06\x46\x66\x55\x67\x49\x1b\x42\x59\xbd\xd4\x9d\x8d\x98\x90\xa5\x1f\x9a\xcf\x15\xed\xa7\xd2\xc9" +"\xe0\x1b\xd1\xb8\x5c\x42\x7e\x8a\x82\x87\x79\x1f\x0b\xb1\x1d\xcc\x1d\x0b\x15\xfb\x8a\xfb\x79\xfb\x72\xfb\x83\xfb\x43\xf7\x15\xfb" +"\x14\xf7\x45\xf7\x8a\xf7\x79\xf7\x72\xf7\x84\xf7\x43\xfb\x15\xf7\x13\xfb\x45\x1f\x7d\x4d\x15\xf7\x25\xf4\x21\xfb\x26\xfb\x5d\xfb" +"\x51\xfb\x4f\xfb\x5e\xfb\x24\x21\xf6\xf7\x26\xf7\x5c\xf7\x51\xf7\x4f\xf7\x5e\x1f\x0e\x9f\x1a\xb8\x7e\x9f\x5c\xaa\x1e\xb2\xa1\x9b" +"\x96\x9d\x9b\x08\xb3\xb0\xa6\xce\xc9\x1a\xf5\x51\xbb\xfb\x14\x1e\xfb\xe4\x26\x1d\xe9\x06\xdf\xf8\x20\x15\xc1\xf7\x8f\x05\xf7\x7a" +"\x06\xc0\xa5\x84\x76\x9e\x1f\x98\x7d\x93\x74\x73\x1a\x65\x7d\x60\x75\x6f\x1e\x67\x0b\x65\xbe\x4b\x99\x1e\xb1\x95\x9f\x96\xa4\xa4" +"\x08\xb3\xb2\xa2\xc1\xc1\x1a\xf0\x40\xce\xfb\x05\x34\x3c\x64\x48\x5c\x1e\x71\x66\x7c\x65\x81\x50\x08\xec\x06\xf0\x9c\xc5\xc4\xe0" +"\x1b\xcb\xb0\x6a\x50\x35\x44\x4a\x2c\x1f\x6a\x06\x7a\x3a\x05\xb3\x06\xe5\xb3\x6e\x49\x0b\xf7\x47\x4e\x1d\xc8\xf7\xb5\x05\xf3\xa2" +"\xda\xd4\xe7\x1b\xbc\xa7\x76\x66\x81\x87\x72\x86\x73\x1f\xfb\x0c\xfc\xcb\x05\xdf\x06\xf7\x0e\xf8\xd2\x05\x92\xac\x8f\xa6\x96\x1a" +"\xcd\x4e\xb9\x36\x3a\x52\x6c\x43\x59\x1e\x9d\xe3\x05\x0b\x08\x29\x06\x72\x52\x7b\x6d\x79\x72\x08\x50\x61\x3f\x66\x3c\x1b\x23\x46" +"\xdc\xf7\x0d\xe7\xa9\xee\xbe\xd7\x1f\xe5\xc8\xd4\xb6\xe7\x1b\xf0\xbd\x5a\xfb\x00\x93\x1f\xeb\x06\xb9\x1d\x0b\xf9\x63\x15\x6e\x79" +"\x81\x83\x78\xbc\x1d\x7f\x7c\x83\x7a\x80\x68\x72\x1d\x90\x42\x1d\xcc\x9c\x87\xa1\x1b\xb7\xb6\x31\x1d\xf8\x85\xf8\xa0\x15\xfb\x7b" +"\xfc\x2c\x5b\xf8\x2c\x05\x36\x06\xcd\xfc\xa0\x59\x36\x05\x61\x73\x78\x7d\x69\x1b\x7c\x81\x8d\x94\x78\x1f\x7b\x3e\x05\x83\xa2\x98" +"\x88\x9f\x1b\xa8\xa9\x94\x9a\xa3\x1f\xa6\x9d\x9c\x9f\xa6\xb9\xf8\x05\xf9\x0e\x18\x0b\xa8\xc2\xc6\x1e\xbf\xba\xae\xd3\xc4\x1a\xa6" +"\x83\xa5\x7b\xa4\x1e\x75\xae\x6e\x9f\x5c\x98\xfb\x40\xbc\x18\x3e\xa1\x73\x9f\xb7\x1a\xaf\x99\xa9\xa9\xa6\x1e\xac\xb0\xbb\x9b\xce" +"\x1b\xc3\xb5\x80\x77\xa1\x1f\x9e\x7a\x98\x6b\x6e\x1a\x82\x8a\x0b\x62\x1d\x5b\x9b\x5b\xa7\x68\x1e\x60\xad\xb7\x78\xcc\x1b\xdd\xd0" +"\xa8\xc1\xb9\x1f\xa5\xa9\x9b\xad\x9b\xc3\x08\x37\x06\x39\x6d\x54\x5f\x43\x1b\x0b\xf8\x38\x15\xcd\xf7\xc9\x05\x2d\x26\x1d\xf7\xd3" +"\x6e\x1d\xfb\x80\x39\x15\xf7\x66\x4f\x1d\xfb\x67\x06\x0b\x06\xf7\x2f\xf9\x6d\x05\x2d\x06\x3c\xfc\x04\x05\x76\x39\x4f\x82\x50\x1b" +"\x20\x5f\xa3\xc4\x92\x8c\x96\x8d\x94\x1f\xd5\x1d\x7f\x80\x1a\x5d\xa3\x61\xb3\x72\x1e\x71\x0b\xa0\x1d\xbe\x68\xad\x1e\xac\x69\x5e" +"\x9b\x51\x1b\x7e\x3e\x15\xd5\xb6\x0b\xf8\x67\x16\xf7\xe2\xf8\xf1\xfb\x15\xfc\xf1\x05\xe4\x06\xf7\x2f\xf9\x6d\x05\xfb\x17\x06\xfb" +"\xee\xfd\x07\x3b\xf9\x07\x05\xfb\x15\x26\x1d\xe4\x06\xf7\x15\xf8\xf1\xd8\xfc\xf1\x05\x0e\xf7\xbd\x37\x1d\xb6\xf7\x5f\xf6\xe3\xf7" +"\x06\xfb\xb7\x05\xeb\x06\xfb\x20\xf7\xeb\xf7\x72\xf7\x49\x05\xfb\x00\x06\xfb\xa1\xfb\x6e\x05\x0b\xf7\x24\x16\xe3\x06\xc4\xb3\xa5" +"\xcd\xb7\x1f\xf8\x30\xf9\x11\x05\xfb\x06\x06\xfb\xb2\xfc\x62\x26\xf8\x62\x05\xfb\x00\x06\xf7\x22\xfc\xcd\x69\x51\x72\x78\x61\x8a" +"\x19\x53\x06\x0b\xf8\x15\xf8\xaf\x15\x33\x3a\x63\x43\x56\x1f\x5c\x4d\x6c\x25\x2f\x1a\xfb\x09\xd8\x3e\xf7\x09\xe6\xda\xb2\xd4\xc1" +"\x1e\xba\xc9\xaa\xf0\xe7\x1a\xf7\x0b\x3f\xd7\xfb\x0c\x1e\x0b\xf7\x2e\x15\xb1\xa2\x78\x6b\x5c\x64\x68\x58\x65\x74\x9e\xab\xb9\xb2" +"\xaf\xbe\xd4\x1d\x5f\x6f\xa4\xb2\xc5\xbb\xb9\xc8\x1f\x0b\xf7\x8d\xf7\xe0\x15\xf8\x21\x20\x1d\xfc\x21\x06\xbd\xf7\x7d\x05\xf8\x30" +"\x20\x1d\xfc\x8d\x26\x1d\xf8\x9f\x20\x1d\xfc\x42\x06\x0b\xf7\xd7\x6f\x1d\x83\x5f\x15\x9f\x9a\x7d\x77\x70\x7a\x1d\xa6\x1f\x0b\xe9" +"\x06\xd4\xf7\xed\x05\xd7\x06\xf7\x2c\xfb\xed\x05\xee\x06\xfb\x3e\xf8\x14\xf7\xd4\xf7\xed\x05\xfb\x2b\x06\xfb\x88\xfb\xc2\x05\x4b" +"\x06\xcb\xf7\xc2\x05\x0b\x05\xcc\x6b\x63\xa5\x44\x1b\xfb\x3a\xfb\x10\xfb\x32\xfb\x67\xfb\x09\xce\x3f\xf3\xb7\xb8\x98\xa4\xb3\x1f" +"\xa9\x9d\x98\x9a\x99\xa7\x7b\x3f\x18\xdc\x06\x0b\x15\x2e\x39\x61\x41\x58\x1f\x5e\x4b\x6a\xfb\x02\x36\x1a\xfb\x03\xd8\x3f\xf7\x04" +"\xeb\xd7\xb2\xd8\xc3\x1e\xb9\xca\xac\xf7\x01\xe2\x1a\xc0\x77\x0b\x15\xd6\xb7\x58\x34\x54\x7a\x4b\x70\x59\x1f\x47\x66\x59\x6a\x4a" +"\x1b\x41\x5e\xbd\xdb\xc7\x9c\xcc\xa9\xbf\x1f\xce\xb0\xbd\xad\xc9\x1b\x0e\xab\x1d\xf8\x9f\x20\x1d\x0b\xf7\xae\x06\xf7\x00\xe6\xb8" +"\xe4\xd4\x1f\xcf\xdf\xbb\xf7\x25\xf7\x11\x1a\xd4\x6d\xd5\x5c\xb5\x1e\xad\x65\x56\x9d\x4a\x1b\xfb\xae\x06\x0b\x15\xd4\xb6\x5b\x3a" +"\x50\x7b\x4a\x6f\x59\x1f\x45\x65\x55\x68\x47\x66\x1d\x0b\x92\xfb\x69\x15\xdf\x06\xc7\xf7\xad\x05\x4a\xaa\xb4\x71\xd2\x1b\xd9\xd6" +"\xaf\xc9\xbe\x1f\xc1\xce\xad\xf2\xee\x1a\xf7\x0c\x48\xd6\x20\x0b\x40\x1d\xd6\xbc\xbe\x9e\xa9\xac\x1e\xa3\xa0\x96\xa0\x96\xb7\x08" +"\x53\x06\x63\x81\x63\x74\x4f\x1b\x0b\x21\x1d\x34\x1d\xfb\x66\x25\x1d\x21\x1d\x34\x1d\xfb\x66\x25\x1d\x05\x35\x06\x0e\x06\xbb\xf3" +"\x9e\xe6\x05\xc7\xfb\x2b\x15\x2f\x06\x75\x24\x05\xe7\x06\xfb\x2c\xf2\x15\x2f\x06\x75\x24\x05\xe7\x06\x0e\x32\x1d\xc0\xf7\x8c\x05" +"\x53\x2e\x1d\x0b\xd8\x1d\xb3\x06\xce\xd1\x1d\x0b\x15\xf8\x1f\x06\x9d\xdd\x05\xfc\x20\x06\xbd\xf7\x7d\x05\xf8\x30\x20\x1d\xfc\x8e" +"\x26\x1d\x0b\xd3\x1d\x51\xd6\x1d\x0b\x38\xd5\xfb\x00\x34\x38\x62\x48\x58\x1e\x5c\x4c\x66\xfb\x05\x39\x1a\x55\xa3\x54\xb1\x66\x1e" +"\x69\xae\xb7\x7b\x0b\x1e\xa3\xa0\x96\xa0\x96\xb7\x08\x53\x06\x63\x81\x63\x74\x4f\x1b\x5a\x6a\x9f\xa9\x1f\x90\x07\x93\x07\x0e\x6f" +"\x1d\x84\x5f\x15\x9f\x99\x7c\x77\x71\x0b\x15\x76\x29\x05\xc2\x06\x50\x80\x73\x6e\x64\x1b\x83\x65\x05\xca\xba\xbb\xde\x9e\x1f\x9e" +"\xe8\x05\x0e\xb6\x1d\x6f\x72\x0b\x06\xf7\x1d\xf9\x1b\x05\x2d\x06\xfb\x1d\xfd\x1b\x05\xfb\x93\x2e\x1d\x2d\x06\x0e\x22\x1d\xfb\x01" +"\xfc\x95\x7f\x53\x7e\x6a\x75\x72\x19\x70\x73\x66\x7a\x66\x1b\x55\x67\xa9\xb9\x0b\x32\x06\xaa\xf7\x24\x21\x1d\x6c\xfb\x24\x05\x44" +"\x06\x7d\x48\x05\xd2\x06\x3c\xfc\x06\x05\x89\x0b\x15\xf8\x51\xfb\x63\x9c\xd8\xfb\xf5\xf7\x37\xf8\x3a\xf7\x38\x9c\xda\xfc\xa9\xfb" +"\x63\x05\x0e\x98\x85\x90\x8c\x8b\x8b\x91\x8c\x19\x8d\x95\x8c\x6d\x1d\x0b\x06\xea\xfb\x8d\x05\xe9\x06\x21\xf7\xb2\xf7\x42\xf7\x82" +"\x05\x26\x75\x1d\x0b\x06\xf7\x2f\xf9\x6d\x05\x2d\x06\x7a\x39\xfc\x67\xfc\x40\xf7\x00\xf8\x92\x05\x2d\x06\x0b\x88\xc6\x81\xb1\x78" +"\xad\x08\xd1\x62\x45\xb0\x2c\x1b\xfb\x09\x2a\x5c\x2d\x3d\x1f\x0b\x05\x2d\x06\xfb\x1e\xfd\x1b\x05\xfc\x0a\x2e\x1d\x2d\x06\x0e\x15" +"\xfb\x14\xfb\x2a\x05\xcb\x06\x0b\x1b\x80\x70\x91\x94\x71\x1f\x98\x64\x7b\x8f\x7a\x1b\x71\x6d\x7c\x76\x7a\x1f\x0b\x6b\x69\x1f\x67" +"\x6a\x5f\x79\x55\x1b\x3c\x60\xb1\xd1\x9e\x8d\x99\x8f\xa3\x1f\x0b\x06\xd9\xb5\x69\x4c\x67\x80\x6b\x73\x6d\x1f\x61\x6a\x60\x78\x4b" +"\x1b\x0e\x06\xce\xb8\x9b\xaf\xb1\x1f\xae\xad\x9f\xbc\xbd\x1a\xd8\x53\xbf\x38\x1e\x0b\x15\x6e\x74\x74\x6e\x6e\xa2\x74\xa8\xa7\xa3" +"\xa2\xa7\xa9\x74\xa2\x6e\x1f\x0b\x15\xa9\xa4\x72\x6d\x6d\x72\x72\x6d\x6d\x72\xa4\xaa\xa8\xa5\xa4\xa8\x1f\x0b\x21\x1d\x34\x1d\xfb" +"\x6e\x06\xea\xf8\x56\x21\x1d\x0e\xb4\xf7\x56\x21\x1d\x5e\xfb\x69\x05\x88\x7c\x89\x7c\x80\x1a\x4f\x0b\xd5\x1d\x7e\x7e\x1a\x2e\x0b" +"\xf7\x93\x15\x77\x30\x8f\x23\x05\xa9\x06\xbb\xf3\x9f\xe6\x05\x0e\x81\xbc\x1b\xf7\x19\xe6\xd5\xf7\x17\xa7\x1f\xf7\x08\xf8\xb7\x05" +"\x0b\x06\xdb\xc6\x9f\xb5\xbb\x1f\xc0\xba\xab\xd3\xd3\x1a\xf5\x46\xc8\x0b\x16\xdf\x25\x1d\x05\xf7\x7c\x2d\x1d\xfb\xd1\x06\x0b\xb2" +"\xb0\xc8\x1b\xb6\xa6\x72\x64\x70\x7c\x70\x74\x7c\x1f\x7e\x77\x0b\xfa\xc0\xf7\xcc\x15\xfe\x87\x27\x1d\xfa\x87\x06\x0e\xf7\xf3\xf7" +"\xcc\x15\xfb\x83\x27\x1d\xf7\x83\x06\x0e\x92\xa1\x62\x33\x1d\xbf\xa6\x83\xb2\x1b\xe0\xc7\x0b\x1f\x98\x64\x7b\x8f\x79\x1b\x71\x6e" +"\x7c\x76\x7a\x1f\x7f\x7c\x0b\xf7\x8c\xf8\xd8\x15\x4c\xfb\xbc\x05\xc9\x06\xe5\xf8\x3d\x05\x0b\x15\x78\x30\x8e\x23\x05\xaa\x06\xbb" +"\xf3\x9e\xe6\x05\x0e\x15\x55\x55\x57\x56\x64\xaa\x6c\xb3\xc4\xbf\xbe\xc4\xb2\x0b\xf7\x67\x05\x50\xfb\xa8\x15\x37\x06\x75\x24\x05" +"\xdf\x06\x0b\xf8\xe3\xf7\xa1\x15\xfc\x78\x27\x1d\xf8\x78\x06\x0b\x15\xd1\xb7\x59\x3d\x52\x7a\x46\x71\x5b\x1f\x47\x66\x0b\x1f\x65" +"\xfb\x45\x15\xb8\xa7\x72\x64\x50\x5b\x5e\x4d\x0b\xc9\xf7\xb6\x05\x2d\x06\x4c\xfb\xbb\x05\x88\x7e\x8a\x0b\x65\x49\x1b\x45\x5f\xbd" +"\xd8\xc5\x9c\xcf\xa5\xbc\x1f\x0b\x65\x05\xcb\xba\xbb\xde\x50\x1d\x22\x1d\x37\x06\x41\xfb\xf2\x74\xfb\x67\x05\x0b\x26\xf9\x6d\x05" +"\xfb\x0c\x06\xfc\x33\xfd\x6d\x05\x0b\x06\xb8\xa2\x76\x62\x4f\x60\x5f\x4f\x1f\x0e\xe4\x1d\x0e\x06\x38\xfb\x67\x05\xd7\x06\xde\xf7" +"\x67\x05\x0b\xf7\xaa\xf7\xed\x05\x23\x06\xfb\x87\xfb\xc2\x0b\x15\xbf\xb2\xa9\xa0\xaf\x1b\x9c\x9f\x85\x7e\x0b\x37\x06\x46\x67\x56" +"\x67\x48\x1b\x3c\x5e\xbc\x0b\xf9\x35\x15\x41\x06\x55\xfb\x94\x05\xc4\x06\x0b\x05\x37\x06\xfb\x03\xfc\xa0\x05\xdf\x06\x0b\x06\xf7" +"\x1a\xfb\xed\xfb\xe1\xfc\x14\x05\x0b\x15\xfc\x78\x06\x7d\x43\x05\xf8\x77\x06\x0b\x15\x37\x06\xfb\x2f\xfd\x6d\x05\xdf\x06\x0b\x15" +"\x76\x29\x05\xc1\x06\x50\x80\x73\x6e\x0b\x1e\x65\x62\x50\x79\x3b\x1b\xfb\x05\x57\x0b\xd9\x15\xfb\x7b\x06\xf7\x53\xf7\xe1\x05\x0b" +"\x01\x00\x01\xe3\x01\x05\x00\x01\x0a\x02\x01\x40\x03\x01\x87\xff\x02\x87\xa0\x02\x8e\x02\x00\x01\x00\x04\x00\x07\x00\x0e\x00\x27" +"\x00\x7b\x01\x23\x01\x90\x02\x13\x02\x1c\x02\x4d\x02\x7e\x02\xa6\x02\xc6\x02\xcd\x02\xd1\x02\xd8\x02\xec\x03\x46\x03\x65\x03\xb9" +"\x04\x34\x04\x64\x04\xb9\x05\x1d\x05\x46\x05\xb9\x06\x27\x06\x36\x06\x46\x06\x4c\x06\x57\x06\x5e\x06\xad\x07\x7e\x07\x82\x07\x85" +"\x07\x89\x07\x8d\x07\x91\x07\xab\x07\xaf\x07\xb2\x07\xb7\x07\xbc\x07\xbf\x07\xc2\x07\xc6\x07\xca\x07\xce\x07\xd1\x08\x43\x08\x80" +"\x08\x84\x08\x88\x08\x8c\x08\xa6\x08\xab\x08\xae\x08\xb2\x08\xb6\x08\xd4\x08\xe5\x09\x01\x09\x1e\x09\x24\x09\x43\x09\x46\x09\xa1" +"\x09\xa6\x09\xab\x09\xae\x09\xb7\x09\xba\x09\xbd\x09\xc4\x09\xd3\x09\xd8\x09\xdf\x0a\x43\x0a\x46\x0a\x49\x0a\x5b\x0a\xb7\x0a\xd7" +"\x0b\x03\x0b\x0a\x0b\x0d\x0b\x28\x0b\x2c\x0b\x5a\x0b\x5f\x0b\x64\x0b\xce\x0b\xe2\x0c\x4c\x0c\x92\x0c\xb3\x0d\x2e\x0d\xce\x0d\xd5" +"\x0e\x23\x0e\x7e\x0f\x3b\x0f\xa7\x0f\xae\x0f\xe7\x10\x02\x10\x09\x10\x12\x10\x1f\x10\x2d\x10\x3a\x10\x5c\x10\x96\x10\x9a\x10\xce" +"\x10\xe7\x10\xee\x10\xf9\x11\x06\x11\x23\x11\x38\x11\x5c\x11\xb3\x11\xbb\x11\xc3\x11\xcb\x11\xe0\x11\xe4\x11\xec\x11\xf4\x11\xfa" +"\x12\x0f\x12\x20\x12\x28\x12\x65\x12\x6d\x12\x71\x12\x76\x13\x26\x13\x50\x13\x54\x13\xbb\x14\x0c\x14\x11\x14\x16\x14\x39\x14\x3d" +"\x14\xd9\x15\x4e\x15\x6b\x15\x82\x15\xe1\x16\x28\x16\x2b\x16\x86\x16\xb1\x16\xd4\x17\x0a\x17\x18\x17\x27\x17\x54\x17\x68\x17\x97" +"\x17\xda\x18\x51\x18\x5f\x18\xe2\x19\x10\x19\x7c\x19\xc8\x19\xd0\x19\xd9\x19\xeb\x19\xf4\x19\xfb\x1a\x14\x1a\x56\x1a\x6e\x1a\x7b" +"\x1a\x88\x1a\x95\x1a\x9d\x1a\xa4\x1a\xae\x1a\xb8\x1a\xe1\x1a\xf4\x1b\x06\x1b\x42\x1b\x7d\x1b\x95\x1b\xa3\x1b\xaf\x1b\xe1\x1c\x12" +"\x1c\x1e\x1c\x2c\x1c\x36\x1c\x3f\x1c\x62\x1c\x6d\x1c\x78\x1c\x83\x1c\xaf\x1c\xde\x1d\x1b\x1d\x26\x1d\x2f\x1d\x3a\x1d\x45\x1d\x4f" +"\x1d\x58\x1d\x61\x1d\x6a\x1d\x7a\x1d\xb1\x1d\xbf\x1d\xf5\x1e\x2a\x1e\x5b\x1e\x8f\x1e\x9a\x1e\xa3\x1e\xae\x1e\xbb\x1e\xc5\x1e\xd0" +"\x1e\xe3\x1f\x22\x1f\x25\x1f\x2d\x1f\x36\x1f\x69\x1f\x79\x1f\xcc\x1f\xfa\x20\x04\x20\x0c\x20\x10\x20\x1e\x20\x30\x20\x74\x20\x86" +"\x20\x89\x20\x91\x20\xa2\x20\xab\x21\x22\x21\x25\x21\x2e\x21\x31\x21\x4a\x21\x53\x21\x5c\x21\x65\x21\x6e\x21\xc2\x22\x03\x22\x07" +"\x22\x17\x22\x1a\x22\x26\x22\x9c\x22\xaa\x22\xb3\x22\xbc\x22\xc9\x23\x3e\x23\x79\x23\x82\x23\xaf\x23\xb8\x23\xc2\x23\xd5\x24\x0f" +"\x24\x14\x24\x1e\x24\x29\x24\x54\x24\x5d\x24\x60\x24\x68\x24\x70\x24\x8b\x24\x98\x24\x9f\x24\xa7\x24\xab\x24\xb1\x24\xb9\x24\xc6" +"\x24\xca\x24\xd2\x24\xda\x24\xe3\x25\x49\x25\x4d\x25\x69\x25\x72\x25\xf0\x25\xf3\x26\x54\x26\x5c\x26\x6d\x26\x7f\x26\x82\x26\x8a" +"\x27\x08\x27\x11\x27\x2d\x27\x53\x27\x57\x27\x8a\x27\x93\x27\xb3\x28\x23\x28\x34\x28\x3d\x28\x4f\x28\xaf\x28\xb3\x28\xbc\x28\xca" +"\x28\xe0\x28\xf9\x29\x02\x29\x09\x29\x12\x29\x1c\x29\x3d\x29\x43\x29\x4b\x29\x54\x29\x5d\x29\x61\x29\x8b\x29\x95\x29\x99\x29\xc5" +"\x29\xe7\x2a\x46\x2a\x5e\x2a\x94\x2a\x98\x2a\xa1\x2a\xd4\x2a\xfb\x2a\xff\x2b\x1d\x2b\x25\x2b\x34\x2b\x5f\x2b\x81\x2b\xb6\x2b\xb9" +"\x2b\xf0\x2c\x48\x2c\x5d\x2c\x61\x2c\xce\x2c\xf1\x2d\x06\x2d\x19\x2d\x28\x2d\x40\x2d\x67\x2d\x77\x2d\x7d\x2d\xe6\x2e\x49\x2e\xae" +"\x2e\xcb\x2f\x32\x2f\x48\x2f\xbb\x30\x46\x30\x4d\x30\x59\x30\x9a\x30\xc8\x31\x00\x31\x4e\x31\x6a\x31\x73\x32\x12\x32\x6a\x32\xbb" +"\x32\xc2\x32\xfe\x33\x01\x33\x08\x33\x3e\x33\x94\x33\x97\x33\xa6\x33\xb3\x33\xc4\x33\xe9\x33\xf5\x34\x02\x34\x15\x34\x5a\x34\xa9" +"\x34\xc0\x34\xc5\x35\x33\x35\x48\x35\x5d\x35\x90\x35\x9d\x35\xb2\x35\xd4\x35\xe8\x35\xf7\x36\x47\x36\x8d\x36\xe1\x37\x01\x37\x55" +"\x37\x67\x37\xbe\x38\x28\x38\x34\x38\x3f\x38\x76\x38\xa2\x38\xcc\x39\x0c\x39\x25\x39\x58\x39\x6e\x39\x85\x39\xd5\x3a\x71\x3a\xf5" +"\x3b\x6a\x3b\xd1\x3c\x3c\x3c\x44\x3c\x79\x3c\xaf\x3c\xf9\x3d\x59\x3d\x71\x3d\xf7\x3e\x3f\x3e\x85\x3e\xcc\x3f\x13\x3f\x69\x3f\xc8" +"\x40\x4d\x40\x56\x40\x5f\x40\x68\x40\x71\x40\x9e\x41\x1c\x41\x99\x41\xa4\x41\xed\x42\x4d\x42\x7c\x42\x8b\x42\x97\x42\x9e\x42\xa5" +"\x42\xdd\x42\xe4\x43\x00\x43\x67\x43\x6c\x43\x75\x43\x82\x43\xe8\x43\xed\x43\xf5\x44\x05\x44\x1f\x44\x60\x44\xab\x44\xcd\x44\xed" +"\x44\xf4\x45\x14\x45\x8e\x45\xa1\x45\xf5\x45\xfc\x46\x42\x46\x67\x46\x70\x46\xa4\x46\xb7\x47\x2f\x47\x92\x47\xd0\x48\x04\x48\x49" +"\x48\xb6\x48\xec\x48\xf1\x49\x04\x49\x29\x49\x30\x49\x38\x49\x41\x49\x67\x49\x70\x49\x9d\x49\xa7\x49\xc3\x49\xcf\x49\xd9\x49\xe5" +"\x49\xf8\x4a\x97\x4a\xcb\x4b\x60\x4b\x67\x4b\xb9\x4b\xd2\x4b\xda\x4b\xf6\x4b\xfd\x4c\x04\x4c\x73\x4c\xb0\x4c\xcb\x4c\xd2\x4c\xe9" +"\x4c\xf1\x4c\xf5\x4c\xfd\x4d\x00\x4d\x07\x4d\x15\x4d\x1e\x4d\x90\x4e\x78\x4e\xf5\x4f\x16\x4f\x3f\x4f\x6f\x4f\xa6\x4f\xfc\x50\x26" +"\x50\x37\x50\x57\x50\x66\x50\x82\x50\x99\x50\xf0\x50\xf9\x51\x69\x51\x9b\x51\xa5\x51\xb9\x51\xf3\x52\x83\x52\xdf\x53\x14\x53\xb5" +"\x53\xca\x54\x1f\x54\x2a\x54\x7f\x54\xf6\x54\xfe\x55\x06\x55\x0d\x55\x15\x55\x28\x55\x2b\x55\x2f\x55\x37\x55\x69\x55\x6d\x55\x71" +"\x55\x8c\x55\xee\x56\x35\x56\x9f\x56\xa8\x56\xb2\x56\xbd\x56\xc6\x56\xf2\x57\x1a\x57\x69\x57\xad\x57\xf7\x58\x67\x58\x8e\x58\xb6" +"\x58\xeb\x59\x23\x59\x35\x59\x5a\x59\x85\x59\x99\x59\xcf\x5a\x0c\x5a\x10\x5a\x32\x5a\x6f\x5a\xa7\x5a\xd2\x5a\xf2\x5b\x1e\x5b\x53" +"\x5b\x97\x5b\xd5\x5c\x13\x5c\x4b\x5c\x52\x5c\x74\x5c\xb9\x5d\x18\x5d\x25\x5d\x36\x5d\x81\x5d\xab\x5d\xe3\x5e\x28\x5e\x30\x5e\xf2" +"\x5f\x58\x5f\x5f\x5f\x63\x5f\x7f\x5f\x9c\x60\x0c\x60\x23\x60\x68\x60\x91\x60\xda\x60\xdf\x60\xe9\x60\xfa\x61\x04\x61\x1c\x61\x22" +"\x61\x2a\x61\x32\x61\x38\x61\x41\x61\xd1\x61\xdb\x61\xe5\x61\xf5\x61\xfe\x62\x73\xfc\x20\x0e\xfc\x20\x0e\xfc\x20\xf7\xff\xaa\x1d" +"\x0e\xfb\xd3\xf7\x5e\x9a\x0a\xcc\x16\x73\xfb\x03\x8a\xfb\x1a\x05\xb3\x06\xc2\xf7\x1a\xa3\xf7\x03\x05\x0e\xf9\x0c\xf9\x4d\x15\x3f" +"\x06\x3e\xfb\x56\x05\xfb\x10\x06\xd7\xf7\x56\x05\x3f\x06\x3e\xfb\x56\x05\xfb\x0d\x06\x7e\x4b\x05\xf7\x01\x06\x42\xfb\x4c\x05\xfb" +"\x04\x06\x7d\x4b\x05\xf0\xdc\x1d\xf7\x11\xdc\x1d\xf7\x0a\x06\x99\xcb\x05\x20\x06\xd4\xf7\x4c\x05\xf4\x06\x99\xcb\x05\x2d\x06\x26" +"\x4b\x15\x42\xfb\x4c\x05\xfb\x11\x06\xd5\xf7\x4c\x05\x0e\xf8\x2b\xf9\x96\x15\x80\x55\x47\x86\x4e\x73\x63\x66\x19\x5e\x61\x6d\x43" +"\x48\x1a\x62\x99\x6b\xaa\x71\x1e\xa0\x79\x9f\x82\xd4\x72\x51\xfb\xa4\x18\x42\xa0\x6f\xa7\xc2\x1a\x94\x8c\x9e\x8d\x9e\x1e\x8c\x96" +"\x05\x3c\x06\x85\x69\x89\x7a\x74\x1a\x30\xc0\x5b\xf7\x09\x79\x1e\x75\x24\x05\xc6\x06\xa1\xf2\xd4\x8d\xcd\xa3\xb7\xb3\x19\xbe\xb8" +"\xac\xdb\xd6\x1a\xbb\x7b\xaa\x62\xa6\x1e\x73\x9b\x7c\x92\x39\xa4\xc0\xf7\x8d\x18\xc2\x88\xae\x68\x56\x1a\x87\x8b\x83\x8a\x82\x1e" +"\x8a\x7c\x05\xda\x06\x90\x9f\x8c\x95\x9b\x1a\xe5\x51\xc3\x27\x90\x1e\x96\xc1\x05\xfb\x1c\xfc\x01\x15\x46\xa0\x71\xa5\xbc\x1a\xd7" +"\xc9\xc8\xdf\x92\x1e\x7e\xfb\xe4\x15\xdc\x73\xa7\x71\x5b\x1a\x29\x50\x50\x21\x83\x1e\x0e\xf7\x6b\xf9\x8b\xf9\x59\x15\xfc\xba\xfd" +"\x6d\x05\xcd\x06\xf8\xba\xf9\x6d\x05\xfc\x74\x70\x15\xfb\x00\x24\x28\x22\x3f\xc5\x53\xd9\xf7\x04\xf0\xed\xf7\x00\xd4\x4f\xc4\x3d" +"\x1f\x7b\x49\x15\xbe\xac\x6a\x5a\x4c\x4d\x50\x4a\x5c\x68\xae\xba\xca\xc7\xc6\xcc\x1f\xf8\x40\xfb\xbc\x15\xfb\x00\x24\x28\x22\x3f" +"\xc5\x53\xd9\xf7\x04\xf0\xed\xf7\x00\xd4\x4f\xc4\x3d\x1f\x7b\x49\x15\xbe\xac\x6a\x5a\x4c\x4d\x50\x4a\x5c\x68\xae\xba\xca\xc7\xc6" +"\xcc\x1f\x0e\x84\xf8\xc9\xf7\xe2\x15\x7f\x5a\x7b\x6a\x6b\x66\x29\xf7\x37\x18\xf7\x11\xc4\xc3\xcb\xe3\x1a\xd6\x58\xba\x39\xfb\x01" +"\x28\x32\x2a\x74\x90\x73\x94\x76\x1e\x9d\x61\x8d\x87\x8e\x83\x8f\x80\x19\x64\x75\x6f\x7a\x71\x78\x08\x40\x54\x66\x47\x3a\x1a\x2d" +"\xcc\x52\xf4\xdc\xc4\xa4\xd7\xe6\x1e\xb9\x3d\x05\xf5\x06\x31\xf7\x2b\xbc\xbe\xb2\xd2\x97\xc8\x19\xfb\x9f\xef\x15\x62\xc6\x85\x97" +"\xa7\x1a\xc6\xba\xba\xc6\xb6\xa5\x72\x63\x55\x65\x62\x31\x5e\x1e\xd2\xfb\xbd\x15\x4f\x42\x5e\x74\x59\x1b\x47\x62\xb2\xcc\xcd\xb8" +"\xbe\xf7\x05\xc8\x1f\x0e\xfc\x58\xf7\x6b\xf9\x58\x47\x1d\x0e\xfb\xe9\xf8\x1b\x22\x1d\x46\x43\x5a\x49\x59\x31\x08\x40\xfb\x1c\x68" +"\xfb\x0d\xfb\x14\x1a\xfb\x0c\xa8\xfb\x0e\xbc\x34\x1e\xc2\x06\x65\xec\x7a\xe7\xf2\x1a\xf7\x73\xe2\xf7\x71\xf7\x3c\xf7\x62\x1e\x0e" +"\xfb\xe9\xbb\xfb\x69\x15\xcb\xcd\xc5\xda\xb9\xde\x08\xd5\xf7\x19\xae\xf7\x12\xf7\x19\x1a\xf7\x06\x6d\xf7\x11\x5c\xde\x1e\x54\x06" +"\xb1\x29\x9c\x2e\x20\x1a\xfb\x6c\x32\xfb\x74\xfb\x3a\xfb\x60\x1e\x0e\xfb\xb1\xf7\xd3\x22\x1d\x77\xfb\x04\x27\xb3\x6d\x50\xf3\x6c" +"\x2f\x33\xba\x63\xdc\xea\xb7\x2b\xc5\xb0\x56\xe6\xf7\x05\xa6\x82\xc9\xfb\x02\x65\xa8\xf7\x04\x05\x0e\x31\xf8\xe3\xf7\xa1\x15\xfb" +"\x63\x06\xb7\xf7\x60\x05\x45\x06\x5f\xb1\x0a\x5f\xfb\x64\x05\xd1\x06\xb7\xf7\x64\x05\xf7\x63\x06\x0e\xfc\x20\xf7\x01\xf2\x8a\x0a" +"\xfb\xe9\xcb\x1d\xfc\x20\xf7\x69\xf2\x23\x0a\xfc\x20\xf8\x0f\xf9\x6d\x15\xfc\x1b\xfd\x81\x05\xc2\x06\xf8\x1b\xf9\x81\x05\x0e\xf8" +"\x39\xf9\x67\x15\x38\x46\x62\x38\x53\x1f\x4b\x2d\x59\xfb\x4e\xfb\x26\x1a\x4d\x9d\x55\xaa\x6c\x1e\x6d\xaa\xbc\x78\xbb\x1b\xe1\xcd" +"\xb2\xe0\xc5\x1f\xcc\xea\xbc\xf7\x4c\xf7\x26\x1a\xf7\x10\x48\xd4\xfb\x04\x1e\x7f\x3e\x15\xcc\xb1\x5b\x39\x2c\x69\xfb\x32\x65\x39" +"\x1f\x33\x62\x5c\x64\x4a\x1b\x4d\x65\xbc\xdb\xeb\xac\xf7\x30\xb2\xe0\x1f\xe0\xb2\xbb\xb4\xca\x1b\x0e\xf8\x06\xf8\x9b\x15\xfb\x03" +"\xfc\x9b\x05\xe3\x06\xf7\x2e\xf9\x67\x05\x51\x06\x56\xfb\x00\x75\x7e\xfb\x24\x77\x7e\x4c\x18\x0e\xf8\xa0\xe2\x15\xfc\x0d\x06\x9c" +"\xbd\xc3\xbf\xe6\xb9\xf7\x04\xc6\x18\xf7\x1a\xd0\xcc\xdf\xf1\x1a\xb8\x7c\xb5\x70\xa9\x1e\xb2\x6a\x5b\x9d\x47\x1b\xfb\x2e\x33\x3d" +"\xfb\x40\x63\x1f\xe3\x06\x97\xb8\x97\xaa\x9d\xa5\x08\xb8\xaa\xbe\xa5\xc5\x1b\xd1\xb8\x60\x49\x49\x5b\x4d\x37\x60\x1f\x23\x55\xfb" +"\x42\x2d\x5e\x56\x5e\xfb\x38\x19\xf8\x6b\x06\x0e\xf7\xb8\xf7\xe0\x15\x8d\x9f\x96\x8b\x99\x1b\xde\xbb\x69\x50\xfb\x02\x3d\x3e\xfb" +"\x04\x42\x5e\xb3\xca\x9a\x8c\x97\x8f\xa5\x1f\x33\x06\x87\x6c\x8a\x7c\x7a\x1a\xfb\x02\xcf\x4f\xf7\x10\xe5\xd7\xaa\xc4\xbf\x1e\xb8" +"\xbd\xa8\xd4\xcd\x1a\xc6\x76\xab\x53\xa8\x1e\xe0\xbc\xb1\xc8\xe5\x1a\xe6\x44\xc5\xfb\x02\x38\x44\x6d\x53\x5a\x1e\x6e\x69\x79\x64" +"\x77\x41\x08\xe3\x06\x96\xb9\x94\xa3\x9a\xa0\x08\xb5\xaa\xba\xa2\xc3\x1b\xcd\xb3\x6a\x54\x63\x7e\x64\x76\x73\x1f\x6b\x6f\x57\x7b" +"\x41\x1b\x85\x06\x7f\x06\x0e\xf7\xff\xf7\x43\x15\x66\xfb\x43\x05\xe3\x06\xb0\xf7\x43\x05\xf5\x06\x9c\xd9\x05\x21\x06\xef\xf8\x6a" +"\x05\x49\x06\xfc\x36\xfc\x5c\x77\x2f\x05\xf7\xd0\xd9\x15\xfb\x71\x06\xf7\xb4\xf7\xd1\x05\x0e\xf9\x09\xf9\x59\x15\xfc\x06\x06\xfb" +"\x1b\xfc\x16\x05\xdb\x06\xc1\xc8\xa8\x98\xc6\x1b\xdb\xb9\x5f\x3e\xfb\x11\x39\x31\xfb\x06\x3b\x61\xb3\xdb\x88\x1f\x33\x7f\x06\x81" +"\x07\x50\x9a\x65\xad\x6e\x1e\x6b\xb1\xbe\x7a\xca\x1b\xe9\xd5\xb1\xd8\xc6\x1f\xb7\xc5\xa4\xd4\xd3\x1a\xf4\x42\xce\xfb\x05\x5b\x61" +"\x7e\x6d\x59\x1e\xd1\xf7\x5a\x05\xf7\xc0\x06\x0e\xf8\xf9\xf8\xab\x15\x8c\xa7\x05\xed\x47\xc9\x20\x2c\x3b\x58\x26\x4c\x1e\x50\x2e" +"\x5b\xfb\x4a\xfb\x13\x1a\xfb\x0a\xd5\x41\xf7\x0a\xe0\xd4\xb1\xd4\xc3\x1e\xb4\xc1\xa5\xd4\xc9\x1a\xf3\x45\xd0\x20\x49\x52\x70\x4f" +"\x52\x1e\xf7\x43\xaa\xdd\xf7\x00\xf1\x1b\xb8\xaf\x74\x65\x96\x1f\x8f\x7e\x8d\x7d\x8d\x74\x08\xfb\x33\xfb\x36\x15\xcf\xb8\x5e\x49" +"\xfb\x07\x3b\x2e\x27\x46\x5b\xbd\xd3\xf7\x02\xdc\xe2\xf2\x1f\x0e\xf9\x33\xf9\x59\x15\xfc\x6f\x06\x78\x34\x05\xf8\x13\x06\xfb\x75" +"\xfb\x91\xfb\x00\xfb\x32\x31\xfb\x67\x08\xed\x06\xcf\xf7\x53\xf7\x48\xf7\xa1\xf7\x3f\xf7\x3c\x08\x0e\xf8\x71\xf8\x10\x15\xaa\x9c" +"\x9b\x96\x9e\x9b\x08\xb2\xaf\xa4\xc4\xc3\x1a\xe4\x42\xc8\x20\xfb\x26\xfb\x02\x26\xfb\x1a\x5c\x9c\x6e\xbb\x6c\x1e\x21\x5a\x54\x3b" +"\x22\x1a\x23\xdb\x49\xf7\x12\xdf\xd2\xab\xcc\xc4\x1e\xb6\xbd\xa4\xc9\xc5\x1a\xc7\x6e\xba\x54\xa8\x1e\x49\xf7\x9e\x15\xcf\xb3\x6a" +"\x54\x6c\x7e\x68\x77\x72\x1f\x68\x6e\x64\x7a\x56\x1b\x48\x64\xaa\xc0\xe2\xc9\xc7\xe5\x1f\x4a\xfb\xc5\x15\xd9\xbc\x60\x48\x27\x3a" +"\x3e\x23\x40\x59\xb6\xcc\xee\xdc\xdb\xf1\x1f\x0e\xe0\xf7\x39\x15\x8a\x80\x8b\x80\x85\x1a\x2a\xd0\x4c\xf4\xc9\xc4\xa1\xb8\xbf\x1e" +"\xcc\xc3\xb0\xcc\xa7\xf6\x08\xa4\xea\x9d\xf7\x01\xc8\x1a\xbb\x79\xbb\x6d\xac\x1e\xb0\x6a\x58\x9f\x4c\x1b\xfb\x30\xfb\x0e\xfb\x16" +"\xfb\x3b\x22\xd0\x48\xf6\xb7\xba\x98\xa1\xab\x1f\x98\x94\x98\x95\xa8\xa5\x08\xfb\x4e\x63\x43\x2d\x27\x1b\x4f\x64\xb3\xc8\x1f\x95" +"\x07\xf7\x73\xf8\x75\x15\xcf\xbe\x58\x48\xfb\x01\x39\x33\x25\x44\x61\xb6\xd3\xf7\x02\xdc\xe5\xec\x1f\x0e\xfc\x20\xf7\x80\xf2\x37" +"\x0a\xf3\x06\xf7\x04\xf8\xa0\x23\x0a\xfc\x20\xf7\xd9\xf8\xa0\x37\x0a\xf3\x06\xfb\x3f\xfb\xd2\x8a\x0a\x31\xe2\xf7\x5a\xb5\x1d\x31" +"\xf8\xf5\xf7\xf7\xe3\x1d\x75\x27\xb2\x0a\x31\xf8\xe8\xf7\x9f\x8f\x0a\xf8\x07\xf7\x5b\x15\x95\xba\x99\xbd\x9b\x9e\xd5\xc2\x19\xf2" +"\xd9\xb5\xcb\xd9\x1a\xb8\x75\xb7\x67\xa7\x1e\xa2\x6e\x62\x96\x56\x1b\xfb\x24\x31\x3c\xfb\x2f\x6c\x1f\xe0\x06\xf7\x02\xa1\xbb\xba" +"\xe3\x1b\xcb\xb6\x68\x58\x52\x6f\x61\x3e\x4d\x1f\x20\x38\x7c\x78\x7d\x4e\x7f\x54\x18\xd1\x2b\x15\x31\x06\x75\x24\x05\xe5\x06\x0e" +"\xf7\xe9\xf9\x97\xf8\x89\x15\x67\x49\x05\xc6\x7f\x65\xa9\x50\x1b\xfb\x29\xfb\x3b\xfb\x3f\xfb\x2c\x37\xc0\x54\xdd\xbb\xae\x9b\xb7" +"\xc1\x1f\x8d\x8d\x91\x90\x92\x90\x08\x82\x07\x86\x07\x7b\x97\x75\x99\x82\x1e\x81\x9a\xa5\x85\xab\x1b\xe7\xf7\x02\xc4\xda\xc8\x1f" +"\xba\xc8\xa9\xe9\xe2\x1a\xf7\x44\xfb\x2a\xf7\x16\xfb\x61\xfb\x32\xfb\x34\x49\xfb\x04\xfb\x03\x1e\xfb\x01\xfb\x01\x4c\xfb\x21\xfb" +"\x17\x1a\x3d\xa3\x49\xbc\x54\x1e\x3c\xd2\xf7\x00\x5d\xf7\x07\x1b\xdd\xe4\x9a\xa6\xd5\x1f\x7e\xce\x05\x73\x32\x56\x83\x4d\x1b\xfb" +"\x4c\xfb\x0f\xf4\xf7\x30\xf7\x80\xf7\x89\xf7\x7c\xf7\x8b\xf7\x3e\xf7\x0f\x22\xfb\x25\xfb\x1b\xfb\x0f\xfb\x2c\xfb\x01\x75\x78\x9c" +"\x9e\x94\x92\x9b\x9c\xac\x1f\xf7\x29\xf7\xac\x05\xfb\x82\x5d\x15\xb6\xa3\x74\x61\x5f\x6c\x40\x60\x4f\x1f\x53\x64\x5c\x6c\x5f\x1b" +"\x5f\x6b\xaf\xbd\xbd\xa7\xcc\xb6\xbf\x1f\xbd\xb6\xbd\xa7\xbc\x1b\x0e\x84\x28\x1d\x0e\x84\x84\x1d\xbb\x3a\x0a\x0e\xbb\x72\x0a\x0e" +"\x84\x27\x0a\x0e\x4c\xf7\x93\xf7\xe0\x15\xf7\xef\x20\x1d\xfb\xef\x06\xbd\xf7\x7d\x05\xf8\x1f\x20\x1d\xfc\x7d\x22\x0a\x0e\xf3\x81" +"\x1d\x0e\xbb\x7a\x0a\xfc\x20\x29\x1d\x0e\xfb\x42\x6c\x0a\x0e\x84\x78\x0a\x3e\x1d\x0e\xf7\x33\x97\x1d\xbb\x2b\x0a\x0e\xf3\x30\x0a" +"\x0e\x84\x71\x0a\xf3\xf9\x71\x8a\x15\x3d\xd8\x05\xf7\x03\xee\xc9\xf7\x1d\xf7\x24\x1a\xdf\x70\xd8\x5d\xba\x1e\xbc\x5b\x3b\xa7\x30" +"\x1b\x33\x3d\x72\x57\x46\x1f\xfb\x0b\x32\x3d\xfb\x32\xfb\x2d\x1a\xfb\x49\xf5\x21\xf7\x48\xd9\xb8\x97\xb2\xd4\x1e\xe2\x34\x05\xfb" +"\x29\xf7\x9c\x15\x51\x53\xc9\x4d\x05\x75\x59\x70\x84\x61\x1b\xfb\x17\x3d\xda\xf7\x1a\xe8\xaa\xeb\xc0\xd4\x1f\xdb\xc5\xe4\xba\xe9" +"\x1b\xcf\xca\x70\x5e\xae\x1f\xa6\x68\x99\x5c\x4f\x1a\xfb\x0c\x5c\xfb\x02\x34\x37\x1e\x0e\xbb\xf7\x92\xf7\xce\x15\xf7\x83\x06\xcc" +"\xaf\x71\x5a\x7a\x88\x76\x86\x75\x1f\x73\x27\x8b\x8b\x6b\x1a\x7b\x8c\x80\x8e\x77\x1e\xf7\x05\x06\x90\xa2\x05\x7e\x97\x83\x9e\xa1" +"\x1a\x96\x8d\x9c\x8f\xa1\x1e\x9e\xf4\x8d\x98\x8c\x1d\x6e\x60\x7a\x4b\x1b\x0e\x84\x61\x0a\x0e\x4c\x48\x1d\x0e\xbb\x57\x1d\x0e\x84" +"\xf8\x1c\x16\xf8\x2c\xf9\x6d\x05\x28\x06\xfb\xe4\xfc\xfd\x38\xf8\xfd\x05\x2a\x06\xf6\xfd\x6d\x05\x0e\xf7\xa2\x32\x0a\x0e\x84\x75" +"\x0a\x84\x2f\x1d\x0e\x4c\x33\x0a\x0e\xfc\x20\xf8\x29\x22\x1d\xfb\x4e\x06\xfb\x5c\xfe\x42\x05\xf7\x4e\x06\x9a\xd3\x05\x25\x06\xf7" +"\x3e\xf9\xb2\x05\xf1\x06\x0e\xfc\x20\xf7\x27\x22\x1d\xd9\xfd\x81\x05\xc2\x06\x3d\xf9\x81\x05\x0e\xfc\x20\x74\xfb\x69\x15\xf7\x4f" +"\x06\xf7\x5c\xfa\x42\x05\xfb\x4f\x27\x1d\xf2\x06\xfb\x3e\xfd\xb2\x05\x24\x06\x0e\xfb\x61\xf7\xf1\xf9\x59\x15\xfb\x7e\xfc\x10\x05" +"\xd3\x06\xf7\x4a\xf7\xbf\xc5\xfb\xbf\x05\xd0\x06\x41\xf8\x10\x05\x0e\xf8\xbb\xfb\x12\x6b\x1d\xfc\x58\xf7\x94\xf8\x71\x15\xa1\xf2" +"\x05\x5c\x06\x96\xc7\x9f\xa5\xb1\x8f\x93\xb2\x18\x4d\x87\x5f\x5c\x79\x3a\x76\x27\x18\x0e\x60\x0a\x0e\xf7\x65\x22\x1d\xfb\x2f\xfd" +"\x6d\x05\xd6\x06\x9c\xd9\x05\x43\xab\xb5\x6e\xd5\x1b\xce\xd2\xa9\xbb\xb8\x1f\xce\xd2\xb7\xf7\x06\xf2\x1a\xf7\x04\x3f\xdf\x26\x62" +"\x5f\x7f\x79\x6d\x1e\x7a\x81\x7e\x7f\x6c\x6a\xc5\xf7\xa7\x18\xe5\xfb\x9f\x15\xd4\xb7\x57\x35\x51\x7a\x4c\x6e\x5b\x1f\x47\x62\x57" +"\x6a\x4a\x1b\x47\x60\xbd\xda\xc9\x9d\xcf\xa7\xbb\x1f\xcd\xb2\xc0\xae\xc7\x1b\x0e\xfb\x42\x66\x0a\x0e\xf9\x1e\x88\x1d\x0e\x68\x0a" +"\x0e\xfc\x20\xf8\x06\xf8\xa0\x3b\x1d\x0e\x62\x0a\x0e\x73\x0a\x0e\xfc\x58\xf7\x99\x8d\x0a\x0e\xfc\x58\x7b\x0a\xb7\xf7\x61\x15\x37" +"\x06\x75\x24\x20\x0a\x0e\xfb\x42\x98\x1d\x0e\xfc\x58\xf7\xc7\x37\x1d\x0e\xf7\x33\xf7\x4a\x4e\x1d\xd1\xf7\xdd\x05\xd7\x9b\xcf\xc9" +"\xce\x1b\xbc\xac\x70\x61\x80\x89\x7e\x89\x7e\x1f\x3e\xfb\xfd\x20\x0a\xd1\xf7\xdd\x05\xd9\x9b\xd0\xc7\xd3\x1b\xba\xa8\x6e\x5b\x7c" +"\x8b\x8b\x82\x69\x1f\x43\xfb\xe9\x20\x0a\xda\xf8\x09\x05\x8e\x96\x8e\xac\x96\x1a\xa6\x7f\xa7\x77\xa1\x1e\xa3\x75\x71\x95\x5c\x1b" +"\x49\x53\x71\x52\x50\x1f\xc3\x7b\x64\xa6\x49\x1b\x46\x5e\x77\x4f\x4b\x1f\x98\xcc\x05\x0e\x39\x1d\x0e\x69\x0a\x0e\xa5\x1d\x3d\x3b" +"\x60\x53\x70\x1e\x9d\xdf\x05\x3a\x06\xf7\x6b\x4d\xa1\x1d\xf8\x56\xfb\x69\x15\xf7\x31\xf9\x75\x05\x40\x06\x78\x35\x05\xcd\x74\x58" +"\xae\x42\x1b\x47\x44\x6d\x5b\x5e\x1f\x48\x44\x5f\xfb\x06\x24\x1a\xfb\x04\xd7\x37\xf0\xb4\xb8\x97\x9d\xa8\x1e\x9b\x95\x97\x96\xad" +"\xad\x50\xfb\xa7\x18\x89\xf9\x37\x15\xce\xb6\x59\x3c\x4d\x79\x47\x6f\x5b\x1f\x49\x64\x56\x68\x4f\x1b\x44\x5d\xbf\xdb\xc5\x9e\xd3" +"\xa6\xb8\x1f\xcd\xb2\xc3\xae\xcb\x1b\x0e\xfb\xe9\x67\x1d\xa5\xf7\x0e\xd2\xc8\xf7\x02\x87\x19\x9d\xe0\x05\x8d\x7e\x83\x8c\x80\x1b" +"\x51\x5f\x71\x44\x4c\x1f\x9c\xdd\x05\x0e\xfb\x42\xf8\x96\xf8\x0e\x15\x90\xa0\x8c\x94\x98\x1a\xd1\x49\xbb\x29\x3c\x1d\x3b\xd0\x5b" +"\xf7\x09\xf7\x29\xec\xd8\xf7\x0b\x5a\x0a\xa4\x9d\x9c\x44\x0a\x85\x8b\x83\x8a\x83\x1f\x0e\xfc\x20\xf8\x02\x6f\x0a\x0e\x58\x1d\x0e" +"\xfb\x42\xf7\xb3\x16\xf7\xcb\xf8\xa0\x05\x30\x06\xfb\x88\xfc\x3a\x5a\xf8\x3a\x05\x2f\x06\xd5\xfc\xa0\x05\x0e\xbb\x3a\x1d\x0e\xfb" +"\x42\xf7\xf2\xf7\x9f\x15\xf7\x7d\xf7\x95\x05\x2a\x06\xfb\x3b\xfb\x54\x33\xf7\x54\x05\x2e\x06\xf7\x0a\xfb\x95\xfb\x83\xfb\x9f\x05" +"\xed\x06\xf7\x42\xf7\x5c\xe5\xfb\x5c\x05\xe9\x06\x0e\xfb\x42\x4d\x0a\x0e\xfb\x42\x46\x1d\x0e\xfb\xe8\xf8\x43\x22\x1d\x5c\x06\x46" +"\x8a\x56\x58\x7d\x3b\x67\xfb\x3a\x18\x79\x32\x6d\x64\x51\x81\x7c\x45\x18\xb1\x85\x9e\x73\x62\x1a\x7b\x88\x75\x85\x6e\x1e\x68\xfb" +"\x3a\x05\x87\x79\x89\x78\x7a\x1a\x5a\xab\x6e\xc1\x1e\xba\x06\x99\xcc\x05\x7b\x06\x65\x7b\x95\xa3\x95\x8c\x96\x8e\x97\x1f\xb2\xf7" +"\x49\x05\x8f\x9e\x8d\x9f\xa1\x1a\xbe\x80\xa1\x66\xa4\x1e\xc3\xa9\xb1\xc3\x99\xd2\xb2\xf7\x49\x18\xbf\x96\x9c\x9a\xbd\x1b\x9b\x06" +"\x0e\xfc\x32\xf7\x93\xf9\x6d\x15\xfb\x5d\xfe\x41\x05\xc7\x06\xf7\x5d\xfa\x41\x05\x0e\xfb\xe8\x7b\xfb\x69\x15\xba\x06\xcf\x87\xbd" +"\xbc\x9d\xe2\xaf\xf7\x3a\x18\x99\xdf\xad\xb8\xc5\x94\x9a\xd1\x18\x66\x91\x77\xa2\xb0\x1a\xa0\x8e\x9f\x91\xaa\x1e\xae\xf7\x3a\x05" +"\x8f\x9e\x8d\x9c\x99\x1a\xbc\x68\xac\x58\x1e\x5c\x06\x7d\x4a\x05\x9b\x06\xb1\x9b\x81\x73\x81\x8a\x80\x88\x7f\x1f\x64\xfb\x49\x05" +"\x87\x78\x89\x79\x7a\x1a\x60\x9a\x6a\xac\x6e\x1e\x49\x6c\x72\x67\x7a\x31\x64\xfb\x49\x18\x57\x80\x7a\x7c\x59\x1b\x7b\x06\x0e\x31" +"\xf8\xb2\xf8\x2f\x15\x57\x80\x76\x74\x67\x1b\x7d\x7d\x90\x97\x79\x1f\x25\xd0\x05\x96\x7c\x7a\x90\x78\x1b\x4b\x5a\x58\x2d\x72\x1f" +"\xbf\x06\xbf\x9b\xa3\xa6\xaa\x1b\x95\x9d\x84\x83\x96\x1f\xe0\x4c\x05\x7b\xa1\xa7\x81\xa3\x1b\xb1\xb2\xa0\xad\xa4\x1f\x9d\xa3\x94" +"\xa2\x92\xb4\x08\x0e\xfb\xe9\xd7\xfb\x61\x15\xdf\x06\xd5\xf7\xf2\xa2\xf7\x67\x05\x63\x06\x48\xfb\x67\x05\xc8\xf7\xa8\x15\xdf\x06" +"\xa1\xf2\x05\x37\x06\x0e\xf8\x2b\xf8\x63\x15\xaf\x85\x8c\x8b\x96\x85\x08\xa6\x7d\x9c\x6d\x67\x1a\x85\x8b\x83\x8a\x82\x1e\xdf\x06" +"\x8c\x9a\x05\x8c\x9a\x8c\x96\x8e\x1a\xc4\x60\xc5\x52\xa0\x1e\x92\x77\x7a\x8e\x72\x1b\x9e\xe5\x05\x63\x06\x78\x31\x44\x84\x59\x76" +"\x5b\x60\x19\x43\x4a\x5d\xfb\x08\xfb\x07\x1a\x20\xcc\x40\xf2\x80\x1e\x76\x29\x05\xb3\x06\xa0\xec\xf7\x1a\x93\xd7\xcb\xae\xf7\x17" +"\x19\x37\x06\x6c\x39\x60\x66\x44\x83\x08\x64\x8e\x15\x4f\x93\x66\xbc\xd1\x1a\xe1\xb0\xe8\xc2\xc0\x1e\xa5\xa4\xa5\x98\xb1\x92\x08" +"\x0e\xf8\x53\xf8\x0c\x15\xfb\x34\x06\x85\x9f\x8b\x8c\x82\xa2\x08\x7c\xb5\x8a\x91\xa3\x1a\xe6\xd4\xd0\xea\xd2\xb8\x65\x4f\x79\x89" +"\x7d\x84\x72\x1e\xe3\x06\x92\xb5\x8d\x9d\xa1\x1a\xe5\x40\xc7\xfb\x03\xfb\x27\xfb\x1b\xfb\x0b\xfb\x16\x72\x8f\x7b\x9c\x62\x1e\x8e" +"\x85\x8e\x83\x8e\x83\x08\x38\x06\x7f\x54\x05\xf7\x05\x06\x94\x6d\x8c\x86\x7c\x1a\x44\x53\x44\xfb\x0a\x3e\x1e\xb0\x49\x05\xa5\xba" +"\xad\x96\xb0\x1b\xa2\x9f\x88\x83\x9f\x1f\x71\xcf\xad\x82\xb0\x1b\xbc\xbd\x9e\xae\xb6\x1f\x72\xd1\x05\x73\x60\x78\x92\x0a\x91\x90" +"\x92\x90\x92\x90\xa6\x9f\x18\xb7\xad\x9b\x9a\x9a\x9f\x08\xa4\xaf\x9d\xbc\xac\x1a\x8f\x8a\x95\x8a\x98\x1e\x8a\x96\x05\xf7\x1d\x06" +"\x0e\xfc\x20\xf8\x78\x34\x0a\x0e\xf8\xd1\xf7\xf6\x15\xfb\x2e\x06\xf7\xa9\xf7\xf7\x05\x36\x06\xfb\x8c\xfb\xd6\xfb\x08\xf7\xd6\x05" +"\x36\x06\xf7\x16\xfb\xf7\x05\xfb\x2e\x06\x80\x58\x05\xf7\x43\x06\x7a\x3e\x05\xfb\x42\x06\x80\x58\x05\xf7\x42\x06\x66\xfb\x43\x05" +"\xe3\x06\xb0\xf7\x43\x05\xf7\x41\x06\x95\xbe\x05\xfb\x40\x06\x9c\xd8\x05\xf7\x40\x06\x0e\xf8\xcb\xf8\x64\x15\xfb\x05\x06\xa6\xd0" +"\x05\xdf\xab\xb5\xb7\xba\x1b\x9c\x96\x86\x7c\x9f\x1f\xb9\xd9\x05\x98\x72\x73\x91\x71\x1b\x35\x37\x48\x23\x60\x1f\x60\x24\x05\xfb" +"\x11\x27\x1d\xf7\x04\x06\xfb\x39\xfc\x31\x05\x3d\x6c\x65\x67\x59\x1b\x77\x7e\x90\x99\x7a\x1f\x68\x35\x05\x83\x9c\x97\x89\xa2\x1b" +"\xf7\x05\xd9\xcc\xf7\x22\xc3\x1f\xf7\x32\xf8\x21\x05\xf7\x13\x06\x0e\xf8\xd3\x21\x0a\x8d\x93\x8b\x8b\x8d\x94\x08\x94\xa4\x8c\x94" +"\x9e\x1a\xdb\x4c\xc2\x31\xfb\x04\x24\x31\x28\x6d\x93\x73\x9d\x74\x1e\x4f\x6b\x7f\x83\x74\x71\x08\x6f\x6b\x77\x59\x62\x1a\x61\x9c" +"\x6c\xb9\x64\x1e\xf7\x25\xfb\x10\x05\xa7\x73\x95\x78\x6e\x1a\x53\x58\x5d\x4e\x58\x67\xab\xb8\x98\x8d\x96\x91\xa0\x1e\x36\x06\x83" +"\x71\x88\x7d\x76\x1a\x37\xcb\x55\xed\xcb\xc6\xa4\xb8\xb3\x1e\xad\xb2\x9f\xba\xb4\x1a\xad\x83\xa2\x75\xa9\x1e\xb3\x98\xab\x9f\xa2" +"\xa6\x08\xa9\xae\xa1\xc4\xb7\x1a\xa8\x83\xa3\x7b\xa1\x1e\x81\x97\x82\x94\x69\xa6\xfb\x13\xf0\x18\x69\xa6\x83\x97\xa2\x1a\xbf\xbc" +"\xba\xc3\xbe\xab\x6d\x5c\x7a\x88\x7d\x84\x77\x1e\xfb\x93\xfb\xbb\x15\x69\xa8\x81\x9e\xab\x1a\xbb\xa4\xaa\xd1\xb3\x1e\xf7\x17\x21" +"\x05\xac\x71\x9f\x68\x6d\x1a\x5b\x6a\x61\x4b\x6a\x1e\x0e\xf8\xa2\xf7\x53\x15\x60\xc1\x05\xa9\xa8\xa3\xc7\xba\x1a\xa5\x88\x9a\x81" +"\x9b\x1e\xd0\xc3\x5c\xc5\x47\x53\x05\x9d\x77\x68\x96\x65\x1b\x69\x63\x80\x7b\x6f\x1f\x5e\xc5\x49\x53\xb5\x54\x77\x70\x80\x7b\x89" +"\x88\x19\x7b\x6c\x82\x6b\x6c\x1a\x72\x90\x75\x94\x79\x1e\x4f\x5a\xb7\x51\xcc\xbf\x05\x7a\x9f\xa9\x83\xb3\x1b\xb2\xb1\x96\x9e\xa7" +"\x1f\xb5\x56\x05\x34\xf7\xcb\x15\xbd\xb2\x66\x5c\x49\x4b\x4e\x46\x58\x64\xb0\xbc\xcc\xcc\xc7\xd0\x1f\x0e\xfc\x77\xf7\x5a\x9a\x0a" +"\x0e\xfb\xe9\xf7\x83\xf8\x71\x15\xa1\xf2\x05\x5c\x06\x95\xc5\xa0\xa6\xae\x90\x93\xb2\x18\x4f\x86\x5f\x5b\x7a\x3c\x76\x27\x18\xf7" +"\x92\x16\xa1\xf2\x05\x5b\x06\x96\xc5\x9f\xa6\xaf\x90\x93\xb2\x18\x4f\x86\x5f\x5b\x7a\x3c\x76\x27\x18\x0e\xf7\x27\x93\x0a\xf7\x4e" +"\x32\x15\xf7\x11\xfb\x0d\x9d\xdd\x35\xde\xf7\x0d\xdf\x9d\xde\xfb\x45\xfb\x0e\x05\x0e\xfb\xe9\xf7\x20\x93\x0a\x0e\xfb\xe9\xf7\xc7" +"\xf7\xd1\x99\x0a\x0e\xfb\x42\xf8\x00\xf8\xa0\x3b\x1d\xf7\x59\xce\x8e\x0a\xfb\x42\xf8\x06\xf8\xa0\x3b\x1d\xf7\x79\xf7\xa4\xdb\x1d" +"\xf9\x08\xf7\xcc\x15\xfc\xcb\x27\x1d\xf8\xcb\x06\x0e\xf9\x00\xf8\x89\x15\xfb\x56\xb5\x0a\xfb\x56\x06\x7a\x3a\x05\xf7\x55\x06\xfb" +"\x12\xfc\xe9\x05\xe3\x06\xf7\x12\xf8\xe9\x05\xf7\x57\x06\x0e\xf9\x00\xf8\x89\x15\xfb\x53\xb5\x0a\xfb\x52\x06\x7a\x3a\x05\xf7\x52" +"\x06\x49\xfb\xc8\x05\xfb\x52\x06\x7a\x3a\x05\xf7\x52\x06\x5f\xfb\x64\x05\xe3\x06\xb7\xf7\x64\x05\xf7\x53\x06\x9c\xdc\x05\xfb\x53" +"\x06\xcd\xf7\xc8\x05\xf7\x53\x06\x0e\xfc\x20\x58\x0a\xfb\x1d\xf9\x39\x22\x1d\xfb\x8e\x06\xfb\x26\xfb\x1c\xfb\x21\xfb\x2c\xfb\x00" +"\xc8\x49\xf3\x88\x1f\x2e\xfc\x49\x05\xcb\x06\xf7\x47\xf9\xdf\x05\xde\x06\xfb\x47\xfd\xdf\x05\xcb\x06\xf7\x47\xf9\xdf\x05\xc3\x06" +"\x0e\xfb\xd8\xf7\xa6\xf8\x6a\x15\x3b\x41\x42\x3b\x55\xb7\x60\xc3\xdd\xd5\xd4\xda\xc5\x61\xb3\x4f\x1f\x0e\xfc\x58\xe1\xf2\x47\x1d" +"\x0e\xfb\xe9\xd0\xf2\x47\x1d\xcc\x16\x69\x1d\x0e\xfb\xe9\xf7\x5b\xf9\x58\x47\x1d\xcc\x16\x69\x1d\x0e\xf7\xd3\xf7\xd1\x99\x0a\xf7" +"\x6e\xe4\x15\xfb\x13\xf7\x0d\x79\x39\xe3\x38\xfb\x0f\x37\x79\x38\xf7\x47\xf7\x0e\x05\x0e\xf7\xda\xf7\x85\xf2\x37\x0a\xf3\x06\xf7" +"\xf7\xf2\x37\x0a\xf3\x06\xf7\xf7\xf2\x23\x0a\xf7\xda\xf9\x1d\xf9\x76\x15\xfc\xc0\xfd\x8a\x05\xcd\x06\xf8\xc0\xf9\x8a\x05\xfc\x25" +"\x7e\x51\x0a\xf7\x86\xfc\x1e\x51\x0a\xf8\x0a\xc2\x51\x0a\x0e\x4c\xf7\xec\xf7\xd9\x15\x81\x5c\x7d\x59\x7b\x78\x41\x54\x19\x5b\x66" +"\x72\x74\x77\x71\x08\x6b\x61\x78\x57\x5d\x1a\x6b\x98\x6a\xa1\x72\x1e\x65\xac\xb8\x7a\xce\x1b\xf7\x24\xe5\xda\xf7\x2f\xaa\x1f\x36" +"\x06\xfb\x02\x75\x5b\x5c\x33\x1b\x4a\x61\xad\xc0\xc1\xab\xbc\xd3\xc4\x1f\xf4\xdb\x9d\xa1\x99\xc8\x97\xc2\x18\x45\xeb\x15\xe5\x06" +"\xa1\xf2\x05\x31\x06\x0e\xfb\xe9\xf7\xb1\xf9\x78\x2e\x0a\xfb\xe9\xf7\xee\xf9\x78\x23\x1d\xfb\xe9\xf7\xa6\xf9\x79\x24\x1d\xfb\xe9" +"\xf8\x36\xf9\x63\x46\x0a\x77\x1b\x81\x70\x91\x94\x71\x50\x0a\xb8\xb5\x31\x1d\xfb\xe9\xa5\x0a\xfb\xe9\xf7\x3e\xf9\x6d\x59\x1d\xfb" +"\xe9\xf8\x06\xf9\x5f\x23\x0a\xfb\xe9\xf7\xb1\x53\x0a\xfb\xe9\xf7\xd8\xf9\x86\x6f\x1d\x83\x5f\x15\x9f\x9a\x7d\x77\x70\x7a\x1d\xa6" +"\x1f\x0e\xfb\xe9\xf7\x39\x16\x59\x2f\x8a\x1d\xb8\xcb\x57\x0a\xa9\xc3\x05\x0e\xfb\xe9\xf7\x6f\xf9\x78\x40\x0a\xfb\xe9\xf7\x39\x16" +"\x68\x7e\x7a\x82\x78\x7f\x08\x65\x72\x76\x69\x66\x1a\x5b\xbc\x70\xe0\xa7\x9e\x8e\x92\xa0\x1e\x94\xb8\x05\x84\x78\x73\x88\x70\x1b" +"\x64\x70\x9d\xa5\x9b\x92\x9e\x98\x9a\x1f\x9c\x9f\x99\x95\xbe\xa4\x92\x8e\x93\x8f\x92\x8f\x08\x0e\xfb\xe9\xf7\xe3\xf8\xe4\x2a\x1d" +"\xf7\xda\xca\x1d\xf7\xda\x6d\x0a\x0e\xfb\xc4\xf8\x2a\xf7\xf6\x15\xfb\xb4\x06\x80\x58\x05\xf7\xb4\x06\xb0\xf7\x26\x15\x83\x8a\x05" +"\x8a\x87\x88\x8b\x89\x1b\x82\x83\x91\x93\x8d\x8b\x8d\x8c\x8e\x1f\xb4\xf7\x52\x05\x8c\x8e\x8b\x93\x92\x1a\xb4\x63\xa4\x4b\x57\x61" +"\x7e\x73\x72\x1e\x7b\x7c\x85\x7e\x7f\x60\x08\xc3\x06\xb1\x96\xa5\x9e\xb6\x1b\xa1\xa2\x85\x85\x91\x1f\x95\x7f\x8c\x88\x83\x1a\x86" +"\x8a\x86\x8a\x86\x1e\x89\x83\x84\x72\x84\x88\x5f\x86\x19\x3c\x83\x71\x85\x6e\x79\x08\x6b\x77\x79\x6b\x66\x1a\x58\xad\x6e\xc8\xb5" +"\xb0\x99\xa8\xa9\x1e\x6f\x8e\x9a\x7c\xa8\x1b\x92\x8c\x8b\x8f\x9d\x1f\x8c\x90\x8c\x8c\x8f\x1f\x45\xf7\x02\x15\x6a\x85\x56\x6a\x5e" +"\x1b\x67\x7a\x97\xa4\x9c\x96\x9f\x9c\x95\x1f\x9d\x96\x98\x8e\xc4\x93\xa3\x8e\x95\x8d\x9c\x91\x08\x0e\xf7\x99\xf7\xcf\x15\xf7\x58" +"\xf7\x0a\x9c\xda\xfb\x58\xfb\x0a\xd2\xf7\xe3\x05\x2d\x06\x3b\xfc\x0a\x38\x58\x7a\x3c\xde\xbe\x51\xfb\xa8\x05\xf8\x58\x2f\x0a\xfb" +"\xfb\x06\x0e\xf3\x65\x0a\x0e\xf7\xda\xf9\x43\xf7\xdb\x15\xf7\xda\x2f\x0a\xfb\xdb\x06\xbe\xf7\x82\x05\xf7\xe4\x20\x1d\xfc\x42\x06" +"\x7b\x3f\x05\xc8\x6c\x58\xa6\x37\x1b\x2e\x28\x5b\x3e\x46\x1f\x3e\x34\x52\xfb\x3e\xfb\x20\x1a\xfb\x26\xe7\x2b\xf7\x1f\xe2\xca\xa9" +"\xd1\xc4\x1e\x7b\x3e\x05\xf8\x46\x20\x1d\xfb\xe8\x06\x43\xef\x15\x38\x52\x46\x62\x37\x1b\x2b\x50\xc9\xf1\xeb\xab\xf7\x1c\xb2\xd0" +"\x1f\xe5\xbf\xd3\xba\xe3\x1b\xe3\xbe\x64\x39\x9e\x1f\x0e\xfb\xc9\xf8\x18\xf7\xf6\x15\xfb\x9b\x06\x80\x58\x05\xf7\x9b\x06\x62\xf8" +"\x4b\x15\x54\x57\x71\x5f\x6a\x1f\x70\x66\x77\x45\x53\x1a\x49\xb9\x5f\xce\xc6\xbd\xa4\xb9\xac\x1e\xa6\xb1\xa0\xcf\xbe\x1a\xac\x7c" +"\xb1\x77\x9d\x1e\x9b\x79\x6d\x95\x6a\x1b\x82\x57\x15\xb3\xa4\x6f\x5e\x2e\x58\x42\x4a\x61\x72\xa6\xba\xe8\xbf\xd3\xcd\x1f\x0e\xf7" +"\x6b\x7b\x1d\x0e\xfc\x20\x2d\x0a\x0e\xfc\x58\xf7\x83\xf8\x32\x15\xce\xf7\xcf\x21\x1d\x42\xfb\xef\x42\x5e\x7d\x48\xd3\xb7\x48\xfb" +"\xce\x20\x0a\xd5\xf7\xef\xd4\xb5\x99\xce\x05\x0e\x4c\x82\x1d\x0e\xf7\xa2\xf9\xda\xf7\x33\x15\x45\x67\x56\x68\x49\x1b\x3d\x5a\xba" +"\xd6\x9f\x8d\x98\x90\xa4\x1f\xf8\x16\x06\x99\xd9\x8e\xa3\xab\x1a\xec\x38\xd5\xfb\x00\x38\x30\x60\x4f\x60\x1e\xce\x6e\x50\xaf\x37" +"\x1b\x2c\x3c\x62\x3f\x59\x1f\x5e\x47\x6b\xfb\x00\x3a\x1a\x56\x9f\x58\xad\x68\x1e\x6a\xab\xb9\x7b\xc5\x1b\xe2\xda\xb2\xcf\xbd\x1f" +"\x90\x7f\x8e\x85\x94\x80\x08\x54\xb5\xbb\x74\xd0\x1b\xf7\x0d\xf1\xd4\xf7\x01\xab\x1f\xfc\xbb\xf7\xc3\x15\xd3\xb7\x5b\x3b\x50\x7b" +"\x47\x71\x5b\x1f\x48\x66\x52\x65\x49\x1b\x46\x60\xbb\xda\xf7\x31\xe2\xf7\x10\xf7\x03\x1f\xf7\x66\xfb\x30\x15\xe8\xa6\xd5\xca\xdd" +"\x1b\xd1\xb7\x5b\x3f\x81\x8a\x83\x89\x7d\x1f\x0e\x4c\xf7\xed\xf7\xf1\x15\x9b\x06\xc0\xa2\x88\x81\xa2\x1f\xb0\x7c\x9f\x6c\x60\x1a" +"\x24\x31\x39\xfb\x06\x1e\x6c\x06\x81\x06\x7a\x3d\x05\x88\x9d\x96\x8a\x9e\x1b\xeb\xde\xb0\xcf\xc3\x1f\xb4\xbb\xa7\xd5\xc4\x1a\xb4" +"\x76\xb2\x67\xa4\x1e\x77\x99\x7c\x92\x68\x96\x08\xf6\xab\xc1\xc9\xe6\x1a\xe2\x43\xc3\xfb\x03\x47\x48\x77\x68\x57\x1e\x5c\x6b\x71" +"\x63\x7d\x4b\xfb\x06\xfc\xae\x18\xde\x06\xf7\x06\xf8\xae\x05\xd0\x9a\xcc\xb7\xe2\x1b\xd2\xb9\x68\x56\x41\x3d\x51\x27\x1f\x81\x06" +"\x0e\xfb\xe9\xf7\xa5\xf8\xd8\x15\x4c\xfb\xbc\x05\xcb\x06\xe5\xf8\x3d\x05\x5f\x06\x6a\x4a\x81\x85\x30\x7f\x81\x5d\x18\x0e\x31\xf7" +"\x06\xf8\x0d\x15\x7c\x43\x05\xf8\x47\x06\x5d\xfb\x6f\x05\xd1\x06\xc8\xf7\xb7\x05\x0e\xf8\xbe\xbc\x15\x89\x84\x87\x8a\x85\x1b\x72" +"\x7e\x95\xa0\x8f\x8b\x8f\x8c\x8e\x1f\xe8\xf8\x48\x21\x1d\x4c\xfb\xbd\x05\x20\x74\x44\x45\x35\x1b\x55\x6b\xa9\xbd\x95\x8c\x96\x8d" +"\x94\x1f\xd8\xf8\x00\x21\x1d\xfb\x32\xfd\x7c\x20\x0a\xbb\xf7\x76\x05\x76\xa0\xa2\x83\xb0\x1b\xd1\xc6\xa6\xc3\xc1\x1f\x89\x83\x8a" +"\x84\x87\x1a\x5d\xa0\x79\xc1\x99\x90\x8c\x90\xa1\x1e\x8d\x90\x8d\x8c\x91\x1f\x0e\xf7\xda\xf8\x42\xf9\x36\x15\xf7\x2d\x06\x96\xc2" +"\x05\xfc\x0a\x06\x7f\x54\x05\xf7\x2e\x06\x3a\xfc\x12\x05\xcf\x06\xf8\x65\x16\xf7\x57\xf7\xe9\x42\xfb\xe9\x05\xce\x06\xe8\xf8\x49" +"\x05\x31\x06\xfb\x65\xfb\xfe\x54\xf7\xfe\x05\x2d\x06\x2e\xfc\x49\x05\xce\x06\xd4\xf7\xe9\xbb\xfb\xe9\x05\x0e\xbb\x86\x1d\xf7\x34" +"\xce\x1d\x60\x06\x6a\x48\x7e\x82\x31\x84\x82\x5d\x18\xf8\xdd\xf7\x15\x35\x0a\xa5\xfd\x1f\x15\xfb\x7a\x06\x9f\xb1\xa1\x9e\xbc\xa2" +"\xd0\xab\x18\xdc\xaf\xb8\xc3\xc9\x1a\xca\x5d\xb1\x3f\x28\x50\x5a\x24\x72\x1e\xc9\x06\x94\xaa\x91\x9b\x96\x98\x08\xa4\x9e\xaa\x99" +"\xac\x1b\xb4\xa8\x73\x67\x66\x70\x6a\x59\x73\x1f\x4a\x6c\x21\x59\x67\x63\x72\x2a\x19\xf7\xc4\x06\x0e\x31\xf9\x05\xf8\x41\x15\xfb" +"\x63\x06\xb7\xf7\x60\x05\x44\x06\x60\xb1\x0a\x5e\xfb\x64\x05\xd2\x06\xb7\xf7\x64\x05\xf7\x63\x06\x4e\xfb\xb1\x15\xfc\x78\x27\x1d" +"\xf8\x78\x06\x0e\x84\xf7\x76\xf7\x53\xa4\x0a\xf6\x4d\xc1\xfb\x0f\x1e\xfb\x64\x06\xa4\xf7\x0a\x05\x2d\x22\x0a\xc5\xf7\xa5\x15\xc1" +"\xf7\x94\x05\xf7\x57\xbe\x1d\xf7\x34\xce\x1d\x61\x06\x69\x48\x7e\x82\x32\x84\x81\x5d\x18\xf8\xf5\xf7\x15\x35\x0a\xfb\x02\xfc\xf5" +"\x15\x76\x27\x05\xc9\x06\xa0\xa9\x0a\xfb\x98\xfb\x9e\x7e\x50\x05\xf7\x5b\xc0\x15\xfb\x15\x06\xf7\x39\xf7\x3e\x05\x0e\x31\xd2\x1d" +"\xfb\xa3\x2e\xc0\x1d\xd5\xf7\xfa\xc0\x1d\x0e\xfc\x32\xf7\x93\xf9\x6d\xb6\x0a\xfb\x43\xfc\xb0\xb6\x0a\x0e\xfb\xa6\xf7\xe7\xf9\x42" +"\x15\x38\x47\x47\x38\x38\xcf\x46\xdd\xe0\xcf\xce\xe0\xde\x47\xcf\x37\x1f\x8c\x60\x15\xc5\xbb\x5b\x4f\x4e\x5b\x5b\x4f\x52\x5b\xbd" +"\xc6\xc6\xbb\xbc\xc6\x1f\x0e\xa5\x1d\x3f\x3f\x62\x51\x6d\x1e\xc8\xf7\xb5\x05\x37\x06\xf7\x40\xfb\x9f\xa1\x1d\xf7\x34\xf7\x89\xf8" +"\x70\x67\x0a\xf8\xa6\xf7\x4a\x35\x0a\xfb\x20\xfc\xf5\x15\x75\x27\x05\xc9\x06\xa1\xa9\x0a\xfb\x99\xfb\x9e\x7f\x50\x05\xf7\x5b\xc0" +"\x15\xfb\x16\x06\xf7\x3a\xf7\x3e\x05\x0e\xfb\xe9\xf8\x13\xf7\xec\x15\xfb\x7b\x06\x9e\xaa\xa1\x9c\xc1\xa6\xcf\xac\x18\xde\xb4\xb4" +"\xbd\xc7\x1a\xcc\x5c\xb4\x3f\x28\x54\x5c\x20\x73\x1e\xca\x06\xd0\x9c\xab\xa9\xc4\x1b\xb4\xa5\x73\x67\x68\x6f\x69\x5c\x75\x1f\x4c" +"\x6c\xfb\x02\x53\x70\x6c\x6f\x26\x19\xf7\xc0\x06\x0e\xca\xf7\xe9\xf7\xd9\x15\xf7\x1a\x06\xaf\x9d\x7e\x70\x82\x89\x7f\x88\x80\x1f" +"\x7e\x53\x8a\x88\x71\x1a\x80\x8c\x86\x8e\x7f\x1e\xd9\x06\x90\xa4\x05\x82\x93\x88\x92\x99\x1a\x96\x8d\x96\x90\xab\x1e\x91\xa8\x8d" +"\x9c\x95\x1a\xa6\x85\x96\x74\x9d\x1e\xae\xa0\x9a\x99\x97\xa2\x08\x96\xa1\x92\xa9\xa5\x1a\xc8\x65\xa7\x3a\x1e\xfb\x62\x06\x2d\xfc" +"\x51\x05\xd1\x06\xc0\xf7\x8c\x15\xa7\xf7\x1a\x05\xf7\x15\x06\xb7\x9e\x7e\x6a\x76\x83\x73\x80\x7c\x1f\x77\x7b\x76\x83\x68\x1b\xb9" +"\xf7\xf6\x8b\x1d\x31\xf8\xed\xf7\xa1\x15\xfc\x8d\x27\x1d\xf8\x8d\x06\x0e\xf7\x8f\xf8\xc8\x15\xef\xb8\xaf\x6a\x9b\x7a\xab\x61\x19" +"\x99\x6f\x7f\x8e\x71\x1b\x36\x3d\x62\x45\x5b\x1f\x5e\x4a\x6a\xfb\x01\x36\x1a\x56\xa0\x58\xad\x69\x1e\x6b\xac\xba\x7a\xc5\x1b\xe7" +"\xd9\xb3\xd7\xc1\x1f\xb8\xc9\xad\xf7\x02\xdd\x1a\xf6\x58\xeb\x22\xe5\x1e\xea\xb4\x64\xb1\x28\x60\x05\x8e\x87\x88\x8d\x8a\x1b\x7f" +"\x94\x7f\x93\x7e\x94\x87\x8e\x7f\x93\x78\x96\x85\x8f\x83\x90\x83\x90\x61\x5e\x18\x97\x82\x97\x83\x8f\x89\x9a\x81\x95\x85\x8d\x89" +"\x8e\x89\x93\x84\x94\x83\x32\x62\x18\xf7\x2c\xfb\x21\x15\xd5\xb6\x5c\x39\x4f\x0a\x0e\x31\xf8\xa5\xf8\x3f\x15\xfb\x46\xfb\x26\xfb" +"\x07\xf7\x25\x4f\x5a\xf7\x07\xfb\x26\xfb\x46\xfb\x27\xb2\x5a\xf7\x46\xf7\x26\xf7\x08\xfb\x27\xc8\xbd\xfb\x09\xf7\x27\xf7\x46\xf7" +"\x26\x05\x0e\xfb\xe9\xf7\x77\xf8\x6e\x15\x8c\x9a\x92\x8b\x94\x1b\xbd\xa7\x79\x6b\x4f\x5f\x63\x4a\x62\x70\xa1\xad\x90\x8b\x93\x8c" +"\x93\x1f\x8c\x97\x05\x4b\x06\x89\x76\x8a\x82\x80\x1a\x49\xb7\x66\xdb\xf4\xd9\xd1\xe9\xac\x7e\xa1\x6c\x9a\x1e\xbd\xab\x9e\xaa\xbf" +"\x1a\xc2\x5d\xae\x44\x57\x5f\x79\x69\x6c\x1e\x77\x76\x80\x74\x7f\x5b\x08\xca\x06\x92\xaa\x90\x97\x94\x96\x08\xa2\x9c\xa6\x97\xab" +"\x1b\xb2\xa2\x79\x6e\x54\x6a\x72\x41\x1f\x87\x06\x7f\x06\x0e\xca\xf9\x11\xf8\x49\x15\xf5\x89\x61\xbc\x31\x1b\x47\x4e\x6d\x53\x5b" +"\x1f\x5b\x51\x6e\x3a\x40\x1a\x24\xc4\x4c\xe9\xc6\xbd\xa2\xba\xb6\x1e\xa5\xa7\x9b\xa7\xa3\xc7\x08\x44\x06\x3a\x6d\x5d\x60\x54\x1b" +"\x52\x65\xb8\xcf\xc0\x9c\xc6\xa7\xb6\x1f\xbb\xab\xb5\xa5\xbb\x1b\xbf\xa2\x70\x49\x8e\x1f\x67\xf7\xc5\x8b\x1d\x84\x28\x1d\xdc\xf7" +"\xc9\x23\x1d\x84\x28\x1d\x97\xf7\xca\x41\x0a\x0e\x84\x28\x1d\xa6\xf7\xb0\x15\x23\x06\x75\xa1\x0a\x75\x24\x05\xf3\x06\x0e\x84\x28" +"\x1d\x94\xf7\xc9\x24\x0a\x0e\x84\x28\x1d\xc6\x9d\x1d\x0e\x84\x28\x1d\xf7\x2d\xf7\xb4\x15\x6e\x79\x81\x83\x77\x1b\x81\x70\x91\x94" +"\x71\x50\x0a\xb8\xb5\x31\x1d\xbb\xf8\x04\x74\x15\xf7\x42\x8d\xf7\x06\xe4\xda\xf7\x5a\x8f\x1d\x3c\x2c\x5a\xfb\x1d\xfb\x12\x1a\x35" +"\xa9\x40\xc2\x5a\x1e\xae\x6c\xa8\x7f\xce\x81\x65\x44\x18\x60\x1d\x92\xa1\x62\x33\x1d\xbe\xa7\x83\xb2\x1b\xdf\xc8\xb8\xcb\xa7\x6d" +"\xa2\x66\x86\x87\x8b\x89\x7f\x1f\x0e\x84\xf8\xda\xfa\x3f\x15\xfb\x14\xfb\x28\x05\xc8\x06\xf7\x47\xf7\x28\x05\xfc\x4b\xfc\xf3\x3d" +"\x0a\x84\xf8\x83\xfa\x40\x4b\x1d\xfb\xe3\xfc\xf4\x3d\x0a\x84\xf8\x8d\xfa\x26\x4a\x1d\xfc\x19\xfc\x73\x3d\x0a\x84\xf8\x84\xfa\x3f" +"\x70\x1d\xfb\xcc\xfc\x5f\x3d\x0a\xfc\x20\x29\x1d\xf7\x41\x55\x0a\xfc\x20\x29\x1d\xf0\x64\x1d\xfc\x20\x29\x1d\xf7\x04\xfa\x1f\x2c" +"\x0a\xfc\x20\x29\x1d\xf7\x04\xfa\x3f\x2e\x0a\xbb\x2b\x0a\xa2\xfa\x2a\x98\x0a\x72\x6d\x7c\x76\x7a\x1f\x7f\x7c\x83\x7a\x7f\x68\x08" +"\xc1\x06\xa8\xa0\x91\x8f\xa1\x1b\x91\x42\x1d\xcb\x9d\x87\xa0\x1b\xb8\xb5\x31\x1d\xf3\xf9\x01\xfa\x3f\x2c\x1d\xfb\x58\xfb\x5a\x63" +"\x1d\x70\xd7\x5e\x28\x0a\x0e\xf3\xf8\xae\xfa\x40\x41\x0a\x2c\xfb\x5b\x63\x1d\x70\xd7\x5e\x28\x0a\x0e\xf3\xf8\xba\xfa\x26\x30\x1d" +"\xfb\x2b\x45\x15\xfb\x05\x2a\x61\x36\x3a\x1f\x32\x2f\x56\xfb\x17\xfb\x14\x1a\x34\xa6\x3f\xb9\x5d\x1e\x5b\xbb\xdc\x6e\xe0\x1b\xe9" +"\xe0\xa6\xbd\xcc\x1f\xf7\x09\xe5\xd7\xf7\x36\xf7\x32\x1a\xda\x70\xd7\x5e\x28\x0a\x0e\xf3\xf8\xae\xfa\x3f\x24\x0a\x42\x59\x15\xfb" +"\x05\x2a\x61\x36\x3a\x1f\x32\x2f\x56\xfb\x17\xfb\x14\x1a\x34\xa6\x3f\xb9\x5d\x1e\x5b\xbb\xdc\x6e\xe0\x1b\xe9\xe0\xa6\xbd\xcc\x1f" +"\xf7\x09\xe5\xd7\xf7\x36\xf7\x32\x1a\xda\x70\xd7\x5e\x28\x0a\x0e\xf3\xf8\xad\x61\x1d\x70\xd7\x5e\x28\x0a\xf7\x3c\xf7\x96\x15\x6e" +"\x79\x82\x83\x77\x77\x0a\x31\x1d\x84\xf8\xb7\xf9\xab\x81\x0a\xf7\x92\xfb\xa8\x7e\x1d\x0e\xbb\xf8\xe3\xfa\x3f\x2c\x1d\x8e\xfb\x66" +"\x6e\x0a\xbb\xf8\x99\xfa\x40\x41\x0a\xea\xfb\x67\x15\x49\x1d\xd1\x98\x3f\x1d\x83\x67\x85\x60\x7a\x1a\x62\xa2\x59\xab\x6e\x1e\x66" +"\xb4\xcd\x76\xd8\x1b\xf7\x3c\xf7\x15\xe9\xf7\x26\xaa\x1f\xf7\x01\xf8\x94\x05\x0e\xbb\xf8\xa8\xfa\x26\x30\x1d\xaf\x39\x15\x49\x1d" +"\xd1\x98\x3f\x1d\x83\x67\x85\x60\x7a\x1a\x62\xa2\x59\xab\x6e\x1e\x66\xb4\xcd\x76\xd8\x1b\xf7\x3c\xf7\x15\xe9\xf7\x26\xaa\x1f\xf7" +"\x01\xf8\x94\x05\x0e\xbb\xf8\x96\xfa\x3f\x24\x0a\xf7\x0c\x4d\x6e\x0a\x84\xf8\xc8\xfa\x3f\x2c\x1d\xfb\x78\xfd\x21\x85\x0a\x0e\x84" +"\x2f\x1d\xf7\x09\xfa\x26\x30\x1d\x0e\x4c\x33\x0a\xfb\x50\xf7\x26\x2a\x1d\xf8\x5e\xf9\x78\x2c\x1d\x79\xfd\x45\x3d\x1d\xa5\x8b\x8b" +"\x96\x1a\xcf\x46\xb8\x22\x4c\x1d\x85\x8a\x83\x6b\x0a\x52\x6b\x51\x1d\xea\x43\x1d\x0e\xf8\x1d\xf9\x79\x4b\x1d\xcb\xfd\x46\x54\x1d" +"\xf8\x27\xf9\x5f\x4a\x1d\x95\xfc\xc5\x54\x1d\xf8\x1c\xf9\x78\x70\x1d\xe4\xfc\xb1\x54\x1d\x7c\x1d\x81\xf8\x84\x15\x55\x55\x57\x56" +"\x63\xaa\x6d\xb3\xc4\xbf\xbe\xc4\xb1\x6d\xa8\x61\x1f\x83\x5f\x15\xa0\x99\x7d\x76\x71\x71\x71\x6f\x76\x7d\x99\xa0\xa5\xa6\xa5\xa6" +"\x1f\x0e\x5f\x0a\xda\xf8\x61\x15\x6f\x7a\x80\x82\x77\x1b\x81\x70\x91\x94\x71\xcd\x1d\x83\x7b\x7f\x67\x08\xc0\x06\xa7\x9f\x93\x90" +"\xa1\x1b\x91\x42\x1d\xcb\x9d\x87\xa0\x1b\xb8\xb6\xb6\xcb\x9f\x1f\x0e\xfb\x42\xf7\xa3\x74\x15\xf7\x15\x8f\xe1\xd1\xab\xf7\x15\xa6" +"\x0a\x46\x5f\x3f\x0a\xdf\x06\x8c\x9a\x05\x8c\x9b\x8c\x96\x8e\x1a\xab\x62\x1d\x51\xa3\x52\xb2\x67\x1e\xa3\x74\x9f\x82\xba\x82\x65" +"\x45\x5d\x1d\xbe\xa7\x39\x0a\x87\x87\x8b\x89\x7e\x1f\x0e\xf8\x68\xf9\x78\x2c\x1d\x7a\xfc\x8e\x31\x0a\xf8\x19\x54\x0a\xdb\xfc\x8f" +"\x31\x0a\xf8\x24\xf9\x5f\x30\x1d\xa4\xfc\x0e\x31\x0a\xf8\x14\xf9\x78\x24\x0a\xf6\xfb\xfa\x31\x0a\xfc\x20\x2d\x0a\xf7\x21\xf9\x78" +"\x23\x1d\xfc\x20\x2d\x0a\xd0\xf9\x79\x24\x1d\xfc\x20\x2d\x0a\xdb\xf9\x58\x2c\x0a\xfc\x20\x2d\x0a\xdb\xf9\x78\x2e\x0a\x39\x1d\xf7" +"\xaa\xf7\x57\x46\x0a\x78\x77\x0a\xb6\xcb\xa0\x1f\x0e\xf8\x64\xf9\x78\x2c\x1d\xfb\x54\xfb\x5d\x15\x2e\x39\x61\x41\x58\x1f\x5e\x4b" +"\x6a\xfb\x02\x36\x1a\xfb\x03\xd8\x3f\xf7\x04\xeb\xd7\xb2\xd8\xc3\x1e\xb9\xca\xac\xf7\x01\xe2\x1a\xc0\x77\xbe\x68\xad\x1e\xac\x69" +"\x5e\x45\x1d\x0e\xf8\x13\x54\x0a\x2e\xfb\x5e\x96\x1d\x5b\x3a\x4f\x0a\x0e\xf8\x1f\xf9\x5f\x30\x1d\xfb\x29\x42\x15\x2e\x39\x61\x41" +"\x58\x1f\x5e\x4b\x6a\xfb\x02\x36\x1a\xfb\x03\xd8\x3f\xf7\x04\xeb\xd7\xb2\xd8\xc3\x1e\xb9\xca\xac\xf7\x01\xe2\x1a\xc0\x77\xbe\x68" +"\xad\x1e\xac\x69\x5e\x45\x1d\x0e\xf8\x10\xf9\x78\x24\x0a\x47\x56\x15\x2e\x39\x61\x41\x58\x1f\x5e\x4b\x6a\xfb\x02\x36\x1a\xfb\x03" +"\xd8\x3f\xf7\x04\xeb\xd7\xb2\xd8\xc3\x1e\xb9\xca\xac\xf7\x01\xe2\x1a\xc0\x77\xbe\x68\xad\x1e\xac\x69\x5e\x45\x1d\x0e\x4a\x0a\xf7" +"\x33\xf7\x95\x46\x0a\x77\x1b\x81\x6f\x92\x93\x72\xcd\x1d\x84\x7c\x7e\x66\x08\xc0\x06\xa8\xa0\x91\x8f\xa2\x1b\x91\x95\x89\x87\x96" +"\x1f\x75\xcb\x9c\x87\xa1\x1b\xb8\xb6\xb6\xcb\x9f\x1f\x0e\xfb\x42\xf8\x37\xf8\xe4\x81\x0a\xf7\x52\xfb\x6a\x15\x90\xa0\x8c\x94\x98" +"\x1a\xd1\x49\xbb\x29\x3c\x1d\x3b\xd0\x5b\xf7\x09\xf7\x29\xec\xd8\xf7\x0b\x5a\x0a\xa4\x9d\x9c\x44\x0a\x1f\x85\x07\x86\x07\x8a\x80" +"\x05\x0e\xf8\x63\xf9\x78\x2c\x1d\x2f\xfd\x78\x3b\x0a\xf8\x10\x54\x0a\x94\xfd\x79\x3b\x0a\xf8\x1e\xf9\x5f\x30\x1d\x5a\xfc\xf8\x3b" +"\x0a\xf8\x0c\xf9\x78\x15\x21\x74\x1d\xae\xfc\xe4\x3b\x0a\xfb\x42\x74\x0a\xfb\x30\xf7\x6c\x23\x1d\xfb\x42\x74\x0a\xfb\x6e\xf7\x53" +"\x30\x1d\x0e\xfb\x42\x46\x1d\xfb\x0c\xf7\x23\x15\xf7\x15\xf7\x28\x05\x4a\x06\x24\x59\x0a\xfb\xc9\xf7\x45\xf8\xec\x15\x48\xfb\xd0" +"\x05\xc8\x06\xb0\xf7\x42\x05\xc8\x98\xb3\xb1\xc0\x1b\xa8\xa0\x79\x72\x87\x8a\x82\x89\x83\x1f\x5f\xfb\x65\x05\xc8\x06\xba\xf7\x75" +"\x05\x8d\x93\x8c\x93\x92\x1a\xb9\x68\xaa\x56\x60\x64\x7e\x71\x6c\x1e\x91\xa9\x05\x0e\x48\x0a\x0e\xf3\x48\x0a\xf7\x4b\xce\x8e\x0a" +"\xf3\x48\x0a\xf7\x79\xf7\xa4\xdb\x1d\xf7\x34\xf9\x79\xf9\x59\x35\x0a\xfc\x9e\xfb\x15\x15\x4c\xfb\xbc\x05\xc9\x06\xe6\xf8\x3d\x05" +"\x60\x06\x6a\x48\x7d\x82\x32\x84\x81\x5d\x18\xf8\xe5\xfb\xf8\x15\xc5\x82\x0a\x79\xa6\x67\x9e\x1e\x67\x9b\x1d\x0e\xf7\x34\xf9\x96" +"\x34\x0a\x55\x87\x1d\xfc\x4f\xf7\xa7\x67\x0a\x0e\xf7\x34\xf9\x96\x34\x0a\x55\xfc\x79\x15\xc4\x82\x0a\x7a\xa6\x67\x9e\x1e\x66\x9b" +"\x1d\xfb\x87\x21\x0a\xfb\x6f\x06\x39\xfb\x7b\x05\xbc\x06\xa8\xaa\xa1\x95\xad\x1b\xba\xa6\x71\x5d\x41\x59\x55\x47\x5e\x73\xa3\xba" +"\x89\x1f\x56\x80\x06\x46\xb4\x65\xd6\xee\xde\xe1\xf2\xcc\x60\xb3\x47\x6d\x71\x83\x7a\x6f\x1e\xb5\xf7\x0a\x05\xf7\x45\x06\x0e\xf7" +"\x34\xf9\x57\x34\x0a\x8a\x87\x1d\xfb\x58\x21\x0a\xfb\xb0\x06\x7f\x57\x05\xf7\x7a\x06\xfb\x19\xfb\x26\x51\x35\x4c\xfb\x21\x08\xc4" +"\x06\xc0\xf7\x1d\xd8\xf7\x08\xf7\x10\xf7\x14\x08\x0e\xf7\xda\x6d\x0a\xf7\x68\xf7\xb8\x23\x1d\x84\x28\x1d\x2f\xf7\xbe\x59\x1d\x84" +"\x28\x1d\x0e\x84\x28\x1d\xfb\x9d\xee\x15\x78\x97\x0a\x9e\xe6\x05\x0e\x84\x28\x1d\xf7\x51\xf7\x9d\x15\xfb\xa6\x06\x7b\x46\x05\xf7" +"\xa6\x06\x0e\x84\xf8\xa0\xf7\x6f\x15\xa6\xfb\x6f\x05\xaa\x06\x66\x7e\x7b\x83\x77\x7d\x08\x68\x73\x75\x66\x69\x1a\x5d\xbd\x6e\xdb" +"\xa2\x92\x8c\x94\xb5\x1e\x94\xb8\x05\x84\x76\x75\x88\x72\x1b\x62\x70\x9c\xa6\xb6\xb0\xad\xe4\xb2\x1f\xd9\x1d\xee\x06\xf7\x02\xf7" +"\x6f\x05\xf7\xb4\xe7\x1d\x0e\x84\x28\x1d\xc8\x9d\x1d\x6a\xf7\x35\x15\xfb\x14\xfb\x28\x05\xc7\x45\x0a\x84\x84\x1d\xbb\x3a\x0a\x56" +"\xf8\x48\x23\x1d\xbb\x3a\x0a\x3d\xf7\xb4\x15\xf7\x14\xf7\x28\x05\x4b\x06\x23\x59\x0a\xbb\x3a\x0a\xfb\x35\xf8\x49\x24\x1d\xbb\xf9" +"\x95\xf8\x8b\x15\x99\x07\xf7\x25\x39\xda\xfb\x2a\xfb\x12\x25\x5c\x30\x43\x1e\x3f\x2c\x5b\xfb\x1b\xfb\x0a\x1a\x3e\x9d\x4f\xb3\x56" +"\x1e\x4e\xba\xc8\x70\xe8\x1b\xf7\x4d\xf7\x04\xe4\xf7\x5c\xcb\x1f\x2c\x06\x77\x59\x7b\x6a\x75\x6e\x08\x4e\x5d\x47\x69\x3e\x1b\x5c" +"\x5e\x99\xa5\x6b\x1f\x64\xaa\x77\xbf\xd1\x1a\xed\xa9\xf1\xbe\xd6\x1e\xe3\xc7\xd6\xb7\xe5\x1b\xb8\xb8\x80\x79\xa5\x1f\xaa\x77\x9a" +"\x66\x57\x1a\x89\x8b\x82\x8a\x84\x1e\x5f\xf8\x30\x15\x23\x06\x74\x23\x05\xf3\x06\x0e\x84\x75\x0a\xbb\x72\x0a\xf7\x38\xf9\x59\x2a" +"\x1d\xbb\x86\x1d\x4d\x8f\x16\xf8\xf0\x06\xfb\x97\xf9\x0a\x05\x33\x06\xb7\x25\x15\xf7\x4b\xfc\x5b\x05\xfc\x01\x06\x0e\x84\x27\x0a" +"\xf7\x4b\xf9\xe2\x4e\x0a\x84\x27\x0a\xf7\xf6\xf9\x59\x2a\x1d\x84\x27\x0a\xf8\x14\xf9\xd4\x23\x0a\x84\x27\x0a\xf8\x65\xf9\xc1\x36" +"\x1d\xbc\xf7\x01\x16\xe9\x06\xf1\xf8\x76\x05\xf7\x0d\xa5\xd0\xc4\xf7\x0d\x1b\xdd\xc0\x6c\x5a\x84\x89\x7e\x87\x79\x1f\xfb\x15\xfc" +"\xf6\x5c\x0a\x85\x8b\x8d\x7e\x1f\x7a\x3c\x05\x88\x92\x8e\x8b\x94\x1b\xf7\x12\xb5\xa4\xdf\x9d\x1f\xf7\x26\xf9\x43\x05\x8e\x98\x8c" +"\x98\x97\x1a\xdf\x50\xb4\xfb\x0f\xfb\x08\x4a\x75\x51\x51\x1e\x99\xcc\x05\x35\x06\x0e\x84\xf7\x93\xf7\xe0\xab\x1d\xf8\x58\x06\x66" +"\x7d\x7b\x84\x77\x7d\x08\x68\x73\x75\x66\x69\x1a\x5d\xbd\x6e\xdb\xa2\x92\x8c\x94\xb5\x1e\x94\xb8\x05\x84\x76\x75\x88\x72\x1b\x61" +"\x71\x9c\xa6\xa1\x97\xa0\xa1\xa0\x1f\x9d\x9a\x97\x92\xc9\xa9\x9c\xdd\x18\xfc\x41\x06\x0e\x84\x27\x0a\x0e\xf7\x07\xf7\xde\xf7\xe0" +"\xa2\x1d\xfc\x40\x06\x2e\xf9\x1b\x2b\x1d\xbb\x7a\x0a\xf7\x40\xf9\x4d\x7f\x0a\xfb\x26\xf8\x21\x2b\x1d\xba\xf7\xcd\x15\x68\x50\x05" +"\xdf\x06\x8a\x80\x8b\x7c\x88\x1a\xfb\x37\xcf\x37\xf7\x17\xc9\xc6\x9a\xaa\xc4\x1e\x9f\xe8\x05\x5b\x2f\x65\x7e\x5a\x1b\x37\x60\xc9" +"\xf7\x0e\x1f\x99\xf7\x6b\x07\xaf\xc6\x05\xfb\x8a\x06\x8e\xa0\x91\xa6\x91\x9d\x08\xf7\xa2\x06\xaf\xc6\x05\xfb\xb1\x06\xf7\x1e\xc7" +"\xc9\xc4\xe2\x1b\xbf\xb0\x79\x56\xc9\x1f\xbc\xdb\x05\xba\x53\x56\x9f\x46\x1b\x35\x42\x6a\x47\x4f\x1f\x5f\x5a\x6a\x53\x72\x4a\x08" +"\x4c\x06\x68\x50\x05\xda\x06\x84\x74\x85\x72\x88\x79\x08\x0e\x23\xd4\x16\xe9\x2e\x1d\xf8\x26\x2f\x0a\xfc\x85\x06\x0e\xf3\x64\x0a" +"\xfb\x9f\xfa\x38\x3c\x0a\xf3\x81\x1d\xfb\x45\xfa\x44\x24\x1d\xf3\x64\x0a\xfc\x0e\x53\xe5\x1d\x65\x1b\x82\xd7\x1d\xf3\xf9\xab\xf8" +"\x15\x15\xfb\xc4\x26\x0a\xf7\x71\x06\x87\x77\x7f\x51\x68\x54\x57\x5f\x19\x5d\x55\x52\x76\x46\x1b\x42\x49\xa7\xb6\x6c\x1f\x75\xac" +"\x7f\xbb\xc6\x1a\xec\xac\xea\xc5\xd4\x1e\xdd\xcc\xdd\xb5\xe7\x1b\xdb\xc7\x6e\x57\xa4\x1f\x95\x76\x8e\x7d\x68\x1a\xea\x06\xc5\x81" +"\xb1\x71\xb0\x1e\xce\x5e\x42\xac\x25\x1b\xfb\x0a\x28\x64\x3e\x40\x1f\x30\x30\x51\xfb\x22\xfb\x17\x1a\xfb\x40\xf4\xfb\x04\xf7\x35" +"\xf2\xf7\x04\xbb\xcf\xc3\x1e\x8e\x2a\x05\xc5\x06\x43\xfa\x2b\xbf\x0a\xbb\xf7\x52\xf8\x8a\x15\x20\xfc\x8a\x05\xe9\x06\xd2\xf7\xe0" +"\x05\xf8\x0a\x06\x44\xfb\xe0\x05\xe8\x06\xf6\xf8\x8a\x05\xd6\x06\x99\xd1\x05\x40\xb4\x0a\xfc\x0b\xb4\x0a\x41\x06\x7c\x45\x05\xf7" +"\x3c\x16\xf8\x0b\x06\x78\x33\x05\xfc\x0b\x06\x0e\xbb\x7c\x0a\xf7\x91\xf8\xf4\x24\x1d\xc6\xf7\xb6\xf9\x6d\x15\x2d\x22\x0a\xf8\xae" +"\xb3\x1d\x95\x8c\x97\x8e\x97\x1f\x99\xcd\x05\x2d\x06\x7d\x4b\x05\x87\x79\x89\x7a\x7e\x1a\x60\x9f\x61\xae\x6f\x1e\x75\xa7\xad\xc6" +"\x1d\x0e\xfc\x20\x29\x1d\x85\xfa\x34\x59\x1d\xfc\x20\x29\x1d\xf7\x57\xfa\x26\x23\x0a\xfc\x20\x29\x1d\xf7\x9c\xfa\x13\x15\xfb\x8b" +"\x06\x7b\x46\x05\xf7\x8c\x06\x0e\xfc\x20\xf7\xf1\xa0\x0a\xae\x06\x74\x7e\x82\x84\x79\x7c\x08\x61\x67\x7c\x73\x69\x1a\x5e\xbb\x6c" +"\xce\xa0\x97\x8d\x93\xa3\x1e\x94\xb8\x05\x83\x70\x87\x8a\x7c\x1b\x66\x74\x9c\xa6\xa9\xa4\xad\xbd\xb2\x1f\x91\x8f\x91\x90\x8f\x8e" +"\x08\x0e\xfc\x20\x29\x1d\x0e\xfc\x20\x29\x1d\xf7\x02\xfa\x26\x65\x1d\xfb\xb1\xf8\x31\x36\x0a\x40\xf9\x6d\x2b\x1d\xfc\x20\x29\x1d" +"\xf7\x88\xfa\x2a\x98\x0a\x71\x6e\x7c\x76\x7a\x1f\x7f\x7c\x83\x7a\x7f\x68\x08\xc0\x06\xa8\xa0\x92\x8f\xa1\x1b\x91\x42\x1d\xcb\x9d" +"\x87\xa0\x1b\xb8\xb5\x31\x1d\xfb\x42\x6c\x0a\x4e\xf7\x67\x24\x1d\x84\x78\x0a\x84\x79\x0a\xf7\x05\x4f\xb0\x1d\x3e\x1d\xf7\x45\xf9" +"\xed\x23\x1d\x84\xf8\xbb\xf9\x6d\x15\xfb\x0c\x06\xfc\x33\xfd\x6d\x05\xef\x06\xf7\xfa\xf9\x09\xdc\xfd\x09\x05\xec\x06\x0e\x3e\x1d" +"\xf7\x82\xf9\x1b\x42\x0a\xba\xbc\xdd\x50\x1d\x3e\x1d\xc1\xfb\x22\x5e\x1d\x3e\x1d\xf7\xf8\xf7\xfd\x23\x0a\xf7\x33\x97\x1d\xbb\x2b" +"\x0a\x57\x55\x0a\xbb\x2b\x0a\x3f\xf9\xab\x2a\x1d\xbb\x2b\x0a\xfc\x00\x4f\x42\x0a\xba\xbb\xde\x50\x1d\xbb\x2b\x0a\x0e\xf3\x30\x0a" +"\x5d\xf7\xa0\x4e\x0a\xf3\x30\x0a\xa9\xf7\xab\x40\x0a\xf3\x30\x0a\xf7\x4f\xf7\x7f\x36\x1d\xf0\xb2\x16\xf7\xb4\x20\x1d\x2f\xca\x6a" +"\xc5\xf0\x1a\xf7\x5d\xf7\x17\xf7\x2f\xf7\x3f\xf7\x0b\xdb\x3c\xfb\x0b\x37\x6b\x31\x52\x41\x1e\x61\x55\x61\x6a\x35\x5e\x7a\x39\x18" +"\xf7\xb4\x20\x1d\xfb\x50\x06\xf7\x33\xce\xe8\xf7\x1c\xf7\x38\x1a\xf7\x45\xfb\x07\xf7\x08\xfb\x44\xfb\x05\xfb\x01\x58\x35\x43\x1e" +"\x4c\x41\x64\xfb\x02\x26\x1a\x4c\x9f\x4b\xaf\x5b\x1e\x9d\x72\x9a\x7d\xad\x73\x08\xfb\x55\x06\xdd\xf9\x1b\xcf\x1d\xf3\x30\x0a\x0e" +"\xf7\x0c\xf8\xb4\x61\x1d\x6f\xd7\x5f\x28\x0a\xfc\x1b\xd0\x15\x78\x30\x8e\x23\x05\xaa\x06\xbb\xf3\x9e\xe6\x05\x0e\xf3\x65\x0a\xf7" +"\xe1\xf9\xc4\x23\x1d\xf7\x37\xf8\x06\x7f\x15\xe9\x06\x9e\xe5\xef\x90\xcd\x9f\xcd\xba\x19\xe4\xca\xc2\xf2\xf3\x1a\xd6\x64\xd2\x4d" +"\xb2\x1e\x5e\xa7\x66\x97\x44\x91\x9e\xe5\x18\x2d\x06\x78\x31\x2b\x86\x4b\x78\x4b\x61\x19\x2b\x4d\x4f\x21\x20\x1a\x3e\xb5\x42\xcd" +"\x64\x1e\xb8\x71\xaf\x80\xd0\x85\x08\x9c\xd9\x15\x56\x90\x72\x93\x6c\x9e\x08\x61\xa5\x73\xb8\xc0\x1a\xd4\xb0\xd7\xc6\xba\x1e\xba" +"\xb2\xbc\x9e\xd3\x92\x08\xe8\x16\xc1\x89\xa5\x84\xa9\x78\x08\xb6\x71\xa4\x5c\x56\x1a\x42\x68\x40\x53\x5c\x1e\x59\x61\x58\x77\x41" +"\x85\x08\x0e\xbe\x84\x0a\xf7\x31\xf8\x08\x16\xe7\x06\xa8\xf7\x1e\xe1\x8d\xd5\x9f\xc6\xaf\x19\xe7\xc6\xaf\xce\xb2\xf7\x52\xb9\xf7" +"\x6d\x18\x2d\x06\x5d\xfb\x6d\x6d\xfb\x23\x77\x5d\x58\x60\x19\x5c\x66\x50\x77\x48\x88\xf7\x00\xf8\x91\x18\x2f\x06\xfb\x01\xfc\x91" +"\x05\xfb\x0a\x91\x53\xb5\xde\x1a\xae\x90\xae\x9f\xe6\x1e\xb9\xf7\x6d\x05\x2d\x06\x5d\xfb\x6d\x05\x7a\x3b\x83\x56\x64\x1a\xfb\x0c" +"\xe9\x3f\xf7\x31\x85\x1e\x0e\xbb\x55\x1d\xd6\xf8\xb3\x23\x1d\xbb\x55\x1d\xc1\xf8\x1f\x15\xf7\x14\xf7\x28\x05\x4b\x06\x23\x59\x0a" +"\xbb\x55\x1d\xfb\x54\xfc\x5c\x42\x0a\xbb\xbb\xde\x9d\x1f\x9e\xe8\x05\x0e\x84\x71\x0a\x84\x7d\x1d\x57\xf8\x3c\x23\x1d\x84\xf7\xe6" +"\x75\x15\xdf\xce\x9d\xaf\xc3\x1f\xd2\xb9\xc0\xe2\xd3\x1a\xa6\x83\xa5\x7b\xa4\x1e\x75\xae\x6e\x9f\x5c\x98\xfb\x40\xbc\x18\x3e\xa1" +"\x73\x9f\xb7\x1a\xaf\x99\xa9\xa9\xa6\x1e\xac\xb0\xbb\x9b\xce\x1b\xc3\xb5\x80\x77\xa1\x1f\x9e\x7a\x98\x6b\x6e\x1a\x82\x8a\x83\x88" +"\x78\x1e\xe3\x06\x91\xa7\x8d\x97\x9b\x1a\xb6\x76\xb9\x5a\x1d\x78\x65\x6f\x71\x1e\x65\x62\x50\x79\x3b\x1b\xfb\x05\x57\xb5\xe6\x68" +"\x1d\x4b\xa8\x53\xbe\x69\x1e\xa9\x78\xa7\x82\xd0\x82\x66\x45\x5d\x1d\xbf\xa6\x5d\x0a\x88\x8b\x89\x7e\x1f\x0e\x84\x61\x0a\xfb\x25" +"\xf8\x3d\x24\x1d\x84\x7d\x1d\xfb\xea\xfc\xd3\x15\x76\x29\x05\xc1\x06\x50\x81\x73\x6e\x64\x1b\x83\x65\x05\xca\xba\xbc\xdd\x50\x1d" +"\x41\xa8\x16\xf8\xb5\x2f\x0a\xfc\x3e\x06\xf7\xd1\xf7\xb3\xfb\x5b\xf7\xaa\x05\xf8\x2f\x20\x1d\xfc\xa2\x06\x79\x36\xf7\x56\xfb\xa7" +"\xfb\xd0\xfb\xb3\x05\x0e\x4c\x48\x1d\x0e\x4c\xf8\x5b\xf8\x6a\x15\xb1\xf7\x45\x05\xf7\x82\x20\x1d\xfc\xd1\x26\x0a\xf7\x85\x06\x65" +"\xfb\x45\x05\xfb\x34\x06\x7d\x48\x05\xf7\x34\x06\x35\xfc\x27\x05\xe9\x06\xe1\xf8\x27\x05\xf7\x34\x06\x99\xce\x05\x0e\x4c\x48\x1d" +"\xf7\x3d\xf9\xab\x2a\x1d\x4c\xf7\xeb\x16\x97\x2e\x1d\xf7\x82\x20\x1d\xfc\xd0\x06\x79\x39\x05\xf7\x85\x38\x0a\xb4\x06\x59\x2f\x8a" +"\x1d\xb8\xcb\x57\x0a\x0e\xf3\xf9\x02\xf8\x35\x15\xfb\xb2\x06\x79\x39\x05\xf7\xb3\x06\x53\xf8\x2a\x15\xfb\x29\xfb\x16\x41\xfb\x15" +"\x3a\x1f\x56\x36\x6d\x20\x27\x1a\xfb\x36\xf7\x02\x20\xf7\x3a\xf7\x23\xf7\x14\xce\xf7\x09\xdb\x1e\xc5\xe1\xad\xf7\x02\xf3\x1a\xf7" +"\x46\x26\xf1\xfb\x43\x1e\x77\x3a\x15\xd6\xc3\x71\x59\xac\x1f\xa2\x69\x98\x5d\x59\x1a\x35\x73\x34\x5f\x42\x1e\x2b\x51\x2d\x55\xfb" +"\x02\x1b\xfb\x0c\x3e\xda\xf7\x0e\xdd\xa3\xe5\xb5\xd3\x1f\xef\xc4\xea\xc4\xf7\x01\x1b\x0e\xbb\x57\x1d\xfc\x30\xf7\x5b\x40\x1d\xd7" +"\xbb\xbe\x9e\xa9\xac\xae\x1d\xbb\x4b\x0a\xfb\xac\xf7\x66\x40\x0a\xbb\x4b\x0a\xfb\x00\xf7\x3a\x15\xfb\xa6\x06\x7c\x46\x05\xf7\xa6" +"\x06\x0e\xbb\xf8\xcc\xfb\x2a\x15\x84\x78\x73\x88\x6f\x1b\x63\x71\x9d\xa5\xab\xab\xb6\xbe\xae\x1f\xf7\x02\xd2\xb7\xc3\xa2\xeb\xf7" +"\x01\xf8\x94\x18\x2d\x06\xfb\x01\xfc\x94\x05\x28\x76\x3a\x4f\xfb\x06\x1b\x2a\x4b\xb9\xd0\x99\x3f\x1d\x84\x69\x84\x5d\x7b\x1a\x62" +"\xa2\x59\xab\x6e\x1e\x65\xb5\xcb\x77\xdc\x1b\xaa\x9d\x8d\x93\xb1\x1f\x4a\x69\x6b\x66\x60\x1a\x59\xba\x6f\xdf\xab\x9d\x8d\x93\xa1" +"\x1e\x0e\x84\x2f\x1d\x0e\x84\x2f\x1d\xf7\x04\xfa\x26\x65\x1d\xf7\x53\xf8\xdc\xf7\xb2\x85\x0a\xfb\xdf\xf9\x6d\x2b\x1d\xbb\x4b\x0a" +"\xfb\x7d\xf7\x74\xaf\x1d\x70\x71\x70\x76\x7d\x99\x9f\xa6\xa5\xa5\xa8\x1f\x0e\xbb\x57\x1d\xfb\x2d\xf7\x51\x15\x6e\x7a\x81\x83\x77" +"\x1b\x80\x70\x91\x94\x72\x50\x0a\xb7\xb6\x31\x1d\xf7\xa2\x32\x0a\xd6\xfa\x3f\x23\x1d\xf7\xa2\x32\x0a\x6c\x64\x1d\xf7\xa2\x32\x0a" +"\x80\xfa\x26\x2c\x0a\xf7\xa2\x32\x0a\x75\xfa\x38\x70\x1d\x0e\x71\xc9\x16\xf8\x9f\x20\x1d\xfc\x9f\x06\xdf\xf7\x8e\x15\xf8\x60\x20" +"\x1d\xfc\x5f\x06\x9f\xf7\x7d\x15\xf8\x9c\x20\x1d\xfc\x9c\x06\x0e\x84\x2f\x1d\xe4\x64\x1d\x84\x2f\x1d\xea\xfa\x3f\x2e\x0a\x4c\x33" +"\x0a\xfb\x3b\xf7\xba\x23\x1d\x4c\x33\x0a\xfb\x31\xf7\xa1\x23\x0a\x4c\x33\x0a\x0e\x7c\x1d\xfb\x3d\xf8\x6b\x15\x87\x79\x8a\x83\x81" +"\x1a\x50\xbf\x63\xd6\xbc\xbe\x9e\xa9\xab\x1e\xa3\xa0\x96\xa0\x97\x47\x0a\x80\x63\x74\x4f\x1b\x53\x70\xa0\xb5\x8d\x1f\x0e\xf7\x6b" +"\x7b\x1d\xfb\x71\xf8\x46\x23\x1d\xf7\xda\xca\x1d\x84\xf8\xa1\xf7\x6f\x15\xa7\xfb\x6f\x05\xee\x06\x26\xf9\x6d\x05\xfb\x0c\x06\xfc" +"\x33\xfd\x6d\x05\xf3\x06\xf7\x0f\xf7\x6f\x05\xf7\xa4\xd9\x15\xfb\x7b\x06\xf7\x52\xf7\xe0\x05\x0e\x74\xf7\x95\xf8\x38\x15\xbc\xf7" +"\x77\x05\xf8\x13\x2f\x0a\xfc\x72\x26\x1d\xf7\xd3\x6e\x1d\xfb\x80\x39\x15\xf7\x66\x4f\x1d\xfb\x67\x06\x0e\x84\xdc\x16\xf7\xdd\x06" +"\xd9\xcc\xa3\xbb\xbb\x1f\xb8\xb8\xa7\xcd\xc9\x1a\xcb\x69\xba\x49\xa8\x1e\xb2\x9a\xa0\x98\xa3\xa7\x08\xad\xb1\x9e\xbd\xbc\x1a\xe8" +"\x46\xc5\xfb\x02\x1e\xfb\xbc\x06\xa6\xfb\xcf\x15\xbd\xf7\x7d\x05\xf7\x47\x06\xe8\xab\x76\x4e\x61\x7a\x64\x6b\x6e\x1f\x6d\x6b\x6a" +"\x80\x4e\x1b\xfb\x8e\xfb\xe0\x15\xc1\xf7\x8e\x05\xf7\x75\x06\xd5\xad\x6e\x4d\x33\x43\x44\x32\x1f\x0e\xfb\x16\xf7\x83\xf9\x6d\x15" +"\xfb\x2f\xfd\x6d\x05\xe8\x06\xf7\x1e\xf9\x1b\x05\xf7\xfd\x20\x1d\x0e\xa9\xf8\xda\x16\x68\xa9\x1d\xfc\x42\x06\x3f\xfb\xfd\x6b\xfb" +"\x3c\x32\x20\xfb\x09\x80\x19\x56\xfb\x8c\x05\xe9\x06\xae\xf7\x3a\x05\xf8\x48\xdd\x15\xfb\xf7\x06\xde\xb8\xcb\xf4\xa7\xf7\x1f\xc6" +"\xf7\xa8\x18\xf7\x85\x06\x0e\x84\x9c\x1d\x0e\x84\x9c\x1d\xf7\xd1\xf9\xd4\x2c\x0a\xf7\x87\xf8\x2f\x5e\x0a\xf4\x06\xf7\x2c\xfb\xed" +"\x05\xec\x06\xfb\x3d\xf8\x14\xf7\xa9\xb8\x0a\x2f\xb3\x0a\x4b\xfb\xc2\x05\x25\x06\xfb\x08\xf7\xc2\x05\x27\xe2\x1d\xf7\x02\x06\xf7" +"\xbd\xf7\xed\x05\xe7\x06\x0e\x4f\xf7\x00\xf7\x74\x15\x86\x71\x89\x7d\x76\x1a\xfb\x06\xde\x43\xf7\x19\xe0\xd1\xa7\xc2\xbf\x1e\xba" +"\xbc\xa7\xd0\xcc\x1a\xd3\x8d\x1d\x5e\x77\x5b\xbd\x1d\x0e\xb4\x5b\x1d\x0e\xb4\xd6\x16\xe9\x06\x9d\xde\xf8\x67\xf8\x42\xfb\x01\xfc" +"\x95\x05\xe9\xb8\x1d\xf7\x3f\xf7\x5b\x87\x0a\x63\x74\x4e\x56\x0a\x36\xcd\x16\x9e\x1d\x2d\x06\x0e\x97\xf8\xa6\x16\xe9\x25\x0a\xfc" +"\x7b\x83\x0a\xf7\xc0\x06\x0e\xf7\x33\xf8\x66\x16\xf7\xe3\xf8\xf7\xfb\x16\xfc\xf7\x05\xe3\x25\x0a\xfb\x15\x06\xfb\xef\xfd\x0f\x3a" +"\xf9\x0f\x05\xfb\x15\x26\x1d\xe3\x06\xf7\x16\xf8\xf7\xd8\xfc\xf7\x05\x0e\xbb\xf8\xff\xf7\xe0\x15\x44\xfb\xe0\x05\xe8\x25\x0a\x2e" +"\x06\x48\xfb\xcf\x05\xfc\x0b\x06\xce\xf7\xcf\x05\x2e\x22\x0a\xd2\xf7\xe0\x05\x0e\xf3\x95\x0a\xfb\x47\xae\x0a\xe0\xe4\xc0\xaf\x0a" +"\x1e\x81\x39\x15\xf7\x11\xd6\x3b\xfb\x1a\x30\x6c\x2c\x55\x41\x1f\x3a\x4f\x33\x5e\x2a\x1b\xfb\x0e\x40\xdc\xf7\x19\xe6\xaa\xeb\xc1" +"\xd4\x1f\xdb\xc6\xe4\xb9\xe9\x1b\x0e\xbe\x84\x0a\x84\xf7\x90\xf7\xc9\x15\xf7\x77\x06\xf7\x24\xf7\x01\xf7\x02\xf7\x24\xf4\x47\xc8" +"\xfb\x08\x1f\xfb\xc1\x22\x0a\xde\xf8\x1b\x15\xc2\xf7\x94\x05\xf7\x55\x06\xd8\xb4\x69\x4c\x67\x7d\x66\x74\x6e\x1f\x64\x6a\x60\x79" +"\x4f\x1b\x0e\xbb\xf9\x17\xf7\x95\x15\xfb\x0a\x6f\x27\x3b\xfb\x0b\x1b\xfb\x0e\x4b\xd1\xf7\x19\xf5\xaf\xf4\xc9\xd7\x1f\xd1\xc4\xdc" +"\xb3\xe1\x1b\xe8\xc9\x5c\x43\x7f\x8a\x81\x87\x75\x1f\xe9\x06\x8f\x9d\x8c\x94\x9a\x1a\xf7\x0c\x27\xde\xfb\x23\xfb\x06\x24\x5d\x36" +"\x40\x1e\x3a\x31\x5a\xfb\x17\xfb\x12\x1a\xfb\x48\xee\x21\xf7\x3b\xf7\x47\xf7\x26\xf7\x07\xf7\x39\xab\x1e\x0e\x4c\xf8\x7e\xf9\x1b" +"\x15\xf7\x83\x20\x1d\xfc\xd0\x26\x0a\xf7\x84\x38\x0a\xe8\x06\x0e\x68\x99\x1d\x0e\xf7\x0d\xf7\xf0\x81\x15\xe9\x06\x9e\xe6\xe6\x8d" +"\xd0\xa0\xcd\xb9\x19\xe3\xc8\xbf\xf2\xf7\x03\x1a\xf7\x19\x35\xda\xfb\x33\x96\x1e\x9e\xe6\x05\x2d\x06\x78\x30\x36\x88\x4b\x78\x4d" +"\x63\x19\x2c\x4d\x50\x22\xfb\x00\x1a\xfb\x1a\xe7\x34\xf7\x2c\x82\x1e\x9c\xdc\x15\xfb\x02\x93\x4c\xc1\xe4\x1a\xd3\xae\xd6\xc2\xb7" +"\x1e\xbb\xb2\xbe\x9e\xd2\x90\x08\xe9\x16\xbd\x88\xa3\x85\xaa\x79\x08\xb6\x73\xa5\x5c\x57\x1a\xfb\x1e\xfb\x00\x21\xfb\x2d\x80\x1e" +"\x0e\x84\xbe\x0a\xfb\x08\x06\xfb\x8d\xfb\xb2\xfb\x12\xf7\xb2\x05\xfb\x00\x06\xf7\x3b\xfb\xf7\xfb\xe6\xfc\x0a\x05\xf7\x0a\xba\x0a" +"\xf7\x02\x06\x0e\xc0\xd7\x16\xf8\x9f\x06\x68\x32\x1d\xc0\xf7\x8c\x05\x53\x06\xf7\x1e\xf9\x1b\xba\x1d\x8a\xf8\x92\x16\xe9\x95\x1d" +"\xb4\xbc\x81\xda\x1b\xd9\xbc\x92\x9f\xd1\x1f\x0e\xf7\x8a\xcc\x16\xf9\xa6\x25\x0a\x2d\x38\x0a\xfb\x8d\xb2\x1d\xf7\x8d\xc7\x16\xf9" +"\x84\x06\x68\x32\x1d\xbf\xf7\x8c\x05\x54\x2e\x1d\x2d\x38\x0a\xfb\x92\xb2\x1d\xf7\x17\xf8\x46\xf8\x38\x15\xcc\xf7\xc9\x05\xfc\x04" +"\x26\x0a\xf7\xa6\x06\xfb\x1d\xfd\x1b\x05\xf7\xbb\x6e\x1d\xfb\x69\x39\x15\xf7\x4f\x4f\x1d\xfb\x4f\x06\x0e\xf7\x68\xf7\xa0\x94\x1d" +"\xf8\x92\x39\x15\xe9\x25\x0a\x2d\x06\x0e\x74\xf7\x96\x94\x1d\x0e\x9f\xf8\x02\xf8\x2a\x15\x79\x38\x05\xf7\xb0\x06\xfb\x3a\x5d\x21" +"\x29\xfb\x1a\x1b\x49\x4f\xa6\xb8\x69\x1f\x71\xac\x81\xab\x86\xc8\x2f\x7b\x18\x95\x3e\x98\x65\xa9\x60\x08\x47\xbb\xdf\x65\xee\x1b" +"\xf6\xec\xb5\xd8\xd1\x1f\xdd\xe4\xbd\xf7\x1c\xf7\x17\x1a\xe0\x73\xd5\x5f\xbe\x1e\xc0\x5f\x4b\xa5\x38\x1b\xfb\x2e\xfb\x15\x3c\xfb" +"\x23\x3a\x1f\xe7\x78\x05\xf2\xcc\xe7\xc3\xf6\x1b\xf7\x01\xcd\x3c\xfb\x17\x83\x8a\x7b\x8a\x78\x1f\x0e\xf7\xf0\xf7\xed\xf7\xe0\x15" +"\x87\x73\x8a\x79\x76\x1a\xfb\x4b\xf7\x00\xfb\x01\xf7\x48\xf7\x04\xef\xb5\xda\xd8\x1e\xe1\xe4\xbf\xaf\x0a\xfb\x4f\xfb\x30\xfb\x12" +"\xfb\x5d\x4a\x1e\xfb\x11\x06\xce\xf7\xcf\x05\x2e\x22\x0a\xd2\xf7\xe0\x05\xf8\xb0\xf7\xdb\x15\xf7\x14\xd7\x3b\xfb\x1a\x30\x6b\x2b" +"\x55\x42\x1f\x3a\x4e\x32\x5e\x28\x1b\xfb\x10\x3e\xdc\xf7\x18\xe7\xab\xea\xc2\xd5\x1f\xdb\xc6\xe5\xb9\xeb\x1b\x0e\x93\xf8\xe0\xf7" +"\xce\x15\x48\xfb\xce\x05\xe8\x25\x0a\xfb\xe1\x06\x38\x52\x7b\x66\x5e\x1f\x56\x61\x6b\x46\x47\x1a\x4e\xa3\x62\xc5\x68\x1e\x37\x73" +"\x6c\x61\x71\xfb\x0e\x73\xfb\x04\x7e\x6e\x66\x6c\x08\xf7\x00\x06\xa3\xaa\x9d\xbb\x9a\xd9\xa0\xf7\x07\xb1\xb3\xe6\x8d\x08\xf7\x95" +"\xdd\x15\xfb\x74\x06\x62\x72\x90\x97\x79\x1f\x74\x99\x7d\xa8\xad\x1a\xb7\x9e\xb9\xaa\xa8\x1e\xa6\xa8\xae\x96\xc7\x1b\xf7\x75\x06" +"\x0e\xfb\x4a\xf8\xf3\x22\x1d\xfc\x1e\x22\x0a\xf7\x1e\xf9\x1b\x05\xf7\xfc\x06\x9c\xdd\xf7\x48\xf7\x28\x05\xfb\x04\x06\x0e\xf7\x3d" +"\xf7\x8b\x16\xe9\x06\xc6\xf7\xaa\x93\xb3\x98\xa1\xa9\xa2\x19\xac\xb5\xba\x98\xdc\x1b\xdb\xad\x77\x5c\x85\x8a\x81\x89\x82\x1f\x6a" +"\xfb\x30\x05\x58\x82\x6d\x6f\x5e\x1b\xfb\x1b\x06\x79\x39\x05\xf7\x27\x06\xf1\x8a\xd0\xc9\x99\xf7\x00\xac\xf7\x2c\x18\x8e\x99\x8c" +"\x96\x97\x1a\xad\x7b\xac\x6f\xa5\x1e\xa6\x6e\x5a\x98\x44\x1b\x24\x5e\x7b\x4d\x4e\x1f\xbc\xf7\x7e\x05\xf7\x5e\x20\x1d\xfc\x84\x26" +"\x0a\xf7\x5c\x06\x0e\xfb\x16\xf7\x86\x22\x1d\xfb\x2f\xfd\x6d\x05\xe8\x2e\x1d\xf7\xfd\x20\x1d\xfb\x57\xa2\x0a\xad\xf7\x72\xf8\x2a" +"\x15\xf7\x37\xbe\xf1\xe5\xf7\x18\x1b\xcd\xc7\x70\x5e\xad\x1f\x9d\x74\x95\x73\x93\x64\xe8\x9c\x18\x7c\xca\x7c\xae\x6d\xae\x08\xc4" +"\x5b\x3a\xac\x2d\x1b\x22\x2f\x63\x3e\x43\x1f\x36\x30\x58\xfb\x1b\xfb\x17\x1a\x36\xa1\x44\xb7\x57\x1e\x54\xb9\xcc\x70\xe3\x1b\xf3" +"\xed\xb1\xce\xd3\x1f\xb6\xb4\xa7\xb3\xb0\xd8\x2e\x9c\x18\x72\x54\x77\x6e\x67\x6a\x08\x57\x52\x41\x6e\x42\x1b\xfb\x03\x49\xda\xf7" +"\x1b\x9c\x8c\x97\x8d\xa0\x1f\xf7\xb2\x06\x9d\xde\x05\x0e\x84\xf9\x58\xf8\x97\x15\x8f\x9f\x8c\x96\x9a\x1a\xf7\x03\x31\xd0\xfb\x25" +"\x34\x43\x74\x5d\x54\x1e\x56\x60\x6b\x4a\x4d\x1a\x44\xb9\x56\xda\x75\x1e\xf7\x30\x60\x05\xdc\x74\xa9\x71\x5c\x1a\x69\x77\x64\x6a" +"\x6c\x1e\x67\x64\x53\x79\x43\x1b\x21\x50\xba\xde\x96\x8c\x95\x8f\xa1\x1f\x2d\x06\x87\x73\x8a\x80\x79\x1a\xfb\x15\xe8\x42\xf7\x3a" +"\xe8\xd5\xa2\xb9\xc4\x1e\xc4\xba\xae\xd2\xd3\x1a\xd5\x61\xba\x30\xa5\x1e\xfb\x33\xb8\x5c\x99\x79\x93\x7c\x9b\x19\x7f\x97\x83\xa0" +"\x9e\x1a\xb0\xa2\xb4\xb0\xa5\x1e\xa4\xae\xb7\x97\xc0\x1b\xeb\xc3\x64\x47\x80\x8a\x82\x87\x7a\x1f\x0e\xfc\x20\xf7\xe9\x36\x0a\x0e" +"\xfc\x20\xf7\xe9\x36\x0a\xf7\x0c\xfa\x26\x2c\x0a\xfb\x42\xf8\x7a\x22\x1d\xfb\x01\xfc\x95\x7f\x52\x7d\x6a\x74\x71\x19\x6f\x73\x66" +"\x7a\x65\x1b\x55\x6a\xa8\xbb\x9a\x8e\xa0\x8f\x9e\x1f\x95\xba\x05\x2d\x06\x81\x5c\x05\x86\x77\x89\x77\x7a\x1a\x30\xd3\x4d\xf3\xf7" +"\x12\xdf\xd3\xf7\x19\xa8\x1e\xf7\x08\xf8\xb7\x05\x0e\xf8\x1c\xf8\x72\x16\xf7\xd4\xc7\x1d\xfb\x0c\x1e\xfb\x6f\x06\xcc\xf7\xc9\x05" +"\xfc\x34\x83\x0a\xf7\x79\x06\xa7\xfb\xc9\x15\xf7\x67\x06\xdc\xb3\x6c\x4b\x31\x3e\x44\x28\x1f\xfb\x66\x06\x0e\xf7\xc8\xf8\xab\xf7" +"\xe6\x15\x43\xfb\xe6\x05\xf7\x92\xc7\x1d\xfb\x0d\x1e\xfb\x2d\x06\xcd\xf7\xc9\x05\x2d\x06\x49\xfb\xc9\x05\xfb\xc2\x06\xcd\xf7\xc9" +"\x05\x2e\x22\x0a\xd3\xf7\xe6\x05\xf8\x1f\x16\xf7\x24\x4f\x1d\xfb\x24\x06\x0e\xf7\x3e\xf7\x8b\x16\xe9\x06\xc6\xf7\xaa\x05\xe2\x9e" +"\xd3\xb8\xf7\x0f\x1b\xda\xad\x76\x5c\x87\x89\x80\x89\x81\x1f\x48\xfb\xd1\x05\xe9\x06\xcf\xf7\xd5\x05\x8e\x9a\x8d\x98\x94\x1a\xaf" +"\x7c\xab\x6e\xa5\x1e\xa5\x6e\x59\x99\x4a\x1b\x27\x5f\x7a\x4d\x4d\x1f\xbd\xf7\x7e\x05\xf7\x3d\x20\x1d\xfc\x61\x26\x0a\xf7\x5a\x06" +"\x0e\x36\xcd\x5e\x0a\xd9\x06\xf7\x2b\xfb\xed\x05\xee\x06\xfb\x3e\xf8\x14\xf7\xaa\xb8\x0a\x49\xb3\x0a\xf7\xbb\xa2\x0a\x68\x99\x1d" +"\xf7\x5f\xf9\xe2\x3c\x0a\xf8\xb7\xc0\x15\x86\x7c\x85\x8a\x83\x1b\x7a\x80\x95\x9b\x90\x8c\x94\x8d\x93\x1f\xc9\xf7\xb6\x05\x8e\x9b" +"\x8d\x9b\x96\x1a\xcf\x46\xb6\xfb\x01\x3e\x4e\x77\x64\x62\x1e\x6c\x6f\x7c\x6e\x7d\x53\x08\xe2\x06\xcd\x9e\xb7\xa8\xdc\x1b\xca\xb2" +"\x76\x6a\x89\x1f\x84\x89\x83\x89\x81\x1e\x88\x7b\x83\x69\x74\x7e\x46\x82\x19\xfb\x27\x79\x74\x85\x5f\x70\x08\x57\x6b\x6a\x4f\x4c" +"\x1a\x3c\xc4\x5a\xe7\xcf\xc5\xa2\xbe\xc4\x1e\x8a\x86\x8b\x86\x87\x1a\x66\xaa\x74\xbe\x9c\x97\x8d\x90\xa1\x1e\xfb\x00\xf7\x48\x15" +"\x85\x71\x80\x7a\x70\x76\x08\x6a\x61\x5b\x7a\x5a\x1b\x54\x6d\xa2\xb5\xa7\x98\xa6\xa1\x9f\x1f\xa1\x9f\xad\x96\xc4\x93\xe7\x98\x9d" +"\x8f\xa9\x97\x08\x0e\xfb\x03\xf8\x94\xf9\xa4\x15\x82\x63\x80\x60\x6e\x79\x38\x7c\x19\x30\x79\x55\x64\x5a\x37\x08\x56\x30\x5f\xfb" +"\x33\x23\x1a\xfb\x0c\xd6\x3f\xf7\x0b\xe9\xda\xb3\xd7\xc1\x1e\xb9\xc9\xa8\xee\xe6\x1a\xf7\x06\x3e\xdc\xfb\x01\x52\x54\x75\x63\x61" +"\x1e\xa2\xca\xba\xb2\xd2\x97\xf7\x1d\x9c\xb8\xb3\xa9\xf7\x1b\x08\xfb\x6c\xfb\xd6\xac\x1d\xcf\xaf\xc6\xb1\xcd\x1b\x0e\xfb\x2c\xc0" +"\x16\xf7\xbb\x06\xc2\xaf\x97\xa8\xad\x1f\xb1\xac\xa3\xc1\xc0\x1a\xb7\x7a\xa9\x62\xa5\x1e\xc6\xad\xa5\xb2\xc1\x1a\xce\x55\xbc\x41" +"\x1e\xfb\xa2\x06\x80\xfc\x56\x15\xae\xf7\x3a\x05\xf7\x4e\x06\xb9\xa5\x74\x62\x50\x5d\x60\x4e\x1f\xfb\x1b\xf7\x84\x15\xa8\xf7\x1c" +"\x05\xf7\x4e\x06\xae\x9e\x79\x6b\x58\x66\x68\x53\x1f\x0e\xfb\x49\xf7\x0f\xc8\x1d\x0e\xfb\x0d\x77\x2a\x15\xe2\x06\x9f\xec\x05\xf7" +"\xf9\x06\x77\x2a\x05\xe1\x06\xaf\xf7\x3f\x05\x60\x25\x1d\x05\xfb\xe2\x06\x61\xfb\x8a\x2f\xfb\x3b\xfb\x07\x66\x08\xf8\x27\x16\xfb" +"\xa9\x06\xdc\xc8\xcc\xf7\x0c\xaf\xf7\x34\x93\xae\x18\xf7\x3b\x06\x0e\x89\x1d\x0e\x89\x1d\x2f\xf8\x31\x2c\x0a\x99\xf7\xc2\x16\x29" +"\x0a\xd6\x06\xea\xfb\x8d\x05\xe8\x06\x21\xf7\xb2\xf7\x42\x71\x1d\x4a\x41\x1d\x61\xfb\x5d\x05\x3f\x06\x4d\xf7\x5d\x05\x2e\x06\xd5" +"\xfb\x82\xfb\x78\xfb\xb2\x05\xf2\x06\xf7\x5d\xf7\x8d\x05\xcc\x06\x0e\xfb\x65\xdb\xf7\x38\x15\x86\x75\x05\x89\x81\x8a\x82\x7f\x1a" +"\x39\xc9\x57\xed\xf7\x0f\xea\xe0\xf7\x02\xb9\x77\xab\x60\xa2\x1e\xd1\xab\xab\xb6\xc8\x1a\xd8\x4d\xc0\x32\xfb\x01\x3e\x46\xfb\x0a" +"\x74\x1e\xe4\x06\xd4\x98\xc9\x1d\x6c\x81\x76\x1b\x68\x2a\x0a\xae\x06\xc1\xab\x71\x5f\x4e\x57\x5c\x47\x57\x6e\xa2\xb4\x98\x8b\x8d" +"\x8d\x94\x1f\x90\xa1\x05\x0e\x3e\x0a\x0e\x3e\x0a\xe6\xf7\x61\x40\x1d\xd7\xbb\xbf\x9e\xa9\xab\xae\x1d\xfb\x5e\xc1\x16\x29\x0a\xca" +"\xb7\x1d\x54\x41\x1d\x0e\xfb\x02\xf8\x1b\x16\xdf\x06\x38\x1d\xfb\xee\x8b\x0a\xf7\x47\x06\x0e\x97\xc0\x16\xdf\x25\x1d\xc7\xfc\x56" +"\x05\xe1\x06\xf7\x8d\xf8\x56\x2b\xfc\x56\x05\x76\x1d\xfb\x14\x06\xfb\x8a\xfc\x4b\x4d\xf8\x4b\x05\xfb\x14\x06\x0e\xfb\x10\xa8\x0a" +"\xdf\x06\xf7\x03\xf8\xa0\x9f\x0a\x9a\x1d\x84\x3e\xac\x1d\xce\xaf\xc6\xb2\xcd\x1b\x0e\xfb\x10\xd6\x16\xdf\x25\x1d\x05\xf7\x7c\x06" +"\x34\x1d\x76\x1d\xfc\x25\x06\x0e\x97\xfb\x6e\x15\xdd\x06\xc5\xf7\xa5\x05\x55\xaf\xb9\x73\xd1\x1b\xf7\x3a\xf7\x0e\xf7\x2e\xf7\x65" +"\xf7\x0d\x44\xd9\xfb\x01\x45\x53\x6f\x4e\x59\x1f\x9b\xd5\x05\x39\x06\xf7\x6d\x4c\x15\xd2\xb8\x57\x39\xfb\x28\x2f\xfb\x10\xfb\x03" +"\x47\x60\xbe\xdb\xf7\x2a\xe5\xf7\x11\xf7\x00\x1f\x0e\xfb\x42\xf8\xb7\xf7\xf0\x15\x8c\xa6\x8b\x8d\x90\x1a\xeb\x47\xc8\xfb\x00\x37" +"\x40\x65\x45\x55\x1e\x58\x48\x6b\x2b\x31\x1a\xfb\x11\xd2\x3f\xf7\x0a\xf7\x11\xe3\xd2\xf7\x18\xb0\x1e\x32\x06\x37\x6c\x58\x61\x46" +"\x1b\x47\x60\xba\xd7\xce\xa2\xdc\xad\xbe\x1f\xc4\xb0\xbc\xa8\xc7\x1b\xc5\xae\x6d\x57\x84\x8a\x7e\x8a\x7f\x1f\x0e\xf7\x33\xf8\x0b" +"\x16\xdf\x06\xea\xf8\x56\x05\xf7\x73\x2d\x1d\xfc\xa6\x2a\x0a\xf7\x73\x06\x0e\xfb\x42\x91\x1d\x0e\xf7\x35\xf7\xdd\xfb\x6e\x15\xdf" +"\x06\xb5\xf7\x58\xe4\x8f\xc6\x9d\xc5\xb5\x19\xe2\xca\xc2\xf7\x01\xf7\x03\x1a\xf7\x12\x3a\xd7\xfb\x28\x97\x1e\xa5\xf7\x0f\x21\x1d" +"\x71\xfb\x0f\x33\x87\x50\x78\x52\x61\x19\x36\x4c\x55\xfb\x01\xfb\x00\x1a\xfb\x14\xd9\x3f\xf7\x26\x7f\x1e\x9b\xd6\x15\x26\x93\x58" +"\xbc\xe3\x1a\xd6\xac\xd9\xbf\xbc\x1e\xb5\xb2\xb8\x9e\xce\x91\x08\xdf\x16\xf4\x82\xbf\x5a\x33\x1a\x40\x6a\x3d\x55\x5b\x1e\x60\x64" +"\x5d\x78\x47\x85\x08\x0e\xfb\x42\xf7\xf6\xf7\xa1\x15\xf7\x7c\xf7\x93\x05\x26\x06\xfb\x3d\x89\x0a\xe5\x06\x0e\x25\xe2\x16\xf7\xee" +"\x06\x69\xfb\x35\x05\xe2\x06\xbc\xf7\x7f\x05\x5d\x25\x1d\xc2\x1d\xfb\x30\xf7\xf8\x16\xdf\x96\x0a\x05\x7d\x5d\x63\x85\x63\x1b\x56" +"\x6e\x9f\xb0\x94\x8c\x96\x8e\x97\x1f\xb3\xf7\x4f\x21\x1d\x5d\xfb\x69\x05\x89\x80\x8a\x81\x80\x1a\x4b\xc9\x5f\xe6\xba\xb0\x93\xa0" +"\xb9\x1e\x0e\xf7\x30\xd9\x16\xf9\x35\x06\xf7\x04\xf8\xa0\xa7\x1d\xf7\x45\xdf\x16\xf9\x0c\x06\x69\xfb\x32\x20\x0a\xbd\xf7\x7c\x05" +"\x60\x25\x1d\xa7\x1d\x56\xf7\x4d\x16\xf7\x7e\xbf\x1d\xfb\x29\x06\xb7\xf7\x66\x05\xfb\xb9\x2a\x0a\xf7\x66\x06\x8f\xfc\x0c\x15\xae" +"\xf7\x3a\x05\xf7\x27\xda\x1d\xc9\xe4\x7d\x0a\xb9\xa2\x76\x62\x4f\x5f\x5f\x4e\x1f\xf7\x67\x41\x15\x73\x1d\x0e\xfb\x28\xd2\x7d\x0a" +"\xb8\xa2\x76\x62\x4f\x60\x5f\x4e\x1f\x0e\xfb\x4a\xf7\x45\xf7\xf2\x15\xd1\xae\xc8\xb5\xcc\x1b\xc7\xb2\x5d\x44\x82\x8a\x7d\x8a\x7d" +"\x1f\xfb\x3a\x2a\x0a\xf7\x3d\x06\xfb\x02\x73\x48\x45\x39\x1b\x45\x61\xbc\xdc\x1f\x98\x07\x33\x76\x05\xfb\x12\xd2\x42\xf7\x0d\xdf" +"\xd1\xaf\xd1\xbd\x1e\xbd\xd0\xa8\xe9\xe4\x1a\xf7\x14\x48\xd7\xfb\x05\xfb\x00\x2f\x4c\xfb\x00\x57\x1e\x0e\xd9\xf7\x37\x4e\x1d\xbe" +"\xf7\x83\x05\xe1\x06\x87\x70\x8a\x79\x76\x1a\xfb\x0c\xd7\x3f\xf7\x0c\xe3\xdb\xb3\xd3\xc0\x1e\xba\xc9\xaa\xf0\xe8\x1a\xf7\x0a\x3e" +"\xd7\xfb\x0b\xfb\x18\x25\x38\xfb\x23\x60\x1e\x34\x06\xb7\xf7\x67\x05\xf7\xcd\x4d\xd3\x1d\x52\xd6\x1d\xce\xaf\xc5\xb2\xcd\x1b\x0e" +"\xfb\x20\xf8\x0d\x16\x76\x1d\xfb\x8e\x06\x53\x62\x81\x75\x69\x1f\x5e\x6d\x6e\x55\x52\x1a\x5a\xa4\x64\xbe\x6d\x1e\x5a\x80\x6e\x6b" +"\x7e\x4f\x7f\x53\x18\x81\x5d\x84\x7c\x78\x7e\x08\xe4\x06\x9b\x99\x93\x9b\x94\xb7\x96\xbd\x18\x96\xc3\xb0\xab\xc0\x89\x08\xf7\x19" +"\x06\x9b\xd5\x15\xfb\x3a\x06\x60\x74\xa1\xb4\xc5\xb7\xb8\xc4\x1f\xf7\x3a\x06\x0e\xfb\xe3\xf8\x32\x21\x0a\xfb\x95\x06\xfb\x03\xfc" +"\xa0\x05\xdf\x25\x1d\x05\xf7\x7c\x06\x9b\xd5\xf7\x48\xf7\x28\x05\xfb\x04\x06\x0e\xd7\xa7\x0a\x6e\x5e\x80\x8b\x86\x89\x84\x1f\x4a" +"\xfb\xc7\x7e\x52\x51\x58\x59\x8c\x19\xfb\x15\x06\x7a\x3e\x05\xf7\x16\x06\xf7\x04\x8c\xe1\xd3\xa2\xf7\x03\xcc\xf7\xc7\x18\x8f\x9b" +"\x8c\x99\x9b\x1a\xd2\x50\xc4\x42\x4a\x54\x6f\x46\x45\x1e\xaa\xf7\x2a\x05\xf7\x02\x2d\x1d\xfb\x02\x06\x9a\xd1\x21\x1d\x7c\x45\x05" +"\xfb\x01\x2a\x0a\xf7\x01\x06\x0e\xfb\xbc\xd1\xc8\x1d\xf7\x6e\xf7\x6c\x15\xfb\x1b\xfb\x28\x05\xcf\x45\x0a\xfb\x46\xf8\xbf\xf8\x04" +"\x15\x86\xaf\x85\xa1\x7f\xa2\x08\xc4\x6d\x4d\xac\x3e\x1b\x35\x44\x65\x40\x57\x1f\x5d\x49\x71\x35\x34\x1a\xfb\x1a\xcb\x3f\xf7\x04" +"\xf7\x0e\xe7\xd0\xf7\x15\xbe\x1e\x35\xa1\x05\x2f\x66\x4f\x58\x42\x1b\x4e\x66\xbd\xde\x9a\x8c\x96\x8d\xa0\x1f\xf7\x3c\x06\x9a\xd5" +"\x05\xfb\x38\x06\xf0\xab\xc2\xc0\xd4\x1b\xcd\xb6\x61\x45\x90\x1f\x0e\xfb\x42\xf8\xa0\xf8\x0e\x15\x8e\x9a\x8c\x93\x97\x1a\xd9\x4b" +"\xbb\x25\xfb\x1a\x2b\x3f\x21\x4a\xb0\x68\xe9\x73\x1e\xdb\x77\x05\xbb\x7e\x9e\x79\x6b\x1a\x53\x4e\x63\x35\x43\x6b\xa1\xbb\x96\x8c" +"\x91\x8d\x9a\x1e\x35\x06\x87\x76\x8a\x80\x7d\x1a\x36\xce\x5b\xf7\x0a\xd8\xc8\x9e\xb2\xb5\x1e\xb3\xae\xa2\xbd\xba\x1a\xc8\x65\xb0" +"\x3a\xa0\x1e\x3f\x9d\x05\x4f\x9a\x74\x9d\xaa\x1a\xc2\xc1\xb2\xd7\xc1\xae\x73\x67\x85\x8a\x82\x8a\x82\x1e\x0e\xfc\x58\xf7\x9c\xf8" +"\xa0\x9e\x0a\x22\x20\x0a\x0e\xfc\x58\xf7\x9f\xf8\xa0\xbb\x0a\xd5\x53\x0a\xfc\x58\xf7\x48\x21\x0a\xfb\x10\xfc\xdb\x83\x66\x86\x7f" +"\x82\x80\x19\x7c\x7e\x75\x84\x6f\x1b\x86\x84\x8b\x8c\x82\x1f\x7b\x3d\xf7\x0c\x88\xc1\xa9\xa0\xdd\x19\xf7\x1b\xf9\x0d\x05\xb6\xf7" +"\x61\x15\x37\x06\x75\x22\x20\x0a\x0e\xf7\x80\xf8\x3c\x16\xf7\x9f\x9c\x0a\xfb\x4b\x06\xb8\xf7\x66\x05\xfc\x0d\x8b\x0a\xf7\x65\x06" +"\x8f\xfc\x0c\x15\xaf\xf7\x3a\x05\xf7\x48\x06\xb8\xa2\x76\x62\x4f\x60\x5f\x4e\x1f\x0e\xf7\x2e\xc7\x16\xdf\x06\xbe\xf7\x83\x05\xf7" +"\x84\x06\x59\xfb\x83\x05\xf7\x8e\xbf\x1d\xfb\x3a\x06\xb8\xf7\x66\xa3\x0a\xf7\xcd\xfc\x56\x15\xaf\xf7\x3a\x05\xf7\x37\xda\x1d\xd7" +"\xa7\x0a\x6d\x5f\x7f\x8b\x88\x89\x83\x1f\x3f\xfb\xfa\x20\x0a\xd7\xf7\xfa\x05\x8f\x9b\x8c\x99\x9b\x1a\xd2\x51\xc4\x41\x4a\x54\x6f" +"\x46\x45\x1e\xaa\xf7\x2a\x05\xf7\x03\x2d\x1d\xfb\x03\x06\x9a\xd1\x21\x1d\x7c\x45\x05\xfb\x00\x06\x7b\x41\x05\xf7\x00\x06\x0e\xfb" +"\x5e\xc1\x16\x29\x0a\xcf\xb7\x1d\x4f\x41\x1d\xf7\x8e\xf7\x6c\x15\xfb\x13\xfb\x28\x05\xc7\x45\x0a\xfb\x42\x91\x1d\xfb\xe6\xf7\x61" +"\x15\x88\x78\x8a\x82\x7f\x1a\x51\xbc\x66\xd7\xc2\xb7\x9b\xab\xae\x1e\xa3\xa2\x97\xa0\x95\xb6\x08\x51\x06\x60\x7c\x6b\x78\x50\x1b" +"\x59\x6e\x9d\xa9\x8e\x8b\x91\x8c\x90\x1f\x0e\xbd\xdc\x16\xf7\x7d\x06\x67\x32\x1d\xaf\xf7\x3a\x05\xf7\x7f\x06\xf7\x2f\xf9\x6d\xba" +"\x1d\xe0\x16\xf7\x2d\x06\x68\xfb\x35\x20\x0a\xae\xf7\x35\x05\xf7\x2a\x06\xf7\x03\xf8\xa0\xc2\x1d\xf3\xf7\xae\x15\x7e\x5e\x86\x6f" +"\x68\x1a\xfb\x0d\xd6\x3f\xf7\x0c\xe0\xd8\xb1\xcf\xc3\x1e\xbe\xcb\xac\xef\xe9\x1a\xf7\x0f\x3f\xd6\xfb\x10\xfb\x0d\x31\x4b\xfb\x0a" +"\x5e\x1e\xe4\x06\xd0\xb0\xc1\xaf\xcd\x1b\xd4\xbd\x59\x42\x79\x89\x7e\x86\x71\x1f\x7c\x47\x15\x29\x6f\x44\x4d\x36\x1b\x45\x5e\xba" +"\xd4\x98\x8c\x94\x8f\x9d\x1f\x0e\xf7\x6b\xf8\x82\xf8\xe0\x15\x8c\x99\x8c\x93\x93\x1a\xd0\x5e\xb3\x3e\x4e\x56\x70\x57\x62\x1e\x64" +"\x59\x72\x43\x4a\x1a\x32\xbb\x59\xdf\xe5\xd0\xc2\xe8\xa6\x1e\x43\x06\x54\x77\x69\x6f\x5e\x1b\x5f\x6f\xaa\xbd\xb7\x9a\xc2\xa0\xae" +"\x1f\xb2\xa2\xac\xa0\xb0\x1b\xb2\xa4\x73\x65\x89\x8b\x86\x8a\x86\x1f\xf7\xd3\xfb\x5a\x15\x49\x52\x6d\x55\x62\x1f\x69\x5c\x74\x40" +"\x49\x1a\x37\xbe\x59\xe0\xcd\xc4\xa8\xc3\xb3\x1e\xaf\xba\xa1\xd5\xcf\x1a\xdd\x58\xbd\x36\x1e\x7e\x4a\x15\xb8\xa7\x6a\x56\x65\x80" +"\x5c\x79\x6a\x1f\x5d\x73\x66\x71\x61\x1b\x5e\x6f\xac\xc0\xf4\xc6\xe0\xd4\x1f\x9b\xf8\x14\x15\xfc\xab\xfd\x59\x05\xcd\x06\xf8\xab" +"\xf9\x59\x05\x0e\xfb\xf3\xf7\x46\xf7\xb8\x15\xca\xcd\xb2\xba\xa5\xb8\x08\xb4\xd0\xa4\xd8\xc4\x1a\xbf\x71\xad\x64\x35\x49\xfb\x22" +"\xfb\xd2\x4f\x1e\x6f\x6c\x77\x77\x7e\x80\x08\x7a\x7b\x85\x84\x84\x1a\x84\x92\x82\x91\x92\xa9\xa3\xa5\xa5\x1e\x7f\x2f\x89\x71\x6c" +"\x1a\x53\xa6\x69\xb9\xae\xa8\xa0\xb7\xa4\x1e\x98\xa0\x92\x9f\x97\x1a\x92\x85\x91\x84\x83\x85\x86\x7d\x84\x1e\x5e\x76\x7c\x7b\x77" +"\x1b\x7d\x84\x94\x9e\xa5\x9e\xf7\x11\x9a\xdb\x1f\x95\xc2\x15\xf7\x9f\xb8\xa7\xe0\xb8\x1b\x9c\x96\x7a\x71\x6d\x81\x5a\x7c\x62\x1f" +"\x72\x48\x68\x54\x4e\x48\x08\x0e\xf8\x2d\xf9\x5d\x22\x1d\x41\x06\xfb\x14\xfc\xf0\xfb\x57\xf8\xf0\x05\x3a\x26\x1d\xd5\x06\xf7\x13" +"\xf8\xeb\xf7\x54\xfc\xeb\x05\xe0\x06\xf8\x3f\xf9\x79\x15\x41\x47\x66\x46\x57\x1f\x59\x49\x6c\x2c\x36\x1a\xfb\x10\xce\x3d\xf4\xd4" +"\xcc\xae\xce\xbd\x1e\xbf\xcf\xab\xe9\xdc\x1a\xf7\x13\x48\xdd\x25\x1e\x81\x38\x15\xcb\xb2\x59\x3a\xfb\x1c\x33\xfb\x0d\x29\x4b\x62" +"\xbe\xdd\xc3\x9e\xca\xaa\xbc\x1f\xc6\xb1\xb8\xa7\xc2\x1b\xfb\xee\xfd\x26\x15\xf8\x2c\x06\x9d\xde\x05\xfc\x2c\x06\x0e\x23\xf9\x47" +"\x21\x0a\x31\x06\x36\xfb\x2b\x7f\xbb\x81\xa1\x78\xa6\x19\xb6\x6d\x59\xa4\x51\x1b\x43\x4a\x65\x45\x5b\x1f\x5b\x46\x70\x35\x34\x1a" +"\x52\x9a\x51\xa4\x66\x1e\x62\xa5\xaf\x79\xbe\x1b\xe7\xd6\xc5\xf7\x15\xd7\x1f\xa0\xfb\x38\x05\xe7\x06\x5d\xf7\xa3\x05\x37\x16\xfb" +"\x2b\x36\x48\x49\x48\x1b\x60\x6d\xc3\xda\xca\x9d\xce\xad\xc4\x1f\xc3\xab\xb6\xa9\xba\x1b\xae\xa5\x7b\x6a\x9e\x1f\x9c\x6e\x94\x6b" +"\x97\x3a\x08\x0e\x23\xf9\x47\x21\x0a\x31\x06\x37\xfb\x2b\x7e\xbb\x82\xa1\x78\xa6\x19\xb6\x6c\x59\xa4\x51\x1b\x45\x4b\x65\x45\x5b" +"\x1f\x5c\x46\x71\x35\x34\x1a\x52\x9a\x51\xa3\x66\x1e\x62\xa4\xae\x79\xbd\x1b\xe6\xd7\xc5\xf7\x15\xd6\x1f\xa1\xfb\x38\x05\xe7\x06" +"\x5c\xf7\xa3\x05\x38\x16\xfb\x2b\x35\x48\x49\x49\x1b\x62\x6f\xc2\xda\xcb\x9d\xce\xab\xc4\x1f\xc3\xab\xb4\xa9\xb9\x1b\xae\xa5\x7b" +"\x6a\x9f\x1f\x9c\x6e\x93\x6b\x98\x3a\x08\x27\xf8\x90\x2b\x1d\x5f\x0a\xf7\x07\xf8\x4a\x36\x1d\xfb\xe9\xc5\xf7\x82\x15\xf7\x42\xfb" +"\xe8\x05\x7b\x93\x95\x84\x97\x1b\x93\x90\x8f\x92\x92\x89\x93\x88\x93\x1f\xfb\x17\xf7\xdd\xf7\x17\xf7\xdd\x05\x8e\x93\x8d\x93\x92" +"\x1a\x93\x86\x8f\x83\x7f\x83\x85\x79\x81\x1e\x0e\xfb\xe9\xf7\xa7\xf7\x82\x15\xfb\x42\xf7\xe8\x05\x9c\x82\x82\x92\x7f\x1b\x83\x86" +"\x87\x83\x85\x8d\x83\x8e\x82\x1f\xf7\x17\xfb\xdd\xfb\x17\xfb\xdd\x05\x88\x84\x89\x83\x84\x1a\x83\x90\x87\x93\x97\x93\x91\x9c\x95" +"\x1e\x0e\x83\x1d\x6b\x9d\x73\xa6\x85\x1e\x44\x66\x73\x70\x5e\x1a\x5a\xbb\x6f\xdd\xa3\x92\x8c\x94\xb4\x1e\x94\xb8\x05\x84\x76\x75" +"\x88\x72\x1b\x62\x70\x9c\xa6\xb4\xbc\xbb\xc2\x98\x1f\xfb\x00\xf7\x46\x15\x4d\x7e\x33\x56\x33\x1b\x52\x6b\xa3\xb5\xac\x9e\xac\xa9" +"\x9d\x1f\xa3\x9a\xa8\x93\xbd\x92\xe9\x43\x1d\x0e\xfb\x11\xf7\x12\xf7\x87\xde\x1d\xa4\x1f\x62\xdd\x9f\x84\xa6\x1b\xc8\xbf\xae\xd8" +"\xc1\x1f\x66\xa4\x05\x57\x61\x71\x7a\x64\x1b\x73\x7e\x90\xa6\x56\x1f\xa4\x5a\x6e\x95\x70\x1b\x51\x5a\x68\x3c\x56\x1f\x91\xfb\x57" +"\xde\x1d\xa5\x1f\x62\xdc\x9f\x84\xa7\x1b\xc7\xbf\xae\xd8\xc1\x1f\x66\xa4\x05\x58\x62\x70\x79\x65\x1b\x73\x7d\x90\xa6\x56\x1f\xa4" +"\x5a\x6f\x95\x6f\x1b\x52\x5a\x68\x3c\x55\x1f\x0e\x60\x0a\x7c\xf8\x84\xaf\x1d\x71\x71\x6f\x77\x7c\x99\xa0\xa5\xa6\xa5\xa7\x1f\x69" +"\xf7\x3e\x23\x1d\xf7\xda\xf9\x5e\xf7\xac\x15\x7b\x77\x81\x7b\x7f\x75\x08\x81\x79\x7d\x65\x84\x1a\x82\x93\x84\x95\x94\x8e\x8d\x9f" +"\x9b\x1e\xb3\xba\xab\xa4\xe5\xc1\x08\x9c\x94\x8d\x8e\x93\x1a\x94\x85\x91\x76\x96\x1e\x53\xa7\x4c\xbd\x66\xb7\x08\x98\x81\x83\x92" +"\x86\x1b\x7e\x83\x85\x81\x78\xb0\x41\xa4\x6d\x1f\xfc\x3f\x06\xa4\xa9\xb1\xd6\x9d\x1a\x95\x83\x91\x7f\x86\x87\x88\x7a\x7c\x1e\x70" +"\x69\x46\x53\x63\x76\x08\x63\x75\x84\x86\x83\x1a\x83\x8e\x86\x94\x86\x1e\xef\x4f\xa1\x7a\xba\x56\x08\x76\x9e\x8c\x8a\x94\x1b\x95" +"\x92\x92\x94\x9f\x6b\xc8\x6c\xb3\x1f\x0e\xfb\x42\xf7\x6e\xf9\x69\x15\xfd\x29\x07\xa4\x6d\x41\xb0\x79\x1b\x83\x83\x83\x83\x81\x8f" +"\x86\x9b\x7e\x1f\xbb\x61\xa6\x69\xba\x3a\x08\x74\x98\x8e\x87\x92\x1b\x97\x8c\x8c\xac\x9e\x1f\xb0\xcc\xac\xb6\xba\xb3\x08\xa0\x9d" +"\x8c\x8d\x94\x1a\x95\x84\x92\x82\x76\x4c\x6b\x6d\x65\x1e\xf9\x29\x07\x0e\xf7\xda\xfa\x25\xf7\xad\x15\xc7\xfd\x29\x07\xa9\xb1\xab" +"\xca\xa0\x1a\x94\x84\x92\x81\x82\x89\x8a\x76\x79\x1e\x67\x61\x63\x6b\x56\x6b\x08\x56\x6c\x8b\x8b\x7f\x1a\x84\x8f\x88\xa2\x7e\x1e" +"\xdc\x5c\xad\x70\xb5\x5b\x08\x7b\x98\x90\x87\x95\x1b\x93\x93\x93\x93\x9d\x66\xd5\x72\xa9\x1f\x0e\xf7\xda\xe1\xf7\xad\x15\xf9\x29" +"\x06\x72\x6d\x66\x41\x79\x1a\x83\x93\x83\x93\x95\x90\x8f\x9b\x98\x1e\xb5\xbb\xad\xa6\xdc\xba\x08\xa2\x98\x8f\x8e\x92\x1a\x97\x8a" +"\x8c\x6a\x9e\x1e\x4a\xb0\x60\xac\x63\xba\x08\xa0\x79\x89\x8c\x82\x1b\x81\x84\x84\x82\x76\xab\x4c\xa9\x65\x1f\xfd\x29\x06\x0e\xfb" +"\x42\xf7\xaa\x25\x15\xf9\x29\x07\x72\xaa\xd4\x66\x9d\x1b\x93\x93\x93\x93\x95\x87\x90\x7b\x98\x1f\x5b\xb5\x70\xad\x5c\xdc\x08\xa2" +"\x7e\x88\x8f\x84\x1b\x7f\x8a\x8a\x6a\x78\x1f\x66\x4a\x6a\x60\x5c\x63\x08\x76\x79\x8a\x89\x82\x1a\x81\x92\x84\x94\xa0\xca\xab\xa9" +"\xb1\x1e\xfd\x29\x07\x0e\xfb\x42\xf7\x6f\xf7\x0f\x15\x76\x9b\x7c\x95\x75\x97\x08\x95\x79\x65\x99\x84\x1b\x82\x84\x83\x81\x82\x8d" +"\x88\x9f\x7b\x1f\xba\x63\xa4\x6b\xc1\x31\x08\x7a\x94\x8e\x89\x93\x1b\x94\x91\x91\xa0\x96\x1f\xa7\xc3\xbd\xca\xb7\xb0\x08\x98\x95" +"\x92\x93\x90\x1a\x98\x85\x93\x81\x78\x42\x66\x72\x6c\x1e\xf8\x3f\x07\x72\xa9\xd6\x76\x0a\xc8\xaa\xab\xb3\x1e\x0e\xfb\x42\xf7\x0d" +"\x47\x15\x60\xf7\x9b\xb6\x07\xfb\x39\xf7\x97\x15\x77\x9b\x7b\x96\x75\x97\x08\x95\x78\x66\x99\x84\x1b\x82\x84\x83\x81\x82\x8d\x88" +"\x9f\x7b\x1f\xba\x62\xa3\x6c\xc2\x30\x08\x7a\x95\x8d\x89\x93\x1b\x94\x91\x91\xa0\x96\x1f\xa7\xc3\xbd\xca\xb7\xb0\x08\x98\x95\x92" +"\x93\x90\x1a\x98\x85\x93\x81\x78\x41\x66\x72\x6d\x1e\xf8\x3f\x07\x72\xaa\xd5\x76\x0a\xc9\xab\xaa\xb2\x1e\x0e\x24\xab\xfb\x6e\x15" +"\xde\x06\xc0\xf7\x8b\x05\x69\xa9\xba\x79\xc7\x1b\xf7\x28\xf7\x0f\xf7\x14\xf7\x2e\xb9\x7a\xb8\x71\xa6\x1f\x7d\x98\x7d\x93\x6f\x96" +"\xad\x99\x9b\x95\x9e\x9e\x08\xb1\xae\xa1\xbc\xba\x1a\xe8\x41\xcc\x21\x4b\x4e\x73\x62\x62\x1e\x65\x65\x7b\x64\x75\x27\x08\xdf\x90" +"\x15\x9a\xd1\x98\xaa\xa4\xa4\x08\xa3\xa2\xb0\x99\xb3\x1b\xca\xae\x6a\x50\x61\x77\x65\x67\x6f\x1f\x70\x76\x73\x84\x4a\x88\x7d\x47" +"\x18\x8c\x97\x98\x8c\x92\x1b\xa9\xa8\x83\x7c\xa2\x1f\xa8\x78\x98\x6e\x5f\x1a\xfb\x06\x37\x33\xfb\x02\x59\x66\x9b\xac\x72\x1e\x0e" +"\xfb\x42\x49\x0a\x87\xf8\x1c\x23\x1d\xfb\x42\x49\x0a\x6b\xf7\x88\x2a\x1d\xfb\x42\x66\x0a\x2b\xf8\x1d\x24\x1d\xfb\x42\x49\x0a\x8f" +"\xf8\x03\x23\x0a\xfb\x14\xf7\xd7\xf7\x8e\x15\x42\xf7\xa6\x05\x31\x06\xef\xfb\xf5\xfb\x9f\xfc\x19\x05\xeb\x06\xf7\x5e\xf7\xc3\xdb" +"\xfb\xc3\x05\xe4\x06\xfb\x00\xf8\x12\xf7\x8d\xf7\xfc\x05\x29\x06\x0e\xf7\xda\xf8\x8b\xf9\x4b\x15\xfb\x5c\xfb\x36\xfb\x35\xfb\x5c" +"\xfb\x58\xf7\x36\xfb\x36\xf7\x57\xf7\x59\xf7\x37\xf7\x37\xf7\x57\xf7\x58\xfb\x36\xf7\x39\xfb\x55\x1f\x87\xfb\xd0\x15\xfb\x52\xf7" +"\x50\x05\xb8\xc2\xcc\xa2\xd1\x1b\xd0\xcb\x74\x60\xc4\x1f\xb3\x63\x15\xbb\x52\xa2\x4c\x42\x1a\x43\x74\x4b\x5d\x53\x1e\xfb\x54\xf7" +"\x57\x05\xf7\x2c\xfb\x7f\x15\x5f\x54\x48\x73\x45\x1b\x45\x4b\xa2\xba\x50\x1f\xf7\x55\xf7\x55\x05\xfb\x7d\xfb\x2d\x15\x5f\xc1\x74" +"\xcb\xd1\x1a\xd3\xa2\xcb\xba\xc4\x1e\xf7\x52\xfb\x50\x05\x0e\x79\xf8\xd7\x16\x9f\x07\x84\x8d\x74\x90\x3e\x9e\x8b\x8c\x70\x9c\x19" +"\x45\xbb\x64\xd8\xe4\x1a\x94\x07\x9b\x07\x9f\x67\x94\x7e\x97\x7c\x08\x5c\xb1\xc8\x6d\xc1\x1b\xe6\xd3\xd5\xe8\xe7\x4a\xd2\x39\x71" +"\x80\x88\x79\x67\x1f\x88\x8a\x83\x86\x81\x87\x08\xa9\xb7\x94\xa5\xb0\x1a\xe5\x43\xd2\x2f\x2e\x44\x45\x31\x67\x92\x78\xad\x56\x1e" +"\xa3\x58\x78\x91\x70\x1b\x3d\x49\x40\x33\x2d\xd3\x43\xe9\xdb\xd1\xbe\xe5\xb6\x1f\x8c\x72\x05\x83\x07\x54\x71\x45\x65\x5f\x1e\x5c" +"\x5a\x8a\x8a\xfb\x0e\x6e\x83\x89\x18\x77\x07\x0e\x6c\xf9\x1a\x88\x1d\xf7\xf7\xf7\x9f\x8c\x0a\xf8\xba\xf9\x21\x15\xfb\x2a\x06\x7f" +"\x56\x05\xf7\x2a\x06\x6b\xfb\x2c\x9f\x1d\xf7\x13\xf8\xec\x05\xc9\x06\x96\xc0\x05\x4e\x06\x9b\xd7\x21\x1d\xfb\x67\xfb\x9f\x15\xd6" +"\xb6\x59\x36\x4f\x7b\x4f\x6d\x57\x1f\x48\x64\x5a\x69\x4e\x1b\x41\x60\xbd\xe1\xc4\x9b\xca\xa7\xbe\x1f\xd0\xb1\xbb\xab\xcb\x1b\x0e" +"\xf8\x0d\xf8\xa2\x15\x7e\x06\x3f\x45\x6a\x4f\x5c\x1f\x57\x4b\x69\x25\x32\x1a\xfb\x11\xd6\x3f\xf7\x11\xe3\xd6\xb0\xd0\xbf\x1e\xbb" +"\xca\xac\xf1\xde\x1a\xd8\x6f\xc3\x40\xcf\x1e\xfb\x19\xf7\x0f\x05\xf7\x98\x2d\x1d\xfc\x06\x06\x7c\x44\x05\xf7\x22\xfb\x58\x15\xd0" +"\xb7\x59\x3c\x53\x7a\x46\x71\x5b\x1f\x47\x66\x52\x65\x4a\x1b\x44\x60\xbc\xdb\xc2\x9c\xd1\xa5\xbb\x1f\xcf\xaf\xc5\xb1\xcd\x1b\x0e" +"\xfb\x38\xf7\xa0\xf9\x89\x15\x42\xfb\x12\x4c\x31\xfb\x20\xfb\x44\xf0\xfb\x0f\xf7\x35\xfb\x78\x99\x61\xde\xf7\x20\xdf\xf7\x0b\xf7" +"\x03\xf7\x1a\xfb\x0a\xf7\x25\x29\xf7\x1f\x4d\xf7\x00\x08\x0e\xfb\xe9\xf7\xc8\xf9\xef\x15\x78\x30\x8e\x23\x05\xaa\xa8\x1d\x68\x0a" +"\xfb\x60\xf8\x3b\xa6\x1d\x59\x6b\xaa\x0a\x56\x1d\x64\xf7\xb2\x2a\x1d\x56\x1d\x84\xf8\x2d\x23\x0a\xf7\xda\xf9\x93\xf7\x6c\x15\xc8" +"\xfc\x62\x07\x91\xf6\xc3\xbd\xf7\x01\x89\x08\xf7\xb7\xc9\xfb\xac\x06\x38\x68\x84\x72\x66\x1f\x4a\x60\x69\x42\x2c\x1a\xfb\x08\xb8" +"\x38\xb9\x0a\xc9\xfb\xb7\x06\xfb\x01\x89\x53\xbd\x85\xf5\x08\x0e\x56\x1d\xd4\xf8\x1a\x36\x1d\xd1\x16\x90\x0a\x31\xfc\x3d\x9b\x0a" +"\x8d\x8b\x95\x1b\xf7\x06\xb7\xa6\xdd\x9d\x1f\xf2\xf8\x79\x6c\x1d\x3f\x06\x0e\xf8\x64\xfb\x2a\x15\x84\x79\x72\x88\x70\x1b\x63\x70" +"\x9e\xa6\xa7\xa6\xb3\xb4\xab\x1f\xe0\xcc\xb2\xbb\x9c\xc7\x08\xdf\x1d\xe0\xa1\x8c\x94\x8f\x9a\x1f\xf8\x16\x06\x99\xd9\x8e\xa3\xab" +"\x1a\xec\xad\x1d\xc2\x1b\x9f\x9a\x8c\x91\xaa\x1f\x45\x61\x74\x6f\x62\x1a\x70\x97\x77\xa3\x7f\x1e\x80\xa1\xb2\x83\xb0\x1b\xa8\x9d" +"\x8e\x92\xa0\x1f\xfb\x98\xf8\x89\x15\xe7\xa5\xd5\xcb\xdc\x1b\xd2\xb8\x5b\x40\x82\x8a\x83\x89\x7b\x1f\x0e\xfb\x7f\x85\x1d\x0e\xfb" +"\x7f\x85\x1d\x8d\xf8\xb5\x2b\x1d\x31\xd2\x1d\xb9\xf7\x6e\xe3\x1d\x5b\xfb\x70\xb2\x0a\x41\xf8\xb6\xf7\x88\x15\x92\x07\x8a\xc7\x8a" +"\x97\x84\xac\x08\xf5\x75\x34\xce\xfb\x07\x1b\xfb\x27\x2e\x20\xfb\x3b\xfb\x3b\xe5\x26\xf7\x28\xf7\x06\xd5\xbf\xf2\xab\x1f\x8d\x92" +"\x05\x52\x06\x84\x7b\x86\x82\x88\x87\x08\x59\x6c\x58\x71\x4a\x1b\x5f\x67\x97\xa1\x73\x1f\x7a\x9a\x82\x9b\x80\xb0\x08\xed\x07\xf7" +"\xb3\xbb\x15\xfb\xb1\xe0\x06\xd1\xac\xaf\xa4\xd0\x1b\xc1\xb0\x7a\x63\xae\x1f\x96\x7e\x8f\x84\x91\x79\x08\x0e\xfb\x0b\x8e\x1d\x0e" +"\xfb\x0b\x8e\x1d\xf7\x30\xc5\x1d\xfb\x42\xf7\xdc\xaa\x1d\xf8\x30\xd8\x1d\xb2\x06\xcf\xd1\x1d\x0e\xfb\x8e\xbe\x16\xf7\xd9\xf8\xd5" +"\xfb\xd9\x37\xf7\x85\xfb\x36\xfb\x85\x37\xf7\x85\xfb\x37\xfb\x85\x06\x0e\xd7\xf7\xf4\xf7\x98\x15\xfb\x37\x60\xf7\x37\xfb\x3a\xbb" +"\xf7\x3a\xf7\x35\xb6\xfb\x35\xf3\x06\xe7\xa2\xcc\xd9\xe2\x1a\xeb\x36\xdc\x27\x2a\x39\x38\x2a\x36\xcd\x3e\xe8\x74\x1e\xa6\xf7\xcb" +"\x15\xd0\xc5\x50\x45\x43\x51\x51\x43\x43\x52\xc5\xd4\xd3\xc5\xc3\xd5\x1f\x0e\xf7\x51\xf7\xd4\x15\xf7\x67\x06\x9b\xd9\x05\xfb\x67" +"\x06\xbd\xf7\x7e\x05\xf7\xd3\x06\x9b\xd9\x05\xfc\x2a\x06\xfb\x2b\xfd\x5a\x05\xe3\x06\xf7\xd8\xf8\x82\x15\x22\xfc\x82\x05\xdb\x06" +"\xbe\xf7\x86\xa0\xf7\x00\xd6\xd5\xe1\x88\x19\x9d\xe0\x05\x8d\x7f\x85\x8c\x84\x1b\x61\x59\x6a\x4b\x55\x1f\x9c\xdd\x05\x0e\xfb\x42" +"\xf7\x39\xfb\x6e\x15\xdf\x06\xbc\xf7\x7e\xf7\xc1\xf8\x90\x05\x28\x06\xfb\x73\xfc\x19\x4a\xf8\x19\x05\x32\x06\xe6\xfc\x90\x05\x0e" +"\xf8\xa1\x80\x1d\x40\xf7\x9f\x40\x1d\xd7\xbb\xbe\x9e\xa9\xac\xb7\x0a\x82\x62\x74\x4f\x1b\x59\x6b\x9f\xaa\x1f\x90\x07\x92\x07\x0e" +"\x62\x0a\x81\xf7\xab\x24\x1d\xf8\x92\x80\x1d\xeb\xf7\x13\x15\xa0\xed\x05\x54\x06\xc6\x96\xa3\xa8\xb2\x1b\x93\xb1\x05\x4c\x5c\x5b" +"\x38\x79\x1f\x77\x2e\x05\x0e\xf8\x9f\xf8\xa0\x15\x7b\x3f\x05\xcc\x66\x63\xa5\x4c\x1b\x3e\x3f\x65\x4d\x5a\x1f\x55\x46\x66\xfb\x00" +"\x31\x1a\xfb\x05\xd1\x39\xeb\xd2\xc1\xa8\xcc\xc1\x1e\x85\x70\x7c\x45\x79\x62\x6f\x6c\x19\x6b\x6d\x5e\x79\x58\x1b\x47\x63\xa6\xb8" +"\x1f\x9b\x36\x07\x8a\x82\x8b\x83\x87\x1a\x37\xcf\x56\xf7\x00\xdb\xd7\xa4\xb3\xb4\x1e\xb9\xb7\xa8\xd1\xa6\xf7\x11\xe8\xf8\x4a\x18" +"\xfb\x82\x4d\x15\xce\xb2\x5e\x3e\xfb\x31\x33\xfb\x15\xfb\x01\x46\x63\xb9\xd9\xf7\x30\xe5\xf7\x14\xf7\x02\x1f\xf7\x0c\xf7\x91\x23" +"\x0a\xfb\x11\xc1\xd3\x15\x7c\x43\x05\xf8\x7d\x06\x9a\xd3\x05\xcd\xf7\xc5\x8f\x0a\xf7\xb8\xf9\x21\x15\x9b\xd7\x05\x38\x06\x7b\x3f" +"\x05\x4f\x06\x7f\x56\x05\xc7\x06\xfb\x13\xfc\xec\x05\xde\x06\xc8\xf7\xb5\x05\xf3\xa2\xd5\xd4\xde\x1b\xc0\xaf\x6f\x62\x7b\x8a\x83" +"\x89\x81\x1f\x3e\xfb\xff\x05\xde\x06\xdf\xf8\x20\x05\x8d\x94\x8c\x94\x97\x1a\xd2\x58\xb5\x34\x3d\x55\x72\x4d\x55\x1e\xaa\xf7\x28" +"\x05\xf7\x63\x06\x97\xc0\x05\x0e\x73\x0a\x62\xf7\x67\x24\x1d\x3b\xf7\xbc\x6f\x15\x9c\xde\xc7\xf3\xf7\x0b\xf7\x2b\xb4\xc0\x9b\xa0" +"\x9a\xa3\x08\xb1\xca\x9d\xc2\xc1\x1a\xdc\x45\xcf\x36\x5b\x5f\x76\x65\x6b\x1e\x76\x72\x80\x75\x7e\x5d\x08\xf2\x67\x56\xbb\x3a\x1b" +"\x36\x48\x46\x34\x4a\xa3\x57\xdc\xfb\x02\x1f\xf7\x2c\xfb\x60\xb2\x49\xa5\x24\x08\x0e\x45\x96\x16\xf8\xdb\xf8\x25\x06\xfb\xb8\xf7" +"\xdc\xfb\xb7\xfb\xdc\x05\xbe\xfb\xf2\x15\xf7\xdc\x07\xf7\x84\xf7\xa2\xf7\x85\xfb\xa2\x05\xfb\xdc\x07\x0e\xfc\x20\x2d\x0a\x68\xf9" +"\x6d\x3c\x0a\xfb\x7a\xf7\xa7\x8d\x0a\xe8\x25\x15\xfb\x13\xfc\xec\x5c\x0a\x85\x8b\x8d\x7e\x1f\x7c\x44\x05\x88\x91\x8e\x8b\x94\x1b" +"\xf7\x07\xb7\xa6\xdd\x9d\x1f\xf7\x1a\xf9\x0d\x05\xb7\xf7\x61\x15\x37\x06\x74\x24\x20\x0a\x0e\xfc\x20\xab\x0a\xf7\x73\xf9\x4c\x15" +"\xfb\x7e\x06\x7c\x46\x05\xf7\x7e\x06\x0e\xb2\xf8\x37\xf7\xbd\x15\x6d\xae\x80\x96\x79\x9b\x08\xa8\x6b\x63\x9b\x65\x1b\x32\x38\x39" +"\x34\x4a\xb9\x5d\xcd\xc5\xc2\xa7\xda\xf1\x1f\x37\xd7\xb0\x74\xc2\x1b\xe6\xde\xdc\xe3\xcc\x5d\xb9\x4b\x63\x5b\x7b\x6e\x5f\x1f\x75" +"\x7c\x85\x87\x51\x60\x08\xa8\x6a\x15\xc7\xd5\xc4\xa8\xb6\x1b\xb3\xab\x6c\x65\x53\x54\x56\x52\x6f\x79\x93\xa9\x66\x1f\x74\x9e\x81" +"\x95\x79\xa1\x08\x44\x16\x71\x75\x80\x84\x67\x75\x08\x6e\x5c\x73\x82\x6e\x1b\x62\x6b\xa9\xb3\xc3\xc1\xbf\xc5\xb4\xb9\x6c\x51\xba" +"\x1f\x0e\xfc\x24\xf7\x50\xf8\x9f\x15\xb0\x85\xda\x82\xe8\xb0\x0a\x8e\x8a\x80\x95\x1e\x81\x95\x97\x86\x98\x1b\xa6\xa0\xa1\xa7\xa9" +"\x6f\xa3\x68\x60\x6c\x6c\x51\x7d\x1f\x7b\x4b\x86\x46\xfb\x45\x1a\xfb\x78\x07\x5f\x8f\x4e\x95\x22\x1e\x8f\x61\x8d\x75\x7f\x1a\x79" +"\x85\x81\x7f\x85\x89\x8c\x96\x80\x1e\x95\x81\x80\x90\x7d\x1b\x71\x75\x75\x70\x6c\xa7\x73\xae\xb7\xaa\xaa\xc5\x99\x1f\x9b\xcb\x90" +"\xd4\xf7\x41\x1a\x0e\x45\xf7\xab\xf9\xb4\x15\xfc\xfa\x07\x5f\x8f\x4d\x95\x23\x1e\x8f\x61\x8d\x75\x7f\x1a\x79\x85\x81\x7f\x85\x89" +"\x8c\x96\x80\x1e\x95\x80\x81\x90\x7d\x1b\x71\x75\x75\x70\x6c\xa7\x73\xae\xb7\xaa\xaa\xc5\x99\x1f\x9b\xcb\x90\xd4\xf7\x41\x1a\xf8" +"\xf2\x07\x0e\x45\xf7\xf4\xfb\x61\x15\xf8\xfa\x07\xb7\x87\xc9\x81\xf3\xb0\x0a\x8d\x8a\x80\x96\x1e\x81\x96\x95\x86\x99\x1b\xa5\xa1" +"\xa1\xa6\xaa\x6f\xa3\x68\x5f\x6c\x6c\x51\x7d\x1f\x7b\x4b\x86\x42\xfb\x41\x1a\xfc\xf2\x07\x0e\xb8\xf8\xeb\x16\xf7\xa1\x07\xf7\x29" +"\x86\xb1\x71\xb7\x1e\xd1\x61\x3e\xb4\x31\x1b\x38\x46\x6a\x4d\x5e\x1f\x66\x5a\x85\x67\xfb\x36\x1a\xfb\xa1\xd1\xf7\xa4\x07\xf7\x05" +"\x91\xba\x9d\xad\x1e\xbd\xa6\xc5\xad\xc8\x1b\xc4\xc2\x6e\x5d\xa8\x1f\xa2\x67\x91\x62\xfb\x12\x1a\xfb\xa4\x07\x0e\xf8\x0e\xf8\xa3" +"\xf9\x6e\x15\xfb\x5b\xfb\x3a\xfb\x38\xfb\x57\xfb\x63\xf7\x35\xfb\x38\xf7\x5d\xf7\x61\xf7\x37\xf7\x36\xf7\x5f\xf7\x5e\xfb\x37\xf7" +"\x37\xfb\x5e\x1f\xfb\x01\xfb\x63\xc1\x1d\xfb\x14\xfb\x05\x15\x96\x59\x96\x75\xa5\x6d\x08\x54\xbb\xc7\x71\xdc\x1b\xdc\xc7\xa5\xc2" +"\xbb\x1f\xa5\xa9\x96\xa1\x96\xbd\x84\x36\x80\x62\x6d\x5e\x08\x4c\x61\x4b\x6b\x38\x1b\x3e\x4f\xa6\xc1\x61\x1f\x67\xba\x7c\xb8\x84" +"\xe8\x08\xf7\xee\xf7\x05\xc1\x1d\x0e\xfc\x58\xf7\x99\xbc\x0a\xad\x06\x4b\x61\x67\x5d\x63\x1a\x5e\xb5\x6b\xc7\x9d\x98\x8e\x92\xa1" +"\x1e\x94\xb8\x05\x82\x74\x8a\x8b\x7f\x1b\x69\x76\x9c\xa5\xab\xab\xbc\xb8\xae\x1f\xf7\x2f\x22\x1d\x37\x06\x74\x24\x20\x0a\x0e\xfc" +"\x58\x43\x0a\x0e\xfc\x58\x43\x0a\xbd\xf7\x53\x15\x23\x06\x76\xa1\x0a\x76\x24\x05\xf3\x06\x0e\xfc\x58\x43\x0a\xd4\xf7\xe3\x15\x77" +"\x97\x0a\x9f\xe6\x05\xc7\xfb\x2b\x15\x2f\x06\x75\x24\x05\xe7\x06\xfb\x2c\xf2\x15\x2f\x06\x75\x24\x05\xe7\x06\x0e\xfc\x58\x43\x0a" +"\xc3\xc5\x1d\xfc\x20\xab\x0a\xf7\x68\x90\x1d\xfc\x58\x7b\x0a\x55\xf7\x6d\x24\x1d\xfb\x42\xf7\x60\xf7\xc3\x15\xba\xf7\x71\xe1\x1d" +"\xb4\xf7\x57\xf7\x03\xe6\xf7\x07\xfb\xb2\x05\xe8\x06\xfb\x1f\xf7\xe6\xf7\x76\xf7\x4e\x05\xfb\x07\x06\x0e\xfb\x42\x98\x1d\x8c\xfc" +"\x02\x5e\x1d\xfb\x42\xf7\x47\xf7\x47\x15\xf0\xde\xf3\xfb\x9a\x05\xec\x06\xfb\x25\xf7\xc2\xf7\x96\xf7\x72\x05\xfb\x0c\x06\xfb\xa7" +"\xfb\x92\xc3\xf7\x92\x05\x35\x06\xfb\x06\xfc\xa0\x05\xe1\x06\x0e\xfc\x58\xf7\xc7\x37\x1d\xf7\x5b\x55\x0a\xfb\x4a\x9d\x16\xea\x06" +"\xf7\x6e\xf8\x1b\xc5\xfc\x1b\x05\xe2\x06\xfb\x05\xf9\x6d\x05\x34\x06\xaf\xfb\x66\x05\x0e\xfc\x0b\xf7\xc3\x37\x1d\xf7\x6b\xf9\x6d" +"\x8c\x0a\xfc\x58\xf7\xc7\x37\x1d\x22\x4f\x35\x1d\xfb\xa6\xf7\xd8\x37\x1d\xf7\xa2\xf8\x4d\x23\x0a\xfb\x11\xf8\xa8\xd3\x15\xfc\x7d" +"\x27\x1d\xf8\x7d\x06\xfc\x3b\xf7\xc8\xb5\x1d\xf7\xbe\xf7\xd5\x15\xf7\x1d\x06\x97\xc2\x05\xfb\x34\x06\x86\x9c\x88\x93\x8a\x8e\x08" +"\x75\xc9\x8b\x8b\xa5\x1a\xe6\xd4\xd0\xea\xd2\xb8\x65\x4f\x79\x89\x7d\x84\x72\x1e\xe3\x06\x92\xb5\x8d\x9d\xa1\x1a\xe5\x40\xc7\xfb" +"\x03\xfb\x28\xfb\x1a\xfb\x0b\xfb\x16\x6e\x8d\x85\xa6\x49\x1e\x8c\x88\x05\x38\x06\x7f\x54\x05\xf7\x05\x06\x91\x78\x8e\x7f\x85\x1a" +"\xfb\x1b\x06\x7f\x54\x05\xf7\x21\x06\x7a\x53\x4e\x4a\x32\x53\xb0\x49\x18\xa5\xba\xad\x96\xb0\x1b\xa2\x9f\x88\x83\x9f\x1f\x71\xcf" +"\xad\x82\xb0\x1b\xbc\xbd\x9e\xae\xb6\x1f\x72\xd1\x05\x73\x61\x77\x92\x0a\xf7\x0b\xe5\x93\x92\xa6\xd2\x08\xf7\x0c\x06\x97\xc2\x05" +"\xfb\x0d\x06\x90\x8b\x91\x89\x9a\x1e\x0e\xfc\x58\xf7\x25\x16\xf7\x12\xf8\xe5\x05\xbe\x96\x9c\x9b\xb7\x1b\x92\x92\x8b\x89\x98\x1f" +"\x9a\xd0\x05\x8f\x79\x80\x8c\x7b\x1b\x3e\x53\x5e\x41\x7b\x1f\x78\x32\x05\x45\x06\x7d\x48\x05\xd1\x06\x2a\xfc\x5d\x05\x0e\xd7\xf8" +"\x14\xf8\x82\x15\x9f\x64\x72\x92\x6a\x1b\x27\x37\x38\x29\x2a\xe5\x36\xf2\xab\xa9\x93\x9b\xa6\x1f\xbe\xaa\xae\xc4\xbf\x1a\xb6\x78" +"\xbd\x68\xc0\x1e\xf7\x2a\xf7\x2a\x8e\x79\xa1\x52\x9a\x6e\x19\x77\x96\x90\x85\x95\x1b\x92\x90\x90\x92\x8e\x8b\x8b\x88\x9d\x1f\x84" +"\xae\x89\xa1\xa6\x1a\xab\x91\xbd\x92\xa2\x1e\x8d\x90\x8b\x8d\x8d\x1a\x91\x87\x8f\x84\x88\x88\x8b\x8a\x88\x1e\x81\x69\x6d\x87\x67" +"\x1b\x70\x75\x8d\x92\x68\x1f\x8e\x79\x8b\x8b\x88\x1b\x85\x85\x84\x85\x7b\xb5\x73\xc2\x7a\x1f\xa2\x84\x91\x89\x05\xfb\x8c\xfb\x41" +"\x15\xd3\xc7\x4e\x42\x41\x4f\x4f\x41\x40\x4f\xc7\xd6\xd5\xc7\xc6\xd8\x1f\x0e\xfc\x7a\xf7\x6e\xe0\x1d\x0e\xfb\x42\xf7\x7f\xf7\x53" +"\x15\x93\x75\x7b\x8f\x7a\x1b\x46\x4f\x52\x49\x65\xa8\x73\xb8\xbe\xba\xa4\xb5\xa9\x1f\xa0\xa9\x94\xaa\xb8\x1a\xf7\xd4\x07\xab\x85" +"\xa1\x7b\xa2\x66\x08\xa3\x65\x95\x65\x55\x1a\x59\x81\x61\x73\x51\x1e\xa8\x06\xb2\xb9\xa0\xc7\xcc\x1a\xdc\x6b\xdb\x4c\xd6\x1e\x53" +"\xce\x89\x8d\x83\x95\x86\x92\x19\xcb\x5b\x07\x0e\xd7\xf7\x95\xf9\x19\x15\xfc\x59\x88\x0a\xf7\xf0\x07\xf7\xb5\x5f\x05\xfc\x03\x88" +"\x0a\xf8\x52\x07\x0e\x39\x1d\xf7\x67\xf7\x6c\x23\x1d\x50\xf7\x73\x21\x0a\xfb\x03\xfc\xa0\x05\x90\x0a\x41\xfb\xf1\x20\x0a\xdb\xf8" +"\x0c\x6c\x1d\xfb\x2a\xf7\x61\x35\x1d\x39\x1d\xf7\x55\xcf\x2a\x1d\x39\x1d\x64\xfc\xdc\x5e\x1d\xf7\xda\xf8\xa4\xf7\x6c\x15\xf7\x83" +"\xc8\xfb\x60\x06\xe3\xf7\x2f\x05\xf7\x08\xc9\x3a\x06\xac\xc6\x61\xa3\x5c\x38\x05\xfb\x23\x06\x38\x68\x84\x72\x65\x1f\x4b\x60\x69" +"\x42\x2c\x1a\xfb\x08\xb8\x37\xdc\x69\x1e\x6a\x52\xb6\x74\xb1\xce\x05\x88\xa5\x97\x8a\xb5\x1b\xf7\xac\xc9\xfb\xb7\x06\x77\x85\x8b" +"\x8c\x82\x1f\xaa\xf7\x2d\x15\x3a\xfb\x21\x57\x9d\x6c\xbe\x88\xd3\x19\xf7\xb6\xf7\x6c\x15\x33\xfb\x2f\x05\xfb\x5e\x06\x91\xf6\xc3" +"\xbd\xf7\x01\x89\x08\x0e\xfb\x11\xf7\x48\xf7\x03\x15\x55\x45\xc9\x64\xde\xf7\x01\x05\xf7\xa2\x06\x99\xd3\x05\xfb\x7a\x06\xd9\xef" +"\x05\xf7\x42\x06\x9a\xd3\x05\xfb\x1b\x06\xcd\xe1\x4d\xb2\x2b\xfb\x11\x05\xfb\x95\x06\x7d\x43\x05\xf7\x6e\x06\x3c\x27\x05\xfb\x35" +"\x27\x1d\x0e\xfb\x42\xf7\xb3\x16\xf7\xcc\xf8\xa0\x05\x28\x06\xfb\x80\xfc\x31\x57\xf8\x31\x05\x32\x06\xd4\xfc\xa0\x05\x0e\x69\x0a" +"\x32\xf7\x9f\x3c\x0a\x4a\x0a\xa5\xf7\xaa\x15\x6a\x1d\xc9\x16\xfb\x14\xfb\x2a\x05\xc7\x06\xf7\x48\xf7\x2a\x05\x0e\x4a\x0a\xf7\x4f" +"\xf7\x7e\x36\x1d\xf4\x63\x0a\x0e\xf4\x63\x0a\x89\xf8\x12\xcf\x1d\x6a\x0a\x0e\x6a\x0a\x9b\xf7\xd1\x2b\x1d\xf7\xc5\xbd\x16\xfa\x04" +"\xcd\xfd\xc2\xf9\xb8\x49\x06\x0e\x4c\x82\x1d\xf7\x8c\xf9\x12\x23\x1d\xfb\x5a\xf1\xf9\x32\x15\xac\xd5\x8b\x8b\xb1\x1b\xba\xb2\x79" +"\x69\xa3\x1f\xad\x5c\xa0\x40\x42\x1a\x6d\x89\x73\x82\x50\x1e\xc0\x46\x70\x97\x55\x1b\x5a\x64\x7b\x69\x69\x1f\x5d\x5c\x6f\x48\x4a" +"\x1a\xfb\x01\xde\x36\xf6\xd7\xc8\xb4\xd8\xb6\x1e\xb1\xcf\xa7\xf7\x16\xf3\x1a\xf7\x5c\xfb\x03\xf7\x25\xfb\x2d\x5e\x5c\x81\x79\x63" +"\x1e\xf7\xbf\xfc\x36\x15\x7d\x32\x84\x6b\x7d\x5f\x08\x3d\x70\x5d\x5f\x55\x1b\x53\x6a\xbe\xe1\xf7\x08\xcd\xea\xdc\xb4\xb0\x76\x63" +"\xa5\x1f\x0e\xf8\x38\xf7\x98\xf7\xc4\x15\xf7\x04\x06\xc9\xb8\x9b\xb0\xb8\x1f\xc6\xbc\xb0\xd5\xd1\x1a\xb5\x7a\xb9\x71\xa5\x1e\xab" +"\x6d\x5f\x99\x4a\x1b\xfb\x48\x06\xfb\x2b\xfd\x5a\x05\xe3\x06\xdc\xf8\x12\x15\xc0\xf7\x8e\x05\xda\x06\xdc\xb6\x68\x4a\x5f\x76\x61" +"\x66\x6e\x1f\x73\x6b\x67\x80\x57\x1b\xf7\xdf\xfb\x0e\x15\xd9\x06\x99\xcb\x05\x3c\x06\xa4\xf7\x09\x05\x3b\x06\x72\xfb\x09\x05\x4c" +"\x06\x7e\x4b\x05\xca\x06\x66\xfb\x3e\x05\x89\x81\x8a\x7f\x82\x1a\x58\xab\x6f\xc5\x9b\x96\x8c\x8f\xa2\x1e\x98\xd3\x05\x87\x7a\x83" +"\x8a\x80\x1b\x76\x7d\x96\x9b\x8d\x8c\x91\x8c\x91\x1f\xf8\x41\xf7\x18\x15\x8f\x9c\x8c\x92\x94\x1a\xba\x5e\xab\x49\x32\x49\x55\x43" +"\x62\xa1\x79\xd2\x78\x1e\xb8\x80\x05\xa3\x85\x94\x83\x7c\x1a\x6d\x6d\x76\x5f\x67\x79\x98\xa5\x90\x8c\x94\x8c\x93\x1e\x3d\x06\x87" +"\x79\x8a\x83\x80\x1a\x55\xb9\x6b\xda\xec\xcc\xbe\xd7\xb4\x75\xa0\x4f\x9a\x1e\x5d\x96\x05\x6d\x93\x7e\x94\x99\x1a\xa9\xa4\x9e\xb4" +"\xa9\x99\x81\x75\x85\x8b\x87\x89\x83\x1e\x0e\x75\xf7\x7e\xfb\x6e\x15\xdf\x06\xb5\xf7\x58\xe0\x93\xc6\xa4\xc4\xc3\x19\xd1\xcd\xb4" +"\xec\xea\x1a\xf7\x1f\x34\xd6\xfb\x34\x81\x86\x8b\x8a\x7c\x1e\x23\xfc\x79\x69\x8f\x7d\x8f\x79\x95\x19\x6a\x9e\x78\xb6\xc4\x1a\xc3" +"\x9a\xc7\xa5\xbb\x1e\xa3\xba\xa1\xa0\xb7\xa1\x9c\xde\x18\x3f\x6e\x60\x6c\x5c\x51\x08\x5a\x4f\x71\x3b\x36\x1a\x48\x9f\x56\xb0\x68" +"\x1e\xac\x6c\xaf\x7e\xd1\x84\x08\xf7\x4f\xf8\x79\x15\xa6\x89\x98\x88\x9d\x82\x08\xb0\x78\xa2\x5e\x55\x1a\x4c\x74\x40\x68\x58\x1e" +"\x64\x51\x63\x73\x46\x84\x08\x0e\x87\xf9\x69\x21\x0a\xfc\xc1\x06\x7c\x41\x05\xd6\x06\x2b\xfc\x56\x05\xdf\x25\x1d\x05\xf7\x83\x06" +"\x34\x1d\xdf\x25\x1d\x05\xd6\x06\x0e\xf7\xd6\xf7\x88\xfb\x30\x15\x3e\x36\xf7\x8f\x06\x8a\xe0\x05\x40\xf9\xab\xf7\xfe\xfd\xab\x45" +"\x06\x8c\x36\x05\xf7\x84\xe0\x42\xf9\xab\xf0\xe0\xfd\x8f\x36\xf3\x06\x0e\xf7\xda\xf9\x93\xc9\x15\xfb\xb7\x06\xfb\x0d\x57\xc2\xf7" +"\x16\xf7\x15\xbf\xc3\xf7\x0d\x1f\xf7\xb7\xc9\xfb\xac\x06\x38\x68\x84\x72\x66\x1f\x4a\x60\x69\x43\x2b\x1a\xfb\x07\xb8\x37\xb9\x0a" +"\x06\x0e\xf7\xda\xf7\x7d\xc9\x15\x4d\xf7\xac\x07\xde\xae\x92\xa4\xb1\x1f\xcc\xb6\xac\xd4\xee\x1a\xf7\x03\x5d\xe0\x3d\xac\x1e\x99" +"\x69\x70\x8f\x46\x1b\xfb\xac\x4d\xf7\xb7\x06\xf7\x0d\xbf\x54\xfb\x16\xfb\x16\x57\x54\xfb\x0d\x1f\x0e\xc1\xf8\x99\x21\x0a\x37\x06" +"\x28\xfc\x66\x05\x37\x93\x66\xa9\xc8\x1a\x9c\x8f\xaa\x92\xaa\x1e\xc8\xf7\xb4\x21\x1d\x4d\xfb\xb7\x05\x83\x66\x86\x66\x79\x1a\x65" +"\x9a\x66\xa5\x72\x1e\xb1\x67\xb0\x7c\xd7\x82\x60\xfb\x5b\x18\xdf\x06\xb6\xf7\x5b\xf7\x46\x9c\xd9\xd0\xa8\xf7\x3a\x19\xc9\xf7\xb7" +"\x21\x1d\x4e\xfb\xb4\x73\xfb\x06\x57\x59\xfb\x02\x7d\x19\x0e\xfc\x58\xf7\xc8\xf9\x58\x15\x2d\x06\x76\x27\x05\x88\x7b\x89\x7a\x7c" +"\x1a\x59\xa4\x6e\xb9\x87\x1e\x93\xb1\x05\x72\x90\x81\x98\xa8\x1a\x96\x8c\x96\x90\xa0\x1e\xbc\x06\x0e\xfb\xe9\x67\x1d\xa2\xf7\x07" +"\xd0\xca\x5c\x1d\xf7\x16\xf7\x6c\x23\x1d\xfb\x71\xf9\x06\xfa\x25\x15\xfb\xbb\xfd\xa8\xfb\x02\xf8\x20\xfb\x37\x42\x96\x6a\xf3\xb9" +"\xf7\x1c\xfc\x85\xf7\xf4\xfa\x44\x05\x0e\xfb\xe9\x67\x1d\xa3\xf7\x07\xcf\xca\x5c\x1d\xf1\xcf\x2a\x1d\xfb\xe9\xf7\x49\x21\x0a\xfb" +"\x04\xfc\xa0\x20\x0a\xc5\xf7\xa4\xa2\xf7\x06\xd0\xcb\x5c\x1d\xfb\x5f\xfc\xdc\x35\x1d\x31\xf8\xfe\xf8\x0d\x15\xfc\x8d\x06\x4e\xfb" +"\xb7\x05\xd1\x06\xb9\xf7\x6f\x05\xf8\x47\x06\x0e\x26\x98\xfb\x6e\x15\xdf\x06\xc5\xf7\xa5\x05\x56\xa9\xbb\x72\xd3\x1b\xdf\xd3\xb0" +"\xce\xbe\x1f\xbf\xd0\xa9\xe6\xe4\x1a\xf7\x13\x3c\xde\xfb\x0f\x47\x48\x6f\x5a\x5a\x1e\x59\x59\x76\x5a\x71\xfb\x0d\x08\xf7\xac\xf7" +"\x6f\x15\xd3\xb5\x5b\x39\x46\x75\x40\x66\x55\x1f\x5b\x6a\x54\x6c\x54\x1b\x44\x61\xbf\xe1\xc5\xa4\xde\xac\xbc\x1f\xbc\xab\xc2\xa9" +"\xc3\x1b\x0e\xfb\x42\x7f\x1d\x8e\xf7\xfe\x23\x1d\xfb\x42\xf7\x92\x74\x15\xd0\x8e\xb5\x96\xb6\xa5\x08\xbf\xab\xac\xc7\xcb\x1a\xc8" +"\x6a\xab\x33\xa1\x1e\x3f\x9e\x05\x53\x99\x6e\x9f\xa5\x1a\x9f\x97\xa4\x9d\x9c\x44\x0a\x1f\x85\x07\x86\x07\x8a\x80\x20\x0a\x90\xa0" +"\x8c\x94\x98\x1a\xd1\x49\xbb\x29\x3c\x1d\x43\xbd\x61\xf1\x7e\x1e\x65\x45\x98\x85\x91\x8c\x8b\x8b\x90\x8c\x19\x8d\x96\x8b\x8b\x90" +"\x1b\x9c\x99\x81\x7f\x6b\x71\x74\x66\x6f\x73\x92\xa1\x61\x33\x1d\xbf\xa7\x83\xb2\x1b\xdf\xc7\xb8\xcb\x57\x0a\x0e\xfb\x42\xf8\x96" +"\xf8\x0e\x15\x90\xa0\x8c\x94\x98\x1a\xd1\x48\xbb\x2a\x3c\x1d\x3b\xd0\x5b\xf7\x09\xf7\x29\xec\xd8\xf7\x0b\x5a\x0a\xa3\x9d\x9d\x44" +"\x0a\x1f\x85\x07\x86\x07\x8a\x80\x05\x40\xf7\xff\x24\x1d\xfb\x42\x7f\x1d\xfb\x83\xfc\x4a\xb0\x1d\xfb\xd4\xf7\x73\xe0\x1d\xf7\x60" +"\xf7\x94\x15\x41\x06\x55\xfb\x94\x05\xc4\x06\x0e\x44\xf8\x71\xf8\xa0\x15\x96\x6d\x73\x8f\x6c\x1b\x39\x3d\x66\x4b\x59\x1f\x58\x4b" +"\x6a\x25\x31\x1a\xfb\x11\xda\x3b\xf7\x0f\xde\xd6\xaf\xcc\xbf\x1e\xbb\xc7\xae\xf5\xde\x1a\xbd\x7d\xb1\x6b\xae\x1e\xf7\x0b\x2d\x1d" +"\xfb\xb8\x4d\xa4\x1d\x0e\xf7\xef\xf8\x93\xf9\x6e\x15\xfb\x5b\xfb\x3a\xfb\x38\xfb\x57\xfb\x63\xf7\x35\xfb\x38\xf7\x5d\xf7\x61\xf7" +"\x37\xf7\x36\xf7\x5f\xf7\x5e\xfb\x37\xf7\x37\xfb\x5e\x1f\x5a\x04\xf7\x43\xf7\x21\xfb\x21\xfb\x43\xfb\x44\xfb\x21\xfb\x20\xfb\x45" +"\xfb\x43\xfb\x1f\xf7\x22\xf7\x47\xf7\x3e\xf7\x23\xf7\x21\xf7\x41\x1f\xfb\x01\xfb\x37\x9d\x0a\xfb\x14\xfb\x00\x15\x92\x36\x96\x62" +"\xa9\x5e\x08\x4c\xb5\xcb\x6b\xde\x1b\xd8\xc7\xa6\xc1\xb5\x1f\xaf\xba\x9a\xb8\x92\xe8\x80\x59\x80\x75\x71\x6d\x08\x54\x5b\x4f\x71" +"\x3a\x1b\x3a\x4f\xa5\xc2\x5b\x1f\x71\xa9\x80\xa1\x80\xbd\x08\xf7\xee\xf7\x00\x9d\x0a\x0e\xfb\x23\xf7\xc0\xf7\x99\x15\x7f\x07\x44" +"\x6b\x45\x5a\x66\x1e\x6c\x62\x56\x7a\x57\x1b\x7e\x74\xf8\x77\xa2\x06\xfb\x32\x91\x3c\xe3\x8e\xf7\x3d\x08\x35\xb9\xb6\x6d\xda\x1b" +"\xcd\xc4\xca\xd4\xd0\x73\xb0\xfb\x01\xef\x1f\xfb\x02\xf1\x7a\xa5\x63\xf7\x09\x7c\x30\x4d\x31\x23\x38\x08\x3c\x49\x67\x51\x4c\x1a" +"\x40\xc8\x4d\xd4\xb4\xb4\x9c\xa9\xac\x1e\x9e\x9d\x96\x9a\x9c\xb0\x08\x0e\xf7\xd6\xf9\x63\xf9\x7e\x15\xfc\x80\x45\x06\xf7\x61\xfb" +"\xf5\xfb\x61\xfc\x16\x05\x44\xf8\x87\xf7\x6b\x43\x07\x88\xfb\x23\x05\xfb\xe3\x06\xf7\x60\xf8\x16\xfb\x5f\xf7\xf1\x05\xf7\xdb\x06" +"\x8f\xfb\x22\x05\xd2\x06\x0e\xf7\x87\xf7\x94\xf8\xa3\x15\x73\x74\x6c\x42\x67\x1a\xfb\x10\x4f\xf7\x10\x06\x68\x9c\x60\xb0\x54\x1e" +"\x34\x34\xb4\x62\xe3\xe2\x9d\x78\xa1\x7e\xa1\x86\x19\xce\x7a\x8e\x8a\x05\xfb\x0f\xc6\xf7\x0f\x07\x8f\x8c\xb2\x95\xa5\x91\x8d\x8c" +"\x19\x96\x90\x9e\x96\xab\xa0\xe3\x34\x18\xb4\xb4\x34\xe2\x9d\xa6\x99\xa4\x8f\x96\x19\x8e\x92\x90\x9f\x96\xb6\x08\xf7\x0f\xc7\xfb" +"\x0f\x06\x81\xb3\x85\xa2\x88\x92\x87\x96\x7d\xa4\x79\xa6\xe2\xe1\x18\x62\xb4\x33\x35\x6d\xa6\x7e\x91\x31\xa1\x19\xf7\x0e\x50\xfb" +"\x0e\x07\x88\x8a\x48\x79\x84\x89\x77\x7f\x68\x74\x19\x33\xe2\x62\x62\x05\xf7\xba\x50\x15\xef\xde\x36\x26\x24\x38\x37\x24\x22\x3a" +"\xdd\xf5\xf3\xde\xdc\xf5\x1f\x0e\xfb\xc0\xf7\x25\x16\xdf\x25\x1d\x05\xf7\x21\x2d\x1d\xfc\x02\x2a\x0a\xf7\x21\x06\x0e\xfc\x20\xf8" +"\x02\x21\x0a\x33\x06\xa9\xf7\x24\x21\x1d\x6d\xfb\x24\x05\x43\x06\x7d\x48\x05\xd2\x06\x7a\x37\x05\x4d\x06\x80\x56\x05\xc8\x06\x5a" +"\xfb\x7d\x05\x88\x80\x8a\x7f\x83\x1a\x5a\xad\x6d\xc2\xa0\xa9\x8e\x8f\x9a\x1e\x9a\x5b\x0a\x7c\x97\x9a\x8c\x1f\x8e\x8c\x8f\x8c\x92" +"\x1e\xbc\xf7\x7a\x05\xdd\x06\x96\xc0\x05\x3a\x06\x9c\xdf\x05\xe4\x06\x0e\xfb\xf9\xf8\x01\x6f\x0a\xb3\xf7\xec\x35\x1d\xfc\x20\xf7" +"\x39\x76\x15\x8a\x94\x90\x8a\x92\x1b\xa0\xa8\x8e\x8f\x9b\x1f\x9a\x5b\x0a\x7d\x96\x9b\x8d\x8c\x91\x8c\x91\x1f\xd9\xf8\x03\x05\xe4" +"\x06\x99\xce\x05\xb4\x1d\x80\x8a\x81\x81\x1a\x6c\x95\x77\xa2\x7e\x1e\x5e\x37\x98\x85\x90\x8c\x8b\x8b\x91\x8c\x19\x8d\x95\x8c\x6d" +"\x1d\x6f\x72\xcc\x1d\xb9\xca\xa7\x6d\xa2\x66\x87\x87\x8b\x89\x7e\x1f\x0e\xfb\x18\xf8\x37\xf9\x7d\x15\x55\x57\x78\x69\x5f\x1f\x4f" +"\x5a\x68\x4d\x6b\xfb\x0b\x08\x6c\xfb\x03\x78\xfb\x07\x48\x1a\xfb\x09\xd2\x40\xf7\x04\xcb\xbf\x9e\xb2\xb9\x1e\xbf\xb8\xab\xc9\xab" +"\xf7\x06\x08\xaa\xf7\x03\x9f\xf7\x09\xcd\x1a\xf7\x0b\x43\xd7\xfb\x05\x1e\xfb\x61\xfb\xde\x15\xa5\xf2\x9a\xb1\xab\xb8\x08\xb6\xa9" +"\xb9\xa3\xbd\x1b\xd1\xb2\x5e\x3c\x6d\x87\x6d\x7f\x46\x1f\x7c\x48\x15\x76\x2e\x7d\x5a\x7a\x66\x08\x3f\x67\x56\x63\x47\x1b\x47\x64" +"\xb8\xd8\xb3\x91\xb9\x9d\xe2\x1f\x0e\xfb\xe9\xf7\xb7\xf9\x9f\x2b\x1d\x58\x1d\xfb\x1e\xf9\x6d\x4e\x0a\x4c\x0a\x81\xf9\x78\x40\x0a" +"\x4c\x0a\xf7\x2c\xf9\x4c\x36\x1d\xfb\x0e\xf8\xc4\x3f\x15\xfc\xeb\x06\x80\x59\x05\xf8\xeb\x06\x7e\x4f\x6b\x1d\xfc\x20\x0e\xfb\xe9" +"\xcb\x1d\x4c\x48\x1d\xfb\x03\x4f\x35\x1d\xfc\x20\xf8\x02\x86\x0a\x82\x7f\x1a\x5a\xad\x6d\xc2\x9f\xa9\x8e\x8f\x9a\x1e\x9b\xd4\x05" +"\x84\x6b\x87\x8a\x7e\x1b\x76\x7d\x96\x9b\x8f\x8c\x90\x8c\x90\x1f\xd9\xf8\x03\x05\xe3\x06\xfb\x8c\xfc\x99\x35\x1d\xfb\xe9\xa5\x0a" +"\xfc\x20\x58\x0a\x88\x81\x16\xf9\x47\x06\xfb\x22\xf9\x6d\x05\x27\x06\xfb\xbf\xfd\x1b\x15\xf7\xd9\xf8\xaa\xee\xfc\xaa\x05\x0e\xe2" +"\xab\x16\xf7\xb4\x20\x1d\x2f\xca\x6a\xc5\xf0\x1a\xf7\x5d\xf7\x17\xf7\x2f\xf7\x3f\xf7\x0b\xdb\x3c\xfb\x0b\x37\x6b\x31\x52\x41\x1e" +"\x61\x55\x61\x6a\x35\x5e\x7a\x39\x18\xf7\xb4\x20\x1d\xfb\x50\x06\xf7\x33\xce\xe8\xf7\x1c\xf7\x38\x1a\xf7\x45\xfb\x07\xf7\x08\xfb" +"\x44\xfb\x05\xfb\x01\x58\x35\x43\x1e\x4c\x41\x64\xfb\x02\x26\x1a\x4c\x9f\x4b\xaf\x5b\x1e\x9d\x72\x9a\x7d\xad\x73\x08\xfb\x55\x06" +"\x0e\xfb\x12\xf8\x92\x21\x0a\x4e\xfb\xaf\x7d\x47\x7a\x69\x65\x68\x19\x6a\x69\x63\x7a\x64\x1b\x59\x64\xa9\xb3\x91\x8e\x9c\x8f\x9f" +"\x1f\xd7\xf7\xf9\x21\x1d\xfb\x32\xfd\x7a\x05\xde\x06\xbe\xf7\x85\x05\x6a\xa8\xa6\x7e\xb6\x1b\xcb\xc6\xac\xca\xbb\x1f\x7b\x42\x05" +"\xd6\x06\xf7\x04\xf8\xa0\x05\x0e\xfb\x50\xf8\x07\xfb\x6e\x15\xd3\xf7\x12\x96\xa3\xb3\x1a\xa3\x82\x9d\x78\x9a\x1e\x7f\x96\x8b\x8b" +"\x4e\xa2\x55\xa0\x18\x46\xa6\x82\x8f\x78\x9c\x08\x71\xa1\x7e\xae\xb7\x1a\xf7\x0c\xec\xf7\x01\xf6\xc9\xb5\x68\x57\x84\x8a\x7f\x89" +"\x7f\x1e\xe3\x06\x8d\x9b\x8c\x9a\x95\x1a\xe7\x41\xc9\xfb\x01\x39\x42\x6b\x4e\x54\x1e\x54\x4f\x68\x33\x3b\x1a\x2e\xbd\x47\xe9\x69" +"\x1e\xe2\x6c\x05\xbc\x79\x96\x83\x78\x1a\x74\x82\x78\x3f\xfb\x0f\x1e\x0e\x84\x27\x0a\xf7\xad\xf9\xed\x2e\x0a\xb4\x5b\x1d\xf7\x93" +"\xf7\x66\x24\x0a\x0e\xf8\x14\xf9\x78\x24\x0a\xf6\xfb\xfa\x31\x0a\x3e\x0a\xf7\x43\xf7\x6c\x24\x0a\x0e\xfb\x1c\xf7\x9a\xf8\x32\x15" +"\xbd\xf7\x7d\x05\xf7\xfc\x20\x1d\xfc\x5a\x06\x48\xfb\xcf\x05\x5c\x06\x79\x39\x05\xbb\x06\x44\xfb\xe0\x05\xe9\x06\xd2\xf7\xe0\x05" +"\xf7\x94\x20\x1d\x0e\xfb\xb1\xf7\x74\xf7\xd7\x15\xa6\xf7\x13\x05\xf7\x7c\x2d\x1d\xfb\xd1\x06\x61\xfb\x5d\x05\x65\x06\x7c\x41\x05" +"\xb0\x06\x56\xfb\x8d\x05\x29\x0a\xf7\x2b\x2d\x1d\x0e\xf7\xf5\xf8\x4d\x5e\x0a\xf7\x07\x06\xf7\x2b\xfb\xed\x05\xbf\x06\x68\xfb\x33" +"\x05\xe8\x06\xbf\xf7\x85\x05\x2b\x06\xfb\x19\xf7\xc2\xf7\xaa\xf7\xed\x05\x23\x06\xfb\x88\xfb\xc2\x05\xfb\x03\x06\xcb\xf7\xc2\x05" +"\x2d\x06\x4b\xfb\xc2\x05\xfb\x03\x06\xfb\x08\xf7\xc2\x05\x22\xe2\x1d\xf4\x06\xf7\xbd\xf7\xed\x05\xf7\x03\x06\x0e\xf7\x25\xf7\xf3" +"\x16\x29\x0a\xf7\x00\x06\xea\xfb\x8d\x05\xb6\x06\x6c\xfb\x35\x20\x0a\xb9\xf7\x7f\x05\x3e\x06\x3d\xf7\x68\xf7\x42\x71\x1d\x29\x41" +"\x1d\x61\xfb\x5d\x05\xfb\x01\x06\x4d\xf7\x5d\x05\x2e\x06\xd5\xfb\x82\xfb\x78\xfb\xb2\x05\xf2\x06\xf7\x5d\xf7\x8d\x05\xed\x06\x0e" +"\x4f\xf7\xda\x74\x15\xd3\x8e\xbf\x9d\xba\xb0\x08\xc9\xbd\xb3\xdb\xda\x1a\xd2\x8d\x1d\x5f\x77\x5a\xbd\x1d\x2b\x06\x86\x71\x89\x7d" +"\x76\x1a\x22\xd2\x44\xf7\x06\x82\x1e\x65\x45\x98\x85\x90\x8c\x8b\x8b\x91\x8c\x19\x8d\x95\x8c\x6d\x1d\x6e\x73\x93\xa0\x62\x33\x1d" +"\xbe\xa7\x5d\x0a\x87\x8b\x89\x7f\x1f\x0e\xfb\x65\xf7\x96\x75\x15\xf7\x01\x94\xdf\xdf\xef\x1a\xba\x77\xab\x5f\xa2\x1e\xd1\xab\xac" +"\xb6\xc8\x1a\xd8\x4d\xc0\x32\xfb\x01\x3d\x46\xfb\x0a\x74\x1e\xe4\x06\xd4\x99\xc9\x1d\x6b\x81\x77\x1b\x67\x06\x7c\x41\x05\xae\x06" +"\xc1\xab\x71\x5f\x4e\x57\x5c\x46\x57\x6e\xa2\xb4\x93\x8c\x93\x8d\x93\x1f\x8f\xa1\x05\x34\x06\x87\x75\x05\x88\x80\x8a\x80\x82\x1a" +"\x3d\xbf\x5b\xe8\x83\x1e\x65\x46\xb1\x1d\x93\xa0\x62\x33\x1d\xbf\xa6\x39\x0a\x87\x87\x8b\x89\x7e\x1f\x0e\x83\xdb\x16\xc0\x0a\xd6" +"\x06\xf7\x1a\xfb\xed\x05\xc5\x06\x68\x32\x1d\xc0\xf7\x8c\x05\x25\x06\xfb\x1a\xf7\xc2\xdd\x1d\x05\x53\x06\xcb\xf7\xc2\x05\x2d\x06" +"\x0e\xfb\x1b\xd2\x16\x29\x0a\xc7\x06\xea\xfb\x8d\x05\xbb\x06\x68\xfb\x33\x20\x0a\xbe\xf7\x7d\x05\x3d\x06\x3d\xf7\x68\xf7\x42\xf7" +"\x82\x05\x2a\x75\x1d\x4f\x41\x1d\x0e\x53\xf7\xd1\xf8\x3f\x15\x57\x06\xcb\xf7\xc2\x05\x2d\x22\x0a\xd4\xf7\xed\x05\xbf\x06\x65\xfb" +"\x4b\x05\xc7\x06\xb1\xf7\x4b\x05\x8d\x06\xf7\x2b\xfb\xed\x05\xf3\x06\xfb\x3e\xf8\x14\xdd\x1d\xb2\xf7\x4c\x05\x4f\x06\x0e\xfb\x3d" +"\xf7\xa6\xf7\xd7\x15\x59\x06\xb5\xf7\x5d\xe1\x1d\xc0\xf7\x8d\x05\xbd\x06\x70\xfb\x14\x05\xc1\x06\xa6\xf7\x14\xe9\xfb\x8d\x05\xed" +"\x06\x21\xf7\xb2\xf7\x42\xf7\x82\x05\x2a\x06\xfb\x27\xfb\x5d\xa6\xf7\x14\x05\x55\x06\x0e\x36\xf7\x5f\xf9\x1b\x15\xfb\x1d\xfd\x1b" +"\x05\x9e\x1d\xfb\xfe\x26\x0a\x0e\xfb\x5e\xf7\x2a\xf8\x56\x15\x34\x1d\x29\x0a\xca\x06\xea\xfb\x8d\x05\xe9\x06\x21\xf7\xb2\xf7\x43" +"\x71\x1d\x54\x06\xb6\xf7\x5d\x05\xfb\xb9\x2a\x0a\x0e\xbb\xf8\xff\xf7\xe0\x15\x44\xfb\xe0\x05\xc3\x06\x68\x32\x1d\xbf\xf7\x8c\x05" +"\x53\x2e\x1d\x2d\x06\x48\xfb\xcf\x05\xfc\x0a\x06\xce\xf7\xcf\x05\x2e\x22\x0a\xd2\xf7\xe0\x05\x0e\xfb\x10\xa8\x0a\xad\x06\x69\xfb" +"\x35\x20\x0a\xbc\xf7\x7f\x05\x69\x25\x1d\x9f\x0a\xbb\xf8\x0b\x74\x15\xf7\x42\x92\xf5\xe0\xdb\xf7\x59\x8f\x1d\x3d\x2c\x59\xfb\x1d" +"\xfb\x10\x1a\x30\xaa\x3f\xc5\x5b\x1e\xb0\x6d\xb0\x7c\xc7\x85\x65\x45\x18\x60\x1d\x93\xa0\xad\x0a\xbe\xa7\x5d\x0a\x87\x8b\x89\x7f" +"\x1f\x0e\xfb\x42\xf7\xa9\x74\x15\xf7\x13\x92\xdd\xd0\xab\xf7\x13\xa6\x0a\x45\x60\x3f\x0a\xdf\x06\x8c\x9a\x05\x8c\x9a\x8c\x96\x8e" +"\x1a\xac\x62\x1d\x4f\xa4\x50\xb4\x68\x1e\xa5\x75\xa7\x7f\xb3\x87\x65\x45\x5d\x1d\xbf\xa6\x39\x0a\x87\x87\x8b\x89\x7e\x1f\x0e\x84" +"\x2f\x1d\x0e\xfb\x42\xf8\x8a\x21\x0a\xfb\x77\xfc\x2c\x56\xf8\x2c\x05\x32\x06\xd7\xfc\xa0\x5c\xfb\x6e\x05\xdf\x06\xba\xf7\x6e\xf7" +"\xbe\xf8\xa0\x05\x0e\x84\xf8\x47\xf7\x72\x15\x98\xcb\xf8\x04\xf8\x4f\x05\xfb\x03\x06\xfb\xb4\xfb\xfa\xfb\x1d\xf7\xfa\x05\xfb\x04" +"\x06\xf7\x4e\xfc\x4f\x7e\x4b\x05\xfb\x2f\x06\x79\x37\x05\xf7\x2f\x06\x6d\xfb\x1e\x05\xe9\x06\xa9\xf7\x1e\x05\xf7\x28\x06\x9d\xdf" +"\x05\x0e\xfb\x42\xf7\xb8\x89\x15\x8c\x8d\xf7\xbe\xf8\xa0\x05\x32\x06\xfb\x77\xfc\x2c\x56\xf8\x2c\x05\x32\x06\xd7\xfc\xa0\x8a\x89" +"\x05\xfb\x0d\x06\x7f\x52\x05\xf7\x0d\x06\x69\xfb\x33\x20\x0a\xad\xf7\x33\x05\xf7\x0b\x06\x97\xc4\x05\x0e\xae\xbe\x0a\xfb\x03\x06" +"\xfb\x8d\xfb\xb2\xfb\x12\xf7\xb2\x05\xfb\x05\x06\xf7\x3b\xfb\xf7\xfb\xe6\xfc\x0a\x05\xf7\x05\xba\x0a\xca\x06\x68\x32\x1d\xbf\xf7" +"\x8c\x05\x29\x06\x0e\xfb\x27\xf7\xf2\xf7\xa1\x15\xf7\x7c\xf7\x93\x05\x2c\x06\xfb\x43\x89\x0a\xb3\x06\x69\xfb\x33\x20\x0a\xbc\xf7" +"\x7d\x05\x38\x06\x0e\xa0\xf8\x9d\x16\xc3\x06\x67\xa9\x1d\x2d\x06\x3c\xfc\x06\x05\x77\x3b\x59\x83\x4f\x1b\x21\x53\xa8\xc1\x91\x8c" +"\x95\x8d\x94\x1f\xc4\x1d\xd9\x56\xf7\x1f\xce\xd3\x95\x9d\xd6\x1e\x0e\xfb\x3e\xf7\xf4\x16\xad\x06\x67\xfb\x33\x20\x0a\xbe\xf7\x7d" +"\x05\x69\x25\x1d\x21\x1d\x55\xfb\x94\x05\x7d\x5c\x64\x85\x63\x1b\x56\x6e\xa0\xb2\x95\x8b\x8f\x8d\x93\x1f\xc3\x1d\xc4\x64\xe1\xbb" +"\xb6\x94\x9f\xbd\x1e\x0e\xa0\xf8\x39\xf7\x8f\x15\xc5\x90\xbd\x93\xbe\x98\x50\xfb\xa9\x18\xe9\x25\x0a\x2d\x06\x3c\xfc\x06\x4b\x7a" +"\x5e\x84\x59\x88\x19\xbb\xf7\x75\x05\x4f\x06\x5b\xfb\x75\x05\x32\x91\x5f\xa6\xbc\x1a\x91\x8c\x95\x8d\x94\x1e\xc4\x1d\xd3\x59\xf7" +"\x20\x88\x1e\x6d\xfb\x21\x05\xc7\x06\x0e\xfb\x3e\xf7\xc6\xf7\x43\x15\xab\x90\xa2\x92\xac\x98\x61\xfb\x5c\x18\xdf\x96\x0a\x6c\x82" +"\x71\x86\x6d\x87\x19\xa5\xf7\x0d\x05\x55\x06\x71\xfb\x0e\x05\x5e\x8f\x75\x9f\xae\x1a\x95\x8b\x8f\x8d\x93\x1e\xc3\x1d\xc0\x66\xe3" +"\x89\x1e\x77\x25\x05\xc1\x06\x0e\xa0\xf7\xca\x36\x0a\xd9\xf8\x04\x05\xa0\xde\xc7\x94\xc6\x1b\xf5\xbb\x71\x54\x88\x1f\x83\x89\x82" +"\x89\x81\x1e\x4e\xfb\xb6\x05\xe9\x06\xc9\xf7\xbb\x05\x8e\x98\x8d\x9a\x93\x1a\xb9\x73\xb5\x63\xa4\x1e\xa5\x62\x5a\x95\x3b\x1b\x3e" +"\x59\x84\x77\x45\x1f\x0e\x20\xdd\x16\xdf\x06\xd4\xf7\xed\x05\xd3\xc8\xca\xb1\xc5\x1b\xb7\xa8\x6d\x5f\x7f\x8b\x88\x89\x83\x1f\x3f" +"\xfb\xfa\x20\x0a\xd7\xf7\xfa\x05\x8f\x9b\x8c\x99\x9b\x1a\xd2\x51\xc4\x41\x4a\x54\x6f\x46\x45\x1e\xc9\xf7\xba\x21\x1d\x0e\xfc\x20" +"\xf7\xe9\x36\x0a\x0e\x8a\xf8\xa3\xdd\x15\x52\x06\x7c\x39\x69\xfb\x33\x05\xe8\x06\xad\xf7\x33\x05\xc3\x95\x1d\xb5\xbb\x81\xdc\x1b" +"\xd7\xbd\x92\x9f\xd0\x1f\x0e\xfb\x30\xf8\x08\xd5\x15\x59\x06\x5f\xfb\x7f\x20\x0a\xaa\xf7\x35\x05\xba\x06\x38\x1d\x37\x06\x55\xfb" +"\x94\x05\x7d\x5c\x64\x85\x63\x1b\x56\x6e\x9f\xb0\x94\x8c\x96\x8e\x97\x1f\xb3\xf7\x4f\x21\x1d\x5d\xfb\x69\x05\x89\x80\x8a\x81\x80" +"\x1a\x4b\xc9\x5f\xe6\xba\xb0\x93\xa0\xb9\x1e\x0e\xf3\xf7\x10\xf8\x24\x15\x7c\x57\x85\x61\x59\x1a\xfb\x43\xf4\x22\xf7\x44\xf7\x07" +"\xf4\xb7\xdd\xdb\x1e\xe5\xe8\xc1\xf7\x1b\xf7\x17\x1a\xf7\x43\x22\xf4\xfb\x44\xfb\x31\xfb\x11\x40\xfb\x27\x31\x1e\xe3\x79\x05\xf2" +"\xcb\xe8\xc2\xf7\x01\x1b\xf7\x14\xd7\x3b\xfb\x1a\x7c\x8b\x82\x89\x76\x1f\x7a\x38\x15\xfb\x37\x56\xfb\x08\x2b\xfb\x24\x1b\xfb\x14" +"\x3f\xdb\xf7\x1b\x99\x8c\x97\x8d\x9d\x1f\x0e\xb4\x5b\x1d\xf8\x47\xf7\x1e\x53\x1d\xf7\xa7\x06\x0e\x3e\x0a\xf7\xf5\xf7\x1a\x15\xfb" +"\xa6\x06\x7b\x46\x05\xf7\xa7\x06\x0e\xf3\x95\x0a\xfb\x48\xae\x0a\xe1\xe4\xbf\xf7\x1a\xf7\x16\x1a\xf7\x48\xfb\x00\xf7\x03\xfb\x44" +"\x1e\xf7\x3e\xfc\x3c\x15\xfb\x34\x5a\xfb\x09\x28\xfb\x21\x1b\xfb\x12\x41\xdb\xf7\x1b\x9a\x8c\x96\x8d\x9d\x1f\x9c\xde\x15\xf7\x36" +"\xbe\xf7\x07\xec\xf7\x21\x1b\xf7\x12\xd5\x3b\xfb\x1b\x7c\x8a\x80\x89\x79\x1f\x0e\x9a\x1d\xe3\xfb\xd2\x15\x20\x69\x49\x4f\x36\x1b" +"\x45\x5f\xbc\xda\x97\x8c\x95\x8d\x9c\x1f\x9b\xd5\x15\xf5\xab\xcf\xc8\xe0\x1b\xd2\xb6\x5a\x3a\x7f\x8a\x82\x89\x7b\x1f\x0e\x68\xf9" +"\x03\xfa\x02\x53\x1d\xf7\xa8\x06\xfc\x65\xfd\xbd\x15\xe3\x06\xc4\xb3\xa5\xcd\xb7\x1f\xf8\x30\xf9\x11\x05\xfb\x06\x06\xfb\xb2\xfc" +"\x62\x26\xf8\x62\x05\xfb\x00\x06\xf7\x22\xfc\xcd\x69\x51\x72\x78\x61\x8a\x19\x53\x06\x0e\xfb\x42\xf8\x94\xf9\x30\x53\x1d\xf7\xa6" +"\x06\x8c\x40\x15\xfb\x7b\xfc\x2c\x5b\xf8\x2c\x05\x36\x06\xcd\xfc\xa0\x59\x36\x05\x61\x73\x78\x7d\x69\x1b\x7c\x81\x8d\x94\x78\x1f" +"\x7b\x3e\x05\x83\xa2\x98\x88\x9f\x1b\xa8\xa9\x94\x9a\xa3\x1f\xa6\x9d\x9c\x9f\xa6\xb9\xf8\x05\xf9\x0e\x18\x0e\xfb\xe9\xf9\x27\xfa" +"\x1d\x6b\x1d\xf7\x86\xb0\x89\x15\xf7\x69\xaf\x8f\xa5\xc8\x1f\xf7\x05\xbd\xdf\xf7\x33\xf7\x37\x1a\xe1\x70\xd6\x5f\xad\x1e\xa4\x6c" +"\x5e\x97\x50\x1b\xfb\x08\x38\x6b\x4d\x5e\x1f\x71\x67\x81\x64\x89\x42\xcc\xab\x18\x97\x07\xc1\x9c\xb1\xad\xa2\x1e\x9c\x96\x95\x8e" +"\xb9\x94\x42\xfc\x1f\x18\x7c\x45\x73\x61\x6e\x81\x08\x77\x06\xd3\x8a\x15\xc8\xbc\x9a\xac\xa1\xf7\x0f\xc2\xf7\xd2\x18\x92\x06\x90" +"\x06\x9e\x06\xa9\x97\x88\x7f\x9e\x1f\xb3\x72\xa1\x51\x3a\x1a\x20\x73\x34\x5c\x4c\x1e\x64\x59\x58\x6e\x54\x88\x08\xf7\x7b\xfb\x7d" +"\x15\xce\x06\xad\xf7\x52\x05\x7d\xaa\x97\x88\x9e\x1b\xf7\x06\xee\xf7\x29\xf7\x42\xec\x64\xbd\x3e\x5c\x63\x77\x66\x6d\x1f\x69\x61" +"\x79\x55\x75\xfb\x0b\x08\xb9\xfb\x00\x15\xae\xf7\x54\x05\xe1\x9b\xad\xbc\xb7\x1b\xb2\xa0\x63\x41\xfb\x20\x56\xfb\x02\x47\x71\x77" +"\x95\xa1\x79\x1f\x0e\xe9\xa7\x16\xf7\xc2\x06\x9b\xd9\x05\x2d\xc6\x60\xd4\xee\x1a\xf7\x53\xf7\x26\xf7\x34\xf7\x41\xd1\xbb\x74\x58" +"\xb1\x1e\xa9\x64\x99\x61\x5a\x1a\x2e\x62\x28\x45\x41\x1e\x5f\x5d\x63\x6f\x3d\x65\x7b\x3d\x18\xf7\xc1\x20\x1d\xfb\x5d\x06\xd7\xb2" +"\xc0\xb3\xb6\xbf\x08\xc6\xd3\xb0\xef\xe6\x1a\xf7\x2f\xfb\x09\xf7\x02\xfb\x39\xfb\x02\x23\x5e\x36\x33\x1e\x3a\x3c\x5d\x21\xfb\x02" +"\x1a\x25\xb3\x44\xe9\x4e\x1e\xfb\x5e\x06\x0e\xfc\x20\xf8\x78\x34\x0a\x0e\xfc\x20\x58\x0a\xf7\xda\xf8\xa9\xf8\x95\x15\x49\x06\xfb" +"\x74\xfc\x95\x05\xdb\x06\xf7\x45\xf8\x2d\xf7\x45\xfc\x2d\x05\xdb\x06\x0e\xf7\xda\xf8\xa9\x16\xf7\x74\xf8\x95\x05\x3b\x06\xfb\x45" +"\xfc\x2d\xfb\x45\xf8\x2d\x05\x3b\x06\xf7\x74\xfc\x95\x05\x0e\xf7\xda\xf8\x8c\xf9\x60\x15\xfb\x60\xfb\x34\xfb\x33\xfb\x5e\xfb\x5b" +"\xf7\x34\xfb\x33\xf7\x5d\xf7\x5b\xf7\x34\xf7\x34\xf7\x5c\xf7\x59\xfb\x35\xf7\x36\xfb\x57\x1f\xa4\x52\x15\xf7\x23\x7e\xf7\x06\xfb" +"\x06\x99\xfb\x25\x08\xfb\xa3\x06\xf7\xa4\x52\x15\x82\xfb\x22\xfb\x0d\xfb\x0f\xfb\x22\x80\x08\xf7\xa8\x07\x53\xfb\xa8\x15\xfb\x27" +"\x99\xfb\x05\xf7\x05\x7d\xf7\x29\x08\xf7\xa6\x06\xfb\xa6\xc4\x15\x99\xf7\x24\xf7\x07\xf7\x06\xf7\x25\x99\x08\xfb\xa4\x07\x0e\x45" +"\xb6\x16\xf8\x9b\xf8\x9b\xfc\x9b\x06\xf8\x67\xfc\x67\x15\xfc\x33\xf8\x33\xf8\x33\x06\x0e\xb8\xf8\xeb\xf8\xf7\x15\x45\xfb\xa4\x06" +"\xfb\x05\x86\x5f\x7b\x6b\x1e\x56\x70\x50\x67\x4c\x1b\x54\x54\xa7\xb7\x6e\x1f\x73\xb0\x84\xb7\xf7\x11\x1a\xf7\xa4\x45\xfb\xa1\x07" +"\xfb\x29\x90\x65\xa6\x5f\x1e\x45\xb5\xd7\x62\xe5\x1b\xde\xd1\xac\xc9\xb8\x1f\xaf\xbc\x91\xaf\xf7\x36\x1a\x0e\x3a\xf8\x27\xf8\x1c" +"\x15\xfb\x69\x06\x41\xf7\x4d\x05\x2d\x06\xf7\x7d\xfc\xd5\x05\xde\x06\xf7\x7d\xf8\xd5\x05\x2d\x06\x22\xfb\x9d\x15\x3f\xfb\x48\x40" +"\xf7\x48\x05\x0e\xf8\xe6\x21\x0a\x37\x06\x4c\xfb\xbd\x05\xfb\x00\x74\x45\x45\x35\x1b\x54\x69\xa8\xbb\x93\x8c\x94\x8d\x95\x52\x0a" +"\x9f\x06\x3c\x6a\x5f\x5d\x5b\x1a\x5b\xb7\x6d\xd2\xa6\x9e\x8e\x92\xa0\x1e\x94\xb8\x05\x85\x7a\x72\x87\x77\x1b\x6d\x72\x9f\xa4\x9f" +"\x96\x9f\xa3\xa1\x1f\xad\xaa\x98\x95\xa2\x97\x08\x0e\xfb\x10\x44\x1d\x0e\xfb\x10\x44\x1d\xf7\x1c\xf7\x53\x65\x1d\xfb\x10\x44\x1d" +"\xf7\x2e\xf7\xe3\x15\x78\x30\x8f\x23\x05\xa9\xa8\x1d\xfb\x10\x44\x1d\xf7\x1d\xf7\x93\x2b\x1d\x4c\x0a\xa4\xf9\x86\xd0\x1d\x6c\xa7" +"\x62\x1f\x83\x5f\x15\xa0\x99\x7d\x77\x70\x7a\x1d\xa6\x1f\x0e\x58\x1d\xf7\x0e\x90\x1d\xbb\x3a\x1d\xdb\xf9\x78\x23\x1d\xbb\x3a\x1d" +"\x83\xf9\x79\x24\x1d\xbb\x3a\x1d\x97\x53\x0a\xbb\x3a\x1d\x8d\xf9\x78\x24\x0a\x0e\xfb\x77\xf7\x4d\xf9\x23\x15\xf4\x06\x49\x6f\x5f" +"\x4d\x4a\x1a\x57\xa8\x64\xc4\x73\x1e\x54\x80\x6a\x7c\x68\x6d\x08\x5a\x61\x6f\x4c\x49\x1a\x58\x9d\x60\xac\x72\x1e\xa6\x77\xaa\x81" +"\xc1\x87\xbd\x87\x18\xd0\x86\x96\x85\x70\x1a\x6b\x81\x76\x3e\xfb\x14\x1e\xe4\x06\xcd\xf7\x04\xa2\xc3\xb8\x1a\x9b\x85\x9a\x82\x96" +"\x1e\x79\x9f\x74\x93\x52\x91\x5a\x90\x18\x4d\x92\x7c\x8e\x79\x94\x08\x75\x96\x7d\xa6\xab\x1a\xc5\xac\xc3\xc1\xaa\x1e\xa4\xb7\xb9" +"\x95\xdb\x1b\xbd\x06\x9b\xd5\x05\x5c\x06\xfb\x03\x58\xa6\xc7\xb5\xa8\xbd\xb4\xa6\x1f\xa1\xac\xae\x93\xc5\x1b\xe5\x06\x9a\xd5\x05" +"\xfc\x07\x06\x0e\xfb\x42\x4d\x0a\xfb\x8a\xf7\x6d\x24\x1d\xfb\x42\x4d\x0a\xfb\x86\xf7\x6c\x2e\x0a\xfb\x42\x46\x1d\x28\xf7\xb7\x15" +"\xfb\x14\xfb\x28\x05\xc7\x45\x0a\xfb\x42\x46\x1d\x32\xf7\x9e\x23\x0a\xfb\x67\xf7\x80\xf9\x23\x15\xf7\x74\x06\x40\x66\x45\x55\x48" +"\x42\x08\x27\xfb\x00\x53\xfb\x0f\xfb\x03\x1a\x55\xa3\x5e\xb1\x77\x1e\xa5\x7e\xa4\x85\xc2\x85\xaf\x87\x18\xc4\x85\x96\x85\x73\x1a" +"\x6e\x7d\x6b\x57\x36\x1e\x83\x7e\x84\x7f\x84\x7f\x08\xe4\x06\xd5\xf7\x13\x99\xac\xbd\x1a\xa5\x81\xa0\x79\x97\x1e\x79\x96\x7b\x8f" +"\x5b\x91\x64\x90\x18\x44\x93\x8b\x8b\x78\x95\x08\x74\x96\x7e\xa5\xac\x1a\xdf\xc2\xf7\x04\xe4\xec\x1e\xd7\xde\xda\xc7\xf2\xc1\x9b" +"\xd5\x18\xfb\xec\x06\x0e\x74\xa2\xf8\xa0\x9a\xf7\x52\x97\x6b\x99\x06\xdc\x0a\xe4\x0b\xb3\x8f\x8f\x8e\x8e\x92\x92\x90\x90\x8e\x9d" +"\x90\x0c\x0c\xf8\xc0\x14\xf9\x36\x15\xb0\x13\x00\xa1\x02\x00\x01\x00\x05\x00\x09\x00\x0e\x00\x13\x00\x1e\x00\x25\x00\x2a\x00\x31" +"\x00\x6d\x00\x74\x00\x79\x00\x99\x00\x9c\x00\xaa\x00\xaf\x00\xb4\x00\xbe\x00\xda\x01\x07\x01\x26\x01\x2b\x01\x39\x01\x3e\x01\x45" +"\x01\x4c\x01\x58\x01\xa8\x01\xbb\x01\xcc\x01\xcf\x01\xeb\x02\x04\x02\x0c\x02\x1a\x02\x2b\x02\x30\x02\x3c\x02\x43\x02\x49\x02\x4f" +"\x02\x5b\x02\x71\x02\x81\x02\x88\x02\x9d\x02\xc1\x02\xc8\x02\xd6\x02\xf8\x03\x1f\x03\x3d\x03\x42\x03\x47\x03\x4c\x03\x51\x03\x5c" +"\x03\x62\x03\x65\x03\x77\x03\x81\x03\x8a\x03\x8e\x03\x92\x03\xb3\x03\xda\x04\x03\x04\x83\x05\x00\x05\x7c\x05\xf4\x06\x0a\x06\x67" +"\x06\x87\x06\x92\x06\xc1\x06\xe7\x07\x0b\x07\x4c\x07\x4f\x07\x71\x07\x99\x07\xb5\x07\xd7\x08\x0c\x08\x34\x08\x66\x08\x99\x08\xae" +"\x08\xb1\x08\xda\x08\xdd\x08\xf8\x08\xfd\x09\x16\x09\x1e\x09\x3d\x09\x43\x09\x4f\x09\x6a\x09\x8c\x09\x9d\x09\xbd\x09\xc4\x09\xd1" +"\x09\xed\x0a\x09\x0a\x23\x0a\x3e\x0a\x49\x0a\x4e\x0a\x51\x0a\x68\x0a\x77\x0a\x7d\x0a\x93\x0a\xa9\x0a\xbd\x0a\xd2\x0a\xdb\x0a\xe4" +"\x0a\xf5\x0b\x09\x0b\x1d\x0b\x2a\x0b\x3d\x0b\x50\x0b\x5a\x0b\x5d\x0b\x63\x0b\x6e\x0b\x7e\x0b\x8d\x0b\x9e\x0b\xa8\x0b\xb2\x0b\xc2" +"\x0b\xd2\x0b\xe2\x0b\xea\x0b\xf1\x0b\xfd\x0c\x01\x0c\x0f\x0c\x1d\x0c\x2a\x0c\x35\x0c\x3e\x0c\x46\x0c\x52\x0c\x5e\x0c\x6a\x0c\x73" +"\x0c\x7f\x0c\x8b\x0c\x96\x0c\xa1\x0c\xac\x0c\xb7\x0c\xc2\x0c\xcb\x0c\xd2\x05\xdf\x06\x0b\xf8\xa0\x15\x0b\x26\x1d\xe9\x06\x0b\x37" +"\x0a\xf3\x06\x0e\x15\x21\x06\xf7\x10\xfb\x28\x05\xc1\x06\x0b\x06\xf7\x2f\xf9\x6d\x05\x0b\x06\x7a\x39\x05\x0b\xf7\x93\xf7\xe0\x80" +"\x0a\x0b\xb8\x1e\xbc\x5a\x3c\xa7\x30\x1b\x7f\x3a\x15\xcf\xcb\x6f\x5f\xad\x1f\xa6\x68\x99\x5c\x4f\x1a\x2f\x6c\x2b\x56\x42\x1e\x3a" +"\x50\x33\x5d\x2a\x1b\x4a\x4c\xa7\xb7\x68\x1f\x70\xae\x7d\xba\xc6\x1a\xe7\xaa\xec\xc0\xd5\x1e\xda\xc5\xe4\xba\xe9\x1b\x0b\xdf\x06" +"\xc0\xf7\x8d\x05\x0b\x06\x7b\x41\x05\x0b\xf9\xb5\x22\x1d\x32\x06\xfb\x13\xfc\xea\xfb\x8e\xf8\xea\x05\x23\x26\x1d\xe4\x06\xf7\x12" +"\xf8\xe3\xf7\x8d\xfc\xe3\x05\xf5\x06\x0b\x4a\x1d\x0e\xf7\xb6\xf8\xa3\x15\x37\x06\xfb\x04\xfc\xa3\x20\x0a\x0b\x15\x21\x74\x1d\x0e" +"\x06\x9d\xdd\x05\x0b\xf8\xad\x61\x1d\x6f\xd7\x5f\x28\x0a\x0b\x15\x99\xd6\x8e\xa5\xab\x1a\xed\x5f\x1d\xdf\xa1\x8c\x95\x8f\x9a\x1f" +"\x9d\xd3\x77\x1d\x81\x8a\x84\x89\x7b\x1f\x0e\xf9\x7c\x16\xf7\xe8\xf9\x6d\x05\x23\x06\xfb\x9b\xfc\xe4\x62\xf8\xe4\x05\x2b\x06\xfb" +"\xb4\xfc\xe4\x7c\xf8\xe4\x05\x27\x06\xab\xfd\x6d\x05\xf1\x06\xf7\xb6\xf8\xe4\xb4\xfc\xe4\x05\x0b\xf9\x75\x22\x1d\xfc\xa1\x26\x0a" +"\xf8\x2a\x06\xfc\xbf\xfc\xc7\x79\x37\x05\xf8\xc0\x20\x1d\xfc\x4a\x06\xf8\xc0\xf8\xc7\x05\x0b\xf9\x59\x35\x0a\x0b\x15\xfc\xf3\xfd" +"\x6d\x05\xc5\x06\xf8\xf3\xf9\x6d\x05\x0b\xa0\x0a\xe9\x06\x0b\x15\x23\x06\x75\x24\x05\x0b\x06\xfb\x1e\xfd\x1b\x05\x0b\x83\xb2\x1b" +"\xe0\xc7\xb8\xcb\xa7\x6d\xa2\x66\x0b\xf9\x96\xf8\x8b\x15\xb9\x1d\x3c\x2c\x5a\xfb\x1d\xfb\x12\x1a\x45\x9f\x4c\xb0\x5c\x1e\x51\xb9" +"\xca\x70\xe4\x1b\xf5\xe7\xb2\xd2\xcc\x1f\xb2\xb6\xab\xc2\xad\xdc\x08\x29\x06\x72\x52\x7b\x6d\x79\x72\x08\x50\x61\x3f\x66\x3c\x1b" +"\x23\x46\xdc\xf7\x0d\xe7\xa9\xee\xbe\xd7\x1f\xe5\xc8\xd4\xb6\xe7\x1b\xf0\xbd\x5a\xfb\x00\x93\x1f\x0b\x15\xac\x0a\x44\x45\x36\x1b" +"\x54\x69\xa8\xbb\x93\x8c\x95\x8d\x94\x52\x0a\x0e\x7e\x0a\xab\x1e\xa3\xa0\x96\xa0\x97\x47\x0a\x81\x62\x74\x4f\x56\x0a\x80\x0a\x0e" +"\xda\x16\xdf\x06\x95\xbb\xf7\xbc\xf7\xca\x3f\xfb\xfa\x05\x73\x1d\x82\x5f\xfb\xbb\xfb\xc7\xd5\xf7\xf3\x21\x1d\x0b\xbc\xd9\xcb\xa0" +"\xd7\xac\xbf\x1f\xc6\xb1\xbc\xa9\xc8\x1b\xca\xb2\x68\x52\x85\x8b\x84\x8a\x82\x1f\x0b\x15\x6a\x1d\xc9\x16\x6a\x1d\x0e\xbb\x1d\xf2" +"\xee\xc3\x28\x05\xcb\x06\x4a\xf7\x2a\x05\x0b\x15\x76\x29\x05\xc2\x06\x50\x80\x73\x6e\x64\x1b\x83\x65\x05\xca\x0b\xd0\x16\x73\x1d" +"\x0b\x1e\xa2\xa3\xa9\x95\xb7\x1b\xc6\xac\x75\x63\x0b\x06\xf7\x48\xf7\x28\x05\x0e\x15\x6e\x79\x81\x83\x0b\xb7\x08\x53\x06\x63\x0b" +"\xf8\x06\xf8\xa0\x3b\x1d\xf7\xb8\xce\x3b\x1d\x0b\xf8\xbb\xf7\xf0\x15\x8c\x9a\x05\x8c\x9b\x8c\x96\x8e\x1a\xab\x93\x1d\x46\x5f\x3f" +"\x0a\x0b\xf8\x14\xf8\xaf\xa0\x1d\xbf\x68\xac\x1e\xac\x6a\x5d\x45\x1d\x0b\xf9\x56\xf9\x6d\x70\x0a\x0b\xf8\x77\x16\xac\x0a\x44\x45" +"\x36\x1b\x54\x69\xa8\xbb\x93\x8c\x95\x8d\x94\x52\x0a\x0b\x94\x0a\x05\x61\x70\x7c\x81\x64\x1b\x81\x87\x8b\x8f\x6e\x1f\x7b\x40\x05" +"\x83\x9d\x97\x89\x9e\x1b\xd2\xbe\xac\xd6\xb6\x1f\xf8\x04\xf9\x0e\x05\x0b\x87\x0a\x62\x74\x4f\x56\x0a\x50\x7b\x4a\x6f\x59\x1f\x46" +"\x65\x55\x67\x46\x66\x1d\x0b\x1f\x98\x64\x7b\x8f\x79\x1b\x71\x6d\x7c\x76\x7b\x1f\x7f\x7c\x83\x7a\x7f\x68\x72\x1d\x91\x95\x89\x87" +"\x96\x1f\x75\xcb\x9c\x87\xa1\x1b\x0b\x15\x2b\x31\x35\x2e\x49\xbe\x59\xcf\xef\xe2\xe0\xec\xcd\x59\xba\x45\x1f\x7e\x54\x15\xb4\xab" +"\x6c\x64\x4e\x57\x55\x4f\x60\x6c\xa8\xb5\xc8\xc0\xc0\xc7\x1f\x0b\x1f\xda\xf8\x07\x21\x1d\x35\xfc\x28\x05\x89\x81\x8a\x80\x7e\x1a" +"\x47\xbf\x62\xe1\xd9\xc4\xa3\xc3\xc5\x1e\x7f\x52\x05\x0b\xf9\x5f\x4a\x1d\x0e\xf9\x79\x41\x0a\x0b\xfa\x3f\x2c\x1d\x0e\x1b\x5a\x6b" +"\xaa\x0a\xa7\x6d\xa2\x66\x87\x87\x8b\x89\x7e\x1f\x0b\xf7\xb0\xf7\xdf\xbf\x0a\x79\x1d\x0e\xc8\x6a\xab\x33\xa1\x1e\x3f\x9e\x05\x53" +"\x99\x6e\x9f\xa5\x1a\x9f\x97\x0b\xd4\x05\x83\x6a\x89\x8b\x7e\x1b\x75\x0b\x05\x53\x7f\x7c\x7d\x58\x1b\x85\x0b\x39\x0a\x86\x0b\x16" +"\xc0\x0a\x0b\xf8\xbc\xbe\x3d\x1d\xa5\x8b\x8b\x96\x1a\xcf\x47\xb8\x21\x4c\x1d\x84\x8a\x84\x6b\x0a\x51\x6c\x51\x1d\xe9\x98\x94\x8c" +"\xb7\x9a\x08\x0b\x83\x1d\x61\xa7\x73\xbb\x97\x8e\x8b\x91\xa3\x1e\x8d\x91\x8d\x8c\x91\x52\x1d\x52\x6b\xa3\xb5\xac\x9e\xac\xa9\x9d" +"\x1f\xa3\x9a\xa8\x93\xbd\x92\xe9\x43\x1d\x0b\xf9\x56\xf8\x97\x15\x91\xa7\x8d\x98\x9a\x1a\xb7\x76\xb8\x5a\x1d\x79\x66\x6e\x70\xe6" +"\x1d\xb4\xe7\x68\x1d\xfb\x0d\xe5\x44\xf7\x2b\xf5\xe2\x92\x1d\x84\x88\x77\x1e\x0b\xf8\xa1\x21\x0a\x7a\x3d\x7c\xac\x81\x99\x75\x9b" +"\x19\x9e\x71\x6b\x96\x69\x1b\x3e\x3d\x65\x4d\x5a\x1f\x55\x48\x66\xfb\x03\x2e\x1a\xfb\x01\xd2\x3f\xf1\xca\xc5\xa6\xc0\xbe\x1e\x87" +"\x78\x05\xfb\x1c\x6e\x56\x55\x20\x1b\x47\x63\xa6\xb8\x1f\x91\x07\x93\x37\x07\x8a\x79\x8a\x81\x88\x1a\x3e\xd0\x59\xf7\x00\xdb\xd1" +"\xa3\xb6\xb8\x1e\xbd\xbb\xa6\xc8\xa6\xf7\x13\xe8\xf8\x4b\x18\xfb\x82\x4d\x15\xcc\xb4\x5b\x40\x4d\x79\x42\x6f\x59\x1f\x4e\x6a\x50" +"\x65\x4f\x1b\x48\x61\xbc\xdb\xc7\x9b\xcb\xa9\xbf\x1f\xcd\xaf\xc2\xaf\xcb\x1b\x0b\xf8\x44\xf8\x21\x15\x61\xfb\x5c\x80\x59\x7d\x68" +"\x78\x76\x19\x74\x78\x6f\x7c\x74\x1b\x64\x74\xac\xc4\xf7\x15\xd6\xf7\x25\xf7\x0d\xf6\x1f\x23\x06\x67\x6e\x6c\x67\x6a\x57\x08\x56" +"\x39\x70\x32\x32\x1a\x22\xbe\x4a\xdd\xc4\xb7\xa6\xc9\xb7\x1e\x93\x71\x91\x80\x96\x7e\x08\x73\x9f\xaf\x7c\xae\x1b\xc0\xc2\xa9\xbd" +"\xb3\x1f\xbe\xcc\xad\xf5\xec\x1a\xd9\x77\xcf\x64\xc0\x1e\x30\x06\xb5\x4e\x9e\x4d\x41\x1a\x46\x79\x40\x6c\x52\x1e\x5e\x72\x64\x6f" +"\x66\x1b\x69\x79\xa2\xb6\x9f\x8c\x93\x96\xbd\x1f\xb5\xf7\x5c\x05\x0b\xf9\xad\xf8\x15\x15\xfb\xc4\x06\x79\x39\x05\xf7\x72\x06\x85" +"\x71\x7c\x49\x6e\x5d\x58\x61\x19\x5f\x55\x51\x76\x46\x1b\x41\x4b\xa7\xb9\x6c\x1f\x73\xae\x7e\xc0\xc4\x1a\xe3\xae\xf2\xc0\xd1\x1e" +"\xda\xc8\xe1\xb6\xec\x1b\xc8\xbd\x79\x69\xac\x1f\xa5\x70\x95\x71\x8c\x5c\x08\xe6\x92\x06\x8f\x07\x91\x07\xf7\x19\x2a\xde\xfb\x31" +"\xfb\x08\x29\x63\x3d\x3d\x1e\x2b\x2b\x51\xfb\x1c\xfb\x16\x1a\x2d\xad\x35\xc3\x5d\x1e\x66\xb8\xcd\x76\xcf\x1b\xcc\xd0\x9d\xaa\xc1" +"\x1f\xa3\x99\x9e\x99\xb1\xab\x8f\x31\x18\xc6\x06\x0b\xab\x9a\x15\xae\x64\xe6\xdc\x05\x57\xbe\xd7\x6f\xe8\x1b\xe4\xdf\xa6\xbd\xce" +"\x1f\xf7\x08\xe1\xd9\xf7\x39\xf7\x32\x1a\xc3\x7f\xbe\x72\xb6\x1e\xe7\xde\x68\xb2\x34\x3d\x05\xbf\x5f\x36\xab\x2a\x1b\xfb\x05\x2a" +"\x60\x37\x3b\x1f\x34\x2f\x55\xfb\x18\xfb\x0e\x1a\x4b\x99\x4d\xa3\x61\x1e\xd7\xcf\x15\x7e\xa9\x86\xa5\xb3\x1a\xf7\x72\xf7\x22\xf7" +"\x42\xf7\x4a\xce\xc8\x72\x60\xaf\x1e\xa7\x5d\x15\x96\x72\x90\x67\x61\x1a\x33\x6b\x28\x57\x43\x1e\x3c\x51\x31\x5c\x2e\x1b\x49\x4e" +"\xa3\xb4\x69\x1f\x0b\xf8\xbb\xf7\xf0\x15\x8c\x9a\x05\x8c\x9a\x8c\x96\x8e\x1a\xac\x93\x1d\x45\x60\x3f\x0a\x0b\x15\x94\x06\xa2\x06" +"\xc1\xa4\x7a\x67\x50\x5d\x62\x4b\x5a\x71\xa0\xb3\x93\x8c\x92\x8d\x98\x1f\x4d\x06\x88\x7b\x8a\x82\x7f\x1a\x47\xb6\x66\xdd\xf5\xdc" +"\xd1\xe7\xb0\x7b\xa1\x66\x98\x1e\xbd\x9f\xa7\xb4\xbf\x1a\xc6\x61\xac\x40\x2e\x50\x5b\x2d\x76\x1e\xc9\x06\x91\xa6\x91\x99\x94\x98" +"\x08\xa1\x9c\xa9\x98\xac\x1b\xb2\xa3\x79\x6c\x6d\x7e\x72\x76\x80\x1f\x80\x77\x77\x88\x58\x1b\x0b\xf8\xc7\xf7\x7e\x15\x99\xd9\x8e" +"\xa3\xab\x1a\xec\x5f\x1d\xe0\xa1\x8c\x94\x8f\x9a\x1f\x9d\xd3\x77\x1d\x82\x8a\x83\x89\x7b\x1f\x0b\xf8\x14\xf8\xaf\x96\x1d\x5c\x39" +"\x4f\x0a\x0b\xf8\x0f\xf8\xaf\x15\x38\x3e\x66\x4b\x58\x1f\x58\x4b\x6a\x25\x30\x1a\xfb\x0f\xda\x3a\xf7\x0d\xe1\xd6\xaf\xcc\xbf\x1e" +"\xbe\xcc\xac\xef\xe4\x1a\xf7\x13\x3d\xdb\xfb\x10\x1e\x88\x3e\xa4\x1d\x0b\x4d\x1d\xe5\xaf\xb3\x92\x98\xb0\x1e\xaa\x96\x9a\x95\xb5" +"\xaf\x08\x84\x07\x87\x07\x61\xa7\x73\xbb\x97\x8e\x8b\x91\xa3\x1e\x8d\x91\x8d\x8c\x91\x52\x1d\x0b\xf8\x7b\xb3\x1d\x96\x8c\x96\x8e" +"\x97\x1f\x99\xcd\x05\x2d\x06\x7d\x4b\x05\x87\x7a\x89\x7a\x7d\x1a\x60\xa0\x61\xad\x6f\x1e\x75\xa6\xae\xc6\x1d\x0b\xf8\x95\xf7\x6a" +"\x15\x5e\xfb\x6a\x05\xf8\x76\x20\x1d\xfc\x18\x06\xc0\xf7\x8e\x05\xf7\xf3\x2f\x0a\xfb\xf3\x06\xbc\xf7\x7d\x05\xf8\x07\x20\x1d\xfd" +"\x02\x06\xfc\x5a\xfd\x6d\x05\xf2\x06\xf7\x16\xf7\x6a\x05\xf7\xb3\xdc\x15\xfb\x82\x06\xf7\x68\xf7\xf4\x05\xef\x06\x0b\x70\x0a\x0e" +"\x86\x0a\x80\x81\x1a\x5a\xad\x6d\xc2\xa0\xa8\x8e\x8f\x9a\x1e\x9b\x5b\x0a\x7d\x96\x9b\x8e\x8c\x90\x8c\x91\x1f\xd9\xf8\x03\x05\xe4" +"\x06\x0b\x15\x49\x1d\xd1\x98\x3f\x1d\x83\x67\x85\x60\x7a\x1a\x62\xa2\x59\xab\x6e\x1e\x66\xb4\xcd\x76\xd8\x1b\xf7\x3c\xf7\x15\xe9" +"\xf7\x26\xaa\x1f\xf7\x01\xf8\x94\x05\x0b\xf7\x8f\xf7\xc9\xa4\x0a\xf5\x4d\xc2\xfb\x0f\x1e\xfb\xc2\x22\x0a\xde\xf8\x1b\x15\xc2\xf7" +"\x94\x05\xf7\x56\xbe\x1d\xe4\x16\xa3\x1d\x5f\xfd\x1b\x15\xf7\x0d\xf8\xc9\x05\xf7\x3f\x06\xf6\xcb\x4d\x22\x2f\x6c\xfb\x0c\x62\x4c" +"\x1f\x3b\x58\x3e\x60\x30\x1b\x0b\xf7\x75\x22\x1d\xfb\x2f\xfd\x6d\x05\x78\x1d\xe6\x1b\xbe\xad\x69\x58\x7f\x8b\x8b\x85\x70\x1f\x42" +"\xfb\xeb\x20\x0a\xdb\xf8\x0c\x05\x8e\x98\x8c\x97\x97\x1a\xda\x59\xba\x36\x40\x5b\x76\x50\x4b\x1e\xc4\xf7\xa2\x05\x0b\x94\x0a\x74" +"\x64\x7a\x80\x66\x8a\x19\x7f\x06\x81\x06\x7c\x8d\x86\x8b\x86\x8c\x7b\x40\x18\x83\x9d\x96\x89\xa0\x1b\xd1\xbd\xac\xd6\xb7\x1f\xf8" +"\x04\xf9\x0e\x05\x0b\xf8\x6b\xf8\x0a\x15\xf7\xd7\xf7\xf7\x05\xfb\x06\x06\xfb\x8c\xfb\xb1\xfb\x11\xf7\xb1\x05\xfb\x05\x06\xf7\x3b" +"\xfb\xf7\xfb\xe7\xfc\x0a\x05\xf7\x07\x06\xf7\x9c\xf7\xc4\xf7\x1a\xfb\xc4\x05\xf7\x07\x06\x0e\x65\x9d\x1b\x95\x91\x93\x97\x90\x88" +"\x8f\x7a\x9a\x1f\x69\xa6\x53\xd0\x76\xb3\x08\xb3\x75\x86\x92\x83\x1b\x83\x86\x88\x82\x86\x1f\x4f\x27\x7a\x75\x56\x5c\x08\x76\x78" +"\x8a\x8a\x82\x1a\x81\x92\x84\x94\x9f\x0b\xbc\x1d\x80\x7c\x83\x7b\x7f\x67\x72\x1d\x90\x42\x1d\xcc\x9c\x87\xa1\x1b\xb7\xb6\x0b\x79" +"\x0a\x0e\xf7\x76\xf7\x8d\x15\xf7\x2e\xf7\x13\xf7\x3c\xfc\x0c\x05\xf7\x02\x06\xfb\x62\xf8\x43\xf7\xfd\xf7\xbe\x05\xfb\x0c\x06\xfc" +"\x50\xfc\x09\xda\xf8\x09\x05\x2d\x22\x0a\x0b\x7c\x0a\x0e\xf7\x48\x21\x0a\xfb\x13\xfc\xec\x9b\x0a\x8e\x8b\x94\x1b\xf7\x07\xb6\xa6" +"\xdd\x9d\x1f\xf7\x1a\xf9\x0d\x05\x0b\xf9\x01\x7f\x0a\x0b\x16\xf7\x8f\x9c\x0a\xfb\x3a\x06\xb7\xf7\x66\x21\x1d\x80\xfc\x56\x15\xae" +"\xf7\x3a\x05\xf7\x38\x06\x0b\x40\x1d\xd6\xbc\xbe\x9e\xa9\x0b\xf7\xe0\x15\x44\xfb\xe0\x05\xe9\x25\x0a\x2d\x06\x48\xfb\xcf\x05\xfc" +"\x09\x06\xce\xf7\xcf\x05\x2d\x22\x0a\xd2\xf7\xe0\x05\x0b\xa2\x1d\xfc\x41\x06\x0b\x15\xf7\x14\xf7\x28\x05\x4b\x06\x23\x79\x1d\x0b" +"\xbd\x0a\x45\x4e\x40\x6f\x94\x7d\xac\x74\x1e\x4a\x6f\x69\x5c\x4f\x1a\x4b\xb8\x64\xd3\xea\xdb\xd3\xdf\xaf\x0b\x06\x2a\xfc\x59\x71" +"\xfb\x07\x4f\x43\x3e\x84\x19\x7a\x39\x05\x9b\x06\xca\x89\xbd\xa2\xc1\xc3\xb7\xba\xa4\xc0\xa2\xf0\xd9\xf8\x05\x18\x0b\xf7\xce\xf9" +"\x1b\x15\xf8\x09\x38\x0a\xe9\x25\x0a\xfc\xc5\x22\x0a\x0e\x15\xf8\x04\xf8\x4f\x05\xfb\x03\x06\xfb\xb5\xfb\xf9\xfb\x1c\xf7\xf9\x05" +"\xfb\x04\x06\xf7\x4e\xfc\x4f\x4e\xfb\xb2\x05\xe9\x06\x0b\x21\x0a\xb4\x1d\x81\x8a\x0b\x7e\x0a\xac\x1e\xa2\xa0\x97\xa0\x96\x47\x0a" +"\x81\x0b\x07\x93\x79\x7a\x8e\x79\x1b\x4a\x52\x55\x4e\x65\xa6\x74\xb7\xba\xb9\xa3\xb3\xa7\x1f\xa0\xa8\x93\xa9\xbc\x1a\x0b\xfb\x52" +"\x37\xf7\x52\x05\x2c\x06\xf7\x12\xfb\x93\xfb\x81\xfb\xa1\x05\xeb\x06\xf7\x45\xf7\x5d\xe1\xfb\x5d\x05\x0b\x15\x75\x24\x05\xc6\x06" +"\x39\x7d\x76\x70\x5b\x1b\x83\x65\xcd\x88\xbd\xbc\x9c\xe0\x19\xa5\xf7\x0b\x05\x0e\x06\x49\xfb\xce\x7d\x45\x5e\x55\x55\x7f\x19\x7b" +"\x41\xf7\x04\x90\xd7\xd8\xa5\xf7\x1b\x19\xbc\xf7\x7d\x05\x0b\x42\x0a\xbb\xbc\xdd\x9c\x1f\x9f\xe8\x05\x0e\xf8\xa0\x91\x0a\x0b\x91" +"\x0a\x0e\x15\xfc\x51\xf7\x63\x7a\x3e\xf7\xf5\xfb\x37\xfc\x3a\xfb\x38\x7a\x3c\xf8\xa9\xf7\x63\x05\x0e\x78\x1d\xe5\x1b\xbd\xb0\x68" +"\x5d\x85\x89\x7d\x87\x7a\x1f\x0b\x9e\x0a\x24\x20\x0a\x0b\x84\x6b\x1b\x6f\x6d\x91\x9a\x5f\x1f\x93\x74\x84\x8c\x74\x1b\x64\x66\x80" +"\x6f\x52\x1f\x0b\xf7\x77\x15\xf7\x11\xfb\x0d\x9d\xdd\x35\xde\xf7\x0d\xdf\x9d\xde\xfb\x45\xfb\x0e\x05\x0b\xf8\x89\x21\x0a\xfb\x7d" +"\xfc\x2b\x5d\xf8\x2b\x05\x31\x06\xcf\xfc\xa4\x57\x3a\x0b\xf8\xaf\xf9\x79\x15\xfb\x03\x26\x60\x39\x3d\x1f\x34\x30\x55\xfb\x19\xfb" +"\x12\x1a\x0b\x06\x38\x1d\x37\x06\x55\xfb\x94\x0b\x30\x8f\x23\x05\xa9\x06\xbb\xf3\x0b\x46\x0a\x77\x1b\x81\x70\x91\x94\x71\x1f\x98" +"\x64\x7b\x8f\x79\x1b\x0b\x15\xfb\x13\xf7\x0d\x79\x39\xe3\x38\xfb\x0f\x37\x79\x38\xf7\x47\xf7\x0e\x05\x0b\xf9\x59\x15\x73\xfb\x03" +"\x8a\xfb\x1a\x05\xb3\x06\xc2\xf7\x1a\xa3\xf7\x03\x05\x0b\x5c\x0a\x86\x8b\x8d\x7d\x1f\x7c\x44\x05\x88\x92\x0b\x06\xce\xb8\x9b\xaf" +"\xb0\x1f\xaf\xad\x9f\xbc\xbd\x1a\xd8\x52\xbf\x39\x1e\x0b\x15\x70\x74\x74\x71\x6f\xa2\x74\xa6\xa6\xa2\xa2\xa6\xa6\x74\xa2\x70\x1f" +"\x0b\xbb\x0a\xf7\x2f\x22\x1d\x37\x06\x75\x0b\xa3\x0a\x0e\x22\x1d\x2d\x26\x1d\x0b\x24\x05\xf3\x06\xf7\x4b\xf2\x15\x23\x06\x0b\xf7" +"\x66\x15\xfb\x14\xfb\x28\x05\xc7\x06\xf7\x49\xf7\x28\x05\x0e\x21\x1d\x5e\xfb\x67\x05\xfb\x84\x06\xb7\xf7\x67\x21\x1d\x0b\x15\xf7" +"\x78\x06\xca\xba\x9b\xaf\xb8\x1f\xca\xbd\xaf\xd7\xdc\x1a\x0b\xf8\x56\xf9\x4c\x53\x1d\xf7\xa7\x06\x0e\x08\x37\x06\x39\x6d\x54\x5f" +"\x43\x1b\x0b\x16\xdf\x06\xd4\xf7\xed\x05\xd3\xc8\xca\xb1\xc5\x1b\xb7\xa8\x0b\xd2\x16\xdf\x06\xbe\xf7\x83\x05\xf7\x84\x06\x59\xfb" +"\x83\x05\x0b\xef\x05\xce\x06\x96\xc0\x05\x48\x06\xc5\xf7\xa4\x05\x5d\x06\x0b\x9f\xa9\x1f\x90\x07\x93\x07\x0e\xf7\xb5\xbc\x0a\xdf" +"\x06\x0b\x38\x1d\x37\x06\x4c\xfb\xbd\x05\xfb\x00\x74\x0b\x62\x33\x1d\x0b\xf7\x01\xfb\x02\xf7\x44\xf7\x08\xed\xb4\xdb\xd9\x1e\x0b" +"\xf7\x1a\xf7\x16\x1a\xf7\x47\xfb\x00\xf7\x03\xfb\x44\x0b\x1e\x87\xb5\x89\xa1\x97\x1a\x9d\x91\x95\x97\x91\x0b\xfb\x60\x05\xfb\x63" +"\x27\x1d\xf7\x63\x06\x0b\x15\xfc\x77\x27\x1d\xf8\x78\x06\x0e\x06\xcb\xf7\xc2\x05\x2d\x06\x0b\x06\xad\xf7\x31\x05\x2e\x06\x69\xfb" +"\x31\x05\x0b\x06\xb7\xf7\x64\x05\x33\x06\x5f\xfb\x64\x05\x0b\x15\x35\xfc\x25\x05\xc7\x06\xe1\xf8\x25\x05\x0b\x1e\xa3\xa0\x96\xa0" +"\x96\x47\x0a\x0b\xf7\xed\x05\xfb\x01\x06\xfb\x87\xfb\xc2\x05\x0b\xda\x69\x1e\x7d\xad\xa6\x87\xd0\x1b\xf7\xac\x0b\x06\xf7\x9d\xf7" +"\xc4\xf7\x1a\xfb\xc4\x05\x0b\x15\x37\x06\xfb\x03\xfc\xa0\x05\xdf\x06\x0b\xf8\xa0\x15\x37\x06\xfb\x03\xfc\xa0\x05\x0b\xaa\xa1\xaa" +"\xbc\x1a\xc3\x62\xad\x4a\x36\x0b\xf8\x68\xf8\x0a\x15\xf7\xd6\xf7\xf7\x05\x0b\x15\x23\x06\x75\x23\x05\xf3\x06\x0e\xe9\x06\xd4\xf7" +"\xed\x05\x0b", 39907 +}; diff --git a/dviware/dvisvgm/src/fonts/NimbusSans-Regular.cff.cpp b/dviware/dvisvgm/src/fonts/NimbusSans-Regular.cff.cpp new file mode 100644 index 0000000000..3df2473a83 --- /dev/null +++ b/dviware/dvisvgm/src/fonts/NimbusSans-Regular.cff.cpp @@ -0,0 +1,1040 @@ +#include "Base14Fonts.hpp" + +extern const MemoryFontData NimbusSans_Regular_cff = { +"\x01\x00\x04\x02\x00\x01\x01\x01\x13\x4e\x69\x6d\x62\x75\x73\x53\x61\x6e\x73\x2d\x52\x65\x67\x75\x6c\x61\x72\x00\x01\x01\x01\x2e" +"\xf9\xbc\x00\xf9\xbd\x01\xf9\xbe\x0c\x00\xf9\xbf\x02\xf9\xbf\x03\xf8\x18\x04\xfb\x2b\x0c\x03\xfb\x66\xfb\xbf\xfa\x9c\xfa\xc7\x05" +"\x1c\x1f\x97\x0f\x1c\x1f\xaa\x11\xbe\x1c\x76\x2b\x12\x01\xa5\x02\x00\x01\x00\x08\x00\x0e\x00\x13\x00\x1d\x00\x24\x00\x2b\x00\x35" +"\x00\x39\x00\x3f\x00\x45\x00\x50\x00\x5a\x00\x5d\x00\x63\x00\x69\x00\x6e\x00\x74\x00\x7a\x00\x84\x00\x8b\x00\x8e\x00\x95\x00\x9c" +"\x00\xa8\x00\xab\x00\xb3\x00\xb7\x00\xbc\x00\xc2\x00\xcd\x00\xd9\x00\xe3\x00\xe7\x00\xf2\x00\xf4\x00\xfa\x01\x04\x01\x0b\x01\x12" +"\x01\x16\x01\x22\x01\x2b\x01\x31\x01\x3c\x01\x41\x01\x4d\x01\x53\x01\x59\x01\x5f\x01\x6b\x01\x6f\x01\x71\x01\x77\x01\x7d\x01\x89" +"\x01\x8b\x01\x91\x01\x9e\x01\xa5\x01\xaf\x01\xb6\x01\xc2\x01\xcd\x01\xd0\x01\xd2\x01\xd5\x01\xdb\x01\xe1\x01\xed\x01\xf0\x01\xf6" +"\x01\xfe\x02\x09\x02\x15\x02\x1a\x02\x1d\x02\x21\x02\x27\x02\x33\x02\x38\x02\x3e\x02\x4b\x02\x52\x02\x59\x02\x60\x02\x6f\x02\x7b" +"\x02\x80\x02\x86\x02\x8c\x02\x97\x02\xa0\x02\xa6\x02\xa8\x02\xb3\x02\xb9\x02\xbf\x02\xc9\x02\xcd\x02\xd3\x02\xda\x02\xe3\x02\xec" +"\x02\xf5\x02\xfe\x03\x07\x03\x10\x03\x19\x03\x22\x03\x2b\x03\x34\x03\x3d\x03\x46\x03\x4f\x03\x58\x03\x61\x03\x6a\x03\x73\x03\x7c" +"\x03\x85\x03\x8e\x03\x97\x03\xa0\x03\xa9\x03\xb2\x03\xbb\x03\xc4\x03\xcd\x03\xd6\x03\xdf\x03\xe8\x03\xf1\x03\xfa\x04\x03\x04\x0c" +"\x04\x15\x04\x1e\x04\x27\x04\x30\x04\x39\x04\x42\x04\x4b\x04\x54\x04\x5d\x04\x66\x04\x6f\x04\x78\x04\x81\x04\x8a\x04\x93\x04\x9c" +"\x04\xa5\x04\xae\x04\xb7\x04\xc0\x04\xc9\x04\xd2\x04\xdb\x04\xe4\x04\xed\x04\xf6\x04\xff\x05\x08\x05\x11\x05\x1a\x05\x23\x05\x2c" +"\x05\x35\x05\x3e\x05\x47\x05\x50\x05\x59\x05\x62\x05\x6b\x05\x74\x05\x7d\x05\x86\x05\x8f\x05\x98\x05\xa1\x05\xaa\x05\xb3\x05\xbc" +"\x05\xc5\x05\xce\x05\xd7\x05\xe0\x05\xe9\x05\xf2\x05\xfb\x06\x04\x06\x0d\x06\x16\x06\x1f\x06\x28\x06\x31\x06\x3a\x06\x43\x06\x4c" +"\x06\x55\x06\x5a\x06\x64\x06\x6b\x06\x74\x06\x7e\x06\x85\x06\x90\x06\x9a\x06\xa3\x06\xac\x06\xb5\x06\xbf\x06\xc6\x06\xcf\x06\xdb" +"\x06\xdf\x06\xe5\x06\xeb\x06\xf6\x07\x00\x07\x03\x07\x11\x07\x15\x07\x1b\x07\x21\x07\x26\x07\x2d\x07\x3a\x07\x40\x07\x46\x07\x50" +"\x07\x57\x07\x5e\x07\x61\x07\x68\x07\x6f\x07\x7b\x07\x86\x07\x8f\x07\x92\x07\x9a\x07\xa3\x07\xae\x07\xb4\x07\xb9\x07\xbe\x07\xc4" +"\x07\xcf\x07\xdb\x07\xe5\x07\xf1\x07\xf5\x08\x00\x08\x05\x08\x0a\x08\x10\x08\x12\x08\x19\x08\x21\x08\x29\x08\x33\x08\x3d\x08\x49" +"\x08\x55\x08\x5c\x08\x60\x08\x6c\x08\x7d\x08\x86\x08\x8c\x08\x97\x08\x9c\x08\xa8\x08\xb4\x08\xba\x08\xc0\x08\xc6\x08\xd2\x08\xd6" +"\x08\xdf\x08\xe3\x08\xe8\x08\xec\x08\xf2\x08\xfd\x09\x0b\x09\x11\x09\x1c\x09\x22\x09\x2e\x09\x38\x09\x40\x09\x42\x09\x48\x09\x55" +"\x09\x5c\x09\x61\x09\x6b\x09\x72\x09\x7e\x09\x88\x09\x93\x09\x9e\x09\xa4\x09\xa7\x09\xa9\x09\xb0\x09\xbc\x09\xca\x09\xcd\x09\xda" +"\x09\xe0\x09\xe7\x09\xed\x09\xf9\x0a\x06\x0a\x09\x0a\x0f\x0a\x17\x0a\x22\x0a\x2e\x0a\x34\x0a\x39\x0a\x42\x0a\x47\x0a\x50\x0a\x53" +"\x0a\x56\x0a\x5a\x0a\x60\x0a\x6c\x0a\x71\x0a\x76\x0a\x7c\x0a\x89\x0a\x90\x0a\x9d\x0a\xa4\x0a\xab\x0a\xb2\x0a\xb9\x0a\xc0\x0a\xc7" +"\x0a\xce\x0a\xd5\x0a\xdc\x0a\xe3\x0a\xea\x0a\xf1\x0a\xf8\x0a\xff\x0b\x06\x0b\x0d\x0b\x14\x0b\x1b\x0b\x22\x0b\x29\x0b\x30\x0b\x37" +"\x0b\x3e\x0b\x45\x0b\x4c\x0b\x53\x0b\x5a\x0b\x61\x0b\x68\x0b\x6f\x0b\x76\x0b\x7d\x0b\x84\x0b\x8b\x0b\x92\x0b\x99\x0b\xa0\x0b\xa7" +"\x0b\xae\x0b\xb5\x0b\xbc\x0b\xc3\x0b\xca\x0b\xd1\x0b\xd8\x0b\xdf\x0b\xe6\x0b\xed\x0b\xf4\x0b\xfb\x0c\x02\x0c\x09\x0c\x10\x0c\x17" +"\x0c\x1e\x0c\x25\x0c\x2c\x0c\x33\x0c\x3a\x0c\x41\x0c\x48\x0c\x4d\x0c\x56\x0c\x5d\x0c\x64\x0c\x73\x0c\x87\x0c\x93\x0c\x98\x0c\x9e" +"\x0c\xa4\x0c\xaf\x0c\xb8\x0c\xbe\x0c\xc0\x0c\xcb\x0c\xd1\x0c\xd7\x0c\xe1\x0c\xe5\x0c\xe9\x0d\x1f\x0d\x5f\x0d\x6a\x41\x45\x61\x63" +"\x75\x74\x65\x41\x62\x72\x65\x76\x65\x41\x6c\x70\x68\x61\x41\x6c\x70\x68\x61\x74\x6f\x6e\x6f\x73\x41\x6d\x61\x63\x72\x6f\x6e\x41" +"\x6f\x67\x6f\x6e\x65\x6b\x41\x72\x69\x6e\x67\x61\x63\x75\x74\x65\x42\x65\x74\x61\x43\x61\x63\x75\x74\x65\x43\x63\x61\x72\x6f\x6e" +"\x43\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x43\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x43\x68\x69\x44\x63\x61\x72\x6f\x6e\x44\x63" +"\x72\x6f\x61\x74\x44\x65\x6c\x74\x61\x45\x62\x72\x65\x76\x65\x45\x63\x61\x72\x6f\x6e\x45\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x45" +"\x6d\x61\x63\x72\x6f\x6e\x45\x6e\x67\x45\x6f\x67\x6f\x6e\x65\x6b\x45\x70\x73\x69\x6c\x6f\x6e\x45\x70\x73\x69\x6c\x6f\x6e\x74\x6f" +"\x6e\x6f\x73\x45\x74\x61\x45\x74\x61\x74\x6f\x6e\x6f\x73\x45\x75\x72\x6f\x47\x61\x6d\x6d\x61\x47\x62\x72\x65\x76\x65\x47\x63\x69" +"\x72\x63\x75\x6d\x66\x6c\x65\x78\x47\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x47\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x48\x62" +"\x61\x72\x48\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x49\x4a\x49\x62\x72\x65\x76\x65\x49\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x49" +"\x6d\x61\x63\x72\x6f\x6e\x49\x6f\x67\x6f\x6e\x65\x6b\x49\x6f\x74\x61\x49\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69\x73\x49\x6f\x74" +"\x61\x74\x6f\x6e\x6f\x73\x49\x74\x69\x6c\x64\x65\x4a\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x4b\x61\x70\x70\x61\x4b\x63\x6f\x6d" +"\x6d\x61\x61\x63\x63\x65\x6e\x74\x4c\x61\x63\x75\x74\x65\x4c\x61\x6d\x62\x64\x61\x4c\x63\x61\x72\x6f\x6e\x4c\x63\x6f\x6d\x6d\x61" +"\x61\x63\x63\x65\x6e\x74\x4c\x64\x6f\x74\x4d\x75\x4e\x61\x63\x75\x74\x65\x4e\x63\x61\x72\x6f\x6e\x4e\x63\x6f\x6d\x6d\x61\x61\x63" +"\x63\x65\x6e\x74\x4e\x75\x4f\x62\x72\x65\x76\x65\x4f\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x4f\x6d\x61\x63\x72\x6f\x6e" +"\x4f\x6d\x65\x67\x61\x74\x6f\x6e\x6f\x73\x4f\x6d\x69\x63\x72\x6f\x6e\x4f\x6d\x69\x63\x72\x6f\x6e\x74\x6f\x6e\x6f\x73\x4f\x73\x6c" +"\x61\x73\x68\x61\x63\x75\x74\x65\x50\x68\x69\x50\x69\x50\x73\x69\x52\x61\x63\x75\x74\x65\x52\x63\x61\x72\x6f\x6e\x52\x63\x6f\x6d" +"\x6d\x61\x61\x63\x63\x65\x6e\x74\x52\x68\x6f\x53\x61\x63\x75\x74\x65\x53\x63\x65\x64\x69\x6c\x6c\x61\x53\x63\x69\x72\x63\x75\x6d" +"\x66\x6c\x65\x78\x53\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x53\x69\x67\x6d\x61\x54\x61\x75\x54\x62\x61\x72\x54\x63\x61\x72" +"\x6f\x6e\x54\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x54\x68\x65\x74\x61\x55\x62\x72\x65\x76\x65\x55\x68\x75\x6e\x67\x61\x72" +"\x75\x6d\x6c\x61\x75\x74\x55\x6d\x61\x63\x72\x6f\x6e\x55\x6f\x67\x6f\x6e\x65\x6b\x55\x70\x73\x69\x6c\x6f\x6e\x55\x70\x73\x69\x6c" +"\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x55\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x55\x72\x69\x6e\x67\x55\x74\x69\x6c\x64" +"\x65\x57\x61\x63\x75\x74\x65\x57\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x57\x64\x69\x65\x72\x65\x73\x69\x73\x57\x67\x72\x61\x76" +"\x65\x58\x69\x59\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x59\x67\x72\x61\x76\x65\x5a\x61\x63\x75\x74\x65\x5a\x64\x6f\x74\x61\x63" +"\x63\x65\x6e\x74\x5a\x65\x74\x61\x61\x62\x72\x65\x76\x65\x61\x65\x61\x63\x75\x74\x65\x61\x66\x69\x69\x30\x30\x32\x30\x38\x61\x66" +"\x69\x69\x31\x30\x30\x31\x37\x61\x66\x69\x69\x31\x30\x30\x31\x38\x61\x66\x69\x69\x31\x30\x30\x31\x39\x61\x66\x69\x69\x31\x30\x30" +"\x32\x30\x61\x66\x69\x69\x31\x30\x30\x32\x31\x61\x66\x69\x69\x31\x30\x30\x32\x32\x61\x66\x69\x69\x31\x30\x30\x32\x33\x61\x66\x69" +"\x69\x31\x30\x30\x32\x34\x61\x66\x69\x69\x31\x30\x30\x32\x35\x61\x66\x69\x69\x31\x30\x30\x32\x36\x61\x66\x69\x69\x31\x30\x30\x32" +"\x37\x61\x66\x69\x69\x31\x30\x30\x32\x38\x61\x66\x69\x69\x31\x30\x30\x32\x39\x61\x66\x69\x69\x31\x30\x30\x33\x30\x61\x66\x69\x69" +"\x31\x30\x30\x33\x31\x61\x66\x69\x69\x31\x30\x30\x33\x32\x61\x66\x69\x69\x31\x30\x30\x33\x33\x61\x66\x69\x69\x31\x30\x30\x33\x34" +"\x61\x66\x69\x69\x31\x30\x30\x33\x35\x61\x66\x69\x69\x31\x30\x30\x33\x36\x61\x66\x69\x69\x31\x30\x30\x33\x37\x61\x66\x69\x69\x31" +"\x30\x30\x33\x38\x61\x66\x69\x69\x31\x30\x30\x33\x39\x61\x66\x69\x69\x31\x30\x30\x34\x30\x61\x66\x69\x69\x31\x30\x30\x34\x31\x61" +"\x66\x69\x69\x31\x30\x30\x34\x32\x61\x66\x69\x69\x31\x30\x30\x34\x33\x61\x66\x69\x69\x31\x30\x30\x34\x34\x61\x66\x69\x69\x31\x30" +"\x30\x34\x35\x61\x66\x69\x69\x31\x30\x30\x34\x36\x61\x66\x69\x69\x31\x30\x30\x34\x37\x61\x66\x69\x69\x31\x30\x30\x34\x38\x61\x66" +"\x69\x69\x31\x30\x30\x34\x39\x61\x66\x69\x69\x31\x30\x30\x35\x30\x61\x66\x69\x69\x31\x30\x30\x35\x31\x61\x66\x69\x69\x31\x30\x30" +"\x35\x32\x61\x66\x69\x69\x31\x30\x30\x35\x33\x61\x66\x69\x69\x31\x30\x30\x35\x34\x61\x66\x69\x69\x31\x30\x30\x35\x35\x61\x66\x69" +"\x69\x31\x30\x30\x35\x36\x61\x66\x69\x69\x31\x30\x30\x35\x37\x61\x66\x69\x69\x31\x30\x30\x35\x38\x61\x66\x69\x69\x31\x30\x30\x35" +"\x39\x61\x66\x69\x69\x31\x30\x30\x36\x30\x61\x66\x69\x69\x31\x30\x30\x36\x31\x61\x66\x69\x69\x31\x30\x30\x36\x32\x61\x66\x69\x69" +"\x31\x30\x30\x36\x35\x61\x66\x69\x69\x31\x30\x30\x36\x36\x61\x66\x69\x69\x31\x30\x30\x36\x37\x61\x66\x69\x69\x31\x30\x30\x36\x38" +"\x61\x66\x69\x69\x31\x30\x30\x36\x39\x61\x66\x69\x69\x31\x30\x30\x37\x30\x61\x66\x69\x69\x31\x30\x30\x37\x31\x61\x66\x69\x69\x31" +"\x30\x30\x37\x32\x61\x66\x69\x69\x31\x30\x30\x37\x33\x61\x66\x69\x69\x31\x30\x30\x37\x34\x61\x66\x69\x69\x31\x30\x30\x37\x35\x61" +"\x66\x69\x69\x31\x30\x30\x37\x36\x61\x66\x69\x69\x31\x30\x30\x37\x37\x61\x66\x69\x69\x31\x30\x30\x37\x38\x61\x66\x69\x69\x31\x30" +"\x30\x37\x39\x61\x66\x69\x69\x31\x30\x30\x38\x30\x61\x66\x69\x69\x31\x30\x30\x38\x31\x61\x66\x69\x69\x31\x30\x30\x38\x32\x61\x66" +"\x69\x69\x31\x30\x30\x38\x33\x61\x66\x69\x69\x31\x30\x30\x38\x34\x61\x66\x69\x69\x31\x30\x30\x38\x35\x61\x66\x69\x69\x31\x30\x30" +"\x38\x36\x61\x66\x69\x69\x31\x30\x30\x38\x37\x61\x66\x69\x69\x31\x30\x30\x38\x38\x61\x66\x69\x69\x31\x30\x30\x38\x39\x61\x66\x69" +"\x69\x31\x30\x30\x39\x30\x61\x66\x69\x69\x31\x30\x30\x39\x31\x61\x66\x69\x69\x31\x30\x30\x39\x32\x61\x66\x69\x69\x31\x30\x30\x39" +"\x33\x61\x66\x69\x69\x31\x30\x30\x39\x34\x61\x66\x69\x69\x31\x30\x30\x39\x35\x61\x66\x69\x69\x31\x30\x30\x39\x36\x61\x66\x69\x69" +"\x31\x30\x30\x39\x37\x61\x66\x69\x69\x31\x30\x30\x39\x38\x61\x66\x69\x69\x31\x30\x30\x39\x39\x61\x66\x69\x69\x31\x30\x31\x30\x30" +"\x61\x66\x69\x69\x31\x30\x31\x30\x31\x61\x66\x69\x69\x31\x30\x31\x30\x32\x61\x66\x69\x69\x31\x30\x31\x30\x33\x61\x66\x69\x69\x31" +"\x30\x31\x30\x34\x61\x66\x69\x69\x31\x30\x31\x30\x35\x61\x66\x69\x69\x31\x30\x31\x30\x36\x61\x66\x69\x69\x31\x30\x31\x30\x37\x61" +"\x66\x69\x69\x31\x30\x31\x30\x38\x61\x66\x69\x69\x31\x30\x31\x30\x39\x61\x66\x69\x69\x31\x30\x31\x31\x30\x61\x66\x69\x69\x31\x30" +"\x31\x34\x35\x61\x66\x69\x69\x31\x30\x31\x39\x33\x61\x66\x69\x69\x31\x30\x38\x34\x36\x61\x66\x69\x69\x36\x31\x32\x34\x38\x61\x66" +"\x69\x69\x36\x31\x32\x38\x39\x61\x66\x69\x69\x36\x31\x33\x35\x32\x61\x6c\x70\x68\x61\x61\x6c\x70\x68\x61\x74\x6f\x6e\x6f\x73\x61" +"\x6d\x61\x63\x72\x6f\x6e\x61\x6e\x67\x6c\x65\x6c\x65\x66\x74\x61\x6e\x67\x6c\x65\x72\x69\x67\x68\x74\x61\x6f\x67\x6f\x6e\x65\x6b" +"\x61\x70\x70\x72\x6f\x78\x65\x71\x75\x61\x6c\x61\x72\x69\x6e\x67\x61\x63\x75\x74\x65\x61\x72\x72\x6f\x77\x62\x6f\x74\x68\x61\x72" +"\x72\x6f\x77\x64\x6f\x77\x6e\x61\x72\x72\x6f\x77\x6c\x65\x66\x74\x61\x72\x72\x6f\x77\x72\x69\x67\x68\x74\x61\x72\x72\x6f\x77\x75" +"\x70\x61\x72\x72\x6f\x77\x75\x70\x64\x6e\x61\x72\x72\x6f\x77\x75\x70\x64\x6e\x62\x73\x65\x62\x65\x74\x61\x63\x61\x63\x75\x74\x65" +"\x63\x63\x61\x72\x6f\x6e\x63\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x63\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x63\x68\x69\x63\x69" +"\x72\x63\x6c\x65\x6d\x75\x6c\x74\x69\x70\x6c\x79\x63\x6c\x75\x62\x64\x63\x61\x72\x6f\x6e\x64\x63\x72\x6f\x61\x74\x64\x65\x6c\x74" +"\x61\x64\x69\x61\x6d\x6f\x6e\x64\x64\x69\x65\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73\x65\x62\x72\x65\x76\x65\x65\x63\x61\x72\x6f" +"\x6e\x65\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x65\x6c\x65\x6d\x65\x6e\x74\x65\x6d\x61\x63\x72\x6f\x6e\x65\x6e\x67\x65\x6f\x67\x6f" +"\x6e\x65\x6b\x65\x70\x73\x69\x6c\x6f\x6e\x65\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x65\x71\x75\x69\x76\x61\x6c\x65\x6e\x63" +"\x65\x65\x73\x74\x69\x6d\x61\x74\x65\x64\x65\x74\x61\x65\x74\x61\x74\x6f\x6e\x6f\x73\x65\x78\x63\x6c\x61\x6d\x64\x62\x6c\x65\x78" +"\x69\x73\x74\x65\x6e\x74\x69\x61\x6c\x66\x65\x6d\x61\x6c\x65\x66\x72\x61\x6e\x63\x67\x61\x6d\x6d\x61\x67\x62\x72\x65\x76\x65\x67" +"\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x67\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x67\x64\x6f\x74\x61\x63\x63\x65\x6e\x74" +"\x67\x72\x65\x61\x74\x65\x72\x65\x71\x75\x61\x6c\x68\x62\x61\x72\x68\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x68\x65\x61\x72\x74" +"\x68\x6f\x75\x73\x65\x69\x62\x72\x65\x76\x65\x69\x6a\x69\x6d\x61\x63\x72\x6f\x6e\x69\x6e\x66\x69\x6e\x69\x74\x79\x69\x6e\x74\x65" +"\x67\x72\x61\x6c\x69\x6e\x74\x65\x67\x72\x61\x6c\x62\x74\x69\x6e\x74\x65\x67\x72\x61\x6c\x74\x70\x69\x6e\x74\x65\x72\x73\x65\x63" +"\x74\x69\x6f\x6e\x69\x6e\x76\x73\x6d\x69\x6c\x65\x66\x61\x63\x65\x69\x6f\x67\x6f\x6e\x65\x6b\x69\x6f\x74\x61\x69\x6f\x74\x61\x64" +"\x69\x65\x72\x65\x73\x69\x73\x69\x6f\x74\x61\x64\x69\x65\x72\x65\x73\x69\x73\x74\x6f\x6e\x6f\x73\x69\x6f\x74\x61\x74\x6f\x6e\x6f" +"\x73\x69\x74\x69\x6c\x64\x65\x6a\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x6b\x61\x70\x70\x61\x6b\x63\x6f\x6d\x6d\x61\x61\x63\x63" +"\x65\x6e\x74\x6b\x67\x72\x65\x65\x6e\x6c\x61\x6e\x64\x69\x63\x6c\x61\x63\x75\x74\x65\x6c\x61\x6d\x62\x64\x61\x6c\x63\x61\x72\x6f" +"\x6e\x6c\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6c\x64\x6f\x74\x6c\x65\x73\x73\x65\x71\x75\x61\x6c\x6c\x69\x72\x61\x6c\x6f" +"\x6e\x67\x73\x6d\x61\x6c\x65\x6d\x69\x6e\x75\x74\x65\x6d\x75\x73\x69\x63\x61\x6c\x6e\x6f\x74\x65\x6d\x75\x73\x69\x63\x61\x6c\x6e" +"\x6f\x74\x65\x64\x62\x6c\x6e\x61\x63\x75\x74\x65\x6e\x61\x70\x6f\x73\x74\x72\x6f\x70\x68\x65\x6e\x63\x61\x72\x6f\x6e\x6e\x63\x6f" +"\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x6e\x6f\x74\x65\x6c\x65\x6d\x65\x6e\x74\x6e\x6f\x74\x65\x71\x75\x61\x6c\x6e\x75\x6f\x62\x72" +"\x65\x76\x65\x6f\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x6f\x6d\x61\x63\x72\x6f\x6e\x6f\x6d\x65\x67\x61\x6f\x6d\x65\x67" +"\x61\x74\x6f\x6e\x6f\x73\x6f\x6d\x69\x63\x72\x6f\x6e\x6f\x6d\x69\x63\x72\x6f\x6e\x74\x6f\x6e\x6f\x73\x6f\x72\x74\x68\x6f\x67\x6f" +"\x6e\x61\x6c\x6f\x73\x6c\x61\x73\x68\x61\x63\x75\x74\x65\x70\x61\x72\x74\x69\x61\x6c\x64\x69\x66\x66\x70\x65\x73\x65\x74\x61\x70" +"\x68\x69\x70\x69\x70\x72\x6f\x64\x75\x63\x74\x70\x72\x6f\x70\x65\x72\x73\x75\x62\x73\x65\x74\x70\x72\x6f\x70\x65\x72\x73\x75\x70" +"\x65\x72\x73\x65\x74\x70\x73\x69\x71\x75\x6f\x74\x65\x72\x65\x76\x65\x72\x73\x65\x64\x72\x61\x63\x75\x74\x65\x72\x61\x64\x69\x63" +"\x61\x6c\x72\x63\x61\x72\x6f\x6e\x72\x63\x6f\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x72\x65\x76\x6c\x6f\x67\x69\x63\x61\x6c\x6e\x6f" +"\x74\x72\x68\x6f\x73\x61\x63\x75\x74\x65\x73\x63\x65\x64\x69\x6c\x6c\x61\x73\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x73\x63\x6f" +"\x6d\x6d\x61\x61\x63\x63\x65\x6e\x74\x73\x65\x63\x6f\x6e\x64\x73\x69\x67\x6d\x61\x73\x6d\x69\x6c\x65\x66\x61\x63\x65\x73\x70\x61" +"\x64\x65\x73\x75\x6d\x6d\x61\x74\x69\x6f\x6e\x73\x75\x6e\x74\x61\x75\x74\x62\x61\x72\x74\x63\x61\x72\x6f\x6e\x74\x63\x6f\x6d\x6d" +"\x61\x61\x63\x63\x65\x6e\x74\x74\x68\x65\x74\x61\x74\x6f\x6e\x6f\x73\x75\x62\x72\x65\x76\x65\x75\x68\x75\x6e\x67\x61\x72\x75\x6d" +"\x6c\x61\x75\x74\x75\x6d\x61\x63\x72\x6f\x6e\x75\x6e\x64\x65\x72\x73\x63\x6f\x72\x65\x64\x62\x6c\x75\x6e\x69\x30\x30\x41\x30\x75" +"\x6e\x69\x30\x30\x41\x44\x75\x6e\x69\x30\x32\x31\x41\x75\x6e\x69\x30\x32\x31\x42\x75\x6e\x69\x30\x32\x43\x39\x75\x6e\x69\x30\x33" +"\x38\x37\x75\x6e\x69\x30\x33\x39\x34\x75\x6e\x69\x30\x33\x41\x39\x75\x6e\x69\x30\x33\x42\x43\x75\x6e\x69\x30\x33\x43\x32\x75\x6e" +"\x69\x30\x34\x30\x30\x75\x6e\x69\x30\x34\x30\x44\x75\x6e\x69\x30\x34\x35\x30\x75\x6e\x69\x30\x34\x35\x44\x75\x6e\x69\x30\x34\x39" +"\x32\x75\x6e\x69\x30\x34\x39\x33\x75\x6e\x69\x30\x34\x39\x36\x75\x6e\x69\x30\x34\x39\x37\x75\x6e\x69\x30\x34\x39\x38\x75\x6e\x69" +"\x30\x34\x39\x39\x75\x6e\x69\x30\x34\x39\x41\x75\x6e\x69\x30\x34\x39\x42\x75\x6e\x69\x30\x34\x39\x43\x75\x6e\x69\x30\x34\x39\x44" +"\x75\x6e\x69\x30\x34\x41\x30\x75\x6e\x69\x30\x34\x41\x31\x75\x6e\x69\x30\x34\x41\x32\x75\x6e\x69\x30\x34\x41\x33\x75\x6e\x69\x30" +"\x34\x41\x41\x75\x6e\x69\x30\x34\x41\x42\x75\x6e\x69\x30\x34\x41\x45\x75\x6e\x69\x30\x34\x41\x46\x75\x6e\x69\x30\x34\x42\x30\x75" +"\x6e\x69\x30\x34\x42\x31\x75\x6e\x69\x30\x34\x42\x32\x75\x6e\x69\x30\x34\x42\x33\x75\x6e\x69\x30\x34\x42\x36\x75\x6e\x69\x30\x34" +"\x42\x37\x75\x6e\x69\x30\x34\x42\x38\x75\x6e\x69\x30\x34\x42\x39\x75\x6e\x69\x30\x34\x42\x41\x75\x6e\x69\x30\x34\x42\x42\x75\x6e" +"\x69\x30\x34\x43\x30\x75\x6e\x69\x30\x34\x43\x42\x75\x6e\x69\x30\x34\x43\x43\x75\x6e\x69\x30\x34\x44\x38\x75\x6e\x69\x30\x34\x45" +"\x32\x75\x6e\x69\x30\x34\x45\x33\x75\x6e\x69\x30\x34\x45\x38\x75\x6e\x69\x30\x34\x45\x39\x75\x6e\x69\x30\x34\x45\x45\x75\x6e\x69" +"\x30\x34\x45\x46\x75\x6e\x69\x32\x30\x33\x45\x75\x6e\x69\x32\x30\x41\x46\x75\x6e\x69\x32\x31\x32\x36\x75\x6e\x69\x32\x32\x31\x35" +"\x75\x6e\x69\x32\x32\x31\x39\x75\x6e\x69\x32\x32\x32\x37\x75\x6e\x69\x32\x32\x32\x38\x75\x6e\x69\x32\x32\x39\x35\x75\x6e\x69\x32" +"\x35\x41\x31\x75\x6e\x69\x6f\x6e\x75\x6e\x69\x76\x65\x72\x73\x61\x6c\x75\x6f\x67\x6f\x6e\x65\x6b\x75\x70\x73\x69\x6c\x6f\x6e\x75" +"\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x75\x70\x73\x69\x6c\x6f\x6e\x64\x69\x65\x72\x65\x73\x69\x73\x74\x6f\x6e" +"\x6f\x73\x75\x70\x73\x69\x6c\x6f\x6e\x74\x6f\x6e\x6f\x73\x75\x72\x69\x6e\x67\x75\x74\x69\x6c\x64\x65\x77\x61\x63\x75\x74\x65\x77" +"\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x77\x64\x69\x65\x72\x65\x73\x69\x73\x77\x67\x72\x61\x76\x65\x78\x69\x79\x63\x69\x72\x63" +"\x75\x6d\x66\x6c\x65\x78\x79\x67\x72\x61\x76\x65\x7a\x61\x63\x75\x74\x65\x7a\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x7a\x65\x74\x61" +"\x31\x2e\x30\x30\x28\x55\x52\x57\x29\x2b\x2b\x2c\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x32\x30\x31\x34\x20\x62\x79\x20\x28\x55" +"\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69\x67\x6e\x20\x26\x20\x44\x65\x76\x65\x6c\x6f\x70\x6d\x65\x6e\x74\x43\x6f\x70\x79\x72\x69" +"\x67\x68\x74\x20\x28\x55\x52\x57\x29\x2b\x2b\x2c\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x32\x30\x31\x34\x20\x62\x79\x20\x28\x55" +"\x52\x57\x29\x2b\x2b\x20\x44\x65\x73\x69\x67\x6e\x20\x26\x20\x44\x65\x76\x65\x6c\x6f\x70\x6d\x65\x6e\x74\x4e\x69\x6d\x62\x75\x73" +"\x20\x53\x61\x6e\x73\x00\xa2\x02\x00\x01\x00\x05\x00\x09\x00\x11\x00\x1e\x00\x21\x00\x75\x00\x9a\x00\xa6\x00\xae\x00\xeb\x00\xf0" +"\x00\xf3\x00\xfb\x01\x13\x01\x1e\x01\x23\x01\x28\x01\x49\x01\xa2\x01\xc9\x01\xfa\x02\x20\x02\x3c\x02\x4f\x02\x53\x02\x57\x02\x65" +"\x02\x6b\x02\x70\x02\x8f\x02\xac\x02\xc8\x02\xcb\x02\xcf\x02\xd4\x02\xdf\x02\xe9\x02\xf7\x03\x0b\x03\x11\x03\x19\x03\x1e\x03\x51" +"\x03\x77\x03\xa3\x03\xb0\x03\xcd\x03\xd1\x03\xe2\x03\xf6\x04\x09\x04\x14\x04\x1d\x04\x2d\x04\x34\x04\x3c\x04\x42\x04\x49\x04\x50" +"\x04\x57\x04\x61\x04\x6a\x04\x70\x04\x76\x04\x7c\x04\xfc\x05\x61\x05\xc4\x05\xd6\x06\x08\x06\x4f\x06\x9a\x06\x9d\x06\xdd\x07\x15" +"\x07\x32\x07\x49\x07\x66\x07\x98\x07\xc8\x07\xf5\x08\x21\x08\x4e\x08\x5d\x08\x89\x08\xa8\x08\xcf\x08\xd3\x08\xea\x08\xf4\x08\xfd" +"\x09\x05\x09\x0d\x09\x16\x09\x39\x09\x5a\x09\x6e\x09\x8f\x09\xaf\x09\xbe\x09\xdc\x09\xf9\x0a\x16\x0a\x31\x0a\x48\x0a\x63\x0a\x7c" +"\x0a\x96\x0a\xa5\x0a\xaa\x0a\xb5\x0a\xbe\x0a\xd5\x0a\xdc\x0a\xf3\x0b\x09\x0b\x1f\x0b\x35\x0b\x42\x0b\x57\x0b\x64\x0b\x70\x0b\x81" +"\x0b\x8c\x0b\x9e\x0b\xb0\x0b\xc0\x0b\xd1\x0b\xe2\x0b\xf2\x0c\x00\x0c\x0f\x0c\x1e\x0c\x27\x0c\x35\x0c\x43\x0c\x4f\x0c\x5c\x0c\x69" +"\x0c\x76\x0c\x7d\x0c\x88\x0c\x94\x0c\xa0\x0c\xac\x0c\xb8\x0c\xc2\x0c\xcd\x0c\xd8\x0c\xe3\x0c\xe8\x0c\xef\x0c\xf9\x0d\x03\x0d\x0d" +"\x0d\x17\x0d\x21\x0d\x29\x0d\x31\x0d\x3a\x0d\x43\x0d\x4a\xf9\x6d\x15\x0b\x15\x2b\xac\x1d\x58\x1d\xf7\x36\xf2\x58\x1d\x0e\xaf\x1d" +"\x07\xc7\x89\xb2\xba\x8c\xd7\x08\xf2\x07\x0e\x3b\x1d\x0e\xf8\xab\x9f\x1d\xe8\x47\xbd\xfb\x15\x3e\x4e\x75\x64\x67\x1e\x73\x70\x81" +"\x6d\x89\x57\x08\xdf\x06\xcb\x92\xb1\xa8\xd9\x1b\xd7\xb4\x6f\x59\x1f\x75\x07\x8a\x67\x79\x7e\x47\x82\xfb\x0a\x7c\x79\x87\x6b\x7e" +"\x08\x4e\x71\x6c\x5d\x47\x1a\x2c\xcd\x4f\xf5\xcd\xc0\xa2\xc1\xc6\x1e\x55\x91\xa5\x74\xc1\x1b\x9d\x96\x8d\x92\xa7\x1f\xfb\x26\x81" +"\x1d\x0b\xf8\x76\x16\xf8\xa0\x38\xfb\xbd\x07\x20\x53\x45\x34\x49\x61\xb3\xca\x1e\xf8\x07\x38\xfc\x28\x07\x34\xcc\x53\xf1\xd8\xbc" +"\xa6\xd0\xbc\x1e\x42\x07\x0b\x79\x1d\xdc\x2b\x05\xca\x06\x2b\xf7\x2a\x05\x0e\x15\xfb\xa6\x45\xf7\xa6\x06\x0e\xf8\x95\xf7\x7e\x15" +"\xdb\x85\xbb\x7c\xb2\x1e\xe1\x69\x3b\x5d\x1d\xfb\x41\xfb\x41\xe5\x22\xf7\x28\xf7\x0c\xde\xcf\xf7\x06\xa0\x1f\x37\x06\x46\x74\x5c" +"\x67\x48\x1b\x56\x5e\xa3\xb7\x6f\x1f\x77\xa9\x84\xa9\x8a\xbf\x08\x8d\xcf\x5c\x1d\x49\x2d\x1f\x0b\xf7\xa4\x3d\x1d\x0b\x99\x1d\x0e" +"\x20\x1d\x2d\xfd\x6d\xe9\x06\x0b\xf8\xbc\x20\x1d\x88\x1d\xfb\x28\xf5\x2f\xf7\x41\xf7\x3f\xf7\x02\xe9\xf7\x26\x1e\xf8\x94\x07\x0b" +"\xf7\x45\xf8\xa0\x15\x38\xfc\xa0\xde\x06\x0b\xf9\x59\x45\x1d\x0b\x37\xfc\xa0\xdf\x0b\xf8\x4a\xf8\x0e\x15\xf2\x8a\x47\xc5\x4c\x1d" +"\xfb\x0d\x8f\xcf\x51\xf7\x1d\x1b\xf7\x18\xdf\xcc\xf0\xd9\x5f\xb6\x23\xa4\x1f\x51\x1d\x0b\xf9\x59\xf8\x15\x15\xfb\xc4\x39\xf7\x72" +"\x77\x06\xfb\x16\x2b\x2d\xfb\x19\x41\x48\xa6\xba\x60\x1e\x5b\xbf\x6e\xe2\xe5\x1a\xf7\x47\xf1\xf7\x0a\xf7\x2e\xf7\x03\xdb\x52\x2d" +"\x9f\x1e\xea\x06\xf7\x28\x71\xfb\x04\xe0\xfb\x3b\x1b\x32\x43\x74\x5c\x52\x1f\x36\x45\x5c\xfb\x05\xfb\x17\x1a\xfb\x74\xf7\x1d\xfb" +"\x30\xf7\x59\xee\xd9\xb0\xda\xd3\x1e\xa2\x2a\x05\xc6\x06\x0b\xf8\x6b\xf7\xf0\x15\x96\x1d\xfb\x3d\xe5\x20\xf7\x22\xf7\x11\xda\xd6" +"\xf7\x14\x95\x1f\x37\x06\x37\x7d\x60\x61\x44\x1b\x2f\x54\xd6\xf7\x10\xf7\x17\xb8\x1d\x0b\xf9\x7c\x16\xf7\x4d\xf9\x6d\x05\x23\x06" +"\xfb\x1a\xfc\xe4\xfb\x3a\xf8\xe4\x05\x27\x06\xfb\x36\xfc\xe4\xfb\x1d\xf8\xe4\x05\x23\x06\xf7\x4f\xfd\x6d\x05\xf1\x06\xf7\x37\xf8" +"\xeb\xf7\x3c\xfc\xeb\x05\x0b\xd1\xf8\xa0\x15\xfc\xa0\xdf\xf7\xb5\x07\xf6\xc3\xd1\xe1\xcd\xb5\x63\x4c\x1e\xfb\xff\xde\xf8\x20\x07" +"\xe2\x4a\xc3\x26\x3d\x59\x6d\x42\x5d\x1e\xe3\x07\x0b\xf9\x1a\x20\x1d\x33\xfc\xe8\x06\xfc\x11\xf8\xe8\x05\x26\xfd\x6d\xe3\xf8\xe3" +"\x06\xf8\x0d\xfc\xe3\x05\xf4\x06\x0b\x15\x2b\xfb\x2a\x05\xcc\x06\xda\xeb\xdb\x2b\x05\xca\x06\x2b\xf7\x2a\x05\x0e\xfa\x26\x22\x1d" +"\xf7\x6c\x21\x1d\xf7\x41\x20\x1d\x2e\xfd\x6d\xf8\x59\xdd\xfb\xfc\x06\x0b\x15\x23\x23\xf3\x06\x0b\xf7\x29\xf7\x28\x0b\xf8\xaf\x15" +"\xfb\x28\x33\x22\xfb\x44\xfb\x45\xe3\x23\x3c\x1d\xe4\xf4\xf7\x40\xf7\x4a\x35\xf2\xfb\x2c\x1f\x8c\x3e\x90\x1d\x0b\xf8\x4f\xf8\xa0" +"\x15\xfc\x1b\x42\xf7\xb8\x06\xfb\xcd\xfc\x0c\x05\x40\xf8\x3e\xd4\xfb\xd9\x07\xf7\xcb\xf8\x0d\x05\x0b\xdc\x16\xdf\xbb\x06\xf7\x7a" +"\xf7\xca\x05\xfb\xfa\xdf\xf8\xa0\x37\x5f\x07\xfb\x7a\xfb\xc7\x05\xf7\xf3\x37\x07\x0b\x90\x1d\x0e\xf9\x78\x21\x1d\xb9\x1d\x3a\x54" +"\x1d\xf7\x2c\xf9\x6d\x15\x37\xfd\x6d\xdf\x06\x0b\xf7\x55\x20\x1d\x2e\xfd\x6d\xe8\x06\x0b\x15\xfc\x58\xfd\x6d\x05\xc5\x06\xf8\x58" +"\xf9\x6d\x05\x0b\xd0\x07\x8f\x78\x80\x8c\x7a\x1b\x3e\x5d\x5f\x40\x1f\x32\x45\x47\xd1\xfc\x5c\x0b\xd0\x49\x1d\x37\x06\x0b\xf8\x2c" +"\x05\x32\x06\xf7\x45\x0b\x16\xdf\xf8\xa0\x0b\x1b\xfb\x34\x28\x39\xfb\x18\x32\xba\x53\xeb\x72\x1f\xf7\x49\x5b\x05\xe8\x73\xb4\x66" +"\x52\x1a\x64\x76\x63\x6c\x75\x1e\x76\x6e\x5d\x81\x50\x1b\x3b\x56\x9e\xb5\x68\x1f\x70\xab\x7f\xae\x8c\xb8\x08\x33\x06\x0b\xf7\x92" +"\xf8\xa0\x15\xbc\x1d\xfc\x20\x06\x55\xaf\x6e\xcc\xa1\x9d\x8d\x90\xa7\x1e\xd1\x07\x88\x7f\x80\x8a\x7a\x1b\x67\x81\x95\xb0\x1f\xf7" +"\xfb\xe1\x07\x0b\xfb\x0d\x1b\xfb\x0e\x3c\x4c\x2a\x39\xb5\x64\xf7\x10\x6d\x1f\xd9\x78\x05\xc5\x7d\xa2\x76\x66\x1a\x59\x5a\x6a\x42" +"\x5e\x65\x98\xa1\x76\x1e\x7e\x9a\x85\x9a\x86\xb0\x08\x33\x06\x0b\x91\x1d\x63\x05\x6f\xc9\xa3\x85\xb2\x1b\xd7\xba\x0b\x77\x08\x66" +"\xa6\xb7\x77\xc4\x1b\xe8\xbf\xb9\xe4\x92\x1f\x50\x06\x61\x87\x6a\x73\x55\x1b\x52\x6d\xa1\xb7\x86\x1f\x0e\x16\xa0\x1d\x0b\xfb\x8d" +"\x05\xed\x06\xfb\x3b\xf7\xb2\xf7\x10\xf7\x82\x05\x2a\x06\x0b\x3b\x9e\x05\x47\x9b\x6e\xa1\xb0\x1a\xbc\xb6\xa9\xcf\xce\xaf\x6e\x54" +"\x8d\x1e\x0b\x1b\xa8\x9c\x7d\x74\x71\x74\x78\x6c\x71\x79\x91\xa2\x5e\x1f\x82\x8f\x76\x0b\x80\x79\x1b\x7f\x71\x92\x95\x72\x1f\x9c" +"\x0b\xeb\x05\x4c\x06\xeb\xfb\x2a\x05\x0e\xf7\xb2\x15\xf7\xa6\xf8\x4f\x05\xfb\x03\x06\xfb\x64\xfb\xf7\x0b\xfb\x5d\x05\x24\xf7\x5d" +"\x0b\xc3\x1b\xc1\xb2\x62\x53\x1f\x0b\x15\x23\x24\xf3\x06\x0b\xc1\x5c\x3a\x3b\x55\x5b\x0b\xf8\x94\x2e\xfc\x94\x07\x0b\xa0\x71\xb5" +"\x7b\x1e\x83\x0b\x15\xec\x92\xc6\xca\xdf\x1b\xe0\xc6\x0b\xbf\x29\x1b\xfb\x26\x2d\xfb\x03\x0b\x06\x38\x68\x84\x72\x0b\xfb\x34\xdf" +"\xf7\x7e\x0b\xac\x90\x90\xa3\x1f\x0b\x15\xab\x5e\x53\xa8\x78\x1b\x81\x84\x83\x81\x84\x8d\x87\x94\x83\x1f\xc6\x5a\xa0\x70\xc4\x2c" +"\x08\x7a\x94\x8e\x89\x95\x1b\x92\x90\x91\xa0\x97\x1f\xb5\xd4\xad\xb7\xb9\xb2\x08\x9c\x99\x8e\x8f\x93\x1a\x95\x84\x93\x82\x79\x40" +"\x66\x73\x6d\x1e\xf8\x3e\x07\x70\xac\xd2\x67\x9f\x1b\x93\x92\x93\x95\x93\x88\x8e\x7a\x9a\x1f\x5c\xb3\x6a\xb5\x61\xd5\x08\x9f\x80" +"\x85\x92\x84\x1b\x83\x86\x87\x83\x86\x1f\x54\x2d\x73\x6c\x58\x5f\x08\x76\x79\x8a\x8a\x82\x1a\x81\x92\x83\x94\x91\xab\x97\x93\x9b" +"\x1e\xa0\x96\x9d\x96\xa7\xa0\x08\x0e\xf7\xb2\xf7\xc4\x15\x4c\x68\x91\x98\x72\x1f\x70\x9a\x7c\xa1\xa3\x1a\xb9\xb8\xac\xca\xce\xb0" +"\x6e\x4a\x9c\x1e\xdc\x06\x84\xbc\x81\xa3\x72\xa7\x08\xb8\x64\x52\xa3\x47\x1b\xfb\x03\x3b\x4f\x39\x58\xa7\x5f\xc0\x6f\x1f\x4f\x76" +"\x68\x5c\x4d\x1a\x2a\xdf\x45\xf7\x09\xd4\xc5\xa4\xbd\xb7\x1e\xa7\xac\x99\xa8\x97\xc1\x08\x38\x06\x3a\x74\x62\x69\x40\x1b\x43\x5a" +"\xb2\xc4\xc6\xbc\xa6\xf7\x01\x8e\x94\x8b\x8a\x94\x1f\x0b\xf7\xf0\xf8\x21\x15\xfb\x5c\x07\x57\x89\x78\x83\x74\x1e\x6a\x80\x70\x78" +"\x6b\x1b\x52\x67\xcf\xf7\x00\xf7\x09\xb1\xea\xdb\xe0\x1f\x29\x06\x45\x3e\x66\x27\xfb\x07\x1a\xfb\x30\xce\x27\xf3\xc7\xad\xa2\xce" +"\xb0\x1e\x4c\xab\xb1\x71\xc6\x1b\xf4\xcf\xef\xf7\x2f\xf7\x07\x66\xf0\x45\xd7\x1f\x29\x06\xdb\x37\xb1\x2c\xfb\x09\x1a\x20\x66\x46" +"\x52\x6a\x72\x9e\xab\x80\x1e\x83\xa2\x89\x9f\xbe\x1a\xf7\x5c\x07\x0b\x29\x1d\xfb\x40\xf8\x4a\x15\xfb\x04\x06\xf7\x29\xfb\x28\x05" +"\xc7\x06\x0e\xf7\x96\xf8\xa0\x15\x34\xdd\x06\xae\x9e\x9d\xb2\x92\x8e\x8b\x8a\x9e\x1e\x46\x1d\xde\xf8\x5c\xe2\x07\xf7\xaa\xcf\x15" +"\x34\xdd\x06\xae\x9e\x9d\xb2\x92\x8e\x8b\x8a\x9e\x1e\x46\x1d\xde\xf8\x5c\xe2\x07\x0b\x15\xb7\xa6\x99\xa0\xb3\x1a\xce\x57\xb9\x3f" +"\x40\x56\x5d\x48\x63\x99\x76\xb7\x70\x1e\x5a\x73\x73\x68\x5c\x1a\x3d\xc5\x55\xe0\xdf\xc6\xc1\xd9\xba\x73\xae\x5a\xa3\x1e\x45\xf7" +"\x2e\x15\xb8\xa4\x1d\xb8\x1f\xfb\x45\x04\xc0\xaf\x69\x59\x58\x67\x6a\x55\x57\x67\xad\xbd\xbd\xaf\xad\xc0\x1f\x0b\x15\x94\x06\xa2" +"\x06\xc9\xa9\x73\x5b\x58\x6a\x6d\x52\x4f\x6f\xa6\xc9\x88\x1f\x4d\x06\x30\xc2\x58\xeb\xe9\xc8\xc0\xdc\xbe\x74\xac\x5b\x9b\x1e\xb0" +"\x9c\x9f\xa8\xb2\x1a\xd6\x56\xb8\x35\x2d\x5b\x5b\x2d\x89\x1e\xca\x06\xa7\x8d\x98\x92\x98\x1e\xa1\x97\xa6\x98\xac\x1b\xbb\xa7\x72" +"\x60\x5c\x73\x7d\x35\x1f\x0b\x69\x1d\x0e\x15\xfb\x65\xfb\x22\xfb\x2e\xfb\x78\xfb\x79\xf7\x21\xfb\x2d\xf7\x67\xe4\xd9\xa6\xbd\xc6" +"\x1f\xda\xce\xba\xf7\x05\xf7\x0b\xb4\x1d\x39\x04\xf7\x32\xf1\xfb\x0b\xfb\x4d\xfb\x44\x22\xfb\x0c\xfb\x2e\xfb\x30\x24\xf7\x0c\xf7" +"\x48\xf7\x48\xf2\xf7\x0c\xf7\x2f\x1f\x0b\xf8\x1a\xf8\xa0\x15\xfb\x24\xfc\x2c\xfb\x1b\x48\x1d\xfc\xa0\x6b\x36\x05\x64\x7d\x79\x7d" +"\x69\x1b\x7c\x7e\x8d\x91\x7a\x1f\x3e\x07\x83\x9c\x9c\x88\xa0\x1b\xa7\xa7\x94\x9b\xa2\x1f\xa4\x9e\x9a\xa1\x9b\xb5\xf7\x7e\xf9\x0e" +"\x18\x0b\x2d\xfc\x06\x06\x77\x40\x5a\x83\x50\x1b\xfb\x0e\x4e\xaf\xd3\x1f\xf7\xb6\x2d\xfb\xbb\x07\xfb\x09\xe9\x47\xf7\x36\x0b\x98" +"\x1d\x6c\x66\x49\x80\x1f\xc5\x06\xa2\x91\x97\x98\x9a\xa7\x1d\xbc\xaa\xae\xd0\x94\x1f\x0e\xf7\x4c\xf7\xc9\x15\xf7\x79\x8c\x1d\xe8" +"\x06\xf8\x1b\x04\xf7\x94\xf7\x56\x07\xe4\xc0\x5b\x3b\x3b\x56\x5b\x32\x1f\x0e\xf8\x1b\xf8\x0a\x15\xf7\x8a\xf7\xf7\x05\xfb\x03\x06" +"\xfb\x50\xfb\xb2\xfb\x4f\xf7\xb2\x05\xfb\x05\x06\xf7\x86\xfb\xf7\xfb\x96\xfc\x0a\x05\xf7\x05\x06\xf7\x5c\xf7\xc4\xf7\x5b\xfb\xc4" +"\x05\xf7\x07\x06\x0e\xe4\x16\xf7\xad\x06\xf7\x4c\xf7\x05\xf7\x1e\xf7\x77\xf7\x76\xfb\x04\xf7\x1e\xfb\x4d\x1f\xfb\xad\x06\xe8\xfd" +"\x1b\x15\xf8\xc9\xf7\x40\x07\xf7\x24\xd7\x2a\xfb\x4e\xfb\x4d\x3f\x2a\xfb\x24\x1f\x0b\xd1\x20\x1d\xfd\x6d\xde\xf7\xb5\x07\xf6\xc3" +"\xd1\xe1\xa7\xa5\x83\x7c\x9f\x1e\xa3\x79\x95\x72\x66\x1a\xfb\xff\xde\xf8\x20\x07\xe3\x4c\xc2\x25\x41\x5e\x74\x4b\x5a\x1e\xf7\xa9" +"\x07\x0b\x15\x23\xbb\x07\x8c\x51\x7d\x70\x68\x86\x08\x65\x07\xc7\x8f\xac\xba\xdb\x1a\xf0\x07\xce\x16\x23\xbb\x07\x8c\x51\x7d\x70" +"\x68\x86\x08\x65\x07\xc7\x8f\xac\xba\xdb\x1a\xf0\x07\x0e\xf7\x22\x16\xe3\x06\xbf\xb5\xaa\xc8\xa6\x1f\xf7\xa9\xf9\x11\x05\xfb\x02" +"\x06\xfb\x50\xfc\x62\xfb\x5b\xf8\x62\x05\xfb\x04\x06\xf7\x9d\xfc\xd1\x73\x4e\x7d\x80\x5b\x89\x19\x53\x06\x0b\xaa\x1d\xea\x06\x93" +"\x1d\xfb\x22\xc0\xfb\x0d\xe6\x4b\x1e\x0b\x16\xf7\xdd\x06\xd0\xbe\x9e\xb5\xb2\x1f\xaf\xb1\x9f\xbf\xc4\x1a\xe3\x63\xc0\x2e\xaf\x1e" +"\xce\xaa\xad\xc0\xd6\x1a\xc1\x77\xb9\x65\xad\x1e\xae\x64\x5a\x9b\x45\x1b\xfb\xbc\x06\x0b\x37\xfb\x94\x06\x7d\x60\x65\x85\x65\x1b" +"\x49\x69\xa7\xc1\x1f\xf7\x56\x37\xfb\x69\xae\x1d\xc8\x1b\xba\xb4\x94\x9f\xb9\x1f\x0e\xf8\x68\x16\xf7\x61\xf8\xf7\x05\xfc\xf7\xe3" +"\xf9\x6d\xfb\x15\x07\xfb\x68\xfd\x0f\xfb\x6c\xf9\x0f\x05\xfb\x15\xfd\x6d\xe3\xf8\xf7\x06\xf7\x63\xfc\xf7\x05\x0e\xf9\x70\x7b\x1d" +"\x4f\x1d\x37\x06\xdf\xfc\x56\x15\xf7\x3a\xf7\x38\x07\xc0\xaa\x6d\x56\x56\x6c\x6d\x56\x1f\x0b\x15\x2b\xfb\x2a\x05\xcb\x06\xda\xeb" +"\x0b\x83\x1d\xaf\xc4\xb6\x6e\xa3\x58\x0b\x15\x8c\x64\x91\x78\x99\x4e\x1d\x15\x8c\x64\x90\x78\x9a\x4e\x1d\x6b\x1d\xcb\xd1\x95\x9d" +"\xd1\x1e\x0e\xf8\xa0\x15\xfc\xa0\xdf\xf7\xa4\x07\x8c\xf7\x12\xbf\xc3\xf7\x07\x88\x08\xe0\x07\x8d\x7d\x83\x8c\x81\x1b\x55\x62\x6b" +"\x3d\x5b\x1f\xea\x07\x0b\xfc\xf5\x15\x27\xc9\xef\xce\xc0\x48\xf7\xa4\x5d\x07\xfb\x60\xfb\x9e\x05\x50\x07\xf7\x50\xc0\x15\xfb\x15" +"\x06\xf7\x15\xf7\x3e\x05\x0e\x55\x1d\xfb\x6a\xf7\xf7\x05\xfb\x07\x06\xf7\xad\xfc\x4f\x05\xfb\xb2\xe8\x07\x0b\xf7\x47\x15\x6f\x83" +"\x7a\x72\x74\x1e\x6c\x69\x62\x7b\x5a\x1b\x4a\x65\xaa\xc0\xc2\xaf\xa7\xe5\x98\x1f\xe4\x97\x9c\x8f\xa7\x98\x08\x0b\xfb\x94\xf9\x6d" +"\x05\xfb\x0c\x06\xfb\x98\xfd\x6d\x05\xee\x06\xd8\xf7\x6f\x05\xf7\x93\xd9\x15\xfb\x7c\x06\xf7\x0c\xf7\xe0\x05\x0b\x8d\x97\x52\x1d" +"\x63\x05\x70\xc9\xa3\x84\xb2\x1b\xd7\xba\x0b\xfc\x59\x06\x8d\xfb\x0c\x60\x47\x3a\x85\x08\x39\x9b\x07\xc6\x89\xb5\xa1\xb7\xc5\xaf" +"\xbb\x9b\xc4\x8e\xea\x08\xf8\x05\x0b\x1a\xe5\x53\xcd\x28\xa6\x1e\xfb\x4b\xbc\x05\x33\xa3\x6b\xa7\xc3\x1a\xd5\xcc\xbc\xed\xf7\x08" +"\xcc\x57\x2b\x8c\x1e\x0b\xe9\xf7\xed\xcc\x06\xf7\x75\xfb\xed\x05\xf3\x06\xfb\x90\xf8\x14\xf7\x60\xf7\xed\x05\x24\x06\xfb\x48\xfb" +"\xc2\x05\x0b\x1f\x82\x8f\x76\x63\x05\x6f\xca\xa2\x85\xb2\x1b\xd7\xba\xae\xc5\xb6\x6e\xa3\x59\x82\x85\x8b\x89\x7e\x1f\x0e\xfc\x94" +"\x07\x29\x44\x4f\xfb\x09\x55\x5f\x98\xa4\x68\x1e\x67\xa7\x7a\xb0\xc2\x1a\x5a\x1d\x0b\x5c\x67\x48\x1b\x56\x5e\xa3\xb7\x6f\x1f\x77" +"\xa9\x84\xa9\x8a\xbf\x08\xf8\x16\x06\xdb\x85\xbb\x7c\xb2\x1e\x0b\x15\xf8\x7d\xfb\x63\x05\xda\x07\xfc\x1e\xf7\x38\xf8\x1e\xf7\x35" +"\x05\xda\x07\xfc\x7d\xfb\x63\x05\x0e\xf7\x47\xf7\xe0\x15\xf8\x20\xdd\xfc\x20\xf7\x7d\xf8\x2f\xdd\xfc\x8d\xfd\x6d\xf8\x9f\xdd\xfc" +"\x41\x06\x0b\x06\xc4\xb8\xab\x1d\x3a\xd8\xfb\x24\x1e\xfb\xc1\xfd\x6d\x0b\xf8\xbb\x92\x1d\x0b\x15\xe7\xc7\x3a\xfb\x11\xfb\x0b\x4e" +"\xa2\x1d\x9d\x1d\xf8\x9f\xdd\xfc\x42\x06\x0b\x15\xe9\xc3\x3e\xfb\x16\xfb\x10\x51\x3e\x2f\x2e\x52\xd8\xf7\x13\xf7\x13\xc4\xd8\xe8" +"\x1f\x0b\x97\x92\x8d\x97\x52\x1d\x0b\xf7\xe0\x15\xfb\xe0\xe8\xf9\x6d\x2e\xfb\xcf\xfc\x0b\xf7\xcf\x2e\xfd\x6d\xe9\xf7\xe0\x07\x0b" +"\xf7\x34\x6e\x2f\xd9\xfb\x34\x1b\x29\x3c\x6c\x4f\x55\x1f\x49\x43\x67\x23\xfb\x0a\x1a\x0b\x15\xfb\x63\xf7\x63\x45\xfb\x63\xfb\x63" +"\x45\xf7\x63\xfb\x63\xd1\xf7\x63\xf7\x63\x06\x0b\xf8\xd8\x15\xfb\xbc\xc9\xf8\x3d\x60\x07\x7a\x4b\x7d\x80\x43\x84\x7c\x8a\x18\x5d" +"\x07\x0b\x87\xbe\x80\xac\x77\xb5\x1d\x30\xfb\x04\xfb\x42\x0b\x15\x8d\x64\x90\x78\x99\x77\x08\x66\xa6\xb8\x77\xc3\x1b\xe8\xbf\xb9" +"\xe4\x92\x1f\x0b\x15\x72\x83\x7f\x53\x1d\x62\x83\x8d\x76\x1b\x5f\x0b\x79\x1d\xdb\x2b\x05\xcb\x06\x2a\xf7\x2a\x05\x0b\x37\xfc\x56" +"\xfb\x66\xf8\x56\x37\xfc\x56\xfb\x66\xf8\x56\x36\x06\x0e\xb6\x6e\xa3\x58\x82\x86\x8b\x89\x7e\x1f\x0b\xf8\x95\xf8\x8a\x15\xfb\x56" +"\xf7\x63\x33\xfb\x63\xfb\x55\x39\xf7\x55\x0b\xf7\xe0\x15\xf8\x21\xdd\xfc\x21\xf7\x7d\xf8\x30\xdd\xfc\x8d\xfd\x6d\x0b\x1e\xf7\x2a" +"\xf7\x08\xd5\xfb\x08\xd1\x37\x45\x24\x41\xf2\x07\x0e\xbc\x15\x89\x82\x87\x8b\x86\x1b\x6e\x7b\x9a\xa5\x1f\xf7\xc8\x07\x0b\xf7\x8f" +"\x06\xf1\xcd\xc7\xe9\xed\x49\xc9\x24\x1f\xfb\x3a\xf7\x66\x0b\x15\xfc\x78\x45\xf8\x78\x06\x25\x04\xfc\x78\x45\xf8\x78\x06\x0b\x3a" +"\x30\x32\x52\xdb\xf7\x0f\xf7\x0f\xc4\xdb\xe4\x1f\x0e\xfd\x6d\xf7\xd3\x07\xf7\x23\xdd\xd8\xf7\x19\xd3\x73\xc2\x0b\xa8\x71\x61\x64" +"\x6d\x71\x5f\x5e\x6e\xa5\xb3\xb4\xa8\xa5\x0b\xfb\x3a\xe9\xf7\x8c\x53\xf9\x1b\x0b\x15\x30\x07\xa5\x23\x05\xa9\x06\xa5\xf3\x05\xe6" +"\x07\x0b\x1b\x97\x98\x88\x81\xa3\x1f\x75\xc6\x92\x89\x9e\x1b\x0b\xf7\xb0\xf7\xcc\x15\xfb\x82\x43\xf7\x82\x06\x0e\x06\xa1\xf7\x73" +"\x05\xfb\xb3\x04\x37\x23\xdf\x06\x0b\xc2\x7a\x6e\xa9\x1f\xa6\x72\x9a\x6d\x96\x54\x08\x0b\x9c\xae\xb2\x1f\xb7\xb3\x9e\xba\xce\x1a" +"\xf7\x1d\x0b\xfb\x28\x05\xc7\xb6\x1d\x0e\x6a\x73\x56\x1b\x51\x6d\xa1\xb7\x86\x1f\x0e\x07\x62\x93\x72\xa0\x74\x1e\x6a\xa9\xbc\x79" +"\x0b\x15\x27\xc2\x07\x54\x8d\x78\x6c\x65\x1b\x65\x0b\xda\x69\x1e\x7d\xad\xa6\x87\xd0\x1b\xf7\xac\x0b\xf8\x42\x05\xfc\x95\xe9\xf9" +"\x6d\x2d\x39\x07\x0b\x37\xfc\x56\xfb\x6f\xf8\x56\x37\x06\x0e\xf8\x99\xc3\x15\xfc\x7d\x48\xf8\x7d\x06\x0b\x1a\xf7\x7f\xfb\x1f\xf7" +"\x2d\xfb\x6a\x1e\x0b\xa8\x08\xbc\x67\x4c\xa8\x42\x1b\xfb\x22\x0b\x06\x3c\x1d\x05\x0b\xb8\x07\x84\x78\x77\x88\x0b\xc1\xd9\xe6\xd1" +"\xb7\x62\x42\x95\x1f\x0b\x15\xeb\xf7\x2a\x05\x4b\x06\x3c\x2b\x0b\xf7\x82\x05\x29\x06\x22\xfb\x5d\x05\x0b\x71\x77\x1e\x78\x72\x6e" +"\x84\x57\x1b\x0b\x35\xf7\x24\x38\xfb\x24\x44\x47\xd2\x0b\x04\xfc\x78\x45\xf8\x78\x06\x0e\x1b\x52\x6c\xa1\xb7\x86\x1f\x0e\xf7\x83" +"\xdd\xfc\xd0\x39\xf7\x84\x0b\x62\xb4\xbd\xbd\xb3\xb3\xbd\x1f\x0b\x3c\x3d\x5a\x5c\x39\x1f\x0e\x01\x00\x01\xe3\x01\x05\x00\x01\x0a" +"\x02\x01\x40\x03\x01\x87\xff\x02\x87\xa0\x02\x8e\x02\x00\x01\x00\x04\x00\x07\x00\x19\x00\x36\x00\x7e\x01\x11\x01\x75\x01\xf2\x02" +"\x0d\x02\x3a\x02\x67\x02\x90\x02\x98\x02\x9e\x02\xa2\x02\xa9\x02\xbc\x03\x01\x03\x19\x03\x70\x03\xd7\x03\xfc\x04\x47\x04\xa4\x04" +"\xc8\x05\x28\x05\x84\x05\x93\x05\xa0\x05\xa6\x05\xae\x05\xcc\x06\x0e\x06\xbf\x06\xc3\x06\xc6\x06\xca\x06\xce\x06\xd2\x06\xe0\x06" +"\xe4\x06\xfb\x07\x00\x07\x05\x07\x08\x07\x0b\x07\x0f\x07\x13\x07\x17\x07\x1a\x07\x76\x07\x7a\x07\x7e\x07\x82\x07\x86\x07\xa2\x07" +"\xa7\x07\xaa\x07\xae\x07\xb2\x07\xc5\x07\xd5\x07\xe8\x08\x07\x08\x0d\x08\x29\x08\x2c\x08\x60\x08\x65\x08\x68\x08\x6b\x08\x72\x08" +"\x78\x08\x7b\x08\x82\x08\x89\x08\x8e\x08\x93\x08\xc9\x08\xcc\x08\xcf\x08\xe7\x09\x1e\x09\x23\x09\x28\x09\x2d\x09\x30\x09\x45\x09" +"\x49\x09\x79\x09\x7e\x09\x83\x09\xd5\x09\xe1\x0a\x33\x0a\x7b\x0a\x99\x0a\xed\x0b\x80\x0b\x87\x0b\xc0\x0c\x22\x0c\xbe\x0d\x25\x0d" +"\x36\x0d\x69\x0d\x72\x0d\x78\x0d\x81\x0d\x91\x0d\xa2\x0d\xae\x0d\xb9\x0d\xd2\x0d\xd6\x0e\x00\x0e\x19\x0e\x33\x0e\x39\x0e\x40\x0e" +"\x60\x0e\x71\x0e\xdf\x0f\x22\x0f\x2a\x0f\x30\x0f\x38\x0f\x40\x0f\x48\x0f\x4d\x0f\x55\x0f\x5b\x0f\x64\x0f\x79\x0f\x80\x0f\xa5\x0f" +"\xad\x0f\xb1\x0f\xb6\x10\x31\x10\x56\x10\x5a\x10\xc4\x10\xfe\x11\x03\x11\x0d\x11\x2e\x11\x32\x11\x9a\x11\xff\x12\x06\x12\x15\x12" +"\x55\x12\x8d\x12\x90\x12\xbe\x12\xc9\x12\xfa\x13\x09\x13\x25\x13\x3b\x13\x67\x13\x85\x13\x94\x13\xa5\x14\x37\x14\x44\x14\x9c\x14" +"\xca\x14\xd1\x15\x5d\x15\x65\x15\x6d\x15\x75\x15\x7d\x15\x86\x15\x8e\x15\xce\x15\xd7\x15\xe0\x15\xe9\x15\xf2\x15\xf9\x16\x02\x16" +"\x0b\x16\x14\x16\x4b\x16\x53\x16\x5b\x16\x63\x16\x6b\x16\x73\x16\x7c\x16\xac\x16\xb5\x16\xbe\x16\xc7\x16\xdd\x16\xe3\x16\xec\x16" +"\xf3\x17\x0c\x17\x14\x17\x1c\x17\x25\x17\x42\x17\x7e\x17\x86\x17\x8e\x17\x96\x17\x98\x17\x9f\x17\xa8\x17\xb1\x17\xba\x17\xcf\x17" +"\xd6\x17\xdd\x17\xe4\x17\xeb\x17\xf2\x17\xfb\x18\x01\x18\x09\x18\x0f\x18\x17\x18\x1f\x18\x29\x18\x44\x18\x6c\x18\x76\x18\x7f\x18" +"\x8d\x18\xb1\x18\xc1\x19\x57\x19\x80\x19\x8a\x19\xa1\x19\xa5\x19\xad\x19\xb6\x19\xe4\x19\xf1\x19\xf4\x19\xfd\x1a\x06\x1a\x0f\x1a" +"\x18\x1a\x1b\x1a\x23\x1a\x26\x1a\x3f\x1a\x47\x1a\x50\x1a\x59\x1a\x62\x1a\xc6\x1a\xf9\x1a\xfd\x1b\x09\x1b\x0d\x1b\x19\x1b\x95\x1b" +"\xa5\x1b\xae\x1b\xb7\x1b\xbf\x1b\xc8\x1b\xf5\x1b\xfe\x1c\x08\x1c\x14\x1c\x1f\x1c\x2e\x1c\x5c\x1c\x61\x1c\x68\x1c\x74\x1c\x7d\x1c" +"\x86\x1c\x89\x1c\x91\x1c\x98\x1c\xb3\x1c\xba\x1c\xc1\x1c\xcd\x1c\xd1\x1c\xda\x1c\xe3\x1c\xeb\x1c\xef\x1d\x06\x1d\x0e\x1d\x17\x1d" +"\x85\x1d\x89\x1d\x9f\x1d\xa8\x1e\x12\x1e\x26\x1e\x7b\x1e\x83\x1e\x8b\x1e\x93\x1e\x96\x1e\x9f\x1e\xe5\x1e\xee\x1e\xf7\x1f\x1a\x1f" +"\x1e\x1f\x39\x1f\x41\x1f\x61\x1f\x73\x1f\x82\x1f\x8b\x1f\x94\x1f\xd8\x1f\xdc\x1f\xe2\x1f\xee\x1f\xf8\x20\x01\x20\x08\x20\x12\x20" +"\x1a\x20\x24\x20\x42\x20\x4a\x20\x52\x20\x5b\x20\x64\x20\x68\x20\x73\x20\x7d\x20\x81\x20\x87\x20\x9d\x20\xca\x20\xda\x21\x0f\x21" +"\x13\x21\x1c\x21\x5b\x21\xc6\x21\xca\x21\xe9\x21\xf4\x22\x03\x22\x2c\x22\x36\x22\x3d\x22\x51\x22\x6b\x22\xbd\x22\xd0\x22\xd4\x23" +"\x3f\x23\x48\x23\x57\x23\x60\x23\x76\x23\x92\x23\xc9\x23\xe5\x23\xf7\x24\x56\x24\xaf\x25\x09\x25\x21\x25\x72\x25\x87\x25\xe0\x26" +"\x25\x26\x2c\x26\x35\x26\x70\x26\xa8\x26\xd2\x27\x08\x27\x1f\x27\x27\x27\xa7\x28\x01\x28\x46\x28\x50\x28\x84\x28\xa0\x28\xc1\x28" +"\xfa\x29\x54\x29\x59\x29\x65\x29\x6a\x29\x77\x29\x9f\x29\xb7\x29\xbc\x29\xce\x29\xf1\x2a\x2b\x2a\x3d\x2a\x42\x2a\xac\x2a\xb5\x2a" +"\xc4\x2a\xcc\x2a\xd6\x2a\xe6\x2a\xf6\x2b\x04\x2b\x0a\x2b\x52\x2b\x83\x2b\xcd\x2b\xe1\x2c\x0e\x2c\x1b\x2c\x63\x2c\x86\x2c\x97\x2c" +"\xa4\x2c\xcb\x2c\xdd\x2d\x0f\x2d\x28\x2d\x30\x2d\x3a\x2d\x4a\x2d\x5b\x2d\xa6\x2e\x20\x2e\xa4\x2f\x06\x2f\x5c\x2f\xb2\x2f\xb9\x2f" +"\xee\x30\x24\x30\x96\x31\x22\x31\x2f\x31\xb5\x32\x04\x32\x51\x32\x9f\x32\xeb\x32\xf3\x33\x04\x33\x6e\x33\x77\x33\x80\x33\x8a\x33" +"\x93\x33\xc3\x34\x41\x34\xac\x34\xb5\x35\x01\x35\x3a\x35\x65\x35\x6d\x35\x7b\x35\x8c\x35\x93\x35\xc8\x35\xcf\x36\x23\x36\x96\x36" +"\x9b\x36\xa4\x36\xaf\x37\x15\x37\x18\x37\x20\x37\x2b\x37\x45\x37\x86\x37\x97\x37\xb8\x37\xcc\x37\xd7\x38\x58\x38\x62\x38\x81\x38" +"\xb9\x38\xc0\x39\x07\x39\x2c\x39\x34\x39\x3f\x39\x55\x39\xcc\x3a\x39\x3a\x77\x3a\xb5\x3a\xfa\x3b\x45\x3b\x7a\x3b\x7f\x3b\x88\x3b" +"\x91\x3b\x9a\x3b\xa3\x3b\xaf\x3b\xd3\x3b\xdc\x3c\x03\x3c\x0a\x3c\x27\x3c\x30\x3c\x38\x3c\x4c\x3c\x56\x3c\xf7\x3d\x0b\x3d\x9a\x3d" +"\xa1\x3d\xe5\x3d\xfe\x3e\x04\x3e\x22\x3e\x29\x3e\x30\x3e\x9c\x3e\xd0\x3e\xe5\x3e\xed\x3e\xfc\x3f\x0a\x3f\x0e\x3f\x16\x3f\x1b\x3f" +"\x24\x3f\x32\x3f\x3a\x3f\xac\x40\x46\x40\xc0\x40\xd8\x41\x01\x41\x2e\x41\x65\x41\xa5\x41\xc0\x41\xc7\x41\xe7\x41\xef\x41\xf8\x42" +"\x09\x42\x4b\x42\x54\x42\x92\x42\x9c\x42\xa6\x42\xb3\x42\xf2\x43\x80\x43\xd0\x44\x05\x44\x89\x44\x9b\x44\xcf\x44\xec\x45\x29\x45" +"\x9f\x45\xa7\x45\xaf\x45\xb7\x45\xbe\x45\xd5\x45\xd8\x45\xdc\x45\xe3\x45\xed\x45\xf5\x45\xf9\x46\x13\x46\x7d\x46\xb2\x47\x24\x47" +"\x2d\x47\x36\x47\x38\x47\x42\x47\x5f\x47\x7e\x47\xbd\x47\xfd\x48\x76\x48\xde\x48\xfb\x49\x1f\x49\x3f\x49\x61\x49\x75\x49\x8e\x49" +"\x98\x49\xb3\x49\xeb\x4a\x1a\x4a\x2e\x4a\x45\x4a\x76\x4a\x99\x4a\xa7\x4a\xb6\x4a\xbf\x4a\xcc\x4b\x0a\x4b\x45\x4b\x70\x4b\x8e\x4b" +"\x95\x4b\xac\x4b\xda\x4c\x30\x4c\x38\x4c\x48\x4c\x8f\x4c\xcd\x4d\x03\x4d\x41\x4d\x49\x4e\x0b\x4e\x77\x4e\x7e\x4e\x82\x4e\x9e\x4e" +"\xbb\x4f\x2b\x4f\x42\x4f\x87\x4f\xb0\x4f\xff\x50\x04\x50\x0d\x50\x16\x50\x1f\x50\x28\x50\x2f\x50\x35\x50\x3e\x50\x45\x50\x4e\x50" +"\xce\x50\xd8\x50\xe2\x50\xf3\x50\xfd\x51\x61\xfc\x20\x0e\xfc\x20\x0e\xfc\x20\xf7\x64\x20\x1d\x38\xfb\xe6\x06\xa1\xfb\x73\x05\xb2" +"\xa9\x1d\x0e\xfb\xd3\xbf\xf9\x59\x15\xfb\x03\x07\xa6\xfb\x1a\x05\xb2\x48\x0a\xce\x16\xfb\x03\x07\xa6\xfb\x1a\x05\xb2\x48\x0a\x0e" +"\xf8\x79\xf9\x4d\x15\x3e\x06\x68\xfb\x58\x05\xfb\x11\x06\xaf\xf7\x58\x05\x3f\x06\x67\xfb\x58\x05\xfb\x0d\x47\xf7\x00\x06\x6c\xfb" +"\x42\x05\xfb\x06\x47\xf0\x90\x0a\xf7\x10\x90\x0a\xf7\x09\xcf\x22\x06\xaa\xf7\x42\x05\xf5\xcf\x2e\x06\x32\x47\x15\x6c\xfb\x42\x05" +"\xfb\x11\x06\xab\xf7\x42\x05\x0e\xf7\x8e\xf9\x96\x15\x55\x07\xfb\x14\x7b\x46\x45\xfb\x06\x1a\x4c\xa3\x5a\xb9\x69\x1e\xa6\x78\xa7" +"\x80\xd3\x75\x08\xfb\xa4\x07\x5e\x91\x65\x9f\x74\xaa\x7c\xa2\x87\x9c\x85\xcc\x08\x3c\x06\x84\xfb\x1f\xd7\x38\xf7\x21\x82\x08\x24" +"\xc6\xf2\x07\xc1\x8f\xb0\x96\xac\x9f\x08\xc5\xaf\xad\xcf\xda\x1a\xd2\x70\xbd\x51\xac\x1e\x71\x9a\x7e\x90\x2f\xa7\x08\xf7\x8d\x07" +"\xce\x88\xba\x58\x8c\x42\x08\xda\x06\xf7\x06\x42\xd5\xfb\x0d\x94\x1e\xc1\x07\x50\xfc\x01\x15\x3c\xa0\x66\xb2\xc8\x1a\xcd\xb5\xb6" +"\xd5\x95\x1e\xc6\xfb\xe4\x15\xf1\x6d\xab\x6d\x49\x1a\x64\x7c\x68\x70\x71\x1e\x73\x74\x72\x82\x60\x86\x08\x0e\xf7\x6b\xf7\x5b\xf9" +"\x41\x15\x2d\x3f\x3e\x2d\x2d\xd7\x3e\xea\xe8\xd8\xd8\xe7\xec\x40\xd7\x2b\x1f\x45\x04\xc4\xb8\x5e\x52\x54\x5d\x5e\x54\x53\x5d\xb8" +"\xc3\xc3\xb8\xb8\xc3\x1f\xf8\x2e\xe9\x15\xfc\x1f\xfd\x6d\x05\xcd\x06\xf8\x1f\xf9\x6d\x05\x98\xfc\x17\x15\x2d\x3f\x3f\x2d\x2c\xd7" +"\x3f\xea\xe8\xd8\xd7\xe8\xeb\x40\xd7\x2b\x1f\x45\x04\xc4\xb8\x5e\x52\x55\x5d\x5e\x54\x52\x5e\xb8\xc3\xc2\xb8\xb8\xc3\x1f\x0e\x84" +"\xf8\x81\xf7\xe2\x15\x8c\x67\x7f\x5b\x77\x68\xfb\x19\xf7\x37\x18\xf3\xc6\xad\xb6\xd3\x1a\xe7\x47\xcc\x2c\x2b\x40\x46\x33\x5c\x9d" +"\x66\xca\x3c\x1e\xfb\x11\x43\x66\x5a\x2f\x1a\xfb\x0c\xdd\x3c\xf7\x0f\xbd\xb9\x97\xa2\xaf\x1e\xa0\x99\x9c\x99\xb2\xb1\xc9\x3d\x18" +"\xf7\x01\x06\xfb\x0e\xf7\x2b\x05\xb0\xc4\xa0\xcd\xc7\x1a\xfb\xb4\xec\x15\x4e\xd1\x82\x9b\xaf\x1a\xbf\xad\xad\xbf\xbd\xb0\x67\x5a" +"\x5f\x70\x6b\x3f\x5c\x1e\xf7\x19\xfb\xba\x15\x50\x53\x60\x74\x57\x1b\x43\x50\xc4\xd2\xc3\xaa\xb3\xe6\xc5\x1f\x0e\xfc\x58\xcc\xf9" +"\x6d\x15\x23\xbb\x07\x8c\x51\x7d\x70\x68\x86\x08\x65\x07\xc7\x8f\xac\xba\xdb\x1a\xf0\x07\x0e\xfb\xe9\xf7\x80\x20\x1d\x27\xfb\x17" +"\x4c\xfb\x4a\xfb\x31\x1a\xfb\x32\xca\xfb\x4a\xef\xfb\x17\x1e\xc2\x06\x33\xf7\x23\x5a\xf7\x3c\xf7\x34\x1a\xf7\x33\xbc\xf7\x3d\xe3" +"\xf7\x22\x1e\x0e\xfb\xe9\xe8\xfb\x68\x15\xef\xf7\x17\xca\xf7\x4a\xf7\x31\x1a\xf7\x32\x4c\xf7\x4a\x27\xf7\x17\x1e\x54\x06\xe3\xfb" +"\x23\xbc\xfb\x3c\xfb\x34\x1a\xfb\x33\x5a\xfb\x3d\x33\xfb\x22\x1e\x0e\xfb\xb1\xf7\x34\xf9\x6d\x15\x90\xfb\x04\x21\xb1\x78\x50\xf7" +"\x00\x6d\x46\x32\xbd\x67\xca\xe8\xc9\x2e\xbe\xaf\x45\xe4\xf7\x00\xa9\x78\xc6\x21\x65\x90\xf7\x04\x05\x0e\x31\xf8\xaa\xf7\x9f\x94" +"\x1d\x0e\xfc\x20\xe2\xf3\x7c\x0a\xfb\xe9\xa8\x1d\xfc\x20\xf7\x53\xf3\x24\x1d\xfc\x20\xf7\x79\x20\x1d\xfb\x81\xfd\x81\x05\xc2\x06" +"\xf7\x81\xf9\x81\x05\x0e\xf7\xa7\xf9\x67\x15\x49\x4f\x6d\x5a\x66\x1f\x5d\x4b\x74\x2b\xfb\x1a\x1a\xfb\x88\xdb\xfb\x15\xf7\x2c\xf7" +"\x2a\xdd\xf7\x15\xf7\x82\xf7\x20\x75\xe9\x5c\xcd\x1e\xbd\x66\x50\xa8\x48\x1b\x3d\x04\xea\xba\x2a\xfb\x58\xfb\x62\x5d\x2b\x29\x2e" +"\x5c\xef\xf7\x5b\xf7\x5b\xba\xec\xea\x1f\x0e\xf7\x97\xf8\x97\x15\xfc\x97\xe3\xf9\x67\x51\x07\x6c\xfb\x03\x77\x7c\xfb\x1c\x79\x08" +"\x4b\x07\x0e\xf8\x8e\xe2\x15\xfc\x09\x06\x94\xc7\xab\xb1\xe2\xc0\xef\xc3\x18\xee\xc2\xbe\xd5\xe4\x1a\xc7\x73\xc3\x61\xb2\x1e\xb1" +"\x61\x57\x9d\x48\x1b\x31\x48\x6b\x4d\x64\x1f\x72\x65\x80\x5e\x89\x42\x08\xe3\x06\x8e\xbc\x91\xa8\x97\xa3\x08\xb7\xa2\xb9\xa6\xc0" +"\x1b\xdb\xc7\x51\x3d\x51\x6a\x59\x4c\x67\x1f\x2f\x55\xfb\x28\x36\x60\x47\x83\xfb\x32\x19\xf8\x6c\x06\x0e\xf7\x71\xf7\xe1\x15\x96" +"\x06\xb0\x06\xeb\xbe\x5e\x34\x30\x54\x54\x30\x2a\x5c\xbc\xf5\x85\x1f\x33\x06\x8f\x51\x95\x65\x9c\x6b\x08\x45\xb0\xd0\x68\xec\x1b" +"\xf7\x26\xe9\xe3\xf7\x1d\xe7\x68\xbd\x36\xa9\x1f\xcd\xa6\xac\xbd\xd4\x1a\xf7\x10\x3a\xd6\xfb\x1b\xfb\x23\x3f\x3b\xfb\x2d\x88\x1e" +"\xe3\x06\x8c\xb7\x8f\xa4\x96\xa1\x08\xb4\x9f\xb7\xa3\xc2\x1b\xd9\xba\x5c\x3d\x58\x79\x6c\x64\x7a\x1f\x73\x81\x6b\x87\x4e\x8a\x08" +"\x0e\xf7\xdb\xf7\x43\x15\xfb\x43\xe3\xf7\x43\xf4\xda\x22\xf8\x69\x4a\x07\xfb\xd6\xfc\x5b\x05\x2e\x07\xf7\xbf\xda\x15\xfb\x72\x06" +"\xf7\x72\xf7\xd3\x05\x0e\xf8\x70\xf9\x59\x15\xfc\x02\x06\x56\xfc\x16\x05\xdc\x06\xbc\xb4\xad\x9c\xc3\x1b\xea\xc6\x4a\x22\x25\x50" +"\x4d\x2b\x3e\x5c\xb2\xdb\x76\x1f\x33\x06\x97\x51\x95\x6f\xa0\x71\x08\x55\xb3\xd3\x6c\xdb\x1b\xf7\x23\xef\xf3\xf7\x2a\xf7\x20\x2e" +"\xeb\xfb\x1c\x59\x63\x7e\x6d\x62\x1f\xa7\xf7\x5a\x05\xf7\xbb\x06\x0e\xf8\x86\xf8\xab\x15\xf7\x0a\x7a\x3f\xd1\xfb\x00\x1b\x3d\x45" +"\x65\x4a\x61\x1f\x5e\x44\x78\x33\xfb\x17\x1a\xfb\x0e\x9c\x3e\xb6\x4b\x1e\x50\xb1\xc9\x6c\xd9\x1b\xf7\x1b\xec\xf0\xf7\x21\xf7\x19" +"\x31\xe9\xfb\x13\x45\x54\x71\x56\x65\x1f\xf7\x47\x8c\xc3\xee\xf0\x1b\xc9\xb6\x63\x45\x99\x1f\xfb\x11\xfb\x3b\x15\xe0\xc0\x4f\x2b" +"\x30\x4f\x49\x3a\x39\x4d\xd0\xe7\xe5\xc7\xc9\xe2\x1f\x0e\xf8\x9c\xf9\x59\x15\xfc\x6e\x34\xf8\x13\x06\xfb\x3d\xfb\x85\x46\xfb\x28" +"\x56\xfb\x7d\x08\xe9\x06\xb2\xf7\x77\xe4\xf7\x57\xf7\x34\xf7\x69\x08\x0e\xf8\x1b\xf8\x11\x15\xd5\xb8\xa2\xaf\xcf\x1a\xf7\x06\x34" +"\xda\xfb\x12\xfb\x11\x33\x3c\xfb\x05\x46\xa2\x68\xd4\x5d\x1e\x3a\x62\x63\x50\x3b\x1a\xfb\x18\xec\x2f\xf7\x21\xf7\x20\xed\xe7\xf7" +"\x18\xdb\x63\xc6\x39\xb4\x1e\xfb\x08\xf7\x9c\x15\xd6\xbb\x5e\x43\x47\x5a\x5e\x41\x40\x5b\xb8\xd1\xd1\xbb\xb8\xd6\x1f\xfb\xc4\x04" +"\xe3\xc7\x51\x37\x34\x50\x52\x30\x35\x4f\xc6\xdf\xe1\xc6\xc4\xe4\x1f\x0e\xc0\xf7\x39\x15\xfb\x0a\x9c\xd7\x45\xf7\x00\x1b\xda\xd1" +"\xb1\xcc\xb5\x1f\xb7\xd2\x9f\xe3\xf7\x17\x1a\xf7\x0e\x79\xd8\x61\xcb\x1e\xc6\x64\x4d\xaa\x3d\x1b\xfb\x1b\x2a\x26\xfb\x20\xfb\x19" +"\xe5\x2d\xf7\x14\xce\xbd\xa3\xc2\xb8\x1f\xfb\x48\x8a\x53\x28\x26\x1b\x4d\x60\xb3\xd1\x7d\x1f\xf7\x14\xf8\x75\x15\xdd\xc9\x46\x2e" +"\x32\x4f\x4d\x34\x36\x56\xc7\xeb\xe6\xc6\xcd\xdd\x1f\x0e\xfc\x20\xf7\x6a\xf3\x3b\x1d\xf8\xa0\x04\x23\x23\xf3\x06\x0e\xfc\x20\xf7" +"\x6b\xf8\xa0\x3b\x1d\x22\xfb\xd0\x7c\x0a\x31\xb8\xf7\x5a\x8a\x1d\x31\xf8\xaa\xf7\xf5\xa1\x1d\x0e\x31\xf8\xaf\xf7\x9f\x15\xfc\x7d" +"\xf7\x63\x05\x3c\x07\xf8\x1e\xfb\x38\xfc\x1e\xfb\x35\x05\x3c\x07\xf8\x7d\xf7\x63\x05\x0e\xf7\xde\xf7\x5b\x15\xba\x07\x8c\xb8\x99" +"\xa1\xcb\xc4\x08\xd6\xcf\xa4\xb7\xce\x1a\xf7\x09\x38\xd6\xfb\x16\xfb\x25\x41\x3c\xfb\x2f\x1e\xe0\x06\xf7\x00\xb2\xbb\xe5\xd8\xbe" +"\x5d\x47\x5d\x75\x64\x56\x5c\x1e\x36\x40\x78\x6e\x50\x1a\x54\x07\xe5\x2c\x15\x31\x23\xe5\x06\x0e\xf7\xe9\xf9\x2d\xf8\x89\x15\x75" +"\x49\x05\xc5\x72\x61\xa8\x54\x1b\xfb\x1a\xfb\x0f\xfb\x18\xfb\x25\x23\xd1\x3c\xe8\xc0\xb6\xa1\xbd\xb9\x1f\x58\x94\xb0\x71\xcb\x1b" +"\xd6\xc7\xa8\xc7\xbe\x1f\xc2\xcb\xaa\xdb\xda\x1a\xf7\x60\xfb\x55\xf7\x3c\xfb\x7d\xfb\x0b\xfb\x12\x5a\x3b\x33\x1e\x29\x32\x4f\xfb" +"\x1a\xfb\x17\x1a\xfb\x72\xf7\x5e\xfb\x46\xf7\x91\xd5\xda\x9a\xa6\xd4\x1e\x6f\xce\x05\x74\x38\x54\x82\x53\x1b\xfb\x67\xfb\x37\xf7" +"\x27\xf7\x53\xf7\x66\xf7\x4a\xf7\x49\xf7\x67\xf7\x54\xf7\x34\xfb\x20\xfb\x3c\xfb\x08\x38\xfb\x05\x36\x70\x74\x9f\xa3\x94\x8f\x9d" +"\x93\xa2\x1f\xe5\xf7\xac\x05\xfb\x7d\x60\x15\xc3\xb4\x62\x54\x88\x1f\x89\x59\x70\x37\x72\x66\x08\x62\x6f\x66\x73\x66\x1b\x54\x5f" +"\xbf\xcd\xf7\x04\xd8\xf1\xdf\x1f\x0e\x84\x23\x0a\x0e\x84\x54\x0a\xbb\x2a\x0a\x0e\xbb\x6f\x1d\x0e\x84\x24\x0a\x0e\x4c\xf7\x4b\xf7" +"\xe0\x15\xf7\xf0\xdd\xfb\xf0\x92\x0a\x0e\xf3\x32\x1d\x0e\xbb\xf8\xbb\x4e\x0a\xe8\xf9\x6d\x2e\xfb\xcf\xfc\x0b\xf7\xcf\x2e\xfd\x6d" +"\xe8\xf7\xe0\x07\x0e\xfc\x20\x30\x0a\x0e\xfb\x42\x60\x0a\x0e\x84\x64\x0a\x3a\x1d\x0e\xf7\x33\x76\x1d\xbb\x36\x1d\x0e\xf3\x25\x0a" +"\x0e\x84\x6d\x1d\xf3\xf9\x71\x8a\x15\x2d\xd8\x05\xd0\xd7\xad\xe8\xf7\x08\x1a\xf7\x77\xfb\x22\xf7\x2d\xfb\x66\xfb\x67\xfb\x21\xfb" +"\x2d\xfb\x79\xfb\x78\xf7\x21\xfb\x2e\xf7\x67\xd4\xc6\x9b\xae\xc6\x1e\xf4\x34\x05\xfb\x61\xf7\x9c\x15\x5d\x53\xd5\x4d\x05\x76\x60" +"\x6a\x84\x5f\x1b\xfb\x2f\x24\xf7\x0c\xf7\x48\xf7\x48\xf2\xf7\x0c\xf7\x30\xf7\x2f\xf3\xfb\x0c\xfb\x47\x2c\x72\x43\x55\x4e\x1f\x0e" +"\xbb\x33\x0a\x0e\x84\x29\x0a\x0e\x4c\x3e\x0a\x0e\xbb\x2d\x1d\x0e\x84\xf8\x1c\x16\xf7\x91\xf9\x6d\x05\x28\x06\xfb\x5e\xfc\xfd\xfb" +"\x6a\xf8\xfd\x05\x27\x06\xf7\x9a\xfd\x6d\x05\x0e\xf7\xa2\x34\x1d\x0e\x84\x6e\x1d\x84\x28\x0a\x0e\x4c\x2d\x0a\x0e\xfc\x20\xf7\x8e" +"\x20\x1d\xfb\x4e\xfe\x41\xf7\x4e\xd3\x24\xf9\xb1\xf2\x06\x0e\xfc\x20\xba\xf9\x6d\x15\x54\x06\xf7\x81\xfd\x81\x05\xc2\x06\x0e\xfc" +"\x20\xa2\xfb\x68\x15\xf7\x4e\xfa\x41\xfb\x4e\x43\xf2\xfd\xb1\x24\x06\x0e\xfb\x61\xf7\x59\xf9\x59\x15\xfb\x2d\xfc\x10\x05\xd0\x06" +"\xf7\x0d\xf7\xc0\xf7\x0e\xfb\xc0\x05\xd0\x06\xfb\x2f\xf8\x10\x05\x0e\xf8\xd6\xfb\x12\x9c\x0a\xfc\x58\xf7\x32\xf8\x71\x15\xf3\x5b" +"\x07\x8a\xc4\x9a\xa7\xad\x90\x08\xb1\x07\x50\x86\x69\x5c\x3c\x1a\x26\x07\x0e\x25\x1d\x0e\xc1\xf9\x6d\x15\xfd\x6d\xd6\xce\x07\x4e" +"\xb3\xc0\x6e\xd4\x1b\xf7\x1e\xe5\xf7\x05\xf7\x42\xf7\x3e\x36\xf4\xfb\x1f\x43\x58\x70\x50\x64\x1f\xf7\xa8\x07\xf7\x26\xfb\xa0\x15" +"\xe8\xc7\x3a\xfb\x11\xfb\x0b\x4d\xa2\x1d\xfb\x42\x33\x1d\x0e\x5a\x0a\x0e\x29\x1d\x0e\xfc\x20\xf7\x96\x35\x0a\x0e\xf8\x28\xf8\xa0" +"\x32\x0a\x70\x1d\x0e\xfc\x58\xf7\x2a\x88\x0a\x0e\xfc\x58\xd1\xf8\xa0\x6a\x0a\xfb\x42\x6b\x0a\x0e\xfc\x58\x43\x1d\x0e\xf7\x33\xd1" +"\x20\x0a\xfc\xa0\x9f\x0a\xc9\xae\x65\x48\x1e\xfb\xfd\x9f\x0a\xc8\xaf\x64\x49\x1e\xfb\xfd\xdf\xf8\x1d\x07\xe9\x55\xbf\x29\x45\x61" +"\x76\x50\x5a\x1e\xc3\x6c\x61\xa3\x47\x1b\x45\x5c\x71\x4c\x5f\x1f\xd5\x07\x0e\x35\x1d\x0e\x2a\x1d\x0e\xc1\xfb\x6e\x15\xdf\x86\x0a" +"\xf7\x44\x35\xf7\x02\xfb\x1f\x44\x52\x6b\x4d\x64\x1f\xda\x3e\x77\x0a\xf8\x83\xfb\x6e\x15\xf9\x7a\x41\x45\x07\xc2\x64\x50\xa9\x46" +"\x1b\xfb\x1e\x31\xfb\x05\xfb\x42\xfb\x3e\xe0\x22\xf7\x1f\xd4\xbd\xa5\xc4\xb2\x1f\xfb\xaa\x07\xfb\x26\xf9\x3b\x15\xe4\xc4\x3c\xfb" +"\x13\xfb\x0c\x8e\x0a\xe7\x1f\x0e\xfb\xe9\x37\x0a\x0e\xfb\x42\x31\x1d\x0e\xfc\x20\x4b\x1d\x0e\x26\x1d\x0e\xfb\x42\xf7\xb1\x96\x0a" +"\xfc\x3d\xfb\x20\xf8\x3d\x05\x2d\x06\xf7\x4c\xfc\xa0\x05\x0e\xbb\x2c\x0a\x0e\xfb\x42\xf7\xb8\xf7\xa3\x15\xf7\x44\xf7\x91\x05\x2d" +"\x06\xfb\x12\xfb\x52\xfb\x12\xf7\x52\x05\x2c\x06\xf7\x43\xfb\x95\xfb\x4d\xfb\x9f\x05\xea\x06\xf7\x19\xf7\x5d\xf7\x17\xfb\x5d\x05" +"\xec\x06\x0e\xfb\x42\x2b\x0a\x0e\xfb\x42\x3e\x1d\x0e\xfb\xe8\xf7\xa8\x20\x1d\x5d\x06\x46\x8a\x61\x59\x8d\x3a\x08\xfb\x3a\x07\x8c" +"\x32\x76\x65\x51\x80\x08\x46\x07\xc5\x80\xa0\x65\x8a\x32\x08\xfb\x3a\x07\x89\x3a\xb5\x59\xd0\x8a\x08\xb9\xcc\x7c\x06\x59\x8c\x7e" +"\x99\xbf\x1a\xf7\x49\x07\x8a\xde\x6f\xc1\x56\xa0\x08\xc5\xa0\xa3\xb9\xe5\x1a\xf7\x49\x07\xbf\x98\x99\xbd\x8c\x1e\x9a\x06\x0e\xfc" +"\x32\xef\x20\x1d\xfe\x41\xc7\xfa\x41\x07\x0e\xfb\xe8\xa8\xfb\x68\x15\xba\x06\xd1\x8c\xb5\xbd\x89\xdc\x08\xf7\x3a\x07\x8a\xe4\xa0" +"\xb1\xc3\x96\x08\xd0\x07\x53\x96\x76\xb1\x8c\xe4\x08\xf7\x3a\x07\x8d\xdc\x61\xbd\x45\x8c\x08\x5c\x4a\x9b\x06\xbd\x8a\x99\x7d\x57" +"\x1a\xfb\x49\x07\x8c\x38\xa7\x55\xc0\x76\x56\x77\x6f\x55\x8a\x38\x08\xfb\x49\x07\x57\x7e\x7d\x58\x8a\x1e\x7b\x06\x0e\x31\xf8\x5b" +"\xf8\x2f\x15\x56\x8c\x7c\x75\x66\x1b\x7c\x7c\x90\x97\x77\x1f\xfb\x09\xd0\x05\x96\x7a\x78\x90\x79\x1b\x4a\x65\x59\x2c\x86\x1f\xc0" +"\x06\x8d\xa2\x8d\x95\x8f\x95\x08\xa1\x95\x9b\x98\x9e\x1b\x95\xa2\x83\x85\x95\x1f\xed\x4c\x05\x7b\xa5\xa9\x81\xa4\x1b\xcc\xb3\xbc" +"\xd9\x1f\x9b\x07\x0e\xfb\xe9\xf7\x0e\xfb\x61\x15\xde\xf7\xe6\x06\x75\xf7\x73\x05\x64\x06\x75\xfb\x73\x05\x8a\xf7\xb3\x15\xdf\xf3" +"\x37\x06\x0e\xf7\xcc\xf8\x62\x15\xc8\x86\xb3\x61\x92\x48\x08\xdf\x06\x85\xf7\x06\x46\xd0\xfb\x09\x93\x08\xe4\x61\x31\x07\xfb\x1b" +"\x7d\x38\xfb\x00\xfb\x37\x1a\xfb\x33\xde\x23\xf7\x1b\x7f\x1e\x29\xb5\xec\x07\xf7\x08\x91\xd6\xd8\x92\xf7\x0c\x08\x37\x06\x7f\x3c" +"\x65\x62\x4b\x84\x08\x61\x8d\x15\x38\x98\x5b\xd3\xf7\x05\x1a\xf7\x0d\xb8\xd2\xe1\x9b\x1e\x0e\xf8\x02\xf8\x0c\x15\xfb\x34\x06\x84" +"\x98\x86\x94\x87\x91\x76\xb2\x18\x7c\xa6\x84\xa5\xa7\x1a\xd7\xc3\xbe\xe0\xe2\xb9\x58\x24\x8e\x1e\xe3\x06\x8a\xc8\x83\xb2\x78\xac" +"\x08\xc9\x67\x44\xb0\x36\x1b\xfb\x1a\x23\x2e\xfb\x0d\x5f\x92\x78\xb9\x3f\x1f\x3a\x54\xf7\x02\x06\x9b\x71\x93\x70\x72\x1a\x4d\x6a" +"\x59\x2f\x3c\x1e\xbb\x49\x05\xa4\xb2\xae\x97\xae\x1b\xa0\xa3\x87\x84\xa0\x1f\x6e\xde\xa5\x85\xb0\x1b\xbf\xb2\x9c\xb2\xb3\x1f\x61" +"\xcd\x05\x77\x6e\x6f\x81\x71\x1b\x79\x78\x8f\x97\x61\x1f\x97\x64\x7b\x8e\x70\x1b\x60\x63\x7e\x71\x64\x1f\xe5\xe6\xa7\xb9\xbf\x1a" +"\x9e\x86\xa2\x81\xa8\x1e\xf7\x1c\x06\x0e\xfc\x20\xf7\xe1\x2f\x1d\x0e\xf8\x83\xf7\xf6\x15\xfb\x2b\x06\xf7\x5d\xf7\xf7\x05\x36\x06" +"\xfb\x47\xfb\xd6\xfb\x4d\xf7\xd6\x05\x36\x06\xf7\x61\xfb\xf7\x05\xfb\x2b\x58\xf7\x40\x3e\xfb\x40\x58\xf7\x40\xfb\x43\xe3\xf7\x43" +"\xf7\x3e\xbe\xfb\x3e\xd8\xf7\x3e\x06\x0e\xf8\x67\xf8\x62\x15\xfb\x05\x06\x97\xd1\x05\xdd\x9a\xab\xb7\xba\x1b\x9b\x96\x87\x7d\xa4" +"\x1f\xa9\xda\x05\x98\x6d\x74\x91\x71\x1b\x63\x60\x79\x6d\x6b\x1f\x6d\x6e\x77\x64\x80\x53\x75\x23\x18\xfb\x11\x45\xf7\x05\x06\x3d" +"\xfc\x31\x05\x3e\x7c\x6d\x67\x57\x1b\x78\x7d\x90\x96\x7a\x1f\x7a\x37\x05\x84\x98\x9d\x88\xa3\x1b\xbd\xbe\xa1\xae\xad\x1f\xab\xac" +"\x9f\xba\x98\xd1\xd6\xf8\x21\x18\xf7\x12\x06\x0e\xf8\x64\x20\x0a\x93\x07\x9f\x07\xf5\x45\xd2\x22\x24\x3a\x42\x2f\x65\x98\x6e\xaa" +"\x68\x1e\x41\x64\x6c\x5f\x48\x1a\x49\xa6\x5d\xcc\x5e\x1e\xf7\x3e\xfb\x09\x05\xb0\x71\x9c\x70\x68\x1a\x58\x64\x68\x53\x66\x6f\x9a" +"\xa8\x77\x1e\x7e\x9e\x87\x9f\xb2\x1a\x36\x7c\x06\x6e\x8e\x77\x93\x75\x1e\x44\xa5\xcc\x61\xdf\x1b\xf6\xda\xd2\xec\xb6\x7e\xa9\x64" +"\xb8\x1f\xd3\xa6\xaf\xbf\xd8\x1a\xd3\x6e\xb7\x3c\xbe\x1e\xfb\x26\xe9\x05\x61\xa7\x7c\x9f\xa8\x1a\xbc\xb1\xaf\xbe\xc6\xb1\x63\x4d" +"\x1e\x7a\x07\x82\x07\xfb\x54\xfb\xbb\x15\x56\xb2\x7e\x9f\xb3\x1a\xb3\x9e\xa6\xbf\xad\x1e\xf7\x34\xfb\x01\x05\xbc\x6a\xa3\x66\x62" +"\x1a\x62\x71\x66\x5d\x72\x1e\x0e\xf8\x79\xf7\x52\x15\x55\xc1\x05\x9f\xaa\x94\xab\xad\x1a\xac\x81\xad\x7b\xa5\x1e\xc2\xc2\x52\xc5" +"\x50\x56\x05\x9d\x71\x68\x95\x66\x1b\x67\x6b\x82\x7a\x6e\x1f\x54\xc2\x53\x56\xc1\x54\x05\x77\x6e\x7f\x66\x67\x1a\x66\x97\x65\x9f" +"\x70\x1e\x5b\x5a\xc3\x52\xbe\xbe\x05\x7b\xa5\xae\x82\xac\x1b\xb3\xac\x95\x9f\xa6\x1f\xc0\x56\x05\xfb\x2d\xf7\xc9\x15\xc7\xba\x5c" +"\x50\x53\x5b\x5c\x51\x50\x5b\xba\xc4\xc5\xbb\xba\xc5\x1f\x0e\xfc\x77\xbb\xf9\x59\x15\xfb\x03\x07\xa6\xfb\x1a\x05\xb3\x48\x0a\x0e" +"\xfb\xe9\xf7\x21\xf8\x71\x15\xf3\x5b\x07\x8a\xc4\x9a\xa7\xad\x90\x08\xb1\x07\x50\x86\x69\x5c\x3c\x1a\x26\x07\xf7\x8f\x16\xf3\x5b" +"\x07\x8a\xc4\x9a\xa7\xad\x90\x08\xb1\x07\x50\x86\x69\x5c\x3c\x1a\x26\x07\x0e\xed\x7e\x0a\xf7\x61\x32\x82\x0a\x0e\xfb\xe9\xe6\x7e" +"\x0a\x0e\xfb\xe9\xf7\x83\xf7\xd1\x7f\x0a\x0e\xfb\x42\xf7\x90\x35\x0a\xf7\x4c\xcf\x9a\x0a\x38\x22\xde\x06\x0e\xfb\x42\xf7\x95\x35" +"\x0a\xf7\x41\xf7\xa5\x15\x38\xfd\x6d\xde\x06\x0e\xf8\xc5\xf7\xcc\x15\xfc\xca\x43\xf8\xca\x06\x0e\x9c\x1d\xfc\xe9\xe3\xf8\xe9\xf7" +"\x56\x06\x0e\x9c\x1d\xfb\xc7\xfb\x55\x39\xf7\x55\xfb\x64\xe3\xf7\x64\xf7\x56\xdd\xfb\x56\xf7\xc7\xf7\x56\x06\x0e\xfc\x20\x46\x0a" +"\xfb\x1d\xf8\x9e\x20\x1d\xfb\x8e\x06\xfb\x12\x29\x22\xfb\x1b\x41\xa9\x46\xbf\x60\x1f\xae\x6e\xae\x7f\xc2\x88\x08\xfc\x48\xcb\xf9" +"\xde\xdd\xfd\xde\xcb\xf9\xde\xc4\x07\x0e\xfb\xd8\xf7\x43\xf8\x6a\x15\x46\x53\x53\x46\x46\xc3\x53\xd0\xcf\xc4\xc3\xce\xd2\x54\xc3" +"\x45\x1f\x0e\xfc\x58\xcc\xf3\x15\x23\xbb\x07\x8d\x51\x7c\x70\x67\x86\x08\x65\x07\xc7\x8f\xad\xba\xdb\x1a\xf0\x07\x0e\xfb\xe9\xba" +"\xf3\x71\x1d\xfb\xe9\xbc\xf9\x59\x71\x1d\xf7\x90\xf7\xd1\x7f\x0a\xf7\x5b\xe4\x15\xfb\x2e\xf7\x0d\x05\x38\x07\xf7\x00\x38\xfb\x00" +"\x38\x05\x38\x07\xf7\x2e\xf7\x0e\x05\x0e\xf7\xda\xf7\x6f\xf3\x3b\x1d\xf7\xe1\xf3\x3b\x1d\xf7\xe1\xf3\x24\x1d\xf7\xda\xf7\x32\xf9" +"\x6c\x15\x39\x48\x48\x38\x37\xce\x48\xde\xdc\xcf\xce\xdd\x93\x0a\x59\x62\x63\x5a\x58\x63\xb4\xbd\xbd\xb3\xb3\xbd\x1f\xf7\xe2\xd1" +"\x15\xfc\x1f\xfd\x8a\x05\xcd\x06\xf8\x1f\xf9\x8a\x05\x40\xfc\x5f\x15\x39\x48\x48\x38\x37\xce\x48\xde\xdc\xcf\xcf\xdc\xe0\x49\xce" +"\x37\x1f\x4f\x04\xbe\xb3\x63\x58\x5a\x62\x62\x59\x5a\xc0\x1d\xf7\xfc\xc7\x15\x39\x48\x47\x39\x38\xce\x47\xde\xdc\xcf\xce\xdd\x93" +"\x0a\x5a\x62\x62\x5a\x59\xc0\x1d\x0e\x4c\xf7\xa7\xf7\xd9\x15\x5c\x07\x8a\x5e\x7d\x75\x4a\x52\x08\x40\x47\x72\x5f\x48\x1a\xfb\x09" +"\xde\x40\xf7\x17\xf7\x25\xd5\xda\xf7\x2f\x1e\x36\x06\xfb\x00\x64\x5b\x31\x3d\x58\xb9\xcf\xb9\xa1\xb2\xc0\xba\x1e\xe1\xd6\x9e\xa8" +"\xc6\x1a\xc2\x07\x31\xea\x15\xe5\xf3\x31\x06\x0e\xfb\xe9\xf7\x1b\xf9\x78\x22\x0a\xfb\xe9\xf7\x50\x41\x1d\xfb\xe9\xf7\x08\xf9\x79" +"\x27\x1d\xfb\xe9\xf7\x99\xf9\x61\x36\x0a\xfb\xe9\xf7\xc2\xf9\x51\x28\x1d\xfb\xe9\x9a\x77\x1d\xfb\xe9\xf7\x6f\xf9\x60\x24\x1d\xfb" +"\xe9\xf7\x1a\x3a\x0a\xfb\xe9\xf7\x3b\xf9\x86\x27\x0a\x0e\xfb\xe9\xf7\x39\x16\x61\x2f\x97\x84\x05\x91\x4d\x1d\xae\xc5\x9b\x1d\xa2" +"\xc3\x05\x0e\xfb\xe9\xc8\xf9\x78\x39\x0a\xfb\xe9\xf7\x2e\x16\x4e\x75\x67\x62\x5b\x1a\x64\x5b\x1d\xa1\xa4\x86\xa1\x1b\x9e\x60\x1d" +"\xb7\x1d\x73\x1b\x5c\x72\x9e\xae\xb5\xa0\xa2\xd4\xb4\x1f\x0e\xfb\xe9\xf7\x66\xf8\xe3\x42\x1d\xf7\xda\x8c\x0a\xf7\xda\x5e\x0a\x0e" +"\xfb\xc4\xf7\xd4\xf7\xf6\x15\xfb\xa9\x58\xf7\xa9\x06\x98\xf7\x26\x15\x89\x87\x89\x8a\x87\x1b\x7c\x83\x93\x9a\x1f\xf7\x47\x07\xca" +"\x63\xaa\x39\x39\x5e\x66\x44\x89\x1e\xc6\x06\xb6\x92\x9b\x98\xb8\x1b\xb7\xa2\x7c\x6e\x1f\x7e\x07\x89\x73\x82\x85\x65\x88\x61\x88" +"\x62\x83\x7a\x84\x08\x66\x7b\x77\x6d\x62\x1a\x50\xb3\x66\xcb\xb2\xac\x99\xa8\xac\x1e\x6c\x91\x9b\x7f\xac\x1b\x97\x92\x8c\x90\x98" +"\x1f\x31\xf7\x04\x15\x67\x61\x6d\x5a\x67\x76\x9c\xa9\xab\x9f\x9a\xbf\x92\x1e\xbd\x93\x97\x8d\x99\x91\x08\x0e\xf7\x41\xf8\x2a\x15" +"\xf7\xd7\x2e\xfc\x09\x07\x3b\x53\x05\x3e\x07\xdb\xc4\x05\xfb\xac\xf8\x6c\xdd\xfc\x0f\xf7\x8b\x07\xf7\x3f\xf7\x0e\x05\xd7\x07\x0e" +"\xf3\x53\x0a\x0e\xf7\xda\xf8\xfe\xf7\xdb\x15\xf7\xdc\xdd\xfb\xdc\xf7\x82\xf7\xe4\xdd\xfc\x41\x3f\x06\xc7\x60\x51\xa7\x39\x1b\x42" +"\x41\x6e\x5a\x59\x1f\x47\x48\x69\x23\xfb\x1c\x1a\xfb\x10\xa7\x2f\xc6\x47\x1e\x4f\xbf\xd5\x6b\xe0\x1b\xdc\xc4\xa8\xcc\xb9\x1f\x41" +"\xf8\x46\xdd\xfb\xe9\x07\x2e\xef\x15\x3a\x63\x4f\x64\x37\x1b\x49\x56\xa6\xbe\x68\x1f\x67\xc1\x7c\xcb\xf1\x1a\xf1\x9a\xcc\xaf\xc1" +"\x1e\xbe\xae\xc0\xa6\xce\x1b\xdf\xc6\x64\x3a\xb3\x1f\x0e\xfb\xc9\xf7\xce\xf7\xf6\x15\xfb\x9b\x58\xf7\x9b\x06\xfb\x18\xf8\x4b\x15" +"\x30\x58\x4d\xfb\x02\xfb\x01\xbe\x4d\xe6\xe5\xbf\xc9\xf6\xf7\x05\x59\xc8\x2f\x1f\x57\x04\xc0\xaa\x5e\x3f\x42\x6b\x5e\x57\x57\x6b" +"\xb8\xd6\xd5\xab\xb8\xbf\x1f\x0e\xf7\x6b\x51\x0a\x0e\xfc\x20\xf7\x46\x20\x0a\x30\x1d\x06\x0e\xfc\x58\xf7\x26\xf8\x39\x15\xf7\xc8" +"\x38\xfb\xf4\x07\x4c\x59\x05\x4b\x07\xca\xbd\x05\xfb\xcd\xde\xf7\xf9\x07\xcd\xbe\x05\xcb\x07\x0e\x4c\x55\x0a\x0e\xf7\xa2\xf9\xb8" +"\xf7\x33\x15\x46\x74\x89\x1d\xe1\x69\x3b\xbf\x29\x1b\x39\x45\x64\x48\x62\x1f\xd1\x63\x48\xaf\x32\x1b\xfb\x2c\x36\x26\xfb\x47\xfb" +"\x48\xe0\x25\xf7\x2c\xe3\xcb\xad\xd0\xb5\x1f\x48\xb3\xd0\x67\xe0\x1b\xf7\x0b\xde\xcf\xf7\x06\xa0\x1f\xfc\xf7\xf7\xc3\x15\xe9\xc3" +"\x3f\xfb\x16\xfb\x11\x52\x3e\x2e\x2e\x52\xd8\xf7\x14\xf7\x12\xc4\xd8\xe8\x1f\xf7\x82\xfb\x34\x15\xec\x92\xc5\xca\xe0\x1b\xe0\xc6" +"\x4a\x2c\x1f\x0e\x4c\xf7\xa3\xf7\xf1\x15\x9b\x06\xc0\xa3\x88\x81\xa4\x1f\xbe\x78\xa7\x5f\x4f\x1a\x31\x46\x4e\x28\x1e\x6b\x06\x82" +"\x3d\x06\x88\x9d\x95\x8a\x9f\x1b\xf7\x2c\xeb\xe7\xf7\x26\xc3\x7b\xb1\x65\xae\x1f\x70\xa4\x70\x98\x57\x9b\x08\xe1\xa7\xb2\xb8\xd2" +"\x1a\xf7\x02\x33\xd5\xfb\x16\x48\x4d\x77\x68\x5d\x1e\x63\x6b\x7a\x63\x4b\x1a\xfc\xae\xde\xf8\xae\x07\xd0\xc3\xb7\xe1\xdc\xc4\x5e" +"\x4b\x4a\x4c\x5d\x32\x1e\x81\x06\x0e\xfb\xe9\xf7\x2b\x95\x1d\x0e\x31\xb3\xf8\x0b\x15\x45\xf8\x46\xfb\x6f\xd1\xf7\xb5\x07\x0e\xf8" +"\xb4\xbc\x15\x89\x81\x87\x8b\x87\x1b\x6e\x7b\x99\xa6\x1f\xf8\x48\x38\xfb\xbd\x07\x20\x53\x45\x34\x4a\x61\xb3\xca\x1e\xf8\x07\x38" +"\xfd\x7c\xde\xf7\x73\x07\x79\xa4\xa8\x83\xaf\x1b\xcf\xc2\xa7\xc2\xb3\x1f\x52\x8d\xa6\x71\xc4\x1b\x9d\x98\x8d\x92\xa5\x1f\x0e\xf7" +"\xda\xf7\xb1\xf9\x36\x15\xf7\x2d\xc2\xfc\x0b\x54\xf7\x2e\xfc\x12\xcf\x06\xf8\x63\x16\xf7\x0f\xf7\xe9\x05\xfb\xe9\xce\xf8\x49\x30" +"\x07\xfb\x17\xfb\xfe\xfb\x18\xf7\xfe\x05\x2d\xfc\x49\xce\xf7\xe9\x06\xf7\x0d\xfb\xe9\x05\x0e\xbb\x59\x0a\xf7\x34\xf7\x10\xf8\xd8" +"\x15\xfb\xbc\xc9\xf8\x3d\x60\x07\x7a\x4b\x7d\x80\x43\x84\x7c\x8a\x18\x5d\x07\xf8\xc2\xf7\x15\x45\x1d\xf7\x38\xfd\x1f\x5b\x0a\x71" +"\x64\x86\x2a\x19\xf7\xc4\x06\x0e\x31\xf8\xaa\xf8\x34\x94\x1d\xfb\xb3\xbd\x1d\x84\xf7\x4c\xf7\x51\x15\xf7\x79\x06\xf7\x0b\xdf\xe1" +"\xf7\x0e\xf7\x18\x36\xdb\xfb\x1f\x1f\xfb\x64\xf7\x0c\x2e\xfd\x6d\xe8\x06\xf7\xa3\x04\xf7\x94\xf7\x56\x07\xe2\xbe\x5b\x3b\x3a\x58" +"\x5c\x34\x1f\x0e\xf7\x34\xf7\x11\x95\x1d\xf8\xda\xf7\x15\x45\x1d\x9e\x7f\x1d\x31\xf8\xaa\xf7\xa3\x15\xfc\x78\x45\xf8\x78\x06\xfb" +"\x52\x2a\x15\x23\x23\xf3\x06\xf8\x6c\x04\x23\x23\xf3\x06\x0e\xfc\x32\xef\x20\x1d\xfc\x25\xc7\xf8\x25\x07\x4f\xfc\xb0\x15\xfc\x25" +"\xc7\xf8\x25\x07\x0e\xfb\xa6\xf7\x5c\xf9\x42\x15\x37\x47\x47\x38\x38\xcf\x46\xdd\xe0\xcf\xce\xe0\xde\x47\xcf\x38\x1f\x52\x04\xbf" +"\xb5\x61\x57\x56\x61\x61\x55\x59\x60\xb6\xbf\xbf\xb5\xb5\xc0\x1f\x0e\xc1\xfb\x6e\x15\xde\x86\x0a\xf7\x42\x33\xf7\x04\xfb\x1c\x48" +"\x51\x6e\x58\x67\x1f\xf7\x93\x38\x07\xf7\x79\xfb\x91\x8e\x1d\xf7\x34\xf7\x24\x57\x0a\xf8\x80\xf7\x4a\x45\x1d\x80\x7f\x1d\xfb\xe9" +"\xf7\xce\xf7\xea\x5b\x0a\x70\x64\x87\x2a\x19\xf7\xc4\x06\x0e\xca\xf7\xa4\xf7\xd9\x15\xf7\x1a\x06\xb8\x9e\x77\x5b\x1f\x8a\x63\x05" +"\x6f\x91\x6f\x94\x76\x1e\xda\xa4\x06\x79\x98\x87\x97\x8a\xc5\x8a\xd2\x84\x9c\x66\xa3\x08\xb5\xa9\x97\xa2\xb9\x1a\xe0\x5d\xb4\x2c" +"\x1e\xfb\x62\xfc\x51\xd1\x06\xf7\x8c\x04\xf7\x1a\xf7\x15\x07\xc0\xa1\x77\x5c\x5c\x74\x77\x57\x1f\x6b\xf7\xf6\x15\xfb\x67\xfb\x3f" +"\xfb\x3f\xfb\x67\xfb\x64\xf7\x40\xfb\x42\xf7\x61\xf7\x6d\xf7\x3e\xf7\x3d\xf7\x6a\xf7\x66\xfb\x3f\xf7\x3f\xfb\x67\x1f\x4d\x04\xf7" +"\x41\xf7\x21\xfb\x23\xfb\x44\xfb\x47\xfb\x20\xfb\x22\xfb\x46\xfb\x3d\xfb\x21\xf7\x26\xf7\x42\xf7\x45\xf7\x21\xf7\x23\xf7\x41\x1f" +"\x0e\x31\xf8\xb4\xf7\x9f\x15\xfc\x8c\x45\xf8\x8c\x06\x0e\xf7\x6f\xf8\xf9\x15\xbf\x5f\x96\x81\xae\x68\x08\x95\x6d\x7d\x8e\x78\x1b" +"\x63\x63\x7f\x74\x68\x1f\x47\x5f\x68\x38\xfb\x09\x1a\xfb\x47\xe1\x25\xf7\x2b\xf7\x2c\xe0\xf0\xf7\x49\xe7\x76\xcf\x58\xd9\x1e\x65" +"\xc4\x66\xb1\x43\xc2\xe5\xb4\x18\x63\xb0\x2a\x5e\x48\xb6\x7e\x92\x6c\x98\x19\x5f\x5f\xb6\x73\x98\x83\xa5\x77\x19\x36\x63\xaf\x64" +"\x05\xf7\x2b\x21\x40\x1d\x31\xf8\x4a\xf8\x3f\x15\xfb\x27\xfb\x26\xfb\x26\xf7\x25\x5a\x5a\xf7\x26\xfb\x26\xfb\x27\xfb\x27\xbd\x5a" +"\xf7\x26\xf7\x26\xf7\x27\xfb\x27\xbd\xbd\xfb\x27\xf7\x27\xf7\x26\xf7\x26\x05\x0e\xfb\xe9\xf7\x12\x57\x0a\x0e\xca\xf8\xb4\xf8\x49" +"\x15\xf5\x73\x56\xbc\x32\x1b\xfb\x0a\x3c\x2d\xfb\x21\xfb\x1d\xda\x2d\xf7\x07\xc4\xb9\xa2\xba\xac\x1f\x9e\xa7\x95\xa7\x97\xc7\x08" +"\x44\x06\x3a\x7e\x66\x60\x53\x1b\x6b\x67\x9d\xa7\x76\x1f\x74\xa8\x7e\xb7\xbe\x1a\xf4\xbc\xce\xd7\xc0\xa7\x70\x49\x9c\x1e\x23\xf7" +"\xc5\x15\xfb\x67\xfb\x3f\xfb\x3f\xfb\x67\xfb\x64\xf7\x40\xfb\x42\xf7\x61\xf7\x6d\xf7\x3e\xf7\x3d\xf7\x6a\xf7\x66\xfb\x3f\xf7\x3f" +"\xfb\x67\x1f\x4d\x04\xf7\x41\xf7\x21\xfb\x23\xfb\x44\xfb\x47\xfb\x20\xfb\x22\xfb\x46\xfb\x3d\xfb\x21\xf7\x26\xf7\x42\xf7\x45\xf7" +"\x21\xf7\x23\xf7\x41\x1f\x0e\x84\x23\x0a\xad\xf7\xca\x21\x1d\x84\x23\x0a\x5b\xf7\xcb\x2b\x1d\x84\x23\x0a\x6d\xf7\xb1\x22\x1d\x84" +"\x23\x0a\x6a\xf7\xca\x3d\x0a\x84\x23\x0a\x8a\xf7\xd8\x27\x0a\x0e\x84\x23\x0a\xed\xf7\xb3\x36\x0a\xbb\xf8\x0f\x74\x15\xf7\x44\xef" +"\xed\xf7\x53\xa1\x1f\x2b\x06\x83\x59\x81\x69\x7c\x6d\x45\x0a\xf7\x4b\xf7\x4f\xe3\xf7\x07\xf7\x22\xc5\x73\x1d\xb6\x6d\xa9\x80\xd7" +"\x80\x6c\x46\x18\x96\x84\x05\x91\x79\x0a\x7a\x90\xa3\x5d\x6f\x0a\x58\x82\x86\x8b\x89\x7e\x1f\x0e\x84\x24\x0a\xf7\x4c\xf9\xed\x26" +"\x0a\x84\x24\x0a\xf7\x06\xf9\xee\x37\x1d\x84\x24\x0a\xf7\x18\xf9\xd4\x22\x1d\x84\x24\x0a\xf7\x1d\xf9\xed\x22\x0a\xfc\x20\x44\x1d" +"\x71\x3b\x0a\xfc\x20\x44\x1d\x29\xfa\x40\x27\x1d\xfc\x20\x44\x1d\x3b\xfa\x1f\x22\x1d\xfc\x20\x44\x1d\x3c\xfa\x3f\x22\x0a\xbb\xf9" +"\x1a\x20\x1d\x33\xfc\xe8\x06\xfc\x11\xf8\xe8\x05\x26\xfd\x6d\xe3\xf8\xe3\x06\xf8\x0c\xfc\xe3\x05\xf5\x06\xfb\x47\xfa\x28\x15\x72" +"\x83\x7f\x80\x7a\x1b\x7e\x71\x92\x95\x73\x1f\x9c\x61\x83\x8d\x77\x1b\x5f\x6c\x42\x0a\xf3\x25\x0a\xa9\xf7\xac\x26\x0a\xf3\x25\x0a" +"\x5d\xf7\xad\x2b\x1d\xf3\x25\x0a\x6f\xf7\x93\x22\x1d\xf3\x25\x0a\x6c\xf7\xac\x3d\x0a\xf3\x25\x0a\xf3\xf7\x95\x6c\x1d\x84\x29\x0a" +"\xfb\x14\xf7\xa7\x2e\x0a\xbb\xf8\xbb\xf9\x6d\x15\x8c\xfc\x94\x05\x29\x44\x4f\xfb\x08\xfb\x08\x44\xc7\xed\x1e\x5a\x1d\xfb\x26\xf7" +"\x02\x2d\xf7\x3e\xf7\x3e\xf7\x02\xea\xf7\x25\x1e\x8a\xf8\x94\x05\xfb\x95\xf7\x66\x21\x1d\xbb\x41\x0a\xfb\xdb\xf7\x67\x2b\x1d\xbb" +"\x41\x0a\xfb\xc9\xf7\x4d\x22\x1d\xbb\x41\x0a\xfb\xcc\xf7\x66\x3d\x0a\x84\xf8\x16\x55\x1d\xfb\x69\xf7\xf7\x05\xfb\x07\x06\xf7\xac" +"\xa0\x0a\xe8\x07\x76\x3b\x0a\x84\x28\x0a\x40\x38\x1d\x4c\x2d\x0a\xfb\x6b\xf7\x25\x2e\x0a\x25\x1d\x36\xf8\x75\x26\x0a\x25\x1d\xfb" +"\x35\xf8\x76\x15\x2b\xfb\x2a\x05\xcb\x06\xda\xeb\xdb\x2b\x05\xcb\x06\x2a\xf7\x2a\x05\x0e\x25\x1d\xfb\x25\xf8\x5c\x22\x1d\x25\x1d" +"\xfb\x1f\xf8\x75\x22\x0a\x25\x1d\xfb\x06\xf8\x83\x27\x0a\x0e\x25\x1d\x7d\xf8\x5e\x15\x72\x83\x7f\x73\x0a\x99\x88\x81\xa3\x1f\x75" +"\xc5\x93\x89\x9e\x1b\xbc\xa9\xae\xd0\x95\x1f\x0e\xfb\x42\xf7\x9c\x74\x15\xf7\x0f\xde\xd9\xf7\x11\x92\x1f\x37\x06\x36\x84\x0a\xf7" +"\x18\x72\x0a\x21\xaf\x36\xcc\x5d\x1f\xa6\x77\xa2\x82\xb6\x83\x6c\x44\x18\x97\x84\x05\x91\x91\x1d\x62\x05\x70\xcc\xa0\x95\x0a\xaf" +"\xc4\xb6\x6e\xa3\x59\x82\x31\x0a\x29\x1d\xfb\x07\xf8\x4a\x21\x1d\x29\x1d\xfb\x4c\xf8\x4b\x27\x1d\x29\x1d\xfb\x3a\xf8\x31\x22\x1d" +"\x64\x1d\xfc\x20\x2e\x1d\x7b\x41\x1d\xfc\x20\x2e\x1d\x33\xf9\x79\x27\x1d\xfc\x20\x2e\x1d\x45\xf9\x58\x22\x1d\xfc\x20\x2e\x1d\x46" +"\xf9\x78\x22\x0a\x35\x1d\xf7\x7b\xf7\x55\x15\x72\x83\x7f\x53\x1d\x62\x83\x8d\x76\x1b\x5f\x6d\x42\x0a\x2a\x1d\xa4\xf7\xaa\x21\x1d" +"\x2a\x1d\x5c\xf7\xab\x2b\x1d\x2a\x1d\x6e\xf7\x91\x22\x1d\x2a\x1d\x6f\xf7\xaa\x22\x0a\x2a\x1d\xf2\xf7\x93\x6c\x1d\xfb\x42\x31\x1d" +"\x53\xf7\x69\x42\x1d\x26\x1d\xfb\x03\x41\x1d\x26\x1d\xfb\x48\xf9\x79\x27\x1d\x26\x1d\xfb\x36\x3a\x0a\x26\x1d\xfb\x38\xf9\x78\x22" +"\x0a\xfb\x42\x2b\x0a\xfb\x63\x39\x1d\xfb\x42\x2b\x0a\xfb\x99\xf7\x53\x22\x1d\xfb\x42\x3e\x1d\xfb\x25\xf7\x21\x15\xeb\xf7\x2a\x05" +"\x4b\x06\x3c\x2b\x3b\xeb\x05\x4b\x06\xec\xfb\x2a\x05\x0e\xfb\xc9\xbd\xf8\xd4\x15\xfb\xc9\xc6\xf7\x3e\x07\xcb\xac\xb4\xbf\xb1\xa3" +"\x73\x66\x1e\xfb\x6a\xc6\xf7\x7d\x07\xbe\x61\xad\x4a\x5e\x6b\x7b\x67\x70\x1e\xb6\x07\x0e\xf7\x98\x35\x0a\xf7\xa1\xcf\x58\x0a\x0e" +"\xf3\x65\x1d\xf7\x3e\xcf\x8b\x0a\x0e\xf3\x65\x1d\xf7\x40\xf7\xa5\x15\x37\xfd\x6d\xdf\x06\x0e\xf7\x34\xf8\xe2\x2f\x1d\xfc\x82\xfb" +"\x15\x15\xfb\xbc\xc9\xf8\x3d\x60\x07\x7a\x4b\x7d\x80\x43\x84\x7c\x8a\x18\x5d\x07\xf9\x31\xfb\xf8\x66\x1d\x0e\xf7\x34\xf8\xff\x2f" +"\x1d\xbc\x56\x0a\xfc\x8a\xf7\xa7\x67\x1d\x0e\xf7\x34\xf8\xff\x2f\x1d\xbb\xfc\x79\x15\xb8\xa6\x99\xa0\xb3\x1a\xce\x56\xb9\x40\x3f" +"\x57\x5d\x48\x63\x98\x76\xb8\x70\x1e\x5a\x73\x73\x68\x5c\x1a\x3d\xc5\x55\xe0\xdf\xc6\xc1\xd9\xba\x73\xae\x59\xa3\x1e\x45\xf7\x2e" +"\x15\xb9\xa4\x1d\xb7\x1f\x8c\xfb\x45\x15\xc0\xaf\x69\x59\x58\x67\x6a\x54\x57\x68\xad\xbd\xbd\xae\xad\xc1\x1f\xfb\xf6\x20\x0a\xfb" +"\x70\x06\x6b\xfb\x7b\x05\xbc\x06\xa8\xa3\xa0\x95\xac\x1b\xc4\xaf\x64\x4c\x4e\x67\x66\x52\x5d\x6e\xa2\xbb\x7f\x1f\x56\x06\x92\x68" +"\x91\x7b\x98\x7b\x08\x6b\xa3\xb6\x78\xbb\x1b\xe1\xc7\xc9\xe5\xe0\x53\xc4\x39\x6d\x73\x83\x7a\x73\x1f\x9b\xf7\x0a\x05\xf7\x46\x06" +"\x0e\xf7\x34\xf8\xc1\x2f\x1d\xf1\x56\x0a\xfb\xc8\x20\x0a\xfb\xb0\x57\xf7\x79\x06\x26\xfb\x25\x62\x33\x6b\xfb\x20\x08\xc3\x06\xa3" +"\xf7\x1c\xc0\xf7\x09\xeb\xf7\x14\x08\x0e\xf7\xda\x5e\x0a\xf7\x24\xf7\xb8\x26\x0a\x84\x23\x0a\xfb\x2b\xf7\xc2\x15\x8c\x2f\x0a\xe8" +"\x3f\x0a\x50\x06\x61\x86\x6b\x73\x55\xbe\x1d\x84\x23\x0a\x0e\x84\x23\x0a\xfb\xad\xef\x21\x0a\x84\x23\x0a\xf7\x1c\xf7\xa3\x28\x1d" +"\x84\xf8\x6e\xf7\x6f\x15\xd6\xfb\x6f\x05\xaf\x06\x44\x6c\x6d\x6b\x5b\x1a\x64\x5b\x1d\xa1\xa4\x86\xa1\x1b\x9e\x60\x1d\xb7\x1d\x72" +"\x1b\x5c\x73\x9e\xaf\xb4\xa9\xac\xcd\xaa\x1f\x82\x1d\x0e\x84\x23\x0a\x89\xf7\xd8\x27\x0a\x53\xf7\x3a\x21\x1d\x84\x54\x0a\xbb\x2a" +"\x0a\xfb\x35\xf8\x48\x21\x1d\xbb\x2a\x0a\xfb\x1f\xf7\xb3\x2e\x0a\xbb\x2a\x0a\xfb\x85\xf8\x49\x27\x1d\xbb\x2a\x0a\xfb\x19\xf8\x30" +"\x24\x1d\x84\x6e\x1d\xbb\x6f\x1d\xab\xf9\x58\x3c\x0a\xbb\x59\x0a\x4d\x8f\x16\xf8\xf0\x06\xfb\x97\xf9\x0a\x05\x33\x06\xb7\x25\x15" +"\xf7\x4b\xfc\x5b\x05\xfc\x01\x06\x0e\x84\x24\x0a\x96\xf9\xe5\x6e\x0a\x84\x24\x0a\xf7\x65\xf9\x58\x2e\x0a\x84\x24\x0a\xf7\x6a\xf9" +"\xd5\x24\x1d\x84\x24\x0a\xf7\xbf\xf9\xc6\x28\x1d\xbc\xf8\x2e\xfb\xbc\x15\x89\xa5\x96\x8a\x9a\x1b\xc2\xb5\x98\xa4\xa9\x1f\xac\xa9" +"\x97\xaf\xd8\x1a\xf9\x1d\x07\xd0\x78\xbc\x64\xae\x1e\xaf\x62\x4f\xa0\x4d\x1b\x2a\x49\x64\x25\x42\x1f\xf7\x0c\x38\xfd\x64\xe8\xf8" +"\x34\x07\xdb\x9c\xc3\xb1\xb6\x1e\xb5\xb0\xbd\xa1\xc6\x1b\xbe\xb9\x7a\x6e\xa3\x1f\xa1\x72\x95\x67\x57\x1a\xfc\xe3\x07\x48\x8a\x80" +"\x81\x7d\x1e\x76\x7e\x72\x82\x62\x1b\x7f\x80\x8b\x8d\x79\x1f\x0e\x84\xf7\x4b\x9d\x1d\xf8\x5b\x06\x44\x6d\x6d\x6a\x5b\x1a\x64\x5b" +"\x1d\xa2\xa4\x86\xa1\x1b\x9d\xad\x90\x90\xa2\x1f\xb8\x07\x84\x78\x78\x88\x72\x1b\x5c\x72\x9e\xae\xb4\xaa\xae\xcc\xa9\x1f\xdd\xfc" +"\x42\x07\x0e\x84\x24\x0a\x0e\xf7\x02\xf7\x94\x8f\x1d\xfb\x79\xf9\x1b\x21\x0a\xbb\x8d\x1d\x0e\xf7\x38\xf9\x04\x92\x1d\xfb\x7a\xf8" +"\x21\x21\x0a\xda\xf7\xcd\x15\x54\x06\x75\x50\x05\xde\x06\x97\x47\x9f\x52\xa9\x5b\x08\x4b\xb2\xd5\x64\xe0\x1b\xc7\xc3\x9a\xaa\xbd" +"\x1f\xe8\x07\x5b\x39\x68\x7e\x5a\x1b\x34\x52\xce\xf7\x17\x72\x1f\xf7\x6a\x06\xa3\xc6\x05\xfb\x8a\x06\x8a\x96\x8b\x93\x96\x1a\x98" +"\x8c\x95\x8c\x98\x1e\xf7\xa2\x06\xa2\xc6\x05\xfb\xb0\x06\xf7\x19\xa7\xbf\xc9\xe1\x1b\xc0\xb4\x7a\x55\xd4\x1f\xab\xdb\x05\xba\x49" +"\x52\x9f\x46\x1b\x35\x4a\x6a\x47\x5c\x1f\x69\x59\x75\x53\x81\x4b\x08\x4c\x06\x75\x50\x05\xda\x06\x89\x78\x8b\x81\x7e\x1a\x0e\xfb" +"\x0f\xd9\xf9\x6d\x15\xfd\x6d\xe8\xf9\x1b\xf8\x0c\xdd\x07\x0e\xf3\x32\x1d\xfc\x60\xfa\x3b\x6e\x0a\xf3\x32\x1d\xfc\x07\xfa\x44\x37" +"\x1d\xf3\x32\x1d\xfc\x08\x53\x23\x1d\xf3\x32\x1d\xfb\x9f\xfa\x2b\x24\x1d\xbb\xde\xf8\x8a\x15\xfc\x8a\xe9\xf7\xe0\xf8\x0a\xfb\xe0" +"\xe8\xf8\x8a\xd6\xd1\x40\xf7\x31\x2e\xfb\x31\xfc\x0b\xf7\x31\x2e\xfb\x31\x40\x45\x07\xf7\x3c\x16\xf8\x0b\x33\xfc\x0b\x06\x0e\xbb" +"\x8d\x1d\xf7\x27\xf8\xf4\x27\x1d\xc8\xf7\x58\x2c\x1d\xf8\x03\x63\x0a\x0e\xfc\x20\xf7\x50\x2c\x1d\xfb\x5c\xfa\x37\x7c\x1d\xfc\x20" +"\xf7\x57\x2c\x1d\x8c\xfa\x27\x24\x1d\xfc\x20\x30\x0a\xdb\xfa\x18\x15\xfb\x92\x45\xf7\x92\x06\x0e\xfc\x20\xf7\x56\x20\x1d\x2d\xfd" +"\x6d\xb6\x06\x52\x62\x77\x6c\x5f\x1a\x56\xb7\x68\xcc\x9d\xa2\x8f\x90\x9d\x1e\xb8\x07\x85\x79\x7e\x88\x7d\x1b\x6c\x77\xa0\xaa\xaf" +"\x9e\xb1\xb0\xac\x1f\x0e\xfc\x20\x30\x0a\x0e\xfc\x20\x30\x0a\x37\x38\x1d\xfb\xb6\xf7\x94\x2c\x1d\xfb\x7a\xf9\x6d\x21\x0a\xfc\x20" +"\x30\x0a\xb2\xfa\x28\x36\x0a\xfb\x42\x60\x0a\x20\xf7\x67\x2b\x1d\x84\x64\x0a\x84\x66\x0a\xf7\x13\x4f\x23\x1d\x3a\x1d\x84\xf9\xed" +"\x21\x1d\x85\xf8\x20\x20\x1d\xfb\x10\x06\xfb\x94\xfd\x6d\x05\xf3\x06\xf7\x6a\xf9\x09\xf7\x6a\xfd\x09\x05\xf3\x06\x0e\x3a\x1d\xef" +"\xf9\x1b\x38\x0a\x3a\x1d\xdf\xfb\x22\x23\x1d\x3a\x1d\xf7\x3c\xf7\xda\x15\x22\xf1\xf4\x07\x0e\xf7\x33\x76\x1d\xbb\x36\x1d\xfb\x94" +"\xfa\x3f\x26\x0a\xbb\x36\x1d\xfb\x81\xf9\xaa\x3c\x0a\xbb\x36\x1d\xfb\xf0\x4f\x23\x1d\xbb\x36\x1d\x0e\xf3\x25\x0a\xfb\x2b\xf7\xa4" +"\x15\x8c\x2f\x0a\xe8\x3f\x0a\x50\x06\x61\x86\x6b\x73\x55\xbe\x1d\xf3\x25\x0a\x72\xf7\xac\x39\x0a\xf3\x25\x0a\xf7\x1e\xf7\x85\x28" +"\x1d\xd9\xa8\x16\xf7\xb4\xdd\x06\x4e\xaf\x6e\xa4\x6f\xb1\x08\x63\xc1\x75\xd8\xdd\x1a\xf7\x37\xe7\xf1\xf7\x27\xf7\x26\xe7\x25\xfb" +"\x37\x39\x75\x3e\x63\x55\x1e\x6f\x65\x6e\x72\x4e\x67\x08\x39\xf7\xb4\xdd\xfb\x55\x07\xc8\xaf\xa6\xa2\xa7\xb2\x08\xb4\xc3\xa0\xd4" +"\xe1\x1a\xe5\x74\xd8\x60\xc3\x1e\xd8\x4e\x29\xb9\x20\x1b\x2e\x34\x68\x4c\x4d\x1f\x50\x50\x6d\x37\x22\x1a\x35\xa0\x42\xb4\x53\x1e" +"\xa7\x64\xa6\x74\xc8\x67\x08\xfb\x55\x06\x58\xf9\x1b\x21\x0a\xf3\x25\x0a\x0e\xef\xf8\x16\x52\x0a\xfc\x2e\xd1\x15\x30\x07\xa5\x23" +"\x05\xa9\x06\xa5\xf3\x05\xe6\x07\x0e\xf3\x53\x0a\xf7\x4e\xf9\xba\x26\x0a\xf7\x10\xf7\xf4\x81\x15\xe8\xe6\x06\xf7\x41\x95\xf1\xf4" +"\xf7\x3d\x1a\xf7\x3d\x26\xf3\xfb\x42\x95\x1e\xe6\x2e\x30\x07\xfb\x3b\x81\xfb\x00\xfb\x03\xfb\x36\x1a\xfb\x37\xf7\x00\xfb\x02\xf7" +"\x3b\x80\x1e\xdc\x04\x61\x8f\x74\x92\x6e\x9e\x08\x4e\xb2\x70\xc0\xdb\x1a\xdd\xa7\xc2\xc5\xb0\x1e\xa8\x9d\xa3\x93\xb6\x8e\x08\xe8" +"\x16\xb6\x88\xa3\x83\xa8\x79\x08\xc5\x66\xa7\x54\x39\x1a\x3b\x70\x56\x4e\x64\x1e\x6e\x78\x74\x84\x61\x87\x08\x0e\xbb\xf7\x43\xf9" +"\x1b\x15\xf8\x09\xfd\x1b\xe9\xf9\x6d\xfc\xc5\xfd\x6d\xe9\x06\x0e\xf7\x35\xf8\x63\x20\x1d\x2f\xfc\x91\x06\x4f\x8d\x59\x9b\x65\xa7" +"\x55\xb6\x80\xb6\x8c\xf7\x34\x08\xf7\x6d\x2d\xfb\x6d\x07\xfb\x3e\x9c\x49\xc8\x50\x1e\xc3\x59\xd9\x70\xe9\x89\x08\xfb\x1e\xe7\xf7" +"\x1e\x07\xdc\x8d\xcf\x9f\xc1\xb1\x08\xdc\xc6\xa1\xd0\xf7\x4e\x1a\xf7\x6d\x2d\xfb\x6d\x07\x8c\xfb\x2a\x82\x63\x62\x5f\x65\x68\x52" +"\x77\x47\x88\x08\x0e\xbb\x33\x0a\x6f\xf8\xb3\x21\x1d\xbb\x33\x0a\x84\xf8\x1e\x3c\x0a\xbb\x33\x0a\x2f\xfc\x5c\x23\x1d\x84\x6d\x1d" +"\x84\x29\x0a\xfb\x26\xf8\x3c\x21\x1d\x84\xf7\xe6\x73\x15\xd2\x8e\xb3\x92\xb4\x9b\x08\xdc\xac\xc0\xda\xe1\x85\x1d\xe3\x06\xbd\x88" +"\x99\x7b\xad\x1e\xdf\x63\x36\xb7\xfb\x0f\x4a\x1d\x88\xfb\x10\xd5\x2c\xf7\x0d\x71\xb7\x84\x18\x8c\x8f\x8a\x89\x91\x1f\x6c\x46\x96" +"\x85\x05\x90\x97\x93\x8d\x96\x44\x0a\x7a\x91\xa2\x5d\x87\x1d\x84\x29\x0a\xfb\x75\xf8\x3d\x27\x1d\x84\x29\x0a\xfb\x6d\xfc\xd3\x23" +"\x1d\x53\xb7\x16\xf8\xa8\xdd\xfc\x32\x06\xf7\xad\xf7\xb4\xfb\xa7\xf7\xa9\x05\xf8\x1b\xdd\xfc\x96\x39\x06\xf7\xac\xfb\xa9\xfb\xad" +"\xfb\xb5\x05\x0e\x4c\x3e\x0a\x0e\x4c\xf7\x99\xf8\x27\x15\xfc\x27\xe8\xf8\x27\xf7\x34\xce\xfb\x34\xf7\x45\xbf\x1d\xfb\x45\xfb\x34" +"\x48\x07\x0e\x4c\x3e\x0a\x8c\xf9\xaa\x3c\x0a\x4c\xf7\xef\x16\x92\xf9\x1b\xf7\x83\xdd\xfc\xd0\x39\xf7\x84\xfd\x1b\xbb\x06\x61\x2f" +"\x50\x0a\x4d\x1d\xaf\xc4\xa2\x0a\x83\x31\x0a\xf3\xf8\xaf\xf8\x20\x15\xfb\xbf\x42\xf7\xbf\x06\xfb\x2b\xf8\x36\x68\x1d\xbb\x2d\x1d" +"\xfc\x47\xf7\x5e\x75\x0a\x6c\xa1\xb7\x86\x1f\x0e\xbb\x2d\x1d\xfb\xd0\xf7\x66\x39\x0a\xbb\x2d\x1d\xfb\x23\xf7\x3f\x28\x1d\xbb\xf8" +"\xee\xfb\x2a\x15\x84\x79\x77\x88\x72\x1b\x5c\x72\x9e\xae\xa9\xa0\xad\xb7\xb5\x1f\xdf\xd8\xa5\xbe\x8e\xe4\x08\xf8\x94\x2e\x88\x1d" +"\xfb\x29\xf6\x30\xf7\x42\xaf\xa0\x8e\x95\xb7\x1e\x57\x6b\x76\x6e\x62\x1a\x65\xa0\x71\xb5\x7b\x1e\x83\xa2\xa4\x86\xa1\x1b\x9d\x60" +"\x1d\x0e\x84\x28\x0a\x0e\x84\x28\x0a\x39\x38\x1d\xf7\x49\xf8\x9b\x80\x1d\xfc\x7a\xf9\x6d\x21\x0a\xbb\x2d\x1d\xfb\xac\xf7\x74\x27" +"\x0a\x0e\xbb\x2d\x1d\xfb\x51\xf7\x4f\x5d\x0a\xf7\xa2\x34\x1d\x2f\x3b\x0a\xf7\xa2\x34\x1d\xfb\x71\xfa\x40\x37\x1d\xf7\xa2\x34\x1d" +"\xfb\x5b\x38\x1d\xf7\xa2\x34\x1d\xfb\x4a\xfa\x3f\x22\x0a\x73\xcb\x16\xf8\x9f\xdd\xfc\x9f\x06\xaa\xf7\x8e\x15\xf8\x5f\xdd\xfc\x5f" +"\x06\x6e\xf7\x7d\x15\xf8\x9b\xdd\xfc\x9b\x06\x0e\x84\x28\x0a\x31\xfa\x40\x2b\x1d\x84\x28\x0a\x36\xfa\x3f\x22\x0a\x4c\x2d\x0a\xfb" +"\x7e\xf7\xba\x21\x1d\x4c\x2d\x0a\xfb\x66\xf7\xa2\x24\x1d\x4c\x2d\x0a\x0e\x25\x1d\xfb\x9c\xf8\x6d\x71\x0a\x85\x1f\x0e\xf7\x6b\x51" +"\x0a\xfb\xb5\xf8\x4a\x21\x1d\xf7\xda\x8c\x0a\x84\xf8\x6d\x69\x0a\x0e\x79\xf7\x3e\xf8\x38\x15\xf7\x77\xf8\x14\xdd\xfc\x72\xa3\x1d" +"\x5d\xb0\x1f\xac\x62\x7a\x0a\x84\xdc\x74\x1d\xe9\xfb\xcf\x15\xf7\x7d\xf7\x47\x07\xbf\xa8\x84\x78\xa4\x1f\xa5\x77\x99\x6d\x63\x1a" +"\x63\x7d\x6c\xbb\x1d\xfb\x47\xfb\xe0\x15\xf7\x8e\xf7\x76\x07\xdd\xbc\x5d\xc1\x1d\xfb\x18\xde\xf9\x6d\x15\xfd\x6d\xe9\xf9\x1b\xf7" +"\xfc\xdd\x07\x0e\x8e\xf8\xcd\x16\xfb\x3a\xe9\xf7\x8c\x53\xf9\x1b\xfc\x38\xfb\xfd\x07\x8f\xfb\x3c\x49\x20\xfb\x07\x80\x08\xfb\x8c" +"\xe9\xf7\x3a\x07\xf8\x2d\xdd\x15\xfb\xee\x06\xd4\xb8\xb5\xf4\x8a\xf7\x1f\x08\xf7\xa8\xf7\x7c\x07\x0e\x84\x8b\x1d\x0e\x84\x8b\x1d" +"\xf7\x17\xf9\xd4\x22\x1d\xf7\x8d\xf8\x32\x16\xe9\xf7\xed\xef\x49\x0a\xf1\x06\xfb\x8f\xf8\x14\xf7\x60\xf7\xed\x05\x24\x06\xfb\x48" +"\xfb\xc2\x05\x2a\xf7\xc2\x2d\xfb\xc2\x2a\x06\xfb\x48\xf7\xc2\x05\x22\x06\xf7\x63\xfb\xed\xfb\x8f\xfc\x14\x05\xf4\x06\xf7\x74\xf7" +"\xed\x05\xec\x06\x0e\x45\xc3\xf7\x74\x15\x8c\x4d\x93\x68\xa3\x63\x08\x43\xb6\xd6\x65\xed\x1b\xd7\xc8\xa2\xb6\xb3\x1f\xb2\xb4\xa2" +"\xc9\xc7\x1a\xe9\x5a\xcb\x37\x9b\x1e\xad\x96\x9c\x95\x9c\xa0\x08\xa6\xab\x9b\xb8\xb8\x1a\xf7\x06\x2e\xde\xfb\x13\xfb\x1a\x32\x32" +"\xfb\x1a\x1e\x7a\xe9\xad\x07\xd5\xc0\xbd\xd8\xd6\xbd\x5a\x43\x41\x54\x5b\x37\x1e\x6a\x3a\xb3\x06\xba\xa5\x85\x7a\xa5\x1f\xaf\x74" +"\x9e\x64\x58\x1a\x33\x55\x57\x2f\x2d\x4f\xc5\xe5\x1e\x9c\x07\x0e\xb8\x43\x0a\x0e\xb8\xd8\x16\xe9\xde\x06\xf8\x0c\xb1\x1d\xfc\x0c" +"\xfc\x40\x05\xf8\x92\x2d\x07\xf7\x17\xf7\x5e\x97\x1d\x50\x06\x61\x87\xad\x1d\x30\xca\x16\x86\x1d\x4c\xf7\xc2\x2d\x06\x0e\x79\xf8" +"\x97\x16\xe9\xf9\x6d\xfc\x7b\x84\x1d\xf7\xbf\x07\x0e\xf7\x33\xf8\x67\x16\xf7\x61\xf8\xf7\x05\xfc\xf7\xe3\xf9\x6d\xfb\x15\x07\xfb" +"\x68\xfd\x0f\xfb\x6c\xf9\x0f\x05\xfb\x15\xfd\x6d\xe3\xf8\xf7\x06\xf7\x63\xfc\xf7\x05\x0e\xbb\xf8\xb8\x4e\x0a\xe9\xf9\x6d\x87\x0a" +"\xf3\xf8\x18\xf9\x79\x68\x1d\xb8\xf7\x41\xf9\x1b\x15\xf8\x09\xfd\x1b\xe9\xf9\x6d\xfc\xc5\xfd\x6d\xe9\x06\x0e\x84\xf7\x4e\xf7\xc9" +"\x15\xf7\x78\x8c\x1d\xe9\x97\x0a\xf7\x55\x07\xe4\xc0\x5b\x3b\x3b\x56\x5b\x32\x1f\x0e\xbb\xf8\xdb\xf7\x95\x15\xfb\x0b\x89\x3a\x3c" +"\xfb\x0c\x1b\xfb\x2a\x2d\xf7\x06\xf7\x4d\xf7\x51\xe7\xf7\x04\xf7\x30\xf7\x08\xd2\x4d\x26\x8c\x1f\xee\x06\xf7\x23\x88\xfb\x0c\xf1" +"\xfb\x39\x1b\xfb\x61\xfb\x1c\xfb\x2c\xfb\x7b\xfb\x13\xb7\xfb\x04\xd7\x48\x1f\x59\xc3\xd2\x72\xe0\x1b\xf7\x0f\xec\xc0\xed\xc2\x1f" +"\xa4\xb8\x93\xa8\xc2\x1a\x0e\x4c\xf7\xf5\xf9\x1b\x15\xf7\x83\xdd\xfc\xd0\x39\xf7\x83\xfd\x1b\xe9\x06\x0e\x64\x72\x1d\x0e\xe1\xf7" +"\xe1\x81\x15\xe9\xe6\x06\xf7\x54\x95\xf7\x05\xf4\xf7\x3d\x1a\xf7\x3d\xfb\x04\xf3\xfb\x55\x95\x1e\xe6\x2d\x30\x07\xfb\x4e\x81\xfb" +"\x0b\xfb\x03\xfb\x36\x1a\xfb\x37\xf7\x0b\xfb\x02\xf7\x4e\x80\x1e\xdc\x04\x5b\x8f\x70\x92\x68\x9e\x08\x45\xb2\x6c\xc0\xdb\x1a\xdc" +"\xac\xc4\xce\xaf\x1e\xad\x9e\xa6\x92\xbd\x8e\x08\xe9\x16\xbd\x88\xa6\x84\xad\x78\x08\xce\x67\xac\x52\x3a\x1a\x3b\x6c\x56\x44\x64" +"\x1e\x69\x78\x70\x84\x5b\x87\x08\x0e\x84\xf8\x19\x61\x0a\xf7\x07\x06\x0e\xcd\xde\x16\xf8\x9f\xfb\x3a\xe9\xf7\x8c\x54\xf9\x1b\x94" +"\x0a\x84\xf8\x8f\x16\xe9\xf9\x6d\x7d\x1d\xf7\x87\xbe\x16\xf9\xc2\xf9\x6d\x2d\xfd\x1b\xfb\x9e\xf9\x1b\x2d\xfd\x1b\xfb\x9e\x4c\x0a" +"\xf7\x9c\xc0\x16\xf9\xaa\xfb\x3a\xe9\xf7\x8c\x53\xf9\x1b\x2d\xfd\x1b\xfb\xaa\xf9\x1b\x2d\xfd\x1b\xfb\xa0\x4c\x0a\xf7\x0a\xf7\xe6" +"\x20\x1d\xfc\x04\x39\xf7\xa6\xfd\x1b\xf7\xb9\x06\xf7\x23\xdd\xd8\xf7\x19\xd3\x73\xc2\x5d\xb0\x1f\xac\x62\x5d\x98\x41\x1b\xfb\x55" +"\x06\x39\x04\xf7\x4c\x06\xe7\xc1\x5b\x3b\x3b\x55\x5b\x2f\x1f\xfb\x4c\x06\x0e\xf7\x67\xf7\x47\xf8\x38\x15\xf7\xc9\x2d\xfd\x6d\x62" +"\x0a\x39\x15\x68\x0a\xf8\xa3\x39\x15\xe9\xf9\x6d\x2d\x06\x0e\x79\xf7\x40\xf8\x38\x15\xf7\xc9\x2d\xa3\x1d\x5c\xb0\x1f\xac\x63\x7a" +"\x0a\xb8\xf8\xf6\xf7\xd7\x15\xfb\x39\x7b\x2b\x28\xfb\x25\x1b\x45\x4b\xa5\xb9\x5e\x1f\x6a\xac\x7a\xab\x79\xc8\x30\x7b\x18\xa3\x3b" +"\xa0\x64\xb5\x5e\x08\x4a\xca\xe1\x68\xf1\x1b\xf7\x66\xf7\x22\xf7\x2d\xf7\x79\xf7\x79\xfb\x22\xf7\x2d\xfb\x66\xfb\x31\xfb\x01\x40" +"\xfb\x27\x50\x1f\xe6\x79\x05\xf2\xb6\xdd\xc2\xf7\x01\x1b\xe1\xd8\x63\x48\xb7\x1f\xa5\x63\x99\x60\x94\x4c\x08\xfb\xcd\x38\x06\x0e" +"\xf7\xe4\xf7\x38\xf8\x32\x15\xf7\xcf\x2d\xfd\x6d\xe9\xf7\xe0\xf7\x2a\x07\xfb\x6e\x99\xf7\x16\xfb\x1d\xf7\x55\x1b\xf7\x53\xf7\x12" +"\xf7\x2c\xf7\x7a\xf7\x7a\xfb\x12\xf7\x2c\xfb\x53\xfb\x4c\xfb\x12\xfb\x0f\xfb\x60\x72\x1f\xf7\xe2\xf7\x89\x15\xf7\x1e\xe2\xfb\x0a" +"\xfb\x4e\xfb\x46\x31\xfb\x0a\xfb\x1b\xfb\x25\x28\xf7\x0e\xf7\x46\xf7\x46\xee\xf7\x0e\xf7\x25\x1f\x0e\xbb\xf8\xb0\xf7\xce\x15\xfb" +"\xce\xe9\xf9\x6d\xfb\xe1\x07\xfb\x23\x3c\x46\xfb\x12\x36\xab\x5a\xdb\x63\x1f\x3c\x69\x78\x66\xfb\x0b\x1a\x89\xfb\x09\x86\x77\x6a" +"\x6a\x08\xf7\x00\x06\x9a\xae\x91\xaa\xc1\x1a\xab\x07\x8a\x99\x8b\x96\x93\x1a\xe4\xb0\xb3\xde\x1e\xf7\x83\xdd\x15\xfb\x74\x06\x28" +"\x5f\xb2\xe2\xb6\x98\xac\xa4\xa0\x1f\x9f\xa2\xa9\x93\xbf\x1b\xf7\x74\x06\x0e\xfb\x4d\xf8\x46\x20\x1d\xfc\x0e\xfd\x6d\xe9\xf9\x1b" +"\xf7\xec\xdd\x06\x3c\x1d\x05\xfb\x05\x06\x0e\xf7\x53\xf7\x96\x16\xe9\xf7\xb7\x06\xa9\x95\xa3\xa1\xa0\x1e\xab\xac\xb3\x97\xd6\x1b" +"\xf3\xb8\x6f\x4a\x1f\xfb\x3d\x07\x63\x76\x73\x67\x89\x1e\xfb\x25\x39\xf7\x26\x06\xdb\x89\xd3\xd6\x89\xdd\x08\xf7\x3a\x07\xb9\x7d" +"\xaf\x6c\xaa\x1e\xb5\x61\x5b\x9b\x31\x1b\x25\x5c\x78\x4f\x5a\x1f\xf7\x7e\xf7\x3d\xdd\xfc\x84\x39\xf7\x7d\x07\x0e\xfb\x18\xe1\xf9" +"\x6d\x15\xfd\x6d\xe9\xf9\x1b\xf7\xfc\xdd\x07\xfb\x83\xf7\x66\x21\x1d\xb8\xf8\x3c\xf7\xd7\x15\xde\xfb\xcd\x07\x92\xc1\x95\xaf\x9f" +"\xaf\x08\xdb\xb6\xdc\xba\xea\x1b\xf7\x01\xdc\x54\x24\xb6\x1f\xe7\x9d\x05\xf7\x27\x50\xfb\x02\xd6\xfb\x30\x1b\xfb\x67\xfb\x21\xfb" +"\x2d\xfb\x79\x9d\x0a\xf0\xe1\xae\xcc\xca\x1f\xb6\xb8\xa0\xb2\xa3\xdb\x2f\x9b\x18\x79\x4e\x7a\x6b\x6b\x6a\x08\x5d\x5e\x4a\x71\x46" +"\x1b\xfb\x25\x2b\xee\xf7\x39\x7b\x1f\x0e\x84\xf8\xe8\xf8\x97\x15\xf7\x21\x8c\x26\xe0\xfb\x3b\x4a\x1d\x8c\x48\x98\x5f\xa8\x63\x08" +"\x46\xbd\xdf\x68\xf7\x04\x1b\xe1\xd2\x9f\xaf\xba\x1f\xbc\xb2\xaa\xcc\xca\x1a\xe6\x53\xcc\x28\xa6\x1e\xfb\x4b\xbc\x05\x33\xa3\x6b" +"\xa7\xc3\x1a\xd5\xcc\xbc\xed\xf7\x08\xcc\x57\x2b\x8c\x1e\x0e\xfc\x20\xf7\x4e\x2c\x1d\x0e\xfc\x20\xf7\x4e\x2c\x1d\x3f\x38\x1d\xfb" +"\x42\xf7\xde\x20\x1d\xfc\x95\x07\x50\x85\x6b\x7a\x72\x1e\x6f\x79\x6a\x7a\x66\x1b\x69\x6c\x99\xa3\x78\x1f\x78\xa3\x84\xa5\xb7\x1a" +"\xba\x2d\x4b\x07\xfb\x0a\xda\x40\xf7\x0e\xce\xba\x9d\xb2\xb2\x1e\xb1\xb1\x9c\xb9\xcb\x1a\xf8\xb7\x07\x0e\xf8\x13\xf8\x94\xf9\x1b" +"\x15\xfd\x1b\xf7\xbc\x07\xf7\x23\xdc\xd8\xf7\x1c\xd2\x75\xbf\x5b\xb1\x1f\xac\x62\x5d\x98\x41\x1b\xfb\x57\xf7\xc9\xfc\x5f\x84\x1d" +"\x07\xf8\x01\xfb\xc9\x15\xf7\x4f\x06\xe6\x59\x1d\x30\x1f\xfb\x4f\x06\x0e\xf7\xe4\xf8\x4e\xf7\xe6\x15\xfb\xe6\x62\x0a\xf7\xc9\x2d" +"\xfb\xc9\xfb\xb9\xf7\xc9\x2e\xfd\x6d\xe9\xf7\xe6\x06\xf8\x16\x16\xf7\x66\x06\xe7\x59\x1d\x2f\x1f\xfb\x66\x06\x0e\xf7\x48\xf7\x91" +"\x16\xe9\xf7\xb7\x06\xd3\xcb\xb9\xf0\xed\xb7\x6f\x4b\x1e\xfb\xd1\xe9\xf7\xd5\x07\xb9\x7d\xad\x6c\xab\x1e\xb4\x64\x59\x9c\x3b\x1b" +"\x2f\x5b\x77\x51\x5c\x1f\xf7\x7e\xf7\x67\xdd\xfc\xb1\x39\xf7\x80\x07\x0e\x30\xca\x16\xe9\xf7\xed\xca\x06\xf7\x75\x81\x0a\x4d\xf7" +"\xc2\x2d\x06\xf7\x8e\xf7\x66\x21\x1d\x64\x72\x1d\xa4\xf9\xe5\x7c\x1d\xf8\xab\xbe\x15\x88\x83\x86\x8a\x84\x1b\x70\x7b\x9a\xa5\x1f" +"\xf7\xc7\x07\xe9\x47\xbd\xfb\x15\x3e\x4e\x75\x63\x67\x1e\x73\x70\x82\x6d\x88\x56\x08\xdf\x06\xcc\x92\xb1\xa9\xd8\x1b\xd7\xb4\x6f" +"\x58\x1f\x7b\x07\x8a\x66\x79\x7f\x48\x81\xfb\x0b\x7c\x7a\x88\x6b\x7d\x08\x4e\x71\x6c\x5c\x47\x1a\x29\xcc\x4f\xf4\xcd\xbe\xa1\xbf" +"\xc6\x1e\x58\x91\xa6\x74\xc2\x1b\x9e\x97\x8d\x92\xa7\x1f\xfb\x27\xf7\x46\x15\x70\x83\x79\x73\x75\x1e\x6c\x69\x61\x7b\x5b\x1b\x4a" +"\x65\xaa\xc0\xc2\xaf\xa6\xe4\x98\x1f\xe5\x98\x9c\x8f\xa6\x97\x08\x0e\x26\xf7\xf2\xf9\xa4\x15\x63\x07\x87\x5d\x76\x7b\x3d\x7b\x44" +"\x7c\x5f\x6c\x6d\x53\x08\x69\x4b\x79\x2a\xfb\x0e\x1a\xfb\x01\x9b\x4d\xb7\x55\x1e\x57\xb4\xc8\x70\xd6\x1b\xf7\x29\xe3\xf3\xf7\x45" +"\xe1\x78\xcd\x63\xbd\x1f\xbc\x63\x4b\xa9\x4b\x1b\x51\x59\x76\x63\x62\x1f\x94\xca\xb3\xb1\xcf\x98\xe8\x9b\x8f\x8d\xab\xa7\x08\xab" +"\xaf\x95\xac\xd8\x1a\xfb\x29\xfb\xd6\x40\x1d\xfb\x23\xc5\x16\xf7\xbb\x06\xe7\xc6\xc6\xe8\xc8\x75\xaf\x4f\xab\x1f\xb5\xaa\x9d\xac" +"\xb8\x1a\xd9\x4a\xc3\x32\x1e\xfb\xa2\x06\xdf\xfc\x56\x15\xf7\x3a\xf7\x4e\x07\xc1\xae\x6a\x58\x59\x68\x6b\x55\x1f\xfb\x4e\xf7\x84" +"\x15\xf7\x1c\xf7\x4e\x07\xb5\xa4\x72\x61\x62\x6f\x6f\x64\x1f\x0e\xfb\xc9\xc6\x16\x4b\x0a\xfb\xd1\x06\x0e\x30\x9b\x2a\x15\xe2\xec" +"\xf7\xf8\x2a\xe2\xf7\x3f\x60\xf8\x56\xfb\xe2\x4c\x06\x25\x7f\x37\x72\x4b\x1e\x6f\x3f\x68\x62\x56\x77\x08\xf8\x27\x16\xfb\xa9\x06" +"\xcf\xc9\xb1\xf7\x0b\x8e\xf7\x34\x08\xae\xf7\x3c\x07\x0e\xf8\x97\xf7\x7e\x15\xdb\x85\xbd\x7c\xb0\x5c\x0a\x3c\x06\x46\x74\x5a\x67" +"\x47\x1b\x56\x5d\xa3\xb7\x6e\x65\x0a\x0e\xf8\x98\xf7\x7e\x15\xdb\x85\xbd\x7c\xb0\x5c\x0a\x3c\x06\x46\x74\x5a\x67\x47\x1b\x56\x5d" +"\xa3\xb7\x6e\x65\x0a\xfb\x45\xf8\x31\x22\x1d\x86\xf7\xb9\x16\xdf\xf7\x8d\xc9\x06\xf7\x28\xfb\x8d\x05\xec\x06\xfb\x3b\xf7\xb2\xf7" +"\x11\xba\x1d\x4d\xf7\x5d\x37\xfb\x5d\x4c\x06\x21\xf7\x5d\x05\x2a\x06\xf7\x10\xfb\x82\xfb\x3b\xfb\xb2\x05\xed\x06\xf7\x28\xf7\x8d" +"\x05\xca\x06\x0e\xfb\x6c\xb6\xf7\x38\x15\x75\x07\x26\xd2\x4b\xf7\x05\xf7\x02\xd8\xd1\xed\xc7\x6f\xb4\x50\xa6\x1e\xbe\xa7\xa4\xb2" +"\xbd\x1a\xdf\x41\xcc\x2a\x51\x59\x75\x65\x6b\x1e\x76\x71\x7a\x5d\x6b\x1a\x74\xe2\xa2\x07\xbd\xb1\xb0\xbf\xbd\xae\x69\x5c\x7a\x85" +"\x7a\x81\x81\x1e\x79\x79\x6a\x7e\x72\x1b\x68\x41\xae\x06\xc9\xb4\x67\x55\x54\x65\x6a\x4e\x4b\x69\xaa\xc4\x1f\xa1\x07\x0e\xfb\x07" +"\x3f\x1d\x0e\xfb\x07\x3f\x1d\xbb\xf7\x64\x71\x0a\x86\x1f\x0e\xfb\x80\x70\x0a\x0e\x30\xf8\x35\x49\x1d\xfc\x18\x80\x0a\xf7\x70\x07" +"\x0e\x99\xb5\x16\xdf\xf8\x56\x06\xf7\x43\xfc\x56\x05\xe1\x06\xf7\x42\xf8\x56\x05\xfc\x56\xdf\xf8\xa0\xfb\x14\x07\xfb\x42\xfc\x4b" +"\xfb\x42\xf8\x4b\x05\xfb\x13\x06\x0e\xfb\x0e\xd3\x16\xdf\xf7\x83\xf7\x85\xfb\x83\xdf\xf8\xa0\x37\xfb\x67\xfb\x85\xf7\x67\x37\x06" +"\x0e\xf7\xa9\x3d\x1d\x0e\xfb\x18\xd2\x16\xdf\xf8\x56\xf7\x7c\xfc\x56\xdf\xf8\xa0\xfc\x24\x06\x0e\xc5\xfb\x6e\x15\xdd\x4d\x0a\xbc" +"\x73\xd0\x1b\xf7\x1c\xe4\xf7\x01\xf7\x3b\xf7\x45\x36\xf7\x01\xfb\x1d\x45\x52\x6c\x51\x65\x1f\xd5\x39\x77\x0a\xfb\x42\xf8\x6c\xf7" +"\xf0\x15\x86\xbe\x81\xac\x76\xb5\x1d\x2f\xfb\x04\xfb\x42\xfb\x3d\xe4\x20\xf7\x21\xf7\x10\xd9\xd6\xf7\x14\x95\x1f\x38\x06\x37\x7e" +"\x60\x61\x44\x1b\x31\x54\xd6\xf7\x10\xf7\x17\xc2\xd9\xe7\xd1\xb8\x62\x42\x95\x1f\x0e\xfb\x6c\xf7\x4f\x16\xdf\xf8\x56\xf7\x2c\xd5" +"\xfc\x19\x41\xf7\x2d\x06\x0e\xfb\x42\x6a\x1d\x0e\xf7\x29\xf8\x05\x4f\x0a\xf7\x58\x06\xd2\x8f\xb3\x95\xbb\xa3\x08\xe5\xb7\xc0\xe6" +"\xf6\x1a\xf7\x00\x56\xe6\x31\xb7\x1e\x5b\xa3\x63\x94\x44\x90\x08\xf7\x0f\x37\xfb\x0f\x07\x45\x86\x64\x82\x5c\x73\x08\x32\x5e\x57" +"\x31\xfb\x00\x1a\x20\xbf\x30\xe4\x5f\x1e\xba\x73\xb2\x81\xd1\x87\x08\xd6\x04\xfb\x1c\x95\x41\xd3\xf7\x0f\x1a\xf7\x0f\xd5\xd3\xf7" +"\x1c\x96\x1e\xdf\x16\xf7\x20\x80\xd6\x43\xfb\x0f\x1a\xfb\x0e\x40\x43\xfb\x20\x80\x1e\x0e\xfb\x42\xf7\xbd\x67\x0a\xeb\x06\x0e\x26" +"\xe2\x16\xf7\xef\xfb\x33\xe1\xf7\x7d\x5d\xf8\x56\xb2\x1d\xfb\x2d\xf7\xfc\x49\x1d\x75\x1d\xf7\x14\xcb\x16\xf9\x35\xf8\xa0\x9a\x1d" +"\xf7\x29\xd1\x16\xf9\x0c\xfb\x33\xdf\xf7\x7d\x60\xf8\x56\x9a\x1d\x5a\xf7\x50\x4f\x1d\xfb\xba\x41\xf7\x66\x06\xdf\xfc\x0c\x85\x0a" +"\xb8\xdc\x78\x1d\xf7\x76\x41\x15\xdf\xf8\xa0\x37\x06\x0e\xfb\x2d\xd0\x78\x1d\x0e\xfb\x38\xf7\x05\xf7\xf2\x15\xd2\x9f\xbf\xb4\xcf" +"\x1b\xdb\xc1\x52\x2a\x96\x1f\xfb\x4c\x41\xf7\x4e\x06\xfb\x01\x88\x50\x44\x33\x1b\x3f\x5a\xbd\xe8\x79\x1f\x35\x75\x05\xfb\x17\xa7" +"\xd9\x48\xf7\x0f\x1b\xf7\x27\xe6\xf7\x00\xf7\x42\xf7\x3f\x2e\xf7\x01\xfb\x25\xfb\x05\x3b\x4e\xfb\x02\x6d\x1f\x0e\xd7\xf7\x1b\xf7" +"\xcd\x15\xf7\x67\x30\x1d\xf7\x83\xf7\x0b\x07\xfb\x3d\x93\xdf\x2e\xf7\x24\x1b\xf7\x29\xe3\xf3\xf7\x45\xf7\x45\x33\xf3\xfb\x29\xfb" +"\x18\x38\x3a\xfb\x25\x78\x1f\xf7\x7e\xf7\x29\x40\x1d\xfb\x18\xf8\x11\x49\x1d\xfb\x8e\x06\x27\x45\x4a\x30\x45\xa9\x63\xd4\x6e\x1f" +"\x5d\x79\x75\x6c\x89\x59\x08\x53\x07\x8a\x5c\x87\x7c\x7c\x7f\x08\xe2\x06\x97\x97\x92\xa5\x8c\xaf\x08\xc3\x07\x8c\xba\xa8\xab\xb5" +"\x8c\x08\xf7\x24\x06\xd5\x04\xfb\x3a\x06\x58\x6b\xab\xbf\xbd\xac\xab\xbd\x1f\xf7\x3a\x06\x0e\xfb\x9b\xf7\xec\x20\x0a\xfb\x95\xfc" +"\xa0\x4b\x0a\x06\x3c\x1d\x05\xfb\x05\x06\x0e\xd7\x16\xdf\xf7\xed\x06\xd3\xb9\xc2\xb1\x57\x1d\xfb\xc7\x07\x8a\x51\x5d\x59\x58\x8c" +"\x08\xfb\x15\x3e\xf7\x15\x06\xf3\x90\xd8\xd9\x8c\xf0\x08\xf7\xc7\x4a\x0a\x57\x6e\x47\x52\x9e\x1d\xfb\xc9\xcb\x16\x4b\x0a\xfb\xd1" +"\x06\xf7\x40\x39\x1d\xfb\x38\xf8\x77\xf8\x04\x15\xf7\x02\x6d\x3a\xc8\xfb\x04\x1b\xfb\x26\x2f\xfb\x01\xfb\x3f\xfb\x42\xe6\xfb\x00" +"\xf7\x26\xf7\x10\xd8\xce\xf7\x17\xa8\x1f\x35\xa1\x05\x2e\x79\x59\x59\x40\x1b\x33\x50\xd2\xf7\x01\x87\x1f\xf7\x4f\xd5\xfb\x4c\x06" +"\xec\x96\xc0\xc4\xdc\x1b\xcf\xbf\x62\x44\x9f\x1f\x0e\xfb\x42\xf8\x4a\xf8\x0e\x15\xf3\x8a\x47\xc4\x4c\x1d\xfb\x0d\x8f\xcf\x51\xf7" +"\x1d\x1b\xf7\x18\xdf\xcc\xf0\xd9\x5f\xb6\x23\xa4\x1f\x51\x1d\x0e\xfc\x58\xf7\x2d\x20\x0a\x30\x1d\x06\xf9\x6d\x04\x37\x22\xdf\x06" +"\x0e\xfc\x20\xf7\x4c\xf8\xa0\x15\x30\x1d\x06\x41\x3a\x0a\xfc\x58\xd0\x20\x0a\xfc\xe8\x07\x57\x7b\x7a\x57\x86\x84\x8b\x8c\x83\x1e" +"\x3d\x07\xf7\x07\x87\xc0\xac\x8f\xdb\x08\xf9\x0d\x07\xf7\x61\x04\x37\x22\xdf\x06\x0e\xf7\x7c\xf8\x3f\x4f\x1d\xfc\x22\x80\x0a\xf7" +"\x7a\x07\xdf\xfc\x0c\x85\x0a\xf7\x1f\xbf\x16\xdf\xf7\x83\xf7\x85\xfb\x83\xa0\x1d\x37\xfb\x67\xfb\x85\xf7\x67\x37\x06\xf8\x2d\xfc" +"\x56\x15\xf7\x3a\xf7\x38\x07\xa4\x99\x87\x81\x98\x1f\x9f\x7d\x97\x70\x6f\x1a\x56\x6c\x6d\x56\x1e\x0e\xd7\x16\xdf\xf7\xed\x06\xd2" +"\xb9\xc2\xb2\x57\x1d\xfb\xfa\xdf\xf7\xfa\x4a\x0a\x56\x6e\x47\x53\x9e\x1d\xfb\x80\x70\x0a\xf7\x63\x39\x1d\xfb\x42\x6a\x1d\xfc\x11" +"\xf7\x64\x7b\x1d\xb8\xda\x16\xf7\x7d\xfb\x3a\xe9\xf7\x3a\xf7\x7f\xf9\x6d\x94\x0a\xfb\x0e\xde\x16\xf7\x2d\xfb\x34\xdf\xf7\x34\xf7" +"\x2a\xf8\xa0\xb2\x1d\xfb\x0b\xb4\xf7\xae\x15\x3b\x91\x59\x9a\x66\x1e\x35\xad\xdb\x57\xed\x1b\xf7\x26\xe9\xf7\x03\xf7\x41\xf7\x41" +"\x31\xf4\xfb\x28\xfb\x0c\x38\x47\xfb\x06\x76\x1f\xda\x06\xd0\xa2\xbc\xaf\xcf\x1b\xc0\xb9\x73\x5f\xa8\x1f\x9f\x6d\x92\x6d\x8c\x57" +"\x08\x89\x47\x15\x2a\x84\x50\x4c\x37\x1b\x36\x50\xcd\xe9\x1f\x0e\xf7\x67\xf8\x03\xf8\xe0\x15\x88\xb1\x83\xa3\x7c\x9f\x08\xaf\x72" +"\x5d\xa0\x57\x1b\x24\x49\x3a\xfb\x11\xfb\x0e\xcc\x3e\xf1\xe6\xc5\xc2\xe8\x91\x1f\x44\x06\x54\x82\x6f\x6f\x5e\x1b\x4f\x68\xbd\xdf" +"\xe4\xae\xbf\xc6\xb7\xa8\x70\x5c\x91\x1f\xf7\xfd\xfb\x5a\x15\x20\x4b\x3f\xfb\x13\xfb\x14\xca\x40\xf7\x00\xf6\xcb\xd6\xf7\x11\xf7" +"\x17\x4d\xd6\xfb\x01\x1f\x4a\x04\xc8\xaf\x57\x33\x37\x66\x57\x4f\x4f\x66\xbf\xe1\xe1\xb0\xbf\xc7\x1f\x49\xf8\x14\x15\xfc\x14\xfd" +"\x59\x05\xcd\x06\xf8\x14\xf9\x59\x05\x0e\xfb\xf3\xf7\x16\xf7\xb8\x15\xca\xcd\xb2\xba\xa5\xb8\x08\xb4\xd0\xa4\xd8\xc4\x1a\xbf\x71" +"\xad\x64\x35\x49\xfb\x22\xfb\xd2\x4f\x1e\x6f\x6c\x77\x77\x7e\x80\x08\x7a\x7b\x85\x84\x84\x1a\x84\x92\x82\x91\x92\xa9\xa3\xa5\xa5" +"\x1e\x7f\x2f\x89\x71\x6c\x1a\x53\xa6\x69\xb9\xae\xa8\xa0\xb7\xa4\x1e\x98\xa0\x92\x9f\x97\x1a\x92\x85\x91\x84\x83\x85\x86\x7d\x84" +"\x1e\x5e\x76\x7c\x7b\x77\x1b\x7d\x84\x94\x9e\xa5\x9e\xf7\x11\x9a\xdb\x1f\x95\xc2\x15\xf7\x9f\xb8\xa7\xe0\xb8\x1b\x9c\x96\x7a\x71" +"\x6d\x81\x5a\x7c\x62\x1f\x72\x48\x68\x54\x4e\x48\x08\x0e\xf8\x23\xf8\xaa\x20\x1d\x40\xfc\xe8\x06\xfb\xd8\xf8\xe8\x05\x35\xfd\x6d" +"\xd6\xf8\xe3\x06\xf7\xd5\xfc\xe3\x05\xe4\x06\xf7\xad\xf9\x79\x15\xfb\x11\x30\xfb\x09\xfb\x33\xfb\x3a\xe3\xfb\x04\xf7\x16\xf7\x12" +"\xe4\xf7\x08\xf7\x37\xf7\x32\x2f\xf7\x09\xfb\x11\x1f\x38\x04\xe1\xc3\x3d\xfb\x0b\xfb\x03\x51\x3b\x39\x36\x51\xdb\xf7\x08\xf7\x05" +"\xc5\xda\xde\x1f\xfb\x62\xfd\x26\x15\xf8\x32\xde\xfc\x32\x06\x0e\x2b\xf8\xe1\x20\x0a\x31\x06\x57\xfb\x2b\x74\xbc\x7e\xa1\x74\xa6" +"\x19\xb6\x67\x56\xa3\x54\x1b\xfb\x10\x33\xfb\x09\xfb\x38\xfb\x39\xe0\xfb\x07\xf7\x0e\xc8\xc3\xa9\xc1\xb1\x1f\xa0\xa9\x97\xa2\xa0" +"\xbd\xc3\xfb\x38\x18\xe7\x06\x23\xf7\xa3\x05\x37\x16\xfb\x2c\x5a\x5a\x4b\x49\x1b\x42\x57\xdf\xf7\x0a\xf7\x0f\xbf\xdd\xd8\xcc\xb5" +"\x59\xfb\x21\xc0\x1f\x0e\x2b\xf8\xdf\x20\x0a\x30\x06\x57\xfb\x2b\x75\xbc\x7e\xa1\x74\xa6\x19\xb6\x66\x57\xa3\x50\x1b\xfb\x1a\x29" +"\xfb\x0b\xfb\x36\xfb\x37\xea\xfb\x09\xf7\x18\xec\xc7\xc0\xf7\x1a\xc2\x1f\xc4\xfb\x38\x05\xe7\x06\x23\xf7\xa3\x05\x37\x16\xfb\x2e" +"\x59\x5b\x4d\x46\x1b\x36\x4e\xe1\xf7\x0a\xf7\x0a\xc9\xe0\xe2\xd0\xb4\x5c\xfb\x24\xc1\x1f\xfb\x60\xf8\x90\x21\x0a\x25\x1d\xa1\xf8" +"\x4e\x28\x1d\xfb\xe9\xc5\xf7\x82\x15\xf7\x42\xfb\xe8\x05\x7b\x93\x95\x84\x97\x1b\x93\x90\x8f\x92\x92\x89\x93\x88\x93\x1f\xfb\x17" +"\xf7\xdd\xf7\x17\xf7\xdd\x05\x8e\x93\x8d\x93\x92\x1a\x93\x86\x8f\x83\x7f\x83\x85\x79\x81\x1e\x0e\xfb\xe9\xf7\xa7\xf7\x82\x15\xfb" +"\x42\xf7\xe8\x05\x9c\x82\x82\x92\x7f\x1b\x83\x86\x87\x83\x85\x8d\x83\x8e\x82\x1f\xf7\x17\xfb\xdd\xfb\x17\xfb\xdd\x05\x88\x84\x89" +"\x83\x84\x1a\x83\x90\x87\x93\x97\x93\x91\x9c\x95\x1e\x0e\xf8\xac\x9f\x1d\xe9\x47\xbc\xfb\x15\x3f\x4d\x75\x64\x67\x1e\x74\x9b\x0a" +"\x91\xb1\xa8\xd9\x1b\xd7\xb4\x6f\x59\x1f\x75\x07\x67\x78\x7e\x48\x82\x1e\xfb\x0b\x7c\x79\x87\x6c\x7e\x08\x4d\x71\x6c\x5d\x47\x1a" +"\x2c\xcd\x4f\xf5\xce\xc0\xa2\xc1\xc5\x1e\x8f\x5f\xa0\x71\xb1\x84\x08\x5a\x70\x78\x72\x65\x1a\x66\xa2\x6e\xb3\x7e\x1e\x83\xa1\xab" +"\x86\x9f\x1b\x9c\xa7\x8f\x91\xa5\x1f\xb8\x07\x84\x79\x76\x88\x72\x1b\x5c\x72\x9e\xaf\xb2\xa7\xac\xbb\x9e\x1f\xfb\x27\x81\x1d\x0e" +"\xfb\x11\xf8\x73\xf8\x18\x15\x56\x6d\x75\x7b\x64\x1b\x71\x7d\x8f\xa2\x52\x1f\xa5\x4a\x6a\x95\x72\x1b\x68\x6b\x79\x69\x71\x1f\x7f" +"\x7b\x84\x81\x73\x65\xb0\x67\x18\xc2\xa9\xa5\xa0\xb3\x1b\xa1\xa5\x84\x75\xc5\x1f\x6b\xde\x91\x89\xa6\x1b\xa9\xa8\x9a\xa6\xa1\x1f" +"\x98\x9b\x8d\x8d\xad\xbc\x08\x65\xfb\x10\x15\x56\x6d\x75\x7b\x64\x1b\x71\x7d\x8f\xa2\x52\x1f\xa5\x4a\x6a\x95\x72\x1b\x68\x6b\x79" +"\x69\x71\x1f\x7f\x7b\x84\x81\x73\x65\xb0\x67\x18\xc2\xa9\xa5\xa0\xb3\x1b\xa1\xa5\x84\x75\xc5\x1f\x6b\xde\x91\x89\xa6\x1b\xa9\xa8" +"\x9a\xa6\xa1\x1f\x98\x9b\x8d\x8d\xad\xbc\x08\x0e\x25\x1d\xfb\x02\xf8\x83\x27\x0a\x61\xf7\x53\x26\x0a\xf7\xda\xf9\x5d\xf7\xac\x15" +"\x6a\x5e\x6e\x53\x78\x1a\x81\x93\x84\x95\x92\x8f\x8d\x94\x93\x1e\xbc\xc6\xa6\xa0\xea\xc4\x08\x9c\x94\x8d\x8e\x95\x1a\x92\x85\x90" +"\x76\x97\x1e\x42\xb5\x5f\xad\x64\xb9\x08\x9c\x7d\x87\x8e\x83\x1b\x81\x83\x84\x82\x79\xb0\x40\xa4\x6d\x1f\xfc\x3f\x06\xa6\xac\xaf" +"\xd3\x9e\x1a\x93\x83\x92\x81\x83\x88\x88\x7a\x7c\x1e\x63\x5c\x61\x6a\x41\x61\x08\x77\x80\x84\x85\x84\x1a\x83\x8f\x86\x93\x86\x1e" +"\xe9\x54\xaa\x73\xb7\x58\x08\x76\x9d\x8c\x8a\x94\x1b\x95\x93\x92\x94\x91\x7f\xab\x83\x9b\x1f\x80\xa0\x80\x9d\x76\xa7\x08\x0e\xfb" +"\x42\xf7\x66\xf9\x65\x15\xfd\x2a\x07\xa3\x6e\x40\xb1\x79\x1b\x82\x84\x83\x81\x83\x8e\x88\x9c\x7c\x1f\xba\x63\xad\x5f\xb4\x42\x08" +"\x77\x96\x91\x84\x92\x1b\x93\x90\x8f\x93\x90\x1f\xc6\xf0\xa1\xa7\xc7\xbd\x08\x94\x93\x8d\x8f\x92\x1a\x95\x84\x93\x82\x85\x6a\x7f" +"\x83\x7b\x1e\x74\x80\x79\x7f\x71\x78\x08\xf9\x2a\x07\x0e\xf7\xda\xfa\x25\xf7\xad\x15\xc7\xfd\x2a\x07\x9c\xa2\x95\x9b\x96\x9f\x08" +"\x95\x9e\x99\xaf\x93\x1a\x94\x83\x92\x81\x84\x87\x89\x82\x83\x1e\x59\x4f\x73\x78\x2a\x51\x08\x79\x81\x89\x88\x82\x1a\x84\x92\x85" +"\x9f\x80\x1e\xd4\x62\xb7\x69\xb3\x5c\x08\x7a\x9a\x8e\x88\x93\x1b\x95\x93\x92\x94\x9d\x65\xd6\x73\xa8\x1f\x0e\xf7\xda\xe0\xf7\xad" +"\x15\xf9\x2a\x06\x73\x6e\x65\x40\x79\x1a\x82\x93\x84\x95\x93\x8e\x8e\x9c\x9a\x1e\xb3\xba\xb7\xad\xd4\xb4\x08\x9f\x96\x92\x91\x92" +"\x1a\x93\x87\x90\x83\x90\x1e\x26\xc6\x70\xa1\x58\xc7\x08\x94\x83\x87\x8d\x84\x1b\x81\x83\x84\x82\x85\x97\x6a\x93\x7b\x1f\x96\x74" +"\x97\x79\x9e\x71\x08\xfd\x2a\x06\x0e\xfb\x42\xf7\x66\x20\x15\xc7\xf9\x2a\x06\xa2\x7a\x9b\x81\x9f\x80\x08\x81\x9e\xaf\x7d\x93\x1b" +"\x94\x92\x93\x95\x92\x89\x8f\x82\x93\x1f\x4f\xbd\x78\xa3\x51\xec\x08\x9d\x81\x88\x8d\x82\x1b\x84\x85\x84\x77\x80\x1f\x62\x42\x69" +"\x5f\x5c\x63\x08\x7a\x7c\x88\x88\x83\x1a\x81\x92\x83\x94\x9d\xd5\xb1\xa3\xa9\x1e\x0e\xfb\x42\xf7\x6e\xf7\x15\x61\x1d\xfb\x42\xf7" +"\x0c\x47\x15\x60\xf7\x9c\xb6\x07\xfb\x3a\xf7\x9c\x61\x1d\x28\xda\xfb\x6e\x15\xde\xf7\x85\x06\x6c\xb1\xb7\x7c\xc4\x1b\xf7\x1b\xe3" +"\xe9\xf7\x23\xef\x62\xcb\x36\xad\x1f\xc3\xaa\xa8\xbc\xcc\x1a\xf7\x00\x39\xd7\xfb\x09\x46\x4c\x71\x61\x69\x1e\x6d\x67\x82\x62\x2a" +"\x1a\xde\x90\x15\xd4\x90\xa8\x9e\xa3\x1e\xa3\x9d\xae\x99\xb1\x1b\xd4\xb9\x60\x46\x5d\x74\x61\x6a\x7c\x1f\x77\x81\x7b\x89\x5a\x88" +"\x08\x46\x07\x8c\x9a\x97\x8c\x97\x1b\xe1\xc4\x4d\x2c\x29\x51\x4d\x30\x56\x63\x9c\xb2\x6a\x1f\x0e\xfb\x42\x33\x1d\x33\xf8\x1c\x26" +"\x0a\xfb\x42\x33\x1d\x41\xf7\x87\x2e\x0a\xfb\x42\x33\x1d\xfb\x3b\xf8\x1d\x2b\x1d\xfb\x42\x33\x1d\x46\xf8\x04\x24\x1d\xfb\x29\xf7" +"\x99\xf7\x98\x15\xfb\x13\xf7\x9c\x05\x2b\x06\xf7\x44\xfb\xfb\xfb\x4d\xfc\x13\x05\xe5\x06\xf7\x20\xf7\xb9\xf7\x22\xfb\xb9\x05\xea" +"\x06\xfb\x51\xf8\x18\xf7\x40\xf7\xf6\x05\x2f\x06\x0e\xf7\xda\xf8\x8b\xf9\x4b\x15\xfb\x5c\xfb\x36\xfb\x35\xfb\x5c\xfb\x58\xf7\x36" +"\xfb\x36\xf7\x57\xf7\x59\xf7\x37\xf7\x37\xf7\x57\xf7\x58\xfb\x36\xf7\x39\xfb\x55\x1f\x87\xfb\xd0\x15\xfb\x52\xf7\x50\x05\xb8\xc2" +"\xcc\xa2\xd1\x1b\xd0\xcb\x74\x60\xc4\x1f\xb3\x63\x15\xbb\x52\xa2\x4c\x42\x1a\x43\x74\x4b\x5d\x53\x1e\xfb\x54\xf7\x57\x05\xf7\x2c" +"\xfb\x7f\x15\x5f\x54\x48\x73\x45\x1b\x45\x4b\xa2\xba\x50\x1f\xf7\x55\xf7\x55\x05\xfb\x7d\xfb\x2d\x15\x5f\xc1\x74\xcb\xd1\x1a\xd3" +"\xa2\xcb\xba\xc4\x1e\xf7\x52\xfb\x50\x05\x0e\x79\xf8\xd7\x16\x9f\x07\x24\x9f\x6e\x99\x5d\xbb\x5c\xbf\x7a\xc0\x8a\xeb\xa0\x66\x93" +"\x7e\x97\x7d\x08\x5d\xb2\xc9\x6c\xc0\x1b\xe6\xd2\xd5\xe9\xe5\x4a\xd3\x3a\x6e\x84\x89\x6e\x50\x1f\xa7\xb4\x96\xaa\xb0\x1a\xe3\x42" +"\xd2\x30\x2e\x44\x45\x31\x67\x92\x78\xad\x56\x1e\xa3\x5b\x76\x91\x6c\x1b\x40\x49\x3f\x34\x2e\xd4\x42\xe7\xdc\xcf\xbd\xe6\xb8\x1f" +"\x8c\x7b\x8b\x80\x86\x1a\x43\x65\x3a\x55\x5f\x1e\x6b\x72\x74\x82\x2c\x77\x08\x77\x07\x0e\x6c\x5a\x0a\xf7\xaf\xf7\xa0\x38\x0a\xf8" +"\x82\xf9\x21\x15\xd7\x38\x3f\xfb\x2a\x56\xf7\x2a\xfb\x1f\x07\xc1\x5f\x5a\xa3\x47\x1b\xfb\x1b\x32\xfb\x01\xfb\x3a\xfb\x41\xe5\xfb" +"\x06\xf7\x1c\xce\xc0\xa5\xc3\xbb\x1f\x50\xd5\xf8\xec\xca\xc0\x07\xfb\xb8\xfb\x58\x15\xe4\xc4\x3d\xfb\x0f\xfb\x0b\x51\x3d\x33\x2f" +"\x4f\xda\xf7\x0c\xf7\x0c\xc7\xda\xe7\x1f\x0e\xfb\x09\xf7\x96\xf8\xa8\x15\xfb\x1c\x86\x3b\x26\xfb\x3c\x1a\xfb\x45\xe3\x23\xf7\x29" +"\xf7\x29\xe3\xf3\xf7\x45\xe1\x78\xcd\x63\xbd\x1e\x7a\xa0\x85\x90\x45\xc1\xfb\x28\xf7\x07\x18\xf7\x8f\xd5\xfc\x05\x44\x06\xf7\x49" +"\xfb\x58\x40\x1d\xfb\x38\x90\xf7\xf1\x15\xf0\xfb\x11\xf7\x10\xfb\x45\xb1\x40\xc7\xf7\x00\xf7\x05\xf7\x34\xf4\xf7\x11\x3b\xe6\xfb" +"\x39\xf7\x7d\x6a\xcf\x53\x24\x41\x22\xfb\x26\xfb\x4c\x08\x0e\xfb\xe9\xf7\x12\xf9\xef\x40\x0a\x29\x1d\xfb\xb3\xf8\x42\x15\x8c\x64" +"\x91\x78\x99\x4e\x1d\x29\x1d\x32\xf7\xb5\x15\xeb\xf7\x2a\x05\x4b\x06\x3c\x2b\x3a\x54\x1d\x29\x1d\x35\xf8\x32\x24\x1d\xf7\xda\xf9" +"\x93\xf7\x6c\x15\xc8\xfc\x62\x07\x91\xf6\xc3\xbd\xf7\x01\x89\x08\xf7\xb7\xc9\xfb\xac\x5e\x1d\x66\x1f\x4a\x60\x69\x42\x2c\x1a\xfb" +"\x08\xb8\x38\xb0\x1d\xc9\xfb\xb7\x06\xfb\x01\x89\x53\xbd\x85\xf5\x08\x0e\x29\x1d\x8a\xf8\x23\x28\x1d\xf7\xd1\xfb\x6b\x15\x89\x9d" +"\x93\x8a\x9a\x1b\xb5\xa9\x94\xa0\xa2\x1f\xa7\xa2\x91\xa2\xd7\x1a\xf8\x55\x07\xbc\x81\xab\x73\xa4\x1e\xab\x6e\x5d\x9d\x56\x1b\x3f" +"\x5e\x71\x3e\x53\x1f\xe3\x3e\xfc\xa0\xdf\xf7\xb5\x07\xf7\x01\xc3\xcf\xe5\xca\xb3\x63\x4d\x1e\xfc\x2b\x07\x4e\x8a\x83\x84\x80\x1e" +"\x7d\x83\x79\x84\x6f\x1b\x83\x86\x8b\x8c\x7f\x1f\x0e\xf8\x95\xf7\x7e\x15\x8c\xdb\x84\xbc\x7c\xb1\x08\xe1\x6a\x3a\x5d\x1d\xfb\x42" +"\xfb\x41\xe5\x23\xf7\x29\xa3\x99\x8d\x91\xa9\x1f\x71\x77\x84\x85\x84\x84\x08\x7a\x78\x80\x71\x74\x1a\x55\xc2\x69\xdf\xa2\x9e\x8e" +"\x91\xa6\x1e\xb8\x07\x84\x78\x77\x88\x72\x1b\x5e\x70\x9e\xab\xb1\x9c\xa8\xc1\xc4\x1f\xb9\xb9\xa3\xb6\x96\xc2\x08\x37\x06\x46\x74" +"\x5b\x66\x48\x1b\x57\x5e\xa4\xb6\x6e\x1f\x78\xaa\x83\xa9\x8a\xbf\x08\x8e\xcf\x15\xec\x91\xc6\xca\xdf\x1b\xe0\xc7\x49\x2d\x1f\x0e" +"\xfb\x78\x62\x1d\x0e\xfb\x78\x62\x1d\x23\xf8\xb5\x21\x0a\x30\xf8\xaa\xf7\x9f\xa1\x1d\xf8\x32\xbd\x1d\x41\xf8\xa4\xf7\x88\x15\x92" +"\x07\x8a\xc7\x8a\x97\x84\xac\x08\xf5\x75\x34\xce\xfb\x07\x1b\xfb\x27\x2e\x20\xfb\x3b\xfb\x3b\xe5\x26\xf7\x28\xf7\x06\xd5\xbf\xf2" +"\xab\x1f\x8d\x92\x05\x52\x06\x84\x7b\x86\x82\x88\x87\x08\x59\x6c\x58\x71\x4a\x1b\x5f\x67\x97\xa1\x73\x1f\x7a\x9a\x82\x9b\x80\xb0" +"\x08\xed\x07\xf7\xb3\xbb\x15\xfb\xb1\xe0\x06\xd1\xac\xaf\xa4\xd0\x1b\xc1\xb0\x7a\x63\xae\x1f\x96\x7e\x8f\x84\x91\x79\x08\x0e\x5f" +"\x0a\x0e\x5f\x0a\xf7\x02\xf7\x93\x21\x0a\xfb\x42\xf7\x57\x7b\x0a\xf7\x8d\x7b\x0a\x0e\xfb\x8e\xbe\x16\xf7\xd9\xf8\xd5\xfb\xd9\x37" +"\xf7\x85\xfb\x36\xfb\x85\x37\xf7\x85\xfb\x37\xfb\x85\x06\x0e\xd7\xf7\xf4\xf7\x98\x15\xfb\x37\x60\xf7\x37\xfb\x3a\xbb\xf7\x3a\xf7" +"\x35\xb6\xfb\x35\xf3\x06\xe4\x98\xcf\xda\xe6\x1a\xee\x37\xde\x28\x29\x38\x34\x26\x34\xcf\x3e\xe6\x7e\x1e\xa6\xf7\xcb\x15\xd0\xc5" +"\x50\x45\x43\x51\x51\x44\x42\x52\xc5\xd4\xd2\xc5\xc4\xd5\x1f\x0e\xf7\x1b\xf7\xe0\x15\xf7\x28\xdd\xfb\x28\x92\x0a\xf7\x38\x7e\x1d" +"\x0e\xfb\x42\xf7\x68\x4f\x0a\xf7\x7e\x06\xf7\x54\xf8\x90\x05\x2d\x06\xfb\x20\xfc\x19\xfb\x28\xf8\x19\x05\x2d\x06\xf7\x5c\xfc\x90" +"\x05\x0e\xf7\x0b\xf9\x70\x15\x8d\x2f\x0a\xe7\x3f\x0a\x51\x8a\x0a\xf7\x76\xfb\x64\x32\x0a\xf7\x75\xf9\x79\x99\x1d\xe0\xfb\x6d\x32" +"\x0a\xf7\xcf\xf8\xe4\x15\xef\x54\x07\x89\xc2\x9d\xa8\xb0\x8c\x8d\x8c\x18\xb1\x07\x4f\x8d\x64\x5c\x8a\x3f\x08\x24\x07\xf7\x51\x47" +"\x15\x3f\x07\xca\x61\x5d\xa7\x49\x1b\xfb\x13\x33\xfb\x0a\xfb\x3c\x33\xa0\x4b\xb8\x56\x1f\x5d\xb2\xbd\x72\xc1\x1b\xca\xb8\xa7\xcd" +"\xb7\x1f\x70\x07\xfb\x20\x64\x57\x23\x44\x66\xa7\xc7\x83\x1e\x36\x06\x2a\x93\xd8\x4e\xf7\x06\x1b\xd8\xcb\xa4\xb5\xad\x1f\xb3\xbc" +"\x9a\xcc\xf7\x0f\x1a\xf8\x4a\x07\xfb\x73\x4d\x15\xe3\xbd\x41\xfb\x19\xfb\x13\x58\x41\x34\x35\x59\xd6\xf7\x15\xf7\x14\xbd\xd7\xe1" +"\x1f\x0e\xf7\xd1\xf9\x5f\x58\x1d\xe2\x33\x32\x0a\xfb\x11\xb3\x1d\xf8\x4f\x04\xfc\x7d\xf7\x63\x05\x3c\x07\xf8\x1e\xfb\x38\xfc\x1e" +"\xfb\x35\x05\x3c\x07\xf8\x7d\xf7\x63\x05\x0e\xf7\x2d\xf9\x21\x15\xd7\x38\x3f\x4f\x56\xc7\xfc\xec\xde\xf7\xb5\x07\xf6\xc3\xd1\xe2" +"\xa6\xa5\x83\x7c\x9f\x1e\xa3\x79\x95\x73\x65\x1a\xfb\xff\xde\xf8\x20\x07\xe3\x4c\xc2\x25\x41\x5e\x74\x4b\x5a\x1e\xf7\x28\xf7\x63" +"\xc0\x07\x0e\x70\x1d\x34\xf7\x67\x27\x1d\x3b\xf7\xbc\x6f\x15\x9f\xe5\xc7\xf2\xf7\x08\xf7\x25\x08\xeb\xf7\x0e\xab\xce\xda\x1a\xde" +"\x45\xcf\x37\x5b\x5f\x76\x65\x6a\x1e\x75\x72\x81\x75\x7e\x5d\x7f\xaf\x83\x9d\x7f\x9d\x08\xbd\x6a\x58\xa8\x54\x1b\x36\x49\x47\x32" +"\x48\xa0\x5e\xdf\xfb\x06\x1f\xf7\x2b\xfb\x5e\xb3\x47\xa5\x24\x08\x0e\x45\xb4\x16\xf8\x9e\xf8\x25\x06\xfb\x99\xf7\xdc\xfb\x99\xfb" +"\xdc\x05\xbe\xfb\xf2\x15\xf7\xdc\x07\xf7\x66\xf7\xa2\xf7\x66\xfb\xa2\x05\xfb\xdc\x07\x0e\xfc\x20\x2e\x1d\xfb\x51\x77\x1d\xfb\x7a" +"\xf7\x3f\x88\x0a\xf7\x01\x27\x6a\x0a\xfc\x20\xf7\x48\x20\x0a\x38\xfc\xa0\xde\x06\xdd\xf9\x51\x15\xfb\x8b\x45\xf7\x8b\x06\x0e\xb2" +"\xf7\xf8\xf7\xbd\x15\x5b\xb6\x87\x8e\x77\x9a\x08\xa7\x66\x5d\x9d\x67\x1b\x3e\x4c\x4c\x3e\x3e\xca\x4c\xd8\xb0\xb8\x9c\xa8\xb0\x1f" +"\x9f\x99\x8f\x8f\xbb\xb6\xbc\x60\x90\x87\x9e\x7d\x08\x6f\xb0\xb8\x79\xb0\x1b\xd8\xca\xca\xd8\xd8\x4c\xca\x3e\x67\x5c\x79\x6f\x67" +"\x1f\x77\x7d\x87\x87\x5a\x60\x08\xaf\x6a\x15\xc3\xc4\xc3\xab\xb5\x1b\xbc\xb3\x63\x5b\x5a\x63\x63\x5a\x61\x53\xab\xc4\x52\x1f\x44" +"\x16\x53\x52\x53\x6b\x61\x1b\x5a\x63\xb3\xbb\xbb\xb3\xb3\xbc\xb5\xc3\x6c\x52\xc4\x1f\x0e\xfc\x24\xf7\x50\xf8\x9f\x15\xb0\x85\xda" +"\x82\xe8\x1e\x87\xb5\x89\xa1\x97\x1a\x9d\x91\x95\x97\x91\x8e\x8a\x80\x95\x1e\x81\x95\x97\x86\x98\x1b\xa6\xa0\xa1\xa7\xa9\x6f\xa3" +"\x68\x60\x6c\x6c\x51\x7d\x1f\x7b\x4b\x86\x46\xfb\x45\x1a\xfb\x78\x07\x5f\x8f\x4e\x95\x22\x1e\x8f\x61\x8d\x75\x7f\x1a\x79\x85\x81" +"\x7f\x85\x89\x8c\x96\x80\x1e\x95\x81\x80\x90\x7d\x1b\x71\x75\x75\x70\x6c\xa7\x73\xae\xb7\xaa\xaa\xc5\x99\x1f\x9b\xcb\x90\xd4\xf7" +"\x41\x1a\x0e\x45\xf7\x9d\xfa\x25\x15\xfd\x79\x07\x66\x91\x3c\x94\x2e\x1e\x8f\x61\x8d\x75\x7f\x1a\x79\x85\x81\x7f\x85\x88\x8c\x96" +"\x81\x1e\x95\x81\x7f\x90\x7e\x1b\x70\x76\x75\x6f\x6d\xa7\x73\xae\xb6\xaa\xaa\xc5\x99\x1f\x9b\xcb\x90\xd0\xf7\x45\x1a\xf9\x70\x07" +"\x0e\x45\xf7\xe7\xfb\x6e\x15\xf9\x79\x07\xb0\x85\xda\x82\xe8\x1e\x87\xb5\x89\xa1\x97\x1a\x9d\x91\x95\x97\x91\x8e\x8a\x80\x95\x1e" +"\x81\x95\x97\x86\x98\x1b\xa6\xa0\xa1\xa7\xa9\x6f\xa3\x68\x60\x6c\x6c\x51\x7d\x1f\x7b\x4b\x86\x46\xfb\x45\x1a\xfd\x70\x07\x0e\xb8" +"\xf8\xeb\x16\xf7\xa1\x07\xf7\x29\x86\xb1\x71\xb7\x1e\xd1\x61\x3e\xb4\x31\x1b\x38\x46\x6a\x4d\x5e\x1f\x66\x5a\x85\x67\xfb\x36\x1a" +"\xfb\xa1\xd1\xf7\xa4\x07\xf7\x05\x91\xba\x9d\xad\x1e\xbd\xa6\xc5\xad\xc8\x1b\xc4\xc2\x6e\x5d\xa8\x1f\xa2\x67\x91\x62\xfb\x12\x1a" +"\xfb\xa4\x07\x0e\xf8\x0e\xf8\xa3\x6c\x0a\xfb\x01\xfb\x63\x83\x0a\xfb\x14\xfb\x05\x15\x96\x59\x96\x75\xa5\x6d\x08\x54\xbb\xc7\x71" +"\xdc\x1b\xdc\xc7\xa5\xc2\xbb\x1f\xa5\xa9\x96\xa1\x96\xbd\x84\x36\x80\x62\x6d\x5e\x08\x4c\x61\x4b\x6b\x38\x1b\x3e\x4f\xa6\xc1\x61" +"\x1f\x67\xba\x7c\xb8\x84\xe8\x08\xf7\xee\xf7\x05\x83\x0a\x0e\xfc\x58\xf7\x2a\x20\x0a\x38\xfc\xa0\xab\x06\x53\x5e\x79\x6e\x61\x1a" +"\x57\xb7\x67\xca\x9c\xa2\x8f\x90\x9d\x1e\xb8\x07\x85\x79\x7f\x88\x7e\x1b\x6d\x77\xa1\xad\xab\xa2\xb7\xa9\xa6\x1f\xf9\x6d\x04\x37" +"\x22\xdf\x06\x0e\xfc\x58\x47\x1d\x0e\xfc\x58\x47\x1d\x94\xf7\x53\x22\x1d\xfc\x58\x47\x1d\x8c\xf7\xe3\x40\x0a\xfc\x58\x47\x1d\x8c" +"\xf7\x93\x21\x0a\xfc\x20\x2e\x1d\xc3\xf9\x61\x36\x0a\xfc\x58\xd1\xf8\xa0\x74\x0a\x2e\xf7\x6d\x27\x1d\xfb\x42\xf7\x21\xf7\xc3\x15" +"\xf7\x71\x30\x1d\xf7\x5b\x07\xde\xdc\xf7\x42\xfb\xac\x05\xf2\x06\xfb\x6a\xf7\xea\xf7\x4c\xf7\x4a\x05\xfb\x01\x06\x0e\xfb\x42\x6b" +"\x0a\xd7\xfb\xfe\x23\x1d\xfb\x42\xf5\xf7\x47\x15\xde\xdd\xf7\x48\xfb\x99\x05\xd8\x06\xfb\x66\xf7\xc2\xf7\x64\xf7\x64\x05\x37\x06" +"\xfb\x92\xfb\x96\x05\xf7\x96\x4a\xfc\x92\xcc\x07\x0e\xfc\x58\x43\x1d\x92\x3b\x0a\xfb\x42\xa1\x16\xe5\x06\xf7\x1b\xf8\x1b\xf7\x21" +"\xfc\x1b\x05\xe7\x06\xfb\xa0\xf9\x6d\x05\x30\x06\xdd\xfb\x70\x05\x0e\xfc\x0b\x43\x1d\xc0\xf9\x6d\x38\x0a\xfc\x58\x43\x1d\x32\x4f" +"\x23\x1d\xfb\xe8\xf7\x32\x20\x1d\x38\xfd\x6d\xde\x06\xce\xf8\x2c\x15\x22\xf1\xf4\x07\x0e\xfb\x11\xb3\x1d\xfc\x7d\xf8\x0a\x8a\x1d" +"\xf8\x02\xf7\xd5\x15\xc2\xfb\x34\x07\x86\x95\x87\x91\x84\x97\x08\x67\xca\x84\x9e\xb1\x1a\xd7\xc3\xbe\xe0\xe2\xb8\x58\x24\x8f\x1e" +"\xe3\x06\x8a\xc8\x83\xb2\x77\xac\x08\xc9\x68\x44\xb0\x37\x1b\xfb\x1b\x23\x2e\xfb\x0d\x61\x93\x74\xb1\x4c\x1f\x92\x80\x05\x3a\x54" +"\xf7\x02\x06\x92\x7f\x8f\x82\x91\x7b\x08\xfb\x12\x54\xf7\x18\x06\x83\x50\x68\x59\x39\x48\xbc\x49\x18\xa3\xb1\xaf\x97\xae\x1b\xa0" +"\xa3\x87\x84\xa0\x1f\x6e\xde\xa5\x85\xaf\x1b\xc0\xb2\x9c\xb3\xb3\x1f\x61\xcd\x05\x76\x6d\x70\x81\x70\x1b\x79\x7a\x8f\x97\x60\x1f" +"\x97\x64\x7a\x8e\x70\x1b\x61\x63\x7e\x71\x64\x1f\xd6\xd6\xab\xb9\x94\xba\x08\xf7\x10\xc2\xfb\x12\x06\x88\x98\x88\x95\x86\x99\x08" +"\x0e\xfc\x58\xf7\x23\x16\xf8\xf2\x07\xae\x9e\x9d\xb1\x1e\xa9\x8a\x05\x46\x1d\x07\x0e\xd7\xf8\x14\xf8\x82\x15\x9f\x64\x73\x92\x69" +"\x1b\x28\x36\x36\x27\x2b\xe0\x39\xef\xed\xdf\xe1\xf0\xb9\x79\xb5\x68\xae\x1f\xf7\x2a\xf7\x2a\x90\x72\x9f\x5a\x9a\x6d\x19\x77\x96" +"\x90\x85\x95\x1b\x92\x90\x91\x92\x90\x8a\x8f\x89\x96\x1f\x84\xab\x89\xa1\xa8\x1a\xb1\x8e\xa9\x92\xa4\x1e\x90\x9c\x8b\x8c\x8f\x1a" +"\x91\x87\x8f\x85\x87\x82\x89\x88\x82\x1e\x83\x71\x79\x89\x5c\x1b\x6f\x73\x8e\x91\x6e\x1f\x8d\x80\x88\x8c\x86\x1b\x83\x85\x86\x83" +"\x7e\xa6\x79\xb2\x7c\x1f\xb4\x7c\x91\x89\x98\x88\x08\xfb\x8c\xfb\x41\x15\xd3\xc7\x4e\x42\x41\x4f\x4f\x41\x41\x4f\xc7\xd6\xd5\xc7" +"\xc6\xd7\x1f\x0e\xfc\x7a\xf7\x35\x91\x0a\x0e\xfb\x42\xf7\x7f\xf7\x53\x15\x92\x7b\x75\x90\x78\x1b\x48\x4f\x52\x4a\x64\xa7\x73\xb8" +"\xe8\xcd\xd3\xf0\x1f\xf7\xd4\x07\xc8\x82\xbd\x39\x30\x1a\x54\x82\x60\x72\x50\x1e\xa8\x06\xb2\xbb\xa0\xc6\xcb\x1a\xdd\x6c\xd9\x4b" +"\xd7\x1e\x53\xce\x8a\x8c\x85\x92\x83\x96\x19\xcb\x5b\x07\x0e\xd7\xf7\x95\xf9\x19\x15\xfc\x59\x78\x0a\xf7\xf0\x07\xf7\xb5\x5f\x05" +"\xfc\x03\x78\x0a\xf8\x52\x07\x0e\x35\x1d\xf7\x37\x39\x1d\x45\xf7\x0a\x98\x0a\xf7\xb5\x07\xf6\xc3\xd1\xe1\xcd\xb5\x63\x4c\x1e\xfb" +"\xff\xde\xf8\x20\x7d\x0a\xfb\x4d\xf7\x84\x38\x0a\x35\x1d\xf7\x47\xce\x42\x1d\x35\x1d\xdd\xfc\xdc\x23\x1d\xf7\xda\xf8\xa4\xf7\x6c" +"\x15\xf7\x83\xc8\xfb\x60\x06\xe3\xf7\x2f\x05\xf7\x08\xc9\x3a\x06\xac\xc6\x61\xa3\x5c\x38\x05\xfb\x23\x5e\x1d\x65\x1f\x4b\x60\x69" +"\x42\x2c\x1a\xfb\x08\xb8\x37\xdc\x69\x1e\x6a\x52\xb6\x74\xb1\xce\x05\x88\xa5\x97\x8a\xb5\x1b\xf7\xac\xc9\xfb\xb7\x06\x77\x85\x8b" +"\x8c\x82\x1f\xaa\xf7\x2d\x15\x3a\xfb\x21\x57\x9d\x6c\xbe\x88\xd3\x19\xf7\xb6\xf7\x6c\x15\x33\xfb\x2f\x05\xfb\x5e\x06\x91\xf6\xc3" +"\xbd\xf7\x01\x89\x08\x0e\xfb\x11\xf7\x31\xf7\x03\x15\x4f\x20\xbe\x6e\xd7\xf7\x1c\x05\xf7\xb8\xd1\xfb\x91\x06\xc4\xf1\x05\xf7\x58" +"\xd1\xfb\x31\x06\xc6\xf4\x59\xa7\x3f\xfb\x19\x05\xfb\x98\x45\xf7\x71\x06\x52\x25\x05\xfb\x38\x45\x06\x0e\xfb\x42\xf7\xb3\x96\x0a" +"\xfc\x31\xfb\x20\xf8\x31\x05\x2d\x06\xf7\x4c\xfc\xa0\x05\x0e\x2a\x1d\xfb\x2b\xf7\xa2\x6d\x0a\x2a\x1d\x6a\xf7\xaa\x15\x2a\x47\x0a" +"\xc9\x16\x2a\x47\x0a\x0e\x2a\x1d\xf7\x1d\xf7\x83\x15\xfb\xa6\x45\xf7\xa6\x06\x0e\xf6\x63\x1d\x0e\xf6\x63\x1d\x38\xf8\x12\x21\x0a" +"\xf7\xa9\x3d\x1d\x0e\xf7\xa9\x3d\x1d\x62\xf7\xd1\x21\x0a\xf7\xc5\xbd\x16\xfa\x04\xcd\xfd\xc2\xf9\xb8\x49\x06\x0e\x4c\x55\x0a\x2c" +"\xf7\xec\x21\x1d\xfb\x5a\xf1\xf9\x32\x15\xac\xd5\x8b\x8b\xb1\x1b\xba\xb2\x79\x69\xa3\x1f\xad\x5c\xa0\x40\x42\x1a\x6d\x89\x73\x82" +"\x50\x1e\xc0\x46\x70\x97\x55\x1b\x5a\x64\x7b\x69\x69\x1f\x5d\x5c\x6f\x48\x4a\x1a\xfb\x01\xde\x36\xf6\xd7\xc8\xb4\xd8\xb6\x1e\xb1" +"\xcf\xa7\xf7\x16\xf3\x1a\xf7\x5c\xfb\x03\xf7\x25\xfb\x2d\x5e\x5c\x81\x79\x63\x1e\xf7\xbf\xfc\x36\x15\x7e\x33\x83\x6a\x7c\x5f\x08" +"\x3d\x70\x5e\x5f\x54\x1b\x53\x6a\xbe\xe2\xf7\x08\xcd\xeb\xdc\xb5\xb0\x75\x62\xa5\x1f\x0e\xf8\x38\xf9\x0d\xf7\xc9\x15\x55\xe0\x51" +"\x36\x5f\x63\xb7\xfb\x7e\x06\x6c\xa3\x79\xb5\x99\x96\x8c\x8f\xa0\x1e\xb5\x07\x88\x80\x85\x8a\x81\x1b\x74\x87\x8f\xa3\x1f\xf7\x68" +"\xc1\x07\xf7\xfa\x5d\x15\xc8\x8a\x5f\xad\x3e\x1b\x3e\x58\x65\x52\x5b\xa6\x75\xdb\x79\x1f\xbb\x7f\x05\xac\x84\x98\x7e\x74\x1a\x6d" +"\x6f\x78\x5f\x5a\x77\x9b\xb8\x84\x1e\x4e\x06\x44\x8e\xb6\x68\xe2\x1b\xde\xc1\xb2\xc6\xb9\x6f\xa5\x48\x9a\x1f\x5a\x96\x05\x62\x94" +"\x7b\x98\xa1\x1a\xa9\xa3\x9c\xb5\xb3\x9f\x7b\x69\x8c\x1e\xfd\x66\xe1\x15\xc3\x06\xc5\xb7\xab\x1d\x3b\xd8\xfb\x24\x1e\xfb\x15\xfd" +"\x6d\xe8\x97\x0a\xa1\x07\xe3\xc0\x5b\x3b\x3b\x56\x5b\x33\x1f\x0e\x71\xf7\xaa\x4f\x0a\xf7\x58\x06\xcc\x91\xb0\x98\xb4\xab\x08\xcd" +"\xbd\xb0\xdd\xe9\x1a\xf7\x09\x52\xed\x2d\xb4\x1e\x9d\x64\x55\x95\x55\x1b\x7f\x87\x8b\x8a\x7b\x1f\xfc\x79\x07\x5a\x90\x71\x95\x73" +"\xa3\x08\x68\xad\x76\xca\xd3\x1a\xbe\x95\xb7\x9e\xae\x1e\x98\xa4\x98\x97\xa8\x9b\x08\xde\x07\x50\x73\x6f\x77\x6a\x61\x08\x63\x58" +"\x7a\x56\x44\x1a\x25\xaf\x35\xca\x5a\x1e\xb3\x6c\xb1\x7e\xd2\x84\x08\xdf\xf8\x79\x15\xec\x85\xc3\x43\xfb\x0b\x1a\x45\x79\x50\x69" +"\x64\x1e\x72\x6f\x70\x7f\x5a\x86\x08\x0e\x9b\xf9\x03\x20\x0a\xfc\xc1\x41\xd6\xfc\x56\xdf\xf8\x56\xf7\x83\xfc\x56\xdf\xf8\x56\xd6" +"\x06\x0e\xf7\xd6\xf7\x70\xfb\x30\x15\x3e\x36\xf7\x8f\x06\x8a\xe0\x05\x40\xf9\xab\xf7\xfe\xfd\xab\x45\x06\x8c\x36\x05\xf7\x84\xe0" +"\x42\xf9\xab\xf0\xe0\xfd\x8f\x36\xf3\x06\x0e\xf7\xda\xf9\x93\xc9\x15\xfb\xb7\x06\xfb\x0d\x57\xc2\xf7\x16\xf7\x15\xbf\xc3\xf7\x0d" +"\x1f\xf7\xb7\xc9\xfb\xac\x5e\x1d\x66\x1f\x4a\x60\x69\x43\x2b\x1a\xfb\x07\xb8\x37\xb0\x1d\x06\x0e\xf7\xda\xf7\x7d\xc9\x15\x4d\xf7" +"\xac\x07\xde\xae\x92\xa4\xb1\x1f\xcc\xb6\xac\xd4\xee\x1a\xf7\x03\x5d\xe0\x3d\xac\x1e\x99\x69\x70\x8f\x46\x1b\xfb\xac\x4d\xf7\xb7" +"\x06\xf7\x0d\xbf\x54\xfb\x16\xfb\x16\x57\x54\xfb\x0d\x1f\x0e\xb2\xf8\x2b\x20\x0a\x37\xfc\x66\x06\xfb\x02\x94\x61\xbd\x8f\xf7\x0b" +"\x08\xf7\xb4\x37\xfb\xb7\x07\x83\xfb\x31\xd1\x3f\xf7\x3e\x78\x08\xfb\x5b\xdf\xf7\x5b\x07\xf7\x3e\x9e\xd1\xd7\x83\xf7\x31\x08\xf7" +"\xb7\x37\xfb\xb4\x07\x8f\xfb\x0b\x61\x59\xfb\x02\x82\x08\x0e\xfc\x58\xf7\x32\x20\x1d\x2e\x26\x06\x3b\xac\x5c\xc7\x87\x1e\xb1\x07" +"\x68\x90\x7d\xa6\x8c\xc5\x08\xbb\x06\x0e\xfb\xe9\x37\x0a\xd3\x39\x1d\xfb\x71\xf8\x44\xfa\x25\x15\xfb\x14\xfd\xa8\xfb\x55\xf8\x20" +"\xfb\x28\x42\x9d\x6a\xe9\xb9\xf7\x85\xfc\x85\xf7\x2c\xfa\x44\x05\x0e\xfb\xe9\x37\x0a\xe8\xce\x42\x1d\xfb\xe9\x37\x0a\x3a\xfc\xdc" +"\x23\x1d\x31\xf8\xb4\xf8\x0b\x15\xfc\x8c\xfb\xb5\xd1\xf7\x6f\xf8\x46\x06\x0e\x22\xc6\xfb\x6e\x15\xdf\x4d\x0a\xbb\x73\xce\x1b\xf7" +"\x1d\xe4\xf7\x02\xf7\x3d\xf7\x42\x31\xf7\x01\xfb\x22\x41\x4a\x6d\x55\x60\x1f\x61\x57\x7e\x59\xfb\x02\x1a\xf7\x7e\xf7\x6f\x15\xe6" +"\xc4\x3b\xfb\x14\xfb\x0c\x4f\x3c\x31\x30\x52\xd9\xf7\x11\xf7\x11\xc5\xda\xe7\x1f\x0e\xfb\x42\x31\x1d\x40\xf7\xfe\x21\x1d\xfb\x42" +"\xf7\x88\x73\x15\xc7\x8f\xa9\x91\xa6\x97\x08\xc8\xa6\xb0\xc2\xca\x1a\xd9\x5f\xb6\x23\xa4\x1e\x51\x1d\xe3\x06\xf2\x8a\x47\xc5\x4c" +"\x1d\x8d\xfb\x00\xc4\x51\xf7\x04\x80\x6c\x44\x18\x96\x85\x05\x90\x79\x0a\x7a\x91\xa2\x5d\x6f\x0a\x59\x82\x31\x0a\xfb\x42\x31\x1d" +"\xfb\x28\xf7\xff\x37\x1d\xfb\x42\x31\x1d\xfb\x2d\xfc\x4a\x23\x1d\xfb\xd4\xf7\x46\x91\x0a\xf7\x60\xf7\x94\x99\x0a\x0e\x52\xf8\xda" +"\x20\x0a\xfb\x4a\x06\x97\x5c\x74\x8e\x68\x1b\xfb\x25\x31\xfb\x00\xfb\x41\xfb\x45\xe3\x23\x3c\x1d\xe4\xf4\xf7\x40\xe3\x78\xc3\x5b" +"\xbf\x1f\xf7\x07\x06\xfb\xb1\x97\x15\xea\xc2\x3f\xfb\x16\xfb\x11\x52\x3e\x2e\x2e\x52\xd8\xf7\x13\xa1\x0a\x1f\x0e\xf7\xef\xf8\x93" +"\x6c\x0a\x5a\x04\xf7\x43\xf7\x21\xfb\x21\xfb\x43\xfb\x44\xfb\x21\xfb\x20\xfb\x45\xfb\x43\xfb\x1f\xf7\x22\xf7\x47\xf7\x3e\xf7\x23" +"\xf7\x21\xf7\x41\x1f\xfb\x01\xfb\x37\x15\x70\x74\x74\x71\x6f\xa2\x74\xa6\xa6\xa2\xa2\xa6\xa6\x74\xa2\x70\x1f\xfb\x14\xfb\x00\x15" +"\x92\x36\x96\x62\xa9\x5e\x08\x4c\xb5\xcb\x6b\xde\x1b\xd8\xc7\xa6\xc1\xb5\x1f\xaf\xba\x9a\xb8\x92\xe8\x80\x59\x80\x75\x71\x6d\x08" +"\x54\x5b\x4f\x71\x3a\x1b\x3a\x4f\xa5\xc2\x5b\x1f\x71\xa9\x80\xa1\x80\xbd\x08\xf7\xee\xf7\x00\x15\x70\x74\x74\x71\x6f\xa2\x74\xa6" +"\xa6\xa2\xa2\xa6\xa6\x74\xa2\x70\x1f\x0e\xfb\x23\xc7\x16\xf8\x77\xa2\x06\xfb\x35\x93\x3f\xe0\x8e\xf7\x3e\x08\x38\xb7\xb9\x6a\xd4" +"\x1b\xd1\xc5\xc9\xd5\xcf\x71\xb4\x20\xec\x1f\xfb\x01\xf0\x78\xa6\x64\xf7\x09\x7b\x2f\x50\x35\x21\x35\x08\x3b\x48\x68\x53\x4b\x1a" +"\x40\xc8\x4d\xd4\xb5\xb4\x9c\xa9\xab\x1e\x9e\x9d\x96\x9a\x9c\xb0\x91\xfb\x3b\x34\x2c\xfb\x33\x8a\x08\x0e\xf7\xd6\xf9\x63\xf9\x7e" +"\x15\xfc\x80\x45\x06\xf7\x61\xfb\xf5\xfb\x61\xfc\x16\x05\x44\xf8\x87\xf7\x6b\x43\x07\x88\xfb\x23\x05\xfb\xe3\x06\xf7\x60\xf8\x16" +"\xfb\x5f\xf7\xf1\x05\xf7\xdb\x06\x8f\xfb\x22\x05\xd2\x06\x0e\xf7\x87\xf7\x94\xf8\xa3\x15\x6b\x62\x7a\x63\x85\x58\x08\xfb\x10\x4f" +"\xf7\x10\x06\x90\x5b\x9f\x5a\xa8\x67\x34\x34\x18\xb5\x62\xe2\xe2\xb5\x6b\xb7\x79\xb9\x86\x19\xfb\x0f\xc6\xf7\x0f\x07\xba\x90\xba" +"\x9e\xb3\xaa\xe2\x34\x18\xb4\xb4\x34\xe2\xa9\xb1\x9e\xb8\x91\xbd\x19\xf7\x0f\xc7\xfb\x0f\x06\x85\xbc\x78\xb9\x6d\xb0\xe2\xe2\x18" +"\x62\xb4\x34\x34\x66\xa9\x5c\x9e\x59\x91\x19\xf7\x0f\x50\xfb\x0e\x07\x5b\x85\x5e\x78\x64\x6c\x34\xe2\x18\x61\x62\x05\xf7\xb9\x50" +"\x15\xf0\xdf\x36\x26\x24\x37\x37\x24\x23\x39\xde\xf4\xf2\xde\xdd\xf4\x1f\x0e\xfb\xab\xf7\x2f\x16\xdf\xf8\x56\xf7\x42\xd5\xfc\x43" +"\x41\xf7\x41\x06\x0e\xfc\x20\xf7\x92\xc1\x15\x88\x7f\x80\x8a\x7a\x1b\x67\x81\x95\xb0\x1f\xf7\x73\xd7\xc0\x3f\xde\xe1\xcf\x35\xf7" +"\x24\x38\xfb\x24\x44\x47\xd2\x38\x4e\x56\xc8\xfb\x98\x07\x55\xaf\x6e\xcc\xa1\x9d\x8d\x90\xa7\x1e\x0e\xfb\xf9\x4b\x1d\x6a\xf7\xed" +"\x15\x27\xc2\x07\x54\x8d\x78\x6c\x65\x1b\x65\x07\xc7\x89\xb2\xba\x8c\xd7\x08\xf2\x07\x0e\xfc\x20\xf7\x39\x75\x15\x8a\x93\x90\x8b" +"\x94\x1b\xa0\x9d\x8d\x90\xa7\x1f\xd1\x07\x88\x7f\x80\x8a\x7a\x1b\x67\x81\x95\xb0\x1f\xf7\xfb\xe1\xcf\xbc\x1d\xfc\x20\x07\x69\x9a" +"\x71\xa9\x7e\x1e\x67\x3c\x97\x85\x05\x90\x4d\x1d\xaf\xc4\xa2\x0a\x83\x31\x0a\xf7\xaa\xf9\x7c\x15\x41\x4f\x6c\x54\x65\x1f\x60\x4a" +"\x7c\x3e\xfb\x2c\x1a\xfb\x27\x99\x3e\xb0\x4a\x1e\x4c\xaf\xca\x68\xd7\x1b\xe0\xc7\xab\xcd\xb1\x1f\xb0\xcb\x99\xd9\xf7\x25\x1a\xf7" +"\x2e\x7c\xd7\x60\xcd\x1e\xc3\x65\x4f\xa9\x41\x1b\xfb\x25\xfb\xdd\x15\x8f\xf3\x91\xaf\xa2\xb9\x08\xb6\xa0\xb3\xa2\xbf\x1b\xbf\xb2" +"\x74\x60\xa1\x1f\xa1\x5d\x92\x67\x8f\x23\x08\x8a\x48\x15\x8a\x2d\x87\x5b\x82\x67\x08\x3e\x78\x5d\x63\x48\x1b\x4c\x60\xae\xcd\x75" +"\x1f\x7f\xb2\x86\xbc\x8a\xf5\x08\x0e\xfb\xe9\xf7\x12\xf9\x9f\x21\x0a\x26\x1d\xfb\xab\xf9\x70\x6d\x0a\x26\x1d\xfb\x38\xf9\x78\x39" +"\x0a\x26\x1d\x8f\xf9\x51\x28\x1d\xfb\x0e\xf8\xd4\xfb\x47\x15\xfc\xec\x59\xf8\xec\x06\xf7\x2a\x04\xfc\xec\x59\xf8\xec\x06\x0e\xfc" +"\x20\x0e\xfb\xe9\xa8\x1d\x4c\x3e\x0a\x2d\x4f\x23\x1d\xfc\x20\x4b\x1d\xfb\x23\xfc\x98\x23\x1d\xfb\xe9\xf7\xc2\xf9\x51\x28\x1d\xfc" +"\x20\x46\x0a\x85\x7f\x16\xf9\x47\x06\xfb\xbd\xf9\x6d\x05\x27\x06\xbe\xfb\x05\x15\xf7\x67\xfc\xaa\x05\xfc\x3b\x06\x0e\xd5\xa7\x16" +"\xf7\xb4\xdd\x06\x4e\xaf\x6e\xa4\x6f\xb1\x08\x63\xc1\x75\xd8\xdd\x1a\xf7\x37\xe7\xf1\xf7\x27\xf7\x26\xe7\x25\xfb\x37\x39\x75\x3e" +"\x63\x55\x1e\x6f\x65\x6e\x72\x4e\x67\x08\x39\xf7\xb4\xdd\xfb\x55\x07\xc8\xaf\xa6\xa2\xa7\xb2\x08\xb4\xc3\xa0\xd4\xe1\x1a\xe5\x74" +"\xd8\x60\xc3\x1e\xd8\x4e\x29\xb9\x20\x1b\x2e\x34\x68\x4c\x4d\x1f\x50\x50\x6d\x37\x22\x1a\x35\xa0\x42\xb4\x53\x1e\xa7\x64\xa6\x74" +"\xc8\x67\x08\xfb\x55\x06\x0e\x29\xf8\x31\xf8\xa0\x15\xfb\xaf\x07\x43\x81\x65\x6e\x6a\x1e\x6d\x71\x65\x79\x64\x1b\x4a\x61\xb3\xca" +"\x1f\xf8\x07\x37\xfd\x7a\xde\xf7\x6a\x07\x7f\xa4\xaa\x84\xac\x1b\xd4\xbc\xa7\xcf\xbb\x1f\x42\xd6\xf8\xa0\x07\x0e\xfb\x54\xf8\x37" +"\xfb\x6e\x15\xaf\xea\x98\xba\xa9\x1a\xa3\x81\xa2\x7b\x9a\x1e\x73\xa1\x87\x8d\x36\xa8\x5e\x9b\x18\x48\xa3\x71\x98\x75\xa0\x08\x68" +"\xab\x76\xc1\xc2\x1a\xf1\xcd\xd7\xe4\xb6\xb3\x78\x6c\xa2\x1e\x99\x79\x91\x7a\x8f\x6a\x08\xe3\x06\x86\xc2\x80\xa8\x70\xad\x08\xbc" +"\x63\x4c\xa7\x44\x1b\x49\x4e\x72\x60\x60\x1f\x5f\x5d\x6e\x40\x45\x1a\x47\xa5\x43\xb4\x5f\x1e\xa8\x6b\xaf\x76\xc8\x76\xf7\x05\x65" +"\x18\xae\x7f\x99\x7d\x75\x1a\x76\x7f\x65\x67\x2c\x1e\x0e\x84\x24\x0a\xf7\x28\xf9\xed\x22\x0a\xb8\x43\x0a\xf7\xa4\xf7\x66\x22\x0a" +"\x64\x1d\xfb\x07\x3f\x1d\xf7\x2d\xf7\x6c\x22\x0a\xfb\x1c\xf7\x43\xf8\x32\x15\xf7\x7d\xf7\xfc\xdd\xfc\x5a\xfb\xcf\x5d\x39\xb9\xfb" +"\xe0\xe9\xf7\xe0\xf7\x94\xdd\x07\x0e\xfb\xb1\xf7\x2e\xf7\xd7\x15\xf7\x13\xf7\x7d\xd5\xfb\xd1\xfb\x5d\x68\x41\xae\xfb\x8d\xdf\xf7" +"\x8d\xf7\x2b\x07\x8c\xd5\x05\x0e\xf7\xef\xf8\x4d\x16\xe9\xf7\xed\xf7\x06\x49\x0a\xbf\xfb\x26\xe8\xf7\x78\x2b\x8d\x0a\xfb\x48\xfb" +"\xc2\x05\xfb\x03\xf7\xc2\x2d\xfb\xc2\xfb\x03\x06\xfb\x48\xf7\xc2\x05\x22\x06\xf7\x63\xfb\xed\xfb\x8f\xfc\x14\x05\xf4\x06\xf7\x74" +"\xf7\xed\x05\xf7\x03\x06\x0e\xf7\x25\xf7\xf3\x16\xdf\xf7\x8d\xf2\x06\xf7\x28\xfb\x8d\x05\xbb\xfb\x31\xdf\xf7\x7c\x3e\x06\xfb\x10" +"\xf7\x67\xf7\x10\xba\x1d\x24\xf7\x5d\x37\xfb\x5d\x24\x06\x21\xf7\x5d\x05\x2a\x06\xf7\x10\xfb\x82\xfb\x3b\xfb\xb2\x05\xed\x06\xf7" +"\x28\xf7\x8d\x05\xf2\x06\x0e\x45\xf7\xc8\x74\x15\xc1\xbc\x97\xa1\xaf\x1f\xc8\xb0\xb3\xd8\xdc\x1a\xe9\x5a\xcb\x37\x9b\x1e\xad\x96" +"\x9c\x95\x9c\xa0\x08\xa6\xab\x9b\xb8\xb8\x1a\xf7\x06\x2e\xde\xfb\x13\xfb\x1a\x32\x32\xfb\x1a\x1e\x7a\xe9\xad\x07\xd5\xc0\xbd\xd8" +"\xd6\xbd\x5a\x43\x41\x54\x5b\x37\x1e\x6a\x3a\xb3\x06\xba\xa5\x85\x7a\xa5\x1f\xaf\x74\x9e\x64\x58\x1a\x33\x55\x57\x2f\x2d\x4f\xc5" +"\xe5\x1e\x9c\x2d\x07\x87\xfb\x19\xdf\x28\xf7\x16\x7e\x6b\x44\x18\x96\x85\x05\x90\x98\x92\x8d\x96\x44\x0a\x79\x91\xa2\x5e\x87\x1d" +"\xfb\x6c\xf7\x86\x74\x15\xf1\x91\xd1\xcf\xe9\x1a\xc6\x6f\xb5\x50\xa6\x1e\xbe\xa7\xa4\xb2\xbd\x1a\xdf\x41\xcc\x2a\x51\x59\x75\x65" +"\x6b\x1e\x76\x71\x7a\x5d\x6b\x1a\x74\xe2\xa2\x07\xbd\xb1\xb0\xbf\xbd\xae\x69\x5c\x7a\x85\x7a\x81\x81\x1e\x79\x79\x6a\x7e\x72\x1b" +"\x68\x41\xae\x06\xc9\xb4\x67\x55\x54\x66\x6a\x4d\x4b\x69\xaa\xc4\x1f\xa1\x34\x75\x07\x2d\xc8\x4d\xed\x83\x1e\x6c\x45\x97\x84\x05" +"\x91\x97\x92\x7a\x1d\x83\x31\x0a\x83\xdb\x16\xe9\xf7\xed\xd4\x49\x0a\xc5\xfb\x3a\xe9\xf7\x8c\x25\x8d\x0a\xfb\x47\xfb\xc2\x05\x43" +"\xf7\xc2\x2d\x06\x0e\xfb\x1b\xd2\x16\xdf\xf7\x8d\xf2\x06\xf7\x28\xfb\x8d\x05\xbb\x5f\x1d\x3e\x06\xfb\x10\xf7\x68\xf7\x10\xf7\x82" +"\x05\x2a\x06\x21\x56\x1d\x37\x06\x0e\x53\xf7\x76\xf8\x3f\x15\x57\xf7\xc2\x2d\xfd\x6d\xe9\xf7\xed\xbf\xfb\x4b\xc7\xf7\x4b\x8d\x06" +"\xf7\x74\x81\x0a\xf7\x4c\x4f\x07\x0e\xfb\x3d\xf7\x61\xf7\xd7\x15\x59\xf7\x5d\x30\x1d\xf7\x8d\xbd\xfb\x14\xc1\xf7\x14\x06\xf7\x27" +"\x50\x1d\x22\xfb\x5d\x05\xf7\x14\x55\x07\x0e\x30\xf7\x31\xf8\x3f\x15\x8c\xf7\xc2\x05\xfc\x04\x39\xf7\xa5\xfd\x1b\x86\x1d\x0e\xfb" +"\x80\xb0\xf8\x56\x15\xfc\x56\xdf\xf7\x8d\xf2\x07\xf7\x28\x50\x1d\x21\x56\x1d\xfb\xb9\x41\x06\x0e\xbb\xf8\xb8\x4e\x0a\xc3\xa5\x1d" +"\x87\x0a\xfb\x10\xd2\x16\xdf\xf7\x83\xf7\x85\xfb\x83\xad\x5f\x1d\x69\xf8\x56\x37\xfb\x67\xfb\x85\xf7\x67\x37\x06\x0e\xbb\xf8\x1a" +"\x74\x15\xf7\x3d\x8f\xeb\xec\xa1\xf7\x50\x08\x2b\x06\x83\x59\x81\x69\x7c\x6e\x45\x0a\xf7\x4a\xf7\x4f\xe2\xf7\x07\xf7\x22\xc6\x73" +"\x1d\xb9\x6b\xba\x7c\xcc\x87\x6c\x45\x18\x50\x0a\x97\x92\x83\x1d\xae\xc5\x9b\x1d\x0e\xfb\x42\xf7\xab\x74\x15\xf7\x07\x91\xd7\xd8" +"\x92\xf7\x0c\x08\x37\x06\x37\x84\x0a\xf7\x17\x72\x0a\xfb\x33\xd9\x24\xf7\x16\x7e\x1f\x6c\x45\x50\x0a\x96\x93\x7a\x1d\x82\x85\x8b" +"\x89\x7f\x1f\x0e\x8b\xf8\x17\x55\x1d\xfb\x6a\xf7\xf7\x05\xfb\x07\x06\xf7\xac\xa0\x0a\xe9\x07\x0e\xfb\x42\xf8\x1b\xf8\xa0\x15\xfb" +"\x20\x89\x0a\xfb\x6e\xdf\xf7\x6e\x07\xf7\x4f\xf8\xa0\x05\x0e\x8b\xf8\x17\xf7\x72\x15\xcb\x07\xf7\xa6\xf8\x4f\x05\xfb\x03\x06\xfb" +"\x64\xfb\xf7\xfb\x6b\xf7\xf7\x05\xfb\x06\x06\xf7\xac\xfc\x4f\x05\x4b\xfb\x2f\x37\xf7\x2f\xfb\x1e\xe9\xf7\x1e\xf7\x28\xdf\x07\x0e" +"\xfb\x42\xf7\xb9\x89\x15\x8d\x07\xf7\x4f\xf8\xa0\x05\x31\x06\xfb\x1f\x89\x0a\x89\xfb\x0d\x52\xf7\x0d\xfb\x33\xdf\xf7\x33\xf7\x0b" +"\xc4\x07\x0e\xae\xf8\x19\x61\x0a\xca\xfb\x3a\xe9\xf7\x8c\x28\x06\x0e\xfb\x27\xf7\xb9\x67\x0a\xb9\xfb\x33\xdf\xf7\x7d\x38\x06\x0e" +"\xa0\xf8\x9d\x16\xc3\xa5\x1d\x7d\x1d\xfb\x3a\xf7\xf5\x16\xad\x5f\x1d\x69\xf8\x56\x75\x1d\xa0\xf8\x04\xf7\x8f\x15\xc4\x90\xbb\x93" +"\xbb\x98\x08\xfb\xa9\xe9\xf9\x6d\x2d\xfc\x06\x07\x4f\x7b\x60\x83\x59\x88\x08\xf7\x75\x4f\xfb\x75\x07\x23\x91\x59\xae\x8c\xcd\x08" +"\xf7\xb6\x2d\xfb\xbb\x07\x8c\xfb\x08\xe5\x48\xf7\x30\x89\x08\xfb\x21\xc7\x07\x0e\xfb\x3a\xf7\xa6\xf7\x43\x15\xaa\x90\xa1\x92\xa9" +"\x97\x08\xfb\x5b\xdf\xf8\xa0\x37\xfb\x94\x07\x6e\x82\x73\x85\x6d\x88\x08\xf7\x0d\x55\xfb\x0e\x07\x56\x8f\x6e\xa7\xbc\x1a\xf7\x56" +"\x37\xfb\x69\x07\x87\x36\xcb\x55\xf5\x8a\x08\x31\xc1\x07\x0e\xa0\xf7\x2f\x20\x1d\x2d\xfd\x6d\xe9\xf8\x06\x06\x9f\xd6\xbc\x93\xc6" +"\x1b\xf7\x0e\xc8\x67\x43\x1f\xfb\xb6\xe9\xf7\xbb\x07\xf7\x09\x2d\xcf\xfb\x36\x4b\x45\x81\x79\x45\x1e\x0e\x20\xdd\x16\xdf\xf7\xed" +"\x06\xd2\xb9\xc2\xb2\x57\x1d\xfb\xfa\xdf\xf7\xfa\x4a\x0a\x57\x6e\x47\x52\x1e\xf7\xba\x37\x07\x0e\xfc\x20\xf7\x4e\x2c\x1d\x0e\x84" +"\xf8\x8f\xdd\x15\x53\xfb\x8c\xe9\xf7\x3a\xc3\xf9\x6d\x6b\x1d\xcc\xd0\x95\x9d\xd1\x1e\x0e\xfb\x2d\xf7\xfc\xd6\x15\x52\xfb\x7c\xdf" +"\xf7\x31\xc4\xf8\xa0\x37\xfb\x93\x06\x7d\x5f\x66\x85\x64\x1b\x4a\x69\xa7\xc1\x1f\xf7\x55\x37\xfb\x68\xae\x1d\xc7\x1b\xba\xb5\x94" +"\x9e\xb9\x1f\x0e\xf3\xb2\xf8\x24\x15\x89\x7a\x8b\x81\x7d\x1a\xfb\x79\xf7\x21\xfb\x2e\xf7\x67\xf7\x67\xf7\x21\xf7\x2d\xf7\x79\xf7" +"\x79\xfb\x21\xf7\x2e\xfb\x67\xfb\x30\xfb\x02\x40\xfb\x27\x50\x1e\xe7\x79\x05\xf2\xb6\xdc\xc2\xf7\x01\x1b\xe2\xd8\x63\x48\xb6\x1f" +"\xa6\x61\x9b\x5d\x92\x4b\x08\x38\x04\xfb\x37\x79\x2b\x2b\xfb\x23\x1b\xfb\x23\x2b\xec\xf7\x36\x79\x1f\x0e\xb8\x43\x0a\xf8\x45\xf6" +"\x28\x1d\xfb\x07\x3f\x1d\xf7\xd8\xf7\x10\x15\xfb\xa6\x45\xf7\xa6\x06\x0e\xf3\xf8\x18\xf9\x79\x15\xfb\x66\xfb\x21\xfb\x2e\xfb\x79" +"\x9d\x0a\xe4\xd9\xa6\xbd\xc6\x1f\xda\xce\xba\xf7\x05\xf7\x0c\xb4\x1d\xf7\x96\xfc\x3c\x15\xfb\x37\x79\x2b\x2b\xfb\x23\x1b\xfb\x23" +"\x2b\xec\xf7\x36\x79\x1f\xde\x04\xf7\x36\x9d\xeb\xec\xf7\x23\x1b\xf7\x23\xeb\x2b\xfb\x37\x9d\x1f\x0e\xf7\xa9\xf8\xaf\x15\xfb\x28" +"\x33\x22\xfb\x44\xfb\x45\xe3\x23\xf7\x29\xf7\x28\xe4\xf4\xf7\x40\xf7\x4a\x35\xf2\xfb\x2c\x1f\xf7\x29\xfb\xd2\x15\x20\x80\x56\x4f" +"\x37\x1b\x37\x56\xc7\xf6\x80\x1f\xd5\x04\xf6\x96\xc0\xc7\xdf\x1b\xdf\xc0\x4f\x20\x96\x1f\x0e\x64\xf8\x68\xfa\x01\x8f\x0a\xfb\xda" +"\xfd\xbb\x15\xe3\x06\xbf\xb5\xaa\xc8\xa6\x1f\xf7\xa9\xf9\x11\x05\xfb\x02\x06\xfb\x50\xfc\x62\xfb\x5b\xf8\x62\x05\xfb\x04\x06\xf7" +"\x9d\xfc\xd1\x73\x4e\x7d\x80\x5b\x89\x19\x53\x06\x0e\xfb\x42\xf8\x11\xf9\x26\x8f\x0a\x94\x4b\x15\xfb\x24\xfc\x2c\xfb\x1b\x48\x1d" +"\xfc\xa0\x6b\x36\x05\x64\x7d\x79\x7d\x69\x1b\x7c\x7e\x8d\x91\x7a\x1f\x3e\x07\x83\x9c\x9c\x88\xa0\x1b\xa7\xa7\x94\x9b\xa2\x1f\xa4" +"\x9e\x9a\xa1\x9b\xb5\xf7\x7e\xf9\x0e\x18\x0e\xfb\xe9\xf8\x66\xfa\x1d\x9c\x0a\xf7\x86\xb0\x89\x15\xf7\x69\xaf\x8f\xa5\xc8\x1f\xf7" +"\x05\xbd\xdf\xf7\x33\xf7\x37\x1a\xe1\x70\xd6\x5f\xad\x1e\xa4\x6c\x5e\x97\x50\x1b\xfb\x08\x38\x6b\x4d\x5e\x1f\x71\x67\x81\x64\x89" +"\x42\xcc\xab\x18\x97\x07\xc1\x9c\xb1\xad\xa2\x1e\x9c\x96\x95\x8e\xb9\x94\x42\xfc\x1f\x18\x7c\x45\x73\x61\x6e\x81\x08\x77\x06\xd3" +"\x8a\x15\xc8\xbc\x9a\xac\xa1\xf7\x0f\xc2\xf7\xd2\x18\x92\x06\x90\x06\x9e\x06\xa9\x97\x88\x7f\x9e\x1f\xb3\x72\xa1\x51\x3a\x1a\x20" +"\x73\x34\x5c\x4c\x1e\x64\x59\x58\x6e\x54\x88\x08\xf7\x7b\xfb\x7d\x15\xce\x06\xad\xf7\x52\x05\x7d\xaa\x97\x88\x9e\x1b\xf7\x06\xee" +"\xf7\x29\xf7\x42\xec\x64\xbd\x3e\x5c\x63\x77\x66\x6d\x1f\x69\x61\x79\x55\x75\xfb\x0b\x08\xb9\xfb\x00\x15\xae\xf7\x54\x05\xe1\x9b" +"\xad\xbc\xb7\x1b\xb2\xa0\x63\x41\xfb\x20\x56\xfb\x02\x47\x71\x77\x95\xa1\x79\x1f\x0e\xe9\xf8\xaf\xdd\x15\xf7\x17\xd6\xc8\xf0\xf7" +"\x1f\x1a\xf3\x65\xe1\x3e\xcf\x1e\xc4\x4a\x3e\xa8\x31\x1b\x31\x3e\x6e\x52\x4a\x1f\x3e\x47\x65\x35\x23\x1a\xfb\x1f\xc8\x26\xf7\x17" +"\x40\x1e\xfb\x5d\x39\xf7\xc1\xd9\x06\x57\xa7\x72\x9d\x6f\xa7\x08\x4d\xc9\x6b\xdb\xe7\x1a\xdc\xa3\xc9\xc1\xc3\x1e\xbf\xbd\xbf\xa1" +"\xd5\x1b\xd5\xbf\x75\x57\xbd\x1f\xc1\x53\xa3\x4d\x3a\x1a\x35\x6f\x40\x55\x4e\x1e\x6c\x6a\x6f\x76\x51\x6b\x08\x3d\xf7\xc1\xdd\x07" +"\x0e\xfc\x20\xf7\xe1\x2f\x1d\x0e\xfc\x20\x46\x0a\xf7\xda\xf8\xa9\xf8\x95\x15\x49\x06\xfb\x74\xfc\x95\x05\xdb\x06\xf7\x45\xf8\x2d" +"\xf7\x45\xfc\x2d\x05\xdb\x06\x0e\xf7\xda\xf8\xa9\x16\xf7\x74\xf8\x95\x05\x3b\x06\xfb\x45\xfc\x2d\xfb\x45\xf8\x2d\x05\x3b\x06\xf7" +"\x74\xfc\x95\x05\x0e\xf7\xda\xf8\x8c\xf9\x60\x15\xfb\x60\xfb\x34\xfb\x33\xfb\x5e\xfb\x5b\xf7\x34\xfb\x33\xf7\x5d\xf7\x5b\xf7\x34" +"\xf7\x34\xf7\x5c\xf7\x59\xfb\x35\xf7\x36\xfb\x57\x1f\xa4\x52\x15\xf7\x23\x7e\xf7\x06\xfb\x06\x99\xfb\x25\x08\xfb\xa3\x06\xf7\xa4" +"\x52\x15\x82\xfb\x22\xfb\x0d\xfb\x0f\xfb\x22\x80\x08\xf7\xa8\x07\x53\xfb\xa8\x15\xfb\x27\x99\xfb\x05\xf7\x05\x7d\xf7\x29\x08\xf7" +"\xa6\x06\xfb\xa6\xc4\x15\x99\xf7\x24\xf7\x07\xf7\x06\xf7\x25\x99\x08\xfb\xa4\x07\x0e\x45\xb6\x16\xf8\x9b\xf8\x9b\xfc\x9b\x06\xf8" +"\x67\xfc\x67\x15\xfc\x33\xf8\x33\xf8\x33\x06\x0e\xb8\xf8\xeb\xf8\xf7\x15\x45\xfb\xa4\x06\xfb\x05\x86\x5f\x7b\x6b\x1e\x56\x70\x50" +"\x67\x4c\x1b\x54\x54\xa7\xb7\x6e\x1f\x73\xb0\x84\xb7\xf7\x11\x1a\xf7\xa4\x45\xfb\xa1\x07\xfb\x29\x90\x65\xa6\x5f\x1e\x45\xb5\xd7" +"\x62\xe5\x1b\xde\xd1\xac\xc9\xb8\x1f\xaf\xbc\x91\xaf\xf7\x36\x1a\x0e\x3a\xf8\x27\xf8\x1c\x15\xfb\x69\x06\x41\xf7\x4d\x05\x2d\x06" +"\xf7\x7d\xfc\xd5\x05\xde\x06\xf7\x7d\xf8\xd5\x05\x2d\x06\x22\xfb\x9d\x15\x3f\xfb\x48\x40\xf7\x48\x05\x0e\xf8\x76\xf8\xa0\x15\x38" +"\xfb\xbd\x06\x20\x53\x45\x34\x49\x61\xb3\xca\x1e\xf8\x07\x38\xfc\x28\x07\x34\xcc\x53\xf1\xd8\xbc\xa6\xd0\xbc\x1e\x42\xa1\x07\x49" +"\x69\x6d\x69\x60\x1a\x52\xc0\x67\xde\x97\x92\x8c\x90\x9f\x1e\x8d\x8c\x90\x8c\x91\x8c\x08\xb8\x07\x83\x76\x7f\x89\x7b\x1b\x63\x71" +"\x9f\xab\xb2\xa9\xb6\xb9\xa5\x1f\x0e\xfb\x13\x34\x0a\x0e\xfb\x13\x34\x0a\xeb\xf7\x53\x22\x1d\xfb\x13\x34\x0a\xdf\xf7\xe3\x40\x0a" +"\xfb\x13\x34\x0a\xdf\xf7\x93\x21\x0a\x26\x1d\xfb\x19\xf9\x86\x27\x0a\x0e\x26\x1d\x69\xf9\x61\x5d\x0a\xbb\x2c\x0a\x30\x41\x1d\xbb" +"\x2c\x0a\xfb\x2b\xf9\x79\x37\x1d\xbb\x2c\x0a\xfb\x1f\x3a\x0a\xbb\x2c\x0a\xfb\x16\xf9\x78\x3d\x0a\xfb\x76\xba\xf9\x23\x15\xf4\x06" +"\x56\x6c\x70\x60\x54\x1a\x63\x9c\x63\xa8\x70\x1e\x9e\x7a\x9a\x83\xac\x81\x08\x20\x6b\x5b\x52\x2b\x1a\x48\xa6\x50\xb9\x6a\x1e\xaa" +"\x74\xad\x81\xc8\x87\xc5\x87\x18\xd5\x86\x9a\x82\x65\x1a\x6b\x80\x65\x65\x2c\x1e\xe1\x06\xaf\xeb\x97\xb7\xb8\x1a\xd0\x69\xa7\x29" +"\x94\x1e\x52\x90\x4b\x91\x76\x90\x75\x99\x19\x6f\x9d\x78\xb3\xb4\x1a\xc1\xaa\xbb\xbc\x9f\x1e\x9a\xb0\xb4\x91\xcc\x1b\xbe\xd5\x5b" +"\x06\xfb\x0a\x4a\xb4\xd6\xb2\xa2\xb3\xad\x9f\x1f\x9a\xa5\xab\x91\xc0\x1b\xe4\xd5\xfc\x07\x06\x0e\xfb\x42\x2b\x0a\xfb\xa7\xf7\x6d" +"\x2b\x1d\xfb\x42\x2b\x0a\xfb\x9e\xf7\x6c\x22\x0a\xfb\x42\x3e\x1d\xfb\x38\xf7\xb6\x15\x2a\xfb\x28\x05\xc7\xb6\x1d\x0e\xfb\x42\x3e" +"\x1d\xfb\x20\xf7\x9e\x24\x1d\xfb\x7d\xe0\xf9\x23\x15\xf7\x74\x06\x5c\x6f\x67\x6c\x61\x5d\x08\x2c\x23\x5a\xfb\x07\xfb\x09\x1a\x31" +"\xad\x47\xc8\x6f\x1e\xa6\x7e\xaf\x83\xbc\x87\xb7\x87\x18\xca\x85\x99\x82\x66\x1a\x69\x88\x81\x5d\xfb\x0d\x1e\xe0\x06\xb7\xf7\x0b" +"\x90\x9d\xbb\x1a\xce\x69\xa7\x2c\x95\x1e\x5d\x90\x41\x92\x85\x8d\x76\x97\x19\x6b\x9e\x79\xb8\xc7\x1a\xe7\xb5\xee\xda\xea\x1e\xbd" +"\xc7\xbf\xb5\xda\xb8\x08\xd5\xfb\xec\x07\x0e\x74\xa2\xf8\xa0\x9a\xf7\x52\x97\x6b\x99\x06\xdc\x0a\xe8\x0b\xb6\x8e\x92\x8f\x8f\x92" +"\x90\x90\x8e\x95\x95\x8e\x0c\x0c\xb4\x97\x91\x8f\x90\x93\x8e\x8f\x90\x90\x95\xcc\x0c\x0d\xf8\xc0\x14\xf9\x36\x15\xbe\x13\x00\x83" +"\x02\x00\x01\x00\x05\x00\x08\x00\x14\x00\x19\x00\x1e\x00\x23\x00\x27\x00\x4d\x00\x52\x00\x81\x00\xb4\x00\xeb\x01\x16\x01\x32\x01" +"\x3e\x01\x4b\x01\x55\x01\x5b\x01\xbd\x02\x12\x02\x52\x02\x57\x02\x6f\x02\x73\x02\x7f\x02\x87\x02\x8b\x02\x8f\x02\x9b\x02\xa7\x02" +"\xb3\x02\xb9\x02\xcc\x02\xf3\x03\x07\x03\x1a\x03\x25\x03\x32\x03\x38\x03\x43\x03\x4c\x03\x53\x03\x5a\x03\x61\x03\x66\x03\x6c\x03" +"\x72\x03\x77\x03\x7c\x04\x07\x04\x0c\x04\x70\x04\x9c\x04\xf7\x04\xfc\x05\x01\x05\x17\x05\x5c\x05\x92\x05\xcd\x05\xe4\x05\xe9\x06" +"\x1e\x06\x3d\x06\x42\x06\x6f\x06\x87\x06\xb2\x06\xb5\x06\xbf\x06\xe9\x07\x13\x07\x1f\x07\x2b\x07\x35\x07\x5b\x07\x80\x07\x8e\x07" +"\x96\x07\xa7\x07\xb8\x07\xbe\x07\xc5\x07\xdc\x07\xfb\x08\x0c\x08\x10\x08\x16\x08\x32\x08\x39\x08\x44\x08\x52\x08\x69\x08\x77\x08" +"\x7c\x08\x93\x08\xaa\x08\xc0\x08\xd5\x08\xe8\x08\xf3\x09\x03\x09\x11\x09\x20\x09\x25\x09\x34\x09\x42\x09\x49\x09\x55\x09\x62\x09" +"\x6f\x09\x77\x09\x83\x09\x88\x09\x94\x09\xa0\x09\xa7\x09\xad\x09\xb8\x09\xbf\x09\xc5\x09\xcf\x09\xd9\x09\xe3\x09\xeb\x09\xf4\x09" +"\xfd\x0a\x06\x0a\x0c\x0a\x12\x0a\x17\xf8\xa0\x15\x0b\xa6\x1d\x0e\x15\xfb\x05\x06\xf7\x29\xfb\x28\x05\xc7\x06\x0e\xf8\x6e\x69\x0a" +"\x0b\xf7\x4b\x8f\x1d\x0b\xf8\x19\x52\x0a\x0b\x15\x2a\xac\x1d\x15\x5b\x63\x64\x5b\x5a\xb2\x64\xbc\xbb\xb3\xb2\xbb\xbc\x64\xb2\x5a" +"\x1f\x5f\x04\xa4\x9e\x78\x72\x74\x77\x77\x73\x73\x77\x9f\xa2\xa3\x9f\x9f\xa3\x1f\x0b\xf8\x17\x80\x1d\x0b\xf8\xe8\xf8\x97\x15\xbd" +"\x88\x99\x7b\xad\x1e\xdf\x63\x36\xb7\xfb\x0f\x4a\x1d\x8c\x48\x98\x5f\xa8\x63\x08\x46\xbd\xdf\x68\xf7\x03\x1b\xe2\xd2\x9f\xaf\xba" +"\x1f\xbc\xb2\xaa\xcc\xca\x85\x1d\x0b\xf9\x2a\xf8\x8b\x15\x93\x1d\xfb\x0c\xb0\x24\xcf\x44\x1e\x51\xc4\xd3\x70\xea\x1b\xf7\x46\xef" +"\xeb\xf7\x55\xa1\x1f\x2b\x06\x83\x59\x81\x69\x7c\x6e\x45\x0a\xf7\x4a\xf7\x4f\xe2\xf7\x07\xf7\x22\xc6\xaa\x1d\x0b\xf8\x18\x20\x0a" +"\xfb\x25\xfc\x2c\xfb\x1a\x48\x1d\xfc\xa2\x6b\x38\x05\x66\x7d\x79\x7d\x68\x1b\x7d\x7f\x8d\x8f\x79\x1f\x40\x07\x82\x9c\x9c\x87\xa1" +"\x1b\xa6\xa8\x94\x9b\xa1\x1f\xa5\x9e\x9a\xa1\x9b\xb5\xf7\x7d\xf9\x0e\x18\x0b\xf8\xbe\x16\xf7\x2e\xf8\xa0\x05\x2d\x06\x23\xfc\x2c" +"\x24\xf8\x2c\x05\x25\x06\x27\xfc\x2c\x20\xf8\x2c\x05\x2f\x06\xf7\x2c\xfc\xa0\x05\xe9\x06\xf0\xf8\x2f\xf5\xfc\x2f\x05\x0b\xf8\xd9" +"\x20\x1d\xfc\xa1\x39\xf8\x2e\x06\xfc\x4a\xfc\xc9\x05\x39\xf8\xbf\xdd\xfc\x4a\x07\xf8\x48\xf8\xc7\x05\x0b\xb9\x1d\x3b\xeb\x05\x4b" +"\x06\xec\xfb\x2a\x05\x0e\x64\x90\x78\x9a\x77\x08\x66\xa5\xb8\x77\xc4\x1b\x0b\xf7\x56\x20\x1d\x2d\xfd\x6d\xe9\x06\x0b\x85\x8b\x89" +"\x7e\x1f\x0e\x15\x3f\x07\xca\x61\x5d\xa7\x49\x1b\xfb\x13\x33\xfb\x0a\xfb\x3c\x33\xa0\x4b\xb8\x56\x1f\x5d\xb2\xbd\x72\xc1\x1b\xca" +"\xb8\xa7\xcd\xb7\x1f\x70\x07\xfb\x20\x64\x57\x23\x44\x66\xa7\xc7\x83\x1e\x36\x06\x2a\x93\xd8\x4e\xf7\x06\x1b\xd8\xcb\xa4\xb5\xad" +"\x1f\xb3\xbc\x9a\xcc\xf7\x0f\x1a\xf8\x4a\x07\xfb\x73\x4d\x15\xe3\xbd\x41\xfb\x19\xfb\x13\x58\x41\x34\x35\x59\xd6\xf7\x15\xf7\x14" +"\xbd\xd7\xe1\x1f\x0e\xf7\x4e\xf7\xce\x15\xf7\x84\x06\xde\xb0\x63\x31\x1f\x8a\x4a\x05\x5e\x93\x5f\x98\x6d\x1e\xf7\x05\xa2\x06\x68" +"\xa3\x84\xa5\x89\xec\x8a\xf7\x0c\x78\xaf\x3c\xad\x08\xdd\xb4\xac\xbc\xdf\x1a\xf7\x12\x3d\xd0\xfb\x24\x1e\xfb\xe4\xfd\x6d\xe8\x06" +"\xf8\x20\x04\xf7\x8f\xf7\x75\x07\xbf\xa9\x83\x77\xa2\x1f\xa4\x76\x98\x6a\x60\x1a\x34\x5f\x64\x28\x1e\x0b\xcc\x20\x0a\xfb\xe7\x07" +"\x39\x96\x66\xab\x6b\x1e\x66\xaf\xc6\x77\xd2\x1b\xd4\xc6\xa0\xb1\xaf\x1f\xaa\xac\x94\xae\xdc\x1a\xf7\xe7\x37\xfb\xe7\x07\x50\x83" +"\x72\x70\x77\x1e\x7a\x75\x6a\x81\x69\x1b\x69\x6a\x95\x9c\x74\x1f\x71\x9e\x82\xa5\xc6\x1a\xf7\xe7\x07\x0b\xf8\xa0\x58\x0a\x0b\x15" +"\x72\x83\x80\x73\x0a\x98\x88\x81\xa4\x1f\x75\xc5\x93\x89\x9e\x1b\xbc\xa9\xae\xd0\x95\x1f\x0e\xd0\x7e\x1d\x0b\xaf\x1d\x93\x07\xc1" +"\xb1\xbe\xd1\x1f\xf2\x07\x0e\x15\x76\x0a\xc8\x16\x76\x0a\x0e\xf9\x5f\x22\x1d\xfa\x3f\x21\x1d\x15\xeb\xf7\x2a\x05\x4a\x06\x3c\x2b" +"\x3b\x54\x1d\x15\xfb\x04\x06\xf7\x28\xfb\x28\x05\xc8\x06\x0e\xf7\xf6\xf9\x1b\x15\xbf\x1d\xfd\x1b\xe8\x06\x0b\xbf\xb9\xe4\x92\x1f" +"\x0b\xa6\x1d\xe7\xfb\x2b\x15\x2f\x24\xe7\x06\xfb\x42\xf2\x15\x2f\x24\xe7\x06\x0e\xf8\xbc\x20\x1d\xfc\x94\x07\x29\x44\x4f\xfb\x08" +"\xfb\x08\x44\xc7\xed\x1e\x5a\x1d\xfb\x26\xf7\x02\x2d\xf7\x3e\xf7\x3e\xf7\x02\xe9\xf7\x26\x1e\xf8\x94\x07\x0b\x66\x49\x80\x1f\xc4" +"\x06\xa2\x92\x97\x98\x99\xa7\x1d\xbd\xa9\xae\xd0\x95\x1f\x0e\xd8\x16\xe9\xde\x06\xf8\x0d\xb1\x1d\xfc\x0d\xfc\x40\x05\xf8\x92\x2d" +"\x07\x0b\x1b\xa8\x9c\x7d\x74\x71\x74\x78\x6c\x71\x0b\x08\x4f\x6d\x4d\x69\x3d\x1b\xfb\x25\x2f\xf7\x08\x0b\xf7\x6a\xf7\xdf\x24\x1d" +"\xfb\x2a\x05\xc7\x06\xf7\x29\xf7\x2a\x05\x0b\x06\xa6\xf7\x1a\x05\xf7\x03\x07\x0b\x06\xf7\x75\xfb\xed\x05\x0b\x07\xf1\x49\xd3\x2e" +"\x49\x0b\xdf\xf8\x56\xf7\x7d\xd5\x0b\xf9\x1b\x2d\x06\x0e\xf7\xa5\x06\x55\xb7\x0b\xf7\xe0\x15\xfb\xe0\x0b\xfb\x6e\x15\xdf\x0b\x97" +"\x85\x05\x90\x0b\xf9\x83\xf7\x33\x15\x46\x73\x89\x1d\xe0\x69\x3b\xc0\x2a\x1b\x43\x4a\x6d\x57\x67\x1f\xc2\x6c\x50\xa6\x36\x1b\x40" +"\x4d\x75\x64\x68\x1f\x73\x9b\x0a\x92\xb1\xa8\xd8\x1b\xd8\xb4\x70\x58\x1f\x75\x07\x8a\x62\x7b\x80\x45\x84\x37\x84\x58\x81\x6a\x7d" +"\x08\x4e\x71\x6c\x5d\x47\x1a\x2d\xcd\x4e\xf1\xd9\xca\xab\xd9\xd6\x1e\x92\x7f\x8f\x84\x90\x83\x08\x57\xae\xcd\x6c\xd8\x1b\xf7\x0a" +"\xde\xcf\xf7\x06\xa1\x1f\xfc\x5a\x89\x15\x78\x78\x70\x6d\x74\x1e\x72\x6a\x66\x7e\x62\x1b\x4d\x65\xab\xbf\xc2\xaf\xa6\xe5\x98\x1f" +"\xe4\x98\x9c\x8f\xa7\x97\x08\xdb\xb7\x5c\x1d\x4a\x2c\x1f\x0b\xf9\x79\x69\x1d\x0b\xa9\x9e\x15\xb2\x67\xd8\xdf\x05\x4e\xcd\xd9\x6e" +"\xec\x1b\xf7\x66\xf7\x22\xf7\x2d\xf7\x78\xf2\x6d\xe8\x55\xcf\x1f\xe4\xec\x63\xaf\x34\x2c\x05\xc1\x4d\x3e\xa6\x30\x1b\xfb\x66\xfb" +"\x22\xfb\x2d\xfb\x78\x2a\xa4\x36\xbe\x45\x1f\xca\xcf\x15\x6c\xc0\x7c\xc8\xd1\x1a\xf7\x47\xf3\xf7\x0c\xf7\x2f\xcc\xc5\x76\x60\xbb" +"\x1e\xae\x62\x15\xae\x55\x9d\x48\x40\x1a\xfb\x47\x23\xfb\x0c\xfb\x2f\x44\x4e\xa4\xbc\x5a\x1e\x0b\xda\x74\x1d\xe8\xfb\xce\x15\xf7" +"\x7c\xf7\x48\x07\xbf\xa8\x84\x78\xa4\x1f\xa5\x77\x99\x6d\x63\x1a\x63\x7d\x6d\xbb\x1d\xfb\x48\xfb\xe1\x15\xf7\x8f\xf7\x77\x07\xdd" +"\xbc\x5c\xc1\x1d\xf8\xa5\xf8\x93\x15\x6b\xa7\x51\x4a\x05\xb8\x5e\x57\x9f\x46\x1b\xfb\x29\x33\x23\xfb\x45\x3d\x9a\x50\xac\x5a\x1f" +"\x49\x41\xab\x6f\xc8\xd0\x05\x62\xb3\xc2\x76\xcf\x1b\xf7\x28\xe3\xf4\xf7\x44\xd7\x7d\xc3\x6d\xbd\x1f\x4e\x46\x15\x97\x6b\x91\x66" +"\x5f\x1a\xfb\x13\x52\x3e\x2e\x61\x68\x9b\xab\x6e\x1e\x74\xb2\x15\x7d\xad\x84\xaf\xba\x1a\xa1\x0a\xb7\xb3\x78\x6a\xa5\x1e\x0b\xfc" +"\x79\x66\x1d\x0b\xf8\x70\x67\x1d\x0b\x15\x34\xdd\x06\xae\x9e\x9d\xb2\x92\x8e\x8b\x8a\x9e\x1e\x46\x1d\xde\xf8\x5c\xe2\x07\x0b\xe4" +"\xf7\xe7\x15\xfb\xe7\xf7\xae\x07\xf7\x4c\xf7\x04\xf7\x1e\xf7\x77\xf7\x76\xfb\x04\xf7\x1e\xfb\x4c\x1f\xfb\xae\xfb\xd7\x46\x48\x06" +"\xf7\x36\x16\xf7\x3f\xce\xfb\x3f\xf7\x85\xf7\x41\x06\xd1\xc4\x72\x5b\xb0\x1f\xb1\x5a\x9c\x4a\x2c\x1a\xfb\x4e\x3f\x2a\xfb\x23\x1e" +"\xfb\x41\x06\x0e\xf8\x83\x20\x1d\x38\xfb\xa3\x06\xc0\x68\x53\xa7\x45\x1b\xfb\x1c\x32\xfb\x01\xfb\x3b\xfb\x45\xe1\xfb\x01\xf7\x22" +"\xd3\xbd\xa6\xcc\xb8\x1f\x46\xd5\x07\xfb\x7a\xf8\x61\x15\xe5\xc4\x3c\xfb\x12\xfb\x0d\x8e\x0a\xe6\x1f\x0b\x15\xfb\x79\x06\x97\xb1" +"\x9d\x9e\xb6\xa2\xca\xab\x18\xca\xab\xac\xb7\xc0\x1a\xd5\x4f\xbf\x35\x28\x5a\x5a\x24\x88\x1e\xc9\x06\x8d\xaa\x8e\x9b\x93\x98\x08" +"\xa3\x99\xa7\x9a\xab\x1b\xbc\xaf\x6b\x60\x6c\x77\x70\x64\x76\x1f\x51\x6c\x2b\x58\x0b\x1e\xe1\x69\x3b\x5d\x1d\xfb\x41\xfb\x41\xe5" +"\x22\xf7\x28\xf7\x0c\xde\xcf\xf7\x06\xa0\x1f\x0b\x98\x1d\x6d\x42\x0a\xf8\x68\xf7\x6a\x15\xfb\x6a\xf8\x76\xdd\xfc\x19\xf7\x8e\xf7" +"\xf4\xdd\xfb\xf4\xf7\x7d\xf8\x07\xdd\xfd\x02\x07\xfb\xbf\xfd\x6d\x05\xf2\x06\xe0\xf7\x6a\x05\xf7\xa1\xdd\x15\xfb\x82\x06\xf7\x1e" +"\xf7\xf3\x05\xef\x06\x0b\xd1\x98\x0a\xf7\xb5\x07\xca\x98\xb2\xa9\xab\x1e\xa7\xa6\xae\x9a\xb0\x1b\xcc\xb5\x63\x4c\x1f\xfc\xd9\xdf" +"\xf8\xfa\x7d\x0a\x0b\xf7\xe1\x63\x0a\x0b\xf8\x0a\x15\xf7\x8a\xf7\xf7\x05\xfb\x03\x06\xfb\x50\xfb\xb2\xfb\x4f\xf7\xb2\x05\xfb\x05" +"\x06\xf7\x86\xfb\xf7\xfb\x96\xfc\x0a\x05\xf7\x05\x06\xf7\x5c\xf7\xc4\xf7\x5b\xfb\xc4\x05\x0b\xf7\xd3\x07\xf7\x23\xdd\xd8\xf7\x19" +"\xd3\x73\xc2\x5c\xb0\x1f\xac\x63\x5d\x98\x41\x1b\xfb\x6f\x0b\x20\x1d\xfc\x95\x07\x51\x85\x6a\x7a\x72\x1e\x6f\x79\x69\x7a\x66\x1b" +"\x45\x64\xba\xe0\x1f\xba\x2c\x4b\x07\xfb\x0a\xd9\x40\xf7\x11\xf7\x13\xda\xda\xf7\x12\x1e\xf8\xb7\x07\x0b\x66\x0a\x0e\x9e\x0a\x8d" +"\xcf\x5c\x1d\x49\x2d\x1f\x0b\xf7\x40\xf7\x93\x15\xf7\x0b\xf7\x0b\xf7\x95\xfc\x0a\x05\xf7\x02\x06\xfb\xc0\xf8\x44\xf7\xbd\xf7\xbd" +"\x05\xfb\x0c\x06\xfb\xff\xfc\x05\x05\xf8\x05\x2e\xfd\x6d\xe8\x07\x0b\xf7\xa1\x15\xf7\x46\xf7\x93\x05\x2b\x06\xfb\x14\xfb\x52\xfb" +"\x10\xf7\x52\x05\x26\x06\xf7\x48\xfb\x93\xfb\x48\xfb\xa1\x05\xe5\x06\xf7\x1b\xf7\x5d\xf7\x14\xfb\x5d\x05\x0b\xf7\x66\x06\xe7\x59" +"\x1d\x2f\x1f\xfb\x66\x06\x0b\xf7\x6f\x15\xd6\xfb\x6f\x05\xf3\x06\x82\x1d\x0b\x74\x0a\xf7\x61\x04\x38\x22\xde\x06\x0e\xf7\x21\xf9" +"\x6d\x15\x38\xfd\x6d\xde\xf7\x60\x06\xdc\xdb\xf7\x45\xfb\xb0\x05\xf2\x06\xfb\x6a\xf7\xeb\xf7\x4a\xf7\x49\x05\x20\x06\xfb\x72\xfb" +"\x72\x05\x0b\xf9\x6e\x15\xfb\x5b\xfb\x3a\xfb\x38\xfb\x57\xfb\x63\xf7\x35\xfb\x38\xf7\x5d\xf7\x61\xf7\x37\xf7\x36\xf7\x5f\xf7\x5e" +"\xfb\x37\xf7\x37\xfb\x5e\x1f\x0b\x15\x8c\x2f\x0a\xe7\xbf\xb9\xe4\x93\x1f\x50\x8a\x0a\x0e\x97\x1d\x51\x06\x61\x86\xad\x1d\x1f\x82" +"\x8f\x76\x63\x05\x6f\xc9\xa3\x95\x0a\xaf\xc4\xb6\x6e\xa3\x0b\xb0\x16\xdf\xf7\x8d\xf2\x06\xf7\x28\x50\x1d\x21\x56\x1d\x37\x06\x0b" +"\x75\x0a\x6d\xa1\xb7\x0b\xb8\x1d\xdf\x06\x96\x1d\x0b\x53\x1d\x61\x84\x8d\x76\x1b\x5f\x6c\x66\x49\x80\x1f\xc5\x06\xa2\x91\x97\x98" +"\x9a\x1b\x96\x0b\x15\xfc\xec\x07\x57\x7b\x7a\x57\x85\x88\x8b\x8c\x80\x1e\x44\x07\x89\x95\x90\x8a\x98\x1b\xe9\xbc\xb0\xd3\x1f\xf9" +"\x0d\x07\x0b\x15\x8c\x2f\x0a\xe8\x3f\x0a\x50\x06\x61\x86\x6b\x73\x55\x1b\x52\x0b\x2b\x47\x0a\x0b\x07\xf7\x7a\x4c\x8e\x1d\x07\x93" +"\x79\x7a\x8e\x79\x1b\x4a\x52\x55\x4e\x65\xa6\x74\xb7\xba\xb9\xa3\xb3\xa7\x1f\xa0\xa8\x93\xa9\xbc\x1a\x0b\x97\x92\x8d\x97\x44\x0a" +"\x0b\x5d\x98\x41\x1b\xfb\x6f\x39\x15\x68\x0a\x0e\x20\x1d\x38\xfb\xe6\x06\xa0\xfb\x73\x05\xb3\xa9\x1d\x0b\x15\x23\xc7\x79\x07\x46" +"\x7e\x77\x5c\x89\x1e\x65\x07\xcd\x89\xb2\xbb\xe0\x1a\xf7\x0c\x07\x0e\x07\xe2\x4a\xc3\x26\x3d\x59\x6d\x42\x5d\x1e\xe3\x07\x0b\xf7" +"\x77\x82\x0a\x0b\x15\xfb\x2e\xf7\x0d\x05\x38\x07\xf7\x00\x38\xfb\x00\x38\x05\x38\x07\xf7\x2e\xf7\x0e\x05\x0b\xfb\xd8\x06\x89\x4b" +"\x69\x57\x5b\x81\x08\x41\x07\xf4\x90\xcc\xe0\x89\xf7\x13\x08\xf7\x7d\x0b\xfb\xed\x05\xf3\x06\xfb\x90\xf8\x14\xf7\x61\xf7\xed\x05" +"\x23\x06\xfb\x47\xfb\xc2\x05\x0b\x15\xf7\x2c\xfb\x0d\x05\xde\x07\x21\xde\xf5\xde\x05\xde\x07\xfb\x2c\xfb\x0e\x05\x0b\x15\xa9\xa4" +"\x72\x6d\x6d\x72\x72\x6d\x6d\x72\xa4\xaa\xa8\xa5\xa4\xa8\x1f\x0b\x7d\x60\x61\x44\x1b\x2f\x54\xd6\xf7\x10\x0b\x15\xf7\x3a\xf7\x38" +"\x07\xc0\xaa\x6d\x56\x56\x6c\x6d\x56\x1f\x0e\x4d\x0a\xbc\x73\xcf\x1b\xf7\x1c\xe3\xf7\x01\xf7\x3b\x0b\x2d\xfb\xcf\xfc\x0a\xf7\xcf" +"\x2e\xfd\x6d\xe9\xf7\xe0\x07\x0e\xf8\xa0\x8b\x0a\x0b\xfc\x2c\xfb\x20\xf8\x2c\x05\x32\x06\xf7\x4f\xfc\xa0\x05\x0b\x06\x61\x86\x6a" +"\x73\x56\x1b\x52\x6c\xa1\xb7\x86\x1f\x0b\x9a\x0a\x37\x22\xdf\x06\x0b\xfa\x7d\xf7\xcc\x15\xfe\x86\x43\xfa\x86\x06\x0e\x06\xfb\x5a" +"\xf7\xc2\xf7\x61\xf7\xed\x05\x23\x06\x0b\x51\x3b\x33\x2f\x4e\xdc\xf7\x0e\xf7\x0e\xc8\xdc\x0b\x15\xfb\xa6\x45\xf7\xa6\x06\x0b\x06" +"\x65\xfb\x67\x05\xd7\x06\xb2\xf7\x67\x05\x0b\xf9\x35\x99\x0a\x0b\xf7\x7d\xf8\x20\xdd\xfc\x7d\xfd\x6d\xe8\x06\x0b\xe0\x49\xce\x37" +"\x1f\x4f\x04\xbe\xb3\x63\x58\x0b\x2d\xfd\x1b\xfc\x0a\x4c\x0a\x85\xb2\x1b\xd7\xba\x0b\x16\xf7\x5d\xf8\xa0\x05\x2d\x06\xfb\x28\x0b" +"\x06\xf8\x1b\x04\xf7\x94\x0b\x20\x0a\xfc\xa0\xdf\x0b\x15\x41\x06\x55\xfb\x94\x05\xc4\x06\x0b\x15\x38\xfc\xa0\xde\x06\xf9\x6d\x04" +"\x0b\x70\x81\x6d\x89\x57\x08\xdf\x06\xcb\x0b\x15\xfc\xec\x59\xf8\xec\x06\x0e\xfb\x79\xf7\x21\xfb\x2d\xf7\x67\x0b\x1f\x77\xa9\x84" +"\xa9\x8a\xbf\x08\x0b\xdf\xf7\xdd\x07\xd7\xc2\xc8\xcf\x0b\xfc\x4f\x05\xfb\xb2\x0b\xf7\x13\xc4\xd8\xe8\x0b\xb6\x6e\xa3\x58\x0b", 33151 +}; diff --git a/dviware/dvisvgm/src/fonts/StandardSymbolsPS.cff.cpp b/dviware/dvisvgm/src/fonts/StandardSymbolsPS.cff.cpp new file mode 100644 index 0000000000..ab9e256274 --- /dev/null +++ b/dviware/dvisvgm/src/fonts/StandardSymbolsPS.cff.cpp @@ -0,0 +1,511 @@ +#include "Base14Fonts.hpp" + +extern const MemoryFontData StandardSymbolsPS_cff = { +"\x01\x00\x04\x02\x00\x01\x01\x01\x12\x53\x74\x61\x6e\x64\x61\x72\x64\x53\x79\x6d\x62\x6f\x6c\x73\x50\x53\x00\x01\x01\x01\x3b\xf8" +"\xad\x00\xf8\xae\x01\xf8\xaf\x0c\x00\xf8\xb0\x02\xf8\xb0\x03\xf8\x18\x04\xfb\x79\x0c\x03\xb9\x0c\x04\xfb\x48\xfb\xb9\xfa\xd6\xfa" +"\x86\x05\x1d\x00\x4c\x9e\x9b\x0d\x1c\x06\x86\x0f\x1c\x06\xf9\x10\x1c\x07\x03\x11\xbb\x1c\x3b\xbc\x12\x00\x96\x02\x00\x01\x00\x0a" +"\x00\x15\x00\x1d\x00\x29\x00\x32\x00\x37\x00\x3b\x00\x3e\x00\x43\x00\x4a\x00\x4d\x00\x52\x00\x55\x00\x59\x00\x5f\x00\x64\x00\x6a" +"\x00\x6c\x00\x6e\x00\x75\x00\x77\x00\x7c\x00\x7f\x00\x84\x00\x87\x00\x8e\x00\x94\x00\x99\x00\x9b\x00\x9e\x00\xa2\x00\xab\x00\xb8" +"\x00\xc1\x00\xc6\x00\xca\x00\xcd\x00\xd2\x00\xd9\x00\xdc\x00\xe1\x00\xe4\x00\xe8\x00\xec\x00\xf1\x00\xf7\x00\xf9\x01\x00\x01\x02" +"\x01\x07\x01\x0a\x01\x0f\x01\x12\x01\x19\x01\x1f\x01\x24\x01\x26\x01\x29\x01\x2d\x01\x34\x01\x39\x01\x3d\x01\x45\x01\x4b\x01\x54" +"\x01\x5c\x01\x60\x01\x67\x01\x6c\x01\x71\x01\x7a\x01\x83\x01\x8a\x01\x94\x01\x9d\x01\xa3\x01\xaf\x01\xbb\x01\xc6\x01\xce\x01\xd9" +"\x01\xe4\x01\xef\x01\xfb\x02\x09\x02\x0e\x02\x16\x02\x1e\x02\x29\x02\x37\x02\x41\x02\x49\x02\x55\x02\x5a\x02\x68\x02\x76\x02\x7f" +"\x02\x8b\x02\x97\x02\x9e\x02\xa8\x02\xad\x02\xb5\x02\xc2\x02\xd0\x02\xde\x02\xe5\x02\xec\x02\xf3\x02\xfd\x03\x06\x03\x12\x03\x1e" +"\x03\x28\x03\x35\x03\x41\x03\x48\x03\x51\x03\x5d\x03\x6a\x03\x77\x03\x80\x03\x8b\x03\x96\x03\xa1\x03\xae\x03\xbb\x03\xc8\x03\xd3" +"\x03\xdf\x03\xea\x03\xf1\x03\xfb\x04\x03\x04\x0d\x04\x17\x04\x21\x04\x2d\x04\x39\x04\x45\x04\x53\x04\x61\x04\x6f\x04\x7b\x04\x88" +"\x04\x94\x04\x98\x04\xbb\x04\xe8\x04\xfb\x75\x6e\x69\x76\x65\x72\x73\x61\x6c\x65\x78\x69\x73\x74\x65\x6e\x74\x69\x61\x6c\x73\x75" +"\x63\x68\x74\x68\x61\x74\x61\x73\x74\x65\x72\x69\x73\x6b\x6d\x61\x74\x68\x63\x6f\x6e\x67\x72\x75\x65\x6e\x74\x41\x6c\x70\x68\x61" +"\x42\x65\x74\x61\x43\x68\x69\x44\x65\x6c\x74\x61\x45\x70\x73\x69\x6c\x6f\x6e\x50\x68\x69\x47\x61\x6d\x6d\x61\x45\x74\x61\x49\x6f" +"\x74\x61\x74\x68\x65\x74\x61\x31\x4b\x61\x70\x70\x61\x4c\x61\x6d\x62\x64\x61\x4d\x75\x4e\x75\x4f\x6d\x69\x63\x72\x6f\x6e\x50\x69" +"\x54\x68\x65\x74\x61\x52\x68\x6f\x53\x69\x67\x6d\x61\x54\x61\x75\x55\x70\x73\x69\x6c\x6f\x6e\x73\x69\x67\x6d\x61\x31\x4f\x6d\x65" +"\x67\x61\x58\x69\x50\x73\x69\x5a\x65\x74\x61\x74\x68\x65\x72\x65\x66\x6f\x72\x65\x70\x65\x72\x70\x65\x6e\x64\x69\x63\x75\x6c\x61" +"\x72\x72\x61\x64\x69\x63\x61\x6c\x65\x78\x61\x6c\x70\x68\x61\x62\x65\x74\x61\x63\x68\x69\x64\x65\x6c\x74\x61\x65\x70\x73\x69\x6c" +"\x6f\x6e\x70\x68\x69\x67\x61\x6d\x6d\x61\x65\x74\x61\x69\x6f\x74\x61\x70\x68\x69\x31\x6b\x61\x70\x70\x61\x6c\x61\x6d\x62\x64\x61" +"\x6e\x75\x6f\x6d\x69\x63\x72\x6f\x6e\x70\x69\x74\x68\x65\x74\x61\x72\x68\x6f\x73\x69\x67\x6d\x61\x74\x61\x75\x75\x70\x73\x69\x6c" +"\x6f\x6e\x6f\x6d\x65\x67\x61\x31\x6f\x6d\x65\x67\x61\x78\x69\x70\x73\x69\x7a\x65\x74\x61\x73\x69\x6d\x69\x6c\x61\x72\x61\x70\x70" +"\x6c\x65\x45\x75\x72\x6f\x55\x70\x73\x69\x6c\x6f\x6e\x31\x6d\x69\x6e\x75\x74\x65\x6c\x65\x73\x73\x65\x71\x75\x61\x6c\x69\x6e\x66" +"\x69\x6e\x69\x74\x79\x63\x6c\x75\x62\x64\x69\x61\x6d\x6f\x6e\x64\x68\x65\x61\x72\x74\x73\x70\x61\x64\x65\x61\x72\x72\x6f\x77\x62" +"\x6f\x74\x68\x61\x72\x72\x6f\x77\x6c\x65\x66\x74\x61\x72\x72\x6f\x77\x75\x70\x61\x72\x72\x6f\x77\x72\x69\x67\x68\x74\x61\x72\x72" +"\x6f\x77\x64\x6f\x77\x6e\x73\x65\x63\x6f\x6e\x64\x67\x72\x65\x61\x74\x65\x72\x65\x71\x75\x61\x6c\x70\x72\x6f\x70\x6f\x72\x74\x69" +"\x6f\x6e\x61\x6c\x70\x61\x72\x74\x69\x61\x6c\x64\x69\x66\x66\x6e\x6f\x74\x65\x71\x75\x61\x6c\x65\x71\x75\x69\x76\x61\x6c\x65\x6e" +"\x63\x65\x61\x70\x70\x72\x6f\x78\x65\x71\x75\x61\x6c\x61\x72\x72\x6f\x77\x76\x65\x72\x74\x65\x78\x61\x72\x72\x6f\x77\x68\x6f\x72" +"\x69\x7a\x65\x78\x63\x61\x72\x72\x69\x61\x67\x65\x72\x65\x74\x75\x72\x6e\x61\x6c\x65\x70\x68\x49\x66\x72\x61\x6b\x74\x75\x72\x52" +"\x66\x72\x61\x6b\x74\x75\x72\x77\x65\x69\x65\x72\x73\x74\x72\x61\x73\x73\x63\x69\x72\x63\x6c\x65\x6d\x75\x6c\x74\x69\x70\x6c\x79" +"\x63\x69\x72\x63\x6c\x65\x70\x6c\x75\x73\x65\x6d\x70\x74\x79\x73\x65\x74\x69\x6e\x74\x65\x72\x73\x65\x63\x74\x69\x6f\x6e\x75\x6e" +"\x69\x6f\x6e\x70\x72\x6f\x70\x65\x72\x73\x75\x70\x65\x72\x73\x65\x74\x72\x65\x66\x6c\x65\x78\x73\x75\x70\x65\x72\x73\x65\x74\x6e" +"\x6f\x74\x73\x75\x62\x73\x65\x74\x70\x72\x6f\x70\x65\x72\x73\x75\x62\x73\x65\x74\x72\x65\x66\x6c\x65\x78\x73\x75\x62\x73\x65\x74" +"\x65\x6c\x65\x6d\x65\x6e\x74\x6e\x6f\x74\x65\x6c\x65\x6d\x65\x6e\x74\x61\x6e\x67\x6c\x65\x67\x72\x61\x64\x69\x65\x6e\x74\x72\x65" +"\x67\x69\x73\x74\x65\x72\x73\x65\x72\x69\x66\x63\x6f\x70\x79\x72\x69\x67\x68\x74\x73\x65\x72\x69\x66\x74\x72\x61\x64\x65\x6d\x61" +"\x72\x6b\x73\x65\x72\x69\x66\x70\x72\x6f\x64\x75\x63\x74\x72\x61\x64\x69\x63\x61\x6c\x64\x6f\x74\x6d\x61\x74\x68\x6c\x6f\x67\x69" +"\x63\x61\x6c\x61\x6e\x64\x6c\x6f\x67\x69\x63\x61\x6c\x6f\x72\x61\x72\x72\x6f\x77\x64\x62\x6c\x62\x6f\x74\x68\x61\x72\x72\x6f\x77" +"\x64\x62\x6c\x6c\x65\x66\x74\x61\x72\x72\x6f\x77\x64\x62\x6c\x75\x70\x61\x72\x72\x6f\x77\x64\x62\x6c\x72\x69\x67\x68\x74\x61\x72" +"\x72\x6f\x77\x64\x62\x6c\x64\x6f\x77\x6e\x6c\x6f\x7a\x65\x6e\x67\x65\x61\x6e\x67\x6c\x65\x6c\x65\x66\x74\x72\x65\x67\x69\x73\x74" +"\x65\x72\x73\x61\x6e\x73\x63\x6f\x70\x79\x72\x69\x67\x68\x74\x73\x61\x6e\x73\x74\x72\x61\x64\x65\x6d\x61\x72\x6b\x73\x61\x6e\x73" +"\x73\x75\x6d\x6d\x61\x74\x69\x6f\x6e\x70\x61\x72\x65\x6e\x6c\x65\x66\x74\x74\x70\x70\x61\x72\x65\x6e\x6c\x65\x66\x74\x65\x78\x70" +"\x61\x72\x65\x6e\x6c\x65\x66\x74\x62\x74\x62\x72\x61\x63\x6b\x65\x74\x6c\x65\x66\x74\x74\x70\x62\x72\x61\x63\x6b\x65\x74\x6c\x65" +"\x66\x74\x65\x78\x62\x72\x61\x63\x6b\x65\x74\x6c\x65\x66\x74\x62\x74\x62\x72\x61\x63\x65\x6c\x65\x66\x74\x74\x70\x62\x72\x61\x63" +"\x65\x6c\x65\x66\x74\x6d\x69\x64\x62\x72\x61\x63\x65\x6c\x65\x66\x74\x62\x74\x62\x72\x61\x63\x65\x65\x78\x61\x6e\x67\x6c\x65\x72" +"\x69\x67\x68\x74\x69\x6e\x74\x65\x67\x72\x61\x6c\x69\x6e\x74\x65\x67\x72\x61\x6c\x74\x70\x69\x6e\x74\x65\x67\x72\x61\x6c\x65\x78" +"\x69\x6e\x74\x65\x67\x72\x61\x6c\x62\x74\x70\x61\x72\x65\x6e\x72\x69\x67\x68\x74\x74\x70\x70\x61\x72\x65\x6e\x72\x69\x67\x68\x74" +"\x65\x78\x70\x61\x72\x65\x6e\x72\x69\x67\x68\x74\x62\x74\x62\x72\x61\x63\x6b\x65\x74\x72\x69\x67\x68\x74\x74\x70\x62\x72\x61\x63" +"\x6b\x65\x74\x72\x69\x67\x68\x74\x65\x78\x62\x72\x61\x63\x6b\x65\x74\x72\x69\x67\x68\x74\x62\x74\x62\x72\x61\x63\x65\x72\x69\x67" +"\x68\x74\x74\x70\x62\x72\x61\x63\x65\x72\x69\x67\x68\x74\x6d\x69\x64\x62\x72\x61\x63\x65\x72\x69\x67\x68\x74\x62\x74\x32\x2e\x30" +"\x30\x55\x52\x57\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x2c\x20\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x32\x30\x31\x35\x20\x62\x79" +"\x20\x55\x52\x57\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x55\x52\x57\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x2c\x20\x43\x6f\x70\x79" +"\x72\x69\x67\x68\x74\x20\x32\x30\x31\x35\x20\x62\x79\x20\x55\x52\x57\x53\x74\x61\x6e\x64\x61\x72\x64\x20\x53\x79\x6d\x62\x6f\x6c" +"\x73\x20\x50\x53\x00\x00\x01\x00\x01\x01\x01\x87\x00\x00\x04\x00\x01\x88\x00\x00\x06\x01\x01\x89\x00\x00\x09\x01\x01\x8a\x00\x00" +"\x0c\x01\x00\xa6\x00\x00\x0f\x11\x01\x8b\x1a\x00\x3c\x00\x01\xa6\x00\x00\x3e\x00\x01\xa7\x00\x00\x40\x00\x01\xa8\x0c\x00\x98\x00" +"\x01\xb5\x0c\x00\x5c\x02\x01\xc2\x05\x00\x63\x00\x01\xc8\x00\x00\x65\x00\x01\xc9\x08\x00\xa1\x00\x00\x9c\x00\x01\xd2\x01\x00\xa8" +"\x00\x01\xd4\x01\x00\x74\x00\x00\x9f\x00\x01\xd6\x02\x00\x79\x00\x01\xd9\x1a\x00\x97\x00\x01\xf4\x24\x01\x04\x20\x5e\x80\x00\xa0" +"\x4f\xf1\x0d\x00\xbf\x02\x00\x01\x00\x04\x00\x07\x00\x2f\x00\x58\x00\xb8\x00\xd1\x01\x86\x02\x3b\x02\x8f\x02\xd5\x03\x1a\x04\x08" +"\x04\x0e\x04\x15\x04\x1f\x04\x28\x04\x38\x04\x7a\x04\xb6\x05\x0d\x05\x72\x05\x93\x05\xe9\x06\x4a\x06\x6f\x06\xd7\x07\x39\x07\x4e" +"\x07\x65\x07\x82\x07\x97\x07\x9c\x07\xfc\x08\x2e\x08\x69\x08\xd0\x09\x51\x09\x6b\x09\xab\x0a\x39\x0a\x54\x0a\x71\x0a\x80\x0b\x29" +"\x0b\x97\x0b\xc4\x0b\xf3\x0c\x38\x0c\x3f\x0c\x65\x0c\x72\x0c\xcc\x0d\x09\x0d\x43\x0d\x8e\x0e\x06\x0e\x89\x0e\xd4\x0f\x67\x0f\xa0" +"\x0f\xc0\x0f\xd5\x0f\xf5\x10\x07\x10\x13\x10\x20\x10\x9d\x11\x1b\x11\x92\x12\x09\x12\x93\x13\x0b\x13\x74\x13\xcd\x14\x13\x14\x77" +"\x14\xe9\x15\x59\x15\xc6\x16\x1b\x16\x5c\x16\xd1\x17\x4c\x17\xb2\x17\xfd\x18\x52\x18\xc8\x19\x47\x19\xb2\x1a\x87\x1a\xfe\x1b\x89" +"\x1b\xe5\x1b\xf1\x1c\x4c\x1c\x7a\x1d\x1e\x1d\x9c\x1e\x03\x1e\x09\x1e\x26\x1e\x35\x1e\x92\x1f\x1a\x1f\x9c\x1f\xaf\x1f\xf8\x20\x50" +"\x20\xa8\x20\xdc\x21\x11\x21\x45\x21\x7b\x21\xa8\x21\xb6\x21\xc1\x21\xc9\x21\xf4\x22\x54\x22\xc6\x22\xdf\x23\x14\x23\x4a\x23\x67" +"\x23\x83\x23\x96\x23\xa2\x23\xaf\x23\xc9\x24\x75\x25\x2c\x26\x2e\x26\xed\x27\x64\x27\xc7\x28\x2f\x28\x6c\x28\xab\x29\x08\x29\x6f" +"\x29\xb9\x29\xc0\x29\xce\x2a\x04\x2a\x70\x2a\x84\x2a\xa1\x2b\x0b\x2b\x60\x2b\xf3\x2c\x32\x2c\x4d\x2c\x66\x2c\x75\x2c\x8d\x2c\xa4" +"\x2d\x0d\x2d\x55\x2d\xaa\x2d\xf7\x2e\x47\x2e\x71\x2e\x8c\x2f\x18\x2f\x8d\x2f\xc6\x30\x03\x30\x31\x30\x3c\x30\x68\x30\x76\x30\x82" +"\x30\x92\x30\xb2\x30\xe9\x31\x08\x31\x16\x31\x2e\x31\x99\x31\xd8\x31\xe3\x32\x23\x32\x53\x32\x60\x32\x8f\x32\xa0\x32\xae\x32\xbf" +"\x32\xdd\x33\x16\x33\x37\xfc\x45\x0e\xfc\x45\x0e\xfb\xf2\xf7\x41\xf7\x4e\x15\xa2\x06\xaf\xf7\xf8\x05\x92\xcb\x8b\x8b\x99\x1a\xb4" +"\x76\xa4\x68\x67\x78\x72\x5d\x7b\x8b\x8b\x91\x53\x1e\xbe\xfc\x4f\x15\x22\x0a\x0e\xa9\xf9\x3d\x20\x0a\x56\x06\x39\xfb\x56\x05\xfc" +"\x0e\x06\x36\xf7\x56\x05\x57\x06\xf7\xc3\xfd\x35\x05\xc4\x06\xfb\x5c\xf8\x42\x15\xf7\xe2\x06\xfb\x36\xfc\x01\x05\x0e\xfb\x4b\xf8" +"\x5e\xf7\x95\x15\x2d\x06\x9e\xf7\x16\x05\xed\xbf\x31\x06\xa7\xf7\x54\x05\x54\x06\x6f\xfb\x54\x05\xfb\x12\x06\xa7\xf7\x54\x05\x56" +"\x06\x6e\xfb\x54\x05\xfb\x03\x55\xf0\x06\x7a\xfb\x14\x05\xfb\x01\x57\xf0\x06\x6c\xfb\x61\x05\xc3\x06\xa8\xf7\x61\x05\xf7\x12\x06" +"\x6d\xfb\x61\x05\xc2\x06\xa9\xf7\x61\x05\xf1\x06\xfb\x16\xf7\x4a\x15\x78\xfb\x16\x05\xfb\x11\x06\x9d\xf7\x16\x05\x0e\xf8\x72\x20" +"\x0a\xfc\x59\x58\xf8\x22\xfb\x89\xfb\xf5\x5a\xf7\xf5\xfb\xab\xfc\x22\x5a\xf8\x59\x06\x0e\xf7\x2a\xf7\x7b\x16\xf8\x37\xf9\x35\x05" +"\x56\x06\x60\x72\x55\x70\x4d\x1b\x6d\x76\x92\xa3\x69\x1f\xa7\x61\x7b\x92\x6c\x1b\xfb\x01\xfb\x02\xfb\x0d\xfb\x0d\x3e\xbc\x58\xd6" +"\xf7\x01\xeb\xf7\x09\xf7\x19\x99\x8a\x93\x87\x9b\x1f\x84\x9f\xa4\x87\xa5\x1b\xae\xa7\x93\x9e\xb2\x1f\xfc\x13\xfc\xef\x05\xf7\x4a" +"\xf8\xe7\x15\x8f\x82\x8c\x84\x75\x1a\x4b\x79\x57\x66\x5e\x1e\x65\x6b\x63\x74\x68\x1b\x65\x73\xa1\xb0\xea\xe2\xf7\x26\xc4\x90\x8e" +"\x8b\x8a\x90\x1f\x9d\x78\x92\x86\xb0\x7c\x08\xf7\xbf\xfb\x7f\x15\xfb\x07\xfb\x03\xfb\x0d\xfb\x11\x44\xbf\x59\xd4\xbf\xb6\xa0\xb7" +"\xb1\x1f\xbd\xc4\xaa\xd6\xcb\x1a\xca\x5e\xb6\x47\x1e\x97\x67\x15\xb3\xa8\x6b\x60\x52\x6f\x47\x61\x5d\x1f\x6d\x70\x61\x78\x67\x1b" +"\x69\x76\xa2\xb1\xf3\xe4\xf7\x16\xd3\x1f\x0e\xea\xf8\x84\xf8\x3e\x15\x77\x07\xb9\x88\x9d\x7e\x6c\x1a\x61\x63\x3c\x58\x50\x1e\x6a" +"\xad\x4e\xeb\x68\xd4\xaf\x9c\xa1\x97\x9e\x99\x08\xbd\xaf\xa6\xb9\xbb\x1a\xd0\x53\xbe\x3f\x36\x42\x44\x38\x5f\x98\x58\xa3\x54\x1e" +"\x47\x66\x7d\x83\x79\x7f\x08\x47\x5a\x6b\x55\x4a\x1a\x2b\xd2\x4c\xf6\xdc\xd1\xa9\xc8\xc7\x1e\x4f\xc0\xc6\x6c\xc8\x1b\xc6\xb6\xac" +"\xdb\xb8\x1f\x7b\x98\x05\x64\x6e\x72\x7b\x6b\x1b\x56\x5b\xa8\xca\x55\x1f\xa4\xa9\xa1\xaa\xa1\xb0\x92\x96\x9c\xa9\xa7\xbb\x95\x9b" +"\x93\x96\x93\x94\x9c\x9d\xa2\x95\xad\x90\x08\x9f\x07\xfc\x1a\x7e\x15\x74\xb9\x7b\xc3\xb0\x1a\xc2\xa8\xae\xb8\xba\xac\x67\x59\x4e" +"\x67\x5e\x3c\x66\x1e\x48\x41\x15\xbc\x29\xb9\x42\xbf\x4b\x08\x61\x63\x5d\x75\x5b\x1b\x42\x50\xcb\xda\xcb\xb6\xc4\xd7\xae\x1f\x0e" +"\xfb\x88\xbb\x91\x15\x7d\xad\xa4\x86\xb0\x1b\xd2\xc8\xa3\xbb\xbf\x1f\xc1\xbe\xab\xcf\xce\x1a\xf7\x1c\xfb\x11\xf7\x0e\xfb\x20\x75" +"\x7a\x88\x83\x6c\x1e\x66\x07\x8c\x9d\x93\x8c\x96\x1b\xc7\xc5\x76\x68\xae\x1f\xaf\x67\x9c\x66\x93\x50\x08\xfb\x6e\x5b\xf7\x6e\x06" +"\x83\x53\x7c\x6a\x6b\x67\x08\x65\x68\x50\x73\x4f\x1b\x73\x77\x8d\x92\x6e\x1f\x0e\xfb\xf2\xf7\xc0\xfb\x2f\x15\x69\xa2\x7b\x9a\x77" +"\xa5\x08\x55\xd3\x6c\xf7\x10\xf7\x29\x1a\xf7\x1c\xa5\xf7\x0a\xb9\xd3\x1e\xa1\xae\x9e\x9e\xb5\xa8\x7e\x9c\x18\x5d\x73\x77\x7d\x71" +"\x73\x08\x31\x38\x57\xfb\x1a\xfb\x27\x1a\xfb\x1d\xb8\xfb\x12\xdb\x37\x1e\xaa\x6a\xa3\x7a\xc1\x6e\x08\x0e\xfb\xf2\xb6\xfb\x40\x15" +"\xb9\xa4\x9f\x98\xa5\xa3\x08\xe5\xde\xbf\xf7\x1b\xf7\x26\x1a\xf7\x1d\x5e\xf7\x12\x3b\xe0\x1e\x6b\xab\x74\x9d\x55\xa7\x7e\x7a\x18" +"\xae\x73\x9a\x7d\x9f\x71\x08\xc1\x43\xaa\xfb\x10\xfb\x29\x1a\xfb\x1c\x71\xfb\x0a\x5d\x43\x1e\x74\x68\x77\x77\x63\x6f\x08\x0e\xfb" +"\x4b\xf7\x33\xf8\x31\x15\x86\x91\x87\x90\x87\x8f\x08\xa5\x74\x7f\x93\x7d\x1b\x7a\x7c\x77\x76\x73\x98\x81\xb6\x82\x1f\xce\x7c\xa5" +"\x80\x7c\x1a\x7d\x70\x7e\x5c\x80\x1e\x67\x83\x88\x8b\x83\x88\x08\x78\x83\x82\x80\x7a\x1a\x76\x9a\x77\x9c\x9b\x92\x90\xb7\xb2\x1e" +"\x90\x91\x05\xa8\xa5\xa0\x9a\x99\x1b\x92\x8f\x83\x7d\x7a\x87\x7a\x82\x6d\x1f\x7c\x5b\x8b\x8b\x7e\x1a\x76\x9a\x7c\xa2\xa2\x9a\x99" +"\xa1\x98\x8a\x8e\x7c\xb8\x1e\x81\xaa\x88\x9b\x9d\x1a\x99\x8f\x92\x92\x99\xa0\x7b\x6f\xa5\x1e\x90\x85\x99\x7c\x05\x71\xa2\x97\x83" +"\x99\x1b\x9c\x9a\x9f\xa1\x9a\x83\x96\x7a\x92\x1f\x83\x8f\x88\x8c\x64\x93\x08\x5c\x96\x71\x98\x99\x1a\x9a\xa4\x96\xce\x9a\x1e\xb5" +"\x94\x99\x96\xa1\x1a\xa1\x7c\x9f\x7a\x7d\x7e\x82\x72\x75\x1e\x84\x83\x86\x86\x89\x89\x86\x86\x18\x6f\x72\x75\x7b\x7e\x1b\x83\x87" +"\x92\x99\x9d\x8f\x9c\x94\xa9\x1f\x9a\xb8\x8c\x8e\x97\x1a\xa0\x7c\x9a\x74\x74\x7c\x7d\x75\x7f\x8b\x8b\x9a\x5b\x1e\x95\x6d\x8e\x7a" +"\x79\x1a\x7e\x87\x83\x84\x7d\x75\x9b\xa7\x72\x1e\x0e\xf7\xc2\xf8\xa9\x39\x0a\xfc\x45\xc3\xfb\x0c\x2a\x0a\x96\xf7\xba\x15\x54\xf8" +"\xa0\xc2\x07\x0e\xfc\x45\xf7\x12\xef\x15\x22\x0a\x0e\xfc\x29\xf7\x92\x20\x0a\x53\x06\xfb\x5a\xfd\x35\x05\xc3\x06\x0e\xfb\x4b\xf7" +"\x90\xf9\x42\x15\x34\x4c\x5e\x2f\x63\x1f\x70\x4e\x7f\x48\x36\x1a\xfb\x68\xe3\xfb\x1d\xf7\x1c\xf7\x1c\xe3\xf7\x1d\xf7\x68\xf7\x66" +"\x33\xf7\x20\xfb\x17\x1e\x89\x67\x15\xe1\xb2\x2a\xfb\x6a\xfb\x6d\x64\x2d\x33\x31\x64\xe9\xf7\x6e\xf7\x6e\xb2\xe7\xe7\x1f\x0e\xfb" +"\x4b\xf8\x1a\xa5\x15\x37\x91\x7e\x9a\x8d\xea\x08\xf8\xa7\x79\x07\x68\x75\x5e\x73\x3b\x64\x08\x6e\x07\x98\xaa\x9e\x91\x97\x1b\x97" +"\x96\x84\x81\x8f\x1f\x90\x7d\x8b\x8b\x8d\x4c\x08\xfb\xea\x07\x8c\x2d\x7e\x7b\x37\x85\x08\x71\xf7\xa5\x07\x0e\xfb\x4b\xa4\x16\xf8" +"\x20\x06\xc1\xf7\x1a\x05\x72\x06\x56\x6c\x78\x83\x35\x1b\xfb\x54\x06\xf7\x61\xf7\x5b\xd3\xf7\x05\xf7\x0a\x1a\xf5\x41\xd8\x25\x57" +"\x61\x77\x62\x69\x1e\x6f\x6a\x7f\x6c\x81\x4e\x08\x9c\x06\x96\xac\x93\x9a\x99\x9c\x08\xa8\xa3\xaf\x9c\xaf\x1b\xd1\xc8\x46\x3c\x2c" +"\x43\xfb\x12\xfb\x12\xfb\x13\x1f\x40\x3e\x88\x89\x83\x82\x7e\x7e\x19\x0e\xfb\x4b\xf7\x50\xf7\xfd\x15\x72\x94\x07\xc0\xad\x7d\x69" +"\xaa\x1f\xa7\x6a\x9a\x63\x5c\x1a\x3b\x5a\x54\x44\x63\x74\x93\xa9\x62\x1e\xa0\x6d\x7d\x92\x7b\x1b\x78\x7b\x7a\x77\x64\xd0\x67\xd9" +"\xf7\x1d\xf7\x04\xf3\xf7\x15\xd6\x69\xbe\x3e\xb3\x1f\xd0\xc0\xa6\xb8\xc7\x1a\xdc\x49\xc8\x35\x35\x57\x60\x29\x69\x1e\x9a\x82\x05" +"\xc8\xb0\xad\xa2\xc0\x1b\xca\xb8\x5c\x49\x67\x7d\x68\x70\x70\x1f\x6f\x70\x5f\x77\x6b\x1b\x0e\xfb\x4b\xf7\xb4\x16\xdd\xf7\x4b\xee" +"\xcb\x28\xf8\x45\x58\x06\xfb\xc3\xfc\x45\x05\x4b\xf7\xa4\x07\xf8\x09\x04\xfb\xc9\xfb\x6e\x07\x0e\xfb\x4b\xf8\x22\xf8\xe8\x15\xb8" +"\xea\x7c\x93\x7b\x77\x80\x84\x74\x8c\x19\xfb\x4e\x06\xfb\x07\xfb\x9a\xc7\x8a\xb1\x81\xb8\x73\x19\xd8\x62\xb8\x47\x41\x1a\x39\x50" +"\x48\x43\x6d\x6b\x95\x9f\x6e\x1e\xa4\x66\x87\x8d\x7b\x1b\x78\x7c\x7b\x77\x61\xc8\x67\xd3\xf7\x19\xf7\x05\xf7\x06\xf7\x18\xd5\x6a" +"\xd0\x4f\xbc\x1f\x64\xab\x65\x9c\x3a\xa0\xb7\xf0\x18\x0e\xfb\x4b\xf8\x45\xf9\x41\x15\x31\x5f\x81\x67\x4f\x1f\xfb\x0f\x43\x3b\xfb" +"\x29\xfb\x2d\x1a\xfb\x33\xe7\xfb\x0b\xf7\x0f\xf7\x0b\xec\xf2\xf7\x12\xf7\x0b\x39\xdf\xfb\x07\x5f\x60\x7e\x6e\x5f\x1e\xb2\xf7\x3a" +"\xf7\x07\xf7\x06\xf7\x20\x95\x08\xfb\xc3\xfb\xe0\x15\xa7\xbd\xa4\x93\xaf\x1b\xbe\xac\x76\x5b\xa2\x1f\x9f\x64\x96\x59\x5c\x1a\x34" +"\x5f\x53\x47\x34\x53\xe6\xf7\x23\xaa\x8d\xa0\x8f\xa5\x1e\x0e\xfb\x4b\xf8\x54\x20\x0a\xfb\xfe\x06\x4d\xfb\x38\x05\xa9\x06\xb4\xd8" +"\x9b\x94\xe9\x88\x08\xf7\x2f\x06\xfb\x66\xfc\xdb\xa5\x85\x8f\x8a\xa6\x82\x19\x0e\xfb\x4b\xf7\x58\xf7\xe2\x15\x25\x49\x63\x56\x44" +"\x1a\x30\xdc\x49\xf7\x05\xf7\x03\xdc\xd2\xec\xd2\x66\xc0\xfb\x03\xe3\x1e\xe7\xbe\xb5\xc0\xc7\x1a\xe2\x3b\xcf\x26\x22\x3d\x47\x2f" +"\x4a\xaa\x5e\xf2\x39\x1e\xa7\x77\x15\xb7\x64\x91\x86\xa0\x77\x08\xbf\x5b\xa0\x65\x61\x1a\x53\x5c\x62\x49\x3d\x5d\xbc\xde\xc5\xa7" +"\xbb\xcc\xbe\x1e\xb5\xd5\x15\x2c\xcf\x66\xb9\xbe\x1a\xc0\xbd\xb7\xc7\xcd\xbb\x58\x46\x52\x73\x66\x47\x5b\x1e\x0e\xfb\x4b\xb9\x7f" +"\x15\x8a\x9a\x97\x8b\x92\x1b\xe3\xe5\xb2\xcd\xd0\x1f\xdd\xdc\xbe\xf7\x0e\xf7\x07\x1a\xcb\x7a\xcc\x6c\xbe\x1e\xc8\x66\x4d\xae\x42" +"\x1b\xfb\x0c\x32\x2a\xfb\x18\xfb\x0d\xda\x38\xf7\x06\xb5\xa7\x93\xa9\xc5\x1f\x5a\xfb\x3d\xfb\x0d\xfb\x04\xfb\x1c\x89\x08\xf7\xd0" +"\xf7\xd7\x15\x72\x56\x6f\x83\x6a\x1b\x3f\x5d\xd9\xf7\x14\xe4\xb7\xc5\xcd\xdc\xc2\x32\xfb\x18\x69\x88\x72\x84\x63\x1f\x0e\xfc\x29" +"\xf7\x1e\xef\x15\x22\x0a\xf7\xff\x04\x49\x0a\xa5\xaa\xa9\x72\xa5\x6d\x1f\x0e\xfc\x29\xf7\x30\xf8\x63\x15\x4f\x0a\xab\xa3\xa3\xac" +"\xaa\x73\xa4\x6c\x1f\x42\xfc\xdb\x2a\x0a\xf8\x9f\xf8\x9e\x15\xfc\x85\xfb\x7e\x05\x54\x07\xf8\x85\xfb\x7d\x05\xc9\x07\xfc\x36\xf7" +"\x5b\xf8\x36\xf7\x5b\x05\x0e\xf8\xad\xf8\x1b\x15\xfc\xa2\x54\xf8\xa2\x06\xfb\x1f\x04\xfc\xa2\x54\xf8\xa2\x06\x0e\xa5\xf8\x9e\x35" +"\x0a\xfb\x83\xf7\x87\xf7\x44\x15\x8c\xc9\x9b\xb8\xb1\xba\xc8\xce\x8b\x8b\x9b\xa3\x08\xa4\xb0\x97\xb1\xb3\x1a\xe3\x44\xc9\x25\x2d" +"\x40\x4d\x3d\x60\xa2\x6b\xab\xa3\x9e\x9d\xa2\x96\x87\x96\x82\x97\x1e\x79\xa3\x8a\x8e\x99\x1a\xb0\xb0\xa8\xbb\xc7\xaf\x5e\x3f\x5e" +"\x84\x76\x5f\x32\x1e\x66\x40\x85\x71\x89\x27\x08\x9e\x3e\x15\x6b\x72\x72\x6c\x6c\xa4\x72\xaa\xaa\xa4\xa4\xaa\xaa\x72\xa4\x6d\x1f" +"\x0e\xf8\xad\xf7\x89\x15\xfc\xa2\x54\xf8\xa2\x06\xfb\x1b\x04\xfc\xa2\x54\xf8\xa2\x06\x5b\xf8\x6f\x40\x0a\x43\x72\x90\x6f\x1b\x52" +"\x5c\x70\x52\x64\x1f\xb6\x69\x05\xc0\xb8\x9b\x95\xb1\x41\x0a\xcc\xbb\x4b\x0a\xb2\xf7\xf5\x20\x0a\x7f\x06\xfb\x73\xfc\xa7\x61\x29" +"\x84\x84\x4a\x80\x19\x71\xf7\x56\x4a\x0a\x90\x9d\x9d\xb4\x1e\xa9\xd3\x05\xf7\x87\x06\xaa\x43\x05\x9e\x5c\x8f\x7f\x7b\x3c\x0a\x08" +"\xfb\x9d\xf7\xfb\x15\xf7\x01\xfb\x8a\x05\xfb\x6b\x06\x0e\x7b\xa8\x16\xf7\xda\x06\xc5\xb7\x93\x9d\xae\x1f\xcb\xab\xaf\xc5\xcf\x1a" +"\xc4\x71\xb8\x57\xa9\x1e\x71\x9b\x73\x93\x59\x95\x08\xe3\x9a\xc2\xc2\xd5\x1a\xcc\x69\xc2\x4f\xab\x1e\x9e\x66\x5d\x93\x3d\x1b\xfb" +"\xa5\x38\x0a\xf7\x55\xf7\xec\x15\xf7\x8f\x07\x98\x8b\x8b\xc9\xc1\xa2\x88\x82\xa1\x1e\xb6\x7a\xa7\x5d\x56\x1a\x37\x4e\x57\x27\x1e" +"\x44\x65\x15\xd1\x06\xf7\x08\xc8\x58\x2c\x2b\x4f\x59\xfb\x07\x4d\x81\x8d\x99\x1f\x0e\xb2\xf8\x15\x16\xf7\xd3\xa5\x06\x3c\x90\x6c" +"\xa1\x56\xe3\xfb\x22\xf7\x79\x18\xf7\x0c\xf7\x36\xcc\xe3\xb0\xa2\xde\x8f\x19\xa5\xfb\x8f\x71\x99\x07\xae\x9a\x81\x75\x7d\x80\x78" +"\x64\x59\x1f\x2d\xfb\x0f\x3d\xf7\x0e\x05\x6c\xbe\x83\x9a\x99\x1a\xa2\x9e\x98\xac\x1e\xa0\xa5\xfb\xd9\x71\x06\xdd\x86\xab\x76\xc1" +"\x32\xf7\x1c\xfb\x67\x18\xfb\x20\xfb\x48\x4a\x34\x6a\x76\x3c\x84\x19\x71\xf7\x8c\xa5\x7d\x07\x6a\x7b\x95\xa1\x99\x8b\x8b\xbe\xd0" +"\x1f\xf0\xf7\x1e\xe6\xfb\x1d\x05\xa4\x64\x99\x6f\x7c\x1a\x75\x77\x7f\x66\x1e\x7b\x06\x0e\x44\x91\x16\xf8\xee\x06\xfb\xad\xf9\x44" +"\x05\xfb\x8e\xfd\x11\x15\xf7\x69\xf8\x5e\xf7\x51\xfc\x5e\x05\x0e\x43\xab\x16\xf8\xa8\x06\xc0\xf7\x41\x05\x70\x06\x26\x65\x5f\x6c" +"\xfb\x03\x1b\xfb\x16\x06\x68\x8a\x84\x94\xb6\x1a\xf7\x81\xf7\x22\x07\xe0\x8c\xa0\x78\x8e\x3c\x08\xa4\xf7\x82\x72\x06\x8a\x3c\x73" +"\x75\x37\x8c\x08\xfb\x22\xf7\x9a\xf7\x39\x3f\x0a\xfc\x96\x34\x0a\xdb\xf7\x82\x16\xf7\xb8\xa5\x06\x42\x8c\x71\xa7\x8d\xd5\x08\xc5" +"\xa3\x8e\x93\xb1\x1f\xf7\x08\xa6\xd4\xd6\xe9\x1a\xee\x40\xd8\xfb\x0c\xa5\x1e\x68\x92\x6b\x8e\x5c\x8c\x8a\xd1\xa6\xa6\xd2\x8c\x08" +"\xa5\xfb\xb8\x71\x07\xd2\x8a\xa6\x70\x8a\x45\x5c\x8a\x6b\x88\x68\x84\x08\xfb\x0c\x71\x40\x3e\x28\x1a\x2d\xd4\x40\xf7\x08\x70\x1e" +"\x83\xb1\xa3\x88\xc5\x1b\x8d\x41\x71\x6f\x42\x8a\x08\xec\xf7\x21\x15\xfb\x1b\x93\x49\xc4\xf7\x03\x1a\xc7\xa1\xb5\xbc\xaa\x1e\xae" +"\xa1\xac\x94\xc9\x90\x08\xed\x16\xf7\x1b\x83\xcd\x52\xfb\x03\x1a\x4f\x75\x61\x5a\x6c\x1e\x68\x76\x6a\x82\x4d\x85\x08\x0e\x3b\xf7" +"\x6d\xf9\x0c\x15\xf7\x76\x3f\x0a\xfc\xd3\x23\x0a\xf7\xc1\xa5\x81\x06\x3a\x90\x77\xa2\x8e\xe3\x08\x0e\xb2\xf7\x7c\xf8\x00\x15\xf7" +"\x3b\x07\x2d\x0a\x21\x0a\xf7\x48\xf7\xc4\xfb\x48\x2e\x0a\xfb\xb0\x24\x0a\xfb\x3b\x07\x0e\xfb\xf2\xf7\xd0\xa5\x15\x36\x0a\xf8\x19" +"\x07\x2d\x0a\x06\x0e\x57\xf9\x03\xf7\xde\x15\x78\x90\x81\x8e\x88\x8c\x76\x92\x7d\x91\x83\x8d\x7e\xf7\x27\x7c\xbe\x5c\xc9\x08\xba" +"\x67\x61\xa4\x60\x1b\x4d\x5f\x5a\x47\x2d\xdb\x35\xf7\x24\x4f\x1f\x8c\x5c\x05\xfb\x32\x51\x26\x2f\x67\x6b\x9d\xa7\x7c\x1e\x81\x9f" +"\x83\xaf\xa7\x1a\x9e\x8e\xad\x90\xb8\x1e\x96\xea\x8b\x8e\x9f\x1a\xc1\x63\xb3\x54\x65\x71\x7b\x64\x71\x1e\x7e\x78\x87\x82\x78\x59" +"\x08\xa6\x06\xc0\xa8\x96\x97\xa0\x1b\xa5\x9e\x79\x72\x82\x8a\x7e\x89\x7d\x1f\x7d\x20\x89\x76\x66\x1a\x28\xcd\x4a\xf0\xf6\xd5\xc0" +"\xf3\xb2\x1e\x9f\xbf\x93\xba\x8c\xc3\xa9\x7e\xa4\x80\x9f\x83\x08\xfb\x2d\xf7\x07\x15\xfb\x05\xb6\x3e\xdb\xd7\x1a\xb4\xa4\xa7\xb0" +"\xb2\xab\x6c\x51\xa2\x1e\x9a\x66\x92\x65\x97\x23\x08\x0e\xb2\xf7\x78\xf8\xa7\x15\x88\xe0\xa0\xa6\xd1\x8f\x08\x8e\xa5\xfb\xb0\x23" +"\x0a\xf7\xb0\x21\x0a\xf7\x23\x07\xb3\xac\xbe\x58\x99\x7b\xe4\x22\x19\xbc\x51\x99\x76\x7b\x1a\x7a\x7d\x83\x6c\x1e\x6a\x71\xf7\xcf" +"\xa5\x06\x4f\x90\x6a\xa1\x4b\xd9\xfb\x72\xf7\x94\x18\xb6\xb6\xa2\xa4\xa3\xa4\xa3\xa5\x19\xf7\x16\xf7\x1d\x91\x8e\xe0\x8c\x08\xa5" +"\xfb\xa3\x71\x07\xb7\x8a\x91\x8b\x95\x87\x08\x97\x87\x93\x82\x82\x1a\x73\xfb\x1d\xfb\x2a\xfb\x0e\xfb\x02\x1e\x0e\x8e\xf7\xcd\xf8" +"\x89\x15\xf7\x2d\xfb\xfb\x05\x9f\x5c\x8e\x80\x7a\x3c\x0a\xfb\x7f\xf8\xb6\x18\xfb\x79\xfc\xb6\x62\x2c\x84\x83\x4f\x7e\x19\x71\xf7" +"\x50\x4a\x0a\x91\x9d\x9c\xb4\x1e\x0e\xf7\x62\xf8\x3c\x8c\x15\xf7\xa2\xf8\xb0\x05\xfc\x23\x2f\x0a\xdf\xa0\xa6\xd1\x90\x08\x8e\xa5" +"\xfb\x42\x06\xfb\x91\xfc\x8b\xfb\x89\xf8\x8b\x05\xfb\x4f\x23\x0a\xf7\x76\x21\x0a\xf8\x23\x07\x0e\xb2\xf7\x96\xa5\x15\x86\x4d\x0a" +"\xf8\x1a\x07\xf8\x37\xfc\xa8\x05\xb8\xf8\xa7\x06\x88\xdf\x9f\xa6\xd0\x90\x08\x90\xa5\xfb\x74\x24\x0a\xfc\x07\x07\xfc\x22\xf8\x95" +"\x05\xfb\x33\x71\x8f\x06\xd1\x87\xa0\x70\x88\x37\x08\xfc\x1a\x07\x8f\x37\x75\x6e\x45\x88\x08\x86\x71\xf7\x79\x06\x0e\xb2\xf8\x12" +"\xf9\x42\x28\x0a\xe0\xa4\x16\xf7\xb0\x21\x0a\xf8\x0e\x07\xcd\x8d\x97\x9c\x9a\x1e\x9c\x9c\x9c\x8d\xf7\x22\x1b\xf7\x1a\x90\x87\xfb" +"\x00\x1f\xfc\x0e\x2e\x0a\xfd\x64\x34\x0a\xc5\xf8\x8d\xf8\x5d\x2b\x0a\xfb\x0f\xf8\x5f\x28\x0a\xfb\x13\xf7\xe5\xa5\x15\x7c\x06\x37" +"\x90\x77\xa2\x8e\xe3\x08\xf7\x41\x07\x83\xae\xb4\x87\xac\x1b\xf7\x28\xe0\xcf\xf7\x0c\xd4\x65\xc6\x47\xa8\x1f\x9d\x64\x6c\x8e\xfb" +"\x05\x1b\xfb\x8a\x23\x0a\xf7\xc9\x06\xfb\x08\xf8\xf8\x15\x9e\x92\x8d\xd6\xac\xa1\x87\x83\x9e\x1e\xb8\x77\xa5\x5c\x4f\x1a\x59\x79" +"\x5f\x6c\x72\x1e\x78\x74\x6d\x82\x5f\x1b\x72\x79\x8e\x94\x65\x1f\x0e\x30\xf7\x3b\xf9\x0c\x15\xf7\x3d\x06\xf7\x0a\x8a\xa9\x75\x9b" +"\x28\x08\xa5\x06\x81\xf7\x37\x05\xfc\x82\x06\xf7\x6e\xfb\xf5\xfb\x7f\xfb\xd4\x05\xf8\xa6\x06\xc1\xf7\x48\x05\x71\x06\x6d\x3c\x69" +"\x78\xfb\x06\x8c\x08\xfb\x9f\x06\xf7\x67\xf7\xb2\x05\x0e\x43\xf8\x73\xa5\x15\x77\x4c\x0a\xf8\x7a\xd5\x07\xe9\x8c\xae\x6e\x93\x36" +"\x08\xa4\x06\x80\xf7\x32\x05\xfc\xbc\x06\x80\xfb\x32\x05\xa5\x06\x92\xe1\xad\xa5\xf3\x8c\x08\xcc\xfc\x7a\x06\x8e\x36\x76\x70\x45" +"\x87\x08\x77\x71\xf7\xd2\x06\x0e\x92\xf8\x20\xf7\xb7\x15\xf7\x26\xf7\x84\xbd\xe1\xa6\xa0\xd6\x94\x19\xa5\xfb\x79\x71\x96\x07\xb3" +"\x9a\x81\x72\x7b\x7e\x6c\x76\x69\x1f\xfb\x09\xfb\x4c\xfb\x06\xf7\x4c\x05\x6f\xb8\x81\xa1\x9b\x1a\xa0\x9e\x97\xae\x1e\x9e\xa5\xfb" +"\xc9\x71\x06\xda\x82\xa5\x77\xbe\x34\xf7\x26\xfb\x84\x18\xfb\x29\x37\x0a\x0e\xfb\x88\xf7\xc0\xf8\x3c\x15\x83\xb5\x8b\x8b\x9d\x1b" +"\xae\xa0\x99\xa4\xae\x5e\xa2\x47\xfb\x22\xfb\x0d\xfb\x20\xfb\x38\xfb\x0f\xd5\x2e\xec\x9c\xc9\x8d\x8d\xa4\x1f\x8c\x95\x94\x8b\x90" +"\x1b\xae\x9d\x79\x69\x60\x6f\x69\x67\x82\x8b\x8b\x94\x72\x1f\x84\x8d\x05\x91\x78\x83\x8c\x7d\x1b\x68\x76\x7a\x6e\x69\xb0\x6e\xb7" +"\xe5\xd6\xe0\xef\xb8\x7a\xb4\x6e\xa5\x1f\x9f\x75\x75\x92\x65\x1b\x7a\x82\x8b\x89\x6d\x1f\x89\x64\x7b\x8a\x89\x1b\x4c\x5a\xca\xdc" +"\xf1\xd4\xe5\xde\x97\x96\x8a\x85\xa6\x1f\x0e\xe0\xf7\xda\x16\x79\xf7\x2f\x05\x3d\xb7\x59\xe4\xe9\x1a\xbf\x9a\xc6\xa5\xba\x1e\xcc" +"\xaf\xc7\xb0\xcf\x1b\xcf\xc7\x66\x4a\xaf\x1f\xa5\x5c\x9a\x50\x57\x1a\x2d\x59\x32\x3d\x5f\x1e\x79\xfb\x2f\x05\xf7\xb8\xf7\x2d\x73" +"\x06\x5e\x83\x77\x79\x62\x1b\xfb\x26\x06\x8e\xb1\xae\x98\xa1\x95\xa2\x9a\x19\xd8\xbc\xb8\xdc\xe1\x1a\xce\x6e\xd4\x5b\xc3\x1e\xd1" +"\x4e\x37\xb1\x2c\x1b\x2c\x37\x65\x45\x4e\x1f\x5b\x53\x6e\x42\x48\x1a\x35\xb8\x3a\xd8\x5a\x1e\xa2\x7c\xa1\x81\xae\x7e\x8e\x65\x18" +"\xfb\x26\x06\x62\x77\x9d\xb8\x83\x1f\x73\xfb\x2d\x06\x0e\x65\xf8\xc4\x20\x0a\xfc\x76\x06\x81\xfb\x3c\x05\xa5\x06\x97\xd3\x98\x95" +"\xe3\x8d\x08\xf7\x75\x06\xe1\x89\x99\x81\x97\x43\x08\xa5\x06\x8c\xfb\xd9\x15\x72\x38\x75\x7f\xfb\x12\x8a\x08\xfb\x40\x06\xfb\x05" +"\x75\x99\xdd\x72\x1f\x71\x06\xb1\xfb\x48\x05\xf8\x76\x06\xb2\xf7\x48\x05\xfb\x2d\xf7\xa9\x2b\x0a\x0e\xf7\x04\xf8\x52\xf7\xa3\x15" +"\xdb\x8a\xc2\x94\xb5\xa0\x08\xcf\xab\xb1\xc9\xda\x1a\x8a\xdf\x05\xd5\x97\xa3\xb3\x93\x1e\xa2\x07\xfb\x08\x82\x62\x5a\x84\xfb\x1e" +"\x86\xfb\x00\x84\x76\x60\x6e\x74\x7c\x69\x84\x51\x8c\x08\xf7\x70\x07\x8c\xe6\x9d\xa2\xd5\x8d\x08\xa5\xfb\xaf\x71\x07\xd5\x89\x9d" +"\x74\x8c\x30\x08\xfb\x70\x07\x5a\x8a\x69\x90\x76\x95\x57\xa8\x82\xa2\x86\xf7\x05\x84\xf7\x1e\x63\xbc\xfb\x09\x94\x08\x74\x07\xb3" +"\x82\x97\x73\x42\x1a\x8a\x37\x05\x45\xa9\x52\xc2\x68\x1e\xb8\x6f\xc7\x7e\xe8\x8c\x08\xfb\x06\x07\x27\x7b\x74\x42\x85\x1e\x78\x6f" +"\xf7\xcd\xa7\x78\x06\x42\x91\x7b\xa2\xef\x1a\x0e\x43\xf8\xfe\x20\x0a\xfc\x8a\x06\x7a\xfb\x44\x05\xa5\x06\x97\xf7\x01\xa7\xa4\xf7" +"\x0a\x8a\x08\xf7\x4a\x06\xfc\x39\xfd\x0a\x05\xf8\xbf\x06\xb0\xf7\x3f\x05\x71\x06\x82\x63\x7a\x6d\x6e\x71\x6b\x70\x7a\x87\x3a\x88" +"\x08\xfb\x7a\x06\x0e\xfb\xf2\xf7\xbf\xfb\x39\x15\xad\x24\x07\x7b\x84\x91\x9c\x1f\xf9\x62\x07\xa3\x8a\x91\x90\xa1\x1b\xee\xad\xfb" +"\x69\xfd\xda\x06\x0e\xf7\x48\xf7\x76\xf7\x04\x26\x0a\xf7\x60\xf7\xd5\x26\x0a\xf7\x66\xfb\xd5\x26\x0a\x0e\xfb\xf2\xac\xfb\x39\x15" +"\xf7\x69\xf9\xda\xfb\x69\x69\xee\x06\xa1\x90\x86\x73\x1f\xfd\x5e\x07\x76\x84\x84\x75\x8c\x1e\x2a\x06\x0e\x72\xf7\xfd\x20\x0a\x54" +"\xfc\xfd\xfb\xb7\x53\xf9\x11\xc3\xfb\xb7\x06\x0e\xfb\x4b\x89\xfb\x62\x15\x5d\xf8\x8c\xb9\x07\x0e\xfb\x4b\xf8\x74\xfa\x25\x15\x53" +"\xf8\xf6\xc3\x07\x0e\x57\xf8\x84\xf8\x88\x15\x4e\xfb\x40\x05\xf7\x0d\x71\x4e\xcb\x30\x1b\x5d\x5a\x78\x6b\x66\x1f\x52\x5b\x70\x44" +"\x28\x1a\xfb\x34\xda\x2a\xf7\x16\xe3\xcc\xb8\xe4\xb4\x1e\x90\x78\x92\x79\x96\x72\x08\x53\xa5\x9c\x7b\xab\x1b\xac\xa2\xa0\xb5\x98" +"\x1f\x92\xa2\x8e\xa1\x8c\xc3\x08\x71\x06\x58\x89\x78\x66\x72\x1b\x6a\x6a\xc0\xd0\x7f\x1f\xf7\x05\xf7\xcf\x05\xfb\x47\xfb\x97\x15" +"\x74\x4a\x05\x25\x68\x63\x5a\x59\x1b\x44\x62\xdd\xf7\x22\xd5\x99\xc7\xa5\xb7\x1f\xa8\x9d\xa2\x99\xaa\x1b\xd2\xb9\x52\xfb\x06\x9f" +"\x1f\x0e\xda\x4d\x15\x88\x35\x86\x65\x81\x67\x08\xdd\x06\x96\x9d\x90\xb2\xd2\x1a\xf7\x1c\x07\x63\xc0\xb7\x7c\xc5\x1b\xf7\x0c\xdc" +"\xe3\xf7\x15\xf6\x56\xd6\xfb\x02\xba\x1f\xd7\xb4\xaf\xb9\xc4\x1a\xe4\x32\xd5\x20\xfb\x00\x3a\x44\x2c\x1e\xdb\x95\x15\xd1\xb4\xbc" +"\xc7\xca\xb8\x51\x3b\x55\x70\x53\x70\x87\x87\x8c\x8e\x7d\x1e\x8e\x7b\x86\x8c\x81\x1b\x73\x78\x7c\x77\x78\x9c\x7f\xa5\x92\x91\x8c" +"\x8c\x93\x1f\x8e\x96\x97\x8c\x93\x1b\x98\x92\x89\x85\x91\x1f\xb8\x62\xa6\x3f\x38\x1a\x28\x5f\x50\x41\x58\x5a\xa2\xb2\x69\x1e\x0e" +"\xf8\x1b\xf8\x88\x15\xfb\x15\xfb\x81\x67\xf7\x29\x05\xca\x7c\x65\xb1\x5a\x1b\x4f\x61\x48\xfb\x03\x81\x1f\xa6\x06\xc7\x92\xa8\xb2" +"\xb1\x1b\xa4\xa4\x7b\x73\x9b\x1f\x93\x7e\x94\x74\x91\x70\xa9\xfb\x0f\x18\xfb\x6e\xfc\x23\x05\xf5\x06\xf7\x22\xf7\x9d\x9b\x33\x9a" +"\x40\x8e\x7d\x92\x78\x19\x52\xa0\xad\x6c\xb4\x1b\xaf\xaf\xa4\xb3\xa1\x1f\x9c\xaa\x94\xb0\x8e\xbf\x08\x73\x06\x81\x69\x87\x81\x84" +"\x80\x08\x74\x7d\x73\x7e\x71\x1b\x5c\x72\xb5\xf7\x0f\x6d\x1f\x78\xd9\xf7\x5f\xf8\x09\x05\x0e\xfb\x51\xf7\x94\xf8\x50\x15\x57\x7b" +"\x6c\x7e\x6e\x77\x08\x49\x5e\x65\x45\x40\x1a\xfb\x0b\xea\x28\xf7\x07\xc8\xc0\xa3\xbd\xbb\x1e\xba\xbc\xa1\xc2\xce\x1a\xcc\x75\xc8" +"\x62\xbc\x1e\x69\xb4\x74\x9d\x37\xbd\x08\x31\xc1\x64\xb0\xac\x1a\xab\xaa\xa5\xb3\xab\xa6\x7f\x71\xa4\x1e\x54\xc2\x94\x85\xa6\x1b" +"\xa6\x9f\x9d\xa3\xc2\x34\xb7\x22\x2d\x52\x66\x4d\x66\x9b\x6f\xb7\x62\x1f\xf7\x12\xfb\x09\x15\xcf\x4c\xaa\x45\x35\x1a\x28\x5c\x49" +"\x45\x45\x5b\xd9\xf7\x07\xf7\x00\xb8\xca\xe6\x9f\x1e\x0e\xfb\x88\xf8\x27\xf7\x11\x15\x4c\x76\x66\x72\x44\x1b\x5a\x63\x97\xa3\x70" +"\x1f\x77\x9d\x83\x9e\xac\x1a\xc6\xad\xb1\xc0\x95\x93\x8a\x89\x95\x1e\x87\x9a\x95\x8a\x95\x1b\xa9\xa1\x99\x9e\x9a\x7f\x93\x74\x80" +"\x8b\x8b\x88\x6e\x1f\x85\x06\x88\x70\x88\x8b\x83\x1b\x58\x6a\xae\xc1\xc7\xb5\xba\xbf\xaf\xa2\x7b\x6b\x96\x1f\x8d\x84\x05\x67\x97" +"\x9c\x7b\xa5\x1b\xa6\xa0\xa1\xa7\xc0\x48\xb2\x2d\x4b\x5e\x7d\x6c\x64\x1f\x66\x6f\x7b\x6d\x65\x1a\x6a\x9a\x6c\xa4\x79\x1e\x99\x82" +"\x94\x86\xaa\x7c\x08\x41\x72\x69\x62\x4f\x1a\x35\xe3\x4d\xf7\x10\xf7\x03\xc9\xb4\xe3\x9f\x1e\x0e\xfb\x36\xf7\xab\x84\x15\xf7\x10" +"\x9c\xe2\xf7\x04\xf7\x21\x1a\xf7\x1e\x37\xec\xfb\x13\x95\x1e\xdb\x07\xbb\x8c\x93\x8d\xa2\x1e\x5c\x9e\x05\x8d\x74\x8c\x7d\x57\x1a" +"\x32\x07\xfb\x0d\x7d\x31\xfb\x06\xfb\x1e\x1a\xfb\x1f\xe1\x25\xf7\x11\x81\x1e\x26\x07\x50\x8a\x7c\x89\x70\x1e\xba\x80\x89\xac\x8b" +"\x8e\x8a\xb7\x19\xa6\x07\x62\xf7\x28\x15\x6f\x96\x77\x9b\x7c\xa2\x08\x6b\xbc\x78\xd7\xda\x1a\xf7\x05\xb6\xd1\xd2\x8e\x1e\xb4\x84" +"\x15\xd2\x70\xb6\x2e\xfb\x14\x1a\xfb\x0b\x62\x48\x42\x87\x1e\x0e\xfb\xa4\xf8\x0d\xf8\x88\x15\xfb\x03\xfb\xec\x6d\xf7\x2f\x05\xf7" +"\x2c\x6d\x6b\xbd\x48\x1b\x6d\x70\x7e\x73\x7b\x1f\x75\x6c\x86\x72\x89\x37\x08\x7e\xa1\x07\x8d\xa6\x8d\x9b\x8f\x98\x08\xac\x96\xa2" +"\x9e\xa9\x1b\xa6\x9e\x7a\x63\x9e\x1f\xa3\x56\xa5\x30\x95\x41\x97\x38\x18\x8a\x86\x89\x86\x89\x86\x82\x6f\x81\x70\x82\x71\x08\x77" +"\x55\x85\x6e\x68\x1a\x5b\xa0\x6d\xab\xb4\xa6\xbe\xdb\xab\x86\xb8\x7f\xd9\x1e\xf7\x5f\xf8\x45\x05\x0e\x3b\xf7\x0b\x16\xe3\xf8\x00" +"\x06\xc2\xaf\xae\xa3\xb7\x1b\xc4\xae\x64\x4b\x1f\xfc\x4b\x07\x8c\x66\x91\x62\x98\x5e\x08\xe8\x06\x7c\xb9\x84\xa8\xa4\x1a\xf8\x7f" +"\x07\xdf\x4f\xc7\x38\x50\x62\x70\x40\x54\x1e\x86\xa9\x86\x99\x82\x98\x08\xa2\x7a\x6e\x99\x6d\x1b\x63\x64\x72\x63\x79\x1f\x80\x73" +"\x87\x76\x66\x1a\xa3\x06\xc9\x91\x99\xa8\xa3\x1b\xa9\xa1\x65\x54\x1f\x0e\xfb\xf6\xf7\x43\xf8\x95\x15\x62\x78\x3e\x74\x52\x80\x08" +"\x72\x07\x8d\x9d\x97\x8c\x94\x1b\xb3\x94\x7b\x4a\x1f\xfb\x85\x07\x56\x90\x75\x9a\x77\x1e\x75\x9b\xa5\x7f\xa8\x1b\xb1\xaf\x9f\xaa" +"\xa1\x1f\x97\x9d\x91\x9d\x93\xac\x6f\x8c\x18\x59\x81\x7d\x78\x72\x1b\x6a\x7a\xaa\xc8\x8c\x1f\x0e\x3b\xf7\x8d\xf8\x90\x15\x5d\x88" +"\x6c\x81\x66\x72\x08\x4a\x5e\x69\x47\x34\x1a\xfb\x27\xf4\xfb\x07\xf7\x21\x84\x1e\xfb\x73\xce\xf7\x73\x07\xf7\x16\x8e\xf7\x00\xf7" +"\x0c\xf7\x24\x1a\xf7\x16\x33\xf7\x07\x26\x3f\x5a\x4c\x2b\x88\x8b\x87\x8c\x6d\x1e\x93\xfb\xa5\x05\x34\x97\x5a\xe2\xf7\x20\x1a\xf7" +"\x01\xad\xcd\xd0\xa6\x1e\xe3\xfb\x48\x15\xdf\x87\x9e\xba\xb1\x1b\xc1\xc2\x26\x27\xfb\x01\x4f\x3e\x31\x84\x1f\x0e\xf7\x59\xf7\xb6" +"\x15\xf7\x73\x07\x6c\x79\x58\x7a\x39\x79\x08\x72\x07\x8d\x9c\x96\x8c\x94\x1b\xb3\x94\x7c\x49\x1f\xfb\xf9\xd9\xf7\x8e\x07\xf7\x25" +"\xfb\x44\x05\xa2\x6f\x8b\x8a\x84\x1a\x7f\x84\x87\x6b\x89\x1e\x86\x77\xf7\x81\xa3\x82\x06\x5c\x8e\x84\x90\x4b\xda\xfb\x2f\xf7\x57" +"\x18\xb7\xb4\x05\xcc\xd0\x9d\x98\x9e\x1b\x93\x93\x87\x82\x96\x1f\x79\xa1\x91\x89\x9c\x1b\xac\xa6\xa3\xa8\xac\x6c\xa2\x5f\x72\x76" +"\x85\x7b\x74\x1f\x68\x75\x3c\x48\x57\x56\x78\x79\x18\x0e\xd6\xf8\xce\x15\xc4\x92\xa8\xac\xb8\x1b\xac\xa5\x72\x5e\x9a\x1f\x92\x76" +"\x94\x6a\x94\x65\xfb\x7b\xfc\x86\x18\xe9\x06\xf7\x3e\xf7\xfa\xab\xfb\x55\x9b\x42\x9d\x64\x19\x60\xa1\xaa\x74\xb1\x1b\xcc\xaf\xc7" +"\xf7\x01\x8d\x1f\x76\x06\x57\x83\x74\x6e\x67\x1b\x6d\x71\x9e\xae\x7b\x1f\x7e\xa5\x84\xa4\x7d\xd6\x70\xf7\x15\x18\x8d\x8a\x8d\x8a" +"\x93\x1e\x85\xab\x8a\x90\x86\xa1\x73\xf7\x03\x7b\xc2\x75\xbd\x08\xb5\x78\x66\xa6\x63\x1b\x4e\x6b\x58\xfb\x0b\x80\x1f\x0e\x20\xf8" +"\x4e\xf8\x88\x15\x32\x06\x8c\xfc\x05\x05\x58\x67\x69\x75\x61\x1b\x51\x69\xb4\xd1\x1f\xf7\xdf\x33\xfc\x74\x07\x76\x87\x72\x84\x6d" +"\x1e\x7a\x4d\x8a\x86\x73\x1a\x60\xa0\x6e\xa8\xa8\x9f\xa9\xb7\xa0\x88\x99\x7b\xc4\x1e\x80\xaf\x8a\x94\xa8\x1a\x97\x07\x67\xb5\xa1" +"\x81\xae\x1b\xbd\xbe\xaa\xc9\xc0\x1f\x93\x6b\x90\x7f\x95\x7c\x08\x76\x9a\xa6\x7e\xa9\x1b\xc8\xb6\xb7\xd8\x99\x1f\x70\x8c\x05\x65" +"\x87\x76\x6d\x74\x1b\x6d\x77\xaf\xc1\x1f\x0e\xfb\x36\x82\xf8\x5f\x15\xc4\x8a\x8d\x89\xa3\x4f\xf7\x35\xfc\x2d\x18\xa9\x06\x9a\xb1" +"\x94\xa2\x92\x99\xa6\xc2\x18\x94\x9e\xc6\xf7\x02\x05\xc7\xf7\x04\xa3\xc6\xaf\x1a\xac\x71\xa6\x6b\x6e\x73\x72\x6c\x84\x8b\x8b\x91" +"\x6c\x1e\x8d\x82\x05\x92\x6a\x8d\x7e\x7d\x1a\x70\x83\x73\x73\x5f\x1e\x46\xfb\x1a\xfb\x2f\xf8\x1c\x5e\x7c\x63\x83\x5a\x89\x19\x0e" +"\xf7\xa8\xf8\x95\x15\xfb\x1d\x23\xfb\x0a\xfb\x2e\xfb\x26\xec\xfb\x00\xf7\x16\xf7\x1a\xf4\xf7\x0d\xf7\x2f\xf7\x24\x2c\xf5\xfb\x16" +"\x1f\x75\x66\x15\xe3\xc8\x21\xfb\x2d\xfb\x0f\x60\x45\x3f\x65\x64\xa1\xad\x75\x1f\x6b\xbc\x78\xd9\xd9\x1a\xf7\x0d\xb7\xd1\xd7\x1e" +"\x0e\xa9\xf7\xf0\x15\xa9\xbd\x9d\x97\xbd\x8c\x08\xb9\x06\x71\xfb\x72\x87\x6f\x7e\x76\x69\x6b\x19\x6c\x6f\x82\x7c\x74\x1a\x6c\xa3" +"\x73\xaa\xaa\xa3\xa2\xb6\x98\x1e\x94\xa5\x99\xf1\x94\xf0\x97\xf7\x15\x18\xf7\x01\x06\x7f\x3a\x82\x23\x50\x1a\xfb\x04\xb0\x47\xc9" +"\xb2\xae\xa6\xba\xa3\x1e\x99\xa7\x8f\x9e\x8e\xbd\x08\x73\x06\x5b\x86\x78\x72\x6a\x1b\x77\x76\x99\xa0\x80\x1f\x82\x9d\x88\x9b\xac" +"\x1a\xd9\x90\xe5\x92\xc3\x1e\xf7\x12\xe4\xfb\xf2\x06\x3a\x90\x57\x5b\x6d\xfb\x01\x08\x0e\xfb\x36\xf7\x9c\xf9\x42\x15\x64\x63\x7b" +"\x6c\x66\x1f\x47\x54\x66\x20\xfb\x21\x1a\xfb\x17\xac\x23\xc6\x53\x1e\x65\xb3\xb8\x77\xb7\x1b\xb2\xb2\x9b\xaa\xb1\x1f\xcf\xc2\xb0" +"\xf5\xf7\x1c\x1a\xf7\x1d\x6b\xf1\x4f\xc5\x1e\xb0\x64\x5d\xa0\x5f\x1b\xf7\x0a\xfc\x0a\x15\x89\xfb\x06\x7f\x4a\x6e\x56\x08\x6c\x79" +"\x6b\x74\x72\x1b\x71\x6b\xa2\xaa\x7a\x1f\x6e\xc0\x7f\xcc\x89\xf7\x06\x08\xc3\x04\x8d\xf7\x01\x98\xcd\xa7\xbf\x08\xaa\x9c\xab\xa2" +"\xa5\x1b\xa4\xab\x74\x6c\x9d\x1f\xa7\x57\x98\x49\x8d\xfb\x01\x08\x0e\xf7\x2a\xb9\x15\x65\xa5\xb4\x76\xbd\x1b\xf7\x0b\xf3\xf7\x16" +"\xf7\x2a\xf7\x22\x30\xf3\xfb\x11\x6a\x75\x86\x7d\x73\x1f\x65\x76\x69\x6e\x71\x6b\x08\x6f\x68\x82\x69\x44\x1a\xfc\x1c\x07\x61\x89" +"\x74\x83\x68\x1e\xe9\x06\x90\xad\x8b\x8d\x8c\xda\x08\x85\xf8\x3f\x15\x8a\xa9\x8f\xac\x92\x99\x08\xae\x9c\xa4\x9e\xa7\x1b\xe9\xdb" +"\xfb\x00\xfb\x14\xfb\x00\x53\x42\x39\x62\x61\xa8\xb3\x78\x1f\x85\x97\x8a\x92\x8a\xaa\x08\x0e\x3b\xf8\xe0\xf8\x31\x15\xe2\xfb\x77" +"\x07\x3c\x55\x82\x77\x5d\x1f\x2a\x5f\x54\x3d\x2e\x1a\x49\xa4\x4a\xb9\x57\x1e\x4f\xbf\xc4\x71\xda\x1b\xd0\xc4\xa0\xb4\xb9\x1f\xb8" +"\xb4\xa6\xc4\xc1\x1a\xd7\x51\xd6\x21\xc8\x1e\x5c\x16\xe1\x32\x9e\x66\x38\x1a\x23\x59\x45\x41\x2f\x3f\xf0\xf7\x0f\xeb\xc9\xca\xe9" +"\x1e\x0e\xfb\x88\xaf\xf7\xc9\x15\xa7\xd5\xa4\xa4\xb3\x88\x08\xd4\x06\x7c\xfb\x04\x85\x43\x4b\x1a\x21\xb0\x4b\xc9\xb3\xb3\xa8\xb4" +"\x9b\x1e\x97\xa8\x8f\xa7\x8d\xba\x08\x72\x06\x52\x83\x7d\x77\x6c\x1b\x5f\x69\xb5\xc1\x9b\x8d\xab\x8e\xad\x1f\x8c\x98\x8d\xa7\x8d" +"\xaa\x8e\xb3\x8b\x93\x8e\xa2\x08\xf7\x38\xea\xfb\x77\x06\x32\x90\x4b\x47\x6f\xfb\x14\x08\x0e\x20\x92\xf8\x00\x15\xa9\x06\xb7\x98" +"\xa1\xa3\xa7\x1b\xa8\x93\x76\x44\x8c\x1f\x8e\xfb\x36\x8c\x46\xa3\x51\xb3\x6b\x19\x75\xa6\xad\x81\xb7\x1b\xcd\xc5\xa3\xb6\xb0\x1f" +"\xb2\xba\xa3\xd5\xd5\x1a\xd2\x75\xcb\x64\xb9\x1e\x6b\xb0\x6b\x9f\x48\xa5\x83\x72\x18\xb3\x75\x9d\x7d\x9b\x74\x08\xa7\x65\x9b\x50" +"\x4a\x1a\x4f\x7e\x4e\x73\x59\x1e\x5f\x76\x6c\x74\x64\x1b\x52\x62\xc7\xe1\x8a\x1f\x88\xf7\x44\x05\xf7\x08\x8a\x70\xb9\x4b\x1b\x6a" +"\x71\x7e\x70\x78\x1f\x7a\x74\x85\x7e\x79\x51\x08\x0e\xa9\xf9\x33\xf8\x81\x15\xe5\xfc\x88\x07\x4b\x91\x48\x4e\x6f\x34\x08\x9c\x06" +"\xb9\xb2\xb0\x97\xd3\x8c\x08\x2a\x70\x4d\x24\xfb\x19\x1a\xfb\x1e\x3d\x0a\xf7\x1e\xf7\x1a\x4c\xf3\x29\xa4\x1f\x2c\x16\xb0\x80\xa1" +"\x7f\xa1\x76\x08\xb6\x63\xa5\x3b\x30\x44\x0a\x70\x1b\x6b\x6c\xa1\xac\x7c\x1f\x82\x9e\x88\x9a\x85\xac\x08\xa3\xcf\x91\xa9\xbd\x1a" +"\xd0\x77\xb5\x69\x69\x77\x61\x46\x59\x91\x6d\xa3\x47\x1e\x85\x6a\x88\x7c\x82\x78\x08\x6a\x7c\x6c\x75\x6b\x1b\x70\x45\x0a\xde\xa2" +"\xd9\xb0\xb4\x1e\xa2\xa5\xa4\x9a\xb5\x97\x08\x0e\x8e\xf8\x40\xf8\x7b\x15\xb0\x81\xa1\x7f\xa1\x77\x08\xb6\x63\xa5\x3d\x32\x44\x0a" +"\x71\x1b\x58\x6b\xb4\xdc\x7d\x1f\xa3\xcf\x91\xa9\xbd\x1a\xd0\x77\xb5\x69\x69\x77\x61\x46\x59\x91\x6d\xa3\x47\x1e\x3a\x7d\x6b\x62" +"\x58\x1b\x71\x45\x0a\xdc\xa2\xd7\xb0\xb4\x1e\xa2\xa4\xa4\x99\xb5\x97\x08\xa5\x07\x55\x8a\x68\x85\x6c\x7e\x08\x38\x67\x56\x25\xfb" +"\x10\x1a\xfb\x1f\x3d\x0a\xf7\x1f\xf7\x0a\x5a\xee\x3f\xb3\x1f\x6a\x9c\x65\x92\x4f\x8c\x08\x0e\xfb\x52\xf7\x41\xf9\x90\x15\x8c\x82" +"\x83\x8c\x86\x1b\x5d\x64\x68\x61\x66\xa0\x75\xbc\x7d\x1f\x72\x73\x7f\x6e\x69\x1a\x64\x9a\x6d\xb1\x65\x1e\x6a\x72\x7a\x7c\x7a\x77" +"\x08\x67\x61\x75\x4d\x51\x1a\x3c\xb3\x42\xc8\x6e\x1e\x7b\xab\xb2\x85\xc8\x1b\x9c\x8f\x8b\x8c\xa2\x1f\x96\x06\xab\x8d\x05\xb3\x8d" +"\xa9\x6e\x64\x1a\x65\x70\x6f\x66\x84\x80\x8c\x90\x70\x1e\x8e\x74\x83\x8c\x81\x1b\x72\x7a\x7b\x71\x69\xad\x73\xbc\xbb\xaf\x9e\xb7" +"\xab\x1f\xa8\xb1\x9b\xb9\xb9\x1a\xb8\x7b\xad\x6a\xa3\x1e\x9d\x74\x75\x90\x5d\x1b\x35\x06\x5f\x6a\x8f\x93\x79\x1f\x60\x9e\x6e\xba" +"\xc0\x1a\xd1\xb6\xc9\xde\xba\x1e\x81\xa8\x9e\x88\xab\x1b\xda\xbb\xa0\xae\xa2\x71\x98\x5f\x63\x69\x81\x6a\x43\x1f\x61\xaa\x7d\xa0" +"\xab\x1a\xab\x9e\xa8\xb0\xa7\x1e\xbd\x8d\xad\x91\xa6\x99\x08\xae\x9c\xa0\xa4\xa2\x1a\x9e\x7b\x96\x6f\x66\x61\x74\x52\x4b\x1e\x6c" +"\x8c\x75\x9d\xa6\x1a\xa1\x9c\x9a\xaf\x95\x1e\x0e\x8e\xf8\x19\xf8\x88\x15\x4a\xfc\x60\x06\x49\x9a\x70\xb3\x84\xe8\x79\xf7\x3d\x18" +"\x86\xbd\x86\x9e\x7b\xa5\x08\xb0\x74\x62\xa3\x63\x1b\x79\x7c\x88\x81\x6c\x1f\x78\x07\xcc\x80\x95\x80\x94\x44\x99\xfb\x37\x18\x95" +"\xfb\x0a\xe2\x2e\xf7\x09\x7a\x08\xfb\x6f\xcc\xf7\x6f\x07\xf7\x09\x9c\xe2\xe8\x95\xf7\x0a\x99\xf7\x37\x18\x8d\x98\x8f\xc0\x9c\x9c" +"\xc8\x95\x19\x9e\x07\x95\x6c\x7c\x8e\x79\x1b\x67\x64\x77\x6b\x74\x1f\x78\x70\x83\x74\x86\x55\x79\xfb\x3d\x18\x84\x2e\x70\x63\x49" +"\x7c\x08\x0e\xfb\x51\xf7\x6b\xf9\x88\x15\x47\x86\x5e\x65\x56\x1a\x64\xa2\x78\xce\x7b\x1e\x2c\xfb\x12\x66\x27\xfb\x16\x1a\x29\xa1" +"\x54\xc5\x5e\x1e\x71\xad\xac\x7f\xb5\x1b\x94\x8c\x8b\x8d\xac\x1f\x96\x06\x8d\xa8\x92\x8b\x95\x1b\xba\xa8\x73\x64\x64\x6c\x69\x68" +"\x83\x84\x8c\x91\x76\x1f\x94\x6a\x82\x8d\x80\x1b\x6b\x73\x77\x70\x6b\xaf\x74\xbe\xec\xd0\xd4\xf4\xe8\x4e\xbd\xfb\x06\x83\x73\x8b" +"\x8a\x80\x1f\x78\x06\x43\x5b\xc9\xe8\xf7\x0c\xc7\xf7\x1e\xdf\xd6\x1f\xed\x96\xdd\xbe\xbe\x1a\x9e\x7b\x98\x75\x67\x55\x68\x3a\x30" +"\x1e\x67\x96\x7a\x9e\xa8\x1a\xa6\x9d\xa0\xae\x99\x1e\x0e\xfb\x5f\xf7\x9f\xf8\xc0\x15\x88\xca\xab\xa2\xef\x92\x08\xa3\x07\xfb\x33" +"\x8f\x54\x6e\x88\x30\x08\xfb\x46\x07\x8e\x56\x6b\x73\x2f\x7e\x08\x73\x07\xb8\x85\x9a\x87\xa5\x7f\xa7\x7d\x91\x80\x8c\x60\x08\xfb" +"\x69\x07\x8d\x25\xbd\x6e\xf7\x3a\x8f\x08\xa3\x07\x6e\x8c\x6b\x90\x75\x94\x64\x9b\x84\x97\x8a\xbd\x08\xf7\x69\x07\x89\xd0\x6b\xa7" +"\x2e\x9a\xe6\x9a\xae\xa9\x8c\xc9\x08\x0e\xfc\x77\xcc\x20\x0a\xfd\xe6\xd1\xf9\xe6\x07\x0e\xfb\x5f\xf7\x65\x5b\x15\x8a\x5a\x84\x7f" +"\x68\x7c\x76\x81\x68\x85\x6c\x8a\x08\x73\x07\xf7\x3a\x87\xbd\xa8\x8d\xf1\x08\xf7\x69\x07\x8c\xb6\x91\x96\xa7\x99\xa4\x97\x9b\x8f" +"\xb8\x91\x08\xa3\x07\x2f\x98\x6b\xa3\x8e\xc0\x08\xf7\x46\x07\x87\xe6\x55\xa8\xfb\x33\x87\x08\x73\x07\xef\x84\xab\x74\x88\x4c\x08" +"\xfb\x40\x07\x4d\xaf\x6d\xe5\x7c\x1e\x2f\x7c\x6b\x6f\x89\x46\x08\x0e\xf8\x7d\xf7\xd9\x46\x0a\xa1\x46\x1f\xa2\x42\x73\x90\x6f\x1b" +"\x52\x5c\x6f\x52\x64\x1f\xb6\x6a\x05\xc0\xb8\x9b\x95\xb1\x1b\xa1\x8b\x8b\x70\xe5\x1f\x72\xdb\x8e\x8a\xaa\x1b\xcc\xbb\x4b\x0a\xf6" +"\xf9\x71\xf7\x69\x15\x5c\xa1\x79\x9a\x77\xaa\x08\x79\xa8\x80\xb0\xac\x1a\xa8\x93\xad\x98\xa3\x1e\x99\xa5\x9c\x9c\xb4\xab\x08\xc5" +"\x56\x60\x9f\x42\x1b\x6e\x7c\x88\x7f\x6e\x1f\x7e\x6f\x7b\x87\x79\x1b\x7b\x7d\x8f\x96\x71\x1f\x99\x6a\x7e\x8e\x69\x1b\xfb\x11\x30" +"\x28\xfb\x1d\xfb\x06\xb9\xfb\x0e\xd9\x2f\x1f\x64\xac\xae\x76\xac\x1b\x9d\x95\x8d\x98\xa9\x1f\x99\xad\xa0\x90\x9e\x1b\x9a\x98\x87" +"\x7b\xb0\x1f\x81\xa0\x9a\x88\x9f\x1b\xb0\xa0\x95\xab\xab\x1f\xb9\xb9\x8d\x8e\xc8\xf7\x11\x08\xfb\x3b\xf8\xe7\x15\x51\x7b\x70\x7c" +"\x74\x70\x08\x6d\x6a\x74\x57\x6b\x1a\x8a\x8b\x8b\x8c\x7b\x1e\xc4\x93\xa6\x95\xa6\xa6\x08\xa9\xa9\x9f\xb8\xb4\x1a\x8e\x8b\x90\x8a" +"\x93\x1e\x0e\xce\xba\xf7\xfd\x15\xe8\x06\x8a\x7e\x8b\x85\x83\x1a\x84\x8b\x84\x8c\x7d\x1e\x46\x06\x74\x52\x05\xf1\x06\xfb\x2b\xb5" +"\xf7\x17\x25\xf7\x2e\x1b\xd9\xd0\xa4\xc0\xcf\x1f\xdb\x07\x4a\x53\x3f\x67\x37\x1b\xfb\x0e\xfb\x04\xdd\xf7\x06\x6a\x1f\xf8\x09\x06" +"\xa2\xc4\x05\xfc\x2c\x06\x8a\x98\x8b\x92\x93\x1a\x94\x8b\x90\x8c\x98\x1e\xf8\x43\x06\xa3\xc4\x05\x40\x06\xfc\x04\x06\xf7\x08\xaf" +"\xf7\x01\xdb\xf7\x0e\x1b\xe0\xd4\x68\x49\xc5\x1f\xa3\xc4\x05\xcf\x45\x3c\xac\x31\x1b\xfb\x2e\xfb\x18\x25\xfb\x2b\x62\x1f\x3c\x06" +"\x0e\x4c\x95\xf9\x17\x15\x8e\xa1\x95\x8c\x9a\x1b\xd9\xc4\x5e\x39\xa2\x1f\x9c\x51\x95\x3e\x40\x1a\xfb\x3c\x07\x8e\x37\x76\x6f\x45" +"\x87\x08\x86\x71\xf7\xb3\xa5\x86\x4c\x0a\xf7\x40\x07\xf7\x46\xb8\xf7\x10\xcc\x99\x90\x87\x76\x9c\x1e\x6f\xa2\x99\x83\xa3\x1b\xb0" +"\xa2\xa2\xb0\xb7\x69\xa7\x54\x41\x4c\x60\x40\x69\x1f\x74\x58\x85\x6c\x7d\xfb\x08\x89\xda\x85\xc4\x80\xb4\x08\xdf\x74\x37\xc1\x20" +"\x1b\x70\x79\x89\x82\x6c\x1f\x0e\xfc\x48\xa6\x31\x0a\x0e\x47\x0a\xf9\x13\x04\xfc\x85\xfb\x7e\x05\x54\x07\xf8\x85\xfb\x7d\x05\xc9" +"\x07\xfc\x36\xf7\x5b\xf8\x36\xf7\x5b\x05\x0e\xfc\x98\xfb\x48\x16\xbc\x06\xf8\x6b\xf9\x35\x05\x59\x06\x0e\xa9\xf7\xf9\xf7\x77\x15" +"\x44\xc5\xd1\x62\xca\x1b\xde\xc4\xc8\xe5\xe3\x50\xc7\x35\x48\x4b\x65\x42\x54\x1f\xd3\x52\x49\xb2\x4c\x1b\x36\x4f\x4c\x33\x34\xc5" +"\x4e\xde\xc4\xc4\xa6\xbd\xb9\x1f\xcb\xd3\x15\xc8\xb6\xc6\xb0\xc0\x1b\xc1\xb1\x62\x52\x50\x68\x65\x55\x55\x69\xa0\xd7\x45\x1f\x48" +"\x8d\x15\x4c\x5a\x50\x67\x56\x1b\x57\x68\xb3\xc6\xc4\xb0\xb2\xc1\xbe\xb3\x72\x44\xcd\x1f\x0e\xfb\x4b\xf7\x08\xf8\x3a\x15\x81\x6b" +"\x05\xf7\x00\x06\x7f\x33\x82\x35\x81\x23\x7e\xfb\x28\x82\x5a\x76\x69\x08\x79\x7f\x7a\x80\x79\x1b\x80\x84\x8f\x92\x8e\x8c\x8f\x8d" +"\x8d\x1f\x95\x9c\x8d\x90\x97\x1a\x9f\x7b\x9a\x75\x6e\x76\x77\x6e\x65\xad\x6f\xbb\xca\xbc\xba\xe5\xa9\x1e\xac\xeb\x9b\xe2\xa5\xf7" +"\x76\x8d\x9d\x18\xf7\x0b\x06\x95\xab\x05\xfb\x11\x06\x9d\xf7\x20\x8f\xa3\x97\xa7\x08\xaa\x98\x9e\x9b\xa2\x1b\x98\x92\x86\x83\x87" +"\x8b\x8b\x84\x7f\x1f\x88\x84\x89\x85\x84\x1a\x75\x9c\x7c\xa3\xa7\xa0\xa0\xa7\xaf\x66\xa6\x58\x2a\x53\x3a\xfb\x4c\x69\x1e\x0e\xd1" +"\xf8\x4b\x71\x15\x6c\xb9\x84\xa1\xbf\x1a\xa7\x8f\x9b\x93\x92\x90\x87\x70\xa6\x1e\x67\xaf\xa7\x7d\xb3\x1b\xcb\xb3\xb9\xd4\xdb\x5e" +"\xc2\x4b\x72\x6f\x82\x79\x6f\x1f\x78\x6d\x88\x8a\x80\x1b\x81\x86\x90\x95\x96\x8f\x8f\xa8\x9f\x1f\xb5\xa9\xa2\xb2\xb5\x1a\xce\x4f" +"\xbf\x3f\x3f\x4f\x57\x48\x61\xa2\x64\xb5\x6d\x1e\xa8\x77\x8f\x87\x80\x1a\x81\x86\x86\x81\x80\x88\x8c\x9e\x6d\x1e\x9d\x6f\x6f\x94" +"\x72\x1b\x4b\x5e\x54\x3b\x42\xb4\x5d\xcb\xb2\xa8\x99\xaf\xaf\x1f\xa6\xa5\x90\x8f\x93\x1b\x93\x8f\x7b\x6f\x57\x84\x75\x6b\x5d\x1f" +"\x0e\xd1\xf8\x0a\x67\x15\xf7\x76\xf7\xb9\xfb\x76\xf7\xb9\xfb\x7c\xfb\xb9\x05\x0e\xd1\xf8\x0a\x6a\x15\xc1\xd7\x99\x9f\x96\x9a\xae" +"\xb8\x19\xc9\xdb\x8b\x8b\x95\x98\x08\xc0\xd3\x9d\xb7\xc8\x1a\xdb\x5d\xc2\x47\x4f\x66\x6c\x43\x70\x1e\x77\x84\x88\x87\x82\x1b\x82" +"\x88\x8f\x9f\x84\x1f\xd3\x70\x66\xaa\x4f\x1b\x47\x5d\x54\x3b\x48\xa0\x5d\xd1\x32\x1f\xd5\x2b\x90\x85\xac\x5d\x08\x0e\xd1\xf8\x48" +"\x67\x15\x6d\xb6\x84\xa2\xc4\x1a\xa1\x8f\x97\x93\x8d\x8f\x88\x87\x8e\x1e\x9e\x6d\x8b\x8a\x94\x82\x08\x78\x9c\xa4\x81\xa7\x1b\xca" +"\xbb\xbf\xce\xbb\x76\xbd\x58\xd2\x1f\xfb\x4e\xf7\x96\xfb\x4e\xfb\x96\x05\x58\x44\x76\x59\x5b\x1a\x48\xbb\x57\xcb\xb1\xa7\x9c\xad" +"\xa0\x1e\xa2\x99\x8c\x8d\x91\x1b\x92\x8c\x8f\x7e\x75\x1a\x52\x84\x75\x6c\x5f\x1e\x0e\xf7\xfb\xfa\x1d\xf7\xa8\x15\xfd\x8e\x06\x93" +"\x94\xc5\xc9\xd1\xdd\xad\xb8\x19\x65\xb1\x25\xfb\x0c\x4b\x48\x36\x3e\x19\xdf\x3f\xcc\x46\xf1\xfb\x0b\xb1\xb1\x18\x68\xb8\x46\xdd" +"\x51\xc9\x83\x94\x18\xf9\x8e\x06\x83\x82\x51\x4d\x46\x3a\x68\x5d\x19\xb1\x65\xf1\xf7\x0b\xcc\xd0\xdf\xd7\x19\x36\xd8\x4b\xce\x25" +"\xf7\x0c\x65\x65\x18\xad\x5e\xd1\x39\xc5\x4d\x08\x0e\xf7\xc4\xf7\x2c\xf7\x70\x15\xf9\xaa\xc3\xfd\xaa\x06\x93\x94\xc2\xc6\xd4\xe0" +"\xac\xb7\x19\x65\xb1\x28\xfb\x08\x34\x2f\x4a\x54\x19\xcb\x54\xe3\x2f\xee\xfb\x08\xb1\xb1\x18\x6c\xb4\x45\xdd\x57\xc4\x83\x93\x18" +"\x0e\x3b\xde\xf9\x01\x15\xb3\xa9\xdf\xd3\xc3\xbe\x93\x93\x18\x94\x93\x05\xfd\xaa\xc3\xf9\xaa\x07\x94\x83\x93\x83\xc3\x58\xdf\x43" +"\xb3\x6d\x19\xb1\xb1\xfb\x05\xeb\x2a\xe8\x56\xc9\x19\x56\x4d\x2a\x2e\xfb\x05\x2b\x08\x0e\xf7\xc4\xf9\xdb\xf7\x70\x15\x83\x82\x83" +"\x83\x57\x52\x45\x39\x6c\x62\x19\xb1\x65\xee\xf7\x08\xe3\xe7\xcb\xc2\x19\x4b\xc2\x33\xe7\x28\xf7\x08\x65\x65\x18\xac\x5f\xd5\x35" +"\xc1\x51\x93\x82\x18\xfd\xaa\x53\x06\x0e\x3b\xf8\xa9\xf7\x9f\x15\x63\x6d\x37\x43\x53\x58\x83\x83\x18\x82\x83\x05\xf9\xaa\x53\xfd" +"\xaa\x07\x82\x93\x83\x93\x53\xbe\x37\xd3\x63\xa9\x19\x65\x65\xf7\x05\x2b\xec\x2e\xc0\x4d\x19\xc0\xc9\xec\xe8\xf7\x05\xeb\x08\x0e" +"\xfb\xaf\xf7\x5f\xf9\x42\x15\x35\x48\x48\x36\x35\xcd\x47\xdf\xdf\xcd\xce\xe1\xe1\x4b\xce\x38\x1f\x8a\x52\x15\xbd\xb4\x60\x56\x55" +"\x62\x61\x57\x57\x61\xb6\xbf\xc2\xb5\xb5\xc1\x1f\x0e\x96\xc2\x15\x54\xf8\xa0\xc2\x07\xfb\x7d\xf8\xf3\x39\x0a\xfb\xa4\x9f\x31\x0a" +"\xe5\xfb\x66\x33\x0a\x0e\x47\x0a\xfc\x85\xf9\x13\x35\x0a\xf7\x80\xf7\x9f\x15\xfb\x6f\xfb\x70\xb2\x65\xf7\x6f\xf7\x6f\xf7\x6f\xfb" +"\x6f\xb2\xb1\xfb\x6f\xf7\x70\xf7\x6f\xf7\x6f\x64\xb2\xfb\x6f\xfb\x70\xfb\x6f\xf7\x70\x64\x64\x05\x0e\xa9\xf9\x13\xf8\x31\x15\xfb" +"\x10\x8e\x5f\x77\x35\x2c\x81\x98\x85\x93\x7c\x9a\x08\xc0\x53\x5b\xa2\x4f\x1b\x2d\x46\x4c\x34\x35\xd0\x4c\xe9\xc7\xbb\xa1\xc1\xc3" +"\x1f\x9a\x9a\x91\x93\x95\x99\x08\x37\xd3\xc3\x6e\xe7\x1b\xad\x06\x82\xbf\x3d\x88\x46\xab\x4a\xd0\x19\xcc\xcf\xd1\xab\xd8\x88\x08" +"\xfb\xab\x2a\x15\x46\x50\x5b\x6e\x53\x1b\x4b\x5c\xb4\xc3\xc4\xba\xb4\xcb\xc3\xbd\x6e\x47\xc4\x1f\x0e\xfb\x51\xf6\xf9\x36\x15\xa2" +"\xb8\xab\x94\xae\x1b\xf1\xc5\x2c\xfb\x38\x6e\x89\x73\x86\x5b\x1f\xbd\x4b\x67\x9b\x58\x1b\x5a\x62\x79\x64\x67\x1f\x5f\x5d\x72\x4c" +"\x4d\x1a\xfb\x00\xde\x35\xf3\xd0\xc6\xab\xc9\xb5\x1e\xb9\xcf\xac\xf7\x1a\xf7\x09\x1a\xf7\x08\x69\xe7\x47\xd1\x1e\xbc\x5b\x56\xa2" +"\x4b\x1b\x63\x6a\x84\x76\x53\x1f\xf7\xc0\xfc\x31\x15\x7b\xfb\x03\x81\x60\x71\x58\x08\x56\x71\x60\x6a\x5f\x1b\x54\x6a\xbf\xe1\xf7" +"\x06\xce\xe9\xdc\xb1\xa4\x7e\x61\xb5\x1f\x0e\xfb\x73\xf7\x7d\xf8\x9a\x15\x25\x3a\x3b\x27\x25\xdb\x3a\xef\xf0\xda\xdb\xf1\xef\x3c" +"\xdc\x29\x1f\x0e\xf7\xa5\xf7\x12\x15\x69\x6f\x70\x68\x69\xa6\x6f\xae\xac\xa7\xa7\xad\xad\x6f\xa7\x6a\x1f\xf8\x23\x04\x69\x6f\x70" +"\x68\x69\xa6\x6f\xae\xac\xa7\xa7\xad\xad\x6f\xa7\x6a\x1f\xfb\x9b\xfb\x7b\x15\x54\xf8\xa2\xc2\x07\x0e\xf7\x4f\xf7\x22\x15\x43\xfb" +"\x23\xb9\x73\xe0\xf7\x3b\x05\xf7\xba\xc2\xfb\x9f\x06\xd2\xf7\x1f\x05\xf7\x58\xc2\xfb\x3d\x06\xcf\xf7\x1a\x5c\xa3\x3b\xfb\x32\x05" +"\xfb\xbd\x54\xf7\xa2\x06\x45\xfb\x1f\x05\xfb\x5c\x54\x06\x0e\xf8\xae\xf7\xba\x15\xfc\xa0\x54\xf8\xa0\x06\x2a\x04\xfc\xa0\x54\xf8" +"\xa0\x06\xf7\xfb\x04\xfc\xa0\x54\xf8\xa0\x06\x0e\xf8\x7d\xf7\x8f\x3a\x0a\x6f\x53\x32\x0a\xa7\xc4\xaa\x1f\x65\xf7\x53\x3a\x0a\x70" +"\x52\x32\x0a\xa8\xc4\xaa\x1f\x0e\xf7\xd1\xf7\x3c\xef\x15\x22\x0a\xf7\xe1\x16\x22\x0a\xf7\xe1\x16\x22\x0a\x0e\x3b\xf7\xe4\xfa\x86" +"\x15\x53\xfe\xfe\xc3\x06\x0e\xf7\xd1\x4f\xf7\x70\x15\xfa\xea\xc3\xfe\xea\x06\x0e\x72\xf8\xee\xcf\x15\xf8\xc5\x54\xfc\x8d\xfb\xfe" +"\xdf\x07\xfb\x3e\xfb\x04\xf7\x3e\xfb\x04\x05\xdf\x07\x0e\xf7\x20\xf8\x6c\xf7\xd3\x15\xfb\xac\xf7\xf7\x05\x7f\x74\x86\x75\x73\x1a" +"\x76\x92\x7b\xa3\x6e\x1e\xd7\x2c\x4d\xfb\x07\x05\x76\x64\x81\x6f\x76\x1a\x75\x95\x72\xa2\x66\x1e\xa7\x5d\x8b\x8a\x7e\x1a\x78\x7d" +"\x80\x72\x1e\x78\x48\xe5\x06\xb8\xa9\x8f\x92\x99\x1f\x9f\x96\x96\xa4\xad\x1a\xb7\x81\x9f\x50\xdc\x1e\x65\xbd\x7e\xa9\xab\x1a\xa0" +"\x8f\x97\xa0\xb2\x1e\xf7\xda\xfc\x2e\x05\x97\xa2\x90\x9f\xa0\x1a\xa3\x82\x9d\x6f\xaf\x1e\x61\xc0\x05\x64\xbd\x7f\xa4\xad\x1a\x9e" +"\x92\xa8\x94\xa2\x1e\xbb\xf7\x08\x05\xa3\x06\xa3\x96\x81\x6f\x90\x1f\x94\xac\x8f\xa8\xaa\x1a\xc4\x79\xa1\x5b\x1e\x41\x06\x60\x7d" +"\x97\xaf\x1f\x9b\x07\x6b\x6a\x7c\x67\x5f\x1a\x6d\x94\x71\x99\x7d\x1e\x80\x97\x9a\x87\xad\x1b\xb7\x06\x0e\x8e\x95\xc9\x15\x9d\x78" +"\xa6\x97\x05\x90\x98\x98\x8e\x94\x1b\x97\x93\x88\x7f\xa2\x1f\xf7\x36\x32\x05\x83\x9c\x98\x86\x95\x1b\x9e\xac\x9c\xb3\xc4\x1f\xbb" +"\xae\x05\xc4\xb3\xa8\xbb\xc3\x1a\xa3\x87\x9e\x80\x9e\x1e\x35\xf7\x35\x05\x77\xaf\x81\xa9\xa0\x1a\x9b\x93\x9c\x9c\x9e\x1e\xe7\xf6" +"\x05\xcb\xfb\x0f\x47\xa0\x3b\x1b\xfb\x1d\x28\x34\xfb\x0b\x4e\xa8\x52\xbb\x6c\x1f\xa9\x77\xab\x83\xc6\x88\x8d\xa5\x18\x5f\x8e\x74" +"\x91\x74\x98\x08\x60\xa4\x71\xb9\xbe\x1a\xd5\xcb\xbf\xe5\xc5\xb5\x7f\x59\xf7\x07\x1e\x4a\x3f\x05\x76\x72\x82\x74\x6e\x1a\x72\x92" +"\x73\x9a\x70\x1e\xde\xfb\x2c\x05\x9a\x6f\x93\x72\x73\x1a\x70\x81\x75\x78\x7b\x1e\x7a\x76\x68\x7f\x6f\x1b\x7b\x80\x8e\x98\x74\x1f" +"\xfb\x27\xd9\x05\x94\x7b\x80\x8e\x7f\x1b\x7e\x7f\x87\x81\x7c\x1f\x0e\xf7\x04\xd4\xac\x15\x9e\x7b\x05\x99\xa2\x96\x8f\x98\x1b\x9a" +"\x9a\x83\x77\xa4\x1f\x92\x85\x94\x84\x98\x81\xc0\xa9\xc4\xbe\xba\xc5\x08\xb6\xc4\x98\xb9\xec\x1a\x8c\xd2\x05\xb7\x84\xd4\x7f\xdc" +"\x1e\xcc\xb5\x05\x94\x99\x95\x8e\x95\x1b\x9b\x97\x85\x79\x9f\x1f\xdf\x3f\xfb\x54\xfb\x19\x98\x75\x05\x94\x06\x9c\x98\x83\x7b\x94" +"\x1f\x97\x75\x99\x52\x93\x4b\x9e\xfb\x44\x97\x6d\xcd\x6b\xf7\x02\xe3\x18\x7a\xa2\x05\x83\x77\x82\x88\x82\x1b\x78\x82\x99\xaa\x87" +"\x1f\x6f\xf7\x53\x77\xc9\x56\xd0\xf7\x49\xf7\x15\x18\xfb\x2f\xf7\x1a\x05\x95\x7e\x84\x8f\x83\x1b\x81\x84\x88\x7d\x78\x1f\xfb\x13" +"\x2f\x05\xd8\x65\x5b\xaa\x39\x1b\xfb\x0e\x31\x37\xfb\x07\x69\x94\x6b\x9c\x72\x1f\x99\x74\x9a\x80\xb0\x79\xbb\x73\x18\xa7\x7d\x96" +"\x81\x7f\x1a\x82\x86\x84\x7d\x80\x1e\xa4\x78\xaf\xc1\x05\x92\x96\x8f\x95\x96\x1a\xa1\x7c\x9e\x6e\x99\x1e\x55\xa7\x5e\xa1\x7a\x96" +"\x81\x95\x19\x7b\x9c\x82\xa1\xa3\x1a\xc9\xc4\xbe\xd2\xc2\xb7\x6f\x5b\xa1\x1e\x9a\x69\x98\x33\x40\x1a\x8c\x51\x87\xfb\x25\x7d\x53" +"\x5b\x43\x19\x42\xbe\x05\x91\x83\x85\x8d\x87\x1b\x86\x86\x88\x84\x82\x1f\x0e\xf7\xc4\xf8\x6b\xf8\xd2\x15\x2c\x4b\x67\x6e\x66\x5e" +"\x08\x55\x4a\x70\x4b\x4d\x1a\x64\x92\x72\xa5\x51\x1e\x66\x5c\x7d\x77\x7f\x75\x08\x76\x64\x7f\x60\x65\x1a\x6c\x96\x6d\x9e\x73\x1e" +"\x6f\xa1\xa6\x7f\xb1\x1b\xd4\xb9\xcc\xf2\xc5\x7e\xba\x5a\xf7\x08\x1f\xf7\x59\xf7\x2d\xf5\xe0\xe7\x1b\xc4\xab\x66\x49\x4c\x6f\x38" +"\x5c\x43\x1f\x3d\x58\x53\x64\x4e\x1b\x6a\x70\xa6\xae\x93\x8d\x98\x8e\x99\x1f\x9a\x8a\x05\xa7\xa2\xa0\xa5\xa2\x7b\x9b\x75\x66\x6e" +"\x5f\x54\x43\xb9\x5d\xd2\xd9\xe4\xc1\xde\xc5\x1f\xca\xe5\xa7\xd1\xd2\x1a\xe3\x4f\xc1\x28\x3a\x45\x68\x35\x2f\x1e\x66\x69\x6e\x6a" +"\x3a\x25\x08\x83\xa9\x87\xa4\xa7\x1a\xef\xbd\xda\xf7\x0d\xe4\x1e\xfb\x67\xfc\x61\x15\xba\x30\x9d\x56\x5c\x1a\x72\x83\x73\x7f\x7c" +"\x1e\x80\x82\x80\x87\x77\x1b\x5d\x71\xaf\xcc\xc4\x9c\xb7\xbd\xcf\x1f\x0e\xe0\xf7\x61\xf8\x7e\x15\xf7\x24\xfb\x21\xfb\x24\xfb\x24" +"\xb2\x65\xf7\x24\xf7\x24\xf7\x21\xfb\x24\xb1\xb1\xfb\x21\xf7\x24\xf7\x21\xf7\x21\x65\xb2\xfb\x21\xfb\x21\xfb\x24\xf7\x21\x05\xf7" +"\x27\xf7\x36\x15\xfb\x54\xfb\x30\xfb\x2f\xfb\x53\xfb\x51\xf7\x30\xfb\x30\xf7\x50\xf7\x51\xf7\x31\xf7\x30\xf7\x50\xf7\x50\xfb\x30" +"\xf7\x33\xfb\x4e\x1f\x51\x04\xf7\x31\xf7\x16\xfb\x16\xfb\x31\xfb\x33\xfb\x16\xfb\x15\xfb\x34\xfb\x33\xfb\x16\xf7\x14\xf7\x32\xf7" +"\x36\xf7\x15\xf7\x13\xf7\x37\x1f\x0e\xe0\xf7\xfc\xf8\xde\x15\xfb\x6a\xfb\x64\x54\xf7\x64\xfb\x6a\xc3\xf7\x6a\xf7\x64\xc2\xfb\x64" +"\xf7\x6a\x07\x73\xf2\x15\xfb\x58\xfb\x2d\xfb\x2c\xfb\x56\xfb\x52\xf7\x2e\xfb\x2d\xf7\x54\xf7\x53\xf7\x2d\xf7\x2d\xf7\x54\xf7\x51" +"\xfb\x2e\xf7\x2f\xfb\x4f\x1f\x8c\x56\x15\xf7\x2f\xf7\x15\xfb\x19\xfb\x34\xfb\x33\xfb\x16\xfb\x17\xfb\x33\xfb\x33\xfb\x16\xf7\x17" +"\xf7\x35\xf7\x37\xf7\x16\xf7\x14\xf7\x38\x1f\x0e\xf7\x20\xb2\x98\x15\xb0\x66\xef\xef\x05\x52\xce\xe0\x6b\xe3\x1b\xf7\x5e\xf7\x37" +"\xf7\x37\xf7\x5e\xe4\x6d\xdb\x50\xd2\x1f\xe4\xe4\x66\xb0\x31\x31\x05\xc6\x46\x3a\xa9\x33\x1b\xfb\x5e\xfb\x37\xfb\x37\xfb\x5e\x33" +"\xab\x36\xc4\x4a\x1f\xb2\xb2\x15\x5b\xc6\x72\xce\xd4\x1a\xf7\x3f\xf7\x1f\xf7\x1e\xf7\x3f\xd4\xd2\x71\x5d\xc2\x1e\xb0\x66\x15\xba" +"\x55\xa6\x43\x41\x1a\xfb\x3f\xfb\x1f\xfb\x1e\xfb\x3f\x42\x43\xa5\xba\x54\x1e\x0e\xe0\xf9\x70\x16\xf7\x44\x07\x8a\xe4\x79\xc7\x5f" +"\xc2\x08\xdd\x4a\x27\xb8\xfb\x0a\x1b\xfb\x5d\xfb\x25\xfb\x17\xfb\x4a\x1f\xfb\x56\xc4\x07\x8c\xf7\x5f\x05\xf7\x20\xf7\x11\xf6\xf7" +"\x37\xe5\xdf\x69\x51\xc0\x1e\xb9\x5a\x9b\x5d\x3c\x1a\xfb\x4c\x07\x0e\xe0\xb3\xf8\x7d\x15\xfb\x44\x07\x8c\x32\x9d\x4f\xb7\x54\x08" +"\x39\xcc\xef\x5e\xf7\x0a\x1b\xf7\x5d\xf7\x24\xf7\x17\xf7\x4a\x8c\x1f\xf7\x56\x52\xfb\x5f\x07\xfb\x20\x8a\xfb\x11\x20\xfb\x37\x1b" +"\x31\x37\xad\xc5\x56\x1f\x5d\xbc\x7b\xba\xd9\x1a\xf7\x4c\x07\x0e\xa9\x9f\x16\xf7\xc6\x06\xd0\xab\x8b\x8d\x9c\x1f\xbf\x8e\xb2\x96" +"\xa8\x9d\x08\xce\xb7\xb5\xd7\xdc\x1a\xbc\x7c\xbb\x6f\xb3\x1e\x67\xbe\x5d\xa9\x4f\x95\x08\x91\x69\x78\x8c\xfb\x01\x1b\xfb\xc6\x53" +"\xf7\xc8\x06\xc6\xaa\x8b\x8a\x9a\x1f\xba\x87\xaf\x82\xa2\x7d\x08\xbd\x6b\xa9\x52\x4d\x1a\x63\x7f\x65\x74\x6d\x1e\x71\x66\x6a\x78" +"\x5a\x82\x08\x86\x6a\x79\x8a\x2a\x1b\xfb\xc8\x06\x0e\xa9\x9f\x46\x15\x53\xf9\x1c\xc3\x07\xfd\x1c\xd0\x15\xf7\xc6\x06\xd0\xab\x8b" +"\x8d\x9c\x1f\xbf\x8e\xb2\x96\xa8\x9d\x08\xce\xb7\xb5\xd7\xdc\x1a\xbc\x7c\xbb\x6f\xb3\x1e\x67\xbe\x5d\xa9\x4f\x95\x08\x91\x69\x78" +"\x8c\xfb\x01\x1b\xfb\xc6\x53\xf7\xc8\x06\xc6\xaa\x8b\x8a\x9a\x1f\xba\x87\xaf\x82\xa2\x7d\x08\xbd\x6b\xa9\x52\x4d\x1a\x63\x7f\x65" +"\x74\x6d\x1e\x71\x66\x6a\x78\x5a\x82\x08\x86\x6a\x79\x8a\x2a\x1b\xfb\xc8\x06\x0e\xa9\xf8\xae\xf8\x6a\x15\xab\xd1\x05\x59\x06\x6b" +"\x45\x05\x23\x06\x46\x6b\x4e\x0a\x6d\x50\x0a\x40\xae\x45\xc6\x5e\x1e\xb0\x6f\xb2\x7f\xcf\x87\x6a\x44\x18\xbd\x06\xab\xd1\x05\xf8" +"\x03\xc3\xfb\xe9\x06\xf7\x38\xf7\xfa\x05\xf7\x45\xc3\x06\xfc\x1b\xfc\x31\x15\x52\x8c\x60\x94\x6f\x9c\x30\x0a\xdc\x06\x0e\xa9\xf9" +"\x46\xf8\x6a\x27\x0a\xa9\xb0\x46\x15\x53\xf9\x1c\xc3\x07\x90\xf8\xaf\x27\x0a\xa9\xf0\xf7\x9b\x15\x91\xb2\x9c\xae\xa6\xa5\xb9\xb7" +"\xb3\x93\xf7\x2d\x8a\x08\xf7\x07\xc3\xfb\x05\x06\x47\x6a\x2c\x0a\xf7\x05\xc3\xfb\x07\x06\xfb\x2d\x8a\x63\x93\x5d\xb7\x70\xa5\x7a" +"\xae\x85\xb2\x08\xf8\x28\xc3\x06\x0e\xa9\xf8\x13\xf8\x32\x15\xf7\x0e\xc3\x2d\x06\xaa\xc8\x5c\xa3\x60\x36\x20\x8a\x7d\x8a\x5f\x7b" +"\x19\x39\x6d\x4f\x2f\x2c\x1a\x40\xac\x48\xc7\x5c\x1e\x63\x3b\xb9\x73\xb2\xd9\x05\x79\xc2\xa0\x89\xf7\x19\x1b\xf7\x05\xc3\xfb\x07" +"\x06\xfb\x08\x78\x8c\x99\x5d\x1f\xd0\xf7\x1c\x05\xf7\x77\xc3\xfb\x5b\x06\x9d\xf7\x2b\x15\x3f\xfb\x2b\x05\xfb\x27\x06\x9f\xf3\xcf" +"\xbb\xf7\x12\x8a\x08\xfb\x2b\xfb\xd2\x15\x69\xa6\x75\xb1\x84\xb9\x08\xf7\x0b\x06\x0e\xe0\xa5\x16\xf9\x37\x8a\x8d\xc5\x05\xfc\xaa" +"\x06\xf8\xcd\xf8\xd3\x5e\xb3\x05\x0e\xa9\xf9\x3d\xf9\x43\x15\xfd\x19\x06\xf7\xc3\xfd\x43\x05\xf7\xa3\xf9\x10\x15\xfb\x7e\xfc\x5e" +"\xfb\x67\xf8\x5f\x05\x0e\xf6\xf8\x8b\xf7\x32\x15\xee\x9d\x06\x71\x8d\x80\x92\x72\xa8\x21\xf7\x13\x18\xcc\x95\xb1\xaf\xc0\x1a\xb4" +"\x76\xaa\x65\x9c\x1e\x96\x72\x71\x8f\x54\x1b\xfb\x32\x79\x06\xb9\x88\x92\x84\x66\x1a\xfb\x93\x07\x65\x84\x84\x5d\x88\x1e\x79\xf7" +"\x43\x9d\x07\x5d\x8e\x84\x92\xb1\x1a\xf7\x01\xa6\x07\x70\xf7\x33\x15\xa0\x8d\x8c\xad\xca\xa8\x74\x57\x53\x6b\x75\x3b\x87\x86\x8b" +"\x8c\x84\x1e\xc5\xf7\xdc\x29\x0a\xf7\x17\xf7\x1d\xf7\x36\x1f\x0e\xf6\xf8\xc2\xf8\x27\x15\x86\xf7\x1c\x05\x77\x06\x78\x82\x89\x89" +"\x80\x1b\x86\x85\x8c\x8f\x82\x1f\x96\x6c\x73\x90\x6d\x1b\xfb\x0d\x36\x37\xfb\x0c\xfb\x0a\xdd\x3c\xf7\x0e\xcc\xbc\xa2\xbf\xbb\x1f" +"\x7c\x9c\x05\x5f\x5b\x68\x7c\x56\x1b\x35\x56\xcb\xf3\xf4\xbe\xcb\xdf\xcc\xb6\x67\x46\x9c\x1f\xfb\x21\xf7\xb3\x29\x0a\xf7\x18\xf7" +"\x1d\xf7\x35\x1f\x0e\xf7\x63\xf9\xeb\x20\x0a\xfb\x1a\x06\xfb\x0a\xfb\xb7\xfb\x0b\xf7\xb7\x05\xfb\x0c\x75\x06\xb3\x8c\x8b\x7a\x1f" +"\xfb\xc3\x07\x68\x8a\x85\x86\x61\x1b\x75\xf7\x1b\xa1\x07\x68\x7e\x95\xa8\x8c\x1f\xf7\xa1\x07\xf7\x18\xfb\xde\x05\xa1\x06\xf7\x1f" +"\xf7\xee\x05\xfb\xb6\x07\x70\x89\x81\x84\x63\x1b\x75\xf7\x3e\xa1\x07\x62\x8d\x84\x90\x8a\xa6\x08\xf7\xc9\x07\x8a\x98\x94\x90\xa4" +"\x8a\x08\x9b\x06\xfc\x94\xa1\x15\xfb\xd9\xfb\x02\x9f\x06\x90\xc8\x99\x95\xdd\x8e\x08\x91\xfb\xce\x06\x6f\x8a\x84\x87\x54\x1b\x75" +"\xf7\x55\xa1\x07\x53\x85\x8e\xa6\x8c\x1f\xf7\xd0\x8d\x07\xe2\x8a\x9b\x80\x8c\x4d\x08\xa2\x06\x0e\xf7\x20\xa4\xfb\x10\x15\xf7\xb6" +"\x21\x0a\xf8\xd4\x07\xc9\x8f\xa0\x99\x98\x1e\x9c\x9d\x97\x8c\xf7\x21\x1b\xf7\x23\x97\x8a\x7a\x9d\x1f\x99\x7e\x8f\x76\x4d\x1a\xfc" +"\xd4\x25\x0a\x71\xf7\xb6\x21\x0a\xf8\xe3\x07\x3e\x0a\xfd\x9e\x24\x0a\xfc\xe3\x25\x0a\x06\x0e\xf7\xff\x68\x15\xf7\x2c\xfa\x43\x68" +"\x90\xfb\x13\xfd\xaa\xfb\x59\xf8\x21\xfb\x26\x44\x9b\x68\xea\xba\x05\x0e\xfc\x45\xf7\x0c\xf7\xcb\x15\x6f\x74\x74\x6f\x6f\xa1\x74" +"\xa7\xa7\xa1\xa2\xa7\xa7\x75\xa2\x70\x1f\x0e\xa9\x9a\xf8\x03\x15\x4f\xf8\xf2\xfb\x9f\xc6\xf7\xdb\x07\x0e\x3b\xf7\xc4\xf8\x70\x15" +"\xfb\xad\xfc\x53\xb9\x6d\xf7\x7e\xf8\x07\xf7\x7e\xfc\x06\xb9\xab\x05\x0e\x3b\xf7\xc3\x8a\x15\xf7\xa7\xf8\x53\x5d\xa9\xfb\x78\xfc" +"\x06\xfb\x78\xf8\x05\x5d\x6b\x05\x0e\xf7\xfb\xf7\x85\xf8\x0b\x15\x9d\x9f\x98\x9b\x96\x99\x9e\xa4\x97\x9a\x90\x92\x60\xad\x18\x44" +"\x30\x27\x22\x3d\x49\xdb\x47\xec\x24\x43\x0a\xf8\xcc\x06\x79\x77\x7f\x7c\x7f\x7c\x78\x72\x7f\x7b\x86\x85\xb6\x69\x18\xd3\xe7\xec" +"\xf2\xdb\xcf\x3d\xcd\x27\xf4\x44\xe6\x48\x0a\xfc\xfc\x54\x15\xf9\x2c\x06\xb4\x61\xa3\x74\x99\x80\x7b\x7d\x79\x7a\x5e\x5d\x08\xfd" +"\x2c\x06\x5e\xb8\x78\x9e\x7c\x98\x9a\x97\x92\x92\x9d\x9d\xab\xaa\x18\x0e\xf7\xc4\xfa\x3f\xf7\xd4\x15\xc2\xfd\x4b\x07\x9d\x9f\x98" +"\x9b\x96\x99\x9e\xa4\x97\x9a\x90\x92\x60\xad\x18\x50\x3d\xfb\x07\xfb\x0d\x40\x4c\xda\x48\xed\x23\x43\x0a\xf9\x4b\xc2\xfd\x7a\x06" +"\x88\x8d\x89\x8e\x89\x8d\x80\x96\x80\x96\x80\x95\x7a\x9c\x83\x93\x7c\x98\x9c\x9a\x95\x94\xc0\xc0\x08\x0e\x3b\xf8\x10\xf9\x7a\x15" +"\xfd\x7a\xc2\xf9\x4b\x07\x9f\x7a\x9a\x7e\x9a\x7f\xae\x70\x18\x98\x81\xad\xb6\x3e\xc5\xfb\x10\xf7\x0a\x4c\xd5\x19\x48\x3c\x22\x28" +"\x2f\x43\xad\x60\x18\xb9\xaf\xab\xa5\x9f\x9c\x08\xfd\x4b\xc2\xf9\x7a\x07\x8d\x8e\x8d\x8d\x8e\x8d\x98\x98\x18\x91\x92\x92\x91\x92" +"\x92\x9c\x9c\x92\x93\x98\x9a\x9c\x78\x8b\x8a\xc1\x55\x08\x0e\xf7\xc4\xb8\xf7\x3b\x15\x54\xf9\x4b\x07\x79\x77\x7f\x7c\x7f\x7c\x78" +"\x72\x7f\x7b\x86\x85\xb6\x69\x18\xd3\xe8\xe8\xec\xdf\xd4\x38\xd2\x2c\xee\x44\xe7\x48\x0a\xfd\x4b\x54\x06\xf9\x7a\x8c\x92\x84\xac" +"\x6a\x9c\x7a\x93\x83\x9a\x7f\x19\x7b\x7d\x82\x82\x7c\x7c\x80\x7f\x80\x81\x81\x80\x89\x8a\x89\x88\x87\x88\x08\x0e\x3b\xf7\x7b\xf7" +"\x3b\x15\xf9\x7a\x54\xfd\x4b\x07\x77\x9c\x7c\x98\x7c\x97\x68\xa6\x18\x86\x8f\x88\x8e\x86\x8e\x69\x60\x18\xda\x50\xf7\x0e\xfb\x08" +"\xca\x40\xcd\xd9\xf7\x01\xf2\xe4\xd0\x69\xb6\x18\x5d\x67\x6b\x71\x77\x7a\x08\xf9\x4b\x54\xfd\x7a\x07\x84\x84\x6a\x6a\x7a\x7a\x84" +"\x83\x7e\x7c\x19\x7a\x9e\x8b\x8c\x55\xc1\x08\x0e\xfb\x51\xf7\x65\x16\xc7\x8a\xf7\x59\xf8\x0b\xfb\x51\xf8\x02\x05\x4c\x06\xfb\x58" +"\xfb\xff\x05\xf7\x72\xfb\xd3\x15\xfb\x33\xf7\xd2\xf7\x38\xf7\xc7\xf7\x31\xfb\xca\x05\x0e\xfb\xf6\xf7\x92\xf9\x89\x15\xfb\x79\xfc" +"\x5a\xf7\x79\xfc\x5b\xbf\xa4\xfb\x6b\xf8\x42\xf7\x6b\xf8\x42\x05\x0e\xf6\xf7\x8d\xf8\xa3\x15\xfc\x1a\xbe\xf7\x3c\xe2\x07\xdf\x8a" +"\x9d\x7c\x8f\x3e\x8d\x58\x8d\x7d\x91\x81\x08\xbd\x06\x85\x97\x89\x97\x89\xb2\x89\xdf\x7f\xa2\x59\x9d\x08\xb8\x9e\xa2\xab\xb7\x1a" +"\xb1\x7a\xaa\x6b\x9e\x1e\x99\x76\x71\x90\x61\x1b\xfb\x01\x62\x15\xed\x06\xce\xab\x74\x5c\x5a\x69\x74\x43\x1f\x30\x06\xef\xf7\xe3" +"\x15\xfb\x58\xfb\x2e\x42\x0a\xf7\x53\xf7\x2e\xf7\x2f\xf7\x52\xf7\x51\xfb\x2e\xf7\x31\xfb\x4e\x1f\x8a\x65\x15\xf7\x37\xf7\x1c\xfb" +"\x20\xfb\x3c\xfb\x3d\xfb\x1c\xfb\x1e\xfb\x3b\xfb\x3b\xfb\x1c\xf7\x1e\xf7\x3d\xf7\x40\xf7\x1b\xf7\x1c\xf7\x40\x1f\x0e\xf6\xf8\xa3" +"\xf7\xbc\x15\x3e\x81\x5c\x5f\x42\x1b\x37\x53\xca\xec\xeb\xc3\xcc\xe0\xcc\xba\x68\x50\x97\x1f\xbc\x06\xda\x84\x43\xc5\x2f\x1b\xfb" +"\x07\x3c\x38\xfb\x0d\xfb\x0d\xd8\x39\xf7\x06\xf0\xd2\xcc\xee\x93\x1f\xfb\x46\xf8\x13\x15\xfb\x57\xfb\x2f\x42\x0a\xf7\x52\xf7\x2f" +"\xf7\x2f\xf7\x52\xf7\x51\xfb\x2e\xf7\x31\xfb\x4e\x1f\x8a\x65\x15\xf7\x37\xf7\x1c\xfb\x20\xfb\x3c\xfb\x3d\xfb\x1c\xfb\x1e\xfb\x3b" +"\xfb\x3a\xfb\x1d\xf7\x1e\xf7\x3d\xf7\x40\xf7\x1c\xf7\x1c\xf7\x3f\x1f\x0e\xf2\xf8\xad\xf7\xa9\x15\xf7\x19\xf7\xee\x05\xfb\xee\xc2" +"\xf8\x20\x32\x07\xfb\x08\xfb\xb7\xfb\x02\xf7\xb7\x05\x31\xfc\x20\xc2\xf7\xee\x06\xf7\x15\xfb\xee\x05\xfb\xd8\xf7\xee\x15\xf7\x02" +"\xbd\xfb\xb1\x59\xf7\x04\xfb\xee\xca\x06\x0e\xa9\xf7\x44\xf9\x5b\x15\xf7\xa0\x06\xf7\x08\x8a\xa9\x75\x9b\x26\x08\xa5\x06\x81\xf7" +"\x39\x05\xfc\xeb\x06\xf7\x7d\xfc\x67\xfb\x86\xfc\x2c\x05\xf9\x07\x06\xc1\xf7\x66\x05\x71\x06\x6d\x3b\x69\x78\xfb\x06\x8c\x08\xfb" +"\xdc\x06\xf7\x5d\xf7\xf4\x05\x0e\xfb\xbf\xb3\xfb\xb9\x15\xbf\xf8\x43\x06\xf7\x62\xcd\xf7\x92\xe0\xf7\x0b\x1e\xc8\xe5\xd1\xd3\xc9" +"\xaf\x7d\x96\x18\x32\x5a\x54\x62\x59\x4f\x08\xfb\x0a\xfb\x20\x45\xfb\x78\xfb\x84\x1a\x0e\xfb\xbf\xb3\x3c\x15\xbf\xfa\x80\x57\x06" +"\x0e\xfb\xbf\xb3\xfa\x32\x15\xfc\x61\x07\xfb\x73\xc6\xfb\x65\xf4\xfb\x26\x1e\xc2\x40\xc2\x5e\xf7\x00\x4f\x99\x96\x18\xfb\x71\xf7" +"\x24\xfb\x08\xf7\x9b\x84\xf8\x06\x08\xf8\x43\x07\x0e\xfb\xbf\x3b\x04\xc2\xfa\x4b\xf7\xb2\xc2\xfb\xe9\x06\x0e\xfb\xbf\xfa\x31\x04" +"\xfe\x86\xc2\xfa\x86\x07\x0e\xfb\xbf\xfa\x32\x04\xfe\x82\xf7\xe8\xc2\xfb\xb1\xfa\x4b\x07\x0e\xfb\x51\xf7\x93\x40\x15\xf9\x4a\x07" +"\x89\xf7\x42\xb9\xd2\xf7\x20\xb3\x08\xa1\x07\xfb\x44\x71\x4d\x3f\xfb\x4f\x1a\xfd\x5c\x07\x0e\xfb\x51\xf7\x93\xfa\x3b\x15\x55\xfb" +"\x84\x06\x8e\xfb\x26\x54\x46\xfb\x1b\x78\x08\x4e\x07\xf7\x1b\x78\xc2\x46\x88\xfb\x26\x08\xfb\x8f\xc1\xf7\xa4\x07\x8d\xf7\x1d\x55" +"\xd5\xfb\x15\xac\xf7\x14\xaa\xc3\xd6\x88\xf7\x1d\x08\x0e\xfb\x51\xf7\x93\xfa\x32\x15\x55\xfd\x57\x06\xfb\x4f\xc9\x3f\xf7\x44\x71" +"\x1e\xa1\x07\xfb\x20\xb3\x5d\xd2\x8d\xf7\x42\x08\x0e\xfb\x51\xf7\x5d\xfa\x31\x15\xfe\x80\xc1\xfa\x80\x07\x0e\xfb\xf6\xd4\xf9\x89" +"\x15\x57\x73\xf7\x6b\xfc\x42\xfb\x6b\xfc\x42\xbf\x72\xf7\x79\xf8\x5b\x05\x0e\xfc\x2d\xf7\x48\xf8\xd4\x15\xd8\x8a\xb1\x88\xc2\x1e" +"\x89\xa7\x8a\xa5\x9a\x1a\xb3\x96\xa2\x9d\x91\x90\x89\x87\x8d\x1e\x70\x9c\x92\x85\x9c\x1b\x9f\x9a\x99\x9d\xa6\x73\x9d\x67\x5e\x69" +"\x6e\x5a\x7d\x1f\x7c\x55\x81\x25\x22\x1a\xfb\xed\x07\x43\x8c\x67\x8e\x4e\x1e\x8d\x6e\x8c\x6d\x7b\x1a\x68\x7f\x74\x78\x83\x84\x90" +"\x98\x85\x1e\x9c\x82\x83\x90\x7d\x1b\x77\x7c\x7d\x78\x71\xa3\x79\xaf\xb8\xad\xa8\xbc\x99\x1f\x9a\xc1\x95\xf0\xf5\x1a\x0e\x8e\xf7" +"\xe0\x38\x15\xde\xf8\x68\x06\xf7\x42\xab\xf7\x33\xbe\xd9\x1e\xb9\xa9\xae\xa6\xaa\x1b\x90\x8e\x8a\x89\x92\x1f\x7c\x7e\x85\x80\x7a" +"\x1a\x6d\xa6\x73\xad\xb2\xa6\xa9\xb4\xb9\x67\xad\x5b\x50\x48\x5b\x37\x52\x1e\x3d\xfb\x06\x65\xfb\x29\xfb\x56\x1a\x0e\x8e\xf7\xe0" +"\x33\x15\xde\xfa\xbb\x38\x06\x0e\x8e\xf8\x33\xfa\x2d\x15\x38\xfc\x65\x06\xfb\x42\x6b\xfb\x33\x58\x3d\x1e\x5d\x6d\x68\x70\x6c\x1b" +"\x86\x88\x8c\x8d\x84\x1f\x9a\x98\x91\x96\x9c\x1a\xa9\x70\xa3\x69\x69\x72\x6e\x61\x5d\xac\x69\xb8\xc5\xcd\xbb\xdf\xc5\x1e\xd9\xf7" +"\x06\xb1\xf7\x29\xf7\x56\x1a\x0e\xfb\xbf\xf8\x56\xfb\xb9\x15\xf8\x61\x07\xf7\x73\x4f\xf7\x68\x23\xf7\x23\x1e\x53\xd6\x4f\xbd\x25" +"\xc2\x7d\x80\x18\xc3\x6a\xc6\x52\xc4\x3f\xf4\xfb\x17\xcd\xfb\x80\x8c\xfb\x88\x08\xfc\x43\x07\x0e\xfb\xbf\xf8\x56\xfa\x3b\x15\x57" +"\xfe\x81\xbf\x06\x0e\xfb\xbf\xf8\x56\xfa\x32\x15\x57\xfc\x43\x06\xfb\x70\x4f\xfb\x7c\x31\xfb\x14\x1e\x4e\x32\x46\x44\x4b\x66\x99" +"\x80\x18\xe1\xb9\xc4\xb7\xbe\xc7\x08\xf7\x0a\xf7\x20\xd1\xf7\x78\xf7\x84\x1a\x0e\xfb\xbf\xf7\xfc\x3b\x15\xfa\x82\xfb\xe6\x54\xf7" +"\xaf\xfe\x4b\x07\x0e\xfb\xbf\xf7\xc5\xfa\x31\x15\xfe\x86\xc2\xfa\x86\x07\x0e\xfb\xbf\xf7\xfc\xfa\x32\x15\x54\xfe\x4b\xfb\xb1\x54" +"\xf7\xe8\x06\x0e\xfb\x51\xf7\x5d\x40\x15\xc1\xf9\x5c\x06\xf7\x4f\x4d\xd7\xfb\x44\xa5\x1e\x75\x07\xf7\x20\x63\xb9\x44\x89\xfb\x42" +"\x08\x0e\xfb\x51\xf7\x60\xfa\x3b\x15\xfb\x99\x07\x88\xfb\x1c\xc3\x40\xf7\x15\x6b\xfb\x15\x6a\x53\x41\x8e\xfb\x1d\x08\xfb\xa4\xc1" +"\xf7\x8f\x07\x86\xf7\x25\xc3\xd1\xf7\x1c\x9e\x08\xc8\x07\xfb\x1c\x9e\x53\xd1\x90\xf7\x25\x08\xf7\x84\x07\x0e\xfb\x51\xf7\x5d\xfa" +"\x32\x15\xfd\x45\x07\x8d\xfb\x42\x5d\x44\xfb\x20\x63\x08\x75\x07\xf7\x44\xa5\xc9\xd7\xf7\x4f\x1a\xf9\x57\x07\x0e\xfb\x8e\x8b\x1c" +"\x05\x46\x8b\x06\xc3\x0a\xe3\x0b\xaa\x8e\x8f\x90\x8e\x8e\x8f\x8e\x8e\x9c\x92\x91\x0c\x0c\xb6\x91\x8f\x8e\x95\x8e\x94\x90\x90\x95" +"\x90\x90\x0c\x0d\xf8\xb9\x14\xf9\x3f\x15\xbb\x13\x00\x31\x02\x00\x01\x00\x05\x00\x09\x00\x13\x00\x17\x00\x22\x00\x2c\x00\x3f\x00" +"\x5f\x00\xae\x00\xed\x01\x15\x01\x3e\x01\x58\x01\x61\x01\x6c\x01\x73\x01\x8e\x01\x93\x01\xa2\x01\xbb\x01\xbe\x01\xd4\x01\xd8\x01" +"\xe0\x01\xe4\x01\xf9\x02\x03\x02\x0a\x02\x1d\x02\x30\x02\x3a\x02\x49\x02\x50\x02\x5e\x02\x6b\x02\x78\x02\x84\x02\x90\x02\x9b\x02" +"\xa6\x02\xb1\x02\xb6\x02\xc0\x02\xc5\x02\xce\x02\xd7\x02\xe0\x02\xe9\x02\xf2\xf9\x35\x15\x0b\xa5\x36\x0a\x0b\x49\x0a\xa4\xab\xa9" +"\x72\xa5\x6d\x1f\x0b\x3b\x0a\x71\x0b\x71\x8e\x06\xd1\x87\xa0\x70\x88\x36\x08\x0b\x07\x8e\x36\x76\x70\x45\x87\x08\x88\x0b\x15\x68" +"\x6f\x6f\x69\x68\xa7\x6f\xad\xad\xa7\xa7\xae\xac\x6f\xa8\x6a\x1f\x0b\x15\xfb\xc6\x06\x46\x6b\x2c\x0a\xf7\xc6\xc3\xfb\xc8\x06\x50" +"\x6c\x8b\x8c\x7c\x1f\x5c\x8f\x67\x94\x74\x99\x30\x0a\xf7\xc8\x06\x0e\x15\xfb\x5c\xfb\x21\xfb\x25\xfb\x61\xfb\x5e\xf7\x22\xfb\x27" +"\xf7\x57\xf7\x57\xf7\x22\xf7\x26\xf7\x5f\xf7\x5d\xfb\x22\xf7\x29\xfb\x53\x1f\x81\x64\x15\xb8\xb9\x7a\x6d\xae\x1f\xcb\x56\xae\x2a" +"\xfb\x0e\x1a\xfb\x05\x6c\x2e\x54\x59\x1e\x6e\x6c\x5b\x7a\x5a\x1b\xfb\x1b\x32\xf7\x11\xf7\x51\xf7\x55\xda\xf7\x06\xf7\x1a\x1f\x0e" +"\x15\xfb\x51\xfb\x2f\xfb\x32\xfb\x56\xfb\x56\xf7\x2f\xfb\x31\xf7\x52\xf7\x50\xf7\x31\xf7\x31\xf7\x52\xf7\x5b\xfb\x2c\xf7\x31\xfb" +"\x56\x1f\x5e\x04\xf7\x39\xf7\x16\xfb\x1d\xfb\x41\xfb\x3a\xfb\x19\xfb\x1d\xfb\x35\xfb\x36\xfb\x18\xf7\x1d\xf7\x3d\xf7\x3e\x0b\x15" +"\xb0\x8f\x9d\x92\xa6\x9f\x08\xb2\xa8\x9c\xab\xb6\x1a\xbc\x6a\xb1\x5f\x6d\x74\x72\x6b\x6b\xa2\x71\xa8\x94\x92\x8c\x8f\x99\x1e\x8d" +"\x61\x60\x5e\x5a\x82\x08\x0e\x15\x73\x06\x86\x4f\x79\x7b\x4b\x8c\x08\x69\x06\x4e\x77\x9c\xc5\x88\x1f\x73\xfb\x7a\xa3\x06\x90\xc9" +"\x9a\x98\xce\x8c\x08\xac\x06\xcd\x9a\x7d\x4d\x8f\x1f\xa3\x06\x0b\x4e\x0a\x6e\x50\x0a\x5a\x9a\x5b\xa7\x63\x1e\xaf\x58\xb9\x6d\xc7" +"\x81\x08\x85\xad\x9e\x8a\xf7\x01\x1b\x0b\x3e\x0a\xfb\xb0\x23\x0a\xf7\xb0\x0b\x2f\x0a\xe0\xa0\xa6\xd1\x8f\x08\x8e\xa5\x0b\x37\x0a" +"\xf8\x19\x07\x88\x0b\x08\x59\xab\x6d\xc4\xc9\x1a\xb3\x97\xb1\xa2\xa9\x1e\xa5\xb0\xac\x9e\xbc\x94\x08\x90\xac\x9d\x8c\xec\x1b\x0b" +"\xf8\x7a\x33\x0a\x0b\x63\x1f\xb6\x69\x05\xc0\xb9\x9c\x95\xb2\x41\x0a\xcb\xba\x0b\x15\x9a\x81\xf7\x3a\xf7\x41\x05\x9a\x9c\x90\x94" +"\x99\x1a\xa3\x70\xa1\x6e\x79\x80\x81\x6e\x7d\x1e\x0b\x38\x0a\x0e\x15\x4d\x07\xf8\x36\xfb\x5b\xfc\x36\xfb\x5b\x05\x4d\x07\xf8\x85" +"\xf7\x7d\x05\xc2\x07\x0e\x88\x4d\x0a\x0b\x25\x0a\x71\xf7\xb0\x21\x0a\x0b\x3b\x0a\x06\x0b\x15\x54\xfb\x83\xfb\x81\x54\xf7\x81\xfb" +"\x83\xc2\xf7\x83\xf7\x81\xc2\xfb\x81\x06\x0e\x40\x0a\x42\x73\x90\x6f\x1b\x50\x5c\x0b\x24\x0a\xfc\x19\x25\x0a\x0b\x1a\x72\x7e\x7f" +"\x69\x87\x1e\x71\xf7\x82\xa5\x07\x54\x98\x89\x8d\x5e\xf0\x0b\xd9\x22\xf1\xc8\xb9\xac\xcf\xad\x1e\x47\xad\xb9\x6a\xc8\x1b\xf1\xd9" +"\xf4\x0b\x88\xe0\xa0\xa6\xd1\x8f\x08\x8e\xa5\x0b\x06\xe6\x89\xae\x6d\x99\x32\x08\xa5\x06\x81\xf7\x36\x05\x0b\x46\x0a\xa0\x46\x1f" +"\xa2\x0b\x1b\xa0\x8b\x8b\x70\xe6\x1f\x73\xda\x8f\x8a\xaa\x1b\x0b\xfb\x2d\xfb\x55\xfb\x52\xf7\x2f\xfb\x2f\xf7\x52\x0b\xd3\x2f\xb6" +"\xad\x18\x68\xb8\x71\xab\x7a\x9f\x08\x0b\x1a\x4a\x7f\x4d\x78\x67\x1e\x74\x7f\x72\x7c\x0b\x72\x9a\xa2\x7f\x1f\x78\xaf\x7f\xc9\xcc" +"\x1a\x0b\x15\x57\x5e\x76\x7f\x64\x1b\x78\x80\x8e\x0b\xf8\xa2\xc2\x15\xfc\x85\x54\xf8\x85\x06\x0b\x60\x69\x18\xae\x5f\xa5\x6a\x9c" +"\x77\x08\x0b\x4f\x0a\xaa\xa4\x0b\xa5\x07\x64\x8d\x7b\x98\xa5\x1a\x9b\x0b\xa8\xc4\xaa\x1f\x0e\x06\x45\x8f\x76\xa7\x8e\xdf\x08\x0b" +"\x06\x45\x8f\x76\xa6\x8e\xe0\x08\x0b\x8b\x89\x7a\x1f\x57\x88\x64\x80\x0b\x6b\x72\x72\x6c\x6b\xa4\x72\xaa\x0b\x79\x08\x48\x5f\x61" +"\x3f\x3a\x1a\x0b", 16196 +}; diff --git a/dviware/dvisvgm/src/macros.hpp b/dviware/dvisvgm/src/macros.hpp index 489c4de002..d4091c83b9 100644 --- a/dviware/dvisvgm/src/macros.hpp +++ b/dviware/dvisvgm/src/macros.hpp @@ -2,7 +2,7 @@ ** macros.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/optimizer/AttributeExtractor.cpp b/dviware/dvisvgm/src/optimizer/AttributeExtractor.cpp index 1d1c6579b8..c058f342ef 100644 --- a/dviware/dvisvgm/src/optimizer/AttributeExtractor.cpp +++ b/dviware/dvisvgm/src/optimizer/AttributeExtractor.cpp @@ -2,7 +2,7 @@ ** AttributeExtractor.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/optimizer/AttributeExtractor.hpp b/dviware/dvisvgm/src/optimizer/AttributeExtractor.hpp index 4b53b66551..a0feb09918 100644 --- a/dviware/dvisvgm/src/optimizer/AttributeExtractor.hpp +++ b/dviware/dvisvgm/src/optimizer/AttributeExtractor.hpp @@ -2,7 +2,7 @@ ** AttributeExtractor.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/optimizer/ClipPathReassigner.cpp b/dviware/dvisvgm/src/optimizer/ClipPathReassigner.cpp index 0f684cd7eb..28d9a64346 100644 --- a/dviware/dvisvgm/src/optimizer/ClipPathReassigner.cpp +++ b/dviware/dvisvgm/src/optimizer/ClipPathReassigner.cpp @@ -2,7 +2,7 @@ ** ClipPathReassigner.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -35,12 +35,14 @@ const char* ClipPathReassigner::info () const { /** Returns a hash value for an XML element where the id attribute is not taken into account. * Two elements that differ only by their id attribute get the same hash value. */ static uint64_t hash_value (XMLElement *elem) { - const char *id = elem->getAttributeValue("id"); + string id; + if (const char* idval = elem->getAttributeValue("id")) + id = idval; elem->removeAttribute("id"); ostringstream oss; elem->write(oss); uint64_t value = XXH64HashFunction(oss.str().data(), oss.str().length()).digestValue(); - if (id) + if (!id.empty()) elem->addAttribute("id", id); return value; } diff --git a/dviware/dvisvgm/src/optimizer/ClipPathReassigner.hpp b/dviware/dvisvgm/src/optimizer/ClipPathReassigner.hpp index 6abe6d1e00..8d01a9db78 100644 --- a/dviware/dvisvgm/src/optimizer/ClipPathReassigner.hpp +++ b/dviware/dvisvgm/src/optimizer/ClipPathReassigner.hpp @@ -2,7 +2,7 @@ ** ClipPathReassigner.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/optimizer/DependencyGraph.hpp b/dviware/dvisvgm/src/optimizer/DependencyGraph.hpp index bf1c1cc973..b6bf7ef3db 100644 --- a/dviware/dvisvgm/src/optimizer/DependencyGraph.hpp +++ b/dviware/dvisvgm/src/optimizer/DependencyGraph.hpp @@ -2,7 +2,7 @@ ** DependencyGraph.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/optimizer/GroupCollapser.cpp b/dviware/dvisvgm/src/optimizer/GroupCollapser.cpp index e86313e74b..2eb8746245 100644 --- a/dviware/dvisvgm/src/optimizer/GroupCollapser.cpp +++ b/dviware/dvisvgm/src/optimizer/GroupCollapser.cpp @@ -2,7 +2,7 @@ ** GroupCollapser.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/optimizer/GroupCollapser.hpp b/dviware/dvisvgm/src/optimizer/GroupCollapser.hpp index addf65b4ac..25f3cf23c4 100644 --- a/dviware/dvisvgm/src/optimizer/GroupCollapser.hpp +++ b/dviware/dvisvgm/src/optimizer/GroupCollapser.hpp @@ -2,7 +2,7 @@ ** GroupCollapser.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/optimizer/Makefile.in b/dviware/dvisvgm/src/optimizer/Makefile.in index a100cb9d65..2f1424683a 100644 --- a/dviware/dvisvgm/src/optimizer/Makefile.in +++ b/dviware/dvisvgm/src/optimizer/Makefile.in @@ -88,14 +88,24 @@ PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ -target_triplet = @target@ @HAVE_BROTLI_FALSE@am__append_1 = -I$(dvisvgm_srcdir)/libs/brotli/include @HAVE_BROTLI_FALSE@am__append_2 = ../libs/brotli/libbrotli.a @HAVE_WOFF2_FALSE@am__append_3 = -I$(dvisvgm_srcdir)/libs/woff2/include @HAVE_WOFF2_FALSE@am__append_4 = ../libs/woff2/libwoff2.a subdir = src/optimizer ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__aclocal_m4_deps = $(top_srcdir)/m4/ax_ac_append_to_file.m4 \ + $(top_srcdir)/m4/ax_ac_print_to_file.m4 \ + $(top_srcdir)/m4/ax_add_am_macro_static.m4 \ + $(top_srcdir)/m4/ax_am_macros_static.m4 \ + $(top_srcdir)/m4/ax_check_compile_flag.m4 \ + $(top_srcdir)/m4/ax_code_coverage.m4 \ + $(top_srcdir)/m4/ax_cxx_compile_stdcxx.m4 \ + $(top_srcdir)/m4/ax_file_escapes.m4 \ + $(top_srcdir)/m4/ax_gcc_builtin.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) @@ -220,7 +230,6 @@ CODE_COVERAGE_CFLAGS = @CODE_COVERAGE_CFLAGS@ CODE_COVERAGE_CPPFLAGS = @CODE_COVERAGE_CPPFLAGS@ CODE_COVERAGE_CXXFLAGS = @CODE_COVERAGE_CXXFLAGS@ CODE_COVERAGE_ENABLED = @CODE_COVERAGE_ENABLED@ -CODE_COVERAGE_LDFLAGS = @CODE_COVERAGE_LDFLAGS@ CODE_COVERAGE_LIBS = @CODE_COVERAGE_LIBS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ @@ -336,6 +345,8 @@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ +ifGNUmake = @ifGNUmake@ +ifnGNUmake = @ifnGNUmake@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ @@ -355,11 +366,7 @@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ -target = @target@ target_alias = @target_alias@ -target_cpu = @target_cpu@ -target_os = @target_os@ -target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ @@ -394,9 +401,9 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(srcdir)/../../libs/defs.am $(am_ exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/optimizer/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/optimizer/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu src/optimizer/Makefile + $(AUTOMAKE) --foreign src/optimizer/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ diff --git a/dviware/dvisvgm/src/optimizer/OptimizerModule.hpp b/dviware/dvisvgm/src/optimizer/OptimizerModule.hpp index 94e4c74381..ac69a0cb5e 100644 --- a/dviware/dvisvgm/src/optimizer/OptimizerModule.hpp +++ b/dviware/dvisvgm/src/optimizer/OptimizerModule.hpp @@ -2,7 +2,7 @@ ** OptimizerModule.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/optimizer/RedundantElementRemover.cpp b/dviware/dvisvgm/src/optimizer/RedundantElementRemover.cpp index 7d34bbcd11..7dc17f04a7 100644 --- a/dviware/dvisvgm/src/optimizer/RedundantElementRemover.cpp +++ b/dviware/dvisvgm/src/optimizer/RedundantElementRemover.cpp @@ -2,7 +2,7 @@ ** RedundantElementRemover.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/optimizer/RedundantElementRemover.hpp b/dviware/dvisvgm/src/optimizer/RedundantElementRemover.hpp index ce87bf4751..88c8680d6e 100644 --- a/dviware/dvisvgm/src/optimizer/RedundantElementRemover.hpp +++ b/dviware/dvisvgm/src/optimizer/RedundantElementRemover.hpp @@ -2,7 +2,7 @@ ** RedundantElementRemover.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/optimizer/SVGOptimizer.cpp b/dviware/dvisvgm/src/optimizer/SVGOptimizer.cpp index 4809439c8e..d6a7f35bc4 100644 --- a/dviware/dvisvgm/src/optimizer/SVGOptimizer.cpp +++ b/dviware/dvisvgm/src/optimizer/SVGOptimizer.cpp @@ -2,7 +2,7 @@ ** SVGOptimizer.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/optimizer/SVGOptimizer.hpp b/dviware/dvisvgm/src/optimizer/SVGOptimizer.hpp index 9cd9e64da3..942cff8972 100644 --- a/dviware/dvisvgm/src/optimizer/SVGOptimizer.hpp +++ b/dviware/dvisvgm/src/optimizer/SVGOptimizer.hpp @@ -2,7 +2,7 @@ ** SVGOptimizer.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/optimizer/TextSimplifier.cpp b/dviware/dvisvgm/src/optimizer/TextSimplifier.cpp index 855d88c101..05a5b40c47 100644 --- a/dviware/dvisvgm/src/optimizer/TextSimplifier.cpp +++ b/dviware/dvisvgm/src/optimizer/TextSimplifier.cpp @@ -2,7 +2,7 @@ ** TextSimplifier.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/optimizer/TextSimplifier.hpp b/dviware/dvisvgm/src/optimizer/TextSimplifier.hpp index 8908861366..7d16f59e7a 100644 --- a/dviware/dvisvgm/src/optimizer/TextSimplifier.hpp +++ b/dviware/dvisvgm/src/optimizer/TextSimplifier.hpp @@ -2,7 +2,7 @@ ** TextSimplifier.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/optimizer/TransformSimplifier.cpp b/dviware/dvisvgm/src/optimizer/TransformSimplifier.cpp index 3eca47fc3d..4cf3f67d4a 100644 --- a/dviware/dvisvgm/src/optimizer/TransformSimplifier.cpp +++ b/dviware/dvisvgm/src/optimizer/TransformSimplifier.cpp @@ -2,7 +2,7 @@ ** TransformSimplifier.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/optimizer/TransformSimplifier.hpp b/dviware/dvisvgm/src/optimizer/TransformSimplifier.hpp index 023c9655ea..659a7b5f96 100644 --- a/dviware/dvisvgm/src/optimizer/TransformSimplifier.hpp +++ b/dviware/dvisvgm/src/optimizer/TransformSimplifier.hpp @@ -2,7 +2,7 @@ ** TransformSimplifier.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/optimizer/WSNodeRemover.cpp b/dviware/dvisvgm/src/optimizer/WSNodeRemover.cpp index 864c13905b..9d4dc6d847 100644 --- a/dviware/dvisvgm/src/optimizer/WSNodeRemover.cpp +++ b/dviware/dvisvgm/src/optimizer/WSNodeRemover.cpp @@ -2,7 +2,7 @@ ** WSNodeRemover.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/optimizer/WSNodeRemover.hpp b/dviware/dvisvgm/src/optimizer/WSNodeRemover.hpp index b050b52390..5c7783ed62 100644 --- a/dviware/dvisvgm/src/optimizer/WSNodeRemover.hpp +++ b/dviware/dvisvgm/src/optimizer/WSNodeRemover.hpp @@ -2,7 +2,7 @@ ** WSNodeRemover.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/options.dtd b/dviware/dvisvgm/src/options.dtd index 1b454e3850..43f75b1691 100644 --- a/dviware/dvisvgm/src/options.dtd +++ b/dviware/dvisvgm/src/options.dtd @@ -3,7 +3,7 @@ ** options.dtd ** ** ** ** This file is part of dvisvgm - a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/options.xml b/dviware/dvisvgm/src/options.xml index d39dc17b9b..889fe7f081 100644 --- a/dviware/dvisvgm/src/options.xml +++ b/dviware/dvisvgm/src/options.xml @@ -3,7 +3,7 @@ ** options.xml ** ** ** ** This file is part of dvisvgm - a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -26,7 +26,7 @@ <usage>--eps [options] epsfile</usage> <usage>--pdf [options] pdffile</usage> <description>This program converts DVI files, as created by TeX/LaTeX, as well as\nEPS and PDF files to the XML-based scalable vector graphics format SVG.</description> - <copyright>Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de></copyright> + <copyright>Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de></copyright> </program> <options> <section title="Input options"> @@ -66,6 +66,9 @@ <option long="comments"> <description>add comments with additional information</description> </option> + <option long="embed-bitmaps"> + <description>prevent references to external bitmap files</description> + </option> <option long="font-format" short="f" if="!defined(DISABLE_WOFF)"> <arg type="string" name="format" default="svg"/> <description>set file format of embedded fonts</description> @@ -149,6 +152,9 @@ <arg type="string" name="dir" optional="yes"/> <description>set/print path of cache directory</description> </option> + <option long="debug-glyphs" if="defined(TTFDEBUG)"> + <description>create PS files for all glyphs converted to TTF</description> + </option> <option long="exact-bbox" short="e"> <description>compute exact glyph bounding boxes</description> </option> diff --git a/dviware/dvisvgm/src/psdefs.cpp b/dviware/dvisvgm/src/psdefs.cpp index 8feade148e..e3a8372671 100644 --- a/dviware/dvisvgm/src/psdefs.cpp +++ b/dviware/dvisvgm/src/psdefs.cpp @@ -2,7 +2,7 @@ ** psdefs.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/ttf/CmapTable.cpp b/dviware/dvisvgm/src/ttf/CmapTable.cpp new file mode 100644 index 0000000000..02731b57e9 --- /dev/null +++ b/dviware/dvisvgm/src/ttf/CmapTable.cpp @@ -0,0 +1,131 @@ +/************************************************************************* +** CmapTable.cpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#include <algorithm> +#include "CmapTable.hpp" +#include "TTFWriter.hpp" +#include "../Font.hpp" +#include "../utility.hpp" + +using namespace std; +using namespace ttf; + +void CmapTable::write (ostream &os) const { + writeUInt16(os, 0); // version + writeUInt16(os, 2); // number of encoding tables + + const RangeMap &charmap = ttfWriter()->getUnicodeCharMap(); + bool isUCS2 = (charmap.maxKey() <= 0xFFFF); + uint32_t offset = 4+2*8; // offset to subtable + + writeUInt16(os, 0); // platform ID 0 = Unicode + writeUInt16(os, isUCS2 ? 3 : 4); // encoding ID (Unicode 2.0, UCS-2 or UCS-4) + writeUInt32(os, offset); + + writeUInt16(os, 3); // platform ID 3 = Windows + writeUInt16(os, isUCS2 ? 1 : 10); // encoding ID (UCS-2 or UCS-4) + writeUInt32(os, offset); // platform ID 0 = Unicode + + if (isUCS2) + writeSubTableFormat4(os, charmap); + else + writeSubTableFormat12(os, charmap); +} + + +/** Writes mapping data in subtable format 0 (byte encoding table). */ +void CmapTable::writeSubTableFormat0 (ostream &os, const RangeMap &charmap) const { + writeUInt16(os, 0); // subtable format + writeUInt16(os, 3*2+256); // table length + writeUInt16(os, 0); // language: none + vector<uint8_t> indexes(256, 0); + int count=1; + for (auto cppair : charmap) { + if (cppair.first > 255 || count > 255) + break; + indexes[cppair.first] = uint8_t(count++); + } + for (uint8_t c : indexes) + writeUInt8(os, c); +} + + +/** Writes mapping data in subtable format 4 (segment mapping to delta values, UCS-2). */ +void CmapTable::writeSubTableFormat4 (ostream &os, const RangeMap &charmap) const { + uint16_t numSegments = charmap.numRanges()+1; + uint16_t searchRange = 1 << (util::ilog2(numSegments)+1); + uint16_t entrySelector = util::ilog2(searchRange/2); + uint16_t rangeShift = 2*numSegments - searchRange; + + writeUInt16(os, 4); // subtable format + writeUInt16(os, 8*2+4*2*numSegments); // table length + writeUInt16(os, 0); // language: none + writeUInt16(os, numSegments*2); + writeUInt16(os, searchRange); + writeUInt16(os, entrySelector); + writeUInt16(os, rangeShift); + for (size_t i=0; i < charmap.numRanges(); i++) + writeUInt16(os, charmap.getRange(i).max()); // end character code of current segment + writeUInt16(os, 0xFFFF); // final end character code + writeUInt16(os, 0); // reserved pad + for (size_t i=0; i < charmap.numRanges(); i++) + writeUInt16(os, charmap.getRange(i).min()); // start character code of current segment + writeUInt16(os, 0xFFFF); // final start character code + int count=1; + for (size_t i=0; i < charmap.numRanges(); i++) { + const auto &range = charmap.getRange(i); + int cstart = range.min(); + writeInt16(os, count-cstart); // idDelta of current segment + count += range.numKeys(); + } + writeUInt16(os, 1); // final idRange (maps 0xFFFF to 0) + for (uint16_t i=0; i < numSegments; i++) + writeUInt16(os, 0); // idRangeOffsets = 0 (no offsets into glyphIdArray required) +} + + +/** Writes mapping data in subtable format 6 (trimmed table mapping, UCS-2). */ +void CmapTable::writeSubTableFormat6 (ostream &os, const RangeMap &charmap) const { + writeUInt16(os, 6); // subtable format + writeUInt16(os, 5*2+2*charmap.numValues()); // table length + writeUInt16(os, 0); // language: none + writeUInt16(os, charmap.getRange(0).min()); // first character code + writeUInt16(os, charmap.getRange(0).numKeys()); + for (size_t i=0; i < charmap.getRange(0).numKeys(); i++) + writeUInt16(os, i+1); +} + + +/** Writes mapping data in subtable format 12 (segmented coverage, UCS-4). */ +void CmapTable::writeSubTableFormat12 (ostream &os, const RangeMap &charmap) const { + writeUInt16(os, 12); // subtable format + writeUInt16(os, 0); // reserved + writeUInt32(os, 2*2+3*4+charmap.numRanges()*3*4); // table length + writeUInt32(os, 0); // language + writeUInt32(os, charmap.numRanges()); + uint32_t startIndex=1; + for (size_t i=0; i < charmap.numRanges(); i++) { + const auto &range = charmap.getRange(i); + writeUInt32(os, range.min()); // startCharCode + writeUInt32(os, range.max()); // endCharCode + writeUInt32(os, startIndex); // startGlyphID + startIndex += range.numKeys(); + } +} diff --git a/dviware/dvisvgm/src/ttf/CmapTable.hpp b/dviware/dvisvgm/src/ttf/CmapTable.hpp new file mode 100644 index 0000000000..d9c9eea5ae --- /dev/null +++ b/dviware/dvisvgm/src/ttf/CmapTable.hpp @@ -0,0 +1,43 @@ +/************************************************************************* +** CmapTable.hpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#pragma once +#include <vector> +#include "TTFTable.hpp" + +class RangeMap; + +namespace ttf { + +/** This class provides the functions required to write the character mapping table of a TTF/OTF font. + * https://www.microsoft.com/typography/otspec/cmap.htm */ +class CmapTable : public TTFTable { + public: + uint32_t tag () const override {return name2id("cmap");} + void write (std::ostream &os) const override; + + protected: + void writeSubTableFormat0 (std::ostream &os, const RangeMap &charmap) const; + void writeSubTableFormat4 (std::ostream &os, const RangeMap &charmap) const; + void writeSubTableFormat6 (std::ostream &os, const RangeMap &charmap) const; + void writeSubTableFormat12 (std::ostream &os, const RangeMap &charmap) const; +}; + +} // namespace ttf
\ No newline at end of file diff --git a/dviware/dvisvgm/src/ttf/GlyfTable.cpp b/dviware/dvisvgm/src/ttf/GlyfTable.cpp new file mode 100644 index 0000000000..4005b661e0 --- /dev/null +++ b/dviware/dvisvgm/src/ttf/GlyfTable.cpp @@ -0,0 +1,501 @@ +/************************************************************************* +** GlyfTable.cpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#include <algorithm> +#include <limits> +#include <cmath> +#include <numeric> +#include <sstream> +#include "GlyfTable.hpp" +#include "TTFWriter.hpp" +#include "../Bezier.hpp" +#include "../Font.hpp" + +using namespace std; +using namespace ttf; + +/** Creates a contour by concatenating several contours given in a list. */ +Contour::Contour (std::list<Contour> &&contours) { + if (_pointInfos.empty() && !contours.empty()) { + _pointInfos = std::move(contours.front()._pointInfos); + contours.pop_front(); + } + for (auto it=contours.begin(); it != contours.end(); it=contours.erase(it)) + std::move(it->begin(), it->end(), std::back_inserter(_pointInfos)); +} + + +void Contour::reverse () { + std::reverse(_pointInfos.begin(), _pointInfos.end()); +} + + +/** Converts the absolute coordinates of a Contour to relative ones. */ +void Contour::convertAbsoluteToRelative () { + Pair<int> prevPoint; + for (PointInfo &info : _pointInfos) { + Pair<int> p = info.coords; + info.coords -= prevPoint; + prevPoint = p; + } +} + + +/** Returns an iterator pointing to the next PointInfo object in a vector that isn't marked for removal. + * If there's no such object, the function returns infos.end(). + * @param[in] it current position + * @param[in] infos vector the iterator belongs to */ +static vector<PointInfo>::iterator next (vector<PointInfo>::iterator it, const vector<PointInfo> &infos) { + do + ++it; + while (it != infos.end() && it->removed()); + return it; +} + + +/** Reduces the number of contour points without affecting the appearance significantly. */ +void Contour::reduceNumberOfPoints () { + if (_pointInfos.size() > 2) { + for (auto it1 = _pointInfos.begin(); it1+2 != _pointInfos.end(); ++it1) { + auto it2 = it1+1; + auto it3 = it2+1; + bool remove=false; + if (it1->oncurve() && it2->offcurve() && it3->oncurve()) { + // remove off-curve points that are close to an on-curve point + Pair<int> diff12 = it1->coords - it2->coords; + Pair<int> diff23 = it2->coords - it3->coords; + int sqrdist12 = diff12.x()*diff12.x() + diff12.y()*diff12.y(); + int sqrdist23 = diff23.x()*diff23.x() + diff23.y()*diff23.y(); + remove = (sqrdist12 < 4 || sqrdist23 < 4); + if (!remove) { + // remove in-between off-curve points that are very close to + // the line through the two adjacent on-curve points (curve height <= 0.5) + // distance(line(p1,p3), p2) = |det(p1-p3, p1-p2)| / |p1-p3| + Pair<int> diff13 = it1->coords - it3->coords; + DPair extremum = QuadBezier(it1->coords, it2->coords, it3->coords).valueAt(0.5); + int sqrdist13 = diff13.x()*diff13.x() + diff13.y()*diff13.y(); + double det1312 = det(DPair(diff13), DPair(it3->coords)-extremum); + remove = (sqrdist13 == 0 || det1312/sqrdist13*det1312 < 0.25); + } + } + else if (it2->offcurve() || (it1->oncurve() && it3->oncurve())) { + // remove in-between points located on same line + Pair<int> diff13 = it3->coords - it1->coords; + Pair<int> diff12 = it2->coords - it1->coords; + int sqrdist13 = diff13.x()*diff13.x() + diff13.y()*diff13.y(); + double det1312 = det(diff13, diff12); + remove = (sqrdist13 == 0 || det1312/sqrdist13*det1312 < 1); + } + else if (it1->offcurve() && it2->oncurve() && it3->offcurve()) { + // remove on-curve points located (almost) halfway between two off-curve points + Pair<int> mid = DPair(it1->coords + it3->coords)/2.0; + Pair<int> vec = mid - it2->coords; + double dist2 = vec.x()*vec.x() + vec.y()*vec.y(); + remove = (dist2 < 2.25); // remove point if dist < 1.5 + } + if (remove) + it2->markForRemoval(); + } + } + // remove duplicate points, prefer control (off-curve) points + for (auto it1 = _pointInfos.begin(); it1 != _pointInfos.end(); it1=next(it1, _pointInfos)) { + auto it2 = next(it1, _pointInfos); + if (it2 == _pointInfos.end()) + it2 = _pointInfos.begin(); + if (it1->oncurve() && it2->oncurve() && (it1->coords-it2->coords).length() < 6) { + auto i1=it1, i2=it2; + if (i1 == _pointInfos.begin()) + swap(i1, i2); + i2->coords = DPair(i1->coords+i2->coords)/2.0; + i1->markForRemoval(); + } + else if (it1->coords == it2->coords) { + if (it1->offcurve() || it2 == _pointInfos.begin()) + it1->markForRemoval(); + else + it2->markForRemoval(); + } + } + // actually remove marked points from vector + _pointInfos.erase( + remove_if(_pointInfos.begin(), _pointInfos.end(), [](const PointInfo &pi) { + return pi.removed(); + }), + _pointInfos.end()); +} + + +/** Bits of the "Simple Glyph Flags". See section "Simple Glyph Description" of glyf table documentation. */ +enum : uint8_t { + ON_CURVE_PT = 1, ///< if set, corresponing point is on the curve, otherwise off the curve (= control point) + X_SHORT = 2, ///< if set, the corresponding x-coordinate is 1 byte long, otherwise it's two bytes long + Y_SHORT = 4, ///< if set, the corresponding y-coordinate is 1 byte long, otherwise it's two bytes long + REPEAT_FLAG = 8, ///< if set, the next byte specifies the number of additional times this flag is to be repeated + X_IS_SAME_OR_POSITIVE_SHORT = 16, ///< if X_SHORT set: indicates if value >0, else if x-coord equals prev. one + Y_IS_SAME_OR_POSITIVE_SHORT = 32 ///< if Y_SHORT set: indicates if value >0, else if y-coord equals prev. one +}; + + +/** Computes the "simple glyph flags" (except the repeat flag) for a given contour. + * The function expects the contour points to be relative to the respective preceding point. + * In order to simplify checking the equality of two flag bytes, which requires to + * exclude the repeat flag, this function does not set the repeat flag. */ +vector<uint8_t> Contour::glyphFlags () const { + vector<uint8_t> flags(_pointInfos.size()); + for (size_t i=0; i < _pointInfos.size(); i++) { + flags[i] = _pointInfos[i].oncurve() ? ON_CURVE_PT : 0; + if (_pointInfos[i].coords.x() == 0) + flags[i] |= X_IS_SAME_OR_POSITIVE_SHORT; + else if (abs(_pointInfos[i].coords.x()) <= 0xff) { // x-coordinate 1 byte long? + flags[i] |= X_SHORT; + if (_pointInfos[i].coords.x() > 0) // positive x-coordinate? + flags[i] |= X_IS_SAME_OR_POSITIVE_SHORT; + } + if (_pointInfos[i].coords.y() == 0) + flags[i] |= Y_IS_SAME_OR_POSITIVE_SHORT; + else if (abs(_pointInfos[i].coords.y()) <= 0xff) { // y-coordinate 1 byte long? + flags[i] |= Y_SHORT; + if (_pointInfos[i].coords.y() > 0) // positive y-coordinate? + flags[i] |= Y_IS_SAME_OR_POSITIVE_SHORT; + } + } + return flags; +} + + +//////////////////////////////////////////////////////////////////////////////////////////////// + + +/** Writes the contours describing the glyphs to a given stream. + * The glyphs must be ordered by the local glyph index used in the generated TTF font. + * In order to get compact mapping tables, we ensure that a greater glyph index also + * indicates a greater Unicode point (idx1 > idx2 <=> cp1 > cp2). */ +void GlyfTable::write (ostream &os) const { + // add offset for .notdef character + size_t offset = 0; + ttfWriter()->addGlyphOffset(0); + ttfWriter()->updateGlobalBbox(0, 0, 0, 0, 0); + // iterate in ascending Unicode point order over all characters to be added to the TTF + for (auto cp2charcode : ttfWriter()->getUnicodeCharMap()) { + ttfWriter()->addGlyphOffset(offset); // update loca table + offset += writeGlyphContours(os, cp2charcode.second); + } + ttfWriter()->addGlyphOffset(offset); // add extra offset after last valid one +} + + +/** Writes the contour data of a single glyph to a given output stream. + * @param[in] os stream to write to + * @param[in] charcode character code of glyph in current font + * @return number of bytes written */ +size_t GlyfTable::writeGlyphContours (ostream &os, uint32_t charcode) const { + list<Contour> contours = computeContours(charcode); + if (contours.empty()) { + ttfWriter()->updateGlobalBbox(charcode, 0, 0, 0, 0); + return 0; + } + ttfWriter()->updateContourInfo(contours.size(), + std::accumulate(contours.begin(), contours.end(), size_t(0), [](size_t sum, const Contour &contour) { + return sum + contour.numPoints(); + })); + auto offset = os.tellp(); + // glyph header + writeInt16(os, int16_t(contours.size())); // numberOfContours + + int xmin, xmax, ymin, ymax; + computeBbox(contours, xmin, ymin, xmax, ymax); + ttfWriter()->updateGlobalBbox(charcode, xmin, ymin, xmax, ymax); + writeInt16(os, xmin); + writeInt16(os, ymin); + writeInt16(os, xmax); + writeInt16(os, ymax); + + // write indices of endpoints of each contour + size_t endPtsOfContours = 0; + for (const Contour &contour : contours) { + endPtsOfContours += contour.numPoints(); + writeUInt16(os, endPtsOfContours-1); + } + writeUInt16(os, 0); // instructionLength + + Contour combinedContour(std::move(contours)); + combinedContour.convertAbsoluteToRelative(); + + // write contour flags + vector<uint8_t> flags = combinedContour.glyphFlags(); + for (auto first=flags.begin(); first != flags.end(); ++first) { + auto last = std::find_if(first+1, flags.end(), [&first](uint8_t flagbyte) { + return flagbyte != *first; + }); + if (--last == first) // run-length == 0? + writeUInt8(os, *first); + else { + writeUInt8(os, (*first) | REPEAT_FLAG); // write flag only once and + writeUInt8(os, last-first); // append number of additional repeats + first = last; + } + } + // write x-coordinates + for (size_t i=0; i < combinedContour.numPoints(); i++) { + if (flags[i] & X_SHORT) // short (one byte) x coordinate? + writeUInt8(os, abs(combinedContour[i].coords.x())); + else if ((flags[i] & X_IS_SAME_OR_POSITIVE_SHORT) == 0) // does long x-coordinate differ from previous one? + writeInt16(os, int16_t(combinedContour[i].coords.x())); + } + // write y-coordinates + for (size_t i=0; i < combinedContour.numPoints(); i++) { + if (flags[i] & Y_SHORT) // short (one byte) y coordinate? + writeUInt8(os, abs(combinedContour[i].coords.y())); + else if ((flags[i] & Y_IS_SAME_OR_POSITIVE_SHORT) == 0) // does long y-coordinate differ from previous one? + writeInt16(os, int16_t(combinedContour[i].coords.y())); + } + // ensure that the number of glyph data bytes is a multiple of 4 (pad at dword boundary) + for (int i = (1 + ~(os.tellp()-offset)) & 3; i > 0; i--) + writeUInt8(os, 0); + return os.tellp()-offset; +} + + +/** Computes the absolute global bounds of multiple contours. + * @param[in] contours point data with absolute coordinates */ +void GlyfTable::computeBbox (const list<Contour> &contours, int &xmin, int &ymin, int &xmax, int &ymax) { + if (contours.empty()) + xmin = xmax = ymin = ymax = 0; + else { + xmin = ymin = numeric_limits<int16_t>::max(); + xmax = ymax = numeric_limits<int16_t>::min(); + for (const Contour &contour : contours) { + for (const PointInfo &info : contour) { + const auto &p = info.coords; + xmin = min(xmin, p.x()); + xmax = max(xmax, p.x()); + ymin = min(ymin, p.y()); + ymax = max(ymax, p.y()); + } + } + } +} + + +static Glyph::Point to_point (const DPair &p) { + return Glyph::Point(int(std::round(p.x())), int(std::round(p.y()))); +} + + +struct GlyphToContourActions : Glyph::IterationActions { + GlyphToContourActions (list<Contour> &cnts, double s) : contours(cnts), scale(s) {} + + void moveto (const Glyph::Point &p) override { + contours.emplace_back(Contour()); + add(p, true); + } + + void lineto (const Glyph::Point &p) override { + if (contours.empty()) + moveto(currentPoint()); // (0, 0) + if (p != currentPoint()) + add(p, true); + } + + void quadto (const Glyph::Point &p1, const Glyph::Point &p2) override { + if (contours.empty()) + moveto(currentPoint()); // (0, 0) + // if the maximum distance between the curve and the line through p0 and p2 is < 0.5, + // treat the curve as a line + DPair extremum = QuadBezier(currentPoint(), p1, p2).valueAt(0.5); + double height = det(DPair(currentPoint()-p2), DPair(currentPoint())-extremum)/(currentPoint()-p2).length(); + if (p1 != currentPoint() && abs(height) >= 0.5 && p2 != currentPoint()) + add(p1, false); + if (p2 != currentPoint()) + add(p2, true); + } + + void cubicto (const Glyph::Point &p1, const Glyph::Point &p2, const Glyph::Point &p3) override { + // approximate cubic Bézier curve with a sequence of quadratic ones + CubicBezier cubic( + DPair(currentPoint().x(), currentPoint().y()), + DPair(p1.x(), p1.y()), + DPair(p2.x(), p2.y()), + DPair(p3.x(), p3.y()) + ); + vector<QuadBezier> quadBeziers = cubic.toQuadBeziers(0.8); + for (const QuadBezier &quad : quadBeziers) + quadto(to_point(quad.point(1)), to_point(quad.point(2))); + } + + void add (const Glyph::Point &p, bool oncurve) { + contours.back().append(PointInfo(scale*p.x(), scale*p.y(), oncurve)); + } + + list<Contour> &contours; + double scale; +}; + + +/** Returns a sequence of contours describing the glyph of a given character. + * The contour points are stored with absolute coordinates. */ +list<Contour> GlyfTable::computeContours (uint32_t charcode) const { + list<Contour> contours; + Glyph glyph; + if (ttfWriter()->getFont().getGlyph(int(charcode), glyph, ttfWriter()->getTracerCallback())) { + if (!glyph.empty()) { + GlyphToContourActions actions(contours, ttfWriter()->unitsPerEmFactor()); + glyph.iterate(actions, false); + for (auto it = contours.begin(); it != contours.end();) { + it->reverse(); // TTF contours must be clockwise-oriented + it->reduceNumberOfPoints(); + if (it->numPoints() < 3) + it = contours.erase(it); + else + ++it; + } + } +#ifdef TTFDEBUG + if (TTFWriter::CREATE_PS_GLYPH_OUTLINES) { + string fontname = ttfWriter()->getFont().name(); + ostringstream oss; + oss << "g-" << ttfWriter()->getFont().name() << '-'; + oss << setw(4) << setfill('0') << charcode; + oss << ".eps"; + ofstream ofs(oss.str()); + writePS(ofs, contours, charcode); + } +#endif + } + return contours; +} + + +#if 0 +/** Creates a contour for the .notdef character. */ +Contour GlyfTable::getNotDefContour () const { + Contour contour; + const PhysicalFont &font = ttfWriter()->getFont(); + double extend = font.style() ? font.style()->extend : 1; + double scale = ttfWriter()->unitsPerEmFactor(); + int base = int(round(scale*extend*(font.ascent()+font.descent()))); + Pair<int> pmin(base/30, 0); + Pair<int> pmax(3*base/5, 2*base/3); + contour.append(PointInfo(pmin.x(), pmin.y())); + contour.append(PointInfo(pmin.x(), pmax.y())); + contour.append(PointInfo(pmax.x(), pmax.y())); + contour.append(PointInfo(pmax.x(), pmin.y())); + return contour; +} +#endif + + +#ifdef TTFDEBUG +/** Creates PostScript code from a list of contours that describe the outline of a single glyph. + * This is just required for analysis and debugging purposes. */ +void GlyfTable::writePS (ostream &os, const list<Contour> &contours, uint32_t charcode) const { + os << "%!PS-Adobe-3.0 EPSF-3.0\n" + << "%%BoundingBox: (atend)\n" + << "/dot {moveto gsave 5 setlinewidth 1 setlinecap currentpoint lineto stroke grestore} bind def\n" + << "/oncurvedot {dot} bind def\n" + << "/offcurvedot {gsave 0 1 0 setrgbcolor dot grestore} bind def\n" + << "/Helvetica findfont 8 scalefont setfont\n\n"; + auto &font = ttfWriter()->getFont(); + os << "% Font: " << font.name() << " at " << font.designSize() << "pt, " << font.unitsPerEm() << " units per em\n" + << "% Glyph: " << charcode << "\n"; + Pair<int> llp(numeric_limits<int>::max(), numeric_limits<int>::max()); + Pair<int> urp(numeric_limits<int>::min(), numeric_limits<int>::min()); + size_t count=0, numPoints=0; + for (const Contour &contour : contours) { + os << "\n% contour " << ++count << ", " << contour.numPoints() << " points\n"; + contour.writePS(os); + numPoints += contour.numPoints(); + } + int minx, miny, maxx, maxy; + computeBbox(contours, minx, miny, maxx, maxy); + os << minx << " " << maxy+30 + << " moveto (Glyph " << charcode << " of font " << font.name() << ", " + << contours.size() << " contour" << (contours.size() > 1 ? "s" : "") << ", " << numPoints << " points) show\n"; + os << "%%Trailer\n" + << "%%BoundingBox: " << minx-10 << " " << miny-10 << " " << maxx+10 << " " << maxy+50 << "\n"; +} + + +static ostream& write (ostream &os, const Pair<int> &p) { + return os << p.x() << " " << p.y(); +} + +template <typename ...Ts> +static ostream& write (ostream &os, const Pair<int> &p, const Ts& ...args) { + write(os, p) << " "; + return write(os, args...); +} + + +void Contour::writePS (ostream &os) const { + if (_pointInfos.empty()) + return; + auto p0 = _pointInfos[0].coords; + write(os, p0) << " moveto\n"; + for (size_t i=1; i <= _pointInfos.size(); i++) { + size_t imod = i % _pointInfos.size(); + auto pi1 = _pointInfos[imod]; + if (pi1.oncurve() && i == _pointInfos.size()) + os << "closepath\n"; + else + write(os, pi1.coords) << " "; + if (pi1.oncurve()) { + if (i < _pointInfos.size()) { + auto v = pi1.coords-p0; + os << " lineto % " << i << "; len=" << v.length() + << "; " << math::rad2deg(atan2(v.y(), v.x())) << "°\n"; + } + p0 = pi1.coords; + } + else { + auto p1 = pi1.coords; + auto pi2 = _pointInfos[(i+1) % _pointInfos.size()]; + auto p2 = pi2.oncurve() ? pi2.coords : (p1+pi2.coords)/2; + DPair v1 = p1-p0, v2 = p1-p2; + Pair<int> c1 = DPair(p0) + round(v1*2.0/3.0); + Pair<int> c2 = DPair(p2) + round(v2*2.0/3.0); + QuadBezier bezier(p0, p1, p2); + double cordlen = (p2-p0).length(); + double arclen = bezier.arclen(); + DPair extremum = bezier.valueAt(0.5); + double height = det(DPair(p0-p2), DPair(p0)-extremum)/(p0-p2).length(); + write(os, c1, c2, p2) << " curveto" + << " % " << i + << "; (" << math::rad2deg(atan2(v1.y(), v1.x())) << "°," << math::rad2deg(atan2(v2.y(), v2.x())) << "°)" + << "; cordlen=" << cordlen + << "; arclen=" << arclen + << "; quot=" << cordlen/arclen + << "; diff=" << arclen-cordlen + << "; height=" << height + << "\n"; + p0 = p2; + if (pi2.oncurve()) + i++; + } + } + os << "stroke\n"; + for (size_t i=0; i < _pointInfos.size(); i++) { + auto p = _pointInfos[i].coords; + write(os, p) << " 2 copy " + << (_pointInfos[i].oncurve() ? "on" : "off") << "curvedot " + << "moveto (" << i << ") show\n"; + } +} +#endif diff --git a/dviware/dvisvgm/src/ttf/GlyfTable.hpp b/dviware/dvisvgm/src/ttf/GlyfTable.hpp new file mode 100644 index 0000000000..5ff80559a5 --- /dev/null +++ b/dviware/dvisvgm/src/ttf/GlyfTable.hpp @@ -0,0 +1,96 @@ +/************************************************************************* +** GlyfTable.hpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#pragma once +#include <cmath> +#include <list> +#include <ostream> +#include <vector> +#include "TTFTable.hpp" +#include "../Pair.hpp" + +namespace ttf { + +struct PointInfo { + enum State {OFFCURVE, ONCURVE, REMOVED}; + + PointInfo (double x, double y, bool oncurve) : coords(std::round(x), std::round(y)), state(oncurve ? ONCURVE : OFFCURVE) {} + PointInfo (int x, int y) : coords(x, y), state(ONCURVE) {} + bool oncurve () const {return state == ONCURVE;} + bool offcurve () const {return state == OFFCURVE;} + bool removed () const {return state == REMOVED;} + void markForRemoval () {state = REMOVED;} + Pair<int> coords; ///< relative coordinates to previous one in contour + State state; +}; + + +class Contour { + friend class GlyfTable; + using Iterator = std::vector<PointInfo>::iterator; + using ConstIterator = std::vector<PointInfo>::const_iterator; + public: + Contour () =default; + Contour (Contour &&contour) =default; + Contour (std::list<Contour> &&contours); + Contour (const Contour &contour) =delete; + Iterator begin () {return _pointInfos.begin();} + Iterator end () {return _pointInfos.end();} + ConstIterator begin () const {return _pointInfos.begin();} + ConstIterator end () const {return _pointInfos.end();} + size_t numPoints () const {return _pointInfos.size();} + const PointInfo& operator [] (size_t pos) const {return _pointInfos[pos];} + bool empty () const {return _pointInfos.empty();} + std::vector<uint8_t> glyphFlags () const; + void reverse (); + void reduceNumberOfPoints (); + void append (PointInfo &&pinfo) {_pointInfos.emplace_back(std::move(pinfo));} + void reserve (size_t n) {_pointInfos.reserve(n);} + + protected: + void convertAbsoluteToRelative (); +#ifdef TTFDEBUG + void writePS (std::ostream &os) const; +#endif + + private: + std::vector<PointInfo> _pointInfos; +}; + + +/** This class provides the functions required to write the glyf data table of a TTF/OTF font. + * https://www.microsoft.com/typography/otspec/glyf.htm */ +class GlyfTable : public TTFTable { + public: + uint32_t tag () const override {return name2id("glyf");} + void write (std::ostream &os) const override; + + protected: + std::vector<Contour> computeContours () const; + std::list<Contour> computeContours (uint32_t charcode) const; + static void computeBbox (const std::list<Contour> &contours, int &xmin, int &ymin, int &xmax, int &ymax); + size_t writeGlyphContours (std::ostream &os, uint32_t charcode) const; +// Contour getNotDefContour () const; +#ifdef TTFDEBUG + void writePS (std::ostream &os, const std::list<Contour> &contours, uint32_t charcode) const; +#endif +}; + +} // namespace ttf
\ No newline at end of file diff --git a/dviware/dvisvgm/src/ttf/HeadTable.cpp b/dviware/dvisvgm/src/ttf/HeadTable.cpp new file mode 100644 index 0000000000..fff759898a --- /dev/null +++ b/dviware/dvisvgm/src/ttf/HeadTable.cpp @@ -0,0 +1,78 @@ +/************************************************************************* +** HeadTable.cpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#include <cmath> +#include <chrono> +#include <ctime> +#include <utility> +#include "HeadTable.hpp" +#include "TTFWriter.hpp" + +using namespace std; +using namespace ttf; + + +void HeadTable::updateGlobalBbox (int16_t xmin, int16_t ymin, int16_t xmax, int16_t ymax) { + if (xmin < _xMin) _xMin = xmin; + if (ymin < _yMin) _yMin = ymin; + if (xmax > _xMax) _xMax = xmax; + if (ymax > _yMax) _yMax = ymax; +} + + +/** Returns the number of seconds elapsed since 1.1.1904 00:00:00 until now. + * @return number of seconds separated in upper and lower dword of a 64-bit value */ +static pair<uint32_t,uint32_t> seconds_since_1904 () { + auto now = chrono::system_clock::now(); + time_t now_time = chrono::system_clock::to_time_t(now); + struct tm *comp = gmtime(&now_time); + util::Date date1(1904, 1, 1); + util::Date date2(comp->tm_year+1900, comp->tm_mon+1, comp->tm_mday); + uint64_t days = date2 - date1 - 1; + uint64_t seconds = ((days*24 + comp->tm_hour)*60 + comp->tm_min)*60 + comp->tm_sec; + return {uint32_t(seconds >> 32), uint32_t(seconds & 0xffffffff)}; +} + + +/** Writes the head table to a given output stream. + * https://docs.microsoft.com/en-us/typography/opentype/spec/head */ +void HeadTable::write (ostream &os) const { + writeUInt16(os, 1); // major version + writeUInt16(os, 0); // minor version + writeUInt32(os, 0x10000); // font revision (1.0) + writeUInt32(os, 0); // global checksum, computed and set by TTFWriter + writeUInt32(os, 0x5F0F3CF5); // magic number + writeUInt16(os, 1+2); // flags (baseline at y=0, left sidebearing point at x=0) + writeUInt16(os, uint16_t(std::round(ttfWriter()->targetUnitsPerEm()))); + auto seconds = seconds_since_1904(); + writeUInt32(os, seconds.first); // creation time, upper dword + writeUInt32(os, seconds.second); // creation time, lower dword + writeUInt32(os, seconds.first); // modification time, upper dword + writeUInt32(os, seconds.second); // modification time, lower dword + writeInt16(os, _xMin); + writeInt16(os, _yMin); + writeInt16(os, _xMax); + writeInt16(os, _yMax); + writeUInt16(os, 0); // macStyle + writeUInt16(os, 8); // smallest readable size in pixels + writeInt16(os, 2); // fontDirectionHint (deprecated, always 2) + writeInt16(os, _indexToLocFormat); + writeInt16(os, 0); // glyphDataFormat +} diff --git a/dviware/dvisvgm/src/ttf/HeadTable.hpp b/dviware/dvisvgm/src/ttf/HeadTable.hpp new file mode 100644 index 0000000000..6c51957ba0 --- /dev/null +++ b/dviware/dvisvgm/src/ttf/HeadTable.hpp @@ -0,0 +1,49 @@ +/************************************************************************* +** HeadTable.hpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#pragma once + +#include <limits> +#include "TTFTable.hpp" + +namespace ttf { + +/** This class provides the functions required to write the font header table of a TTF/OTF font. + * https://www.microsoft.com/typography/otspec/head.htm */ +class HeadTable : public TTFTable { + friend class TTFWriter; + public: + uint32_t tag () const override {return name2id("head");} + void updateGlobalBbox (int16_t xmin, int16_t ymin, int16_t xmax, int16_t ymax); + void write (std::ostream &os) const override; + static int offsetToChecksum () {return 2+2+4;} + + protected: + void setLongOffsetFormat () {_indexToLocFormat = 1;} + + private: + int16_t _xMin = std::numeric_limits<int16_t>::max(); + int16_t _yMin = std::numeric_limits<int16_t>::max(); + int16_t _xMax = std::numeric_limits<int16_t>::min(); + int16_t _yMax = std::numeric_limits<int16_t>::min(); + int16_t _indexToLocFormat = 0; // 0: short (16-bit) format, 1: long (32-bit) format +}; + +} // namespace ttf diff --git a/dviware/dvisvgm/src/ttf/HheaTable.cpp b/dviware/dvisvgm/src/ttf/HheaTable.cpp new file mode 100644 index 0000000000..76a41d86da --- /dev/null +++ b/dviware/dvisvgm/src/ttf/HheaTable.cpp @@ -0,0 +1,67 @@ +/************************************************************************* +** HheaTable.cpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#include "HheaTable.hpp" +#include "TTFWriter.hpp" +#include "../Font.hpp" + +using namespace std; +using namespace ttf; + + +void HheaTable::write (ostream &os) const { + const PhysicalFont &font = ttfWriter()->getFont(); + double scale = ttfWriter()->unitsPerEmFactor(); + writeUInt16(os, 1); // major version + writeUInt16(os, 0); // minor version + writeInt16(os, round(font.ascent()*scale)); + writeInt16(os, round(-font.descent()*scale)); + writeInt16(os, 0); // line gap + writeUInt16(os, _advanceWidthMax); + writeInt16(os, _minLeftSideBearing); + writeInt16(os, _minRightSideBearing); + writeInt16(os, _xMaxExtent); + writeInt16(os, 1); // caretSlopeRise (1 = vertical) + writeInt16(os, 0); // caretSlopeRun (0 = vertical) + writeInt16(os, 0); // caretOffset + writeInt16(os, 0); // reserved + writeInt16(os, 0); // reserved + writeInt16(os, 0); // reserved + writeInt16(os, 0); // reserved + writeInt16(os, 0); // metricDataFormat (always 0) + writeUInt16(os, _numberOfHMetrics); +} + + +void HheaTable::updateXMinMax (uint32_t c, int16_t xmin, int16_t xmax) { + const PhysicalFont &font = ttfWriter()->getFont(); + double extend = font.style() ? font.style()->extend : 1; + double scale = ttfWriter()->unitsPerEmFactor(); + int16_t advance = (c == 0 ? xmax : round(scale*extend*font.hAdvance(c))); + _xMaxExtent = max(_xMaxExtent, xmax); + _minLeftSideBearing = min(_minLeftSideBearing, xmin); + _minRightSideBearing = min(_minRightSideBearing, int16_t(advance-xmax)); +} + + +void HheaTable::updateAdvanceWidth (uint16_t w, uint16_t numberOfHMetrics) { + _advanceWidthMax = max(_advanceWidthMax, w); + _numberOfHMetrics = numberOfHMetrics; +} diff --git a/dviware/dvisvgm/src/ttf/HheaTable.hpp b/dviware/dvisvgm/src/ttf/HheaTable.hpp new file mode 100644 index 0000000000..56fc1ddc4e --- /dev/null +++ b/dviware/dvisvgm/src/ttf/HheaTable.hpp @@ -0,0 +1,47 @@ +/************************************************************************* +** HheaTable.hpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#pragma once +#include <limits> +#include "TTFTable.hpp" + +namespace ttf { + +/** This class provides the functions required to write the horizontal header table of a TTF/OTF font. + * https://www.microsoft.com/typography/otspec/hhea.htm */ +class HheaTable : public TTFTable { + friend class TTFWriter; + public: + uint32_t tag () const override {return name2id("hhea");} + void write (std::ostream &os) const override; + + protected: + void updateXMinMax (uint32_t c, int16_t xmin, int16_t xmax); + void updateAdvanceWidth (uint16_t w, uint16_t numberOfHMetrics); + + private: + uint16_t _advanceWidthMax = 0; + int16_t _minLeftSideBearing = std::numeric_limits<int16_t>::max(); + int16_t _minRightSideBearing = std::numeric_limits<int16_t>::max(); + int16_t _xMaxExtent = std::numeric_limits<int16_t>::min(); + uint16_t _numberOfHMetrics = 0; +}; + +} // namespace ttf diff --git a/dviware/dvisvgm/src/ttf/HmtxTable.cpp b/dviware/dvisvgm/src/ttf/HmtxTable.cpp new file mode 100644 index 0000000000..6e849768fd --- /dev/null +++ b/dviware/dvisvgm/src/ttf/HmtxTable.cpp @@ -0,0 +1,62 @@ +/************************************************************************* +** HmtxTable.cpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#include <cmath> +#include "HmtxTable.hpp" +#include "TTFWriter.hpp" +#include "../Font.hpp" + +using namespace std; +using namespace ttf; + +void HmtxTable::write (ostream &os) const { + auto runStart = _widthInfos.end(); + if (!_widthInfos.empty()) + runStart -= _runLengthOfAdvWidth-1; + // write longHorMetrics up to the beginning of the repeating + // advance widths at the end of the container + for (auto it = _widthInfos.begin(); it != runStart; ++it) { + writeUInt16(os, it->advWidth); + writeInt16(os, it->lsb); + } + // write the trailing left side bearings + for (; runStart != _widthInfos.end(); ++runStart) + writeInt16(os, runStart->lsb); +} + + +void HmtxTable::updateWidthData (uint32_t c, int16_t xmin, int16_t xmax) { + const PhysicalFont &font = ttfWriter()->getFont(); + double extend = font.style() ? font.style()->extend : 1; + double scale = ttfWriter()->unitsPerEmFactor(); + int16_t w = (c == 0 ? xmax : int16_t(round(scale*extend*font.hAdvance(c)))); + if (_isFixedPitch && c > 0 && w != _width) { + if (_width == 0) + _width = w; + else + _isFixedPitch = false; + } + if (_widthInfos.empty() || w == _widthInfos.back().advWidth) + _runLengthOfAdvWidth++; + else + _runLengthOfAdvWidth = 1; + _widthInfos.emplace_back(CharWidthInfo(xmin, w)); + ttfWriter()->updateGlobalAdvanceWidth(w, _widthInfos.size()-_runLengthOfAdvWidth+1); +}
\ No newline at end of file diff --git a/dviware/dvisvgm/src/ttf/HmtxTable.hpp b/dviware/dvisvgm/src/ttf/HmtxTable.hpp new file mode 100644 index 0000000000..95c9eba513 --- /dev/null +++ b/dviware/dvisvgm/src/ttf/HmtxTable.hpp @@ -0,0 +1,52 @@ +/************************************************************************* +** HmtxTable.hpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#pragma once + +#include <vector> +#include "TTFTable.hpp" + +namespace ttf { + +/** This class provides the functions required to write the horizontal metrics table of a TTF/OTF font. + * https://www.microsoft.com/typography/otspec/hmtx.htm */ +class HmtxTable : public TTFTable { + friend TTFWriter; + struct CharWidthInfo { + CharWidthInfo (int16_t l, int16_t w) : lsb(l), advWidth(w) {} + uint16_t lsb; // left side bearing + uint16_t advWidth; // unscaled advance width + }; + public: + uint32_t tag () const override {return name2id("hmtx");} + void write (std::ostream &os) const override; + bool isFixedPitch () const {return _isFixedPitch;} + + protected: + void updateWidthData (uint32_t c, int16_t xmin, int16_t xmax); + + private: + std::vector<CharWidthInfo> _widthInfos; + size_t _runLengthOfAdvWidth=0; // number of identical advWidth values at end of _widthInfos + bool _isFixedPitch=true; + int16_t _width=0; +}; + +} // namespace ttf diff --git a/dviware/dvisvgm/src/ttf/LocaTable.hpp b/dviware/dvisvgm/src/ttf/LocaTable.hpp new file mode 100644 index 0000000000..8ff51a7bb1 --- /dev/null +++ b/dviware/dvisvgm/src/ttf/LocaTable.hpp @@ -0,0 +1,56 @@ +/************************************************************************* +** LocaTable.hpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#pragma once + +#include <vector> +#include "TTFTable.hpp" + +namespace ttf { + +/** This class provides the functions required to write the loca table of a TTF/OTF font. + * https://www.microsoft.com/typography/otspec/loca.htm */ +class LocaTable : public TTFTable { + friend class TTFWriter; + public: + uint32_t tag () const override {return name2id("loca");} + + void write (std::ostream &os) const override { + for (uint32_t offs : _offsets) { + if (_isShortFormat) + writeUInt16(os, offs/2); + else + writeUInt32(os, offs); + } + } + + protected: + void addOffset (uint32_t offset) { + _offsets.push_back(offset); + if (offset/2 > 0xFFFF) + _isShortFormat = false; + } + + private: + bool _isShortFormat=true; + std::vector<uint32_t> _offsets; +}; + +} // namespace ttf diff --git a/dviware/dvisvgm/src/ttf/Makefile.am b/dviware/dvisvgm/src/ttf/Makefile.am new file mode 100644 index 0000000000..60883f64cc --- /dev/null +++ b/dviware/dvisvgm/src/ttf/Makefile.am @@ -0,0 +1,25 @@ +noinst_LTLIBRARIES = libttf.la + +libttf_la_SOURCES = \ + CmapTable.hpp CmapTable.cpp \ + GlyfTable.hpp GlyfTable.cpp \ + HeadTable.hpp HeadTable.cpp \ + HheaTable.hpp HheaTable.cpp \ + HmtxTable.hpp HmtxTable.cpp \ + LocaTable.hpp MaxpTable.cpp \ + MaxpTable.hpp NameTable.cpp \ + NameTable.hpp OS2Table.cpp \ + OS2Table.hpp PostTable.cpp \ + PostTable.hpp \ + TTFAutohint.hpp TTFAutohint.cpp \ + TTFTable.hpp TTFTable.cpp \ + TTFWriter.hpp TTFWriter.cpp \ + VheaTable.hpp VheaTable.cpp \ + VmtxTable.hpp VmtxTable.cpp + +include ../../libs/defs.am + +AM_CXXFLAGS = \ + -I$(dvisvgm_srcdir)/libs/boost \ + -I$(dvisvgm_srcdir)/libs/variant/include \ + $(BROTLI_CFLAGS) $(WOFF2_CFLAGS) diff --git a/dviware/dvisvgm/src/ttf/Makefile.in b/dviware/dvisvgm/src/ttf/Makefile.in new file mode 100644 index 0000000000..b3e1721d82 --- /dev/null +++ b/dviware/dvisvgm/src/ttf/Makefile.in @@ -0,0 +1,743 @@ +# Makefile.in generated by automake 1.16.5 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2021 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +@HAVE_BROTLI_FALSE@am__append_1 = -I$(dvisvgm_srcdir)/libs/brotli/include +@HAVE_BROTLI_FALSE@am__append_2 = ../libs/brotli/libbrotli.a +@HAVE_WOFF2_FALSE@am__append_3 = -I$(dvisvgm_srcdir)/libs/woff2/include +@HAVE_WOFF2_FALSE@am__append_4 = ../libs/woff2/libwoff2.a +subdir = src/ttf +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/ax_ac_append_to_file.m4 \ + $(top_srcdir)/m4/ax_ac_print_to_file.m4 \ + $(top_srcdir)/m4/ax_add_am_macro_static.m4 \ + $(top_srcdir)/m4/ax_am_macros_static.m4 \ + $(top_srcdir)/m4/ax_check_compile_flag.m4 \ + $(top_srcdir)/m4/ax_code_coverage.m4 \ + $(top_srcdir)/m4/ax_cxx_compile_stdcxx.m4 \ + $(top_srcdir)/m4/ax_file_escapes.m4 \ + $(top_srcdir)/m4/ax_gcc_builtin.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +LTLIBRARIES = $(noinst_LTLIBRARIES) +libttf_la_LIBADD = +am_libttf_la_OBJECTS = CmapTable.lo GlyfTable.lo HeadTable.lo \ + HheaTable.lo HmtxTable.lo MaxpTable.lo NameTable.lo \ + OS2Table.lo PostTable.lo TTFAutohint.lo TTFTable.lo \ + TTFWriter.lo VheaTable.lo VmtxTable.lo +libttf_la_OBJECTS = $(am_libttf_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = ./$(DEPDIR)/CmapTable.Plo \ + ./$(DEPDIR)/GlyfTable.Plo ./$(DEPDIR)/HeadTable.Plo \ + ./$(DEPDIR)/HheaTable.Plo ./$(DEPDIR)/HmtxTable.Plo \ + ./$(DEPDIR)/MaxpTable.Plo ./$(DEPDIR)/NameTable.Plo \ + ./$(DEPDIR)/OS2Table.Plo ./$(DEPDIR)/PostTable.Plo \ + ./$(DEPDIR)/TTFAutohint.Plo ./$(DEPDIR)/TTFTable.Plo \ + ./$(DEPDIR)/TTFWriter.Plo ./$(DEPDIR)/VheaTable.Plo \ + ./$(DEPDIR)/VmtxTable.Plo +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CXXFLAGS) $(CXXFLAGS) +AM_V_CXX = $(am__v_CXX_@AM_V@) +am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) +am__v_CXX_0 = @echo " CXX " $@; +am__v_CXX_1 = +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ + $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) +am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) +am__v_CXXLD_0 = @echo " CXXLD " $@; +am__v_CXXLD_1 = +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(libttf_la_SOURCES) +DIST_SOURCES = $(libttf_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +am__DIST_COMMON = $(srcdir)/../../libs/defs.am $(srcdir)/Makefile.in \ + $(top_srcdir)/depcomp +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AM_CPPFLAGS = @AM_CPPFLAGS@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AM_LDFLAGS = @AM_LDFLAGS@ +AR = @AR@ +ASCIIDOC = @ASCIIDOC@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +BROTLI_CFLAGS = @BROTLI_CFLAGS@ $(am__append_1) +BROTLI_LIBS = @BROTLI_LIBS@ $(am__append_2) +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CODE_COVERAGE_CFLAGS = @CODE_COVERAGE_CFLAGS@ +CODE_COVERAGE_CPPFLAGS = @CODE_COVERAGE_CPPFLAGS@ +CODE_COVERAGE_CXXFLAGS = @CODE_COVERAGE_CXXFLAGS@ +CODE_COVERAGE_ENABLED = @CODE_COVERAGE_ENABLED@ +CODE_COVERAGE_LIBS = @CODE_COVERAGE_LIBS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CSCOPE = @CSCOPE@ +CTAGS = @CTAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATE = @DATE@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ETAGS = @ETAGS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +FILECMD = @FILECMD@ +FREETYPE_CFLAGS = @FREETYPE_CFLAGS@ +FREETYPE_LIBS = @FREETYPE_LIBS@ +GCOV = @GCOV@ +GENHTML = @GENHTML@ +GREP = @GREP@ +HAVE_CXX11 = @HAVE_CXX11@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +KPSE_CFLAGS = @KPSE_CFLAGS@ +KPSE_LIBS = @KPSE_LIBS@ +LCOV = @LCOV@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBCRYPTO_CFLAGS = @LIBCRYPTO_CFLAGS@ +LIBCRYPTO_LIBS = @LIBCRYPTO_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +TTFAUTOHINT_CFLAGS = @TTFAUTOHINT_CFLAGS@ +TTFAUTOHINT_LIBS = @TTFAUTOHINT_LIBS@ +VERSION = @VERSION@ +WOFF2_CFLAGS = @WOFF2_CFLAGS@ $(am__append_3) +WOFF2_LIBS = @WOFF2_LIBS@ $(am__append_4) +XMLTO = @XMLTO@ +XSLTPROC = @XSLTPROC@ +ZLIB_CFLAGS = @ZLIB_CFLAGS@ +ZLIB_LIBS = @ZLIB_LIBS@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +dvisvgm_srcdir = @dvisvgm_srcdir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +ifGNUmake = @ifGNUmake@ +ifnGNUmake = @ifnGNUmake@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +runstatedir = @runstatedir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +noinst_LTLIBRARIES = libttf.la +libttf_la_SOURCES = \ + CmapTable.hpp CmapTable.cpp \ + GlyfTable.hpp GlyfTable.cpp \ + HeadTable.hpp HeadTable.cpp \ + HheaTable.hpp HheaTable.cpp \ + HmtxTable.hpp HmtxTable.cpp \ + LocaTable.hpp MaxpTable.cpp \ + MaxpTable.hpp NameTable.cpp \ + NameTable.hpp OS2Table.cpp \ + OS2Table.hpp PostTable.cpp \ + PostTable.hpp \ + TTFAutohint.hpp TTFAutohint.cpp \ + TTFTable.hpp TTFTable.cpp \ + TTFWriter.hpp TTFWriter.cpp \ + VheaTable.hpp VheaTable.cpp \ + VmtxTable.hpp VmtxTable.cpp + +@HAVE_POTRACE_FALSE@POTRACE_CFLAGS = -I$(dvisvgm_srcdir)/libs/potrace +@HAVE_POTRACE_FALSE@POTRACE_LIBS = ../libs/potrace/libpotrace.a +@HAVE_XXHASH_FALSE@XXHASH_CFLAGS = -I$(dvisvgm_srcdir)/libs/xxHash +@HAVE_XXHASH_FALSE@XXHASH_LIBS = ../libs/xxHash/libxxhash.a +AM_CXXFLAGS = \ + -I$(dvisvgm_srcdir)/libs/boost \ + -I$(dvisvgm_srcdir)/libs/variant/include \ + $(BROTLI_CFLAGS) $(WOFF2_CFLAGS) + +all: all-am + +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(srcdir)/../../libs/defs.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/ttf/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign src/ttf/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ + esac; +$(srcdir)/../../libs/defs.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +clean-noinstLTLIBRARIES: + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +libttf.la: $(libttf_la_OBJECTS) $(libttf_la_DEPENDENCIES) $(EXTRA_libttf_la_DEPENDENCIES) + $(AM_V_CXXLD)$(CXXLINK) $(libttf_la_OBJECTS) $(libttf_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CmapTable.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/GlyfTable.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/HeadTable.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/HheaTable.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/HmtxTable.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MaxpTable.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/NameTable.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/OS2Table.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PostTable.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TTFAutohint.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TTFTable.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TTFWriter.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/VheaTable.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/VmtxTable.Plo@am__quote@ # am--include-marker + +$(am__depfiles_remade): + @$(MKDIR_P) $(@D) + @echo '# dummy' >$@-t && $(am__mv) $@-t $@ + +am--depfiles: $(am__depfiles_remade) + +.cpp.o: +@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< + +.cpp.obj: +@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ +@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.cpp.lo: +@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ + mostlyclean-am + +distclean: distclean-am + -rm -f ./$(DEPDIR)/CmapTable.Plo + -rm -f ./$(DEPDIR)/GlyfTable.Plo + -rm -f ./$(DEPDIR)/HeadTable.Plo + -rm -f ./$(DEPDIR)/HheaTable.Plo + -rm -f ./$(DEPDIR)/HmtxTable.Plo + -rm -f ./$(DEPDIR)/MaxpTable.Plo + -rm -f ./$(DEPDIR)/NameTable.Plo + -rm -f ./$(DEPDIR)/OS2Table.Plo + -rm -f ./$(DEPDIR)/PostTable.Plo + -rm -f ./$(DEPDIR)/TTFAutohint.Plo + -rm -f ./$(DEPDIR)/TTFTable.Plo + -rm -f ./$(DEPDIR)/TTFWriter.Plo + -rm -f ./$(DEPDIR)/VheaTable.Plo + -rm -f ./$(DEPDIR)/VmtxTable.Plo + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f ./$(DEPDIR)/CmapTable.Plo + -rm -f ./$(DEPDIR)/GlyfTable.Plo + -rm -f ./$(DEPDIR)/HeadTable.Plo + -rm -f ./$(DEPDIR)/HheaTable.Plo + -rm -f ./$(DEPDIR)/HmtxTable.Plo + -rm -f ./$(DEPDIR)/MaxpTable.Plo + -rm -f ./$(DEPDIR)/NameTable.Plo + -rm -f ./$(DEPDIR)/OS2Table.Plo + -rm -f ./$(DEPDIR)/PostTable.Plo + -rm -f ./$(DEPDIR)/TTFAutohint.Plo + -rm -f ./$(DEPDIR)/TTFTable.Plo + -rm -f ./$(DEPDIR)/TTFWriter.Plo + -rm -f ./$(DEPDIR)/VheaTable.Plo + -rm -f ./$(DEPDIR)/VmtxTable.Plo + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ + clean-generic clean-libtool clean-noinstLTLIBRARIES \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am + +.PRECIOUS: Makefile + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/dviware/dvisvgm/src/ttf/MaxpTable.cpp b/dviware/dvisvgm/src/ttf/MaxpTable.cpp new file mode 100644 index 0000000000..176c9ffcb0 --- /dev/null +++ b/dviware/dvisvgm/src/ttf/MaxpTable.cpp @@ -0,0 +1,50 @@ +/************************************************************************* +** MaxpTable.cpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#include <algorithm> +#include "MaxpTable.hpp" +#include "TTFWriter.hpp" + +using namespace std; +using namespace ttf; + +void MaxpTable::write (ostream &os) const { + writeUInt32(os, 0x10000); // version 1.0, required for TTF fonts + writeUInt16(os, ttfWriter()->getUnicodeCharMap().numValues()+1); // number of glyphs including .notdef + writeUInt16(os, _maxPoints); + writeUInt16(os, _maxContours); + writeUInt16(os, 0); // maxCompositePoints + writeUInt16(os, 0); // maxCompositeContours + writeUInt16(os, 1); // maxZones (1 = don't use twilight zone, 2 otherwise) + writeUInt16(os, 0); // maxTwilightPoints + writeUInt16(os, 0); // maxStorage + writeUInt16(os, 0); // maxFunctionDefs + writeUInt16(os, 0); // maxInstructionDefs + writeUInt16(os, 0); // maxStackElements + writeUInt16(os, 0); // maxSizeOfInstructions + writeUInt16(os, 0); // maxComponentElements + writeUInt16(os, 0); // maxComponentDepth +} + + +void MaxpTable::updateContourInfo (uint16_t maxPoints, uint16_t maxContours) { + _maxPoints = max(_maxPoints, maxPoints); + _maxContours = max(_maxContours, maxContours); +}
\ No newline at end of file diff --git a/dviware/dvisvgm/src/ttf/MaxpTable.hpp b/dviware/dvisvgm/src/ttf/MaxpTable.hpp new file mode 100644 index 0000000000..b1a08a1aea --- /dev/null +++ b/dviware/dvisvgm/src/ttf/MaxpTable.hpp @@ -0,0 +1,42 @@ +/************************************************************************* +** MaxpTable.hpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#pragma once +#include "TTFTable.hpp" + +namespace ttf { + +/** This class provides the functions required to write the maximum profile table of a TTF/OTF font. + * https://www.microsoft.com/typography/otspec/maxp.htm */ +class MaxpTable : public TTFTable { + friend class TTFWriter; + public: + uint32_t tag () const override {return name2id("maxp");} + void write(std::ostream &os) const override; + + protected: + void updateContourInfo (uint16_t maxPoints, uint16_t maxContours); + + private: + uint16_t _maxPoints=0; ///< maximum number of points used by a contour + uint16_t _maxContours=0; ///< maximum number of contours used by a glyph +}; + +} // namespace ttf diff --git a/dviware/dvisvgm/src/ttf/NameTable.cpp b/dviware/dvisvgm/src/ttf/NameTable.cpp new file mode 100644 index 0000000000..949b6c336c --- /dev/null +++ b/dviware/dvisvgm/src/ttf/NameTable.cpp @@ -0,0 +1,105 @@ +/************************************************************************* +** NameTable.cpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#include <array> +#include "NameTable.hpp" +#include "TTFWriter.hpp" +#include "../Font.hpp" +#include "../version.hpp" + +using namespace std; +using namespace ttf; + +enum NameID { + COPYRIGHT_NOTICE = 0, + FONT_FAMILY = 1, + FONT_SUBFAMILY = 2, + FONT_ID = 3, + FULL_FONT_NAME = 4, + VERSION_STRING = 5, + PS_NAME = 6, + TRADEMARK = 7, + MANUFACTURER_NAME = 8, + DESIGNER = 9, + DESCRIPTION = 10, + URL_VENDOR = 11, + URL_DESIGNER = 12, + LICENSE_DESCRIPTION = 13, + LICENSE_INFO_URL = 14, + TYPOGRAPHIC_FAMILY_NAME = 16, + TYPOGRAPHIC_SUBFAMILY_NAME = 17, + COMPATIBLE_FULL = 18, + SAMPLE_TEXT = 19, + PS_CID_FINDFONT_NAME = 20, + WWS_FAMILY_NAME = 21, + WWS_SUBFAMILY_NAME = 22, + LIGHT_BG_PALLETTE = 23, + DARK_BG_PALLETTE = 24, + VAR_PS_NAME_PREFIX = 25 +}; + + +void NameTable::write (ostream &os) const { + struct NameEntry { + NameID nameID; + std::string name; + }; + array<NameEntry,5> nameEntries {{ + {FONT_FAMILY, ttfWriter()->getFont().familyName()}, + {FULL_FONT_NAME, ttfWriter()->getFont().name()}, + {VERSION_STRING, string("Version 1.0")}, + {PS_NAME, ttfWriter()->getFont().name()}, + {DESCRIPTION, string("Generated by ")+PROGRAM_NAME+" "+PROGRAM_VERSION} + }}; + writeUInt16(os, 0); // table format + writeUInt16(os, 2*nameEntries.size()); // number of name records + writeUInt16(os, 6+2*12*nameEntries.size()); // offset to start of string storage + size_t offset=0; + // write name entry records ordered by platform ID + for (const NameEntry &entry : nameEntries) { + writeUInt16(os, 1); // Mac + writeUInt16(os, 0); // Roman, UTF-8 encoding + writeUInt16(os, 0); // English + writeUInt16(os, entry.nameID); + writeUInt16(os, entry.name.length()); + writeUInt16(os, offset); + offset += entry.name.length(); + } + for (const NameEntry &entry : nameEntries) { + writeUInt16(os, 3); // Windows + writeUInt16(os, 1); // UCS-2 encoding + writeUInt16(os, 0x0409); // US English + writeUInt16(os, entry.nameID); + writeUInt16(os, 2*entry.name.length()); + writeUInt16(os, offset); + offset += 2*entry.name.length(); + } + // write string data + for (const NameEntry &entry : nameEntries) { + for (char c : entry.name) + writeUInt8(os, c); + } + for (const NameEntry &entry : nameEntries) { + for (char c : entry.name) { + writeUInt8(os, 0); + writeUInt8(os, c); + } + } +} diff --git a/dviware/dvisvgm/src/ttf/NameTable.hpp b/dviware/dvisvgm/src/ttf/NameTable.hpp new file mode 100644 index 0000000000..78262ed927 --- /dev/null +++ b/dviware/dvisvgm/src/ttf/NameTable.hpp @@ -0,0 +1,37 @@ +/************************************************************************* +** NameTable.hpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#pragma once + +#include <string> +#include <vector> +#include "TTFTable.hpp" + +namespace ttf { + +/** This class provides the functions required to write the naming table of a TTF/OTF font. + * https://www.microsoft.com/typography/otspec/name.htm */ +class NameTable : public TTFTable { + public: + uint32_t tag () const override {return name2id("name");} + void write (std::ostream &os) const override; +}; + +} // namespace ttf
\ No newline at end of file diff --git a/dviware/dvisvgm/src/ttf/OS2Table.cpp b/dviware/dvisvgm/src/ttf/OS2Table.cpp new file mode 100644 index 0000000000..4ce5ff613b --- /dev/null +++ b/dviware/dvisvgm/src/ttf/OS2Table.cpp @@ -0,0 +1,246 @@ +/************************************************************************* +** OS2Table.cpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#include <algorithm> +#include <array> +#include <cmath> +#include <vector> +#include "OS2Table.hpp" +#include "TTFWriter.hpp" +#include "../Font.hpp" + +using namespace std; +using namespace ttf; + + +/** Returns the average width of all non-zero width glyphs. + * https://docs.microsoft.com/en-us/typography/opentype/spec/os2#acw */ +int16_t OS2Table::averageCharWidth () const { + const RangeMap &charmap = ttfWriter()->getUnicodeCharMap(); + if (charmap.empty()) + return 0; + int sum=ttfWriter()->hAdvance(0); // width of .notdef character + int count=1; + for (auto uc2charcode : charmap) { + int c = int(uc2charcode.second); + if (int w = ttfWriter()->hAdvance(c)) { + sum += w; + count++; + } + } + return int16_t(double(sum)/count); +} + +static vector<uint32_t> compute_unicode_range_bits (const RangeMap &charmap); + + +void OS2Table::write (ostream &os) const { + const PhysicalFont &font = ttfWriter()->getFont(); + int upem = ttfWriter()->targetUnitsPerEm(); + double scale = ttfWriter()->unitsPerEmFactor(); + const RangeMap &charmap = ttfWriter()->getUnicodeCharMap(); + + writeUInt16(os, 3); // table version + writeInt16(os, averageCharWidth()); // average char width + writeUInt16(os, 400); // usWeightClass, "normal" for now + writeUInt16(os, 5); // usWidthClass, "medium" for now + writeUInt16(os, 0); // fsType + writeInt16(os, round(0.65*upem)); // ySubscriptXSize + writeInt16(os, round(0.7*upem)); // ySubscriptYSize + writeInt16(os, round(-0.48*upem)); // ySubscriptXOffset + writeInt16(os, round(0.14*upem)); // ySubscriptYOffset + writeInt16(os, round(0.65*upem)); // ySuperscriptXSize + writeInt16(os, round(0.7*upem)); // ySuperscriptYSize + writeInt16(os, round(0.48*upem)); // ySuperscriptXOffset + writeInt16(os, round(0.48*upem)); // ySuperscriptYOffset + writeInt16(os, 102*upem/2048); // yStrikeoutSize + writeInt16(os, 530*upem/2048); // yStrikeoutPosition + writeInt16(os, 0); // sFamilyClass (no classification) + for (uint8_t p : {0, 0, 6, 0, 0, 0, 0, 0, 0, 0}) // Panose + writeUInt8(os, p); + for (uint32_t bits : compute_unicode_range_bits(charmap)) + writeUInt32(os, bits); + writeUInt32(os, name2id("dsvg")); + writeUInt16(os, 6); // fsSelection, "regular" for now + writeUInt16(os, min(charmap.minKey(), uint32_t(0xFFFF))); // usFirstCharIndex + writeUInt16(os, min(charmap.maxKey(), uint32_t(0xFFFF))); // usLastCharIndex + writeInt16(os, round(scale*font.ascent())); // sTypoAscender + writeInt16(os, round(-scale*font.descent())); // sTypoDescender + writeInt16(os, 0); // sTypoLineGap + writeUInt16(os, round(scale*font.ascent())); + writeUInt16(os, round(scale*font.descent())); + writeUInt32(os, 1); // ulCodePageRange1, "Latin 1" for now + writeUInt32(os, 0); // ulCodePageRange2 + writeInt16(os, 0); // sxHeight + writeInt16(os, charmap.valueExists(0x48) ? 0x48 : 0); // sCapHeight + writeUInt16(os, 0); // usDefaultChar + writeUInt16(os, charmap.valueExists(0x20) ? 0x20 : 0xffff); // usBreakChar (space or .notdef) + writeUInt16(os, 0); // usMaxContext +} + +#if 0 +void OS2Table::updateYMinMax (int16_t ymin, int16_t ymax) { + _usWinAscent = max(_usWinAscent, uint16_t(ymax)); + _usWinDescent = max(_usWinDescent, uint16_t(ymin < 0 ? -ymin : 0)); +} +#endif + + +/** Returns the bit number denoting the Unicode range for a codepoint according to + * the OS/2 table specification. If there's no matching range for the codepoint, + * the function returns -1. Currently, only the ranges specified by OS/2 table + * version 1 are considered. */ +static int unicode_range_bit (uint32_t codepoint) { + struct UCRange { + UCRange (uint32_t cp) : first(cp), last(cp), os2bit(0) {} + UCRange (uint32_t cp1, uint32_t cp2, int bit) : first(cp1), last(cp2), os2bit(bit) {} + uint32_t first, last; + int os2bit; + }; + // Unicode ranges according to http://unicode.org/Public/UNIDATA/Blocks.txt + static array<UCRange, 100> ucranges {{ + {0x00020, 0x0007E, 0}, // Basic Latin + {0x000A0, 0x000FF, 1}, // Latin-1 Supplement + {0x00100, 0x0017F, 2}, // Latin Extended-A + {0x00180, 0x0024F, 3}, // Latin Extended-B + {0x00250, 0x002AF, 4}, // IPA Extensions + {0x002B0, 0x002FF, 5}, // Spacing Modifier Letters + {0x00300, 0x0036F, 6}, // Combining Diacritical Marks + {0x00370, 0x003FF, 7}, // Greek and Coptic + {0x00400, 0x0052F, 9}, // Cyrillic / Cyrillic Supplement + {0x00530, 0x0058F, 10}, // Armenian + {0x00590, 0x005FF, 11}, // Hebrew + {0x00600, 0x006FF, 13}, // Arabic + {0x00700, 0x0074F, 71}, // Syriac + {0x00750, 0x0077F, 13}, // Arabic Supplement + {0x00780, 0x007BF, 72}, // Thaana + {0x007C0, 0x007FF, 14}, // N'Ko + {0x00800, 0x0083F, 12}, // Samaritan + {0x00900, 0x0097F, 15}, // Devanagari + {0x00980, 0x009FF, 16}, // Bengali + {0x00A00, 0x00A7F, 17}, // Gurmukhi + {0x00A80, 0x00AFF, 18}, // Gujarati + {0x00B00, 0x00B7F, 19}, // Oriya + {0x00B80, 0x00BFF, 20}, // Tamil + {0x00C00, 0x00C7F, 21}, // Telugu + {0x00C80, 0x00CFF, 22}, // Kannada + {0x00D00, 0x00D7F, 23}, // Malayalam + {0x00E00, 0x00E7F, 24}, // Thai + {0x00E80, 0x00EFF, 25}, // Lao + {0x010A0, 0x010FF, 26}, // Georgian + {0x01100, 0x011FF, 28}, // Hangul Jamo + {0x01B00, 0x01B7F, 27}, // Balinese + {0x01D00, 0x01DBF, 4}, // Phonetic Extensions & Supplement + {0x01D80, 0x01DFF, 6}, // Combining Diacritical Marks Supplement + {0x01E00, 0x01EFF, 29}, // Latin Extended Additional + {0x01F00, 0x01FFF, 30}, // Greek Extended + {0x02000, 0x0206F, 31}, // General Punctuation + {0x02070, 0x0209F, 32}, // Superscripts and Subscripts + {0x020A0, 0x020CF, 33}, // Currency Symbols + {0x020D0, 0x020FF, 34}, // Combining Marks for Symbols + {0x02100, 0x0214F, 35}, // Letterlike Symbols + {0x02150, 0x0218F, 36}, // Number Forms + {0x02190, 0x021FF, 37}, // Arrows + {0x02200, 0x022FF, 38}, // Mathematical Operators + {0x02300, 0x0237F, 39}, // Miscellaneous Technical + {0x02400, 0x0243F, 40}, // Control Pictures + {0x02440, 0x0245F, 41}, // Optical Character Recognition + {0x02460, 0x024FF, 42}, // Enclosed Alphanumerics + {0x02500, 0x0257F, 43}, // Box Drawing + {0x02580, 0x0259F, 44}, // Block Elements + {0x025A0, 0x025FF, 45}, // Geometric Shapes + {0x02600, 0x0267F, 46}, // Miscellaneous Symbols + {0x02700, 0x027BF, 47}, // Dingbats + {0x027C0, 0x027EF, 38}, // Miscellaneous Mathematical Symbols-A + {0x027F0, 0x027FF, 37}, // Supplementary Arrows-A + {0x02800, 0x028FF, 82}, // Braille Patterns + {0x02900, 0x0297F, 37}, // Supplementary Arrows-B + {0x02980, 0x02AFF, 38}, // Miscellaneous Mathematical Symbols-B + Supplemental Mathematical Operators + {0x02B00, 0x02BFF, 37}, // Miscellaneous Symbols and Arrows + {0x02C60, 0x02C7F, 29}, // Latin Extended-C + {0x02C80, 0x02CFF, 8}, // Coptic + {0x02D00, 0x02D25, 26}, // Georgian Supplement + {0x02DE0, 0x02DFF, 9}, // Cyrillic Extended-A + {0x02E00, 0x02E7F, 31}, // Supplemental Punctuation + {0x02E80, 0x02FFF, 59}, // CJK Radicals Supplement + Kangxi Radicals + Ideographic Description Characters + {0x03000, 0x0303F, 48}, // CJK Symbols and Punctuation + {0x03040, 0x0309F, 49}, // Hiragana + {0x030A0, 0x030FF, 50}, // Katakana + {0x03100, 0x0312F, 51}, // Bopomofo + {0x03130, 0x0318F, 52}, // Hangul Compatibility Jamo + {0x03190, 0x0319F, 59}, // Kanbun + {0x031A0, 0x031BF, 51}, // Bopomofo Extended + {0x031F0, 0x031FF, 50}, // Katakana Phonetic Extensions + {0x03200, 0x032FF, 54}, // Enclosed CJK Letters and Months + {0x03300, 0x033FF, 55}, // CJK compatability + {0x03400, 0x04DBF, 59}, // CJK Unified Ideographs Extension A + {0x04E00, 0x09FFF, 59}, // CJK Unified Ideographs + {0x0A500, 0x0A62B, 12}, // Vai + {0x0A640, 0x0A69F, 9}, // Cyrillic Extended-B + {0x0A700, 0x0A71F, 5}, // Modifier Tone Letters + {0x0A720, 0x0A7FF, 29}, // Latin Extended-D + {0x0A840, 0x0A87F, 53}, // Phags-pa + {0x0AC00, 0x0D7AF, 56}, // Hangul Syllables + {0x0D800, 0x0DFFF, 57}, // Non-Plane 0 + {0x0E000, 0x0F8FF, 60}, // Private Use Area + {0x0F900, 0x0FAFF, 61}, // CJK Compatibility Ideographs + {0x0FA2A, 0x0FAFF, 61}, // CJK Compatibility Ideographs + {0x0FB00, 0x0FB4F, 62}, // Alphabetic Presentation Forms + {0x0FB50, 0x0FDFF, 63}, // Arabic Presentation Forms-A + {0x0FE00, 0x0FE0F, 91}, // Variation Selectors + {0x0FE20, 0x0FE2F, 64}, // Combining Half Marks + {0x0FE30, 0x0FE4F, 65}, // CJK Compatibility Forms + {0x0FE50, 0x0FE6F, 66}, // Small Form Variants + {0x0FE70, 0x0FEEF, 67}, // Arabic Presentation Forms-B + {0x0FF00, 0x0FFEF, 68}, // Halfwidth and Fullwidth Forms + {0x0FFF0, 0x0FFFF, 69}, // Specials + {0x10900, 0x1091F, 58}, // Phoenician + {0x20000, 0x2A6DF, 59}, // CJK Unified Ideographs Extension B + {0x2A700, 0x2B73F, 59}, // CJK Unified Ideographs Extension C + {0x2B740, 0x2B81F, 59}, // CJK Unified Ideographs Extension D + {0x2F800, 0x2FA1F, 61}, // CJK Compatibility Ideographs Supplement + }}; + auto it = lower_bound(ucranges.begin(), ucranges.end(), UCRange(codepoint), [](const UCRange &r1, const UCRange &r2) { + return r1.last < r2.first; + }); + if (it != ucranges.end() && codepoint >= it->first && codepoint <= it->last) + return it->os2bit; + return -1; +} + + +/** Returns the Unicode ranges encompassed by the font. The ranges are encoded by four dwords, + * where each of the 128 bits represents a certain range. The returned vector contains the + * dwords in little-endian order, i.e. [bits 0-31, bits 32-63, bits 64-95, bits 96-127]. */ +static vector<uint32_t> compute_unicode_range_bits (const RangeMap &charmap) { + vector<uint32_t> rangeBits(4, 0); + for (auto uc2charcode : charmap) { + int bit = unicode_range_bit(uc2charcode.first); + if (bit >= 0) { + for (int i=0; i < 4; i++) { + if (bit < 32*(i+1)) { + rangeBits[i] |= (1 << (bit-32*i)); + break; + } + } + } + } + return rangeBits; +} diff --git a/dviware/dvisvgm/src/ttf/OS2Table.hpp b/dviware/dvisvgm/src/ttf/OS2Table.hpp new file mode 100644 index 0000000000..8861fdea7a --- /dev/null +++ b/dviware/dvisvgm/src/ttf/OS2Table.hpp @@ -0,0 +1,46 @@ +/************************************************************************* +** OS2Table.hpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#pragma once + +#include <array> +#include "TTFTable.hpp" + +namespace ttf { + +/** This class provides the functions required to write the OS/2 and Windows metrics + * table of a TTF/OTF font. + * https://www.microsoft.com/typography/otspec/os2.htm */ +class OS2Table : public TTFTable { + friend class TTFWriter; + public: + uint32_t tag () const override {return name2id("OS/2");} + void write (std::ostream &os) const override; + + protected: + int16_t averageCharWidth () const; + void updateXMinMax (int16_t xmin, int16_t xmax) {_xmax = xmax;} + void updateYMinMax (int16_t ymin, int16_t ymax) {} + + private: + int16_t _xmax=0; +}; + +} // namespace ttf
\ No newline at end of file diff --git a/dviware/dvisvgm/src/ttf/PostTable.cpp b/dviware/dvisvgm/src/ttf/PostTable.cpp new file mode 100644 index 0000000000..650faf5467 --- /dev/null +++ b/dviware/dvisvgm/src/ttf/PostTable.cpp @@ -0,0 +1,63 @@ +/************************************************************************* +** PostTable.cpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#include "PostTable.hpp" +#include "TTFWriter.hpp" +#include "../Font.hpp" + +using namespace std; +using namespace ttf; + +#if 0 +/** Writes a string in Pascal format to an output stream. The string should not be + * longer than 255 characters. Otherwise, it's truncated accordingly. */ +static void write_pascal_string (ostream &os, const string &str) { + size_t len = std::min(str.length(), size_t(255)); + writeUInt8(os, len); // first byte determines the string length + for (size_t i=0; i < len; i++) + writeUInt8(os, str[i]); +} +#endif + + +void PostTable::write (ostream &os) const { + writeUInt32(os, 0x30000); // table version 3 + writeInt32(os, 0); // italic angle + writeInt16(os, 0); // underline position + writeInt16(os, 0); // underline thickness + writeUInt32(os, ttfWriter()->isFixedPitch()); // 1 = fixed pitch + writeUInt32(os, 0); // minMemType42 + writeUInt32(os, 0); // maxMemType42 + writeUInt32(os, 0); // minMemType1 + writeUInt32(os, 0); // maxMemType1 +/* writeUInt16(os, ttfWriter()->getUnicodeCharMap().numValues()); + // write name indexes in glyph ID order (index 0 = ".notdef") + uint16_t index=0; + for (auto cp2charcode : ttfWriter()->getUnicodeCharMap()) { + string name = ttfWriter()->getFont().glyphName(cp2charcode.second); + writeUInt16(os, name.empty() || name == ".notdef" ? 0 : ++index); + } + // write the glyph names in glyph ID order + for (auto cp2charcode : ttfWriter()->getUnicodeCharMap()) { + string name = ttfWriter()->getFont().glyphName(cp2charcode.second); + if (!name.empty() && name != ".notdef") + write_pascal_string(os, name); + }*/ +} diff --git a/dviware/dvisvgm/src/ttf/PostTable.hpp b/dviware/dvisvgm/src/ttf/PostTable.hpp new file mode 100644 index 0000000000..782f15085e --- /dev/null +++ b/dviware/dvisvgm/src/ttf/PostTable.hpp @@ -0,0 +1,37 @@ +/************************************************************************* +** PostTable.hpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#pragma once + +#include <algorithm> +#include <map> +#include "TTFTable.hpp" + +namespace ttf { + +/** This class provides the functions required to write the PostScript table of a TTF/OTF font. + * https://www.microsoft.com/typography/otspec/post.htm */ +class PostTable : public TTFTable { + public: + uint32_t tag () const override {return name2id("post");} + void write (std::ostream &os) const override; +}; + +} // namespace ttf
\ No newline at end of file diff --git a/dviware/dvisvgm/src/TTFAutohint.cpp b/dviware/dvisvgm/src/ttf/TTFAutohint.cpp index d04cbf77b9..fe6c6bafc2 100644 --- a/dviware/dvisvgm/src/TTFAutohint.cpp +++ b/dviware/dvisvgm/src/ttf/TTFAutohint.cpp @@ -2,7 +2,7 @@ ** TTFAutohint.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -18,9 +18,14 @@ ** along with this program; if not, see <http://www.gnu.org/licenses/>. ** *************************************************************************/ +#include <fstream> +#include <memory> +#include "../MessageException.hpp" +#include "../utility.hpp" #include "TTFAutohint.hpp" using namespace std; +using namespace ttf; #ifndef HAVE_TTFAUTOHINT_H TTFAutohint::TTFAutohint () {} @@ -62,11 +67,10 @@ static string get_libttfautohint () { #endif // HAVE_LIBTTFAUTOHINT -TTFAutohint::TTFAutohint () : +TTFAutohint::TTFAutohint () #ifndef HAVE_LIBTTFAUTOHINT - DLLoader(get_libttfautohint()), + : DLLoader(get_libttfautohint()) #endif - _lastErrorMessage() { } @@ -94,16 +98,34 @@ int TTFAutohint::autohint (const string &source, const string &target, bool rehi #endif int ret=0; if (fn) { - FILE *ttf_in = fopen(source.c_str(), "rb"); - FILE *ttf_out = fopen(target.c_str(), "wb"); - ret = fn("in-file, out-file, default-script, error-string", ttf_in, ttf_out, "latn", &_lastErrorMessage); + _lastErrorMessage = nullptr; + ifstream ifs(source, ios::binary|ios::ate); + if (!ifs) + throw MessageException("failed to open '"+source+"' for reading"); + size_t inbufSize = ifs.tellg(); + ifs.seekg(0, ios::beg); + auto inbuf = util::make_unique<char[]>(inbufSize); + if (!ifs.read(inbuf.get(), inbufSize)) + throw MessageException("failed to read from '"+source+"'"); + char *outbuf = nullptr; + size_t outbufSize; + ret = fn("in-buffer, in-buffer-len, out-buffer, out-buffer-len, default-script, error-string, alloc-func", + inbuf.get(), inbufSize, &outbuf, &outbufSize, "latn", &_lastErrorMessage, &std::malloc); if (ret == TA_Err_Missing_Glyph && rehintIfSymbolFont) { - fseek(ttf_in, 0, SEEK_SET); - fseek(ttf_out, 0, SEEK_SET); - ret = fn("in-file, out-file, symbol, error-string", ttf_in, ttf_out, true, &_lastErrorMessage); + ifs.clear(); + ifs.seekg(0, ios::beg); + std::free(outbuf); + ret = fn("in-buffer, in-buffer-len, out-buffer, out-buffer-len, symbol, error-string, alloc-func", + inbuf.get(), inbufSize, &outbuf, &outbufSize, true, &_lastErrorMessage, &std::malloc); } - fclose(ttf_out); - fclose(ttf_in); + if (ret == 0) { + ofstream ofs(target, ios::binary); + if (ofs) + ofs.write(outbuf, outbufSize); + else + throw MessageException("failed to open '"+target+"' for writing"); + } + std::free(outbuf); } return ret; } diff --git a/dviware/dvisvgm/src/TTFAutohint.hpp b/dviware/dvisvgm/src/ttf/TTFAutohint.hpp index 7739895c38..9389d33114 100644 --- a/dviware/dvisvgm/src/TTFAutohint.hpp +++ b/dviware/dvisvgm/src/ttf/TTFAutohint.hpp @@ -2,7 +2,7 @@ ** TTFAutohint.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -18,16 +18,17 @@ ** along with this program; if not, see <http://www.gnu.org/licenses/>. ** *************************************************************************/ -#ifndef TTFAUTOHINT_HPP -#define TTFAUTOHINT_HPP +#pragma once #include <config.h> #include <string> #if defined(HAVE_TTFAUTOHINT_H) && !defined(HAVE_LIBTTFAUTOHINT) -#include "DLLoader.hpp" +#include "../DLLoader.hpp" #endif +namespace ttf { + class TTFAutohint #if defined(HAVE_TTFAUTOHINT_H) && !defined(HAVE_LIBTTFAUTOHINT) : public DLLoader @@ -43,9 +44,9 @@ class TTFAutohint #ifdef HAVE_TTFAUTOHINT_H private: - const unsigned char *_lastErrorMessage; + const unsigned char *_lastErrorMessage; ///< message created by last call of 'autohint' #endif }; -#endif +} // namespace ttf diff --git a/dviware/dvisvgm/src/ttf/TTFTable.cpp b/dviware/dvisvgm/src/ttf/TTFTable.cpp new file mode 100644 index 0000000000..2b04f3335f --- /dev/null +++ b/dviware/dvisvgm/src/ttf/TTFTable.cpp @@ -0,0 +1,94 @@ +/************************************************************************* +** TTFTable.cpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#include <vectorstream.hpp> +#include <zlib.h> +#include "TTFTable.hpp" + +using namespace std; +using namespace ttf; + + +TableBuffer::TableBuffer (uint32_t tag, vector<char> data) + : _tag(tag), _unpaddedSize(data.size()), _compressedSize(_unpaddedSize), _data(std::move(data)) +{ + _data.resize((_unpaddedSize+3) & ~3, 0); // ensure data.size() % 4 == 0 + for (size_t i=0; i < paddedSize(); i+=4) { + auto *bytes = reinterpret_cast<const uint8_t*>(_data.data()); + _checksum += bytes[i]*0x1000000 + bytes[i+1]*0x010000 + bytes[i+2]*0x0100 + bytes[i+3]; + } +} + + +TableBuffer::TableBuffer (uint32_t tag, vector<char> data, size_t checksumExcludeOffset) + : TableBuffer(tag, std::move(data)) +{ + if (checksumExcludeOffset+4 < _data.size()) + _checksum -= getUInt32(checksumExcludeOffset); +} + + +string TableBuffer::name () const { + string ret; + for (int i=3; i >= 0; i--) { + char c = char(_tag >> (8*i)); + ret += (c >= 32 && c <= 126 ? c : '*'); + } + return ret; +} + + +/** Tries to compress the buffer data. If the size of the compressed buffer data is + * greater or equal than the size of the uncompressed data, the buffer stays uncompressed. + * @returns true if the data was compressed */ +void TableBuffer::compress () { + if (_data.size() < 16) + return; + uLong compressedSize = compressBound(_data.size()); + vector<char> compressedData(compressedSize, 0); + // Compress with zlib for now. We could also use zopfli for slightly better but much slower compression. + // Only use the compressed data if it actually leads to a size reduction. Otherwise, use the original table data. + auto source = reinterpret_cast<const Bytef*>(_data.data()); + auto target = reinterpret_cast<Bytef*>(&compressedData[0]); + if (compress2(target, &compressedSize, source, _unpaddedSize, Z_BEST_COMPRESSION) == Z_OK && compressedSize < _unpaddedSize) { + _compressedSize = compressedSize; + _data = std::move(compressedData); + _data.resize((compressedSize+3) & ~3, 0); // reduce buffer to padded compressed size + } +} + +//////////////////////////////////////////////////////////////////////////////////// + +/** Creates a buffer object containing the binary data represented by this table. */ +TableBuffer TTFTable::createBuffer () const { + ovectorstream<vector<char>> vecstream; + write(vecstream); + vector<char> vec; + vecstream.swap_vector(vec); // move data from vector stream to vec + return TableBuffer(tag(), std::move(vec)); +} + + +string TTFTable::name () const { + string ret; + for (int i=3; i >= 0; i--) + ret += char(tag() >> (8*i)); + return ret; +} diff --git a/dviware/dvisvgm/src/ttf/TTFTable.hpp b/dviware/dvisvgm/src/ttf/TTFTable.hpp new file mode 100644 index 0000000000..c47610ec7c --- /dev/null +++ b/dviware/dvisvgm/src/ttf/TTFTable.hpp @@ -0,0 +1,108 @@ +/************************************************************************* +** TTFTable.hpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#pragma once +#include <ostream> +#include <sstream> +#include <vector> + +namespace ttf { + +/** Class to handle the binary TTF table data. */ +class TableBuffer { + friend class TTFWriter; + public: + TableBuffer (uint32_t tag, std::vector<char> data); + TableBuffer (uint32_t tag, std::vector<char> data, size_t checksumExcludeOffset); + uint32_t tag () const {return _tag;} + uint32_t unpaddedSize () const {return _unpaddedSize;} + uint32_t paddedSize () const {return uint32_t(_data.size());} + uint32_t compressedSize () const {return _compressedSize;} + uint32_t checksum () const {return _checksum;} + void compress (); + std::string name () const; + + uint8_t getUInt8 (size_t offs) const {return _data[offs];} + uint16_t getUInt16 (size_t offs) const {return getUInt8(offs)*0x100 + getUInt8(offs+1);} + uint32_t getUInt32 (size_t offs) const {return getUInt16(offs)*0x10000 + getUInt16(offs+2);} + + /** Writes the n bytes of a given value in big-endian order to the buffer. + * The buffer must be big enough to take the value at the desired position. + * It is not resized automatically. + * @param[in] offset offset/index the first byte is written to + * @param[in] val the value to write */ + template <typename T> + void setData (size_t offset, const T val) { + if (offset+sizeof(T) <= _data.size()) { + typename std::make_unsigned<T>::type uval = val; + for (int i = sizeof(T)-1; i >= 0; i--) { + _data[offset+i] = uint8_t(uval & 0xff); + uval >>= 8; + } + } + } + + /** Writes the buffer data to the given output stream. */ + void write (std::ostream &os) const { + os.write(_data.data(), _data.size()); + } + + private: + uint32_t _tag; ///< tag/ID of corresponding TTF table + uint32_t _unpaddedSize; ///< size of the buffer excluding pad bytes + uint32_t _compressedSize; ///< sizeof compressed buffer excluding pad bytes + uint32_t _checksum=0; ///< checksum of uncompressed data + std::vector<char> _data; ///< the (compressed/uncompressed) table data including pad bytes +}; + + +class TTFWriter; + +/** Abstract base class for all TTF tables. */ +class TTFTable { + friend class TTFWriter; + public: + virtual ~TTFTable () =default; + virtual uint32_t tag () const =0; + virtual void write (std::ostream &os) const =0; + bool active () const {return _ttfWriter != nullptr;} + TableBuffer createBuffer () const; + std::string name () const; + + static constexpr uint32_t name2id (const char *str) { + return (str[0] << 24) | (str[1] << 16) | (str[2] << 8) | str[3]; + } + + protected: + void setTTFWriter (TTFWriter *ttfWriter) {_ttfWriter = ttfWriter;} + TTFWriter* ttfWriter () const {return _ttfWriter;} + + static void writeUInt8 (std::ostream &os, uint8_t val) {os.put(val);} + static void writeUInt16 (std::ostream &os, uint16_t val) {os.put(val >> 8); os.put(val & 0xff);} + static void writeUInt32 (std::ostream &os, uint32_t val) {writeUInt16(os, val >> 16); writeUInt16(os, val & 0xffff);} + static void writeInt8 (std::ostream &os, int8_t val) {writeUInt8(os, uint8_t(val));} + static void writeInt16 (std::ostream &os, int16_t val) {writeUInt16(os, uint16_t(val));} + static void writeInt32 (std::ostream &os, int32_t val) {writeUInt32(os, uint32_t(val));} + + private: + TTFWriter *_ttfWriter=nullptr; +}; + +} // namespace ttf diff --git a/dviware/dvisvgm/src/ttf/TTFWriter.cpp b/dviware/dvisvgm/src/ttf/TTFWriter.cpp new file mode 100644 index 0000000000..2dacdfc567 --- /dev/null +++ b/dviware/dvisvgm/src/ttf/TTFWriter.cpp @@ -0,0 +1,422 @@ +/************************************************************************* +** TTFWriter.cpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#include <cmath> +#include <iterator> +#include <fstream> +#include <list> +#include <numeric> +#include <woff2/encode.h> +#include "TTFWriter.hpp" +#include "../Font.hpp" +#include "../utility.hpp" + +using namespace std; +using namespace ttf; + +#ifdef TTFDEBUG +bool TTFWriter::CREATE_PS_GLYPH_OUTLINES; +#endif + + +TTFWriter::TTFWriter (const PhysicalFont &font, const set<int> &chars) : + _font(font), + _tracerCallback(), + _tables({&_cmap, &_glyf, &_hmtx, &_hhea, &_loca, &_maxp, &_name, &_os2, &_post, &_head}) // mandatory tables +{ + if (font.verticalLayout()) { // is font designed for vertical layout? + _tables.push_back(&_vmtx); + _tables.push_back(&_vhea); + } + for (TTFTable *table : _tables) + table->setTTFWriter(this); + for (uint32_t c : chars) { + uint32_t codepoint = font.unicode(c); + _unicodeCharMap.addRange(codepoint, codepoint, c); + } +} + + +/** Pseudo table representing the TTF header (aka "offset table"). */ +class TTFHeader : public TTFTable { + public: + explicit TTFHeader (uint16_t numTables) : _numTables(numTables) {} + uint32_t tag () const override {return 0;} + + void write (ostream &os) const override { + writeUInt32(os, 0x00010000); // sfntVersion + writeUInt16(os, _numTables); + uint16_t entrySelector = util::ilog2(_numTables); + uint16_t searchRange = (1 << entrySelector)*16; + writeUInt16(os, searchRange); + writeUInt16(os, entrySelector); + writeUInt16(os, _numTables*16-searchRange); // rangeShift + } + + private: + uint16_t _numTables; +}; + + +/** Pseudo table representing the table records. */ +class TTFTableRecords : public TTFTable { + public: + explicit TTFTableRecords (const list<TableBuffer> &buffers) : _buffers(buffers) {} + uint32_t tag () const override {return 0;} + + void write (ostream &os) const override { + int numTables = 0; + for (const TableBuffer &buffer : _buffers) + if (buffer.tag()) + numTables++; + uint32_t offset = 12 + 16*numTables; + for (const TableBuffer &buffer : _buffers) { + if (buffer.tag()) { + writeUInt32(os, buffer.tag()); + writeUInt32(os, buffer.checksum()); + writeUInt32(os, offset); + writeUInt32(os, buffer.unpaddedSize()); + offset += buffer.paddedSize(); + } + } + } + + private: + const list<TableBuffer> &_buffers; +}; + + +/** Writes the font data in TrueType format to the given output stream. */ +bool TTFWriter::writeTTF (ostream &os) { + list<TableBuffer> buffers = createTableBuffers(); + // write TTF data + for (; !buffers.empty(); buffers.pop_front()) + buffers.front().write(os); + return true; // @@ +} + + +/** Writes the font data in TrueType format to the given file. */ +bool TTFWriter::writeTTF (const string &ttfname) { + ofstream ofs(ttfname, ios::binary); + if (ofs) + return writeTTF(ofs); + return false; +} + + +/** Returns a list containing the binary TTF data segmented by the TTF tables. + * The first two list entries represent the TTF header (aka "offset table") and + * the table records, respectively. */ +std::list<TableBuffer> TTFWriter::createTableBuffers () { + list<TableBuffer> buffers; + for (const TTFTable *table : _tables) + buffers.emplace_back(table->createBuffer()); + // sort table buffers according to their tag/ID in ascending order + buffers.sort([](const TableBuffer &buf1, const TableBuffer &buf2) { + return buf1.tag() < buf2.tag(); + }); + TTFHeader header(_tables.size()); + TTFTableRecords records(buffers); + buffers.emplace_front(records.createBuffer()); + buffers.emplace_front(header.createBuffer()); + // compute global checksum (checkSumAdjustment entry of head table) + uint32_t checksum=0; + for (const TableBuffer &buffer : buffers) + checksum += buffer.checksum(); + checksum = 0xB1B0AFBA-checksum; + // write checksum directly to the head table buffer + auto headBufferIt = find_if(buffers.begin(), buffers.end(), [](const TableBuffer &buf) { + return buf.tag() == TTFTable::name2id("head"); + }); + headBufferIt->setData(_head.offsetToChecksum(), checksum); + return buffers; +} + + +/** Returns a factor c that scales the units per EM of the source font to + * a value which is a power of 2, i.e. log2(c*upem) is an integer. */ +double TTFWriter::unitsPerEmFactor () const { + double target_upem = targetUnitsPerEm(); + return target_upem > 0 ? (target_upem/_font.unitsPerEm()) : 0.0; +} + + +/** Returns the units per EM of the TTF font to be written. + * According to the OTF specification, the value should be a power of 2 + * if the font contains TTF outlines. */ +int TTFWriter::targetUnitsPerEm () const { + int upem = _font.unitsPerEm(); + if (upem == 0) + return 0; + + if (upem < 16) + return 16; // minimum allowed upem in TTF/OTF + if (upem > 0x4000) + return 0x4000; // maximum allowed upem in TTF/OTF + int log2_upem = util::ilog2(upem); + if ((1 << log2_upem) == upem) // is upem of source font a power of 2? + return upem; + return 1 << (log2_upem+1); +} + + +int16_t TTFWriter::hAdvance (uint16_t c) const { + double scale = unitsPerEmFactor(); + double extend = _font.style() ? _font.style()->extend : 1; + return int16_t(round(scale*extend*_font.hAdvance(c))); +} + + +void TTFWriter::updateGlobalBbox (uint32_t c, int16_t xmin, int16_t ymin, int16_t xmax, int16_t ymax) { + if (xmin != 0 || ymin != 0 || xmax != 0 || ymax != 0) + _hhea.updateXMinMax(c, xmin, xmax); + if (xmin == 0 && xmax == 0) + xmax = hAdvance(c); + _head.updateGlobalBbox(xmin, ymin, xmax, ymax); + _hmtx.updateWidthData(c, xmin, xmax); + _os2.updateXMinMax(xmin, xmax); + _os2.updateYMinMax(ymin, ymax); + if (_vhea.active()) { + _vhea.updateYMinMax(c, ymin, ymax); + _vmtx.updateHeightData(c, ymin, ymax); + } +} + + +/** Converts TTF data to WOFF2 and writes the result to an output stream. + * @param[in] buffer contents of TTF file + * @param[in,out] os WOFF2 output stream + * @return true on success */ +static bool ttf_to_woff2 (const string &buffer, ostream &os) { + const uint8_t* input_data = reinterpret_cast<const uint8_t*>(buffer.data()); + size_t output_size = woff2::MaxWOFF2CompressedSize(input_data, buffer.size()); + string output(output_size, 0); + uint8_t* output_data = reinterpret_cast<uint8_t*>(&output[0]); + woff2::WOFF2Params params; + if (woff2::ConvertTTFToWOFF2(input_data, buffer.size(), output_data, &output_size, params)) { + output.resize(output_size); + copy(output.begin(), output.end(), ostream_iterator<uint8_t>(os)); + return true; + } + return false; +} + + +/** Writes the font data in WOFF2 format to the given output stream. */ +bool TTFWriter::writeWOFF2 (ostream &os) { + ostringstream oss; + if (writeTTF(oss)) + return ttf_to_woff2(oss.str(), os); + return false; +} + + +/** Writes the font data in WOFF2 format to the given file. */ +bool TTFWriter::writeWOFF2 (const string &woff2name) { + ofstream ofs(woff2name, ios::binary); + if (ofs) + return writeWOFF2(ofs); + return false; +} + + +/** Reads TTF data from an input stream, converts it to WOFF2, and + * writes the result to an output stream. + * @param[in,out] is TTF input stream + * @param[in,out] os WOFF2 output stream + * @return true on success */ +bool TTFWriter::convertTTFToWOFF2 (istream &is, ostream &os) { + ostringstream oss; + oss << is.rdbuf(); + return ttf_to_woff2(oss.str(), os); +} + + +/** Reads TTF data from an input file, converts it to WOFF2, and + * writes the result to an output file. + * @param[in] ttfname name/path of TTF file + * @param[in] woff2name name/path of WOFF2 file + * @return true on success */ +bool TTFWriter::convertTTFToWOFF2 (const string &ttfname, const string &woff2name) { + ifstream ifs(ttfname, ios::binary); + if (ifs) { + ofstream ofs(woff2name, ios::binary); + if (ofs) + return convertTTFToWOFF2(ifs, ofs); + } + return false; +} + + +/** Pseudo table representing the WOFF header. */ +class WOFFHeader : public TTFTable { + public: + WOFFHeader (uint16_t numTables, uint32_t ttfSize, uint32_t woffSize) + : _numTables(numTables), _ttfSize(ttfSize), _woffSize(woffSize) {} + + uint32_t tag () const override {return 0;} + + void write (ostream &os) const override { + writeUInt32(os, 0x774F4646); // "WOFF" + writeUInt32(os, 0x10000); // version of contained TTF font (1.0) + writeUInt32(os, _woffSize); // total length of WOFF file + writeUInt16(os, _numTables); // number of tables + writeUInt16(os, 0); // reserved + writeUInt32(os, _ttfSize); // size of uncompressed TTF data + writeUInt32(os, 0); // WOFF version (not required) + writeUInt32(os, 0); // offset to metadata block + writeUInt32(os, 0); // compressed size of metadata block + writeUInt32(os, 0); // uncompressed size of metadata block + writeUInt32(os, 0); // offset to private data block + writeUInt32(os, 0); // size of private data block + } + + private: + uint16_t _numTables; ///< number of tables in WOFF file + uint32_t _ttfSize; ///< total length of TTF file + uint32_t _woffSize; ///< total length of WOFF file +}; + + +/** Pseudo table representing the WOFF table records. */ +class WOFFTableRecords : public TTFTable { + public: + explicit WOFFTableRecords (const list<TableBuffer> &buffers) : _buffers(buffers) {} + uint32_t tag () const override {return 0;} + + void write (ostream &os) const override { + uint32_t offset = 44 + 20*_buffers.size(); // offset to first byte of table data + for (const TableBuffer &buffer : _buffers) { + if (buffer.tag()) { + writeUInt32(os, buffer.tag()); // table tag/ID + writeUInt32(os, offset); // offset to table from beginning of WOFF file + writeUInt32(os, buffer.compressedSize()); // compressed length excluding padding + writeUInt32(os, buffer.unpaddedSize()); // uncompressed length excluding padding + writeUInt32(os, buffer.checksum()); // checksum of the uncompressed table + } + offset += buffer.paddedSize(); + } + } + + private: + const list<TableBuffer> &_buffers; +}; + + +static bool ttf_to_woff (list<TableBuffer> &&buffers, ostream &os) { + size_t ttfSize = std::accumulate(buffers.begin(), buffers.end(), size_t(0), [](size_t sum, const TableBuffer &buf) { + return sum + buf.paddedSize(); + }); + buffers.pop_front(); // remove TTF header + buffers.pop_front(); // remove TTF table records + for (TableBuffer &buffer : buffers) + buffer.compress(); + size_t woffSize = std::accumulate(buffers.begin(), buffers.end(), size_t(0), [](size_t sum, const TableBuffer &buf) { + return sum + buf.paddedSize(); + }); + woffSize += 44 + 20*buffers.size(); // add size of header and table records + WOFFHeader header(buffers.size(), ttfSize, woffSize); + WOFFTableRecords records(buffers); + buffers.emplace_front(records.createBuffer()); + buffers.emplace_front(header.createBuffer()); + for (; !buffers.empty(); buffers.pop_front()) + buffers.front().write(os); + return true; // @@ +} + + +/** Writes the font data in WOFF format to the given output stream. */ +bool TTFWriter::writeWOFF (ostream &os) { + return ttf_to_woff(createTableBuffers(), os); +} + + +/** Writes the font data in WOFF format to the given file. */ +bool TTFWriter::writeWOFF (const string &woffname) { + ofstream ofs(woffname, ios::binary); + if (ofs) + return writeWOFF(ofs); + return false; +} + + +/** Reads TTF data from an input stream, converts it to WOFF, and + * writes the result to an output stream. + * @param[in,out] is TTF input stream + * @param[in,out] os WOFF output stream + * @return true on success */ +bool TTFWriter::convertTTFToWOFF (istream &is, ostream &os) { + list<TableBuffer> buffers; + // read and process TTF header + vector<char> bufvec(12, 0); + is.read(&bufvec[0], 12); + buffers.emplace_back(TableBuffer(0, std::move(bufvec))); + int numTables = buffers.back().getUInt16(4); + + // read and process table records + bufvec.clear(); + bufvec.resize(4 * 4 * numTables); + is.read(&bufvec[0], 4 * 4 * numTables); + buffers.emplace_back(TableBuffer(0, std::move(bufvec))); + + struct TableRecord { + TableRecord (const TableBuffer &buf, size_t ofs) + : tag(buf.getUInt32(ofs)), checksum(buf.getUInt32(ofs+4)), offset(buf.getUInt32(ofs+8)), length(buf.getUInt32(ofs+12)) {} + uint32_t tag; + uint32_t checksum; + uint32_t offset; + uint32_t length; + }; + vector<TableRecord> tableRecords; + tableRecords.reserve(numTables); + const TableBuffer &recbuf = buffers.back(); + for (int i=0; i < numTables; i++) + tableRecords.emplace_back(TableRecord(recbuf, 16*i)); + + // read and process tables + for (const TableRecord &record : tableRecords) { + bufvec.clear(); + bufvec.resize(record.length); + is.seekg(record.offset); + is.read(&bufvec[0], record.length); + if (record.tag == TTFTable::name2id("head")) + buffers.emplace_back(TableBuffer(record.tag, std::move(bufvec), HeadTable::offsetToChecksum())); + else + buffers.emplace_back(TableBuffer(record.tag, std::move(bufvec))); + } + return ttf_to_woff(std::move(buffers), os); +} + + +/** Reads TTF data from an input file, converts it to WOFF, and + * writes the result to an output file. + * @param[in] ttfname name/path of TTF file + * @param[in] woffname name/path of WOFF file + * @return true on success */ +bool TTFWriter::convertTTFToWOFF (const string &ttfname, const string &woffname) { + ifstream ifs(ttfname, ios::binary); + if (ifs) { + ofstream ofs(woffname, ios::binary); + if (ofs) + return convertTTFToWOFF(ifs, ofs); + } + return false; +} diff --git a/dviware/dvisvgm/src/ttf/TTFWriter.hpp b/dviware/dvisvgm/src/ttf/TTFWriter.hpp new file mode 100644 index 0000000000..2580326859 --- /dev/null +++ b/dviware/dvisvgm/src/ttf/TTFWriter.hpp @@ -0,0 +1,113 @@ +/************************************************************************* +** TTFWriter.hpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#pragma once + +#include <set> +#include <vector> +#include "CmapTable.hpp" +#include "GlyfTable.hpp" +#include "HeadTable.hpp" +#include "HheaTable.hpp" +#include "HmtxTable.hpp" +#include "LocaTable.hpp" +#include "MaxpTable.hpp" +#include "NameTable.hpp" +#include "OS2Table.hpp" +#include "PostTable.hpp" +#include "VheaTable.hpp" +#include "VmtxTable.hpp" +#include "../GFGlyphTracer.hpp" +#include "../RangeMap.hpp" + +class PhysicalFont; + +namespace ttf { + +class TTFWriter { + public: + TTFWriter (const PhysicalFont &font, const std::set<int> &chars); + bool writeTTF (std::ostream &os); + bool writeWOFF (std::ostream &os); + bool writeWOFF2 (std::ostream &os); + bool writeTTF (const std::string &ttfname); + bool writeWOFF (const std::string &woffname); + bool writeWOFF2 (const std::string &woff2name); + static bool convertTTFToWOFF (std::istream &is, std::ostream &os); + static bool convertTTFToWOFF2 (std::istream &is, std::ostream &os); + static bool convertTTFToWOFF (const std::string &ttfname, const std::string &woffname); + static bool convertTTFToWOFF2 (const std::string &ttfname, const std::string &woff2name); + void setTracerCallback (GFGlyphTracer::Callback &callback) {_tracerCallback = &callback;} + GFGlyphTracer::Callback* getTracerCallback () const {return _tracerCallback;} + const PhysicalFont& getFont () const {return _font;} + const RangeMap& getUnicodeCharMap () const {return _unicodeCharMap;} + int targetUnitsPerEm () const; + double unitsPerEmFactor () const; + int16_t hAdvance (uint16_t c) const; + void updateGlobalBbox (uint32_t c, int16_t xmin, int16_t ymin, int16_t xmax, int16_t ymax); + bool isFixedPitch () const {return _hmtx.isFixedPitch();} + + void updateContourInfo (uint16_t maxContours, uint16_t maxPoints) { + _maxp.updateContourInfo(maxPoints, maxContours); + } + + void updateGlobalAdvanceWidth (uint16_t w, uint16_t numHMetrics) {_hhea.updateAdvanceWidth(w, numHMetrics);} + void updateGlobalAdvanceHeight (uint16_t h, uint16_t numVMetrics) { + if (_vhea.active()) + _vhea.updateAdvanceHeight(h, numVMetrics); + } + + void addGlyphOffset (uint32_t offset) { + _loca.addOffset(offset); + if (offset > 0xFFFF) + _head.setLongOffsetFormat(); + } + +#ifdef TTFDEBUG + static bool CREATE_PS_GLYPH_OUTLINES; +#endif + + protected: + std::list<TableBuffer> createTableBuffers (); + + private: + const PhysicalFont &_font; + RangeMap _unicodeCharMap; ///< Unicode -> character code + GFGlyphTracer::Callback *_tracerCallback; + CmapTable _cmap; ///< glyph index to character code mapping table + GlyfTable _glyf; ///< glyph data table + HeadTable _head; ///< font header table + HheaTable _hhea; ///< horizontal header table + HmtxTable _hmtx; ///< horizontal metrics table + LocaTable _loca; ///< glyph index to location/offset table + MaxpTable _maxp; ///< maximum profile table + NameTable _name; ///< naming table + OS2Table _os2; ///< OS/2 and Windows specific metrics table + PostTable _post; ///< PostScript information table + VheaTable _vhea; ///< vertical header table + VmtxTable _vmtx; ///< vertical metrics table + // The following vector contains pointers to the TTF table objects declared above. + // If a table t1 contains data that computation depends on data of table t2, + // t1 must be inserted after t2. For example, the loca and head tables require data + // from the glyf table to compute their data, so that glyf must precede loca and head. + std::vector<TTFTable*> _tables; +}; + +} // namespace ttf
\ No newline at end of file diff --git a/dviware/dvisvgm/src/ttf/VheaTable.cpp b/dviware/dvisvgm/src/ttf/VheaTable.cpp new file mode 100644 index 0000000000..d49b76f523 --- /dev/null +++ b/dviware/dvisvgm/src/ttf/VheaTable.cpp @@ -0,0 +1,66 @@ +/************************************************************************* +** VheaTable.cpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#include "VheaTable.hpp" +#include "TTFWriter.hpp" +#include "../Font.hpp" + +using namespace std; +using namespace ttf; + + +void VheaTable::write (ostream &os) const { + const PhysicalFont &font = ttfWriter()->getFont(); + double scale = ttfWriter()->unitsPerEmFactor(); + writeUInt32(os, 0x10000); // table version 1.0 + writeInt16(os, round(font.ascent()*scale)); + writeInt16(os, round(-font.descent()*scale)); + writeInt16(os, 0); // line gap, always 0 + writeUInt16(os, _advanceHeightMax); + writeInt16(os, _minTopSideBearing); + writeInt16(os, _minBottomSideBearing); + writeInt16(os, _yMaxExtent); + writeInt16(os, 1); // caretSlopeRise (1 = vertical) + writeInt16(os, 0); // caretSlopeRun (0 = vertical) + writeInt16(os, 0); // caretOffset + writeInt16(os, 0); // reserved + writeInt16(os, 0); // reserved + writeInt16(os, 0); // reserved + writeInt16(os, 0); // reserved + writeInt16(os, 0); // metricDataFormat (always 0) + writeUInt16(os, _numberOfVMetrics); +} + + +void VheaTable::updateYMinMax (uint32_t c, int16_t ymin, int16_t ymax) { + const PhysicalFont &font = ttfWriter()->getFont(); + double extend = font.style() ? font.style()->extend : 1; + double scale = ttfWriter()->unitsPerEmFactor(); + int16_t advance = (c == 0 ? ymax : round(scale*extend*font.vAdvance(c))); + _yMaxExtent = max(_yMaxExtent, ymax); + _minTopSideBearing = min(_minTopSideBearing, ymin); + _minBottomSideBearing = min(_minBottomSideBearing, int16_t(advance-ymax)); +} + + +void VheaTable::updateAdvanceHeight (uint16_t h, uint16_t numberOfVMetrics) { + _advanceHeightMax = max(_advanceHeightMax, h); + _numberOfVMetrics = numberOfVMetrics; +} diff --git a/dviware/dvisvgm/src/ttf/VheaTable.hpp b/dviware/dvisvgm/src/ttf/VheaTable.hpp new file mode 100644 index 0000000000..3031da4999 --- /dev/null +++ b/dviware/dvisvgm/src/ttf/VheaTable.hpp @@ -0,0 +1,47 @@ +/************************************************************************* +** VheaTable.hpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#pragma once +#include <limits> +#include "TTFTable.hpp" + +namespace ttf { + +/** This class provides the functions required to write the vertical header table of a TTF/OTF font. + * https://www.microsoft.com/typography/otspec/vhea.htm */ +class VheaTable : public TTFTable { + friend class TTFWriter; + public: + uint32_t tag () const override {return name2id("vhea");} + void write (std::ostream &os) const override; + + protected: + void updateYMinMax (uint32_t c, int16_t ymin, int16_t ymax); + void updateAdvanceHeight (uint16_t h, uint16_t numberOfVMetrics); + + private: + uint16_t _advanceHeightMax = 0; + int16_t _minTopSideBearing = std::numeric_limits<int16_t>::max(); + int16_t _minBottomSideBearing = std::numeric_limits<int16_t>::max(); + int16_t _yMaxExtent = std::numeric_limits<int16_t>::min(); + uint16_t _numberOfVMetrics = 0; +}; + +} // namespace ttf diff --git a/dviware/dvisvgm/src/ttf/VmtxTable.cpp b/dviware/dvisvgm/src/ttf/VmtxTable.cpp new file mode 100644 index 0000000000..6873bac9d2 --- /dev/null +++ b/dviware/dvisvgm/src/ttf/VmtxTable.cpp @@ -0,0 +1,57 @@ +/************************************************************************* +** VmtxTable.cpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#include <cmath> +#include "VmtxTable.hpp" +#include "TTFWriter.hpp" +#include "../Font.hpp" + +using namespace std; +using namespace ttf; + + +void VmtxTable::write (ostream &os) const { + auto runStart = _heightInfos.end(); + if (!_heightInfos.empty()) + runStart -= _runLengthOfAdvHeight-1; + // write longVerMetrics up to the beginning of the repeating + // advance heights at the end of the container + for (auto it = _heightInfos.begin(); it != runStart; ++it) { + writeUInt16(os, it->advHeight); + writeInt16(os, it->tsb); + } + // write the trailing top side bearings + for (; runStart != _heightInfos.end(); ++runStart) + writeInt16(os, runStart->tsb); +} + + +void VmtxTable::updateHeightData (uint32_t c, int16_t ymin, int16_t ymax) { + const PhysicalFont &font = ttfWriter()->getFont(); + double extend = font.style() ? font.style()->extend : 1; + double scale = ttfWriter()->unitsPerEmFactor(); + int16_t h = (c == 0 ? ymax : round(scale*extend*font.vAdvance(c))); + if (_heightInfos.empty() || h == _heightInfos.back().advHeight) + _runLengthOfAdvHeight++; + else + _runLengthOfAdvHeight = 1; + _heightInfos.emplace_back(CharHeightInfo(ymin, h)); + ttfWriter()->updateGlobalAdvanceHeight(h, _heightInfos.size()-_runLengthOfAdvHeight+1); +}
\ No newline at end of file diff --git a/dviware/dvisvgm/src/ttf/VmtxTable.hpp b/dviware/dvisvgm/src/ttf/VmtxTable.hpp new file mode 100644 index 0000000000..4bcdda0df0 --- /dev/null +++ b/dviware/dvisvgm/src/ttf/VmtxTable.hpp @@ -0,0 +1,49 @@ +/************************************************************************* +** VmtxTable.hpp ** +** ** +** This file is part of dvisvgm -- a fast DVI to SVG converter ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** +** ** +** This program is free software; you can redistribute it and/or ** +** modify it under the terms of the GNU General Public License as ** +** published by the Free Software Foundation; either version 3 of ** +** the License, or (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, but ** +** WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program; if not, see <http://www.gnu.org/licenses/>. ** +*************************************************************************/ + +#pragma once + +#include <vector> +#include "TTFTable.hpp" + +namespace ttf { + +/** This class provides the functions required to write the horizontal metrics table of a TTF/OTF font. + * https://www.microsoft.com/typography/otspec/vmtx.htm */ +class VmtxTable : public TTFTable { + friend TTFWriter; + struct CharHeightInfo { + CharHeightInfo (int16_t l, int16_t h) : tsb(l), advHeight(h) {} + uint16_t tsb; // top side bearing + uint16_t advHeight; // unscaled advance height + }; + public: + uint32_t tag () const override {return name2id("vmtx");} + void write (std::ostream &os) const override; + + protected: + void updateHeightData (uint32_t c, int16_t ymin, int16_t ymax); + + private: + std::vector<CharHeightInfo> _heightInfos; + size_t _runLengthOfAdvHeight=0; // number of identical advHeight values at end of _heightInfos +}; + +} // namespace ttf diff --git a/dviware/dvisvgm/src/utility.cpp b/dviware/dvisvgm/src/utility.cpp index 4877690ef4..947be91634 100644 --- a/dviware/dvisvgm/src/utility.cpp +++ b/dviware/dvisvgm/src/utility.cpp @@ -2,7 +2,7 @@ ** utility.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -62,6 +62,26 @@ vector<double> math::svd (const double (&m)[2][2]) { } +/** Returns the value of the definite integral of f:R->R over the interval [t0,t1] + * using a simple Simpson/Runge-Kutta (rk4) approximation. + * @param[in] t0 lower interval boundary + * @param[in] t1 upper interval boundary + * @param[in] n number of slices the interval is divided into + * @param[in] f function to integrate */ +double math::integral (double t0, double t1, int n, const std::function<double(double)> &f) { + double ti = t0, ui=0; + double h = (t1-t0)/n; + for (int i=0; i < n; i++) { + double k1 = f(ti); + double k2 = f(ti + h/2); + double k4 = f(ti + h); + ui += h*(k1 + 4*k2 + k4)/6; + ti += h; + } + return ui; +} + + /** Normalizes an angle to the interval [-mod, mod). */ double math::normalize_angle (double angle, double mod) { angle = fmod(angle+mod, 2.0*mod); @@ -202,3 +222,83 @@ void util::write_file_contents (const string &fname, string::iterator start, str ofstream ofs(fname, ios::binary); copy(start, end, ostream_iterator<char>(ofs)); } + + +string util::mimetype (const string &fname) { + string ret; + auto pos = fname.rfind('.'); + if (pos != string::npos) { + string suffix = fname.substr(pos+1); + if (suffix == "svg") + ret = "svg+xml"; + else if (suffix == "png" || suffix == "gif") + ret = suffix; + else if (suffix == "jpg" || suffix == "jpeg") + ret = "jpeg"; + else if (suffix == "tif" || suffix == "tiff") + ret = "tiff"; + } + if (!ret.empty()) + ret = "image/"+ret; + return ret; +} + +/////////////////////////////////////////////////////////////////////// + +static bool is_leap_year (int year) { + return year % 4 == 0 && (year % 100 != 0 || year % 400 == 0); +} + + +/** Returns the number of leap years in the interval [year1, year2]. */ +static size_t number_of_leap_years (int year1, int year2) { + year1--; + size_t ly1 = year1/4 - year1/100 + year1/400; + size_t ly2 = year2/4 - year2/100 + year2/400; + return ly2-ly1; +} + + +static size_t number_of_days (int year, int month1, int month2) { + const int mdays[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; + size_t days = is_leap_year(year) ? 366 : 365; + for (int i=0; i < month1; i++) + days -= mdays[i]; + for (int i=month2+1; i < 12; i++) + days -= mdays[i]; + return days; +} + + +static size_t number_of_days (int year1, int month1, int year2, int month2) { + size_t days = 0; + if (year1 == year2) + days = number_of_days(year1, month1, month2); + else { + if (year2-year1 > 1) + days = (year2-year1-1)*365 + number_of_leap_years(year1+1, year2-1); + days += number_of_days(year1, month1, 11); + days += number_of_days(year2, 0, month2); + } + return days; +} + + +/** Returns the number of days spanning the interval from this date up to another one. */ +size_t util::Date::operator - (Date date2) const { + Date date1 = *this; + if (date2 < date1) + std::swap(date1, date2); + size_t days = ::number_of_days(date1._year, date1._month, date2._year, date2._month-1); + days += date2._day - date1._day + 1; + return days; +} + + +bool util::Date::operator < (const Date &date) const { + if (_year < date._year) return true; + if (_year > date._year) return false; + if (_month < date._month) return true; + if (_month > date._month) return false; + return _day < date._day; +}
\ No newline at end of file diff --git a/dviware/dvisvgm/src/utility.hpp b/dviware/dvisvgm/src/utility.hpp index b8a36daceb..9b1b7006ad 100644 --- a/dviware/dvisvgm/src/utility.hpp +++ b/dviware/dvisvgm/src/utility.hpp @@ -2,7 +2,7 @@ ** utility.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -21,7 +21,12 @@ #ifndef UTILITY_HPP #define UTILITY_HPP +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include <iomanip> +#include <functional> #include <memory> #include <sstream> #include <string> @@ -40,6 +45,7 @@ inline double rad2deg (double rad) {return 180.0*rad/PI;} double normalize_angle (double angle, double mod); double normalize_0_2pi (double rad); std::vector<double> svd (const double (&m)[2][2]); +double integral (double t0, double t1, int n, const std::function<double(double)> &f); /** Signum function (returns x/abs(x) if x != 0, and 0 otherwise). */ template <typename T> @@ -61,6 +67,8 @@ std::string normalize_space (std::string str, const char *ws=" \t\n\r\f"); std::string tolower (const std::string &str); std::string replace (std::string str, const std::string &find, const std::string &repl); std::string to_string (double val); +std::string mimetype (const std::string &fname); + std::vector<std::string> split (const std::string &str, const std::string &sep); int ilog10 (int n); @@ -136,16 +144,80 @@ inline void base64_copy (std::istream &is, std::ostream &os, int wrap=0) { * Constructs an object of class T on the heap and returns a unique_ptr<T> to it. * @param[in] args arguments forwarded to an constructor of T */ template<typename T, typename... Args> -std::unique_ptr<T> make_unique (Args&&... args) { +inline std::unique_ptr<T> make_unique (Args&&... args) { return std::unique_ptr<T>(new T(std::forward<Args>(args)...)); } +/** Simple implementation mimicking array variant of std::make_unique introduced in C++14. + * Constructs an array of class T on the heap and returns a unique_ptr<T>(size) to it. + * @param[in] size size of array */ +template<typename T> +inline std::unique_ptr<T> make_unique (std::size_t size) { + return std::unique_ptr<T>(new typename std::remove_extent<T>::type[size]()); +} + + template<typename T, typename U> -std::unique_ptr<T> static_unique_ptr_cast (std::unique_ptr<U> &&old){ +inline std::unique_ptr<T> static_unique_ptr_cast (std::unique_ptr<U> &&old){ return std::unique_ptr<T>{static_cast<T*>(old.release())}; } +#ifdef HAVE___BUILTIN_CLZ + +template <typename T> +typename std::enable_if<sizeof(T) <= sizeof(unsigned int), int>::type +count_leading_zeros (T val) { + return val == 0 ? 8*sizeof(T) : __builtin_clz(val) - 8*(sizeof(unsigned int)-sizeof(T)); +} + +template <typename T> +typename std::enable_if<sizeof(T) == sizeof(unsigned long) && sizeof(unsigned long) != sizeof(unsigned int), int>::type +count_leading_zeros (T val) { + return val == 0 ? 8*sizeof(T) : __builtin_clzl(val); +} + +template <typename T> +typename std::enable_if<sizeof(T) == sizeof(unsigned long long) && sizeof(unsigned long long) != sizeof(unsigned long), int>::type +count_leading_zeros (T val) { + return val == 0 ? 8*sizeof(T) : __builtin_clzll(val); +} + +#elif defined(_MSC_VER) + +#include <intrin.h> + +template <typename T> +typename std::enable_if<sizeof(T) <= 4, int>::type +count_leading_zeros (T val) { + unsigned long index; + return _BitScanReverse(&index, val) ? static_cast<int>(8*sizeof(T)-1-index) : 8*sizeof(T); +} + +#else + +// fallback implementation if no built-in clz function is available +template <typename T> +typename std::enable_if<sizeof(T) <= 4, int>::type +count_leading_zeros (T val) { + uint32_t val32 = val; + static const uint8_t clz_table[16] = {4, 3, 2, 2, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0}; + int n=0; + if ((val32 & 0xFFFF0000) == 0) {n = 16; val32 <<= 16;} + if ((val32 & 0xFF000000) == 0) {n += 8; val32 <<= 8;} + if ((val32 & 0xF0000000) == 0) {n += 4; val32 <<= 4;} + return n + clz_table[val32 >> (32-4)] - (32-8*sizeof(T)); +} + +#endif + +/** Returns floor(log2(n)) where n is a positive integer. + * If n < 1, it returns -1. */ +template <typename T> +int ilog2 (T n) { + return n > 0 ? 8*sizeof(T)-1-count_leading_zeros(n) : -1; +} + template <typename T> struct set_const_of { template <typename U> @@ -157,6 +229,17 @@ struct set_const_of { >::type; }; }; + +class Date { + public: + Date (int year, int month, int day) : _year(year), _month(month-1), _day(day-1) {} + bool operator < (const Date &date) const; + size_t operator - (Date date2) const; + + private: + int _year, _month, _day; // _month and _day are 0-based +}; + } // namespace util #endif diff --git a/dviware/dvisvgm/src/version.hpp.in b/dviware/dvisvgm/src/version.hpp.in index 7f673d167a..fc8d9ef289 100644 --- a/dviware/dvisvgm/src/version.hpp.in +++ b/dviware/dvisvgm/src/version.hpp.in @@ -2,7 +2,7 @@ ** version.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** diff --git a/dviware/dvisvgm/src/windows.hpp b/dviware/dvisvgm/src/windows.hpp index 2316f1a1cd..196bd5f495 100644 --- a/dviware/dvisvgm/src/windows.hpp +++ b/dviware/dvisvgm/src/windows.hpp @@ -2,7 +2,7 @@ ** windows.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2023 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** |